diff --git a/src/main/kotlin/tribixbite/cleverkeys/BigramModel.kt b/src/main/kotlin/tribixbite/cleverkeys/BigramModel.kt index 52cb1a31..41a1c06b 100644 --- a/src/main/kotlin/tribixbite/cleverkeys/BigramModel.kt +++ b/src/main/kotlin/tribixbite/cleverkeys/BigramModel.kt @@ -445,6 +445,46 @@ class BigramModel private constructor() { return min(max(multiplier, 0.1f), 10.0f) } + /** + * Get next word predictions based on previous word context. + * Returns words that are likely to follow the given context. + * + * @param context List of previous words (typically last 1-2 words) + * @param maxPredictions Maximum number of predictions to return + * @return List of (word, probability) pairs sorted by probability (descending) + */ + fun getPredictedWords(context: List?, maxPredictions: Int = 5): List> { + if (context.isNullOrEmpty()) { + // No context: return most common words from unigram model + val unigramProbs = languageUnigramProbs[currentLanguage] ?: languageUnigramProbs["en"] + return unigramProbs?.entries + ?.sortedByDescending { it.value } + ?.take(maxPredictions) + ?.map { Pair(it.key, it.value) } + ?: emptyList() + } + + // Get the previous word (use the last word in context) + // Thread-safe: create local copy to avoid concurrent modification + val prevWord = context.lastOrNull()?.lowercase() ?: return emptyList() + + // Get language-specific bigram probabilities + val bigramProbs = languageBigramProbs[currentLanguage] ?: languageBigramProbs["en"] + + // Find all bigrams that start with the previous word + val predictions = mutableListOf>() + + bigramProbs?.forEach { (bigramKey, prob) -> + val parts = bigramKey.split("|") + if (parts.size == 2 && parts[0] == prevWord) { + predictions.add(Pair(parts[1], prob)) + } + } + + // Sort by probability (descending) and take top N + return predictions.sortedByDescending { it.second }.take(maxPredictions) + } + /** * Add a bigram observation (for user adaptation) */ diff --git a/src/main/kotlin/tribixbite/cleverkeys/SuggestionHandler.kt b/src/main/kotlin/tribixbite/cleverkeys/SuggestionHandler.kt index a55aabd0..d59f7d46 100644 --- a/src/main/kotlin/tribixbite/cleverkeys/SuggestionHandler.kt +++ b/src/main/kotlin/tribixbite/cleverkeys/SuggestionHandler.kt @@ -50,6 +50,7 @@ class SuggestionHandler( ) { companion object { private const val TAG = "SuggestionHandler" + private const val SPACE_CHARACTER = " " // Trigger character for next word predictions } /** @@ -572,7 +573,7 @@ class SuggestionHandler( } if (config.autocorrect_enabled && predictionCoordinator.getWordPredictor() != null && - text == " " && !inTermuxApp) { + text == SPACE_CHARACTER && !inTermuxApp) { val correctedWord = predictionCoordinator.getWordPredictor()?.autoCorrect(completedWord) // If correction was made, replace the typed word @@ -616,7 +617,14 @@ class SuggestionHandler( // Reset current word contextTracker.clearCurrentWord() predictionCoordinator.getWordPredictor()?.reset() - suggestionBar?.clearSuggestions() + + // NEW: Show next word predictions after completing a word (space/punctuation) + // Only trigger for space character to avoid excessive predictions + if (text == SPACE_CHARACTER && config.word_prediction_enabled) { + updateNextWordPredictions() + } else { + suggestionBar?.clearSuggestions() + } } text.length > 1 -> { // Multi-character input (paste, etc) - reset @@ -698,6 +706,46 @@ class SuggestionHandler( } } + /** + * Update predictions for the next word based on context. + * Called after user completes a word (e.g., after typing space). + */ + private fun updateNextWordPredictions() { + // Copy context to be thread-safe + val contextWords = contextTracker.getContextWords().toList() + + if (BuildConfig.ENABLE_VERBOSE_LOGGING) { + Log.d(TAG, "updateNextWordPredictions called with context: $contextWords") + } + + // Cancel previous task if running + currentPredictionTask?.cancel(true) + + // Submit new prediction task + currentPredictionTask = predictionExecutor.submit { + if (Thread.currentThread().isInterrupted) return@submit + + // Get next word predictions (no partial word, only context) + val result = predictionCoordinator.getWordPredictor()?.predictNextWords(contextWords) + + if (Thread.currentThread().isInterrupted || result == null || result.words.isEmpty()) { + return@submit + } + + if (BuildConfig.ENABLE_VERBOSE_LOGGING) { + Log.d(TAG, "Next word predictions: ${result.words}") + } + + // Post result to UI thread + suggestionBar?.post { + suggestionBar?.let { bar -> + bar.setShowDebugScores(config.swipe_show_debug_scores) + bar.setSuggestionsWithScores(result.words, result.scores) + } + } + } + } + /** * Smart delete last word - deletes the last auto-inserted word or last typed word. * Handles edge cases to avoid deleting too much text. diff --git a/src/main/kotlin/tribixbite/cleverkeys/WordPredictor.kt b/src/main/kotlin/tribixbite/cleverkeys/WordPredictor.kt index baad74bc..ba88c9e1 100644 --- a/src/main/kotlin/tribixbite/cleverkeys/WordPredictor.kt +++ b/src/main/kotlin/tribixbite/cleverkeys/WordPredictor.kt @@ -28,6 +28,13 @@ class WordPredictor { private const val MAX_RECENT_WORDS = 20 // Keep last 20 words for language detection private const val PREFIX_INDEX_MAX_LENGTH = 3 // Index prefixes up to 3 chars + // Next word prediction scoring constants + private const val BIGRAM_SCORE_SCALE = 10000 // Scale bigram probability (0-1) to 0-10000 range + private const val FALLBACK_SCORE_MULTIPLIER = 0.5f // Multiplier for high-frequency words without bigram match + private const val PERSONALIZATION_BOOST_DIVISOR = 4.0f // Divisor for personalization boost (0-6 range → 1.0-2.5 multiplier) + private const val FREQUENCY_NORMALIZATION_FACTOR = 1000.0f // Normalization factor for frequency in scoring + private const val BIGRAM_EXPANSION_FACTOR = 3 // Get 3x more bigram candidates than requested for better filtering + // Static flag to signal all WordPredictor instances need to reload custom/user/disabled words @Volatile private var needsReload = false @@ -1175,6 +1182,124 @@ class WordPredictor { return dictionary.get().size } + /** + * Predict next words based on previous context (no partial word being typed). + * This is called after the user completes a word (e.g., after space/punctuation). + * + * Unlike predictInternal which completes a partial word, this predicts what + * word should come next based on the completed words in context. + * + * @param context List of previous completed words + * @param maxPredictions Maximum number of predictions to return (default 5) + * @return PredictionResult with next word predictions + */ + fun predictNextWords(context: List, maxPredictions: Int = 5): PredictionResult { + // OPTIMIZATION v3 (perftodos3.md): Use android.os.Trace for system-level profiling + android.os.Trace.beginSection("WordPredictor.predictNextWords") + try { + // Check if dictionary changes require reload + checkAndReload() + + if (BuildConfig.ENABLE_VERBOSE_LOGGING) { + Log.d(TAG, "Predicting next words with context: $context") + } + + val candidates = mutableListOf() + + // Get bigram predictions from BigramModel + val bigramPredictions = bigramModel?.getPredictedWords(context, maxPredictions * BIGRAM_EXPANSION_FACTOR) ?: emptyList() + + if (BuildConfig.ENABLE_VERBOSE_LOGGING) { + Log.d(TAG, "BigramModel returned ${bigramPredictions.size} predictions") + } + + // Score each bigram prediction + for ((word, bigramProb) in bigramPredictions) { + // Skip disabled words + if (isWordDisabled(word)) { + continue + } + + // Check if word exists in dictionary + val frequency = dictionary.get()[word] ?: continue + + // Calculate score combining bigram probability and frequency + // Bigram probability is 0-1, scale to 0-10000 range for scoring + val bigramScore = (bigramProb * BIGRAM_SCORE_SCALE).toInt() + + // User adaptation multiplier + val adaptationMultiplier = adaptationManager?.getAdaptationMultiplier(word) ?: 1.0f + + // Dynamic context boost from learned N-gram patterns (ContextModel) + val contextAwareEnabled = config?.context_aware_predictions_enabled ?: true + val dynamicContextBoost = if (contextAwareEnabled && contextModel != null && context.isNotEmpty()) { + contextModel?.getContextBoost(word, context) ?: 1.0f + } else { + 1.0f + } + + // Personalization boost from user's typing frequency and recency + val personalizationEnabled = config?.personalized_learning_enabled ?: true + val personalizationMultiplier = if (personalizationEnabled && personalizationEngine != null) { + val boost = personalizationEngine?.getPersonalizationBoost(word) ?: 0.0f + 1.0f + (boost / PERSONALIZATION_BOOST_DIVISOR) + } else { + 1.0f + } + + // Combine all signals + // Bigram score is primary signal for next word prediction + // Frequency provides secondary ranking + val frequencyFactor = 1.0f + ln1p((frequency / FREQUENCY_NORMALIZATION_FACTOR).toDouble()).toFloat() + val finalScore = bigramScore * + adaptationMultiplier * + personalizationMultiplier * + dynamicContextBoost * + frequencyFactor + + candidates.add(WordCandidate(word, finalScore.toInt())) + } + + // If we don't have enough predictions from bigrams, add high-frequency words + if (candidates.size < maxPredictions) { + // Get most common words from dictionary that aren't already in candidates + val existingWords = candidates.map { it.word }.toSet() + + dictionary.get().entries + .asSequence() + .filter { !isWordDisabled(it.key) && !existingWords.contains(it.key) } + .sortedByDescending { it.value } + .take(maxPredictions - candidates.size) + .forEach { (word, frequency) -> + // Lower base score since these don't have context + val adaptationMultiplier = adaptationManager?.getAdaptationMultiplier(word) ?: 1.0f + val score = (frequency * FALLBACK_SCORE_MULTIPLIER * adaptationMultiplier).toInt() + candidates.add(WordCandidate(word, score)) + } + } + + // Sort by score and extract top N + candidates.sortByDescending { it.score } + + val predictions = mutableListOf() + val scores = mutableListOf() + + for (candidate in candidates.take(maxPredictions)) { + predictions.add(candidate.word) + scores.add(candidate.score) + } + + if (BuildConfig.ENABLE_VERBOSE_LOGGING) { + Log.d(TAG, "Next word predictions (${predictions.size}): $predictions") + Log.d(TAG, "Scores: $scores") + } + + return PredictionResult(predictions, scores) + } finally { + android.os.Trace.endSection() + } + } + /** * Helper class to store word candidates with scores */ diff --git a/web_demo/swipe_vocabulary.json b/web_demo/swipe_vocabulary.json index 44a137e4..ac6d4dc5 100644 --- a/web_demo/swipe_vocabulary.json +++ b/web_demo/swipe_vocabulary.json @@ -1,219332 +1,219332 @@ -{ - "metadata": { - "total_words": 150252, - "common_words_count": 7002, - "length_distribution": { - "3": 7617, - "2": 671, - "4": 12175, - "5": 17661, - "6": 21921, - "7": 22446, - "9": 16363, - "10": 12123, - "8": 20185, - "11": 8021, - "13": 3036, - "12": 4959, - "14": 1546, - "15": 816, - "16": 380, - "18": 66, - "17": 203, - "19": 43, - "20": 20 - }, - "frequency_thresholds": { - "very_common": 1e-05, - "common": 1e-06, - "uncommon": 1e-07, - "rare": 1e-08 - } - }, - "word_frequencies": { - "the": 0.0537, - "to": 0.0269, - "and": 0.0257, - "of": 0.0251, - "in": 6.46e-08, - "is": 1.29e-06, - "for": 0.0102, - "that": 0.0102, - "you": 0.00955, - "it": 2.63e-08, - "on": 0.00813, - "with": 0.00708, - "this": 0.00661, - "was": 1.07e-07, - "be": 0.00617, - "as": 3.09e-06, - "are": 0.0055, - "have": 0.00513, - "at": 0.00501, - "he": 0.0049, - "not": 0.0049, - "by": 0.00457, - "but": 0.00427, - "from": 0.00427, - "my": 0.00372, - "or": 2.45e-08, - "we": 0.00347, - "an": 0.00339, - "your": 1.95e-07, - "all": 0.00331, - "so": 0.00331, - "his": 4.37e-08, - "they": 0.00316, - "me": 0.00302, - "if": 1.51e-08, - "one": 0.00295, - "can": 0.00288, - "will": 0.00282, - "just": 0.00269, - "like": 0.00257, - "about": 0.00251, - "up": 0.00245, - "out": 0.0024, - "what": 0.0024, - "has": 1.29e-07, - "when": 0.00234, - "more": 0.00229, - "do": 0.00224, - "no": 0.00224, - "were": 0.000251, - "who": 0.00219, - "had": 0.00214, - "its": 8.51e-08, - "their": 0.00214, - "there": 6.03e-08, - "her": 0.002, - "which": 0.002, - "time": 0.00195, - "get": 0.00191, - "been": 0.00186, - "would": 0.00186, - "she": 0.00182, - "new": 0.00178, - "people": 0.00178, - "how": 0.00174, - "dont": 2.29e-08, - "some": 0.00158, - "also": 0.00155, - "them": 0.00155, - "now": 0.00151, - "other": 0.00145, - "im": 4.9e-05, - "our": 0.00138, - "than": 0.00135, - "good": 0.00132, - "only": 0.00132, - "after": 0.00129, - "first": 0.00129, - "him": 0.00129, - "into": 0.00129, - "know": 0.00126, - "see": 0.00126, - "two": 0.00126, - "make": 0.0012, - "over": 0.0012, - "think": 0.0012, - "any": 0.00117, - "then": 0.00117, - "could": 0.00115, - "back": 0.0011, - "these": 0.0011, - "us": 3.39e-07, - "want": 2.57e-07, - "because": 0.00107, - "go": 0.00107, - "well": 7.76e-05, - "said": 0.00102, - "way": 0.00102, - "most": 0.001, - "much": 0.001, - "very": 0.001, - "where": 0.001, - "even": 0.000977, - "should": 0.000977, - "may": 0.000955, - "here": 0.000933, - "need": 0.000933, - "really": 0.000933, - "did": 0.000912, - "right": 0.000912, - "work": 0.000912, - "year": 0.000912, - "years": 2.4e-05, - "being": 0.000891, - "day": 0.000891, - "too": 0.000891, - "going": 0.000871, - "before": 0.000851, - "off": 0.000851, - "why": 0.000851, - "made": 0.000832, - "still": 0.000832, - "take": 0.000832, - "got": 0.000813, - "many": 0.000813, - "never": 0.000813, - "those": 0.000794, - "life": 0.000776, - "say": 0.000776, - "world": 0.000776, - "down": 0.000759, - "great": 0.000759, - "through": 0.000741, - "youre": 1.15e-07, - "last": 0.000724, - "thats": 3.31e-05, - "while": 0.000724, - "best": 0.000692, - "such": 0.000692, - "love": 0.000661, - "man": 0.000661, - "home": 0.000646, - "long": 0.000646, - "look": 0.000646, - "something": 0.000646, - "use": 0.000646, - "cant": 2.24e-05, - "same": 0.000631, - "used": 0.000631, - "both": 0.000617, - "every": 0.000617, - "am": 1.32e-08, - "come": 0.000603, - "part": 0.000603, - "state": 0.000603, - "three": 0.000603, - "around": 0.000589, - "between": 0.000589, - "always": 1.48e-08, - "better": 0.000575, - "find": 0.000575, - "help": 0.000562, - "high": 0.000562, - "little": 0.000562, - "old": 0.000562, - "since": 0.000562, - "another": 0.00055, - "does": 2.14e-07, - "own": 0.00055, - "things": 6.76e-07, - "under": 0.000537, - "during": 0.000525, - "game": 0.000525, - "ive": 1.05e-05, - "thing": 0.000525, - "give": 0.000513, - "house": 0.000513, - "place": 0.000513, - "school": 0.000513, - "again": 0.000501, - "next": 0.000501, - "each": 0.00049, - "mr": 0.00049, - "without": 0.00049, - "against": 0.000479, - "didnt": 9.77e-08, - "end": 0.000479, - "found": 0.000479, - "must": 0.000479, - "show": 0.000479, - "big": 0.000468, - "feel": 0.000468, - "sure": 0.000468, - "team": 0.000468, - "ever": 0.000457, - "family": 0.000457, - "keep": 0.000457, - "might": 0.000457, - "please": 0.000457, - "put": 0.000457, - "money": 0.000437, - "free": 0.000427, - "second": 0.000427, - "someone": 0.000427, - "away": 0.000417, - "left": 0.000417, - "number": 0.000417, - "city": 0.000407, - "days": 5.89e-06, - "lot": 0.000407, - "name": 0.000407, - "night": 0.000407, - "play": 0.000407, - "until": 0.000407, - "company": 0.000398, - "doing": 0.000398, - "few": 0.000398, - "hes": 9.12e-06, - "let": 0.000398, - "real": 0.000398, - "called": 0.000389, - "different": 0.000389, - "having": 0.000389, - "set": 0.000389, - "thought": 0.000389, - "done": 0.00038, - "however": 0.00038, - "getting": 0.000372, - "god": 0.000372, - "government": 0.000372, - "group": 0.000372, - "looking": 0.000372, - "public": 0.000372, - "top": 0.000372, - "women": 0.000372, - "business": 0.000363, - "care": 0.000363, - "start": 0.000363, - "system": 0.000363, - "times": 1.58e-06, - "week": 0.000363, - "already": 0.000355, - "anything": 0.000355, - "case": 0.000355, - "nothing": 0.000355, - "person": 0.000355, - "today": 0.000355, - "change": 1.26e-07, - "enough": 0.000347, - "everything": 0.000347, - "full": 0.000347, - "live": 0.000347, - "making": 0.000347, - "point": 0.000347, - "read": 0.000347, - "theres": 7.94e-06, - "told": 0.000347, - "yet": 0.000347, - "bad": 0.000339, - "doesnt": 5.75e-08, - "four": 0.000339, - "hard": 0.000339, - "mean": 0.000339, - "once": 0.000339, - "support": 0.000339, - "tell": 0.000339, - "including": 0.000331, - "music": 0.000331, - "power": 0.000331, - "seen": 0.000331, - "states": 1.12e-05, - "stop": 0.000331, - "water": 0.000331, - "based": 0.000324, - "believe": 0.000324, - "call": 0.000324, - "head": 0.000324, - "men": 0.000324, - "national": 0.000324, - "small": 0.000324, - "took": 0.000324, - "white": 0.000324, - "came": 0.000316, - "far": 0.000316, - "job": 0.000316, - "side": 0.000316, - "though": 0.000316, - "try": 0.000316, - "went": 0.000316, - "yes": 9.55e-08, - "actually": 0.000309, - "american": 0.000309, - "later": 0.000309, - "less": 2.04e-08, - "line": 0.000309, - "order": 0.000309, - "party": 0.000309, - "run": 0.000309, - "says": 1.7e-07, - "service": 0.000309, - "country": 0.000302, - "open": 0.000302, - "season": 0.000302, - "shit": 0.000302, - "thank": 0.000302, - "children": 0.000295, - "everyone": 0.000295, - "general": 0.000295, - "theyre": 3.09e-06, - "trying": 0.000295, - "united": 0.000295, - "using": 0.000295, - "area": 0.000288, - "black": 0.000288, - "following": 0.000288, - "law": 0.000288, - "makes": 0.000288, - "together": 0.000288, - "war": 0.000288, - "whole": 0.000288, - "car": 0.000282, - "face": 0.000282, - "five": 0.000282, - "kind": 0.000282, - "maybe": 0.000282, - "per": 0.000282, - "president": 0.000282, - "story": 0.000282, - "working": 0.000282, - "course": 0.000275, - "games": 6.76e-06, - "health": 0.000275, - "hope": 0.000275, - "important": 0.000275, - "least": 0.000275, - "means": 0.000275, - "news": 4.79e-08, - "within": 0.000275, - "able": 0.000269, - "book": 0.000269, - "early": 0.000269, - "friends": 8.91e-06, - "ill": 5.25e-05, - "information": 0.000269, - "local": 0.000269, - "oh": 0.000269, - "post": 0.000269, - "thanks": 9.55e-08, - "video": 0.000269, - "young": 0.000269, - "ago": 0.000263, - "others": 8.71e-06, - "social": 0.000263, - "talk": 0.000263, - "court": 0.000257, - "fact": 0.000257, - "given": 0.000257, - "guys": 7.08e-06, - "half": 0.000257, - "hand": 0.000257, - "isnt": 7.76e-06, - "level": 0.000257, - "mind": 0.000257, - "often": 0.000257, - "single": 0.000257, - "become": 0.000251, - "body": 0.000251, - "coming": 0.000251, - "control": 0.000251, - "death": 0.000251, - "food": 0.000251, - "guy": 0.000251, - "hours": 7.41e-07, - "office": 0.000251, - "pay": 0.000251, - "problem": 0.000251, - "south": 0.000251, - "true": 0.000251, - "almost": 0.000245, - "fuck": 0.000245, - "history": 0.000245, - "known": 0.000245, - "large": 0.000245, - "lost": 0.000245, - "research": 0.000245, - "room": 0.000245, - "several": 0.000245, - "started": 0.000245, - "taking": 0.000245, - "university": 0.000245, - "win": 0.000245, - "wrong": 0.000245, - "along": 0.00024, - "anyone": 0.00024, - "else": 0.00024, - "girl": 0.00024, - "john": 0.00024, - "matter": 0.00024, - "pretty": 0.00024, - "remember": 0.00024, - "air": 0.000234, - "bit": 0.000234, - "friend": 0.000234, - "hit": 0.000234, - "needs": 6.61e-08, - "nice": 0.000234, - "playing": 0.000234, - "probably": 0.000234, - "saying": 0.000234, - "understand": 0.000234, - "yeah": 0.000234, - "york": 0.000234, - "class": 0.000229, - "close": 0.000229, - "comes": 2.51e-08, - "id": 4.07e-05, - "idea": 0.000229, - "international": 0.000229, - "looks": 1.05e-07, - "past": 0.000229, - "possible": 0.000229, - "wanted": 0.000229, - "cause": 0.000224, - "due": 0.000224, - "happy": 0.000224, - "human": 0.000224, - "members": 1.2e-06, - "months": 3.47e-06, - "move": 0.000224, - "question": 0.000224, - "series": 0.000224, - "wait": 0.000224, - "woman": 0.000224, - "ask": 0.000219, - "community": 0.000219, - "data": 0.000219, - "late": 0.000219, - "leave": 0.000219, - "north": 0.000219, - "saw": 0.000219, - "special": 0.000219, - "watch": 0.000219, - "wont": 1.23e-05, - "either": 0.000214, - "fucking": 0.000214, - "future": 0.000214, - "light": 0.000214, - "low": 0.000214, - "million": 0.000214, - "morning": 0.000214, - "police": 0.000214, - "short": 0.000214, - "stay": 0.000214, - "taken": 0.000214, - "age": 0.000209, - "buy": 0.000209, - "deal": 0.000209, - "rather": 0.000209, - "reason": 0.000209, - "red": 0.000209, - "report": 0.000209, - "soon": 0.000209, - "third": 0.000209, - "turn": 0.000209, - "whether": 0.000209, - "among": 0.000204, - "check": 0.000204, - "development": 0.000204, - "form": 0.000204, - "further": 0.000204, - "heart": 0.000204, - "minutes": 2.57e-07, - "myself": 0.000204, - "services": 6.92e-07, - "yourself": 0.000204, - "act": 0.0002, - "although": 0.0002, - "asked": 0.0002, - "child": 0.0002, - "fire": 0.0002, - "fun": 0.0002, - "living": 0.0002, - "major": 0.0002, - "media": 0.0002, - "phone": 0.0002, - "players": 3.89e-06, - "art": 0.000195, - "behind": 0.000195, - "building": 0.000195, - "easy": 0.000195, - "gonna": 0.000195, - "market": 0.000195, - "near": 0.000195, - "non": 0.000195, - "plan": 0.000195, - "political": 0.000195, - "quite": 0.000195, - "six": 0.000195, - "talking": 0.000195, - "west": 0.000195, - "works": 5.75e-07, - "according": 0.000191, - "available": 0.000191, - "education": 0.000191, - "final": 0.000191, - "former": 0.000191, - "front": 0.000191, - "kids": 4.07e-06, - "list": 0.000191, - "ready": 0.000191, - "sometimes": 2.14e-08, - "son": 0.000191, - "street": 0.000191, - "wasnt": 2.45e-08, - "bring": 0.000186, - "college": 0.000186, - "current": 0.000186, - "example": 0.000186, - "experience": 0.000186, - "heard": 0.000186, - "london": 0.000186, - "meet": 0.000186, - "program": 0.000186, - "type": 0.000186, - "baby": 0.000182, - "chance": 0.000182, - "father": 0.000182, - "march": 0.000182, - "process": 0.000182, - "shes": 3.89e-06, - "song": 0.000182, - "study": 0.000182, - "word": 0.000182, - "across": 0.000178, - "action": 0.000178, - "clear": 0.000178, - "gave": 0.000178, - "gets": 3.98e-07, - "himself": 0.000178, - "month": 0.000178, - "outside": 0.000178, - "self": 0.000178, - "students": 2.09e-06, - "words": 3.02e-07, - "board": 0.000174, - "cost": 0.000174, - "cut": 0.000174, - "dr": 0.000174, - "field": 0.000174, - "held": 0.000174, - "instead": 0.000174, - "main": 0.000174, - "moment": 0.000174, - "mother": 0.000174, - "road": 0.000174, - "seems": 0.000174, - "thinking": 0.000174, - "town": 0.000174, - "wants": 2.29e-07, - "de": 0.00017, - "department": 0.00017, - "energy": 0.00017, - "fight": 0.00017, - "fine": 0.00017, - "force": 0.00017, - "hear": 0.00017, - "issue": 0.00017, - "played": 0.00017, - "points": 2.24e-07, - "price": 0.00017, - "re": 0.00017, - "rest": 0.00017, - "results": 0.00017, - "running": 0.00017, - "shows": 6.03e-06, - "space": 0.00017, - "summer": 0.00017, - "term": 0.00017, - "wife": 0.00017, - "america": 0.000166, - "beautiful": 0.000166, - "date": 0.000166, - "goes": 0.000166, - "killed": 0.000166, - "land": 0.000166, - "miss": 0.000166, - "project": 0.000166, - "sex": 0.000166, - "shot": 0.000166, - "site": 0.000166, - "strong": 0.000166, - "youll": 1.62e-06, - "account": 0.000162, - "co": 0.000162, - "especially": 0.000162, - "eyes": 3.47e-07, - "include": 0.000162, - "june": 0.000162, - "parents": 1.86e-06, - "period": 0.000162, - "position": 0.000162, - "record": 0.000162, - "similar": 0.000162, - "total": 0.000162, - "above": 0.000158, - "club": 0.000158, - "common": 0.000158, - "died": 0.000158, - "film": 0.000158, - "happened": 0.000158, - "knew": 0.000158, - "lead": 0.000158, - "likely": 0.000158, - "military": 0.000158, - "perfect": 0.000158, - "personal": 0.000158, - "security": 0.000158, - "share": 1.86e-08, - "st": 0.000158, - "tv": 0.000158, - "whats": 7.59e-06, - "won": 0.000158, - "april": 0.000155, - "center": 0.000155, - "county": 0.000155, - "couple": 0.000155, - "dead": 0.000155, - "english": 0.000155, - "happen": 0.000155, - "hold": 0.000155, - "industry": 0.000155, - "inside": 0.000155, - "issues": 1.51e-07, - "online": 0.000155, - "player": 0.000155, - "private": 0.000155, - "problems": 8.32e-08, - "return": 0.000155, - "rights": 3.8e-07, - "sense": 0.000155, - "star": 0.000155, - "test": 0.000155, - "view": 0.000155, - "weeks": 1.12e-05, - "break": 0.000151, - "british": 0.000151, - "companies": 0.000151, - "event": 0.000151, - "higher": 0.000151, - "hour": 0.000151, - "member": 0.000151, - "middle": 0.000151, - "needed": 0.000151, - "present": 0.000151, - "result": 0.000151, - "sorry": 0.000151, - "takes": 0.000151, - "training": 0.000151, - "wish": 0.000151, - "wouldnt": 6.76e-08, - "answer": 0.000148, - "boy": 0.000148, - "design": 0.000148, - "finally": 0.000148, - "girls": 9.12e-06, - "gold": 0.000148, - "gone": 0.000148, - "guess": 0.000148, - "interest": 0.000148, - "july": 0.000148, - "king": 0.000148, - "learn": 0.000148, - "policy": 0.000148, - "society": 0.000148, - "added": 0.000145, - "al": 0.000145, - "alone": 0.000145, - "average": 0.000145, - "bank": 0.000145, - "brought": 0.000145, - "certain": 0.000145, - "church": 0.000145, - "east": 0.000145, - "hands": 2.24e-07, - "hot": 0.000145, - "lets": 3.24e-05, - "longer": 0.000145, - "medical": 0.000145, - "movie": 0.000145, - "original": 0.000145, - "park": 0.000145, - "performance": 0.000145, - "press": 0.000145, - "received": 0.000145, - "role": 0.000145, - "sent": 0.000145, - "themselves": 0.000145, - "tried": 0.000145, - "worked": 0.000145, - "worth": 0.000145, - "areas": 2.4e-06, - "became": 0.000141, - "bill": 0.000141, - "books": 1.91e-06, - "cool": 0.000141, - "director": 0.000141, - "exactly": 0.000141, - "giving": 0.000141, - "ground": 0.000141, - "meeting": 0.000141, - "provide": 0.000141, - "questions": 8.71e-08, - "relationship": 0.000141, - "september": 0.000141, - "sound": 0.000141, - "source": 0.000141, - "usually": 0.000141, - "value": 0.000141, - "evidence": 0.000138, - "follow": 0.000138, - "lives": 1.45e-07, - "official": 0.000138, - "ok": 0.000138, - "production": 0.000138, - "rate": 0.000138, - "reading": 0.000138, - "round": 0.000138, - "save": 0.000138, - "stand": 0.000138, - "stuff": 0.000138, - "tax": 0.000138, - "whatever": 0.000138, - "amount": 0.000135, - "blue": 0.000135, - "countries": 0.000135, - "david": 0.000135, - "drive": 0.000135, - "eat": 0.000135, - "fall": 0.000135, - "fast": 0.000135, - "federal": 0.000135, - "feeling": 0.000135, - "felt": 0.000135, - "green": 0.000135, - "league": 0.000135, - "management": 0.000135, - "match": 0.000135, - "model": 0.000135, - "picture": 0.000135, - "size": 0.000135, - "step": 0.000135, - "trust": 0.000135, - "youve": 1.38e-06, - "central": 0.000132, - "changes": 5.89e-08, - "england": 0.000132, - "forward": 0.000132, - "groups": 7.59e-06, - "hey": 0.000132, - "key": 0.000132, - "mom": 0.000132, - "page": 0.000132, - "paid": 0.000132, - "range": 0.000132, - "review": 0.000132, - "science": 0.000132, - "trade": 0.000132, - "uk": 0.000132, - "upon": 0.000132, - "various": 0.000132, - "attention": 0.000129, - "brother": 0.000129, - "cannot": 0.000129, - "character": 0.000129, - "chief": 0.000129, - "cup": 0.000129, - "football": 0.000129, - "hate": 0.000129, - "havent": 2.04e-08, - "james": 1.38e-08, - "led": 0.000129, - "looked": 0.000129, - "lower": 0.000129, - "natural": 0.000129, - "october": 0.000129, - "property": 0.000129, - "quality": 0.000129, - "send": 0.000129, - "style": 0.000129, - "vote": 0.000129, - "amazing": 0.000126, - "august": 0.000126, - "blood": 0.000126, - "china": 0.000126, - "complete": 0.000126, - "dog": 0.000126, - "economic": 0.000126, - "hell": 3.47e-05, - "involved": 0.000126, - "itself": 0.000126, - "language": 0.000126, - "lord": 0.000126, - "november": 0.000126, - "oil": 0.000126, - "related": 0.000126, - "serious": 0.000126, - "stage": 0.000126, - "terms": 1.29e-07, - "title": 0.000126, - "add": 0.000123, - "article": 0.000123, - "attack": 0.000123, - "born": 0.000123, - "couldnt": 2.69e-06, - "damn": 0.000123, - "decided": 0.000123, - "decision": 0.000123, - "enjoy": 0.000123, - "entire": 0.000123, - "french": 0.000123, - "january": 0.000123, - "kill": 0.000123, - "met": 0.000123, - "perhaps": 0.000123, - "poor": 0.000123, - "release": 0.000123, - "situation": 0.000123, - "technology": 0.000123, - "turned": 0.000123, - "website": 0.000123, - "written": 0.000123, - "choice": 0.00012, - "code": 0.00012, - "considered": 0.00012, - "continue": 0.00012, - "council": 0.00012, - "cover": 0.00012, - "currently": 0.00012, - "door": 0.00012, - "election": 0.00012, - "european": 0.00012, - "events": 5.75e-07, - "financial": 0.00012, - "foreign": 0.00012, - "hair": 0.00012, - "increase": 0.00012, - "legal": 0.00012, - "lose": 0.00012, - "michael": 0.00012, - "pick": 0.00012, - "race": 0.00012, - "seem": 0.00012, - "seven": 0.00012, - "sign": 0.00012, - "simple": 0.00012, - "simply": 0.00012, - "staff": 0.00012, - "super": 0.00012, - "union": 0.00012, - "walk": 0.00012, - "washington": 0.00012, - "bed": 0.000117, - "began": 0.000117, - "built": 0.000117, - "career": 0.000117, - "changed": 0.000117, - "crazy": 0.000117, - "daily": 0.000117, - "daughter": 0.000117, - "december": 0.000117, - "die": 0.000117, - "difficult": 0.000117, - "figure": 0.000117, - "hospital": 0.000117, - "knows": 9.77e-08, - "loss": 0.000117, - "modern": 0.000117, - "ones": 2.45e-05, - "paper": 0.000117, - "parts": 1.23e-07, - "popular": 0.000117, - "published": 0.000117, - "safe": 0.000117, - "starting": 0.000117, - "systems": 2.19e-06, - "version": 0.000117, - "voice": 0.000117, - "whose": 0.000117, - "writing": 0.000117, - "army": 0.000115, - "australia": 0.000115, - "earth": 0.000115, - "forget": 0.000115, - "goal": 0.000115, - "huge": 0.000115, - "internet": 0.000115, - "listen": 0.000115, - "okay": 0.000115, - "practice": 0.000115, - "rules": 9.77e-08, - "sea": 0.000115, - "sir": 0.000115, - "success": 0.000115, - "towards": 0.000115, - "waiting": 0.000115, - "ways": 2.69e-07, - "access": 0.000112, - "arent": 1.62e-08, - "base": 0.000112, - "below": 0.000112, - "created": 0.000112, - "deep": 0.000112, - "followed": 0.000112, - "la": 0.000112, - "lol": 0.000112, - "mark": 0.000112, - "missing": 0.000112, - "offer": 0.000112, - "pass": 0.000112, - "professional": 0.000112, - "released": 0.000112, - "risk": 0.000112, - "schools": 6.92e-06, - "sleep": 0.000112, - "table": 0.000112, - "ten": 0.000112, - "truth": 0.000112, - "ball": 0.00011, - "box": 0.00011, - "build": 0.00011, - "card": 0.00011, - "cases": 1.74e-07, - "dark": 0.00011, - "district": 0.00011, - "europe": 0.00011, - "george": 0.00011, - "india": 0.00011, - "mine": 0.00011, - "minister": 0.00011, - "note": 0.00011, - "percent": 0.00011, - "piece": 0.00011, - "products": 4.17e-07, - "recent": 0.00011, - "seeing": 0.00011, - "straight": 0.00011, - "visit": 0.00011, - "wall": 0.00011, - "wanna": 0.00011, - "weve": 6.61e-07, - "wrote": 0.00011, - "allowed": 0.000107, - "boys": 5.25e-06, - "culture": 0.000107, - "etc": 0.000107, - "fans": 6.46e-07, - "february": 0.000107, - "gives": 0.000107, - "growth": 0.000107, - "included": 0.000107, - "married": 0.000107, - "officer": 0.000107, - "pain": 0.000107, - "paul": 0.000107, - "places": 1.51e-07, - "respect": 0.000107, - "response": 0.000107, - "river": 0.000107, - "rock": 0.000107, - "shall": 0.000107, - "speak": 0.000107, - "specific": 0.000107, - "standard": 0.000107, - "tonight": 0.000107, - "write": 0.000107, - "album": 0.000105, - "century": 0.000105, - "charge": 0.000105, - "cold": 0.000105, - "create": 0.000105, - "effect": 0.000105, - "eight": 0.000105, - "except": 0.000105, - "eye": 0.000105, - "funny": 0.000105, - "ii": 0.000105, - "limited": 0.000105, - "moving": 0.000105, - "network": 0.000105, - "peace": 0.000105, - "provided": 0.000105, - "recently": 0.000105, - "required": 0.000105, - "sales": 1.15e-07, - "spent": 0.000105, - "store": 0.000105, - "student": 0.000105, - "tomorrow": 0.000105, - "track": 0.000105, - "via": 0.000105, - "watching": 0.000105, - "weight": 0.000105, - "addition": 0.000102, - "ahead": 0.000102, - "allow": 0.000102, - "anti": 0.000102, - "association": 0.000102, - "beat": 0.000102, - "brown": 0.000102, - "capital": 0.000102, - "chinese": 0.000102, - "committee": 0.000102, - "conference": 0.000102, - "difference": 0.000102, - "double": 0.000102, - "expect": 0.000102, - "gas": 5.75e-08, - "island": 0.000102, - "moved": 0.000102, - "normal": 0.000102, - "plans": 4.37e-07, - "population": 0.000102, - "potential": 0.000102, - "pressure": 0.000102, - "radio": 0.000102, - "russian": 0.000102, - "station": 0.000102, - "text": 0.000102, - "treatment": 0.000102, - "western": 0.000102, - "ass": 1.78e-08, - "beginning": 0.0001, - "california": 0.0001, - "campaign": 0.0001, - "certainly": 0.0001, - "completely": 0.0001, - "content": 0.0001, - "credit": 0.0001, - "cross": 0.0001, - "described": 0.0001, - "despite": 0.0001, - "female": 0.0001, - "focus": 0.0001, - "hi": 0.0001, - "husband": 0.0001, - "ice": 0.0001, - "individual": 0.0001, - "interesting": 0.0001, - "join": 0.0001, - "kept": 0.0001, - "leading": 0.0001, - "loved": 0.0001, - "message": 0.0001, - "miles": 2.95e-08, - "nearly": 0.0001, - "particular": 0.0001, - "previous": 0.0001, - "quickly": 0.0001, - "region": 0.0001, - "reported": 0.0001, - "section": 0.0001, - "sort": 0.0001, - "speed": 0.0001, - "travel": 0.0001, - "consider": 9.77e-05, - "contact": 9.77e-05, - "drop": 9.77e-05, - "fair": 9.77e-05, - "feet": 9.77e-05, - "jesus": 9.77e-05, - "kid": 9.77e-05, - "link": 9.77e-05, - "positive": 9.77e-05, - "sale": 9.77e-05, - "throughout": 9.77e-05, - "tour": 9.77e-05, - "welcome": 9.77e-05, - "absolutely": 9.55e-05, - "additional": 9.55e-05, - "beyond": 9.55e-05, - "conditions": 9.55e-05, - "earlier": 9.55e-05, - "extra": 9.55e-05, - "forces": 8.32e-07, - "immediately": 9.55e-05, - "jobs": 3.98e-07, - "leaving": 9.55e-05, - "minute": 9.55e-05, - "nature": 9.55e-05, - "numbers": 1.23e-07, - "quick": 9.55e-05, - "sell": 9.55e-05, - "significant": 9.55e-05, - "studies": 9.55e-05, - "unless": 9.55e-05, - "winning": 9.55e-05, - "agree": 9.33e-05, - "canada": 9.33e-05, - "clean": 9.33e-05, - "computer": 9.33e-05, - "construction": 9.33e-05, - "episode": 9.33e-05, - "favorite": 9.33e-05, - "income": 9.33e-05, - "justice": 9.33e-05, - "levels": 9.33e-08, - "manager": 9.33e-05, - "movement": 9.33e-05, - "photo": 9.33e-05, - "posted": 9.33e-05, - "safety": 9.33e-05, - "san": 9.33e-05, - "scene": 9.33e-05, - "sold": 9.33e-05, - "sounds": 1.45e-07, - "spend": 9.33e-05, - "statement": 9.33e-05, - "sun": 9.33e-05, - "teams": 1.23e-05, - "ability": 9.12e-05, - "announced": 9.12e-05, - "asking": 9.12e-05, - "calling": 9.12e-05, - "coach": 9.12e-05, - "collection": 9.12e-05, - "continued": 9.12e-05, - "costs": 9.12e-05, - "definitely": 9.12e-05, - "designed": 9.12e-05, - "expected": 9.12e-05, - "friday": 9.12e-05, - "gun": 9.12e-05, - "happens": 9.12e-05, - "heavy": 9.12e-05, - "includes": 9.12e-05, - "knowledge": 9.12e-05, - "particularly": 9.12e-05, - "search": 9.12e-05, - "subject": 9.12e-05, - "train": 9.12e-05, - "wide": 9.12e-05, - "wow": 9.12e-05, - "author": 8.91e-05, - "centre": 8.91e-05, - "claim": 8.91e-05, - "dad": 8.91e-05, - "developed": 8.91e-05, - "fear": 8.91e-05, - "fit": 8.91e-05, - "generally": 8.91e-05, - "german": 8.91e-05, - "global": 8.91e-05, - "goals": 8.91e-05, - "gotta": 8.91e-05, - "hotel": 8.91e-05, - "interested": 8.91e-05, - "judge": 8.91e-05, - "lady": 8.91e-05, - "leader": 8.91e-05, - "letter": 8.91e-05, - "lines": 8.51e-07, - "material": 8.91e-05, - "named": 8.91e-05, - "nobody": 8.91e-05, - "opportunity": 8.91e-05, - "plus": 8.91e-05, - "pre": 8.91e-05, - "product": 8.91e-05, - "regular": 8.91e-05, - "secretary": 8.91e-05, - "sister": 8.91e-05, - "stories": 8.91e-05, - "unit": 8.91e-05, - "workers": 1.23e-06, - "annual": 8.71e-05, - "anymore": 8.71e-05, - "bar": 8.71e-05, - "battle": 8.71e-05, - "brain": 8.71e-05, - "contract": 8.71e-05, - "degree": 8.71e-05, - "families": 8.71e-05, - "features": 8.71e-05, - "finished": 8.71e-05, - "floor": 8.71e-05, - "france": 8.71e-05, - "growing": 8.71e-05, - "hurt": 8.71e-05, - "image": 8.71e-05, - "insurance": 8.71e-05, - "majority": 8.71e-05, - "meant": 2.45e-08, - "opening": 8.71e-05, - "opinion": 8.71e-05, - "physical": 8.71e-05, - "pro": 8.71e-05, - "reach": 8.71e-05, - "rule": 8.71e-05, - "seriously": 8.71e-05, - "sports": 5.75e-07, - "stupid": 8.71e-05, - "successful": 8.71e-05, - "active": 8.51e-05, - "administration": 8.51e-05, - "approach": 8.51e-05, - "australian": 8.51e-05, - "biggest": 8.51e-05, - "cancer": 8.51e-05, - "civil": 8.51e-05, - "dance": 8.51e-05, - "defense": 8.51e-05, - "direction": 8.51e-05, - "independent": 8.51e-05, - "master": 8.51e-05, - "none": 8.51e-05, - "reasons": 7.76e-08, - "russia": 8.51e-05, - "ship": 8.51e-05, - "stock": 8.51e-05, - "trump": 8.51e-05, - "weekend": 8.51e-05, - "wonder": 8.51e-05, - "worst": 8.51e-05, - "africa": 8.32e-05, - "awesome": 8.32e-05, - "band": 8.32e-05, - "beach": 8.32e-05, - "cash": 8.32e-05, - "clearly": 8.32e-05, - "commercial": 8.32e-05, - "compared": 8.32e-05, - "effort": 8.32e-05, - "ended": 8.32e-05, - "fan": 8.32e-05, - "fighting": 8.32e-05, - "imagine": 8.32e-05, - "impact": 8.32e-05, - "lack": 8.32e-05, - "latest": 8.32e-05, - "learning": 8.32e-05, - "multiple": 8.32e-05, - "older": 8.32e-05, - "operation": 8.32e-05, - "organization": 8.32e-05, - "passed": 8.32e-05, - "pictures": 1.95e-07, - "protect": 8.32e-05, - "secret": 8.32e-05, - "senior": 8.32e-05, - "spring": 8.32e-05, - "sunday": 8.32e-05, - "telling": 8.32e-05, - "wear": 8.32e-05, - "activities": 8.13e-05, - "address": 8.13e-05, - "analysis": 8.13e-05, - "anyway": 8.13e-05, - "bought": 8.13e-05, - "calls": 7.76e-08, - "choose": 8.13e-05, - "christmas": 8.13e-05, - "color": 8.13e-05, - "commission": 8.13e-05, - "competition": 8.13e-05, - "details": 8.13e-05, - "direct": 8.13e-05, - "dream": 8.13e-05, - "easily": 8.13e-05, - "finish": 8.13e-05, - "grand": 8.13e-05, - "heres": 1.51e-06, - "increased": 8.13e-05, - "indian": 8.13e-05, - "literally": 8.13e-05, - "luck": 8.13e-05, - "marriage": 8.13e-05, - "names": 9.55e-07, - "necessary": 8.13e-05, - "patients": 3.8e-06, - "resources": 8.13e-05, - "rich": 8.13e-05, - "skin": 8.13e-05, - "speaking": 8.13e-05, - "supposed": 8.13e-05, - "sweet": 8.13e-05, - "thus": 8.13e-05, - "touch": 8.13e-05, - "yesterday": 8.13e-05, - "caught": 7.94e-05, - "closed": 7.94e-05, - "congress": 7.94e-05, - "damage": 7.94e-05, - "directly": 7.94e-05, - "disease": 7.94e-05, - "doctor": 7.94e-05, - "doubt": 7.94e-05, - "drink": 7.94e-05, - "driving": 7.94e-05, - "established": 7.94e-05, - "facebook": 7.94e-05, - "feels": 7.94e-05, - "fish": 7.94e-05, - "gay": 7.94e-05, - "germany": 7.94e-05, - "glad": 7.94e-05, - "greater": 7.94e-05, - "grow": 7.94e-05, - "largest": 7.94e-05, - "machine": 7.94e-05, - "notice": 7.94e-05, - "overall": 7.94e-05, - "planning": 7.94e-05, - "professor": 7.94e-05, - "programs": 1.51e-06, - "records": 2.95e-07, - "reports": 4.9e-07, - "shown": 7.94e-05, - "sit": 7.94e-05, - "trip": 7.94e-05, - "associated": 7.76e-05, - "basic": 7.76e-05, - "captain": 7.76e-05, - "carry": 7.76e-05, - "cars": 3.09e-06, - "crime": 7.76e-05, - "effective": 7.76e-05, - "effects": 3.8e-08, - "explain": 7.76e-05, - "fully": 7.76e-05, - "highly": 7.76e-05, - "holding": 7.76e-05, - "japan": 7.76e-05, - "laws": 1.66e-06, - "male": 7.76e-05, - "mrs": 2.57e-08, - "parties": 7.76e-05, - "plant": 7.76e-05, - "reality": 7.76e-05, - "smith": 7.76e-05, - "spot": 7.76e-05, - "texas": 7.76e-05, - "winter": 7.76e-05, - "worse": 7.76e-05, - "advice": 7.59e-05, - "agreement": 7.59e-05, - "aint": 2.19e-06, - "award": 7.59e-05, - "block": 7.59e-05, - "broken": 7.59e-05, - "caused": 7.59e-05, - "challenge": 7.59e-05, - "characters": 2.82e-06, - "christian": 7.59e-05, - "comment": 7.59e-05, - "equipment": 7.59e-05, - "eventually": 7.59e-05, - "helped": 7.59e-05, - "holy": 7.59e-05, - "killing": 7.59e-05, - "lived": 7.59e-05, - "lots": 7.08e-07, - "nation": 7.59e-05, - "otherwise": 7.59e-05, - "peter": 7.59e-05, - "prices": 4.79e-07, - "primary": 7.59e-05, - "purpose": 7.59e-05, - "rates": 7.59e-05, - "responsible": 7.59e-05, - "shop": 7.59e-05, - "showing": 7.59e-05, - "sick": 7.59e-05, - "teacher": 7.59e-05, - "theory": 7.59e-05, - "uses": 7.59e-05, - "william": 7.59e-05, - "agency": 7.41e-05, - "avoid": 7.41e-05, - "camera": 7.41e-05, - "catch": 7.41e-05, - "cell": 7.41e-05, - "coast": 7.41e-05, - "comments": 7.41e-05, - "drug": 7.41e-05, - "economy": 7.41e-05, - "environment": 7.41e-05, - "executive": 7.41e-05, - "foot": 7.41e-05, - "hall": 7.41e-05, - "mass": 7.41e-05, - "meaning": 7.41e-05, - "mission": 7.41e-05, - "nine": 7.41e-05, - "officers": 1.74e-06, - "operations": 1.23e-07, - "politics": 7.41e-05, - "pop": 7.41e-05, - "produced": 7.41e-05, - "ran": 7.41e-05, - "saturday": 7.41e-05, - "status": 7.41e-05, - "therefore": 7.41e-05, - "trial": 7.41e-05, - "truly": 7.41e-05, - "weather": 7.41e-05, - "activity": 7.24e-05, - "app": 7.24e-05, - "application": 7.24e-05, - "claims": 7.24e-05, - "coffee": 7.24e-05, - "complex": 7.24e-05, - "condition": 7.24e-05, - "division": 7.24e-05, - "evening": 7.24e-05, - "flight": 7.24e-05, - "freedom": 7.24e-05, - "google": 7.24e-05, - "heat": 7.24e-05, - "highest": 7.24e-05, - "interview": 7.24e-05, - "library": 7.24e-05, - "located": 7.24e-05, - "location": 7.24e-05, - "murder": 7.24e-05, - "obama": 7.24e-05, - "offered": 7.24e-05, - "putting": 7.24e-05, - "queen": 7.24e-05, - "seconds": 8.71e-08, - "showed": 7.24e-05, - "sitting": 7.24e-05, - "standing": 7.24e-05, - "stars": 1.23e-06, - "walking": 7.24e-05, - "accept": 7.08e-05, - "actual": 7.08e-05, - "appear": 7.08e-05, - "attempt": 7.08e-05, - "broke": 7.08e-05, - "channel": 7.08e-05, - "distance": 7.08e-05, - "eating": 7.08e-05, - "exchange": 7.08e-05, - "fat": 7.08e-05, - "fell": 7.08e-05, - "finding": 7.08e-05, - "glass": 7.08e-05, - "learned": 7.08e-05, - "losing": 7.08e-05, - "mobile": 7.08e-05, - "northern": 7.08e-05, - "opened": 7.08e-05, - "placed": 7.08e-05, - "powerful": 7.08e-05, - "prior": 7.08e-05, - "protection": 7.08e-05, - "reached": 7.08e-05, - "receive": 7.08e-05, - "religious": 7.08e-05, - "ride": 7.08e-05, - "robert": 7.08e-05, - "royal": 7.08e-05, - "screen": 7.08e-05, - "serve": 7.08e-05, - "signed": 7.08e-05, - "slow": 7.08e-05, - "species": 7.08e-05, - "speech": 7.08e-05, - "traffic": 7.08e-05, - "tree": 7.08e-05, - "types": 7.24e-08, - "vs": 6.46e-07, - "wearing": 7.08e-05, - "whos": 1.15e-06, - "whom": 7.08e-05, - "wonderful": 7.08e-05, - "agreed": 6.92e-05, - "airport": 6.92e-05, - "animals": 8.51e-07, - "appears": 6.92e-05, - "begin": 6.92e-05, - "benefits": 6.92e-05, - "bottom": 6.92e-05, - "cities": 6.92e-05, - "demand": 6.92e-05, - "engine": 6.92e-05, - "everybody": 6.92e-05, - "famous": 6.92e-05, - "ideas": 1.78e-07, - "investment": 6.92e-05, - "keeping": 6.92e-05, - "lie": 6.92e-05, - "notes": 1e-07, - "partner": 6.92e-05, - "plays": 5.25e-07, - "raised": 6.92e-05, - "runs": 1.12e-07, - "sad": 4.47e-08, - "solution": 6.92e-05, - "songs": 1.02e-06, - "sources": 9.77e-08, - "southern": 6.92e-05, - "square": 6.92e-05, - "stopped": 6.92e-05, - "structure": 6.92e-05, - "thomas": 6.92e-05, - "traditional": 6.92e-05, - "twice": 6.92e-05, - "wind": 6.92e-05, - "worry": 6.92e-05, - "americans": 7.41e-07, - "appeared": 6.76e-05, - "becomes": 6.76e-05, - "brand": 6.76e-05, - "bus": 4.07e-08, - "cent": 6.76e-05, - "chicago": 6.76e-05, - "count": 6.76e-05, - "covered": 6.76e-05, - "critical": 6.76e-05, - "digital": 6.76e-05, - "forced": 6.76e-05, - "fourth": 6.76e-05, - "fresh": 6.76e-05, - "lake": 6.76e-05, - "mental": 6.76e-05, - "mentioned": 6.76e-05, - "missed": 6.76e-05, - "mostly": 6.76e-05, - "mouth": 6.76e-05, - "owner": 6.76e-05, - "photos": 3.39e-07, - "previously": 6.76e-05, - "realize": 6.76e-05, - "remain": 6.76e-05, - "scale": 6.76e-05, - "score": 6.76e-05, - "separate": 6.76e-05, - "smart": 6.76e-05, - "starts": 6.76e-05, - "surface": 6.76e-05, - "throw": 6.76e-05, - "tom": 6.76e-05, - "totally": 6.76e-05, - "twitter": 6.76e-05, - "views": 1.29e-07, - "wedding": 6.76e-05, - "youd": 6.61e-07, - "acting": 6.61e-05, - "actions": 1.23e-07, - "african": 6.61e-05, - "arms": 8.13e-07, - "benefit": 6.61e-05, - "budget": 6.61e-05, - "click": 6.61e-05, - "estate": 6.61e-05, - "failed": 6.61e-05, - "faith": 6.61e-05, - "fashion": 6.61e-05, - "feature": 6.61e-05, - "fund": 6.61e-05, - "generation": 6.61e-05, - "hearing": 6.61e-05, - "hill": 6.61e-05, - "jack": 6.61e-05, - "larger": 6.61e-05, - "louis": 6.61e-05, - "metal": 6.61e-05, - "mid": 6.61e-05, - "paris": 6.61e-05, - "profile": 6.61e-05, - "pull": 6.61e-05, - "push": 6.61e-05, - "returned": 6.61e-05, - "rose": 6.61e-05, - "seat": 6.61e-05, - "seemed": 6.61e-05, - "sexual": 6.61e-05, - "shouldnt": 3.16e-08, - "target": 6.61e-05, - "understanding": 6.61e-05, - "village": 6.61e-05, - "agent": 6.46e-05, - "animal": 6.46e-05, - "apply": 6.46e-05, - "authority": 6.46e-05, - "basis": 6.46e-05, - "becoming": 6.46e-05, - "chris": 6.46e-05, - "draw": 6.46e-05, - "dude": 6.46e-05, - "employees": 7.59e-07, - "enter": 6.46e-05, - "ex": 6.46e-05, - "follows": 6.46e-05, - "foundation": 6.46e-05, - "gain": 6.46e-05, - "http": 6.46e-05, - "individuals": 2.04e-06, - "japanese": 6.46e-05, - "leaders": 1.15e-06, - "memory": 6.46e-05, - "prime": 6.46e-05, - "projects": 1.58e-06, - "ring": 6.46e-05, - "rise": 6.46e-05, - "selling": 6.46e-05, - "served": 6.46e-05, - "silver": 6.46e-05, - "soul": 6.46e-05, - "spread": 6.46e-05, - "supply": 6.46e-05, - "waste": 6.46e-05, - "weird": 6.46e-05, - "adult": 6.31e-05, - "apparently": 6.31e-05, - "artist": 6.31e-05, - "chairman": 6.31e-05, - "edition": 6.31e-05, - "engineering": 6.31e-05, - "grade": 6.31e-05, - "happening": 6.31e-05, - "healthy": 6.31e-05, - "institute": 6.31e-05, - "method": 6.31e-05, - "mike": 6.31e-05, - "monday": 6.31e-05, - "nations": 9.77e-06, - "obviously": 6.31e-05, - "option": 6.31e-05, - "prison": 6.31e-05, - "provides": 6.31e-05, - "remains": 6.31e-05, - "senate": 6.31e-05, - "smaller": 6.31e-05, - "somebody": 6.31e-05, - "stone": 6.31e-05, - "strength": 6.31e-05, - "users": 2.14e-06, - "wild": 6.31e-05, - "window": 6.31e-05, - "winner": 6.31e-05, - "arrived": 6.17e-05, - "bag": 6.17e-05, - "bet": 6.17e-05, - "camp": 6.17e-05, - "cast": 6.17e-05, - "christ": 6.17e-05, - "continues": 6.17e-05, - "correct": 6.17e-05, - "dangerous": 6.17e-05, - "ed": 1.58e-08, - "extremely": 6.17e-05, - "firm": 6.17e-05, - "greatest": 6.17e-05, - "handle": 6.17e-05, - "improve": 6.17e-05, - "indeed": 6.17e-05, - "leaves": 2.57e-08, - "movies": 1.26e-06, - "negative": 6.17e-05, - "prevent": 6.17e-05, - "removed": 6.17e-05, - "richard": 6.17e-05, - "spirit": 6.17e-05, - "television": 6.17e-05, - "till": 6.17e-05, - "trouble": 6.17e-05, - "usa": 6.17e-05, - "videos": 8.32e-07, - "advantage": 6.03e-05, - "apart": 6.03e-05, - "aware": 6.03e-05, - "cat": 6.03e-05, - "customers": 1.2e-06, - "decide": 6.03e-05, - "dinner": 6.03e-05, - "dollars": 1.58e-07, - "eastern": 6.03e-05, - "fifth": 6.03e-05, - "function": 6.03e-05, - "gift": 6.03e-05, - "helping": 6.03e-05, - "herself": 6.03e-05, - "impossible": 6.03e-05, - "influence": 6.03e-05, - "items": 1.48e-07, - "joe": 6.03e-05, - "los": 1.91e-07, - "marketing": 6.03e-05, - "mary": 6.03e-05, - "materials": 1.66e-07, - "nor": 6.03e-05, - "produce": 6.03e-05, - "progress": 6.03e-05, - "proud": 6.03e-05, - "require": 6.03e-05, - "shooting": 6.03e-05, - "shut": 6.03e-05, - "standards": 8.71e-08, - "tells": 6.03e-05, - "thinks": 8.13e-08, - "van": 6.03e-05, - "wood": 1.26e-08, - "background": 5.89e-05, - "birth": 5.89e-05, - "bridge": 5.89e-05, - "carried": 5.89e-05, - "charles": 5.89e-05, - "classes": 5.89e-05, - "completed": 5.89e-05, - "concept": 5.89e-05, - "copy": 5.89e-05, - "dear": 5.89e-05, - "dogs": 4.07e-06, - "drugs": 1.91e-07, - "efforts": 5.89e-05, - "garden": 5.89e-05, - "host": 5.89e-05, - "housing": 5.89e-05, - "inc": 5.89e-05, - "israel": 5.89e-05, - "journal": 5.89e-05, - "labor": 5.89e-05, - "leadership": 5.89e-05, - "length": 5.89e-05, - "lucky": 5.89e-05, - "neither": 5.89e-05, - "onto": 5.89e-05, - "patient": 5.89e-05, - "possibly": 5.89e-05, - "prove": 5.89e-05, - "rare": 5.89e-05, - "setting": 5.89e-05, - "skills": 5.89e-05, - "software": 5.89e-05, - "thousands": 5.89e-05, - "tough": 5.89e-05, - "units": 8.32e-07, - "ad": 5.75e-05, - "alive": 5.75e-05, - "apple": 5.75e-05, - "balance": 5.75e-05, - "birthday": 5.75e-05, - "bitch": 5.75e-05, - "boss": 5.75e-05, - "cards": 4.47e-07, - "changing": 5.75e-05, - "connection": 5.75e-05, - "dress": 5.75e-05, - "easier": 5.75e-05, - "fellow": 5.75e-05, - "florida": 5.75e-05, - "horse": 5.75e-05, - "knowing": 5.75e-05, - "liked": 5.75e-05, - "magic": 5.75e-05, - "managed": 5.75e-05, - "map": 5.75e-05, - "net": 5.75e-05, - "owned": 5.75e-05, - "request": 5.75e-05, - "stick": 5.75e-05, - "theyve": 3.98e-07, - "turns": 2.82e-08, - "vehicle": 5.75e-05, - "volume": 5.75e-05, - "wake": 5.75e-05, - "aid": 5.62e-05, - "beauty": 5.62e-05, - "believed": 5.62e-05, - "billion": 5.62e-05, - "busy": 5.62e-05, - "buying": 5.62e-05, - "cells": 4.27e-07, - "concerned": 5.62e-05, - "conversation": 5.62e-05, - "corner": 5.62e-05, - "criminal": 5.62e-05, - "cultural": 5.62e-05, - "develop": 5.62e-05, - "driver": 5.62e-05, - "ends": 1.7e-07, - "existing": 5.62e-05, - "farm": 5.62e-05, - "file": 5.62e-05, - "fix": 5.62e-05, - "fly": 5.62e-05, - "frank": 5.62e-05, - "guide": 5.62e-05, - "images": 8.13e-08, - "investigation": 5.62e-05, - "mexico": 5.62e-05, - "operating": 5.62e-05, - "paying": 5.62e-05, - "presented": 5.62e-05, - "raise": 5.62e-05, - "responsibility": 5.62e-05, - "roll": 5.62e-05, - "slightly": 5.62e-05, - "suggest": 5.62e-05, - "surprise": 5.62e-05, - "technical": 5.62e-05, - "thoughts": 5.62e-05, - "treat": 5.62e-05, - "unique": 5.62e-05, - "variety": 5.62e-05, - "violence": 5.62e-05, - "weapons": 2.51e-07, - "yours": 2.57e-07, - "youth": 5.62e-05, - "appreciate": 5.5e-05, - "bigger": 5.5e-05, - "breaking": 5.5e-05, - "discovered": 5.5e-05, - "dry": 5.5e-05, - "edge": 5.5e-05, - "evil": 5.5e-05, - "excited": 5.5e-05, - "forever": 5.5e-05, - "funds": 6.61e-07, - "helps": 5.5e-05, - "henry": 5.5e-05, - "injury": 5.5e-05, - "iron": 5.5e-05, - "lovely": 5.5e-05, - "mad": 5.5e-05, - "magazine": 5.5e-05, - "martin": 5.5e-05, - "models": 7.08e-07, - "offers": 5.5e-05, - "ordered": 5.5e-05, - "parliament": 5.5e-05, - "prepared": 5.5e-05, - "reference": 5.5e-05, - "religion": 5.5e-05, - "sites": 2e-06, - "somewhere": 5.5e-05, - "stated": 5.5e-05, - "strategy": 5.5e-05, - "teachers": 2.63e-06, - "web": 5.5e-05, - "wine": 5.5e-05, - "accounts": 3.02e-07, - "angeles": 5.37e-05, - "arm": 5.37e-05, - "audience": 5.37e-05, - "bay": 5.37e-05, - "blog": 5.37e-05, - "closer": 5.37e-05, - "core": 5.37e-05, - "democratic": 5.37e-05, - "description": 5.37e-05, - "dropped": 5.37e-05, - "excellent": 5.37e-05, - "exist": 5.37e-05, - "figures": 1.17e-07, - "forms": 9.77e-08, - "guard": 5.37e-05, - "honest": 5.37e-05, - "issued": 5.37e-05, - "joined": 5.37e-05, - "jones": 1.45e-08, - "lee": 5.37e-05, - "lies": 5.37e-05, - "likes": 5.37e-05, - "medicine": 5.37e-05, - "mention": 5.37e-05, - "mountain": 5.37e-05, - "nuclear": 5.37e-05, - "orders": 3.72e-07, - "port": 5.37e-05, - "presence": 5.37e-05, - "reaction": 5.37e-05, - "reduce": 5.37e-05, - "shoot": 5.37e-05, - "sides": 8.32e-07, - "solid": 5.37e-05, - "spanish": 5.37e-05, - "sport": 5.37e-05, - "steps": 5.37e-05, - "stress": 5.37e-05, - "taste": 5.37e-05, - "tea": 5.37e-05, - "victory": 5.37e-05, - "afternoon": 5.25e-05, - "assistant": 5.25e-05, - "britain": 5.25e-05, - "citizens": 9.12e-07, - "classic": 5.25e-05, - "clothes": 5.25e-05, - "decisions": 5.01e-08, - "electric": 5.25e-05, - "emergency": 5.25e-05, - "entered": 5.25e-05, - "entirely": 5.25e-05, - "facts": 5.25e-05, - "failure": 5.25e-05, - "festival": 5.25e-05, - "flat": 5.25e-05, - "fuel": 5.25e-05, - "harry": 5.25e-05, - "hello": 5.25e-05, - "houses": 1.55e-06, - "initial": 5.25e-05, - "introduced": 5.25e-05, - "johnson": 5.25e-05, - "kick": 5.25e-05, - "links": 3.02e-07, - "mail": 5.25e-05, - "massive": 5.25e-05, - "matters": 6.31e-08, - "pair": 5.25e-05, - "picked": 5.25e-05, - "pieces": 9.55e-08, - "plane": 5.25e-05, - "plenty": 5.25e-05, - "prince": 5.25e-05, - "proper": 5.25e-05, - "providing": 5.25e-05, - "quarter": 5.25e-05, - "regional": 5.25e-05, - "scott": 5.25e-05, - "session": 5.25e-05, - "shape": 5.25e-05, - "sky": 5.25e-05, - "teaching": 5.25e-05, - "toward": 5.25e-05, - "transfer": 5.25e-05, - "upper": 5.25e-05, - "useful": 5.25e-05, - "valley": 5.25e-05, - "watched": 5.25e-05, - "willing": 5.25e-05, - "windows": 1.41e-07, - "zone": 5.25e-05, - "accident": 5.13e-05, - "advanced": 5.13e-05, - "alternative": 5.13e-05, - "anywhere": 5.13e-05, - "articles": 3.39e-07, - "awards": 9.12e-08, - "bear": 5.13e-05, - "boat": 5.13e-05, - "bringing": 5.13e-05, - "capacity": 5.13e-05, - "cheap": 5.13e-05, - "climate": 5.13e-05, - "communities": 5.13e-05, - "discussion": 5.13e-05, - "drinking": 5.13e-05, - "duty": 5.13e-05, - "fantastic": 5.13e-05, - "feelings": 7.41e-08, - "flying": 5.13e-05, - "governor": 5.13e-05, - "hasnt": 1.12e-06, - "hundred": 5.13e-05, - "industrial": 5.13e-05, - "joint": 5.13e-05, - "mix": 5.13e-05, - "museum": 5.13e-05, - "options": 5.13e-05, - "path": 5.13e-05, - "plants": 7.24e-07, - "policies": 5.13e-05, - "promise": 5.13e-05, - "proposed": 5.13e-05, - "purchase": 5.13e-05, - "rain": 5.13e-05, - "remove": 5.13e-05, - "signs": 7.41e-08, - "spending": 5.13e-05, - "steel": 5.13e-05, - "steve": 5.13e-05, - "supporting": 5.13e-05, - "terrible": 5.13e-05, - "theyll": 3.72e-07, - "tired": 5.13e-05, - "treated": 5.13e-05, - "turning": 5.13e-05, - "vice": 5.13e-05, - "warm": 5.13e-05, - "afraid": 5.01e-05, - "arts": 5.5e-07, - "beer": 5.01e-05, - "border": 5.01e-05, - "canadian": 5.01e-05, - "command": 5.01e-05, - "crew": 5.01e-05, - "crowd": 5.01e-05, - "dating": 5.01e-05, - "dick": 5.01e-05, - "elements": 5.5e-08, - "enemy": 5.01e-05, - "ensure": 5.01e-05, - "environmental": 5.01e-05, - "filled": 5.01e-05, - "fixed": 5.01e-05, - "forest": 5.01e-05, - "intelligence": 5.01e-05, - "intended": 5.01e-05, - "labour": 5.01e-05, - "limit": 5.01e-05, - "moon": 5.01e-05, - "ocean": 5.01e-05, - "powers": 7.94e-07, - "profit": 5.01e-05, - "proof": 5.01e-05, - "republican": 5.01e-05, - "soldiers": 1.23e-06, - "suit": 5.01e-05, - "wins": 8.91e-08, - "womens": 2.51e-06, - "appearance": 4.9e-05, - "asian": 4.9e-05, - "attorney": 4.9e-05, - "banks": 2.4e-06, - "behavior": 4.9e-05, - "ben": 4.9e-05, - "bodies": 4.9e-05, - "brothers": 5.37e-06, - "buildings": 1.78e-06, - "chair": 4.9e-05, - "creating": 4.9e-05, - "debt": 4.9e-05, - "domestic": 4.9e-05, - "expensive": 4.9e-05, - "grew": 4.9e-05, - "historical": 4.9e-05, - "homes": 8.71e-07, - "honestly": 4.9e-05, - "honor": 4.9e-05, - "jump": 4.9e-05, - "launch": 4.9e-05, - "listed": 4.9e-05, - "minimum": 4.9e-05, - "native": 4.9e-05, - "noted": 4.9e-05, - "originally": 4.9e-05, - "planned": 4.9e-05, - "pm": 4.9e-05, - "ray": 4.9e-05, - "sets": 1.86e-07, - "suddenly": 4.9e-05, - "supreme": 4.9e-05, - "survey": 4.9e-05, - "tech": 4.9e-05, - "trees": 4.37e-07, - "update": 4.9e-05, - "user": 4.9e-05, - "writer": 4.9e-05, - "yellow": 4.9e-05, - "younger": 4.9e-05, - "ancient": 4.79e-05, - "attacks": 1.12e-07, - "charges": 4.79e-05, - "combined": 4.79e-05, - "communication": 4.79e-05, - "connected": 4.79e-05, - "contains": 4.79e-05, - "download": 4.79e-05, - "email": 4.79e-05, - "ending": 4.79e-05, - "exercise": 4.79e-05, - "express": 4.79e-05, - "flow": 4.79e-05, - "formed": 4.79e-05, - "girlfriend": 4.79e-05, - "hero": 4.79e-05, - "illegal": 4.79e-05, - "increasing": 4.79e-05, - "joke": 4.79e-05, - "loan": 4.79e-05, - "methods": 4.79e-05, - "officials": 2.04e-07, - "peoples": 1.82e-05, - "performed": 4.79e-05, - "planet": 4.79e-05, - "relationships": 8.91e-08, - "restaurant": 4.79e-05, - "scotland": 4.79e-05, - "selected": 4.79e-05, - "shared": 4.79e-05, - "shopping": 4.79e-05, - "soft": 4.79e-05, - "stuck": 4.79e-05, - "sugar": 4.79e-05, - "suggested": 4.79e-05, - "supported": 4.79e-05, - "surprised": 4.79e-05, - "taught": 4.79e-05, - "transport": 4.79e-05, - "werent": 1.38e-08, - "accepted": 4.68e-05, - "adding": 4.68e-05, - "affairs": 4.68e-05, - "allows": 4.68e-05, - "appeal": 4.68e-05, - "applied": 4.68e-05, - "appropriate": 4.68e-05, - "artists": 3.31e-06, - "boston": 4.68e-05, - "ca": 4.68e-05, - "confirmed": 4.68e-05, - "device": 4.68e-05, - "drama": 4.68e-05, - "entry": 4.68e-05, - "era": 4.68e-05, - "factor": 4.68e-05, - "feed": 4.68e-05, - "golden": 4.68e-05, - "grant": 4.68e-05, - "grown": 4.68e-05, - "heads": 5.5e-07, - "hoping": 4.68e-05, - "keeps": 4.68e-05, - "lawyer": 4.68e-05, - "legs": 1.62e-07, - "lying": 4.68e-05, - "measures": 4.68e-05, - "mistake": 4.68e-05, - "ms": 1.1e-06, - "muslim": 4.68e-05, - "organizations": 2.57e-06, - "platform": 4.68e-05, - "pool": 4.68e-05, - "pulled": 4.68e-05, - "regarding": 4.68e-05, - "relations": 4.68e-05, - "requires": 4.68e-05, - "route": 4.68e-05, - "saved": 4.68e-05, - "schedule": 4.68e-05, - "scientific": 4.68e-05, - "shoes": 9.12e-08, - "smoke": 4.68e-05, - "squad": 4.68e-05, - "teach": 4.68e-05, - "testing": 4.68e-05, - "tests": 7.59e-08, - "values": 4.68e-05, - "walked": 4.68e-05, - "williams": 9.55e-07, - "ya": 4.68e-05, - "abuse": 4.57e-05, - "angry": 4.57e-05, - "businesses": 4.57e-05, - "candidate": 4.57e-05, - "comfortable": 4.57e-05, - "concern": 4.57e-05, - "developing": 4.57e-05, - "discuss": 4.57e-05, - "elections": 1.86e-07, - "emotional": 4.57e-05, - "et": 4.57e-05, - "everywhere": 4.57e-05, - "facilities": 4.57e-05, - "falling": 4.57e-05, - "fox": 4.57e-05, - "guns": 2.75e-07, - "hole": 4.57e-05, - "holiday": 4.57e-05, - "interests": 4.57e-05, - "internal": 4.57e-05, - "ireland": 4.57e-05, - "italian": 4.57e-05, - "italy": 4.57e-05, - "jersey": 4.57e-05, - "laugh": 4.57e-05, - "leg": 4.57e-05, - "letters": 1.51e-07, - "liberal": 4.57e-05, - "listening": 4.57e-05, - "ll": 4.57e-05, - "loves": 1.7e-06, - "lunch": 4.57e-05, - "max": 4.57e-05, - "milk": 4.57e-05, - "pack": 4.57e-05, - "payment": 4.57e-05, - "perform": 4.57e-05, - "recorded": 4.57e-05, - "relatively": 4.57e-05, - "sector": 4.57e-05, - "sharing": 4.57e-05, - "snow": 4.57e-05, - "storm": 4.57e-05, - "streets": 7.41e-07, - "strike": 4.57e-05, - "studio": 4.57e-05, - "sub": 4.57e-05, - "weak": 4.57e-05, - "youtube": 4.57e-05, - "actor": 4.47e-05, - "advance": 4.47e-05, - "apartment": 4.47e-05, - "asia": 4.47e-05, - "chain": 4.47e-05, - "chapter": 4.47e-05, - "committed": 4.47e-05, - "confidence": 4.47e-05, - "cook": 4.47e-05, - "cute": 4.47e-05, - "equal": 4.47e-05, - "fake": 4.47e-05, - "finance": 4.47e-05, - "focused": 4.47e-05, - "hits": 7.59e-08, - "identity": 4.47e-05, - "journey": 4.47e-05, - "kitchen": 4.47e-05, - "korea": 4.47e-05, - "leads": 6.31e-08, - "maintain": 4.47e-05, - "measure": 4.47e-05, - "mm": 4.47e-05, - "numerous": 4.47e-05, - "owners": 2.19e-06, - "posts": 6.76e-07, - "properties": 4.47e-05, - "quiet": 4.47e-05, - "revealed": 4.47e-05, - "specifically": 4.47e-05, - "split": 4.47e-05, - "task": 4.47e-05, - "taxes": 4.47e-05, - "taylor": 4.47e-05, - "twenty": 4.47e-05, - "urban": 4.47e-05, - "acts": 4.07e-07, - "affected": 4.37e-05, - "aircraft": 4.37e-05, - "applications": 9.12e-08, - "approved": 4.37e-05, - "approximately": 4.37e-05, - "argument": 4.37e-05, - "arrested": 4.37e-05, - "claimed": 4.37e-05, - "conflict": 4.37e-05, - "considering": 4.37e-05, - "corporate": 4.37e-05, - "debate": 4.37e-05, - "determined": 4.37e-05, - "distribution": 4.37e-05, - "documents": 8.71e-08, - "escape": 4.37e-05, - "extended": 4.37e-05, - "factors": 7.24e-08, - "faster": 4.37e-05, - "fault": 4.37e-05, - "fill": 4.37e-05, - "films": 3.8e-06, - "flowers": 1.38e-07, - "friendly": 4.37e-05, - "ladies": 4.37e-05, - "lay": 4.37e-05, - "lights": 3.63e-07, - "millions": 2e-08, - "mixed": 4.37e-05, - "phase": 4.37e-05, - "properly": 4.37e-05, - "pure": 4.37e-05, - "reduced": 4.37e-05, - "requirements": 4.37e-05, - "residents": 2.19e-07, - "revenue": 4.37e-05, - "sam": 4.37e-05, - "sat": 4.37e-05, - "secure": 4.37e-05, - "smile": 4.37e-05, - "strange": 4.37e-05, - "talent": 4.37e-05, - "temperature": 4.37e-05, - "thousand": 4.37e-05, - "tony": 4.37e-05, - "troops": 4.37e-05, - "truck": 4.37e-05, - "votes": 1.15e-07, - "ah": 4.27e-05, - "authorities": 4.27e-05, - "basically": 4.27e-05, - "besides": 4.27e-05, - "bird": 4.27e-05, - "blame": 4.27e-05, - "bob": 4.27e-05, - "bowl": 4.27e-05, - "causes": 4.27e-05, - "chicken": 4.27e-05, - "collected": 4.27e-05, - "context": 4.27e-05, - "coverage": 4.27e-05, - "determine": 4.27e-05, - "display": 4.27e-05, - "dying": 4.27e-05, - "elected": 4.27e-05, - "examples": 4.27e-05, - "experienced": 4.27e-05, - "falls": 2e-07, - "false": 4.27e-05, - "fired": 4.27e-05, - "forgot": 4.27e-05, - "funding": 4.27e-05, - "identified": 4.27e-05, - "iii": 4.27e-05, - "incredible": 4.27e-05, - "inspired": 4.27e-05, - "launched": 4.27e-05, - "ma": 4.27e-05, - "meat": 4.27e-05, - "ministry": 4.27e-05, - "mode": 4.27e-05, - "neck": 4.27e-05, - "noticed": 4.27e-05, - "novel": 4.27e-05, - "obvious": 4.27e-05, - "passing": 4.27e-05, - "positions": 5.89e-08, - "remaining": 4.27e-05, - "scored": 4.27e-05, - "shirt": 4.27e-05, - "shots": 6.17e-08, - "slowly": 4.27e-05, - "stadium": 4.27e-05, - "stores": 8.91e-07, - "surgery": 4.27e-05, - "trading": 4.27e-05, - "tuesday": 4.27e-05, - "vision": 4.27e-05, - "whenever": 4.27e-05, - "worried": 4.27e-05, - "zero": 4.27e-05, - "alex": 4.17e-05, - "allowing": 4.17e-05, - "begins": 4.17e-05, - "champion": 4.17e-05, - "charged": 4.17e-05, - "cream": 4.17e-05, - "crisis": 4.17e-05, - "daniel": 4.17e-05, - "delivered": 4.17e-05, - "editor": 4.17e-05, - "estimated": 4.17e-05, - "eu": 4.17e-05, - "giant": 4.17e-05, - "iran": 4.17e-05, - "jail": 4.17e-05, - "jim": 4.17e-05, - "kingdom": 4.17e-05, - "literature": 4.17e-05, - "mayor": 4.17e-05, - "minor": 4.17e-05, - "moments": 7.76e-07, - "opposite": 4.17e-05, - "orange": 4.17e-05, - "ourselves": 4.17e-05, - "pages": 3.89e-07, - "remained": 4.17e-05, - "selection": 4.17e-05, - "serving": 4.17e-05, - "signal": 4.17e-05, - "stream": 4.17e-05, - "struggle": 4.17e-05, - "suicide": 4.17e-05, - "talked": 4.17e-05, - "theme": 4.17e-05, - "thursday": 4.17e-05, - "tiny": 4.17e-05, - "typically": 4.17e-05, - "un": 4.17e-05, - "unfortunately": 4.17e-05, - "usual": 4.17e-05, - "vehicles": 8.71e-07, - "virginia": 4.17e-05, - "voted": 4.17e-05, - "voting": 4.17e-05, - "walls": 3.47e-07, - "wave": 4.17e-05, - "alcohol": 4.07e-05, - "assembly": 4.07e-05, - "breakfast": 4.07e-05, - "bright": 4.07e-05, - "brings": 4.07e-05, - "capable": 4.07e-05, - "carrying": 4.07e-05, - "chosen": 4.07e-05, - "combination": 4.07e-05, - "conservative": 4.07e-05, - "customer": 4.07e-05, - "cutting": 4.07e-05, - "desire": 4.07e-05, - "destroyed": 4.07e-05, - "draft": 4.07e-05, - "drunk": 4.07e-05, - "essential": 4.07e-05, - "fail": 4.07e-05, - "familiar": 4.07e-05, - "finds": 4.07e-05, - "granted": 4.07e-05, - "guilty": 4.07e-05, - "humans": 4.68e-07, - "hundreds": 4.07e-05, - "improved": 4.07e-05, - "jewish": 4.07e-05, - "largely": 4.07e-05, - "laughing": 4.07e-05, - "markets": 7.59e-07, - "medium": 4.07e-05, - "ohio": 4.07e-05, - "opportunities": 4.07e-05, - "papers": 9.33e-07, - "perfectly": 4.07e-05, - "recommend": 4.07e-05, - "referred": 4.07e-05, - "relevant": 4.07e-05, - "seek": 4.07e-05, - "sending": 4.07e-05, - "solo": 4.07e-05, - "spoke": 4.07e-05, - "stands": 4.07e-05, - "talks": 7.76e-08, - "ticket": 4.07e-05, - "unable": 4.07e-05, - "upset": 4.07e-05, - "wing": 4.07e-05, - "worlds": 1.7e-05, - "answers": 1.1e-07, - "birds": 1.7e-06, - "bomb": 3.98e-05, - "creative": 3.98e-05, - "cycle": 3.98e-05, - "dealing": 3.98e-05, - "directed": 3.98e-05, - "don": 3.98e-05, - "educational": 3.98e-05, - "entertainment": 3.98e-05, - "extreme": 3.98e-05, - "facility": 3.98e-05, - "fields": 4.07e-07, - "goods": 1.17e-07, - "hang": 3.98e-05, - "holds": 3.98e-05, - "info": 3.98e-05, - "mainly": 3.98e-05, - "maximum": 3.98e-05, - "newspaper": 3.98e-05, - "offering": 3.98e-05, - "painting": 3.98e-05, - "republic": 3.98e-05, - "reserve": 3.98e-05, - "returns": 3.98e-05, - "row": 3.98e-05, - "salt": 3.98e-05, - "scared": 3.98e-05, - "scottish": 3.98e-05, - "shares": 3.98e-05, - "statistics": 3.98e-05, - "switch": 3.98e-05, - "territory": 3.98e-05, - "threat": 3.98e-05, - "tickets": 3.98e-05, - "wales": 3.98e-05, - "adults": 2.09e-07, - "affect": 3.89e-05, - "appointed": 3.89e-05, - "armed": 3.89e-05, - "aside": 3.89e-05, - "assistance": 3.89e-05, - "bell": 3.89e-05, - "blow": 3.89e-05, - "bond": 3.89e-05, - "boyfriend": 3.89e-05, - "careful": 3.89e-05, - "circumstances": 3.89e-05, - "communications": 3.89e-05, - "concerns": 3.89e-05, - "controlled": 3.89e-05, - "corporation": 3.89e-05, - "cry": 3.89e-05, - "danger": 3.89e-05, - "deals": 2.82e-07, - "delivery": 3.89e-05, - "deserve": 3.89e-05, - "devices": 4.27e-07, - "dollar": 3.89e-05, - "dreams": 1.74e-07, - "empty": 3.89e-05, - "enjoyed": 3.89e-05, - "explained": 3.89e-05, - "faces": 1.12e-07, - "folks": 9.33e-08, - "fucked": 3.89e-05, - "gender": 3.89e-05, - "instance": 3.89e-05, - "kim": 3.89e-05, - "kinda": 3.89e-05, - "matches": 3.89e-05, - "mile": 3.89e-05, - "motion": 3.89e-05, - "moves": 5.62e-08, - "nick": 3.89e-05, - "pacific": 3.89e-05, - "prize": 3.89e-05, - "realized": 3.89e-05, - "reasonable": 3.89e-05, - "receiving": 3.89e-05, - "register": 3.89e-05, - "resolution": 3.89e-05, - "rural": 3.89e-05, - "ryan": 3.89e-05, - "saving": 3.89e-05, - "sees": 4.17e-07, - "singing": 3.89e-05, - "spain": 3.89e-05, - "tools": 7.76e-08, - "typical": 3.89e-05, - "universe": 3.89e-05, - "warning": 3.89e-05, - "wars": 1.12e-06, - "wednesday": 3.89e-05, - "admit": 3.8e-05, - "attitude": 3.8e-05, - "branch": 3.8e-05, - "brazil": 3.8e-05, - "conducted": 3.8e-05, - "decades": 1.95e-07, - "dedicated": 3.8e-05, - "definition": 3.8e-05, - "drawing": 3.8e-05, - "favor": 3.8e-05, - "flag": 3.8e-05, - "frame": 3.8e-05, - "guest": 3.8e-05, - "ha": 3.8e-05, - "heaven": 3.8e-05, - "independence": 3.8e-05, - "institutions": 5.13e-07, - "itll": 5.37e-07, - "jackson": 3.8e-05, - "kiss": 3.8e-05, - "load": 3.8e-05, - "plot": 3.8e-05, - "possibility": 3.8e-05, - "random": 3.8e-05, - "recovery": 3.8e-05, - "rent": 3.8e-05, - "replace": 3.8e-05, - "represent": 3.8e-05, - "reviews": 1.91e-07, - "scenes": 1.82e-07, - "seeking": 3.8e-05, - "senator": 3.8e-05, - "sentence": 3.8e-05, - "teeth": 3.8e-05, - "tips": 5.01e-08, - "trained": 3.8e-05, - "understood": 3.8e-05, - "academic": 3.72e-05, - "academy": 3.72e-05, - "accurate": 3.72e-05, - "achieve": 3.72e-05, - "adam": 1.1e-08, - "afford": 3.72e-05, - "andrew": 3.72e-05, - "assume": 3.72e-05, - "bbc": 3.72e-05, - "bottle": 3.72e-05, - "bunch": 3.72e-05, - "category": 3.72e-05, - "chat": 3.72e-05, - "cheese": 3.72e-05, - "chemical": 3.72e-05, - "clinton": 3.72e-05, - "competitive": 3.72e-05, - "detail": 3.72e-05, - "diet": 3.72e-05, - "em": 3.72e-05, - "favourite": 3.72e-05, - "fruit": 3.72e-05, - "harder": 3.72e-05, - "hed": 4.47e-07, - "index": 3.72e-05, - "item": 3.72e-05, - "lane": 3.72e-05, - "mess": 3.72e-05, - "navy": 3.72e-05, - "normally": 3.72e-05, - "occurred": 3.72e-05, - "opposition": 3.72e-05, - "parent": 3.72e-05, - "permanent": 3.72e-05, - "personally": 3.72e-05, - "pleasure": 3.72e-05, - "prefer": 3.72e-05, - "programme": 3.72e-05, - "representative": 3.72e-05, - "scheme": 3.72e-05, - "shift": 3.72e-05, - "stood": 3.72e-05, - "storage": 3.72e-05, - "tank": 3.72e-05, - "tend": 3.72e-05, - "tight": 3.72e-05, - "transportation": 3.72e-05, - "ultimately": 3.72e-05, - "unlike": 3.72e-05, - "weekly": 3.72e-05, - "yard": 3.72e-05, - "anybody": 3.63e-05, - "assets": 7.08e-08, - "basketball": 3.63e-05, - "button": 3.63e-05, - "candidates": 7.94e-07, - "combat": 3.63e-05, - "constitution": 3.63e-05, - "consumer": 3.63e-05, - "counter": 3.63e-05, - "creation": 3.63e-05, - "crown": 3.63e-05, - "crying": 3.63e-05, - "dc": 3.63e-05, - "defined": 3.63e-05, - "depending": 3.63e-05, - "depression": 3.63e-05, - "describe": 3.63e-05, - "drivers": 6.03e-06, - "el": 3.63e-05, - "employment": 3.63e-05, - "exclusive": 3.63e-05, - "excuse": 3.63e-05, - "expert": 3.63e-05, - "frequently": 3.63e-05, - "golf": 3.63e-05, - "grace": 3.63e-05, - "hopefully": 3.63e-05, - "identify": 3.63e-05, - "importance": 3.63e-05, - "kevin": 3.63e-05, - "laid": 3.63e-05, - "latter": 3.63e-05, - "manufacturing": 3.63e-05, - "mining": 3.63e-05, - "object": 3.63e-05, - "partners": 1.91e-06, - "pattern": 3.63e-05, - "performing": 3.63e-05, - "personnel": 3.63e-05, - "perspective": 3.63e-05, - "pregnant": 3.63e-05, - "premier": 3.63e-05, - "promote": 3.63e-05, - "revolution": 3.63e-05, - "rooms": 5.62e-07, - "severe": 3.63e-05, - "sleeping": 3.63e-05, - "suppose": 3.63e-05, - "tool": 3.63e-05, - "tournament": 3.63e-05, - "turkey": 3.63e-05, - "ve": 3.63e-05, - "victim": 3.63e-05, - "victims": 3.55e-06, - "agents": 7.08e-07, - "amazon": 3.55e-05, - "arrest": 3.55e-05, - "attend": 3.55e-05, - "ban": 3.55e-05, - "brilliant": 3.55e-05, - "carbon": 3.55e-05, - "catholic": 3.55e-05, - "chose": 3.55e-05, - "circle": 3.55e-05, - "concert": 3.55e-05, - "crash": 3.55e-05, - "declared": 3.55e-05, - "deliver": 3.55e-05, - "depth": 3.55e-05, - "deputy": 3.55e-05, - "dirty": 3.55e-05, - "doctors": 5.13e-06, - "earned": 3.55e-05, - "electronic": 3.55e-05, - "error": 3.55e-05, - "existence": 3.55e-05, - "experiences": 3.55e-05, - "expression": 3.55e-05, - "factory": 3.55e-05, - "headed": 3.55e-05, - "interior": 3.55e-05, - "joy": 3.55e-05, - "jr": 3.55e-05, - "legislation": 3.55e-05, - "maintenance": 3.55e-05, - "manner": 3.55e-05, - "mate": 3.55e-05, - "matt": 3.55e-05, - "nearby": 3.55e-05, - "noise": 3.55e-05, - "origin": 3.55e-05, - "pakistan": 3.55e-05, - "panel": 3.55e-05, - "personality": 3.55e-05, - "plate": 3.55e-05, - "practices": 5.89e-08, - "prepare": 3.55e-05, - "relief": 3.55e-05, - "replaced": 3.55e-05, - "resistance": 3.55e-05, - "retail": 3.55e-05, - "rice": 3.55e-05, - "roads": 3.89e-07, - "roof": 3.55e-05, - "shame": 3.55e-05, - "ships": 3.55e-06, - "somewhat": 3.55e-05, - "staying": 3.55e-05, - "stronger": 3.55e-05, - "surely": 3.55e-05, - "tip": 3.55e-05, - "updated": 3.55e-05, - "writers": 1.95e-06, - "absolute": 3.47e-05, - "advertising": 3.47e-05, - "agencies": 3.47e-05, - "baseball": 3.47e-05, - "bathroom": 3.47e-05, - "bible": 3.47e-05, - "cable": 3.47e-05, - "calm": 3.47e-05, - "championship": 3.47e-05, - "checked": 3.47e-05, - "client": 3.47e-05, - "constant": 3.47e-05, - "da": 3.47e-05, - "dates": 1.12e-07, - "degrees": 3.47e-05, - "democrats": 1.82e-07, - "doors": 1.95e-07, - "driven": 3.47e-05, - "dumb": 3.47e-05, - "empire": 3.47e-05, - "exciting": 3.47e-05, - "expansion": 3.47e-05, - "heavily": 3.47e-05, - "hide": 3.47e-05, - "incident": 3.47e-05, - "irish": 3.47e-05, - "linked": 3.47e-05, - "manage": 3.47e-05, - "messages": 3.47e-05, - "michigan": 3.47e-05, - "multi": 3.47e-05, - "nfl": 3.47e-05, - "politicians": 2.88e-07, - "print": 3.47e-05, - "quit": 3.47e-05, - "refused": 3.47e-05, - "reporting": 3.47e-05, - "sight": 3.47e-05, - "significantly": 3.47e-05, - "sing": 3.47e-05, - "soviet": 3.47e-05, - "weapon": 3.47e-05, - "wet": 3.47e-05, - "widely": 3.47e-05, - "worldwide": 3.47e-05, - "ages": 9.55e-08, - "anniversary": 3.39e-05, - "attractive": 3.39e-05, - "bike": 3.39e-05, - "broad": 3.39e-05, - "burn": 3.39e-05, - "cake": 3.39e-05, - "causing": 3.39e-05, - "closely": 3.39e-05, - "constantly": 3.39e-05, - "contest": 3.39e-05, - "deaths": 6.76e-07, - "depends": 3.39e-05, - "drawn": 3.39e-05, - "fees": 9.12e-08, - "francisco": 3.39e-05, - "haha": 3.39e-05, - "hardly": 3.39e-05, - "hat": 3.39e-05, - "height": 3.39e-05, - "hidden": 3.39e-05, - "hong": 3.39e-05, - "invited": 3.39e-05, - "letting": 3.39e-05, - "loud": 3.39e-05, - "manchester": 3.39e-05, - "marine": 3.39e-05, - "motor": 3.39e-05, - "officially": 3.39e-05, - "pc": 3.39e-05, - "peak": 3.39e-05, - "portion": 3.39e-05, - "pounds": 8.71e-08, - "princess": 3.39e-05, - "protein": 3.39e-05, - "puts": 3.39e-05, - "raw": 3.39e-05, - "reform": 3.39e-05, - "regions": 2.45e-06, - "represented": 3.39e-05, - "respond": 3.39e-05, - "retirement": 3.39e-05, - "sample": 3.39e-05, - "seats": 1.12e-07, - "secondary": 3.39e-05, - "solar": 3.39e-05, - "somehow": 3.39e-05, - "stayed": 3.39e-05, - "suffering": 3.39e-05, - "sydney": 3.39e-05, - "todays": 1.26e-06, - "tries": 3.39e-05, - "ultimate": 3.39e-05, - "unknown": 3.39e-05, - "wilson": 3.39e-05, - "wondering": 3.39e-05, - "attached": 3.31e-05, - "attacked": 3.31e-05, - "automatically": 3.31e-05, - "balls": 6.31e-07, - "battery": 3.31e-05, - "bills": 1.95e-06, - "blind": 3.31e-05, - "breath": 3.31e-05, - "brief": 3.31e-05, - "carolina": 3.31e-05, - "chest": 3.31e-05, - "conduct": 3.31e-05, - "debut": 3.31e-05, - "decade": 3.31e-05, - "destroy": 3.31e-05, - "differences": 3.31e-05, - "edward": 3.31e-05, - "engaged": 3.31e-05, - "experts": 1.82e-07, - "expressed": 3.31e-05, - "external": 3.31e-05, - "fantasy": 3.31e-05, - "ft": 3.31e-05, - "grab": 3.31e-05, - "hollywood": 3.31e-05, - "immediate": 3.31e-05, - "introduction": 3.31e-05, - "joseph": 3.31e-05, - "license": 3.31e-05, - "paint": 3.31e-05, - "pilot": 3.31e-05, - "pink": 3.31e-05, - "presidential": 3.31e-05, - "principal": 3.31e-05, - "recognize": 3.31e-05, - "recognized": 3.31e-05, - "registered": 3.31e-05, - "regularly": 3.31e-05, - "representatives": 6.92e-08, - "rising": 3.31e-05, - "seasons": 3.72e-06, - "shipping": 3.31e-05, - "singer": 3.31e-05, - "smoking": 3.31e-05, - "steam": 3.31e-05, - "suffered": 3.31e-05, - "survive": 3.31e-05, - "tall": 3.31e-05, - "theatre": 3.31e-05, - "therapy": 3.31e-05, - "witness": 3.31e-05, - "adopted": 3.24e-05, - "aim": 3.24e-05, - "campus": 3.24e-05, - "cap": 3.24e-05, - "chances": 1e-07, - "childhood": 3.24e-05, - "clinical": 3.24e-05, - "clubs": 8.13e-06, - "comedy": 3.24e-05, - "commander": 3.24e-05, - "comparison": 3.24e-05, - "covers": 7.41e-08, - "dan": 3.24e-05, - "defeat": 3.24e-05, - "defence": 3.24e-05, - "democracy": 3.24e-05, - "detailed": 3.24e-05, - "entitled": 3.24e-05, - "exact": 3.24e-05, - "exposed": 3.24e-05, - "fed": 3.24e-05, - "fee": 3.24e-05, - "injured": 3.24e-05, - "jan": 3.24e-05, - "jordan": 3.24e-05, - "kinds": 3.24e-05, - "loans": 3.24e-05, - "lock": 3.24e-05, - "musical": 3.24e-05, - "nose": 3.24e-05, - "objects": 2.57e-07, - "opposed": 3.24e-05, - "organized": 3.24e-05, - "plastic": 3.24e-05, - "protected": 3.24e-05, - "purposes": 3.24e-05, - "quote": 3.24e-05, - "recording": 3.24e-05, - "semi": 3.24e-05, - "statements": 5.25e-08, - "suspect": 3.24e-05, - "swear": 3.24e-05, - "techniques": 3.24e-05, - "tie": 3.24e-05, - "tim": 3.24e-05, - "trend": 3.24e-05, - "valuable": 3.24e-05, - "wealth": 3.24e-05, - "wise": 3.24e-05, - "yards": 1.29e-07, - "aged": 3.16e-05, - "approval": 3.16e-05, - "aspects": 3.16e-05, - "attempts": 3.16e-05, - "bread": 3.16e-05, - "burning": 3.16e-05, - "champions": 3.89e-07, - "contain": 3.16e-05, - "convention": 3.16e-05, - "dancing": 3.16e-05, - "document": 3.16e-05, - "eggs": 7.76e-08, - "employee": 3.16e-05, - "en": 3.16e-05, - "engineer": 3.16e-05, - "equivalent": 3.16e-05, - "facing": 3.16e-05, - "fairly": 3.16e-05, - "fingers": 6.31e-08, - "ford": 3.16e-05, - "founded": 3.16e-05, - "functions": 5.37e-08, - "gang": 3.16e-05, - "graduate": 3.16e-05, - "greek": 3.16e-05, - "hanging": 3.16e-05, - "inner": 3.16e-05, - "islands": 2.57e-06, - "le": 3.16e-05, - "lift": 3.16e-05, - "marked": 3.16e-05, - "memories": 3.16e-05, - "miller": 3.16e-05, - "monthly": 3.16e-05, - "mountains": 3.09e-07, - "neighborhood": 3.16e-05, - "operate": 3.16e-05, - "outstanding": 3.16e-05, - "permission": 3.16e-05, - "porn": 3.16e-05, - "racing": 3.16e-05, - "recommended": 3.16e-05, - "regulations": 3.16e-05, - "reply": 3.16e-05, - "republicans": 1.55e-07, - "rid": 3.16e-05, - "roman": 3.16e-05, - "scientists": 2.19e-07, - "shoulder": 3.16e-05, - "shower": 3.16e-05, - "solutions": 3.16e-05, - "sons": 7.59e-06, - "stations": 1.29e-06, - "stephen": 3.16e-05, - "tower": 3.16e-05, - "tradition": 3.16e-05, - "visited": 3.16e-05, - "visual": 3.16e-05, - "wheel": 3.16e-05, - "zealand": 3.16e-05, - "achieved": 3.09e-05, - "admitted": 3.09e-05, - "appointment": 3.09e-05, - "authors": 2.69e-06, - "barely": 3.09e-05, - "bc": 3.09e-05, - "bush": 3.09e-05, - "cabinet": 3.09e-05, - "celebrate": 3.09e-05, - "challenges": 3.09e-05, - "chocolate": 3.09e-05, - "coal": 3.09e-05, - "colour": 3.09e-05, - "contemporary": 3.09e-05, - "criticism": 3.09e-05, - "davis": 3.09e-05, - "dna": 3.09e-05, - "effectively": 3.09e-05, - "eric": 3.09e-05, - "extensive": 3.09e-05, - "faced": 3.09e-05, - "filed": 3.09e-05, - "formation": 3.09e-05, - "fought": 3.09e-05, - "gained": 3.09e-05, - "gallery": 3.09e-05, - "highway": 3.09e-05, - "historic": 3.09e-05, - "hunt": 3.09e-05, - "improvement": 3.09e-05, - "inch": 3.09e-05, - "initially": 3.09e-05, - "junior": 3.09e-05, - "jury": 3.09e-05, - "kong": 3.09e-05, - "korean": 3.09e-05, - "marks": 1.78e-06, - "monster": 3.09e-05, - "obtained": 3.09e-05, - "olympic": 3.09e-05, - "philosophy": 3.09e-05, - "pride": 3.09e-05, - "promised": 3.09e-05, - "repeat": 3.09e-05, - "returning": 3.09e-05, - "riding": 3.09e-05, - "rough": 3.09e-05, - "santa": 3.09e-05, - "settlement": 3.09e-05, - "smell": 3.09e-05, - "sought": 3.09e-05, - "speaker": 3.09e-05, - "studied": 3.09e-05, - "suggests": 3.09e-05, - "surrounding": 3.09e-05, - "tone": 3.09e-05, - "topic": 3.09e-05, - "toronto": 3.09e-05, - "universal": 3.09e-05, - "vast": 3.09e-05, - "visitors": 4.47e-07, - "wanting": 3.09e-05, - "auto": 3.02e-05, - "consistent": 3.02e-05, - "continuing": 3.02e-05, - "earn": 3.02e-05, - "exists": 3.02e-05, - "finger": 3.02e-05, - "grey": 3.02e-05, - "guitar": 3.02e-05, - "heading": 3.02e-05, - "howard": 3.02e-05, - "ignore": 3.02e-05, - "involving": 3.02e-05, - "latin": 3.02e-05, - "lewis": 3.02e-05, - "meal": 3.02e-05, - "meanwhile": 3.02e-05, - "meetings": 1.29e-07, - "naturally": 3.02e-05, - "necessarily": 3.02e-05, - "offices": 5.37e-07, - "pants": 1.62e-08, - "partnership": 3.02e-05, - "payments": 3.02e-05, - "percentage": 3.02e-05, - "pocket": 3.02e-05, - "practical": 3.02e-05, - "primarily": 3.02e-05, - "proved": 3.02e-05, - "rape": 3.02e-05, - "regardless": 3.02e-05, - "relative": 3.02e-05, - "represents": 3.02e-05, - "rescue": 3.02e-05, - "resulting": 3.02e-05, - "rush": 3.02e-05, - "sarah": 3.02e-05, - "sessions": 1.55e-07, - "sharp": 3.02e-05, - "simon": 3.02e-05, - "soccer": 3.02e-05, - "stable": 3.02e-05, - "structures": 1.23e-07, - "supplies": 3.02e-05, - "symptoms": 3.02e-05, - "temporary": 3.02e-05, - "tested": 3.02e-05, - "trick": 3.02e-05, - "attended": 2.95e-05, - "audio": 2.95e-05, - "bone": 2.95e-05, - "brian": 2.95e-05, - "bullshit": 2.95e-05, - "chamber": 2.95e-05, - "chart": 2.95e-05, - "childrens": 1.1e-06, - "circuit": 2.95e-05, - "clothing": 2.95e-05, - "complicated": 2.95e-05, - "confused": 2.95e-05, - "consequences": 2.95e-05, - "defend": 2.95e-05, - "divided": 2.95e-05, - "elizabeth": 2.95e-05, - "everyday": 2.95e-05, - "extent": 2.95e-05, - "fishing": 2.95e-05, - "format": 2.95e-05, - "gap": 2.95e-05, - "gate": 2.95e-05, - "gotten": 2.95e-05, - "harm": 2.95e-05, - "healthcare": 2.95e-05, - "household": 2.95e-05, - "immigration": 2.95e-05, - "impressive": 2.95e-05, - "jews": 1.07e-07, - "joining": 2.95e-05, - "killer": 2.95e-05, - "lesson": 2.95e-05, - "limits": 2.95e-05, - "loving": 2.95e-05, - "ltd": 2.95e-05, - "managers": 1.29e-06, - "membership": 2.95e-05, - "miami": 2.95e-05, - "mirror": 2.95e-05, - "mount": 2.95e-05, - "nights": 7.59e-06, - "occur": 2.95e-05, - "parking": 2.95e-05, - "proposal": 2.95e-05, - "province": 2.95e-05, - "purchased": 2.95e-05, - "recognition": 2.95e-05, - "reputation": 2.95e-05, - "rolling": 2.95e-05, - "shortly": 2.95e-05, - "situations": 2.95e-05, - "strongly": 2.95e-05, - "tears": 2.95e-05, - "technique": 2.95e-05, - "thin": 2.95e-05, - "tied": 2.95e-05, - "accused": 2.88e-05, - "adventure": 2.88e-05, - "argue": 2.88e-05, - "assessment": 2.88e-05, - "atmosphere": 2.88e-05, - "awful": 2.88e-05, - "bedroom": 2.88e-05, - "belief": 2.88e-05, - "bound": 2.88e-05, - "breaks": 5.01e-08, - "carefully": 2.88e-05, - "cats": 2.24e-06, - "ceo": 2.88e-05, - "choices": 2.88e-05, - "closing": 2.88e-05, - "cloud": 2.88e-05, - "colorado": 2.88e-05, - "colors": 7.41e-08, - "contrast": 2.88e-05, - "courses": 9.12e-08, - "courts": 3.39e-06, - "donald": 2.88e-05, - "drew": 2.88e-05, - "egg": 2.88e-05, - "element": 2.88e-05, - "elsewhere": 2.88e-05, - "establish": 2.88e-05, - "extension": 2.88e-05, - "files": 1.32e-07, - "founder": 2.88e-05, - "gear": 2.88e-05, - "georgia": 2.88e-05, - "hills": 1.26e-06, - "hip": 2.88e-05, - "hitting": 2.88e-05, - "increases": 2.88e-05, - "infrastructure": 2.88e-05, - "jason": 2.88e-05, - "locations": 1e-07, - "loose": 2.88e-05, - "machines": 5.62e-07, - "mens": 2.82e-06, - "moral": 2.88e-05, - "offensive": 2.88e-05, - "pa": 2.88e-05, - "package": 2.88e-05, - "pointed": 2.88e-05, - "poverty": 2.88e-05, - "processes": 2.88e-05, - "processing": 2.88e-05, - "qualified": 2.88e-05, - "railway": 2.88e-05, - "reaching": 2.88e-05, - "ridiculous": 2.88e-05, - "sensitive": 2.88e-05, - "server": 2.88e-05, - "shock": 2.88e-05, - "silence": 2.88e-05, - "soldier": 2.88e-05, - "superior": 2.88e-05, - "supporters": 1.07e-07, - "thick": 2.88e-05, - "threw": 2.88e-05, - "tons": 2.88e-05, - "transition": 2.88e-05, - "violent": 2.88e-05, - "voters": 1.91e-07, - "wash": 2.88e-05, - "acid": 2.82e-05, - "actress": 2.82e-05, - "administrative": 2.82e-05, - "alan": 2.82e-05, - "alongside": 2.82e-05, - "angel": 2.82e-05, - "anxiety": 2.82e-05, - "babies": 2.82e-05, - "bars": 4.07e-07, - "bonus": 2.82e-05, - "castle": 2.82e-05, - "charity": 2.82e-05, - "clients": 2.14e-06, - "compare": 2.82e-05, - "contained": 2.82e-05, - "cooking": 2.82e-05, - "covering": 2.82e-05, - "curious": 2.82e-05, - "directors": 2e-06, - "discovery": 2.82e-05, - "discussed": 2.82e-05, - "duke": 2.82e-05, - "egypt": 2.82e-05, - "encourage": 2.82e-05, - "enforcement": 2.82e-05, - "featuring": 2.82e-05, - "finals": 2.82e-05, - "flash": 2.82e-05, - "formal": 2.82e-05, - "formula": 2.82e-05, - "fort": 1.91e-08, - "governments": 9.55e-06, - "gray": 2.82e-05, - "gross": 2.82e-05, - "horses": 1.15e-06, - "hungry": 2.82e-05, - "informed": 2.82e-05, - "innocent": 2.82e-05, - "jeff": 2.82e-05, - "losses": 2.82e-05, - "luke": 2.82e-05, - "mac": 2.82e-05, - "math": 2.82e-05, - "minds": 7.59e-07, - "mistakes": 2.82e-05, - "mystery": 2.82e-05, - "networks": 1.86e-06, - "olympics": 2.82e-05, - "palace": 2.82e-05, - "passes": 2.82e-05, - "penalty": 2.82e-05, - "pet": 2.82e-05, - "phones": 1.58e-06, - "photography": 2.82e-05, - "producing": 2.82e-05, - "protest": 2.82e-05, - "publication": 2.82e-05, - "rating": 2.82e-05, - "refer": 2.82e-05, - "respectively": 2.82e-05, - "rome": 2.82e-05, - "scheduled": 2.82e-05, - "select": 2.82e-05, - "silent": 2.82e-05, - "spoken": 2.82e-05, - "successfully": 2.82e-05, - "suffer": 2.82e-05, - "temple": 2.82e-05, - "tracks": 2.45e-07, - "trail": 2.82e-05, - "uncle": 2.82e-05, - "unusual": 2.82e-05, - "waters": 9.55e-07, - "woods": 6.31e-07, - "yo": 2.82e-05, - "arrival": 2.75e-05, - "asks": 2.75e-05, - "assault": 2.75e-05, - "awareness": 2.75e-05, - "badly": 2.75e-05, - "bath": 2.75e-05, - "captured": 2.75e-05, - "chase": 2.75e-05, - "components": 2.75e-05, - "concrete": 2.75e-05, - "dave": 2.75e-05, - "deeply": 2.75e-05, - "expectations": 2.75e-05, - "explanation": 2.75e-05, - "exposure": 2.75e-05, - "featured": 2.75e-05, - "fiction": 2.75e-05, - "guarantee": 2.75e-05, - "happiness": 2.75e-05, - "harris": 2.75e-05, - "hearts": 1.78e-06, - "horrible": 2.75e-05, - "ideal": 2.75e-05, - "illinois": 2.75e-05, - "injuries": 2.75e-05, - "islamic": 2.75e-05, - "jimmy": 2.75e-05, - "kelly": 2.75e-05, - "legend": 2.75e-05, - "lieutenant": 2.75e-05, - "mini": 2.75e-05, - "mood": 2.75e-05, - "muscle": 2.75e-05, - "muslims": 1e-07, - "passion": 2.75e-05, - "picking": 2.75e-05, - "pleased": 2.75e-05, - "procedure": 2.75e-05, - "producer": 2.75e-05, - "pushing": 2.75e-05, - "rank": 2.75e-05, - "replacement": 2.75e-05, - "retired": 2.75e-05, - "roles": 2.75e-05, - "sand": 2.75e-05, - "savings": 2.75e-05, - "settled": 2.75e-05, - "shadow": 2.75e-05, - "singles": 1.15e-07, - "tag": 2.75e-05, - "tape": 2.75e-05, - "thread": 2.75e-05, - "victoria": 2.75e-05, - "visiting": 2.75e-05, - "wage": 2.75e-05, - "wed": 4.57e-06, - "wings": 2.29e-07, - "andy": 2.69e-05, - "avenue": 2.69e-05, - "bags": 1.07e-07, - "beating": 2.69e-05, - "believes": 2.69e-05, - "blocks": 2.29e-07, - "boring": 2.69e-05, - "charlie": 2.69e-05, - "checking": 2.69e-05, - "clock": 2.69e-05, - "commissioner": 2.69e-05, - "commitment": 2.69e-05, - "confident": 2.69e-05, - "containing": 2.69e-05, - "copies": 2.69e-05, - "crimes": 6.03e-08, - "custom": 2.69e-05, - "denied": 2.69e-05, - "desk": 2.69e-05, - "drinks": 7.08e-08, - "ear": 2.69e-05, - "electricity": 2.69e-05, - "episodes": 2.69e-07, - "farmers": 1.74e-06, - "fbi": 2.69e-05, - "grounds": 1.51e-07, - "gym": 2.69e-05, - "helpful": 2.69e-05, - "horror": 2.69e-05, - "iphone": 2.69e-05, - "iraq": 2.69e-05, - "label": 2.69e-05, - "liverpool": 2.69e-05, - "locked": 2.69e-05, - "naked": 2.69e-05, - "ny": 2.69e-05, - "opens": 2.69e-05, - "output": 2.69e-05, - "persons": 1.1e-05, - "pitch": 2.69e-05, - "pizza": 2.69e-05, - "plain": 2.69e-05, - "pushed": 2.69e-05, - "raising": 2.69e-05, - "rear": 2.69e-05, - "reveal": 2.69e-05, - "romantic": 2.69e-05, - "scores": 6.46e-08, - "sisters": 3.89e-06, - "speaks": 2.69e-05, - "stages": 8.32e-08, - "strategic": 2.69e-05, - "swimming": 2.69e-05, - "welfare": 2.69e-05, - "winners": 1.32e-06, - "wire": 2.69e-05, - "worker": 2.69e-05, - "afterwards": 2.63e-05, - "alright": 2.63e-05, - "android": 2.63e-05, - "anger": 2.63e-05, - "architecture": 2.63e-05, - "assist": 2.63e-05, - "attempted": 2.63e-05, - "behalf": 2.63e-05, - "belt": 2.63e-05, - "capture": 2.63e-05, - "centers": 1.51e-06, - "ceremony": 2.63e-05, - "comic": 2.63e-05, - "cops": 3.55e-07, - "cuts": 2.63e-05, - "dallas": 2.63e-05, - "designer": 2.63e-05, - "diamond": 2.63e-05, - "disappointed": 2.63e-05, - "dressed": 2.63e-05, - "economics": 2.63e-05, - "efficient": 2.63e-05, - "electrical": 2.63e-05, - "employed": 2.63e-05, - "enjoying": 2.63e-05, - "entering": 2.63e-05, - "essentially": 2.63e-05, - "establishment": 2.63e-05, - "expecting": 2.63e-05, - "explains": 2.63e-05, - "flower": 2.63e-05, - "ghost": 2.63e-05, - "guests": 2.34e-07, - "handed": 2.63e-05, - "hockey": 2.63e-05, - "houston": 2.63e-05, - "https": 2.63e-05, - "hunting": 2.63e-05, - "industries": 2.63e-05, - "islam": 2.63e-05, - "jane": 2.63e-05, - "judges": 1.26e-06, - "kit": 2.63e-05, - "lab": 2.63e-05, - "languages": 1.17e-07, - "maps": 1.2e-07, - "min": 2.63e-05, - "morgan": 2.63e-05, - "moscow": 2.63e-05, - "na": 2.63e-05, - "nervous": 2.63e-05, - "newly": 2.63e-05, - "odd": 1.05e-07, - "op": 2.63e-05, - "ordinary": 2.63e-05, - "participate": 2.63e-05, - "philadelphia": 2.63e-05, - "prayer": 2.63e-05, - "principles": 2.63e-05, - "racist": 2.63e-05, - "rarely": 2.63e-05, - "references": 2.63e-05, - "sexy": 2.63e-05, - "skill": 2.63e-05, - "soil": 2.63e-05, - "solve": 2.63e-05, - "stomach": 2.63e-05, - "struck": 2.63e-05, - "studying": 2.63e-05, - "suck": 2.63e-05, - "supports": 5.62e-08, - "trash": 2.63e-05, - "ugly": 2.63e-05, - "vegas": 1.17e-07, - "virus": 2.63e-05, - "walker": 2.63e-05, - "whoever": 2.63e-05, - "amounts": 2.57e-05, - "anthony": 2.57e-05, - "arthur": 2.57e-05, - "aspect": 2.57e-05, - "banned": 2.57e-05, - "boost": 2.57e-05, - "bureau": 2.57e-05, - "colonel": 2.57e-05, - "comfort": 2.57e-05, - "controls": 1.12e-07, - "cousin": 2.57e-05, - "crack": 2.57e-05, - "deck": 2.57e-05, - "demands": 2.57e-05, - "dies": 2.57e-05, - "dragon": 2.57e-05, - "dramatic": 2.57e-05, - "dust": 2.57e-05, - "dutch": 2.57e-05, - "engineers": 3.72e-07, - "evolution": 2.57e-05, - "foods": 2.45e-07, - "hired": 2.57e-05, - "illness": 2.57e-05, - "inspiration": 2.57e-05, - "institution": 2.57e-05, - "kings": 1.07e-05, - "knife": 2.57e-05, - "lately": 2.57e-05, - "lowest": 2.57e-05, - "memorial": 2.57e-05, - "mexican": 2.57e-05, - "minority": 2.57e-05, - "mum": 2.57e-05, - "opinions": 2.57e-05, - "patterns": 2.57e-05, - "presents": 2.57e-05, - "priority": 2.57e-05, - "promotion": 2.57e-05, - "rail": 2.57e-05, - "readers": 1.07e-06, - "remote": 2.57e-05, - "repair": 2.57e-05, - "root": 2.57e-05, - "saint": 2.57e-05, - "steal": 2.57e-05, - "stolen": 2.57e-05, - "telephone": 2.57e-05, - "tho": 2.57e-05, - "titles": 1.55e-07, - "trans": 2.57e-05, - "ups": 3.72e-07, - "vol": 2.57e-05, - "whereas": 2.57e-05, - "abandoned": 2.51e-05, - "acquired": 2.51e-05, - "actors": 8.71e-07, - "alexander": 2.51e-05, - "alliance": 2.51e-05, - "annoying": 2.51e-05, - "ap": 2.51e-05, - "bid": 2.51e-05, - "bro": 2.51e-05, - "buddy": 2.51e-05, - "buried": 2.51e-05, - "butter": 2.51e-05, - "cares": 1.12e-07, - "columbia": 2.51e-05, - "conclusion": 2.51e-05, - "confirm": 2.51e-05, - "congratulations": 2.51e-05, - "contracts": 1.07e-07, - "convinced": 2.51e-05, - "crap": 2.51e-05, - "crystal": 2.51e-05, - "dean": 2.51e-05, - "decent": 2.51e-05, - "decline": 2.51e-05, - "delay": 2.51e-05, - "describes": 2.51e-05, - "desert": 2.51e-05, - "downtown": 2.51e-05, - "elite": 2.51e-05, - "enemies": 2.51e-05, - "forgotten": 2.51e-05, - "forth": 2.51e-05, - "gods": 2.34e-05, - "hadnt": 2e-07, - "hire": 2.51e-05, - "hop": 2.51e-05, - "hopes": 4.47e-07, - "insane": 2.51e-05, - "installed": 2.51e-05, - "israeli": 2.51e-05, - "landing": 2.51e-05, - "layer": 2.51e-05, - "managing": 2.51e-05, - "marry": 2.51e-05, - "nah": 2.51e-05, - "nowhere": 2.51e-05, - "nurse": 2.51e-05, - "obtain": 2.51e-05, - "organic": 2.51e-05, - "ownership": 2.51e-05, - "participants": 1.45e-07, - "pennsylvania": 2.51e-05, - "poetry": 2.51e-05, - "pot": 2.51e-05, - "pray": 2.51e-05, - "printed": 2.51e-05, - "recall": 2.51e-05, - "rugby": 2.51e-05, - "sake": 2.51e-05, - "sheet": 2.51e-05, - "signing": 2.51e-05, - "smooth": 2.51e-05, - "spiritual": 2.51e-05, - "stops": 2.51e-05, - "string": 2.51e-05, - "sudden": 2.51e-05, - "sweden": 2.51e-05, - "syria": 2.51e-05, - "throwing": 2.51e-05, - "thrown": 2.51e-05, - "vacation": 2.51e-05, - "abroad": 2.45e-05, - "arab": 2.45e-05, - "assigned": 2.45e-05, - "associate": 2.45e-05, - "assumed": 2.45e-05, - "atlantic": 2.45e-05, - "bench": 2.45e-05, - "bother": 2.45e-05, - "broadcast": 2.45e-05, - "bye": 2.45e-05, - "cambridge": 2.45e-05, - "citizen": 2.45e-05, - "cleaning": 2.45e-05, - "compete": 2.45e-05, - "consists": 2.45e-05, - "consumers": 3.63e-07, - "contributed": 2.45e-05, - "cricket": 2.45e-05, - "critics": 2.29e-07, - "damaged": 2.45e-05, - "disaster": 2.45e-05, - "discover": 2.45e-05, - "disney": 2.45e-05, - "entrance": 2.45e-05, - "equally": 2.45e-05, - "fallen": 2.45e-05, - "figured": 2.45e-05, - "fitness": 2.45e-05, - "francis": 2.45e-05, - "friendship": 2.45e-05, - "gary": 2.45e-05, - "handling": 2.45e-05, - "idiot": 2.45e-05, - "intense": 2.45e-05, - "keys": 3.8e-07, - "lawyers": 7.24e-07, - "lifetime": 2.45e-05, - "liquid": 2.45e-05, - "makeup": 2.45e-05, - "medal": 2.45e-05, - "mortgage": 2.45e-05, - "narrative": 2.45e-05, - "narrow": 2.45e-05, - "nba": 2.45e-05, - "observed": 2.45e-05, - "occasionally": 2.45e-05, - "pan": 2.45e-05, - "physics": 2.45e-05, - "posting": 2.45e-05, - "potentially": 2.45e-05, - "reduction": 2.45e-05, - "reflect": 2.45e-05, - "refuse": 2.45e-05, - "researchers": 9.77e-08, - "resource": 2.45e-05, - "roger": 2.45e-05, - "ross": 2.45e-05, - "sciences": 1.7e-07, - "seattle": 2.45e-05, - "serves": 2.45e-05, - "shell": 1.51e-05, - "silly": 2.45e-05, - "subsequent": 2.45e-05, - "theyd": 1.86e-07, - "towns": 3.98e-06, - "translation": 2.45e-05, - "visible": 2.45e-05, - "yep": 2.45e-05, - "adds": 2.4e-05, - "allen": 2.4e-05, - "amendment": 2.4e-05, - "angle": 2.4e-05, - "arizona": 2.4e-05, - "arrive": 2.4e-05, - "belong": 2.4e-05, - "berlin": 2.4e-05, - "bishop": 2.4e-05, - "channels": 7.94e-07, - "clark": 2.4e-05, - "commonly": 2.4e-05, - "connect": 2.4e-05, - "defensive": 2.4e-05, - "designs": 1.38e-07, - "efficiency": 2.4e-05, - "enterprise": 2.4e-05, - "experiment": 2.4e-05, - "feb": 2.4e-05, - "females": 3.39e-07, - "findings": 2.4e-05, - "firms": 2.4e-06, - "forum": 2.4e-05, - "gifts": 2.4e-05, - "grass": 2.4e-05, - "hence": 2.4e-05, - "increasingly": 2.4e-05, - "incredibly": 2.4e-05, - "iv": 1.41e-07, - "jay": 2.4e-05, - "journalist": 2.4e-05, - "kicked": 2.4e-05, - "lessons": 2.4e-05, - "lists": 1.07e-07, - "maintained": 2.4e-05, - "mill": 2.4e-05, - "mo": 2.4e-05, - "occasion": 2.4e-05, - "oxford": 2.4e-05, - "pace": 2.4e-05, - "passenger": 2.4e-05, - "pen": 2.4e-05, - "pope": 2.4e-05, - "possession": 2.4e-05, - "pp": 2.4e-05, - "races": 3.24e-07, - "rapid": 2.4e-05, - "regulation": 2.4e-05, - "resident": 2.4e-05, - "rocks": 7.08e-07, - "shaped": 2.4e-05, - "sixth": 2.4e-05, - "spin": 2.4e-05, - "styles": 1.1e-07, - "subjects": 5.75e-07, - "sucks": 2.4e-05, - "suitable": 2.4e-05, - "thirty": 2.4e-05, - "valid": 2.4e-05, - "vital": 2.4e-05, - "whilst": 2.4e-05, - "agriculture": 2.34e-05, - "alleged": 2.34e-05, - "anna": 2.34e-05, - "atlanta": 2.34e-05, - "bands": 3.63e-06, - "christians": 5.01e-07, - "collect": 2.34e-05, - "commerce": 2.34e-05, - "cop": 2.34e-05, - "creek": 2.34e-05, - "currency": 2.34e-05, - "emotions": 2.34e-05, - "exhibition": 2.34e-05, - "fraud": 2.34e-05, - "funeral": 2.34e-05, - "genuine": 2.34e-05, - "gordon": 2.34e-05, - "honey": 2.34e-05, - "honour": 2.34e-05, - "hook": 2.34e-05, - "hunter": 2.34e-05, - "immigrants": 7.24e-08, - "improving": 2.34e-05, - "instructions": 2.34e-05, - "introduce": 2.34e-05, - "kansas": 2.34e-05, - "km": 2.34e-05, - "lands": 5.01e-07, - "legacy": 2.34e-05, - "log": 2.34e-05, - "matthew": 2.34e-05, - "merely": 2.34e-05, - "monitor": 2.34e-05, - "mothers": 2.09e-05, - "nov": 2.34e-05, - "patrick": 2.34e-05, - "phil": 2.34e-05, - "prisoners": 5.25e-07, - "programming": 2.34e-05, - "publishing": 2.34e-05, - "ratio": 2.34e-05, - "regret": 2.34e-05, - "rejected": 2.34e-05, - "remind": 2.34e-05, - "resort": 2.34e-05, - "resulted": 2.34e-05, - "reverse": 2.34e-05, - "routine": 2.34e-05, - "scary": 2.34e-05, - "seed": 2.34e-05, - "settle": 2.34e-05, - "sin": 2.34e-05, - "spell": 2.34e-05, - "summary": 2.34e-05, - "survival": 2.34e-05, - "sword": 2.34e-05, - "tongue": 2.34e-05, - "ward": 2.34e-05, - "waves": 1e-07, - "wayne": 2.34e-05, - "achievement": 2.29e-05, - "anderson": 2.29e-05, - "argued": 2.29e-05, - "asleep": 2.29e-05, - "austin": 2.29e-05, - "automatic": 2.29e-05, - "begun": 2.29e-05, - "behaviour": 2.29e-05, - "cd": 2.29e-05, - "cents": 8.91e-08, - "coat": 2.29e-05, - "comprehensive": 2.29e-05, - "consent": 2.29e-05, - "daddy": 2.29e-05, - "destruction": 2.29e-05, - "diego": 2.29e-05, - "diseases": 6.46e-08, - "divorce": 2.29e-05, - "doc": 2.29e-05, - "drove": 2.29e-05, - "ears": 5.01e-08, - "engage": 2.29e-05, - "extraordinary": 2.29e-05, - "fate": 2.29e-05, - "frequency": 2.29e-05, - "gaming": 2.29e-05, - "gene": 2.29e-05, - "glory": 2.29e-05, - "headquarters": 2.29e-05, - "heritage": 2.29e-05, - "initiative": 2.29e-05, - "interviews": 2.29e-05, - "jean": 2.29e-05, - "juice": 2.29e-05, - "landscape": 2.29e-05, - "logic": 2.29e-05, - "meets": 2.29e-05, - "melbourne": 2.29e-05, - "microsoft": 2.29e-05, - "objective": 2.29e-05, - "organisation": 2.29e-05, - "privacy": 2.29e-05, - "procedures": 2.29e-05, - "profits": 2.29e-05, - "reducing": 2.29e-05, - "regard": 2.29e-05, - "representing": 2.29e-05, - "residence": 2.29e-05, - "roughly": 2.29e-05, - "salary": 2.29e-05, - "scoring": 2.29e-05, - "script": 2.29e-05, - "searching": 2.29e-05, - "sections": 1.51e-07, - "strip": 2.29e-05, - "surrounded": 2.29e-05, - "threatened": 2.29e-05, - "transferred": 2.29e-05, - "tube": 2.29e-05, - "universities": 2.29e-05, - "walter": 2.29e-05, - "wisconsin": 2.29e-05, - "wouldve": 4.9e-07, - "writes": 2.29e-05, - "ambassador": 2.24e-05, - "ann": 2.24e-05, - "apps": 4.07e-07, - "awarded": 2.24e-05, - "banking": 2.24e-05, - "breast": 2.24e-05, - "carter": 2.24e-05, - "chelsea": 2.24e-05, - "chemistry": 2.24e-05, - "concluded": 2.24e-05, - "consumption": 2.24e-05, - "corruption": 2.24e-05, - "cotton": 2.24e-05, - "crossed": 2.24e-05, - "detroit": 2.24e-05, - "discount": 2.24e-05, - "dozen": 2.24e-05, - "engines": 5.89e-07, - "epic": 2.24e-05, - "exception": 2.24e-05, - "exit": 2.24e-05, - "expand": 2.24e-05, - "fancy": 2.24e-05, - "gorgeous": 2.24e-05, - "grateful": 2.24e-05, - "heroes": 2.24e-05, - "holes": 1.51e-07, - "impression": 2.24e-05, - "inches": 2.24e-05, - "indicate": 2.24e-05, - "input": 2.24e-05, - "johnny": 2.24e-05, - "josh": 2.24e-05, - "knock": 2.24e-05, - "leather": 2.24e-05, - "lips": 2.24e-05, - "luxury": 2.24e-05, - "lyrics": 2.24e-05, - "manufacturers": 6.31e-07, - "masters": 6.17e-06, - "movements": 6.17e-07, - "oct": 2.24e-05, - "operated": 2.24e-05, - "ought": 2.24e-05, - "outcome": 2.24e-05, - "painted": 2.24e-05, - "poll": 2.24e-05, - "preferred": 2.24e-05, - "pulling": 2.24e-05, - "ranked": 2.24e-05, - "referring": 2.24e-05, - "removal": 2.24e-05, - "rep": 2.24e-05, - "reporter": 2.24e-05, - "rio": 2.24e-05, - "risks": 2.24e-05, - "rob": 2.24e-05, - "screaming": 2.24e-05, - "sept": 2.24e-05, - "sequence": 2.24e-05, - "singapore": 2.24e-05, - "stretch": 2.24e-05, - "tear": 2.24e-05, - "tennis": 2.24e-05, - "terrorist": 2.24e-05, - "theater": 2.24e-05, - "ties": 2.24e-05, - "twelve": 2.24e-05, - "versions": 1e-07, - "virgin": 2.24e-05, - "voices": 8.71e-08, - "wishes": 2.24e-05, - "wolf": 2.24e-05, - "absence": 2.19e-05, - "agricultural": 2.19e-05, - "asshole": 2.19e-05, - "ate": 2.19e-05, - "athletes": 5.62e-07, - "bears": 6.61e-07, - "blues": 4.17e-07, - "boxes": 2.19e-05, - "bruce": 2.19e-05, - "bull": 2.19e-05, - "cameras": 7.76e-07, - "commonwealth": 2.19e-05, - "contribute": 2.19e-05, - "contribution": 2.19e-05, - "contributions": 2.19e-05, - "couples": 1.7e-06, - "delicious": 2.19e-05, - "deny": 2.19e-05, - "deserves": 2.19e-05, - "ease": 2.19e-05, - "extend": 2.19e-05, - "fame": 2.19e-05, - "flood": 2.19e-05, - "generated": 2.19e-05, - "genetic": 2.19e-05, - "glasses": 2.19e-05, - "impressed": 2.19e-05, - "indicated": 2.19e-05, - "instant": 2.19e-05, - "investors": 2.63e-07, - "involves": 2.19e-05, - "kate": 2.19e-05, - "kills": 2.19e-05, - "liberty": 2.19e-05, - "mans": 4.79e-06, - "maria": 2.19e-05, - "ministers": 2.29e-06, - "monitoring": 2.19e-05, - "occurs": 2.19e-05, - "passengers": 2.75e-07, - "photographs": 2.19e-05, - "principle": 2.19e-05, - "producers": 3.72e-07, - "progressive": 2.19e-05, - "punishment": 2.19e-05, - "rally": 2.19e-05, - "rapidly": 2.19e-05, - "reader": 2.19e-05, - "representation": 2.19e-05, - "restaurants": 6.76e-07, - "reveals": 2.19e-05, - "roots": 9.55e-08, - "samples": 5.37e-08, - "shops": 4.27e-07, - "sum": 2.19e-05, - "swing": 2.19e-05, - "tail": 2.19e-05, - "texts": 6.17e-08, - "twin": 2.19e-05, - "upcoming": 2.19e-05, - "veterans": 6.46e-07, - "alert": 2.14e-05, - "arena": 2.14e-05, - "arguments": 1.07e-07, - "aug": 2.14e-05, - "billy": 2.14e-05, - "boom": 2.14e-05, - "boots": 3.89e-08, - "brave": 2.14e-05, - "claiming": 2.14e-05, - "column": 2.14e-05, - "commit": 2.14e-05, - "compensation": 2.14e-05, - "composition": 2.14e-05, - "computers": 7.24e-07, - "conservation": 2.14e-05, - "constitutional": 2.14e-05, - "crossing": 2.14e-05, - "defending": 2.14e-05, - "density": 2.14e-05, - "di": 2.14e-05, - "difficulty": 2.14e-05, - "dropping": 2.14e-05, - "drops": 2.14e-05, - "elementary": 2.14e-05, - "ethnic": 2.14e-05, - "expenses": 2.14e-05, - "fleet": 2.14e-05, - "foster": 2.14e-05, - "fuckin": 2.14e-05, - "fundamental": 2.14e-05, - "gen": 2.14e-05, - "genius": 2.14e-05, - "greatly": 2.14e-05, - "guidance": 2.14e-05, - "hospitals": 1.07e-06, - "infection": 2.14e-05, - "instagram": 2.14e-05, - "intention": 2.14e-05, - "iowa": 2.14e-05, - "jokes": 4.07e-07, - "knee": 2.14e-05, - "mechanical": 2.14e-05, - "nigeria": 2.14e-05, - "parks": 1.95e-06, - "participation": 2.14e-05, - "periods": 1.23e-07, - "precious": 2.14e-05, - "pregnancy": 2.14e-05, - "premium": 2.14e-05, - "preparing": 2.14e-05, - "pretend": 2.14e-05, - "priest": 2.14e-05, - "prominent": 2.14e-05, - "proven": 2.14e-05, - "radical": 2.14e-05, - "remembered": 2.14e-05, - "requested": 2.14e-05, - "residential": 2.14e-05, - "reward": 2.14e-05, - "rings": 1.78e-07, - "robin": 2.14e-05, - "russell": 2.14e-05, - "satellite": 2.14e-05, - "shake": 2.14e-05, - "shore": 2.14e-05, - "spots": 7.24e-08, - "stats": 2.14e-05, - "struggling": 2.14e-05, - "substantial": 2.14e-05, - "teen": 2.14e-05, - "temperatures": 2.14e-05, - "transmission": 2.14e-05, - "trap": 2.14e-05, - "uniform": 2.14e-05, - "wildlife": 2.14e-05, - "wooden": 2.14e-05, - "ads": 1.91e-07, - "aggressive": 2.09e-05, - "anne": 2.09e-05, - "answered": 2.09e-05, - "apparent": 2.09e-05, - "bang": 2.09e-05, - "blast": 2.09e-05, - "bones": 9.33e-08, - "brands": 1.32e-06, - "centuries": 2.09e-05, - "communist": 2.09e-05, - "complaint": 2.09e-05, - "component": 2.09e-05, - "connections": 5.25e-08, - "courage": 2.09e-05, - "cure": 2.09e-05, - "del": 2.09e-05, - "desperate": 2.09e-05, - "diversity": 2.09e-05, - "duties": 2.09e-05, - "encouraged": 2.09e-05, - "eve": 2.09e-05, - "faculty": 2.09e-05, - "feedback": 2.09e-05, - "fighter": 2.09e-05, - "frozen": 2.09e-05, - "guards": 6.17e-07, - "hiding": 2.09e-05, - "humanity": 2.09e-05, - "ian": 2.09e-05, - "il": 2.63e-07, - "innovation": 2.09e-05, - "instruments": 1.07e-07, - "invest": 2.09e-05, - "jacket": 2.09e-05, - "justin": 2.09e-05, - "legislative": 2.09e-05, - "listing": 2.09e-05, - "manual": 2.09e-05, - "murdered": 2.09e-05, - "nursing": 2.09e-05, - "occupied": 2.09e-05, - "ongoing": 2.09e-05, - "operator": 2.09e-05, - "painful": 2.09e-05, - "pound": 2.09e-05, - "preparation": 2.09e-05, - "punch": 2.09e-05, - "purple": 2.09e-05, - "railroad": 2.09e-05, - "registration": 2.09e-05, - "releases": 2.09e-05, - "rick": 2.09e-05, - "romance": 2.09e-05, - "someones": 1.62e-06, - "submitted": 2.09e-05, - "sufficient": 2.09e-05, - "survived": 2.09e-05, - "suspended": 2.09e-05, - "technologies": 2.09e-05, - "tissue": 2.09e-05, - "trailer": 2.09e-05, - "trends": 2.09e-05, - "trials": 1.66e-07, - "ukraine": 2.09e-05, - "underground": 2.09e-05, - "versus": 2.09e-05, - "virtual": 2.09e-05, - "walks": 2.09e-05, - "wounded": 2.09e-05, - "ali": 2.04e-05, - "amongst": 2.04e-05, - "announcement": 2.04e-05, - "arranged": 2.04e-05, - "arsenal": 2.04e-05, - "attending": 2.04e-05, - "attracted": 2.04e-05, - "biological": 2.04e-05, - "bite": 2.04e-05, - "blocked": 2.04e-05, - "boards": 1.29e-06, - "burned": 2.04e-05, - "categories": 2.04e-05, - "checks": 2.04e-05, - "chip": 2.04e-05, - "companys": 1.62e-07, - "concerning": 2.04e-05, - "dare": 2.04e-05, - "database": 2.04e-05, - "define": 2.04e-05, - "discrimination": 2.04e-05, - "disorder": 2.04e-05, - "distributed": 2.04e-05, - "districts": 1.78e-06, - "documentary": 2.04e-05, - "domain": 2.04e-05, - "dynamic": 2.04e-05, - "edited": 2.04e-05, - "engagement": 2.04e-05, - "explore": 2.04e-05, - "favour": 2.04e-05, - "fewer": 2.04e-05, - "footage": 2.04e-05, - "giants": 5.5e-07, - "grave": 2.04e-05, - "hamilton": 2.04e-05, - "implementation": 2.04e-05, - "indiana": 2.04e-05, - "investigate": 2.04e-05, - "jazz": 2.04e-05, - "jon": 2.04e-05, - "jonathan": 2.04e-05, - "laboratory": 2.04e-05, - "lawrence": 2.04e-05, - "lincoln": 2.04e-05, - "literary": 2.04e-05, - "mask": 2.04e-05, - "massachusetts": 2.04e-05, - "midnight": 2.04e-05, - "minnesota": 2.04e-05, - "mouse": 2.04e-05, - "oscar": 2.04e-05, - "packed": 2.04e-05, - "piano": 2.04e-05, - "praise": 2.04e-05, - "presentation": 2.04e-05, - "psychology": 2.04e-05, - "relation": 2.04e-05, - "restrictions": 2.04e-05, - "rocket": 2.04e-05, - "ruin": 2.04e-05, - "saudi": 2.04e-05, - "sean": 2.04e-05, - "sec": 2.04e-05, - "secrets": 2.04e-07, - "slave": 2.04e-05, - "stability": 2.04e-05, - "steady": 2.04e-05, - "stones": 1.32e-06, - "symbol": 2.04e-05, - "terminal": 2.04e-05, - "toilet": 2.04e-05, - "treaty": 2.04e-05, - "triple": 2.04e-05, - "unlikely": 2.04e-05, - "updates": 2.04e-05, - "vietnam": 2.04e-05, - "viewed": 2.04e-05, - "affair": 2e-05, - "agenda": 2e-05, - "bat": 2e-05, - "bow": 2e-05, - "calendar": 2e-05, - "cape": 2e-05, - "collective": 2e-05, - "conversations": 2e-05, - "cooperation": 2e-05, - "craft": 2e-05, - "darkness": 2e-05, - "deeper": 2e-05, - "devil": 2e-05, - "edit": 2e-05, - "enable": 2e-05, - "equity": 2e-05, - "estimates": 2e-05, - "failing": 2e-05, - "finishing": 2e-05, - "fortune": 2e-05, - "gates": 1.07e-07, - "goodbye": 2e-05, - "graham": 2e-05, - "hardware": 2e-05, - "hillary": 2e-05, - "hurts": 2e-05, - "intellectual": 2e-05, - "invite": 2e-05, - "involvement": 2e-05, - "kentucky": 2e-05, - "madrid": 2e-05, - "mi": 2e-05, - "nuts": 2e-05, - "oregon": 2e-05, - "partly": 2e-05, - "petition": 2e-05, - "phrase": 2e-05, - "physically": 2e-05, - "protecting": 2e-05, - "racial": 2e-05, - "rated": 2e-05, - "regime": 2e-05, - "rivers": 6.76e-07, - "rounds": 1.23e-07, - "ruled": 2e-05, - "sa": 2e-05, - "sauce": 2e-05, - "seal": 2e-05, - "separated": 2e-05, - "shield": 2e-05, - "similarly": 2e-05, - "slide": 2e-05, - "stem": 2e-05, - "summit": 2e-05, - "talented": 2e-05, - "throat": 2e-05, - "tiger": 2e-05, - "touched": 2e-05, - "toy": 2e-05, - "visits": 2e-05, - "warriors": 4.07e-07, - "wisdom": 2e-05, - "accounting": 1.95e-05, - "alien": 1.95e-05, - "attacking": 1.95e-05, - "awkward": 1.95e-05, - "beast": 1.95e-05, - "beef": 1.95e-05, - "candy": 1.95e-05, - "carrier": 1.95e-05, - "celebration": 1.95e-05, - "celebrity": 1.95e-05, - "certificate": 1.95e-05, - "cited": 1.95e-05, - "clay": 1.95e-05, - "coaching": 1.95e-05, - "colleagues": 2.19e-07, - "constructed": 1.95e-05, - "dated": 1.95e-05, - "dec": 1.95e-05, - "default": 1.95e-05, - "delhi": 1.95e-05, - "derived": 1.95e-05, - "dialogue": 1.95e-05, - "disabled": 1.95e-05, - "distinct": 1.95e-05, - "drag": 1.95e-05, - "educated": 1.95e-05, - "eligible": 1.95e-05, - "estimate": 1.95e-05, - "execution": 1.95e-05, - "existed": 1.95e-05, - "fifty": 1.95e-05, - "followers": 1.95e-05, - "fool": 1.95e-05, - "framework": 1.95e-05, - "franchise": 1.95e-05, - "funded": 1.95e-05, - "furniture": 1.95e-05, - "generations": 6.17e-07, - "guaranteed": 1.95e-05, - "integrated": 1.95e-05, - "intelligent": 1.95e-05, - "interaction": 1.95e-05, - "jet": 1.95e-05, - "journalists": 2.4e-07, - "lifestyle": 1.95e-05, - "lighting": 1.95e-05, - "lisa": 1.95e-05, - "loop": 1.95e-05, - "mall": 1.95e-05, - "mp": 1.95e-05, - "overseas": 1.95e-05, - "performances": 1.95e-05, - "philippines": 2.51e-08, - "polish": 1.95e-05, - "recommendations": 1.95e-05, - "recover": 1.95e-05, - "regarded": 1.95e-05, - "relax": 1.95e-05, - "reliable": 1.95e-05, - "rely": 1.95e-05, - "remarkable": 1.95e-05, - "responses": 1.95e-05, - "ruling": 1.95e-05, - "sacrifice": 1.95e-05, - "se": 1.95e-05, - "sole": 1.95e-05, - "stopping": 1.95e-05, - "strategies": 1.95e-05, - "succeed": 1.95e-05, - "tables": 1.29e-07, - "tale": 1.95e-05, - "targets": 8.51e-07, - "timing": 1.95e-05, - "ton": 1.95e-05, - "volunteers": 5.37e-08, - "witnesses": 1.95e-05, - "wore": 1.95e-05, - "worship": 1.95e-05, - "worthy": 1.95e-05, - "acted": 1.91e-05, - "alarm": 1.91e-05, - "bass": 1.91e-05, - "bloody": 1.91e-05, - "breathing": 1.91e-05, - "butt": 1.91e-05, - "characteristics": 1.91e-05, - "cnn": 1.91e-05, - "collaboration": 1.91e-05, - "con": 1.91e-05, - "consideration": 1.91e-05, - "counts": 1.66e-07, - "creates": 1.91e-05, - "crucial": 1.91e-05, - "daughters": 6.03e-06, - "dependent": 1.91e-05, - "discussions": 1.91e-05, - "drives": 1.45e-07, - "dual": 1.91e-05, - "edinburgh": 1.91e-05, - "equipped": 1.91e-05, - "expanded": 1.91e-05, - "experimental": 1.91e-05, - "feeding": 1.91e-05, - "filter": 1.91e-05, - "galaxy": 1.91e-05, - "globe": 1.91e-05, - "grades": 1.91e-05, - "greece": 1.91e-05, - "gulf": 1.91e-05, - "highlights": 1.91e-05, - "hoped": 1.91e-05, - "intent": 1.91e-05, - "involve": 1.91e-05, - "judgment": 1.91e-05, - "kennedy": 1.91e-05, - "knight": 1.91e-05, - "larry": 1.91e-05, - "las": 4.47e-07, - "lmao": 1.91e-05, - "logo": 1.91e-05, - "malaysia": 1.91e-05, - "mature": 1.91e-05, - "moore": 1.91e-05, - "nazi": 1.91e-05, - "netherlands": 1.91e-05, - "odds": 2e-08, - "peaceful": 1.91e-05, - "philip": 1.91e-05, - "photographer": 1.91e-05, - "pin": 1.91e-05, - "prevention": 1.91e-05, - "printing": 1.91e-05, - "promoting": 1.91e-05, - "publicly": 1.91e-05, - "pump": 1.91e-05, - "repeated": 1.91e-05, - "replied": 1.91e-05, - "requests": 1.91e-05, - "revenge": 1.91e-05, - "satisfied": 1.91e-05, - "seeds": 6.31e-08, - "signals": 8.91e-08, - "slip": 1.91e-05, - "spaces": 7.41e-08, - "spare": 1.91e-05, - "specialist": 1.91e-05, - "stocks": 2.14e-07, - "stranger": 1.91e-05, - "submit": 1.91e-05, - "surprising": 1.91e-05, - "tap": 1.91e-05, - "thompson": 1.91e-05, - "threats": 1.91e-05, - "tourism": 1.91e-05, - "turkish": 1.91e-05, - "volunteer": 1.91e-05, - "acceptable": 1.86e-05, - "allies": 6.31e-08, - "attempting": 1.86e-05, - "auction": 1.86e-05, - "bonds": 4.27e-07, - "challenging": 1.86e-05, - "chaos": 3.8e-08, - "churches": 1.86e-05, - "cleveland": 1.86e-05, - "cm": 1.86e-05, - "composed": 1.86e-05, - "concentration": 1.86e-05, - "copper": 1.86e-05, - "corp": 1.86e-05, - "corps": 1.51e-07, - "counting": 1.86e-05, - "credits": 8.32e-08, - "dawn": 1.86e-05, - "dispute": 1.86e-05, - "earnings": 1.86e-05, - "editing": 1.86e-05, - "everyones": 7.94e-07, - "executed": 1.86e-05, - "firing": 1.86e-05, - "fits": 1.86e-05, - "frequent": 1.86e-05, - "gardens": 3.09e-07, - "gathered": 1.86e-05, - "hilarious": 1.86e-05, - "huh": 1.86e-05, - "ignored": 1.86e-05, - "improvements": 1.86e-05, - "investments": 1.86e-05, - "isis": 2.95e-08, - "margin": 1.86e-05, - "mars": 4.47e-08, - "maryland": 1.86e-05, - "mechanism": 1.86e-05, - "moderate": 1.86e-05, - "murray": 1.86e-05, - "oklahoma": 1.86e-05, - "opera": 1.86e-05, - "overcome": 1.86e-05, - "parallel": 1.86e-05, - "passage": 1.86e-05, - "pit": 1.86e-05, - "psychological": 1.86e-05, - "publications": 1.23e-07, - "quest": 1.86e-05, - "radiation": 1.86e-05, - "shocked": 1.86e-05, - "sized": 1.86e-05, - "stroke": 1.86e-05, - "stunning": 1.86e-05, - "tanks": 3.02e-07, - "tokyo": 1.86e-05, - "topics": 1.86e-05, - "trains": 4.57e-07, - "traveling": 1.86e-05, - "treating": 1.86e-05, - "tune": 1.86e-05, - "utility": 1.86e-05, - "vessel": 1.86e-05, - "weed": 1.86e-05, - "wherever": 1.86e-05, - "acquisition": 1.82e-05, - "addressed": 1.82e-05, - "alabama": 1.82e-05, - "alice": 1.82e-05, - "angels": 7.76e-07, - "anime": 1.82e-05, - "announce": 1.82e-05, - "autumn": 1.82e-05, - "backed": 1.82e-05, - "barry": 1.82e-05, - "bold": 1.82e-05, - "borders": 6.61e-08, - "breathe": 1.82e-05, - "cameron": 1.82e-05, - "choosing": 1.82e-05, - "classical": 1.82e-05, - "classified": 1.82e-05, - "clip": 1.82e-05, - "coaches": 1.82e-05, - "coins": 8.51e-08, - "concepts": 1.82e-05, - "conspiracy": 1.82e-05, - "controversy": 1.82e-05, - "convince": 1.82e-05, - "cooper": 1.82e-05, - "disappeared": 1.82e-05, - "eh": 1.82e-05, - "encounter": 1.82e-05, - "equality": 1.82e-05, - "exam": 1.82e-05, - "examination": 1.82e-05, - "fails": 1.82e-05, - "fathers": 1.2e-05, - "federation": 1.82e-05, - "fi": 1.82e-05, - "fiscal": 1.82e-05, - "guardian": 1.82e-05, - "hd": 1.82e-05, - "homeless": 1.82e-05, - "instrument": 1.82e-05, - "intervention": 1.82e-05, - "jerry": 1.82e-05, - "lover": 1.82e-05, - "mainstream": 1.82e-05, - "menu": 1.82e-05, - "missouri": 1.82e-05, - "mounted": 1.82e-05, - "mutual": 1.82e-05, - "nope": 1.82e-05, - "occasions": 1.82e-05, - "offense": 1.82e-05, - "oral": 1.82e-05, - "panic": 1.82e-05, - "pays": 1.82e-05, - "pursue": 1.82e-05, - "realise": 1.82e-05, - "refugees": 1.82e-05, - "removing": 1.82e-05, - "requirement": 1.82e-05, - "responded": 1.82e-05, - "rip": 1.82e-05, - "ruined": 1.82e-05, - "scope": 1.82e-05, - "segment": 1.82e-05, - "spectrum": 1.82e-05, - "stays": 1.38e-08, - "ted": 1.82e-05, - "terror": 1.82e-05, - "uh": 1.82e-05, - "va": 1.82e-05, - "venture": 1.82e-05, - "virtually": 1.82e-05, - "waited": 1.82e-05, - "warren": 1.82e-05, - "worn": 1.82e-05, - "yea": 1.82e-05, - "ac": 1.78e-05, - "accompanied": 1.78e-05, - "adams": 1.58e-06, - "aids": 7.24e-08, - "aimed": 1.78e-05, - "alpha": 1.78e-05, - "approaches": 1.78e-05, - "arguing": 1.78e-05, - "arrangement": 1.78e-05, - "beliefs": 1.78e-05, - "boats": 5.13e-07, - "boundaries": 1.78e-05, - "brick": 1.78e-05, - "brooklyn": 1.78e-05, - "colleges": 1.17e-06, - "considerable": 1.78e-05, - "conventional": 1.78e-05, - "danny": 1.78e-05, - "des": 1.78e-05, - "designated": 1.78e-05, - "dvd": 1.78e-05, - "emperor": 1.78e-05, - "employers": 6.03e-07, - "enormous": 1.78e-05, - "errors": 1.78e-05, - "focusing": 1.78e-05, - "forgive": 1.78e-05, - "gains": 1.32e-08, - "garage": 1.78e-05, - "gathering": 1.78e-05, - "guidelines": 1.78e-05, - "handled": 1.78e-05, - "hosted": 1.78e-05, - "indians": 1.23e-07, - "indonesia": 1.78e-05, - "inquiry": 1.78e-05, - "inspector": 1.78e-05, - "jumped": 1.78e-05, - "khan": 1.78e-05, - "li": 1.78e-05, - "lion": 1.78e-05, - "loaded": 1.78e-05, - "lonely": 1.78e-05, - "maintaining": 1.78e-05, - "measured": 1.78e-05, - "mercy": 1.78e-05, - "nevertheless": 1.78e-05, - "newspapers": 5.62e-07, - "outer": 1.78e-05, - "oxygen": 1.78e-05, - "pipe": 1.78e-05, - "pissed": 1.78e-05, - "poem": 1.78e-05, - "powder": 1.78e-05, - "powered": 1.78e-05, - "promises": 1.78e-05, - "quotes": 1.78e-05, - "racism": 1.78e-05, - "ratings": 1.78e-05, - "reads": 8.32e-08, - "recovered": 1.78e-05, - "refers": 1.78e-05, - "roy": 1.78e-05, - "rude": 1.78e-05, - "screw": 1.78e-05, - "seventh": 1.78e-05, - "shelter": 1.78e-05, - "signature": 1.78e-05, - "sooner": 1.78e-05, - "spider": 1.78e-05, - "stewart": 1.78e-05, - "strikes": 1e-07, - "suggesting": 1.78e-05, - "suits": 1.15e-07, - "toys": 7.94e-08, - "tracking": 1.78e-05, - "tribute": 1.78e-05, - "trigger": 1.78e-05, - "vary": 1.78e-05, - "venue": 1.78e-05, - "wages": 1.78e-05, - "wells": 9.12e-08, - "wheels": 1.12e-07, - "ye": 1.78e-05, - "abc": 1.74e-05, - "abortion": 1.74e-05, - "accuracy": 1.74e-05, - "albert": 1.74e-05, - "applying": 1.74e-05, - "artificial": 1.74e-05, - "belongs": 1.74e-05, - "beneath": 1.74e-05, - "bitcoin": 1.74e-05, - "bullet": 1.74e-05, - "burns": 1.74e-05, - "carl": 1.74e-05, - "celebrated": 1.74e-05, - "consistently": 1.74e-05, - "conversion": 1.74e-05, - "copyright": 1.74e-05, - "counties": 1.74e-05, - "democrat": 1.74e-05, - "deposit": 1.74e-05, - "destination": 1.74e-05, - "dirt": 1.74e-05, - "diverse": 1.74e-05, - "divine": 1.74e-05, - "emails": 1.74e-05, - "er": 1.74e-05, - "exclusively": 1.74e-05, - "export": 1.74e-05, - "fastest": 1.74e-05, - "formerly": 1.74e-05, - "functional": 1.74e-05, - "gather": 1.74e-05, - "grandfather": 1.74e-05, - "habit": 1.74e-05, - "harvard": 1.74e-05, - "indicates": 1.74e-05, - "isolated": 1.74e-05, - "jealous": 1.74e-05, - "knocked": 1.74e-05, - "landed": 1.74e-05, - "laughed": 1.74e-05, - "laura": 1.74e-05, - "lazy": 1.74e-05, - "mama": 1.74e-05, - "marshall": 1.74e-05, - "mitchell": 1.74e-05, - "modified": 1.74e-05, - "municipal": 1.74e-05, - "naval": 1.74e-05, - "neighbors": 1.66e-06, - "nelson": 1.74e-05, - "neutral": 1.74e-05, - "noble": 1.74e-05, - "oldest": 1.74e-05, - "pat": 1.74e-05, - "picks": 1.74e-05, - "poland": 1.74e-05, - "popularity": 1.74e-05, - "professionals": 6.76e-08, - "pussy": 1.74e-05, - "reactions": 1.74e-05, - "relate": 1.74e-05, - "robot": 1.74e-05, - "sacred": 1.74e-05, - "securities": 1.74e-05, - "shoe": 1.74e-05, - "speakers": 5.62e-07, - "springs": 2.63e-07, - "spy": 1.74e-05, - "steven": 1.74e-05, - "suggestions": 1.74e-05, - "supplied": 1.74e-05, - "susan": 1.74e-05, - "suspension": 1.74e-05, - "terrorism": 1.74e-05, - "terry": 1.74e-05, - "toxic": 1.74e-05, - "treasury": 1.74e-05, - "tunnel": 1.74e-05, - "unions": 1.74e-06, - "upgrade": 1.74e-05, - "warrant": 1.74e-05, - "wider": 1.74e-05, - "wound": 1.74e-05, - "aaron": 1.7e-05, - "actively": 1.7e-05, - "afghanistan": 1.7e-05, - "ai": 1.7e-05, - "applies": 1.7e-05, - "arrangements": 1.7e-05, - "asset": 1.7e-05, - "assuming": 1.7e-05, - "backing": 1.7e-05, - "baker": 1.7e-05, - "barcelona": 1.7e-05, - "blessed": 1.7e-05, - "brazilian": 1.7e-05, - "brush": 1.7e-05, - "burden": 1.7e-05, - "campbell": 1.7e-05, - "carries": 2.29e-07, - "casual": 1.7e-05, - "certified": 1.7e-05, - "charter": 1.7e-05, - "chef": 1.7e-05, - "citys": 1.32e-07, - "civilian": 1.7e-05, - "coalition": 1.7e-05, - "cock": 1.7e-05, - "complain": 1.7e-05, - "complaints": 1.7e-05, - "controversial": 1.7e-05, - "denver": 1.7e-05, - "describing": 1.7e-05, - "differently": 1.7e-05, - "directions": 2.82e-07, - "discipline": 1.7e-05, - "discussing": 1.7e-05, - "disgusting": 1.7e-05, - "dj": 1.7e-05, - "dominant": 1.7e-05, - "earning": 1.7e-05, - "emma": 1.7e-05, - "essay": 1.7e-05, - "expense": 1.7e-05, - "explaining": 1.7e-05, - "furthermore": 1.7e-05, - "graphic": 1.7e-05, - "greg": 1.7e-05, - "healing": 1.7e-05, - "hiring": 1.7e-05, - "hosts": 5.25e-07, - "implemented": 1.7e-05, - "instantly": 1.7e-05, - "invasion": 1.7e-05, - "jacob": 1.7e-05, - "jumping": 1.7e-05, - "laptop": 1.7e-05, - "legendary": 1.7e-05, - "leo": 1.7e-05, - "maker": 1.7e-05, - "margaret": 1.7e-05, - "mario": 1.7e-05, - "opponents": 1.62e-06, - "outdoor": 1.7e-05, - "palm": 1.7e-05, - "parker": 1.7e-05, - "photograph": 1.7e-05, - "pole": 1.7e-05, - "pub": 1.7e-05, - "quarters": 1.45e-07, - "queensland": 1.7e-05, - "rangers": 1.95e-07, - "ranks": 1.7e-05, - "reception": 1.7e-05, - "recipe": 1.7e-05, - "regulatory": 1.7e-05, - "reviewed": 1.7e-05, - "rolls": 6.61e-08, - "rubber": 1.7e-05, - "secured": 1.7e-05, - "serial": 1.7e-05, - "settings": 1.7e-05, - "shed": 1.51e-05, - "snake": 1.7e-05, - "sponsored": 1.7e-05, - "stealing": 1.7e-05, - "strict": 1.7e-05, - "subsequently": 1.7e-05, - "substance": 1.7e-05, - "suggestion": 1.7e-05, - "switzerland": 1.7e-05, - "syndrome": 1.7e-05, - "tasks": 1.7e-05, - "trips": 8.13e-08, - "ultra": 1.7e-05, - "unexpected": 1.7e-05, - "usage": 1.7e-05, - "utah": 1.7e-05, - "accidentally": 1.66e-05, - "affordable": 1.66e-05, - "amateur": 1.66e-05, - "appeals": 5.75e-08, - "argentina": 1.66e-05, - "baltimore": 1.66e-05, - "batman": 1.66e-05, - "bearing": 1.66e-05, - "beats": 6.03e-08, - "bin": 1.66e-05, - "biology": 1.66e-05, - "bobby": 1.66e-05, - "briefly": 1.66e-05, - "canal": 1.66e-05, - "cancelled": 1.66e-05, - "charlotte": 1.66e-05, - "cheaper": 1.66e-05, - "christopher": 1.66e-05, - "climb": 1.66e-05, - "com": 1.66e-05, - "competing": 1.66e-05, - "completion": 1.66e-05, - "cruise": 1.66e-05, - "custody": 1.66e-05, - "delete": 1.66e-05, - "demonstrated": 1.66e-05, - "departure": 1.66e-05, - "developers": 3.89e-07, - "developments": 1.51e-07, - "dig": 1.66e-05, - "eagles": 4.47e-07, - "employer": 1.66e-05, - "evans": 1.95e-07, - "explosion": 1.66e-05, - "fever": 1.66e-05, - "fluid": 1.66e-05, - "folk": 1.66e-05, - "generate": 1.66e-05, - "gop": 1.66e-05, - "handsome": 1.66e-05, - "ho": 1.66e-05, - "holidays": 1.62e-07, - "hotels": 1.32e-06, - "imagination": 1.66e-05, - "integration": 1.66e-05, - "integrity": 1.66e-05, - "interpretation": 1.66e-05, - "leaf": 1.66e-05, - "legitimate": 1.66e-05, - "lightning": 1.66e-05, - "loads": 1.66e-05, - "longest": 1.66e-05, - "magical": 1.66e-05, - "mills": 2.45e-07, - "motivation": 1.66e-05, - "nasty": 1.66e-05, - "oliver": 1.66e-05, - "outfit": 1.66e-05, - "pension": 1.66e-05, - "permit": 1.66e-05, - "perry": 1.66e-05, - "plates": 6.31e-08, - "pleasant": 1.66e-05, - "portrait": 1.66e-05, - "productive": 1.66e-05, - "reminds": 1.66e-05, - "reserves": 1.91e-07, - "ron": 1.66e-05, - "safely": 1.66e-05, - "shirts": 1.26e-07, - "shorter": 1.66e-05, - "slight": 1.66e-05, - "socialist": 1.66e-05, - "streaming": 1.66e-05, - "sue": 1.66e-05, - "targeted": 1.66e-05, - "tension": 1.66e-05, - "thailand": 1.66e-05, - "theories": 1.66e-05, - "touching": 1.66e-05, - "transactions": 1.66e-05, - "twist": 1.66e-05, - "ugh": 1.66e-05, - "unemployment": 1.66e-05, - "unity": 1.66e-05, - "useless": 1.66e-05, - "viewers": 4.17e-07, - "winds": 1.38e-07, - "woke": 1.66e-05, - "wtf": 1.66e-05, - "abilities": 1.62e-05, - "advocate": 1.62e-05, - "aims": 1.62e-05, - "arc": 1.62e-05, - "backup": 1.62e-05, - "beaten": 1.62e-05, - "bitter": 1.62e-05, - "blown": 1.62e-05, - "branches": 1.62e-05, - "campaigns": 7.08e-07, - "chips": 1.55e-07, - "cia": 1.62e-05, - "clever": 1.62e-05, - "clinic": 1.62e-05, - "closest": 1.62e-05, - "collections": 1.91e-07, - "continuous": 1.62e-05, - "converted": 1.62e-05, - "correctly": 1.62e-05, - "creator": 1.62e-05, - "creatures": 3.39e-07, - "criteria": 1.62e-05, - "declined": 1.62e-05, - "detective": 1.62e-05, - "difficulties": 1.62e-05, - "disability": 1.62e-05, - "dish": 1.62e-05, - "douglas": 1.62e-05, - "du": 1.62e-05, - "duck": 1.62e-05, - "egyptian": 1.62e-05, - "ep": 1.62e-05, - "evaluation": 1.62e-05, - "excess": 1.62e-05, - "farming": 1.62e-05, - "fence": 1.62e-05, - "fifa": 1.62e-05, - "fighters": 2.51e-07, - "flights": 2.82e-07, - "forcing": 1.62e-05, - "forming": 1.62e-05, - "franklin": 1.62e-05, - "fred": 1.62e-05, - "gradually": 1.62e-05, - "gravity": 1.62e-05, - "habits": 1.62e-05, - "hawaii": 5.37e-07, - "highlight": 1.62e-05, - "holder": 1.62e-05, - "hood": 1.62e-05, - "hung": 1.62e-05, - "identical": 1.62e-05, - "imperial": 1.62e-05, - "investigations": 1.41e-07, - "jose": 1.62e-05, - "ken": 1.62e-05, - "legally": 1.62e-05, - "lied": 1.62e-05, - "listened": 1.62e-05, - "males": 3.09e-07, - "manufacturer": 1.62e-05, - "meters": 1.62e-05, - "nail": 1.62e-05, - "nasa": 1.62e-05, - "negotiations": 1.62e-05, - "nonsense": 1.62e-05, - "ontario": 1.62e-05, - "operational": 1.62e-05, - "orleans": 1.62e-05, - "owns": 1.62e-05, - "phoenix": 1.62e-05, - "playoffs": 1.62e-05, - "poet": 1.62e-05, - "quoted": 1.62e-05, - "relating": 1.62e-05, - "repeatedly": 1.62e-05, - "robinson": 1.62e-05, - "rolled": 1.62e-05, - "scientist": 1.62e-05, - "sink": 1.62e-05, - "skip": 1.62e-05, - "slavery": 1.62e-05, - "snap": 1.62e-05, - "sorts": 1.62e-05, - "souls": 4.17e-07, - "stole": 1.62e-05, - "swedish": 1.62e-05, - "swim": 1.62e-05, - "swiss": 1.62e-05, - "tennessee": 1.62e-05, - "transaction": 1.62e-05, - "transformation": 1.62e-05, - "veteran": 1.62e-05, - "vulnerable": 1.62e-05, - "wealthy": 1.62e-05, - "additionally": 1.58e-05, - "amy": 1.58e-05, - "attract": 1.58e-05, - "barbara": 1.58e-05, - "beta": 1.58e-05, - "blowing": 1.58e-05, - "bored": 1.58e-05, - "bronze": 1.58e-05, - "bug": 1.58e-05, - "caring": 1.58e-05, - "catching": 1.58e-05, - "cave": 1.58e-05, - "cheating": 1.58e-05, - "chronic": 1.58e-05, - "cleared": 1.58e-05, - "communicate": 1.58e-05, - "convicted": 1.58e-05, - "cultures": 3.55e-07, - "dealt": 1.58e-05, - "delayed": 1.58e-05, - "demonstrate": 1.58e-05, - "departments": 2.4e-06, - "depend": 1.58e-05, - "developer": 1.58e-05, - "diagnosis": 1.58e-05, - "dismissed": 1.58e-05, - "distinguished": 1.58e-05, - "dose": 1.58e-05, - "eighth": 1.58e-05, - "experiments": 5.25e-08, - "fa": 1.58e-05, - "flesh": 1.58e-05, - "flip": 1.58e-05, - "forty": 1.58e-05, - "generous": 1.58e-05, - "germans": 1.91e-07, - "hated": 1.58e-05, - "hr": 1.58e-05, - "implement": 1.58e-05, - "incorporated": 1.58e-05, - "influenced": 1.58e-05, - "jerusalem": 1.58e-05, - "kidding": 1.58e-05, - "laser": 1.58e-05, - "loyal": 1.58e-05, - "marijuana": 1.58e-05, - "md": 1.58e-05, - "mentally": 1.58e-05, - "missions": 4.27e-07, - "occupation": 1.58e-05, - "opponent": 1.58e-05, - "paintings": 1.82e-07, - "patch": 1.58e-05, - "patience": 1.58e-05, - "pic": 1.58e-05, - "pointing": 1.58e-05, - "pollution": 1.58e-05, - "precisely": 1.58e-05, - "prisoner": 1.58e-05, - "privilege": 1.58e-05, - "proposals": 1.58e-05, - "protests": 1.58e-05, - "punk": 1.58e-05, - "radar": 1.58e-05, - "regards": 1.58e-05, - "relatives": 1.78e-07, - "resist": 1.58e-05, - "solely": 1.58e-05, - "stepped": 1.58e-05, - "striking": 1.58e-05, - "terrorists": 1.23e-07, - "th": 1.58e-05, - "tourist": 1.58e-05, - "transit": 1.58e-05, - "trucks": 3.63e-07, - "trusted": 1.58e-05, - "vessels": 2.57e-07, - "villa": 1.58e-05, - "volumes": 1.58e-05, - "websites": 1.02e-06, - "wireless": 1.58e-05, - "wondered": 1.58e-05, - "wrap": 1.58e-05, - "wright": 1.58e-05, - "yoga": 1.58e-05, - "adopt": 1.55e-05, - "airlines": 5.25e-07, - "alaska": 1.55e-05, - "albums": 9.33e-07, - "americas": 5.5e-06, - "anytime": 1.55e-05, - "bacteria": 1.55e-05, - "beings": 1.62e-07, - "beside": 1.55e-05, - "blade": 1.55e-05, - "boot": 1.55e-05, - "bottles": 6.76e-08, - "bucks": 3.39e-07, - "bulk": 1.55e-05, - "camps": 5.25e-07, - "cargo": 1.55e-05, - "census": 1.55e-05, - "christianity": 1.55e-05, - "coastal": 1.55e-05, - "coin": 1.55e-05, - "colored": 1.55e-05, - "commentary": 1.55e-05, - "confusion": 1.55e-05, - "congressional": 1.55e-05, - "corn": 1.55e-05, - "cried": 1.55e-05, - "customs": 2.19e-08, - "dealer": 1.55e-05, - "deemed": 1.55e-05, - "destiny": 1.55e-05, - "distant": 1.55e-05, - "electronics": 1.55e-05, - "emerging": 1.55e-05, - "emotion": 1.55e-05, - "emphasis": 1.55e-05, - "ethics": 1.55e-05, - "excitement": 1.55e-05, - "exploration": 1.55e-05, - "fights": 8.91e-08, - "filling": 1.55e-05, - "filming": 1.55e-05, - "glasgow": 1.55e-05, - "graphics": 1.55e-05, - "helen": 1.55e-05, - "humor": 1.55e-05, - "insight": 1.55e-05, - "invested": 1.55e-05, - "itd": 4.07e-07, - "jennifer": 1.55e-05, - "lit": 1.55e-05, - "louisiana": 1.55e-05, - "mar": 1.55e-05, - "marie": 1.55e-05, - "meals": 1.55e-05, - "mississippi": 1.55e-05, - "nerve": 1.55e-05, - "netflix": 1.55e-05, - "nightmare": 1.55e-05, - "operators": 3.89e-07, - "overnight": 1.55e-05, - "partially": 1.55e-05, - "participating": 1.55e-05, - "pie": 1.55e-05, - "platforms": 1.91e-07, - "populations": 2.34e-07, - "poster": 1.55e-05, - "pr": 1.55e-05, - "practically": 1.55e-05, - "preserve": 1.55e-05, - "produces": 1.55e-05, - "qualify": 1.55e-05, - "raid": 1.55e-05, - "ram": 1.55e-05, - "ranging": 1.55e-05, - "ranking": 1.55e-05, - "receives": 1.55e-05, - "respective": 1.55e-05, - "restricted": 1.55e-05, - "routes": 5.37e-08, - "samuel": 1.55e-05, - "sandy": 1.55e-05, - "scenario": 1.55e-05, - "sheep": 1.55e-05, - "situated": 1.55e-05, - "slaves": 1.55e-07, - "sony": 1.55e-05, - "spotted": 1.55e-05, - "spreading": 1.55e-05, - "stanley": 1.55e-05, - "sustainable": 1.55e-05, - "sustained": 1.55e-05, - "taxi": 1.55e-05, - "themes": 1.55e-05, - "threatening": 1.55e-05, - "tobacco": 1.55e-05, - "trace": 1.55e-05, - "trapped": 1.55e-05, - "turner": 1.55e-05, - "uncomfortable": 1.55e-05, - "wasted": 1.55e-05, - "weakness": 1.55e-05, - "widespread": 1.55e-05, - "xbox": 1.55e-05, - "accepting": 1.51e-05, - "accessible": 1.51e-05, - "acknowledge": 1.51e-05, - "advised": 1.51e-05, - "advisory": 1.51e-05, - "animation": 1.51e-05, - "assignment": 1.51e-05, - "balanced": 1.51e-05, - "bare": 1.51e-05, - "basement": 1.51e-05, - "bases": 2.24e-07, - "battles": 1.45e-07, - "bias": 1.12e-08, - "birmingham": 1.51e-05, - "bits": 7.59e-08, - "cancel": 1.51e-05, - "carpet": 1.51e-05, - "ceiling": 1.51e-05, - "cherry": 1.51e-05, - "chill": 1.51e-05, - "classification": 1.51e-05, - "clue": 1.51e-05, - "codes": 1.78e-07, - "cole": 1.51e-05, - "collapse": 1.51e-05, - "collecting": 1.51e-05, - "compound": 1.51e-05, - "conscious": 1.51e-05, - "consecutive": 1.51e-05, - "contents": 4.07e-08, - "costume": 1.51e-05, - "craig": 1.51e-05, - "deleted": 1.51e-05, - "devoted": 1.51e-05, - "displayed": 1.51e-05, - "dominated": 1.51e-05, - "earl": 1.51e-05, - "endless": 1.51e-05, - "escaped": 1.51e-05, - "examine": 1.51e-05, - "floating": 1.51e-05, - "garbage": 1.51e-05, - "gospel": 1.51e-05, - "grain": 1.51e-05, - "grid": 1.51e-05, - "grows": 1.51e-05, - "heating": 1.51e-05, - "identification": 1.51e-05, - "knees": 5.75e-08, - "lap": 1.51e-05, - "lions": 1.51e-06, - "liver": 1.51e-05, - "metro": 1.51e-05, - "metropolitan": 1.51e-05, - "mines": 9.33e-07, - "mixture": 1.51e-05, - "nominated": 1.51e-05, - "oak": 1.51e-05, - "parliamentary": 1.51e-05, - "patent": 1.51e-05, - "perception": 1.51e-05, - "physician": 1.51e-05, - "portland": 1.51e-05, - "proceed": 1.51e-05, - "proceedings": 1.51e-05, - "pupils": 1.51e-07, - "reserved": 1.51e-05, - "restore": 1.51e-05, - "rifle": 1.51e-05, - "rival": 1.51e-05, - "rs": 5.25e-07, - "runner": 1.51e-05, - "sadly": 1.51e-05, - "sc": 1.51e-05, - "shoulders": 1.51e-05, - "significance": 1.51e-05, - "sits": 1.51e-05, - "sizes": 1.51e-05, - "slept": 1.51e-05, - "soap": 1.51e-05, - "spray": 1.51e-05, - "stored": 1.51e-05, - "stressed": 1.51e-05, - "structural": 1.51e-05, - "suite": 1.51e-05, - "tbh": 1.51e-05, - "tropical": 1.51e-05, - "ukrainian": 1.51e-05, - "unnecessary": 1.51e-05, - "verse": 1.51e-05, - "victor": 1.51e-05, - "vintage": 1.51e-05, - "warned": 1.51e-05, - "watson": 1.51e-05, - "acres": 1.48e-05, - "adapted": 1.48e-05, - "adoption": 1.48e-05, - "anonymous": 1.48e-05, - "antonio": 1.48e-05, - "approaching": 1.48e-05, - "artistic": 1.48e-05, - "attendance": 1.48e-05, - "aviation": 1.48e-05, - "barrel": 1.48e-05, - "beds": 1.45e-07, - "beloved": 1.48e-05, - "bless": 1.48e-05, - "boxing": 1.48e-05, - "celebrating": 1.48e-05, - "charging": 1.48e-05, - "chemicals": 1.48e-05, - "chuck": 1.48e-05, - "cinema": 1.48e-05, - "colonial": 1.48e-05, - "comics": 1.55e-07, - "compliance": 1.48e-05, - "contrary": 1.48e-05, - "controlling": 1.48e-05, - "corporations": 9.55e-07, - "couch": 1.48e-05, - "countrys": 1e-07, - "crush": 1.48e-05, - "dam": 1.48e-05, - "decrease": 1.48e-05, - "defeated": 1.48e-05, - "diabetes": 1.48e-05, - "dressing": 1.48e-05, - "expanding": 1.48e-05, - "fears": 1.48e-05, - "fires": 4.27e-07, - "genre": 1.48e-05, - "gentle": 1.48e-05, - "grammar": 1.48e-05, - "hiv": 1.48e-05, - "idk": 1.48e-05, - "illustrated": 1.48e-05, - "invented": 1.48e-05, - "jake": 1.48e-05, - "jam": 1.48e-05, - "jamie": 1.07e-07, - "jessica": 1.48e-05, - "keith": 1.48e-05, - "kent": 1.48e-05, - "layers": 1.48e-05, - "lease": 1.48e-05, - "lens": 6.17e-08, - "licensed": 1.48e-05, - "loyalty": 1.48e-05, - "madison": 1.48e-05, - "magnetic": 1.48e-05, - "metres": 1.48e-05, - "monsters": 5.13e-07, - "mysterious": 1.48e-05, - "notion": 1.48e-05, - "partial": 1.48e-05, - "piss": 1.48e-05, - "placing": 1.48e-05, - "propaganda": 1.48e-05, - "rat": 1.48e-05, - "reflection": 1.48e-05, - "reminded": 1.48e-05, - "resolve": 1.48e-05, - "revolutionary": 1.48e-05, - "scandal": 1.48e-05, - "shine": 1.48e-05, - "si": 1.48e-05, - "simultaneously": 1.48e-05, - "substitute": 1.48e-05, - "surveillance": 1.48e-05, - "tactics": 1.48e-05, - "testimony": 1.48e-05, - "thai": 1.48e-05, - "treasure": 1.48e-05, - "trophy": 1.48e-05, - "tweet": 1.48e-05, - "tyler": 1.48e-05, - "underlying": 1.48e-05, - "unfair": 1.48e-05, - "villages": 4.57e-07, - "von": 1.48e-05, - "wa": 1.48e-05, - "acceptance": 1.45e-05, - "accidents": 1.45e-05, - "affects": 1.45e-05, - "annually": 1.45e-05, - "apologize": 1.45e-05, - "appreciated": 1.45e-05, - "approached": 1.45e-05, - "arriving": 1.45e-05, - "ash": 1.45e-05, - "aunt": 1.45e-05, - "benjamin": 1.45e-05, - "blake": 1.45e-05, - "bubble": 1.45e-05, - "buyers": 7.76e-07, - "casino": 1.45e-05, - "charts": 6.76e-08, - "clouds": 1.86e-07, - "connecting": 1.45e-05, - "counsel": 1.45e-05, - "creature": 1.45e-05, - "deadly": 1.45e-05, - "decides": 1.45e-05, - "der": 1.45e-05, - "desired": 1.45e-05, - "determination": 1.45e-05, - "embrace": 1.45e-05, - "emerged": 1.45e-05, - "exhibit": 1.45e-05, - "flew": 1.45e-05, - "gentleman": 1.45e-05, - "gm": 1.45e-05, - "halloween": 1.91e-07, - "hammer": 1.45e-05, - "hitler": 1.45e-05, - "hosting": 1.45e-05, - "icon": 1.45e-05, - "imposed": 1.45e-05, - "indigenous": 1.45e-05, - "infinite": 1.45e-05, - "installation": 1.45e-05, - "inter": 1.45e-05, - "interactions": 1.45e-05, - "introducing": 1.45e-05, - "iranian": 1.45e-05, - "kicking": 1.45e-05, - "laying": 1.45e-05, - "legislature": 1.45e-05, - "liability": 1.45e-05, - "maine": 1.45e-05, - "makers": 5.5e-07, - "manhattan": 1.45e-05, - "marathon": 1.45e-05, - "marvel": 1.45e-05, - "michelle": 1.55e-08, - "moreover": 1.45e-05, - "mps": 5.75e-07, - "neil": 1.45e-05, - "organisations": 6.17e-07, - "ours": 4.27e-08, - "parade": 1.45e-05, - "paradise": 1.45e-05, - "perceived": 1.45e-05, - "pics": 6.17e-08, - "planes": 6.61e-07, - "politician": 1.45e-05, - "preliminary": 1.45e-05, - "premiere": 1.45e-05, - "presidency": 1.45e-05, - "reaches": 1.45e-05, - "react": 1.45e-05, - "realistic": 1.45e-05, - "remarks": 1.45e-05, - "retain": 1.45e-05, - "roberts": 1.02e-06, - "rocky": 1.45e-05, - "russians": 1.41e-07, - "saints": 2.95e-07, - "satisfaction": 1.45e-05, - "scratch": 1.45e-05, - "shade": 1.45e-05, - "sheets": 1.45e-05, - "sheriff": 1.45e-05, - "shy": 1.45e-05, - "sometime": 1.45e-05, - "spirits": 3.16e-07, - "sporting": 1.45e-05, - "strictly": 1.45e-05, - "sunshine": 1.45e-05, - "teens": 3.02e-07, - "thou": 1.45e-05, - "tier": 1.45e-05, - "tommy": 1.45e-05, - "travelling": 1.45e-05, - "vancouver": 1.45e-05, - "vocal": 1.45e-05, - "warrior": 1.45e-05, - "womans": 5.01e-07, - "worries": 1.45e-05, - "yield": 1.45e-05, - "accomplished": 1.41e-05, - "admission": 1.41e-05, - "adventures": 5.25e-08, - "aka": 1.41e-05, - "appearing": 1.41e-05, - "bacon": 1.41e-05, - "barrier": 1.41e-05, - "belgium": 1.41e-05, - "believing": 1.41e-05, - "blacks": 7.08e-07, - "bombs": 1.1e-07, - "burst": 1.41e-05, - "caps": 1.78e-07, - "casting": 1.41e-05, - "cattle": 1.41e-05, - "cc": 1.41e-05, - "classroom": 1.41e-05, - "collins": 6.17e-08, - "colours": 1.41e-05, - "compromise": 1.41e-05, - "convenient": 1.41e-05, - "costa": 1.41e-05, - "criminals": 1.35e-07, - "crop": 1.41e-05, - "earthquake": 1.41e-05, - "elderly": 1.41e-05, - "eliminate": 1.41e-05, - "embarrassing": 1.41e-05, - "farmer": 1.41e-05, - "finest": 1.41e-05, - "grants": 7.41e-07, - "harbor": 1.41e-05, - "harvey": 1.41e-05, - "hates": 1.41e-05, - "incidents": 1.41e-05, - "inform": 1.41e-05, - "ion": 1.41e-05, - "jeremy": 1.41e-05, - "lesbian": 1.41e-05, - "lovers": 9.77e-07, - "lt": 1.41e-05, - "mathematics": 1.41e-05, - "medication": 1.41e-05, - "minded": 1.41e-05, - "morris": 1.41e-05, - "norway": 1.41e-05, - "par": 1.41e-05, - "podcast": 1.41e-05, - "portfolio": 1.41e-05, - "productivity": 1.41e-05, - "promoted": 1.41e-05, - "protocol": 1.41e-05, - "quietly": 1.41e-05, - "rachel": 1.41e-05, - "replacing": 1.41e-05, - "responsibilities": 1.41e-05, - "salad": 1.41e-05, - "scholarship": 1.41e-05, - "screening": 1.41e-05, - "sends": 1.41e-05, - "smiling": 1.41e-05, - "soup": 1.41e-05, - "southeast": 1.41e-05, - "stake": 1.41e-05, - "stating": 1.41e-05, - "strain": 1.41e-05, - "suspected": 1.41e-05, - "swift": 1.41e-05, - "tackle": 1.41e-05, - "tigers": 6.03e-07, - "timeline": 1.41e-05, - "torture": 1.41e-05, - "traded": 1.41e-05, - "translated": 1.41e-05, - "tricks": 1.41e-05, - "twins": 9.33e-08, - "urgent": 1.41e-05, - "vegetables": 1.41e-05, - "vertical": 1.41e-05, - "violation": 1.41e-05, - "wallet": 1.41e-05, - "welsh": 1.41e-05, - "workshop": 1.41e-05, - "wrapped": 1.41e-05, - "aboard": 1.38e-05, - "abstract": 1.38e-05, - "accent": 1.38e-05, - "addiction": 1.38e-05, - "associates": 2e-07, - "awake": 1.38e-05, - "beam": 1.38e-05, - "beans": 1.78e-07, - "binding": 1.38e-05, - "blank": 1.38e-05, - "buffalo": 1.38e-05, - "cbs": 1.23e-07, - "commons": 3.47e-08, - "conservatives": 6.92e-08, - "contacts": 5.25e-08, - "conviction": 1.38e-05, - "corrupt": 1.38e-05, - "cow": 1.38e-05, - "curve": 1.38e-05, - "depressed": 1.38e-05, - "deserved": 1.38e-05, - "dining": 1.38e-05, - "disorders": 1.38e-05, - "duration": 1.38e-05, - "eddie": 1.38e-05, - "emily": 1.38e-05, - "encouraging": 1.38e-05, - "farms": 3.24e-07, - "fifteen": 1.38e-05, - "flows": 1.38e-05, - "ga": 1.38e-05, - "genes": 2.04e-07, - "graduated": 1.38e-05, - "grandmother": 1.38e-05, - "harsh": 1.38e-05, - "heights": 1.38e-05, - "horn": 1.38e-05, - "hurry": 1.38e-05, - "immune": 1.38e-05, - "inflation": 1.38e-05, - "ingredients": 1.38e-05, - "inspection": 1.38e-05, - "install": 1.38e-05, - "instruction": 1.38e-05, - "intensity": 1.38e-05, - "inventory": 1.38e-05, - "investigated": 1.38e-05, - "invitation": 1.38e-05, - "judicial": 1.38e-05, - "justify": 1.38e-05, - "kyle": 1.38e-05, - "lakes": 4.17e-07, - "lean": 1.38e-05, - "lecture": 1.38e-05, - "libraries": 1.38e-05, - "logical": 1.38e-05, - "mason": 1.38e-05, - "meaningful": 1.38e-05, - "migration": 1.38e-05, - "missile": 1.38e-05, - "motivated": 1.38e-05, - "muscles": 1.38e-05, - "nancy": 1.38e-05, - "norman": 1.38e-05, - "northwest": 1.38e-05, - "nurses": 5.37e-07, - "organ": 1.38e-05, - "patrol": 1.38e-05, - "pearl": 1.38e-05, - "peer": 1.38e-05, - "pepper": 1.38e-05, - "pig": 1.38e-05, - "pile": 1.38e-05, - "plug": 1.38e-05, - "provision": 1.38e-05, - "releasing": 1.38e-05, - "requiring": 1.38e-05, - "revised": 1.38e-05, - "rod": 1.38e-05, - "scream": 1.38e-05, - "stairs": 1.38e-05, - "staring": 1.38e-05, - "statistical": 1.38e-05, - "sticks": 2.82e-08, - "strangers": 5.37e-07, - "succeeded": 1.38e-05, - "sweat": 1.38e-05, - "switched": 1.38e-05, - "syrian": 1.38e-05, - "tattoo": 1.38e-05, - "teenage": 1.38e-05, - "thunder": 1.38e-05, - "tours": 5.37e-07, - "tragedy": 1.38e-05, - "trauma": 1.38e-05, - "vincent": 1.38e-05, - "wrestling": 1.38e-05, - "zoo": 1.38e-05, - "accordance": 1.35e-05, - "acquire": 1.35e-05, - "activist": 1.35e-05, - "activists": 5.89e-08, - "addresses": 1.35e-05, - "alike": 1.35e-05, - "applicable": 1.35e-05, - "arrow": 1.35e-05, - "availability": 1.35e-05, - "aw": 1.35e-05, - "ba": 1.35e-05, - "bend": 1.35e-05, - "boundary": 1.35e-05, - "breach": 1.35e-05, - "cabin": 1.35e-05, - "cage": 1.35e-05, - "chancellor": 1.35e-05, - "cheers": 1.35e-05, - "circles": 1.38e-07, - "closet": 1.35e-05, - "combine": 1.35e-05, - "companion": 1.35e-05, - "comparing": 1.35e-05, - "consciousness": 1.35e-05, - "consultant": 1.35e-05, - "controller": 1.35e-05, - "corresponding": 1.35e-05, - "courtesy": 1.35e-05, - "cuba": 1.35e-05, - "damages": 1.35e-05, - "demanding": 1.35e-05, - "disc": 1.35e-05, - "dishes": 1.35e-05, - "dozens": 1.35e-05, - "eagle": 1.35e-05, - "eaten": 1.35e-05, - "embassy": 1.35e-05, - "engaging": 1.35e-05, - "fascinating": 1.35e-05, - "financing": 1.35e-05, - "fitted": 1.35e-05, - "flexible": 1.35e-05, - "gaining": 1.35e-05, - "gentlemen": 1.35e-05, - "goodness": 1.35e-05, - "guilt": 1.35e-05, - "haven": 1.35e-05, - "helicopter": 1.35e-05, - "homework": 1.35e-05, - "households": 1.32e-07, - "hp": 1.35e-05, - "iconic": 1.35e-05, - "infected": 1.35e-05, - "keen": 1.35e-05, - "kenya": 1.35e-05, - "lesser": 1.35e-05, - "liberals": 7.76e-08, - "lip": 1.35e-05, - "mandatory": 1.35e-05, - "manufactured": 1.35e-05, - "mechanics": 1.55e-07, - "mere": 1.35e-05, - "miracle": 1.35e-05, - "mt": 1.35e-05, - "mud": 1.35e-05, - "murphy": 1.35e-05, - "nathan": 1.35e-05, - "observation": 1.35e-05, - "operates": 1.35e-05, - "owe": 1.35e-05, - "permitted": 1.35e-05, - "phenomenon": 1.35e-05, - "pittsburgh": 1.35e-05, - "playoff": 1.35e-05, - "precise": 1.35e-05, - "profession": 1.35e-05, - "prospect": 1.35e-05, - "protective": 1.35e-05, - "providers": 1.74e-07, - "publisher": 1.35e-05, - "putin": 1.35e-05, - "reportedly": 1.35e-05, - "retreat": 1.35e-05, - "rookie": 1.35e-05, - "sandwich": 1.35e-05, - "seeks": 1.35e-05, - "sentences": 1.35e-05, - "separation": 1.35e-05, - "sexually": 1.35e-05, - "ski": 1.35e-05, - "skilled": 1.35e-05, - "sterling": 1.35e-05, - "stuart": 1.35e-05, - "surgeon": 1.35e-05, - "theft": 1.35e-05, - "um": 1.35e-05, - "understands": 1.35e-05, - "valve": 1.35e-05, - "visa": 1.35e-05, - "washing": 1.35e-05, - "adjacent": 1.32e-05, - "agreements": 7.76e-08, - "appreciation": 1.32e-05, - "arabia": 1.32e-05, - "athletic": 1.32e-05, - "authorized": 1.32e-05, - "banner": 1.32e-05, - "beijing": 1.32e-05, - "blew": 1.32e-05, - "blocking": 1.32e-05, - "brad": 1.32e-05, - "caribbean": 1.32e-05, - "charm": 1.32e-05, - "chasing": 1.32e-05, - "climbing": 1.32e-05, - "colony": 1.32e-05, - "complaining": 1.32e-05, - "cookies": 7.41e-08, - "cruel": 1.32e-05, - "curriculum": 1.32e-05, - "deadline": 1.32e-05, - "deer": 1.32e-05, - "delta": 1.32e-05, - "demanded": 1.32e-05, - "dive": 1.32e-05, - "divide": 1.32e-05, - "easter": 1.32e-05, - "electoral": 1.32e-05, - "eleven": 1.32e-05, - "entity": 1.32e-05, - "excessive": 1.32e-05, - "exercises": 1.32e-05, - "feminist": 1.32e-05, - "governing": 1.32e-05, - "ham": 1.32e-05, - "heal": 1.32e-05, - "interface": 1.32e-05, - "ios": 1.32e-05, - "jewelry": 1.32e-05, - "journalism": 1.32e-05, - "juan": 1.32e-05, - "julia": 1.32e-05, - "jungle": 1.32e-05, - "linear": 1.32e-05, - "mg": 1.32e-05, - "occasional": 1.32e-05, - "oriented": 1.32e-05, - "pete": 1.32e-05, - "pilots": 1.15e-06, - "prayers": 1.32e-05, - "predicted": 1.32e-05, - "pressed": 1.32e-05, - "preventing": 1.32e-05, - "prof": 1.32e-05, - "provisions": 1.32e-05, - "pursuit": 1.32e-05, - "rap": 1.32e-05, - "reflected": 1.32e-05, - "reminder": 1.32e-05, - "restored": 1.32e-05, - "resume": 1.32e-05, - "rev": 1.32e-05, - "richmond": 1.32e-05, - "ridge": 1.32e-05, - "samsung": 1.32e-05, - "scholars": 1.41e-07, - "sealed": 1.32e-05, - "sounded": 1.32e-05, - "sri": 1.32e-05, - "streams": 1e-07, - "strongest": 1.32e-05, - "tends": 1.32e-05, - "tribe": 1.32e-05, - "unfortunate": 1.32e-05, - "variable": 1.32e-05, - "victorian": 1.32e-05, - "worrying": 1.32e-05, - "xi": 1.32e-05, - "zones": 1.29e-07, - "ace": 1.29e-05, - "adjusted": 1.29e-05, - "alternate": 1.29e-05, - "arrives": 1.29e-05, - "artwork": 1.29e-05, - "ashley": 1.29e-05, - "athlete": 1.29e-05, - "attraction": 1.29e-05, - "babe": 1.29e-05, - "bankruptcy": 1.29e-05, - "canon": 1.29e-05, - "capabilities": 1.29e-05, - "cared": 1.29e-05, - "catherine": 1.29e-05, - "chains": 2.51e-07, - "closure": 1.29e-05, - "cognitive": 1.29e-05, - "competitors": 2.04e-07, - "connecticut": 1.29e-05, - "convert": 1.29e-05, - "cooked": 1.29e-05, - "ct": 1.29e-05, - "cups": 1.95e-07, - "deciding": 1.29e-05, - "defender": 1.29e-05, - "dental": 1.29e-05, - "diplomatic": 1.29e-05, - "divisions": 5.75e-07, - "drum": 1.29e-05, - "editorial": 1.29e-05, - "enabled": 1.29e-05, - "entertaining": 1.29e-05, - "est": 1.29e-05, - "establishing": 1.29e-05, - "eternal": 1.29e-05, - "freeze": 1.29e-05, - "generic": 1.29e-05, - "grandma": 1.29e-05, - "grip": 1.29e-05, - "handful": 1.29e-05, - "happily": 1.29e-05, - "harmony": 1.29e-05, - "hmm": 1.29e-05, - "humble": 1.29e-05, - "hurting": 1.29e-05, - "hybrid": 1.29e-05, - "intentions": 1.29e-05, - "investing": 1.29e-05, - "keyboard": 1.29e-05, - "lasting": 1.29e-05, - "locally": 1.29e-05, - "loses": 1.29e-05, - "mild": 1.29e-05, - "minimal": 1.29e-05, - "mixing": 1.29e-05, - "molecular": 1.29e-05, - "nearest": 1.29e-05, - "neighbor": 1.29e-05, - "noon": 1.29e-05, - "nowadays": 1.29e-05, - "openly": 1.29e-05, - "overview": 1.29e-05, - "pairs": 2.09e-07, - "palestinian": 1.29e-05, - "parish": 1.29e-05, - "pathetic": 1.29e-05, - "poems": 9.33e-08, - "possibilities": 1.29e-05, - "potato": 1.29e-05, - "potter": 1.29e-05, - "preference": 1.29e-05, - "promising": 1.29e-05, - "proportion": 1.29e-05, - "purchases": 1.29e-05, - "rage": 1.29e-05, - "rd": 1.29e-05, - "reflects": 1.29e-05, - "respected": 1.29e-05, - "restoration": 1.29e-05, - "selfish": 1.29e-05, - "sergeant": 1.29e-05, - "silk": 1.29e-05, - "stamp": 1.29e-05, - "throne": 1.29e-05, - "thy": 1.29e-05, - "urge": 1.29e-05, - "voter": 1.29e-05, - "warner": 1.29e-05, - "wasting": 1.29e-05, - "witch": 1.29e-05, - "advantages": 1.26e-05, - "ally": 1.26e-05, - "archives": 9.55e-08, - "array": 1.26e-05, - "assisted": 1.26e-05, - "backs": 1.95e-07, - "belly": 1.26e-05, - "booth": 1.26e-05, - "breakdown": 1.26e-05, - "bridges": 2.75e-07, - "brutal": 1.26e-05, - "calculated": 1.26e-05, - "cam": 1.26e-05, - "centres": 5.5e-07, - "chapters": 1.51e-07, - "citizenship": 1.26e-05, - "civilians": 1.26e-05, - "cliff": 1.26e-05, - "conflicts": 1.26e-05, - "consensus": 1.26e-05, - "cycling": 1.26e-05, - "declaration": 1.26e-05, - "dennis": 1.26e-05, - "derby": 1.26e-05, - "distinction": 1.26e-05, - "donations": 1.26e-05, - "dragons": 1.26e-06, - "draws": 1.26e-05, - "examined": 1.26e-05, - "facial": 1.26e-05, - "faithful": 1.26e-05, - "fatal": 1.26e-05, - "fig": 1.26e-05, - "fitting": 1.26e-05, - "genuinely": 1.26e-05, - "hardest": 1.26e-05, - "holland": 1.26e-05, - "honored": 1.26e-05, - "hunger": 1.26e-05, - "hurricane": 1.26e-05, - "implications": 1.26e-05, - "import": 1.26e-05, - "innovative": 1.26e-05, - "ipad": 1.26e-05, - "jurisdiction": 1.26e-05, - "laughter": 1.26e-05, - "lemon": 1.26e-05, - "les": 1.02e-07, - "lifted": 1.26e-05, - "loading": 1.26e-05, - "lung": 1.26e-05, - "matching": 1.26e-05, - "mighty": 1.26e-05, - "monetary": 1.26e-05, - "novels": 3.72e-07, - "nutrition": 1.26e-05, - "ore": 1.26e-05, - "os": 8.91e-07, - "outcomes": 1.26e-05, - "outta": 1.26e-05, - "pine": 1.26e-05, - "polls": 5.75e-08, - "poorly": 1.26e-05, - "portugal": 1.26e-05, - "pose": 1.26e-05, - "pour": 1.26e-05, - "proteins": 7.24e-08, - "provider": 1.26e-05, - "publish": 1.26e-05, - "purely": 1.26e-05, - "ralph": 1.26e-05, - "rental": 1.26e-05, - "resolved": 1.26e-05, - "rewards": 1.26e-05, - "sang": 1.26e-05, - "seemingly": 1.26e-05, - "senators": 5.75e-07, - "severely": 1.26e-05, - "shark": 1.26e-05, - "shocking": 1.26e-05, - "southwest": 1.26e-05, - "ss": 3.24e-07, - "studios": 6.61e-07, - "survivors": 2.95e-07, - "tales": 3.09e-08, - "technically": 1.26e-05, - "titled": 1.26e-05, - "traditions": 1.26e-05, - "unlimited": 1.26e-05, - "washed": 1.26e-05, - "watches": 1.26e-05, - "advise": 1.23e-05, - "anxious": 1.23e-05, - "appearances": 1.23e-05, - "bee": 1.23e-05, - "bombing": 1.23e-05, - "cafe": 1.23e-05, - "carlos": 1.2e-07, - "challenged": 1.23e-05, - "cigarettes": 1.23e-05, - "colin": 1.23e-05, - "consisting": 1.23e-05, - "cult": 1.23e-05, - "dairy": 1.23e-05, - "dakota": 1.23e-05, - "darling": 1.23e-05, - "delighted": 1.23e-05, - "delivering": 1.23e-05, - "destroying": 1.23e-05, - "diary": 1.23e-05, - "disagree": 1.23e-05, - "disappear": 1.23e-05, - "drill": 1.23e-05, - "earliest": 1.23e-05, - "edges": 1.05e-07, - "entries": 1.23e-05, - "euro": 1.23e-05, - "evolved": 1.23e-05, - "exports": 1.23e-05, - "fixing": 1.23e-05, - "fl": 1.23e-05, - "flags": 1.26e-07, - "flies": 1.23e-05, - "forecast": 1.23e-05, - "fr": 1.23e-05, - "governance": 1.23e-05, - "heated": 1.23e-05, - "hug": 1.23e-05, - "importantly": 1.23e-05, - "indicating": 1.23e-05, - "indoor": 1.23e-05, - "influential": 1.23e-05, - "intend": 1.23e-05, - "invisible": 1.23e-05, - "jeans": 3.39e-07, - "jets": 1.48e-07, - "julie": 1.23e-05, - "karen": 1.23e-05, - "lasted": 1.23e-05, - "lawsuit": 1.23e-05, - "leak": 1.23e-05, - "lighter": 1.23e-05, - "lucas": 9.55e-08, - "marcus": 1.23e-05, - "mentions": 1.23e-05, - "meter": 1.23e-05, - "mice": 1.23e-05, - "musicians": 2.88e-07, - "olive": 1.23e-05, - "passionate": 1.23e-05, - "potatoes": 1.23e-05, - "prevented": 1.23e-05, - "receiver": 1.23e-05, - "recommendation": 1.23e-05, - "riot": 1.23e-05, - "rogers": 4.9e-07, - "roster": 1.23e-05, - "safer": 1.23e-05, - "sells": 1.23e-05, - "sentenced": 1.23e-05, - "servant": 1.23e-05, - "setup": 1.23e-05, - "shouldve": 2.51e-07, - "skull": 1.23e-05, - "slot": 1.23e-05, - "smash": 1.23e-05, - "statue": 1.23e-05, - "surprisingly": 1.23e-05, - "surrender": 1.23e-05, - "suspicious": 1.23e-05, - "teenager": 1.23e-05, - "tender": 1.23e-05, - "thoroughly": 1.23e-05, - "todd": 1.23e-05, - "treatments": 1.23e-05, - "tweeted": 1.23e-05, - "vacuum": 1.23e-05, - "variations": 1.23e-05, - "vi": 1.23e-05, - "wheres": 4.68e-07, - "wi": 1.23e-05, - "acknowledged": 1.2e-05, - "advances": 1.2e-05, - "agrees": 1.2e-05, - "allegations": 1.2e-05, - "anticipated": 1.2e-05, - "approve": 1.2e-05, - "architect": 1.2e-05, - "basin": 1.2e-05, - "beneficial": 1.2e-05, - "bleeding": 1.2e-05, - "breed": 1.2e-05, - "breeding": 1.2e-05, - "bride": 1.2e-05, - "broadway": 1.2e-05, - "bros": 2.45e-07, - "bud": 1.2e-05, - "butler": 1.2e-05, - "careers": 8.71e-08, - "cartoon": 1.2e-05, - "celebrities": 1.2e-05, - "chick": 1.2e-05, - "coke": 1.2e-05, - "comparable": 1.2e-05, - "confirmation": 1.2e-05, - "console": 1.2e-05, - "contractor": 1.2e-05, - "contributing": 1.2e-05, - "diameter": 1.2e-05, - "dubai": 1.2e-05, - "dublin": 1.2e-05, - "dump": 1.2e-05, - "duo": 1.2e-05, - "dynamics": 1.58e-08, - "elephant": 1.2e-05, - "enhanced": 1.2e-05, - "essays": 1.2e-05, - "exhausted": 1.2e-05, - "fabric": 1.2e-05, - "fabulous": 1.2e-05, - "fairy": 1.2e-05, - "focuses": 1.2e-05, - "fold": 1.2e-05, - "freak": 1.2e-05, - "frustrated": 1.2e-05, - "gambling": 1.2e-05, - "gently": 1.2e-05, - "glorious": 1.2e-05, - "grief": 1.2e-05, - "harrison": 1.2e-05, - "historically": 1.2e-05, - "hub": 1.2e-05, - "hughes": 1.2e-05, - "inevitable": 1.2e-05, - "investigating": 1.2e-05, - "kg": 1.2e-05, - "labels": 3.31e-07, - "lacking": 1.2e-05, - "laughs": 1.2e-05, - "layout": 1.2e-05, - "lined": 1.2e-05, - "lodge": 1.2e-05, - "lords": 4.17e-06, - "merchant": 1.2e-05, - "merit": 1.2e-05, - "micro": 1.2e-05, - "myth": 1.2e-05, - "nintendo": 1.2e-05, - "objectives": 1.2e-05, - "obsessed": 1.2e-05, - "organised": 1.2e-05, - "overwhelming": 1.2e-05, - "pale": 1.2e-05, - "particles": 1.2e-05, - "pastor": 1.2e-05, - "penalties": 1.2e-05, - "permanently": 1.2e-05, - "pets": 2.82e-07, - "pockets": 1.2e-05, - "poison": 1.2e-05, - "predict": 1.2e-05, - "presenting": 1.2e-05, - "presidents": 8.71e-06, - "pressing": 1.2e-05, - "prints": 1.2e-05, - "provincial": 1.2e-05, - "raped": 1.2e-05, - "realised": 1.2e-05, - "rebel": 1.2e-05, - "repairs": 1.2e-05, - "rotation": 1.2e-05, - "separately": 1.2e-05, - "shaking": 1.2e-05, - "shaw": 1.2e-05, - "societies": 1.2e-05, - "solved": 1.2e-05, - "starring": 1.2e-05, - "struggles": 1.2e-05, - "subtle": 1.2e-05, - "tastes": 1.2e-05, - "throws": 1.2e-05, - "toll": 1.2e-05, - "tooth": 1.2e-05, - "torn": 1.2e-05, - "tragic": 1.2e-05, - "trainer": 1.2e-05, - "transformed": 1.2e-05, - "unbelievable": 1.2e-05, - "underneath": 1.2e-05, - "variation": 1.2e-05, - "viewing": 1.2e-05, - "viral": 1.2e-05, - "warehouse": 1.2e-05, - "wears": 1.2e-05, - "widow": 1.2e-05, - "wives": 1.2e-05, - "adjust": 1.17e-05, - "administrator": 1.17e-05, - "affecting": 1.17e-05, - "allied": 1.17e-05, - "altogether": 1.17e-05, - "animated": 1.17e-05, - "answering": 1.17e-05, - "assess": 1.17e-05, - "assumption": 1.17e-05, - "assured": 1.17e-05, - "austria": 1.17e-05, - "avoided": 1.17e-05, - "avoiding": 1.17e-05, - "basket": 1.17e-05, - "beard": 1.17e-05, - "bio": 1.17e-05, - "blanket": 1.17e-05, - "brains": 1.1e-06, - "bucket": 1.17e-05, - "burger": 1.17e-05, - "capability": 1.17e-05, - "charming": 1.17e-05, - "chiefs": 8.13e-07, - "commented": 1.17e-05, - "computing": 1.17e-05, - "concentrate": 1.17e-05, - "conducting": 1.17e-05, - "consequence": 1.17e-05, - "continent": 1.17e-05, - "cookie": 1.17e-05, - "cruz": 1.17e-05, - "curse": 1.17e-05, - "displays": 1.17e-05, - "drain": 1.17e-05, - "emissions": 1.17e-05, - "ethical": 1.17e-05, - "excellence": 1.17e-05, - "flame": 1.17e-05, - "forests": 2.19e-07, - "freely": 1.17e-05, - "fruits": 6.76e-08, - "grabbed": 1.17e-05, - "graduation": 1.17e-05, - "hint": 1.17e-05, - "horizon": 1.17e-05, - "hostile": 1.17e-05, - "imagined": 1.17e-05, - "inhabitants": 1.17e-05, - "ink": 1.17e-05, - "inn": 1.17e-05, - "intel": 1.17e-05, - "kicks": 1.17e-05, - "legends": 2.45e-07, - "lo": 1.17e-05, - "lucy": 1.17e-05, - "magazines": 2.09e-06, - "matrix": 1.17e-05, - "measuring": 1.17e-05, - "miserable": 1.17e-05, - "momentum": 1.17e-05, - "monkey": 1.17e-05, - "montreal": 1.17e-05, - "motorcycle": 1.17e-05, - "nationwide": 1.17e-05, - "nest": 1.17e-05, - "newcastle": 1.17e-05, - "nicely": 1.17e-05, - "ninth": 1.17e-05, - "nomination": 1.17e-05, - "notable": 1.17e-05, - "obligation": 1.17e-05, - "optical": 1.17e-05, - "outlook": 1.17e-05, - "penny": 1.17e-05, - "petty": 1.17e-05, - "phd": 1.17e-05, - "ports": 1.95e-07, - "preserved": 1.17e-05, - "programmes": 2.51e-07, - "prospects": 1.17e-05, - "publishers": 5.62e-07, - "quantity": 1.17e-05, - "quantum": 1.17e-05, - "rainbow": 1.17e-05, - "rebels": 1.02e-07, - "recognised": 1.17e-05, - "reed": 1.17e-05, - "reign": 1.17e-05, - "responding": 1.17e-05, - "retained": 1.17e-05, - "rises": 1.17e-05, - "saves": 1.17e-05, - "scan": 1.17e-05, - "scare": 1.17e-05, - "sectors": 2.69e-07, - "shorts": 1.12e-07, - "span": 1.17e-05, - "specialized": 1.17e-05, - "spencer": 1.17e-05, - "submission": 1.17e-05, - "sunny": 1.17e-05, - "supporter": 1.17e-05, - "te": 1.17e-05, - "testament": 1.17e-05, - "toe": 1.17e-05, - "tops": 1.62e-07, - "tremendous": 1.17e-05, - "valued": 1.17e-05, - "wounds": 1.17e-05, - "ab": 1.15e-05, - "accommodation": 1.15e-05, - "achievements": 1.15e-05, - "addressing": 1.15e-05, - "adorable": 1.15e-05, - "allegedly": 1.15e-05, - "ambulance": 1.15e-05, - "ar": 1.74e-08, - "ashamed": 1.15e-05, - "assure": 1.15e-05, - "bailey": 1.15e-05, - "ballot": 1.15e-05, - "batteries": 1.15e-05, - "blessing": 1.15e-05, - "btw": 1.15e-05, - "cemetery": 1.15e-05, - "chambers": 2.34e-07, - "cheat": 1.15e-05, - "cheer": 1.15e-05, - "chile": 1.15e-05, - "cigarette": 1.15e-05, - "compact": 1.15e-05, - "completing": 1.15e-05, - "consulting": 1.15e-05, - "cooling": 1.15e-05, - "corners": 1.15e-05, - "couldve": 2.63e-07, - "deficit": 1.15e-05, - "demo": 1.15e-05, - "demon": 1.15e-05, - "demonstration": 1.15e-05, - "detected": 1.15e-05, - "detection": 1.15e-05, - "doll": 1.15e-05, - "donated": 1.15e-05, - "elaborate": 1.15e-05, - "elder": 1.15e-05, - "encountered": 1.15e-05, - "expertise": 1.15e-05, - "exploring": 1.15e-05, - "fc": 1.15e-05, - "fiber": 1.15e-05, - "filmed": 1.15e-05, - "fried": 1.15e-05, - "grocery": 1.15e-05, - "guided": 1.15e-05, - "guinea": 1.15e-05, - "halfway": 1.15e-05, - "happier": 1.15e-05, - "heels": 1.15e-05, - "holmes": 1.15e-05, - "hull": 1.15e-05, - "independently": 1.15e-05, - "indication": 1.15e-05, - "insisted": 1.15e-05, - "instances": 1.15e-05, - "intensive": 1.15e-05, - "interactive": 1.15e-05, - "intimate": 1.15e-05, - "laundry": 1.15e-05, - "lbs": 5.89e-08, - "lifting": 1.15e-05, - "linda": 1.15e-05, - "martial": 1.15e-05, - "nigerian": 1.15e-05, - "northeast": 1.15e-05, - "observe": 1.15e-05, - "packing": 1.15e-05, - "panels": 2.69e-07, - "password": 1.15e-05, - "pokemon": 1.15e-05, - "politically": 1.15e-05, - "presumably": 1.15e-05, - "pretending": 1.15e-05, - "priorities": 1.15e-05, - "pronounced": 1.15e-05, - "prosecution": 1.15e-05, - "proves": 1.15e-05, - "pulse": 1.15e-05, - "purchasing": 1.15e-05, - "qualities": 1.15e-05, - "queens": 5.89e-06, - "rational": 1.15e-05, - "realm": 1.15e-05, - "reforms": 1.15e-05, - "revenues": 1.15e-05, - "rides": 1.91e-07, - "ripped": 1.15e-05, - "rope": 1.15e-05, - "shadows": 1.41e-07, - "shout": 1.15e-05, - "sierra": 1.15e-05, - "smartphone": 1.15e-05, - "specified": 1.15e-05, - "spectacular": 1.15e-05, - "stan": 1.15e-05, - "streak": 1.15e-05, - "subscription": 1.15e-05, - "switching": 1.15e-05, - "technological": 1.15e-05, - "temporarily": 1.15e-05, - "tolerance": 1.15e-05, - "tourists": 7.08e-08, - "traditionally": 1.15e-05, - "traveled": 1.15e-05, - "treats": 1.15e-05, - "unhappy": 1.15e-05, - "whites": 1.45e-06, - "yup": 1.15e-05, - "accomplish": 1.12e-05, - "adequate": 1.12e-05, - "alter": 1.12e-05, - "apology": 1.12e-05, - "arkansas": 1.12e-05, - "attributed": 1.12e-05, - "beg": 1.12e-05, - "belonging": 1.12e-05, - "booked": 1.12e-05, - "bout": 1.12e-05, - "bowling": 1.12e-05, - "brass": 1.12e-05, - "buzz": 1.12e-05, - "clarke": 1.12e-05, - "comeback": 1.12e-05, - "cos": 3.47e-07, - "crops": 1.12e-05, - "declare": 1.12e-05, - "designers": 4.57e-07, - "detect": 1.12e-05, - "diagnosed": 1.12e-05, - "diesel": 1.12e-05, - "dimensions": 1.12e-05, - "dip": 1.12e-05, - "disturbing": 1.12e-05, - "dot": 4.79e-08, - "dresses": 1.12e-05, - "dylan": 1.12e-05, - "effectiveness": 1.12e-05, - "eliminated": 1.12e-05, - "ellen": 1.12e-05, - "embarrassed": 1.12e-05, - "exceptional": 1.12e-05, - "filing": 1.12e-05, - "fled": 1.12e-05, - "foul": 1.12e-05, - "frankly": 1.12e-05, - "freezing": 1.12e-05, - "graph": 1.12e-05, - "hack": 1.12e-05, - "hannah": 1.12e-05, - "hatred": 1.12e-05, - "ignorant": 1.12e-05, - "influences": 1.12e-05, - "interact": 1.12e-05, - "judging": 1.12e-05, - "knights": 7.59e-07, - "lamp": 1.12e-05, - "limitations": 1.12e-05, - "majesty": 1.12e-05, - "measurement": 1.12e-05, - "measurements": 1.12e-05, - "median": 1.12e-05, - "medieval": 1.12e-05, - "milan": 1.12e-05, - "mobility": 1.12e-05, - "montana": 1.12e-05, - "murders": 1.12e-05, - "nc": 1.12e-05, - "ne": 1.12e-05, - "nyc": 1.12e-05, - "omg": 1.12e-05, - "orientation": 1.12e-05, - "oven": 1.12e-05, - "owen": 1.12e-05, - "passport": 1.12e-05, - "penis": 1.12e-05, - "pills": 1.12e-05, - "planets": 1.74e-06, - "proceeds": 1.12e-05, - "rabbit": 1.12e-05, - "raises": 1.12e-05, - "ranges": 1.12e-05, - "rats": 3.72e-07, - "retire": 1.12e-05, - "rhythm": 1.12e-05, - "ruth": 1.12e-05, - "savage": 1.12e-05, - "servers": 2.29e-07, - "shook": 1.12e-05, - "shooter": 1.12e-05, - "siblings": 8.91e-08, - "slim": 1.12e-05, - "someday": 1.12e-05, - "sophisticated": 1.12e-05, - "spam": 1.12e-05, - "speeds": 1.07e-07, - "stack": 1.12e-05, - "stance": 1.12e-05, - "static": 1.12e-05, - "subway": 1.12e-05, - "supportive": 1.12e-05, - "surgical": 1.12e-05, - "symbols": 1.12e-05, - "tablet": 1.12e-05, - "tent": 1.12e-05, - "thesis": 1.12e-05, - "tide": 1.12e-05, - "travels": 7.59e-08, - "wallace": 1.12e-05, - "warfare": 1.12e-05, - "warming": 1.12e-05, - "weekends": 1.15e-06, - "withdraw": 1.12e-05, - "withdrawal": 1.12e-05, - "youngest": 1.12e-05, - "aging": 1.1e-05, - "airline": 1.1e-05, - "alternatives": 1.1e-05, - "anyways": 1.1e-05, - "argues": 1.1e-05, - "audit": 1.1e-05, - "authentic": 1.1e-05, - "ave": 1.1e-05, - "backwards": 1.1e-05, - "bi": 1.1e-05, - "blonde": 1.1e-05, - "blows": 1.1e-05, - "bolt": 1.1e-05, - "brooks": 1.55e-07, - "bugs": 1.86e-07, - "bust": 1.1e-05, - "clearing": 1.1e-05, - "clips": 3.89e-08, - "collar": 1.1e-05, - "columbus": 1.1e-05, - "comply": 1.1e-05, - "cope": 1.1e-05, - "counted": 1.1e-05, - "crashed": 1.1e-05, - "creepy": 1.1e-05, - "cum": 1.1e-05, - "denmark": 1.1e-05, - "divorced": 1.1e-05, - "donate": 1.1e-05, - "drawings": 1.1e-05, - "dried": 1.1e-05, - "ebay": 1.1e-05, - "echo": 1.1e-05, - "editors": 1.32e-06, - "edwards": 5.89e-07, - "emotionally": 1.1e-05, - "enhance": 1.1e-05, - "experiencing": 1.1e-05, - "extending": 1.1e-05, - "finale": 1.1e-05, - "flavor": 1.1e-05, - "floors": 7.76e-08, - "freaking": 1.1e-05, - "gloves": 1.1e-05, - "harper": 1.1e-05, - "hart": 1.1e-05, - "ignorance": 1.1e-05, - "ignoring": 1.1e-05, - "immigrant": 1.1e-05, - "induced": 1.1e-05, - "inspiring": 1.1e-05, - "intermediate": 1.1e-05, - "invention": 1.1e-05, - "ip": 1.1e-05, - "jesse": 1.1e-05, - "joins": 1.1e-05, - "joking": 1.1e-05, - "lgbt": 1.1e-05, - "likewise": 1.1e-05, - "lineup": 1.1e-05, - "logan": 1.1e-05, - "magnificent": 1.1e-05, - "mathematical": 1.1e-05, - "meantime": 1.1e-05, - "nails": 1.1e-05, - "nevada": 1.1e-05, - "newest": 1.1e-05, - "nonetheless": 1.1e-05, - "nut": 1.1e-05, - "oclock": 1.17e-07, - "opposing": 1.1e-05, - "origins": 6.03e-08, - "orlando": 1.1e-05, - "physicians": 2.95e-07, - "pipeline": 1.1e-05, - "placement": 1.1e-05, - "planted": 1.1e-05, - "pricing": 1.1e-05, - "pt": 1.1e-05, - "puerto": 1.1e-05, - "questioning": 1.1e-05, - "recreation": 1.1e-05, - "renewed": 1.1e-05, - "resigned": 1.1e-05, - "rt": 1.1e-05, - "shallow": 1.1e-05, - "shanghai": 1.1e-05, - "shitty": 1.1e-05, - "singh": 1.1e-05, - "sins": 8.91e-08, - "sketch": 1.1e-05, - "smells": 1.1e-05, - "soda": 1.1e-05, - "spite": 1.1e-05, - "sponsor": 1.1e-05, - "strengthen": 1.1e-05, - "strings": 1.1e-05, - "sunset": 1.1e-05, - "taiwan": 1.1e-05, - "thanksgiving": 1.1e-05, - "thee": 1.1e-05, - "thermal": 1.1e-05, - "trades": 1.07e-07, - "transform": 1.1e-05, - "witnessed": 1.1e-05, - "workplace": 1.1e-05, - "yelling": 1.1e-05, - "yorkshire": 1.1e-05, - "achieving": 1.07e-05, - "aliens": 1.38e-07, - "amsterdam": 1.07e-05, - "analyst": 1.07e-05, - "arabic": 1.07e-05, - "arctic": 1.07e-05, - "assists": 1.07e-05, - "bennett": 1.07e-05, - "bristol": 1.07e-05, - "burnt": 1.07e-05, - "buyer": 1.07e-05, - "calories": 1.07e-05, - "cannabis": 1.07e-05, - "cease": 1.07e-05, - "championships": 1.05e-07, - "chapel": 1.07e-05, - "cloth": 1.07e-05, - "conferences": 3.55e-07, - "considers": 1.07e-05, - "container": 1.07e-05, - "cowboys": 1.38e-07, - "crushed": 1.07e-05, - "deployed": 1.07e-05, - "differ": 1.07e-05, - "dimensional": 1.07e-05, - "eager": 1.07e-05, - "elect": 1.07e-05, - "elevated": 1.07e-05, - "essence": 1.07e-05, - "executives": 1.7e-07, - "familys": 1.07e-07, - "flames": 1.07e-05, - "fork": 1.07e-05, - "fur": 1.07e-05, - "gps": 1.48e-07, - "harold": 1.07e-05, - "harvest": 1.07e-05, - "headline": 1.07e-05, - "hudson": 1.07e-05, - "hype": 1.07e-05, - "identifying": 1.07e-05, - "impacts": 1.07e-05, - "insist": 1.07e-05, - "jo": 1.07e-05, - "junk": 1.07e-05, - "kenny": 1.07e-05, - "kidney": 1.07e-05, - "ladder": 1.07e-05, - "lloyd": 1.07e-05, - "lobby": 1.07e-05, - "marc": 1.07e-05, - "mechanisms": 1.07e-05, - "mineral": 1.07e-05, - "mob": 1.07e-05, - "modest": 1.07e-05, - "motors": 1.07e-07, - "mph": 1.07e-05, - "navigation": 1.07e-05, - "nicholas": 1.07e-05, - "orbit": 1.07e-05, - "paragraph": 1.07e-05, - "passive": 1.07e-05, - "peninsula": 1.07e-05, - "phillips": 1.78e-07, - "pill": 1.07e-05, - "pork": 1.07e-05, - "portuguese": 1.07e-05, - "profitable": 1.07e-05, - "provinces": 8.32e-07, - "ranch": 1.07e-05, - "rays": 9.12e-07, - "reasonably": 1.07e-05, - "reject": 1.07e-05, - "remainder": 1.07e-05, - "schemes": 8.32e-08, - "screens": 1.51e-07, - "seized": 1.07e-05, - "semester": 1.07e-05, - "sentiment": 1.07e-05, - "servants": 1.62e-07, - "shipped": 1.07e-05, - "socks": 1.07e-05, - "sp": 1.07e-05, - "sr": 1.07e-05, - "suited": 1.07e-05, - "supplement": 1.07e-05, - "surviving": 1.07e-05, - "thereby": 1.07e-05, - "threshold": 1.07e-05, - "til": 1.07e-05, - "tin": 1.07e-05, - "tires": 6.17e-08, - "tribal": 1.07e-05, - "tribes": 3.39e-07, - "trunk": 1.07e-05, - "uncertainty": 1.07e-05, - "vampire": 1.07e-05, - "varied": 1.07e-05, - "verdict": 1.07e-05, - "abandon": 1.05e-05, - "accommodate": 1.05e-05, - "accordingly": 1.05e-05, - "aesthetic": 1.05e-05, - "algorithm": 1.05e-05, - "altered": 1.05e-05, - "anchor": 1.05e-05, - "angela": 1.05e-05, - "apr": 1.05e-05, - "arch": 1.05e-05, - "associations": 1.82e-06, - "au": 1.05e-05, - "audiences": 5.5e-07, - "axis": 1.05e-05, - "badge": 1.05e-05, - "bernard": 1.05e-05, - "bizarre": 1.05e-05, - "bounce": 1.05e-05, - "broadcasting": 1.05e-05, - "bs": 1.17e-06, - "bullets": 6.31e-08, - "buses": 1.05e-05, - "cannon": 1.05e-05, - "carol": 1.05e-05, - "carriers": 3.31e-07, - "chairs": 1.51e-07, - "cleaned": 1.05e-05, - "complexity": 1.05e-05, - "confusing": 1.05e-05, - "consultation": 1.05e-05, - "continental": 1.05e-05, - "convenience": 1.05e-05, - "deliberately": 1.05e-05, - "diamonds": 3.24e-07, - "diana": 1.05e-05, - "dictionary": 1.05e-05, - "dignity": 1.05e-05, - "dimension": 1.05e-05, - "disappointing": 1.05e-05, - "diving": 1.05e-05, - "doug": 1.05e-05, - "duncan": 1.05e-05, - "ego": 1.05e-05, - "enthusiasm": 1.05e-05, - "environments": 6.03e-08, - "equation": 1.05e-05, - "extract": 1.05e-05, - "favorites": 1.05e-05, - "ferry": 1.05e-05, - "fisher": 1.05e-05, - "flexibility": 1.05e-05, - "flowing": 1.05e-05, - "fm": 1.05e-05, - "fridge": 1.05e-05, - "functioning": 1.05e-05, - "fusion": 1.05e-05, - "gauge": 1.05e-05, - "goat": 1.05e-05, - "graduates": 1.05e-05, - "gut": 1.05e-05, - "heck": 1.05e-05, - "helmet": 1.05e-05, - "holders": 3.63e-07, - "ideology": 1.05e-05, - "idiots": 1.86e-07, - "inclusion": 1.05e-05, - "initiatives": 1.15e-07, - "innings": 1.05e-05, - "insects": 6.46e-08, - "instructor": 1.05e-05, - "isolation": 1.05e-05, - "justified": 1.05e-05, - "keeper": 1.05e-05, - "lamb": 1.05e-05, - "liar": 1.05e-05, - "machinery": 1.05e-05, - "mansion": 1.05e-05, - "mega": 1.05e-05, - "mercury": 1.05e-05, - "namely": 1.05e-05, - "nbc": 1.05e-05, - "needing": 1.05e-05, - "nerves": 1.05e-05, - "nhl": 1.05e-05, - "obamas": 5.75e-07, - "observations": 1.05e-05, - "ordering": 1.05e-05, - "palmer": 1.05e-05, - "paths": 5.01e-08, - "peers": 1.05e-05, - "pending": 1.05e-05, - "platinum": 1.05e-05, - "possess": 1.05e-05, - "praised": 1.05e-05, - "premises": 1.05e-05, - "probability": 1.05e-05, - "ps": 5.13e-07, - "questioned": 1.05e-05, - "refuses": 1.05e-05, - "resignation": 1.05e-05, - "rider": 1.05e-05, - "ritual": 1.05e-05, - "ruins": 1.05e-05, - "shelf": 1.05e-05, - "slam": 1.05e-05, - "stakes": 1.05e-05, - "starter": 1.05e-05, - "sticking": 1.05e-05, - "subscribe": 1.05e-05, - "superman": 1.05e-05, - "surfaces": 1.05e-05, - "ta": 1.05e-05, - "territories": 1.05e-05, - "tire": 1.05e-05, - "tl": 1.05e-05, - "towers": 2.88e-07, - "transfers": 1.05e-05, - "utterly": 1.05e-05, - "voltage": 1.05e-05, - "warn": 1.05e-05, - "width": 1.05e-05, - "workout": 1.05e-05, - "aa": 1.02e-05, - "abu": 1.02e-05, - "activated": 1.02e-05, - "adaptation": 1.02e-05, - "advisor": 1.02e-05, - "aluminum": 1.02e-05, - "apartments": 1.35e-07, - "attitudes": 1.02e-05, - "attorneys": 1.86e-06, - "bail": 1.02e-05, - "barriers": 1.02e-05, - "belonged": 1.02e-05, - "bradley": 1.02e-05, - "brandon": 1.02e-05, - "broader": 1.02e-05, - "buck": 1.02e-05, - "cal": 1.02e-05, - "caroline": 1.02e-05, - "characterized": 1.02e-05, - "civilization": 1.02e-05, - "congrats": 1.02e-05, - "contractors": 1.86e-07, - "creativity": 1.02e-05, - "dealers": 4.37e-07, - "delicate": 1.02e-05, - "den": 1.02e-05, - "derek": 1.02e-05, - "desires": 1.02e-05, - "disappointment": 1.02e-05, - "disk": 1.02e-05, - "enters": 1.02e-05, - "evaluate": 1.02e-05, - "formally": 1.02e-05, - "frames": 7.76e-08, - "goddess": 1.02e-05, - "gov": 1.02e-05, - "hampshire": 1.02e-05, - "harassment": 1.02e-05, - "hats": 2.34e-07, - "hugh": 1.02e-05, - "insert": 1.02e-05, - "joan": 1.02e-05, - "lebanon": 1.02e-05, - "leeds": 1.02e-05, - "legit": 1.02e-05, - "leonard": 1.02e-05, - "liquor": 1.02e-05, - "loser": 1.02e-05, - "malcolm": 1.02e-05, - "massage": 1.02e-05, - "matched": 1.02e-05, - "messed": 1.02e-05, - "milwaukee": 1.02e-05, - "musician": 1.02e-05, - "nato": 1.02e-05, - "nephew": 1.02e-05, - "notably": 1.02e-05, - "orchestra": 1.02e-05, - "oz": 1.02e-05, - "packages": 1.02e-05, - "pad": 1.02e-05, - "pakistani": 1.02e-05, - "participated": 1.02e-05, - "precision": 1.02e-05, - "preservation": 1.02e-05, - "priests": 4.68e-07, - "privately": 1.02e-05, - "prizes": 1.02e-05, - "pulls": 1.02e-05, - "qualifying": 1.02e-05, - "reasoning": 1.02e-05, - "relaxed": 1.02e-05, - "reporters": 4.47e-07, - "roses": 1.15e-06, - "rumors": 1.02e-05, - "sail": 1.02e-05, - "salmon": 1.02e-05, - "secretly": 1.02e-05, - "seller": 1.02e-05, - "sen": 1.02e-05, - "seo": 1.02e-05, - "sheer": 1.02e-05, - "shifts": 1.02e-05, - "simpson": 1.02e-05, - "smallest": 1.02e-05, - "specially": 1.02e-05, - "stark": 1.02e-05, - "struggled": 1.02e-05, - "sympathy": 1.02e-05, - "tan": 1.02e-05, - "teenagers": 2.09e-07, - "theoretical": 1.02e-05, - "thumb": 1.02e-05, - "timber": 1.02e-05, - "transparent": 1.02e-05, - "travis": 1.02e-05, - "trumps": 2.95e-06, - "tweets": 1.02e-05, - "tx": 1.02e-05, - "upside": 1.02e-05, - "urged": 1.02e-05, - "visitor": 1.02e-05, - "vitamin": 1.02e-05, - "void": 1.02e-05, - "voluntary": 1.02e-05, - "wheat": 1.02e-05, - "whip": 1.02e-05, - "wipe": 1.02e-05, - "wolves": 1.02e-05, - "wrist": 1.02e-05, - "abused": 1e-05, - "acute": 1e-05, - "admiral": 1e-05, - "amanda": 1e-05, - "arnold": 1e-05, - "arrange": 1e-05, - "banana": 1e-05, - "behave": 1e-05, - "betting": 1e-05, - "blair": 1e-05, - "bo": 1e-05, - "borrow": 1e-05, - "camping": 1e-05, - "capitol": 1e-05, - "celtic": 1e-05, - "chan": 1e-05, - "chin": 1e-05, - "civic": 1e-05, - "clerk": 1e-05, - "conclusions": 1e-05, - "considerably": 1e-05, - "contacted": 1e-05, - "cottage": 1e-05, - "coup": 1e-05, - "criticized": 1e-05, - "crude": 1e-05, - "dash": 1e-05, - "decreased": 1e-05, - "defended": 1e-05, - "demons": 3.89e-07, - "deposits": 1e-05, - "disclosure": 1e-05, - "disposal": 1e-05, - "distinctive": 1e-05, - "documented": 1e-05, - "donation": 1e-05, - "dragged": 1e-05, - "drone": 1e-05, - "elses": 5.25e-07, - "encounters": 1e-05, - "ensuring": 1e-05, - "enterprises": 1.05e-07, - "escort": 1e-05, - "exams": 1e-05, - "firmly": 1e-05, - "flour": 1e-05, - "gdp": 1e-05, - "geneva": 1e-05, - "hindu": 1e-05, - "holdings": 1e-05, - "indie": 1e-05, - "indirect": 1e-05, - "inspire": 1e-05, - "institutional": 1e-05, - "interim": 1e-05, - "interviewed": 1e-05, - "java": 1e-05, - "jefferson": 1e-05, - "jerk": 1e-05, - "karl": 1e-05, - "kindly": 1e-05, - "kindness": 1e-05, - "leaked": 1e-05, - "locals": 7.94e-08, - "lottery": 1e-05, - "louise": 1e-05, - "magnitude": 1e-05, - "mc": 1e-05, - "minus": 1e-05, - "nhs": 1e-05, - "noting": 1e-05, - "nude": 1e-05, - "organs": 5.25e-08, - "outlet": 1e-05, - "outlets": 1e-05, - "parameters": 1e-05, - "pause": 1e-05, - "pledge": 1e-05, - "portal": 1e-05, - "prescription": 1e-05, - "protesters": 1e-05, - "proving": 1e-05, - "publicity": 1e-05, - "punished": 1e-05, - "puppy": 1e-05, - "recruitment": 1e-05, - "screwed": 1e-05, - "shades": 1e-05, - "shakespeare": 1e-05, - "silicon": 1e-05, - "slice": 1e-05, - "spelling": 1e-05, - "spurs": 1e-05, - "subscribers": 6.31e-08, - "surveys": 1.38e-07, - "survivor": 1e-05, - "telegraph": 1e-05, - "tits": 1e-05, - "vaccine": 1e-05, - "vinyl": 1e-05, - "westminster": 1e-05, - "wished": 1e-05, - "wonders": 9.77e-08, - "accurately": 9.77e-06, - "adelaide": 9.77e-06, - "affiliate": 9.77e-06, - "alfred": 9.77e-06, - "asylum": 9.77e-06, - "barn": 9.77e-06, - "bent": 9.77e-06, - "bernie": 9.77e-06, - "brussels": 9.77e-06, - "cathedral": 9.77e-06, - "centered": 9.77e-06, - "childs": 1.48e-06, - "clause": 9.77e-06, - "cluster": 9.77e-06, - "complained": 9.77e-06, - "compounds": 6.17e-08, - "consistency": 9.77e-06, - "cr": 9.77e-06, - "cracked": 9.77e-06, - "cylinder": 9.77e-06, - "dancer": 9.77e-06, - "deaf": 9.77e-06, - "debts": 9.77e-06, - "denial": 9.77e-06, - "digging": 9.77e-06, - "dock": 9.77e-06, - "entrepreneur": 9.77e-06, - "evident": 9.77e-06, - "expectation": 9.77e-06, - "expedition": 9.77e-06, - "expressing": 9.77e-06, - "extends": 9.77e-06, - "facilitate": 9.77e-06, - "failures": 9.77e-06, - "feat": 9.77e-06, - "fossil": 9.77e-06, - "founding": 9.77e-06, - "freight": 9.77e-06, - "generating": 9.77e-06, - "goddamn": 9.77e-06, - "guides": 1.58e-07, - "honesty": 9.77e-06, - "inappropriate": 9.77e-06, - "infant": 9.77e-06, - "initiated": 9.77e-06, - "injection": 9.77e-06, - "instrumental": 9.77e-06, - "insult": 9.77e-06, - "interference": 9.77e-06, - "interstate": 9.77e-06, - "julian": 9.77e-06, - "launching": 9.77e-06, - "liking": 9.77e-06, - "linux": 9.77e-06, - "luis": 2.34e-08, - "mates": 3.24e-07, - "mediterranean": 9.77e-06, - "neat": 9.77e-06, - "negotiate": 9.77e-06, - "neo": 9.77e-06, - "nicole": 9.77e-06, - "obligations": 9.77e-06, - "offset": 9.77e-06, - "outbreak": 9.77e-06, - "pal": 9.77e-06, - "palestine": 9.77e-06, - "perfection": 9.77e-06, - "pigs": 5.01e-07, - "pirates": 3.39e-07, - "posters": 6.46e-08, - "practicing": 9.77e-06, - "praying": 9.77e-06, - "probe": 9.77e-06, - "prohibited": 9.77e-06, - "projected": 9.77e-06, - "propose": 9.77e-06, - "quarterly": 9.77e-06, - "recipes": 9.77e-06, - "recruiting": 9.77e-06, - "refusing": 9.77e-06, - "rehabilitation": 9.77e-06, - "reid": 9.77e-06, - "remix": 9.77e-06, - "resistant": 9.77e-06, - "reynolds": 9.77e-06, - "riders": 3.39e-07, - "robots": 2.88e-07, - "rockets": 2.57e-07, - "roller": 9.77e-06, - "sailing": 9.77e-06, - "shapes": 9.77e-06, - "skinny": 9.77e-06, - "slipped": 9.77e-06, - "sneak": 9.77e-06, - "solving": 9.77e-06, - "sore": 9.77e-06, - "spark": 9.77e-06, - "speculation": 9.77e-06, - "steep": 9.77e-06, - "stevens": 4.07e-07, - "straw": 9.77e-06, - "successor": 9.77e-06, - "targeting": 9.77e-06, - "triggered": 9.77e-06, - "troubles": 7.41e-08, - "uncertain": 9.77e-06, - "upload": 9.77e-06, - "vector": 9.77e-06, - "violations": 9.77e-06, - "weigh": 9.77e-06, - "whatsoever": 9.77e-06, - "wicked": 9.77e-06, - "abraham": 9.55e-06, - "absent": 9.55e-06, - "acoustic": 9.55e-06, - "adapt": 9.55e-06, - "ancestors": 1.48e-07, - "archive": 9.55e-06, - "atomic": 9.55e-06, - "bean": 9.55e-06, - "bicycle": 9.55e-06, - "bryan": 9.55e-06, - "bump": 9.55e-06, - "buttons": 2e-07, - "cart": 9.55e-06, - "circus": 9.55e-06, - "claire": 9.55e-06, - "cocaine": 9.55e-06, - "cohen": 9.55e-06, - "colleague": 9.55e-06, - "compelling": 9.55e-06, - "compiled": 9.55e-06, - "complications": 9.55e-06, - "construct": 9.55e-06, - "cord": 9.55e-06, - "crowded": 9.55e-06, - "cyber": 9.55e-06, - "dale": 9.55e-06, - "debates": 9.55e-06, - "defendant": 9.55e-06, - "delays": 9.55e-06, - "dense": 9.55e-06, - "desperately": 9.55e-06, - "doctrine": 9.55e-06, - "expose": 9.55e-06, - "financially": 9.55e-06, - "freshman": 9.55e-06, - "furious": 9.55e-06, - "gameplay": 9.55e-06, - "geography": 9.55e-06, - "gig": 9.55e-06, - "habitat": 9.55e-06, - "harbour": 9.55e-06, - "hazard": 9.55e-06, - "hydrogen": 9.55e-06, - "implies": 9.55e-06, - "intact": 9.55e-06, - "intake": 9.55e-06, - "irrelevant": 9.55e-06, - "jaw": 9.55e-06, - "jin": 9.55e-06, - "kitty": 9.55e-06, - "lauren": 9.55e-06, - "lawn": 9.55e-06, - "manufacture": 9.55e-06, - "martha": 9.55e-06, - "medals": 9.55e-06, - "mercedes": 9.55e-06, - "mistaken": 9.55e-06, - "moses": 9.55e-06, - "nashville": 9.55e-06, - "nebraska": 9.55e-06, - "needle": 9.55e-06, - "ol": 9.55e-06, - "olds": 8.71e-07, - "organize": 9.55e-06, - "ottawa": 9.55e-06, - "oval": 9.55e-06, - "pity": 9.55e-06, - "pond": 9.55e-06, - "porter": 9.55e-06, - "portions": 9.55e-06, - "prey": 9.55e-06, - "prophet": 9.55e-06, - "raymond": 9.55e-06, - "recalled": 9.55e-06, - "reduces": 9.55e-06, - "referendum": 9.55e-06, - "refugee": 9.55e-06, - "regulated": 9.55e-06, - "rounded": 9.55e-06, - "ruby": 9.55e-06, - "rushed": 9.55e-06, - "sanders": 5.89e-08, - "satisfy": 9.55e-06, - "scales": 2.09e-08, - "seasonal": 9.55e-06, - "segments": 6.03e-08, - "sensible": 9.55e-06, - "sequel": 9.55e-06, - "shifted": 9.55e-06, - "shifting": 9.55e-06, - "shining": 9.55e-06, - "slower": 9.55e-06, - "spinning": 9.55e-06, - "stanford": 9.55e-06, - "stepping": 9.55e-06, - "teammates": 1.2e-07, - "touches": 9.55e-06, - "township": 9.55e-06, - "travelled": 9.55e-06, - "twisted": 9.55e-06, - "usb": 9.55e-06, - "vienna": 9.55e-06, - "wade": 9.55e-06, - "whale": 9.55e-06, - "writings": 1.17e-07, - "admire": 9.33e-06, - "af": 9.33e-06, - "amber": 9.33e-06, - "ankle": 9.33e-06, - "armor": 9.33e-06, - "autism": 9.33e-06, - "bachelor": 9.33e-06, - "berry": 9.33e-06, - "billions": 9.33e-06, - "brady": 9.33e-06, - "brisbane": 9.33e-06, - "bulls": 9.55e-07, - "bullying": 9.33e-06, - "capitalism": 9.33e-06, - "caution": 9.33e-06, - "certification": 9.33e-06, - "characteristic": 9.33e-06, - "clan": 9.33e-06, - "clash": 9.33e-06, - "columns": 6.76e-08, - "compatible": 9.33e-06, - "concerts": 9.12e-08, - "condemned": 9.33e-06, - "configuration": 9.33e-06, - "continuously": 9.33e-06, - "convincing": 9.33e-06, - "coupled": 9.33e-06, - "curiosity": 9.33e-06, - "delight": 9.33e-06, - "determining": 9.33e-06, - "entities": 9.33e-06, - "exceptions": 9.33e-06, - "explosive": 9.33e-06, - "flooding": 9.33e-06, - "fortunate": 9.33e-06, - "fortunately": 9.33e-06, - "foundations": 1.51e-06, - "frontier": 9.33e-06, - "frustrating": 9.33e-06, - "frustration": 9.33e-06, - "geographic": 9.33e-06, - "glenn": 9.33e-06, - "grande": 9.33e-06, - "grasp": 9.33e-06, - "handy": 9.33e-06, - "hardcore": 9.33e-06, - "harmful": 9.33e-06, - "headache": 9.33e-06, - "hers": 2.19e-07, - "hispanic": 9.33e-06, - "incentive": 9.33e-06, - "inclusive": 9.33e-06, - "infections": 9.33e-06, - "jackie": 9.33e-06, - "joel": 9.33e-06, - "kissing": 9.33e-06, - "lanes": 3.98e-07, - "licence": 9.33e-06, - "lungs": 9.33e-06, - "madness": 9.33e-06, - "mandate": 9.33e-06, - "manga": 9.33e-06, - "memorable": 9.33e-06, - "merger": 9.33e-06, - "minorities": 9.33e-06, - "nj": 9.33e-06, - "occurring": 9.33e-06, - "organizing": 9.33e-06, - "performs": 9.33e-06, - "ph": 9.33e-06, - "po": 9.33e-06, - "poker": 9.33e-06, - "portable": 9.33e-06, - "priced": 9.33e-06, - "quebec": 9.33e-06, - "randomly": 9.33e-06, - "rankings": 9.33e-06, - "realizing": 9.33e-06, - "resign": 9.33e-06, - "revealing": 9.33e-06, - "rico": 9.33e-06, - "robbery": 9.33e-06, - "rub": 9.33e-06, - "runners": 3.63e-07, - "sally": 9.33e-06, - "scattered": 9.33e-06, - "scout": 9.33e-06, - "searched": 9.33e-06, - "sexuality": 9.33e-06, - "shouting": 9.33e-06, - "slap": 9.33e-06, - "steak": 9.33e-06, - "succession": 9.33e-06, - "superintendent": 9.33e-06, - "suspicion": 9.33e-06, - "sweep": 9.33e-06, - "tactical": 9.33e-06, - "talents": 5.13e-08, - "therapist": 9.33e-06, - "thereafter": 9.33e-06, - "thorough": 9.33e-06, - "tuition": 9.33e-06, - "tumor": 9.33e-06, - "usd": 9.33e-06, - "variables": 9.33e-06, - "varying": 9.33e-06, - "wholesale": 9.33e-06, - "wwe": 9.33e-06, - "administered": 9.12e-06, - "affiliated": 9.12e-06, - "apples": 4.47e-06, - "architectural": 9.12e-06, - "artillery": 9.12e-06, - "assembled": 9.12e-06, - "bangladesh": 9.12e-06, - "barack": 9.12e-06, - "beaches": 9.12e-06, - "bees": 3.98e-07, - "boarding": 9.12e-06, - "bothered": 9.12e-06, - "canvas": 9.12e-06, - "canyon": 9.12e-06, - "casey": 9.12e-06, - "cheek": 9.12e-06, - "chen": 9.12e-06, - "cincinnati": 9.12e-06, - "circular": 9.12e-06, - "circulation": 9.12e-06, - "clearance": 9.12e-06, - "closes": 9.12e-06, - "coincidence": 9.12e-06, - "comedian": 9.12e-06, - "commands": 1.86e-07, - "commissioned": 9.12e-06, - "concentrated": 9.12e-06, - "conscience": 9.12e-06, - "cooler": 9.12e-06, - "countless": 9.12e-06, - "curry": 9.12e-06, - "dame": 9.12e-06, - "deceased": 9.12e-06, - "dedication": 9.12e-06, - "defining": 9.12e-06, - "detention": 9.12e-06, - "disputes": 9.12e-06, - "drake": 9.12e-06, - "employ": 9.12e-06, - "enforce": 9.12e-06, - "explicit": 9.12e-06, - "explicitly": 9.12e-06, - "eyed": 9.12e-06, - "florence": 9.12e-06, - "flu": 9.12e-06, - "forbidden": 9.12e-06, - "fraction": 9.12e-06, - "infantry": 9.12e-06, - "integral": 9.12e-06, - "investor": 9.12e-06, - "janet": 9.12e-06, - "judged": 9.12e-06, - "katie": 9.12e-06, - "kidnapped": 9.12e-06, - "lectures": 9.12e-06, - "lightly": 9.12e-06, - "linking": 9.12e-06, - "maintains": 9.12e-06, - "marble": 9.12e-06, - "maritime": 9.12e-06, - "melt": 9.12e-06, - "modes": 5.75e-08, - "monica": 9.12e-06, - "mumbai": 9.12e-06, - "nominee": 9.12e-06, - "oath": 9.12e-06, - "offence": 9.12e-06, - "packaging": 9.12e-06, - "patriots": 1.05e-07, - "pee": 9.12e-06, - "pillow": 9.12e-06, - "pirate": 9.12e-06, - "polar": 9.12e-06, - "prediction": 9.12e-06, - "preview": 9.12e-06, - "processed": 9.12e-06, - "pursuing": 9.12e-06, - "puzzle": 9.12e-06, - "rapper": 9.12e-06, - "rebecca": 9.12e-06, - "reconstruction": 9.12e-06, - "renowned": 9.12e-06, - "revelation": 9.12e-06, - "sara": 9.12e-06, - "scholar": 9.12e-06, - "sharks": 2.82e-07, - "shoots": 9.12e-06, - "skirt": 9.12e-06, - "socially": 9.12e-06, - "spa": 9.12e-06, - "spike": 9.12e-06, - "sprint": 9.12e-06, - "stir": 9.12e-06, - "stuffed": 9.12e-06, - "substantially": 9.12e-06, - "suburbs": 6.76e-08, - "superb": 9.12e-06, - "supposedly": 9.12e-06, - "tab": 9.12e-06, - "tendency": 9.12e-06, - "thatll": 8.32e-08, - "theirs": 1.1e-07, - "toast": 9.12e-06, - "toes": 9.12e-06, - "touchdown": 9.12e-06, - "traits": 9.12e-06, - "trek": 9.12e-06, - "tricky": 9.12e-06, - "triumph": 9.12e-06, - "uber": 9.12e-06, - "underwear": 9.12e-06, - "unto": 9.12e-06, - "viable": 9.12e-06, - "waist": 9.12e-06, - "welcomed": 9.12e-06, - "wit": 9.12e-06, - "wreck": 9.12e-06, - "absurd": 8.91e-06, - "accessories": 8.91e-06, - "adrian": 8.91e-06, - "advocates": 6.17e-08, - "ag": 8.91e-06, - "ambitious": 8.91e-06, - "amid": 8.91e-06, - "annoyed": 8.91e-06, - "appealing": 8.91e-06, - "appointments": 8.91e-06, - "assumptions": 8.91e-06, - "ballet": 8.91e-06, - "bargain": 8.91e-06, - "binary": 8.91e-06, - "blend": 8.91e-06, - "blogs": 1.95e-07, - "brake": 8.91e-06, - "builds": 8.91e-06, - "businessman": 8.91e-06, - "cab": 8.91e-06, - "ch": 8.91e-06, - "chi": 8.91e-06, - "col": 8.91e-06, - "collision": 8.91e-06, - "colombia": 8.91e-06, - "compassion": 8.91e-06, - "consumed": 8.91e-06, - "corrected": 8.91e-06, - "correction": 8.91e-06, - "cough": 8.91e-06, - "cousins": 1.12e-06, - "critic": 8.91e-06, - "czech": 8.91e-06, - "defenders": 2.63e-07, - "denying": 8.91e-06, - "depot": 8.91e-06, - "distress": 8.91e-06, - "documentation": 8.91e-06, - "doubts": 8.91e-06, - "dramatically": 8.91e-06, - "drank": 8.91e-06, - "dudes": 9.12e-07, - "eats": 2.04e-08, - "elegant": 8.91e-06, - "elevator": 8.91e-06, - "ellis": 8.91e-06, - "exchanges": 1.26e-07, - "excuses": 8.91e-06, - "execute": 8.91e-06, - "factories": 8.91e-06, - "feast": 8.91e-06, - "finland": 8.91e-06, - "frederick": 8.91e-06, - "frost": 8.91e-06, - "goin": 8.91e-06, - "herald": 8.91e-06, - "hike": 8.91e-06, - "hollow": 8.91e-06, - "homeland": 8.91e-06, - "hows": 5.75e-07, - "imported": 8.91e-06, - "ing": 8.91e-06, - "internationally": 8.91e-06, - "iraqi": 8.91e-06, - "itunes": 8.91e-06, - "kane": 8.91e-06, - "kissed": 8.91e-06, - "lame": 8.91e-06, - "licensing": 8.91e-06, - "lily": 8.91e-06, - "limiting": 8.91e-06, - "locker": 8.91e-06, - "mainland": 8.91e-06, - "marking": 8.91e-06, - "meditation": 8.91e-06, - "messenger": 8.91e-06, - "metals": 1.23e-07, - "missiles": 9.33e-08, - "munich": 8.91e-06, - "norwegian": 8.91e-06, - "pencil": 8.91e-06, - "philosophical": 8.91e-06, - "pierre": 8.91e-06, - "pipes": 5.37e-08, - "plasma": 8.91e-06, - "plea": 8.91e-06, - "punish": 8.91e-06, - "purse": 8.91e-06, - "quarterback": 8.91e-06, - "reagan": 8.91e-06, - "ref": 8.91e-06, - "relieved": 8.91e-06, - "replies": 8.91e-06, - "reservation": 8.91e-06, - "rhetoric": 8.91e-06, - "rivals": 1.51e-07, - "rushing": 8.91e-06, - "salvation": 8.91e-06, - "sanctions": 8.91e-06, - "secular": 8.91e-06, - "sensitivity": 8.91e-06, - "shane": 8.91e-06, - "sigh": 8.91e-06, - "sixteen": 8.91e-06, - "sovereign": 8.91e-06, - "specifications": 8.91e-06, - "spends": 8.91e-06, - "spouse": 8.91e-06, - "stat": 8.91e-06, - "supervisor": 8.91e-06, - "synthetic": 8.91e-06, - "teaches": 8.91e-06, - "tense": 8.91e-06, - "terrifying": 8.91e-06, - "toyota": 8.91e-06, - "tracked": 8.91e-06, - "traders": 1.32e-07, - "troy": 8.91e-06, - "varieties": 8.91e-06, - "vegan": 8.91e-06, - "waking": 8.91e-06, - "walmart": 8.91e-06, - "wang": 8.91e-06, - "wilderness": 8.91e-06, - "admits": 8.71e-06, - "adviser": 8.71e-06, - "aggregate": 8.71e-06, - "anal": 8.71e-06, - "anatomy": 8.71e-06, - "annie": 8.71e-06, - "announces": 8.71e-06, - "applicants": 2.45e-07, - "automobile": 8.71e-06, - "barnes": 8.71e-06, - "breasts": 8.71e-06, - "cement": 8.71e-06, - "chess": 8.71e-06, - "citing": 8.71e-06, - "colonies": 8.71e-06, - "composite": 8.71e-06, - "consequently": 8.71e-06, - "consist": 8.71e-06, - "councils": 2.57e-06, - "cox": 8.71e-06, - "curtis": 8.71e-06, - "decorated": 8.71e-06, - "delegates": 8.71e-06, - "dreaming": 8.71e-06, - "dull": 8.71e-06, - "enables": 8.71e-06, - "fare": 8.71e-06, - "fashioned": 8.71e-06, - "feared": 8.71e-06, - "float": 8.71e-06, - "generator": 8.71e-06, - "grind": 8.71e-06, - "grinding": 8.71e-06, - "grove": 8.71e-06, - "guessing": 8.71e-06, - "gum": 8.71e-06, - "hobby": 8.71e-06, - "hunters": 1.07e-06, - "idol": 8.71e-06, - "illusion": 8.71e-06, - "incorrect": 8.71e-06, - "jun": 8.71e-06, - "junction": 8.71e-06, - "lance": 8.71e-06, - "leap": 8.71e-06, - "locate": 8.71e-06, - "locks": 8.32e-08, - "lou": 8.71e-06, - "lynch": 8.71e-06, - "manages": 8.71e-06, - "masses": 8.71e-06, - "medicare": 8.71e-06, - "modeling": 8.71e-06, - "motive": 8.71e-06, - "nazis": 2.63e-07, - "neighbourhood": 8.71e-06, - "networking": 8.71e-06, - "newer": 8.71e-06, - "newton": 8.71e-06, - "oppose": 8.71e-06, - "optimal": 8.71e-06, - "overtime": 8.71e-06, - "packs": 1.29e-07, - "permits": 8.71e-06, - "playstation": 8.71e-06, - "pops": 5.01e-07, - "postal": 8.71e-06, - "predictions": 8.71e-06, - "prep": 8.71e-06, - "profound": 8.71e-06, - "prosecutor": 8.71e-06, - "rebellion": 8.71e-06, - "recipient": 8.71e-06, - "refund": 8.71e-06, - "remembering": 8.71e-06, - "rescued": 8.71e-06, - "risky": 8.71e-06, - "robust": 8.71e-06, - "scam": 8.71e-06, - "sci": 8.71e-06, - "sep": 8.71e-06, - "shareholders": 7.94e-08, - "sided": 8.71e-06, - "simulation": 8.71e-06, - "sober": 8.71e-06, - "spice": 8.71e-06, - "squeeze": 8.71e-06, - "storms": 8.51e-07, - "supervision": 8.71e-06, - "suspects": 6.76e-07, - "swap": 8.71e-06, - "swept": 8.71e-06, - "terrain": 8.71e-06, - "terrified": 8.71e-06, - "themed": 8.71e-06, - "threaten": 8.71e-06, - "thrilled": 8.71e-06, - "towel": 8.71e-06, - "trio": 8.71e-06, - "tubes": 5.75e-08, - "unconscious": 8.71e-06, - "und": 8.71e-06, - "varies": 8.71e-06, - "vegetable": 8.71e-06, - "verified": 8.71e-06, - "vibe": 8.71e-06, - "virtue": 8.71e-06, - "wifi": 8.71e-06, - "wishing": 8.71e-06, - "workforce": 8.71e-06, - "zombie": 8.71e-06, - "acre": 8.51e-06, - "airports": 5.5e-07, - "alot": 8.51e-06, - "amen": 8.51e-06, - "andrews": 1.15e-06, - "arise": 8.51e-06, - "ashes": 3.55e-08, - "automotive": 8.51e-06, - "battlefield": 8.51e-06, - "begging": 8.51e-06, - "berkeley": 8.51e-06, - "bloom": 8.51e-06, - "bore": 8.51e-06, - "bundle": 8.51e-06, - "butterfly": 8.51e-06, - "buys": 6.76e-08, - "casualties": 8.51e-06, - "catches": 8.51e-06, - "chad": 8.51e-06, - "clown": 8.51e-06, - "committees": 1.23e-06, - "conjunction": 8.51e-06, - "costly": 8.51e-06, - "cows": 6.92e-07, - "cries": 8.51e-06, - "cuban": 8.51e-06, - "cycles": 7.24e-08, - "darker": 8.51e-06, - "davies": 8.51e-06, - "descent": 8.51e-06, - "desktop": 8.51e-06, - "dial": 8.51e-06, - "directory": 8.51e-06, - "disabilities": 8.51e-06, - "discharge": 8.51e-06, - "discusses": 8.51e-06, - "dodge": 8.51e-06, - "downs": 3.47e-07, - "drilling": 8.51e-06, - "drums": 8.51e-06, - "elimination": 8.51e-06, - "enjoys": 8.51e-06, - "es": 6.61e-07, - "espn": 8.51e-06, - "ginger": 8.51e-06, - "governors": 3.24e-06, - "guild": 8.51e-06, - "halt": 8.51e-06, - "han": 8.51e-06, - "henderson": 8.51e-06, - "ibm": 8.51e-06, - "imaging": 8.51e-06, - "implied": 8.51e-06, - "impress": 8.51e-06, - "inability": 8.51e-06, - "incoming": 8.51e-06, - "isaac": 8.51e-06, - "jar": 8.51e-06, - "kay": 8.51e-06, - "lb": 8.51e-06, - "leicester": 8.51e-06, - "liam": 8.51e-06, - "litigation": 8.51e-06, - "mentor": 8.51e-06, - "merchandise": 8.51e-06, - "minerals": 8.51e-06, - "miners": 3.31e-07, - "monk": 8.51e-06, - "neighborhoods": 3.55e-07, - "ni": 8.51e-06, - "noah": 8.51e-06, - "norm": 8.51e-06, - "obtaining": 8.51e-06, - "occupy": 8.51e-06, - "offended": 8.51e-06, - "orthodox": 8.51e-06, - "overhead": 8.51e-06, - "pac": 8.51e-06, - "painter": 8.51e-06, - "partys": 1.17e-07, - "perth": 8.51e-06, - "pierce": 8.51e-06, - "pistol": 8.51e-06, - "printer": 8.51e-06, - "prone": 8.51e-06, - "raiders": 8.51e-06, - "readily": 8.51e-06, - "reflecting": 8.51e-06, - "regiment": 8.51e-06, - "remembers": 8.51e-06, - "reunion": 8.51e-06, - "revival": 8.51e-06, - "sanctuary": 8.51e-06, - "satan": 8.51e-06, - "satisfying": 8.51e-06, - "seas": 2.09e-07, - "securing": 8.51e-06, - "sensors": 8.51e-06, - "seoul": 8.51e-06, - "shells": 2.04e-07, - "siege": 8.51e-06, - "sixty": 8.51e-06, - "sleeve": 8.51e-06, - "sonic": 8.51e-06, - "soundtrack": 8.51e-06, - "speeches": 8.51e-06, - "spine": 8.51e-06, - "steering": 8.51e-06, - "substances": 8.51e-06, - "sullivan": 8.51e-06, - "sustain": 8.51e-06, - "tenure": 8.51e-06, - "texture": 8.51e-06, - "thankful": 8.51e-06, - "translate": 8.51e-06, - "treasurer": 8.51e-06, - "triangle": 8.51e-06, - "unclear": 8.51e-06, - "upgraded": 8.51e-06, - "venezuela": 8.51e-06, - "venice": 8.51e-06, - "vladimir": 8.51e-06, - "wizard": 8.51e-06, - "yankees": 8.51e-06, - "absorbed": 8.32e-06, - "admin": 8.32e-06, - "affection": 8.32e-06, - "airplane": 8.32e-06, - "altitude": 8.32e-06, - "athens": 8.32e-06, - "attributes": 8.32e-06, - "baked": 8.32e-06, - "baking": 8.32e-06, - "beautifully": 8.32e-06, - "betty": 8.32e-06, - "biblical": 8.32e-06, - "bmw": 8.32e-06, - "boo": 8.32e-06, - "cardiff": 8.32e-06, - "collapsed": 8.32e-06, - "coloured": 8.32e-06, - "competent": 8.32e-06, - "countryside": 8.32e-06, - "cracking": 8.32e-06, - "crane": 8.32e-06, - "debris": 8.32e-06, - "delegation": 8.32e-06, - "demographic": 8.32e-06, - "descriptions": 8.32e-06, - "donor": 8.32e-06, - "easiest": 8.32e-06, - "educate": 8.32e-06, - "enabling": 8.32e-06, - "enrolled": 8.32e-06, - "enrollment": 8.32e-06, - "essex": 8.32e-06, - "exceed": 8.32e-06, - "excluding": 8.32e-06, - "expressions": 8.32e-06, - "fierce": 8.32e-06, - "forgetting": 8.32e-06, - "gabriel": 8.32e-06, - "garlic": 8.32e-06, - "gaza": 8.32e-06, - "gratitude": 8.32e-06, - "hail": 8.32e-06, - "heroin": 8.32e-06, - "honda": 8.32e-06, - "hooked": 8.32e-06, - "illustration": 8.32e-06, - "impose": 8.32e-06, - "indicator": 8.32e-06, - "inequality": 8.32e-06, - "ins": 2.4e-07, - "interpreted": 8.32e-06, - "jamaica": 8.32e-06, - "joey": 8.32e-06, - "joshua": 8.32e-06, - "journals": 5.13e-07, - "leisure": 8.32e-06, - "lend": 8.32e-06, - "lengths": 8.32e-06, - "leon": 8.32e-06, - "lounge": 8.32e-06, - "luckily": 8.32e-06, - "manuscript": 8.32e-06, - "marco": 8.32e-06, - "marines": 1.58e-07, - "mint": 8.32e-06, - "molecules": 8.32e-06, - "montgomery": 8.32e-06, - "notification": 8.32e-06, - "nova": 8.32e-06, - "oakland": 8.32e-06, - "outline": 8.32e-06, - "pasta": 8.32e-06, - "pi": 8.32e-06, - "polite": 8.32e-06, - "productions": 1.55e-07, - "professors": 6.03e-07, - "quicker": 8.32e-06, - "randy": 8.32e-06, - "receipt": 8.32e-06, - "recognise": 8.32e-06, - "reliability": 8.32e-06, - "researcher": 8.32e-06, - "retailers": 1.91e-07, - "reviewing": 8.32e-06, - "romans": 2.69e-07, - "runway": 8.32e-06, - "sculpture": 8.32e-06, - "senses": 8.32e-06, - "sensor": 8.32e-06, - "seth": 8.32e-06, - "sharon": 8.32e-06, - "showcase": 8.32e-06, - "smoked": 8.32e-06, - "su": 8.32e-06, - "subsidiary": 8.32e-06, - "tampa": 8.32e-06, - "tenth": 8.32e-06, - "theology": 8.32e-06, - "topped": 8.32e-06, - "trails": 1.1e-07, - "underwater": 8.32e-06, - "uploaded": 8.32e-06, - "velocity": 8.32e-06, - "venues": 1.82e-07, - "wax": 8.32e-06, - "wikipedia": 8.32e-06, - "winston": 8.32e-06, - "yay": 8.32e-06, - "yu": 8.32e-06, - "accountability": 8.13e-06, - "aerial": 8.13e-06, - "albeit": 8.13e-06, - "alcoholic": 8.13e-06, - "amazed": 8.13e-06, - "ambition": 8.13e-06, - "ammunition": 8.13e-06, - "anthem": 8.13e-06, - "architects": 2.34e-07, - "automated": 8.13e-06, - "bake": 8.13e-06, - "batch": 8.13e-06, - "borrowed": 8.13e-06, - "carson": 8.13e-06, - "catalog": 8.13e-06, - "catalogue": 8.13e-06, - "charitable": 8.13e-06, - "christine": 8.13e-06, - "clicking": 8.13e-06, - "collector": 8.13e-06, - "compliment": 8.13e-06, - "consisted": 8.13e-06, - "continually": 8.13e-06, - "coordinator": 8.13e-06, - "damaging": 8.13e-06, - "danish": 8.13e-06, - "def": 8.13e-06, - "deployment": 8.13e-06, - "drafted": 8.13e-06, - "enjoyable": 8.13e-06, - "exotic": 8.13e-06, - "exterior": 8.13e-06, - "feminine": 8.13e-06, - "firearms": 8.13e-06, - "fountain": 8.13e-06, - "fury": 8.13e-06, - "gb": 8.13e-06, - "genocide": 8.13e-06, - "glance": 8.13e-06, - "glow": 8.13e-06, - "hay": 8.13e-06, - "headlines": 8.13e-06, - "hebrew": 8.13e-06, - "hometown": 8.13e-06, - "humanitarian": 8.13e-06, - "hungary": 8.13e-06, - "idaho": 8.13e-06, - "immunity": 8.13e-06, - "implementing": 8.13e-06, - "inherited": 8.13e-06, - "killers": 5.37e-07, - "labeled": 8.13e-06, - "lebron": 8.13e-06, - "liberation": 8.13e-06, - "likelihood": 8.13e-06, - "lone": 8.13e-06, - "massacre": 8.13e-06, - "meme": 8.13e-06, - "mitch": 8.13e-06, - "mod": 8.13e-06, - "nationalist": 8.13e-06, - "nationals": 2.19e-07, - "necessity": 8.13e-06, - "nickname": 8.13e-06, - "nixon": 8.13e-06, - "observer": 8.13e-06, - "offshore": 8.13e-06, - "optional": 8.13e-06, - "papa": 8.13e-06, - "parked": 8.13e-06, - "paste": 8.13e-06, - "pioneer": 8.13e-06, - "plaza": 8.13e-06, - "prescribed": 8.13e-06, - "pressures": 7.41e-08, - "prosperity": 8.13e-06, - "recreational": 8.13e-06, - "reds": 4.37e-07, - "refuge": 8.13e-06, - "religions": 2.04e-07, - "renewable": 8.13e-06, - "richardson": 8.13e-06, - "ricky": 8.13e-06, - "rode": 8.13e-06, - "ronald": 8.13e-06, - "sack": 8.13e-06, - "settlements": 5.13e-08, - "sheffield": 8.13e-06, - "shortage": 8.13e-06, - "skies": 8.13e-06, - "smarter": 8.13e-06, - "smiles": 5.75e-08, - "sophie": 8.13e-06, - "sphere": 8.13e-06, - "sponsors": 1.78e-07, - "stamps": 8.13e-06, - "stare": 8.13e-06, - "suburban": 8.13e-06, - "sung": 8.13e-06, - "suppliers": 8.32e-08, - "tablets": 5.89e-08, - "terribly": 8.13e-06, - "territorial": 8.13e-06, - "thirds": 8.13e-06, - "thriller": 8.13e-06, - "toss": 8.13e-06, - "transgender": 8.13e-06, - "troubled": 8.13e-06, - "turtle": 8.13e-06, - "ur": 8.13e-06, - "verbal": 8.13e-06, - "violated": 8.13e-06, - "vocals": 8.13e-06, - "wool": 8.13e-06, - "yang": 8.13e-06, - "accountable": 7.94e-06, - "advocacy": 7.94e-06, - "aftermath": 7.94e-06, - "aggression": 7.94e-06, - "analyzed": 7.94e-06, - "angles": 7.24e-08, - "arguably": 7.94e-06, - "armies": 7.94e-06, - "armstrong": 7.94e-06, - "assessed": 7.94e-06, - "attractions": 7.94e-06, - "balloon": 7.94e-06, - "beers": 1.95e-07, - "bells": 1e-06, - "blamed": 7.94e-06, - "blunt": 7.94e-06, - "boobs": 7.94e-06, - "bosses": 7.94e-06, - "brakes": 7.94e-06, - "brigade": 7.94e-06, - "bulgaria": 7.94e-06, - "burial": 7.94e-06, - "canceled": 7.94e-06, - "cardinal": 7.94e-06, - "champ": 7.94e-06, - "champagne": 7.94e-06, - "cheated": 7.94e-06, - "chinas": 1.74e-07, - "chorus": 7.94e-06, - "chrome": 7.94e-06, - "clarity": 7.94e-06, - "classics": 7.94e-06, - "cleaner": 7.94e-06, - "combining": 7.94e-06, - "conclude": 7.94e-06, - "confidential": 7.94e-06, - "coordination": 7.94e-06, - "cracks": 7.94e-06, - "cs": 8.32e-07, - "dancers": 2.09e-07, - "delaware": 7.94e-06, - "directing": 7.94e-06, - "discretion": 7.94e-06, - "ditch": 7.94e-06, - "dome": 7.94e-06, - "dope": 7.94e-06, - "drought": 7.94e-06, - "ducks": 2.51e-07, - "dumped": 7.94e-06, - "elevation": 7.94e-06, - "entrepreneurs": 1.35e-07, - "epa": 7.94e-06, - "esteem": 7.94e-06, - "eva": 7.94e-06, - "explored": 7.94e-06, - "fe": 7.94e-06, - "finances": 5.5e-08, - "finishes": 7.94e-06, - "fog": 7.94e-06, - "framed": 7.94e-06, - "fucks": 7.41e-07, - "gesture": 7.94e-06, - "ghana": 7.94e-06, - "gibson": 7.94e-06, - "gif": 7.94e-06, - "gilbert": 7.94e-06, - "gosh": 7.94e-06, - "griffin": 7.94e-06, - "historian": 7.94e-06, - "horizontal": 7.94e-06, - "hospitality": 7.94e-06, - "hostage": 7.94e-06, - "hottest": 7.94e-06, - "individually": 7.94e-06, - "inevitably": 7.94e-06, - "jeffrey": 7.94e-06, - "kenneth": 7.94e-06, - "lad": 7.94e-06, - "lakers": 7.94e-06, - "lasts": 7.94e-06, - "leagues": 3.63e-06, - "leslie": 7.94e-06, - "listings": 7.94e-06, - "literacy": 7.94e-06, - "marriages": 7.94e-06, - "mcdonalds": 2.45e-06, - "migrants": 7.94e-06, - "mins": 1.55e-07, - "misleading": 7.94e-06, - "moisture": 7.94e-06, - "monument": 7.94e-06, - "mortality": 7.94e-06, - "ng": 7.94e-06, - "notices": 7.94e-06, - "obsession": 7.94e-06, - "opt": 7.94e-06, - "particle": 7.94e-06, - "peanut": 7.94e-06, - "penn": 7.94e-06, - "persistent": 7.94e-06, - "personalities": 7.94e-06, - "petroleum": 7.94e-06, - "pharmaceutical": 7.94e-06, - "progression": 7.94e-06, - "quinn": 7.94e-06, - "ra": 7.94e-06, - "rack": 7.94e-06, - "rebuild": 7.94e-06, - "recordings": 7.94e-06, - "rejection": 7.94e-06, - "relaxing": 7.94e-06, - "reservoir": 7.94e-06, - "respects": 7.94e-06, - "riley": 7.94e-06, - "scrap": 7.94e-06, - "sebastian": 7.94e-06, - "sensation": 7.94e-06, - "shaft": 7.94e-06, - "shepherd": 7.94e-06, - "shuttle": 7.94e-06, - "slope": 7.94e-06, - "snack": 7.94e-06, - "sounding": 7.94e-06, - "specialists": 7.94e-06, - "spotlight": 7.94e-06, - "stabbed": 7.94e-06, - "stern": 7.94e-06, - "stiff": 7.94e-06, - "striker": 7.94e-06, - "sudan": 7.94e-06, - "sued": 7.94e-06, - "sums": 7.94e-06, - "sworn": 7.94e-06, - "tel": 7.94e-06, - "terrific": 7.94e-06, - "titans": 3.24e-07, - "tomatoes": 7.94e-06, - "tory": 7.94e-06, - "trafficking": 7.94e-06, - "transparency": 7.94e-06, - "trinity": 7.94e-06, - "unemployed": 7.94e-06, - "unite": 7.94e-06, - "unlock": 7.94e-06, - "vault": 7.94e-06, - "vet": 7.94e-06, - "vince": 7.94e-06, - "wagon": 7.94e-06, - "walt": 7.94e-06, - "withdrawn": 7.94e-06, - "accessed": 7.76e-06, - "adverse": 7.76e-06, - "aiming": 7.76e-06, - "allah": 7.76e-06, - "alumni": 7.76e-06, - "ana": 7.76e-06, - "awhile": 7.76e-06, - "aye": 7.76e-06, - "bastard": 7.76e-06, - "behaviors": 7.76e-06, - "bikes": 2.19e-07, - "biography": 7.76e-06, - "br": 7.76e-06, - "broker": 7.76e-06, - "browser": 7.76e-06, - "bury": 7.76e-06, - "cellular": 7.76e-06, - "cocktail": 7.76e-06, - "cod": 7.76e-06, - "conditioning": 7.76e-06, - "consuming": 7.76e-06, - "contracted": 7.76e-06, - "costumes": 7.76e-06, - "counseling": 7.76e-06, - "crews": 6.17e-07, - "cubs": 5.13e-08, - "cuz": 7.76e-06, - "dangers": 7.76e-06, - "designing": 7.76e-06, - "destructive": 7.76e-06, - "develops": 7.76e-06, - "dislike": 7.76e-06, - "doubled": 7.76e-06, - "doubles": 7.76e-06, - "economies": 7.76e-06, - "embedded": 7.76e-06, - "emerge": 7.76e-06, - "excluded": 7.76e-06, - "expects": 7.76e-06, - "farewell": 7.76e-06, - "feeds": 7.76e-06, - "fist": 7.76e-06, - "fond": 7.76e-06, - "foolish": 7.76e-06, - "frog": 7.76e-06, - "fry": 7.76e-06, - "garcia": 7.76e-06, - "gifted": 7.76e-06, - "hacking": 7.76e-06, - "hawks": 2.19e-07, - "heir": 7.76e-06, - "highlighted": 7.76e-06, - "holocaust": 7.76e-06, - "homer": 7.76e-06, - "hon": 7.76e-06, - "hopkins": 7.76e-06, - "imprisonment": 7.76e-06, - "indonesian": 7.76e-06, - "irs": 7.76e-06, - "jenny": 7.76e-06, - "ji": 7.76e-06, - "lacks": 7.76e-06, - "landlord": 7.76e-06, - "landmark": 7.76e-06, - "lanka": 7.76e-06, - "launches": 7.76e-06, - "leaning": 7.76e-06, - "liable": 7.76e-06, - "lifes": 8.51e-07, - "memphis": 7.76e-06, - "midst": 7.76e-06, - "misery": 7.76e-06, - "module": 7.76e-06, - "mommy": 7.76e-06, - "monroe": 7.76e-06, - "mosque": 7.76e-06, - "moss": 7.76e-06, - "museums": 1.74e-06, - "mvp": 7.76e-06, - "nursery": 7.76e-06, - "obamacare": 7.76e-06, - "onion": 7.76e-06, - "perspectives": 7.76e-06, - "peru": 7.76e-06, - "phrases": 7.76e-06, - "plague": 7.76e-06, - "plains": 7.76e-06, - "positively": 7.76e-06, - "powell": 7.76e-06, - "prevents": 7.76e-06, - "profiles": 7.76e-06, - "pursued": 7.76e-06, - "raids": 7.76e-06, - "recruit": 7.76e-06, - "resting": 7.76e-06, - "rex": 7.76e-06, - "rogue": 7.76e-06, - "roosevelt": 7.76e-06, - "salaries": 7.76e-06, - "sd": 7.76e-06, - "seated": 7.76e-06, - "sharply": 7.76e-06, - "showers": 7.76e-06, - "sincerely": 7.76e-06, - "sings": 7.76e-06, - "solidarity": 7.76e-06, - "specialty": 7.76e-06, - "supernatural": 7.76e-06, - "surprises": 7.76e-06, - "td": 2.57e-08, - "tens": 2.82e-07, - "thirteen": 7.76e-06, - "tomb": 7.76e-06, - "touring": 7.76e-06, - "traces": 7.76e-06, - "trademark": 7.76e-06, - "trim": 7.76e-06, - "umbrella": 7.76e-06, - "utilities": 7.76e-06, - "voyage": 7.76e-06, - "weaker": 7.76e-06, - "willie": 7.76e-06, - "yields": 7.76e-06, - "abbey": 7.59e-06, - "accepts": 7.59e-06, - "adjustment": 7.59e-06, - "andrea": 7.59e-06, - "assignments": 7.59e-06, - "attachment": 7.59e-06, - "baron": 7.59e-06, - "beatles": 7.59e-06, - "belfast": 7.59e-06, - "blah": 7.59e-06, - "blaming": 7.59e-06, - "bomber": 7.59e-06, - "bt": 7.59e-06, - "bunny": 7.59e-06, - "candle": 7.59e-06, - "carved": 7.59e-06, - "choir": 7.59e-06, - "clutch": 7.59e-06, - "coconut": 7.59e-06, - "committing": 7.59e-06, - "comprising": 7.59e-06, - "confession": 7.59e-06, - "consume": 7.59e-06, - "corridor": 7.59e-06, - "credibility": 7.59e-06, - "credited": 7.59e-06, - "critically": 7.59e-06, - "dem": 7.59e-06, - "distracted": 7.59e-06, - "dm": 7.59e-06, - "dolphins": 1.23e-07, - "estates": 2.82e-07, - "ferguson": 7.59e-06, - "ferrari": 7.59e-06, - "filters": 7.59e-06, - "fools": 1.32e-06, - "fourteen": 7.59e-06, - "fu": 7.59e-06, - "geometry": 7.59e-06, - "gf": 7.59e-06, - "ghosts": 1.62e-07, - "gossip": 7.59e-06, - "gp": 7.59e-06, - "grandparents": 1.12e-07, - "haul": 7.59e-06, - "header": 7.59e-06, - "headphones": 7.59e-06, - "highways": 7.76e-08, - "holly": 7.59e-06, - "immense": 7.59e-06, - "imports": 7.59e-06, - "incentives": 7.59e-06, - "interfere": 7.59e-06, - "intersection": 7.59e-06, - "investigators": 1e-07, - "juvenile": 7.59e-06, - "karma": 7.59e-06, - "ki": 7.59e-06, - "knocking": 7.59e-06, - "kurt": 7.59e-06, - "leaks": 7.59e-06, - "leverage": 7.59e-06, - "lil": 3.55e-07, - "lining": 7.59e-06, - "luther": 7.59e-06, - "manila": 7.59e-06, - "mankind": 7.59e-06, - "mapping": 7.59e-06, - "masks": 7.59e-06, - "med": 7.59e-06, - "metric": 7.59e-06, - "militia": 7.59e-06, - "naming": 7.59e-06, - "ncaa": 7.59e-06, - "nike": 7.59e-06, - "node": 7.59e-06, - "obstacles": 7.59e-06, - "opener": 7.59e-06, - "overwhelmed": 7.59e-06, - "performers": 1.29e-07, - "pg": 7.59e-06, - "pl": 7.59e-06, - "pointless": 7.59e-06, - "poles": 5.25e-08, - "preferences": 7.59e-06, - "prompted": 7.59e-06, - "proximity": 7.59e-06, - "qualification": 7.59e-06, - "qualifications": 7.59e-06, - "ranger": 7.59e-06, - "rendered": 7.59e-06, - "rented": 7.59e-06, - "reversed": 7.59e-06, - "robbed": 7.59e-06, - "sadness": 7.59e-06, - "scenarios": 7.59e-06, - "selective": 7.59e-06, - "seniors": 1.66e-07, - "sf": 7.59e-06, - "shiny": 7.59e-06, - "socialism": 7.59e-06, - "sour": 7.59e-06, - "spoon": 7.59e-06, - "stressful": 7.59e-06, - "stretched": 7.59e-06, - "sucking": 7.59e-06, - "teddy": 7.59e-06, - "tenants": 1.51e-07, - "terrace": 7.59e-06, - "thief": 7.59e-06, - "transported": 7.59e-06, - "tribunal": 7.59e-06, - "undoubtedly": 7.59e-06, - "uniforms": 7.59e-06, - "verify": 7.59e-06, - "villain": 7.59e-06, - "whistle": 7.59e-06, - "wifes": 3.24e-07, - "workshops": 5.75e-08, - "yale": 7.59e-06, - "yearly": 7.59e-06, - "yemen": 7.59e-06, - "abusive": 7.41e-06, - "alley": 7.41e-06, - "announcing": 7.41e-06, - "appetite": 7.41e-06, - "backyard": 7.41e-06, - "beth": 7.41e-06, - "beverly": 7.41e-06, - "bids": 7.41e-06, - "billboard": 7.41e-06, - "blades": 1.2e-07, - "boris": 7.41e-06, - "bully": 7.41e-06, - "burke": 7.41e-06, - "cables": 2.14e-07, - "calculate": 7.41e-06, - "calculations": 7.41e-06, - "chicks": 1.82e-07, - "conceived": 7.41e-06, - "consult": 7.41e-06, - "crashes": 7.41e-06, - "crowds": 3.24e-07, - "cunt": 7.41e-06, - "damned": 7.41e-06, - "dissolved": 7.41e-06, - "distinguish": 7.41e-06, - "dominate": 7.41e-06, - "dynasty": 7.41e-06, - "economist": 7.41e-06, - "endorsed": 7.41e-06, - "europeans": 7.41e-06, - "examining": 7.41e-06, - "extensively": 7.41e-06, - "fda": 7.41e-06, - "festivals": 7.76e-07, - "forehead": 7.41e-06, - "foreigners": 8.51e-08, - "forgiveness": 7.41e-06, - "gem": 7.41e-06, - "glen": 7.41e-06, - "graves": 4.9e-08, - "gregory": 7.41e-06, - "haunted": 7.41e-06, - "hayes": 7.41e-06, - "heather": 7.41e-06, - "hiking": 7.41e-06, - "hypothesis": 7.41e-06, - "illegally": 7.41e-06, - "illustrations": 7.41e-06, - "inclined": 7.41e-06, - "informal": 7.41e-06, - "jew": 7.41e-06, - "learnt": 1.12e-08, - "lending": 7.41e-06, - "marker": 7.41e-06, - "marsh": 7.41e-06, - "marshal": 7.41e-06, - "maturity": 7.41e-06, - "maya": 7.41e-06, - "messy": 7.41e-06, - "mia": 7.41e-06, - "minneapolis": 7.41e-06, - "molly": 7.41e-06, - "morrison": 7.41e-06, - "mtv": 7.41e-06, - "muhammad": 7.41e-06, - "neighboring": 7.41e-06, - "neighbours": 4.79e-07, - "ninja": 7.41e-06, - "optimistic": 7.41e-06, - "outlined": 7.41e-06, - "owl": 7.41e-06, - "parenting": 7.41e-06, - "peaks": 7.41e-06, - "pharmacy": 7.41e-06, - "pools": 1.82e-07, - "preparations": 7.41e-06, - "problematic": 7.41e-06, - "proceeded": 7.41e-06, - "processor": 7.41e-06, - "promotional": 7.41e-06, - "pros": 4.27e-07, - "prospective": 7.41e-06, - "psychiatric": 7.41e-06, - "regulate": 7.41e-06, - "renaissance": 7.41e-06, - "repeal": 7.41e-06, - "reuters": 7.41e-06, - "riots": 1e-07, - "roast": 7.41e-06, - "robertson": 7.41e-06, - "rubbish": 7.41e-06, - "saga": 7.41e-06, - "salon": 7.41e-06, - "seventeen": 7.41e-06, - "shields": 1.41e-07, - "sliding": 7.41e-06, - "sodium": 7.41e-06, - "surplus": 7.41e-06, - "swallow": 7.41e-06, - "systematic": 7.41e-06, - "theaters": 2.75e-07, - "transmitted": 7.41e-06, - "tuned": 7.41e-06, - "unacceptable": 7.41e-06, - "unaware": 7.41e-06, - "uncommon": 7.41e-06, - "underway": 7.41e-06, - "unified": 7.41e-06, - "unstable": 7.41e-06, - "upstairs": 7.41e-06, - "vague": 7.41e-06, - "wee": 7.41e-06, - "woo": 7.41e-06, - "xd": 7.41e-06, - "zip": 7.41e-06, - "abs": 1.05e-07, - "abundance": 7.24e-06, - "advancing": 7.24e-06, - "ahh": 7.24e-06, - "alberta": 7.24e-06, - "ant": 5.62e-08, - "antique": 7.24e-06, - "autonomy": 7.24e-06, - "baptist": 7.24e-06, - "behavioral": 7.24e-06, - "biden": 7.24e-06, - "booking": 7.24e-06, - "breeze": 7.24e-06, - "brett": 7.24e-06, - "browns": 3.24e-06, - "canadians": 5.89e-08, - "carnival": 7.24e-06, - "commodity": 7.24e-06, - "congressman": 7.24e-06, - "containers": 7.24e-06, - "cooperative": 7.24e-06, - "coral": 7.24e-06, - "correlation": 7.24e-06, - "correspondent": 7.24e-06, - "coupon": 7.24e-06, - "covid": 7.24e-06, - "crosses": 7.24e-06, - "curtain": 7.24e-06, - "curves": 7.24e-06, - "defines": 7.24e-06, - "delivers": 7.24e-06, - "demonstrates": 7.24e-06, - "dentist": 7.24e-06, - "dodgers": 7.24e-06, - "dough": 7.24e-06, - "dug": 7.24e-06, - "endangered": 7.24e-06, - "envelope": 7.24e-06, - "exhibited": 7.24e-06, - "fade": 7.24e-06, - "fatigue": 7.24e-06, - "fellowship": 7.24e-06, - "fictional": 7.24e-06, - "fragile": 7.24e-06, - "fringe": 7.24e-06, - "fulfill": 7.24e-06, - "gaps": 6.17e-08, - "granite": 7.24e-06, - "greens": 1.05e-06, - "handbook": 7.24e-06, - "hardy": 7.24e-06, - "honors": 9.33e-08, - "indias": 2.29e-07, - "insights": 7.24e-06, - "instinct": 7.24e-06, - "inviting": 7.24e-06, - "irony": 7.24e-06, - "ivan": 7.24e-06, - "joyce": 7.24e-06, - "judgement": 7.24e-06, - "judiciary": 7.24e-06, - "jumps": 7.24e-06, - "lads": 1.26e-07, - "legion": 7.24e-06, - "lethal": 7.24e-06, - "lime": 7.24e-06, - "lively": 7.24e-06, - "logistics": 7.24e-06, - "lowered": 7.24e-06, - "lynn": 7.24e-06, - "maid": 7.24e-06, - "manning": 7.24e-06, - "manuel": 7.24e-06, - "maple": 7.24e-06, - "mickey": 7.24e-06, - "midfielder": 7.24e-06, - "mindset": 7.24e-06, - "mistress": 7.24e-06, - "moms": 6.46e-06, - "mon": 7.24e-06, - "monkeys": 3.8e-07, - "morality": 7.24e-06, - "mortal": 7.24e-06, - "mounting": 7.24e-06, - "nonprofit": 7.24e-06, - "nsa": 7.24e-06, - "oils": 2.29e-07, - "operative": 7.24e-06, - "outs": 1.45e-07, - "owed": 7.24e-06, - "panama": 7.24e-06, - "patches": 7.24e-06, - "pickup": 7.24e-06, - "portraits": 7.24e-06, - "pouring": 7.24e-06, - "prestigious": 7.24e-06, - "prompt": 7.24e-06, - "quantities": 7.24e-06, - "radius": 7.24e-06, - "referee": 7.24e-06, - "relay": 7.24e-06, - "rig": 7.24e-06, - "risen": 7.24e-06, - "rows": 6.92e-08, - "sacramento": 7.24e-06, - "scroll": 7.24e-06, - "searches": 7.24e-06, - "sh": 7.24e-06, - "smiled": 7.24e-06, - "snacks": 7.24e-06, - "snakes": 3.31e-07, - "sovereignty": 7.24e-06, - "strips": 1.07e-07, - "stunt": 7.24e-06, - "subjected": 7.24e-06, - "sucked": 7.24e-06, - "sunlight": 7.24e-06, - "surf": 7.24e-06, - "symbolic": 7.24e-06, - "sync": 7.24e-06, - "taxpayer": 7.24e-06, - "tempted": 7.24e-06, - "thrust": 7.24e-06, - "trevor": 7.24e-06, - "trilogy": 7.24e-06, - "url": 7.24e-06, - "weights": 7.24e-06, - "wheelchair": 7.24e-06, - "whore": 7.24e-07, - "wiped": 7.24e-06, - "yahoo": 7.24e-06, - "yourselves": 7.24e-06, - "accompanying": 7.08e-06, - "accusations": 7.08e-06, - "acids": 7.08e-06, - "administrators": 9.77e-08, - "aired": 7.08e-06, - "allowance": 7.08e-06, - "andre": 7.08e-06, - "apologies": 7.08e-06, - "arbitrary": 7.08e-06, - "atm": 7.08e-06, - "autonomous": 7.08e-06, - "averaged": 7.08e-06, - "bait": 7.08e-06, - "bark": 7.08e-06, - "bets": 1.66e-07, - "blogger": 7.08e-06, - "bra": 7.08e-06, - "brighton": 7.08e-06, - "brotherhood": 7.08e-06, - "buddhist": 7.08e-06, - "builder": 7.08e-06, - "cakes": 5.75e-08, - "carriage": 7.08e-06, - "celebrations": 7.08e-06, - "censorship": 7.08e-06, - "cf": 7.08e-06, - "cl": 7.08e-06, - "clarify": 7.08e-06, - "climbed": 7.08e-06, - "comp": 7.08e-06, - "compilation": 7.08e-06, - "composer": 7.08e-06, - "comprises": 7.08e-06, - "constitute": 7.08e-06, - "correspondence": 7.08e-06, - "cowboy": 7.08e-06, - "defendants": 1e-06, - "desirable": 7.08e-06, - "devastating": 7.08e-06, - "diagram": 7.08e-06, - "dismiss": 7.08e-06, - "editions": 7.24e-08, - "erected": 7.08e-06, - "explorer": 7.08e-06, - "farther": 7.08e-06, - "favorable": 7.08e-06, - "feminism": 7.08e-06, - "flaws": 7.08e-06, - "forums": 2.4e-07, - "freed": 7.08e-06, - "galleries": 7.08e-06, - "gasoline": 7.08e-06, - "genesis": 7.08e-06, - "geographical": 7.08e-06, - "governed": 7.08e-06, - "governmental": 7.08e-06, - "grandson": 7.08e-06, - "halls": 8.91e-07, - "handles": 7.08e-06, - "heavier": 7.08e-06, - "herbert": 7.08e-06, - "hints": 7.08e-06, - "husbands": 5.89e-06, - "incomplete": 7.08e-06, - "incorporate": 7.08e-06, - "interrupted": 7.08e-06, - "ivory": 7.08e-06, - "kerry": 7.08e-06, - "kirk": 7.08e-06, - "lang": 7.08e-06, - "lengthy": 7.08e-06, - "levy": 7.08e-06, - "lp": 7.08e-06, - "manipulation": 7.08e-06, - "merchants": 2.95e-07, - "misses": 7.08e-06, - "mlb": 7.08e-06, - "mock": 7.08e-06, - "necklace": 7.08e-06, - "niche": 7.08e-06, - "nina": 7.08e-06, - "obrien": 6.76e-08, - "obscure": 7.08e-06, - "ot": 7.08e-06, - "para": 7.08e-06, - "peterson": 7.08e-06, - "popped": 7.08e-06, - "porch": 7.08e-06, - "portrayed": 7.08e-06, - "possessed": 7.08e-06, - "princeton": 7.08e-06, - "proposition": 7.08e-06, - "railways": 7.94e-08, - "readings": 1.17e-07, - "recession": 7.08e-06, - "richards": 1.26e-06, - "rim": 7.08e-06, - "seals": 1.41e-07, - "secondly": 7.08e-06, - "sequences": 7.08e-06, - "settling": 7.08e-06, - "sherman": 7.08e-06, - "spinal": 7.08e-06, - "spiral": 7.08e-06, - "spit": 7.08e-06, - "splash": 7.08e-06, - "stretching": 7.08e-06, - "successive": 7.08e-06, - "superhero": 7.08e-06, - "taxpayers": 2.95e-07, - "therapeutic": 7.08e-06, - "threads": 7.08e-06, - "ti": 7.08e-06, - "timely": 7.08e-06, - "tomato": 7.08e-06, - "tub": 7.08e-06, - "ufc": 7.08e-06, - "undergraduate": 7.08e-06, - "undertaken": 7.08e-06, - "uranium": 7.08e-06, - "utter": 7.08e-06, - "vietnamese": 7.08e-06, - "volleyball": 7.08e-06, - "walsh": 7.08e-06, - "wires": 8.32e-08, - "yell": 4.57e-08, - "advertisement": 6.92e-06, - "analysts": 8.91e-08, - "analyze": 6.92e-06, - "atmospheric": 6.92e-06, - "bangkok": 6.92e-06, - "batting": 6.92e-06, - "bb": 6.92e-06, - "bitches": 6.92e-06, - "bracket": 6.92e-06, - "branded": 6.92e-06, - "bryant": 6.92e-06, - "cairo": 6.92e-06, - "cardiac": 6.92e-06, - "catholics": 6.92e-06, - "commanding": 6.92e-06, - "confirms": 6.92e-06, - "confronted": 6.92e-06, - "crashing": 6.92e-06, - "crawford": 6.92e-06, - "creep": 6.92e-06, - "daylight": 6.92e-06, - "dee": 6.92e-06, - "dems": 9.55e-08, - "devon": 6.92e-06, - "disclose": 6.92e-06, - "doe": 6.92e-06, - "donna": 6.92e-06, - "elbow": 6.92e-06, - "encourages": 6.92e-06, - "enthusiastic": 6.92e-06, - "envy": 6.92e-06, - "establishments": 1.38e-07, - "exile": 6.92e-06, - "exploitation": 6.92e-06, - "felix": 6.92e-06, - "futures": 4.68e-07, - "gel": 6.92e-06, - "genetics": 6.92e-06, - "goose": 6.92e-06, - "grill": 6.92e-06, - "grounded": 6.92e-06, - "hating": 6.92e-06, - "heel": 6.92e-06, - "heroic": 6.92e-06, - "hut": 6.92e-06, - "inmates": 1e-07, - "instructed": 6.92e-06, - "ira": 6.92e-06, - "jenkins": 6.92e-06, - "johns": 5.37e-06, - "knives": 6.92e-06, - "louisville": 6.92e-06, - "malaysian": 6.92e-06, - "margins": 6.92e-06, - "marina": 6.92e-06, - "mat": 6.92e-06, - "melissa": 6.92e-06, - "milton": 6.92e-06, - "miranda": 6.92e-06, - "ml": 6.92e-06, - "monopoly": 6.92e-06, - "nash": 6.92e-06, - "nationally": 6.92e-06, - "nobel": 6.92e-06, - "norfolk": 6.92e-06, - "outrage": 6.92e-06, - "owning": 6.92e-06, - "pains": 1.23e-07, - "paperwork": 6.92e-06, - "pdf": 6.92e-06, - "pitched": 6.92e-06, - "poets": 4.27e-07, - "poisoning": 6.92e-06, - "promptly": 6.92e-06, - "que": 6.92e-06, - "rains": 1.48e-07, - "recovering": 6.92e-06, - "renewal": 6.92e-06, - "repeating": 6.92e-06, - "rifles": 7.08e-08, - "robbie": 6.92e-06, - "ruler": 6.92e-06, - "screams": 6.92e-06, - "sellers": 3.16e-07, - "sights": 6.92e-06, - "sincere": 6.92e-06, - "skating": 6.92e-06, - "skiing": 6.92e-06, - "slaughter": 6.92e-06, - "smashed": 6.92e-06, - "sox": 6.92e-06, - "sperm": 6.92e-06, - "spill": 6.92e-06, - "steadily": 6.92e-06, - "stripped": 6.92e-06, - "supplier": 6.92e-06, - "swamp": 6.92e-06, - "swan": 6.92e-06, - "switches": 6.92e-06, - "synthesis": 6.92e-06, - "tasty": 6.92e-06, - "tattoos": 8.91e-08, - "teammate": 6.92e-06, - "testify": 6.92e-06, - "tolerate": 6.92e-06, - "tournaments": 5.25e-07, - "travelers": 3.72e-07, - "treason": 6.92e-06, - "trustees": 6.92e-06, - "typing": 6.92e-06, - "urine": 6.92e-06, - "vanilla": 6.92e-06, - "vermont": 6.92e-06, - "vic": 6.92e-06, - "vii": 6.92e-06, - "violet": 6.92e-06, - "weighing": 6.92e-06, - "wendy": 6.92e-06, - "activation": 6.76e-06, - "afghan": 6.76e-06, - "afterward": 6.76e-06, - "agreeing": 6.76e-06, - "ahmed": 6.76e-06, - "allocated": 6.76e-06, - "appealed": 6.76e-06, - "applause": 6.76e-06, - "bald": 6.76e-06, - "barrels": 6.46e-08, - "boil": 6.76e-06, - "borough": 6.76e-06, - "boyd": 6.76e-06, - "bp": 6.76e-06, - "breakthrough": 6.76e-06, - "calif": 6.76e-06, - "ce": 6.76e-06, - "charities": 6.76e-06, - "cheering": 6.76e-06, - "chooses": 6.76e-06, - "churchill": 6.76e-06, - "combinations": 6.76e-06, - "commenting": 6.76e-06, - "competitions": 4.07e-07, - "cone": 6.76e-06, - "connects": 6.76e-06, - "convey": 6.76e-06, - "critique": 6.76e-06, - "crushing": 6.76e-06, - "curved": 6.76e-06, - "cyrus": 6.76e-06, - "decay": 6.76e-06, - "declining": 6.76e-06, - "depressing": 6.76e-06, - "dessert": 6.76e-06, - "destinations": 6.76e-06, - "diagnostic": 6.76e-06, - "diane": 6.76e-06, - "differential": 6.76e-06, - "discourse": 6.76e-06, - "distances": 6.76e-06, - "dominance": 6.76e-06, - "donors": 2.57e-07, - "downloaded": 6.76e-06, - "earths": 1.1e-06, - "economically": 6.76e-06, - "entertain": 6.76e-06, - "evaluated": 6.76e-06, - "exploit": 6.76e-06, - "fireworks": 6.76e-06, - "flown": 6.76e-06, - "floyd": 6.76e-06, - "founders": 5.01e-07, - "freeman": 6.76e-06, - "gandhi": 6.76e-06, - "gateway": 6.76e-06, - "ge": 6.76e-06, - "guarantees": 6.76e-06, - "humidity": 6.76e-06, - "humour": 6.76e-06, - "imagery": 6.76e-06, - "imply": 6.76e-06, - "indicators": 6.76e-06, - "inherent": 6.76e-06, - "inland": 6.76e-06, - "inning": 6.76e-06, - "innocence": 6.76e-06, - "investigator": 6.76e-06, - "isle": 6.76e-06, - "ivy": 6.76e-06, - "justification": 6.76e-06, - "ka": 6.76e-06, - "katherine": 6.76e-06, - "lego": 6.76e-06, - "licenses": 6.76e-06, - "livestock": 6.76e-06, - "liz": 6.76e-06, - "llc": 6.76e-06, - "mafia": 6.76e-06, - "manners": 6.76e-06, - "merry": 6.76e-06, - "mick": 6.76e-06, - "missionary": 6.76e-06, - "nationalism": 6.76e-06, - "naughty": 6.76e-06, - "nepal": 6.76e-06, - "newman": 6.76e-06, - "notified": 6.76e-06, - "notorious": 6.76e-06, - "obey": 6.76e-06, - "olivia": 6.76e-06, - "organizational": 6.76e-06, - "outfits": 9.12e-08, - "outright": 6.76e-06, - "overly": 6.76e-06, - "oversight": 6.76e-06, - "panthers": 1.23e-07, - "persian": 6.76e-06, - "phases": 6.76e-06, - "photographers": 5.37e-07, - "polling": 6.76e-06, - "popping": 6.76e-06, - "prisons": 2.51e-07, - "prototype": 6.76e-06, - "pumpkin": 6.76e-06, - "pumps": 6.17e-08, - "punched": 6.76e-06, - "ramp": 6.76e-06, - "rand": 6.76e-06, - "reactor": 6.76e-06, - "reef": 6.76e-06, - "refined": 6.76e-06, - "refreshing": 6.76e-06, - "refusal": 6.76e-06, - "reinforced": 6.76e-06, - "remedies": 6.76e-06, - "reset": 6.76e-06, - "sage": 6.76e-06, - "shave": 6.76e-06, - "sickness": 6.76e-06, - "simpler": 6.76e-06, - "sinking": 6.76e-06, - "slots": 6.76e-06, - "sorted": 6.76e-06, - "sq": 6.76e-06, - "staged": 6.76e-06, - "startup": 6.76e-06, - "statute": 6.76e-06, - "stems": 6.76e-06, - "straightforward": 6.76e-06, - "strengths": 6.76e-06, - "suffers": 6.76e-06, - "superstar": 6.76e-06, - "telecommunications": 6.76e-06, - "thieves": 6.76e-06, - "thoughtful": 6.76e-06, - "thru": 6.76e-06, - "tissues": 6.76e-06, - "toddler": 6.76e-06, - "utilized": 6.76e-06, - "vicious": 6.76e-06, - "victories": 6.76e-06, - "vikings": 6.61e-08, - "vodka": 6.76e-06, - "vr": 6.76e-06, - "wholly": 6.76e-06, - "zoom": 6.76e-06, - "accidental": 6.61e-06, - "accounted": 6.61e-06, - "addicted": 6.61e-06, - "adjustments": 6.61e-06, - "apollo": 6.61e-06, - "archbishop": 6.61e-06, - "assassination": 6.61e-06, - "athletics": 5.89e-08, - "basics": 6.61e-06, - "bats": 1.29e-07, - "belgian": 6.61e-06, - "bibliography": 6.61e-06, - "bot": 6.61e-06, - "broadly": 6.61e-06, - "calcium": 6.61e-06, - "calvin": 6.61e-06, - "candles": 6.61e-06, - "capita": 6.61e-06, - "certainty": 6.61e-06, - "cheeks": 6.61e-06, - "chickens": 1.55e-07, - "christina": 6.61e-06, - "citation": 6.61e-06, - "clues": 6.61e-06, - "collectively": 6.61e-06, - "commercials": 6.61e-06, - "commissions": 1.55e-06, - "compression": 6.61e-06, - "comprised": 6.61e-06, - "confess": 6.61e-06, - "confined": 6.61e-06, - "congregation": 6.61e-06, - "consolidated": 6.61e-06, - "coordinate": 6.61e-06, - "coordinates": 6.61e-06, - "cube": 6.61e-06, - "dana": 6.61e-06, - "declaring": 6.61e-06, - "decoration": 6.61e-06, - "decree": 6.61e-06, - "definitions": 6.61e-06, - "deliberate": 6.61e-06, - "despair": 6.61e-06, - "discovering": 6.61e-06, - "dividend": 6.61e-06, - "dragging": 6.61e-06, - "drift": 6.61e-06, - "dye": 6.61e-06, - "eden": 6.61e-06, - "educators": 6.61e-06, - "electron": 6.61e-06, - "endure": 6.61e-06, - "enzyme": 6.61e-06, - "evolutionary": 6.61e-06, - "exhibits": 6.61e-06, - "extensions": 6.61e-06, - "fellows": 7.59e-08, - "fragments": 6.61e-06, - "fraser": 6.61e-06, - "fuels": 6.61e-06, - "geological": 6.61e-06, - "globally": 6.61e-06, - "grams": 6.61e-06, - "guru": 6.61e-06, - "hacked": 6.61e-06, - "hans": 2.95e-07, - "hatch": 6.61e-06, - "hindi": 6.61e-06, - "historians": 7.24e-08, - "hm": 6.61e-06, - "hormone": 6.61e-06, - "inadequate": 6.61e-06, - "indianapolis": 6.61e-06, - "infinity": 6.61e-06, - "intentionally": 6.61e-06, - "joints": 6.61e-06, - "kilometers": 6.61e-06, - "labs": 3.8e-07, - "lace": 6.61e-06, - "libya": 6.61e-06, - "losers": 2.14e-07, - "louder": 6.61e-06, - "maiden": 6.61e-06, - "marching": 6.61e-06, - "marketplace": 6.61e-06, - "membrane": 6.61e-06, - "messing": 6.61e-06, - "metallic": 6.61e-06, - "methodology": 6.61e-06, - "modifications": 6.61e-06, - "monitors": 1.74e-07, - "murderer": 6.61e-06, - "nap": 6.61e-06, - "nickel": 6.61e-06, - "niece": 6.61e-06, - "nm": 6.61e-06, - "nominations": 6.61e-06, - "numbered": 6.61e-06, - "offerings": 6.61e-06, - "overlooked": 6.61e-06, - "pardon": 6.61e-06, - "partnerships": 8.91e-08, - "persuade": 6.61e-06, - "pier": 6.61e-06, - "poured": 6.61e-06, - "practiced": 6.61e-06, - "predecessor": 6.61e-06, - "premise": 6.61e-06, - "quiz": 6.61e-06, - "rainfall": 6.61e-06, - "recipients": 2.19e-07, - "reckless": 6.61e-06, - "redemption": 6.61e-06, - "relates": 6.61e-06, - "relied": 6.61e-06, - "remedy": 6.61e-06, - "replay": 6.61e-06, - "revision": 6.61e-06, - "rooted": 6.61e-06, - "scent": 6.61e-06, - "slate": 6.61e-06, - "spells": 6.92e-08, - "stimulus": 6.61e-06, - "strengthening": 6.61e-06, - "structured": 6.61e-06, - "sunrise": 6.61e-06, - "surge": 6.61e-06, - "tagged": 6.61e-06, - "tags": 5.75e-08, - "tapes": 5.13e-08, - "tee": 6.61e-06, - "testified": 6.61e-06, - "timothy": 6.61e-06, - "token": 6.61e-06, - "tornado": 6.61e-06, - "tracy": 6.61e-06, - "tunes": 6.61e-06, - "tunnels": 1.29e-07, - "twilight": 6.61e-06, - "unprecedented": 6.61e-06, - "vagina": 6.61e-06, - "verses": 6.61e-06, - "vocabulary": 6.61e-06, - "wellington": 6.61e-06, - "whoa": 6.61e-06, - "willingness": 6.61e-06, - "woody": 6.61e-06, - "worthless": 6.61e-06, - "yacht": 6.61e-06, - "aberdeen": 6.46e-06, - "absorb": 6.46e-06, - "accompany": 6.46e-06, - "accord": 6.46e-06, - "advancement": 6.46e-06, - "albany": 6.46e-06, - "algorithms": 6.46e-06, - "alt": 6.46e-06, - "alternatively": 6.46e-06, - "anglo": 6.46e-06, - "archer": 6.46e-06, - "asap": 6.46e-06, - "assurance": 6.46e-06, - "barber": 6.46e-06, - "bash": 6.46e-06, - "battalion": 6.46e-06, - "bidding": 6.46e-06, - "boycott": 6.46e-06, - "bricks": 6.46e-06, - "bruno": 6.46e-06, - "buddies": 6.46e-06, - "bulgarian": 6.46e-06, - "carpenter": 6.46e-06, - "ceased": 6.46e-06, - "chester": 6.46e-06, - "coding": 6.46e-06, - "competitor": 6.46e-06, - "creators": 3.47e-07, - "cuisine": 6.46e-06, - "detained": 6.46e-06, - "dioxide": 6.46e-06, - "dolls": 3.98e-07, - "doom": 6.46e-06, - "dubbed": 6.46e-06, - "ea": 6.46e-06, - "eclipse": 6.46e-06, - "eighteen": 6.46e-06, - "eleanor": 6.46e-06, - "elephants": 3.55e-07, - "enjoyment": 6.46e-06, - "exhaust": 6.46e-06, - "expired": 6.46e-06, - "flee": 6.46e-06, - "forbes": 6.46e-06, - "forwards": 6.17e-08, - "fries": 6.46e-06, - "fundraising": 6.46e-06, - "gal": 6.46e-06, - "glimpse": 6.46e-06, - "hahaha": 6.46e-06, - "hawk": 6.46e-06, - "healthier": 6.46e-06, - "homemade": 6.46e-06, - "honorable": 6.46e-06, - "infectious": 6.46e-06, - "inferior": 6.46e-06, - "injustice": 6.46e-06, - "inquiries": 6.46e-06, - "insulin": 6.46e-06, - "interpret": 6.46e-06, - "intro": 6.46e-06, - "jackets": 7.08e-08, - "jill": 6.46e-06, - "kindle": 6.46e-06, - "lid": 6.46e-06, - "lindsay": 6.46e-06, - "logs": 6.46e-06, - "manor": 6.46e-06, - "masterpiece": 6.46e-06, - "melody": 6.46e-06, - "memo": 6.46e-06, - "mic": 6.46e-06, - "mirrors": 2.4e-07, - "myanmar": 6.46e-06, - "narrator": 6.46e-06, - "nate": 6.46e-06, - "nets": 8.71e-08, - "nsw": 6.46e-06, - "obesity": 6.46e-06, - "partisan": 6.46e-06, - "planting": 6.46e-06, - "pony": 6.46e-06, - "posed": 6.46e-06, - "possessions": 6.46e-06, - "privileged": 6.46e-06, - "prolonged": 6.46e-06, - "promo": 6.46e-06, - "protestant": 6.46e-06, - "pumping": 6.46e-06, - "pupil": 6.46e-06, - "qb": 6.46e-06, - "recruited": 6.46e-06, - "reliance": 6.46e-06, - "relies": 6.46e-06, - "reluctant": 6.46e-06, - "relying": 6.46e-06, - "respiratory": 6.46e-06, - "retention": 6.46e-06, - "rewarded": 6.46e-06, - "ribbon": 6.46e-06, - "rochester": 6.46e-06, - "rodgers": 5.62e-08, - "roommate": 6.46e-06, - "rotten": 6.46e-06, - "sands": 6.46e-06, - "schedules": 6.46e-06, - "selecting": 6.46e-06, - "shah": 6.46e-06, - "shawn": 6.46e-06, - "shotgun": 6.46e-06, - "singers": 1e-06, - "snapped": 6.46e-06, - "sofa": 6.46e-06, - "solomon": 6.46e-06, - "southampton": 6.46e-06, - "spoil": 6.46e-06, - "spoiled": 6.46e-06, - "stephanie": 6.46e-06, - "submarine": 6.46e-06, - "suburb": 6.46e-06, - "surgeons": 3.72e-07, - "sympathetic": 6.46e-06, - "taxation": 6.46e-06, - "temper": 6.46e-06, - "undergo": 6.46e-06, - "venus": 6.46e-06, - "weighed": 6.46e-06, - "wu": 6.46e-06, - "acquiring": 6.31e-06, - "additions": 6.31e-06, - "admitting": 6.31e-06, - "afl": 6.31e-06, - "aligned": 6.31e-06, - "allan": 6.31e-06, - "altar": 6.31e-06, - "amp": 6.31e-06, - "arrows": 1.95e-07, - "atlas": 6.31e-06, - "austrian": 6.31e-06, - "automation": 6.31e-06, - "awe": 6.31e-06, - "balancing": 6.31e-06, - "banning": 6.31e-06, - "bishops": 1.02e-06, - "boeing": 6.31e-06, - "broncos": 6.31e-06, - "builders": 2.82e-07, - "burton": 6.31e-06, - "caesar": 6.31e-06, - "canadas": 1.41e-07, - "cans": 1.02e-07, - "carroll": 6.31e-06, - "cavalry": 6.31e-06, - "clara": 6.31e-06, - "coffin": 6.31e-06, - "collectors": 1.12e-06, - "colorful": 6.31e-06, - "combo": 6.31e-06, - "communism": 6.31e-06, - "conductor": 6.31e-06, - "confront": 6.31e-06, - "constraints": 6.31e-06, - "crow": 6.31e-06, - "dads": 4.27e-06, - "davidson": 6.31e-06, - "decisive": 6.31e-06, - "decorative": 6.31e-06, - "definitive": 6.31e-06, - "disclosed": 6.31e-06, - "displaced": 6.31e-06, - "disturbed": 6.31e-06, - "diy": 6.31e-06, - "doin": 6.31e-06, - "epidemic": 6.31e-06, - "eternity": 6.31e-06, - "eugene": 6.31e-06, - "evolve": 6.31e-06, - "explode": 6.31e-06, - "extraction": 6.31e-06, - "fatty": 6.31e-06, - "filthy": 6.31e-06, - "fletcher": 6.31e-06, - "flush": 6.31e-06, - "font": 6.31e-06, - "freestyle": 6.31e-06, - "glue": 6.31e-06, - "grandpa": 6.31e-06, - "hairy": 6.31e-06, - "homicide": 6.31e-06, - "horns": 1e-07, - "ie": 6.31e-06, - "inheritance": 6.31e-06, - "introduces": 6.31e-06, - "ironic": 6.31e-06, - "lacked": 6.31e-06, - "lin": 6.31e-06, - "luggage": 6.31e-06, - "lyon": 6.31e-06, - "madame": 6.31e-06, - "maggie": 6.31e-06, - "marion": 6.31e-06, - "mel": 6.31e-06, - "melting": 6.31e-06, - "messaging": 6.31e-06, - "microwave": 6.31e-06, - "midwest": 6.31e-06, - "minimize": 6.31e-06, - "modi": 6.31e-06, - "morocco": 6.31e-06, - "natalie": 6.31e-06, - "ops": 3.55e-07, - "organisms": 1e-07, - "originated": 6.31e-06, - "ounce": 6.31e-06, - "pablo": 6.31e-06, - "peel": 6.31e-06, - "pensions": 6.31e-06, - "performer": 6.31e-06, - "picnic": 6.31e-06, - "pins": 6.31e-06, - "practitioners": 6.61e-08, - "predominantly": 6.31e-06, - "primitive": 6.31e-06, - "providence": 6.31e-06, - "psychic": 6.31e-06, - "psychologist": 6.31e-06, - "puppet": 6.31e-06, - "reproductive": 6.31e-06, - "requesting": 6.31e-06, - "responds": 6.31e-06, - "restrict": 6.31e-06, - "retiring": 6.31e-06, - "retrieved": 6.31e-06, - "ribs": 6.31e-06, - "righteous": 6.31e-06, - "rivalry": 6.31e-06, - "rosa": 6.31e-06, - "royalty": 6.31e-06, - "sandra": 6.31e-06, - "sausage": 6.31e-06, - "seize": 6.31e-06, - "sim": 6.31e-06, - "skeleton": 6.31e-06, - "spicy": 6.31e-06, - "sticky": 6.31e-06, - "sting": 6.31e-06, - "sufficiently": 6.31e-06, - "thankfully": 6.31e-06, - "thrones": 6.31e-06, - "tick": 6.31e-06, - "traced": 6.31e-06, - "trent": 6.31e-06, - "trusts": 4.47e-07, - "tutorial": 6.31e-06, - "twentieth": 6.31e-06, - "unpleasant": 6.31e-06, - "unrelated": 6.31e-06, - "ussr": 6.31e-06, - "vacant": 6.31e-06, - "vent": 6.31e-06, - "vicinity": 6.31e-06, - "wan": 6.31e-06, - "wandering": 6.31e-06, - "wardrobe": 6.31e-06, - "warmth": 6.31e-06, - "weaknesses": 6.31e-06, - "wines": 2e-07, - "wired": 6.31e-06, - "amendments": 1.82e-07, - "analyses": 6.17e-06, - "asses": 6.17e-06, - "assessments": 6.17e-06, - "assisting": 6.17e-06, - "australias": 7.24e-08, - "axe": 6.17e-06, - "backgrounds": 6.17e-06, - "baldwin": 6.17e-06, - "belle": 6.17e-06, - "bf": 6.17e-06, - "bites": 6.17e-06, - "bombers": 1.7e-07, - "bonuses": 6.17e-06, - "bred": 6.17e-06, - "brexit": 6.17e-06, - "bubbles": 6.17e-06, - "buddha": 6.17e-06, - "bulletin": 6.17e-06, - "capitalist": 6.17e-06, - "cautious": 6.17e-06, - "clinics": 1.86e-07, - "commitments": 6.17e-06, - "companions": 1.15e-07, - "comparisons": 6.17e-06, - "constable": 6.17e-06, - "cooperate": 6.17e-06, - "coordinated": 6.17e-06, - "copied": 6.17e-06, - "counselor": 6.17e-06, - "cp": 6.17e-06, - "curb": 6.17e-06, - "dances": 5.37e-08, - "darren": 6.17e-06, - "deeds": 6.17e-06, - "destined": 6.17e-06, - "detached": 6.17e-06, - "devils": 3.98e-06, - "discounts": 6.17e-06, - "distribute": 6.17e-06, - "dong": 6.17e-06, - "edgar": 6.17e-06, - "efficiently": 6.17e-06, - "eliminating": 6.17e-06, - "elliott": 6.17e-06, - "encouragement": 6.17e-06, - "enforced": 6.17e-06, - "evan": 6.17e-06, - "explosives": 6.17e-06, - "faction": 6.17e-06, - "fascist": 6.17e-06, - "feathers": 6.17e-06, - "fixtures": 6.17e-06, - "flooded": 6.17e-06, - "fuller": 6.17e-06, - "gamble": 6.17e-06, - "goalkeeper": 6.17e-06, - "grandchildren": 6.17e-06, - "gt": 6.17e-06, - "guardians": 3.89e-07, - "harmless": 6.17e-06, - "hearings": 6.17e-06, - "hesitate": 6.17e-06, - "hid": 6.17e-06, - "hips": 6.17e-06, - "hopeful": 6.17e-06, - "horny": 6.17e-06, - "hungarian": 6.17e-06, - "hygiene": 6.17e-06, - "iceland": 6.17e-06, - "imaginary": 6.17e-06, - "imprisoned": 6.17e-06, - "inconsistent": 6.17e-06, - "int": 6.76e-08, - "iso": 6.17e-06, - "jared": 6.17e-06, - "johnston": 6.17e-06, - "judy": 6.17e-06, - "kindergarten": 6.17e-06, - "latino": 6.17e-06, - "lopez": 6.17e-06, - "loudly": 6.17e-06, - "mechanic": 6.17e-06, - "megan": 6.17e-06, - "mls": 6.17e-06, - "modify": 6.17e-06, - "neglect": 6.17e-06, - "northwestern": 6.17e-06, - "nz": 6.17e-06, - "offenders": 1.38e-07, - "oppression": 6.17e-06, - "patriotic": 6.17e-06, - "phillip": 6.17e-06, - "pictured": 6.17e-06, - "pitcher": 6.17e-06, - "playground": 6.17e-06, - "populated": 6.17e-06, - "poses": 6.17e-06, - "positioned": 6.17e-06, - "prejudice": 6.17e-06, - "preston": 6.17e-06, - "probable": 6.17e-06, - "probation": 6.17e-06, - "projection": 6.17e-06, - "promotes": 6.17e-06, - "pumped": 6.17e-06, - "rails": 1.23e-07, - "raven": 6.17e-06, - "receptor": 6.17e-06, - "rehab": 6.17e-06, - "remake": 6.17e-06, - "rendering": 6.17e-06, - "reproduction": 6.17e-06, - "res": 5.62e-08, - "reservations": 6.17e-06, - "rey": 6.17e-06, - "rhode": 6.17e-06, - "shrimp": 6.17e-06, - "similarities": 6.17e-06, - "skins": 3.8e-07, - "slopes": 6.17e-06, - "spelled": 6.17e-06, - "spokesman": 6.17e-06, - "springfield": 6.17e-06, - "stained": 6.17e-06, - "stall": 6.17e-06, - "starving": 6.17e-06, - "strap": 6.17e-06, - "subjective": 6.17e-06, - "surround": 6.17e-06, - "surroundings": 6.17e-06, - "sweeping": 6.17e-06, - "swinging": 6.17e-06, - "tearing": 6.17e-06, - "traumatic": 6.17e-06, - "trillion": 6.17e-06, - "tucker": 6.17e-06, - "vatican": 6.17e-06, - "vendor": 6.17e-06, - "watts": 1.45e-07, - "yr": 6.17e-06, - "abbott": 6.03e-06, - "aboriginal": 6.03e-06, - "academics": 6.03e-06, - "adopting": 6.03e-06, - "alignment": 6.03e-06, - "allergic": 6.03e-06, - "allison": 6.03e-06, - "amended": 6.03e-06, - "apparatus": 6.03e-06, - "assumes": 6.03e-06, - "avengers": 6.03e-06, - "backpack": 6.03e-06, - "balcony": 6.03e-06, - "banker": 6.03e-06, - "bliss": 6.03e-06, - "bodily": 6.03e-06, - "buffer": 6.03e-06, - "calgary": 6.03e-06, - "chapman": 6.03e-06, - "chopped": 6.03e-06, - "collaborative": 6.03e-06, - "commenced": 6.03e-06, - "compensate": 6.03e-06, - "compromised": 6.03e-06, - "constructive": 6.03e-06, - "conventions": 1.29e-07, - "cosmic": 6.03e-06, - "crystals": 1.58e-07, - "daisy": 6.03e-06, - "definite": 6.03e-06, - "demonstrations": 6.03e-06, - "departed": 6.03e-06, - "depths": 6.03e-06, - "developmental": 6.03e-06, - "disco": 6.03e-06, - "distraction": 6.03e-06, - "dom": 6.03e-06, - "dorothy": 6.03e-06, - "doses": 6.03e-06, - "drawer": 6.03e-06, - "drones": 9.55e-08, - "durham": 6.03e-06, - "ecological": 6.03e-06, - "ecosystem": 6.03e-06, - "elvis": 6.03e-06, - "euros": 1.29e-07, - "exclude": 6.03e-06, - "exempt": 6.03e-06, - "exposing": 6.03e-06, - "faint": 6.03e-06, - "fertility": 6.03e-06, - "ff": 6.03e-06, - "fines": 5.13e-08, - "finn": 6.03e-06, - "floods": 7.08e-08, - "flynn": 6.03e-06, - "foam": 6.03e-06, - "folded": 6.03e-06, - "foremost": 6.03e-06, - "forge": 6.03e-06, - "greenhouse": 6.03e-06, - "hears": 6.03e-06, - "hierarchy": 6.03e-06, - "ideals": 6.03e-06, - "identities": 6.03e-06, - "installations": 6.03e-06, - "invalid": 6.03e-06, - "jade": 6.03e-06, - "jointly": 6.03e-06, - "jung": 6.03e-06, - "kits": 1.7e-07, - "lancaster": 6.03e-06, - "lightweight": 6.03e-06, - "lowering": 6.03e-06, - "mb": 6.03e-06, - "melted": 6.03e-06, - "metabolism": 6.03e-06, - "neglected": 6.03e-06, - "negotiated": 6.03e-06, - "negotiating": 6.03e-06, - "negotiation": 6.03e-06, - "newborn": 6.03e-06, - "newport": 6.03e-06, - "nodes": 6.03e-06, - "notch": 6.03e-06, - "omega": 6.03e-06, - "onions": 5.62e-08, - "packers": 1.02e-07, - "paired": 6.03e-06, - "parental": 6.03e-06, - "parody": 6.03e-06, - "parole": 6.03e-06, - "participant": 6.03e-06, - "penguin": 6.03e-06, - "phantom": 6.03e-06, - "photoshop": 6.03e-06, - "pitt": 6.03e-06, - "precedent": 6.03e-06, - "prevalent": 6.03e-06, - "prom": 6.03e-06, - "promotions": 6.03e-06, - "python": 6.03e-06, - "qatar": 6.03e-06, - "questionable": 6.03e-06, - "queue": 6.03e-06, - "quo": 6.03e-06, - "regrets": 6.03e-06, - "render": 6.03e-06, - "respondents": 7.24e-08, - "retaining": 6.03e-06, - "romania": 6.03e-06, - "sailor": 6.03e-06, - "seventy": 6.03e-06, - "shouted": 6.03e-06, - "simmons": 6.03e-06, - "sims": 7.76e-08, - "slides": 6.03e-06, - "sociology": 6.03e-06, - "somerset": 6.03e-06, - "soo": 6.03e-06, - "specify": 6.03e-06, - "splitting": 6.03e-06, - "stab": 6.03e-06, - "supermarket": 6.03e-06, - "sweater": 6.03e-06, - "tenant": 6.03e-06, - "tensions": 6.03e-06, - "thomson": 6.03e-06, - "tortured": 6.03e-06, - "traction": 6.03e-06, - "tractor": 6.03e-06, - "trout": 6.03e-06, - "turnover": 6.03e-06, - "uganda": 6.03e-06, - "universitys": 6.03e-06, - "unwanted": 6.03e-06, - "upgrades": 6.03e-06, - "valentines": 1.23e-06, - "variant": 6.03e-06, - "vegetarian": 6.03e-06, - "vernon": 6.03e-06, - "visibility": 6.03e-06, - "warnings": 6.03e-06, - "wherein": 6.03e-06, - "whiskey": 6.03e-06, - "worms": 1.2e-07, - "wyoming": 6.03e-06, - "aaa": 5.89e-06, - "abundant": 5.89e-06, - "africans": 5.89e-06, - "alexandria": 5.89e-06, - "algebra": 5.89e-06, - "analytics": 5.89e-06, - "antenna": 5.89e-06, - "attribute": 5.89e-06, - "audition": 5.89e-06, - "bankers": 1.95e-07, - "biting": 5.89e-06, - "branding": 5.89e-06, - "bravo": 5.89e-06, - "busted": 5.89e-06, - "cardinals": 2.09e-07, - "carrie": 5.89e-06, - "certificates": 5.89e-06, - "charleston": 5.89e-06, - "chatting": 5.89e-06, - "chop": 5.89e-06, - "circuits": 2.63e-07, - "clifford": 5.89e-06, - "cody": 5.89e-06, - "coleman": 5.89e-06, - "commanded": 5.89e-06, - "commissioners": 7.59e-07, - "communicating": 5.89e-06, - "comparative": 5.89e-06, - "complement": 5.89e-06, - "connor": 5.89e-06, - "conquer": 5.89e-06, - "conquest": 5.89e-06, - "contested": 5.89e-06, - "continuity": 5.89e-06, - "cornwall": 5.89e-06, - "crawl": 5.89e-06, - "credible": 5.89e-06, - "cursed": 5.89e-06, - "db": 5.89e-06, - "deepest": 5.89e-06, - "defects": 5.89e-06, - "delightful": 5.89e-06, - "depicted": 5.89e-06, - "determines": 5.89e-06, - "digit": 5.89e-06, - "dinosaur": 5.89e-06, - "doomed": 5.89e-06, - "drainage": 5.89e-06, - "drowning": 5.89e-06, - "embarrassment": 5.89e-06, - "equations": 5.89e-06, - "evolving": 5.89e-06, - "exploded": 5.89e-06, - "fairness": 5.89e-06, - "favored": 5.89e-06, - "felony": 5.89e-06, - "flats": 5.89e-06, - "flint": 5.89e-06, - "floral": 5.89e-06, - "fortress": 5.89e-06, - "fulfilled": 5.89e-06, - "fundamentally": 5.89e-06, - "grabbing": 5.89e-06, - "guts": 5.89e-06, - "hairs": 3.24e-07, - "hammond": 5.89e-06, - "handing": 5.89e-06, - "hearted": 5.89e-06, - "herb": 5.89e-06, - "herd": 5.89e-06, - "ideological": 5.89e-06, - "immortal": 5.89e-06, - "incumbent": 5.89e-06, - "insider": 5.89e-06, - "insufficient": 5.89e-06, - "interval": 5.89e-06, - "jelly": 5.89e-06, - "kai": 5.89e-06, - "kanye": 5.89e-06, - "kidnapping": 5.89e-06, - "kilometres": 5.89e-06, - "ky": 5.89e-06, - "lenses": 5.89e-06, - "lick": 5.89e-06, - "literal": 5.89e-06, - "lunar": 5.89e-06, - "maternal": 5.89e-06, - "matthews": 6.61e-07, - "maxwell": 5.89e-06, - "mccain": 5.89e-06, - "mcdonald": 5.89e-06, - "medicines": 2e-07, - "memoir": 5.89e-06, - "messi": 5.89e-06, - "miguel": 5.89e-06, - "modification": 5.89e-06, - "mold": 5.89e-06, - "nailed": 5.89e-06, - "napoleon": 5.89e-06, - "neighbouring": 5.89e-06, - "nigel": 5.89e-06, - "objection": 5.89e-06, - "obliged": 5.89e-06, - "observers": 1.51e-07, - "occurrence": 5.89e-06, - "offspring": 5.89e-06, - "ou": 5.89e-06, - "outrageous": 5.89e-06, - "packet": 5.89e-06, - "pads": 5.89e-06, - "patents": 5.89e-06, - "pathway": 5.89e-06, - "peach": 5.89e-06, - "persuaded": 5.89e-06, - "plots": 6.61e-08, - "polo": 5.89e-06, - "presenter": 5.89e-06, - "proclaimed": 5.89e-06, - "prohibition": 5.89e-06, - "prop": 5.89e-06, - "recognizing": 5.89e-06, - "recommends": 5.89e-06, - "registry": 5.89e-06, - "relieve": 5.89e-06, - "remarkably": 5.89e-06, - "repaired": 5.89e-06, - "rotating": 5.89e-06, - "sanchez": 5.89e-06, - "sandwiches": 5.89e-06, - "satellites": 1.48e-07, - "scar": 5.89e-06, - "scouts": 1.86e-07, - "scripture": 5.89e-06, - "seating": 5.89e-06, - "seminar": 5.89e-06, - "shores": 1.17e-07, - "silva": 5.89e-06, - "simplicity": 5.89e-06, - "slightest": 5.89e-06, - "softly": 5.89e-06, - "specimens": 5.89e-06, - "starbucks": 9.77e-08, - "stereo": 5.89e-06, - "supplements": 5.89e-06, - "surrey": 5.89e-06, - "sustainability": 5.89e-06, - "symphony": 5.89e-06, - "tesla": 5.89e-06, - "textbook": 5.89e-06, - "theological": 5.89e-06, - "trader": 5.89e-06, - "undercover": 5.89e-06, - "valentine": 5.89e-06, - "vegetation": 5.89e-06, - "vein": 5.89e-06, - "velvet": 5.89e-06, - "vendors": 1.35e-07, - "viewer": 5.89e-06, - "webb": 5.89e-06, - "welcoming": 5.89e-06, - "whales": 2.19e-07, - "wheeler": 5.89e-06, - "worm": 5.89e-06, - "zombies": 9.77e-08, - "accountant": 5.75e-06, - "activate": 5.75e-06, - "admissions": 5.75e-06, - "alison": 5.75e-06, - "amusing": 5.75e-06, - "arabs": 5.75e-06, - "beams": 6.92e-08, - "behold": 5.75e-06, - "betrayed": 5.75e-06, - "biased": 5.75e-06, - "billionaire": 5.75e-06, - "bloggers": 1.41e-07, - "brewing": 5.75e-06, - "brooke": 5.75e-06, - "bypass": 5.75e-06, - "calculation": 5.75e-06, - "cancellation": 5.75e-06, - "cane": 5.75e-06, - "capturing": 5.75e-06, - "catalyst": 5.75e-06, - "cedar": 5.75e-06, - "celebrates": 5.75e-06, - "claude": 5.75e-06, - "concentrations": 5.75e-06, - "concludes": 5.75e-06, - "cons": 1.29e-07, - "corpse": 5.75e-06, - "crab": 5.75e-06, - "cruelty": 5.75e-06, - "darwin": 5.75e-06, - "dawson": 5.75e-06, - "decorations": 5.75e-06, - "dementia": 5.75e-06, - "demonstrating": 5.75e-06, - "designation": 5.75e-06, - "dev": 5.75e-06, - "dice": 5.75e-06, - "diploma": 5.75e-06, - "disasters": 5.75e-06, - "discharged": 5.75e-06, - "dispatch": 5.75e-06, - "disputed": 5.75e-06, - "dots": 1.17e-07, - "ds": 9.77e-07, - "duchess": 5.75e-06, - "dunno": 5.75e-06, - "economists": 7.41e-08, - "eds": 7.41e-07, - "elders": 1.32e-07, - "exceeded": 5.75e-06, - "explanations": 5.75e-06, - "extinction": 5.75e-06, - "factions": 8.13e-08, - "fb": 5.75e-06, - "foil": 5.75e-06, - "formats": 5.75e-06, - "freddie": 5.75e-06, - "gardner": 5.75e-06, - "geology": 5.75e-06, - "gerald": 5.75e-06, - "graduating": 5.75e-06, - "gram": 5.75e-06, - "greene": 5.75e-06, - "heath": 5.75e-06, - "heavenly": 5.75e-06, - "hormones": 5.75e-06, - "horrific": 5.75e-06, - "hugo": 5.75e-06, - "infants": 2.57e-07, - "insect": 5.75e-06, - "iris": 5.75e-06, - "issuing": 5.75e-06, - "lifts": 5.75e-06, - "locking": 5.75e-06, - "logging": 5.75e-06, - "lookin": 5.75e-06, - "maurice": 5.75e-06, - "medications": 5.75e-06, - "mentality": 5.75e-06, - "metre": 5.75e-06, - "minecraft": 5.75e-06, - "miracles": 5.75e-06, - "nascar": 5.75e-06, - "neural": 5.75e-06, - "newsletter": 5.75e-06, - "nineteenth": 5.75e-06, - "nitrogen": 5.75e-06, - "norms": 6.03e-08, - "oceans": 8.91e-07, - "ooh": 5.75e-06, - "patricia": 5.75e-06, - "paulo": 5.75e-06, - "payroll": 5.75e-06, - "phenomenal": 5.75e-06, - "philippine": 5.75e-06, - "photographic": 5.75e-06, - "pinch": 5.75e-06, - "ping": 5.75e-06, - "polished": 5.75e-06, - "pots": 1.2e-07, - "predictable": 5.75e-06, - "privileges": 5.75e-06, - "prix": 5.75e-06, - "professionally": 5.75e-06, - "protesting": 5.75e-06, - "protocols": 5.75e-06, - "pushes": 5.75e-06, - "queer": 5.75e-06, - "rebounds": 5.75e-06, - "reckon": 5.75e-06, - "recycling": 5.75e-06, - "restriction": 5.75e-06, - "resumed": 5.75e-06, - "resurrection": 5.75e-06, - "rover": 5.75e-06, - "scars": 5.01e-08, - "scholarships": 5.75e-06, - "shannon": 5.75e-06, - "shelves": 5.75e-06, - "shipment": 5.75e-06, - "slut": 5.75e-06, - "sparks": 5.5e-08, - "spatial": 5.75e-06, - "stainless": 5.75e-06, - "statutory": 5.75e-06, - "stellar": 5.75e-06, - "stockholm": 5.75e-06, - "stripes": 5.75e-06, - "stubborn": 5.75e-06, - "summoned": 5.75e-06, - "sussex": 5.75e-06, - "swords": 1.07e-07, - "syrup": 5.75e-06, - "tackles": 5.75e-06, - "tamil": 5.75e-06, - "tapping": 5.75e-06, - "teachings": 5.75e-06, - "tightly": 5.75e-06, - "tina": 5.75e-06, - "tones": 5.75e-06, - "tories": 5.75e-06, - "transplant": 5.75e-06, - "traps": 2.95e-08, - "tu": 5.75e-06, - "turf": 5.75e-06, - "twitch": 5.75e-06, - "unlocked": 5.75e-06, - "unusually": 5.75e-06, - "unveiled": 5.75e-06, - "username": 5.75e-06, - "vaccines": 5.75e-06, - "veins": 5.75e-06, - "ventures": 5.37e-08, - "vip": 5.75e-06, - "visions": 1.35e-07, - "voiced": 5.75e-06, - "volcano": 5.75e-06, - "warmer": 5.75e-06, - "webster": 5.75e-06, - "weddings": 5.01e-08, - "yelled": 5.75e-06, - "zach": 5.75e-06, - "accelerated": 5.62e-06, - "accomplishments": 5.62e-06, - "advertised": 5.62e-06, - "advertisements": 5.62e-06, - "ark": 5.62e-06, - "armour": 5.62e-06, - "assaulted": 5.62e-06, - "atoms": 6.76e-08, - "attach": 5.62e-06, - "awaiting": 5.62e-06, - "bayern": 5.62e-06, - "bind": 5.62e-06, - "blessings": 5.62e-06, - "blu": 5.62e-06, - "bluetooth": 5.62e-06, - "boiling": 5.62e-06, - "borrowing": 5.62e-06, - "bowls": 8.51e-08, - "bradford": 5.62e-06, - "bum": 5.62e-06, - "butcher": 5.62e-06, - "cmon": 1.1e-06, - "chandler": 5.62e-06, - "cheapest": 5.62e-06, - "chloe": 5.62e-06, - "communists": 5.62e-06, - "compares": 5.62e-06, - "conception": 5.62e-06, - "congo": 5.62e-06, - "counterparts": 5.62e-06, - "cue": 5.62e-06, - "deed": 5.62e-06, - "disciplinary": 5.62e-06, - "dreamed": 5.62e-06, - "dwarf": 5.62e-06, - "eighty": 5.62e-06, - "elena": 5.62e-06, - "eligibility": 5.62e-06, - "embraced": 5.62e-06, - "enacted": 5.62e-06, - "endorsement": 5.62e-06, - "enlisted": 5.62e-06, - "eyebrows": 5.62e-06, - "fcc": 5.62e-06, - "finite": 5.62e-06, - "flagship": 5.62e-06, - "forensic": 5.62e-06, - "forthcoming": 5.62e-06, - "gallon": 5.62e-06, - "gems": 5.62e-06, - "glowing": 5.62e-06, - "glucose": 5.62e-06, - "gore": 5.62e-06, - "govt": 1.02e-06, - "gown": 5.62e-06, - "greedy": 5.62e-06, - "halo": 5.62e-06, - "hilton": 5.62e-06, - "ideally": 5.62e-06, - "identifies": 5.62e-06, - "improves": 5.62e-06, - "infamous": 5.62e-06, - "inspirational": 5.62e-06, - "internally": 5.62e-06, - "kashmir": 5.62e-06, - "knox": 5.62e-06, - "lateral": 5.62e-06, - "leigh": 5.62e-06, - "lent": 5.62e-06, - "lib": 5.62e-06, - "lifelong": 5.62e-06, - "limestone": 5.62e-06, - "liner": 5.62e-06, - "majors": 3.16e-07, - "marched": 5.62e-06, - "marrying": 5.62e-06, - "maths": 5.62e-06, - "memes": 5.75e-08, - "mentioning": 5.62e-06, - "merge": 5.62e-06, - "mesh": 5.62e-06, - "migrant": 5.62e-06, - "mohammed": 5.62e-06, - "monitored": 5.62e-06, - "moron": 5.62e-06, - "mortar": 5.62e-06, - "myths": 5.62e-06, - "naive": 5.62e-06, - "nat": 5.62e-06, - "noises": 5.62e-06, - "norton": 5.62e-06, - "noticeable": 5.62e-06, - "nt": 3.8e-06, - "observing": 5.62e-06, - "omar": 5.62e-06, - "opted": 5.62e-06, - "palestinians": 5.62e-06, - "paula": 5.62e-06, - "paypal": 5.62e-06, - "pedro": 5.62e-06, - "pens": 2.14e-07, - "perfume": 5.62e-06, - "pitching": 5.62e-06, - "pleasing": 5.62e-06, - "premiums": 5.62e-06, - "prestige": 5.62e-06, - "protects": 5.62e-06, - "pyramid": 5.62e-06, - "realizes": 5.62e-06, - "relevance": 5.62e-06, - "remotely": 5.62e-06, - "resorts": 3.16e-07, - "retailer": 5.62e-06, - "rica": 5.62e-06, - "rigid": 5.62e-06, - "rita": 5.62e-06, - "rm": 5.62e-06, - "rom": 5.62e-06, - "ronaldo": 5.62e-06, - "sailors": 2.88e-07, - "samantha": 5.62e-06, - "sampling": 5.62e-06, - "screenshot": 5.62e-06, - "selfie": 5.62e-06, - "settlers": 5.62e-06, - "shattered": 5.62e-06, - "signatures": 5.62e-06, - "spacecraft": 5.62e-06, - "specification": 5.62e-06, - "spiders": 3.31e-07, - "splendid": 5.62e-06, - "strokes": 5.62e-06, - "successes": 5.62e-06, - "summers": 1.74e-06, - "sundays": 2.51e-06, - "supplying": 5.62e-06, - "telescope": 5.62e-06, - "temp": 5.62e-06, - "tended": 5.62e-06, - "terminated": 5.62e-06, - "textile": 5.62e-06, - "thatd": 9.77e-08, - "thickness": 5.62e-06, - "threatens": 5.62e-06, - "tossed": 5.62e-06, - "tray": 5.62e-06, - "uae": 5.62e-06, - "ucla": 5.62e-06, - "unreasonable": 5.62e-06, - "unsure": 5.62e-06, - "upwards": 5.62e-06, - "utilize": 5.62e-06, - "valuation": 5.62e-06, - "veterinary": 5.62e-06, - "villagers": 5.62e-06, - "violate": 5.62e-06, - "vivid": 5.62e-06, - "waving": 5.62e-06, - "accusing": 5.5e-06, - "aided": 5.5e-06, - "alexis": 5.5e-06, - "allocation": 5.5e-06, - "amusement": 5.5e-06, - "antibiotics": 5.5e-06, - "anticipation": 5.5e-06, - "anyones": 2.82e-07, - "appropriately": 5.5e-06, - "arrests": 5.5e-06, - "arrogant": 5.5e-06, - "assessing": 5.5e-06, - "authorization": 5.5e-06, - "auxiliary": 5.5e-06, - "baggage": 5.5e-06, - "beacon": 5.5e-06, - "bella": 5.5e-06, - "belts": 9.77e-08, - "bounty": 5.5e-06, - "boxer": 5.5e-06, - "briefing": 5.5e-06, - "brook": 5.5e-06, - "budgets": 8.32e-08, - "canterbury": 5.5e-06, - "cartoons": 5.5e-06, - "ceramic": 5.5e-06, - "cereal": 5.5e-06, - "challenger": 5.5e-06, - "chased": 5.5e-06, - "clergy": 5.5e-06, - "coats": 5.5e-06, - "cola": 5.5e-06, - "coma": 5.5e-06, - "comfortably": 5.5e-06, - "commanders": 5.25e-07, - "compass": 5.5e-06, - "considerations": 5.5e-06, - "consultants": 8.13e-08, - "contempt": 5.5e-06, - "contributes": 5.5e-06, - "credentials": 5.5e-06, - "croatia": 5.5e-06, - "cured": 5.5e-06, - "descended": 5.5e-06, - "disappearance": 5.5e-06, - "doyle": 5.5e-06, - "drowned": 5.5e-06, - "drying": 5.5e-06, - "dwelling": 5.5e-06, - "dwight": 5.5e-06, - "ecology": 5.5e-06, - "einstein": 5.5e-06, - "eli": 5.5e-06, - "elliot": 5.5e-06, - "emergence": 5.5e-06, - "enclosed": 5.5e-06, - "endurance": 5.5e-06, - "equals": 5.5e-06, - "erotic": 5.5e-06, - "evacuation": 5.5e-06, - "exceptionally": 5.5e-06, - "exchanged": 5.5e-06, - "expenditure": 5.5e-06, - "falcon": 5.5e-06, - "favors": 5.5e-06, - "fernando": 5.5e-06, - "folder": 5.5e-06, - "frequencies": 5.5e-06, - "frightened": 5.5e-06, - "gavin": 5.5e-06, - "groove": 5.5e-06, - "hbo": 5.5e-06, - "hedge": 5.5e-06, - "homosexuality": 5.5e-06, - "icons": 8.13e-08, - "ingredient": 5.5e-06, - "initiate": 5.5e-06, - "inserted": 5.5e-06, - "interventions": 5.5e-06, - "invaded": 5.5e-06, - "ironically": 5.5e-06, - "istanbul": 5.5e-06, - "jacobs": 8.51e-07, - "jealousy": 5.5e-06, - "jewellery": 5.5e-06, - "joker": 5.5e-06, - "jonas": 5.5e-06, - "kingston": 5.5e-06, - "kisses": 5.5e-06, - "laden": 5.5e-06, - "learns": 5.5e-06, - "limbs": 5.5e-06, - "lionel": 5.5e-06, - "liu": 5.5e-06, - "mccarthy": 5.5e-06, - "medicaid": 5.5e-06, - "meta": 5.5e-06, - "mil": 5.5e-06, - "mit": 5.5e-06, - "newark": 5.5e-06, - "nod": 5.5e-06, - "notebook": 5.5e-06, - "offline": 5.5e-06, - "offs": 1.2e-07, - "overweight": 5.5e-06, - "palette": 5.5e-06, - "payne": 5.5e-06, - "phenomena": 5.5e-06, - "pneumonia": 5.5e-06, - "policeman": 5.5e-06, - "postponed": 5.5e-06, - "potent": 5.5e-06, - "preceding": 5.5e-06, - "predators": 9.12e-08, - "psycho": 5.5e-06, - "rainy": 5.5e-06, - "rams": 2.24e-07, - "ranged": 5.5e-06, - "recognizes": 5.5e-06, - "renovation": 5.5e-06, - "reverend": 5.5e-06, - "rewarding": 5.5e-06, - "rust": 5.5e-06, - "salty": 5.5e-06, - "scots": 5.01e-08, - "scrutiny": 5.5e-06, - "seizure": 5.5e-06, - "serum": 5.5e-06, - "singular": 5.5e-06, - "skate": 5.5e-06, - "sofia": 5.5e-06, - "storyline": 5.5e-06, - "stray": 5.5e-06, - "stud": 5.5e-06, - "subsidies": 5.5e-06, - "sunk": 5.5e-06, - "supper": 5.5e-06, - "sweetheart": 5.5e-06, - "systemic": 5.5e-06, - "tempo": 5.5e-06, - "thereof": 5.5e-06, - "thirsty": 5.5e-06, - "torch": 5.5e-06, - "transferring": 5.5e-06, - "tumblr": 5.5e-06, - "turbo": 5.5e-06, - "unchanged": 5.5e-06, - "understandable": 5.5e-06, - "upright": 5.5e-06, - "uprising": 5.5e-06, - "vain": 5.5e-06, - "vanity": 5.5e-06, - "violin": 5.5e-06, - "wh": 5.5e-06, - "whereby": 5.5e-06, - "whisper": 5.5e-06, - "worthwhile": 5.5e-06, - "xx": 5.5e-06, - "acceleration": 5.37e-06, - "aerospace": 5.37e-06, - "ak": 5.37e-06, - "aluminium": 5.37e-06, - "analog": 5.37e-06, - "analytical": 5.37e-06, - "anticipate": 5.37e-06, - "arcade": 5.37e-06, - "arlington": 5.37e-06, - "arose": 5.37e-06, - "asthma": 5.37e-06, - "aurora": 5.37e-06, - "averaging": 5.37e-06, - "bacterial": 5.37e-06, - "bankrupt": 5.37e-06, - "blink": 5.37e-06, - "brighter": 5.37e-06, - "carey": 5.37e-06, - "castro": 5.37e-06, - "ceremonies": 5.37e-06, - "chang": 5.37e-06, - "childish": 5.37e-06, - "chili": 5.37e-06, - "clayton": 5.37e-06, - "clearer": 5.37e-06, - "coil": 5.37e-06, - "combines": 5.37e-06, - "commodities": 5.37e-06, - "confessed": 5.37e-06, - "constituents": 5.37e-06, - "contention": 5.37e-06, - "converting": 5.37e-06, - "covenant": 5.37e-06, - "crafts": 9.55e-08, - "das": 3.63e-07, - "denies": 5.37e-06, - "devotion": 5.37e-06, - "dilemma": 5.37e-06, - "dis": 7.94e-08, - "discoveries": 5.37e-06, - "disgrace": 5.37e-06, - "dixon": 5.37e-06, - "emirates": 5.37e-06, - "emmy": 5.37e-06, - "employing": 5.37e-06, - "employs": 5.37e-06, - "escaping": 5.37e-06, - "ethiopia": 5.37e-06, - "ethnicity": 5.37e-06, - "eventual": 5.37e-06, - "excel": 5.37e-06, - "exercising": 5.37e-06, - "faded": 5.37e-06, - "firstly": 5.37e-06, - "flavour": 5.37e-06, - "flex": 5.37e-06, - "fluids": 5.37e-06, - "franco": 5.37e-06, - "gangs": 5.25e-07, - "gases": 5.37e-06, - "genus": 5.37e-06, - "gloria": 5.37e-06, - "glove": 5.37e-06, - "grabs": 5.37e-06, - "grammy": 5.37e-06, - "grapes": 5.37e-06, - "greed": 5.37e-06, - "greet": 5.37e-06, - "hank": 5.37e-06, - "hose": 5.37e-06, - "hq": 5.37e-06, - "impacted": 5.37e-06, - "imposing": 5.37e-06, - "inflammation": 5.37e-06, - "innovations": 5.37e-06, - "ko": 5.37e-06, - "lambert": 5.37e-06, - "lamps": 5.37e-06, - "lava": 5.37e-06, - "ln": 5.37e-06, - "longtime": 5.37e-06, - "madonna": 5.37e-06, - "magnet": 5.37e-06, - "mann": 5.37e-06, - "metaphor": 5.37e-06, - "millionaire": 5.37e-06, - "mn": 5.37e-06, - "motives": 5.37e-06, - "myers": 5.37e-06, - "mysteries": 5.37e-06, - "negro": 5.37e-06, - "nightmares": 5.37e-06, - "notify": 5.37e-06, - "null": 5.37e-06, - "ole": 5.37e-06, - "oops": 5.37e-06, - "oriental": 5.37e-06, - "owing": 5.37e-06, - "pact": 5.37e-06, - "paramount": 5.37e-06, - "paranoid": 5.37e-06, - "patriot": 5.37e-06, - "patron": 5.37e-06, - "pearson": 5.37e-06, - "popcorn": 5.37e-06, - "positioning": 5.37e-06, - "preserving": 5.37e-06, - "proxy": 5.37e-06, - "quantitative": 5.37e-06, - "regain": 5.37e-06, - "reminding": 5.37e-06, - "renew": 5.37e-06, - "resemble": 5.37e-06, - "retarded": 5.37e-06, - "retro": 5.37e-06, - "revolt": 5.37e-06, - "rightly": 5.37e-06, - "roasted": 5.37e-06, - "ruining": 5.37e-06, - "rumor": 5.37e-06, - "sacked": 5.37e-06, - "saddle": 5.37e-06, - "schmidt": 5.37e-06, - "schooling": 5.37e-06, - "sherlock": 5.37e-06, - "shirley": 5.37e-06, - "shrine": 5.37e-06, - "shrink": 5.37e-06, - "sniper": 5.37e-06, - "solitary": 5.37e-06, - "sorrow": 5.37e-06, - "squares": 2.19e-07, - "starters": 9.12e-08, - "stoke": 5.37e-06, - "sutton": 5.37e-06, - "talkin": 5.37e-06, - "taller": 5.37e-06, - "termination": 5.37e-06, - "thames": 5.37e-06, - "thigh": 5.37e-06, - "thrive": 5.37e-06, - "tr": 5.37e-06, - "troll": 5.37e-06, - "ty": 5.37e-06, - "uncovered": 5.37e-06, - "undertake": 5.37e-06, - "unpaid": 5.37e-06, - "unsuccessful": 5.37e-06, - "usc": 5.37e-06, - "vest": 5.37e-06, - "vine": 5.37e-06, - "violating": 5.37e-06, - "viruses": 5.37e-06, - "warns": 5.37e-06, - "warranty": 5.37e-06, - "weakened": 5.37e-06, - "windsor": 5.37e-06, - "xxx": 5.37e-06, - "yen": 5.37e-06, - "zimbabwe": 5.37e-06, - "admired": 5.25e-06, - "airways": 5.25e-06, - "aisle": 5.25e-06, - "almighty": 5.25e-06, - "amino": 5.25e-06, - "ants": 1.1e-07, - "apparel": 5.25e-06, - "arbitration": 5.25e-06, - "arising": 5.25e-06, - "artifacts": 5.25e-06, - "ashton": 5.25e-06, - "atom": 5.25e-06, - "auburn": 5.25e-06, - "awakening": 5.25e-06, - "bedrooms": 5.25e-06, - "bilateral": 5.25e-06, - "bleed": 5.25e-06, - "brace": 5.25e-06, - "burgers": 8.71e-08, - "caption": 5.25e-06, - "captures": 5.25e-06, - "choke": 5.25e-06, - "cholesterol": 5.25e-06, - "classy": 5.25e-06, - "clicks": 5.25e-06, - "clyde": 5.25e-06, - "compelled": 5.25e-06, - "concealed": 5.25e-06, - "condemn": 5.25e-06, - "confrontation": 5.25e-06, - "constitutes": 5.25e-06, - "contributor": 5.25e-06, - "cpu": 5.25e-06, - "damon": 5.25e-06, - "deluxe": 5.25e-06, - "devastated": 5.25e-06, - "dinosaurs": 7.76e-08, - "disguise": 5.25e-06, - "dismissal": 5.25e-06, - "domains": 7.08e-08, - "downstairs": 5.25e-06, - "empathy": 5.25e-06, - "ensemble": 5.25e-06, - "ernest": 5.25e-06, - "feasible": 5.25e-06, - "flawed": 5.25e-06, - "forged": 5.25e-06, - "generals": 2.75e-06, - "genres": 2.29e-07, - "gettin": 5.25e-06, - "gi": 5.25e-06, - "goats": 4.27e-07, - "grease": 5.25e-06, - "greeks": 5.25e-06, - "guessed": 5.25e-06, - "haiti": 5.25e-06, - "hallway": 5.25e-06, - "harley": 5.25e-06, - "heavens": 1.15e-06, - "helicopters": 1.38e-07, - "homosexual": 5.25e-06, - "hulk": 5.25e-06, - "hydraulic": 5.25e-06, - "impulse": 5.25e-06, - "incapable": 5.25e-06, - "indies": 1.48e-08, - "inflammatory": 5.25e-06, - "insanity": 5.25e-06, - "insecure": 5.25e-06, - "institutes": 1.1e-06, - "integrate": 5.25e-06, - "intentional": 5.25e-06, - "ish": 5.25e-06, - "jeep": 5.25e-06, - "knot": 5.25e-06, - "laboratories": 5.25e-06, - "landscapes": 5.25e-06, - "lebanese": 5.25e-06, - "lecturer": 5.25e-06, - "lust": 5.25e-06, - "marilyn": 5.25e-06, - "markers": 5.25e-06, - "mayo": 5.25e-06, - "michel": 5.25e-06, - "microphone": 5.25e-06, - "miniature": 5.25e-06, - "monks": 3.72e-07, - "motto": 5.25e-06, - "mouths": 7.08e-08, - "murdering": 5.25e-06, - "nationality": 5.25e-06, - "natives": 5.75e-08, - "nottingham": 5.25e-06, - "nw": 5.25e-06, - "obstacle": 5.25e-06, - "occupational": 5.25e-06, - "og": 5.25e-06, - "onset": 5.25e-06, - "owes": 5.25e-06, - "pe": 5.25e-06, - "perceive": 5.25e-06, - "persecution": 5.25e-06, - "petrol": 5.25e-06, - "philosopher": 5.25e-06, - "photographed": 5.25e-06, - "pits": 6.46e-08, - "pixel": 5.25e-06, - "plantation": 5.25e-06, - "presently": 5.25e-06, - "props": 1.74e-08, - "prose": 5.25e-06, - "prostitution": 5.25e-06, - "quoting": 5.25e-06, - "radioactive": 5.25e-06, - "raining": 5.25e-06, - "rang": 5.25e-06, - "razor": 5.25e-06, - "realization": 5.25e-06, - "reconciliation": 5.25e-06, - "removes": 5.25e-06, - "restoring": 5.25e-06, - "reunited": 5.25e-06, - "rocking": 5.25e-06, - "rory": 5.25e-06, - "royals": 8.91e-08, - "rug": 5.25e-06, - "sacrifices": 5.25e-06, - "salvador": 5.25e-06, - "scanning": 5.25e-06, - "screamed": 5.25e-06, - "shaping": 5.25e-06, - "slogan": 5.25e-06, - "specimen": 5.25e-06, - "sponsorship": 5.25e-06, - "steals": 5.25e-06, - "steer": 5.25e-06, - "stefan": 5.25e-06, - "strains": 5.25e-06, - "strawberry": 5.25e-06, - "strive": 5.25e-06, - "sunglasses": 5.25e-06, - "surfing": 5.25e-06, - "tate": 5.25e-06, - "temptation": 5.25e-06, - "thrill": 5.25e-06, - "tile": 5.25e-06, - "tonnes": 5.25e-06, - "tow": 5.25e-06, - "trainers": 2.09e-07, - "translations": 5.25e-06, - "trusting": 5.25e-06, - "turtles": 1.62e-07, - "uc": 5.25e-06, - "unarmed": 5.25e-06, - "undertaking": 5.25e-06, - "unfinished": 5.25e-06, - "unhealthy": 5.25e-06, - "unlawful": 5.25e-06, - "unpopular": 5.25e-06, - "ut": 5.25e-06, - "vanessa": 5.25e-06, - "vanished": 5.25e-06, - "verb": 5.25e-06, - "versa": 5.25e-06, - "viii": 5.25e-06, - "volatile": 5.25e-06, - "voluntarily": 5.25e-06, - "vp": 5.25e-06, - "whitney": 5.25e-06, - "withdrew": 5.25e-06, - "abnormal": 5.13e-06, - "accredited": 5.13e-06, - "accuse": 5.13e-06, - "ada": 5.13e-06, - "adjusting": 5.13e-06, - "ample": 5.13e-06, - "analogy": 5.13e-06, - "analyzing": 5.13e-06, - "apex": 5.13e-06, - "apocalypse": 5.13e-06, - "appliances": 5.13e-06, - "assholes": 8.32e-08, - "babys": 1.55e-07, - "backward": 5.13e-06, - "badass": 5.13e-06, - "barred": 5.13e-06, - "beck": 5.13e-06, - "bingo": 5.13e-06, - "blogging": 5.13e-06, - "boiler": 5.13e-06, - "bon": 5.13e-06, - "boulder": 5.13e-06, - "brock": 5.13e-06, - "calf": 5.13e-06, - "cambodia": 5.13e-06, - "capt": 5.13e-06, - "cb": 5.13e-06, - "clarence": 5.13e-06, - "coating": 5.13e-06, - "commentators": 5.13e-06, - "consolidation": 5.13e-06, - "continuation": 5.13e-06, - "convictions": 5.13e-06, - "convoy": 5.13e-06, - "cork": 5.13e-06, - "cosmetic": 5.13e-06, - "cubic": 5.13e-06, - "cyprus": 5.13e-06, - "declares": 5.13e-06, - "defeats": 5.13e-06, - "defenses": 2.29e-07, - "dept": 5.13e-06, - "deputies": 5.13e-06, - "descendants": 5.13e-06, - "detector": 5.13e-06, - "digest": 5.13e-06, - "diplomacy": 5.13e-06, - "directive": 5.13e-06, - "disadvantage": 5.13e-06, - "disruption": 5.13e-06, - "distract": 5.13e-06, - "downward": 5.13e-06, - "ebook": 5.13e-06, - "eco": 5.13e-06, - "emphasized": 5.13e-06, - "energetic": 5.13e-06, - "engineered": 5.13e-06, - "fest": 5.13e-06, - "fills": 5.13e-06, - "friction": 5.13e-06, - "fulfilling": 5.13e-06, - "funk": 5.13e-06, - "greatness": 5.13e-06, - "grilled": 5.13e-06, - "guiding": 5.13e-06, - "hackers": 1.58e-07, - "hazardous": 5.13e-06, - "hooker": 5.13e-06, - "hopeless": 5.13e-06, - "hourly": 5.13e-06, - "illustrate": 5.13e-06, - "imo": 5.13e-06, - "impressions": 5.13e-06, - "indirectly": 5.13e-06, - "induction": 5.13e-06, - "infrared": 5.13e-06, - "insists": 5.13e-06, - "instability": 5.13e-06, - "installing": 5.13e-06, - "invites": 5.13e-06, - "irene": 5.13e-06, - "irving": 5.13e-06, - "ja": 5.13e-06, - "jacques": 5.13e-06, - "jong": 5.13e-06, - "klein": 5.13e-06, - "limitation": 5.13e-06, - "linguistic": 5.13e-06, - "listeners": 1.23e-07, - "litter": 5.13e-06, - "ls": 3.63e-07, - "lump": 5.13e-06, - "macro": 5.13e-06, - "mag": 5.13e-06, - "magistrate": 5.13e-06, - "marginal": 5.13e-06, - "masculine": 5.13e-06, - "milestone": 5.13e-06, - "mug": 5.13e-06, - "municipality": 5.13e-06, - "mushrooms": 5.13e-06, - "nd": 5.13e-06, - "ned": 5.13e-06, - "neurons": 5.13e-06, - "ninety": 5.13e-06, - "nutrients": 5.13e-06, - "observatory": 5.13e-06, - "oi": 5.13e-06, - "openings": 5.13e-06, - "outdoors": 5.13e-06, - "pcs": 4.27e-07, - "pedestrian": 5.13e-06, - "penetration": 5.13e-06, - "pod": 2e-08, - "posing": 5.13e-06, - "predator": 5.13e-06, - "preferably": 5.13e-06, - "programmed": 5.13e-06, - "projections": 5.13e-06, - "prophecy": 5.13e-06, - "proudly": 5.13e-06, - "rebuilding": 5.13e-06, - "recorder": 5.13e-06, - "recurring": 5.13e-06, - "relaxation": 5.13e-06, - "resembles": 5.13e-06, - "respectable": 5.13e-06, - "respectful": 5.13e-06, - "richer": 5.13e-06, - "rn": 5.13e-06, - "rodriguez": 5.13e-06, - "roma": 5.13e-06, - "romeo": 5.13e-06, - "routinely": 5.13e-06, - "rubbing": 5.13e-06, - "sailed": 5.13e-06, - "salute": 5.13e-06, - "scripts": 9.55e-08, - "scum": 5.13e-06, - "serbia": 5.13e-06, - "severity": 5.13e-06, - "shady": 5.13e-06, - "shutting": 5.13e-06, - "sketches": 5.13e-06, - "slack": 5.13e-06, - "sleeps": 5.13e-06, - "slick": 5.13e-06, - "slowed": 5.13e-06, - "slowing": 5.13e-06, - "sm": 5.13e-06, - "spontaneous": 5.13e-06, - "starred": 5.13e-06, - "stationed": 5.13e-06, - "sticker": 5.13e-06, - "stove": 5.13e-06, - "submissions": 5.13e-06, - "tactic": 5.13e-06, - "tb": 5.13e-06, - "template": 5.13e-06, - "teresa": 5.13e-06, - "texting": 5.13e-06, - "theorem": 5.13e-06, - "theresa": 5.13e-06, - "tiles": 5.13e-06, - "tn": 5.13e-06, - "tore": 5.13e-06, - "tract": 5.13e-06, - "treaties": 5.13e-06, - "tri": 5.13e-06, - "tribune": 5.13e-06, - "undergoing": 5.13e-06, - "unexpectedly": 5.13e-06, - "upward": 5.13e-06, - "val": 5.13e-06, - "vera": 5.13e-06, - "vista": 5.13e-06, - "vogue": 5.13e-06, - "volcanic": 5.13e-06, - "wagner": 5.13e-06, - "wildly": 5.13e-06, - "winding": 5.13e-06, - "acclaimed": 5.01e-06, - "accumulated": 5.01e-06, - "adore": 5.01e-06, - "afc": 5.01e-06, - "akin": 5.01e-06, - "alphabet": 5.01e-06, - "announcements": 5.01e-06, - "appoint": 5.01e-06, - "apprentice": 5.01e-06, - "auckland": 5.01e-06, - "bananas": 6.31e-08, - "baseline": 5.01e-06, - "beasts": 2.82e-07, - "benedict": 5.01e-06, - "beware": 5.01e-06, - "bieber": 5.01e-06, - "bikini": 5.01e-06, - "bisexual": 5.01e-06, - "boulevard": 5.01e-06, - "bracelet": 5.01e-06, - "capsule": 5.01e-06, - "captive": 5.01e-06, - "carr": 5.01e-06, - "cha": 5.01e-06, - "christie": 5.01e-06, - "chronicle": 5.01e-06, - "cinnamon": 5.01e-06, - "comprehend": 5.01e-06, - "compulsory": 5.01e-06, - "confederate": 5.01e-06, - "contaminated": 5.01e-06, - "contamination": 5.01e-06, - "contests": 7.94e-08, - "coping": 5.01e-06, - "corey": 5.01e-06, - "counterpart": 5.01e-06, - "creed": 5.01e-06, - "crisp": 5.01e-06, - "crust": 5.01e-06, - "cutter": 5.01e-06, - "daring": 5.01e-06, - "delegate": 5.01e-06, - "deploy": 5.01e-06, - "dietary": 5.01e-06, - "dissertation": 5.01e-06, - "dividends": 5.01e-06, - "domination": 5.01e-06, - "downloading": 5.01e-06, - "ec": 5.01e-06, - "emission": 5.01e-06, - "ethan": 5.01e-06, - "evaluating": 5.01e-06, - "everton": 5.01e-06, - "expelled": 5.01e-06, - "fin": 5.01e-06, - "fined": 5.01e-06, - "flora": 5.01e-06, - "folding": 5.01e-06, - "fracture": 5.01e-06, - "frances": 2.24e-06, - "functionality": 5.01e-06, - "gamma": 5.01e-06, - "gays": 1.26e-07, - "gaze": 5.01e-06, - "genome": 5.01e-06, - "grains": 5.01e-06, - "grape": 5.01e-06, - "gravel": 5.01e-06, - "haircut": 5.01e-06, - "haired": 5.01e-06, - "hangs": 5.01e-06, - "hastings": 1.1e-08, - "highland": 5.01e-06, - "histories": 5.01e-06, - "honoured": 5.01e-06, - "hugs": 5.01e-06, - "hustle": 5.01e-06, - "hyde": 5.01e-06, - "ia": 5.01e-06, - "idle": 5.01e-06, - "indictment": 5.01e-06, - "insulting": 5.01e-06, - "irregular": 5.01e-06, - "juicy": 5.01e-06, - "jumper": 5.01e-06, - "justices": 2.4e-07, - "kardashian": 5.01e-06, - "leaking": 5.01e-06, - "limb": 5.01e-06, - "mack": 5.01e-06, - "mammals": 5.01e-06, - "manually": 5.01e-06, - "meaningless": 5.01e-06, - "millennium": 5.01e-06, - "misunderstanding": 5.01e-06, - "modelling": 5.01e-06, - "modules": 6.61e-08, - "moody": 5.01e-06, - "nam": 5.01e-06, - "needles": 3.31e-08, - "noodles": 5.01e-06, - "offender": 5.01e-06, - "oracle": 5.01e-06, - "overlap": 5.01e-06, - "patrons": 7.76e-08, - "pd": 5.01e-06, - "peek": 5.01e-06, - "pentagon": 5.01e-06, - "peters": 3.02e-06, - "petersburg": 5.01e-06, - "porsche": 5.01e-06, - "pos": 7.59e-08, - "pottery": 5.01e-06, - "prairie": 5.01e-06, - "prank": 5.01e-06, - "premature": 5.01e-06, - "psychiatrist": 5.01e-06, - "quad": 5.01e-06, - "quartz": 5.01e-06, - "quitting": 5.01e-06, - "rb": 5.01e-06, - "residency": 5.01e-06, - "resolutions": 5.01e-06, - "responsive": 5.01e-06, - "richest": 5.01e-06, - "roar": 5.01e-06, - "ronnie": 5.01e-06, - "rooney": 5.01e-06, - "rot": 5.01e-06, - "rulers": 9.33e-08, - "salem": 5.01e-06, - "sank": 5.01e-06, - "santos": 4.9e-08, - "sb": 5.01e-06, - "seahawks": 5.01e-06, - "sidney": 5.01e-06, - "sleeves": 5.01e-06, - "songwriter": 5.01e-06, - "sophia": 5.01e-06, - "spear": 5.01e-06, - "spies": 5.01e-06, - "stain": 5.01e-06, - "stella": 5.01e-06, - "stimulation": 5.01e-06, - "stranded": 5.01e-06, - "stretches": 5.01e-06, - "stylish": 5.01e-06, - "subs": 1.32e-07, - "sur": 5.01e-06, - "tasted": 5.01e-06, - "technician": 5.01e-06, - "temples": 2.95e-07, - "tidal": 5.01e-06, - "transcript": 5.01e-06, - "treasures": 5.62e-08, - "trench": 5.01e-06, - "trousers": 5.01e-06, - "unwilling": 5.01e-06, - "uruguay": 5.01e-06, - "utc": 5.01e-06, - "validity": 5.01e-06, - "variants": 5.01e-06, - "varsity": 5.01e-06, - "verification": 5.01e-06, - "vows": 5.01e-06, - "vulnerability": 5.01e-06, - "wesley": 5.01e-06, - "whichever": 5.01e-06, - "whipped": 5.01e-06, - "whove": 5.01e-06, - "wo": 5.01e-06, - "wrath": 5.01e-06, - "yuan": 5.01e-06, - "zen": 5.01e-06, - "abuses": 4.9e-06, - "accomplishment": 4.9e-06, - "acquisitions": 4.9e-06, - "aide": 4.9e-06, - "allegiance": 4.9e-06, - "apt": 4.9e-06, - "attracting": 4.9e-06, - "avatar": 4.9e-06, - "bali": 4.9e-06, - "bangalore": 4.9e-06, - "bans": 7.08e-08, - "battling": 4.9e-06, - "beads": 4.9e-06, - "beverage": 4.9e-06, - "blaze": 4.9e-06, - "brendan": 4.9e-06, - "brent": 4.9e-06, - "broadband": 4.9e-06, - "bullied": 4.9e-06, - "bumper": 4.9e-06, - "butterflies": 4.9e-06, - "carlo": 4.9e-06, - "caves": 1.48e-07, - "chalk": 4.9e-06, - "chilling": 4.9e-06, - "coaster": 4.9e-06, - "coated": 4.9e-06, - "constituency": 4.9e-06, - "contingent": 4.9e-06, - "cornell": 4.9e-06, - "corrections": 4.9e-06, - "costing": 4.9e-06, - "councillor": 4.9e-06, - "cyclists": 6.92e-08, - "daniels": 1.23e-06, - "deprived": 4.9e-06, - "diplomat": 4.9e-06, - "disciplines": 4.9e-06, - "dos": 5.5e-07, - "drained": 4.9e-06, - "eldest": 4.9e-06, - "emphasize": 4.9e-06, - "entirety": 4.9e-06, - "everytime": 4.9e-06, - "exodus": 4.9e-06, - "explosions": 4.9e-06, - "fallout": 4.9e-06, - "feather": 4.9e-06, - "figuring": 4.9e-06, - "financed": 4.9e-06, - "firearm": 4.9e-06, - "fisheries": 4.9e-06, - "flock": 4.9e-06, - "flyers": 4.9e-06, - "footballer": 4.9e-06, - "footsteps": 4.9e-06, - "forestry": 4.9e-06, - "ghetto": 4.9e-06, - "grim": 4.9e-06, - "helpless": 4.9e-06, - "hemisphere": 4.9e-06, - "hides": 4.9e-06, - "housed": 4.9e-06, - "hs": 2.24e-07, - "hyper": 4.9e-06, - "inconvenience": 4.9e-06, - "incorporating": 4.9e-06, - "injected": 4.9e-06, - "insured": 4.9e-06, - "intends": 4.9e-06, - "intervals": 4.9e-06, - "intriguing": 4.9e-06, - "invasive": 4.9e-06, - "ipod": 4.9e-06, - "iq": 4.9e-06, - "irrigation": 4.9e-06, - "ix": 4.9e-06, - "killings": 4.9e-06, - "lastly": 4.9e-06, - "liberties": 4.9e-06, - "lipstick": 4.9e-06, - "macdonald": 4.9e-06, - "manipulate": 4.9e-06, - "mart": 4.9e-06, - "martinez": 4.9e-06, - "meyer": 4.9e-06, - "midlands": 4.9e-06, - "midway": 4.9e-06, - "minors": 7.76e-08, - "moist": 4.9e-06, - "monarch": 4.9e-06, - "monte": 4.9e-06, - "monuments": 5.62e-08, - "mortgages": 4.9e-06, - "mourning": 4.9e-06, - "mu": 4.9e-06, - "mustard": 4.9e-06, - "negatively": 4.9e-06, - "neighbour": 4.9e-06, - "nissan": 4.9e-06, - "norwich": 4.9e-06, - "nothin": 4.9e-06, - "objections": 4.9e-06, - "patterson": 4.9e-06, - "persona": 4.9e-06, - "plaque": 4.9e-06, - "pls": 4.9e-06, - "plymouth": 4.9e-06, - "poetic": 4.9e-06, - "preach": 4.9e-06, - "preaching": 4.9e-06, - "princes": 1.55e-06, - "proposing": 4.9e-06, - "punjab": 4.9e-06, - "purity": 4.9e-06, - "rabbi": 4.9e-06, - "ramsey": 4.9e-06, - "realism": 4.9e-06, - "receipts": 4.9e-06, - "retrieve": 4.9e-06, - "rhodes": 4.9e-06, - "ri": 4.9e-06, - "scheduling": 4.9e-06, - "scoop": 4.9e-06, - "scotch": 4.9e-06, - "scrub": 4.9e-06, - "separating": 4.9e-06, - "sewing": 4.9e-06, - "shale": 4.9e-06, - "shin": 4.9e-06, - "shootings": 4.9e-06, - "simplified": 4.9e-06, - "slipping": 4.9e-06, - "smartphones": 7.08e-08, - "sol": 4.9e-06, - "solicitor": 4.9e-06, - "sophomore": 4.9e-06, - "spreads": 4.9e-06, - "squadron": 4.9e-06, - "squirrel": 4.9e-06, - "stalin": 4.9e-06, - "stickers": 4.9e-06, - "stigma": 4.9e-06, - "strengthened": 4.9e-06, - "taco": 4.9e-06, - "takeover": 4.9e-06, - "taliban": 4.9e-06, - "tapped": 4.9e-06, - "thor": 4.9e-06, - "thumbs": 4.9e-06, - "tinder": 4.9e-06, - "titan": 4.9e-06, - "trait": 4.9e-06, - "traitor": 4.9e-06, - "troop": 4.9e-06, - "truths": 9.12e-08, - "underestimate": 4.9e-06, - "uni": 4.9e-06, - "updating": 4.9e-06, - "urges": 4.9e-06, - "wallpaper": 4.9e-06, - "watt": 4.9e-06, - "weighs": 4.9e-06, - "willis": 4.9e-06, - "willow": 4.9e-06, - "addict": 4.79e-06, - "ale": 4.79e-06, - "api": 4.79e-06, - "archaeological": 4.79e-06, - "assistants": 1.26e-07, - "az": 4.79e-06, - "banging": 4.79e-06, - "bathing": 4.79e-06, - "bending": 4.79e-06, - "bengal": 4.79e-06, - "betrayal": 4.79e-06, - "boiled": 4.79e-06, - "bonding": 4.79e-06, - "bounds": 4.79e-06, - "breeds": 7.08e-08, - "britains": 1.2e-07, - "byron": 4.79e-06, - "cardiovascular": 4.79e-06, - "chic": 4.79e-06, - "clone": 4.79e-06, - "clusters": 4.79e-06, - "communal": 4.79e-06, - "compliments": 4.79e-06, - "consortium": 4.79e-06, - "controllers": 1.55e-07, - "copying": 4.79e-06, - "countdown": 4.79e-06, - "courier": 4.79e-06, - "danced": 4.79e-06, - "dd": 4.79e-06, - "debating": 4.79e-06, - "decreasing": 4.79e-06, - "defect": 4.79e-06, - "disastrous": 4.79e-06, - "displaying": 4.79e-06, - "drown": 4.79e-06, - "drummer": 4.79e-06, - "durable": 4.79e-06, - "efficacy": 4.79e-06, - "erik": 4.79e-06, - "erin": 4.79e-06, - "exaggerated": 4.79e-06, - "exclusion": 4.79e-06, - "exhibitions": 8.91e-08, - "exploited": 4.79e-06, - "extracted": 4.79e-06, - "faults": 4.79e-06, - "filipino": 4.79e-06, - "flashing": 4.79e-06, - "freelance": 4.79e-06, - "gerard": 4.79e-06, - "gin": 4.79e-06, - "girlfriends": 1.91e-06, - "granting": 4.79e-06, - "greeting": 4.79e-06, - "hawaiian": 1.07e-08, - "headaches": 4.79e-06, - "honeymoon": 4.79e-06, - "ignition": 4.79e-06, - "impaired": 4.79e-06, - "incomes": 4.79e-06, - "investigative": 4.79e-06, - "ir": 4.79e-06, - "jewel": 4.79e-06, - "jupiter": 4.79e-06, - "leonardo": 4.79e-06, - "manifest": 4.79e-06, - "marx": 4.79e-06, - "mets": 1.29e-07, - "mourinho": 4.79e-06, - "mutually": 4.79e-06, - "navigate": 4.79e-06, - "oneill": 4.79e-06, - "obese": 4.79e-06, - "outreach": 4.79e-06, - "overlooking": 4.79e-06, - "pandemic": 4.79e-06, - "passages": 4.79e-06, - "perceptions": 4.79e-06, - "perimeter": 4.79e-06, - "pike": 4.79e-06, - "piper": 4.79e-06, - "preacher": 4.79e-06, - "preceded": 4.79e-06, - "procurement": 4.79e-06, - "protector": 4.79e-06, - "pulp": 4.79e-06, - "rabbits": 2.51e-07, - "ransom": 4.79e-06, - "recruits": 4.79e-06, - "reel": 4.79e-06, - "refs": 8.91e-08, - "reg": 4.79e-06, - "rehearsal": 4.79e-06, - "reinforce": 4.79e-06, - "restart": 4.79e-06, - "revive": 4.79e-06, - "rigorous": 4.79e-06, - "ringing": 4.79e-06, - "rna": 4.79e-06, - "scarf": 4.79e-06, - "scenery": 4.79e-06, - "selections": 4.79e-06, - "sensory": 4.79e-06, - "shelters": 8.32e-08, - "sidewalk": 4.79e-06, - "skeptical": 4.79e-06, - "skype": 4.79e-06, - "sleepy": 4.79e-06, - "smoothly": 4.79e-06, - "speeding": 4.79e-06, - "staple": 4.79e-06, - "steelers": 4.79e-06, - "stereotypes": 4.79e-06, - "stirring": 4.79e-06, - "strand": 4.79e-06, - "stunned": 4.79e-06, - "suppression": 4.79e-06, - "sushi": 4.79e-06, - "suspend": 4.79e-06, - "sw": 4.79e-06, - "swelling": 4.79e-06, - "tails": 4.79e-06, - "terminology": 4.79e-06, - "theatrical": 4.79e-06, - "timer": 4.79e-06, - "travellers": 2.14e-07, - "trustee": 4.79e-06, - "turnout": 4.79e-06, - "tying": 4.79e-06, - "unanimous": 4.79e-06, - "unpredictable": 4.79e-06, - "urging": 4.79e-06, - "validation": 4.79e-06, - "vengeance": 4.79e-06, - "verizon": 4.79e-06, - "visually": 4.79e-06, - "waits": 4.79e-06, - "wakes": 3.31e-08, - "weighted": 4.79e-06, - "wii": 4.79e-06, - "xl": 4.79e-06, - "zhang": 4.79e-06, - "acc": 4.68e-06, - "activism": 4.68e-06, - "advent": 4.68e-06, - "airborne": 4.68e-06, - "alas": 2.57e-08, - "astonishing": 4.68e-06, - "aww": 4.68e-06, - "bakery": 4.68e-06, - "barracks": 4.68e-06, - "bart": 4.68e-06, - "bathrooms": 4.68e-06, - "baths": 1.2e-07, - "believer": 4.68e-06, - "benefited": 4.68e-06, - "blankets": 4.68e-06, - "borne": 4.68e-06, - "brokers": 1.7e-07, - "bunker": 4.68e-06, - "caffeine": 4.68e-06, - "capped": 4.68e-06, - "carlton": 4.68e-06, - "chaotic": 4.68e-06, - "chargers": 4.68e-06, - "cite": 4.68e-06, - "classrooms": 4.68e-06, - "commentator": 4.68e-06, - "commercially": 4.68e-06, - "confirming": 4.68e-06, - "confuse": 4.68e-06, - "contributors": 4.68e-06, - "copenhagen": 4.68e-06, - "cosmetics": 4.68e-06, - "coward": 4.68e-06, - "dammit": 4.68e-06, - "dell": 4.68e-06, - "dent": 4.68e-06, - "depart": 4.68e-06, - "destroys": 4.68e-06, - "detectives": 2.69e-07, - "diminished": 4.68e-06, - "disappears": 4.68e-06, - "disappoint": 4.68e-06, - "dl": 4.68e-06, - "dolphin": 4.68e-06, - "dove": 4.68e-06, - "dumping": 4.68e-06, - "dunn": 4.68e-06, - "dusty": 4.68e-06, - "embracing": 4.68e-06, - "enduring": 4.68e-06, - "enlightenment": 4.68e-06, - "fibre": 4.68e-06, - "finnish": 4.68e-06, - "fixture": 4.68e-06, - "focal": 4.68e-06, - "friendships": 4.68e-06, - "frightening": 4.68e-06, - "fucker": 4.68e-06, - "gala": 4.68e-06, - "gardening": 4.68e-06, - "garrett": 4.68e-06, - "garrison": 4.68e-06, - "gears": 1.2e-07, - "generates": 4.68e-06, - "gladly": 4.68e-06, - "goodwill": 4.68e-06, - "govern": 4.68e-06, - "gradual": 4.68e-06, - "greetings": 4.68e-06, - "groceries": 4.68e-06, - "hacker": 4.68e-06, - "hal": 4.68e-06, - "harness": 4.68e-06, - "hashtag": 4.68e-06, - "hassan": 4.68e-06, - "heartbeat": 4.68e-06, - "heh": 4.68e-06, - "highlighting": 4.68e-06, - "holt": 4.68e-06, - "honourable": 4.68e-06, - "illnesses": 4.68e-06, - "imminent": 4.68e-06, - "inaugural": 4.68e-06, - "insulation": 4.68e-06, - "intern": 4.68e-06, - "irresponsible": 4.68e-06, - "jakarta": 4.68e-06, - "johannesburg": 4.68e-06, - "judith": 4.68e-06, - "kathy": 4.68e-06, - "lag": 4.68e-06, - "lays": 1.38e-07, - "lenders": 1.82e-07, - "lg": 4.68e-06, - "locality": 4.68e-06, - "lure": 4.68e-06, - "malicious": 4.68e-06, - "mattress": 4.68e-06, - "meredith": 4.68e-06, - "merged": 4.68e-06, - "merits": 4.68e-06, - "mist": 4.68e-06, - "mole": 4.68e-06, - "molecule": 4.68e-06, - "monarchy": 4.68e-06, - "mormon": 4.68e-06, - "muscular": 4.68e-06, - "neutrality": 4.68e-06, - "nikki": 4.68e-06, - "noisy": 4.68e-06, - "notre": 4.68e-06, - "orgasm": 4.68e-06, - "otto": 4.68e-06, - "panties": 4.68e-06, - "parcel": 4.68e-06, - "partition": 4.68e-06, - "peculiar": 4.68e-06, - "penguins": 1.38e-07, - "prayed": 4.68e-06, - "prefers": 4.68e-06, - "proposes": 4.68e-06, - "proprietary": 4.68e-06, - "prostate": 4.68e-06, - "protagonist": 4.68e-06, - "punching": 4.68e-06, - "puppies": 4.68e-06, - "rafael": 4.68e-06, - "randall": 4.68e-06, - "rant": 4.68e-06, - "rash": 4.68e-06, - "realities": 4.68e-06, - "recalls": 4.68e-06, - "receivers": 1.35e-07, - "referenced": 4.68e-06, - "reflections": 4.68e-06, - "rejects": 4.68e-06, - "replica": 4.68e-06, - "representations": 4.68e-06, - "reside": 4.68e-06, - "richie": 4.68e-06, - "ripe": 4.68e-06, - "rituals": 4.68e-06, - "riverside": 4.68e-06, - "roberto": 4.68e-06, - "rodney": 4.68e-06, - "rp": 4.68e-06, - "sac": 4.68e-06, - "sacrificed": 4.68e-06, - "sane": 4.68e-06, - "savior": 4.68e-06, - "scenic": 4.68e-06, - "sip": 4.68e-06, - "slapped": 4.68e-06, - "snail": 4.68e-06, - "somalia": 4.68e-06, - "spotify": 4.68e-06, - "spun": 4.68e-06, - "statistically": 4.68e-06, - "stimulate": 4.68e-06, - "strangely": 4.68e-06, - "surveyed": 4.68e-06, - "susceptible": 4.68e-06, - "theodore": 4.68e-06, - "thighs": 4.68e-06, - "tipped": 4.68e-06, - "toby": 4.68e-06, - "toilets": 4.68e-06, - "torres": 4.68e-06, - "translates": 4.68e-06, - "translator": 4.68e-06, - "transmit": 4.68e-06, - "trophies": 4.68e-06, - "ts": 1.74e-06, - "tuning": 4.68e-06, - "tutor": 4.68e-06, - "unsafe": 4.68e-06, - "verge": 4.68e-06, - "vibrant": 4.68e-06, - "wander": 4.68e-06, - "wong": 4.68e-06, - "xp": 4.68e-06, - "yeast": 4.68e-06, - "abdul": 4.57e-06, - "absorption": 4.57e-06, - "accelerate": 4.57e-06, - "acne": 4.57e-06, - "advertise": 4.57e-06, - "alzheimers": 3.16e-07, - "apologise": 4.57e-06, - "aspirations": 4.57e-06, - "assassin": 4.57e-06, - "assign": 4.57e-06, - "aston": 4.57e-06, - "audi": 4.57e-06, - "backlash": 4.57e-06, - "balloons": 4.57e-06, - "bbq": 4.57e-06, - "believers": 7.08e-08, - "blockchain": 4.57e-06, - "bonnie": 4.57e-06, - "brewery": 4.57e-06, - "bulb": 4.57e-06, - "cardboard": 4.57e-06, - "casually": 4.57e-06, - "chartered": 4.57e-06, - "chew": 4.57e-06, - "circumstance": 4.57e-06, - "cliffs": 2.24e-07, - "collateral": 4.57e-06, - "congestion": 4.57e-06, - "conquered": 4.57e-06, - "courtney": 4.57e-06, - "creditors": 4.57e-06, - "criticised": 4.57e-06, - "criticisms": 4.57e-06, - "crossover": 4.57e-06, - "crunch": 4.57e-06, - "curtains": 4.57e-06, - "daytime": 4.57e-06, - "debbie": 4.57e-06, - "deliveries": 4.57e-06, - "demise": 4.57e-06, - "dependence": 4.57e-06, - "deutsche": 4.57e-06, - "dictator": 4.57e-06, - "diets": 4.57e-06, - "differs": 4.57e-06, - "digits": 4.57e-06, - "dime": 4.57e-06, - "dire": 4.57e-06, - "disagreement": 4.57e-06, - "disciples": 4.57e-06, - "disregard": 4.57e-06, - "distributor": 4.57e-06, - "dominion": 4.57e-06, - "downhill": 4.57e-06, - "drafting": 4.57e-06, - "dreadful": 4.57e-06, - "drunken": 4.57e-06, - "earnest": 4.57e-06, - "eng": 4.57e-06, - "erase": 4.57e-06, - "evacuated": 4.57e-06, - "exp": 4.57e-06, - "extinct": 4.57e-06, - "forbid": 4.57e-06, - "forgiven": 4.57e-06, - "freezer": 4.57e-06, - "genetically": 4.57e-06, - "greeted": 4.57e-06, - "hare": 4.57e-06, - "healed": 4.57e-06, - "herein": 4.57e-06, - "hoffman": 4.57e-06, - "honorary": 4.57e-06, - "immature": 4.57e-06, - "imperative": 4.57e-06, - "ineffective": 4.57e-06, - "interacting": 4.57e-06, - "jerome": 4.57e-06, - "jess": 4.57e-06, - "julius": 4.57e-06, - "knit": 4.57e-06, - "kumar": 4.57e-06, - "kuwait": 4.57e-06, - "laps": 4.57e-06, - "lester": 4.57e-06, - "manly": 4.57e-06, - "marvin": 4.57e-06, - "maternity": 4.57e-06, - "meanings": 4.57e-06, - "misconduct": 4.57e-06, - "morale": 4.57e-06, - "mornings": 1.17e-06, - "mute": 4.57e-06, - "needless": 4.57e-06, - "nerd": 4.57e-06, - "nokia": 4.57e-06, - "nominees": 7.59e-08, - "notifications": 4.57e-06, - "novelty": 4.57e-06, - "optimism": 4.57e-06, - "optimization": 4.57e-06, - "outdated": 4.57e-06, - "oxide": 4.57e-06, - "paints": 4.57e-06, - "peasants": 8.13e-08, - "pence": 4.57e-06, - "peppers": 2.63e-07, - "percy": 4.57e-06, - "perez": 4.57e-06, - "peripheral": 4.57e-06, - "pinned": 4.57e-06, - "pint": 4.57e-06, - "pleaded": 4.57e-06, - "poop": 4.57e-06, - "pornography": 4.57e-06, - "ppl": 4.57e-06, - "prepares": 4.57e-06, - "prevalence": 4.57e-06, - "proceeding": 4.57e-06, - "pronounce": 4.57e-06, - "proportions": 4.57e-06, - "provisional": 4.57e-06, - "punches": 4.57e-06, - "ravens": 3.89e-07, - "reddit": 4.57e-06, - "remark": 4.57e-06, - "repay": 4.57e-06, - "roland": 4.57e-06, - "ropes": 2.4e-08, - "rouge": 4.57e-06, - "rumours": 4.57e-06, - "russias": 1.07e-07, - "santiago": 4.57e-06, - "saturated": 4.57e-06, - "scares": 4.57e-06, - "screened": 4.57e-06, - "shaved": 4.57e-06, - "shooters": 3.98e-07, - "shove": 4.57e-06, - "skipped": 4.57e-06, - "smashing": 4.57e-06, - "sms": 5.5e-08, - "snaps": 3.89e-08, - "soaked": 4.57e-06, - "softball": 4.57e-06, - "southeastern": 4.57e-06, - "spears": 4.57e-06, - "specials": 4.57e-06, - "spectators": 8.32e-08, - "spur": 4.57e-06, - "stevie": 4.57e-06, - "storytelling": 4.57e-06, - "stumbled": 4.57e-06, - "stupidity": 4.57e-06, - "suppress": 4.57e-06, - "sweating": 4.57e-06, - "swings": 4.57e-06, - "tangible": 4.57e-06, - "tara": 4.57e-06, - "textbooks": 4.57e-06, - "theo": 4.57e-06, - "tilt": 4.57e-06, - "tonights": 1.05e-07, - "tougher": 4.57e-06, - "trivial": 4.57e-06, - "turks": 7.24e-08, - "unofficial": 4.57e-06, - "veil": 4.57e-06, - "versatile": 4.57e-06, - "warsaw": 4.57e-06, - "wr": 4.57e-06, - "yi": 4.57e-06, - "zoe": 4.57e-06, - "acknowledging": 4.47e-06, - "alec": 4.47e-06, - "anthropology": 4.47e-06, - "artery": 4.47e-06, - "bamboo": 4.47e-06, - "basil": 4.47e-06, - "blackberry": 4.47e-06, - "bolton": 4.47e-06, - "bombay": 4.47e-06, - "booze": 4.47e-06, - "brennan": 4.47e-06, - "bronx": 4.47e-06, - "buzzing": 4.47e-06, - "caliber": 4.47e-06, - "cbd": 4.47e-06, - "cellphone": 4.47e-06, - "chord": 4.47e-06, - "clare": 4.47e-06, - "concessions": 4.47e-06, - "contracting": 4.47e-06, - "cooks": 9.33e-07, - "corporal": 4.47e-06, - "courtyard": 4.47e-06, - "crafted": 4.47e-06, - "crest": 4.47e-06, - "crowned": 4.47e-06, - "cynthia": 4.47e-06, - "dang": 4.47e-06, - "deception": 4.47e-06, - "decor": 4.47e-06, - "defeating": 4.47e-06, - "derivative": 4.47e-06, - "discomfort": 4.47e-06, - "dominican": 4.47e-06, - "drastically": 4.47e-06, - "driveway": 4.47e-06, - "duel": 4.47e-06, - "edwin": 4.47e-06, - "elf": 4.47e-06, - "ev": 4.47e-06, - "evenly": 4.47e-06, - "exemption": 4.47e-06, - "fashionable": 4.47e-06, - "fetch": 4.47e-06, - "fishermen": 4.47e-06, - "flipped": 4.47e-06, - "fo": 4.47e-06, - "formidable": 4.47e-06, - "frankie": 4.47e-06, - "furnished": 4.47e-06, - "fuzzy": 4.47e-06, - "gibbs": 4.47e-06, - "gmt": 4.47e-06, - "gothic": 4.47e-06, - "graffiti": 4.47e-06, - "grenade": 4.47e-06, - "guitars": 8.51e-08, - "hague": 4.47e-06, - "hamlet": 4.47e-06, - "hampton": 4.47e-06, - "hc": 4.47e-06, - "helm": 4.47e-06, - "herbs": 4.47e-06, - "herman": 4.47e-06, - "higgins": 4.47e-06, - "highlands": 4.47e-06, - "honours": 4.47e-06, - "hooks": 1.38e-07, - "hrs": 1.32e-07, - "html": 4.47e-06, - "hugely": 4.47e-06, - "hypocrisy": 4.47e-06, - "imagining": 4.47e-06, - "inaccurate": 4.47e-06, - "inception": 4.47e-06, - "incompetent": 4.47e-06, - "indefinitely": 4.47e-06, - "intervene": 4.47e-06, - "japans": 9.77e-08, - "jerseys": 7.24e-07, - "jessie": 4.47e-06, - "jp": 4.47e-06, - "jules": 4.47e-06, - "katy": 4.47e-06, - "kin": 4.47e-06, - "kirby": 4.47e-06, - "kobe": 4.47e-06, - "kris": 4.47e-06, - "laurie": 4.47e-06, - "legislators": 4.47e-06, - "lobster": 4.47e-06, - "logged": 4.47e-06, - "loneliness": 4.47e-06, - "loops": 4.47e-06, - "mae": 4.47e-06, - "malaria": 4.47e-06, - "manifesto": 4.47e-06, - "manuscripts": 4.47e-06, - "masked": 4.47e-06, - "maze": 4.47e-06, - "methodist": 4.47e-06, - "monaco": 4.47e-06, - "monastery": 4.47e-06, - "morals": 4.47e-06, - "mutations": 4.47e-06, - "naomi": 4.47e-06, - "narrowly": 4.47e-06, - "negligence": 4.47e-06, - "nexus": 4.47e-06, - "nicer": 4.47e-06, - "nightclub": 4.47e-06, - "numerical": 4.47e-06, - "obsolete": 4.47e-06, - "offences": 4.47e-06, - "optic": 4.47e-06, - "panda": 4.47e-06, - "panther": 4.47e-06, - "pauls": 4.07e-07, - "peas": 4.47e-06, - "perkins": 4.47e-06, - "posture": 4.47e-06, - "prague": 4.47e-06, - "preseason": 4.47e-06, - "qaeda": 4.47e-06, - "raging": 4.47e-06, - "rc": 4.47e-06, - "receptors": 4.47e-06, - "refresh": 4.47e-06, - "resonance": 4.47e-06, - "ruthless": 4.47e-06, - "salvage": 4.47e-06, - "samurai": 4.47e-06, - "sasha": 4.47e-06, - "satire": 4.47e-06, - "saul": 4.47e-06, - "seafood": 4.47e-06, - "shakes": 4.47e-06, - "signaling": 4.47e-06, - "simplest": 4.47e-06, - "slash": 4.47e-06, - "spaghetti": 4.47e-06, - "speedy": 4.47e-06, - "spying": 4.47e-06, - "staging": 4.47e-06, - "standpoint": 4.47e-06, - "statues": 1.32e-07, - "stein": 4.47e-06, - "sway": 4.47e-06, - "tasting": 4.47e-06, - "tempting": 4.47e-06, - "terminate": 4.47e-06, - "torque": 4.47e-06, - "towels": 4.47e-06, - "trailers": 1.05e-07, - "transforming": 4.47e-06, - "trinidad": 4.47e-06, - "uks": 1.41e-07, - "unconstitutional": 4.47e-06, - "undermine": 4.47e-06, - "underwent": 4.47e-06, - "vacancy": 4.47e-06, - "var": 4.47e-06, - "veto": 4.47e-06, - "villains": 1.58e-07, - "vocational": 4.47e-06, - "wenger": 4.47e-06, - "wickets": 4.47e-06, - "withstand": 4.47e-06, - "woodland": 4.47e-06, - "zinc": 4.47e-06, - "accustomed": 4.37e-06, - "adequately": 4.37e-06, - "ahmad": 4.37e-06, - "alicia": 4.37e-06, - "amazingly": 4.37e-06, - "ambitions": 4.37e-06, - "applicant": 4.37e-06, - "approximate": 4.37e-06, - "assemble": 4.37e-06, - "averages": 4.37e-06, - "baghdad": 4.37e-06, - "ballots": 4.37e-06, - "bam": 4.37e-06, - "bargaining": 4.37e-06, - "barrett": 4.37e-06, - "bates": 4.37e-06, - "baton": 4.37e-06, - "beginnings": 4.37e-06, - "births": 4.37e-06, - "breakup": 4.37e-06, - "brew": 4.37e-06, - "bulldogs": 4.37e-06, - "camel": 4.37e-06, - "canberra": 4.37e-06, - "catering": 4.37e-06, - "charger": 4.37e-06, - "checkout": 4.37e-06, - "chefs": 8.91e-07, - "chronicles": 5.75e-08, - "chunk": 4.37e-06, - "classmates": 8.91e-08, - "coca": 4.37e-06, - "cocoa": 4.37e-06, - "comet": 4.37e-06, - "compartment": 4.37e-06, - "compositions": 4.37e-06, - "conditioned": 4.37e-06, - "contestants": 7.59e-08, - "cooled": 4.37e-06, - "corpus": 4.37e-06, - "coupons": 4.37e-06, - "cove": 4.37e-06, - "cozy": 4.37e-06, - "culturally": 4.37e-06, - "currents": 4.37e-06, - "deficiency": 4.37e-06, - "deported": 4.37e-06, - "deposited": 4.37e-06, - "derivatives": 4.37e-06, - "deserted": 4.37e-06, - "dictatorship": 4.37e-06, - "disrespectful": 4.37e-06, - "dread": 4.37e-06, - "dub": 4.37e-06, - "dummy": 4.37e-06, - "ecuador": 4.37e-06, - "edmonton": 4.37e-06, - "electorate": 4.37e-06, - "enhancing": 4.37e-06, - "entertained": 4.37e-06, - "erosion": 4.37e-06, - "explores": 4.37e-06, - "expo": 4.37e-06, - "favourites": 4.37e-06, - "fibers": 4.37e-06, - "fitzgerald": 4.37e-06, - "flank": 4.37e-06, - "flare": 4.37e-06, - "fleeing": 4.37e-06, - "flirting": 4.37e-06, - "forex": 4.37e-06, - "gallons": 4.37e-06, - "gamers": 1.78e-07, - "generators": 4.37e-06, - "geoffrey": 4.37e-06, - "goodnight": 4.37e-06, - "gus": 6.46e-08, - "handmade": 4.37e-06, - "hartford": 4.37e-06, - "hawkins": 4.37e-06, - "hazards": 1.29e-07, - "hostages": 4.37e-06, - "icc": 4.37e-06, - "incidence": 4.37e-06, - "intimacy": 4.37e-06, - "italians": 6.17e-08, - "jul": 4.37e-06, - "kat": 4.37e-06, - "kerr": 4.37e-06, - "kitten": 4.37e-06, - "knicks": 4.37e-06, - "koch": 4.37e-06, - "lagos": 4.37e-06, - "lan": 4.37e-06, - "lender": 4.37e-06, - "leone": 4.37e-06, - "lever": 4.37e-06, - "lisbon": 4.37e-06, - "lu": 4.37e-06, - "marketed": 4.37e-06, - "marty": 4.37e-06, - "mileage": 4.37e-06, - "morton": 4.37e-06, - "multiplayer": 4.37e-06, - "municipalities": 4.37e-06, - "mutant": 4.37e-06, - "mutation": 4.37e-06, - "mythology": 4.37e-06, - "neal": 4.37e-06, - "neon": 4.37e-06, - "nile": 4.37e-06, - "nolan": 4.37e-06, - "northeastern": 4.37e-06, - "noticing": 4.37e-06, - "nun": 4.37e-06, - "nutritional": 4.37e-06, - "ow": 4.37e-06, - "pathways": 4.37e-06, - "pedal": 4.37e-06, - "pest": 4.37e-06, - "pillar": 4.37e-06, - "pitches": 4.37e-06, - "plausible": 4.37e-06, - "pledged": 4.37e-06, - "poly": 4.37e-06, - "polymer": 4.37e-06, - "precipitation": 4.37e-06, - "prosecutors": 8.91e-07, - "protections": 4.37e-06, - "pup": 4.37e-06, - "quarantine": 4.37e-06, - "query": 4.37e-06, - "raf": 4.37e-06, - "rallies": 4.37e-06, - "rapids": 4.37e-06, - "reacted": 4.37e-06, - "restraint": 4.37e-06, - "rests": 4.37e-06, - "retains": 4.37e-06, - "revived": 4.37e-06, - "rift": 4.37e-06, - "romney": 4.37e-06, - "russ": 4.37e-06, - "salesman": 4.37e-06, - "scarlet": 4.37e-06, - "screws": 4.37e-06, - "sensing": 4.37e-06, - "serena": 4.37e-06, - "sewer": 4.37e-06, - "shipments": 4.37e-06, - "shits": 1.05e-06, - "smack": 4.37e-06, - "sonny": 4.37e-06, - "southwestern": 4.37e-06, - "spared": 4.37e-06, - "spokesperson": 4.37e-06, - "stalking": 4.37e-06, - "standardized": 4.37e-06, - "stitch": 4.37e-06, - "substrate": 4.37e-06, - "sultan": 4.37e-06, - "supremacy": 4.37e-06, - "swallowed": 4.37e-06, - "swell": 4.37e-06, - "symptom": 4.37e-06, - "thanked": 4.37e-06, - "theoretically": 4.37e-06, - "thirst": 4.37e-06, - "transitional": 4.37e-06, - "tuna": 4.37e-06, - "unused": 4.37e-06, - "valleys": 6.46e-07, - "viewpoint": 4.37e-06, - "vinegar": 4.37e-06, - "wards": 6.31e-07, - "warrants": 4.37e-06, - "wig": 4.37e-06, - "accessory": 4.27e-06, - "advisors": 6.76e-08, - "advocating": 4.27e-06, - "affiliation": 4.27e-06, - "aggressively": 4.27e-06, - "align": 4.27e-06, - "allergies": 4.27e-06, - "amnesty": 4.27e-06, - "angus": 4.27e-06, - "anita": 4.27e-06, - "apologized": 4.27e-06, - "assad": 4.27e-06, - "assertion": 4.27e-06, - "astronomy": 4.27e-06, - "atop": 4.27e-06, - "attic": 4.27e-06, - "attracts": 4.27e-06, - "australians": 1.07e-07, - "autobiography": 4.27e-06, - "av": 4.27e-06, - "await": 4.27e-06, - "bastards": 7.94e-08, - "becky": 4.27e-06, - "bing": 4.27e-06, - "bothering": 4.27e-06, - "broadcaster": 4.27e-06, - "buddhism": 4.27e-06, - "buds": 1.15e-07, - "cache": 4.27e-06, - "carmen": 4.27e-06, - "carrots": 4.27e-06, - "cds": 5.62e-07, - "chewing": 4.27e-06, - "clintons": 1.35e-06, - "coherent": 4.27e-06, - "comfy": 4.27e-06, - "comrades": 4.27e-06, - "conceded": 4.27e-06, - "condo": 4.27e-06, - "conflicting": 4.27e-06, - "conrad": 4.27e-06, - "consulted": 4.27e-06, - "criticize": 4.27e-06, - "crooked": 4.27e-06, - "cultivation": 4.27e-06, - "decreases": 4.27e-06, - "dicks": 8.32e-07, - "ding": 4.27e-06, - "discontinued": 4.27e-06, - "displacement": 4.27e-06, - "disrespect": 4.27e-06, - "distorted": 4.27e-06, - "divers": 1.35e-07, - "dividing": 4.27e-06, - "dow": 4.27e-06, - "downloads": 4.27e-06, - "drastic": 4.27e-06, - "edible": 4.27e-06, - "edmund": 4.27e-06, - "ella": 4.27e-06, - "emerson": 4.27e-06, - "endorse": 4.27e-06, - "enhancement": 4.27e-06, - "evenings": 7.08e-07, - "fax": 4.27e-06, - "fiat": 4.27e-06, - "fiona": 4.27e-06, - "firefighters": 9.33e-08, - "flick": 4.27e-06, - "fowler": 4.27e-06, - "funky": 4.27e-06, - "gag": 4.27e-06, - "gee": 4.27e-06, - "gigantic": 4.27e-06, - "gill": 4.27e-06, - "groom": 4.27e-06, - "guarded": 4.27e-06, - "guitarist": 4.27e-06, - "halftime": 4.27e-06, - "hamas": 4.27e-06, - "harriet": 4.27e-06, - "hash": 4.27e-06, - "helena": 4.27e-06, - "hogan": 4.27e-06, - "holden": 4.27e-06, - "hydro": 4.27e-06, - "ig": 4.27e-06, - "illustrates": 4.27e-06, - "inactive": 4.27e-06, - "inputs": 4.27e-06, - "inspect": 4.27e-06, - "inspections": 4.27e-06, - "inspectors": 1.38e-07, - "instincts": 4.27e-06, - "interpretations": 4.27e-06, - "je": 4.27e-06, - "jj": 4.27e-06, - "knots": 4.27e-06, - "lana": 4.27e-06, - "laurel": 4.27e-06, - "lawsuits": 4.27e-06, - "leftist": 4.27e-06, - "legitimacy": 4.27e-06, - "linkedin": 4.27e-06, - "lizard": 4.27e-06, - "lyric": 4.27e-06, - "maximize": 4.27e-06, - "morally": 4.27e-06, - "mushroom": 4.27e-06, - "naples": 4.27e-06, - "nigga": 4.27e-06, - "noel": 4.27e-06, - "occupying": 4.27e-06, - "organizers": 4.27e-06, - "owens": 5.62e-07, - "paradox": 4.27e-06, - "peacefully": 4.27e-06, - "periodic": 4.27e-06, - "philly": 4.27e-06, - "plead": 4.27e-06, - "podium": 4.27e-06, - "portray": 4.27e-06, - "practitioner": 4.27e-06, - "pradesh": 4.27e-06, - "progressed": 4.27e-06, - "puck": 4.27e-06, - "ratios": 4.27e-06, - "reconsider": 4.27e-06, - "redskins": 4.27e-06, - "reductions": 4.27e-06, - "refrain": 4.27e-06, - "replaces": 4.27e-06, - "reproduce": 4.27e-06, - "researching": 4.27e-06, - "rigged": 4.27e-06, - "rite": 4.27e-06, - "rum": 4.27e-06, - "safari": 4.27e-06, - "saunders": 4.27e-06, - "scaling": 4.27e-06, - "scorer": 4.27e-06, - "seldom": 4.27e-06, - "shareholder": 4.27e-06, - "simone": 4.27e-06, - "sis": 8.71e-08, - "slams": 4.27e-06, - "slices": 4.27e-06, - "soy": 4.27e-06, - "spilled": 4.27e-06, - "squash": 4.27e-06, - "stacked": 4.27e-06, - "statewide": 4.27e-06, - "stationary": 4.27e-06, - "styled": 4.27e-06, - "subdivision": 4.27e-06, - "succeeding": 4.27e-06, - "sunderland": 4.27e-06, - "surrendered": 4.27e-06, - "tar": 4.27e-06, - "tariffs": 4.27e-06, - "temporal": 4.27e-06, - "tracker": 4.27e-06, - "turbine": 4.27e-06, - "tyson": 4.27e-06, - "unavailable": 4.27e-06, - "universally": 4.27e-06, - "unlucky": 4.27e-06, - "utilizing": 4.27e-06, - "uv": 4.27e-06, - "volunteered": 4.27e-06, - "vomiting": 4.27e-06, - "warden": 4.27e-06, - "warp": 4.27e-06, - "whisky": 4.27e-06, - "whod": 4.27e-06, - "winters": 1.17e-06, - "womb": 4.27e-06, - "yogurt": 4.27e-06, - "abe": 4.17e-06, - "abolished": 4.17e-06, - "abusing": 4.17e-06, - "algeria": 4.17e-06, - "alpine": 4.17e-06, - "ambient": 4.17e-06, - "aquatic": 4.17e-06, - "argentine": 4.17e-06, - "armored": 4.17e-06, - "assert": 4.17e-06, - "atheist": 4.17e-06, - "balances": 4.17e-06, - "bandwidth": 4.17e-06, - "barbecue": 4.17e-06, - "beforehand": 4.17e-06, - "bipolar": 4.17e-06, - "bladder": 4.17e-06, - "blossom": 4.17e-06, - "bodys": 7.76e-08, - "bolts": 2.75e-07, - "bombed": 4.17e-06, - "campaigning": 4.17e-06, - "canned": 4.17e-06, - "captains": 1.62e-06, - "caravan": 4.17e-06, - "carrot": 4.17e-06, - "chanting": 4.17e-06, - "chevrolet": 4.17e-06, - "clive": 4.17e-06, - "compressed": 4.17e-06, - "comprise": 4.17e-06, - "computational": 4.17e-06, - "conceptual": 4.17e-06, - "coolest": 4.17e-06, - "currencies": 4.17e-06, - "damp": 4.17e-06, - "danielle": 4.17e-06, - "databases": 4.17e-06, - "debit": 4.17e-06, - "demolition": 4.17e-06, - "denis": 4.17e-06, - "detailing": 4.17e-06, - "differentiate": 4.17e-06, - "dim": 4.17e-06, - "discouraged": 4.17e-06, - "discovers": 4.17e-06, - "donkey": 4.17e-06, - "doo": 4.17e-06, - "downstream": 4.17e-06, - "earrings": 4.17e-06, - "earthquakes": 4.17e-06, - "ebola": 4.17e-06, - "eg": 4.17e-06, - "elites": 1.05e-07, - "ellie": 4.17e-06, - "empirical": 4.17e-06, - "enlarged": 4.17e-06, - "enzymes": 4.17e-06, - "esther": 4.17e-06, - "everybodys": 5.62e-08, - "fantasies": 4.17e-06, - "faulty": 4.17e-06, - "fertile": 4.17e-06, - "feud": 4.17e-06, - "filmmaker": 4.17e-06, - "formations": 4.17e-06, - "fortunes": 1.91e-07, - "frankfurt": 4.17e-06, - "freedoms": 1.82e-07, - "furnace": 4.17e-06, - "fuse": 4.17e-06, - "fuss": 4.17e-06, - "gale": 4.17e-06, - "gamer": 4.17e-06, - "generosity": 4.17e-06, - "gerry": 4.17e-06, - "gluten": 4.17e-06, - "goodman": 4.17e-06, - "gorilla": 4.17e-06, - "guatemala": 4.17e-06, - "hamburg": 4.17e-06, - "harvested": 4.17e-06, - "hath": 4.17e-06, - "heavyweight": 4.17e-06, - "humane": 4.17e-06, - "humanities": 4.17e-06, - "inflicted": 4.17e-06, - "interviewing": 4.17e-06, - "jedi": 4.17e-06, - "jennings": 4.17e-06, - "journeys": 2.57e-07, - "labelled": 4.17e-06, - "lawful": 4.17e-06, - "lawmakers": 5.13e-08, - "leased": 4.17e-06, - "lena": 4.17e-06, - "loosely": 4.17e-06, - "lotus": 4.17e-06, - "luna": 4.17e-06, - "mails": 2.4e-07, - "malik": 4.17e-06, - "mantle": 4.17e-06, - "mascot": 4.17e-06, - "metabolic": 4.17e-06, - "meth": 4.17e-06, - "mf": 4.17e-06, - "midfield": 4.17e-06, - "militant": 4.17e-06, - "missionaries": 4.17e-06, - "mohammad": 4.17e-06, - "nicolas": 6.92e-08, - "nostalgia": 4.17e-06, - "ottoman": 4.17e-06, - "paddy": 4.17e-06, - "paperback": 4.17e-06, - "paved": 4.17e-06, - "pavilion": 4.17e-06, - "peasant": 4.17e-06, - "perks": 4.17e-06, - "philosophers": 4.07e-07, - "pillars": 4.17e-06, - "pointer": 4.17e-06, - "policing": 4.17e-06, - "predicting": 4.17e-06, - "presume": 4.17e-06, - "presumed": 4.17e-06, - "printers": 1.74e-07, - "rapist": 4.17e-06, - "reacting": 4.17e-06, - "rebuilt": 4.17e-06, - "rec": 4.17e-06, - "rectangular": 4.17e-06, - "regulator": 4.17e-06, - "renting": 4.17e-06, - "restructuring": 4.17e-06, - "ridden": 4.17e-06, - "ro": 4.17e-06, - "rudy": 4.17e-06, - "sabotage": 4.17e-06, - "sanctioned": 4.17e-06, - "sarcasm": 4.17e-06, - "savannah": 4.17e-06, - "scans": 4.17e-06, - "seekers": 7.94e-08, - "sentencing": 4.17e-06, - "sexist": 4.17e-06, - "shaving": 4.17e-06, - "shutdown": 4.17e-06, - "sic": 4.17e-06, - "slammed": 4.17e-06, - "snp": 4.17e-06, - "stresses": 4.17e-06, - "suffolk": 4.17e-06, - "surpassed": 4.17e-06, - "swansea": 4.17e-06, - "sweets": 6.46e-08, - "syracuse": 4.17e-06, - "tally": 4.17e-06, - "tehran": 4.17e-06, - "termed": 4.17e-06, - "tha": 4.17e-06, - "thriving": 4.17e-06, - "timed": 4.17e-06, - "tm": 4.17e-06, - "trending": 4.17e-06, - "trolls": 5.89e-08, - "tucked": 4.17e-06, - "tumors": 5.62e-08, - "ui": 4.17e-06, - "unanimously": 4.17e-06, - "undefeated": 4.17e-06, - "unfamiliar": 4.17e-06, - "upgrading": 4.17e-06, - "vale": 4.17e-06, - "valencia": 4.17e-06, - "vastly": 4.17e-06, - "vile": 4.17e-06, - "violently": 4.17e-06, - "wedge": 4.17e-06, - "wisely": 4.17e-06, - "wizards": 4.47e-07, - "wrecked": 4.17e-06, - "yesterdays": 3.63e-07, - "yuri": 4.17e-06, - "adaptive": 4.07e-06, - "addictive": 4.07e-06, - "affinity": 4.07e-06, - "alloy": 4.07e-06, - "apartheid": 4.07e-06, - "arises": 4.07e-06, - "arthritis": 4.07e-06, - "authorised": 4.07e-06, - "ay": 4.07e-06, - "bale": 4.07e-06, - "barton": 4.07e-06, - "beaver": 4.07e-06, - "boasts": 4.07e-06, - "brunswick": 4.07e-06, - "buenos": 4.07e-06, - "caller": 4.07e-06, - "carnegie": 4.07e-06, - "casualty": 4.07e-06, - "cavity": 4.07e-06, - "chap": 4.07e-06, - "cites": 4.07e-06, - "colts": 1.74e-07, - "comforting": 4.07e-06, - "conway": 4.07e-06, - "courthouse": 4.07e-06, - "crank": 4.07e-06, - "cv": 4.07e-06, - "dante": 4.07e-06, - "darn": 4.07e-06, - "deborah": 4.07e-06, - "decks": 9.12e-08, - "diaries": 4.07e-06, - "differing": 4.07e-06, - "disgust": 4.07e-06, - "dispatched": 4.07e-06, - "dissolution": 4.07e-06, - "disturbance": 4.07e-06, - "dominic": 4.07e-06, - "doubling": 4.07e-06, - "ee": 4.07e-06, - "emerges": 4.07e-06, - "enclosure": 4.07e-06, - "evangelical": 4.07e-06, - "examinations": 4.07e-06, - "exceeding": 4.07e-06, - "expresses": 4.07e-06, - "exquisite": 4.07e-06, - "factual": 4.07e-06, - "fading": 4.07e-06, - "falsely": 4.07e-06, - "famine": 4.07e-06, - "fares": 4.07e-06, - "feminists": 4.07e-06, - "fiji": 4.07e-06, - "flavors": 4.07e-06, - "fraudulent": 4.07e-06, - "freeway": 4.07e-06, - "freshly": 4.07e-06, - "gazette": 4.07e-06, - "geek": 4.07e-06, - "geo": 4.07e-06, - "granny": 4.07e-06, - "handicap": 4.07e-06, - "hansen": 4.07e-06, - "hmmm": 4.07e-06, - "homage": 4.07e-06, - "homo": 4.07e-06, - "hostility": 4.07e-06, - "hymn": 4.07e-06, - "hypothetical": 4.07e-06, - "informative": 4.07e-06, - "infringement": 4.07e-06, - "internship": 4.07e-06, - "interrupt": 4.07e-06, - "invade": 4.07e-06, - "irritating": 4.07e-06, - "jacksonville": 4.07e-06, - "jasmine": 4.07e-06, - "katrina": 4.07e-06, - "knockout": 4.07e-06, - "lantern": 4.07e-06, - "linen": 4.07e-06, - "lookout": 4.07e-06, - "misunderstood": 4.07e-06, - "moonlight": 4.07e-06, - "moose": 4.07e-06, - "mosquito": 4.07e-06, - "motel": 4.07e-06, - "motherfucker": 4.07e-06, - "mueller": 4.07e-06, - "narratives": 4.07e-06, - "nobodys": 6.46e-08, - "noun": 4.07e-06, - "novelist": 4.07e-06, - "nsfw": 4.07e-06, - "oaks": 6.31e-08, - "omaha": 4.07e-06, - "onwards": 4.07e-06, - "overthrow": 4.07e-06, - "paradigm": 4.07e-06, - "pavement": 4.07e-06, - "payday": 4.07e-06, - "perpetual": 4.07e-06, - "pga": 4.07e-06, - "physiology": 4.07e-06, - "pigeon": 4.07e-06, - "plateau": 4.07e-06, - "playlist": 4.07e-06, - "plc": 4.07e-06, - "possesses": 4.07e-06, - "possessing": 4.07e-06, - "precinct": 4.07e-06, - "premiership": 4.07e-06, - "presentations": 4.07e-06, - "proliferation": 4.07e-06, - "prosecuted": 4.07e-06, - "pseudo": 4.07e-06, - "pudding": 4.07e-06, - "reformed": 4.07e-06, - "refrigerator": 4.07e-06, - "regeneration": 4.07e-06, - "regina": 4.07e-06, - "remembrance": 4.07e-06, - "reminiscent": 4.07e-06, - "reps": 7.76e-08, - "resentment": 4.07e-06, - "resin": 4.07e-06, - "resisted": 4.07e-06, - "rosie": 4.07e-06, - "rotary": 4.07e-06, - "rupert": 4.07e-06, - "rusty": 4.07e-06, - "scarce": 4.07e-06, - "sibling": 4.07e-06, - "simulator": 4.07e-06, - "sl": 4.07e-06, - "slippery": 4.07e-06, - "slips": 4.07e-06, - "snyder": 4.07e-06, - "soak": 4.07e-06, - "sock": 4.07e-06, - "sorting": 4.07e-06, - "spectacle": 4.07e-06, - "stint": 4.07e-06, - "storey": 4.07e-06, - "suicidal": 4.07e-06, - "suv": 4.07e-06, - "symposium": 4.07e-06, - "tabs": 4.07e-06, - "tailor": 4.07e-06, - "terminals": 6.76e-08, - "thrilling": 4.07e-06, - "tottenham": 4.07e-06, - "toughest": 4.07e-06, - "trajectory": 4.07e-06, - "triggers": 5.01e-08, - "tt": 4.07e-06, - "underrated": 4.07e-06, - "unidentified": 4.07e-06, - "unrest": 4.07e-06, - "unseen": 4.07e-06, - "utmost": 4.07e-06, - "waiter": 4.07e-06, - "weary": 4.07e-06, - "wiki": 4.07e-06, - "wills": 6.92e-07, - "willy": 4.07e-06, - "wimbledon": 4.07e-06, - "witches": 4.07e-06, - "wwii": 4.07e-06, - "youths": 2.34e-07, - "accusation": 3.98e-06, - "adapter": 3.98e-06, - "adjustable": 3.98e-06, - "adulthood": 3.98e-06, - "advisers": 7.41e-08, - "advocated": 3.98e-06, - "affiliates": 3.98e-06, - "agony": 3.98e-06, - "allergy": 3.98e-06, - "armenian": 3.98e-06, - "astronaut": 3.98e-06, - "attain": 3.98e-06, - "attendant": 3.98e-06, - "authenticity": 3.98e-06, - "avery": 3.98e-06, - "backstage": 3.98e-06, - "banners": 8.51e-08, - "bedford": 3.98e-06, - "benchmark": 3.98e-06, - "benghazi": 3.98e-06, - "benny": 3.98e-06, - "benson": 3.98e-06, - "beverages": 3.98e-06, - "binge": 3.98e-06, - "biscuits": 3.98e-06, - "bloc": 3.98e-06, - "bouncing": 3.98e-06, - "bourbon": 3.98e-06, - "breaker": 3.98e-06, - "breathtaking": 3.98e-06, - "browsing": 3.98e-06, - "brutality": 3.98e-06, - "bumps": 3.98e-06, - "calculus": 3.98e-06, - "cancers": 2.14e-07, - "capitals": 4.68e-07, - "careless": 3.98e-06, - "caste": 3.98e-06, - "cellar": 3.98e-06, - "cerebral": 3.98e-06, - "champs": 6.46e-08, - "chant": 3.98e-06, - "cheerful": 3.98e-06, - "cinematic": 3.98e-06, - "climax": 3.98e-06, - "clippers": 3.98e-06, - "cockpit": 3.98e-06, - "cocktails": 3.98e-06, - "colon": 3.98e-06, - "communion": 3.98e-06, - "condom": 3.98e-06, - "consul": 3.98e-06, - "contender": 3.98e-06, - "crimson": 3.98e-06, - "crypto": 3.98e-06, - "cultivated": 3.98e-06, - "curly": 3.98e-06, - "debated": 3.98e-06, - "degradation": 3.98e-06, - "dexter": 3.98e-06, - "disappearing": 3.98e-06, - "discs": 3.98e-06, - "distributors": 3.98e-06, - "duh": 3.98e-06, - "dundee": 3.98e-06, - "elaine": 3.98e-06, - "electrons": 3.98e-06, - "emerald": 3.98e-06, - "ensures": 3.98e-06, - "equilibrium": 3.98e-06, - "europa": 3.98e-06, - "evelyn": 3.98e-06, - "evidently": 3.98e-06, - "exhausting": 3.98e-06, - "extras": 3.98e-06, - "famed": 3.98e-06, - "fargo": 3.98e-06, - "fascinated": 3.98e-06, - "fences": 3.98e-06, - "fetus": 3.98e-06, - "flaw": 3.98e-06, - "flawless": 3.98e-06, - "fooled": 3.98e-06, - "forrest": 3.98e-06, - "gigs": 3.98e-06, - "grad": 3.98e-06, - "granddaughter": 3.98e-06, - "gymnastics": 3.98e-06, - "hale": 3.98e-06, - "helmets": 6.03e-08, - "hercules": 3.98e-06, - "hereby": 3.98e-06, - "honduras": 3.98e-06, - "hotter": 3.98e-06, - "humorous": 3.98e-06, - "ignores": 3.98e-06, - "incurred": 3.98e-06, - "indications": 3.98e-06, - "indoors": 3.98e-06, - "intercourse": 3.98e-06, - "interestingly": 3.98e-06, - "isaiah": 3.98e-06, - "isolate": 3.98e-06, - "israels": 1.23e-07, - "jurisdictions": 3.98e-06, - "kathleen": 3.98e-06, - "kendall": 3.98e-06, - "knocks": 3.98e-06, - "lancashire": 3.98e-06, - "lawson": 3.98e-06, - "lesbians": 3.98e-06, - "lindsey": 3.98e-06, - "listens": 3.98e-06, - "londons": 8.13e-08, - "mailing": 3.98e-06, - "manipulated": 3.98e-06, - "mao": 3.98e-06, - "mare": 3.98e-06, - "marxist": 3.98e-06, - "meadow": 3.98e-06, - "meadows": 3.98e-06, - "ministries": 3.98e-06, - "motivate": 3.98e-06, - "mound": 3.98e-06, - "muddy": 3.98e-06, - "mystic": 3.98e-06, - "ness": 3.98e-06, - "nominal": 3.98e-06, - "norris": 3.98e-06, - "oconnor": 3.98e-06, - "ohh": 3.98e-06, - "ordinance": 3.98e-06, - "osborne": 3.98e-06, - "oscars": 4.68e-07, - "outlines": 3.98e-06, - "pairing": 3.98e-06, - "pam": 3.98e-06, - "parsons": 9.77e-08, - "pertaining": 3.98e-06, - "poke": 3.98e-06, - "poorer": 3.98e-06, - "portsmouth": 3.98e-06, - "praising": 3.98e-06, - "pres": 3.98e-06, - "presbyterian": 3.98e-06, - "prick": 3.98e-06, - "prolific": 3.98e-06, - "proportional": 3.98e-06, - "prosperous": 3.98e-06, - "quarry": 3.98e-06, - "referral": 3.98e-06, - "repost": 3.98e-06, - "respecting": 3.98e-06, - "restless": 3.98e-06, - "rugged": 3.98e-06, - "sammy": 3.98e-06, - "sap": 3.98e-06, - "sarcastic": 3.98e-06, - "scholarly": 3.98e-06, - "segregation": 3.98e-06, - "seymour": 3.98e-06, - "shaken": 3.98e-06, - "sheikh": 3.98e-06, - "sheriffs": 1.38e-06, - "shines": 3.98e-06, - "sinclair": 3.98e-06, - "sinister": 3.98e-06, - "stared": 3.98e-06, - "strait": 3.98e-06, - "suppressed": 3.98e-06, - "sylvia": 3.98e-06, - "teamed": 3.98e-06, - "tents": 3.98e-06, - "testosterone": 3.98e-06, - "thicker": 3.98e-06, - "tis": 1.02e-07, - "ventilation": 3.98e-06, - "viking": 3.98e-06, - "weaver": 3.98e-06, - "weber": 3.98e-06, - "wes": 4.37e-08, - "williamson": 3.98e-06, - "yankee": 3.98e-06, - "yarn": 3.98e-06, - "abide": 3.89e-06, - "accumulation": 3.89e-06, - "admiration": 3.89e-06, - "aesthetics": 3.89e-06, - "aj": 3.89e-06, - "altering": 3.89e-06, - "anton": 3.89e-06, - "archie": 3.89e-06, - "asserted": 3.89e-06, - "attacker": 3.89e-06, - "augusta": 3.89e-06, - "authoritarian": 3.89e-06, - "avail": 3.89e-06, - "bahrain": 3.89e-06, - "banquet": 3.89e-06, - "barker": 3.89e-06, - "behaved": 3.89e-06, - "bentley": 3.89e-06, - "benz": 3.89e-06, - "billed": 3.89e-06, - "billing": 3.89e-06, - "booty": 3.89e-06, - "brackets": 3.89e-06, - "bravery": 3.89e-06, - "brit": 3.89e-06, - "browse": 3.89e-06, - "brutally": 3.89e-06, - "buff": 3.89e-06, - "calorie": 3.89e-06, - "cdc": 3.89e-06, - "chamberlain": 3.89e-06, - "cis": 3.89e-06, - "claw": 3.89e-06, - "collects": 3.89e-06, - "coloring": 3.89e-06, - "commence": 3.89e-06, - "compatibility": 3.89e-06, - "conditional": 3.89e-06, - "congratulate": 3.89e-06, - "constructing": 3.89e-06, - "converts": 3.89e-06, - "coordinating": 3.89e-06, - "cortex": 3.89e-06, - "courageous": 3.89e-06, - "crawling": 3.89e-06, - "crusade": 3.89e-06, - "cynical": 3.89e-06, - "damascus": 3.89e-06, - "devised": 3.89e-06, - "discarded": 3.89e-06, - "disrupt": 3.89e-06, - "donating": 3.89e-06, - "donovan": 3.89e-06, - "drills": 3.89e-06, - "duplicate": 3.89e-06, - "dynamite": 3.89e-06, - "echoes": 3.89e-06, - "economical": 3.89e-06, - "elastic": 3.89e-06, - "empowered": 3.89e-06, - "examines": 3.89e-06, - "exceeds": 3.89e-06, - "exposition": 3.89e-06, - "fart": 3.89e-06, - "fearing": 3.89e-06, - "fetish": 3.89e-06, - "fixes": 3.89e-06, - "fla": 3.89e-06, - "fluffy": 3.89e-06, - "fundamentals": 3.89e-06, - "fundraiser": 3.89e-06, - "funniest": 3.89e-06, - "fx": 3.89e-06, - "gadgets": 3.89e-06, - "gaga": 3.89e-06, - "garment": 3.89e-06, - "geometric": 3.89e-06, - "gestures": 3.89e-06, - "goldman": 3.89e-06, - "googles": 3.39e-07, - "gracious": 3.89e-06, - "grin": 3.89e-06, - "gta": 3.89e-06, - "halifax": 3.89e-06, - "hanna": 3.89e-06, - "happiest": 3.89e-06, - "heap": 3.89e-06, - "highs": 2.45e-07, - "hum": 3.89e-06, - "humility": 3.89e-06, - "impeachment": 3.89e-06, - "inherently": 3.89e-06, - "insults": 3.89e-06, - "inventor": 3.89e-06, - "isa": 3.89e-06, - "jailed": 3.89e-06, - "jasper": 3.89e-06, - "jewels": 3.89e-06, - "juliet": 3.89e-06, - "karachi": 3.89e-06, - "kickstarter": 3.89e-06, - "kurdish": 3.89e-06, - "leopard": 3.89e-06, - "librarian": 3.89e-06, - "lobbying": 3.89e-06, - "lumber": 3.89e-06, - "lydia": 3.89e-06, - "mackenzie": 3.89e-06, - "madam": 3.89e-06, - "marital": 3.89e-06, - "mayer": 3.89e-06, - "meds": 3.89e-06, - "mis": 7.41e-08, - "mma": 3.89e-06, - "multitude": 3.89e-06, - "muse": 3.89e-06, - "nanny": 3.89e-06, - "nineteen": 3.89e-06, - "nipples": 3.89e-06, - "nucleus": 3.89e-06, - "oc": 3.89e-06, - "orbital": 3.89e-06, - "organism": 3.89e-06, - "outgoing": 3.89e-06, - "overhaul": 3.89e-06, - "pancakes": 3.89e-06, - "pas": 2.29e-07, - "patriotism": 3.89e-06, - "periodically": 3.89e-06, - "piles": 1.45e-08, - "plumbing": 3.89e-06, - "poppy": 3.89e-06, - "pratt": 3.89e-06, - "precautions": 3.89e-06, - "predecessors": 1.91e-07, - "protested": 3.89e-06, - "raced": 3.89e-06, - "raleigh": 3.89e-06, - "readiness": 3.89e-06, - "redundant": 3.89e-06, - "regulators": 6.76e-08, - "rejecting": 3.89e-06, - "remarked": 3.89e-06, - "resemblance": 3.89e-06, - "rested": 3.89e-06, - "rib": 3.89e-06, - "rods": 1.62e-07, - "roth": 3.89e-06, - "sacks": 3.89e-06, - "seizures": 3.89e-06, - "sermon": 3.89e-06, - "slender": 3.89e-06, - "sloppy": 3.89e-06, - "smiths": 1.62e-06, - "snapchat": 3.89e-06, - "socialists": 3.89e-06, - "societal": 3.89e-06, - "soviets": 3.89e-06, - "spec": 3.89e-06, - "sponge": 3.89e-06, - "steele": 3.89e-06, - "sucker": 3.89e-06, - "suns": 2.69e-06, - "superiority": 3.89e-06, - "supervised": 3.89e-06, - "surreal": 3.89e-06, - "tease": 3.89e-06, - "tendencies": 3.89e-06, - "tiffany": 3.89e-06, - "titanic": 3.89e-06, - "tomorrows": 3.31e-07, - "transitions": 3.89e-06, - "transmitter": 3.89e-06, - "transporting": 3.89e-06, - "typhoon": 3.89e-06, - "unreal": 3.89e-06, - "upheld": 3.89e-06, - "vaccination": 3.89e-06, - "valerie": 3.89e-06, - "valves": 1.55e-07, - "vampires": 1.48e-07, - "vibration": 3.89e-06, - "vitamins": 3.89e-06, - "wartime": 3.89e-06, - "weakest": 3.89e-06, - "wicket": 3.89e-06, - "winnipeg": 3.89e-06, - "worcester": 3.89e-06, - "zurich": 3.89e-06, - "abdominal": 3.8e-06, - "adolescent": 3.8e-06, - "advertisers": 1e-07, - "airing": 3.8e-06, - "announcer": 3.8e-06, - "awaited": 3.8e-06, - "baba": 3.8e-06, - "backdrop": 3.8e-06, - "bae": 3.8e-06, - "beau": 3.8e-06, - "begged": 3.8e-06, - "blackout": 3.8e-06, - "bluff": 3.8e-06, - "bollywood": 3.8e-06, - "brushes": 3.8e-06, - "bushes": 3.8e-06, - "cartel": 3.8e-06, - "casts": 1e-07, - "catastrophic": 3.8e-06, - "caucus": 3.8e-06, - "charcoal": 3.8e-06, - "cheesy": 3.8e-06, - "cheryl": 3.8e-06, - "choking": 3.8e-06, - "cindy": 3.8e-06, - "citrus": 3.8e-06, - "clad": 3.8e-06, - "clocks": 1.12e-07, - "coached": 3.8e-06, - "coded": 3.8e-06, - "columnist": 3.8e-06, - "competence": 3.8e-06, - "condolences": 3.8e-06, - "constituent": 3.8e-06, - "constituted": 3.8e-06, - "contacting": 3.8e-06, - "contagious": 3.8e-06, - "contexts": 3.8e-06, - "conveniently": 3.8e-06, - "courtroom": 3.8e-06, - "cushion": 3.8e-06, - "cyclist": 3.8e-06, - "darkest": 3.8e-06, - "diaz": 3.8e-06, - "dictate": 3.8e-06, - "directs": 3.8e-06, - "discounted": 3.8e-06, - "distributing": 3.8e-06, - "dnc": 3.8e-06, - "dominating": 3.8e-06, - "doris": 3.8e-06, - "dorm": 3.8e-06, - "drafts": 5.01e-08, - "drip": 3.8e-06, - "duct": 3.8e-06, - "eccentric": 3.8e-06, - "educating": 3.8e-06, - "electro": 3.8e-06, - "electromagnetic": 3.8e-06, - "emblem": 3.8e-06, - "endured": 3.8e-06, - "ew": 3.8e-06, - "expands": 3.8e-06, - "fabrics": 3.8e-06, - "facto": 3.8e-06, - "falcons": 1.55e-07, - "fascism": 3.8e-06, - "fats": 3.8e-06, - "fearful": 3.8e-06, - "festive": 3.8e-06, - "flyer": 3.8e-06, - "forecasts": 3.8e-06, - "foreman": 3.8e-06, - "framing": 3.8e-06, - "gallagher": 3.8e-06, - "geared": 3.8e-06, - "geoff": 3.8e-06, - "georges": 2.57e-06, - "giles": 3.8e-06, - "gina": 3.8e-06, - "glacier": 3.8e-06, - "gomez": 3.8e-06, - "gs": 1.02e-06, - "hindus": 3.8e-06, - "hu": 3.8e-06, - "hunted": 3.8e-06, - "hurricanes": 8.13e-08, - "implying": 3.8e-06, - "improper": 3.8e-06, - "influx": 3.8e-06, - "informing": 3.8e-06, - "installment": 3.8e-06, - "isles": 3.8e-06, - "jen": 3.8e-06, - "judaism": 3.8e-06, - "keller": 3.8e-06, - "kernel": 3.8e-06, - "kung": 3.8e-06, - "larvae": 3.8e-06, - "lexington": 3.8e-06, - "liaison": 3.8e-06, - "lima": 3.8e-06, - "marys": 7.76e-07, - "memoirs": 3.8e-06, - "miner": 3.8e-06, - "mk": 3.8e-06, - "mosaic": 3.8e-06, - "mustang": 3.8e-06, - "mw": 3.8e-06, - "needy": 3.8e-06, - "nichols": 3.8e-06, - "offenses": 3.8e-06, - "optics": 1.07e-08, - "orphan": 3.8e-06, - "passions": 3.8e-06, - "patty": 3.8e-06, - "peyton": 3.8e-06, - "pies": 8.91e-08, - "pineapple": 3.8e-06, - "pissing": 3.8e-06, - "plaintiffs": 3.89e-07, - "plastics": 1.35e-08, - "poisoned": 3.8e-06, - "potassium": 3.8e-06, - "priceless": 3.8e-06, - "projecting": 3.8e-06, - "prostitute": 3.8e-06, - "reflective": 3.8e-06, - "rents": 3.8e-06, - "residing": 3.8e-06, - "resilience": 3.8e-06, - "resisting": 3.8e-06, - "romanian": 3.8e-06, - "roofs": 1.07e-07, - "rotate": 3.8e-06, - "royce": 3.8e-06, - "sans": 1.51e-07, - "saxon": 3.8e-06, - "scissors": 3.8e-06, - "seaside": 3.8e-06, - "semitic": 3.8e-06, - "shampoo": 3.8e-06, - "shaun": 3.8e-06, - "shri": 3.8e-06, - "silently": 3.8e-06, - "similarity": 3.8e-06, - "smelling": 3.8e-06, - "socio": 3.8e-06, - "stabbing": 3.8e-06, - "staircase": 3.8e-06, - "stamped": 3.8e-06, - "steroids": 3.8e-06, - "stitches": 3.8e-06, - "subsidiaries": 3.8e-06, - "swipe": 3.8e-06, - "tang": 3.8e-06, - "tango": 3.8e-06, - "telecom": 3.8e-06, - "tighter": 3.8e-06, - "tolerant": 3.8e-06, - "touchdowns": 3.8e-06, - "toxicity": 3.8e-06, - "trumpet": 3.8e-06, - "tuberculosis": 3.8e-06, - "ukip": 3.8e-06, - "undergone": 3.8e-06, - "willingly": 3.8e-06, - "woah": 3.8e-06, - "wrapping": 3.8e-06, - "youthful": 3.8e-06, - "accents": 3.72e-06, - "adhere": 3.72e-06, - "adidas": 3.72e-06, - "advising": 3.72e-06, - "affirmative": 3.72e-06, - "agnes": 3.72e-06, - "alarms": 3.72e-06, - "alliances": 3.39e-07, - "alma": 3.72e-06, - "ambiguous": 3.72e-06, - "archaeology": 3.72e-06, - "arse": 3.72e-06, - "attained": 3.72e-06, - "aus": 7.24e-08, - "autopsy": 3.72e-06, - "baltic": 3.72e-06, - "berries": 3.72e-06, - "blitz": 3.72e-06, - "blockade": 3.72e-06, - "bosnia": 3.72e-06, - "brightness": 3.72e-06, - "bruins": 3.72e-06, - "brushed": 3.72e-06, - "burma": 3.72e-06, - "calculating": 3.72e-06, - "campuses": 3.72e-06, - "cartridge": 3.72e-06, - "cashier": 3.72e-06, - "cigar": 3.72e-06, - "circa": 3.72e-06, - "citations": 3.72e-06, - "claudia": 3.72e-06, - "cloak": 3.72e-06, - "cologne": 3.72e-06, - "colombian": 3.72e-06, - "colt": 3.72e-06, - "combustion": 3.72e-06, - "comprehension": 3.72e-06, - "concession": 3.72e-06, - "condoms": 3.72e-06, - "crescent": 3.72e-06, - "crises": 3.72e-06, - "criticizing": 3.72e-06, - "defective": 3.72e-06, - "denise": 3.72e-06, - "deportation": 3.72e-06, - "deserving": 3.72e-06, - "discourage": 3.72e-06, - "disgusted": 3.72e-06, - "disposable": 3.72e-06, - "distressed": 3.72e-06, - "dover": 3.72e-06, - "dumbass": 3.72e-06, - "dungeon": 3.72e-06, - "dwell": 3.72e-06, - "edison": 3.72e-06, - "edith": 3.72e-06, - "enforcing": 3.72e-06, - "entrepreneurship": 3.72e-06, - "eps": 1.48e-07, - "erie": 3.72e-06, - "essentials": 3.72e-06, - "fasting": 3.72e-06, - "fiery": 3.72e-06, - "finalists": 3.72e-06, - "flipping": 3.72e-06, - "flux": 3.72e-06, - "fueled": 3.72e-06, - "gc": 3.72e-06, - "georgetown": 3.72e-06, - "gimme": 3.72e-06, - "goofy": 3.72e-06, - "hai": 3.72e-06, - "hancock": 3.72e-06, - "handwriting": 3.72e-06, - "hassle": 3.72e-06, - "heartbreaking": 3.72e-06, - "hector": 3.72e-06, - "hicks": 3.72e-06, - "hobbies": 3.72e-06, - "hog": 3.72e-06, - "homeowners": 2e-07, - "ibrahim": 3.72e-06, - "immensely": 3.72e-06, - "inauguration": 3.72e-06, - "incorrectly": 3.72e-06, - "ind": 3.72e-06, - "indicative": 3.72e-06, - "inexpensive": 3.72e-06, - "instructors": 1.1e-07, - "intercept": 3.72e-06, - "intuitive": 3.72e-06, - "invent": 3.72e-06, - "irwin": 3.72e-06, - "isabel": 3.72e-06, - "jamaican": 3.72e-06, - "jockey": 3.72e-06, - "jolly": 3.72e-06, - "jorge": 3.72e-06, - "ju": 3.72e-06, - "kazakhstan": 3.72e-06, - "kenyan": 3.72e-06, - "landlords": 3.47e-07, - "latitude": 3.72e-06, - "lea": 3.72e-06, - "libertarian": 3.72e-06, - "luxembourg": 3.72e-06, - "majestic": 3.72e-06, - "mariners": 7.08e-08, - "mastered": 3.72e-06, - "mastery": 3.72e-06, - "mats": 3.72e-08, - "mccoy": 3.72e-06, - "metropolis": 3.72e-06, - "mohamed": 3.72e-06, - "mummy": 3.72e-06, - "neville": 3.72e-06, - "nominate": 3.72e-06, - "np": 3.72e-06, - "offend": 3.72e-06, - "oo": 3.72e-06, - "orchard": 3.72e-06, - "organizer": 3.72e-06, - "outraged": 3.72e-06, - "overdose": 3.72e-06, - "pamela": 3.72e-06, - "paragraphs": 3.72e-06, - "parallels": 3.72e-06, - "parameter": 3.72e-06, - "passwords": 3.72e-06, - "pathology": 3.72e-06, - "peggy": 3.72e-06, - "piercing": 3.72e-06, - "plotting": 3.72e-06, - "poisonous": 3.72e-06, - "pounding": 3.72e-06, - "pretended": 3.72e-06, - "procession": 3.72e-06, - "purge": 3.72e-06, - "reacts": 3.72e-06, - "relocation": 3.72e-06, - "rhino": 3.72e-06, - "riches": 3.72e-06, - "ripping": 3.72e-06, - "rosemary": 3.72e-06, - "rubbed": 3.72e-06, - "sandstone": 3.72e-06, - "sanitation": 3.72e-06, - "satisfactory": 3.72e-06, - "scooter": 3.72e-06, - "sculptures": 3.72e-06, - "secrecy": 3.72e-06, - "seeded": 3.72e-06, - "separates": 3.72e-06, - "sergio": 3.72e-06, - "shameful": 3.72e-06, - "shortest": 3.72e-06, - "sid": 3.72e-06, - "skipping": 3.72e-06, - "skirts": 3.72e-06, - "sliced": 3.72e-06, - "soils": 5.37e-08, - "springer": 3.72e-06, - "staples": 3.72e-06, - "stokes": 1.1e-07, - "storing": 3.72e-06, - "summed": 3.72e-06, - "supervisors": 1.35e-07, - "sweetie": 3.72e-06, - "swollen": 3.72e-06, - "tanzania": 3.72e-06, - "technicians": 3.72e-06, - "tor": 3.72e-06, - "transformers": 3.72e-06, - "traveler": 3.72e-06, - "tunisia": 3.72e-06, - "umm": 3.72e-06, - "unauthorized": 3.72e-06, - "undo": 3.72e-06, - "unnamed": 3.72e-06, - "upsetting": 3.72e-06, - "vans": 2.19e-07, - "venom": 3.72e-06, - "victorious": 3.72e-06, - "vines": 6.17e-08, - "visuals": 3.72e-06, - "wary": 3.72e-06, - "watering": 3.72e-06, - "wellness": 3.72e-06, - "whispers": 3.72e-06, - "windy": 3.72e-06, - "winger": 3.72e-06, - "wordpress": 3.72e-06, - "wraps": 3.72e-06, - "youngsters": 6.17e-08, - "abby": 3.63e-06, - "abdomen": 3.63e-06, - "abducted": 3.63e-06, - "abruptly": 3.63e-06, - "aha": 3.63e-06, - "aleppo": 3.63e-06, - "alerts": 3.63e-06, - "alps": 3.63e-06, - "amidst": 3.63e-06, - "antarctic": 3.63e-06, - "antibodies": 3.63e-06, - "aquarium": 3.63e-06, - "armenia": 3.63e-06, - "aspiring": 3.63e-06, - "asteroid": 3.63e-06, - "barbie": 3.63e-06, - "batter": 3.63e-06, - "baxter": 3.63e-06, - "bedtime": 3.63e-06, - "belongings": 3.63e-06, - "bloomberg": 3.63e-06, - "blush": 3.63e-06, - "booster": 3.63e-06, - "braves": 3.63e-06, - "bun": 3.63e-06, - "businessmen": 3.63e-06, - "calculator": 3.63e-06, - "calmly": 3.63e-06, - "captivity": 3.63e-06, - "catastrophe": 3.63e-06, - "chemotherapy": 3.63e-06, - "cinemas": 2.34e-07, - "circulating": 3.63e-06, - "claws": 3.63e-06, - "cleansing": 3.63e-06, - "clears": 3.63e-06, - "clicked": 3.63e-06, - "commute": 3.63e-06, - "complementary": 3.63e-06, - "concussion": 3.63e-06, - "connectivity": 3.63e-06, - "consulate": 3.63e-06, - "contend": 3.63e-06, - "convict": 3.63e-06, - "craving": 3.63e-06, - "culinary": 3.63e-06, - "demographics": 3.63e-06, - "departing": 3.63e-06, - "din": 3.63e-06, - "dir": 3.63e-06, - "discrete": 3.63e-06, - "disguised": 3.63e-06, - "dissent": 3.63e-06, - "disturb": 3.63e-06, - "docks": 3.63e-06, - "dt": 3.63e-06, - "earns": 3.63e-06, - "emergencies": 3.63e-06, - "eminent": 3.63e-06, - "encryption": 3.63e-06, - "endeavor": 3.63e-06, - "enthusiasts": 3.63e-06, - "erica": 3.63e-06, - "escapes": 3.63e-06, - "everythings": 1.35e-07, - "exported": 3.63e-06, - "fencing": 3.63e-06, - "filtering": 3.63e-06, - "flashes": 3.63e-06, - "fleming": 3.63e-06, - "flop": 3.63e-06, - "follower": 3.63e-06, - "franchises": 4.37e-07, - "fraternity": 3.63e-06, - "freaks": 3.63e-06, - "frogs": 1.82e-07, - "fronts": 1.82e-07, - "furry": 3.63e-06, - "glitter": 3.63e-06, - "graveyard": 3.63e-06, - "hanged": 3.63e-06, - "hardship": 3.63e-06, - "harlem": 3.63e-06, - "hen": 3.63e-06, - "hoover": 3.63e-06, - "implication": 3.63e-06, - "induce": 3.63e-06, - "insecurity": 3.63e-06, - "interrogation": 3.63e-06, - "intimidating": 3.63e-06, - "inventions": 3.63e-06, - "irrational": 3.63e-06, - "jaws": 3.63e-06, - "lamar": 3.63e-06, - "leafs": 8.13e-08, - "lennon": 3.63e-06, - "lettuce": 3.63e-06, - "liabilities": 3.63e-06, - "lithium": 3.63e-06, - "lowe": 3.63e-06, - "lucrative": 3.63e-06, - "macmillan": 3.63e-06, - "malone": 3.63e-06, - "managerial": 3.63e-06, - "mandated": 3.63e-06, - "mango": 3.63e-06, - "miley": 3.63e-06, - "militants": 3.63e-06, - "milo": 3.63e-06, - "mister": 3.63e-06, - "moderately": 3.63e-06, - "mri": 3.63e-06, - "multimedia": 3.63e-06, - "multinational": 3.63e-06, - "nationalists": 3.63e-06, - "nh": 3.63e-06, - "oasis": 3.63e-06, - "oddly": 3.63e-06, - "ons": 1.15e-07, - "oppressed": 3.63e-06, - "osaka": 3.63e-06, - "ouch": 3.63e-06, - "outsiders": 1.2e-07, - "outskirts": 3.63e-06, - "overlapping": 3.63e-06, - "overs": 3.63e-06, - "paced": 3.63e-06, - "pagan": 3.63e-06, - "painters": 2.95e-07, - "pals": 1.12e-07, - "planetary": 3.63e-06, - "playboy": 3.63e-06, - "porcelain": 3.63e-06, - "processors": 5.01e-08, - "programmer": 3.63e-06, - "promoter": 3.63e-06, - "psalm": 3.63e-06, - "psychiatry": 3.63e-06, - "psychologists": 5.37e-08, - "pubs": 8.13e-08, - "pursuant": 3.63e-06, - "recycled": 3.63e-06, - "renovated": 3.63e-06, - "repetitive": 3.63e-06, - "researched": 3.63e-06, - "revelations": 3.63e-06, - "reversal": 3.63e-06, - "rhyme": 3.63e-06, - "rue": 3.63e-06, - "safest": 3.63e-06, - "saturdays": 2.29e-06, - "savvy": 3.63e-06, - "scanner": 3.63e-06, - "schizophrenia": 3.63e-06, - "scratching": 3.63e-06, - "seriousness": 3.63e-06, - "sheila": 3.63e-06, - "shelby": 3.63e-06, - "sparkling": 3.63e-06, - "spree": 3.63e-06, - "stafford": 3.63e-06, - "stakeholders": 3.63e-06, - "stevenson": 3.63e-06, - "submitting": 3.63e-06, - "subsidy": 3.63e-06, - "sup": 3.63e-06, - "superficial": 3.63e-06, - "sweaty": 3.63e-06, - "tailored": 3.63e-06, - "tame": 3.63e-06, - "tanner": 3.63e-06, - "taps": 3.39e-08, - "tf": 3.63e-06, - "thinner": 3.63e-06, - "thugs": 6.46e-08, - "tipping": 3.63e-06, - "toni": 3.63e-06, - "topping": 3.63e-06, - "tracing": 3.63e-06, - "truman": 3.63e-06, - "upstream": 3.63e-06, - "vapor": 3.63e-06, - "veronica": 3.63e-06, - "vow": 3.63e-06, - "waitress": 3.63e-06, - "walnut": 3.63e-06, - "waterfront": 3.63e-06, - "wembley": 3.63e-06, - "whatsapp": 3.63e-06, - "winchester": 3.63e-06, - "witty": 3.63e-06, - "woven": 3.63e-06, - "wyatt": 3.63e-06, - "zack": 3.63e-06, - "acquaintance": 3.55e-06, - "aires": 3.55e-06, - "ambassadors": 3.98e-07, - "ambush": 3.55e-06, - "amelia": 3.55e-06, - "amend": 3.55e-06, - "arranging": 3.55e-06, - "arrogance": 3.55e-06, - "attendees": 3.55e-06, - "audrey": 3.55e-06, - "aussie": 3.55e-06, - "awaits": 3.55e-06, - "baptism": 3.55e-06, - "beirut": 3.55e-06, - "blames": 3.55e-06, - "blasting": 3.55e-06, - "bloke": 3.55e-06, - "blond": 3.55e-06, - "blur": 3.55e-06, - "blvd": 3.55e-06, - "boogie": 3.55e-06, - "booker": 3.55e-06, - "bothers": 3.55e-06, - "bowel": 3.55e-06, - "brightest": 3.55e-06, - "brow": 3.55e-06, - "budapest": 3.55e-06, - "bulbs": 3.55e-06, - "bureaucracy": 3.55e-06, - "cabbage": 3.55e-06, - "canton": 3.55e-06, - "cater": 3.55e-06, - "celtics": 1.91e-07, - "chimney": 3.55e-06, - "chrysler": 3.55e-06, - "circulated": 3.55e-06, - "cloudy": 3.55e-06, - "colourful": 3.55e-06, - "compassionate": 3.55e-06, - "comrade": 3.55e-06, - "concentrating": 3.55e-06, - "continents": 2.45e-07, - "convertible": 3.55e-06, - "cory": 3.55e-06, - "crater": 3.55e-06, - "creeping": 3.55e-06, - "cu": 3.55e-06, - "cumulative": 3.55e-06, - "curator": 3.55e-06, - "dat": 3.55e-06, - "deity": 3.55e-06, - "desperation": 3.55e-06, - "detrimental": 3.55e-06, - "diarrhea": 3.55e-06, - "disposed": 3.55e-06, - "distortion": 3.55e-06, - "doctoral": 3.55e-06, - "draining": 3.55e-06, - "drains": 3.55e-06, - "dramas": 1.74e-07, - "drifting": 3.55e-06, - "edged": 3.55e-06, - "educator": 3.55e-06, - "entitlement": 3.55e-06, - "esp": 3.55e-06, - "faux": 3.55e-06, - "favoured": 3.55e-06, - "fearless": 3.55e-06, - "finch": 3.55e-06, - "fragment": 3.55e-06, - "fulfil": 3.55e-06, - "galaxies": 3.55e-06, - "gangster": 3.55e-06, - "garner": 3.55e-06, - "gil": 3.55e-06, - "giveaway": 3.55e-06, - "graphs": 3.55e-06, - "gypsy": 3.55e-06, - "harassed": 3.55e-06, - "heater": 3.55e-06, - "hesitation": 3.55e-06, - "humiliation": 3.55e-06, - "ic": 3.55e-06, - "impairment": 3.55e-06, - "impatient": 3.55e-06, - "incorporates": 3.55e-06, - "indy": 3.55e-06, - "insisting": 3.55e-06, - "intricate": 3.55e-06, - "irvine": 3.55e-06, - "jensen": 3.55e-06, - "kang": 3.55e-06, - "kara": 3.55e-06, - "karate": 3.55e-06, - "kc": 3.55e-06, - "kingdoms": 9.55e-07, - "kite": 3.55e-06, - "labeling": 3.55e-06, - "leasing": 3.55e-06, - "lighthouse": 3.55e-06, - "longevity": 3.55e-06, - "lore": 3.55e-06, - "lush": 3.55e-06, - "luxurious": 3.55e-06, - "mal": 3.55e-06, - "mash": 3.55e-06, - "mba": 3.55e-06, - "meg": 3.55e-06, - "meltdown": 3.55e-06, - "messiah": 3.55e-06, - "meteor": 3.55e-06, - "ministerial": 3.55e-06, - "mmm": 3.55e-06, - "mocking": 3.55e-06, - "monty": 3.55e-06, - "motions": 3.55e-06, - "mystical": 3.55e-06, - "nu": 3.55e-06, - "obstruction": 3.55e-06, - "odyssey": 3.55e-06, - "om": 3.55e-06, - "onboard": 3.55e-06, - "oneself": 3.55e-06, - "org": 3.55e-06, - "outsider": 3.55e-06, - "overcoming": 3.55e-06, - "palms": 3.55e-06, - "penetrate": 3.55e-06, - "phelps": 3.55e-06, - "phi": 3.55e-06, - "philippe": 3.55e-06, - "pioneers": 6.46e-08, - "plaintiff": 3.55e-06, - "planners": 3.55e-06, - "plum": 3.55e-06, - "plural": 3.55e-06, - "poe": 3.55e-06, - "portrayal": 3.55e-06, - "prevail": 3.55e-06, - "prevailing": 3.55e-06, - "prostitutes": 3.55e-06, - "publishes": 3.55e-06, - "puff": 3.55e-06, - "pun": 3.55e-06, - "puzzles": 3.55e-06, - "rag": 3.55e-06, - "raj": 3.55e-06, - "rampant": 3.55e-06, - "recommending": 3.55e-06, - "reggie": 3.55e-06, - "regulating": 3.55e-06, - "repairing": 3.55e-06, - "repeats": 3.55e-06, - "replicate": 3.55e-06, - "replying": 3.55e-06, - "retaliation": 3.55e-06, - "rf": 3.55e-06, - "risking": 3.55e-06, - "rooftop": 3.55e-06, - "rooting": 3.55e-06, - "routing": 3.55e-06, - "rv": 3.55e-06, - "safeguard": 3.55e-06, - "scaled": 3.55e-06, - "sedan": 3.55e-06, - "sentiments": 3.55e-06, - "sewage": 3.55e-06, - "sgt": 3.55e-06, - "shoppers": 8.32e-08, - "simpsons": 7.24e-07, - "sitcom": 3.55e-06, - "slang": 3.55e-06, - "slid": 3.55e-06, - "sparked": 3.55e-06, - "spices": 3.55e-06, - "spirited": 3.55e-06, - "spirituality": 3.55e-06, - "spoiler": 3.55e-06, - "suitcase": 3.55e-06, - "summon": 3.55e-06, - "survives": 3.55e-06, - "sustaining": 3.55e-06, - "tavern": 3.55e-06, - "teasing": 3.55e-06, - "telegram": 3.55e-06, - "titanium": 3.55e-06, - "trailing": 3.55e-06, - "tuck": 3.55e-06, - "turbulence": 3.55e-06, - "ulster": 3.55e-06, - "unesco": 3.55e-06, - "uneven": 3.55e-06, - "urgency": 3.55e-06, - "vibes": 3.55e-06, - "viktor": 3.55e-06, - "ware": 3.55e-06, - "waterproof": 3.55e-06, - "welcomes": 3.55e-06, - "whining": 3.55e-06, - "wonderfully": 3.55e-06, - "wording": 3.55e-06, - "zelda": 3.55e-06, - "abdullah": 3.47e-06, - "academia": 3.47e-06, - "accreditation": 3.47e-06, - "administer": 3.47e-06, - "admittedly": 3.47e-06, - "aforementioned": 3.47e-06, - "algae": 3.47e-06, - "alterations": 3.47e-06, - "angelo": 3.47e-06, - "apache": 3.47e-06, - "ariel": 3.47e-06, - "articulate": 3.47e-06, - "asbestos": 3.47e-06, - "atleast": 3.47e-06, - "avoidance": 3.47e-06, - "babylon": 3.47e-06, - "barney": 3.47e-06, - "bearings": 3.47e-06, - "bjp": 3.47e-06, - "boutique": 3.47e-06, - "bowie": 3.47e-06, - "brewer": 3.47e-06, - "brits": 5.75e-08, - "buffet": 3.47e-06, - "burner": 3.47e-06, - "cain": 3.47e-06, - "casa": 3.47e-06, - "catcher": 3.47e-06, - "cathy": 3.47e-06, - "charms": 3.47e-06, - "chassis": 3.47e-06, - "chores": 3.47e-06, - "clap": 3.47e-06, - "clarification": 3.47e-06, - "colder": 3.47e-06, - "concluding": 3.47e-06, - "consolation": 3.47e-06, - "consoles": 1.78e-07, - "corresponds": 3.47e-06, - "counters": 3.47e-06, - "covert": 3.47e-06, - "cringe": 3.47e-06, - "crosby": 3.47e-06, - "cunningham": 3.47e-06, - "cw": 3.47e-06, - "dagger": 3.47e-06, - "dealings": 3.47e-06, - "deferred": 3.47e-06, - "depicting": 3.47e-06, - "descriptive": 3.47e-06, - "dialect": 3.47e-06, - "dipped": 3.47e-06, - "dolly": 3.47e-06, - "downfall": 3.47e-06, - "downside": 3.47e-06, - "dryer": 3.47e-06, - "dunk": 3.47e-06, - "elijah": 3.47e-06, - "empowerment": 3.47e-06, - "endings": 3.47e-06, - "energies": 3.47e-06, - "ensuing": 3.47e-06, - "ensured": 3.47e-06, - "ethic": 3.47e-06, - "executing": 3.47e-06, - "expire": 3.47e-06, - "fireplace": 3.47e-06, - "flair": 3.47e-06, - "fossils": 3.47e-06, - "fugitive": 3.47e-06, - "gpa": 3.47e-06, - "greenwich": 3.47e-06, - "gujarat": 3.47e-06, - "hah": 3.47e-06, - "hanson": 3.47e-06, - "haunt": 3.47e-06, - "hayden": 3.47e-06, - "hazel": 3.47e-06, - "headset": 3.47e-06, - "hernandez": 3.47e-06, - "hk": 3.47e-06, - "homecoming": 3.47e-06, - "hurdles": 3.47e-06, - "hussein": 3.47e-06, - "hyped": 3.47e-06, - "icy": 3.47e-06, - "indulge": 3.47e-06, - "inmate": 3.47e-06, - "inscription": 3.47e-06, - "interpreter": 3.47e-06, - "intuition": 3.47e-06, - "invaluable": 3.47e-06, - "jaime": 3.47e-06, - "jenna": 3.47e-06, - "js": 6.17e-07, - "kaiser": 3.47e-06, - "kettle": 3.47e-06, - "kylie": 3.47e-06, - "laptops": 1.45e-07, - "lara": 3.47e-06, - "lasers": 3.47e-06, - "lax": 3.47e-06, - "lest": 3.47e-06, - "levi": 3.47e-06, - "lilly": 3.47e-06, - "malta": 3.47e-06, - "markings": 3.47e-06, - "mcconnell": 3.47e-06, - "mcgregor": 3.47e-06, - "menace": 3.47e-06, - "methane": 3.47e-06, - "mexicans": 3.47e-06, - "ming": 3.47e-06, - "misuse": 3.47e-06, - "mitigate": 3.47e-06, - "mona": 3.47e-06, - "nairobi": 3.47e-06, - "nana": 3.47e-06, - "nausea": 3.47e-06, - "neurological": 3.47e-06, - "nicola": 3.47e-06, - "optimum": 3.47e-06, - "ounces": 3.47e-06, - "overwhelmingly": 3.47e-06, - "oyster": 3.47e-06, - "pastoral": 3.47e-06, - "patented": 3.47e-06, - "pea": 3.47e-06, - "pearls": 2.24e-07, - "physiological": 3.47e-06, - "pioneering": 3.47e-06, - "pleasures": 3.47e-06, - "policemen": 3.47e-06, - "poo": 3.47e-06, - "poultry": 3.47e-06, - "prominence": 3.47e-06, - "prophets": 3.09e-07, - "prosecute": 3.47e-06, - "ptsd": 3.47e-06, - "quartet": 3.47e-06, - "radically": 3.47e-06, - "raping": 3.47e-06, - "reactive": 3.47e-06, - "reboot": 3.47e-06, - "renamed": 3.47e-06, - "resides": 3.47e-06, - "restrictive": 3.47e-06, - "robotic": 3.47e-06, - "runaway": 3.47e-06, - "saturn": 3.47e-06, - "sawyer": 3.47e-06, - "screenplay": 3.47e-06, - "scriptures": 3.47e-06, - "sect": 3.47e-06, - "seismic": 3.47e-06, - "seminary": 3.47e-06, - "sg": 3.47e-06, - "sheldon": 3.47e-06, - "shelley": 3.47e-06, - "shouts": 3.47e-06, - "sideways": 3.47e-06, - "sighted": 3.47e-06, - "skinned": 3.47e-06, - "skipper": 3.47e-06, - "slain": 3.47e-06, - "smuggling": 3.47e-06, - "softer": 3.47e-06, - "sonia": 3.47e-06, - "specs": 3.09e-08, - "squads": 3.98e-07, - "stash": 3.47e-06, - "stephens": 9.12e-07, - "stimulating": 3.47e-06, - "strawberries": 3.47e-06, - "striped": 3.47e-06, - "stroll": 3.47e-06, - "swiftly": 3.47e-06, - "texans": 3.47e-06, - "theatres": 5.13e-07, - "tolerated": 3.47e-06, - "transcription": 3.47e-06, - "tucson": 3.47e-06, - "tweeting": 3.47e-06, - "ul": 3.47e-06, - "unicorn": 3.47e-06, - "uniquely": 3.47e-06, - "unrealistic": 3.47e-06, - "vase": 3.47e-06, - "vat": 3.47e-06, - "vineyard": 3.47e-06, - "viola": 3.47e-06, - "waterfall": 3.47e-06, - "waved": 3.47e-06, - "weaving": 3.47e-06, - "welding": 3.47e-06, - "whereabouts": 3.47e-06, - "yah": 3.47e-06, - "yummy": 3.47e-06, - "zeus": 3.47e-06, - "abortions": 3.39e-06, - "acknowledges": 3.39e-06, - "adobe": 3.39e-06, - "adolescents": 3.39e-06, - "ala": 3.09e-08, - "alarming": 3.39e-06, - "alexandra": 3.39e-06, - "almond": 3.39e-06, - "amenities": 3.39e-06, - "amounted": 3.39e-06, - "amused": 3.39e-06, - "antarctica": 3.39e-06, - "arabian": 3.39e-06, - "ari": 3.39e-06, - "asphalt": 3.39e-06, - "atrocities": 3.39e-06, - "aviv": 3.39e-06, - "bach": 3.39e-06, - "backbone": 3.39e-06, - "bahamas": 3.39e-06, - "beetle": 3.39e-06, - "blizzard": 3.39e-06, - "bolivia": 3.39e-06, - "booklet": 3.39e-06, - "bottoms": 6.17e-08, - "brawl": 3.39e-06, - "brittany": 3.39e-06, - "bryce": 3.39e-06, - "bu": 3.39e-06, - "burgess": 3.39e-06, - "butts": 6.31e-08, - "camden": 3.39e-06, - "cameroon": 3.39e-06, - "celestial": 3.39e-06, - "characterization": 3.39e-06, - "chevy": 3.39e-06, - "choked": 3.39e-06, - "ci": 3.39e-06, - "clashes": 3.39e-06, - "clint": 3.39e-06, - "comin": 3.39e-06, - "communicated": 3.39e-06, - "confessions": 3.39e-06, - "conform": 3.39e-06, - "conversely": 3.39e-06, - "countess": 3.39e-06, - "creations": 3.39e-06, - "cues": 3.39e-06, - "customary": 3.39e-06, - "dalton": 3.39e-06, - "debuted": 3.39e-06, - "declines": 3.39e-06, - "depicts": 3.39e-06, - "devote": 3.39e-06, - "dinners": 9.33e-08, - "diplomats": 8.71e-08, - "dispose": 3.39e-06, - "distinctly": 3.39e-06, - "evacuate": 3.39e-06, - "everett": 3.39e-06, - "exits": 3.39e-06, - "experimenting": 3.39e-06, - "exploding": 3.39e-06, - "exploits": 3.39e-06, - "favourable": 3.39e-06, - "ferdinand": 3.39e-06, - "flourish": 3.39e-06, - "flowering": 3.39e-06, - "fractures": 3.39e-06, - "fragrance": 3.39e-06, - "franz": 3.39e-06, - "fungus": 3.39e-06, - "germanys": 6.17e-08, - "gloucester": 3.39e-06, - "griffith": 3.39e-06, - "guarding": 3.39e-06, - "gunfire": 3.39e-06, - "harvesting": 3.39e-06, - "havana": 3.39e-06, - "heroine": 3.39e-06, - "hilary": 3.39e-06, - "hoax": 3.39e-06, - "imf": 3.39e-06, - "impending": 3.39e-06, - "insignificant": 3.39e-06, - "insurer": 3.39e-06, - "intercepted": 3.39e-06, - "interfering": 3.39e-06, - "itv": 3.39e-06, - "jonah": 3.39e-06, - "kerala": 3.39e-06, - "knowledgeable": 3.39e-06, - "ku": 3.39e-06, - "liberated": 3.39e-06, - "lingerie": 3.39e-06, - "lite": 3.39e-06, - "localities": 3.39e-06, - "locke": 3.39e-06, - "logos": 7.94e-08, - "lurking": 3.39e-06, - "madden": 3.39e-06, - "magician": 3.39e-06, - "magistrates": 2.63e-07, - "mai": 3.39e-06, - "mali": 3.39e-06, - "maneuver": 3.39e-06, - "marrow": 3.39e-06, - "marvelous": 3.39e-06, - "mas": 5.5e-07, - "mattered": 3.39e-06, - "medicinal": 3.39e-06, - "melanie": 3.39e-06, - "mono": 3.39e-06, - "murderers": 1.74e-07, - "nas": 1.26e-07, - "numb": 3.39e-06, - "omitted": 3.39e-06, - "originals": 1.23e-07, - "overlook": 3.39e-06, - "partnered": 3.39e-06, - "pastry": 3.39e-06, - "pawn": 3.39e-06, - "pediatric": 3.39e-06, - "persist": 3.39e-06, - "personalized": 3.39e-06, - "planner": 3.39e-06, - "plaster": 3.39e-06, - "playful": 3.39e-06, - "pleading": 3.39e-06, - "professions": 8.13e-08, - "quirky": 3.39e-06, - "quota": 3.39e-06, - "quran": 7.59e-08, - "randolph": 3.39e-06, - "rationale": 3.39e-06, - "reap": 3.39e-06, - "rebound": 3.39e-06, - "recess": 3.39e-06, - "redeem": 3.39e-06, - "reformation": 3.39e-06, - "regimes": 5.25e-07, - "replacements": 3.39e-06, - "residue": 3.39e-06, - "robotics": 3.39e-06, - "rocked": 3.39e-06, - "runoff": 3.39e-06, - "rwanda": 3.39e-06, - "salsa": 3.39e-06, - "scanned": 3.39e-06, - "screenshots": 3.39e-06, - "semiconductor": 3.39e-06, - "sentimental": 3.39e-06, - "serbian": 3.39e-06, - "severed": 3.39e-06, - "shocks": 3.39e-06, - "simultaneous": 3.39e-06, - "slaughtered": 3.39e-06, - "snatch": 3.39e-06, - "sneakers": 3.39e-06, - "somali": 3.39e-06, - "spikes": 1.29e-07, - "spooky": 3.39e-06, - "squeezed": 3.39e-06, - "staffing": 3.39e-06, - "stanton": 3.39e-06, - "stealth": 3.39e-06, - "strained": 3.39e-06, - "subscribed": 3.39e-06, - "subset": 3.39e-06, - "suspense": 3.39e-06, - "suzanne": 3.39e-06, - "swearing": 3.39e-06, - "swore": 3.39e-06, - "syntax": 3.39e-06, - "tad": 3.39e-06, - "tandem": 3.39e-06, - "tasked": 3.39e-06, - "tasmania": 3.39e-06, - "televised": 3.39e-06, - "tempered": 3.39e-06, - "tertiary": 3.39e-06, - "thyroid": 3.39e-06, - "tidy": 3.39e-06, - "timeless": 3.39e-06, - "tokens": 3.39e-06, - "uefa": 3.39e-06, - "unreliable": 3.39e-06, - "upbeat": 3.39e-06, - "usable": 3.39e-06, - "vanguard": 3.39e-06, - "vc": 3.39e-06, - "vomit": 3.39e-06, - "vulgar": 3.39e-06, - "waiver": 3.39e-06, - "walton": 3.39e-06, - "watershed": 3.39e-06, - "weave": 3.39e-06, - "wilkinson": 3.39e-06, - "wiring": 3.39e-06, - "yan": 3.39e-06, - "adrenaline": 3.31e-06, - "alexa": 3.31e-06, - "alleviate": 3.31e-06, - "amd": 3.31e-06, - "anarchy": 3.31e-06, - "ang": 3.31e-06, - "ashore": 3.31e-06, - "aura": 3.31e-06, - "bachelors": 1.55e-06, - "baden": 3.31e-06, - "ballroom": 3.31e-06, - "beginner": 3.31e-06, - "beginners": 6.76e-07, - "bermuda": 3.31e-06, - "bilingual": 3.31e-06, - "bombings": 3.31e-06, - "bonded": 3.31e-06, - "boosting": 3.31e-06, - "boyle": 3.31e-06, - "brenda": 3.31e-06, - "brewers": 2.82e-07, - "briggs": 3.31e-06, - "buchanan": 3.31e-06, - "buckingham": 3.31e-06, - "bundles": 3.31e-06, - "calcutta": 3.31e-06, - "caleb": 3.31e-06, - "canopy": 3.31e-06, - "chennai": 3.31e-06, - "cherish": 3.31e-06, - "chuckle": 3.31e-06, - "civilized": 3.31e-06, - "comb": 3.31e-06, - "completes": 3.31e-06, - "complexes": 3.31e-06, - "conceal": 3.31e-06, - "condemnation": 3.31e-06, - "contemplating": 3.31e-06, - "cores": 1.05e-07, - "cruiser": 3.31e-06, - "cruising": 3.31e-06, - "curl": 3.31e-06, - "dams": 1.26e-07, - "dared": 3.31e-06, - "dart": 3.31e-06, - "defends": 3.31e-06, - "demolished": 3.31e-06, - "denim": 3.31e-06, - "dependency": 3.31e-06, - "detecting": 3.31e-06, - "dew": 3.31e-06, - "dickens": 1.66e-08, - "disable": 3.31e-06, - "disconnected": 3.31e-06, - "dishonest": 3.31e-06, - "dosage": 3.31e-06, - "doubtful": 3.31e-06, - "dysfunction": 3.31e-06, - "ecosystems": 3.31e-06, - "encyclopedia": 3.31e-06, - "endowment": 3.31e-06, - "engraved": 3.31e-06, - "enrichment": 3.31e-06, - "erect": 3.31e-06, - "erection": 3.31e-06, - "eruption": 3.31e-06, - "examiner": 3.31e-06, - "exercised": 3.31e-06, - "exeter": 3.31e-06, - "expenditures": 3.31e-06, - "expires": 3.31e-06, - "fairfax": 3.31e-06, - "fam": 3.31e-06, - "fauna": 3.31e-06, - "feds": 5.62e-07, - "fidelity": 3.31e-06, - "finely": 3.31e-06, - "fischer": 3.31e-06, - "flirt": 3.31e-06, - "fluent": 3.31e-06, - "flute": 3.31e-06, - "footprint": 3.31e-06, - "fore": 3.31e-06, - "forefront": 3.31e-06, - "formulated": 3.31e-06, - "freaked": 3.31e-06, - "freshwater": 3.31e-06, - "fyi": 3.31e-06, - "gareth": 3.31e-06, - "gotham": 3.31e-06, - "gr": 3.31e-06, - "grouped": 3.31e-06, - "halted": 3.31e-06, - "harden": 3.31e-06, - "hardened": 3.31e-06, - "hateful": 3.31e-06, - "haunting": 3.31e-06, - "henri": 3.31e-06, - "hepatitis": 3.31e-06, - "honoring": 3.31e-06, - "horace": 3.31e-06, - "horrors": 3.31e-06, - "howe": 3.31e-06, - "huntington": 3.31e-06, - "ieee": 3.31e-06, - "inhabited": 3.31e-06, - "inherit": 3.31e-06, - "initiation": 3.31e-06, - "injections": 3.31e-06, - "insulted": 3.31e-06, - "integrating": 3.31e-06, - "intensely": 3.31e-06, - "ions": 3.31e-06, - "janeiro": 3.31e-06, - "jeopardy": 3.31e-06, - "joanna": 3.31e-06, - "kensington": 3.31e-06, - "ks": 4.57e-07, - "lafayette": 3.31e-06, - "lc": 3.31e-06, - "listener": 3.31e-06, - "lockdown": 3.31e-06, - "mandarin": 3.31e-06, - "mast": 3.31e-06, - "matte": 3.31e-06, - "mccartney": 3.31e-06, - "mediocre": 3.31e-06, - "middleton": 3.31e-06, - "mixes": 3.31e-06, - "morons": 3.31e-06, - "morse": 3.31e-06, - "mounts": 5.13e-08, - "nfc": 3.31e-06, - "niagara": 3.31e-06, - "nicest": 3.31e-06, - "nicotine": 3.31e-06, - "nl": 3.31e-06, - "nora": 3.31e-06, - "nordic": 3.31e-06, - "nos": 2e-07, - "notions": 3.31e-06, - "oranges": 9.77e-08, - "outward": 3.31e-06, - "overrated": 3.31e-06, - "packaged": 3.31e-06, - "packets": 3.31e-06, - "paige": 3.31e-06, - "passports": 3.31e-06, - "pb": 3.31e-06, - "pbs": 3.31e-06, - "peanuts": 3.31e-06, - "pep": 3.31e-06, - "piracy": 3.31e-06, - "platoon": 3.31e-06, - "practise": 3.31e-06, - "presses": 3.31e-06, - "rave": 3.31e-06, - "reactors": 6.46e-08, - "recreate": 3.31e-06, - "reeves": 5.5e-08, - "reigns": 3.31e-06, - "reno": 3.31e-06, - "resembling": 3.31e-06, - "residual": 3.31e-06, - "restricting": 3.31e-06, - "robe": 3.31e-06, - "rpg": 3.31e-06, - "rye": 3.31e-06, - "sails": 3.31e-06, - "sayin": 3.31e-06, - "sensational": 3.31e-06, - "sexism": 3.31e-06, - "smokers": 1.15e-07, - "sneaky": 3.31e-06, - "socket": 3.31e-06, - "spanning": 3.31e-06, - "specifics": 3.31e-06, - "spouses": 2.69e-07, - "starvation": 3.31e-06, - "starve": 3.31e-06, - "stool": 3.31e-06, - "stricken": 3.31e-06, - "stripping": 3.31e-06, - "subscriber": 3.31e-06, - "systematically": 3.31e-06, - "taxed": 3.31e-06, - "tc": 3.31e-06, - "tex": 3.31e-06, - "thanking": 3.31e-06, - "tibet": 3.31e-06, - "toledo": 3.31e-06, - "tread": 3.31e-06, - "tripping": 3.31e-06, - "truce": 3.31e-06, - "tsunami": 3.31e-06, - "turbines": 2.19e-08, - "turmoil": 3.31e-06, - "typed": 3.31e-06, - "tyranny": 3.31e-06, - "tyres": 3.31e-06, - "unfit": 3.31e-06, - "uphold": 3.31e-06, - "vita": 3.31e-06, - "volunteering": 3.31e-06, - "wal": 3.31e-06, - "warwick": 3.31e-06, - "waterloo": 3.31e-06, - "weeds": 3.31e-06, - "weir": 3.31e-06, - "wellbeing": 3.31e-06, - "wikileaks": 3.31e-06, - "wonderland": 3.31e-06, - "wrestler": 3.31e-06, - "yrs": 3.31e-06, - "zimmerman": 3.31e-06, - "zoning": 3.31e-06, - "abandoning": 3.24e-06, - "abolition": 3.24e-06, - "accessibility": 3.24e-06, - "acquainted": 3.24e-06, - "airplanes": 8.91e-08, - "airs": 2.51e-07, - "aloud": 3.24e-06, - "angular": 3.24e-06, - "anterior": 3.24e-06, - "appendix": 3.24e-06, - "approx": 3.24e-06, - "atp": 3.24e-06, - "attackers": 1.86e-07, - "auditorium": 3.24e-06, - "augustine": 3.24e-06, - "barking": 3.24e-06, - "bauer": 3.24e-06, - "beckham": 3.24e-06, - "behaving": 3.24e-06, - "benign": 3.24e-06, - "berkshire": 3.24e-06, - "bleach": 3.24e-06, - "boast": 3.24e-06, - "bowen": 3.24e-06, - "brandy": 3.24e-06, - "brethren": 3.24e-06, - "brink": 3.24e-06, - "bruh": 3.24e-06, - "carving": 3.24e-06, - "cas": 1.7e-07, - "cass": 1.66e-08, - "cctv": 3.24e-06, - "cecil": 3.24e-06, - "cheeky": 3.24e-06, - "chemist": 3.24e-06, - "choi": 3.24e-06, - "coastline": 3.24e-06, - "cobra": 3.24e-06, - "collaborate": 3.24e-06, - "comparatively": 3.24e-06, - "compensated": 3.24e-06, - "competed": 3.24e-06, - "conor": 3.24e-06, - "cosmos": 6.17e-08, - "councillors": 3.24e-06, - "crafting": 3.24e-06, - "cuff": 3.24e-06, - "curling": 3.24e-06, - "cyclone": 3.24e-06, - "dedicate": 3.24e-06, - "deleting": 3.24e-06, - "delusional": 3.24e-06, - "deposition": 3.24e-06, - "derive": 3.24e-06, - "descend": 3.24e-06, - "descending": 3.24e-06, - "diligence": 3.24e-06, - "disciplined": 3.24e-06, - "discriminate": 3.24e-06, - "distributions": 3.24e-06, - "diversion": 3.24e-06, - "doorway": 3.24e-06, - "dp": 3.24e-06, - "drilled": 3.24e-06, - "dumpster": 3.24e-06, - "emailed": 3.24e-06, - "empower": 3.24e-06, - "ernst": 3.24e-06, - "ethiopian": 3.24e-06, - "europes": 6.17e-08, - "excerpt": 3.24e-06, - "existent": 3.24e-06, - "ezra": 3.24e-06, - "fabricated": 3.24e-06, - "fandom": 3.24e-06, - "filmmakers": 1.17e-07, - "filtered": 3.24e-06, - "foe": 3.24e-06, - "gatherings": 3.24e-06, - "georgian": 3.24e-06, - "getaway": 3.24e-06, - "glamour": 3.24e-06, - "heirs": 3.24e-06, - "humphrey": 3.24e-06, - "inbox": 3.24e-06, - "incidentally": 3.24e-06, - "infinitely": 3.24e-06, - "inflated": 3.24e-06, - "influenza": 3.24e-06, - "informs": 3.24e-06, - "inspected": 3.24e-06, - "instructional": 3.24e-06, - "interviewer": 3.24e-06, - "introductory": 3.24e-06, - "iot": 3.24e-06, - "jaguar": 3.24e-06, - "jamal": 3.24e-06, - "judgments": 3.24e-06, - "laurent": 3.24e-06, - "licking": 3.24e-06, - "ling": 3.24e-06, - "loft": 3.24e-06, - "lois": 3.24e-06, - "massively": 3.24e-06, - "mediated": 3.24e-06, - "mediation": 3.24e-06, - "merrill": 3.24e-06, - "metrics": 3.24e-06, - "millennials": 3.24e-06, - "modular": 3.24e-06, - "nico": 3.24e-06, - "nutrient": 3.24e-06, - "occupies": 3.24e-06, - "oslo": 3.24e-06, - "outlaw": 3.24e-06, - "oversee": 3.24e-06, - "pageant": 3.24e-06, - "parachute": 3.24e-06, - "parasite": 3.24e-06, - "parenthood": 3.24e-06, - "perennial": 3.24e-06, - "persistence": 3.24e-06, - "piers": 3.24e-06, - "pleas": 3.24e-06, - "porto": 3.24e-06, - "postage": 3.24e-06, - "praises": 3.24e-06, - "preschool": 3.24e-06, - "procedural": 3.24e-06, - "profoundly": 3.24e-06, - "prohibit": 3.24e-06, - "pronunciation": 3.24e-06, - "provoked": 3.24e-06, - "quotation": 3.24e-06, - "rappers": 3.31e-07, - "registers": 8.71e-08, - "relentless": 3.24e-06, - "remnants": 3.24e-06, - "repression": 3.24e-06, - "reprinted": 3.24e-06, - "resolving": 3.24e-06, - "ridiculously": 3.24e-06, - "roaring": 3.24e-06, - "salisbury": 3.24e-06, - "scandals": 3.24e-06, - "scrapped": 3.24e-06, - "seasoned": 3.24e-06, - "shootout": 3.24e-06, - "sigma": 3.24e-06, - "simulations": 3.24e-06, - "sk": 3.24e-06, - "somethin": 3.24e-06, - "sourced": 3.24e-06, - "specializing": 3.24e-06, - "spectator": 3.24e-06, - "speculative": 3.24e-06, - "spins": 3.24e-06, - "stadiums": 3.31e-07, - "stalls": 3.24e-06, - "stripe": 3.24e-06, - "submerged": 3.24e-06, - "surgeries": 3.24e-06, - "symmetry": 3.24e-06, - "syndicate": 3.24e-06, - "tae": 3.24e-06, - "thornton": 3.24e-06, - "tibetan": 3.24e-06, - "tighten": 3.24e-06, - "townsend": 3.24e-06, - "trenches": 3.24e-06, - "trustworthy": 3.24e-06, - "tvs": 2.19e-06, - "twelfth": 3.24e-06, - "tyre": 3.24e-06, - "ultrasound": 3.24e-06, - "usher": 3.24e-06, - "vacations": 3.24e-06, - "vascular": 3.24e-06, - "vets": 2.19e-07, - "watkins": 3.24e-06, - "weiss": 3.24e-06, - "wholesome": 3.24e-06, - "wiley": 3.24e-06, - "witnessing": 3.24e-06, - "workouts": 3.24e-06, - "yielded": 3.24e-06, - "yorks": 3.09e-07, - "absorbing": 3.16e-06, - "adapting": 3.16e-06, - "addicts": 6.31e-08, - "adjoining": 3.16e-06, - "albuquerque": 3.16e-06, - "allegation": 3.16e-06, - "alternating": 3.16e-06, - "ancestry": 3.16e-06, - "ankles": 3.16e-06, - "annex": 3.16e-06, - "annexed": 3.16e-06, - "antibiotic": 3.16e-06, - "arresting": 3.16e-06, - "augmented": 3.16e-06, - "avenues": 5.5e-08, - "avid": 3.16e-06, - "avoids": 3.16e-06, - "badges": 3.16e-06, - "barbados": 3.16e-06, - "barge": 3.16e-06, - "bartender": 3.16e-06, - "bert": 3.16e-06, - "birch": 3.16e-06, - "bland": 3.16e-06, - "blended": 3.16e-06, - "bohemian": 3.16e-06, - "bong": 3.16e-06, - "bounded": 3.16e-06, - "bows": 3.16e-06, - "breastfeeding": 3.16e-06, - "bribe": 3.16e-06, - "bridal": 3.16e-06, - "broadcasts": 3.16e-06, - "broccoli": 3.16e-06, - "brushing": 3.16e-06, - "buckets": 3.16e-06, - "buckle": 3.16e-06, - "burlington": 3.16e-06, - "bursts": 3.16e-06, - "cannes": 3.16e-06, - "canoe": 3.16e-06, - "centred": 3.16e-06, - "chilly": 3.16e-06, - "chords": 3.16e-06, - "chu": 3.16e-06, - "cider": 3.16e-06, - "clowns": 1.02e-07, - "clueless": 3.16e-06, - "cobb": 3.16e-06, - "consciously": 3.16e-06, - "corpses": 3.16e-06, - "correlated": 3.16e-06, - "correspond": 3.16e-06, - "cradle": 3.16e-06, - "crappy": 3.16e-06, - "crippled": 3.16e-06, - "damien": 3.16e-06, - "dayton": 3.16e-06, - "decency": 3.16e-06, - "deficits": 3.16e-06, - "despise": 3.16e-06, - "destroyer": 3.16e-06, - "diocese": 3.16e-06, - "dispersed": 3.16e-06, - "docs": 3.31e-07, - "doorstep": 3.16e-06, - "eliot": 3.16e-06, - "embarked": 3.16e-06, - "enriched": 3.16e-06, - "equip": 3.16e-06, - "faa": 3.16e-06, - "fellas": 6.31e-08, - "foley": 3.16e-06, - "footing": 3.16e-06, - "fulton": 3.16e-06, - "garments": 3.16e-06, - "glamorous": 3.16e-06, - "goldberg": 3.16e-06, - "growers": 3.16e-06, - "handler": 3.16e-06, - "hangover": 3.16e-06, - "haters": 3.16e-06, - "havoc": 3.16e-06, - "hee": 3.16e-06, - "hind": 3.16e-06, - "hitter": 3.16e-06, - "hive": 3.16e-06, - "homophobic": 3.16e-06, - "honolulu": 3.16e-06, - "humid": 3.16e-06, - "hyderabad": 3.16e-06, - "illuminated": 3.16e-06, - "imam": 3.16e-06, - "implants": 3.16e-06, - "indicted": 3.16e-06, - "inexperienced": 3.16e-06, - "influencing": 3.16e-06, - "invading": 3.16e-06, - "irritated": 3.16e-06, - "jackpot": 3.16e-06, - "javascript": 3.16e-06, - "jurassic": 3.16e-06, - "kangaroo": 3.16e-06, - "ke": 3.16e-06, - "klaus": 3.16e-06, - "knowingly": 3.16e-06, - "kuala": 3.16e-06, - "legged": 3.16e-06, - "lex": 3.16e-06, - "liberalism": 3.16e-06, - "liberia": 3.16e-06, - "lithuania": 3.16e-06, - "litre": 3.16e-06, - "locomotive": 3.16e-06, - "longing": 3.16e-06, - "lsu": 3.16e-06, - "mailed": 3.16e-06, - "manny": 3.16e-06, - "mantra": 3.16e-06, - "mapped": 3.16e-06, - "marcel": 3.16e-06, - "mating": 3.16e-06, - "mckay": 3.16e-06, - "mesa": 3.16e-06, - "microscope": 3.16e-06, - "milky": 3.16e-06, - "mixer": 3.16e-06, - "modeled": 3.16e-06, - "moe": 3.16e-06, - "monumental": 3.16e-06, - "moth": 3.16e-06, - "multiply": 3.16e-06, - "mv": 3.16e-06, - "narcotics": 3.16e-06, - "nicky": 3.16e-06, - "nuggets": 3.16e-06, - "nuisance": 3.16e-06, - "obedience": 3.16e-06, - "objected": 3.16e-06, - "obligated": 3.16e-06, - "organise": 3.16e-06, - "outing": 3.16e-06, - "overdue": 3.16e-06, - "overload": 3.16e-06, - "parasites": 3.16e-06, - "payable": 3.16e-06, - "paycheck": 3.16e-06, - "peaches": 3.16e-06, - "peaked": 3.16e-06, - "picturesque": 3.16e-06, - "pilgrimage": 3.16e-06, - "pillows": 3.16e-06, - "pivot": 3.16e-06, - "pivotal": 3.16e-06, - "por": 3.16e-06, - "pressured": 3.16e-06, - "preventive": 3.16e-06, - "primer": 3.16e-06, - "profitability": 3.16e-06, - "progressing": 3.16e-06, - "provoke": 3.16e-06, - "pulmonary": 3.16e-06, - "punishing": 3.16e-06, - "rad": 3.16e-06, - "radicals": 3.16e-06, - "raspberry": 3.16e-06, - "reconcile": 3.16e-06, - "regression": 3.16e-06, - "resilient": 3.16e-06, - "roaming": 3.16e-06, - "router": 3.16e-06, - "routines": 3.16e-06, - "ru": 3.16e-06, - "ryder": 3.16e-06, - "sabbath": 3.16e-06, - "schneider": 3.16e-06, - "schwartz": 3.16e-06, - "scouting": 3.16e-06, - "secretaries": 3.16e-06, - "selfies": 3.16e-06, - "seminars": 3.16e-06, - "shortages": 3.16e-06, - "shortened": 3.16e-06, - "shovel": 3.16e-06, - "skinner": 3.16e-06, - "smelled": 3.16e-06, - "smh": 3.16e-06, - "societys": 3.16e-06, - "specializes": 3.16e-06, - "splits": 3.16e-06, - "staggering": 3.16e-06, - "statutes": 3.16e-06, - "striving": 3.16e-06, - "suing": 3.16e-06, - "surname": 3.16e-06, - "synonymous": 3.16e-06, - "tackling": 3.16e-06, - "tai": 3.16e-06, - "tallest": 3.16e-06, - "taped": 3.16e-06, - "tedious": 3.16e-06, - "toxins": 3.16e-06, - "troubling": 3.16e-06, - "tug": 3.16e-06, - "twists": 3.16e-06, - "utilization": 3.16e-06, - "volkswagen": 3.16e-06, - "walkers": 1.29e-06, - "wink": 3.16e-06, - "woodward": 3.16e-06, - "yugoslavia": 3.16e-06, - "actresses": 3.09e-06, - "adhd": 3.09e-06, - "ae": 3.09e-06, - "alonso": 3.09e-06, - "ancestor": 3.09e-06, - "arbor": 3.09e-06, - "astronomical": 3.09e-06, - "attends": 3.09e-06, - "attire": 3.09e-06, - "authored": 3.09e-06, - "autograph": 3.09e-06, - "automobiles": 3.09e-06, - "ava": 3.09e-06, - "axle": 3.09e-06, - "barley": 3.09e-06, - "bd": 3.09e-06, - "beyonce": 3.09e-06, - "bitten": 3.09e-06, - "blasted": 3.09e-06, - "blasts": 3.09e-06, - "botanical": 3.09e-06, - "bottled": 3.09e-06, - "braces": 3.09e-06, - "brag": 3.09e-06, - "breakout": 3.09e-06, - "bumped": 3.09e-06, - "bursting": 3.09e-06, - "catchy": 3.09e-06, - "cbc": 3.09e-06, - "ceremonial": 3.09e-06, - "chanel": 3.09e-06, - "cheque": 3.09e-06, - "chilled": 3.09e-06, - "cho": 3.09e-06, - "choreography": 3.09e-06, - "cisco": 3.09e-06, - "clarified": 3.09e-06, - "cling": 3.09e-06, - "coco": 3.09e-06, - "coincide": 3.09e-06, - "comedians": 1.29e-07, - "commemorate": 3.09e-06, - "commits": 3.09e-06, - "concurrent": 3.09e-06, - "corrupted": 3.09e-06, - "coventry": 3.09e-06, - "crocodile": 3.09e-06, - "cub": 3.09e-06, - "derrick": 3.09e-06, - "diaper": 3.09e-06, - "differentiation": 3.09e-06, - "dine": 3.09e-06, - "disadvantaged": 3.09e-06, - "disadvantages": 3.09e-06, - "disagreed": 3.09e-06, - "dissolve": 3.09e-06, - "diverted": 3.09e-06, - "dubious": 3.09e-06, - "dudley": 3.09e-06, - "durant": 3.09e-06, - "eagerly": 3.09e-06, - "ecclesiastical": 3.09e-06, - "edt": 3.09e-06, - "egyptians": 3.09e-06, - "elk": 3.09e-06, - "englands": 8.71e-08, - "enlightened": 3.09e-06, - "erased": 3.09e-06, - "escorted": 3.09e-06, - "eur": 3.09e-06, - "exhaustion": 3.09e-06, - "expectancy": 3.09e-06, - "famously": 3.09e-06, - "fella": 3.09e-06, - "fielding": 3.09e-06, - "fingerprint": 3.09e-06, - "fisherman": 3.09e-06, - "flap": 3.09e-06, - "folklore": 3.09e-06, - "forgiving": 3.09e-06, - "fractured": 3.09e-06, - "galactic": 3.09e-06, - "gardener": 3.09e-06, - "getty": 3.09e-06, - "glee": 3.09e-06, - "grassroots": 3.09e-06, - "gravitational": 3.09e-06, - "grazing": 3.09e-06, - "guinness": 3.09e-06, - "gunshot": 3.09e-06, - "habitats": 3.09e-06, - "hailed": 3.09e-06, - "hereditary": 3.09e-06, - "hiatus": 3.09e-06, - "homestead": 3.09e-06, - "horribly": 3.09e-06, - "horsepower": 3.09e-06, - "hue": 3.09e-06, - "icing": 3.09e-06, - "idols": 1.45e-07, - "ikea": 3.09e-06, - "insurers": 1e-07, - "intellect": 3.09e-06, - "intellectuals": 3.09e-06, - "intending": 3.09e-06, - "interchange": 3.09e-06, - "isabella": 3.09e-06, - "jihad": 3.09e-06, - "juventus": 3.09e-06, - "kidneys": 3.09e-06, - "knob": 3.09e-06, - "kristen": 3.09e-06, - "lahore": 3.09e-06, - "lapse": 3.09e-06, - "laundering": 3.09e-06, - "ledger": 3.09e-06, - "liga": 3.09e-06, - "loaf": 3.09e-06, - "lodged": 3.09e-06, - "login": 3.09e-06, - "loot": 3.09e-06, - "lorenzo": 3.09e-06, - "magnesium": 3.09e-06, - "malware": 3.09e-06, - "mclaren": 3.09e-06, - "mimic": 3.09e-06, - "mindful": 3.09e-06, - "motorcycles": 3.09e-06, - "mural": 3.09e-06, - "murdoch": 3.09e-06, - "musk": 3.09e-06, - "mustve": 5.62e-08, - "myriad": 3.09e-06, - "nan": 3.09e-06, - "nasal": 3.09e-06, - "nautical": 3.09e-06, - "neatly": 3.09e-06, - "negativity": 3.09e-06, - "northampton": 3.09e-06, - "noteworthy": 3.09e-06, - "nuns": 1.45e-07, - "odor": 3.09e-06, - "oprah": 3.09e-06, - "organising": 3.09e-06, - "overturned": 3.09e-06, - "overwatch": 3.09e-06, - "paddle": 3.09e-06, - "parrot": 3.09e-06, - "partying": 3.09e-06, - "patel": 3.09e-06, - "peg": 3.09e-06, - "pesticides": 3.09e-06, - "pixels": 3.09e-06, - "plunge": 3.09e-06, - "powerless": 3.09e-06, - "pragmatic": 3.09e-06, - "primaries": 3.09e-06, - "quasi": 3.09e-06, - "quentin": 3.09e-06, - "radiant": 3.09e-06, - "ramsay": 3.09e-06, - "reese": 3.09e-06, - "refinery": 3.09e-06, - "regained": 3.09e-06, - "reich": 3.09e-06, - "remorse": 3.09e-06, - "reopened": 3.09e-06, - "revoked": 3.09e-06, - "rhymes": 3.09e-06, - "rpm": 3.09e-06, - "sanity": 3.09e-06, - "scandinavian": 3.09e-06, - "scotia": 3.09e-06, - "scratched": 3.09e-06, - "sears": 3.09e-06, - "ser": 3.09e-06, - "sergei": 3.09e-06, - "sharia": 1.66e-07, - "showdown": 3.09e-06, - "shuffle": 3.09e-06, - "shuts": 3.09e-06, - "siding": 3.09e-06, - "simulated": 3.09e-06, - "skyline": 3.09e-06, - "slab": 3.09e-06, - "sprayed": 3.09e-06, - "stacks": 3.09e-06, - "startups": 6.92e-08, - "stocking": 3.09e-06, - "suarez": 3.09e-06, - "subscriptions": 3.09e-06, - "suites": 5.01e-08, - "supplemental": 3.09e-06, - "suspicions": 3.09e-06, - "swimmer": 3.09e-06, - "tao": 3.09e-06, - "tariff": 3.09e-06, - "techno": 3.09e-06, - "teller": 3.09e-06, - "textiles": 3.09e-06, - "therapies": 3.09e-06, - "trance": 3.09e-06, - "translating": 3.09e-06, - "traveller": 3.09e-06, - "unconditional": 3.09e-06, - "unforgettable": 3.09e-06, - "vacancies": 3.09e-06, - "violates": 3.09e-06, - "volatility": 3.09e-06, - "weaken": 3.09e-06, - "webcam": 3.09e-06, - "wen": 3.09e-06, - "weston": 3.09e-06, - "xavier": 3.09e-06, - "yorker": 3.09e-06, - "abel": 3.02e-06, - "abolish": 3.02e-06, - "aca": 3.02e-06, - "accessing": 3.02e-06, - "accommodations": 3.02e-06, - "accumulate": 3.02e-06, - "admirable": 3.02e-06, - "adventurous": 3.02e-06, - "africas": 3.02e-06, - "ajax": 3.02e-06, - "alarmed": 3.02e-06, - "ama": 3.02e-06, - "ammo": 3.02e-06, - "amos": 3.02e-06, - "analysed": 3.02e-06, - "andreas": 2e-07, - "angelina": 3.02e-06, - "anthology": 3.02e-06, - "antiques": 3.02e-06, - "anyhow": 3.02e-06, - "ape": 3.02e-06, - "arrivals": 3.02e-06, - "assaults": 3.02e-06, - "assemblies": 3.02e-06, - "auditor": 3.02e-06, - "avalanche": 3.02e-06, - "azerbaijan": 3.02e-06, - "badger": 3.02e-06, - "ballistic": 3.02e-06, - "banter": 3.02e-06, - "becker": 3.02e-06, - "bidder": 3.02e-06, - "birthdays": 1.95e-07, - "blackburn": 3.02e-06, - "blazing": 3.02e-06, - "blockbuster": 3.02e-06, - "blueprint": 3.02e-06, - "bodied": 3.02e-06, - "boosted": 3.02e-06, - "bowler": 3.02e-06, - "broadcasters": 1.02e-07, - "byrne": 3.02e-06, - "cadillac": 3.02e-06, - "cameo": 3.02e-06, - "canals": 7.59e-08, - "caramel": 3.02e-06, - "cassidy": 3.02e-06, - "charismatic": 3.02e-06, - "chromosome": 3.02e-06, - "chunks": 3.02e-06, - "churchs": 3.02e-06, - "clarkson": 3.02e-06, - "claus": 3.02e-06, - "comcast": 3.02e-06, - "commencement": 3.02e-06, - "concede": 3.02e-06, - "conducts": 3.02e-06, - "confiscated": 3.02e-06, - "contestant": 3.02e-06, - "contradictory": 3.02e-06, - "convent": 3.02e-06, - "converse": 3.02e-06, - "correcting": 3.02e-06, - "corrosion": 3.02e-06, - "crib": 3.02e-06, - "crossroads": 3.02e-06, - "dearly": 3.02e-06, - "defiance": 3.02e-06, - "deter": 3.02e-06, - "diner": 3.02e-06, - "dipping": 3.02e-06, - "disneyland": 3.02e-06, - "disposition": 3.02e-06, - "djs": 6.03e-07, - "documentaries": 3.02e-06, - "dripping": 3.02e-06, - "ecstasy": 3.02e-06, - "eighteenth": 3.02e-06, - "eleventh": 3.02e-06, - "eliza": 3.02e-06, - "emphasizes": 3.02e-06, - "empowering": 3.02e-06, - "engagements": 3.02e-06, - "enrique": 3.02e-06, - "envoy": 3.02e-06, - "estonia": 3.02e-06, - "expiration": 3.02e-06, - "exploiting": 3.02e-06, - "expressly": 3.02e-06, - "fabrication": 3.02e-06, - "facilitated": 3.02e-06, - "faggot": 3.02e-06, - "fascination": 3.02e-06, - "fir": 3.02e-06, - "foreigner": 3.02e-06, - "formulation": 3.02e-06, - "francs": 3.02e-06, - "frontal": 3.02e-06, - "fullest": 3.02e-06, - "fungi": 3.02e-06, - "goalie": 3.02e-06, - "gonzalez": 3.02e-06, - "gradient": 3.02e-06, - "gravy": 3.02e-06, - "grenades": 3.02e-06, - "gwen": 3.02e-06, - "haley": 3.02e-06, - "harmed": 3.02e-06, - "herring": 3.02e-06, - "hires": 3.02e-06, - "hopper": 3.02e-06, - "hugging": 3.02e-06, - "hysterical": 3.02e-06, - "implant": 3.02e-06, - "incompatible": 3.02e-06, - "inducing": 3.02e-06, - "injunction": 3.02e-06, - "innate": 3.02e-06, - "instituted": 3.02e-06, - "iphones": 3.47e-07, - "jays": 7.59e-07, - "jeremiah": 3.02e-06, - "jude": 3.02e-06, - "kathryn": 3.02e-06, - "kd": 3.02e-06, - "keynote": 3.02e-06, - "kidnap": 3.02e-06, - "kiev": 3.02e-06, - "koreans": 5.13e-08, - "krishna": 3.02e-06, - "lama": 3.02e-06, - "learners": 1.86e-07, - "liquids": 3.02e-06, - "mclean": 3.02e-06, - "meats": 6.61e-08, - "michele": 3.02e-06, - "motivational": 3.02e-06, - "naruto": 3.02e-06, - "natasha": 3.02e-06, - "nightly": 3.02e-06, - "noir": 3.02e-06, - "normandy": 3.02e-06, - "notwithstanding": 3.02e-06, - "ns": 2.29e-07, - "ordained": 3.02e-06, - "originating": 3.02e-06, - "orphans": 5.89e-08, - "pans": 3.16e-07, - "paralysis": 3.02e-06, - "patiently": 3.02e-06, - "patrols": 1.23e-07, - "pauline": 3.02e-06, - "paw": 3.02e-06, - "pharmaceuticals": 3.02e-06, - "pianist": 3.02e-06, - "pickles": 3.02e-06, - "pilgrims": 2.51e-07, - "pinterest": 3.02e-06, - "pisses": 3.02e-06, - "placebo": 3.02e-06, - "podcasts": 3.02e-06, - "pointers": 3.02e-06, - "postpone": 3.02e-06, - "progressively": 3.02e-06, - "propelled": 3.02e-06, - "psa": 3.02e-06, - "psych": 3.02e-06, - "punt": 3.02e-06, - "rae": 3.02e-06, - "raptors": 3.02e-06, - "reinforcements": 3.02e-06, - "repetition": 3.02e-06, - "restraining": 3.02e-06, - "retrospective": 3.02e-06, - "revise": 3.02e-06, - "righteousness": 3.02e-06, - "rinse": 3.02e-06, - "robbins": 3.02e-06, - "rss": 3.02e-06, - "sal": 3.02e-06, - "scalp": 3.02e-06, - "schultz": 3.02e-06, - "scrolling": 3.02e-06, - "sealing": 3.02e-06, - "sharma": 3.02e-06, - "sheds": 3.02e-06, - "sheltered": 3.02e-06, - "shia": 2.19e-07, - "shutter": 3.02e-06, - "smartest": 3.02e-06, - "snatched": 3.02e-06, - "sooo": 3.02e-06, - "spans": 3.02e-06, - "sparrow": 3.02e-06, - "speculate": 3.02e-06, - "spinach": 3.02e-06, - "squat": 3.02e-06, - "stew": 3.02e-06, - "stirling": 3.02e-06, - "stoned": 3.02e-06, - "strauss": 3.02e-06, - "stressing": 3.02e-06, - "styling": 3.02e-06, - "sublime": 3.02e-06, - "subtitles": 3.02e-06, - "sunni": 3.02e-06, - "sweetness": 3.02e-06, - "teamwork": 3.02e-06, - "tequila": 3.02e-06, - "terrestrial": 3.02e-06, - "textures": 3.02e-06, - "thinkers": 3.02e-06, - "thorn": 3.02e-06, - "thug": 3.02e-06, - "tit": 3.02e-06, - "toned": 3.02e-06, - "totals": 3.02e-06, - "triggering": 3.02e-06, - "tulsa": 3.02e-06, - "twenties": 3.02e-06, - "ufo": 3.02e-06, - "uncover": 3.02e-06, - "unnatural": 3.02e-06, - "unstoppable": 3.02e-06, - "upfront": 3.02e-06, - "urgently": 3.02e-06, - "virginity": 3.02e-06, - "virtues": 3.02e-06, - "volvo": 3.02e-06, - "vouchers": 3.02e-06, - "waived": 3.02e-06, - "wharf": 3.02e-06, - "wiser": 3.02e-06, - "wrestle": 3.02e-06, - "xv": 3.02e-06, - "yates": 3.02e-06, - "yoo": 3.02e-06, - "aap": 2.95e-06, - "accountants": 8.51e-08, - "achilles": 2.95e-06, - "addison": 2.95e-06, - "aggravated": 2.95e-06, - "ahhh": 2.95e-06, - "alberto": 2.95e-06, - "alleging": 2.95e-06, - "alto": 2.95e-06, - "ambrose": 2.95e-06, - "analyse": 2.95e-06, - "anomaly": 2.95e-06, - "aperture": 2.95e-06, - "apostles": 2.95e-06, - "apprenticeship": 2.95e-06, - "aspire": 2.95e-06, - "benches": 2.95e-06, - "biodiversity": 2.95e-06, - "biomedical": 2.95e-06, - "blinded": 2.95e-06, - "blurred": 2.95e-06, - "boarded": 2.95e-06, - "breadth": 2.95e-06, - "bullies": 2.95e-06, - "buster": 2.95e-06, - "cascade": 2.95e-06, - "casinos": 2.19e-07, - "centralized": 2.95e-06, - "char": 2.95e-06, - "cleanse": 2.95e-06, - "complains": 2.95e-06, - "concord": 2.95e-06, - "connector": 2.95e-06, - "connie": 2.95e-06, - "consolidate": 2.95e-06, - "containment": 2.95e-06, - "coupling": 2.95e-06, - "crate": 2.95e-06, - "crave": 2.95e-06, - "crows": 4.27e-07, - "dane": 2.95e-06, - "dangerously": 2.95e-06, - "denounced": 2.95e-06, - "dillon": 2.95e-06, - "diluted": 2.95e-06, - "doping": 2.95e-06, - "eddy": 2.95e-06, - "elusive": 2.95e-06, - "espionage": 2.95e-06, - "establishes": 2.95e-06, - "existential": 2.95e-06, - "experimentation": 2.95e-06, - "extremes": 2.95e-06, - "extremists": 2.95e-06, - "fanny": 2.95e-06, - "flashback": 2.95e-06, - "fluctuations": 2.95e-06, - "forecasting": 2.95e-06, - "freud": 2.95e-06, - "friedman": 2.95e-06, - "funnel": 2.95e-06, - "gail": 2.95e-06, - "gloss": 2.95e-06, - "grading": 2.95e-06, - "graft": 2.95e-06, - "grips": 2.95e-06, - "grumpy": 2.95e-06, - "guise": 2.95e-06, - "halves": 2.95e-06, - "heightened": 2.95e-06, - "horizons": 7.94e-08, - "hush": 2.95e-06, - "ibn": 2.95e-06, - "imitation": 2.95e-06, - "immersion": 2.95e-06, - "inconvenient": 2.95e-06, - "inspires": 2.95e-06, - "interfaces": 2.95e-06, - "intrigued": 2.95e-06, - "intrinsic": 2.95e-06, - "irans": 2.95e-06, - "irresistible": 2.95e-06, - "javier": 2.95e-06, - "jd": 2.95e-06, - "jk": 2.95e-06, - "joanne": 2.95e-06, - "kb": 2.95e-06, - "kittens": 1.05e-07, - "landmarks": 2.95e-06, - "landslide": 2.95e-06, - "lcd": 2.95e-06, - "leah": 2.95e-06, - "leash": 2.95e-06, - "makeover": 2.95e-06, - "manned": 2.95e-06, - "marcos": 2.09e-07, - "mata": 2.95e-06, - "mater": 2.95e-06, - "maureen": 2.95e-06, - "melodies": 2.95e-06, - "memorandum": 2.95e-06, - "mercer": 2.95e-06, - "mermaid": 2.95e-06, - "michaels": 2.57e-06, - "miriam": 2.95e-06, - "moderation": 2.95e-06, - "moroccan": 2.95e-06, - "nano": 2.95e-06, - "neymar": 2.95e-06, - "ngos": 2e-07, - "nobility": 2.95e-06, - "notation": 2.95e-06, - "onstage": 2.95e-06, - "ordeal": 2.95e-06, - "ox": 2.95e-06, - "painfully": 2.95e-06, - "paranormal": 2.95e-06, - "paso": 2.95e-06, - "pear": 2.95e-06, - "piston": 2.95e-06, - "plugs": 2.95e-06, - "politely": 2.95e-06, - "pollen": 2.95e-06, - "principals": 4.37e-07, - "provoking": 2.95e-06, - "pts": 8.13e-08, - "puberty": 2.95e-06, - "raided": 2.95e-06, - "railroads": 9.12e-08, - "ramos": 2.95e-06, - "rbi": 2.95e-06, - "reggae": 2.95e-06, - "relegated": 2.95e-06, - "respectfully": 2.95e-06, - "rethink": 2.95e-06, - "reviewer": 2.95e-06, - "reviewers": 6.46e-08, - "rewrite": 2.95e-06, - "rodeo": 2.95e-06, - "sas": 3.63e-07, - "sheridan": 2.95e-06, - "sherwood": 2.95e-06, - "shire": 2.95e-06, - "sinks": 2.95e-06, - "slit": 2.95e-06, - "snapping": 2.95e-06, - "sobbing": 2.95e-06, - "spitting": 2.95e-06, - "starved": 2.95e-06, - "stirred": 2.95e-06, - "stockings": 2.95e-06, - "stuffing": 2.95e-06, - "substituted": 2.95e-06, - "succeeds": 2.95e-06, - "summons": 2.95e-06, - "sutherland": 2.95e-06, - "swung": 2.95e-06, - "taboo": 2.95e-06, - "teaser": 2.95e-06, - "thatcher": 2.95e-06, - "throttle": 2.95e-06, - "tides": 9.77e-08, - "trendy": 2.95e-06, - "trimmed": 2.95e-06, - "trivia": 2.95e-06, - "turbulent": 2.95e-06, - "twisting": 2.95e-06, - "unbearable": 2.95e-06, - "underage": 2.95e-06, - "unleashed": 2.95e-06, - "unmarried": 2.95e-06, - "vaguely": 2.95e-06, - "veggies": 2.95e-06, - "visas": 1.05e-07, - "vortex": 2.95e-06, - "voucher": 2.95e-06, - "wand": 2.95e-06, - "wanderers": 2.95e-06, - "warmed": 2.95e-06, - "accelerating": 2.88e-06, - "advert": 2.88e-06, - "afforded": 2.88e-06, - "ain": 2.88e-06, - "alias": 3.72e-08, - "anaheim": 2.88e-06, - "anchored": 2.88e-06, - "annoy": 2.88e-06, - "antibody": 2.88e-06, - "apostle": 2.88e-06, - "appalling": 2.88e-06, - "applaud": 2.88e-06, - "arteries": 2.88e-06, - "asians": 2.88e-06, - "astronauts": 8.51e-08, - "baptized": 2.88e-06, - "barr": 2.88e-06, - "belarus": 2.88e-06, - "billie": 2.88e-06, - "bondage": 2.88e-06, - "boredom": 2.88e-06, - "bounced": 2.88e-06, - "bowman": 2.88e-06, - "breeders": 6.92e-08, - "brilliantly": 2.88e-06, - "brunch": 2.88e-06, - "buckley": 2.88e-06, - "burgundy": 2.88e-06, - "cabinets": 1.41e-07, - "carlisle": 2.88e-06, - "carolyn": 2.88e-06, - "castles": 4.27e-07, - "changer": 2.88e-06, - "che": 2.88e-06, - "chem": 2.88e-06, - "chestnut": 2.88e-06, - "cj": 2.88e-06, - "cleaners": 6.92e-08, - "cleanup": 2.88e-06, - "clemson": 2.88e-06, - "cocks": 2.88e-06, - "compose": 2.88e-06, - "concise": 2.88e-06, - "confinement": 2.88e-06, - "confronting": 2.88e-06, - "consultancy": 2.88e-06, - "contraction": 2.88e-06, - "contrasting": 2.88e-06, - "convergence": 2.88e-06, - "coughing": 2.88e-06, - "criterion": 2.88e-06, - "crossings": 2.88e-06, - "crowns": 2.75e-07, - "cummings": 2.88e-06, - "cylinders": 2.88e-06, - "deduction": 2.88e-06, - "despicable": 2.88e-06, - "detachment": 2.88e-06, - "detectors": 2.88e-06, - "dialog": 2.88e-06, - "digestive": 2.88e-06, - "diminish": 2.88e-06, - "disclaimer": 2.88e-06, - "disconnect": 2.88e-06, - "discriminatory": 2.88e-06, - "disruptive": 2.88e-06, - "dorset": 2.88e-06, - "dvds": 2.63e-07, - "endlessly": 2.88e-06, - "enthusiast": 2.88e-06, - "epilepsy": 2.88e-06, - "estimation": 2.88e-06, - "ethanol": 2.88e-06, - "excavation": 2.88e-06, - "extremist": 2.88e-06, - "feeder": 2.88e-06, - "flashlight": 2.88e-06, - "flattering": 2.88e-06, - "floats": 2.88e-06, - "forcibly": 2.88e-06, - "gao": 2.88e-06, - "garland": 2.88e-06, - "globalization": 2.88e-06, - "grail": 2.88e-06, - "graphical": 2.88e-06, - "grayson": 2.88e-06, - "groundbreaking": 2.88e-06, - "grouping": 2.88e-06, - "harding": 2.88e-06, - "holiness": 2.88e-06, - "horrifying": 2.88e-06, - "humiliating": 2.88e-06, - "iced": 2.88e-06, - "ida": 1.35e-08, - "illustrator": 2.88e-06, - "imbalance": 2.88e-06, - "immoral": 2.88e-06, - "implicated": 2.88e-06, - "inefficient": 2.88e-06, - "initials": 2.88e-06, - "instrumentation": 2.88e-06, - "intensified": 2.88e-06, - "intolerance": 2.88e-06, - "jacksons": 2.88e-07, - "jeez": 2.88e-06, - "johnsons": 3.89e-07, - "jurors": 2.88e-06, - "kappa": 2.88e-06, - "keepers": 2.88e-07, - "kendrick": 2.88e-06, - "ketchup": 2.88e-06, - "leukemia": 2.88e-06, - "levine": 2.88e-06, - "liars": 1.29e-07, - "lineage": 2.88e-06, - "liter": 2.88e-06, - "looting": 2.88e-06, - "lorraine": 2.88e-06, - "lyons": 1.95e-07, - "magnus": 2.88e-06, - "manpower": 2.88e-06, - "marley": 2.88e-06, - "martyr": 2.88e-06, - "masturbation": 2.88e-06, - "mitigation": 2.88e-06, - "mont": 2.88e-06, - "motorway": 2.88e-06, - "nk": 2.88e-06, - "npr": 2.88e-06, - "nypd": 2.88e-06, - "obscene": 2.88e-06, - "occupants": 2.88e-06, - "octopus": 2.88e-06, - "onward": 2.88e-06, - "operatives": 2.88e-06, - "opium": 2.88e-06, - "ovarian": 2.88e-06, - "peck": 2.88e-06, - "penal": 2.88e-06, - "permitting": 2.88e-06, - "petals": 2.88e-06, - "picasso": 2.88e-06, - "pierced": 2.88e-06, - "pistols": 2.88e-06, - "plank": 2.88e-06, - "plantations": 2.88e-06, - "plight": 2.88e-06, - "ponds": 1.05e-07, - "postseason": 2.88e-06, - "presiding": 2.88e-06, - "privy": 2.88e-06, - "propulsion": 2.88e-06, - "raft": 2.88e-06, - "registering": 2.88e-06, - "rejoice": 2.88e-06, - "relics": 2.88e-06, - "ren": 2.88e-06, - "reproduced": 2.88e-06, - "rihanna": 2.88e-06, - "roam": 2.88e-06, - "rubio": 2.88e-06, - "sandals": 2.88e-06, - "serpent": 2.88e-06, - "sesame": 2.88e-06, - "shepard": 2.88e-06, - "shi": 2.88e-06, - "shoved": 2.88e-06, - "sicily": 2.88e-06, - "simplify": 2.88e-06, - "siren": 2.88e-06, - "slater": 2.88e-06, - "sleeper": 2.88e-06, - "smear": 2.88e-06, - "snowy": 2.88e-06, - "soooo": 2.88e-06, - "spectral": 2.88e-06, - "spoilers": 2.88e-06, - "stabilize": 2.88e-06, - "stains": 2.88e-06, - "stalk": 2.88e-06, - "standings": 2.88e-06, - "statesman": 2.88e-06, - "stink": 2.88e-06, - "stormy": 2.88e-06, - "subcommittee": 2.88e-06, - "suffice": 2.88e-06, - "surrounds": 2.88e-06, - "swat": 2.88e-06, - "swine": 2.88e-06, - "symbolism": 2.88e-06, - "tangled": 2.88e-06, - "ticking": 2.88e-06, - "tram": 2.88e-06, - "tryin": 2.88e-06, - "tutorials": 2.88e-06, - "underwood": 2.88e-06, - "underworld": 2.88e-06, - "vectors": 2.88e-06, - "vertically": 2.88e-06, - "vigorous": 2.88e-06, - "vt": 2.88e-06, - "wandered": 2.88e-06, - "wei": 2.88e-06, - "wrongly": 2.88e-06, - "yum": 2.88e-06, - "zion": 2.88e-06, - "abiding": 2.82e-06, - "adele": 2.82e-06, - "alcoholism": 2.82e-06, - "amplifier": 2.82e-06, - "anc": 2.82e-06, - "apes": 2.82e-06, - "arches": 2.82e-06, - "armys": 1.17e-07, - "astounding": 2.82e-06, - "atheism": 2.82e-06, - "auctions": 5.13e-08, - "audible": 2.82e-06, - "avocado": 2.82e-06, - "avon": 2.82e-06, - "bangs": 1e-07, - "bashing": 2.82e-06, - "baskets": 2.82e-06, - "bathtub": 2.82e-06, - "beep": 2.82e-06, - "beneficiaries": 2.82e-06, - "biscuit": 2.82e-06, - "bitterness": 2.82e-06, - "blatant": 2.82e-06, - "boon": 2.82e-06, - "boyfriends": 1.7e-06, - "brat": 2.82e-06, - "bunk": 2.82e-06, - "californias": 8.51e-08, - "candid": 2.82e-06, - "caretaker": 2.82e-06, - "carts": 2.82e-06, - "ceilings": 2.82e-06, - "cervical": 2.82e-06, - "checklist": 2.82e-06, - "cherokee": 2.82e-06, - "cheshire": 2.82e-06, - "christs": 1.7e-07, - "cinderella": 2.82e-06, - "clamp": 2.82e-06, - "clans": 2.45e-07, - "competitiveness": 2.82e-06, - "composers": 3.02e-07, - "confederation": 2.82e-06, - "confidentiality": 2.82e-06, - "configurations": 2.82e-06, - "contradiction": 2.82e-06, - "coronation": 2.82e-06, - "counselling": 2.82e-06, - "cracker": 2.82e-06, - "crackers": 2.69e-08, - "crimea": 2.82e-06, - "cumberland": 2.82e-06, - "cunning": 2.82e-06, - "daly": 2.82e-06, - "depiction": 2.82e-06, - "depleted": 2.82e-06, - "diabetic": 2.82e-06, - "diaspora": 2.82e-06, - "digitally": 2.82e-06, - "discord": 2.82e-06, - "distractions": 2.82e-06, - "divides": 2.82e-06, - "divinity": 2.82e-06, - "donuts": 2.82e-06, - "dorsal": 2.82e-06, - "durability": 2.82e-06, - "empress": 2.82e-06, - "endeavour": 2.82e-06, - "enroll": 2.82e-06, - "entertainer": 2.82e-06, - "entrusted": 2.82e-06, - "ernie": 2.82e-06, - "evidenced": 2.82e-06, - "extracts": 2.82e-06, - "fallon": 2.82e-06, - "farrell": 2.82e-06, - "fatalities": 2.82e-06, - "festivities": 2.82e-06, - "ffs": 5.89e-08, - "finalist": 2.82e-06, - "footballers": 5.89e-08, - "forks": 2.82e-06, - "gadget": 2.82e-06, - "gasp": 2.82e-06, - "genital": 2.82e-06, - "glitch": 2.82e-06, - "gong": 2.82e-06, - "graded": 2.82e-06, - "graders": 5.01e-08, - "greasy": 2.82e-06, - "grieving": 2.82e-06, - "grooming": 2.82e-06, - "hacks": 2.82e-06, - "hamburger": 2.82e-06, - "heed": 2.82e-06, - "hideous": 2.82e-06, - "homepage": 2.82e-06, - "hoops": 2.82e-06, - "howell": 2.82e-06, - "ib": 2.82e-06, - "imaginative": 2.82e-06, - "imperfect": 2.82e-06, - "implicit": 2.82e-06, - "indo": 2.82e-06, - "inlet": 2.82e-06, - "insensitive": 2.82e-06, - "interpreting": 2.82e-06, - "islanders": 2.82e-06, - "iss": 7.24e-08, - "jars": 2.82e-06, - "keystone": 2.82e-06, - "knitting": 2.82e-06, - "kramer": 2.82e-06, - "kudos": 1.7e-08, - "layered": 2.82e-06, - "lieu": 2.82e-06, - "liquidity": 2.82e-06, - "loch": 2.82e-06, - "lola": 2.82e-06, - "lotion": 2.82e-06, - "lows": 1.26e-07, - "lucia": 2.82e-06, - "lutheran": 2.82e-06, - "mains": 5.25e-08, - "manipulating": 2.82e-06, - "mara": 2.82e-06, - "marquis": 2.82e-06, - "mayhem": 2.82e-06, - "merging": 2.82e-06, - "mistakenly": 2.82e-06, - "mould": 2.82e-06, - "neuroscience": 2.82e-06, - "niger": 2.82e-06, - "nipple": 2.82e-06, - "noses": 2.82e-06, - "nostalgic": 2.82e-06, - "nra": 2.82e-06, - "nv": 2.82e-06, - "oppressive": 2.82e-06, - "pasadena": 2.82e-06, - "patronage": 2.82e-06, - "pearce": 2.82e-06, - "pinnacle": 2.82e-06, - "plagued": 2.82e-06, - "plated": 2.82e-06, - "pods": 2.82e-06, - "pong": 2.82e-06, - "poorest": 2.82e-06, - "programmers": 8.91e-08, - "prompting": 2.82e-06, - "prosper": 2.82e-06, - "psi": 2.82e-06, - "quake": 2.82e-06, - "qualitative": 2.82e-06, - "queries": 2.82e-06, - "racer": 2.82e-06, - "radial": 2.82e-06, - "realms": 2.82e-06, - "recap": 2.82e-06, - "recognizable": 2.82e-06, - "reconnaissance": 2.82e-06, - "regent": 2.82e-06, - "reigning": 2.82e-06, - "reluctantly": 2.82e-06, - "rendition": 2.82e-06, - "resumes": 2.82e-06, - "revisions": 2.82e-06, - "roadside": 2.82e-06, - "rovers": 1.74e-07, - "saskatchewan": 2.82e-06, - "scarlett": 2.82e-06, - "scientifically": 2.82e-06, - "scrambled": 2.82e-06, - "scratches": 2.82e-06, - "secretariat": 2.82e-06, - "semitism": 2.82e-06, - "sew": 2.82e-06, - "shaky": 2.82e-06, - "sham": 2.82e-06, - "shortcomings": 2.82e-06, - "shredded": 2.82e-06, - "siberia": 2.82e-06, - "sinai": 2.82e-06, - "slayer": 2.82e-06, - "smokes": 6.03e-08, - "soothing": 2.82e-06, - "spawned": 2.82e-06, - "specialised": 2.82e-06, - "stalker": 2.82e-06, - "statistic": 2.82e-06, - "stature": 2.82e-06, - "steward": 2.82e-06, - "stout": 2.82e-06, - "strategically": 2.82e-06, - "stripper": 2.82e-06, - "stump": 2.82e-06, - "submarines": 5.37e-08, - "subordinate": 2.82e-06, - "swimmers": 1.15e-07, - "synagogue": 2.82e-06, - "tentative": 2.82e-06, - "texted": 2.82e-06, - "tongues": 2.82e-06, - "topical": 2.82e-06, - "transforms": 2.82e-06, - "uhh": 2.82e-06, - "uneasy": 2.82e-06, - "unfold": 2.82e-06, - "usda": 2.82e-06, - "uss": 5.37e-07, - "variance": 2.82e-06, - "vested": 2.82e-06, - "vols": 2.82e-06, - "wagons": 2.82e-06, - "wah": 2.82e-06, - "wally": 2.82e-06, - "walters": 4.17e-07, - "wavelength": 2.82e-06, - "workload": 2.82e-06, - "xii": 2.82e-06, - "yells": 2.82e-06, - "acquitted": 2.75e-06, - "admiralty": 2.75e-06, - "ageing": 2.75e-06, - "aiding": 2.75e-06, - "artificially": 2.75e-06, - "asa": 2.75e-06, - "aux": 2.75e-06, - "barring": 2.75e-06, - "bead": 2.75e-06, - "berth": 2.75e-06, - "billionaires": 1.74e-07, - "blackmail": 2.75e-06, - "blending": 2.75e-06, - "blindness": 2.75e-06, - "bragging": 2.75e-06, - "brightly": 2.75e-06, - "burglary": 2.75e-06, - "busting": 2.75e-06, - "cafeteria": 2.75e-06, - "canary": 2.75e-06, - "cannons": 1.45e-07, - "capacities": 2.75e-06, - "cardio": 2.75e-06, - "carla": 2.75e-06, - "caucasian": 2.75e-06, - "ceramics": 2.75e-06, - "cheats": 2.75e-06, - "chilean": 2.75e-06, - "clauses": 2.75e-06, - "clumsy": 2.75e-06, - "commuter": 2.75e-06, - "composing": 2.75e-06, - "contingency": 2.75e-06, - "coworkers": 1.1e-07, - "cupboard": 2.75e-06, - "curated": 2.75e-06, - "customized": 2.75e-06, - "daft": 2.75e-06, - "dani": 2.75e-06, - "defences": 5.5e-08, - "depended": 2.75e-06, - "deprivation": 2.75e-06, - "dewey": 2.75e-06, - "disneys": 2.75e-06, - "disqualified": 2.75e-06, - "disrupted": 2.75e-06, - "diversified": 2.75e-06, - "documenting": 2.75e-06, - "doubted": 2.75e-06, - "downing": 2.75e-06, - "duly": 2.75e-06, - "dusk": 2.75e-06, - "edits": 2.75e-06, - "enchanted": 2.75e-06, - "environmentally": 2.75e-06, - "episcopal": 2.75e-06, - "escalated": 2.75e-06, - "everlasting": 2.75e-06, - "excellency": 2.75e-06, - "executions": 2.75e-06, - "faking": 2.75e-06, - "feasibility": 2.75e-06, - "federally": 2.75e-06, - "flavored": 2.75e-06, - "formulas": 2.75e-06, - "freddy": 2.75e-06, - "frenzy": 2.75e-06, - "fridays": 2.34e-06, - "fuckers": 5.62e-08, - "fulfillment": 2.75e-06, - "gg": 2.75e-06, - "godfather": 2.75e-06, - "gould": 2.75e-06, - "gran": 2.75e-06, - "groundwater": 2.75e-06, - "heidi": 2.75e-06, - "hospitalized": 2.75e-06, - "hostilities": 2.75e-06, - "hyundai": 2.75e-06, - "illusions": 2.75e-06, - "inadvertently": 2.75e-06, - "indifferent": 2.75e-06, - "inject": 2.75e-06, - "insistence": 2.75e-06, - "interiors": 7.41e-08, - "intimidated": 2.75e-06, - "invariably": 2.75e-06, - "invincible": 2.75e-06, - "jams": 1.17e-07, - "jfk": 2.75e-06, - "joes": 7.41e-07, - "jubilee": 2.75e-06, - "kia": 2.75e-06, - "kinetic": 2.75e-06, - "lam": 2.75e-06, - "lashes": 2.75e-06, - "latvia": 2.75e-06, - "laurence": 2.75e-06, - "lavender": 2.75e-06, - "lemonade": 2.75e-06, - "lenin": 2.75e-06, - "lodging": 2.75e-06, - "lowell": 2.75e-06, - "malls": 1.78e-07, - "mania": 2.75e-06, - "medically": 2.75e-06, - "menus": 6.31e-08, - "mule": 2.75e-06, - "mythical": 2.75e-06, - "nathaniel": 2.75e-06, - "neutron": 2.75e-06, - "newcomers": 2.75e-06, - "nicaragua": 2.75e-06, - "nicholson": 2.75e-06, - "nicknamed": 2.75e-06, - "occupations": 2.75e-06, - "oecd": 2.75e-06, - "ooo": 2.75e-06, - "orderly": 2.75e-06, - "orient": 2.75e-06, - "orion": 2.75e-06, - "outset": 2.75e-06, - "paralyzed": 2.75e-06, - "parry": 2.75e-06, - "parted": 2.75e-06, - "patio": 2.75e-06, - "peacock": 2.75e-06, - "pedestrians": 2.75e-06, - "pepsi": 2.75e-06, - "pf": 2.75e-06, - "pines": 5.37e-08, - "pitchers": 2.4e-07, - "plugged": 2.75e-06, - "postcard": 2.75e-06, - "pow": 2.75e-06, - "powerhouse": 2.75e-06, - "precursor": 2.75e-06, - "preferable": 2.75e-06, - "preparatory": 2.75e-06, - "prism": 2.75e-06, - "proclamation": 2.75e-06, - "proponents": 2.75e-06, - "provocative": 2.75e-06, - "pu": 2.75e-06, - "purposely": 2.75e-06, - "qc": 2.75e-06, - "questionnaire": 2.75e-06, - "reclaim": 2.75e-06, - "redevelopment": 2.75e-06, - "reflex": 2.75e-06, - "relocate": 2.75e-06, - "rematch": 2.75e-06, - "renal": 2.75e-06, - "repayment": 2.75e-06, - "residences": 2.75e-06, - "restrained": 2.75e-06, - "rhythms": 2.75e-06, - "riddle": 2.75e-06, - "rites": 2.75e-06, - "rivera": 2.75e-06, - "roach": 2.75e-06, - "rockefeller": 2.75e-06, - "roe": 2.75e-06, - "royalties": 2.75e-06, - "rubble": 2.75e-06, - "sacrificing": 2.75e-06, - "saddam": 2.75e-06, - "sapphire": 2.75e-06, - "screwing": 2.75e-06, - "seam": 2.75e-06, - "sectional": 2.75e-06, - "servicing": 2.75e-06, - "shrinking": 2.75e-06, - "simulate": 2.75e-06, - "sioux": 2.75e-06, - "sloan": 2.75e-06, - "sniff": 2.75e-06, - "snowden": 2.75e-06, - "soaring": 2.75e-06, - "soluble": 2.75e-06, - "solvent": 2.75e-06, - "somebodys": 2.75e-06, - "spaced": 2.75e-06, - "squid": 2.75e-06, - "stamford": 2.75e-06, - "steph": 2.75e-06, - "stocked": 2.75e-06, - "stoked": 2.75e-06, - "strapped": 2.75e-06, - "streamed": 2.75e-06, - "sturdy": 2.75e-06, - "swarm": 2.75e-06, - "tanker": 2.75e-06, - "taxis": 1e-07, - "terra": 2.75e-06, - "timetable": 2.75e-06, - "tj": 2.75e-06, - "torpedo": 2.75e-06, - "traitors": 8.13e-08, - "trolley": 2.75e-06, - "trolling": 2.75e-06, - "trudeau": 2.75e-06, - "una": 2.75e-06, - "undertook": 2.75e-06, - "undocumented": 2.75e-06, - "vaginal": 2.75e-06, - "vance": 2.75e-06, - "verbs": 2.75e-06, - "viability": 2.75e-06, - "victorias": 1.55e-07, - "villas": 3.16e-07, - "wat": 2.75e-06, - "whispered": 2.75e-06, - "widening": 2.75e-06, - "winged": 2.75e-06, - "wiping": 2.75e-06, - "wolverine": 2.75e-06, - "wrought": 2.75e-06, - "xiii": 2.75e-06, - "yearbook": 2.75e-06, - "yikes": 2.75e-06, - "abbot": 2.69e-06, - "abduction": 2.69e-06, - "ache": 2.69e-06, - "advises": 2.69e-06, - "afro": 2.69e-06, - "ancestral": 2.69e-06, - "anchors": 5.89e-08, - "antiquity": 2.69e-06, - "apocalyptic": 2.69e-06, - "appraisal": 2.69e-06, - "aqua": 2.69e-06, - "aspen": 2.69e-06, - "atlantis": 2.69e-06, - "augustus": 2.69e-06, - "autistic": 2.69e-06, - "barnett": 2.69e-06, - "baylor": 2.69e-06, - "bearer": 2.69e-06, - "bernstein": 2.69e-06, - "bins": 6.17e-08, - "bk": 2.69e-06, - "bleak": 2.69e-06, - "blender": 2.69e-06, - "bmi": 2.69e-06, - "bogus": 2.69e-06, - "booming": 2.69e-06, - "bridget": 2.69e-06, - "bruises": 2.69e-06, - "btc": 2.69e-06, - "burt": 2.69e-06, - "cages": 2.14e-07, - "caldwell": 2.69e-06, - "cara": 2.69e-06, - "cavs": 2.69e-06, - "centric": 2.69e-06, - "chaired": 2.69e-06, - "chaplain": 2.69e-06, - "chlorine": 2.69e-06, - "chow": 2.69e-06, - "chubby": 2.69e-06, - "clement": 2.69e-06, - "collusion": 2.69e-06, - "contenders": 2.69e-06, - "contractual": 2.69e-06, - "coroner": 2.69e-06, - "correctional": 2.69e-06, - "correspondents": 5.89e-08, - "corridors": 2.69e-06, - "creamy": 2.69e-06, - "cubes": 1.2e-07, - "daryl": 2.69e-06, - "deterioration": 2.69e-06, - "diapers": 2.69e-06, - "dirk": 2.69e-06, - "disbelief": 2.69e-06, - "discreet": 2.69e-06, - "distracting": 2.69e-06, - "dizzy": 2.69e-06, - "dre": 2.69e-06, - "duet": 2.69e-06, - "dustin": 2.69e-06, - "dyed": 2.69e-06, - "eisenhower": 2.69e-06, - "elle": 2.69e-06, - "elsa": 2.69e-06, - "enact": 2.69e-06, - "evaluations": 2.69e-06, - "everest": 2.69e-06, - "exporting": 2.69e-06, - "expressive": 2.69e-06, - "facilitating": 2.69e-06, - "fiddle": 2.69e-06, - "fists": 2.69e-06, - "flaming": 2.69e-06, - "foes": 5.13e-08, - "folds": 2.69e-06, - "fortified": 2.69e-06, - "fran": 2.69e-06, - "garfield": 2.69e-06, - "generalized": 2.69e-06, - "gl": 2.69e-06, - "glossy": 2.69e-06, - "gregg": 2.69e-06, - "grit": 2.69e-06, - "hammered": 2.69e-06, - "haram": 2.69e-06, - "harassing": 2.69e-06, - "hauled": 2.69e-06, - "hectares": 2.69e-06, - "hobart": 2.69e-06, - "homelessness": 2.69e-06, - "hopping": 2.69e-06, - "horrendous": 2.69e-06, - "horrified": 2.69e-06, - "hostel": 2.69e-06, - "hound": 2.69e-06, - "htc": 2.69e-06, - "hugged": 2.69e-06, - "illegitimate": 2.69e-06, - "illicit": 2.69e-06, - "importing": 2.69e-06, - "incompetence": 2.69e-06, - "insomnia": 2.69e-06, - "interception": 2.69e-06, - "invaders": 2.69e-06, - "irl": 2.69e-06, - "israelis": 8.91e-08, - "juniors": 4.57e-07, - "karaoke": 2.69e-06, - "kemp": 2.69e-06, - "kosovo": 2.69e-06, - "kw": 2.69e-06, - "lagoon": 2.69e-06, - "len": 2.69e-06, - "lesions": 2.69e-06, - "limp": 2.69e-06, - "lingering": 2.69e-06, - "linguistics": 2.69e-06, - "locating": 2.69e-06, - "logically": 2.69e-06, - "lucifer": 2.69e-06, - "lumpur": 2.69e-06, - "lunatic": 2.69e-06, - "lyrical": 2.69e-06, - "manifestation": 2.69e-06, - "manitoba": 2.69e-06, - "manufactures": 2.69e-06, - "mastering": 2.69e-06, - "mead": 2.69e-06, - "mergers": 2.69e-06, - "mhz": 2.69e-06, - "migrate": 2.69e-06, - "mildly": 2.69e-06, - "miraculous": 2.69e-06, - "moaning": 2.69e-06, - "mocked": 2.69e-06, - "mos": 2.63e-07, - "mosquitoes": 2.69e-06, - "mourn": 2.69e-06, - "mundane": 2.69e-06, - "narrowed": 2.69e-06, - "nay": 2.69e-06, - "nests": 2.69e-06, - "ngo": 2.69e-06, - "nielsen": 2.69e-06, - "nr": 2.69e-06, - "nutshell": 2.69e-06, - "ob": 2.69e-06, - "obsessive": 2.69e-06, - "offending": 2.69e-06, - "offseason": 2.69e-06, - "oswald": 2.69e-06, - "overboard": 2.69e-06, - "paws": 2.69e-06, - "pendant": 2.69e-06, - "petite": 2.69e-06, - "petitions": 2.69e-06, - "pharma": 2.69e-06, - "pimp": 2.69e-06, - "pipelines": 5.25e-08, - "poised": 2.69e-06, - "pol": 2.69e-06, - "posterior": 2.69e-06, - "pouch": 2.69e-06, - "predicts": 2.69e-06, - "prescriptions": 2.69e-06, - "probes": 8.51e-08, - "proficiency": 2.69e-06, - "progresses": 2.69e-06, - "protestors": 2.69e-06, - "psychotic": 2.69e-06, - "racists": 2.69e-06, - "referees": 2.57e-07, - "reinforcement": 2.69e-06, - "relegation": 2.69e-06, - "repertoire": 2.69e-06, - "repository": 2.69e-06, - "reversing": 2.69e-06, - "rican": 2.69e-06, - "rumble": 2.69e-06, - "sachs": 2.69e-06, - "saloon": 2.69e-06, - "sanction": 2.69e-06, - "sexes": 2.69e-06, - "shack": 2.69e-06, - "sinners": 7.59e-08, - "sire": 2.69e-06, - "slated": 2.69e-06, - "soaking": 2.69e-06, - "stale": 2.69e-06, - "stereotype": 2.69e-06, - "sterile": 2.69e-06, - "stride": 2.69e-06, - "stringent": 2.69e-06, - "sulfur": 2.69e-06, - "surfaced": 2.69e-06, - "suzuki": 2.69e-06, - "tacos": 5.01e-08, - "therapists": 1.7e-07, - "torrent": 2.69e-06, - "tp": 2.69e-06, - "trainee": 2.69e-06, - "transmitting": 2.69e-06, - "trey": 2.69e-06, - "tripped": 2.69e-06, - "trough": 2.69e-06, - "trunks": 2.69e-06, - "tummy": 2.69e-06, - "unjust": 2.69e-06, - "upbringing": 2.69e-06, - "uploading": 2.69e-06, - "vaughan": 2.69e-06, - "venezuelan": 2.69e-06, - "vis": 1.23e-07, - "vivian": 2.69e-06, - "vivo": 2.69e-06, - "wager": 2.69e-06, - "walled": 2.69e-06, - "warehouses": 2.69e-06, - "whack": 2.69e-06, - "whoops": 2.69e-06, - "wichita": 2.69e-06, - "wilde": 2.69e-06, - "wilmington": 2.69e-06, - "zambia": 2.69e-06, - "accelerator": 2.63e-06, - "accuses": 2.63e-06, - "acrylic": 2.63e-06, - "ames": 2.63e-06, - "anchorage": 2.63e-06, - "annexation": 2.63e-06, - "approves": 2.63e-06, - "ascent": 2.63e-06, - "assassins": 1.02e-06, - "atkinson": 2.63e-06, - "ballad": 2.63e-06, - "banged": 2.63e-06, - "basel": 2.63e-06, - "beckett": 2.63e-06, - "bel": 2.63e-06, - "betray": 2.63e-06, - "betsy": 2.63e-06, - "bigotry": 2.63e-06, - "biotechnology": 2.63e-06, - "blanc": 2.63e-06, - "bookstore": 2.63e-06, - "boomers": 5.75e-08, - "boone": 2.63e-06, - "bots": 2.63e-06, - "breakers": 2.63e-06, - "broom": 2.63e-06, - "browne": 2.63e-06, - "brute": 2.63e-06, - "buffy": 2.63e-06, - "busiest": 2.63e-06, - "camouflage": 2.63e-06, - "cary": 2.63e-06, - "catalan": 2.63e-06, - "chiefly": 2.63e-06, - "childbirth": 2.63e-06, - "chills": 2.63e-06, - "chung": 2.63e-06, - "collaborating": 2.63e-06, - "compliant": 2.63e-06, - "conservatism": 2.63e-06, - "continuum": 2.63e-06, - "corona": 2.63e-06, - "cosplay": 2.63e-06, - "cowardly": 2.63e-06, - "cpr": 2.63e-06, - "cruises": 1.45e-07, - "css": 2.63e-06, - "cultivate": 2.63e-06, - "curls": 2.63e-06, - "cyril": 2.63e-06, - "dealership": 2.63e-06, - "dearest": 2.63e-06, - "decker": 2.63e-06, - "defy": 2.63e-06, - "della": 2.63e-06, - "denotes": 2.63e-06, - "densely": 2.63e-06, - "derives": 2.63e-06, - "devoid": 2.63e-06, - "dhabi": 2.63e-06, - "diagrams": 2.63e-06, - "dickinson": 2.63e-06, - "disparity": 2.63e-06, - "diva": 2.63e-06, - "divert": 2.63e-06, - "dlc": 2.63e-06, - "drawers": 2.63e-06, - "eater": 2.63e-06, - "eaton": 2.63e-06, - "elegance": 2.63e-06, - "elias": 2.95e-08, - "encrypted": 2.63e-06, - "englishman": 2.63e-06, - "escorts": 2.63e-06, - "exposes": 2.63e-06, - "extraordinarily": 2.63e-06, - "facade": 2.63e-06, - "farmhouse": 2.63e-06, - "fertilizer": 2.63e-06, - "filler": 2.63e-06, - "fishes": 2.63e-06, - "flea": 2.63e-06, - "footwear": 2.63e-06, - "foxes": 2.63e-06, - "fri": 2.63e-06, - "fritz": 2.63e-06, - "froze": 2.63e-06, - "frying": 2.63e-06, - "giovanni": 2.63e-06, - "goodies": 2.63e-06, - "greenland": 2.63e-06, - "handbag": 2.63e-06, - "handicapped": 2.63e-06, - "haze": 2.63e-06, - "headquartered": 2.63e-06, - "helium": 2.63e-06, - "hemp": 2.63e-06, - "hitch": 2.63e-06, - "hoc": 2.63e-06, - "hutchinson": 2.63e-06, - "ike": 2.63e-06, - "incarnation": 2.63e-06, - "inhibitors": 2.63e-06, - "intrusion": 2.63e-06, - "inverse": 2.63e-06, - "inverted": 2.63e-06, - "irritation": 2.63e-06, - "jae": 2.63e-06, - "juices": 2.63e-06, - "julio": 2.63e-06, - "keywords": 2.63e-06, - "lavish": 2.63e-06, - "libyan": 2.63e-06, - "livelihood": 2.63e-06, - "livingston": 2.63e-06, - "mansfield": 2.63e-06, - "marches": 2.63e-06, - "mckenzie": 2.63e-06, - "medic": 2.63e-06, - "merlin": 2.63e-06, - "midland": 2.63e-06, - "miscellaneous": 2.63e-06, - "misguided": 2.63e-06, - "morrow": 2.63e-06, - "motivations": 2.63e-06, - "moto": 2.63e-06, - "mozart": 2.63e-06, - "muster": 2.63e-06, - "mutants": 2.63e-06, - "muted": 2.63e-06, - "noodle": 2.63e-06, - "nylon": 2.63e-06, - "override": 2.63e-06, - "ozone": 2.63e-06, - "papua": 2.63e-06, - "paranoia": 2.63e-06, - "paving": 2.63e-06, - "persecuted": 2.63e-06, - "peruvian": 2.63e-06, - "phosphate": 2.63e-06, - "php": 2.63e-06, - "physicist": 2.63e-06, - "piping": 2.63e-06, - "plurality": 2.63e-06, - "prehistoric": 2.63e-06, - "prescott": 2.63e-06, - "prohibits": 2.63e-06, - "pronouns": 2.63e-06, - "proton": 2.63e-06, - "psyche": 2.63e-06, - "quickest": 2.63e-06, - "redesign": 2.63e-06, - "relocated": 2.63e-06, - "reluctance": 2.63e-06, - "rentals": 2.63e-06, - "reopen": 2.63e-06, - "replication": 2.63e-06, - "rigging": 2.63e-06, - "rotor": 2.63e-06, - "sediment": 2.63e-06, - "seeming": 2.63e-06, - "selves": 2.63e-06, - "sneaking": 2.63e-06, - "solitude": 2.63e-06, - "spacing": 2.63e-06, - "standby": 2.63e-06, - "std": 2.63e-06, - "straps": 2.63e-06, - "strikers": 1.1e-07, - "stronghold": 2.63e-06, - "stumble": 2.63e-06, - "suicides": 2.63e-06, - "supermarkets": 2.63e-06, - "talbot": 2.63e-06, - "theorists": 2.63e-06, - "therell": 2.63e-06, - "therein": 2.63e-06, - "triangular": 2.63e-06, - "tricked": 2.63e-06, - "trooper": 2.63e-06, - "truthful": 2.63e-06, - "turret": 2.63e-06, - "ubiquitous": 2.63e-06, - "unbelievably": 2.63e-06, - "unconventional": 2.63e-06, - "unnecessarily": 2.63e-06, - "unnoticed": 2.63e-06, - "untouched": 2.63e-06, - "vega": 2.63e-06, - "ver": 2.63e-06, - "vibrations": 2.63e-06, - "vin": 2.63e-06, - "virgil": 2.63e-06, - "visionary": 2.63e-06, - "vitro": 2.63e-06, - "voodoo": 2.63e-06, - "wigan": 2.63e-06, - "wilder": 2.63e-06, - "witchcraft": 2.63e-06, - "withdrawals": 2.63e-06, - "withdrawing": 2.63e-06, - "wrestlers": 7.24e-08, - "yong": 2.63e-06, - "abbas": 8.71e-08, - "adultery": 2.57e-06, - "agile": 2.57e-06, - "aides": 4.57e-08, - "anonymously": 2.57e-06, - "aristotle": 2.57e-06, - "artifact": 2.57e-06, - "austerity": 2.57e-06, - "awfully": 2.57e-06, - "axes": 2.82e-08, - "barca": 2.57e-06, - "battered": 2.57e-06, - "beatrice": 2.57e-06, - "beethoven": 2.57e-06, - "biking": 2.57e-06, - "boob": 2.57e-06, - "boosts": 2.57e-06, - "bouquet": 2.57e-06, - "boxers": 1.26e-07, - "browning": 2.57e-06, - "bullock": 2.57e-06, - "cad": 2.57e-06, - "candidacy": 2.57e-06, - "cartridges": 2.57e-06, - "carve": 2.57e-06, - "cherished": 2.57e-06, - "climbs": 2.57e-06, - "clubhouse": 2.57e-06, - "coarse": 2.57e-06, - "collegiate": 2.57e-06, - "commonplace": 2.57e-06, - "compute": 2.57e-06, - "conan": 2.57e-06, - "confidently": 2.57e-06, - "constrained": 2.57e-06, - "contemplate": 2.57e-06, - "converter": 2.57e-06, - "coop": 2.57e-06, - "cooperating": 2.57e-06, - "coronary": 2.57e-06, - "cottages": 2.57e-06, - "countys": 2.57e-06, - "cps": 7.59e-08, - "crook": 2.57e-06, - "cucumber": 2.57e-06, - "cupcakes": 2.57e-06, - "darts": 4.79e-08, - "davids": 4.9e-07, - "deco": 2.57e-06, - "depict": 2.57e-06, - "desmond": 2.57e-06, - "diagnose": 2.57e-06, - "directorate": 2.57e-06, - "disliked": 2.57e-06, - "diver": 2.57e-06, - "dora": 2.57e-06, - "dormant": 2.57e-06, - "dotted": 2.57e-06, - "drifted": 2.57e-06, - "duffy": 2.57e-06, - "embarrass": 2.57e-06, - "emmanuel": 2.57e-06, - "emulate": 2.57e-06, - "encompasses": 2.57e-06, - "endowed": 2.57e-06, - "enquiry": 2.57e-06, - "evasion": 2.57e-06, - "evergreen": 2.57e-06, - "eviction": 2.57e-06, - "excerpts": 2.57e-06, - "explodes": 2.57e-06, - "explorers": 1.45e-07, - "expulsion": 2.57e-06, - "fades": 2.57e-06, - "fedex": 2.57e-06, - "figs": 2.57e-06, - "filth": 2.57e-06, - "firefox": 2.57e-06, - "floated": 2.57e-06, - "foliage": 2.57e-06, - "foreclosure": 2.57e-06, - "forgets": 2.57e-06, - "fortnight": 2.57e-06, - "fresno": 2.57e-06, - "fs": 2.69e-07, - "funnier": 2.57e-06, - "genie": 2.57e-06, - "glued": 2.57e-06, - "goo": 2.57e-06, - "goodwin": 2.57e-06, - "hannibal": 2.57e-06, - "heartbroken": 2.57e-06, - "heats": 2.95e-07, - "helper": 2.57e-06, - "hesitant": 2.57e-06, - "hoop": 2.57e-06, - "howd": 6.17e-08, - "hubby": 2.57e-06, - "humiliated": 2.57e-06, - "hurdle": 2.57e-06, - "hypertension": 2.57e-06, - "immersed": 2.57e-06, - "immortality": 2.57e-06, - "indefinite": 2.57e-06, - "indices": 2.57e-06, - "insightful": 2.57e-06, - "invitations": 2.57e-06, - "io": 2.57e-06, - "ipswich": 2.57e-06, - "irrespective": 2.57e-06, - "jacks": 1.91e-06, - "jeanne": 2.57e-06, - "kicker": 2.57e-06, - "kyoto": 2.57e-06, - "leaned": 2.57e-06, - "leases": 2.57e-06, - "ledge": 2.57e-06, - "levin": 2.57e-06, - "lgbtq": 2.57e-06, - "lunches": 2.57e-06, - "macbook": 2.57e-06, - "mackay": 2.57e-06, - "madeleine": 2.57e-06, - "maj": 2.57e-06, - "malt": 2.57e-06, - "mandela": 2.57e-06, - "marian": 2.57e-06, - "mayors": 2.19e-06, - "melts": 2.57e-06, - "mindfulness": 2.57e-06, - "mined": 2.57e-06, - "mj": 2.57e-06, - "moderator": 2.57e-06, - "momma": 2.57e-06, - "monstrous": 2.57e-06, - "moran": 2.57e-06, - "morphology": 2.57e-06, - "mustache": 2.57e-06, - "nasdaq": 2.57e-06, - "natal": 2.57e-06, - "nodded": 2.57e-06, - "novice": 2.57e-06, - "obituary": 2.57e-06, - "olivier": 2.57e-06, - "ordination": 2.57e-06, - "otis": 2.57e-06, - "owls": 2.04e-07, - "parity": 2.57e-06, - "paterson": 2.57e-06, - "percentages": 2.57e-06, - "persuasive": 2.57e-06, - "pests": 2.57e-06, - "pew": 2.57e-06, - "philips": 3.31e-07, - "piled": 2.57e-06, - "poking": 2.57e-06, - "populous": 2.57e-06, - "postwar": 2.57e-06, - "presided": 2.57e-06, - "prevailed": 2.57e-06, - "proactive": 2.57e-06, - "prob": 2.57e-06, - "projector": 2.57e-06, - "prominently": 2.57e-06, - "prudent": 2.57e-06, - "qualifier": 2.57e-06, - "quincy": 2.57e-06, - "radios": 6.61e-07, - "ratified": 2.57e-06, - "realising": 2.57e-06, - "refining": 2.57e-06, - "regretted": 2.57e-06, - "reliant": 2.57e-06, - "reputable": 2.57e-06, - "revolver": 2.57e-06, - "revolving": 2.57e-06, - "ricardo": 2.57e-06, - "rink": 2.57e-06, - "ripple": 2.57e-06, - "robbers": 7.41e-08, - "routledge": 2.57e-06, - "salts": 5.25e-08, - "sampled": 2.57e-06, - "scrolls": 2.57e-06, - "seeker": 2.57e-06, - "sentinel": 2.57e-06, - "signalling": 2.57e-06, - "sirens": 8.32e-08, - "slovenia": 2.57e-06, - "solemn": 2.57e-06, - "spacex": 2.57e-06, - "spacious": 2.57e-06, - "spheres": 2.57e-06, - "spraying": 2.57e-06, - "sprung": 2.57e-06, - "stacey": 2.57e-06, - "starr": 2.57e-06, - "substantive": 2.57e-06, - "substitution": 2.57e-06, - "sugars": 1.48e-07, - "sweetest": 2.57e-06, - "taxing": 2.57e-06, - "tobago": 2.57e-06, - "torah": 2.57e-06, - "torso": 2.57e-06, - "transcripts": 2.57e-06, - "tremendously": 2.57e-06, - "trojan": 2.57e-06, - "tumble": 2.57e-06, - "unleash": 2.57e-06, - "unpublished": 2.57e-06, - "untrue": 2.57e-06, - "verbally": 2.57e-06, - "vitality": 2.57e-06, - "wc": 2.57e-06, - "weeping": 2.57e-06, - "whispering": 2.57e-06, - "windshield": 2.57e-06, - "wolfe": 2.57e-06, - "zodiac": 2.57e-06, - "abandonment": 2.51e-06, - "abyss": 2.51e-06, - "accession": 2.51e-06, - "acquaintances": 2.51e-06, - "alvarez": 2.51e-06, - "alvin": 2.51e-06, - "amateurs": 2.51e-06, - "amir": 2.51e-06, - "anders": 2.51e-06, - "archived": 2.51e-06, - "arithmetic": 2.51e-06, - "arson": 2.51e-06, - "astronomers": 2.51e-06, - "auditions": 2.51e-06, - "authoritative": 2.51e-06, - "awarding": 2.51e-06, - "barren": 2.51e-06, - "basal": 2.51e-06, - "batsman": 2.51e-06, - "bedding": 2.51e-06, - "bender": 2.51e-06, - "bethlehem": 2.51e-06, - "bicycles": 2.51e-06, - "boi": 2.51e-06, - "bourgeois": 2.51e-06, - "braking": 2.51e-06, - "bribery": 2.51e-06, - "brunette": 2.51e-06, - "bureaucratic": 2.51e-06, - "buzzer": 2.51e-06, - "cactus": 2.51e-06, - "carlson": 2.51e-06, - "cassette": 2.51e-06, - "chants": 2.51e-06, - "characterised": 2.51e-06, - "childcare": 2.51e-06, - "chocolates": 2.51e-06, - "chronological": 2.51e-06, - "cleavage": 2.51e-06, - "clones": 2.51e-06, - "cohort": 2.51e-06, - "commandments": 2.51e-06, - "conceive": 2.51e-06, - "condensed": 2.51e-06, - "contemporaries": 2.51e-06, - "controversies": 2.51e-06, - "convened": 2.51e-06, - "conveyed": 2.51e-06, - "crabs": 2.51e-06, - "cuddle": 2.51e-06, - "culprit": 2.51e-06, - "darius": 2.51e-06, - "daunting": 2.51e-06, - "demos": 6.46e-08, - "deviation": 2.51e-06, - "diffusion": 2.51e-06, - "dildo": 2.51e-06, - "distrust": 2.51e-06, - "dominates": 2.51e-06, - "echoed": 2.51e-06, - "elbows": 2.51e-06, - "ellison": 2.51e-06, - "elves": 2.51e-06, - "embark": 2.51e-06, - "empires": 5.62e-07, - "entrepreneurial": 2.51e-06, - "ether": 2.51e-06, - "etiquette": 2.51e-06, - "exhibiting": 2.51e-06, - "extravagant": 2.51e-06, - "familiarity": 2.51e-06, - "felipe": 2.51e-06, - "fender": 2.51e-06, - "feng": 2.51e-06, - "ferris": 2.51e-06, - "fetal": 2.51e-06, - "fiance": 2.51e-06, - "finer": 2.51e-06, - "fittings": 2.51e-06, - "flushing": 2.51e-06, - "fn": 1.51e-07, - "freeing": 2.51e-06, - "fused": 2.51e-06, - "goa": 2.51e-06, - "gorge": 2.51e-06, - "greenwood": 2.51e-06, - "groves": 6.92e-08, - "gu": 2.51e-06, - "gutted": 2.51e-06, - "harp": 2.51e-06, - "hartley": 2.51e-06, - "heartfelt": 2.51e-06, - "hinted": 2.51e-06, - "hoodie": 2.51e-06, - "housewife": 2.51e-06, - "housewives": 2.51e-06, - "hubs": 7.24e-08, - "hypocrite": 2.51e-06, - "incorporation": 2.51e-06, - "insure": 2.51e-06, - "joyful": 2.51e-06, - "judah": 2.51e-06, - "kabul": 2.51e-06, - "kelley": 2.51e-06, - "kickoff": 2.51e-06, - "kimberly": 2.51e-06, - "lacrosse": 2.51e-06, - "lars": 2.51e-06, - "latex": 2.51e-06, - "leftover": 2.51e-06, - "legalization": 2.51e-06, - "lf": 2.51e-06, - "localized": 2.51e-06, - "lori": 2.51e-06, - "malibu": 2.51e-06, - "mammoth": 2.51e-06, - "martyrs": 1.74e-07, - "marvellous": 2.51e-06, - "matchup": 2.51e-06, - "meh": 2.51e-06, - "merkel": 2.51e-06, - "modem": 2.51e-06, - "mosques": 7.59e-08, - "motif": 2.51e-06, - "necks": 2.51e-06, - "newcomer": 2.51e-06, - "nic": 2.51e-06, - "nobles": 1.58e-07, - "oats": 2.51e-06, - "ominous": 2.51e-06, - "openness": 2.51e-06, - "optimized": 2.51e-06, - "overheard": 2.51e-06, - "oversized": 2.51e-06, - "pak": 2.51e-06, - "pandora": 2.51e-06, - "panicked": 2.51e-06, - "paolo": 2.51e-06, - "papal": 2.51e-06, - "patton": 2.51e-06, - "pepe": 2.51e-06, - "peril": 2.51e-06, - "pk": 2.51e-06, - "playable": 2.51e-06, - "plunged": 2.51e-06, - "polly": 2.51e-06, - "pores": 2.51e-06, - "posh": 2.51e-06, - "practising": 2.51e-06, - "precaution": 2.51e-06, - "principally": 2.51e-06, - "professionalism": 2.51e-06, - "puppets": 2.51e-06, - "pv": 2.51e-06, - "rampage": 2.51e-06, - "reassuring": 2.51e-06, - "rebirth": 2.51e-06, - "recharge": 2.51e-06, - "rehearsals": 2.51e-06, - "reliably": 2.51e-06, - "renovations": 2.51e-06, - "reservoirs": 2.51e-06, - "retina": 2.51e-06, - "revolves": 2.51e-06, - "riff": 2.51e-06, - "rosen": 2.51e-06, - "rossi": 2.51e-06, - "rr": 2.51e-06, - "rutgers": 2.51e-06, - "sahara": 2.51e-06, - "scattering": 2.51e-06, - "scrape": 2.51e-06, - "scripted": 2.51e-06, - "semantic": 2.51e-06, - "shear": 2.51e-06, - "shedding": 2.51e-06, - "sherry": 2.51e-06, - "shitting": 2.51e-06, - "silicone": 2.51e-06, - "skepticism": 2.51e-06, - "slovakia": 2.51e-06, - "sly": 2.51e-06, - "smiley": 2.51e-06, - "smithsonian": 2.51e-06, - "snoop": 2.51e-06, - "sponsoring": 2.51e-06, - "stables": 2.51e-06, - "startling": 2.51e-06, - "strands": 2.51e-06, - "strife": 2.51e-06, - "stylist": 2.51e-06, - "superheroes": 2.51e-06, - "tattooed": 2.51e-06, - "tenor": 2.51e-06, - "thrift": 2.51e-06, - "toured": 2.51e-06, - "transformations": 2.51e-06, - "traverse": 2.51e-06, - "turnaround": 2.51e-06, - "uterus": 2.51e-06, - "validate": 2.51e-06, - "vid": 2.51e-06, - "vocalist": 2.51e-06, - "vw": 2.51e-06, - "warranted": 2.51e-06, - "weakening": 2.51e-06, - "westbrook": 2.51e-06, - "wildcats": 2.51e-06, - "wipes": 2.51e-06, - "wrists": 2.51e-06, - "xvi": 2.51e-06, - "yielding": 2.51e-06, - "zebra": 2.51e-06, - "zionist": 2.51e-06, - "abrams": 2.45e-06, - "aces": 1.62e-07, - "aft": 2.45e-06, - "albion": 2.45e-06, - "anesthesia": 2.45e-06, - "anonymity": 2.45e-06, - "anticipating": 2.45e-06, - "antoine": 2.45e-06, - "appropriation": 2.45e-06, - "aria": 2.45e-06, - "articulated": 2.45e-06, - "assassinated": 2.45e-06, - "babes": 9.77e-08, - "bandits": 6.46e-08, - "banished": 2.45e-06, - "barefoot": 2.45e-06, - "barrage": 2.45e-06, - "bartlett": 2.45e-06, - "beauties": 2.45e-06, - "bestowed": 2.45e-06, - "bethesda": 2.45e-06, - "blackpool": 2.45e-06, - "bordering": 2.45e-06, - "bournemouth": 2.45e-06, - "brilliance": 2.45e-06, - "britney": 2.45e-06, - "broth": 2.45e-06, - "bruised": 2.45e-06, - "buns": 2.45e-06, - "burnley": 2.45e-06, - "cabins": 6.92e-08, - "campaigned": 2.45e-06, - "centenary": 2.45e-06, - "ceos": 6.61e-07, - "checkpoint": 2.45e-06, - "chloride": 2.45e-06, - "classify": 2.45e-06, - "clinically": 2.45e-06, - "cocky": 2.45e-06, - "coefficient": 2.45e-06, - "coined": 2.45e-06, - "collapsing": 2.45e-06, - "collisions": 2.45e-06, - "condemning": 2.45e-06, - "conditioner": 2.45e-06, - "conductors": 1e-07, - "cones": 2.04e-08, - "conglomerate": 2.45e-06, - "consultations": 2.45e-06, - "conversions": 2.45e-06, - "cornerstone": 2.45e-06, - "correctness": 2.45e-06, - "counterfeit": 2.45e-06, - "damian": 2.45e-06, - "dazzling": 2.45e-06, - "dea": 2.45e-06, - "deacon": 2.45e-06, - "debuts": 2.45e-06, - "deceived": 2.45e-06, - "delaying": 2.45e-06, - "dentistry": 2.45e-06, - "desks": 2.45e-06, - "detainees": 2.45e-06, - "dictated": 2.45e-06, - "dino": 2.45e-06, - "disks": 2.45e-06, - "dismissing": 2.45e-06, - "dortmund": 2.45e-06, - "edgy": 2.45e-06, - "eff": 2.45e-06, - "elevators": 2.45e-06, - "elton": 2.45e-06, - "encore": 2.45e-06, - "engages": 2.45e-06, - "enormously": 2.45e-06, - "epstein": 2.45e-06, - "err": 2.45e-06, - "erupted": 2.45e-06, - "espresso": 2.45e-06, - "evade": 2.45e-06, - "fab": 2.45e-06, - "fairs": 3.02e-07, - "freaky": 2.45e-06, - "freshmen": 2.45e-06, - "futile": 2.45e-06, - "genera": 2.45e-06, - "germs": 2.45e-06, - "glacial": 2.45e-06, - "glands": 2.45e-06, - "gloomy": 2.45e-06, - "graceful": 2.45e-06, - "grievances": 2.45e-06, - "gritty": 2.45e-06, - "hanoi": 2.45e-06, - "hayley": 2.45e-06, - "heartbreak": 2.45e-06, - "heist": 2.45e-06, - "heterosexual": 2.45e-06, - "hewitt": 2.45e-06, - "hinder": 2.45e-06, - "hobbit": 2.45e-06, - "horseback": 2.45e-06, - "hospice": 2.45e-06, - "hotline": 2.45e-06, - "huang": 2.45e-06, - "inhibition": 2.45e-06, - "integer": 2.45e-06, - "interdisciplinary": 2.45e-06, - "intermittent": 2.45e-06, - "intimidation": 2.45e-06, - "islamist": 2.45e-06, - "italia": 2.45e-06, - "iteration": 2.45e-06, - "joys": 2.45e-07, - "kitchens": 1.82e-07, - "kremlin": 2.45e-06, - "langley": 2.45e-06, - "liners": 2.45e-06, - "liv": 2.45e-06, - "lv": 2.45e-06, - "madagascar": 2.45e-06, - "magnum": 2.45e-06, - "malay": 2.45e-06, - "mandates": 2.45e-06, - "martian": 2.45e-06, - "mashed": 2.45e-06, - "maxim": 2.45e-06, - "mei": 2.45e-06, - "melancholy": 2.45e-06, - "meteorological": 2.45e-06, - "milf": 2.45e-06, - "misplaced": 2.45e-06, - "misty": 2.45e-06, - "modifying": 2.45e-06, - "moines": 2.45e-06, - "monsieur": 2.45e-06, - "mop": 2.45e-06, - "multicultural": 2.45e-06, - "nearing": 2.45e-06, - "negatives": 2.45e-06, - "negligible": 2.45e-06, - "nesting": 2.45e-06, - "nudity": 2.45e-06, - "obligatory": 2.45e-06, - "oceanic": 2.45e-06, - "od": 2.45e-08, - "oooh": 2.45e-06, - "ornaments": 2.45e-06, - "outpost": 2.45e-06, - "outputs": 2.45e-06, - "overflow": 2.45e-06, - "oxidation": 2.45e-06, - "panorama": 2.45e-06, - "pascal": 2.45e-06, - "peep": 2.45e-06, - "pencils": 2.45e-06, - "pervasive": 2.45e-06, - "pickle": 2.45e-06, - "pinky": 2.45e-06, - "playwright": 2.45e-06, - "pledges": 2.45e-06, - "predatory": 2.45e-06, - "preface": 2.45e-06, - "prescribe": 2.45e-06, - "punitive": 2.45e-06, - "quits": 2.45e-06, - "rainforest": 2.45e-06, - "raphael": 2.45e-06, - "reborn": 2.45e-06, - "reddish": 2.45e-06, - "refurbished": 2.45e-06, - "repercussions": 2.45e-06, - "reprint": 2.45e-06, - "restroom": 2.45e-06, - "rhythmic": 2.45e-06, - "robber": 2.45e-06, - "robes": 2.45e-06, - "rockies": 2.45e-06, - "roi": 2.45e-06, - "roommates": 3.09e-07, - "roulette": 2.45e-06, - "rounding": 2.45e-06, - "rowing": 2.45e-06, - "rulings": 2.45e-06, - "rumored": 2.45e-06, - "rupees": 2.45e-06, - "sams": 7.76e-07, - "samoa": 2.45e-06, - "samson": 2.45e-06, - "satin": 2.45e-06, - "scatter": 2.45e-06, - "scramble": 2.45e-06, - "scraps": 2.45e-06, - "segregated": 2.45e-06, - "semantics": 2.45e-06, - "settles": 2.45e-06, - "shameless": 2.45e-06, - "sharif": 2.45e-06, - "showtime": 2.45e-06, - "silenced": 2.45e-06, - "sinner": 2.45e-06, - "skeletal": 2.45e-06, - "skeletons": 2.45e-06, - "skulls": 7.24e-08, - "slows": 2.45e-06, - "snapshot": 2.45e-06, - "soar": 2.45e-06, - "somethings": 1.32e-06, - "spherical": 2.45e-06, - "spotting": 2.45e-06, - "sprinkle": 2.45e-06, - "spruce": 2.45e-06, - "squared": 2.45e-06, - "squirrels": 6.31e-08, - "stacy": 2.45e-06, - "stamina": 2.45e-06, - "standalone": 2.45e-06, - "stimuli": 2.45e-06, - "subconscious": 2.45e-06, - "thinker": 2.45e-06, - "tonic": 2.45e-06, - "tossing": 2.45e-06, - "troublesome": 2.45e-06, - "tumour": 2.45e-06, - "twain": 2.45e-06, - "uncertainties": 2.45e-06, - "underestimated": 2.45e-06, - "utopia": 2.45e-06, - "vanish": 2.45e-06, - "vigorously": 2.45e-06, - "visibly": 2.45e-06, - "vowed": 2.45e-06, - "vpn": 2.45e-06, - "waterways": 2.45e-06, - "wetlands": 2.45e-06, - "whitman": 2.45e-06, - "wrecking": 2.45e-06, - "xiv": 2.45e-06, - "abigail": 2.4e-06, - "abrupt": 2.4e-06, - "acronym": 2.4e-06, - "adaptations": 2.4e-06, - "adversity": 2.4e-06, - "advertiser": 2.4e-06, - "affidavit": 2.4e-06, - "amc": 2.4e-06, - "antics": 2.4e-06, - "antony": 2.4e-06, - "ao": 2.4e-06, - "appreciates": 2.4e-06, - "artworks": 2.4e-06, - "asserts": 2.4e-06, - "astrology": 2.4e-06, - "attachments": 2.4e-06, - "authorize": 2.4e-06, - "baroness": 2.4e-06, - "barrow": 2.4e-06, - "begs": 2.4e-06, - "bengals": 6.31e-08, - "binds": 2.4e-06, - "biographical": 2.4e-06, - "biomass": 2.4e-06, - "bitcoins": 4.17e-07, - "blanche": 2.4e-06, - "blm": 2.4e-06, - "blouse": 2.4e-06, - "bodyguard": 2.4e-06, - "borrowers": 1.51e-07, - "botany": 2.4e-06, - "bras": 2.4e-06, - "bulldog": 2.4e-06, - "caterpillar": 2.4e-06, - "censored": 2.4e-06, - "chatter": 2.4e-06, - "cheered": 2.4e-06, - "chops": 2.4e-06, - "cleric": 2.4e-06, - "cn": 2.4e-06, - "colbert": 2.4e-06, - "comedic": 2.4e-06, - "compile": 2.4e-06, - "compressor": 2.4e-06, - "compton": 2.4e-06, - "conferred": 2.4e-06, - "conn": 2.4e-06, - "constantinople": 2.4e-06, - "contrasts": 2.4e-06, - "cooke": 2.4e-06, - "cougar": 2.4e-06, - "creeps": 2.4e-06, - "cutler": 2.4e-06, - "czechoslovakia": 2.4e-06, - "deadlines": 2.4e-06, - "deceive": 2.4e-06, - "defamation": 2.4e-06, - "denny": 2.4e-06, - "det": 2.4e-06, - "digs": 1.86e-08, - "diminishing": 2.4e-06, - "directional": 2.4e-06, - "disagreements": 2.4e-06, - "disciple": 2.4e-06, - "ditto": 2.4e-06, - "divergent": 2.4e-06, - "doctorate": 2.4e-06, - "doncaster": 2.4e-06, - "donnie": 2.4e-06, - "downright": 2.4e-06, - "dues": 2.4e-06, - "dumbest": 2.4e-06, - "dwellings": 2.4e-06, - "electrode": 2.4e-06, - "elemental": 2.4e-06, - "elevate": 2.4e-06, - "eliminates": 2.4e-06, - "encoding": 2.4e-06, - "excludes": 2.4e-06, - "exemplary": 2.4e-06, - "exited": 2.4e-06, - "expansive": 2.4e-06, - "fife": 2.4e-06, - "flakes": 2.4e-06, - "flavours": 2.4e-06, - "geez": 2.4e-06, - "gemini": 2.4e-06, - "gifs": 2.4e-06, - "gland": 2.4e-06, - "gotcha": 2.4e-06, - "gst": 2.4e-06, - "guerrilla": 2.4e-06, - "gutter": 2.4e-06, - "hearty": 2.4e-06, - "highschool": 2.4e-06, - "hillside": 2.4e-06, - "hitlers": 1.58e-07, - "hms": 2.4e-06, - "hodges": 5.5e-08, - "hoo": 2.4e-06, - "hovering": 2.4e-06, - "ht": 2.4e-06, - "hun": 2.4e-06, - "hysteria": 2.4e-06, - "impartial": 2.4e-06, - "imperialism": 2.4e-06, - "imprint": 2.4e-06, - "incremental": 2.4e-06, - "independents": 5.25e-08, - "infancy": 2.4e-06, - "infused": 2.4e-06, - "inhibitor": 2.4e-06, - "initiating": 2.4e-06, - "injuring": 2.4e-06, - "inquire": 2.4e-06, - "inscribed": 2.4e-06, - "insulated": 2.4e-06, - "jang": 2.4e-06, - "jogging": 2.4e-06, - "jumbo": 2.4e-06, - "kale": 2.4e-06, - "katz": 2.4e-06, - "keyboards": 2.4e-06, - "kraft": 2.4e-06, - "landowners": 2.4e-06, - "lash": 2.4e-06, - "latina": 2.4e-06, - "lees": 1.1e-06, - "leftovers": 2.4e-06, - "louie": 2.4e-06, - "lte": 2.4e-06, - "luca": 2.4e-06, - "madras": 2.4e-06, - "magnets": 2.4e-06, - "manageable": 2.4e-06, - "manslaughter": 2.4e-06, - "manuals": 2.4e-06, - "marianne": 2.4e-06, - "martins": 1.35e-06, - "mecca": 2.4e-06, - "meridian": 2.4e-06, - "midi": 2.4e-06, - "mikhail": 2.4e-06, - "mir": 2.4e-06, - "misdemeanor": 2.4e-06, - "misfortune": 2.4e-06, - "mondays": 1.7e-06, - "moons": 1.17e-06, - "mountainous": 2.4e-06, - "ndp": 2.4e-06, - "nearer": 2.4e-06, - "newfoundland": 2.4e-06, - "obnoxious": 2.4e-06, - "olsen": 2.4e-06, - "orphanage": 2.4e-06, - "overseeing": 2.4e-06, - "paused": 2.4e-06, - "penned": 2.4e-06, - "perpetrators": 7.59e-08, - "phoebe": 2.4e-06, - "pilgrim": 2.4e-06, - "plainly": 2.4e-06, - "positives": 2.4e-06, - "punishments": 2.4e-06, - "purdue": 2.4e-06, - "qualifies": 2.4e-06, - "rake": 2.4e-06, - "recalling": 2.4e-06, - "resent": 2.4e-06, - "retreated": 2.4e-06, - "retribution": 2.4e-06, - "revolutions": 1.48e-07, - "rhetorical": 2.4e-06, - "rightful": 2.4e-06, - "robbing": 2.4e-06, - "royale": 2.4e-06, - "rumour": 2.4e-06, - "safeguards": 2.4e-06, - "savages": 2.09e-07, - "sbs": 2.4e-06, - "semen": 2.4e-06, - "senegal": 2.4e-06, - "sequencing": 2.4e-06, - "shapiro": 2.4e-06, - "shea": 2.4e-06, - "shorten": 2.4e-06, - "sighs": 2.4e-06, - "sixteenth": 2.4e-06, - "slime": 2.4e-06, - "sow": 2.4e-06, - "sparkle": 2.4e-06, - "spawn": 2.4e-06, - "sql": 2.4e-06, - "successors": 2.4e-06, - "suffrage": 2.4e-06, - "superiors": 5.89e-08, - "surrogate": 2.4e-06, - "synopsis": 2.4e-06, - "tainted": 2.4e-06, - "tanya": 2.4e-06, - "ticks": 2.4e-06, - "toddlers": 1.86e-07, - "tomas": 1.02e-08, - "toothbrush": 2.4e-06, - "towed": 2.4e-06, - "trapping": 2.4e-06, - "treatise": 2.4e-06, - "tristan": 2.4e-06, - "uphill": 2.4e-06, - "upton": 2.4e-06, - "validated": 2.4e-06, - "variability": 2.4e-06, - "waltz": 2.4e-06, - "wooded": 2.4e-06, - "workings": 2.4e-06, - "zac": 2.4e-06, - "zhou": 2.4e-06, - "acl": 2.34e-06, - "adhesive": 2.34e-06, - "adolf": 2.34e-06, - "adorned": 2.34e-06, - "affluent": 2.34e-06, - "als": 3.47e-07, - "ambiguity": 2.34e-06, - "anguish": 2.34e-06, - "annals": 2.34e-06, - "antitrust": 2.34e-06, - "apologizing": 2.34e-06, - "archaeologists": 2.34e-06, - "arid": 2.34e-06, - "avg": 2.34e-06, - "bandit": 2.34e-06, - "barrister": 2.34e-06, - "bazaar": 2.34e-06, - "beneficiary": 2.34e-06, - "bianca": 2.34e-06, - "biker": 2.34e-06, - "bipartisan": 2.34e-06, - "birthplace": 2.34e-06, - "bl": 2.34e-06, - "bono": 2.34e-06, - "bracelets": 2.34e-06, - "brides": 8.71e-07, - "brochure": 2.34e-06, - "brokerage": 2.34e-06, - "buildup": 2.34e-06, - "butch": 2.34e-06, - "canucks": 2.34e-06, - "carly": 2.34e-06, - "carpets": 2.34e-06, - "carriages": 2.34e-06, - "catholicism": 2.34e-06, - "cgi": 2.34e-06, - "chained": 2.34e-06, - "chats": 2.34e-06, - "cheng": 2.34e-06, - "ching": 2.34e-06, - "chopping": 2.34e-06, - "cigars": 2.34e-06, - "civilisation": 2.34e-06, - "closures": 2.34e-06, - "coasts": 2.69e-07, - "cobalt": 2.34e-06, - "collaborated": 2.34e-06, - "collapses": 2.34e-06, - "collier": 2.34e-06, - "colossal": 2.34e-06, - "comm": 2.34e-06, - "commodore": 2.34e-06, - "compiler": 2.34e-06, - "conserve": 2.34e-06, - "constellation": 2.34e-06, - "contour": 2.34e-06, - "crispy": 2.34e-06, - "cropped": 2.34e-06, - "crore": 2.34e-06, - "crowley": 2.34e-06, - "curfew": 2.34e-06, - "daytona": 2.34e-06, - "decidedly": 2.34e-06, - "delusion": 2.34e-06, - "demi": 2.34e-06, - "depreciation": 2.34e-06, - "designate": 2.34e-06, - "dh": 2.34e-06, - "discard": 2.34e-06, - "discontent": 2.34e-06, - "div": 2.34e-06, - "dixie": 2.34e-06, - "dopamine": 2.34e-06, - "douche": 2.34e-06, - "dunes": 2.34e-06, - "dyke": 2.34e-06, - "echoing": 2.34e-06, - "eclectic": 2.34e-06, - "ecstatic": 2.34e-06, - "ejected": 2.34e-06, - "endemic": 2.34e-06, - "enlist": 2.34e-06, - "entails": 2.34e-06, - "envisioned": 2.34e-06, - "eta": 2.34e-06, - "exchanging": 2.34e-06, - "exiled": 2.34e-06, - "eyebrow": 2.34e-06, - "fascists": 2.34e-06, - "firefighter": 2.34e-06, - "flashbacks": 2.34e-06, - "fluorescent": 2.34e-06, - "francois": 2.34e-06, - "freakin": 2.34e-06, - "fulham": 2.34e-06, - "futuristic": 2.34e-06, - "gearing": 2.34e-06, - "hallmark": 2.34e-06, - "hanover": 2.34e-06, - "harrington": 2.34e-06, - "haste": 2.34e-06, - "hauling": 2.34e-06, - "heathrow": 2.34e-06, - "hybrids": 2.34e-06, - "hyun": 2.34e-06, - "identifiable": 2.34e-06, - "igor": 2.34e-06, - "illiterate": 2.34e-06, - "immaculate": 2.34e-06, - "improvised": 2.34e-06, - "inclination": 2.34e-06, - "infested": 2.34e-06, - "insurgents": 2.34e-06, - "interpersonal": 2.34e-06, - "interracial": 2.34e-06, - "intruder": 2.34e-06, - "inward": 2.34e-06, - "ipo": 2.34e-06, - "itching": 2.34e-06, - "jai": 2.34e-06, - "jarvis": 2.34e-06, - "jenner": 2.34e-06, - "johann": 2.34e-06, - "jolie": 2.34e-06, - "judas": 2.34e-06, - "judd": 2.34e-06, - "kan": 2.34e-06, - "kaplan": 2.34e-06, - "kinky": 2.34e-06, - "koreas": 2.29e-07, - "landings": 2.34e-06, - "launcher": 2.34e-06, - "ld": 2.34e-06, - "legality": 2.34e-06, - "lenny": 2.34e-06, - "lessen": 2.34e-06, - "lifespan": 2.34e-06, - "longitudinal": 2.34e-06, - "loosen": 2.34e-06, - "ly": 2.34e-06, - "macedonia": 2.34e-06, - "mandy": 2.34e-06, - "masculinity": 2.34e-06, - "matured": 2.34e-06, - "mcgee": 2.34e-06, - "mcgraw": 2.34e-06, - "microscopic": 2.34e-06, - "midday": 2.34e-06, - "moan": 2.34e-06, - "moods": 2.34e-06, - "morphine": 2.34e-06, - "motherhood": 2.34e-06, - "motorola": 2.34e-06, - "murderous": 2.34e-06, - "nb": 2.34e-06, - "nirvana": 2.34e-06, - "nonstop": 2.34e-06, - "notoriously": 2.34e-06, - "nrl": 2.34e-06, - "oatmeal": 2.34e-06, - "opaque": 2.34e-06, - "ordnance": 2.34e-06, - "originate": 2.34e-06, - "otter": 2.34e-06, - "parting": 2.34e-06, - "pelvic": 2.34e-06, - "percussion": 2.34e-06, - "pigment": 2.34e-06, - "plato": 2.34e-06, - "populist": 2.34e-06, - "porous": 2.34e-06, - "preached": 2.34e-06, - "predictive": 2.34e-06, - "proofs": 2.34e-06, - "pulses": 2.34e-06, - "racially": 2.34e-06, - "racks": 2.34e-06, - "refunds": 2.34e-06, - "registrar": 2.34e-06, - "regulars": 2.34e-06, - "rein": 2.34e-06, - "relic": 2.34e-06, - "retard": 2.34e-06, - "reunite": 2.34e-06, - "reuse": 2.34e-06, - "reyes": 2.34e-06, - "risked": 2.34e-06, - "ritchie": 2.34e-06, - "rl": 2.34e-06, - "roadway": 2.34e-06, - "rollins": 2.34e-06, - "rustic": 2.34e-06, - "rutherford": 2.34e-06, - "sanitary": 2.34e-06, - "sao": 2.34e-06, - "saturation": 2.34e-06, - "scams": 2.34e-06, - "scarcity": 2.34e-06, - "scorpion": 2.34e-06, - "scotts": 4.57e-07, - "setback": 2.34e-06, - "shaming": 2.34e-06, - "shrubs": 2.34e-06, - "sizable": 2.34e-06, - "slippers": 2.34e-06, - "smoker": 2.34e-06, - "soho": 2.34e-06, - "spartan": 2.34e-06, - "speculated": 2.34e-06, - "spilling": 2.34e-06, - "squeezing": 2.34e-06, - "stalled": 2.34e-06, - "stimulated": 2.34e-06, - "straits": 2.34e-06, - "stun": 2.34e-06, - "subdued": 2.34e-06, - "surpass": 2.34e-06, - "swapped": 2.34e-06, - "tack": 2.34e-06, - "tagging": 2.34e-06, - "tart": 2.34e-06, - "throats": 2.34e-06, - "ting": 2.34e-06, - "tiring": 2.34e-06, - "toothpaste": 2.34e-06, - "totaled": 2.34e-06, - "transformer": 2.34e-06, - "transient": 2.34e-06, - "triumphant": 2.34e-06, - "umpire": 2.34e-06, - "unborn": 2.34e-06, - "undisclosed": 2.34e-06, - "undone": 2.34e-06, - "unheard": 2.34e-06, - "vending": 2.34e-06, - "vicar": 2.34e-06, - "wallets": 2.34e-06, - "weep": 2.34e-06, - "welch": 2.34e-06, - "woes": 2.34e-06, - "woken": 2.34e-06, - "wrench": 2.34e-06, - "wretched": 2.34e-06, - "www": 2.34e-06, - "adler": 2.29e-06, - "adolescence": 2.29e-06, - "affirmed": 2.29e-06, - "afterlife": 2.29e-06, - "allowances": 2.29e-06, - "ammonia": 2.29e-06, - "analogous": 2.29e-06, - "anarchist": 2.29e-06, - "anecdotes": 2.29e-06, - "anglican": 2.29e-06, - "animations": 9.12e-08, - "ankara": 2.29e-06, - "appropriations": 2.29e-06, - "apron": 2.29e-06, - "archaic": 2.29e-06, - "assange": 2.29e-06, - "assaulting": 2.29e-06, - "attribution": 2.29e-06, - "avant": 2.29e-06, - "baffled": 2.29e-06, - "baird": 2.29e-06, - "barlow": 2.29e-06, - "benton": 2.29e-06, - "biochemistry": 2.29e-06, - "bm": 2.29e-06, - "boise": 2.29e-06, - "bop": 2.29e-06, - "bordeaux": 2.29e-06, - "breached": 2.29e-06, - "burr": 2.29e-06, - "carbs": 2.29e-06, - "cavaliers": 2.29e-06, - "censor": 2.29e-06, - "centennial": 2.29e-06, - "cheney": 2.29e-06, - "cher": 2.29e-06, - "civilizations": 7.94e-08, - "clapping": 2.29e-06, - "clinging": 2.29e-06, - "clover": 2.29e-06, - "cms": 1.05e-07, - "coatings": 2.29e-06, - "coils": 2.29e-06, - "colonization": 2.29e-06, - "connolly": 2.29e-06, - "cookbook": 2.29e-06, - "corinthians": 2.29e-06, - "cosmopolitan": 2.29e-06, - "counselors": 9.55e-08, - "coyote": 2.29e-06, - "crippling": 2.29e-06, - "cristina": 2.29e-06, - "cromwell": 2.29e-06, - "cy": 2.29e-06, - "decorate": 2.29e-06, - "decorating": 2.29e-06, - "deductible": 2.29e-06, - "diagonal": 2.29e-06, - "discredit": 2.29e-06, - "dodd": 2.29e-06, - "dresser": 2.29e-06, - "duff": 2.29e-06, - "dysfunctional": 2.29e-06, - "ebooks": 2.29e-06, - "elm": 2.29e-06, - "emphasizing": 2.29e-06, - "ems": 1.51e-07, - "enquiries": 2.29e-06, - "equitable": 2.29e-06, - "estrogen": 2.29e-06, - "etsy": 2.29e-06, - "exert": 2.29e-06, - "expeditions": 6.46e-08, - "faculties": 2.29e-06, - "felicity": 2.29e-06, - "fernandez": 2.29e-06, - "feudal": 2.29e-06, - "fins": 2.29e-06, - "flattened": 2.29e-06, - "fleece": 2.29e-06, - "fodder": 2.29e-06, - "forwarded": 2.29e-06, - "fumble": 2.29e-06, - "galloway": 2.29e-06, - "giggles": 2.29e-06, - "git": 2.29e-06, - "glare": 2.29e-06, - "godzilla": 2.29e-06, - "gourmet": 2.29e-06, - "gripping": 2.29e-06, - "handheld": 2.29e-06, - "handshake": 2.29e-06, - "harming": 2.29e-06, - "hayward": 2.29e-06, - "hefty": 2.29e-06, - "helsinki": 2.29e-06, - "herbal": 2.29e-06, - "herrera": 2.29e-06, - "hippie": 2.29e-06, - "hops": 1.82e-07, - "horton": 2.29e-06, - "hump": 2.29e-06, - "idiotic": 2.29e-06, - "ids": 4.37e-07, - "implements": 2.29e-06, - "incarceration": 2.29e-06, - "incest": 2.29e-06, - "infect": 2.29e-06, - "insertion": 2.29e-06, - "interruption": 2.29e-06, - "intrigue": 2.29e-06, - "itch": 2.29e-06, - "jacqueline": 2.29e-06, - "jc": 2.29e-06, - "joaquin": 2.29e-06, - "kurds": 2.29e-06, - "lattice": 2.29e-06, - "leaps": 2.29e-06, - "legitimately": 2.29e-06, - "lends": 2.29e-06, - "leroy": 2.29e-06, - "linebacker": 2.29e-06, - "lockheed": 2.29e-06, - "lowers": 2.29e-06, - "lukes": 2.04e-07, - "magically": 2.29e-06, - "marketers": 7.76e-08, - "mastermind": 2.29e-06, - "materially": 2.29e-06, - "metadata": 2.29e-06, - "middlesex": 2.29e-06, - "mischief": 2.29e-06, - "modernization": 2.29e-06, - "mums": 1.55e-06, - "necessities": 2.29e-06, - "neptune": 2.29e-06, - "nerds": 2.29e-06, - "nero": 2.29e-06, - "noticeably": 2.29e-06, - "occupancy": 2.29e-06, - "oman": 2.29e-06, - "oncology": 2.29e-06, - "opposes": 2.29e-06, - "outsourcing": 2.29e-06, - "overrun": 2.29e-06, - "parcels": 2.29e-06, - "pasture": 2.29e-06, - "pathological": 2.29e-06, - "payload": 2.29e-06, - "payout": 2.29e-06, - "pelosi": 2.29e-06, - "persia": 2.29e-06, - "pertinent": 2.29e-06, - "pigeons": 5.62e-08, - "plentiful": 2.29e-06, - "plumber": 2.29e-06, - "png": 2.29e-06, - "porno": 2.29e-06, - "portfolios": 2.29e-06, - "preserves": 2.29e-06, - "promoters": 2.29e-06, - "prosecuting": 2.29e-06, - "purchaser": 2.29e-06, - "rahul": 2.29e-06, - "rapes": 2.29e-06, - "rarity": 2.29e-06, - "realty": 2.29e-06, - "rebellious": 2.29e-06, - "reefs": 2.29e-06, - "referencing": 2.29e-06, - "reminders": 2.29e-06, - "repealed": 2.29e-06, - "reptiles": 2.29e-06, - "revisit": 2.29e-06, - "ribbons": 2.29e-06, - "santo": 2.29e-06, - "satirical": 2.29e-06, - "screenings": 2.29e-06, - "sensual": 2.29e-06, - "sixties": 2.29e-06, - "slapping": 2.29e-06, - "slump": 2.29e-06, - "soften": 2.29e-06, - "sos": 6.03e-07, - "souvenir": 2.29e-06, - "spaceship": 2.29e-06, - "spaniards": 2.29e-06, - "sparse": 2.29e-06, - "spinner": 2.29e-06, - "steamer": 2.29e-06, - "subsidized": 2.29e-06, - "suction": 2.29e-06, - "sunflower": 2.29e-06, - "supplementary": 2.29e-06, - "surveyor": 2.29e-06, - "swallowing": 2.29e-06, - "tailed": 2.29e-06, - "temperament": 2.29e-06, - "thirteenth": 2.29e-06, - "topless": 2.29e-06, - "torment": 2.29e-06, - "tyrant": 2.29e-06, - "unattractive": 2.29e-06, - "unbeaten": 2.29e-06, - "understatement": 2.29e-06, - "undesirable": 2.29e-06, - "unfairly": 2.29e-06, - "unification": 2.29e-06, - "vineyards": 2.29e-06, - "wastes": 2.29e-06, - "wastewater": 2.29e-06, - "wb": 2.29e-06, - "weaponry": 2.29e-06, - "webpage": 2.29e-06, - "wheeled": 2.29e-06, - "whipping": 2.29e-06, - "widows": 4.37e-07, - "wildfire": 2.29e-06, - "withheld": 2.29e-06, - "withholding": 2.29e-06, - "wreath": 2.29e-06, - "wt": 2.29e-06, - "yer": 2.29e-06, - "administrations": 2.19e-06, - "afar": 2.24e-06, - "affectionate": 2.24e-06, - "afp": 2.24e-06, - "agitated": 2.24e-06, - "akron": 2.24e-06, - "albania": 2.24e-06, - "angie": 2.24e-06, - "annuity": 2.24e-06, - "appliance": 2.24e-06, - "aroused": 2.24e-06, - "asserting": 2.24e-06, - "astros": 5.01e-08, - "authentication": 2.24e-06, - "awaken": 2.24e-06, - "azure": 2.24e-06, - "bedside": 2.24e-06, - "berger": 2.24e-06, - "besieged": 2.24e-06, - "biologist": 2.24e-06, - "blowjob": 2.24e-06, - "bn": 2.24e-06, - "boilers": 2.24e-06, - "bois": 4.37e-08, - "bonnet": 2.24e-06, - "bourne": 2.24e-06, - "braun": 2.24e-06, - "breaches": 2.24e-06, - "breeder": 2.24e-06, - "burying": 2.24e-06, - "byzantine": 2.24e-06, - "cadet": 2.24e-06, - "calming": 2.24e-06, - "casing": 2.24e-06, - "catalonia": 2.24e-06, - "catfish": 2.24e-06, - "caucasus": 2.24e-06, - "chicagos": 2.24e-06, - "clerical": 2.24e-06, - "coincided": 2.24e-06, - "collage": 2.24e-06, - "colonists": 2.24e-06, - "complimentary": 2.24e-06, - "compounded": 2.24e-06, - "computation": 2.24e-06, - "conjecture": 2.24e-06, - "conspicuous": 2.24e-06, - "constantine": 2.24e-06, - "continual": 2.24e-06, - "contradict": 2.24e-06, - "cords": 2.24e-06, - "crackdown": 2.24e-06, - "craze": 2.24e-06, - "crusaders": 2.24e-06, - "cupcake": 2.24e-06, - "cvs": 7.41e-08, - "cybersecurity": 2.24e-06, - "davenport": 2.24e-06, - "degrading": 2.24e-06, - "deli": 2.24e-06, - "deteriorated": 2.24e-06, - "distinguishing": 2.24e-06, - "dreaded": 2.24e-06, - "dui": 2.24e-06, - "dumps": 2.24e-06, - "dwayne": 2.24e-06, - "dyer": 2.24e-06, - "elongated": 2.24e-06, - "embraces": 2.24e-06, - "enamel": 2.24e-06, - "encompassing": 2.24e-06, - "escalate": 2.24e-06, - "evicted": 2.24e-06, - "evils": 9.77e-08, - "exceedingly": 2.24e-06, - "excessively": 2.24e-06, - "faked": 2.24e-06, - "farmland": 2.24e-06, - "fetched": 2.24e-06, - "fiercely": 2.24e-06, - "flashed": 2.24e-06, - "fostering": 2.24e-06, - "fourteenth": 2.24e-06, - "fps": 2.24e-06, - "frontline": 2.24e-06, - "geese": 2.24e-06, - "genealogy": 2.24e-06, - "geographically": 2.24e-06, - "gibraltar": 2.24e-06, - "giggle": 2.24e-06, - "goggles": 2.24e-06, - "golfer": 2.24e-06, - "grammatical": 2.24e-06, - "graphite": 2.24e-06, - "grimm": 2.24e-06, - "gupta": 2.24e-06, - "haitian": 2.24e-06, - "handgun": 2.24e-06, - "hara": 2.24e-06, - "harrys": 5.5e-08, - "heaviest": 2.24e-06, - "hella": 2.24e-06, - "heresy": 2.24e-06, - "herpes": 2.24e-06, - "hipster": 2.24e-06, - "hispanics": 2.24e-06, - "hostess": 2.24e-06, - "hud": 2.24e-06, - "hunts": 5.25e-07, - "iceberg": 2.24e-06, - "ideologies": 2.24e-06, - "ignite": 2.24e-06, - "illumination": 2.24e-06, - "impoverished": 2.24e-06, - "improperly": 2.24e-06, - "ingenious": 2.24e-06, - "inquisition": 2.24e-06, - "interns": 6.17e-08, - "intervened": 2.24e-06, - "ist": 6.76e-08, - "jab": 2.24e-06, - "janice": 2.24e-06, - "landfill": 2.24e-06, - "larson": 2.24e-06, - "learner": 2.24e-06, - "lighten": 2.24e-06, - "lmfao": 2.24e-06, - "lowry": 2.24e-06, - "maldives": 2.24e-06, - "maroon": 2.24e-06, - "marriott": 2.24e-06, - "marxism": 2.24e-06, - "masonry": 2.24e-06, - "maui": 2.24e-06, - "mclaughlin": 2.24e-06, - "mechanically": 2.24e-06, - "mikey": 2.24e-06, - "millionaires": 1.66e-07, - "mina": 2.24e-06, - "moor": 2.24e-06, - "moreno": 2.24e-06, - "muffin": 2.24e-06, - "nadal": 2.24e-06, - "nigger": 2.24e-06, - "nih": 2.24e-06, - "novak": 2.24e-06, - "odonnell": 2.24e-06, - "obi": 2.24e-06, - "oily": 2.24e-06, - "olives": 7.76e-08, - "ostensibly": 2.24e-06, - "outbreaks": 2.24e-06, - "outnumbered": 2.24e-06, - "outspoken": 2.24e-06, - "pacing": 2.24e-06, - "palate": 2.24e-06, - "pancake": 2.24e-06, - "parkway": 2.24e-06, - "patricks": 1.95e-07, - "pedestal": 2.24e-06, - "pedigree": 2.24e-06, - "pennies": 2.24e-06, - "phony": 2.24e-06, - "pinpoint": 2.24e-06, - "pip": 2.24e-06, - "pleasantly": 2.24e-06, - "pluto": 2.24e-06, - "ponder": 2.24e-06, - "protestants": 2.24e-06, - "prowess": 2.24e-06, - "prussia": 2.24e-06, - "psychologically": 2.24e-06, - "pulitzer": 2.24e-06, - "pursuits": 2.24e-06, - "ramen": 2.24e-06, - "ramirez": 2.24e-06, - "ramon": 2.24e-06, - "rattle": 2.24e-06, - "recycle": 2.24e-06, - "reimbursement": 2.24e-06, - "reinforcing": 2.24e-06, - "reinstated": 2.24e-06, - "renault": 2.24e-06, - "renee": 2.24e-06, - "repent": 2.24e-06, - "rescuing": 2.24e-06, - "revert": 2.24e-06, - "ridges": 5.37e-08, - "rolex": 2.24e-06, - "rowe": 2.24e-06, - "rubin": 2.24e-06, - "sabrina": 2.24e-06, - "saliva": 2.24e-06, - "senseless": 2.24e-06, - "sermons": 2.24e-06, - "seventeenth": 2.24e-06, - "sha": 2.24e-06, - "shortcut": 2.24e-06, - "sikh": 2.24e-06, - "skye": 2.24e-06, - "slamming": 2.24e-06, - "slay": 2.24e-06, - "smoother": 2.24e-06, - "spence": 2.24e-06, - "spills": 2.24e-06, - "staffed": 2.24e-06, - "stumbling": 2.24e-06, - "stunts": 2.24e-06, - "summarized": 2.24e-06, - "sweeney": 2.24e-06, - "synth": 2.24e-06, - "tackled": 2.24e-06, - "takeoff": 2.24e-06, - "tammy": 2.24e-06, - "tat": 2.24e-06, - "taxable": 2.24e-06, - "taylors": 4.07e-07, - "trafford": 2.24e-06, - "transmissions": 2.24e-06, - "treadmill": 2.24e-06, - "trucking": 2.24e-06, - "unavoidable": 2.24e-06, - "unilateral": 2.24e-06, - "vicky": 2.24e-06, - "vie": 2.24e-06, - "vijay": 2.24e-06, - "warped": 2.24e-06, - "wasp": 2.24e-06, - "watermelon": 2.24e-06, - "webber": 2.24e-06, - "westward": 2.24e-06, - "whores": 2.24e-06, - "widened": 2.24e-06, - "yin": 2.24e-06, - "yun": 2.24e-06, - "academies": 2.19e-06, - "acidic": 2.19e-06, - "adherence": 2.19e-06, - "adjective": 2.19e-06, - "adjourned": 2.19e-06, - "amnesia": 2.19e-06, - "amplified": 2.19e-06, - "angola": 2.19e-06, - "angrily": 2.19e-06, - "appellate": 2.19e-06, - "approving": 2.19e-06, - "armoured": 2.19e-06, - "ascension": 2.19e-06, - "aspirin": 2.19e-06, - "atheists": 2.19e-06, - "ax": 2.19e-06, - "bard": 2.19e-06, - "bea": 2.19e-06, - "bearded": 2.19e-06, - "beetles": 5.13e-08, - "bends": 2.19e-06, - "benevolent": 2.19e-06, - "bestseller": 2.19e-06, - "bis": 6.31e-08, - "blackhawks": 2.19e-06, - "blazers": 2.19e-06, - "blends": 2.19e-06, - "blooded": 2.19e-06, - "blossoms": 2.19e-06, - "bog": 2.19e-06, - "bom": 2.19e-06, - "bombardment": 2.19e-06, - "borderline": 2.19e-06, - "boxed": 2.19e-06, - "brows": 2.19e-06, - "bungalow": 2.19e-06, - "burglar": 2.19e-06, - "calibration": 2.19e-06, - "cams": 2.69e-07, - "capitalize": 2.19e-06, - "charisma": 2.19e-06, - "cheltenham": 2.19e-06, - "chesapeake": 2.19e-06, - "chun": 2.19e-06, - "ck": 2.19e-06, - "classmate": 2.19e-06, - "claudio": 2.19e-06, - "cognition": 2.19e-06, - "cooker": 2.19e-06, - "cornish": 2.19e-06, - "coupe": 2.19e-06, - "coveted": 2.19e-06, - "craigslist": 2.19e-06, - "cristiano": 2.19e-06, - "crumbs": 2.19e-06, - "cullen": 2.19e-06, - "cures": 5.37e-08, - "curled": 2.19e-06, - "cylindrical": 2.19e-06, - "davey": 2.19e-06, - "deceptive": 2.19e-06, - "deem": 2.19e-06, - "deficiencies": 2.19e-06, - "devastation": 2.19e-06, - "devout": 2.19e-06, - "dia": 2.19e-06, - "dickson": 2.19e-06, - "disproportionate": 2.19e-06, - "disturbances": 2.19e-06, - "divisive": 2.19e-06, - "dk": 2.19e-06, - "dod": 2.19e-06, - "dracula": 2.19e-06, - "ebony": 2.19e-06, - "eduardo": 2.19e-06, - "eileen": 2.19e-06, - "elon": 2.19e-06, - "embodied": 2.19e-06, - "embroidered": 2.19e-06, - "embryo": 2.19e-06, - "eminem": 2.19e-06, - "ensued": 2.19e-06, - "erratic": 2.19e-06, - "exiting": 2.19e-06, - "fang": 2.19e-06, - "fiesta": 2.19e-06, - "folly": 2.19e-06, - "foo": 2.19e-06, - "foreseeable": 2.19e-06, - "frenchman": 2.19e-06, - "friedrich": 2.19e-06, - "fumes": 2.19e-06, - "garde": 2.19e-06, - "garnered": 2.19e-06, - "gerrard": 2.19e-06, - "gilmore": 2.19e-06, - "glazed": 2.19e-06, - "gon": 2.19e-06, - "griffiths": 1.38e-07, - "hardwood": 2.19e-06, - "hendrix": 2.19e-06, - "highness": 2.19e-06, - "hikes": 2.19e-06, - "hindsight": 2.19e-06, - "hinges": 2.19e-06, - "homophobia": 2.19e-06, - "houghton": 2.19e-06, - "hume": 2.19e-06, - "hymns": 2.19e-06, - "hz": 2.19e-06, - "ik": 2.19e-06, - "indifference": 2.19e-06, - "indispensable": 2.19e-06, - "infirmary": 2.19e-06, - "inflict": 2.19e-06, - "ingram": 2.19e-06, - "inhibit": 2.19e-06, - "insanely": 2.19e-06, - "intellectually": 2.19e-06, - "interstellar": 2.19e-06, - "intoxicated": 2.19e-06, - "involuntary": 2.19e-06, - "isil": 2.19e-06, - "issuance": 2.19e-06, - "itchy": 2.19e-06, - "jammed": 2.19e-06, - "jojo": 2.19e-06, - "junta": 2.19e-06, - "lankan": 2.19e-06, - "laos": 2.19e-06, - "latch": 2.19e-06, - "libel": 2.19e-06, - "ligament": 2.19e-06, - "likeness": 2.19e-06, - "lizzie": 2.19e-06, - "loaned": 2.19e-06, - "lofty": 2.19e-06, - "loom": 2.19e-06, - "luc": 2.19e-06, - "ludicrous": 2.19e-06, - "maharashtra": 2.19e-06, - "maize": 2.19e-06, - "malice": 2.19e-06, - "manu": 2.19e-06, - "marginalized": 2.19e-06, - "mazda": 2.19e-06, - "mcmahon": 2.19e-06, - "melvin": 2.19e-06, - "middlesbrough": 2.19e-06, - "milestones": 2.19e-06, - "milford": 2.19e-06, - "milling": 2.19e-06, - "minnie": 2.19e-06, - "mitsubishi": 2.19e-06, - "mixtape": 2.19e-06, - "mods": 1.23e-07, - "mongolia": 2.19e-06, - "motivating": 2.19e-06, - "munitions": 2.19e-06, - "mx": 2.19e-06, - "myrtle": 2.19e-06, - "nemesis": 2.19e-06, - "oreilly": 6.17e-08, - "originality": 2.19e-06, - "orioles": 2.19e-06, - "ornamental": 2.19e-06, - "oysters": 2.19e-06, - "pancreatic": 2.19e-06, - "parkinsons": 1.26e-07, - "parlor": 2.19e-06, - "partnering": 2.19e-06, - "pebble": 2.19e-06, - "peeled": 2.19e-06, - "perseverance": 2.19e-06, - "persisted": 2.19e-06, - "pharmacist": 2.19e-06, - "phillies": 2.19e-06, - "picky": 2.19e-06, - "pistons": 2.19e-06, - "pizzas": 1.41e-07, - "poole": 2.19e-06, - "populace": 2.19e-06, - "pretoria": 2.19e-06, - "pricey": 2.19e-06, - "prima": 2.19e-06, - "prized": 2.19e-06, - "profiling": 2.19e-06, - "progressives": 2.19e-06, - "prompts": 2.19e-06, - "propagation": 2.19e-06, - "psychedelic": 2.19e-06, - "pune": 2.19e-06, - "quieter": 2.19e-06, - "radiator": 2.19e-06, - "randomized": 2.19e-06, - "rapists": 7.59e-08, - "rector": 2.19e-06, - "redeemed": 2.19e-06, - "regal": 2.19e-06, - "relativity": 2.19e-06, - "rene": 2.19e-06, - "revered": 2.19e-06, - "ridicule": 2.19e-06, - "ridley": 2.19e-06, - "roasting": 2.19e-06, - "rocker": 2.19e-06, - "romero": 2.19e-06, - "rotting": 2.19e-06, - "salman": 2.19e-06, - "sami": 2.19e-06, - "sculptor": 2.19e-06, - "semifinals": 2.19e-06, - "shalt": 2.19e-06, - "sheen": 2.19e-06, - "shelton": 2.19e-06, - "showcasing": 2.19e-06, - "sincerity": 2.19e-06, - "sinful": 2.19e-06, - "slander": 2.19e-06, - "sleek": 2.19e-06, - "slew": 2.19e-06, - "sling": 2.19e-06, - "socioeconomic": 2.19e-06, - "solicitors": 1.23e-07, - "spontaneously": 2.19e-06, - "steamed": 2.19e-06, - "stockton": 2.19e-06, - "stratford": 2.19e-06, - "studs": 2.19e-06, - "sturgeon": 2.19e-06, - "subpoena": 2.19e-06, - "swam": 2.19e-06, - "sweeps": 2.19e-06, - "syllabus": 2.19e-06, - "taiwanese": 2.19e-06, - "teaming": 2.19e-06, - "textual": 2.19e-06, - "thinkin": 2.19e-06, - "toad": 2.19e-06, - "tombs": 2.19e-06, - "troopers": 5.62e-08, - "tsa": 2.19e-06, - "tyrone": 2.19e-06, - "unaffected": 2.19e-06, - "uncles": 1.17e-06, - "undeniable": 2.19e-06, - "une": 2.19e-06, - "upstate": 2.19e-06, - "ventura": 2.19e-06, - "vigilant": 2.19e-06, - "visitation": 2.19e-06, - "viva": 2.19e-06, - "volcanoes": 2.19e-06, - "washer": 2.19e-06, - "watered": 2.19e-06, - "werner": 2.19e-06, - "wick": 2.19e-06, - "worldly": 2.19e-06, - "wp": 2.19e-06, - "achieves": 2.14e-06, - "additive": 2.14e-06, - "adept": 2.14e-06, - "advantageous": 2.14e-06, - "aero": 2.14e-06, - "afloat": 2.14e-06, - "agility": 2.14e-06, - "airbus": 2.14e-06, - "alba": 2.14e-06, - "alteration": 2.14e-06, - "annoyance": 2.14e-06, - "anon": 2.14e-06, - "ante": 2.14e-06, - "appointing": 2.14e-06, - "archipelago": 2.14e-06, - "assembling": 2.14e-06, - "bailed": 2.14e-06, - "barkley": 2.14e-06, - "bdsm": 2.14e-06, - "behaviours": 2.14e-06, - "belmont": 2.14e-06, - "bidders": 2.14e-06, - "bloated": 2.14e-06, - "blooming": 2.14e-06, - "blooms": 2.57e-07, - "boating": 2.14e-06, - "bonfire": 2.14e-06, - "bookings": 2.14e-06, - "bowed": 2.14e-06, - "brody": 2.14e-06, - "bullpen": 2.14e-06, - "cafes": 1.38e-07, - "cali": 2.14e-06, - "canine": 2.14e-06, - "capsules": 2.14e-06, - "carb": 2.14e-06, - "carver": 2.14e-06, - "causal": 2.14e-06, - "centrally": 2.14e-06, - "cheerleader": 2.14e-06, - "christy": 2.14e-06, - "circling": 2.14e-06, - "citadel": 2.14e-06, - "clifton": 2.14e-06, - "climates": 2.14e-06, - "colonialism": 2.14e-06, - "comforts": 2.14e-06, - "compromising": 2.14e-06, - "corvette": 2.14e-06, - "costco": 2.14e-06, - "cowards": 2.24e-07, - "cranes": 2.51e-07, - "cunts": 2.14e-06, - "cutest": 2.14e-06, - "dashboard": 2.14e-06, - "deficient": 2.14e-06, - "degenerate": 2.14e-06, - "demonic": 2.14e-06, - "deterrent": 2.14e-06, - "disdain": 2.14e-06, - "disgraceful": 2.14e-06, - "doggy": 2.14e-06, - "dole": 2.14e-06, - "dreamt": 2.14e-06, - "dun": 2.14e-06, - "eerie": 2.14e-06, - "electing": 2.14e-06, - "enraged": 2.14e-06, - "envelopes": 2.14e-06, - "eroded": 2.14e-06, - "estimating": 2.14e-06, - "ethel": 2.14e-06, - "excursion": 2.14e-06, - "exemptions": 2.14e-06, - "exponential": 2.14e-06, - "farce": 2.14e-06, - "fatally": 2.14e-06, - "fingerprints": 2.14e-06, - "flanders": 2.14e-06, - "flickr": 2.14e-06, - "fling": 2.14e-06, - "flowed": 2.14e-06, - "flung": 2.14e-06, - "fragmented": 2.14e-06, - "frankenstein": 2.14e-06, - "frantic": 2.14e-06, - "fudge": 2.14e-06, - "gabrielle": 2.14e-06, - "gemma": 2.14e-06, - "gideon": 2.14e-06, - "glide": 2.14e-06, - "glover": 2.14e-06, - "gras": 2.14e-06, - "grieve": 2.14e-06, - "grimes": 2.14e-06, - "grossly": 2.14e-06, - "grudge": 2.14e-06, - "gucci": 2.14e-06, - "hairstyle": 2.14e-06, - "handwritten": 2.14e-06, - "hardships": 2.14e-06, - "harmonic": 2.14e-06, - "hb": 2.14e-06, - "headlights": 2.14e-06, - "heartless": 2.14e-06, - "hectic": 2.14e-06, - "holistic": 2.14e-06, - "hooper": 2.14e-06, - "hormonal": 2.14e-06, - "huffington": 2.14e-06, - "ict": 2.14e-06, - "implanted": 2.14e-06, - "informant": 2.14e-06, - "inhabit": 2.14e-06, - "intervening": 2.14e-06, - "intrusive": 2.14e-06, - "investigates": 2.14e-06, - "invoke": 2.14e-06, - "invoked": 2.14e-06, - "jackass": 2.14e-06, - "jericho": 2.14e-06, - "jonny": 2.14e-06, - "josephine": 2.14e-06, - "joyous": 2.14e-06, - "kiwi": 2.14e-06, - "latinos": 2.14e-06, - "leaflets": 2.14e-06, - "licences": 2.14e-06, - "lim": 2.14e-06, - "limo": 2.14e-06, - "lulu": 2.14e-06, - "lunchtime": 2.14e-06, - "lux": 2.14e-06, - "mace": 2.14e-06, - "maher": 2.14e-06, - "malawi": 2.14e-06, - "malignant": 2.14e-06, - "mane": 2.14e-06, - "mascara": 2.14e-06, - "matchmaking": 2.14e-06, - "maverick": 2.14e-06, - "measles": 2.14e-06, - "mend": 2.14e-06, - "mentoring": 2.14e-06, - "mich": 2.14e-06, - "microbial": 2.14e-06, - "microsofts": 2.14e-06, - "migraine": 2.14e-06, - "millennial": 2.14e-06, - "mitt": 2.14e-06, - "molten": 2.14e-06, - "monsoon": 2.14e-06, - "montage": 2.14e-06, - "monterey": 2.14e-06, - "morales": 2.14e-06, - "napoli": 2.14e-06, - "negligent": 2.14e-06, - "netanyahu": 2.14e-06, - "nikon": 2.14e-06, - "nil": 2.14e-06, - "norma": 2.14e-06, - "ofthe": 2.14e-06, - "opioid": 2.14e-06, - "optimize": 2.14e-06, - "pakistans": 2.14e-06, - "passionately": 2.14e-06, - "pastors": 3.55e-07, - "pathogens": 2.14e-06, - "penetrating": 2.14e-06, - "persuasion": 2.14e-06, - "phased": 2.14e-06, - "phyllis": 2.14e-06, - "plaid": 2.14e-06, - "playback": 2.14e-06, - "plush": 2.14e-06, - "portraying": 2.14e-06, - "portrays": 2.14e-06, - "positivity": 2.14e-06, - "practised": 2.14e-06, - "precedence": 2.14e-06, - "preferring": 2.14e-06, - "previews": 2.14e-06, - "pristine": 2.14e-06, - "prognosis": 2.14e-06, - "propeller": 2.14e-06, - "pyramids": 2.14e-06, - "quotas": 2.14e-06, - "racket": 2.14e-06, - "rags": 2.14e-06, - "rajasthan": 2.14e-06, - "realistically": 2.14e-06, - "reclaimed": 2.14e-06, - "reilly": 2.14e-06, - "relatable": 2.14e-06, - "reorganization": 2.14e-06, - "resembled": 2.14e-06, - "resided": 2.14e-06, - "retrieval": 2.14e-06, - "rotated": 2.14e-06, - "roundabout": 2.14e-06, - "saline": 2.14e-06, - "saviour": 2.14e-06, - "scarcely": 2.14e-06, - "scraping": 2.14e-06, - "serie": 2.14e-06, - "shipbuilding": 2.14e-06, - "shiva": 2.14e-06, - "shrugged": 2.14e-06, - "siemens": 2.14e-06, - "signings": 2.14e-06, - "slogans": 2.14e-06, - "smoky": 2.14e-06, - "solids": 2.14e-06, - "solos": 1.82e-07, - "spade": 2.14e-06, - "spoils": 2.14e-06, - "staffordshire": 2.14e-06, - "steroid": 2.14e-06, - "supplemented": 2.14e-06, - "surveying": 2.14e-06, - "swans": 1.78e-07, - "tata": 2.14e-06, - "tds": 2.51e-07, - "temperate": 2.14e-06, - "temps": 2.14e-06, - "thematic": 2.14e-06, - "threesome": 2.14e-06, - "thunderstorms": 2.14e-06, - "tilted": 2.14e-06, - "toaster": 2.14e-06, - "treble": 2.14e-06, - "turquoise": 2.14e-06, - "ultraviolet": 2.14e-06, - "unbiased": 2.14e-06, - "unc": 2.14e-06, - "uncanny": 2.14e-06, - "underdog": 2.14e-06, - "unfolding": 2.14e-06, - "ungrateful": 2.14e-06, - "untreated": 2.14e-06, - "usefulness": 2.14e-06, - "vandalism": 2.14e-06, - "vargas": 2.14e-06, - "vibrating": 2.14e-06, - "vowel": 2.14e-06, - "voyager": 2.14e-06, - "weirdo": 2.14e-06, - "weld": 2.14e-06, - "werewolf": 2.14e-06, - "wilsons": 2e-07, - "wrongful": 2.14e-06, - "ww": 2.14e-06, - "xu": 2.14e-06, - "aba": 2.09e-06, - "acknowledgement": 2.09e-06, - "adored": 2.09e-06, - "airbnb": 2.09e-06, - "alerted": 2.09e-06, - "alleges": 2.09e-06, - "alligator": 2.09e-06, - "amends": 2.09e-06, - "annoys": 2.09e-06, - "antagonist": 2.09e-06, - "apa": 2.09e-06, - "approximation": 2.09e-06, - "aromatic": 2.09e-06, - "assurances": 2.09e-06, - "attendants": 5.75e-08, - "auschwitz": 2.09e-06, - "baroque": 2.09e-06, - "bays": 5.89e-07, - "behavioural": 2.09e-06, - "belgrade": 2.09e-06, - "benefiting": 2.09e-06, - "berg": 2.09e-06, - "bergen": 2.09e-06, - "bethany": 2.09e-06, - "bg": 2.09e-06, - "biases": 2.09e-06, - "binder": 2.09e-06, - "blindly": 2.09e-06, - "brig": 2.09e-06, - "buggy": 2.09e-06, - "bundled": 2.09e-06, - "burnett": 2.09e-06, - "buzzfeed": 2.09e-06, - "calves": 2.09e-06, - "camille": 2.09e-06, - "canonical": 2.09e-06, - "cautiously": 2.09e-06, - "ceasefire": 2.09e-06, - "celery": 2.09e-06, - "characterize": 2.09e-06, - "chinatown": 2.09e-06, - "collaborations": 2.09e-06, - "collaborators": 2.09e-06, - "commissioning": 2.09e-06, - "cor": 2.09e-06, - "counsellor": 2.09e-06, - "countered": 2.09e-06, - "couture": 2.09e-06, - "cramps": 2.09e-06, - "croatian": 2.09e-06, - "crowdfunding": 2.09e-06, - "cutie": 2.09e-06, - "dab": 2.09e-06, - "dar": 2.09e-06, - "darcy": 2.09e-06, - "dawg": 2.09e-06, - "dentists": 3.16e-07, - "deploying": 2.09e-06, - "deserts": 5.75e-08, - "df": 2.09e-06, - "dictates": 2.09e-06, - "dion": 2.09e-06, - "dissatisfaction": 2.09e-06, - "dodgy": 2.09e-06, - "earthly": 2.09e-06, - "eaters": 5.75e-08, - "elective": 2.09e-06, - "emitted": 2.09e-06, - "endeavors": 2.09e-06, - "enslaved": 2.09e-06, - "ent": 2.09e-06, - "entrances": 2.09e-06, - "eq": 2.09e-06, - "escalation": 2.09e-06, - "ethos": 2.09e-06, - "eureka": 2.09e-06, - "exec": 2.09e-06, - "eyewitness": 2.09e-06, - "fag": 2.09e-06, - "favours": 2.09e-06, - "fil": 2.09e-06, - "fitz": 2.09e-06, - "fleeting": 2.09e-06, - "flourished": 2.09e-06, - "forfeit": 2.09e-06, - "forging": 2.09e-06, - "foundry": 2.09e-06, - "fractions": 2.09e-06, - "fro": 2.09e-06, - "funerals": 2.09e-06, - "furnishings": 2.09e-06, - "giraffe": 2.09e-06, - "gma": 2.09e-06, - "gmail": 2.09e-06, - "grinder": 2.09e-06, - "gunman": 2.09e-06, - "hampered": 2.09e-06, - "hardcover": 2.09e-06, - "healer": 2.09e-06, - "heals": 2.09e-06, - "hermione": 2.09e-06, - "hinge": 2.09e-06, - "hubbard": 2.09e-06, - "hurley": 2.09e-06, - "illustrating": 2.09e-06, - "inaugurated": 2.09e-06, - "indexes": 2.09e-06, - "insiders": 2.88e-07, - "intestinal": 2.09e-06, - "intra": 2.09e-06, - "irons": 8.13e-08, - "islamabad": 2.09e-06, - "jock": 2.09e-06, - "jumpers": 2.09e-06, - "kidd": 2.09e-06, - "kneeling": 2.09e-06, - "knuckles": 2.09e-06, - "ladys": 1.02e-07, - "lauderdale": 2.09e-06, - "lifestyles": 2.09e-06, - "lr": 2.09e-06, - "ludwig": 2.09e-06, - "macbeth": 2.09e-06, - "mamma": 2.09e-06, - "manic": 2.09e-06, - "manifold": 2.09e-06, - "margot": 2.09e-06, - "measurable": 2.09e-06, - "medina": 2.09e-06, - "meek": 2.09e-06, - "mellow": 2.09e-06, - "melon": 2.09e-06, - "mirrored": 2.09e-06, - "miscarriage": 2.09e-06, - "mla": 2.09e-06, - "mojo": 2.09e-06, - "msnbc": 2.09e-06, - "napa": 2.09e-06, - "narration": 2.09e-06, - "nasas": 2.09e-06, - "nassau": 2.09e-06, - "nicki": 2.09e-06, - "nip": 2.09e-06, - "nxt": 2.09e-06, - "nye": 2.09e-06, - "oblivion": 2.09e-06, - "observes": 2.09e-06, - "ohhh": 2.09e-06, - "oilers": 2.09e-06, - "ornament": 2.09e-06, - "outpatient": 2.09e-06, - "pamphlet": 2.09e-06, - "parishes": 2.09e-06, - "pats": 4.68e-07, - "penelope": 2.09e-06, - "perish": 2.09e-06, - "perpetrator": 2.09e-06, - "pervert": 2.09e-06, - "pharaoh": 2.09e-06, - "philanthropy": 2.09e-06, - "photon": 2.09e-06, - "polluted": 2.09e-06, - "potion": 2.09e-06, - "premiered": 2.09e-06, - "preparedness": 2.09e-06, - "pretends": 2.09e-06, - "prettier": 2.09e-06, - "primal": 2.09e-06, - "princesses": 2.09e-06, - "prohibiting": 2.09e-06, - "psalms": 2.09e-06, - "psg": 2.09e-06, - "psychopath": 2.09e-06, - "pups": 1.17e-07, - "qui": 2.09e-06, - "quid": 2.09e-06, - "receptive": 2.09e-06, - "redundancy": 2.09e-06, - "reelection": 2.09e-06, - "reindeer": 2.09e-06, - "relapse": 2.09e-06, - "relish": 2.09e-06, - "rendezvous": 2.09e-06, - "republics": 6.03e-07, - "reversible": 2.09e-06, - "roche": 2.09e-06, - "rodents": 2.09e-06, - "rowan": 2.09e-06, - "rudolph": 2.09e-06, - "saharan": 2.09e-06, - "scumbag": 2.09e-06, - "seams": 2.09e-06, - "seizing": 2.09e-06, - "selectively": 2.09e-06, - "sensed": 2.09e-06, - "shred": 2.09e-06, - "sideline": 2.09e-06, - "sidelines": 2.09e-06, - "simplistic": 2.09e-06, - "skater": 2.09e-06, - "skincare": 2.09e-06, - "soc": 2.09e-06, - "spawning": 2.09e-06, - "spokane": 2.09e-06, - "sta": 2.09e-06, - "stabilized": 2.09e-06, - "stares": 2.09e-06, - "staten": 2.09e-06, - "steaming": 2.09e-06, - "substitutes": 2.09e-06, - "supervise": 2.09e-06, - "supervising": 2.09e-06, - "supervisory": 2.09e-06, - "swapping": 2.09e-06, - "sweeter": 2.09e-06, - "syllable": 2.09e-06, - "synod": 2.09e-06, - "taipei": 2.09e-06, - "takeaway": 2.09e-06, - "tatum": 2.09e-06, - "teased": 2.09e-06, - "tees": 6.17e-08, - "tesco": 2.09e-06, - "thorpe": 2.09e-06, - "titus": 2.09e-06, - "towing": 2.09e-06, - "treacherous": 2.09e-06, - "turnbull": 2.09e-06, - "undermined": 2.09e-06, - "undermining": 2.09e-06, - "untold": 2.09e-06, - "uplifting": 2.09e-06, - "upsets": 2.09e-06, - "vaccinated": 2.09e-06, - "vaughn": 2.09e-06, - "vents": 2.09e-06, - "versatility": 2.09e-06, - "visualization": 2.09e-06, - "voicemail": 2.09e-06, - "volt": 2.09e-06, - "wakefield": 2.09e-06, - "watford": 2.09e-06, - "wholl": 2.09e-06, - "wielding": 2.09e-06, - "wiggins": 2.09e-06, - "wilkins": 2.09e-06, - "wingers": 2.09e-06, - "winnie": 2.09e-06, - "wits": 1.2e-07, - "wrongs": 2.09e-06, - "yeh": 2.09e-06, - "abnormalities": 2.04e-06, - "allocate": 2.04e-06, - "analytic": 2.04e-06, - "ans": 5.01e-08, - "apprehended": 2.04e-06, - "ascending": 2.04e-06, - "attributable": 2.04e-06, - "aubrey": 2.04e-06, - "barb": 2.04e-06, - "bastion": 2.04e-06, - "beaumont": 2.04e-06, - "bey": 2.04e-06, - "biopsy": 2.04e-06, - "blackwell": 2.04e-06, - "bolster": 2.04e-06, - "bray": 2.04e-06, - "briefs": 2.04e-06, - "caitlin": 2.04e-06, - "calais": 2.04e-06, - "cancelling": 2.04e-06, - "canning": 2.04e-06, - "capitalists": 2.04e-06, - "categorized": 2.04e-06, - "cba": 2.04e-06, - "cbi": 2.04e-06, - "cg": 2.04e-06, - "chopper": 2.04e-06, - "chromosomes": 2.04e-06, - "chunky": 2.04e-06, - "classed": 2.04e-06, - "clerks": 3.8e-07, - "cohesive": 2.04e-06, - "comey": 2.04e-06, - "commando": 2.04e-06, - "complication": 2.04e-06, - "computed": 2.04e-06, - "conquering": 2.04e-06, - "constituencies": 2.04e-06, - "contentious": 2.04e-06, - "contra": 2.04e-06, - "corbyn": 2.04e-06, - "cosy": 2.04e-06, - "coyotes": 5.37e-08, - "crease": 2.04e-06, - "cursing": 2.04e-06, - "deadliest": 2.04e-06, - "degraded": 2.04e-06, - "dehydration": 2.04e-06, - "delights": 2.04e-06, - "denomination": 2.04e-06, - "derbyshire": 2.04e-06, - "desserts": 2.04e-06, - "digestion": 2.04e-06, - "dismantled": 2.04e-06, - "dissatisfied": 2.04e-06, - "distinctions": 2.04e-06, - "docking": 2.04e-06, - "dodging": 2.04e-06, - "donut": 2.04e-06, - "doubting": 2.04e-06, - "dungeons": 2.04e-06, - "effected": 2.04e-06, - "embargo": 2.04e-06, - "embodiment": 2.04e-06, - "emptied": 2.04e-06, - "encoded": 2.04e-06, - "engraving": 2.04e-06, - "enhances": 2.04e-06, - "entrenched": 2.04e-06, - "explanatory": 2.04e-06, - "extremism": 2.04e-06, - "fairfield": 2.04e-06, - "fairies": 2.04e-06, - "faulkner": 2.04e-06, - "fg": 2.04e-06, - "filtration": 2.04e-06, - "finalized": 2.04e-06, - "flagged": 2.04e-06, - "fleets": 2.04e-07, - "fooling": 2.04e-06, - "formatting": 2.04e-06, - "fracking": 2.04e-06, - "francesca": 2.04e-06, - "francesco": 2.04e-06, - "fungal": 2.04e-06, - "gabe": 2.04e-06, - "garry": 2.04e-06, - "garth": 2.04e-06, - "ghz": 2.04e-06, - "gillian": 2.04e-06, - "glaciers": 2.04e-06, - "glaring": 2.04e-06, - "gloom": 2.04e-06, - "goblin": 2.04e-06, - "gunner": 2.04e-06, - "hammers": 1.51e-07, - "hamster": 2.04e-06, - "heaps": 2.51e-08, - "hex": 2.04e-06, - "homosexuals": 2.04e-06, - "hooking": 2.04e-06, - "hopped": 2.04e-06, - "hydra": 2.04e-06, - "hypocritical": 2.04e-06, - "illustrious": 2.04e-06, - "incidental": 2.04e-06, - "indigo": 2.04e-06, - "industrys": 2.04e-06, - "inscriptions": 2.04e-06, - "instruct": 2.04e-06, - "insurgency": 2.04e-06, - "intimidate": 2.04e-06, - "ipa": 2.04e-06, - "irregularities": 2.04e-06, - "jamming": 2.04e-06, - "jax": 2.04e-06, - "kyrie": 2.04e-06, - "labyrinth": 2.04e-06, - "lac": 2.04e-06, - "latency": 2.04e-06, - "limbo": 2.04e-06, - "linger": 2.04e-06, - "lousy": 2.04e-06, - "luncheon": 2.04e-06, - "mailbox": 2.04e-06, - "mammal": 2.04e-06, - "mcguire": 2.04e-06, - "membranes": 2.04e-06, - "memorabilia": 2.04e-06, - "midterm": 2.04e-06, - "midtown": 2.04e-06, - "migrated": 2.04e-06, - "millers": 1.15e-06, - "mimi": 2.04e-06, - "muir": 2.04e-06, - "muzzle": 2.04e-06, - "myspace": 2.04e-06, - "nationalities": 2.04e-06, - "nec": 2.04e-06, - "nurture": 2.04e-06, - "oblivious": 2.04e-06, - "ode": 2.04e-06, - "oem": 2.04e-06, - "olga": 2.04e-06, - "olson": 2.04e-06, - "ortiz": 2.04e-06, - "outlining": 2.04e-06, - "overt": 2.04e-06, - "pacers": 2.04e-06, - "paisley": 2.04e-06, - "pajamas": 2.04e-06, - "palo": 2.04e-06, - "patriarch": 2.04e-06, - "penthouse": 2.04e-06, - "perjury": 2.04e-06, - "persists": 2.04e-06, - "pious": 2.04e-06, - "plotted": 2.04e-06, - "potomac": 2.04e-06, - "powdered": 2.04e-06, - "pregnancies": 2.04e-06, - "prematurely": 2.04e-06, - "presenters": 2.04e-06, - "prioritize": 2.04e-06, - "proprietor": 2.04e-06, - "putnam": 2.04e-06, - "quarrel": 2.04e-06, - "raider": 2.04e-06, - "rained": 2.04e-06, - "raja": 2.04e-06, - "rea": 2.04e-06, - "reasoned": 2.04e-06, - "rebate": 2.04e-06, - "regulates": 2.04e-06, - "reins": 2.14e-08, - "resurgence": 2.04e-06, - "rh": 2.04e-06, - "roc": 2.04e-06, - "rollers": 2.04e-06, - "rooster": 2.04e-06, - "routed": 2.04e-06, - "rufus": 2.04e-06, - "rushes": 2.04e-06, - "rx": 2.04e-06, - "sakura": 2.04e-06, - "salads": 2.04e-06, - "sanskrit": 2.04e-06, - "scientology": 2.04e-06, - "scooby": 2.04e-06, - "scuba": 2.04e-06, - "seamless": 2.04e-06, - "selects": 2.04e-06, - "sequels": 2.04e-06, - "shattering": 2.04e-06, - "shelly": 2.04e-06, - "sheppard": 2.04e-06, - "shite": 2.04e-06, - "shoreline": 2.04e-06, - "siberian": 2.04e-06, - "sickening": 2.04e-06, - "sidewalks": 2.04e-06, - "silhouette": 2.04e-06, - "slug": 2.04e-06, - "smackdown": 2.04e-06, - "smug": 2.04e-06, - "soprano": 2.04e-06, - "specialties": 2.04e-06, - "spectroscopy": 2.04e-06, - "spreadsheet": 2.04e-06, - "stagnant": 2.04e-06, - "startled": 2.04e-06, - "steaks": 2.04e-06, - "stephenson": 2.04e-06, - "streaks": 2.04e-06, - "strides": 2.04e-06, - "strung": 2.04e-06, - "summaries": 2.04e-06, - "tanning": 2.04e-06, - "tendon": 2.04e-06, - "thc": 2.04e-06, - "thine": 2.04e-06, - "timmy": 2.04e-06, - "tnt": 2.04e-06, - "toughness": 2.04e-06, - "tracey": 2.04e-06, - "tractors": 2.04e-06, - "turin": 2.04e-06, - "unanswered": 2.04e-06, - "unethical": 2.04e-06, - "uniting": 2.04e-06, - "unix": 2.04e-06, - "uptown": 2.04e-06, - "urinary": 2.04e-06, - "valiant": 2.04e-06, - "vigilante": 2.04e-06, - "viper": 2.04e-06, - "washingtons": 7.76e-08, - "weekday": 2.04e-06, - "weirdest": 2.04e-06, - "westwood": 2.04e-06, - "whistles": 2.04e-06, - "whitehall": 2.04e-06, - "wilhelm": 2.04e-06, - "willard": 2.04e-06, - "woe": 2.04e-06, - "wrinkles": 2.04e-06, - "ws": 3.02e-07, - "abi": 2e-06, - "abstraction": 2e-06, - "adjunct": 2e-06, - "administering": 2e-06, - "admiring": 2e-06, - "ami": 2e-06, - "ascended": 2e-06, - "asean": 2e-06, - "aspiration": 2e-06, - "atkins": 2e-06, - "attentive": 2e-06, - "auntie": 2e-06, - "austen": 2e-06, - "awakened": 2e-06, - "ballpark": 2e-06, - "barbarians": 2e-06, - "beak": 2e-06, - "beige": 2e-06, - "bellamy": 2e-06, - "blasphemy": 2e-06, - "blinds": 5.62e-08, - "blinking": 2e-06, - "blueberry": 2e-06, - "boar": 2e-06, - "bosch": 2e-06, - "bran": 2e-06, - "breathes": 2e-06, - "bribes": 2e-06, - "brigadier": 2e-06, - "broaden": 2e-06, - "bubba": 2e-06, - "bulky": 2e-06, - "burdens": 2e-06, - "busch": 2e-06, - "cadets": 2e-06, - "calendars": 2e-06, - "camels": 3.31e-07, - "cameraman": 2e-06, - "carbohydrates": 2e-06, - "carnage": 2e-06, - "cavities": 2e-06, - "chateau": 2e-06, - "chavez": 2e-06, - "colleen": 2e-06, - "comedies": 2e-06, - "commended": 2e-06, - "commune": 2e-06, - "compiling": 2e-06, - "conclusive": 2e-06, - "conservatory": 2e-06, - "considerate": 2e-06, - "constance": 2e-06, - "constructions": 2e-06, - "coo": 2e-06, - "cryptocurrency": 2e-06, - "cultured": 2e-06, - "dans": 7.76e-07, - "daycare": 2e-06, - "debra": 2e-06, - "deductions": 2e-06, - "depressive": 2e-06, - "descendant": 2e-06, - "dips": 2e-06, - "disperse": 2e-06, - "disproportionately": 2e-06, - "dives": 2e-06, - "downed": 2e-06, - "ecommerce": 2e-06, - "emery": 2e-06, - "enrich": 2e-06, - "entrants": 2e-06, - "epidemiology": 2e-06, - "errands": 2e-06, - "esque": 2e-06, - "exaggeration": 2e-06, - "exhaustive": 2e-06, - "exponentially": 2e-06, - "exporters": 2e-06, - "externally": 2e-06, - "fanbase": 2e-06, - "fermentation": 2e-06, - "fiasco": 2e-06, - "fifteenth": 2e-06, - "flares": 2e-06, - "flo": 2e-06, - "flops": 2e-06, - "flores": 2e-06, - "footed": 2e-06, - "fright": 2e-06, - "fruitful": 2e-06, - "gall": 2e-06, - "gastric": 2e-06, - "gilded": 2e-06, - "goddard": 2e-06, - "hallelujah": 2e-06, - "hastily": 2e-06, - "haynes": 2e-06, - "headphone": 2e-06, - "heinrich": 2e-06, - "hemingway": 2e-06, - "horizontally": 2e-06, - "hubert": 2e-06, - "hurtful": 2e-06, - "illuminate": 2e-06, - "inaccessible": 2e-06, - "incur": 2e-06, - "inferno": 2e-06, - "introductions": 2e-06, - "inverness": 2e-06, - "irelands": 8.71e-08, - "isabelle": 2e-06, - "jog": 2e-06, - "jt": 2e-06, - "jug": 2e-06, - "kgb": 2e-06, - "kinder": 2e-06, - "knoxville": 2e-06, - "labrador": 2e-06, - "latte": 2e-06, - "leafy": 2e-06, - "lobe": 2e-06, - "loo": 2e-06, - "luiz": 2e-06, - "lyle": 2e-06, - "maga": 2e-06, - "maguire": 2e-06, - "margarita": 2e-06, - "masturbating": 2e-06, - "mcbride": 2e-06, - "meddling": 2e-06, - "nadia": 2e-06, - "nods": 2e-06, - "nothings": 5.89e-07, - "ofc": 2e-06, - "ollie": 2e-06, - "omission": 2e-06, - "orbits": 2e-06, - "orchid": 2e-06, - "overtake": 2e-06, - "paramedics": 2e-06, - "pax": 2e-06, - "peabody": 2e-06, - "peat": 2e-06, - "pedophile": 2e-06, - "peptide": 2e-06, - "perfected": 2e-06, - "periphery": 2e-06, - "perished": 2e-06, - "physicists": 2e-06, - "piggy": 2e-06, - "piling": 2e-06, - "polarized": 2e-06, - "portals": 6.31e-08, - "pov": 2e-06, - "predetermined": 2e-06, - "prelude": 2e-06, - "prepaid": 2e-06, - "priesthood": 2e-06, - "punishable": 2e-06, - "rahman": 2e-06, - "rao": 2e-06, - "ravi": 2e-06, - "reaper": 2e-06, - "reassure": 2e-06, - "redesigned": 2e-06, - "regiments": 1.1e-07, - "remnant": 2e-06, - "renders": 2e-06, - "rhys": 2e-06, - "rockstar": 2e-06, - "ros": 2e-06, - "rosenberg": 2e-06, - "rounder": 2e-06, - "sanford": 2e-06, - "satanic": 2e-06, - "sausages": 2e-06, - "scented": 2e-06, - "sclerosis": 2e-06, - "selfless": 2e-06, - "serenity": 2e-06, - "shading": 2e-06, - "shrug": 2e-06, - "sighting": 2e-06, - "singled": 2e-06, - "sipping": 2e-06, - "siri": 2e-06, - "sonar": 2e-06, - "spat": 2e-06, - "stabilization": 2e-06, - "stacking": 2e-06, - "starch": 2e-06, - "stony": 2e-06, - "stormed": 2e-06, - "subtly": 2e-06, - "superstars": 5.13e-08, - "surfer": 2e-06, - "taj": 2e-06, - "taper": 2e-06, - "teaspoon": 2e-06, - "templates": 2e-06, - "thorne": 2e-06, - "tightening": 2e-06, - "tlc": 2e-06, - "tolls": 2e-06, - "tos": 2.29e-07, - "totaling": 2e-06, - "toxin": 2e-06, - "trademarks": 2e-06, - "tudor": 2e-06, - "turk": 2e-06, - "typo": 2e-06, - "unequal": 2e-06, - "unresolved": 2e-06, - "unspecified": 2e-06, - "vacated": 2e-06, - "veg": 2e-06, - "venetian": 2e-06, - "vhs": 2e-06, - "waffle": 2e-06, - "wanda": 2e-06, - "warships": 2e-06, - "washes": 2e-06, - "wasps": 2e-06, - "welp": 2e-06, - "wha": 2e-06, - "winery": 2e-06, - "wm": 2e-06, - "writ": 2e-06, - "xiao": 2e-06, - "yamaha": 2e-06, - "zara": 2e-06, - "zipper": 2e-06, - "acclaim": 1.95e-06, - "aching": 1.95e-06, - "acquires": 1.95e-06, - "adversary": 1.95e-06, - "afflicted": 1.95e-06, - "airfield": 1.95e-06, - "akbar": 1.95e-06, - "alienated": 1.95e-06, - "angered": 1.95e-06, - "archers": 2.82e-07, - "arrays": 1.95e-06, - "ascertain": 1.95e-06, - "assam": 1.95e-06, - "audits": 1.95e-06, - "bargains": 1.95e-06, - "beards": 1.15e-07, - "believable": 1.95e-06, - "billboards": 4.37e-07, - "bitterly": 1.95e-06, - "bloodshed": 1.95e-06, - "boils": 1.95e-06, - "boko": 1.95e-06, - "breaths": 1.95e-06, - "brigades": 9.55e-08, - "bumping": 1.95e-06, - "burrows": 1.95e-06, - "cairns": 1.95e-06, - "caracas": 1.95e-06, - "cassie": 1.95e-06, - "cello": 1.95e-06, - "celsius": 1.95e-06, - "certifications": 1.95e-06, - "cesar": 1.95e-06, - "chai": 1.95e-06, - "chariot": 1.95e-06, - "cheddar": 1.95e-06, - "chilli": 1.95e-06, - "cholera": 1.95e-06, - "cio": 1.95e-06, - "clinch": 1.95e-06, - "clipped": 1.95e-06, - "collide": 1.95e-06, - "commemoration": 1.95e-06, - "commuting": 1.95e-06, - "complexion": 1.95e-06, - "compulsive": 1.95e-06, - "congenital": 1.95e-06, - "construed": 1.95e-06, - "consular": 1.95e-06, - "corrective": 1.95e-06, - "costello": 1.95e-06, - "coworker": 1.95e-06, - "crumble": 1.95e-06, - "crumbling": 1.95e-06, - "cultivating": 1.95e-06, - "daddys": 6.61e-08, - "dangling": 1.95e-06, - "daredevil": 1.95e-06, - "decentralized": 1.95e-06, - "dei": 1.95e-06, - "denominations": 1.95e-06, - "denote": 1.95e-06, - "detox": 1.95e-06, - "didn": 1.95e-06, - "differentiated": 1.95e-06, - "discrepancy": 1.95e-06, - "dishwasher": 1.95e-06, - "doctrines": 1.95e-06, - "doj": 1.95e-06, - "donaldson": 1.95e-06, - "doodle": 1.95e-06, - "dossier": 1.95e-06, - "draper": 1.95e-06, - "dunham": 1.95e-06, - "dyes": 1.95e-06, - "easton": 1.95e-06, - "eastwood": 1.95e-06, - "edna": 1.95e-06, - "electrodes": 1.95e-06, - "embryos": 1.95e-06, - "eradicate": 1.95e-06, - "excite": 1.95e-06, - "exporter": 1.95e-06, - "extortion": 1.95e-06, - "extracting": 1.95e-06, - "ey": 1.95e-06, - "fay": 1.95e-06, - "feral": 1.95e-06, - "flips": 1.95e-06, - "flourishing": 1.95e-06, - "footprints": 1.95e-06, - "forster": 1.95e-06, - "fortnite": 1.95e-06, - "fountains": 1.95e-06, - "frameworks": 1.95e-06, - "freezes": 1.95e-06, - "generously": 1.95e-06, - "godfrey": 1.95e-06, - "grange": 1.95e-06, - "greats": 1.1e-07, - "gui": 1.95e-06, - "hangar": 1.95e-06, - "hardworking": 1.95e-06, - "harms": 7.41e-07, - "hasty": 1.95e-06, - "hathaway": 1.95e-06, - "hdmi": 1.95e-06, - "hermes": 1.95e-06, - "hijacked": 1.95e-06, - "housekeeper": 1.95e-06, - "husky": 1.95e-06, - "idf": 1.95e-06, - "iggy": 1.95e-06, - "imitate": 1.95e-06, - "imperfections": 1.95e-06, - "improbable": 1.95e-06, - "impulses": 1.95e-06, - "incarcerated": 1.95e-06, - "ineligible": 1.95e-06, - "infusion": 1.95e-06, - "iu": 1.95e-06, - "jaguars": 1.07e-07, - "jeb": 1.95e-06, - "journalistic": 1.95e-06, - "julien": 1.95e-06, - "justifying": 1.95e-06, - "kapoor": 1.95e-06, - "kart": 1.95e-06, - "kelvin": 1.95e-06, - "keyword": 1.95e-06, - "kolkata": 1.95e-06, - "laborers": 1.95e-06, - "laced": 1.95e-06, - "lai": 1.95e-06, - "lemons": 6.46e-08, - "lincolnshire": 1.95e-06, - "lipid": 1.95e-06, - "looming": 1.95e-06, - "lordship": 1.95e-06, - "louisa": 1.95e-06, - "mahogany": 1.95e-06, - "malfunction": 1.95e-06, - "mana": 1.95e-06, - "manson": 1.95e-06, - "marin": 1.95e-06, - "markedly": 1.95e-06, - "marta": 1.95e-06, - "mccann": 1.95e-06, - "mckenna": 1.95e-06, - "mcqueen": 1.95e-06, - "mediator": 1.95e-06, - "mein": 1.95e-06, - "mentors": 1.02e-07, - "meow": 1.95e-06, - "mer": 1.95e-06, - "minions": 1.95e-06, - "mirage": 1.95e-06, - "mockery": 1.95e-06, - "modulation": 1.95e-06, - "motorists": 1.95e-06, - "mozambique": 1.95e-06, - "muller": 1.95e-06, - "narrated": 1.95e-06, - "narrower": 1.95e-06, - "natures": 9.33e-07, - "navigating": 1.95e-06, - "navigator": 1.95e-06, - "nes": 1.95e-06, - "nightingale": 1.95e-06, - "nuke": 1.95e-06, - "oconnell": 1.95e-06, - "occult": 1.95e-06, - "ocd": 1.95e-06, - "olympian": 1.95e-06, - "opting": 1.95e-06, - "osama": 1.95e-06, - "ovation": 1.95e-06, - "oversees": 1.95e-06, - "palaces": 2.34e-07, - "palin": 1.95e-06, - "parades": 7.24e-08, - "payback": 1.95e-06, - "pediatrics": 1.95e-06, - "perch": 1.95e-06, - "perpendicular": 1.95e-06, - "physique": 1.95e-06, - "pioneered": 1.95e-06, - "playbook": 1.95e-06, - "pleases": 1.95e-06, - "plywood": 1.95e-06, - "pollutants": 1.95e-06, - "ponies": 1.95e-06, - "pooh": 1.95e-06, - "ppp": 1.95e-06, - "prettiest": 1.95e-06, - "proficient": 1.95e-06, - "protagonists": 2.04e-07, - "pst": 1.95e-06, - "punctuation": 1.95e-06, - "purification": 1.95e-06, - "purported": 1.95e-06, - "putins": 6.46e-08, - "qi": 1.95e-06, - "quotations": 1.95e-06, - "ramifications": 1.95e-06, - "readable": 1.95e-06, - "recourse": 1.95e-06, - "regimen": 1.95e-06, - "removable": 1.95e-06, - "repaid": 1.95e-06, - "responders": 1.95e-06, - "retires": 1.95e-06, - "retrospect": 1.95e-06, - "roundup": 1.95e-06, - "rowland": 1.95e-06, - "ryans": 1.15e-07, - "seinfeld": 1.95e-06, - "sensations": 1.95e-06, - "sequential": 1.95e-06, - "shafts": 1.95e-06, - "signifies": 1.95e-06, - "skates": 1.95e-06, - "smelly": 1.95e-06, - "solves": 1.95e-06, - "sorta": 1.95e-06, - "specialization": 1.95e-06, - "spiritually": 1.95e-06, - "sporadic": 1.95e-06, - "stationery": 1.95e-06, - "sudanese": 1.95e-06, - "sunscreen": 1.95e-06, - "sykes": 1.95e-06, - "tau": 1.95e-06, - "tempest": 1.95e-06, - "tending": 1.95e-06, - "terraces": 1.95e-06, - "thankyou": 1.95e-06, - "thered": 1.95e-06, - "tightened": 1.95e-06, - "tights": 1.95e-06, - "tito": 1.95e-06, - "tobias": 1.95e-06, - "tofu": 1.95e-06, - "tragedies": 1.95e-06, - "transports": 8.71e-08, - "trenton": 1.95e-06, - "tripoli": 1.95e-06, - "truss": 1.95e-06, - "tubing": 1.95e-06, - "tuesdays": 1.55e-06, - "turnovers": 1.95e-06, - "twat": 1.95e-06, - "undue": 1.95e-06, - "unionist": 1.95e-06, - "unprotected": 1.95e-06, - "unsettling": 1.95e-06, - "upscale": 1.95e-06, - "vader": 1.95e-06, - "verde": 1.95e-06, - "viewpoints": 1.95e-06, - "vinci": 1.95e-06, - "vu": 1.95e-06, - "wacky": 1.95e-06, - "wealthiest": 1.95e-06, - "wearable": 1.95e-06, - "wilcox": 1.95e-06, - "wiltshire": 1.95e-06, - "wreckage": 1.95e-06, - "xml": 1.95e-06, - "yvonne": 1.95e-06, - "zeppelin": 1.95e-06, - "aches": 1.91e-06, - "adamant": 1.91e-06, - "airspace": 1.91e-06, - "alejandro": 1.91e-06, - "allotted": 1.91e-06, - "almonds": 1.91e-06, - "amplitude": 1.91e-06, - "analogue": 1.91e-06, - "annotated": 1.91e-06, - "anomalies": 1.91e-06, - "archival": 1.91e-06, - "ardent": 1.91e-06, - "arenas": 1.74e-07, - "assay": 1.91e-06, - "assigning": 1.91e-06, - "assorted": 1.91e-06, - "axel": 1.91e-06, - "badminton": 1.91e-06, - "barbarian": 1.91e-06, - "bedrock": 1.91e-06, - "bihar": 1.91e-06, - "bj": 1.91e-06, - "blaine": 1.91e-06, - "boardwalk": 1.91e-06, - "boasting": 1.91e-06, - "boldly": 1.91e-06, - "boomer": 1.91e-06, - "booths": 1.95e-07, - "brittle": 1.91e-06, - "budding": 1.91e-06, - "cena": 1.91e-06, - "charters": 6.61e-08, - "chatham": 1.91e-06, - "cheaply": 1.91e-06, - "chiang": 1.91e-06, - "choo": 1.91e-06, - "clair": 1.91e-06, - "climbers": 5.37e-08, - "clogged": 1.91e-06, - "cohesion": 1.91e-06, - "colo": 1.91e-06, - "compel": 1.91e-06, - "complexities": 1.91e-06, - "compromises": 1.91e-06, - "conduit": 1.91e-06, - "congregations": 7.76e-08, - "constraint": 1.91e-06, - "contradictions": 1.91e-06, - "conveyor": 1.91e-06, - "cpi": 1.91e-06, - "cramped": 1.91e-06, - "crates": 1.91e-06, - "crawled": 1.91e-06, - "culminating": 1.91e-06, - "cuomo": 1.91e-06, - "cutters": 6.92e-08, - "dae": 1.91e-06, - "dalai": 1.91e-06, - "darryl": 1.91e-06, - "dashed": 1.91e-06, - "decimal": 1.91e-06, - "defensively": 1.91e-06, - "defunct": 1.91e-06, - "degrade": 1.91e-06, - "demonstrators": 1.91e-06, - "denton": 1.91e-06, - "departures": 1.91e-06, - "diablo": 1.91e-06, - "differed": 1.91e-06, - "diffuse": 1.91e-06, - "dignified": 1.91e-06, - "disapproval": 1.91e-06, - "disobedience": 1.91e-06, - "dreamer": 1.91e-06, - "dune": 1.91e-06, - "dwellers": 1.91e-06, - "eb": 1.91e-06, - "ef": 1.91e-06, - "electronically": 1.91e-06, - "emancipation": 1.91e-06, - "entropy": 1.91e-06, - "epitome": 1.91e-06, - "esa": 1.91e-06, - "esteemed": 1.91e-06, - "ethernet": 1.91e-06, - "excused": 1.91e-06, - "extradition": 1.91e-06, - "eyesight": 1.91e-06, - "fide": 1.91e-06, - "finder": 1.91e-06, - "fishy": 1.91e-06, - "flooring": 1.91e-06, - "forearm": 1.91e-06, - "frail": 1.91e-06, - "fray": 1.91e-06, - "gathers": 1.91e-06, - "geelong": 1.91e-06, - "generational": 1.91e-06, - "glaze": 1.91e-06, - "goldfish": 1.91e-06, - "greenville": 1.91e-06, - "grizzly": 1.91e-06, - "grotesque": 1.91e-06, - "gunners": 9.77e-08, - "hallucinations": 1.91e-06, - "harass": 1.91e-06, - "hooded": 1.91e-06, - "horrid": 1.91e-06, - "huawei": 1.91e-06, - "hussain": 1.91e-06, - "hwy": 1.91e-06, - "impractical": 1.91e-06, - "indexed": 1.91e-06, - "insecurities": 1.91e-06, - "insta": 1.91e-06, - "interchangeable": 1.91e-06, - "interrupting": 1.91e-06, - "irreversible": 1.91e-06, - "jacked": 1.91e-06, - "jerks": 1.91e-06, - "joked": 1.91e-06, - "kaufman": 1.91e-06, - "kfc": 1.91e-06, - "lawless": 1.91e-06, - "leftists": 1.91e-06, - "legalized": 1.91e-06, - "leggings": 1.91e-06, - "legions": 1.82e-07, - "leveled": 1.91e-06, - "liza": 1.91e-06, - "locomotives": 1.91e-06, - "macau": 1.91e-06, - "manifested": 1.91e-06, - "marries": 1.91e-06, - "maynard": 1.91e-06, - "mayoral": 1.91e-06, - "medley": 1.91e-06, - "mercenaries": 1.91e-06, - "meyers": 2.75e-07, - "mh": 1.91e-06, - "mightve": 1.91e-06, - "minimalist": 1.91e-06, - "misled": 1.91e-06, - "msm": 1.91e-06, - "multiplied": 1.91e-06, - "narendra": 1.91e-06, - "objectively": 1.91e-06, - "orbiting": 1.91e-06, - "orchestrated": 1.91e-06, - "packard": 1.91e-06, - "pap": 1.91e-06, - "parisian": 1.91e-06, - "participates": 1.91e-06, - "phoned": 1.91e-06, - "plugin": 1.91e-06, - "polishing": 1.91e-06, - "polymers": 1.91e-06, - "pore": 1.91e-06, - "postcards": 1.91e-06, - "postgraduate": 1.91e-06, - "predicament": 1.91e-06, - "predominant": 1.91e-06, - "prem": 1.91e-06, - "proverbs": 1.91e-06, - "puke": 1.91e-06, - "puzzled": 1.91e-06, - "qu": 1.91e-06, - "quadrant": 1.91e-06, - "ramps": 1.91e-06, - "recital": 1.91e-06, - "recite": 1.91e-06, - "reckoning": 1.91e-06, - "recollection": 1.91e-06, - "reconstructed": 1.91e-06, - "refine": 1.91e-06, - "regents": 2.75e-07, - "reiterated": 1.91e-06, - "rem": 1.91e-06, - "resale": 1.91e-06, - "retake": 1.91e-06, - "rhine": 1.91e-06, - "rips": 1.91e-06, - "rj": 1.91e-06, - "robb": 1.91e-06, - "rodrigo": 1.91e-06, - "rosy": 1.91e-06, - "rupture": 1.91e-06, - "salted": 1.91e-06, - "scandalous": 1.91e-06, - "scot": 1.91e-06, - "seasoning": 1.91e-06, - "securely": 1.91e-06, - "shabby": 1.91e-06, - "showcased": 1.91e-06, - "sightings": 1.91e-06, - "sinus": 1.91e-06, - "situ": 1.91e-06, - "skid": 1.91e-06, - "solace": 1.91e-06, - "spanking": 1.91e-06, - "specialize": 1.91e-06, - "splinter": 1.91e-06, - "spoons": 1.91e-06, - "squats": 1.91e-06, - "squire": 1.91e-06, - "standout": 1.91e-06, - "stills": 1.91e-06, - "stoner": 1.91e-06, - "strengthens": 1.91e-06, - "stung": 1.91e-06, - "suppressing": 1.91e-06, - "swimsuit": 1.91e-06, - "symmetrical": 1.91e-06, - "tac": 1.91e-06, - "tacoma": 1.91e-06, - "tam": 1.91e-06, - "tenders": 1.91e-06, - "terminator": 1.91e-06, - "timers": 1.91e-06, - "tinker": 1.91e-06, - "topography": 1.91e-06, - "ua": 1.91e-06, - "unexplained": 1.91e-06, - "unintended": 1.91e-06, - "unmanned": 1.91e-06, - "uno": 1.91e-06, - "unsolved": 1.91e-06, - "unsuccessfully": 1.91e-06, - "uptake": 1.91e-06, - "vantage": 1.91e-06, - "ventured": 1.91e-06, - "versailles": 1.91e-06, - "virgins": 2.63e-07, - "waldo": 1.91e-06, - "waller": 1.91e-06, - "watchers": 6.03e-08, - "whim": 1.91e-06, - "whine": 1.91e-06, - "wil": 1.91e-06, - "withhold": 1.91e-06, - "worshipped": 1.91e-06, - "yee": 1.91e-06, - "yellowstone": 1.91e-06, - "ying": 1.91e-06, - "yosemite": 1.91e-06, - "zeal": 1.91e-06, - "zealands": 1.91e-06, - "abort": 1.86e-06, - "abound": 1.86e-06, - "adversely": 1.86e-06, - "afternoons": 3.02e-07, - "agendas": 1.86e-06, - "aidan": 1.86e-06, - "alfredo": 1.86e-06, - "amish": 1.86e-06, - "andersen": 1.86e-06, - "angled": 1.86e-06, - "antennas": 1.86e-06, - "assertions": 1.86e-06, - "astonished": 1.86e-06, - "audacity": 1.86e-06, - "banjo": 1.86e-06, - "barbaric": 1.86e-06, - "barbed": 1.86e-06, - "battled": 1.86e-06, - "beech": 1.86e-06, - "benchmarks": 1.86e-06, - "biz": 1.86e-06, - "blazer": 1.86e-06, - "blower": 1.86e-06, - "blurry": 1.86e-06, - "bravely": 1.86e-06, - "bret": 1.86e-06, - "breweries": 1.86e-06, - "bts": 1.05e-07, - "burmese": 1.86e-06, - "bushs": 1.86e-06, - "camped": 1.86e-06, - "cherries": 1.86e-06, - "chevron": 1.86e-06, - "cheyenne": 1.86e-06, - "clinicians": 1.86e-06, - "coercion": 1.86e-06, - "colombo": 1.86e-06, - "comma": 1.86e-06, - "communitys": 1.86e-06, - "competency": 1.86e-06, - "concerted": 1.86e-06, - "constructs": 1.86e-06, - "cont": 1.86e-06, - "convicts": 1.86e-06, - "cora": 1.86e-06, - "cornelius": 1.86e-06, - "cravings": 1.86e-06, - "crotch": 1.86e-06, - "crucified": 1.86e-06, - "customize": 1.86e-06, - "dai": 1.86e-06, - "dartmouth": 1.86e-06, - "dashing": 1.86e-06, - "departmental": 1.86e-06, - "deposed": 1.86e-06, - "devin": 1.86e-06, - "dharma": 1.86e-06, - "dialysis": 1.86e-06, - "disclosures": 1.86e-06, - "distal": 1.86e-06, - "ditched": 1.86e-06, - "divisional": 1.86e-06, - "dogma": 1.86e-06, - "doi": 1.86e-06, - "dupont": 1.86e-06, - "emory": 1.86e-06, - "emptiness": 1.86e-06, - "encompass": 1.86e-06, - "ensign": 1.86e-06, - "escalating": 1.86e-06, - "evoke": 1.86e-06, - "expansions": 1.86e-06, - "experimented": 1.86e-06, - "facilitates": 1.86e-06, - "faithfully": 1.86e-06, - "faq": 1.86e-06, - "fern": 1.86e-06, - "fingertips": 1.86e-06, - "firepower": 1.86e-06, - "fixation": 1.86e-06, - "flanked": 1.86e-06, - "flatter": 1.86e-06, - "flushed": 1.86e-06, - "formative": 1.86e-06, - "fret": 1.86e-06, - "frontiers": 7.08e-08, - "gastrointestinal": 1.86e-06, - "geeks": 5.62e-08, - "genders": 1.86e-06, - "grader": 1.86e-06, - "granger": 1.86e-06, - "grasses": 1.86e-06, - "gratification": 1.86e-06, - "gruesome": 1.86e-06, - "guineas": 1.38e-07, - "gw": 1.86e-06, - "harshly": 1.86e-06, - "hedges": 1.86e-06, - "heller": 1.86e-06, - "henrik": 1.86e-06, - "hezbollah": 1.86e-06, - "hinduism": 1.86e-06, - "hiroshima": 1.86e-06, - "hitchcock": 1.86e-06, - "hodge": 1.86e-06, - "holloway": 1.86e-06, - "huts": 1.86e-06, - "hydrated": 1.86e-06, - "imaginable": 1.86e-06, - "impetus": 1.86e-06, - "impulsive": 1.86e-06, - "incense": 1.86e-06, - "inhuman": 1.86e-06, - "injure": 1.86e-06, - "inserting": 1.86e-06, - "intersections": 1.86e-06, - "inventing": 1.86e-06, - "invoice": 1.86e-06, - "jb": 1.86e-06, - "johan": 1.86e-06, - "junkie": 1.86e-06, - "kelsey": 1.86e-06, - "khalid": 1.86e-06, - "kr": 1.86e-06, - "kristin": 1.86e-06, - "kun": 1.86e-06, - "lacey": 1.86e-06, - "lao": 1.86e-06, - "latent": 1.86e-06, - "lau": 1.86e-06, - "leans": 1.86e-06, - "leipzig": 1.86e-06, - "lenovo": 1.86e-06, - "lew": 1.86e-06, - "lexus": 1.86e-06, - "limitless": 1.86e-06, - "literate": 1.86e-06, - "lm": 1.41e-07, - "localization": 1.86e-06, - "loki": 1.86e-06, - "loretta": 1.86e-06, - "lowly": 1.86e-06, - "lucid": 1.86e-06, - "lymphoma": 1.86e-06, - "makin": 1.86e-06, - "martini": 1.86e-06, - "merciful": 1.86e-06, - "mgm": 1.86e-06, - "midget": 1.86e-06, - "midwife": 1.86e-06, - "minimizing": 1.86e-06, - "mira": 1.86e-06, - "misinformation": 1.86e-06, - "mitochondrial": 1.86e-06, - "mobilization": 1.86e-06, - "monologue": 1.86e-06, - "monoxide": 1.86e-06, - "mosul": 1.86e-06, - "musically": 1.86e-06, - "mutiny": 1.86e-06, - "nagging": 1.86e-06, - "nephews": 3.24e-07, - "nervously": 1.86e-06, - "nighttime": 1.86e-06, - "nonlinear": 1.86e-06, - "normalized": 1.86e-06, - "northumberland": 1.86e-06, - "numbering": 1.86e-06, - "oakley": 1.86e-06, - "odi": 1.86e-06, - "orr": 1.86e-06, - "outweigh": 1.86e-06, - "parasitic": 1.86e-06, - "parsley": 1.86e-06, - "pendulum": 1.86e-06, - "petit": 1.86e-06, - "petra": 1.86e-06, - "picket": 1.86e-06, - "placements": 1.86e-06, - "poignant": 1.86e-06, - "polio": 1.86e-06, - "potency": 1.86e-06, - "precarious": 1.86e-06, - "presley": 1.86e-06, - "pretext": 1.86e-06, - "privatization": 1.86e-06, - "proclaim": 1.86e-06, - "quaint": 1.86e-06, - "qualifiers": 1.86e-06, - "raccoon": 1.86e-06, - "raiding": 1.86e-06, - "rallied": 1.86e-06, - "reassurance": 1.86e-06, - "recovers": 1.86e-06, - "redistribution": 1.86e-06, - "remy": 1.86e-06, - "restrain": 1.86e-06, - "retreating": 1.86e-06, - "richly": 1.86e-06, - "rioting": 1.86e-06, - "rookies": 6.61e-08, - "sai": 1.86e-06, - "sanderson": 1.86e-06, - "saver": 1.86e-06, - "scarborough": 1.86e-06, - "scarred": 1.86e-06, - "secession": 1.86e-06, - "sectarian": 1.86e-06, - "seminal": 1.86e-06, - "serene": 1.86e-06, - "ses": 5.25e-08, - "seventies": 1.86e-06, - "shaded": 1.86e-06, - "sharpe": 1.86e-06, - "shipyard": 1.86e-06, - "shrek": 1.86e-06, - "sig": 1.86e-06, - "silica": 1.86e-06, - "simmer": 1.86e-06, - "smokey": 1.86e-06, - "snag": 1.86e-06, - "snuck": 1.86e-06, - "sob": 1.86e-06, - "socrates": 1.86e-06, - "sophistication": 1.86e-06, - "sourcing": 1.86e-06, - "str": 1.86e-06, - "straighten": 1.86e-06, - "streamlined": 1.86e-06, - "sweaters": 1.86e-06, - "syringe": 1.86e-06, - "tanaka": 1.86e-06, - "thinly": 1.86e-06, - "thursdays": 1.29e-06, - "timor": 1.86e-06, - "tinted": 1.86e-06, - "tornadoes": 1.86e-06, - "tote": 1.86e-06, - "trainees": 1.86e-06, - "transverse": 1.86e-06, - "trembling": 1.86e-06, - "triangles": 1.86e-06, - "tributes": 1.86e-06, - "trident": 1.86e-06, - "trojans": 1.86e-06, - "tweak": 1.86e-06, - "ubuntu": 1.86e-06, - "undead": 1.86e-06, - "unison": 1.86e-06, - "unlocking": 1.86e-06, - "unprepared": 1.86e-06, - "unrestricted": 1.86e-06, - "unsuitable": 1.86e-06, - "unthinkable": 1.86e-06, - "uplift": 1.86e-06, - "utilizes": 1.86e-06, - "vanderbilt": 1.86e-06, - "vanishing": 1.86e-06, - "venerable": 1.86e-06, - "visualize": 1.86e-06, - "vulcan": 1.86e-06, - "wasteful": 1.86e-06, - "waterfalls": 1.86e-06, - "wilkes": 1.86e-06, - "youngster": 1.86e-06, - "activating": 1.82e-06, - "adopts": 1.82e-06, - "adverts": 1.82e-06, - "advisable": 1.82e-06, - "algerian": 1.82e-06, - "angst": 1.82e-06, - "antiquities": 1.82e-06, - "apathy": 1.82e-06, - "arcs": 9.12e-08, - "artisan": 1.82e-06, - "assortment": 1.82e-06, - "attaching": 1.82e-06, - "auditing": 1.82e-06, - "bandwagon": 1.82e-06, - "bane": 1.82e-06, - "basins": 1.82e-06, - "bayer": 1.82e-06, - "bcs": 1.78e-07, - "billings": 1.82e-06, - "bios": 3.63e-08, - "birdie": 1.82e-06, - "bison": 1.82e-06, - "blacked": 1.82e-06, - "blacksmith": 1.82e-06, - "blanks": 1.82e-06, - "borg": 1.82e-06, - "brainwashed": 1.82e-06, - "brothel": 1.82e-06, - "burrito": 1.82e-06, - "bytes": 1.82e-06, - "calmed": 1.82e-06, - "camper": 1.82e-06, - "carole": 1.82e-06, - "cartilage": 1.82e-06, - "casket": 1.82e-06, - "charley": 1.82e-06, - "chattanooga": 1.82e-06, - "christchurch": 1.82e-06, - "claimants": 8.13e-08, - "cleanliness": 1.82e-06, - "clothed": 1.82e-06, - "coli": 1.82e-06, - "collided": 1.82e-06, - "commentaries": 1.82e-06, - "complicate": 1.82e-06, - "concerto": 1.82e-06, - "concurrently": 1.82e-06, - "contraception": 1.82e-06, - "convex": 1.82e-06, - "crouch": 1.82e-06, - "culmination": 1.82e-06, - "curing": 1.82e-06, - "dank": 1.82e-06, - "daphne": 1.82e-06, - "decomposition": 1.82e-06, - "dehydrated": 1.82e-06, - "democracies": 1.82e-06, - "detriment": 1.82e-06, - "dex": 1.82e-06, - "dhs": 1.82e-06, - "dialects": 1.82e-06, - "discretionary": 1.82e-06, - "dismal": 1.82e-06, - "dismay": 1.82e-06, - "disparate": 1.82e-06, - "dissemination": 1.82e-06, - "distilled": 1.82e-06, - "dodger": 1.82e-06, - "dolan": 1.82e-06, - "dolores": 1.82e-06, - "domestically": 1.82e-06, - "electors": 1.82e-06, - "electrician": 1.82e-06, - "elise": 1.82e-06, - "endorsements": 1.82e-06, - "equator": 1.82e-06, - "estuary": 1.82e-06, - "etched": 1.82e-06, - "eternally": 1.82e-06, - "ewing": 1.82e-06, - "excise": 1.82e-06, - "expel": 1.82e-06, - "exposures": 1.82e-06, - "facets": 1.82e-06, - "fad": 1.82e-06, - "fitch": 1.82e-06, - "fledged": 1.82e-06, - "fol": 1.82e-06, - "forcefully": 1.82e-06, - "foreground": 1.82e-06, - "frown": 1.82e-06, - "fruity": 1.82e-06, - "frustrations": 1.82e-06, - "fukushima": 1.82e-06, - "gals": 7.24e-08, - "germain": 1.82e-06, - "gertrude": 1.82e-06, - "gloucestershire": 1.82e-06, - "godly": 1.82e-06, - "golfers": 7.08e-08, - "graeme": 1.82e-06, - "groin": 1.82e-06, - "grounding": 1.82e-06, - "guangzhou": 1.82e-06, - "gunn": 1.82e-06, - "gunpowder": 1.82e-06, - "guthrie": 1.82e-06, - "guyana": 1.82e-06, - "hamper": 1.82e-06, - "haskell": 1.82e-06, - "hatched": 1.82e-06, - "helix": 1.82e-06, - "heroism": 1.82e-06, - "hierarchical": 1.82e-06, - "homie": 1.82e-06, - "hornets": 1.78e-07, - "hover": 1.82e-06, - "howling": 1.82e-06, - "humbled": 1.82e-06, - "icelandic": 1.82e-06, - "inducted": 1.82e-06, - "infidelity": 1.82e-06, - "internships": 1.82e-06, - "inventive": 1.82e-06, - "inversion": 1.82e-06, - "ips": 8.13e-08, - "kahn": 1.82e-06, - "keynes": 1.82e-06, - "khalifa": 1.82e-06, - "kinase": 1.82e-06, - "kirsten": 1.82e-06, - "knack": 1.82e-06, - "kodak": 1.82e-06, - "kool": 1.82e-06, - "kosher": 1.82e-06, - "lansing": 1.82e-06, - "lazarus": 1.82e-06, - "legalize": 1.82e-06, - "lehman": 1.82e-06, - "libby": 1.82e-06, - "librarians": 5.75e-08, - "licked": 1.82e-06, - "lillian": 1.82e-06, - "liquidation": 1.82e-06, - "longitude": 1.82e-06, - "lured": 1.82e-06, - "macho": 1.82e-06, - "maestro": 1.82e-06, - "magna": 1.82e-06, - "maneuvers": 1.82e-06, - "matilda": 1.82e-06, - "maxi": 1.82e-06, - "mcgill": 1.82e-06, - "mcgrath": 1.82e-06, - "meditate": 1.82e-06, - "mercenary": 1.82e-06, - "mexicos": 1.82e-06, - "microscopy": 1.82e-06, - "missy": 1.82e-06, - "moi": 1.82e-06, - "morbid": 1.82e-06, - "motifs": 1.82e-06, - "multiplication": 1.82e-06, - "mysteriously": 1.82e-06, - "nadine": 1.82e-06, - "nav": 1.82e-06, - "nino": 1.82e-06, - "nonfiction": 1.82e-06, - "nouns": 1.82e-06, - "nuanced": 1.82e-06, - "occurrences": 1.82e-06, - "olympia": 1.82e-06, - "orb": 1.82e-06, - "orchestral": 1.82e-06, - "ordinarily": 1.82e-06, - "orthodoxy": 1.82e-06, - "outage": 1.82e-06, - "overcame": 1.82e-06, - "packer": 1.82e-06, - "paternal": 1.82e-06, - "pellets": 1.82e-06, - "pelvis": 1.82e-06, - "penetrated": 1.82e-06, - "pla": 1.82e-06, - "plz": 1.82e-06, - "polarization": 1.82e-06, - "potty": 1.82e-06, - "powering": 1.82e-06, - "preoccupied": 1.82e-06, - "projectile": 1.82e-06, - "protracted": 1.82e-06, - "prussian": 1.82e-06, - "psychiatrists": 9.33e-08, - "puddle": 1.82e-06, - "quay": 1.82e-06, - "railing": 1.82e-06, - "realist": 1.82e-06, - "receptionist": 1.82e-06, - "reckoned": 1.82e-06, - "recruiter": 1.82e-06, - "reforming": 1.82e-06, - "reload": 1.82e-06, - "remuneration": 1.82e-06, - "replicated": 1.82e-06, - "repressed": 1.82e-06, - "reputed": 1.82e-06, - "resigning": 1.82e-06, - "restraints": 1.82e-06, - "revoke": 1.82e-06, - "richness": 1.82e-06, - "riviera": 1.82e-06, - "sadie": 1.82e-06, - "scandinavia": 1.82e-06, - "scanners": 1.82e-06, - "secretive": 1.82e-06, - "sediments": 1.82e-06, - "serotonin": 1.82e-06, - "serviced": 1.82e-06, - "shorty": 1.82e-06, - "silky": 1.82e-06, - "sinatra": 1.82e-06, - "sirius": 1.82e-06, - "slaying": 1.82e-06, - "smallpox": 1.82e-06, - "snails": 1.7e-07, - "snoring": 1.82e-06, - "sociological": 1.82e-06, - "sorority": 1.82e-06, - "spd": 1.82e-06, - "sped": 1.82e-06, - "speechless": 1.82e-06, - "spores": 1.82e-06, - "spurred": 1.82e-06, - "stair": 1.82e-06, - "starship": 1.82e-06, - "stemming": 1.82e-06, - "strategist": 1.82e-06, - "sts": 6.31e-08, - "subaru": 1.82e-06, - "subdivisions": 1.82e-06, - "sunken": 1.82e-06, - "supremacist": 1.82e-06, - "tal": 1.82e-06, - "ter": 1.82e-06, - "toasted": 1.82e-06, - "tortoise": 1.82e-06, - "tragically": 1.82e-06, - "transitioning": 1.82e-06, - "translators": 1.02e-07, - "typewriter": 1.82e-06, - "understandably": 1.82e-06, - "undisputed": 1.82e-06, - "unprofessional": 1.82e-06, - "urdu": 1.82e-06, - "uri": 1.82e-06, - "veggie": 1.82e-06, - "veiled": 1.82e-06, - "visceral": 1.82e-06, - "vividly": 1.82e-06, - "wannabe": 1.82e-06, - "welded": 1.82e-06, - "whaling": 1.82e-06, - "wiggle": 1.82e-06, - "wolfgang": 1.82e-06, - "worldview": 1.82e-06, - "wrongdoing": 1.82e-06, - "zuckerberg": 1.82e-06, - "abusers": 5.37e-08, - "accommodating": 1.78e-06, - "additives": 1.78e-06, - "aggregation": 1.78e-06, - "ahem": 1.78e-06, - "albanian": 1.78e-06, - "alistair": 1.78e-06, - "alkaline": 1.78e-06, - "alum": 1.78e-06, - "antidote": 1.78e-06, - "anus": 4.37e-08, - "appalachian": 1.78e-06, - "archery": 1.78e-06, - "arterial": 1.78e-06, - "artisans": 1.78e-06, - "asparagus": 1.78e-06, - "athena": 1.78e-06, - "attest": 1.78e-06, - "attractiveness": 1.78e-06, - "auditors": 9.77e-08, - "auditory": 1.78e-06, - "avenge": 1.78e-06, - "aversion": 1.78e-06, - "awkwardly": 1.78e-06, - "badgers": 8.13e-08, - "balkans": 1.78e-06, - "ballard": 1.78e-06, - "balm": 1.78e-06, - "behaves": 1.78e-06, - "biennial": 1.78e-06, - "bikers": 1.78e-06, - "bologna": 1.78e-06, - "bolted": 1.78e-06, - "bona": 1.78e-06, - "bony": 1.78e-06, - "borrower": 1.78e-06, - "bridging": 1.78e-06, - "brighten": 1.78e-06, - "brood": 1.78e-06, - "budgeting": 1.78e-06, - "bulletproof": 1.78e-06, - "bundesliga": 1.78e-06, - "cambodian": 1.78e-06, - "campers": 1.78e-06, - "cassandra": 1.78e-06, - "ceases": 1.78e-06, - "cecilia": 1.78e-06, - "cemented": 1.78e-06, - "cessation": 1.78e-06, - "charlottesville": 1.78e-06, - "charlton": 1.78e-06, - "charmed": 1.78e-06, - "chemists": 6.76e-08, - "chemo": 1.78e-06, - "chipped": 1.78e-06, - "civ": 1.78e-06, - "colby": 1.78e-06, - "collagen": 1.78e-06, - "combating": 1.78e-06, - "commencing": 1.78e-06, - "commend": 1.78e-06, - "complied": 1.78e-06, - "contemplated": 1.78e-06, - "cricketer": 1.78e-06, - "crimean": 1.78e-06, - "crochet": 1.78e-06, - "cruisers": 5.25e-08, - "csi": 1.78e-06, - "customization": 1.78e-06, - "cypress": 1.78e-06, - "dal": 1.78e-06, - "dandy": 1.78e-06, - "dependable": 1.78e-06, - "deteriorating": 1.78e-06, - "dickhead": 1.78e-06, - "disagrees": 1.78e-06, - "donny": 1.78e-06, - "downey": 1.78e-06, - "dresden": 1.78e-06, - "dw": 1.78e-06, - "eased": 1.78e-06, - "easing": 1.78e-06, - "eid": 1.78e-06, - "elevations": 1.78e-06, - "emeritus": 1.78e-06, - "emigration": 1.78e-06, - "emit": 1.78e-06, - "enthusiastically": 1.78e-06, - "excavated": 1.78e-06, - "excavations": 1.78e-06, - "excursions": 1.78e-06, - "extant": 1.78e-06, - "ezekiel": 1.78e-06, - "farmed": 1.78e-06, - "fathom": 1.78e-06, - "fiancee": 1.78e-06, - "fictitious": 1.78e-06, - "firsthand": 1.78e-06, - "fitzpatrick": 1.78e-06, - "flashy": 1.78e-06, - "floppy": 1.78e-06, - "fluoride": 1.78e-06, - "frat": 1.78e-06, - "gardeners": 2e-07, - "geologic": 1.78e-06, - "giggling": 1.78e-06, - "gillespie": 1.78e-06, - "gmo": 1.78e-06, - "goldstein": 1.78e-06, - "gospels": 1.78e-06, - "gowns": 1.78e-06, - "grasping": 1.78e-06, - "greenberg": 1.78e-06, - "grooves": 1.78e-06, - "guam": 1.78e-06, - "guantanamo": 1.78e-06, - "guideline": 1.78e-06, - "hadley": 1.78e-06, - "hawthorne": 1.78e-06, - "headmaster": 1.78e-06, - "heartland": 1.78e-06, - "hedgehog": 1.78e-06, - "hehe": 1.78e-06, - "heinous": 1.78e-06, - "hens": 1e-07, - "hoe": 1.78e-06, - "hulu": 1.78e-06, - "hypnosis": 1.78e-06, - "iain": 1.78e-06, - "icu": 1.78e-06, - "immersive": 1.78e-06, - "impeccable": 1.78e-06, - "inbound": 1.78e-06, - "inconsistencies": 1.78e-06, - "inference": 1.78e-06, - "infiltrate": 1.78e-06, - "inflatable": 1.78e-06, - "ingrid": 1.78e-06, - "inhale": 1.78e-06, - "instinctively": 1.78e-06, - "interconnected": 1.78e-06, - "intolerant": 1.78e-06, - "isp": 1.78e-06, - "jellyfish": 1.78e-06, - "jimi": 1.78e-06, - "jordans": 7.41e-07, - "judo": 1.78e-06, - "karnataka": 1.78e-06, - "keane": 1.78e-06, - "keating": 1.78e-06, - "kev": 1.78e-06, - "kilos": 1.78e-06, - "kurdistan": 1.78e-06, - "lament": 1.78e-06, - "leach": 1.78e-06, - "lefty": 1.78e-06, - "legislatures": 2.4e-07, - "lsd": 1.78e-06, - "luigi": 1.78e-06, - "mabel": 1.78e-06, - "mach": 1.78e-06, - "maddie": 1.78e-06, - "maids": 1.78e-07, - "malpractice": 1.78e-06, - "manipulative": 1.78e-06, - "marginally": 1.78e-06, - "marjorie": 1.78e-06, - "mathews": 1.78e-06, - "maxine": 1.78e-06, - "mayweather": 1.78e-06, - "melinda": 1.78e-06, - "memberships": 1.78e-06, - "microbiology": 1.78e-06, - "migrating": 1.78e-06, - "modelled": 1.78e-06, - "modernity": 1.78e-06, - "motherfuckers": 1.78e-06, - "namibia": 1.78e-06, - "narrowing": 1.78e-06, - "navajo": 1.78e-06, - "nectar": 1.78e-06, - "neighbourhoods": 6.76e-08, - "nitrate": 1.78e-06, - "nvidia": 1.78e-06, - "omalley": 1.78e-06, - "oft": 1.78e-06, - "olympus": 1.78e-06, - "oversaw": 1.78e-06, - "pastel": 1.78e-06, - "patterned": 1.78e-06, - "payoff": 1.78e-06, - "perpetrated": 1.78e-06, - "pessimistic": 1.78e-06, - "pesticide": 1.78e-06, - "phosphorus": 1.78e-06, - "platter": 1.78e-06, - "pounded": 1.78e-06, - "preachers": 1.82e-07, - "premieres": 1.78e-06, - "prod": 1.78e-06, - "prodigy": 1.78e-06, - "prosecutions": 3.63e-07, - "prototypes": 1.78e-06, - "psychotherapy": 1.78e-06, - "pundits": 1.78e-06, - "quilt": 1.78e-06, - "radcliffe": 1.78e-06, - "rai": 1.78e-06, - "rama": 1.78e-06, - "rapping": 1.78e-06, - "realtor": 1.78e-06, - "rees": 1.78e-06, - "refreshed": 1.78e-06, - "regency": 1.78e-06, - "reptile": 1.78e-06, - "rescues": 5.01e-08, - "residues": 1.78e-06, - "revisited": 1.78e-06, - "robyn": 1.78e-06, - "rowling": 1.78e-06, - "sag": 1.78e-06, - "sama": 1.78e-06, - "sauna": 1.78e-06, - "scaring": 1.78e-06, - "scotlands": 5.01e-08, - "scrum": 1.78e-06, - "seasonally": 1.78e-06, - "selena": 1.78e-06, - "sem": 1.78e-06, - "shan": 1.78e-06, - "sharper": 1.78e-06, - "shen": 1.78e-06, - "showcases": 1.78e-06, - "slade": 1.78e-06, - "sluggish": 1.78e-06, - "slum": 1.78e-06, - "smoothie": 1.78e-06, - "snare": 1.78e-06, - "snipers": 1.51e-07, - "snowflake": 1.78e-06, - "sod": 1.78e-06, - "spectra": 1.78e-06, - "spines": 1.78e-06, - "spoiling": 1.78e-06, - "ssr": 1.78e-06, - "stag": 1.78e-06, - "stomp": 1.78e-06, - "strangest": 1.78e-06, - "strata": 1.78e-06, - "straws": 1.78e-06, - "studded": 1.78e-06, - "submissive": 1.78e-06, - "subsection": 1.78e-06, - "suede": 1.78e-06, - "summertime": 1.78e-06, - "sundance": 1.78e-06, - "swedes": 1.78e-06, - "sylvester": 1.78e-06, - "tabloid": 1.78e-06, - "taft": 1.78e-06, - "taurus": 1.78e-06, - "teal": 1.78e-06, - "thorns": 1.78e-06, - "throwback": 1.78e-06, - "thunderstorm": 1.78e-06, - "tiers": 1.78e-06, - "timid": 1.78e-06, - "towering": 1.78e-06, - "tracts": 1.78e-06, - "triathlon": 1.78e-06, - "trickle": 1.78e-06, - "troupe": 1.78e-06, - "tsp": 1.78e-06, - "tweed": 1.78e-06, - "ultimatum": 1.78e-06, - "uncut": 1.78e-06, - "uninterrupted": 1.78e-06, - "vettel": 1.78e-06, - "webinar": 1.78e-06, - "weekdays": 1.78e-06, - "weinstein": 1.78e-06, - "widen": 1.78e-06, - "widest": 1.78e-06, - "wigs": 1.78e-06, - "workin": 1.78e-06, - "wrestlemania": 1.78e-06, - "xmas": 3.39e-08, - "yachts": 5.01e-08, - "yelp": 1.78e-06, - "yoon": 1.78e-06, - "abt": 1.74e-06, - "aclu": 1.74e-06, - "affirmation": 1.74e-06, - "amassed": 1.74e-06, - "amherst": 1.74e-06, - "annette": 1.74e-06, - "aol": 1.74e-06, - "apc": 1.74e-06, - "apiece": 1.74e-06, - "appalled": 1.74e-06, - "appreciative": 1.74e-06, - "arched": 1.74e-06, - "archibald": 1.74e-06, - "ascend": 1.74e-06, - "bandage": 1.74e-06, - "bas": 8.91e-08, - "belize": 1.74e-06, - "biologists": 1.74e-06, - "bittersweet": 1.74e-06, - "blight": 1.74e-06, - "botswana": 1.74e-06, - "braid": 1.74e-06, - "branching": 1.74e-06, - "brewster": 1.74e-06, - "bulge": 1.74e-06, - "byrd": 1.74e-06, - "cabaret": 1.74e-06, - "camilla": 1.74e-06, - "caregivers": 1.74e-06, - "carmichael": 1.74e-06, - "catheter": 1.74e-06, - "centimeters": 1.74e-06, - "chemically": 1.74e-06, - "chewed": 1.74e-06, - "cinematography": 1.74e-06, - "cleans": 1.74e-06, - "coincidentally": 1.74e-06, - "collingwood": 1.74e-06, - "commandant": 1.74e-06, - "compartments": 1.74e-06, - "conducive": 1.74e-06, - "confines": 1.74e-06, - "cong": 1.74e-06, - "conscientious": 1.74e-06, - "consensual": 1.74e-06, - "consumes": 1.74e-06, - "contrasted": 1.74e-06, - "cpa": 1.74e-06, - "critiques": 1.74e-06, - "crystalline": 1.74e-06, - "cuffs": 1.74e-06, - "cyanide": 1.74e-06, - "deadpool": 1.74e-06, - "deceit": 1.74e-06, - "delusions": 1.74e-06, - "denounce": 1.74e-06, - "derogatory": 1.74e-06, - "diagnoses": 1.74e-06, - "discriminated": 1.74e-06, - "dismantle": 1.74e-06, - "dismantling": 1.74e-06, - "disrupting": 1.74e-06, - "dmv": 1.74e-06, - "dns": 1.74e-06, - "drags": 1.74e-06, - "drugged": 1.74e-06, - "durban": 1.74e-06, - "dx": 1.74e-06, - "eachother": 1.74e-06, - "eastward": 1.74e-06, - "elisabeth": 1.74e-06, - "emanuel": 1.74e-06, - "embroidery": 1.74e-06, - "emo": 1.74e-06, - "endorsing": 1.74e-06, - "enigma": 1.74e-06, - "equivalents": 1.74e-06, - "erdogan": 1.74e-06, - "estranged": 1.74e-06, - "euphoria": 1.74e-06, - "ez": 1.74e-06, - "fahrenheit": 1.74e-06, - "feelin": 1.74e-06, - "firewall": 1.74e-06, - "flattered": 1.74e-06, - "floridas": 9.12e-08, - "fluorescence": 1.74e-06, - "fonts": 1.74e-06, - "forceful": 1.74e-06, - "forte": 1.74e-06, - "fours": 1.91e-07, - "frowned": 1.74e-06, - "gaelic": 1.74e-06, - "galveston": 1.74e-06, - "gangsters": 9.77e-08, - "gardiner": 1.74e-06, - "gibbons": 1.74e-06, - "giorgio": 1.74e-06, - "gladstone": 1.74e-06, - "gladys": 1.74e-06, - "gmbh": 1.74e-06, - "gogh": 1.74e-06, - "gracie": 1.74e-06, - "grassy": 1.74e-06, - "greener": 1.74e-06, - "greer": 1.74e-06, - "greta": 1.74e-06, - "hanger": 1.74e-06, - "hawking": 1.74e-06, - "hem": 1.74e-06, - "hitman": 1.74e-06, - "hitters": 1.74e-06, - "hobbs": 1.74e-06, - "housekeeping": 1.74e-06, - "hua": 1.74e-06, - "ifs": 1.38e-07, - "impacting": 1.74e-06, - "inequalities": 1.74e-06, - "infiltration": 1.74e-06, - "insidious": 1.74e-06, - "intimately": 1.74e-06, - "ioc": 1.74e-06, - "issa": 1.74e-06, - "jargon": 1.74e-06, - "joon": 1.74e-06, - "kayak": 1.74e-06, - "khaled": 1.74e-06, - "kilograms": 1.74e-06, - "kneel": 1.74e-06, - "knowles": 1.74e-06, - "ladders": 1.74e-06, - "lakh": 1.74e-06, - "leakage": 1.74e-06, - "liberate": 1.74e-06, - "lizards": 6.92e-08, - "loc": 1.74e-06, - "logistical": 1.74e-06, - "loophole": 1.74e-06, - "luminous": 1.74e-06, - "mah": 1.74e-06, - "majestys": 1.74e-06, - "malnutrition": 1.74e-06, - "maori": 1.74e-06, - "marlins": 1.74e-06, - "marseille": 1.74e-06, - "marshals": 1.91e-07, - "masterpieces": 1.74e-06, - "mathematician": 1.74e-06, - "mayonnaise": 1.74e-06, - "mccall": 1.74e-06, - "mcdonnell": 1.74e-06, - "mcdowell": 1.74e-06, - "medias": 4.37e-07, - "meghan": 1.74e-06, - "melodic": 1.74e-06, - "memorials": 8.91e-08, - "mendoza": 1.74e-06, - "meticulous": 1.74e-06, - "michelin": 1.74e-06, - "modesty": 1.74e-06, - "motherfucking": 1.74e-06, - "moustache": 1.74e-06, - "mubarak": 1.74e-06, - "muffins": 1.74e-06, - "mugs": 1.74e-06, - "naw": 1.74e-06, - "netting": 1.74e-06, - "nevermind": 1.74e-06, - "nf": 1.74e-06, - "nigerias": 1.74e-06, - "nigh": 1.74e-06, - "nocturnal": 1.74e-06, - "nozzle": 1.74e-06, - "nudes": 1.74e-06, - "offside": 1.74e-06, - "orgy": 1.74e-06, - "orton": 1.74e-06, - "overlay": 1.74e-06, - "paleo": 1.74e-06, - "paralympic": 1.74e-06, - "pastures": 1.74e-06, - "paternity": 1.74e-06, - "patriarchal": 1.74e-06, - "peeing": 1.74e-06, - "peeling": 1.74e-06, - "perched": 1.74e-06, - "pitiful": 1.74e-06, - "plethora": 1.74e-06, - "plutonium": 1.74e-06, - "powerpoint": 1.74e-06, - "prerequisite": 1.74e-06, - "psychosis": 1.74e-06, - "quantify": 1.74e-06, - "rabies": 1.74e-06, - "rallying": 1.74e-06, - "rations": 1.74e-06, - "raul": 1.74e-06, - "recon": 1.74e-06, - "recount": 1.74e-06, - "rectangle": 1.74e-06, - "recurrent": 1.74e-06, - "refill": 1.74e-06, - "reflexes": 1.74e-06, - "reinforces": 1.74e-06, - "religiously": 1.74e-06, - "relive": 1.74e-06, - "renewing": 1.74e-06, - "reopening": 1.74e-06, - "requisite": 1.74e-06, - "responsibly": 1.74e-06, - "resurrected": 1.74e-06, - "reuben": 1.74e-06, - "revolve": 1.74e-06, - "rewind": 1.74e-06, - "rightfully": 1.74e-06, - "rigs": 5.13e-08, - "ripley": 1.74e-06, - "ritz": 1.74e-06, - "rolf": 1.74e-06, - "rubs": 1.74e-06, - "russo": 1.74e-06, - "saddened": 1.74e-06, - "saddest": 1.74e-06, - "secluded": 1.74e-06, - "seduce": 1.74e-06, - "semifinal": 1.74e-06, - "sens": 1.58e-07, - "shadowy": 1.74e-06, - "shun": 1.74e-06, - "sidekick": 1.74e-06, - "skewed": 1.74e-06, - "snl": 1.74e-06, - "softened": 1.74e-06, - "soros": 1.74e-06, - "spartans": 1.74e-06, - "specifies": 1.74e-06, - "spectre": 1.74e-06, - "sprinkled": 1.74e-06, - "stallion": 1.74e-06, - "stepfather": 1.74e-06, - "strangled": 1.74e-06, - "susie": 1.74e-06, - "sven": 1.74e-06, - "syllables": 1.74e-06, - "synthesized": 1.74e-06, - "tak": 1.74e-06, - "tapestry": 1.74e-06, - "taping": 1.74e-06, - "tenderness": 1.74e-06, - "terrier": 1.74e-06, - "tester": 1.74e-06, - "thirties": 1.74e-06, - "thistle": 1.74e-06, - "thumbnail": 1.74e-06, - "tickle": 1.74e-06, - "titties": 1.74e-06, - "toro": 1.74e-06, - "tpp": 1.74e-06, - "trays": 1.74e-06, - "tubular": 1.74e-06, - "tue": 1.74e-06, - "tumbling": 1.74e-06, - "turkeys": 1.62e-06, - "underside": 1.74e-06, - "uneducated": 1.74e-06, - "unload": 1.74e-06, - "unloading": 1.74e-06, - "unmarked": 1.74e-06, - "unreleased": 1.74e-06, - "upkeep": 1.74e-06, - "urn": 1.74e-06, - "viagra": 1.74e-06, - "vigil": 1.74e-06, - "voicing": 1.74e-06, - "volley": 1.74e-06, - "voyages": 1.74e-06, - "waive": 1.74e-06, - "wallis": 1.74e-06, - "warmly": 1.74e-06, - "watergate": 1.74e-06, - "wavy": 1.74e-06, - "wednesdays": 1.12e-06, - "weibo": 1.74e-06, - "wendell": 1.74e-06, - "wept": 1.74e-06, - "whew": 1.74e-06, - "whirlwind": 1.74e-06, - "whitaker": 1.74e-06, - "wilbur": 1.74e-06, - "wildest": 1.74e-06, - "winnings": 1.51e-08, - "wis": 1.66e-08, - "woodlands": 1.74e-06, - "yearning": 1.74e-06, - "accomplishing": 1.7e-06, - "accumulating": 1.7e-06, - "affleck": 1.7e-06, - "agencys": 1.7e-06, - "alain": 1.7e-06, - "andrei": 1.7e-06, - "annapolis": 1.7e-06, - "annum": 1.7e-06, - "appreciating": 1.7e-06, - "aristocratic": 1.7e-06, - "aroma": 1.7e-06, - "arsenic": 1.7e-06, - "assigns": 1.7e-06, - "assures": 1.7e-06, - "astro": 1.7e-06, - "asus": 8.71e-08, - "aziz": 1.7e-06, - "backers": 1.7e-06, - "bain": 1.7e-06, - "barclays": 1.32e-07, - "basing": 1.7e-06, - "batches": 1.7e-06, - "beggars": 1.15e-07, - "bestselling": 1.7e-06, - "biographies": 1.7e-06, - "biologically": 1.7e-06, - "bowled": 1.7e-06, - "bubbling": 1.7e-06, - "budge": 1.7e-06, - "bw": 1.7e-06, - "calhoun": 1.7e-06, - "ccp": 1.7e-06, - "chaplin": 1.7e-06, - "cheater": 1.7e-06, - "cheeses": 9.55e-08, - "clegg": 1.7e-06, - "cloning": 1.7e-06, - "clout": 1.7e-06, - "cochran": 1.7e-06, - "comical": 1.7e-06, - "commemorative": 1.7e-06, - "confederacy": 1.7e-06, - "converge": 1.7e-06, - "copeland": 1.7e-06, - "corny": 1.7e-06, - "countrymen": 1.7e-06, - "crucible": 1.7e-06, - "cryptic": 1.7e-06, - "culminated": 1.7e-06, - "curses": 1.7e-06, - "darth": 1.7e-06, - "deb": 1.7e-06, - "declarations": 1.7e-06, - "deities": 1.7e-06, - "deletion": 1.7e-06, - "diligent": 1.7e-06, - "discern": 1.7e-06, - "dislikes": 1.7e-06, - "domino": 1.7e-06, - "donnelly": 1.7e-06, - "downgrade": 1.7e-06, - "dreamy": 1.7e-06, - "drenched": 1.7e-06, - "droid": 1.7e-06, - "dukes": 1.15e-06, - "dummies": 1.7e-06, - "dunbar": 1.7e-06, - "dung": 1.7e-06, - "dyson": 1.7e-06, - "earners": 1.7e-06, - "eel": 1.7e-06, - "eiffel": 1.7e-06, - "embryonic": 1.7e-06, - "emoji": 1.7e-06, - "encountering": 1.7e-06, - "endanger": 1.7e-06, - "eos": 1.7e-06, - "equities": 1.7e-06, - "fakes": 1.7e-06, - "fanatic": 1.7e-06, - "fav": 1.7e-06, - "feats": 1.7e-06, - "filmmaking": 1.7e-06, - "firmware": 1.7e-06, - "formulate": 1.7e-06, - "forts": 8.32e-08, - "fragmentation": 1.7e-06, - "franks": 1.23e-06, - "frederic": 1.7e-06, - "ftc": 1.7e-06, - "gated": 1.7e-06, - "girly": 1.7e-06, - "glam": 1.7e-06, - "glorified": 1.7e-06, - "goth": 1.7e-06, - "gracefully": 1.7e-06, - "gubernatorial": 1.7e-06, - "gunmen": 1.7e-06, - "hahahaha": 1.7e-06, - "hawthorn": 1.7e-06, - "healy": 1.7e-06, - "hermann": 1.7e-06, - "herr": 1.7e-06, - "hf": 1.7e-06, - "hg": 1.7e-06, - "hoard": 1.7e-06, - "horde": 1.7e-06, - "humming": 1.7e-06, - "ignited": 1.7e-06, - "imdb": 1.7e-06, - "imp": 1.7e-06, - "implicitly": 1.7e-06, - "inconsistency": 1.7e-06, - "ingenuity": 1.7e-06, - "injecting": 1.7e-06, - "inorganic": 1.7e-06, - "intestine": 1.7e-06, - "isolating": 1.7e-06, - "itinerary": 1.7e-06, - "juggling": 1.7e-06, - "justifies": 1.7e-06, - "kkk": 1.7e-06, - "koran": 1.7e-06, - "lacy": 1.7e-06, - "lair": 1.7e-06, - "lamborghini": 1.7e-06, - "lambs": 3.02e-07, - "leaping": 1.7e-06, - "liberating": 1.7e-06, - "lifeless": 1.7e-06, - "lifeline": 1.7e-06, - "lobbyists": 1.7e-06, - "looms": 1.7e-06, - "lotto": 1.7e-06, - "lovable": 1.7e-06, - "luka": 1.7e-06, - "lukas": 5.5e-08, - "lyndon": 1.7e-06, - "lynne": 1.7e-06, - "macarthur": 1.7e-06, - "mam": 6.03e-08, - "mani": 1.7e-06, - "mari": 1.7e-06, - "marino": 1.7e-06, - "mateo": 1.7e-06, - "messes": 1.7e-06, - "metaphors": 1.7e-06, - "miliband": 1.7e-06, - "molded": 1.7e-06, - "moot": 1.7e-06, - "mortimer": 1.7e-06, - "msc": 1.7e-06, - "musicals": 7.94e-08, - "myles": 1.7e-06, - "nebula": 1.7e-06, - "neurology": 1.7e-06, - "newt": 1.7e-06, - "nguyen": 1.7e-06, - "nietzsche": 1.7e-06, - "nitro": 1.7e-06, - "noaa": 1.7e-06, - "norse": 1.7e-06, - "notebooks": 1.7e-06, - "nyt": 1.7e-06, - "odin": 1.7e-06, - "oj": 1.7e-06, - "ost": 1.7e-06, - "overflowing": 1.7e-06, - "overland": 1.7e-06, - "overshadowed": 1.7e-06, - "pantry": 1.7e-06, - "paraguay": 1.7e-06, - "parchment": 1.7e-06, - "partake": 1.7e-06, - "pedals": 1.7e-06, - "pesos": 1.7e-06, - "peterborough": 1.7e-06, - "philosophies": 1.7e-06, - "pj": 1.7e-06, - "plagiarism": 1.7e-06, - "poked": 1.7e-06, - "polk": 1.7e-06, - "pollard": 1.7e-06, - "polled": 1.7e-06, - "pollock": 1.7e-06, - "prefix": 1.7e-06, - "proctor": 1.7e-06, - "prologue": 1.7e-06, - "proto": 1.7e-06, - "psp": 1.7e-06, - "pueblo": 1.7e-06, - "pulpit": 1.7e-06, - "puncture": 1.7e-06, - "pussies": 1.7e-06, - "qa": 1.7e-06, - "recounts": 1.7e-06, - "redhead": 1.7e-06, - "relational": 1.7e-06, - "remastered": 1.7e-06, - "renegade": 1.7e-06, - "resorted": 1.7e-06, - "ripper": 1.7e-06, - "robson": 1.7e-06, - "roofing": 1.7e-06, - "rotational": 1.7e-06, - "rudd": 1.7e-06, - "ryu": 1.7e-06, - "safeguarding": 1.7e-06, - "sash": 1.7e-06, - "scrambling": 1.7e-06, - "scully": 1.7e-06, - "seductive": 1.7e-06, - "sega": 1.7e-06, - "segmentation": 1.7e-06, - "sergey": 1.7e-06, - "shaker": 1.7e-06, - "shielding": 1.7e-06, - "shone": 1.7e-06, - "sissy": 1.7e-06, - "sizeable": 1.7e-06, - "sled": 1.7e-06, - "sloane": 1.7e-06, - "sludge": 1.7e-06, - "sniffing": 1.7e-06, - "sorrows": 1.7e-06, - "spamming": 1.7e-06, - "speedway": 1.7e-06, - "spiked": 1.7e-06, - "spongebob": 1.7e-06, - "sprouts": 1.7e-06, - "staffers": 1.7e-06, - "staffs": 4.68e-07, - "stiles": 1.7e-06, - "stretcher": 1.7e-06, - "stricter": 1.7e-06, - "subtitle": 1.7e-06, - "summarize": 1.7e-06, - "sympathies": 1.7e-06, - "taker": 1.7e-06, - "telescopes": 7.59e-08, - "tess": 1.7e-06, - "threaded": 1.7e-06, - "tong": 1.7e-06, - "torturing": 1.7e-06, - "townships": 7.24e-08, - "transplantation": 1.7e-06, - "triad": 1.7e-06, - "trimming": 1.7e-06, - "truthfully": 1.7e-06, - "unfounded": 1.7e-06, - "unicef": 1.7e-06, - "unimportant": 1.7e-06, - "uninsured": 1.7e-06, - "untitled": 1.7e-06, - "uw": 1.7e-06, - "uzbekistan": 1.7e-06, - "valor": 1.7e-06, - "vape": 1.7e-06, - "vernacular": 1.7e-06, - "virtuous": 1.7e-06, - "vox": 1.7e-06, - "vulnerabilities": 1.7e-06, - "waffles": 1.7e-06, - "waiters": 7.76e-08, - "waivers": 1.7e-06, - "warcraft": 1.7e-06, - "watercolor": 1.7e-06, - "wight": 1.7e-06, - "wolff": 1.7e-06, - "worded": 1.7e-06, - "wto": 1.7e-06, - "yknow": 2.4e-07, - "abrasive": 1.66e-06, - "accompaniment": 1.66e-06, - "accomplice": 1.66e-06, - "adoptive": 1.66e-06, - "ailments": 1.66e-06, - "alphabetical": 1.66e-06, - "alternately": 1.66e-06, - "analysing": 1.66e-06, - "annihilation": 1.66e-06, - "arbitrarily": 1.66e-06, - "armistice": 1.66e-06, - "armory": 1.66e-06, - "ars": 1.66e-06, - "att": 1.66e-06, - "auspices": 1.66e-06, - "awakens": 1.66e-06, - "bathe": 1.66e-06, - "beheaded": 1.66e-06, - "bellevue": 1.66e-06, - "bloomington": 1.66e-06, - "boasted": 1.66e-06, - "bobs": 8.71e-07, - "boroughs": 1.23e-07, - "breathed": 1.66e-06, - "brodie": 1.66e-06, - "calamity": 1.66e-06, - "carbonate": 1.66e-06, - "carlyle": 1.66e-06, - "carmel": 1.66e-06, - "catalytic": 1.66e-06, - "cemeteries": 1.66e-06, - "ceylon": 1.66e-06, - "chases": 3.02e-07, - "cheerleaders": 1.66e-06, - "cheesecake": 1.66e-06, - "choral": 1.66e-06, - "chronology": 1.66e-06, - "clam": 1.66e-06, - "clientele": 1.66e-06, - "coefficients": 1.66e-06, - "coldest": 1.66e-06, - "colouring": 1.66e-06, - "combatants": 1.66e-06, - "competes": 1.66e-06, - "configured": 1.66e-06, - "conflicted": 1.66e-06, - "convection": 1.66e-06, - "coronavirus": 1.66e-06, - "cosby": 1.66e-06, - "craftsman": 1.66e-06, - "creams": 6.92e-08, - "cretaceous": 1.66e-06, - "cripple": 1.66e-06, - "crooks": 1.66e-06, - "crunchy": 1.66e-06, - "ctrl": 1.66e-06, - "curvature": 1.66e-06, - "cyborg": 1.66e-06, - "dares": 1.38e-08, - "deflection": 1.66e-06, - "despised": 1.66e-06, - "dialogues": 1.66e-06, - "discouraging": 1.66e-06, - "distillery": 1.66e-06, - "diversification": 1.66e-06, - "djokovic": 1.66e-06, - "doesn": 1.66e-06, - "drumming": 1.66e-06, - "drummond": 1.66e-06, - "effortlessly": 1.66e-06, - "eighties": 1.66e-06, - "ein": 1.66e-06, - "enactment": 1.66e-06, - "enlighten": 1.66e-06, - "envious": 1.66e-06, - "erm": 1.66e-06, - "erroneous": 1.66e-06, - "exacerbated": 1.66e-06, - "familial": 1.66e-06, - "farage": 1.66e-06, - "fashions": 1.66e-07, - "feces": 1.66e-06, - "federer": 1.66e-06, - "filings": 1.66e-06, - "fishery": 1.66e-06, - "folders": 1.66e-06, - "frazier": 1.66e-06, - "frivolous": 1.66e-06, - "fruition": 1.66e-06, - "fuji": 1.66e-06, - "fullback": 1.66e-06, - "gage": 1.66e-06, - "galley": 1.66e-06, - "galway": 1.66e-06, - "gators": 1.66e-06, - "giddy": 1.66e-06, - "gpu": 1.66e-06, - "granada": 1.66e-06, - "grandeur": 1.66e-06, - "grappling": 1.66e-06, - "grover": 1.66e-06, - "gunshots": 1.66e-06, - "hamid": 1.66e-06, - "handlers": 7.24e-08, - "hanks": 2.69e-07, - "haunts": 1.66e-06, - "heinz": 1.66e-06, - "henrys": 9.33e-08, - "hentai": 1.66e-06, - "hodgson": 1.66e-06, - "homogeneous": 1.66e-06, - "hye": 1.66e-06, - "ich": 1.66e-06, - "ina": 1.66e-06, - "incl": 1.66e-06, - "inserts": 1.66e-06, - "intangible": 1.66e-06, - "interceptions": 1.66e-06, - "intestines": 1.66e-06, - "inventors": 6.61e-08, - "ire": 1.66e-06, - "jesuit": 1.66e-06, - "justine": 1.66e-06, - "kellys": 1.1e-07, - "kiddo": 1.66e-06, - "kimmel": 1.66e-06, - "knuckle": 1.66e-06, - "kt": 1.66e-06, - "landscaping": 1.66e-06, - "laureate": 1.66e-06, - "lds": 1.66e-06, - "lear": 1.66e-06, - "lesley": 1.66e-06, - "leveling": 1.66e-06, - "levied": 1.66e-06, - "lineman": 1.66e-06, - "litres": 1.66e-06, - "lodges": 1.15e-07, - "madman": 1.66e-06, - "maniac": 1.66e-06, - "manifestations": 1.66e-06, - "mavericks": 1.66e-06, - "mcnamara": 1.66e-06, - "medalist": 1.66e-06, - "melee": 1.66e-06, - "melo": 1.66e-06, - "melville": 1.66e-06, - "memorize": 1.66e-06, - "mendes": 1.66e-06, - "menstrual": 1.66e-06, - "merch": 1.66e-06, - "metallica": 1.66e-06, - "metaphysical": 1.66e-06, - "meteorology": 1.66e-06, - "methyl": 1.66e-06, - "mindless": 1.66e-06, - "misconception": 1.66e-06, - "mislead": 1.66e-06, - "momentarily": 1.66e-06, - "mounds": 1.66e-06, - "nadu": 1.66e-06, - "narcissistic": 1.66e-06, - "negotiable": 1.66e-06, - "nicknames": 1.66e-06, - "nom": 1.66e-06, - "northward": 1.66e-06, - "norwood": 1.66e-06, - "nudge": 1.66e-06, - "nurturing": 1.66e-06, - "nyse": 1.66e-06, - "obscured": 1.66e-06, - "osu": 1.66e-06, - "outlawed": 1.66e-06, - "ovens": 1.66e-06, - "overturn": 1.66e-06, - "padded": 1.66e-06, - "padres": 1.66e-06, - "panicking": 1.66e-06, - "pantheon": 1.66e-06, - "payer": 1.66e-06, - "pictorial": 1.66e-06, - "pints": 1.66e-06, - "ploy": 1.66e-06, - "pours": 1.66e-06, - "prejudices": 1.66e-06, - "presumption": 1.66e-06, - "proclaiming": 1.66e-06, - "prospectus": 1.66e-06, - "prosthetic": 1.66e-06, - "pty": 1.66e-06, - "publics": 3.55e-07, - "puma": 1.66e-06, - "racers": 6.03e-08, - "reactionary": 1.66e-06, - "reciprocal": 1.66e-06, - "reconstruct": 1.66e-06, - "redwood": 1.66e-06, - "regan": 1.66e-06, - "relieving": 1.66e-06, - "reverence": 1.66e-06, - "richter": 1.66e-06, - "rims": 1.66e-06, - "sabine": 1.66e-06, - "saigon": 1.66e-06, - "santana": 1.66e-06, - "scrubs": 1.66e-06, - "seaweed": 1.66e-06, - "seduction": 1.66e-06, - "selfishness": 1.66e-06, - "serge": 1.66e-06, - "servicemen": 1.66e-06, - "setbacks": 1.66e-06, - "sevens": 2.14e-07, - "sewers": 1.66e-06, - "sexiest": 1.66e-06, - "shakespeares": 1.66e-06, - "shaman": 1.66e-06, - "shatter": 1.66e-06, - "shepherds": 8.13e-07, - "shoving": 1.66e-06, - "signify": 1.66e-06, - "sinn": 1.66e-06, - "sino": 1.66e-06, - "sketchy": 1.66e-06, - "smuggled": 1.66e-06, - "snowfall": 1.66e-06, - "southbound": 1.66e-06, - "specificity": 1.66e-06, - "squirt": 1.66e-06, - "ste": 1.66e-06, - "stewardship": 1.66e-06, - "stitched": 1.66e-06, - "stoppage": 1.66e-06, - "storylines": 1.66e-06, - "straining": 1.66e-06, - "stu": 1.66e-06, - "superpower": 1.66e-06, - "suspensions": 1.66e-06, - "synergy": 1.66e-06, - "takers": 1.66e-06, - "tasmanian": 1.66e-06, - "tempt": 1.66e-06, - "terminating": 1.66e-06, - "terri": 1.66e-06, - "testifying": 1.66e-06, - "thermometer": 1.66e-06, - "thingy": 1.66e-06, - "timberlake": 1.66e-06, - "tint": 1.66e-06, - "tomlinson": 1.66e-06, - "toulouse": 1.66e-06, - "triumphs": 1.66e-06, - "unbroken": 1.66e-06, - "unsettled": 1.66e-06, - "unveiling": 1.66e-06, - "uttar": 1.66e-06, - "versed": 1.66e-06, - "vicki": 1.66e-06, - "vlad": 1.66e-06, - "vm": 1.66e-06, - "weiner": 1.66e-06, - "wharton": 1.66e-06, - "whiff": 1.66e-06, - "whopping": 1.66e-06, - "wilt": 1.66e-06, - "woodstock": 1.66e-06, - "youtubers": 1.66e-06, - "zachary": 1.66e-06, - "zhao": 1.66e-06, - "absurdity": 1.62e-06, - "achievable": 1.62e-06, - "adversaries": 1.62e-06, - "alchemy": 1.62e-06, - "amazons": 5.5e-07, - "ambushed": 1.62e-06, - "americana": 1.62e-06, - "anastasia": 1.62e-06, - "anatomical": 1.62e-06, - "antigen": 1.62e-06, - "apostolic": 1.62e-06, - "applauded": 1.62e-06, - "ara": 1.62e-06, - "aristocracy": 1.62e-06, - "armchair": 1.62e-06, - "aryan": 1.62e-06, - "aswell": 1.62e-06, - "aunts": 6.61e-07, - "babysitter": 1.62e-06, - "babysitting": 1.62e-06, - "backlog": 1.62e-06, - "bbcs": 1.62e-06, - "bengali": 1.62e-06, - "bile": 1.62e-06, - "biochemical": 1.62e-06, - "bled": 1.62e-06, - "bling": 1.62e-06, - "boca": 1.62e-06, - "boner": 1.62e-06, - "bose": 1.62e-06, - "botched": 1.62e-06, - "bouts": 1.62e-06, - "bradshaw": 1.62e-06, - "brandt": 1.62e-06, - "brownie": 1.62e-06, - "bunnies": 1.62e-06, - "calibre": 1.62e-06, - "caliphate": 1.62e-06, - "captives": 1.62e-06, - "carcass": 1.62e-06, - "cardigan": 1.62e-06, - "carousel": 1.62e-06, - "cartwright": 1.62e-06, - "chico": 1.62e-06, - "chihuahua": 1.62e-06, - "christi": 1.62e-06, - "circumcision": 1.62e-06, - "clandestine": 1.62e-06, - "clarifying": 1.62e-06, - "clutter": 1.62e-06, - "commuters": 1.62e-06, - "complying": 1.62e-06, - "compost": 1.62e-06, - "condemns": 1.62e-06, - "congratulated": 1.62e-06, - "conqueror": 1.62e-06, - "cot": 1.62e-06, - "coulson": 1.62e-06, - "crafty": 1.62e-06, - "crickets": 1.62e-07, - "croydon": 1.62e-06, - "crusader": 1.62e-06, - "cumming": 1.62e-06, - "cutoff": 1.62e-06, - "debacle": 1.62e-06, - "defiant": 1.62e-06, - "deformed": 1.62e-06, - "detain": 1.62e-06, - "diagnostics": 1.62e-06, - "directives": 1.62e-06, - "disarm": 1.62e-06, - "doherty": 1.62e-06, - "domingo": 1.62e-06, - "dominique": 1.62e-06, - "drawback": 1.62e-06, - "drawbacks": 1.62e-06, - "drs": 1.41e-07, - "edm": 1.62e-06, - "edo": 1.62e-06, - "elliptical": 1.62e-06, - "eloquent": 1.62e-06, - "eminence": 1.62e-06, - "emitting": 1.62e-06, - "emperors": 1.32e-06, - "entail": 1.62e-06, - "equatorial": 1.62e-06, - "eras": 2.75e-07, - "esports": 1.62e-06, - "eth": 1.62e-06, - "ethereum": 1.62e-06, - "eyeballs": 1.62e-06, - "fairytale": 1.62e-06, - "fallacy": 1.62e-06, - "feeble": 1.62e-06, - "fend": 1.62e-06, - "ferocious": 1.62e-06, - "fifties": 1.62e-06, - "filipinos": 1.62e-06, - "flake": 1.62e-06, - "fords": 5.5e-07, - "forensics": 1.62e-06, - "forwarding": 1.62e-06, - "fragrant": 1.62e-06, - "gallant": 1.62e-06, - "gazing": 1.62e-06, - "gd": 1.62e-06, - "generalization": 1.62e-06, - "genitals": 1.62e-06, - "geologist": 1.62e-06, - "goldsmith": 1.62e-06, - "golfing": 1.62e-06, - "goons": 1.62e-06, - "guesses": 1.62e-06, - "gums": 1.62e-06, - "haas": 1.62e-06, - "halle": 1.62e-06, - "hana": 1.62e-06, - "handcuffs": 1.62e-06, - "harmon": 1.62e-06, - "hasan": 1.62e-06, - "herds": 1.62e-06, - "hermit": 1.62e-06, - "hillsborough": 1.62e-06, - "hindered": 1.62e-06, - "hookers": 1.41e-07, - "horsemen": 1.62e-06, - "hui": 1.62e-06, - "hutton": 1.62e-06, - "ign": 1.62e-06, - "illuminating": 1.62e-06, - "indebted": 1.62e-06, - "indecent": 1.62e-06, - "inquest": 1.62e-06, - "interacts": 1.62e-06, - "interfered": 1.62e-06, - "ionic": 1.62e-06, - "ipl": 1.62e-06, - "jennie": 1.62e-06, - "jerking": 1.62e-06, - "jingle": 1.62e-06, - "johansson": 1.62e-06, - "kali": 1.62e-06, - "kilometre": 1.62e-06, - "kink": 1.62e-06, - "kira": 1.62e-06, - "lagging": 1.62e-06, - "laguna": 1.62e-06, - "lawns": 1.62e-06, - "leighton": 1.62e-06, - "leopold": 1.62e-06, - "levant": 1.62e-06, - "lice": 1.62e-06, - "loco": 1.62e-06, - "looted": 1.62e-06, - "lorry": 1.62e-06, - "loudest": 1.62e-06, - "lovin": 1.62e-06, - "macleod": 1.62e-06, - "magnolia": 1.62e-06, - "marlon": 1.62e-06, - "matty": 1.62e-06, - "mauritius": 1.62e-06, - "medial": 1.62e-06, - "mellon": 1.62e-06, - "mercantile": 1.62e-06, - "migratory": 1.62e-06, - "mingle": 1.62e-06, - "modernist": 1.62e-06, - "moths": 1.62e-06, - "mover": 1.62e-06, - "movers": 1.62e-06, - "nee": 1.62e-06, - "nomenclature": 1.62e-06, - "organisers": 1.62e-06, - "outback": 1.62e-06, - "outcry": 1.62e-06, - "pamphlets": 1.62e-06, - "panoramic": 1.62e-06, - "paparazzi": 1.62e-06, - "parkinson": 1.62e-06, - "pauses": 1.62e-06, - "pave": 1.62e-06, - "peng": 1.62e-06, - "philanthropic": 1.62e-06, - "playhouse": 1.62e-06, - "plow": 1.62e-06, - "prada": 1.62e-06, - "preferential": 1.62e-06, - "prescribing": 1.62e-06, - "primetime": 1.62e-06, - "probing": 1.62e-06, - "proc": 1.62e-06, - "prolong": 1.62e-06, - "propane": 1.62e-06, - "publicized": 1.62e-06, - "purest": 1.62e-06, - "pvc": 1.62e-06, - "qt": 1.62e-06, - "queues": 1.62e-06, - "ramadan": 1.62e-06, - "rambling": 1.62e-06, - "ras": 5.13e-07, - "recruiters": 1.62e-06, - "redirect": 1.62e-06, - "redmond": 1.62e-06, - "relentlessly": 1.62e-06, - "remanded": 1.62e-06, - "reusable": 1.62e-06, - "revolutionaries": 1.62e-06, - "rin": 1.62e-06, - "robberies": 1.62e-06, - "rowdy": 1.62e-06, - "saffron": 1.62e-06, - "salford": 1.62e-06, - "sassy": 1.62e-06, - "schoolboy": 1.62e-06, - "schumacher": 1.62e-06, - "scoreboard": 1.62e-06, - "scotty": 1.62e-06, - "seeding": 1.62e-06, - "sender": 1.62e-06, - "seneca": 1.62e-06, - "septic": 1.62e-06, - "shamed": 1.62e-06, - "shenanigans": 1.62e-06, - "silas": 1.62e-06, - "skateboard": 1.62e-06, - "skiers": 1.62e-06, - "slider": 1.62e-06, - "smacked": 1.62e-06, - "soma": 1.62e-06, - "ssd": 1.62e-06, - "staggered": 1.62e-06, - "staining": 1.62e-06, - "stalked": 1.62e-06, - "stemmed": 1.62e-06, - "stipulated": 1.62e-06, - "substrates": 1.62e-06, - "subversive": 1.62e-06, - "sufferers": 1.62e-06, - "suggestive": 1.62e-06, - "suitability": 1.62e-06, - "superstition": 1.62e-06, - "surfers": 8.71e-08, - "swallows": 5.5e-08, - "swanson": 1.62e-06, - "symmetric": 1.62e-06, - "synonyms": 1.62e-06, - "takin": 1.62e-06, - "theses": 1.62e-06, - "tic": 1.62e-06, - "timeout": 1.62e-06, - "toms": 1.2e-06, - "tome": 1.62e-06, - "tonne": 1.62e-06, - "totalitarian": 1.62e-06, - "tramp": 1.62e-06, - "transistor": 1.62e-06, - "translucent": 1.62e-06, - "trashed": 1.62e-06, - "trot": 1.62e-06, - "unbalanced": 1.62e-06, - "unfavorable": 1.62e-06, - "unintentionally": 1.62e-06, - "uniqueness": 1.62e-06, - "upto": 1.62e-06, - "vertebrae": 1.62e-06, - "vertex": 1.62e-06, - "vowels": 1.62e-06, - "vuitton": 1.62e-06, - "wheeling": 1.62e-06, - "whistling": 1.62e-06, - "wield": 1.62e-06, - "woodwork": 1.62e-06, - "yall": 1.07e-06, - "yellowish": 1.62e-06, - "yt": 1.62e-06, - "accompanies": 1.58e-06, - "acidity": 1.58e-06, - "ado": 1.58e-06, - "affirm": 1.58e-06, - "agrarian": 1.58e-06, - "airy": 1.58e-06, - "akira": 1.58e-06, - "alaskan": 1.58e-06, - "alfie": 1.58e-06, - "alloys": 1.58e-06, - "andhra": 1.58e-06, - "anecdote": 1.58e-06, - "anew": 1.58e-06, - "ani": 1.58e-06, - "antifa": 1.58e-06, - "antwerp": 1.58e-06, - "appease": 1.58e-06, - "aptitude": 1.58e-06, - "arisen": 1.58e-06, - "assassinate": 1.58e-06, - "asteroids": 7.59e-08, - "backside": 1.58e-06, - "bassist": 1.58e-06, - "bein": 1.58e-06, - "bespoke": 1.58e-06, - "blatantly": 1.58e-06, - "blinding": 1.58e-06, - "blocker": 1.58e-06, - "blowout": 1.58e-06, - "booted": 1.58e-06, - "brisk": 1.58e-06, - "bubbly": 1.58e-06, - "bummer": 1.58e-06, - "bundy": 1.58e-06, - "canceling": 1.58e-06, - "cao": 1.58e-06, - "casper": 1.58e-06, - "cauliflower": 1.58e-06, - "cebu": 1.58e-06, - "celia": 1.58e-06, - "cereals": 1.58e-06, - "chadwick": 1.58e-06, - "chainsaw": 1.58e-06, - "chalmers": 1.58e-06, - "channing": 1.58e-06, - "cheetah": 1.58e-06, - "christensen": 1.58e-06, - "climatic": 1.58e-06, - "clockwise": 1.58e-06, - "clockwork": 1.58e-06, - "coincides": 1.58e-06, - "como": 1.58e-06, - "conformity": 1.58e-06, - "confronts": 1.58e-06, - "consort": 1.58e-06, - "correlate": 1.58e-06, - "cougars": 1.58e-06, - "courteous": 1.58e-06, - "craftsmen": 1.58e-06, - "crete": 1.58e-06, - "criticise": 1.58e-06, - "cupid": 1.58e-06, - "curiously": 1.58e-06, - "damning": 1.58e-06, - "danes": 9.55e-08, - "darrell": 1.58e-06, - "defer": 1.58e-06, - "deforestation": 1.58e-06, - "delaney": 1.58e-06, - "demeanor": 1.58e-06, - "deng": 1.58e-06, - "deplorable": 1.58e-06, - "deranged": 1.58e-06, - "detergent": 1.58e-06, - "detour": 1.58e-06, - "dg": 1.58e-06, - "dhaka": 1.58e-06, - "diff": 1.58e-06, - "dissenting": 1.58e-06, - "distressing": 1.58e-06, - "docked": 1.58e-06, - "downtime": 1.58e-06, - "downwards": 1.58e-06, - "dries": 1.58e-06, - "dutton": 1.58e-06, - "enlarge": 1.58e-06, - "enlargement": 1.58e-06, - "equate": 1.58e-06, - "equestrian": 1.58e-06, - "ethereal": 1.58e-06, - "eurovision": 1.58e-06, - "expanse": 1.58e-06, - "fabio": 1.58e-06, - "faiths": 2.34e-07, - "fanatics": 1.58e-06, - "fanfare": 1.58e-06, - "favorably": 1.58e-06, - "fidel": 1.58e-06, - "fingernails": 1.58e-06, - "fireman": 1.58e-06, - "flaps": 1.58e-06, - "flask": 1.58e-06, - "fluff": 1.58e-06, - "fondly": 1.58e-06, - "footnotes": 1.58e-06, - "fremont": 1.58e-06, - "frosty": 1.58e-06, - "galileo": 1.58e-06, - "gatsby": 1.58e-06, - "gearbox": 1.58e-06, - "germ": 1.58e-06, - "gis": 7.76e-08, - "giver": 1.58e-06, - "gnome": 1.58e-06, - "guaranteeing": 1.58e-06, - "gunpoint": 1.58e-06, - "hades": 1.58e-06, - "handedly": 1.58e-06, - "har": 1.58e-06, - "harcourt": 1.58e-06, - "harlan": 1.58e-06, - "haute": 1.58e-06, - "heartache": 1.58e-06, - "hertfordshire": 1.58e-06, - "homeowner": 1.58e-06, - "hooray": 1.58e-06, - "huskies": 1.58e-06, - "hypotheses": 1.58e-06, - "imitating": 1.58e-06, - "imposes": 1.58e-06, - "individuality": 1.58e-06, - "infiltrated": 1.58e-06, - "insurgent": 1.58e-06, - "intertwined": 1.58e-06, - "inventories": 1.58e-06, - "iranians": 1.58e-06, - "italys": 1.58e-06, - "jails": 8.51e-08, - "janitor": 1.58e-06, - "judgmental": 1.58e-06, - "lange": 1.58e-06, - "lanterns": 1.58e-06, - "launchers": 1.58e-06, - "legislator": 1.58e-06, - "lien": 1.58e-06, - "limousine": 1.58e-06, - "linden": 1.58e-06, - "lithuanian": 1.58e-06, - "lotta": 1.58e-06, - "lupus": 1.58e-06, - "lyme": 1.58e-06, - "lymph": 1.58e-06, - "macys": 1.32e-07, - "mahal": 1.58e-06, - "mansions": 8.51e-08, - "manure": 1.58e-06, - "mariah": 1.58e-06, - "mccormick": 1.58e-06, - "meatballs": 1.58e-06, - "meningitis": 1.58e-06, - "meteorite": 1.58e-06, - "midfielders": 1.58e-06, - "mildred": 1.58e-06, - "militias": 6.61e-08, - "millie": 1.58e-06, - "milne": 1.58e-06, - "misogyny": 1.58e-06, - "mrna": 1.58e-06, - "multiplier": 1.58e-06, - "nehru": 1.58e-06, - "newbie": 1.58e-06, - "newtown": 1.58e-06, - "nominating": 1.58e-06, - "northbound": 1.58e-06, - "oblique": 1.58e-06, - "obscurity": 1.58e-06, - "odessa": 1.58e-06, - "okinawa": 1.58e-06, - "onslaught": 1.58e-06, - "opal": 1.58e-06, - "operas": 3.39e-07, - "organisational": 1.58e-06, - "oxfordshire": 1.58e-06, - "palsy": 1.58e-06, - "paralympics": 1.58e-06, - "paramilitary": 1.58e-06, - "partridge": 1.58e-06, - "patrolling": 1.58e-06, - "patti": 1.58e-06, - "payers": 5.01e-08, - "permissible": 1.58e-06, - "platonic": 1.58e-06, - "polka": 1.58e-06, - "primates": 1.58e-06, - "rancho": 1.58e-06, - "rattling": 1.58e-06, - "rca": 1.58e-06, - "realisation": 1.58e-06, - "recapture": 1.58e-06, - "recounted": 1.58e-06, - "recurrence": 1.58e-06, - "referrals": 1.58e-06, - "refinement": 1.58e-06, - "regis": 1.58e-06, - "relocating": 1.58e-06, - "reparations": 1.58e-06, - "repel": 1.58e-06, - "researches": 1.58e-06, - "resigns": 1.58e-06, - "revamp": 1.58e-06, - "rockwell": 1.58e-06, - "rodent": 1.58e-06, - "rohan": 1.58e-06, - "rudder": 1.58e-06, - "ruiz": 1.58e-06, - "rung": 1.58e-06, - "salah": 1.58e-06, - "satisfies": 1.58e-06, - "scraped": 1.58e-06, - "seaman": 1.58e-06, - "sensibility": 1.58e-06, - "sevilla": 1.58e-06, - "shielded": 1.58e-06, - "showered": 1.58e-06, - "sizing": 1.58e-06, - "skier": 1.58e-06, - "skyscraper": 1.58e-06, - "slabs": 1.58e-06, - "slumber": 1.58e-06, - "slums": 1.58e-06, - "sockets": 1.58e-06, - "spiderman": 1.58e-06, - "sprays": 1.58e-06, - "staunch": 1.58e-06, - "stiffness": 1.58e-06, - "stuttgart": 1.58e-06, - "swayed": 1.58e-06, - "swoop": 1.58e-06, - "synchronized": 1.58e-06, - "tahoe": 1.58e-06, - "tallahassee": 1.58e-06, - "telly": 1.58e-06, - "tentacles": 1.58e-06, - "terence": 1.58e-06, - "therapeutics": 1.58e-06, - "thom": 1.58e-06, - "tia": 1.58e-06, - "topology": 1.58e-06, - "transatlantic": 1.58e-06, - "tunisian": 1.58e-06, - "tutoring": 1.58e-06, - "ugandan": 1.58e-06, - "uncontrolled": 1.58e-06, - "undecided": 1.58e-06, - "unparalleled": 1.58e-06, - "unsolicited": 1.58e-06, - "unveil": 1.58e-06, - "unworthy": 1.58e-06, - "utensils": 1.58e-06, - "vaults": 1.58e-06, - "vids": 1.58e-06, - "vocation": 1.58e-06, - "volts": 1.58e-06, - "waged": 1.58e-06, - "walden": 1.58e-06, - "warmest": 1.58e-06, - "wentworth": 1.58e-06, - "whens": 8.51e-08, - "whoop": 1.58e-06, - "williamsburg": 1.58e-06, - "winslow": 1.58e-06, - "zu": 1.58e-06, - "abbreviated": 1.55e-06, - "admirer": 1.55e-06, - "aerobic": 1.55e-06, - "aerodynamic": 1.55e-06, - "aesthetically": 1.55e-06, - "agitation": 1.55e-06, - "agreeable": 1.55e-06, - "airway": 1.55e-06, - "alessandro": 1.55e-06, - "alfonso": 1.55e-06, - "algebraic": 1.55e-06, - "amaze": 1.55e-06, - "analyzes": 1.55e-06, - "artefacts": 1.55e-06, - "assertive": 1.55e-06, - "assimilation": 1.55e-06, - "augment": 1.55e-06, - "avalon": 1.55e-06, - "backseat": 1.55e-06, - "balkan": 1.55e-06, - "barclay": 1.55e-06, - "baseman": 1.55e-06, - "batted": 1.55e-06, - "beale": 1.55e-06, - "beatty": 1.55e-06, - "bernardino": 1.55e-06, - "bernardo": 1.55e-06, - "bitching": 1.55e-06, - "bosnian": 1.55e-06, - "bragg": 1.55e-06, - "brainer": 1.55e-06, - "breakaway": 1.55e-06, - "breakdowns": 1.55e-06, - "breathless": 1.55e-06, - "briefed": 1.55e-06, - "brownies": 1.55e-06, - "browsers": 8.91e-08, - "brunei": 1.55e-06, - "bst": 1.55e-06, - "cabs": 5.5e-08, - "captions": 1.55e-06, - "carefree": 1.55e-06, - "caricature": 1.55e-06, - "carton": 1.55e-06, - "cayman": 1.55e-06, - "celeste": 1.55e-06, - "cert": 1.55e-06, - "ces": 1.55e-06, - "chandelier": 1.55e-06, - "chandra": 1.55e-06, - "chests": 1.55e-06, - "chute": 1.55e-06, - "cir": 1.55e-06, - "clipping": 1.55e-06, - "clot": 1.55e-06, - "comets": 1.23e-07, - "companionship": 1.55e-06, - "complacent": 1.55e-06, - "complicit": 1.55e-06, - "concentrates": 1.55e-06, - "confer": 1.55e-06, - "contractions": 1.55e-06, - "coolant": 1.55e-06, - "copyrighted": 1.55e-06, - "corbett": 1.55e-06, - "counteract": 1.55e-06, - "courtship": 1.55e-06, - "crammed": 1.55e-06, - "craven": 1.55e-06, - "csr": 1.55e-06, - "cumbria": 1.55e-06, - "cushions": 1.55e-06, - "daley": 1.55e-06, - "debilitating": 1.55e-06, - "deepen": 1.55e-06, - "deepening": 1.55e-06, - "dependencies": 1.55e-06, - "deprive": 1.55e-06, - "derry": 1.55e-06, - "destroyers": 1.55e-06, - "devise": 1.55e-06, - "devotees": 1.55e-06, - "directories": 1.55e-06, - "disclosing": 1.55e-06, - "discrepancies": 1.55e-06, - "disparities": 1.55e-06, - "downturn": 1.55e-06, - "drier": 1.55e-06, - "duane": 1.55e-06, - "dystopian": 1.55e-06, - "efficiencies": 1.55e-06, - "electrically": 1.55e-06, - "elmer": 1.55e-06, - "ely": 1.55e-06, - "embodies": 1.55e-06, - "enclave": 1.55e-06, - "entourage": 1.55e-06, - "epoch": 1.55e-06, - "evo": 1.55e-06, - "exaggerate": 1.55e-06, - "exaggerating": 1.55e-06, - "excelled": 1.55e-06, - "extinguished": 1.55e-06, - "faber": 1.55e-06, - "farts": 1.55e-06, - "fated": 1.55e-06, - "femme": 1.55e-06, - "fibres": 1.55e-06, - "fibrosis": 1.55e-06, - "fielder": 1.55e-06, - "foggy": 1.55e-06, - "forgery": 1.55e-06, - "fremantle": 1.55e-06, - "frequented": 1.55e-06, - "functionally": 1.55e-06, - "furiously": 1.55e-06, - "gaping": 1.55e-06, - "gator": 1.55e-06, - "gentry": 1.55e-06, - "germanic": 1.55e-06, - "gigi": 1.55e-06, - "gimmick": 1.55e-06, - "gladiator": 1.55e-06, - "glendale": 1.55e-06, - "glimpses": 1.55e-06, - "glittering": 1.55e-06, - "glossary": 1.55e-06, - "grandmothers": 9.77e-07, - "gregor": 1.55e-06, - "grinning": 1.55e-06, - "grizzlies": 1.55e-06, - "groundwork": 1.55e-06, - "gymnasium": 1.55e-06, - "hammering": 1.55e-06, - "harrisburg": 1.55e-06, - "hays": 6.61e-08, - "henley": 1.55e-06, - "hounds": 6.61e-08, - "implementations": 1.55e-06, - "imposition": 1.55e-06, - "impromptu": 1.55e-06, - "indulgence": 1.55e-06, - "intersect": 1.55e-06, - "invasions": 1.55e-06, - "iodine": 1.55e-06, - "jameson": 1.55e-06, - "johannes": 1.55e-06, - "johnstone": 1.55e-06, - "jos": 2.95e-07, - "josef": 1.55e-06, - "keel": 1.55e-06, - "kilometer": 1.55e-06, - "kingsley": 1.55e-06, - "kk": 1.55e-06, - "kruger": 1.55e-06, - "labourers": 1.55e-06, - "leland": 1.55e-06, - "lemme": 1.55e-06, - "lettering": 1.55e-06, - "lewd": 1.55e-06, - "lifeboat": 1.55e-06, - "liters": 1.55e-06, - "liturgy": 1.55e-06, - "livin": 1.55e-06, - "llp": 1.55e-06, - "lockhart": 1.55e-06, - "longstanding": 1.55e-06, - "lumps": 1.55e-06, - "madeline": 1.55e-06, - "magma": 1.55e-06, - "mammalian": 1.55e-06, - "marbles": 1.48e-08, - "marcia": 1.55e-06, - "milking": 1.55e-06, - "millennia": 1.55e-06, - "milner": 1.55e-06, - "miraculously": 1.55e-06, - "molding": 1.55e-06, - "mortals": 1.55e-06, - "motorbike": 1.55e-06, - "mustafa": 1.55e-06, - "nodding": 1.55e-06, - "nonexistent": 1.55e-06, - "notoriety": 1.55e-06, - "nuclei": 1.55e-06, - "nutty": 1.55e-06, - "oa": 1.55e-06, - "obedient": 1.55e-06, - "oculus": 1.55e-06, - "ogden": 1.55e-06, - "orgasms": 1.55e-06, - "originates": 1.55e-06, - "ornate": 1.55e-06, - "ousted": 1.55e-06, - "palpable": 1.55e-06, - "paramedic": 1.55e-06, - "patched": 1.55e-06, - "perk": 1.55e-06, - "perpetuate": 1.55e-06, - "perverse": 1.55e-06, - "perverted": 1.55e-06, - "peta": 1.55e-06, - "philharmonic": 1.55e-06, - "photographing": 1.55e-06, - "photons": 1.55e-06, - "playlists": 1.55e-06, - "plume": 1.55e-06, - "plump": 1.55e-06, - "prequel": 1.55e-06, - "prophetic": 1.55e-06, - "provocation": 1.55e-06, - "pumpkins": 1.55e-06, - "purified": 1.55e-06, - "radiology": 1.55e-06, - "raffle": 1.55e-06, - "ragged": 1.55e-06, - "rainbows": 9.77e-08, - "recoil": 1.55e-06, - "recorders": 5.89e-08, - "redo": 1.55e-06, - "rejoin": 1.55e-06, - "relays": 1.55e-06, - "remission": 1.55e-06, - "renounce": 1.55e-06, - "repentance": 1.55e-06, - "resonate": 1.55e-06, - "restitution": 1.55e-06, - "reviving": 1.55e-06, - "rewritten": 1.55e-06, - "riddled": 1.55e-06, - "ridiculed": 1.55e-06, - "romo": 1.55e-06, - "rotations": 1.55e-06, - "rotterdam": 1.55e-06, - "roxy": 1.55e-06, - "rugs": 1.55e-06, - "sacrament": 1.55e-06, - "sauces": 1.55e-06, - "scholastic": 1.55e-06, - "scourge": 1.55e-06, - "seville": 1.55e-06, - "shopper": 1.55e-06, - "shrub": 1.55e-06, - "shu": 1.55e-06, - "signage": 1.55e-06, - "skis": 1.55e-06, - "slag": 1.55e-06, - "sluts": 1.55e-06, - "sneeze": 1.55e-06, - "soaps": 5.89e-08, - "sobriety": 1.55e-06, - "som": 1.55e-06, - "songwriting": 1.55e-06, - "sorely": 1.55e-06, - "sprawling": 1.55e-06, - "sprinter": 1.55e-06, - "sprite": 1.55e-06, - "stagnation": 1.55e-06, - "stead": 1.55e-06, - "stinks": 1.55e-06, - "structurally": 1.55e-06, - "suez": 1.55e-06, - "sulfate": 1.55e-06, - "sumner": 1.55e-06, - "sv": 1.55e-06, - "swag": 1.55e-06, - "sweatshirt": 1.55e-06, - "tangent": 1.55e-06, - "tenn": 1.55e-06, - "tg": 1.55e-06, - "tori": 1.55e-06, - "touted": 1.55e-06, - "tracer": 1.55e-06, - "transporter": 1.55e-06, - "turing": 1.55e-06, - "undergoes": 1.55e-06, - "unearthed": 1.55e-06, - "uniformly": 1.55e-06, - "unqualified": 1.55e-06, - "unquestionably": 1.55e-06, - "unravel": 1.55e-06, - "variously": 1.55e-06, - "vests": 1.55e-06, - "veterinarian": 1.55e-06, - "vidal": 1.55e-06, - "viet": 1.55e-06, - "viz": 1.55e-06, - "warms": 1.55e-06, - "wasteland": 1.55e-06, - "watchdog": 1.55e-06, - "watery": 1.55e-06, - "wavelengths": 1.55e-06, - "weasel": 1.55e-06, - "westfield": 1.55e-06, - "whips": 1.55e-06, - "whyd": 1.55e-06, - "workplaces": 1.55e-06, - "yukon": 1.55e-06, - "zeke": 1.55e-06, - "zest": 1.55e-06, - "zoology": 1.55e-06, - "zulu": 1.55e-06, - "aborted": 1.51e-06, - "absorbs": 1.51e-06, - "abstinence": 1.51e-06, - "academically": 1.51e-06, - "activates": 1.51e-06, - "adjectives": 1.51e-06, - "adm": 1.51e-06, - "adventurer": 1.51e-06, - "adventurers": 6.03e-08, - "aeroplane": 1.51e-06, - "alcoholics": 1.51e-06, - "allege": 1.51e-06, - "alton": 1.51e-06, - "andromeda": 1.51e-06, - "announcers": 5.62e-08, - "arduous": 1.51e-06, - "asher": 1.51e-06, - "attaining": 1.51e-06, - "avi": 1.51e-06, - "bachelorette": 1.51e-06, - "bagel": 1.51e-06, - "bagged": 1.51e-06, - "bai": 1.51e-06, - "bangor": 1.51e-06, - "barometer": 1.51e-06, - "basque": 1.51e-06, - "bavaria": 1.51e-06, - "bbw": 1.51e-06, - "biggie": 1.51e-06, - "bigot": 1.51e-06, - "boa": 1.51e-06, - "branched": 1.51e-06, - "brazils": 5.01e-08, - "britannia": 1.51e-06, - "britt": 1.51e-06, - "bruise": 1.51e-06, - "bruising": 1.51e-06, - "bucharest": 1.51e-06, - "buffett": 1.51e-06, - "bullion": 1.51e-06, - "bumpy": 1.51e-06, - "bums": 1.51e-06, - "bureaucrats": 1.51e-06, - "burnham": 1.51e-06, - "byu": 1.51e-06, - "cahill": 1.51e-06, - "carp": 1.51e-06, - "castor": 1.51e-06, - "challengers": 5.37e-08, - "charting": 1.51e-06, - "cicero": 1.51e-06, - "circumference": 1.51e-06, - "classifications": 1.51e-06, - "cleopatra": 1.51e-06, - "cleverly": 1.51e-06, - "clocked": 1.51e-06, - "coasters": 1.51e-06, - "codex": 1.51e-06, - "collars": 1.51e-06, - "composure": 1.51e-06, - "computerized": 1.51e-06, - "concur": 1.51e-06, - "conte": 1.51e-06, - "conveying": 1.51e-06, - "cornered": 1.51e-06, - "cowan": 1.51e-06, - "craziest": 1.51e-06, - "crowe": 1.51e-06, - "davy": 1.51e-06, - "defying": 1.51e-06, - "delicacy": 1.51e-06, - "demolish": 1.51e-06, - "dempsey": 1.51e-06, - "deport": 1.51e-06, - "dictators": 1.15e-07, - "dictionaries": 1.51e-06, - "dilute": 1.51e-06, - "disabling": 1.51e-06, - "disillusioned": 1.51e-06, - "dispersion": 1.51e-06, - "doha": 1.51e-06, - "doomsday": 1.51e-06, - "draped": 1.51e-06, - "drinker": 1.51e-06, - "eels": 1.51e-06, - "emil": 1.51e-06, - "emphasised": 1.51e-06, - "entangled": 1.51e-06, - "enzo": 1.51e-06, - "exploratory": 1.51e-06, - "facet": 1.51e-06, - "fates": 9.12e-08, - "fei": 1.51e-06, - "fermented": 1.51e-06, - "ferries": 1.51e-06, - "finesse": 1.51e-06, - "fireball": 1.51e-06, - "firth": 1.51e-06, - "flannel": 1.51e-06, - "floss": 1.51e-06, - "foresee": 1.51e-06, - "frantically": 1.51e-06, - "frees": 5.13e-08, - "fringes": 1.51e-06, - "gaston": 1.51e-06, - "genoa": 1.51e-06, - "geothermal": 1.51e-06, - "gh": 1.51e-06, - "gist": 1.51e-06, - "github": 1.51e-06, - "grievous": 1.51e-06, - "gustav": 1.51e-06, - "handbags": 1.51e-06, - "handkerchief": 1.51e-06, - "hari": 1.51e-06, - "heaters": 1.51e-06, - "hebrews": 1.51e-06, - "hepburn": 1.51e-06, - "hogwarts": 1.51e-06, - "hookup": 1.51e-06, - "hopelessly": 1.51e-06, - "horticulture": 1.51e-06, - "howl": 1.51e-06, - "huddersfield": 1.51e-06, - "hydration": 1.51e-06, - "ibiza": 1.51e-06, - "improv": 1.51e-06, - "impunity": 1.51e-06, - "indexing": 1.51e-06, - "infertility": 1.51e-06, - "informational": 1.51e-06, - "inline": 1.51e-06, - "insolvency": 1.51e-06, - "intermediary": 1.51e-06, - "interrogated": 1.51e-06, - "ives": 1.51e-06, - "jody": 1.51e-06, - "jokingly": 1.51e-06, - "josie": 1.51e-06, - "juveniles": 1.51e-06, - "karim": 1.51e-06, - "kimi": 1.51e-06, - "kinks": 1.51e-06, - "klan": 1.51e-06, - "kristina": 1.51e-06, - "laughable": 1.51e-06, - "lennox": 1.51e-06, - "lng": 1.51e-06, - "locus": 1.51e-06, - "lucius": 1.51e-06, - "lund": 1.51e-06, - "lvl": 1.51e-06, - "makeshift": 1.51e-06, - "marquee": 1.51e-06, - "massey": 1.51e-06, - "masturbate": 1.51e-06, - "mathematically": 1.51e-06, - "matrices": 1.51e-06, - "mckinley": 1.51e-06, - "meade": 1.51e-06, - "melanoma": 1.51e-06, - "menacing": 1.51e-06, - "microbes": 1.51e-06, - "midterms": 1.51e-06, - "mobilize": 1.51e-06, - "monsanto": 1.51e-06, - "moors": 2.69e-08, - "morley": 1.51e-06, - "msu": 1.51e-06, - "nag": 1.51e-06, - "nativity": 1.51e-06, - "neglecting": 1.51e-06, - "nook": 1.51e-06, - "novo": 1.51e-06, - "nutritious": 1.51e-06, - "overdrive": 1.51e-06, - "padding": 1.51e-06, - "panasonic": 1.51e-06, - "pant": 1.51e-06, - "passover": 1.51e-06, - "peking": 1.51e-06, - "penitentiary": 1.51e-06, - "perilous": 1.51e-06, - "periodicals": 1.51e-06, - "pharmacies": 1.51e-06, - "picard": 1.51e-06, - "pikachu": 1.51e-06, - "plaques": 1.51e-06, - "plastered": 1.51e-06, - "playa": 1.51e-06, - "plucked": 1.51e-06, - "polytechnic": 1.51e-06, - "popularly": 1.51e-06, - "pornographic": 1.51e-06, - "posse": 1.51e-06, - "prepping": 1.51e-06, - "rankin": 1.51e-06, - "rebates": 1.51e-06, - "recognises": 1.51e-06, - "recognising": 1.51e-06, - "reconciled": 1.51e-06, - "refrigeration": 1.51e-06, - "refunded": 1.51e-06, - "rename": 1.51e-06, - "repulsive": 1.51e-06, - "respite": 1.51e-06, - "ret": 1.51e-06, - "revamped": 1.51e-06, - "revising": 1.51e-06, - "rhinos": 9.12e-08, - "rockin": 1.51e-06, - "rts": 1.62e-07, - "saber": 1.51e-06, - "sadistic": 1.51e-06, - "samba": 1.51e-06, - "scorers": 1.51e-06, - "sewn": 1.51e-06, - "shaggy": 1.51e-06, - "shelling": 1.51e-06, - "shrunk": 1.51e-06, - "sitter": 1.51e-06, - "sixers": 1.51e-06, - "slant": 1.51e-06, - "slashed": 1.51e-06, - "sleepless": 1.51e-06, - "slur": 1.51e-06, - "snowball": 1.51e-06, - "sobs": 1.51e-06, - "soles": 1.32e-08, - "soothe": 1.51e-06, - "souvenirs": 1.51e-06, - "spelt": 1.51e-06, - "stalling": 1.51e-06, - "stamping": 1.51e-06, - "steiner": 1.51e-06, - "strasbourg": 1.51e-06, - "streamline": 1.51e-06, - "suckers": 1.51e-06, - "sulphur": 1.51e-06, - "swears": 1.51e-06, - "tablespoons": 1.51e-06, - "tacky": 1.51e-06, - "tamara": 1.51e-06, - "tampering": 1.51e-06, - "tankers": 1.51e-06, - "telephones": 1.51e-06, - "terminus": 1.51e-06, - "tessa": 1.51e-06, - "testicles": 1.51e-06, - "texan": 1.51e-06, - "thaw": 1.51e-06, - "throughput": 1.51e-06, - "timelines": 1.51e-06, - "tolkien": 1.51e-06, - "tout": 1.51e-06, - "transnational": 1.51e-06, - "tripod": 1.51e-06, - "tulip": 1.51e-06, - "turnpike": 1.51e-06, - "ud": 2.14e-08, - "ulysses": 1.51e-06, - "unattended": 1.51e-06, - "unbeatable": 1.51e-06, - "undertaker": 1.51e-06, - "uniformed": 1.51e-06, - "unionists": 1.51e-06, - "uniteds": 1.51e-06, - "unloaded": 1.51e-06, - "ursula": 1.51e-06, - "usps": 1.51e-06, - "uttered": 1.51e-06, - "vulture": 1.51e-06, - "wares": 7.24e-08, - "waterway": 1.51e-06, - "whistleblower": 1.51e-06, - "wv": 1.51e-06, - "xanax": 1.51e-06, - "xs": 9.12e-07, - "yves": 1.51e-06, - "absentee": 1.48e-06, - "accolades": 1.48e-06, - "admirers": 1.48e-06, - "alden": 1.48e-06, - "aldo": 1.48e-06, - "alyssa": 1.48e-06, - "amin": 1.48e-06, - "anarchists": 1.48e-06, - "anecdotal": 1.48e-06, - "anemia": 1.48e-06, - "animosity": 1.48e-06, - "appoints": 1.48e-06, - "autoimmune": 1.48e-06, - "aws": 1.48e-06, - "bakers": 1.07e-06, - "bama": 1.48e-06, - "barons": 2.57e-07, - "battalions": 1.02e-07, - "beggar": 1.48e-06, - "bertrand": 1.48e-06, - "bismarck": 1.48e-06, - "bombarded": 1.48e-06, - "boulders": 5.62e-08, - "bounces": 1.48e-06, - "bouncy": 1.48e-06, - "buick": 1.48e-06, - "burbank": 1.48e-06, - "busts": 1.48e-06, - "calibrated": 1.48e-06, - "callahan": 1.48e-06, - "canteen": 1.48e-06, - "capacitor": 1.48e-06, - "captivating": 1.48e-06, - "carbohydrate": 1.48e-06, - "cartels": 1.15e-07, - "cavalier": 1.48e-06, - "centrist": 1.48e-06, - "cfa": 1.48e-06, - "chakra": 1.48e-06, - "chatted": 1.48e-06, - "chauffeur": 1.48e-06, - "circled": 1.48e-06, - "circulate": 1.48e-06, - "clergyman": 1.48e-06, - "climber": 1.48e-06, - "clinched": 1.48e-06, - "clutching": 1.48e-06, - "coliseum": 1.48e-06, - "combs": 1.48e-06, - "commandment": 1.48e-06, - "complimented": 1.48e-06, - "conceivable": 1.48e-06, - "concordia": 1.48e-06, - "condone": 1.48e-06, - "congested": 1.48e-06, - "connectors": 1.48e-06, - "conner": 1.48e-06, - "consecrated": 1.48e-06, - "contaminants": 1.48e-06, - "contiguous": 1.48e-06, - "conveys": 1.48e-06, - "cosmo": 1.48e-06, - "councilman": 1.48e-06, - "cranberry": 1.48e-06, - "criticizes": 1.48e-06, - "croft": 1.48e-06, - "custard": 1.48e-06, - "darby": 1.48e-06, - "deceiving": 1.48e-06, - "defaults": 1.48e-06, - "definitively": 1.48e-06, - "deflect": 1.48e-06, - "deliberations": 1.48e-06, - "denoted": 1.48e-06, - "departs": 1.48e-06, - "deregulation": 1.48e-06, - "desolate": 1.48e-06, - "devour": 1.48e-06, - "digger": 1.48e-06, - "disarmament": 1.48e-06, - "disgraced": 1.48e-06, - "dishonesty": 1.48e-06, - "divergence": 1.48e-06, - "dmitry": 1.48e-06, - "domesticated": 1.48e-06, - "dorian": 1.48e-06, - "doubly": 1.48e-06, - "doughnut": 1.48e-06, - "douglass": 1.12e-07, - "dubois": 1.48e-06, - "duluth": 1.48e-06, - "dwarfs": 1.48e-06, - "eastenders": 1.48e-06, - "ek": 1.48e-06, - "elgin": 1.48e-06, - "embody": 1.48e-06, - "enrolling": 1.48e-06, - "envision": 1.48e-06, - "equivalence": 1.48e-06, - "erika": 1.48e-06, - "ers": 7.24e-08, - "eruptions": 1.48e-06, - "esoteric": 1.48e-06, - "eurozone": 1.48e-06, - "euthanasia": 1.48e-06, - "fabian": 1.48e-06, - "faye": 1.48e-06, - "fd": 1.29e-07, - "felon": 1.48e-06, - "flammable": 1.48e-06, - "flanagan": 1.48e-06, - "footnote": 1.48e-06, - "fostered": 1.48e-06, - "fp": 1.48e-06, - "friggin": 1.48e-06, - "frontman": 1.48e-06, - "furthest": 1.48e-06, - "garnet": 1.48e-06, - "glanced": 1.48e-06, - "goku": 1.48e-06, - "gorman": 1.48e-06, - "grapefruit": 1.48e-06, - "grate": 1.48e-06, - "greyhound": 1.48e-06, - "grossed": 1.48e-06, - "guerrero": 1.48e-06, - "guido": 1.48e-06, - "gyms": 1.1e-07, - "hahn": 1.48e-06, - "hairdresser": 1.48e-06, - "hardness": 1.48e-06, - "harpers": 3.98e-07, - "haryana": 1.48e-06, - "helpers": 1.48e-06, - "hendricks": 1.48e-06, - "heros": 6.76e-07, - "hess": 1.48e-06, - "hh": 1.48e-06, - "hilly": 1.48e-06, - "hogs": 7.94e-08, - "hone": 1.48e-06, - "horne": 1.48e-06, - "hotspot": 1.48e-06, - "howie": 1.48e-06, - "humbly": 1.48e-06, - "huron": 1.48e-06, - "hw": 1.48e-06, - "hyatt": 1.48e-06, - "inciting": 1.48e-06, - "incomprehensible": 1.48e-06, - "incumbents": 1.48e-06, - "inertia": 1.48e-06, - "infestation": 1.48e-06, - "insurrection": 1.48e-06, - "intolerable": 1.48e-06, - "ironman": 1.48e-06, - "isla": 1.48e-06, - "jordanian": 1.48e-06, - "juno": 1.48e-06, - "kershaw": 1.48e-06, - "koh": 1.48e-06, - "lamont": 1.48e-06, - "larkin": 1.48e-06, - "lauded": 1.48e-06, - "laziness": 1.48e-06, - "leech": 1.48e-06, - "lei": 1.48e-06, - "libs": 1.48e-06, - "macquarie": 1.48e-06, - "madly": 1.48e-06, - "meetup": 1.48e-06, - "milano": 1.48e-06, - "minimise": 1.48e-06, - "miserably": 1.48e-06, - "moldova": 1.48e-06, - "mor": 1.48e-06, - "motivates": 1.48e-06, - "motorsport": 1.48e-06, - "mustered": 1.48e-06, - "mutilation": 1.48e-06, - "nemo": 1.48e-06, - "nerdy": 1.48e-06, - "nifty": 1.48e-06, - "nikita": 1.48e-06, - "orphaned": 1.48e-06, - "ova": 1.48e-06, - "paces": 5.01e-08, - "paine": 1.48e-06, - "palladium": 1.48e-06, - "parmesan": 1.48e-06, - "particulars": 1.48e-06, - "passer": 1.48e-06, - "pathogen": 1.48e-06, - "pci": 1.48e-06, - "pebbles": 1.48e-06, - "pelicans": 1.48e-06, - "pensioners": 1.48e-06, - "personalised": 1.48e-06, - "piazza": 1.48e-06, - "pickled": 1.48e-06, - "policymakers": 1.48e-06, - "pom": 1.48e-06, - "possessive": 1.48e-06, - "pranks": 1.48e-06, - "prefecture": 1.48e-06, - "pretentious": 1.48e-06, - "pritchard": 1.48e-06, - "promenade": 1.48e-06, - "pronoun": 1.48e-06, - "proximal": 1.48e-06, - "rapport": 1.48e-06, - "rapture": 1.48e-06, - "ration": 1.48e-06, - "ravaged": 1.48e-06, - "reconnect": 1.48e-06, - "rectify": 1.48e-06, - "reginald": 1.48e-06, - "rivalries": 1.48e-06, - "rudimentary": 1.48e-06, - "sabres": 1.48e-06, - "salle": 1.48e-06, - "sayings": 1.48e-06, - "scariest": 1.48e-06, - "schumer": 1.48e-06, - "screenwriter": 1.48e-06, - "seconded": 1.48e-06, - "seduced": 1.48e-06, - "seine": 1.48e-06, - "selector": 1.48e-06, - "shawl": 1.48e-06, - "shenzhen": 1.48e-06, - "shilling": 1.48e-06, - "shroud": 1.48e-06, - "shutters": 1.48e-06, - "sj": 1.48e-06, - "skim": 1.48e-06, - "slaps": 1.48e-06, - "slovak": 1.48e-06, - "sn": 1.48e-06, - "solicitation": 1.48e-06, - "sooooo": 1.48e-06, - "specifying": 1.48e-06, - "starboard": 1.48e-06, - "stardust": 1.48e-06, - "stereotypical": 1.48e-06, - "stewards": 6.03e-08, - "stupidest": 1.48e-06, - "superseded": 1.48e-06, - "surpassing": 1.48e-06, - "swirling": 1.48e-06, - "sy": 1.48e-06, - "tarzan": 1.48e-06, - "teas": 1.05e-07, - "telugu": 1.48e-06, - "timbers": 1.48e-06, - "tormented": 1.48e-06, - "traumatized": 1.48e-06, - "twinkle": 1.48e-06, - "tyne": 1.48e-06, - "uncharted": 1.48e-06, - "unforeseen": 1.48e-06, - "unsigned": 1.48e-06, - "unspoken": 1.48e-06, - "upholding": 1.48e-06, - "ux": 1.48e-06, - "valet": 1.48e-06, - "vehemently": 1.48e-06, - "vendetta": 1.48e-06, - "voss": 1.48e-06, - "weakly": 1.48e-06, - "wests": 5.13e-07, - "westchester": 1.48e-06, - "wiener": 1.48e-06, - "wildcard": 1.48e-06, - "wildfires": 1.48e-06, - "yorkers": 1e-07, - "abcs": 3.16e-07, - "accommodated": 1.45e-06, - "affordability": 1.45e-06, - "agatha": 1.45e-06, - "aladdin": 1.45e-06, - "alderman": 1.45e-06, - "alienation": 1.45e-06, - "altitudes": 1.45e-06, - "amor": 1.45e-06, - "amplify": 1.45e-06, - "anorexia": 1.45e-06, - "anothers": 7.08e-08, - "anthropologist": 1.45e-06, - "antidepressants": 1.45e-06, - "apologizes": 1.45e-06, - "astronomer": 1.45e-06, - "atl": 1.45e-06, - "attested": 1.45e-06, - "attrition": 1.45e-06, - "aud": 1.45e-06, - "aunty": 1.45e-06, - "autopilot": 1.45e-06, - "baggy": 1.45e-06, - "bailout": 1.45e-06, - "balfour": 1.45e-06, - "ballads": 1.45e-06, - "ballast": 1.45e-06, - "berman": 1.45e-06, - "bigfoot": 1.45e-06, - "biotech": 1.45e-06, - "blackjack": 1.45e-06, - "bloodstream": 1.45e-06, - "bluegrass": 1.45e-06, - "bordered": 1.45e-06, - "bottling": 1.45e-06, - "brasil": 1.45e-06, - "brigham": 1.45e-06, - "budgetary": 1.45e-06, - "bustling": 1.45e-06, - "camo": 1.45e-06, - "capitalized": 1.45e-06, - "carers": 1.45e-06, - "carte": 1.45e-06, - "cavendish": 1.45e-06, - "celine": 1.45e-06, - "cheerleading": 1.45e-06, - "chipping": 1.45e-06, - "cliche": 1.45e-06, - "clutches": 1.45e-06, - "cockroach": 1.45e-06, - "collaborator": 1.45e-06, - "colton": 1.45e-06, - "composites": 1.45e-06, - "consolidating": 1.45e-06, - "contends": 1.45e-06, - "contradicts": 1.45e-06, - "cortez": 1.45e-06, - "cpc": 1.45e-06, - "crossfit": 1.45e-06, - "cumbersome": 1.45e-06, - "curt": 1.45e-06, - "cyclic": 1.45e-06, - "cyclical": 1.45e-06, - "dade": 1.45e-06, - "deducted": 1.45e-06, - "deformation": 1.45e-06, - "descends": 1.45e-06, - "devotional": 1.45e-06, - "dicaprio": 1.45e-06, - "distinguishes": 1.45e-06, - "diversify": 1.45e-06, - "downloadable": 1.45e-06, - "dum": 1.45e-06, - "duplication": 1.45e-06, - "dynamo": 1.45e-06, - "eastman": 1.45e-06, - "ei": 1.45e-06, - "elixir": 1.45e-06, - "embarking": 1.45e-06, - "emile": 1.45e-06, - "emmett": 1.45e-06, - "endgame": 1.45e-06, - "enemys": 1.45e-06, - "enhancements": 1.45e-06, - "epiphany": 1.45e-06, - "escobar": 1.45e-06, - "evolves": 1.45e-06, - "eyeing": 1.45e-06, - "eyelids": 1.45e-06, - "eyeliner": 1.45e-06, - "fable": 1.45e-06, - "farah": 1.45e-06, - "fatality": 1.45e-06, - "favoring": 1.45e-06, - "fenced": 1.45e-06, - "ffa": 1.45e-06, - "firewood": 1.45e-06, - "foothills": 1.45e-06, - "foresight": 1.45e-06, - "forsaken": 1.45e-06, - "forsyth": 1.45e-06, - "fundamentalist": 1.45e-06, - "fw": 1.45e-06, - "gabby": 1.45e-06, - "gaddafi": 1.45e-06, - "gayle": 1.45e-06, - "geniuses": 1.45e-06, - "ghostbusters": 1.45e-06, - "greenfield": 1.45e-06, - "greensboro": 1.45e-06, - "groomed": 1.45e-06, - "hackney": 1.45e-06, - "hamstring": 1.45e-06, - "heidelberg": 1.45e-06, - "hl": 1.45e-06, - "hordes": 1.45e-06, - "horseshoe": 1.45e-06, - "ico": 1.45e-06, - "imran": 1.45e-06, - "incision": 1.45e-06, - "indistinguishable": 1.45e-06, - "infer": 1.45e-06, - "inpatient": 1.45e-06, - "inspecting": 1.45e-06, - "intensify": 1.45e-06, - "invitational": 1.45e-06, - "ithaca": 1.45e-06, - "ito": 1.45e-06, - "jarrett": 1.45e-06, - "jiang": 1.45e-06, - "kano": 1.45e-06, - "kennel": 1.45e-06, - "kern": 1.45e-06, - "khans": 3.98e-07, - "khmer": 1.45e-06, - "kl": 1.45e-06, - "knitted": 1.45e-06, - "lager": 1.45e-06, - "laird": 1.45e-06, - "letterman": 1.45e-06, - "lighted": 1.45e-06, - "loathing": 1.45e-06, - "lorde": 1.45e-06, - "loyalists": 1.45e-06, - "mahmoud": 1.45e-06, - "manhood": 1.45e-06, - "martyrdom": 1.45e-06, - "mcdermott": 1.45e-06, - "mcmillan": 1.45e-06, - "menopause": 1.45e-06, - "meryl": 1.45e-06, - "michelangelo": 1.45e-06, - "misconceptions": 1.45e-06, - "mobs": 1.12e-07, - "mol": 1.45e-06, - "mortem": 1.45e-06, - "motherboard": 1.45e-06, - "moyes": 1.45e-06, - "msg": 1.45e-06, - "mussolini": 1.45e-06, - "mutilated": 1.45e-06, - "napkin": 1.45e-06, - "navys": 1.45e-06, - "nelly": 1.45e-06, - "neuron": 1.45e-06, - "nev": 1.45e-06, - "niall": 1.45e-06, - "nigerians": 1.45e-06, - "nuances": 1.45e-06, - "nugget": 1.45e-06, - "ono": 1.45e-06, - "opus": 1.45e-06, - "orchards": 1.45e-06, - "otc": 1.45e-06, - "outlaws": 1.45e-06, - "ovaries": 1.45e-06, - "overtly": 1.45e-06, - "painless": 1.45e-06, - "paxton": 1.45e-06, - "pears": 1.45e-06, - "perpetually": 1.45e-06, - "pharmacists": 5.25e-08, - "photoshopped": 1.45e-06, - "pitted": 1.45e-06, - "pixar": 1.45e-06, - "pleads": 1.45e-06, - "poisons": 1.45e-06, - "politico": 1.45e-06, - "prenatal": 1.45e-06, - "probabilities": 1.45e-06, - "probate": 1.45e-06, - "procure": 1.45e-06, - "propel": 1.45e-06, - "propensity": 1.45e-06, - "pryor": 1.45e-06, - "punjabi": 1.45e-06, - "purchasers": 1.45e-06, - "pvt": 1.45e-06, - "qld": 1.45e-06, - "rattled": 1.45e-06, - "rbs": 8.71e-08, - "realises": 1.45e-06, - "receptions": 1.45e-06, - "remodeling": 1.45e-06, - "renters": 1.02e-07, - "resorting": 1.45e-06, - "retreats": 1.45e-06, - "rg": 1.45e-06, - "ringo": 1.45e-06, - "roadmap": 1.45e-06, - "roberta": 1.45e-06, - "rockford": 1.45e-06, - "rosary": 1.45e-06, - "rundown": 1.45e-06, - "ruptured": 1.45e-06, - "ruse": 1.45e-06, - "salvatore": 1.45e-06, - "sampson": 1.45e-06, - "sar": 1.45e-06, - "saudis": 1.23e-07, - "seniority": 1.45e-06, - "severance": 1.45e-06, - "sheath": 1.45e-06, - "shillings": 1.45e-06, - "shortcuts": 1.45e-06, - "shorthand": 1.45e-06, - "shortlisted": 1.45e-06, - "shreds": 1.45e-06, - "shrines": 5.25e-08, - "singularity": 1.45e-06, - "snowman": 1.45e-06, - "socialize": 1.45e-06, - "soundcloud": 1.45e-06, - "spains": 1.45e-06, - "sparta": 1.45e-06, - "spinoff": 1.45e-06, - "sportsman": 1.45e-06, - "springsteen": 1.45e-06, - "squarely": 1.45e-06, - "stalks": 1.45e-06, - "stepmother": 1.45e-06, - "storming": 1.45e-06, - "strippers": 1.45e-06, - "strut": 1.45e-06, - "succumbed": 1.45e-06, - "swagger": 1.45e-06, - "swirl": 1.45e-06, - "telecommunication": 1.45e-06, - "temptations": 1.45e-06, - "theorist": 1.45e-06, - "theta": 1.45e-06, - "thi": 1.45e-06, - "thong": 1.45e-06, - "thrills": 1.45e-06, - "thumping": 1.45e-06, - "timeframe": 1.45e-06, - "tk": 1.45e-06, - "tod": 1.45e-06, - "tot": 3.89e-08, - "transcribed": 1.45e-06, - "tropics": 1.45e-06, - "tsar": 1.45e-06, - "tycoon": 1.45e-06, - "unconditionally": 1.45e-06, - "uncontrollable": 1.45e-06, - "undeniably": 1.45e-06, - "unfolded": 1.45e-06, - "unorthodox": 1.45e-06, - "uproar": 1.45e-06, - "vertigo": 1.45e-06, - "vigilance": 1.45e-06, - "viscount": 1.45e-06, - "walkway": 1.45e-06, - "wd": 1.45e-06, - "westerners": 1.45e-06, - "whistler": 1.45e-06, - "windmill": 1.45e-06, - "workflow": 1.45e-06, - "worthington": 1.45e-06, - "wrapper": 1.45e-06, - "ymca": 1.45e-06, - "yogi": 1.45e-06, - "youtuber": 1.45e-06, - "zee": 1.45e-06, - "zoned": 1.45e-06, - "abba": 1.41e-06, - "abuja": 1.41e-06, - "acetate": 1.41e-06, - "affirming": 1.41e-06, - "airstrikes": 1.41e-06, - "aisles": 1.41e-06, - "allure": 1.41e-06, - "amps": 5.62e-08, - "anthrax": 1.41e-06, - "antisemitism": 1.41e-06, - "anwar": 1.41e-06, - "apprentices": 1.41e-06, - "aqueous": 1.41e-06, - "ariana": 1.41e-06, - "attainment": 1.41e-06, - "auctioneer": 1.41e-06, - "authorship": 1.41e-06, - "awoke": 1.41e-06, - "axial": 1.41e-06, - "barnard": 1.41e-06, - "barron": 1.41e-06, - "battleship": 1.41e-06, - "bayonet": 1.41e-06, - "bertha": 1.41e-06, - "bette": 1.41e-06, - "blanchard": 1.41e-06, - "bombshell": 1.41e-06, - "bowing": 1.41e-06, - "brewed": 1.41e-06, - "bridgewater": 1.41e-06, - "britons": 1.41e-06, - "burkina": 1.41e-06, - "burnout": 1.41e-06, - "buttocks": 1.41e-06, - "buyout": 1.41e-06, - "byte": 1.41e-06, - "cancerous": 1.41e-06, - "carat": 1.41e-06, - "carcinoma": 1.41e-06, - "carrick": 1.41e-06, - "caveat": 1.41e-06, - "caviar": 1.41e-06, - "ccc": 1.41e-06, - "chairperson": 1.41e-06, - "chong": 1.41e-06, - "chore": 1.41e-06, - "cid": 1.41e-06, - "circumvent": 1.41e-06, - "clique": 1.41e-06, - "coe": 1.41e-06, - "coles": 8.32e-07, - "conserved": 1.41e-06, - "contemplation": 1.41e-06, - "contrived": 1.41e-06, - "corolla": 1.41e-06, - "corrugated": 1.41e-06, - "coz": 1.41e-06, - "cranky": 1.41e-06, - "crept": 1.41e-06, - "crunching": 1.41e-06, - "crushes": 1.41e-06, - "csa": 1.41e-06, - "cults": 9.12e-08, - "curvy": 1.41e-06, - "deluded": 1.41e-06, - "deployments": 1.41e-06, - "depp": 1.41e-06, - "deteriorate": 1.41e-06, - "dior": 1.41e-06, - "disbanded": 1.41e-06, - "discredited": 1.41e-06, - "disorderly": 1.41e-06, - "distraught": 1.41e-06, - "distributes": 1.41e-06, - "dogg": 1.41e-06, - "dons": 5.13e-07, - "doughnuts": 1.41e-06, - "drizzle": 1.41e-06, - "eau": 1.41e-06, - "edging": 1.41e-06, - "elaborated": 1.41e-06, - "embankment": 1.41e-06, - "embassies": 1.41e-06, - "emergent": 1.41e-06, - "emilia": 1.41e-06, - "emilio": 1.41e-06, - "enchanting": 1.41e-06, - "entertainers": 1.41e-06, - "entice": 1.41e-06, - "esq": 1.41e-06, - "eun": 1.41e-06, - "exalted": 1.41e-06, - "exchequer": 1.41e-06, - "facebooks": 8.51e-08, - "fenton": 1.41e-06, - "filly": 1.41e-06, - "flanks": 1.41e-06, - "footy": 1.41e-06, - "formality": 1.41e-06, - "fortitude": 1.41e-06, - "fouls": 1.41e-06, - "fueling": 1.41e-06, - "gambler": 1.41e-06, - "gcse": 1.41e-06, - "gent": 1.41e-06, - "gents": 1.41e-06, - "geopolitical": 1.41e-06, - "glitches": 1.41e-06, - "goethe": 1.41e-06, - "goliath": 1.41e-06, - "governs": 1.41e-06, - "grandfathers": 6.61e-07, - "grievance": 1.41e-06, - "grunt": 1.41e-06, - "gsm": 1.41e-06, - "gusts": 1.41e-06, - "hailing": 1.41e-06, - "haines": 1.41e-06, - "halal": 1.41e-06, - "harmonious": 1.41e-06, - "hashtags": 1.41e-06, - "hast": 1.41e-06, - "hester": 1.41e-06, - "hijab": 1.41e-06, - "hitherto": 1.41e-06, - "hogg": 1.41e-06, - "hornet": 1.41e-06, - "humboldt": 1.41e-06, - "hyperbolic": 1.41e-06, - "impeached": 1.41e-06, - "impedance": 1.41e-06, - "incline": 1.41e-06, - "incubation": 1.41e-06, - "insignia": 1.41e-06, - "installments": 1.41e-06, - "intercontinental": 1.41e-06, - "interplay": 1.41e-06, - "interpol": 1.41e-06, - "isotope": 1.41e-06, - "israelites": 1.41e-06, - "jehovah": 1.41e-06, - "jigsaw": 1.41e-06, - "juniper": 1.41e-06, - "jus": 1.41e-06, - "keaton": 1.41e-06, - "kessler": 1.41e-06, - "kindred": 1.41e-06, - "labelling": 1.41e-06, - "lander": 1.41e-06, - "lapd": 1.41e-06, - "larsen": 1.41e-06, - "layouts": 1.41e-06, - "lev": 1.41e-06, - "lilies": 1.41e-06, - "lollipop": 1.41e-06, - "lon": 1.41e-06, - "machete": 1.41e-06, - "mallory": 1.41e-06, - "marshes": 1.41e-06, - "marshmallow": 1.41e-06, - "masse": 1.41e-06, - "matteo": 1.41e-06, - "mcleod": 1.41e-06, - "merchandising": 1.41e-06, - "microphones": 1.41e-06, - "mika": 1.41e-06, - "mink": 1.41e-06, - "mischievous": 1.41e-06, - "misunderstand": 1.41e-06, - "mobilized": 1.41e-06, - "molested": 1.41e-06, - "monies": 1.41e-06, - "monograph": 1.41e-06, - "montenegro": 1.41e-06, - "moo": 1.41e-06, - "morphological": 1.41e-06, - "movable": 1.41e-06, - "mucus": 1.41e-06, - "mulberry": 1.41e-06, - "munro": 1.41e-06, - "nameless": 1.41e-06, - "natalia": 1.41e-06, - "naturalist": 1.41e-06, - "necklaces": 1.41e-06, - "newsroom": 1.41e-06, - "nightlife": 1.41e-06, - "nyu": 1.41e-06, - "officiating": 1.41e-06, - "omnibus": 1.41e-06, - "oof": 1.41e-06, - "opec": 1.41e-06, - "opposites": 1.41e-06, - "orwell": 1.41e-06, - "outburst": 1.41e-06, - "overarching": 1.41e-06, - "overseen": 1.41e-06, - "overwhelm": 1.41e-06, - "pathologist": 1.41e-06, - "pcb": 1.41e-06, - "pcr": 1.41e-06, - "pct": 1.41e-06, - "peacekeeping": 1.41e-06, - "pegasus": 1.41e-06, - "peptides": 1.41e-06, - "petersen": 1.41e-06, - "pharmacology": 1.41e-06, - "pitfalls": 1.41e-06, - "pixie": 1.41e-06, - "ply": 1.41e-06, - "poaching": 1.41e-06, - "powders": 1.41e-06, - "ppm": 1.41e-06, - "preventable": 1.41e-06, - "primed": 1.41e-06, - "prog": 1.41e-06, - "proponent": 1.41e-06, - "protectors": 1.41e-06, - "provenance": 1.41e-06, - "provost": 1.41e-06, - "putt": 1.41e-06, - "quadruple": 1.41e-06, - "quaker": 1.41e-06, - "rachael": 1.41e-06, - "racking": 1.41e-06, - "rana": 1.41e-06, - "raptor": 1.41e-06, - "ratchet": 1.41e-06, - "ravine": 1.41e-06, - "raving": 1.41e-06, - "recreated": 1.41e-06, - "redress": 1.41e-06, - "regenerate": 1.41e-06, - "reigned": 1.41e-06, - "reincarnation": 1.41e-06, - "renewables": 1.41e-06, - "replays": 1.41e-06, - "retirees": 1.41e-06, - "rife": 1.41e-06, - "rollercoaster": 1.41e-06, - "romances": 1.41e-06, - "rotherham": 1.41e-06, - "ruben": 1.41e-06, - "runnin": 1.41e-06, - "samaritan": 1.41e-06, - "sax": 1.41e-06, - "saxophone": 1.41e-06, - "scarves": 1.41e-06, - "schuster": 1.41e-06, - "scorpio": 1.41e-06, - "selma": 1.41e-06, - "settler": 1.41e-06, - "sever": 1.41e-06, - "sharpen": 1.41e-06, - "shellfish": 1.41e-06, - "shortening": 1.41e-06, - "showering": 1.41e-06, - "shrapnel": 1.41e-06, - "shutout": 1.41e-06, - "sickle": 1.41e-06, - "singleton": 1.41e-06, - "skateboarding": 1.41e-06, - "skips": 1.41e-06, - "skit": 1.41e-06, - "slavic": 1.41e-06, - "snowboarding": 1.41e-06, - "snuff": 1.41e-06, - "solidly": 1.41e-06, - "sonoma": 1.41e-06, - "stairway": 1.41e-06, - "starry": 1.41e-06, - "stoic": 1.41e-06, - "supersonic": 1.41e-06, - "suspending": 1.41e-06, - "suzy": 1.41e-06, - "swamps": 1.41e-06, - "swaps": 1.41e-06, - "tablespoon": 1.41e-06, - "tapered": 1.41e-06, - "tardis": 1.41e-06, - "taser": 1.41e-06, - "technologically": 1.41e-06, - "temperance": 1.41e-06, - "terrence": 1.41e-06, - "testimonies": 1.41e-06, - "textured": 1.41e-06, - "thierry": 1.41e-06, - "thrash": 1.41e-06, - "thresholds": 1.41e-06, - "thwarted": 1.41e-06, - "thx": 1.41e-06, - "tombstone": 1.41e-06, - "torches": 1.41e-06, - "torpedoes": 1.41e-06, - "toto": 1.41e-06, - "transplants": 1.41e-06, - "tributaries": 1.41e-06, - "tributary": 1.41e-06, - "trumpets": 1.41e-06, - "turd": 1.41e-06, - "turrets": 1.41e-06, - "tuscany": 1.41e-06, - "tutors": 1.41e-06, - "tweaks": 1.41e-06, - "unchecked": 1.41e-06, - "unfolds": 1.41e-06, - "unhappiness": 1.41e-06, - "unifying": 1.41e-06, - "unimaginable": 1.41e-06, - "unites": 1.41e-06, - "unsecured": 1.41e-06, - "unsustainable": 1.41e-06, - "utilised": 1.41e-06, - "utopian": 1.41e-06, - "verlag": 1.41e-06, - "walcott": 1.41e-06, - "warship": 1.41e-06, - "weathered": 1.41e-06, - "wholeheartedly": 1.41e-06, - "whooping": 1.41e-06, - "widowed": 1.41e-06, - "willed": 1.41e-06, - "woolf": 1.41e-06, - "worsening": 1.41e-06, - "wounding": 1.41e-06, - "wwf": 1.41e-06, - "wwi": 1.41e-06, - "xinjiang": 1.41e-06, - "yao": 1.41e-06, - "zane": 1.41e-06, - "zenith": 1.41e-06, - "zimmer": 1.41e-06, - "zur": 1.41e-06, - "abbreviation": 1.38e-06, - "abd": 1.38e-06, - "abuser": 1.38e-06, - "accords": 1.38e-06, - "accrued": 1.38e-06, - "acm": 1.38e-06, - "actin": 1.38e-06, - "adhesion": 1.38e-06, - "adnan": 1.38e-06, - "allie": 1.38e-06, - "andes": 1.38e-06, - "andres": 1.62e-07, - "animate": 1.38e-06, - "appropriated": 1.38e-06, - "armenians": 1.38e-06, - "arming": 1.38e-06, - "artie": 1.38e-06, - "asymmetric": 1.38e-06, - "atrocious": 1.38e-06, - "autobiographical": 1.38e-06, - "avert": 1.38e-06, - "avian": 1.38e-06, - "backstory": 1.38e-06, - "barns": 1.38e-06, - "bayou": 1.38e-06, - "bern": 1.38e-06, - "blueprints": 1.38e-06, - "bodybuilding": 1.38e-06, - "bodyguards": 1.38e-06, - "branson": 1.38e-06, - "briefings": 1.38e-06, - "bugging": 1.38e-06, - "bullish": 1.38e-06, - "candies": 1.38e-06, - "cantor": 1.38e-06, - "carney": 1.38e-06, - "carrington": 1.38e-06, - "castillo": 1.38e-06, - "chairmen": 1.38e-06, - "chastity": 1.38e-06, - "chime": 1.38e-06, - "chromium": 1.38e-06, - "circumstantial": 1.38e-06, - "claimant": 1.38e-06, - "closeness": 1.38e-06, - "cnbc": 1.38e-06, - "coachella": 1.38e-06, - "collectible": 1.38e-06, - "commemorating": 1.38e-06, - "conceding": 1.38e-06, - "conductivity": 1.38e-06, - "contended": 1.38e-06, - "contextual": 1.38e-06, - "contradicted": 1.38e-06, - "corbin": 1.38e-06, - "cordon": 1.38e-06, - "coulter": 1.38e-06, - "cram": 1.38e-06, - "crawley": 1.38e-06, - "crazed": 1.38e-06, - "crossword": 1.38e-06, - "cuckoo": 1.38e-06, - "cuddly": 1.38e-06, - "dak": 1.38e-06, - "danube": 1.38e-06, - "dawkins": 1.38e-06, - "decaying": 1.38e-06, - "decipher": 1.38e-06, - "delve": 1.38e-06, - "depletion": 1.38e-06, - "discriminating": 1.38e-06, - "dispersal": 1.38e-06, - "displeasure": 1.38e-06, - "diss": 1.38e-06, - "doth": 1.38e-06, - "downgraded": 1.38e-06, - "dps": 5.37e-08, - "dsm": 1.38e-06, - "dumber": 1.38e-06, - "dunkirk": 1.38e-06, - "dwarves": 1.38e-06, - "effortless": 1.38e-06, - "ere": 2.95e-08, - "eyeshadow": 1.38e-06, - "faire": 1.38e-06, - "fave": 1.38e-06, - "fellowships": 1.38e-06, - "finisher": 1.38e-06, - "fluke": 1.38e-06, - "fondness": 1.38e-06, - "fsa": 1.38e-06, - "furnish": 1.38e-06, - "gauntlet": 1.38e-06, - "geologists": 1.38e-06, - "georg": 1.38e-06, - "gettysburg": 1.38e-06, - "ghanaian": 1.38e-06, - "ghostly": 1.38e-06, - "giuseppe": 1.38e-06, - "giveaways": 1.38e-06, - "gliding": 1.38e-06, - "googled": 1.38e-06, - "gopro": 1.38e-06, - "grady": 1.38e-06, - "grating": 1.38e-06, - "grilling": 1.38e-06, - "gripped": 1.38e-06, - "grouse": 1.38e-06, - "growl": 1.38e-06, - "habitual": 1.38e-06, - "hammock": 1.38e-06, - "hater": 1.38e-06, - "hazy": 1.38e-06, - "heisman": 1.38e-06, - "het": 1.38e-06, - "hewlett": 1.38e-06, - "himalayan": 1.38e-06, - "hollis": 1.38e-06, - "horticultural": 1.38e-06, - "hpv": 1.38e-06, - "hurling": 1.38e-06, - "hurried": 1.38e-06, - "hypocrites": 1.38e-06, - "ide": 1.55e-08, - "idealistic": 1.38e-06, - "impede": 1.38e-06, - "imperialist": 1.38e-06, - "induces": 1.38e-06, - "inflamed": 1.38e-06, - "inhumane": 1.38e-06, - "innocents": 1.38e-06, - "instantaneous": 1.38e-06, - "islamists": 1.38e-06, - "isps": 1.07e-07, - "italics": 1.38e-06, - "ivf": 1.38e-06, - "jed": 1.38e-06, - "jinx": 1.38e-06, - "jobless": 1.38e-06, - "jodie": 1.38e-06, - "joo": 1.38e-06, - "jurisprudence": 1.38e-06, - "justifiable": 1.38e-06, - "kei": 1.38e-06, - "kellogg": 1.38e-06, - "kepler": 1.38e-06, - "kims": 1.2e-07, - "kyrgyzstan": 1.38e-06, - "lark": 1.38e-06, - "lecturers": 1.38e-06, - "lecturing": 1.38e-06, - "linkage": 1.38e-06, - "lobes": 1.38e-06, - "louvre": 1.38e-06, - "lovingly": 1.38e-06, - "lucille": 1.38e-06, - "lyft": 1.38e-06, - "manifests": 1.38e-06, - "mardi": 1.38e-06, - "marvels": 7.41e-07, - "masonic": 1.38e-06, - "mathieu": 1.38e-06, - "medics": 1.38e-06, - "meng": 1.38e-06, - "ment": 1.38e-06, - "meps": 1.38e-06, - "merritt": 1.38e-06, - "messengers": 8.13e-08, - "mitigating": 1.38e-06, - "moderated": 1.38e-06, - "mohawk": 1.38e-06, - "monarchs": 2e-07, - "moores": 4.57e-07, - "mortars": 1.38e-06, - "multiples": 1.38e-06, - "murals": 1.38e-06, - "nada": 1.38e-06, - "nafta": 1.38e-06, - "nell": 1.38e-06, - "newfound": 1.38e-06, - "newsweek": 1.38e-06, - "niles": 1.38e-06, - "nineties": 1.38e-06, - "nosed": 1.38e-06, - "nukes": 1.38e-06, - "observational": 1.38e-06, - "olaf": 1.38e-06, - "oldham": 1.38e-06, - "oleg": 1.38e-06, - "ombudsman": 1.38e-06, - "ordinances": 1.38e-06, - "overtaken": 1.38e-06, - "pancreas": 1.38e-06, - "pandas": 1.15e-07, - "parlour": 1.38e-06, - "pasha": 1.38e-06, - "peoria": 1.38e-06, - "periodical": 1.38e-06, - "phew": 1.38e-06, - "pickering": 1.38e-06, - "pickups": 1.38e-06, - "pinched": 1.38e-06, - "plating": 1.38e-06, - "pont": 1.38e-06, - "postings": 1.38e-06, - "postmaster": 1.38e-06, - "potts": 1.38e-06, - "powerfully": 1.38e-06, - "prentice": 1.38e-06, - "primate": 1.38e-06, - "proverb": 1.38e-06, - "puns": 1.38e-06, - "quarterbacks": 7.08e-08, - "quarterfinals": 1.38e-06, - "quests": 5.62e-08, - "raisins": 1.38e-06, - "ranting": 1.38e-06, - "ratification": 1.38e-06, - "recited": 1.38e-06, - "reclamation": 1.38e-06, - "reece": 1.38e-06, - "refineries": 1.38e-06, - "refute": 1.38e-06, - "resettlement": 1.38e-06, - "reverted": 1.38e-06, - "rewriting": 1.38e-06, - "ric": 1.38e-06, - "saratoga": 1.38e-06, - "sculpted": 1.38e-06, - "sects": 5.37e-08, - "sedentary": 1.38e-06, - "shaq": 1.38e-06, - "shivering": 1.38e-06, - "shocker": 1.38e-06, - "shoulda": 1.38e-06, - "showroom": 1.38e-06, - "sightseeing": 1.38e-06, - "situational": 1.38e-06, - "skaters": 1.38e-06, - "slicing": 1.38e-06, - "soggy": 1.38e-06, - "someplace": 1.38e-06, - "sorcerer": 1.38e-06, - "sorcery": 1.38e-06, - "spades": 1.38e-06, - "specialising": 1.38e-06, - "speciality": 1.38e-06, - "spleen": 1.38e-06, - "starlight": 1.38e-06, - "steadfast": 1.38e-06, - "stimulates": 1.38e-06, - "stomping": 1.38e-06, - "stoop": 1.38e-06, - "stroking": 1.38e-06, - "stuffs": 1.12e-07, - "stylistic": 1.38e-06, - "supergirl": 1.38e-06, - "superpowers": 1.38e-06, - "superstitious": 1.38e-06, - "syrians": 1.38e-06, - "tay": 1.38e-06, - "tentatively": 1.38e-06, - "thinning": 1.38e-06, - "thrice": 1.38e-06, - "thu": 1.38e-06, - "touchy": 1.38e-06, - "trampoline": 1.38e-06, - "tranquil": 1.38e-06, - "transformative": 1.38e-06, - "trespassing": 1.38e-06, - "undergraduates": 1.38e-06, - "underwriting": 1.38e-06, - "unplanned": 1.38e-06, - "unsuspecting": 1.38e-06, - "unwelcome": 1.38e-06, - "unwell": 1.38e-06, - "vacate": 1.38e-06, - "venting": 1.38e-06, - "ville": 1.38e-06, - "waldorf": 1.38e-06, - "warring": 1.38e-06, - "wetland": 1.38e-06, - "whit": 1.38e-06, - "whitehead": 1.38e-06, - "yemeni": 1.38e-06, - "yoko": 1.38e-06, - "yung": 1.38e-06, - "abode": 1.35e-06, - "abomination": 1.35e-06, - "acer": 1.35e-06, - "acs": 6.17e-08, - "acutely": 1.35e-06, - "adherents": 1.35e-06, - "adhering": 1.35e-06, - "affiliations": 1.35e-06, - "alexei": 1.35e-06, - "allotment": 1.35e-06, - "amplifiers": 1.35e-06, - "angelic": 1.35e-06, - "antisocial": 1.35e-06, - "anxieties": 1.35e-06, - "approvals": 1.35e-06, - "aries": 1.05e-08, - "associating": 1.35e-06, - "astral": 1.35e-06, - "astray": 1.35e-06, - "audited": 1.35e-06, - "baffling": 1.35e-06, - "bal": 1.35e-06, - "banded": 1.35e-06, - "bao": 1.35e-06, - "bathed": 1.35e-06, - "betraying": 1.35e-06, - "bhai": 1.35e-06, - "bharat": 1.35e-06, - "blacklist": 1.35e-06, - "blockers": 1.35e-06, - "blunder": 1.35e-06, - "booing": 1.35e-06, - "bowlers": 7.76e-08, - "brownish": 1.35e-06, - "buddhists": 1.35e-06, - "bummed": 1.35e-06, - "burdened": 1.35e-06, - "cfo": 1.35e-06, - "chaser": 1.35e-06, - "checkpoints": 1.35e-06, - "chet": 1.35e-06, - "chipotle": 1.35e-06, - "choreographer": 1.35e-06, - "clams": 1.35e-06, - "coa": 1.35e-06, - "coates": 1.35e-06, - "colchester": 1.35e-06, - "commotion": 1.35e-06, - "communicates": 1.35e-06, - "completeness": 1.35e-06, - "concierge": 1.35e-06, - "congressmen": 1.35e-06, - "cummins": 1.35e-06, - "cynicism": 1.35e-06, - "darkened": 1.35e-06, - "dazed": 1.35e-06, - "debatable": 1.35e-06, - "denominator": 1.35e-06, - "devolved": 1.35e-06, - "dieting": 1.35e-06, - "diligently": 1.35e-06, - "dinah": 1.35e-06, - "diners": 8.51e-08, - "doppler": 1.35e-06, - "dowry": 1.35e-06, - "drinkers": 1.35e-06, - "duality": 1.35e-06, - "duplex": 1.35e-06, - "ect": 1.35e-06, - "egan": 1.35e-06, - "endearing": 1.35e-06, - "epilogue": 1.35e-06, - "etching": 1.35e-06, - "exemplified": 1.35e-06, - "ext": 1.35e-06, - "extermination": 1.35e-06, - "eyre": 1.35e-06, - "fancied": 1.35e-06, - "fatima": 1.35e-06, - "feldman": 1.35e-06, - "firefly": 1.35e-06, - "fleetwood": 1.35e-06, - "flotation": 1.35e-06, - "focussed": 1.35e-06, - "foraging": 1.35e-06, - "forbids": 1.35e-06, - "foreword": 1.35e-06, - "foxs": 1.35e-06, - "fsu": 1.35e-06, - "fy": 1.35e-06, - "gamblers": 1.32e-07, - "garages": 1.35e-06, - "goldie": 1.35e-06, - "golds": 5.25e-07, - "grandchild": 1.35e-06, - "grids": 7.94e-08, - "grossing": 1.35e-06, - "habitable": 1.35e-06, - "hails": 1.35e-06, - "hallways": 1.35e-06, - "harem": 1.35e-06, - "hawkeye": 1.35e-06, - "hegemony": 1.35e-06, - "hilda": 1.35e-06, - "himalayas": 1.35e-06, - "hippo": 1.35e-06, - "hof": 1.35e-06, - "hypnotic": 1.35e-06, - "imagines": 1.35e-06, - "inaction": 1.35e-06, - "inconclusive": 1.35e-06, - "incubator": 1.35e-06, - "inept": 1.35e-06, - "inexplicable": 1.35e-06, - "innovate": 1.35e-06, - "inseparable": 1.35e-06, - "institutionalized": 1.35e-06, - "instructing": 1.35e-06, - "intravenous": 1.35e-06, - "invests": 1.35e-06, - "juries": 1.35e-06, - "juror": 1.35e-06, - "kilo": 1.35e-06, - "kinship": 1.35e-06, - "kv": 1.35e-06, - "lactose": 1.35e-06, - "lat": 1.35e-06, - "lenient": 1.35e-06, - "liang": 1.35e-06, - "lids": 1.35e-06, - "likened": 1.35e-06, - "lockout": 1.35e-06, - "lube": 1.35e-06, - "luton": 1.35e-06, - "macon": 1.35e-06, - "mak": 1.35e-06, - "marcelo": 1.35e-06, - "masking": 1.35e-06, - "mastercard": 1.35e-06, - "mathematicians": 1.35e-06, - "mathew": 1.35e-06, - "maximizing": 1.35e-06, - "mccabe": 1.35e-06, - "mediate": 1.35e-06, - "methodologies": 1.35e-06, - "mfa": 1.35e-06, - "micah": 1.35e-06, - "microorganisms": 1.35e-06, - "millimeter": 1.35e-06, - "minaj": 1.35e-06, - "minh": 1.35e-06, - "moans": 1.35e-06, - "modal": 1.35e-06, - "moderates": 1.35e-06, - "modernism": 1.35e-06, - "moira": 1.35e-06, - "monasteries": 1.35e-06, - "monique": 5.25e-08, - "napier": 1.35e-06, - "narrows": 1.35e-06, - "nawaz": 1.35e-06, - "nbcs": 1.35e-06, - "negotiator": 1.35e-06, - "niggas": 9.55e-08, - "nomadic": 1.35e-06, - "npc": 1.35e-06, - "observance": 1.35e-06, - "ont": 1.26e-07, - "overloaded": 1.35e-06, - "parentheses": 1.35e-06, - "penance": 1.35e-06, - "peroxide": 1.35e-06, - "peugeot": 1.35e-06, - "pigments": 1.35e-06, - "pinning": 1.35e-06, - "pisa": 1.35e-06, - "planks": 1.35e-06, - "pluck": 1.35e-06, - "porte": 1.35e-06, - "postdoctoral": 1.35e-06, - "potus": 1.35e-06, - "preposterous": 1.35e-06, - "pressuring": 1.35e-06, - "preventative": 1.35e-06, - "prometheus": 1.35e-06, - "prophecies": 1.35e-06, - "proverbial": 1.35e-06, - "puffy": 1.35e-06, - "puzzling": 1.35e-06, - "qpr": 1.35e-06, - "quail": 1.35e-06, - "quirk": 1.35e-06, - "rabid": 1.35e-06, - "rafa": 1.35e-06, - "rasmussen": 1.35e-06, - "redneck": 1.35e-06, - "reformer": 1.35e-06, - "reformers": 1.35e-06, - "registrations": 1.35e-06, - "rehearsing": 1.35e-06, - "reiterate": 1.35e-06, - "resolves": 1.35e-06, - "resonant": 1.35e-06, - "resultant": 1.35e-06, - "retinal": 1.35e-06, - "rgb": 1.35e-06, - "rhodesia": 1.35e-06, - "rothschild": 1.35e-06, - "rsa": 1.35e-06, - "rw": 1.35e-06, - "scammers": 1.35e-06, - "schema": 1.35e-06, - "schizophrenic": 1.35e-06, - "schwarzenegger": 1.35e-06, - "scorn": 1.35e-06, - "screwdriver": 1.35e-06, - "shay": 1.35e-06, - "shetland": 1.35e-06, - "shippers": 1.35e-06, - "sho": 1.35e-06, - "sighed": 1.35e-06, - "sizzling": 1.35e-06, - "skillful": 1.35e-06, - "skywalker": 1.35e-06, - "slowest": 1.35e-06, - "sonata": 1.35e-06, - "soulful": 1.35e-06, - "southend": 1.35e-06, - "stampede": 1.35e-06, - "standoff": 1.35e-06, - "stately": 1.35e-06, - "steered": 1.35e-06, - "straightened": 1.35e-06, - "sugary": 1.35e-06, - "suitably": 1.35e-06, - "supernova": 1.35e-06, - "surrendering": 1.35e-06, - "synonym": 1.35e-06, - "tanned": 1.35e-06, - "tantrum": 1.35e-06, - "tapering": 1.35e-06, - "tectonic": 1.35e-06, - "tele": 1.35e-06, - "templar": 1.35e-06, - "tmz": 1.35e-06, - "tna": 1.35e-06, - "toxicology": 1.35e-06, - "transfusion": 1.35e-06, - "treachery": 1.35e-06, - "tung": 1.35e-06, - "tweaking": 1.35e-06, - "unbreakable": 1.35e-06, - "undermines": 1.35e-06, - "unmatched": 1.35e-06, - "upheaval": 1.35e-06, - "uploads": 1.35e-06, - "urbana": 1.35e-06, - "vaccinations": 1.35e-06, - "valentino": 1.35e-06, - "valuations": 1.35e-06, - "veneer": 1.35e-06, - "verona": 1.35e-06, - "viewership": 1.35e-06, - "viscosity": 1.35e-06, - "vogel": 1.35e-06, - "vouch": 1.35e-06, - "wafer": 1.35e-06, - "wai": 1.35e-06, - "wcw": 1.35e-06, - "wiz": 1.35e-06, - "worsened": 1.35e-06, - "xo": 1.35e-06, - "zoos": 3.39e-07, - "adaptable": 1.32e-06, - "adhered": 1.32e-06, - "adjutant": 1.32e-06, - "advancements": 1.32e-06, - "aggravating": 1.32e-06, - "alia": 1.32e-06, - "alta": 1.32e-06, - "altercation": 1.32e-06, - "amplification": 1.32e-06, - "amuse": 1.32e-06, - "ancients": 1.32e-06, - "appleton": 1.32e-06, - "aps": 2.34e-07, - "aptly": 1.32e-06, - "archaeologist": 1.32e-06, - "armada": 1.32e-06, - "arousal": 1.32e-06, - "arsene": 1.32e-06, - "artistry": 1.32e-06, - "asheville": 1.32e-06, - "assuring": 1.32e-06, - "atrium": 1.32e-06, - "atv": 1.32e-06, - "atypical": 1.32e-06, - "authorizing": 1.32e-06, - "autographs": 1.32e-06, - "autos": 5.25e-08, - "backups": 1.32e-06, - "bah": 1.32e-06, - "bakersfield": 1.32e-06, - "bangladeshi": 1.32e-06, - "bannon": 1.32e-06, - "barrie": 1.32e-06, - "bartholomew": 1.32e-06, - "bavarian": 1.32e-06, - "beacons": 6.03e-08, - "bearers": 1.32e-06, - "becca": 1.32e-06, - "bernadette": 1.32e-06, - "bingham": 1.32e-06, - "bouncer": 1.32e-06, - "bracing": 1.32e-06, - "breezy": 1.32e-06, - "brunt": 1.32e-06, - "bucky": 1.32e-06, - "burgeoning": 1.32e-06, - "cadence": 1.32e-06, - "californian": 1.32e-06, - "camerons": 1.51e-07, - "cancels": 1.32e-06, - "candice": 1.32e-06, - "capitalization": 1.32e-06, - "cashmere": 1.32e-06, - "chaps": 2.82e-08, - "cheeseburger": 1.32e-06, - "churning": 1.32e-06, - "cipher": 1.32e-06, - "clarinet": 1.32e-06, - "clashed": 1.32e-06, - "comforted": 1.32e-06, - "condensation": 1.32e-06, - "condos": 1.32e-06, - "confesses": 1.32e-06, - "confluence": 1.32e-06, - "consented": 1.32e-06, - "constipation": 1.32e-06, - "consultative": 1.32e-06, - "contesting": 1.32e-06, - "contraband": 1.32e-06, - "cookery": 1.32e-06, - "creme": 1.32e-06, - "criminally": 1.32e-06, - "crocodiles": 6.03e-08, - "crutches": 1.32e-06, - "custodian": 1.32e-06, - "cyst": 1.32e-06, - "dah": 1.32e-06, - "decisively": 1.32e-06, - "degeneration": 1.32e-06, - "delinquent": 1.32e-06, - "democratically": 1.32e-06, - "deodorant": 1.32e-06, - "detonated": 1.32e-06, - "disappointments": 1.32e-06, - "disapprove": 1.32e-06, - "dobson": 1.32e-06, - "dodged": 1.32e-06, - "dormitory": 1.32e-06, - "dredging": 1.32e-06, - "duran": 1.32e-06, - "emigrated": 1.32e-06, - "enticing": 1.32e-06, - "eradication": 1.32e-06, - "erasmus": 1.32e-06, - "esl": 1.32e-06, - "ethnically": 1.32e-06, - "evangelicals": 1.32e-06, - "evoked": 1.32e-06, - "excesses": 1.32e-06, - "exhilarating": 1.32e-06, - "eyelashes": 1.32e-06, - "fainted": 1.32e-06, - "feline": 1.32e-06, - "femininity": 1.32e-06, - "ferns": 1.32e-06, - "fickle": 1.32e-06, - "figurative": 1.32e-06, - "flared": 1.32e-06, - "footwork": 1.32e-06, - "forage": 1.32e-06, - "fraught": 1.32e-06, - "freshness": 1.32e-06, - "fronted": 1.32e-06, - "galilee": 1.32e-06, - "gallup": 1.32e-06, - "gauges": 1.32e-06, - "glastonbury": 1.32e-06, - "gonzales": 1.32e-06, - "grandmas": 4.9e-07, - "grapple": 1.32e-06, - "grated": 1.32e-06, - "greets": 1.32e-06, - "groan": 1.32e-06, - "grub": 1.32e-06, - "gunna": 1.32e-06, - "gunned": 1.32e-06, - "handouts": 1.32e-06, - "hangout": 1.32e-06, - "hartman": 1.32e-06, - "havin": 1.32e-06, - "headers": 1.32e-06, - "henson": 1.32e-06, - "hickory": 1.32e-06, - "hives": 3.47e-08, - "hiya": 1.32e-06, - "hoist": 1.32e-06, - "hubble": 1.32e-06, - "huff": 1.32e-06, - "hunk": 1.32e-06, - "idc": 1.32e-06, - "identifier": 1.32e-06, - "incite": 1.32e-06, - "increments": 1.32e-06, - "industrialized": 1.32e-06, - "inferred": 1.32e-06, - "informally": 1.32e-06, - "inhalation": 1.32e-06, - "inhibits": 1.32e-06, - "insides": 1.32e-06, - "interruptions": 1.32e-06, - "intoxication": 1.32e-06, - "isotopes": 1.32e-06, - "jagged": 1.32e-06, - "joachim": 1.32e-06, - "josiah": 1.32e-06, - "jv": 1.32e-06, - "kant": 1.32e-06, - "katharine": 1.32e-06, - "kavanaugh": 1.32e-06, - "labours": 4.9e-07, - "laces": 1.32e-06, - "lamented": 1.32e-06, - "lasagna": 1.32e-06, - "leaflet": 1.32e-06, - "leds": 1e-07, - "lucian": 1.32e-06, - "marissa": 1.32e-06, - "markus": 1.32e-06, - "marlene": 1.32e-06, - "massa": 1.32e-06, - "massacred": 1.32e-06, - "massacres": 1.32e-06, - "maturing": 1.32e-06, - "mcintosh": 1.32e-06, - "mckinney": 1.32e-06, - "mediocrity": 1.32e-06, - "mediums": 8.51e-08, - "midwestern": 1.32e-06, - "minding": 1.32e-06, - "moat": 1.32e-06, - "molds": 1.32e-06, - "mori": 1.32e-06, - "morty": 1.32e-06, - "motorized": 1.32e-06, - "mouthpiece": 1.32e-06, - "muck": 1.32e-06, - "murky": 1.32e-06, - "nab": 1.32e-06, - "neonatal": 1.32e-06, - "neuronal": 1.32e-06, - "neutralize": 1.32e-06, - "nicholls": 1.32e-06, - "nickelodeon": 1.32e-06, - "omen": 1.32e-06, - "ora": 1.32e-06, - "orally": 1.32e-06, - "orchids": 1.32e-06, - "overgrown": 1.32e-06, - "overlooks": 1.32e-06, - "overpriced": 1.32e-06, - "overruled": 1.32e-06, - "painkillers": 1.32e-06, - "pallet": 1.32e-06, - "parramatta": 1.32e-06, - "partitions": 1.32e-06, - "patriarchy": 1.32e-06, - "patsy": 1.32e-06, - "paz": 1.32e-06, - "pdp": 1.32e-06, - "peaking": 1.32e-06, - "pedagogy": 1.32e-06, - "perm": 1.32e-06, - "philanthropist": 1.32e-06, - "piedmont": 1.32e-06, - "pinto": 1.32e-06, - "poc": 1.32e-06, - "pontiac": 1.32e-06, - "prc": 1.32e-06, - "predictor": 1.32e-06, - "premiers": 3.16e-07, - "priscilla": 1.32e-06, - "professed": 1.32e-06, - "qing": 1.32e-06, - "rants": 1.32e-06, - "rashid": 1.32e-06, - "readership": 1.32e-06, - "reaffirmed": 1.32e-06, - "reciting": 1.32e-06, - "reels": 1.32e-06, - "rei": 1.32e-06, - "relinquish": 1.32e-06, - "resists": 1.32e-06, - "resolute": 1.32e-06, - "restricts": 1.32e-06, - "retainer": 1.32e-06, - "rethinking": 1.32e-06, - "runways": 1.32e-06, - "salient": 1.32e-06, - "scents": 1.32e-06, - "schematic": 1.32e-06, - "scoreless": 1.32e-06, - "seawater": 1.32e-06, - "secs": 2.4e-07, - "secures": 1.32e-06, - "seedlings": 1.32e-06, - "sentient": 1.32e-06, - "separatist": 1.32e-06, - "sera": 1.32e-06, - "serb": 1.32e-06, - "serbs": 1.32e-06, - "shropshire": 1.32e-06, - "sikhs": 1.32e-06, - "skyscrapers": 1.32e-06, - "slurs": 1.32e-06, - "slutty": 1.32e-06, - "smurf": 1.32e-06, - "snippet": 1.32e-06, - "spielberg": 1.32e-06, - "spokeswoman": 1.32e-06, - "spotless": 1.32e-06, - "sprang": 1.32e-06, - "ssh": 1.32e-06, - "stabilizing": 1.32e-06, - "stinky": 1.32e-06, - "stitching": 1.32e-06, - "stockpile": 1.32e-06, - "strenuous": 1.32e-06, - "strikingly": 1.32e-06, - "strives": 1.32e-06, - "stumps": 1.32e-06, - "subordinates": 1.32e-06, - "summarizes": 1.32e-06, - "surcharge": 1.32e-06, - "tarot": 1.32e-06, - "tcp": 1.32e-06, - "theologians": 1.32e-06, - "throbbing": 1.32e-06, - "tilting": 1.32e-06, - "trailed": 1.32e-06, - "treasured": 1.32e-06, - "tungsten": 1.32e-06, - "tw": 1.32e-06, - "twigs": 1.32e-06, - "txt": 1.32e-06, - "ucl": 1.32e-06, - "uhm": 1.32e-06, - "umpires": 9.12e-08, - "unharmed": 1.32e-06, - "unilaterally": 1.32e-06, - "unintentional": 1.32e-06, - "unspeakable": 1.32e-06, - "untimely": 1.32e-06, - "ust": 1.32e-06, - "uva": 1.32e-06, - "vfl": 1.32e-06, - "vida": 1.32e-06, - "vodafone": 1.32e-06, - "vous": 1.32e-06, - "warrington": 1.32e-06, - "wedges": 1.32e-06, - "wendys": 9.77e-08, - "whomever": 1.32e-06, - "wondrous": 1.32e-06, - "woodrow": 1.32e-06, - "woof": 1.32e-06, - "workable": 1.32e-06, - "wrinkle": 1.32e-06, - "yak": 1.32e-06, - "zhu": 1.32e-06, - "abdel": 1.29e-06, - "abstracts": 1.29e-06, - "abundantly": 1.29e-06, - "acknowledgment": 1.29e-06, - "adoration": 1.29e-06, - "affectionately": 1.29e-06, - "affliction": 1.29e-06, - "aguero": 1.29e-06, - "alluded": 1.29e-06, - "alters": 1.29e-06, - "amounting": 1.29e-06, - "ams": 1.29e-07, - "ariz": 1.29e-06, - "armageddon": 1.29e-06, - "arya": 1.29e-06, - "ashe": 1.29e-06, - "attaches": 1.29e-06, - "awww": 1.29e-06, - "backfire": 1.29e-06, - "bathurst": 1.29e-06, - "belinda": 1.29e-06, - "bethel": 1.29e-06, - "bonn": 1.29e-06, - "bookshop": 1.29e-06, - "bora": 1.29e-06, - "botox": 1.29e-06, - "bowers": 1.29e-06, - "bree": 1.29e-06, - "bridesmaids": 1.29e-06, - "brooding": 1.29e-06, - "burberry": 1.29e-06, - "canes": 8.51e-08, - "caregiver": 1.29e-06, - "carters": 3.8e-07, - "celebs": 1.29e-06, - "championed": 1.29e-06, - "chernobyl": 1.29e-06, - "chesterfield": 1.29e-06, - "clapped": 1.29e-06, - "clerics": 6.46e-08, - "cochrane": 1.29e-06, - "cockroaches": 1.29e-06, - "coerced": 1.29e-06, - "collectibles": 1.29e-06, - "conspirators": 1.29e-06, - "conspired": 1.29e-06, - "conspiring": 1.29e-06, - "contours": 1.29e-06, - "contraceptive": 1.29e-06, - "conversational": 1.29e-06, - "corrosive": 1.29e-06, - "counterpoint": 1.29e-06, - "courting": 1.29e-06, - "cowardice": 1.29e-06, - "crusher": 1.29e-06, - "cuddling": 1.29e-06, - "cyclops": 1.29e-06, - "dahl": 1.29e-06, - "daw": 1.29e-06, - "defied": 1.29e-06, - "depictions": 1.29e-06, - "derailed": 1.29e-06, - "dill": 1.29e-06, - "dimitri": 1.29e-06, - "dio": 1.29e-06, - "discontinue": 1.29e-06, - "diseased": 1.29e-06, - "disgruntled": 1.29e-06, - "dispense": 1.29e-06, - "disqualification": 1.29e-06, - "dizziness": 1.29e-06, - "ducts": 1.29e-06, - "dusted": 1.29e-06, - "dv": 1.29e-06, - "econ": 1.29e-06, - "emi": 1.29e-06, - "enacting": 1.29e-06, - "enigmatic": 1.29e-06, - "ennis": 1.29e-06, - "envisaged": 1.29e-06, - "epl": 1.29e-06, - "esquire": 1.29e-06, - "ethically": 1.29e-06, - "exhale": 1.29e-06, - "fanning": 1.29e-06, - "farley": 1.29e-06, - "fergus": 1.29e-06, - "firemen": 1.29e-06, - "fission": 1.29e-06, - "fives": 1.23e-07, - "fleas": 1.29e-06, - "flurry": 1.29e-06, - "folio": 1.29e-06, - "fosters": 6.17e-07, - "franc": 1.29e-06, - "frugal": 1.29e-06, - "fugitives": 1.29e-06, - "gainesville": 1.29e-06, - "galore": 1.29e-06, - "genomic": 1.29e-06, - "gestapo": 1.29e-06, - "gk": 1.29e-06, - "glimmer": 1.29e-06, - "goon": 1.29e-06, - "gq": 1.29e-06, - "graces": 4.17e-07, - "grandkids": 1.29e-06, - "groovy": 1.29e-06, - "gully": 1.29e-06, - "gundam": 1.29e-06, - "gurney": 1.29e-06, - "handball": 1.29e-06, - "harmonies": 1.29e-06, - "hectare": 1.29e-06, - "hereford": 1.29e-06, - "hickey": 1.29e-06, - "hijack": 1.29e-06, - "hikers": 1.29e-06, - "hologram": 1.29e-06, - "homicides": 1.29e-06, - "horatio": 1.29e-06, - "humankind": 1.29e-06, - "hydroelectric": 1.29e-06, - "immunology": 1.29e-06, - "indulging": 1.29e-06, - "ingested": 1.29e-06, - "inhibited": 1.29e-06, - "intensifies": 1.29e-06, - "interacted": 1.29e-06, - "intruders": 1.29e-06, - "ipads": 8.51e-08, - "isbn": 1.29e-06, - "ita": 1.29e-06, - "iterations": 1.29e-06, - "izzy": 1.29e-06, - "judgements": 1.29e-06, - "karan": 1.29e-06, - "kayla": 1.29e-06, - "kiln": 1.29e-06, - "kp": 1.29e-06, - "landowner": 1.29e-06, - "latvian": 1.29e-06, - "leveraged": 1.29e-06, - "levers": 1.91e-08, - "lilac": 1.29e-06, - "limelight": 1.29e-06, - "lister": 1.29e-06, - "loathe": 1.29e-06, - "lobbied": 1.29e-06, - "logistic": 1.29e-06, - "lok": 1.29e-06, - "loopholes": 1.29e-06, - "macaroni": 1.29e-06, - "maclean": 1.29e-06, - "manganese": 1.29e-06, - "mantis": 1.29e-06, - "marr": 1.29e-06, - "mattresses": 1.29e-06, - "mayan": 1.29e-06, - "merrick": 1.29e-06, - "midsummer": 1.29e-06, - "mig": 1.29e-06, - "mikes": 4.07e-07, - "milligrams": 1.29e-06, - "mimics": 1.29e-06, - "minsk": 1.29e-06, - "misunderstandings": 1.29e-06, - "momentous": 1.29e-06, - "mora": 1.29e-06, - "mou": 1.29e-06, - "mules": 1.29e-06, - "nanoparticles": 1.29e-06, - "nasser": 1.29e-06, - "nightclubs": 1.29e-06, - "nightfall": 1.29e-06, - "nikolai": 1.29e-06, - "notary": 1.29e-06, - "observable": 1.29e-06, - "occupant": 1.29e-06, - "omissions": 1.29e-06, - "organiser": 1.29e-06, - "ott": 1.29e-06, - "outfield": 1.29e-06, - "oy": 1.29e-06, - "paddington": 1.29e-06, - "paddock": 1.29e-06, - "padre": 1.29e-06, - "pang": 1.29e-06, - "pardoned": 1.29e-06, - "parliaments": 6.46e-07, - "participatory": 1.29e-06, - "partisans": 1.29e-06, - "pavel": 1.29e-06, - "perils": 1.29e-06, - "permissions": 1.29e-06, - "pfizer": 1.29e-06, - "pia": 1.29e-06, - "plugging": 1.29e-06, - "pneumatic": 1.29e-06, - "pointy": 1.29e-06, - "polyester": 1.29e-06, - "polynomial": 1.29e-06, - "porridge": 1.29e-06, - "protester": 1.29e-06, - "pug": 1.29e-06, - "pyongyang": 1.29e-06, - "quill": 1.29e-06, - "reassured": 1.29e-06, - "refurbishment": 1.29e-06, - "renown": 1.29e-06, - "rescheduled": 1.29e-06, - "revel": 1.29e-06, - "reworked": 1.29e-06, - "rocco": 1.29e-06, - "rochelle": 1.29e-06, - "rollin": 1.29e-06, - "roundtable": 1.29e-06, - "rower": 1.29e-06, - "rut": 1.29e-06, - "salaam": 1.29e-06, - "sanjay": 1.29e-06, - "scapegoat": 1.29e-06, - "schooled": 1.29e-06, - "screeching": 1.29e-06, - "secretion": 1.29e-06, - "shambles": 1.29e-06, - "shipwreck": 1.29e-06, - "shirtless": 1.29e-06, - "shrewd": 1.29e-06, - "shudder": 1.29e-06, - "shunned": 1.29e-06, - "sia": 1.29e-06, - "sicilian": 1.29e-06, - "slalom": 1.29e-06, - "smuggle": 1.29e-06, - "snowflakes": 1.29e-06, - "solder": 1.29e-06, - "sous": 1.29e-06, - "spanned": 1.29e-06, - "sparring": 1.29e-06, - "spectacles": 1.29e-06, - "spire": 1.29e-06, - "spout": 1.29e-06, - "sprout": 1.29e-06, - "stench": 1.29e-06, - "stings": 1.23e-07, - "stochastic": 1.29e-06, - "stratton": 1.29e-06, - "subsistence": 1.29e-06, - "subterranean": 1.29e-06, - "sully": 1.29e-06, - "superhuman": 1.29e-06, - "synchronization": 1.29e-06, - "tajikistan": 1.29e-06, - "tellin": 1.29e-06, - "tenacity": 1.29e-06, - "thurston": 1.29e-06, - "tolerable": 1.29e-06, - "topper": 1.29e-06, - "tre": 1.29e-06, - "trespass": 1.29e-06, - "tuxedo": 1.29e-06, - "umbrellas": 1.29e-06, - "understated": 1.29e-06, - "undeveloped": 1.29e-06, - "univ": 1.29e-06, - "unknowingly": 1.29e-06, - "unplugged": 1.29e-06, - "untouchable": 1.29e-06, - "unwarranted": 1.29e-06, - "unwillingness": 1.29e-06, - "vases": 1.29e-06, - "vetting": 1.29e-06, - "vg": 1.29e-06, - "vibrator": 1.29e-06, - "wailing": 1.29e-06, - "warhol": 1.29e-06, - "warwickshire": 1.29e-06, - "whisk": 1.29e-06, - "wishful": 1.29e-06, - "wrestled": 1.29e-06, - "wynn": 1.29e-06, - "yoda": 1.29e-06, - "yoruba": 1.29e-06, - "abolishing": 1.26e-06, - "accountancy": 1.26e-06, - "acoustics": 1.26e-06, - "actuality": 1.26e-06, - "addictions": 1.26e-06, - "aden": 1.26e-06, - "aeronautics": 1.26e-06, - "alam": 1.26e-06, - "alf": 1.26e-06, - "alibi": 1.26e-06, - "anand": 1.26e-06, - "anfield": 1.26e-06, - "anointed": 1.26e-06, - "apis": 9.55e-08, - "argentinian": 1.26e-06, - "arias": 1e-07, - "arkham": 1.26e-06, - "arturo": 1.26e-06, - "astoria": 1.26e-06, - "astute": 1.26e-06, - "attainable": 1.26e-06, - "audiobook": 1.26e-06, - "aztec": 1.26e-06, - "babcock": 1.26e-06, - "bac": 1.26e-06, - "baja": 1.26e-06, - "ballerina": 1.26e-06, - "bashed": 1.26e-06, - "batters": 1.55e-07, - "bce": 1.26e-06, - "bei": 1.26e-06, - "bennet": 1.26e-06, - "bewildered": 1.26e-06, - "bien": 1.26e-06, - "binoculars": 1.26e-06, - "blackstone": 1.26e-06, - "bonkers": 1.26e-06, - "bpd": 1.26e-06, - "brazen": 1.26e-06, - "burlesque": 1.26e-06, - "burrow": 1.26e-06, - "calculates": 1.26e-06, - "calder": 1.26e-06, - "callers": 1.23e-07, - "calvert": 1.26e-06, - "campfire": 1.26e-06, - "cashed": 1.26e-06, - "caster": 1.26e-06, - "catalysts": 1.26e-06, - "catered": 1.26e-06, - "causation": 1.26e-06, - "centerpiece": 1.26e-06, - "chameleon": 1.26e-06, - "checkers": 2.4e-08, - "cheques": 1.26e-06, - "clancy": 1.26e-06, - "clasp": 1.26e-06, - "clit": 1.26e-06, - "clooney": 1.26e-06, - "cnns": 1.26e-06, - "compulsion": 1.26e-06, - "concealing": 1.26e-06, - "condescending": 1.26e-06, - "condominium": 1.26e-06, - "confucius": 1.26e-06, - "conical": 1.26e-06, - "conjure": 1.26e-06, - "constitutionally": 1.26e-06, - "convincingly": 1.26e-06, - "copious": 1.26e-06, - "cordial": 1.26e-06, - "coy": 1.26e-06, - "craftsmanship": 1.26e-06, - "craziness": 1.26e-06, - "creatively": 1.26e-06, - "creditor": 1.26e-06, - "crores": 1.26e-06, - "crypt": 1.26e-06, - "custodial": 1.26e-06, - "deactivated": 1.26e-06, - "deans": 1.15e-06, - "decatur": 1.26e-06, - "decreed": 1.26e-06, - "deems": 1.26e-06, - "delegated": 1.26e-06, - "derelict": 1.26e-06, - "detects": 1.26e-06, - "dignitaries": 1.26e-06, - "dismisses": 1.26e-06, - "dispel": 1.26e-06, - "dissident": 1.26e-06, - "ditches": 1.26e-06, - "django": 1.26e-06, - "donetsk": 1.26e-06, - "dork": 1.26e-06, - "dory": 1.26e-06, - "doves": 1.07e-07, - "dropbox": 1.26e-06, - "droplets": 1.26e-06, - "dusting": 1.26e-06, - "edict": 1.26e-06, - "edmond": 1.26e-06, - "egos": 1.41e-07, - "egregious": 1.26e-06, - "egypts": 1.26e-06, - "elasticity": 1.26e-06, - "elicit": 1.26e-06, - "eo": 1.26e-06, - "epoxy": 1.26e-06, - "estonian": 1.26e-06, - "etienne": 1.26e-06, - "eton": 1.26e-06, - "evangelist": 1.26e-06, - "explorations": 1.26e-06, - "extraterrestrial": 1.26e-06, - "exxon": 1.26e-06, - "eyeball": 1.26e-06, - "faso": 1.26e-06, - "fiend": 1.26e-06, - "fledgling": 1.26e-06, - "flicker": 1.26e-06, - "flimsy": 1.26e-06, - "fob": 1.26e-06, - "footer": 1.26e-06, - "forza": 1.26e-06, - "gambit": 1.26e-06, - "giroud": 1.26e-06, - "giuliani": 1.26e-06, - "gleaming": 1.26e-06, - "glock": 1.26e-06, - "grille": 1.26e-06, - "gullible": 1.26e-06, - "gust": 1.26e-06, - "gypsies": 1.26e-06, - "hae": 1.26e-06, - "happenings": 1.26e-06, - "haw": 1.26e-06, - "hawke": 1.26e-06, - "hearth": 1.26e-06, - "heathen": 1.26e-06, - "hemorrhage": 1.26e-06, - "hereafter": 1.26e-06, - "hijacking": 1.26e-06, - "hinting": 1.26e-06, - "hoarding": 1.26e-06, - "homers": 3.98e-07, - "hoods": 2.57e-07, - "horoscope": 1.26e-06, - "hou": 1.26e-06, - "humanoid": 1.26e-06, - "hurst": 1.26e-06, - "hyung": 1.26e-06, - "idealism": 1.26e-06, - "illegals": 1.26e-06, - "impeach": 1.26e-06, - "improvisation": 1.26e-06, - "influencers": 1.26e-06, - "intergovernmental": 1.26e-06, - "interspersed": 1.26e-06, - "invoking": 1.26e-06, - "irc": 1.26e-06, - "irina": 1.26e-06, - "ironing": 1.26e-06, - "isi": 1.26e-06, - "itt": 1.26e-06, - "jacobson": 1.26e-06, - "jagger": 1.26e-06, - "jaipur": 1.26e-06, - "jazeera": 1.26e-06, - "jeffery": 1.26e-06, - "jeopardize": 1.26e-06, - "jerky": 1.26e-06, - "jig": 1.26e-06, - "jodi": 1.26e-06, - "juliette": 1.26e-06, - "junctions": 1.26e-06, - "jw": 1.26e-06, - "kathmandu": 1.26e-06, - "kearney": 1.26e-06, - "khz": 1.26e-06, - "kieran": 1.26e-06, - "lakeside": 1.26e-06, - "landon": 1.26e-06, - "landry": 1.26e-06, - "lawfully": 1.26e-06, - "lexicon": 1.26e-06, - "licks": 1.26e-06, - "lifetimes": 1.82e-07, - "littered": 1.26e-06, - "livery": 1.26e-06, - "livingstone": 1.26e-06, - "loader": 1.26e-06, - "lobbyist": 1.26e-06, - "loosing": 1.26e-06, - "lucknow": 1.26e-06, - "lurk": 1.26e-06, - "macintosh": 1.26e-06, - "magicians": 2.45e-07, - "marguerite": 1.26e-06, - "marius": 1.26e-06, - "maximise": 1.26e-06, - "mcintyre": 1.26e-06, - "mcpherson": 1.26e-06, - "mech": 1.26e-06, - "medallion": 1.26e-06, - "medusa": 1.26e-06, - "merseyside": 1.26e-06, - "metaphorical": 1.26e-06, - "mindy": 1.26e-06, - "mismatch": 1.26e-06, - "mlm": 1.26e-06, - "monastic": 1.26e-06, - "moneys": 4.79e-07, - "monopolies": 1.26e-06, - "mooney": 1.26e-06, - "mormons": 1.26e-06, - "mot": 1.26e-06, - "mow": 1.26e-06, - "mower": 1.26e-06, - "mozzarella": 1.26e-06, - "multilateral": 1.26e-06, - "munster": 1.26e-06, - "mutated": 1.26e-06, - "naacp": 1.26e-06, - "namesake": 1.26e-06, - "nazareth": 1.26e-06, - "nazism": 1.26e-06, - "nellie": 1.26e-06, - "nia": 1.26e-06, - "nominally": 1.26e-06, - "nord": 1.26e-06, - "normative": 1.26e-06, - "nostrils": 1.26e-06, - "num": 1.26e-06, - "nurtured": 1.26e-06, - "objectivity": 1.26e-06, - "oblige": 1.26e-06, - "ogre": 1.26e-06, - "oiled": 1.26e-06, - "okc": 1.26e-06, - "overheating": 1.26e-06, - "overreacting": 1.26e-06, - "overthrown": 1.26e-06, - "palermo": 1.26e-06, - "palliative": 1.26e-06, - "pao": 1.26e-06, - "parable": 1.26e-06, - "pastime": 1.26e-06, - "patchwork": 1.26e-06, - "patrice": 1.26e-06, - "paulie": 1.26e-06, - "payton": 1.26e-06, - "pedophilia": 1.26e-06, - "peed": 2.57e-08, - "peeps": 1.26e-06, - "pell": 1.26e-06, - "pellet": 1.26e-06, - "pendleton": 1.26e-06, - "peshawar": 1.26e-06, - "pesky": 1.26e-06, - "phobia": 1.26e-06, - "pinball": 1.26e-06, - "planter": 1.26e-06, - "plat": 1.26e-06, - "plenary": 1.26e-06, - "plunder": 1.26e-06, - "poseidon": 1.26e-06, - "postman": 1.26e-06, - "ppg": 1.26e-06, - "prays": 1.26e-06, - "privatisation": 1.26e-06, - "pseudonym": 1.26e-06, - "pullman": 1.26e-06, - "purgatory": 1.26e-06, - "raps": 6.92e-08, - "rationality": 1.26e-06, - "rearing": 1.26e-06, - "rebuke": 1.26e-06, - "rebuttal": 1.26e-06, - "refrigerated": 1.26e-06, - "reliever": 1.26e-06, - "repo": 1.26e-06, - "restarted": 1.26e-06, - "retaliate": 1.26e-06, - "riffs": 1.26e-06, - "riyadh": 1.26e-06, - "rockers": 1.26e-06, - "roo": 1.26e-06, - "rook": 1.26e-06, - "rouse": 1.26e-06, - "sabha": 1.26e-06, - "sampler": 1.26e-06, - "sarajevo": 1.26e-06, - "scaffolding": 1.26e-06, - "scant": 1.26e-06, - "schoolgirl": 1.26e-06, - "seamlessly": 1.26e-06, - "seater": 1.26e-06, - "sedimentary": 1.26e-06, - "semblance": 1.26e-06, - "sensei": 1.26e-06, - "sensibilities": 1.26e-06, - "sheik": 1.26e-06, - "shockingly": 1.26e-06, - "shrewsbury": 1.26e-06, - "sidelined": 1.26e-06, - "signaled": 1.26e-06, - "sine": 1.26e-06, - "skunk": 1.26e-06, - "sloth": 1.26e-06, - "slowdown": 1.26e-06, - "smugglers": 1.74e-07, - "snapshots": 1.26e-06, - "snitch": 1.26e-06, - "snowing": 1.26e-06, - "snug": 1.26e-06, - "solstice": 1.26e-06, - "songwriters": 9.55e-08, - "soups": 1.26e-06, - "sparsely": 1.26e-06, - "spindle": 1.26e-06, - "spoilt": 1.26e-06, - "spoof": 1.26e-06, - "sporty": 1.26e-06, - "spp": 1.26e-06, - "staffer": 1.26e-06, - "sterilization": 1.26e-06, - "stockholders": 1.26e-06, - "stuttering": 1.26e-06, - "subdivided": 1.26e-06, - "subtract": 1.26e-06, - "supermodel": 1.26e-06, - "susceptibility": 1.26e-06, - "sweats": 1.26e-06, - "swedens": 1.26e-06, - "syd": 1.26e-06, - "syphilis": 1.26e-06, - "tabletop": 1.26e-06, - "tactile": 1.26e-06, - "tangle": 1.26e-06, - "ther": 1.26e-06, - "thermodynamics": 1.26e-06, - "thermostat": 1.26e-06, - "thrives": 1.26e-06, - "tiki": 1.26e-06, - "tingling": 1.26e-06, - "tonga": 1.26e-06, - "topeka": 1.26e-06, - "tort": 1.26e-06, - "touchscreen": 1.26e-06, - "tra": 1.26e-06, - "trackers": 1.26e-06, - "transcend": 1.26e-06, - "trope": 1.26e-06, - "tufts": 1.26e-06, - "tumours": 1.26e-06, - "undercut": 1.26e-06, - "underlined": 1.26e-06, - "unfriendly": 1.26e-06, - "universes": 3.89e-07, - "unlicensed": 1.26e-06, - "unproductive": 1.26e-06, - "valuables": 1.26e-06, - "vial": 1.26e-06, - "vick": 1.26e-06, - "vickers": 1.26e-06, - "violinist": 1.26e-06, - "vultures": 1.26e-06, - "warlord": 1.26e-06, - "whence": 1.26e-06, - "whimsical": 1.26e-06, - "wrenching": 1.26e-06, - "yusuf": 1.26e-06, - "zionism": 1.26e-06, - "accordion": 1.23e-06, - "addis": 1.23e-06, - "aeronautical": 1.23e-06, - "ahl": 1.23e-06, - "alimony": 1.23e-06, - "allegheny": 1.23e-06, - "allens": 1.26e-07, - "aloha": 1.23e-06, - "alves": 1.23e-06, - "amtrak": 1.23e-06, - "angelica": 1.23e-06, - "anthropological": 1.23e-06, - "anxiously": 1.23e-06, - "apprehension": 1.23e-06, - "arden": 1.23e-06, - "ares": 1.23e-06, - "articulation": 1.23e-06, - "asiatic": 1.23e-06, - "assailant": 1.23e-06, - "atc": 1.23e-06, - "atletico": 1.23e-06, - "atonement": 1.23e-06, - "auf": 1.23e-06, - "auspicious": 1.23e-06, - "avenger": 1.23e-06, - "bafta": 1.23e-06, - "barricade": 1.23e-06, - "baseless": 1.23e-06, - "beater": 1.23e-06, - "benefactor": 1.23e-06, - "benji": 1.23e-06, - "bhutan": 1.23e-06, - "biographer": 1.23e-06, - "blackness": 1.23e-06, - "bollocks": 1.23e-06, - "booed": 1.23e-06, - "borneo": 1.23e-06, - "boyhood": 1.23e-06, - "bridgeport": 1.23e-06, - "briefcase": 1.23e-06, - "bronson": 1.23e-06, - "brutus": 1.23e-06, - "bugged": 1.23e-06, - "bunkers": 5.37e-08, - "butte": 1.23e-06, - "camaro": 1.23e-06, - "cambridgeshire": 1.23e-06, - "campsite": 1.23e-06, - "cancellations": 1.23e-06, - "canister": 1.23e-06, - "canons": 1.15e-07, - "cate": 1.23e-06, - "caters": 1.23e-06, - "charlies": 1.32e-07, - "chronically": 1.23e-06, - "chuckles": 1.23e-06, - "cloths": 1.23e-06, - "clustered": 1.23e-06, - "cmc": 1.23e-06, - "coherence": 1.23e-06, - "complainant": 1.23e-06, - "complemented": 1.23e-06, - "compounding": 1.23e-06, - "conforming": 1.23e-06, - "connotations": 1.23e-06, - "consonant": 1.23e-06, - "correlations": 1.23e-06, - "cpl": 1.23e-06, - "crazier": 1.23e-06, - "cricketers": 1.23e-06, - "crisps": 1.23e-06, - "criticising": 1.23e-06, - "crockett": 1.23e-06, - "crowning": 1.23e-06, - "crucifixion": 1.23e-06, - "csgo": 1.23e-06, - "cursor": 1.23e-06, - "cx": 1.23e-06, - "deduct": 1.23e-06, - "delegations": 1.23e-06, - "diaphragm": 1.23e-06, - "dichotomy": 1.23e-06, - "diminutive": 1.23e-06, - "dina": 1.23e-06, - "dispensary": 1.23e-06, - "dispensing": 1.23e-06, - "disregarded": 1.23e-06, - "dissidents": 1.23e-06, - "doubtless": 1.23e-06, - "dreamers": 6.31e-08, - "dunlop": 1.23e-06, - "dwindling": 1.23e-06, - "elisa": 1.23e-06, - "elsie": 1.23e-06, - "embellished": 1.23e-06, - "emp": 1.23e-06, - "emphatic": 1.23e-06, - "enfield": 1.23e-06, - "enlightening": 1.23e-06, - "enoch": 1.23e-06, - "enrolment": 1.23e-06, - "etf": 1.23e-06, - "exclamation": 1.23e-06, - "executioner": 1.23e-06, - "exempted": 1.23e-06, - "exerted": 1.23e-06, - "exiles": 1.23e-06, - "expressway": 1.23e-06, - "fairer": 1.23e-06, - "fairest": 1.23e-06, - "filament": 1.23e-06, - "fk": 1.23e-06, - "flemish": 1.23e-06, - "foyer": 1.23e-06, - "fra": 1.23e-06, - "fresco": 1.23e-06, - "frigate": 1.23e-06, - "fuselage": 1.23e-06, - "gait": 1.23e-06, - "genitalia": 1.23e-06, - "ger": 1.23e-06, - "gillette": 1.23e-06, - "gilt": 1.23e-06, - "glider": 1.23e-06, - "goers": 1.23e-06, - "granville": 1.23e-06, - "gravely": 1.23e-06, - "grime": 1.23e-06, - "guerrillas": 1.23e-06, - "hanley": 1.23e-06, - "harman": 1.23e-06, - "heron": 1.23e-06, - "heyday": 1.23e-06, - "highlanders": 1.23e-06, - "hillarys": 7.94e-08, - "hospitalization": 1.23e-06, - "illogical": 1.23e-06, - "illuminati": 1.23e-06, - "ima": 6.61e-07, - "imma": 3.24e-07, - "impart": 1.23e-06, - "incapacitated": 1.23e-06, - "incoherent": 1.23e-06, - "indulgent": 1.23e-06, - "inert": 1.23e-06, - "inflicting": 1.23e-06, - "initiates": 1.23e-06, - "interlude": 1.23e-06, - "internationals": 4.68e-07, - "interpreters": 1.23e-06, - "interrupts": 1.23e-06, - "invoices": 1.23e-06, - "irradiation": 1.23e-06, - "irritable": 1.23e-06, - "jace": 1.23e-06, - "jain": 1.23e-06, - "jammu": 1.23e-06, - "jl": 1.23e-06, - "jm": 1.23e-06, - "johanna": 1.23e-06, - "johnnie": 1.23e-06, - "joss": 1.23e-06, - "kendra": 1.23e-06, - "kermit": 1.23e-06, - "kwh": 1.23e-06, - "laminated": 1.23e-06, - "leaderboard": 1.23e-06, - "leung": 1.23e-06, - "leviathan": 1.23e-06, - "ligaments": 1.23e-06, - "lis": 3.8e-07, - "lj": 1.23e-06, - "lonesome": 1.23e-06, - "lps": 1.74e-07, - "lug": 1.23e-06, - "lukewarm": 1.23e-06, - "lumbar": 1.23e-06, - "lumen": 1.23e-06, - "luv": 1.23e-06, - "luxuries": 1.23e-06, - "lyman": 1.23e-06, - "lyn": 1.23e-06, - "maison": 1.23e-06, - "maneuvering": 1.23e-06, - "marathons": 1.23e-06, - "mariano": 1.23e-06, - "markup": 1.23e-06, - "marred": 1.23e-06, - "melrose": 1.23e-06, - "midwives": 1.23e-06, - "miniseries": 1.23e-06, - "mismanagement": 1.23e-06, - "mitochondria": 1.23e-06, - "mixtures": 1.23e-06, - "moffat": 1.23e-06, - "mongolian": 1.23e-06, - "monmouth": 1.23e-06, - "motley": 1.23e-06, - "mouthed": 1.23e-06, - "mowing": 1.23e-06, - "msp": 1.23e-06, - "multiculturalism": 1.23e-06, - "musics": 2.51e-07, - "mussels": 1.23e-06, - "nbsp": 1.23e-06, - "netball": 1.23e-06, - "nieces": 2e-07, - "nit": 1.23e-06, - "nottinghamshire": 1.23e-06, - "nuance": 1.23e-06, - "obstruct": 1.23e-06, - "oftentimes": 1.23e-06, - "orthopedic": 1.23e-06, - "osborn": 1.23e-06, - "osha": 1.23e-06, - "outages": 1.23e-06, - "outcast": 1.23e-06, - "outings": 1.23e-06, - "overcrowded": 1.23e-06, - "overriding": 1.23e-06, - "ozil": 1.23e-06, - "pai": 1.23e-06, - "pane": 1.23e-06, - "penultimate": 1.23e-06, - "peppermint": 1.23e-06, - "percentile": 1.23e-06, - "persuading": 1.23e-06, - "pharrell": 1.23e-06, - "piety": 1.23e-06, - "pinot": 1.23e-06, - "placenta": 1.23e-06, - "planters": 1.23e-06, - "playgrounds": 1.23e-06, - "playin": 1.23e-06, - "pleasurable": 1.23e-06, - "plough": 1.23e-06, - "pogba": 1.23e-06, - "potentials": 1.23e-06, - "ppv": 1.23e-06, - "prefect": 1.23e-06, - "prevails": 1.23e-06, - "pri": 1.23e-06, - "propagate": 1.23e-06, - "qr": 1.23e-06, - "quot": 1.23e-06, - "redefine": 1.23e-06, - "reeling": 1.23e-06, - "reinstate": 1.23e-06, - "remington": 1.23e-06, - "remit": 1.23e-06, - "remixes": 1.23e-06, - "respondent": 1.23e-06, - "resumption": 1.23e-06, - "retailing": 1.23e-06, - "retrograde": 1.23e-06, - "reunification": 1.23e-06, - "reused": 1.23e-06, - "revere": 1.23e-06, - "riggs": 1.23e-06, - "robo": 1.23e-06, - "romantically": 1.23e-06, - "rosario": 1.23e-06, - "rout": 1.23e-06, - "saab": 1.23e-06, - "salmonella": 1.23e-06, - "sargent": 1.23e-06, - "savoy": 1.23e-06, - "scarecrow": 1.23e-06, - "sceptical": 1.23e-06, - "scrubbing": 1.23e-06, - "seq": 1.23e-06, - "servings": 1.23e-06, - "shiv": 1.23e-06, - "shrinks": 1.23e-06, - "siam": 1.23e-06, - "simons": 1.02e-06, - "smeared": 1.23e-06, - "softening": 1.23e-06, - "soybean": 1.23e-06, - "splashing": 1.23e-06, - "standardization": 1.23e-06, - "stardom": 1.23e-06, - "steamy": 1.23e-06, - "stomachs": 6.31e-08, - "stopper": 1.23e-06, - "strolling": 1.23e-06, - "subtlety": 1.23e-06, - "swells": 1.23e-06, - "swindon": 1.23e-06, - "symptomatic": 1.23e-06, - "tenets": 1.23e-06, - "tennant": 1.23e-06, - "tfw": 1.23e-06, - "thunderbolt": 1.23e-06, - "tiered": 1.23e-06, - "toggle": 1.23e-06, - "tonal": 1.23e-06, - "torrance": 1.23e-06, - "totem": 1.23e-06, - "tourney": 1.23e-06, - "tran": 1.23e-06, - "transitioned": 1.23e-06, - "transmitters": 1.23e-06, - "tripled": 1.23e-06, - "uconn": 1.23e-06, - "ulcers": 1.23e-06, - "ultrasonic": 1.23e-06, - "unicorns": 1.23e-06, - "unlawfully": 1.23e-06, - "unveils": 1.23e-06, - "unwind": 1.23e-06, - "unwise": 1.23e-06, - "valentina": 1.23e-06, - "vaping": 1.23e-06, - "verifying": 1.23e-06, - "vo": 1.23e-06, - "watchful": 1.23e-06, - "waterford": 1.23e-06, - "wayward": 1.23e-06, - "willoughby": 1.23e-06, - "workmanship": 1.23e-06, - "wrecks": 1.23e-06, - "wren": 1.23e-06, - "wronged": 1.23e-06, - "yoke": 1.23e-06, - "za": 1.23e-06, - "zuma": 1.23e-06, - "acorn": 1.2e-06, - "aga": 1.2e-06, - "ahmedabad": 1.2e-06, - "aiken": 1.2e-06, - "ailing": 1.2e-06, - "airflow": 1.2e-06, - "alamo": 1.2e-06, - "aloft": 1.2e-06, - "amalgamation": 1.2e-06, - "amazes": 1.2e-06, - "amman": 1.2e-06, - "andersons": 1.15e-07, - "aneurysm": 1.2e-06, - "antelope": 1.2e-06, - "antigua": 1.2e-06, - "arcadia": 1.2e-06, - "archdiocese": 1.2e-06, - "ast": 1.2e-06, - "automate": 1.2e-06, - "barre": 1.2e-06, - "basilica": 1.2e-06, - "bassett": 1.2e-06, - "bens": 1.62e-07, - "bertie": 1.2e-06, - "beset": 1.2e-06, - "bitchy": 1.2e-06, - "blaster": 1.2e-06, - "bleep": 1.2e-06, - "blueberries": 1.2e-06, - "blushing": 1.2e-06, - "bowels": 1.2e-06, - "boyce": 1.2e-06, - "braided": 1.2e-06, - "brazilians": 1.2e-06, - "bridesmaid": 1.2e-06, - "brie": 1.2e-06, - "brochures": 1.2e-06, - "burroughs": 1.2e-06, - "capping": 1.2e-06, - "cartier": 1.2e-06, - "cashing": 1.2e-06, - "catalogs": 1.2e-06, - "cautioned": 1.2e-06, - "cavern": 1.2e-06, - "cedric": 1.2e-06, - "certify": 1.2e-06, - "champaign": 1.2e-06, - "channeling": 1.2e-06, - "checker": 1.2e-06, - "chivalry": 1.2e-06, - "chopra": 1.2e-06, - "civilised": 1.2e-06, - "clearwater": 1.2e-06, - "cocoon": 1.2e-06, - "comms": 1.2e-06, - "confessing": 1.2e-06, - "conspiracies": 1.2e-06, - "constants": 1.2e-06, - "cooperated": 1.2e-06, - "cornerback": 1.2e-06, - "credence": 1.2e-06, - "creeks": 1.48e-07, - "crossfire": 1.2e-06, - "currie": 1.2e-06, - "dada": 1.2e-06, - "dax": 1.2e-06, - "debtor": 1.2e-06, - "denouncing": 1.2e-06, - "densities": 1.2e-06, - "derail": 1.2e-06, - "desi": 1.2e-06, - "disallowed": 1.2e-06, - "dispatcher": 1.2e-06, - "dispatches": 1.2e-06, - "dissolving": 1.2e-06, - "distort": 1.2e-06, - "diverting": 1.2e-06, - "dms": 3.02e-07, - "dobbs": 1.2e-06, - "draught": 1.2e-06, - "dreary": 1.2e-06, - "dropout": 1.2e-06, - "duped": 1.2e-06, - "duplicated": 1.2e-06, - "earle": 1.2e-06, - "earring": 1.2e-06, - "elsevier": 1.2e-06, - "emptying": 1.2e-06, - "enclosures": 1.2e-06, - "endangering": 1.2e-06, - "environmentalists": 1.2e-06, - "erroneously": 1.2e-06, - "erwin": 1.2e-06, - "evaporation": 1.2e-06, - "evokes": 1.2e-06, - "fairbanks": 1.2e-06, - "fared": 1.2e-06, - "felicia": 1.2e-06, - "fingered": 1.2e-06, - "fished": 1.2e-06, - "flicks": 1.2e-06, - "foregoing": 1.2e-06, - "frighten": 1.2e-06, - "gable": 1.2e-06, - "gags": 1.2e-06, - "gallows": 1.2e-06, - "gandalf": 1.2e-06, - "gendered": 1.2e-06, - "georgina": 1.2e-06, - "goddesses": 1.2e-06, - "gorbachev": 1.2e-06, - "guernsey": 1.2e-06, - "guilds": 1.41e-07, - "gunning": 1.2e-06, - "hahah": 1.2e-06, - "haiku": 1.2e-06, - "hairstyles": 1.2e-06, - "harrow": 1.2e-06, - "hatchet": 1.2e-06, - "henceforth": 1.2e-06, - "hesitated": 1.2e-06, - "heterogeneous": 1.2e-06, - "hilltop": 1.2e-06, - "hines": 1.2e-06, - "hobo": 1.2e-06, - "housework": 1.2e-06, - "howdy": 1.2e-06, - "hoy": 1.2e-06, - "hsbc": 1.2e-06, - "huddle": 1.2e-06, - "humiliate": 1.2e-06, - "hurled": 1.2e-06, - "icloud": 1.2e-06, - "imax": 1.2e-06, - "importer": 1.2e-06, - "indignation": 1.2e-06, - "indus": 1.2e-06, - "ingrained": 1.2e-06, - "inhaled": 1.2e-06, - "injustices": 1.2e-06, - "inked": 1.2e-06, - "inspirations": 1.2e-06, - "irritate": 1.2e-06, - "jayne": 1.2e-06, - "jive": 1.2e-06, - "kaye": 1.2e-06, - "keenly": 1.2e-06, - "kiki": 1.2e-06, - "kilda": 1.2e-06, - "kimberley": 1.2e-06, - "kyiv": 1.2e-06, - "kyung": 1.2e-06, - "lakhs": 1.2e-06, - "lal": 1.2e-06, - "lass": 1.2e-06, - "leila": 1.2e-06, - "lesion": 1.2e-06, - "lieutenants": 1.02e-07, - "lockwood": 1.2e-06, - "lull": 1.2e-06, - "lullaby": 1.2e-06, - "macedonian": 1.2e-06, - "machining": 1.2e-06, - "mackerel": 1.2e-06, - "marge": 1.2e-06, - "marquette": 1.2e-06, - "martina": 1.2e-06, - "massages": 1.2e-06, - "mathias": 1.2e-06, - "mayfield": 1.2e-06, - "medallist": 1.2e-06, - "memorized": 1.2e-06, - "mep": 1.2e-06, - "metabolites": 1.2e-06, - "metaphysics": 1.2e-06, - "meticulously": 1.2e-06, - "migraines": 1.2e-06, - "mite": 1.2e-06, - "momentary": 1.2e-06, - "montague": 1.2e-06, - "moratorium": 1.2e-06, - "morgans": 2.45e-07, - "morgue": 1.2e-06, - "movin": 1.2e-06, - "mullen": 1.2e-06, - "mulligan": 1.2e-06, - "multiplying": 1.2e-06, - "munch": 1.2e-06, - "muppet": 1.2e-06, - "naps": 1.2e-06, - "nascent": 1.2e-06, - "netted": 1.2e-06, - "neurotic": 1.2e-06, - "newborns": 8.91e-08, - "noone": 1.2e-06, - "novella": 1.2e-06, - "obstructing": 1.2e-06, - "octane": 1.2e-06, - "octave": 1.2e-06, - "oda": 1.2e-06, - "oldies": 1.2e-06, - "omni": 1.2e-06, - "ong": 1.2e-06, - "organizes": 1.2e-06, - "pakistanis": 1.2e-06, - "penalized": 1.2e-06, - "piercings": 1.2e-06, - "pitbull": 1.2e-06, - "plugins": 1.2e-06, - "polaris": 1.2e-06, - "pondering": 1.2e-06, - "popes": 1.17e-06, - "postmodern": 1.2e-06, - "precincts": 1.2e-06, - "prerogative": 1.2e-06, - "procured": 1.2e-06, - "proxies": 1.2e-06, - "prudence": 1.2e-06, - "prudential": 1.2e-06, - "pry": 1.2e-06, - "psychoanalysis": 1.2e-06, - "puffs": 1.2e-06, - "purged": 1.2e-06, - "purposefully": 1.2e-06, - "pursues": 1.2e-06, - "radiotherapy": 1.2e-06, - "rationally": 1.2e-06, - "recoveries": 1.2e-06, - "reddy": 1.2e-06, - "remarried": 1.2e-06, - "rembrandt": 1.2e-06, - "remedial": 1.2e-06, - "repealing": 1.2e-06, - "repressive": 1.2e-06, - "resonates": 1.2e-06, - "resourceful": 1.2e-06, - "rms": 6.46e-08, - "rosenthal": 1.2e-06, - "rotates": 1.2e-06, - "runtime": 1.2e-06, - "rus": 3.63e-08, - "sacrificial": 1.2e-06, - "schulz": 1.2e-06, - "scorching": 1.2e-06, - "scottsdale": 1.2e-06, - "scribe": 1.2e-06, - "sentry": 1.2e-06, - "seung": 1.2e-06, - "sexton": 1.2e-06, - "sheeran": 1.2e-06, - "shelled": 1.2e-06, - "shhh": 1.2e-06, - "shingles": 1.2e-06, - "siegel": 1.2e-06, - "silencing": 1.2e-06, - "silverware": 1.2e-06, - "singapores": 1.2e-06, - "skillet": 1.2e-06, - "slimy": 1.2e-06, - "slipper": 1.2e-06, - "sloping": 1.2e-06, - "snout": 1.2e-06, - "soliciting": 1.2e-06, - "southwark": 1.2e-06, - "spank": 1.2e-06, - "sparking": 1.2e-06, - "specter": 1.2e-06, - "spied": 1.2e-06, - "spinners": 1.2e-06, - "spits": 1.2e-06, - "statehood": 1.2e-06, - "steeped": 1.2e-06, - "sti": 1.2e-06, - "storyteller": 1.2e-06, - "strewn": 1.2e-06, - "stroller": 1.2e-06, - "stub": 1.2e-06, - "subgroup": 1.2e-06, - "supra": 1.2e-06, - "suspiciously": 1.2e-06, - "sutter": 1.2e-06, - "swaying": 1.2e-06, - "tact": 1.2e-06, - "taxonomy": 1.2e-06, - "tcu": 1.2e-06, - "televisions": 4.79e-07, - "tinged": 1.2e-06, - "tirelessly": 1.2e-06, - "tiresome": 1.2e-06, - "toolkit": 1.2e-06, - "tribunals": 1.07e-07, - "tundra": 1.2e-06, - "tunic": 1.2e-06, - "tweaked": 1.2e-06, - "ukrainians": 1.2e-06, - "uncompromising": 1.2e-06, - "undoing": 1.2e-06, - "unmistakable": 1.2e-06, - "unruly": 1.2e-06, - "valuing": 1.2e-06, - "vaulted": 1.2e-06, - "veal": 1.2e-06, - "vegans": 1.2e-06, - "venomous": 1.2e-06, - "viceroy": 1.2e-06, - "videotape": 1.2e-06, - "walgreens": 7.59e-08, - "waxed": 1.2e-06, - "wearer": 1.2e-06, - "webs": 1.55e-07, - "whiting": 1.2e-06, - "willful": 1.2e-06, - "woodley": 1.2e-06, - "worcestershire": 1.2e-06, - "zeta": 1.2e-06, - "abnormally": 1.17e-06, - "abstain": 1.17e-06, - "adriana": 1.17e-06, - "affections": 1.17e-06, - "aggregates": 1.17e-06, - "ahn": 1.17e-06, - "airliner": 1.17e-06, - "alchemist": 1.17e-06, - "alexandre": 1.17e-06, - "alfa": 1.17e-06, - "allegory": 1.17e-06, - "alp": 1.17e-06, - "ambulances": 1.17e-06, - "antagonists": 1.17e-06, - "aortic": 1.17e-06, - "ard": 1.17e-06, - "ashland": 1.17e-06, - "assimilated": 1.17e-06, - "averted": 1.17e-06, - "backpacks": 1.17e-06, - "banish": 1.17e-06, - "bateman": 1.17e-06, - "battleground": 1.17e-06, - "beets": 1.17e-06, - "bellows": 1.45e-08, - "blisters": 1.17e-06, - "blob": 1.17e-06, - "bluntly": 1.17e-06, - "bohemia": 1.17e-06, - "bonaparte": 1.17e-06, - "boosters": 1.17e-06, - "bootleg": 1.17e-06, - "bos": 2.51e-07, - "boyz": 1.17e-06, - "brine": 1.17e-06, - "busty": 1.17e-06, - "butchers": 6.61e-07, - "callous": 1.17e-06, - "canadiens": 1.17e-06, - "cantonese": 1.17e-06, - "capcom": 1.17e-06, - "cardiology": 1.17e-06, - "carlin": 1.17e-06, - "cartoonist": 1.17e-06, - "casablanca": 1.17e-06, - "casserole": 1.17e-06, - "catalina": 1.17e-06, - "cellulose": 1.17e-06, - "cfr": 1.17e-06, - "charred": 1.17e-06, - "choreographed": 1.17e-06, - "churn": 1.17e-06, - "circuitry": 1.17e-06, - "clearances": 1.17e-06, - "cloned": 1.17e-06, - "cloves": 1.17e-06, - "commendable": 1.17e-06, - "competitively": 1.17e-06, - "compress": 1.17e-06, - "comptroller": 1.17e-06, - "conventionally": 1.17e-06, - "coon": 1.17e-06, - "correlates": 1.17e-06, - "creole": 1.17e-06, - "crusades": 1.17e-06, - "cubicle": 1.17e-06, - "curtailed": 1.17e-06, - "cystic": 1.17e-06, - "dainty": 1.17e-06, - "damnit": 1.17e-06, - "darlington": 1.17e-06, - "davison": 1.17e-06, - "decimated": 1.17e-06, - "decrees": 1.17e-06, - "deflected": 1.17e-06, - "deliverance": 1.17e-06, - "destitute": 1.17e-06, - "devi": 1.17e-06, - "dexterity": 1.17e-06, - "dietrich": 1.17e-06, - "dilution": 1.17e-06, - "dissipated": 1.17e-06, - "dolce": 1.17e-06, - "drugstore": 1.17e-06, - "dvr": 1.17e-06, - "eczema": 1.17e-06, - "ejection": 1.17e-06, - "electrolyte": 1.17e-06, - "elitist": 1.17e-06, - "emailing": 1.17e-06, - "emphasise": 1.17e-06, - "emphatically": 1.17e-06, - "engulfed": 1.17e-06, - "equine": 1.17e-06, - "exclusivity": 1.17e-06, - "exes": 1.05e-08, - "failings": 1.17e-06, - "fannie": 1.17e-06, - "faucet": 1.17e-06, - "faust": 1.17e-06, - "fbis": 1.17e-06, - "fdr": 1.17e-06, - "feeders": 1.17e-06, - "feisty": 1.17e-06, - "fink": 1.17e-06, - "flexing": 1.17e-06, - "foothold": 1.17e-06, - "forbidding": 1.17e-06, - "forfeited": 1.17e-06, - "formulations": 1.17e-06, - "fortifications": 1.17e-06, - "fouled": 1.17e-06, - "fourier": 1.17e-06, - "fraternal": 1.17e-06, - "frau": 1.17e-06, - "functioned": 1.17e-06, - "fuses": 1.17e-06, - "gaines": 1.17e-06, - "gamergate": 1.17e-06, - "gan": 1.17e-06, - "generalizations": 1.17e-06, - "ghastly": 1.17e-06, - "gia": 1.17e-06, - "gonzalo": 1.17e-06, - "gorillas": 5.89e-08, - "goto": 1.17e-06, - "gratifying": 1.17e-06, - "gretchen": 1.17e-06, - "greys": 7.08e-07, - "gymnast": 1.17e-06, - "haircuts": 1.17e-06, - "hairline": 1.17e-06, - "handcuffed": 1.17e-06, - "handset": 1.17e-06, - "harrowing": 1.17e-06, - "headlining": 1.17e-06, - "heiress": 1.17e-06, - "hells": 1.15e-06, - "herzegovina": 1.17e-06, - "hhs": 1.17e-06, - "higgs": 1.17e-06, - "hinged": 1.17e-06, - "hola": 1.17e-06, - "holster": 1.17e-06, - "horseman": 1.17e-06, - "humanist": 1.17e-06, - "hunch": 1.17e-06, - "huntsville": 1.17e-06, - "impenetrable": 1.17e-06, - "inconceivable": 1.17e-06, - "industrialization": 1.17e-06, - "inf": 1.17e-06, - "infographic": 1.17e-06, - "infringing": 1.17e-06, - "innovators": 1.17e-06, - "islington": 1.17e-06, - "issuer": 1.17e-06, - "janes": 3.55e-07, - "keenan": 1.17e-06, - "keg": 1.17e-06, - "kennedys": 3.89e-07, - "kissinger": 1.17e-06, - "kms": 1.17e-06, - "koi": 1.17e-06, - "kwon": 1.17e-06, - "lancet": 1.17e-06, - "landfall": 1.17e-06, - "lawmaker": 1.17e-06, - "layoffs": 1.17e-06, - "leningrad": 1.17e-06, - "lerner": 1.17e-06, - "lifeguard": 1.17e-06, - "limerick": 1.17e-06, - "lockers": 1.17e-06, - "lolita": 1.17e-06, - "loner": 1.17e-06, - "longed": 1.17e-06, - "loyola": 1.17e-06, - "lukaku": 1.17e-06, - "mariana": 1.17e-06, - "mau": 1.17e-06, - "mays": 1.07e-06, - "mca": 1.17e-06, - "mcmaster": 1.17e-06, - "mimicking": 1.17e-06, - "minimally": 1.17e-06, - "mistook": 1.17e-06, - "mogul": 1.17e-06, - "moles": 5.75e-08, - "monet": 1.17e-06, - "mornin": 1.17e-06, - "morph": 1.17e-06, - "mort": 1.17e-06, - "motorist": 1.17e-06, - "muriel": 1.17e-06, - "murphys": 1.7e-07, - "musa": 1.17e-06, - "mysticism": 1.17e-06, - "nagar": 1.17e-06, - "nauseous": 1.17e-06, - "nicks": 1.07e-06, - "nimble": 1.17e-06, - "nomad": 1.17e-06, - "nouveau": 1.17e-06, - "nrc": 1.17e-06, - "oleary": 1.17e-06, - "oneal": 5.5e-08, - "osullivan": 1.17e-06, - "objectionable": 1.17e-06, - "obliterated": 1.17e-06, - "obtainable": 1.17e-06, - "omit": 1.17e-06, - "oncoming": 1.17e-06, - "opportunistic": 1.17e-06, - "orson": 1.17e-06, - "otters": 1.17e-06, - "outlandish": 1.17e-06, - "outlying": 1.17e-06, - "oxidative": 1.17e-06, - "pacifist": 1.17e-06, - "pacquiao": 1.17e-06, - "paraphrase": 1.17e-06, - "pathfinder": 1.17e-06, - "pedagogical": 1.17e-06, - "pediatrician": 1.17e-06, - "pegged": 1.17e-06, - "pelican": 1.17e-06, - "pembroke": 1.17e-06, - "penchant": 1.17e-06, - "persians": 1.17e-06, - "planar": 1.17e-06, - "polluting": 1.17e-06, - "polygamy": 1.17e-06, - "ponytail": 1.17e-06, - "poplar": 1.17e-06, - "primordial": 1.17e-06, - "projectiles": 1.17e-06, - "propositions": 1.17e-06, - "pubic": 1.17e-06, - "publicist": 1.17e-06, - "purposeful": 1.17e-06, - "purses": 1.17e-06, - "quorum": 1.17e-06, - "rabbis": 1.05e-07, - "raman": 1.17e-06, - "ranchers": 1.17e-06, - "rarest": 1.17e-06, - "rascal": 1.17e-06, - "reared": 1.17e-06, - "refuted": 1.17e-06, - "resented": 1.17e-06, - "revue": 1.17e-06, - "reza": 1.17e-06, - "rigor": 1.17e-06, - "rioters": 1.17e-06, - "rizzo": 1.17e-06, - "roanoke": 1.17e-06, - "robins": 6.31e-07, - "rochdale": 1.17e-06, - "romano": 1.17e-06, - "roosters": 6.31e-08, - "roper": 1.17e-06, - "rosters": 1.17e-06, - "sacking": 1.17e-06, - "scarring": 1.17e-06, - "sch": 1.17e-06, - "scheming": 1.17e-06, - "scorched": 1.17e-06, - "scotsman": 1.17e-06, - "scotus": 1.17e-06, - "scripting": 1.17e-06, - "seatbelt": 1.17e-06, - "shank": 1.17e-06, - "sharpened": 1.17e-06, - "shortlist": 1.17e-06, - "sidebar": 1.17e-06, - "silverman": 1.17e-06, - "skeptics": 1.17e-06, - "slashing": 1.17e-06, - "sledge": 1.17e-06, - "slotted": 1.17e-06, - "smes": 5.13e-08, - "sociopath": 1.17e-06, - "sonya": 1.17e-06, - "southward": 1.17e-06, - "sparkly": 1.17e-06, - "specialises": 1.17e-06, - "speculating": 1.17e-06, - "spock": 1.17e-06, - "sponges": 1.17e-06, - "squeaky": 1.17e-06, - "stargate": 1.17e-06, - "steamship": 1.17e-06, - "stinging": 1.17e-06, - "subbed": 1.17e-06, - "summoning": 1.17e-06, - "swann": 1.17e-06, - "tatiana": 1.17e-06, - "tbsp": 1.17e-06, - "telecast": 1.17e-06, - "tenancy": 1.17e-06, - "terre": 1.17e-06, - "testimonial": 1.17e-06, - "thence": 1.17e-06, - "thyme": 1.17e-06, - "tiniest": 1.17e-06, - "toner": 1.17e-06, - "totalling": 1.17e-06, - "trafficked": 1.17e-06, - "trampled": 1.17e-06, - "transponder": 1.17e-06, - "trashy": 1.17e-06, - "travers": 1.17e-06, - "trimester": 1.17e-06, - "tron": 1.17e-06, - "tubs": 1.17e-06, - "tully": 1.17e-06, - "tum": 1.17e-06, - "umar": 1.17e-06, - "unfaithful": 1.17e-06, - "unholy": 1.17e-06, - "unify": 1.17e-06, - "unregulated": 1.17e-06, - "unscrupulous": 1.17e-06, - "unwittingly": 1.17e-06, - "upland": 1.17e-06, - "upped": 1.17e-06, - "ushered": 1.17e-06, - "vauxhall": 1.17e-06, - "vb": 1.17e-06, - "verbatim": 1.17e-06, - "villiers": 1.17e-06, - "virgo": 1.17e-06, - "vito": 1.17e-06, - "voiceover": 1.17e-06, - "willfully": 1.17e-06, - "worshipping": 1.17e-06, - "yawn": 1.17e-06, - "yiddish": 1.17e-06, - "adrift": 1.15e-06, - "aegis": 1.15e-06, - "aiden": 1.15e-06, - "ais": 1.95e-07, - "alastair": 1.15e-06, - "alleys": 6.03e-08, - "almanac": 1.15e-06, - "aloe": 1.15e-06, - "amphibious": 1.15e-06, - "analyzer": 1.15e-06, - "ancillary": 1.15e-06, - "anesthetic": 1.15e-06, - "anglia": 1.15e-06, - "antioch": 1.15e-06, - "antiquated": 1.15e-06, - "apologised": 1.15e-06, - "aquarius": 1.15e-06, - "armani": 1.15e-06, - "ascot": 1.15e-06, - "aussies": 1.15e-06, - "averse": 1.15e-06, - "bandages": 1.15e-06, - "barges": 1.15e-06, - "bds": 1.15e-06, - "beaded": 1.15e-06, - "beagle": 1.15e-06, - "beaufort": 1.15e-06, - "beavers": 7.08e-08, - "bess": 1.15e-06, - "biceps": 1.15e-06, - "blanco": 1.15e-06, - "blindfolded": 1.15e-06, - "blokes": 6.31e-08, - "boomerang": 1.15e-06, - "borussia": 1.15e-06, - "breton": 1.15e-06, - "brill": 1.15e-06, - "brim": 1.15e-06, - "broadening": 1.15e-06, - "caged": 1.15e-06, - "caine": 1.15e-06, - "calligraphy": 1.15e-06, - "capri": 1.15e-06, - "carpenters": 3.72e-07, - "carthage": 1.15e-06, - "castes": 1.15e-06, - "cauldron": 1.15e-06, - "celebratory": 1.15e-06, - "cfs": 1.15e-06, - "chalet": 1.15e-06, - "chao": 1.15e-06, - "childless": 1.15e-06, - "chimes": 1.15e-06, - "cleanser": 1.15e-06, - "clemens": 1.15e-06, - "clipper": 1.15e-06, - "closets": 1.15e-06, - "clouded": 1.15e-06, - "cma": 1.15e-06, - "coalitions": 2.95e-07, - "colossus": 1.15e-06, - "conductive": 1.15e-06, - "coney": 1.15e-06, - "congregational": 1.15e-06, - "cooperatives": 1.15e-06, - "copa": 1.15e-06, - "corals": 1.15e-06, - "corral": 1.15e-06, - "cortical": 1.15e-06, - "countering": 1.15e-06, - "crc": 1.15e-06, - "cremation": 1.15e-06, - "crt": 1.15e-06, - "cubans": 5.13e-08, - "curricular": 1.15e-06, - "curving": 1.15e-06, - "decked": 1.15e-06, - "deepened": 1.15e-06, - "deliberation": 1.15e-06, - "dermatologist": 1.15e-06, - "detonation": 1.15e-06, - "deus": 1.15e-06, - "deviate": 1.15e-06, - "devolution": 1.15e-06, - "dey": 1.15e-06, - "dialing": 1.15e-06, - "diode": 1.15e-06, - "discharges": 1.15e-06, - "disruptions": 1.15e-06, - "distancing": 1.15e-06, - "ditching": 1.15e-06, - "dix": 1.15e-06, - "donkeys": 1.05e-07, - "dorchester": 1.15e-06, - "dorsey": 1.15e-06, - "downer": 1.15e-06, - "dreyfus": 1.15e-06, - "dribble": 1.15e-06, - "dutchman": 1.15e-06, - "duval": 1.15e-06, - "dwyer": 1.15e-06, - "earbuds": 1.15e-06, - "egalitarian": 1.15e-06, - "endocrine": 1.15e-06, - "energized": 1.15e-06, - "epi": 1.15e-06, - "epithelial": 1.15e-06, - "equates": 1.15e-06, - "erickson": 1.15e-06, - "ernesto": 1.15e-06, - "ester": 1.15e-06, - "excitedly": 1.15e-06, - "excruciating": 1.15e-06, - "executes": 1.15e-06, - "farthest": 1.15e-06, - "fateful": 1.15e-06, - "fatter": 1.15e-06, - "fedora": 1.15e-06, - "fer": 1.15e-06, - "fia": 1.15e-06, - "fillers": 1.15e-06, - "finley": 1.15e-06, - "flak": 1.15e-06, - "flamboyant": 1.15e-06, - "flamingo": 1.15e-06, - "flutter": 1.15e-06, - "foodie": 1.15e-06, - "foolishness": 1.15e-06, - "forrester": 1.15e-06, - "foundational": 1.15e-06, - "frey": 1.15e-06, - "furnaces": 1.15e-06, - "fuzz": 1.15e-06, - "gills": 1.51e-07, - "gmc": 1.15e-06, - "goodyear": 1.15e-06, - "gout": 1.15e-06, - "guillermo": 1.15e-06, - "hailey": 1.15e-06, - "harlow": 1.15e-06, - "harsher": 1.15e-06, - "hatching": 1.15e-06, - "hearst": 1.15e-06, - "hepatic": 1.15e-06, - "hertz": 1.15e-06, - "hirsch": 1.15e-06, - "hoboken": 1.15e-06, - "homegrown": 1.15e-06, - "hoof": 1.15e-06, - "horowitz": 1.15e-06, - "housemates": 1.15e-06, - "howards": 2.57e-07, - "hues": 1.15e-06, - "huey": 1.15e-06, - "humbling": 1.15e-06, - "hwang": 1.15e-06, - "hydrocarbons": 1.15e-06, - "idris": 1.15e-06, - "impala": 1.15e-06, - "impurities": 1.15e-06, - "incognito": 1.15e-06, - "indestructible": 1.15e-06, - "inhibiting": 1.15e-06, - "inks": 4.57e-08, - "innocuous": 1.15e-06, - "inns": 1.1e-07, - "insofar": 1.15e-06, - "institut": 1.15e-06, - "intrinsically": 1.15e-06, - "iraqis": 1.15e-06, - "irishman": 1.15e-06, - "islander": 1.15e-06, - "ism": 1.15e-06, - "ismail": 1.15e-06, - "jana": 1.15e-06, - "janis": 1.15e-06, - "jest": 1.15e-06, - "jesuits": 1.15e-06, - "jillian": 1.15e-06, - "josephs": 1.51e-07, - "kal": 1.15e-06, - "kam": 1.15e-06, - "kee": 1.15e-06, - "khalil": 1.15e-06, - "lambda": 1.15e-06, - "leaky": 1.15e-06, - "lehigh": 1.15e-06, - "leicestershire": 1.15e-06, - "leto": 1.15e-06, - "libido": 1.15e-06, - "lina": 1.15e-06, - "linn": 1.15e-06, - "linus": 1.15e-06, - "lizzy": 1.15e-06, - "lorna": 1.15e-06, - "loyalties": 1.15e-06, - "lynching": 1.15e-06, - "lynx": 1.15e-06, - "maddox": 1.15e-06, - "mage": 1.15e-06, - "mahatma": 1.15e-06, - "mainline": 1.15e-06, - "mainstay": 1.15e-06, - "mannequin": 1.15e-06, - "marketable": 1.15e-06, - "marlborough": 1.15e-06, - "masterful": 1.15e-06, - "matic": 1.15e-06, - "maximal": 1.15e-06, - "mcc": 1.15e-06, - "mime": 1.15e-06, - "minivan": 1.15e-06, - "mistrust": 1.15e-06, - "mites": 1.15e-06, - "mobiles": 2.82e-07, - "modestly": 1.15e-06, - "moniker": 1.15e-06, - "morrissey": 1.15e-06, - "mpg": 1.15e-06, - "multidisciplinary": 1.15e-06, - "mythological": 1.15e-06, - "nave": 1.15e-06, - "ncis": 1.15e-06, - "needlessly": 1.15e-06, - "nel": 1.15e-06, - "neuro": 1.15e-06, - "nib": 1.15e-06, - "noahs": 1.15e-06, - "nonviolent": 1.15e-06, - "nps": 1.15e-06, - "nuremberg": 1.15e-06, - "ozzy": 1.15e-06, - "palatable": 1.15e-06, - "parishioners": 1.15e-06, - "parkland": 1.15e-06, - "pau": 1.15e-06, - "payouts": 1.15e-06, - "pensacola": 1.15e-06, - "perrys": 5.5e-08, - "platt": 1.15e-06, - "plunging": 1.15e-06, - "polarity": 1.15e-06, - "pompous": 1.15e-06, - "portman": 1.15e-06, - "profanity": 1.15e-06, - "protruding": 1.15e-06, - "puig": 1.15e-06, - "pundit": 1.15e-06, - "purify": 1.15e-06, - "pw": 1.15e-06, - "quack": 1.15e-06, - "quarries": 1.15e-06, - "raged": 1.15e-06, - "rages": 1.15e-06, - "rah": 1.15e-06, - "regaining": 1.15e-06, - "regenerative": 1.15e-06, - "regroup": 1.15e-06, - "rehearsed": 1.15e-06, - "reimburse": 1.15e-06, - "reinvent": 1.15e-06, - "rel": 1.15e-06, - "repatriation": 1.15e-06, - "requiem": 1.15e-06, - "resurrect": 1.15e-06, - "ringer": 1.15e-06, - "rockville": 1.15e-06, - "rollout": 1.15e-06, - "ronan": 1.15e-06, - "rooftops": 1.15e-06, - "rudolf": 1.15e-06, - "sae": 1.15e-06, - "salvaged": 1.15e-06, - "sari": 1.15e-06, - "sata": 1.15e-06, - "saucer": 1.15e-06, - "scrapping": 1.15e-06, - "scrappy": 1.15e-06, - "semis": 7.94e-08, - "serpentine": 1.15e-06, - "shinji": 1.15e-06, - "shuffling": 1.15e-06, - "sie": 1.15e-06, - "signup": 1.15e-06, - "skirmish": 1.15e-06, - "slough": 1.15e-06, - "snippets": 1.15e-06, - "soared": 1.15e-06, - "solicit": 1.15e-06, - "solidified": 1.15e-06, - "solvents": 1.15e-06, - "spaniard": 1.15e-06, - "spar": 1.15e-06, - "spearheaded": 1.15e-06, - "spooked": 1.15e-06, - "sprints": 1.26e-07, - "stimulant": 1.15e-06, - "stow": 1.15e-06, - "strickland": 1.15e-06, - "stylized": 1.15e-06, - "subdue": 1.15e-06, - "subscribing": 1.15e-06, - "succumb": 1.15e-06, - "suffocating": 1.15e-06, - "suisse": 1.15e-06, - "sumo": 1.15e-06, - "superbowl": 1.15e-06, - "surgically": 1.15e-06, - "susanna": 1.15e-06, - "syed": 1.15e-06, - "sympathize": 1.15e-06, - "tabernacle": 1.15e-06, - "tagline": 1.15e-06, - "talisman": 1.15e-06, - "tariq": 1.15e-06, - "thirdly": 1.15e-06, - "thwart": 1.15e-06, - "ticked": 1.15e-06, - "tins": 1.15e-06, - "torontos": 1.15e-06, - "tortilla": 1.15e-06, - "townhouse": 1.15e-06, - "transferable": 1.15e-06, - "transistors": 1.15e-06, - "transpired": 1.15e-06, - "transplanted": 1.15e-06, - "tres": 1.15e-06, - "tris": 1.15e-06, - "trish": 1.15e-06, - "truffle": 1.15e-06, - "tumultuous": 1.15e-06, - "ultron": 1.15e-06, - "unclean": 1.15e-06, - "unequivocally": 1.15e-06, - "unitary": 1.15e-06, - "usgs": 1.15e-06, - "vail": 1.15e-06, - "valkyrie": 1.15e-06, - "vedic": 1.15e-06, - "ventral": 1.15e-06, - "vibrate": 1.15e-06, - "vicente": 1.15e-06, - "wad": 1.15e-06, - "waging": 1.15e-06, - "waitin": 1.15e-06, - "weirdly": 1.15e-06, - "whered": 1.15e-06, - "whiplash": 1.15e-06, - "wildcat": 1.15e-06, - "woodworking": 1.15e-06, - "worsen": 1.15e-06, - "worshippers": 1.15e-06, - "xenophobia": 1.15e-06, - "xenophobic": 1.15e-06, - "yakuza": 1.15e-06, - "yuck": 1.15e-06, - "ze": 1.15e-06, - "zeros": 1.74e-07, - "acreage": 1.12e-06, - "affords": 1.12e-06, - "ajay": 1.12e-06, - "albino": 1.12e-06, - "alexs": 1.12e-06, - "antichrist": 1.12e-06, - "antrim": 1.12e-06, - "aquaculture": 1.12e-06, - "argus": 1.12e-06, - "arrears": 1.12e-06, - "arsenals": 3.98e-07, - "artemis": 1.12e-06, - "asd": 1.12e-06, - "asp": 1.12e-06, - "assimilate": 1.12e-06, - "asterisk": 1.12e-06, - "asymmetrical": 1.12e-06, - "atf": 1.12e-06, - "augmentation": 1.12e-06, - "ayrshire": 1.12e-06, - "azalea": 1.12e-06, - "bacterium": 1.12e-06, - "balochistan": 1.12e-06, - "barter": 1.12e-06, - "bbl": 1.12e-06, - "beet": 1.12e-06, - "bessie": 1.12e-06, - "biggs": 1.12e-06, - "bigoted": 1.12e-06, - "bistro": 1.12e-06, - "bod": 1.12e-06, - "bonanza": 1.12e-06, - "bosom": 1.12e-06, - "bostons": 1.12e-06, - "breakthroughs": 1.12e-06, - "breitbart": 1.12e-06, - "bribed": 1.12e-06, - "busan": 1.12e-06, - "callum": 1.12e-06, - "calmer": 1.12e-06, - "cannibal": 1.12e-06, - "catalogues": 1.12e-06, - "cato": 1.12e-06, - "centurion": 1.12e-06, - "chuckled": 1.12e-06, - "citi": 1.12e-06, - "clarendon": 1.12e-06, - "coldplay": 1.12e-06, - "compendium": 1.12e-06, - "complacency": 1.12e-06, - "complements": 1.12e-06, - "confessional": 1.12e-06, - "conservancy": 1.12e-06, - "contentment": 1.12e-06, - "convoluted": 1.12e-06, - "cools": 1.12e-06, - "counterproductive": 1.12e-06, - "cowell": 1.12e-06, - "crayon": 1.12e-06, - "cremated": 1.12e-06, - "crm": 1.12e-06, - "cropping": 1.12e-06, - "crossbow": 1.12e-06, - "crowding": 1.12e-06, - "crux": 1.12e-06, - "cst": 1.12e-06, - "curators": 1.12e-06, - "cusp": 1.12e-06, - "danville": 1.12e-06, - "decoding": 1.12e-06, - "defenseless": 1.12e-06, - "defiantly": 1.12e-06, - "delia": 1.12e-06, - "delicately": 1.12e-06, - "deluge": 1.12e-06, - "desist": 1.12e-06, - "devlin": 1.12e-06, - "devoured": 1.12e-06, - "diffraction": 1.12e-06, - "dilapidated": 1.12e-06, - "dismissive": 1.12e-06, - "divas": 1.12e-07, - "doable": 1.12e-06, - "doorbell": 1.12e-06, - "drooling": 1.12e-06, - "ducking": 1.12e-06, - "dulles": 1.12e-06, - "duplicates": 1.12e-06, - "eastbound": 1.12e-06, - "emir": 1.12e-06, - "emu": 1.12e-06, - "eritrea": 1.12e-06, - "errand": 1.12e-06, - "eucharist": 1.12e-06, - "excites": 1.12e-06, - "exclaimed": 1.12e-06, - "expedite": 1.12e-06, - "extracellular": 1.12e-06, - "famer": 1.12e-06, - "fastball": 1.12e-06, - "fearsome": 1.12e-06, - "feathered": 1.12e-06, - "fertilization": 1.12e-06, - "fervor": 1.12e-06, - "fiduciary": 1.12e-06, - "fifths": 1.12e-06, - "flax": 1.12e-06, - "fractional": 1.12e-06, - "freighter": 1.12e-06, - "frosting": 1.12e-06, - "fuelled": 1.12e-06, - "gaap": 1.12e-06, - "gallo": 1.12e-06, - "gasping": 1.12e-06, - "genevieve": 1.12e-06, - "globes": 1.48e-07, - "glorify": 1.12e-06, - "gunnar": 1.12e-06, - "guo": 1.12e-06, - "heartwarming": 1.12e-06, - "henrietta": 1.12e-06, - "heretics": 1.12e-06, - "hiccups": 1.12e-06, - "hiss": 1.12e-06, - "holographic": 1.12e-06, - "hotspur": 1.12e-06, - "hrc": 1.12e-06, - "impediment": 1.12e-06, - "importation": 1.12e-06, - "inactivity": 1.12e-06, - "incendiary": 1.12e-06, - "individualized": 1.12e-06, - "insistent": 1.12e-06, - "instigated": 1.12e-06, - "intelligently": 1.12e-06, - "interferes": 1.12e-06, - "intermittently": 1.12e-06, - "iraqs": 1.12e-06, - "isn": 1.12e-06, - "jag": 1.12e-06, - "kamal": 1.12e-06, - "kareem": 1.12e-06, - "keegan": 1.12e-06, - "kidnappers": 1.12e-06, - "kimball": 1.12e-06, - "lakewood": 1.12e-06, - "leapt": 1.12e-06, - "leia": 1.12e-06, - "leisurely": 1.12e-06, - "ligand": 1.12e-06, - "lila": 1.12e-06, - "liturgical": 1.12e-06, - "livelihoods": 1.12e-06, - "lothian": 1.12e-06, - "lubricant": 1.12e-06, - "lucie": 1.12e-06, - "macroeconomic": 1.12e-06, - "mags": 7.59e-08, - "maitland": 1.12e-06, - "masquerade": 1.12e-06, - "materialism": 1.12e-06, - "maude": 1.12e-06, - "mea": 1.12e-06, - "meager": 1.12e-06, - "melodrama": 1.12e-06, - "milly": 1.12e-06, - "minimized": 1.12e-06, - "minion": 1.12e-06, - "mistreated": 1.12e-06, - "misused": 1.12e-06, - "mmmm": 1.12e-06, - "mons": 1.12e-06, - "morn": 1.12e-06, - "motherland": 1.12e-06, - "motogp": 1.12e-06, - "mundo": 1.12e-06, - "nakamura": 1.12e-06, - "napkins": 1.12e-06, - "narcissism": 1.12e-06, - "navarro": 1.12e-06, - "niches": 1.12e-06, - "ninjas": 7.76e-08, - "nsf": 1.12e-06, - "observant": 1.12e-06, - "opioids": 1.12e-06, - "ostrich": 1.12e-06, - "overcast": 1.12e-06, - "overcrowding": 1.12e-06, - "paragon": 1.12e-06, - "parochial": 1.12e-06, - "pastries": 1.12e-06, - "perplexed": 1.12e-06, - "persistently": 1.12e-06, - "petting": 1.12e-06, - "phenotype": 1.12e-06, - "pico": 1.12e-06, - "plankton": 1.12e-06, - "prasad": 1.12e-06, - "prejudiced": 1.12e-06, - "prius": 1.12e-06, - "propped": 1.12e-06, - "protons": 1.12e-06, - "pruning": 1.12e-06, - "punter": 1.12e-06, - "qin": 1.12e-06, - "quark": 1.12e-06, - "queuing": 1.12e-06, - "quizzes": 1.12e-06, - "radiohead": 1.12e-06, - "rarer": 1.12e-06, - "rcmp": 1.12e-06, - "redacted": 1.12e-06, - "regretting": 1.12e-06, - "reimbursed": 1.12e-06, - "renovate": 1.12e-06, - "respiration": 1.12e-06, - "restores": 1.12e-06, - "retracted": 1.12e-06, - "reverses": 1.12e-06, - "ruff": 1.12e-06, - "rump": 1.12e-06, - "samir": 1.12e-06, - "santander": 1.12e-06, - "schiff": 1.12e-06, - "schiller": 1.12e-06, - "scranton": 1.12e-06, - "secondhand": 1.12e-06, - "shackles": 1.12e-06, - "shards": 1.12e-06, - "sheehan": 1.12e-06, - "shiver": 1.12e-06, - "simms": 1.12e-06, - "simplifying": 1.12e-06, - "sinned": 1.12e-06, - "ska": 1.12e-06, - "slugs": 1.12e-06, - "smog": 1.12e-06, - "smoothies": 1.12e-06, - "somber": 1.12e-06, - "splendor": 1.12e-06, - "springtime": 1.12e-06, - "sprinkler": 1.12e-06, - "stabs": 1.12e-06, - "standstill": 1.12e-06, - "stefano": 1.12e-06, - "stools": 1.12e-06, - "stubbs": 1.12e-06, - "subunit": 1.12e-06, - "sues": 2e-07, - "suffix": 1.12e-06, - "surges": 1.12e-06, - "surveyors": 5.13e-08, - "swede": 1.12e-06, - "sweepstakes": 1.12e-06, - "syndicated": 1.12e-06, - "syrias": 1.12e-06, - "tailoring": 1.12e-06, - "tbs": 1.12e-06, - "teeny": 1.12e-06, - "tendered": 1.12e-06, - "thoracic": 1.12e-06, - "ticketing": 1.12e-06, - "trams": 1.12e-06, - "tremor": 1.12e-06, - "triplets": 1.12e-06, - "twister": 1.12e-06, - "ulrich": 1.12e-06, - "unannounced": 1.12e-06, - "uncovering": 1.12e-06, - "undivided": 1.12e-06, - "unsatisfactory": 1.12e-06, - "unskilled": 1.12e-06, - "unwritten": 1.12e-06, - "utilitarian": 1.12e-06, - "vehicular": 1.12e-06, - "vetted": 1.12e-06, - "virginias": 1.12e-06, - "voltaire": 1.12e-06, - "wading": 1.12e-06, - "wallpapers": 1.12e-06, - "waning": 1.12e-06, - "weightlifting": 1.12e-06, - "wesleyan": 1.12e-06, - "whey": 1.12e-06, - "whyte": 1.12e-06, - "willpower": 1.12e-06, - "wolverhampton": 1.12e-06, - "woolly": 1.12e-06, - "yokohama": 1.12e-06, - "youngs": 3.72e-07, - "yuki": 1.12e-06, - "zig": 1.12e-06, - "abbreviations": 1.1e-06, - "accra": 1.1e-06, - "acosta": 1.1e-06, - "acquittal": 1.1e-06, - "acupuncture": 1.1e-06, - "adi": 1.1e-06, - "admins": 6.17e-08, - "adv": 1.1e-06, - "aggregated": 1.1e-06, - "anakin": 1.1e-06, - "anvil": 1.1e-06, - "anzac": 1.1e-06, - "argos": 1.1e-06, - "armament": 1.1e-06, - "aron": 1.1e-06, - "ascribed": 1.1e-06, - "astra": 1.1e-06, - "asu": 1.1e-06, - "ata": 1.1e-06, - "atwood": 1.1e-06, - "auctioned": 1.1e-06, - "backfired": 1.1e-06, - "balconies": 1.1e-06, - "barbour": 1.1e-06, - "bastille": 1.1e-06, - "belligerent": 1.1e-06, - "betts": 1.1e-06, - "bibles": 2.19e-07, - "bleaching": 1.1e-06, - "bleeds": 1.1e-06, - "bloomfield": 1.1e-06, - "bookmark": 1.1e-06, - "botanic": 1.1e-06, - "boundless": 1.1e-06, - "bowles": 1.1e-06, - "broadened": 1.1e-06, - "brooch": 1.1e-06, - "bulletins": 1.1e-06, - "bunting": 1.1e-06, - "burials": 1.1e-06, - "cabal": 1.1e-06, - "cabrera": 1.1e-06, - "cadre": 1.1e-06, - "campground": 1.1e-06, - "canaan": 1.1e-06, - "canyons": 8.32e-08, - "causeway": 1.1e-06, - "clamps": 1.1e-06, - "clearest": 1.1e-06, - "cleaver": 1.1e-06, - "cob": 1.1e-06, - "coexist": 1.1e-06, - "coffins": 1.1e-06, - "coinage": 1.1e-06, - "connelly": 1.1e-06, - "conquests": 1.1e-06, - "consenting": 1.1e-06, - "consummate": 1.1e-06, - "contending": 1.1e-06, - "convene": 1.1e-06, - "coopers": 5.25e-07, - "corresponded": 1.1e-06, - "covent": 1.1e-06, - "covington": 1.1e-06, - "cramp": 1.1e-06, - "cucumbers": 1.1e-06, - "curran": 1.1e-06, - "curricula": 1.1e-06, - "dearborn": 1.1e-06, - "decadent": 1.1e-06, - "decoy": 1.1e-06, - "defies": 1.1e-06, - "demoted": 1.1e-06, - "depraved": 1.1e-06, - "derivation": 1.1e-06, - "designations": 1.1e-06, - "detectable": 1.1e-06, - "deviations": 1.1e-06, - "diced": 1.1e-06, - "diem": 1.1e-06, - "discreetly": 1.1e-06, - "distortions": 1.1e-06, - "divorces": 1.1e-06, - "draco": 1.1e-06, - "dredge": 1.1e-06, - "drool": 1.1e-06, - "dumbledore": 1.1e-06, - "ebb": 1.1e-06, - "ecb": 1.1e-06, - "ecu": 1.1e-06, - "emulation": 1.1e-06, - "enriching": 1.1e-06, - "enshrined": 1.1e-06, - "erasing": 1.1e-06, - "escrow": 1.1e-06, - "essendon": 1.1e-06, - "evaporated": 1.1e-06, - "evasive": 1.1e-06, - "extinguish": 1.1e-06, - "fas": 2.14e-07, - "fayetteville": 1.1e-06, - "fca": 1.1e-06, - "federalist": 1.1e-06, - "fema": 1.1e-06, - "fervent": 1.1e-06, - "fiberglass": 1.1e-06, - "fisk": 1.1e-06, - "fixer": 1.1e-06, - "flavoured": 1.1e-06, - "foray": 1.1e-06, - "forfeiture": 1.1e-06, - "forgave": 1.1e-06, - "forties": 1.1e-06, - "friar": 1.1e-06, - "fruitless": 1.1e-06, - "fussy": 1.1e-06, - "garnish": 1.1e-06, - "genealogical": 1.1e-06, - "genomes": 1.1e-06, - "georgie": 1.1e-06, - "glances": 1.1e-06, - "gnu": 1.1e-06, - "goody": 1.1e-06, - "gough": 1.1e-06, - "graciously": 1.1e-06, - "grammys": 1.2e-07, - "grassland": 1.1e-06, - "hackett": 1.1e-06, - "hajj": 1.1e-06, - "hampstead": 1.1e-06, - "hap": 1.1e-06, - "hatfield": 1.1e-06, - "hdd": 1.1e-06, - "hdr": 1.1e-06, - "headway": 1.1e-06, - "hearsay": 1.95e-08, - "hershey": 1.1e-06, - "hideout": 1.1e-06, - "hippies": 1.1e-06, - "hoa": 1.1e-06, - "hobbes": 1.1e-06, - "holed": 1.1e-06, - "honed": 1.1e-06, - "horned": 1.1e-06, - "horner": 1.1e-06, - "hoyt": 1.1e-06, - "hutch": 1.1e-06, - "idyllic": 1.1e-06, - "imaginations": 1.1e-06, - "impairments": 1.1e-06, - "impossibility": 1.1e-06, - "impotent": 1.1e-06, - "inconsiderate": 1.1e-06, - "indictments": 1.1e-06, - "insatiable": 1.1e-06, - "instalment": 1.1e-06, - "instinctive": 1.1e-06, - "integrates": 1.1e-06, - "interpretive": 1.1e-06, - "intrepid": 1.1e-06, - "intuitively": 1.1e-06, - "jackman": 1.1e-06, - "jeanette": 1.1e-06, - "jetty": 1.1e-06, - "jimmie": 1.1e-06, - "jpeg": 1.1e-06, - "junkies": 1.1e-06, - "kabir": 1.1e-06, - "kawasaki": 1.1e-06, - "kew": 1.1e-06, - "khaki": 1.1e-06, - "kip": 1.1e-06, - "kirkland": 1.1e-06, - "koala": 1.1e-06, - "kohli": 1.1e-06, - "kos": 1.66e-07, - "lannister": 1.1e-06, - "lashing": 1.1e-06, - "lectured": 1.1e-06, - "leith": 1.1e-06, - "levelled": 1.1e-06, - "lexi": 1.1e-06, - "lieberman": 1.1e-06, - "lightening": 1.1e-06, - "lombardi": 1.1e-06, - "londonderry": 1.1e-06, - "loren": 1.1e-06, - "lucien": 1.1e-06, - "macs": 7.41e-07, - "magnate": 1.1e-06, - "magneto": 1.1e-06, - "mahoney": 1.1e-06, - "mannered": 1.1e-06, - "marietta": 1.1e-06, - "markham": 1.1e-06, - "maud": 1.1e-06, - "mcgovern": 1.1e-06, - "merciless": 1.1e-06, - "merle": 1.1e-06, - "milder": 1.1e-06, - "millimeters": 1.1e-06, - "minn": 1.1e-06, - "misfits": 1.1e-06, - "mocks": 1.1e-06, - "molina": 1.1e-06, - "monde": 1.1e-06, - "mongols": 1.1e-06, - "monochrome": 1.1e-06, - "mortuary": 1.1e-06, - "mtg": 1.1e-06, - "muffled": 1.1e-06, - "mugabe": 1.1e-06, - "mulder": 1.1e-06, - "mullins": 1.1e-06, - "muppets": 1.1e-06, - "muses": 5.89e-08, - "nacional": 1.1e-06, - "nationalistic": 1.1e-06, - "nervousness": 1.1e-06, - "neumann": 1.1e-06, - "neurologist": 1.1e-06, - "nik": 1.1e-06, - "notched": 1.1e-06, - "nutmeg": 1.1e-06, - "obstetrics": 1.1e-06, - "obtains": 1.1e-06, - "obtuse": 1.1e-06, - "ofcourse": 1.1e-06, - "papi": 1.1e-06, - "particulate": 1.1e-06, - "pausing": 1.1e-06, - "penicillin": 1.1e-06, - "perfecting": 1.1e-06, - "petal": 1.1e-06, - "petitioned": 1.1e-06, - "plumbers": 1.02e-07, - "pms": 7.59e-07, - "poise": 1.1e-06, - "polygon": 1.1e-06, - "ported": 1.1e-06, - "precursors": 1.1e-06, - "prolly": 1.1e-06, - "promos": 1.1e-06, - "proportionate": 1.1e-06, - "provence": 1.1e-06, - "pta": 1.1e-06, - "purcell": 1.1e-06, - "pvp": 1.1e-06, - "quartermaster": 1.1e-06, - "radiance": 1.1e-06, - "rambo": 1.1e-06, - "rammed": 1.1e-06, - "raoul": 1.1e-06, - "reciprocity": 1.1e-06, - "recollections": 1.1e-06, - "remodeled": 1.1e-06, - "replenish": 1.1e-06, - "reproducing": 1.1e-06, - "reputations": 1.1e-06, - "responsiveness": 1.1e-06, - "rheumatoid": 1.1e-06, - "roscoe": 1.1e-06, - "rosetta": 1.1e-06, - "rubles": 1.1e-06, - "rupee": 1.1e-06, - "saeed": 1.1e-06, - "saltwater": 1.1e-06, - "sanctity": 1.1e-06, - "schoolers": 1.1e-06, - "schroeder": 1.1e-06, - "scooped": 1.1e-06, - "scrabble": 1.1e-06, - "scrimmage": 1.1e-06, - "seaboard": 1.1e-06, - "sedition": 1.1e-06, - "shoddy": 1.1e-06, - "shortstop": 1.1e-06, - "shotguns": 1.1e-06, - "sleazy": 1.1e-06, - "sleepers": 1.1e-06, - "smashes": 1.1e-06, - "smirk": 1.1e-06, - "smoothing": 1.1e-06, - "smyth": 1.1e-06, - "sneaks": 1.1e-06, - "snipe": 1.1e-06, - "snuggle": 1.1e-06, - "sochi": 1.1e-06, - "sociologist": 1.1e-06, - "spares": 1.1e-06, - "spewing": 1.1e-06, - "squishy": 1.1e-06, - "stalemate": 1.1e-06, - "stave": 1.1e-06, - "stephan": 1.1e-06, - "stinking": 1.1e-06, - "storys": 8.71e-08, - "strangle": 1.1e-06, - "streamer": 1.1e-06, - "streetcar": 1.1e-06, - "stringer": 1.1e-06, - "summits": 9.55e-08, - "sunsets": 1.1e-06, - "supremely": 1.1e-06, - "sus": 1.17e-07, - "swami": 1.1e-06, - "swelled": 1.1e-06, - "symbolize": 1.1e-06, - "symbolizes": 1.1e-06, - "tahiti": 1.1e-06, - "tarantino": 1.1e-06, - "tarmac": 1.1e-06, - "teh": 1.1e-06, - "tenacious": 1.1e-06, - "tireless": 1.1e-06, - "toothed": 1.1e-06, - "toshiba": 1.1e-06, - "tremble": 1.1e-06, - "trillions": 1.1e-06, - "trove": 1.1e-06, - "ue": 1.1e-06, - "unconsciously": 1.1e-06, - "undated": 1.1e-06, - "undefined": 1.1e-06, - "unpack": 1.1e-06, - "urbanization": 1.1e-06, - "vetoed": 1.1e-06, - "victimized": 1.1e-06, - "wainwright": 1.1e-06, - "walkin": 1.1e-06, - "wanders": 1.1e-06, - "weakens": 1.1e-06, - "westbound": 1.1e-06, - "westerly": 1.1e-06, - "whitehouse": 1.1e-06, - "wilfred": 1.1e-06, - "wilton": 1.1e-06, - "winch": 1.1e-06, - "winthrop": 1.1e-06, - "workstation": 1.1e-06, - "yam": 1.1e-06, - "yawning": 1.1e-06, - "yolk": 1.1e-06, - "accomplices": 1.07e-06, - "adc": 1.07e-06, - "adjusts": 1.07e-06, - "adp": 1.07e-06, - "aerosol": 1.07e-06, - "aftermarket": 1.07e-06, - "alienate": 1.07e-06, - "alphabetically": 1.07e-06, - "amer": 1.07e-06, - "ammonium": 1.07e-06, - "amour": 1.07e-06, - "andi": 1.07e-06, - "annuities": 1.07e-06, - "apprehensive": 1.07e-06, - "aquino": 1.07e-06, - "arjun": 1.07e-06, - "assent": 1.07e-06, - "assn": 5.25e-08, - "athenian": 1.07e-06, - "atrocity": 1.07e-06, - "authorisation": 1.07e-06, - "avec": 1.07e-06, - "babysit": 1.07e-06, - "backdoor": 1.07e-06, - "bagels": 1.07e-06, - "banco": 1.07e-06, - "bantu": 1.07e-06, - "beaming": 1.07e-06, - "benin": 1.07e-06, - "benn": 1.07e-06, - "bh": 1.07e-06, - "bigots": 1.07e-06, - "biopic": 1.07e-06, - "bleached": 1.07e-06, - "blondie": 1.07e-06, - "bloods": 1.55e-07, - "blot": 1.07e-06, - "bode": 1.07e-06, - "boer": 1.07e-06, - "boggling": 1.07e-06, - "bolivian": 1.07e-06, - "bookstores": 1.07e-06, - "boos": 1.48e-07, - "bourgeoisie": 1.07e-06, - "bowser": 1.07e-06, - "boycotting": 1.07e-06, - "braced": 1.07e-06, - "brentwood": 1.07e-06, - "bromwich": 1.07e-06, - "bryson": 1.07e-06, - "bsc": 1.07e-06, - "buckinghamshire": 1.07e-06, - "bulging": 1.07e-06, - "burners": 1.07e-06, - "byproduct": 1.07e-06, - "bystanders": 1.07e-06, - "caspian": 1.07e-06, - "categorically": 1.07e-06, - "cathode": 1.07e-06, - "ceded": 1.07e-06, - "cheaters": 1.07e-06, - "chelseas": 1.07e-06, - "cheung": 1.07e-06, - "civility": 1.07e-06, - "clustering": 1.07e-06, - "cns": 1.07e-06, - "cohn": 1.07e-06, - "collin": 1.07e-06, - "commandos": 1.07e-06, - "complicity": 1.07e-06, - "conf": 1.07e-06, - "confetti": 1.07e-06, - "configure": 1.07e-06, - "confrontational": 1.07e-06, - "congolese": 1.07e-06, - "conley": 1.07e-06, - "connors": 3.31e-07, - "consequential": 1.07e-06, - "constitutions": 2.63e-07, - "contagion": 1.07e-06, - "convoys": 7.76e-08, - "corset": 1.07e-06, - "cortisol": 1.07e-06, - "coutinho": 1.07e-06, - "craters": 1.07e-06, - "crock": 1.07e-06, - "crocker": 1.07e-06, - "curate": 1.07e-06, - "cuttings": 1.07e-06, - "dataset": 1.07e-06, - "davos": 1.07e-06, - "dawned": 1.07e-06, - "daybreak": 1.07e-06, - "defected": 1.07e-06, - "defenseman": 1.07e-06, - "desolation": 1.07e-06, - "deviant": 1.07e-06, - "devine": 1.07e-06, - "devious": 1.07e-06, - "didier": 1.07e-06, - "dil": 1.07e-06, - "dilemmas": 1.07e-06, - "discography": 1.07e-06, - "dislocated": 1.07e-06, - "dispenser": 1.07e-06, - "disseminate": 1.07e-06, - "dorado": 1.07e-06, - "dragonfly": 1.07e-06, - "driscoll": 1.07e-06, - "dubstep": 1.07e-06, - "dugout": 1.07e-06, - "dunne": 1.07e-06, - "dynamically": 1.07e-06, - "edelman": 1.07e-06, - "elizabethan": 1.07e-06, - "emanating": 1.07e-06, - "endeavours": 1.07e-06, - "ensues": 1.07e-06, - "eradicated": 1.07e-06, - "erode": 1.07e-06, - "evocative": 1.07e-06, - "faintly": 1.07e-06, - "fancies": 1.07e-06, - "federico": 1.07e-06, - "fewest": 1.07e-06, - "fielded": 1.07e-06, - "financials": 1.07e-06, - "fingering": 1.07e-06, - "flirty": 1.07e-06, - "flocks": 1.07e-06, - "forbade": 1.07e-06, - "forested": 1.07e-06, - "frauds": 1.07e-06, - "friendlies": 1.07e-06, - "fronting": 1.07e-06, - "frosted": 1.07e-06, - "fullness": 1.07e-06, - "furthering": 1.07e-06, - "gaia": 1.07e-06, - "gallop": 1.07e-06, - "gentile": 1.07e-06, - "gentrification": 1.07e-06, - "georgias": 1.07e-06, - "gingerbread": 1.07e-06, - "gino": 1.07e-06, - "giro": 1.07e-06, - "gosling": 1.07e-06, - "grasshopper": 1.07e-06, - "groupings": 1.07e-06, - "guardiola": 1.07e-06, - "guildford": 1.07e-06, - "gutierrez": 1.07e-06, - "hallowed": 1.07e-06, - "halting": 1.07e-06, - "hamish": 1.07e-06, - "hampden": 1.07e-06, - "handguns": 1.07e-06, - "hebron": 1.07e-06, - "heywood": 1.07e-06, - "hove": 1.07e-06, - "hvac": 1.07e-06, - "hy": 1.07e-06, - "hydrate": 1.07e-06, - "hydrocarbon": 1.07e-06, - "incessant": 1.07e-06, - "incriminating": 1.07e-06, - "incurable": 1.07e-06, - "informants": 1.07e-06, - "informatics": 1.07e-06, - "infringed": 1.07e-06, - "inhaling": 1.07e-06, - "innumerable": 1.07e-06, - "insular": 1.07e-06, - "insurmountable": 1.07e-06, - "inundated": 1.07e-06, - "invariant": 1.07e-06, - "ionization": 1.07e-06, - "jailbreak": 1.07e-06, - "jamess": 1.07e-06, - "jarring": 1.07e-06, - "jing": 1.07e-06, - "juncture": 1.07e-06, - "karin": 1.07e-06, - "kebab": 1.07e-06, - "lago": 1.07e-06, - "lampard": 1.07e-06, - "larsson": 1.07e-06, - "latham": 1.07e-06, - "leanne": 1.07e-06, - "leinster": 1.07e-06, - "licensee": 1.07e-06, - "lincolns": 1.2e-07, - "locator": 1.07e-06, - "loeb": 1.07e-06, - "loyalist": 1.07e-06, - "luz": 1.07e-06, - "machado": 1.07e-06, - "macpherson": 1.07e-06, - "magnetism": 1.07e-06, - "maltese": 1.07e-06, - "manafort": 1.07e-06, - "manhunt": 1.07e-06, - "manoeuvre": 1.07e-06, - "margo": 1.07e-06, - "mariner": 1.07e-06, - "marlowe": 1.07e-06, - "marquez": 1.07e-06, - "marshmallows": 1.07e-06, - "martyn": 1.07e-06, - "masons": 6.17e-07, - "matthias": 1.07e-06, - "maximus": 1.07e-06, - "meditating": 1.07e-06, - "merck": 1.07e-06, - "metamorphosis": 1.07e-06, - "methodological": 1.07e-06, - "middleweight": 1.07e-06, - "migrations": 1.07e-06, - "mila": 1.07e-06, - "milkshake": 1.07e-06, - "mio": 1.07e-06, - "misinterpreted": 1.07e-06, - "mixers": 1.07e-06, - "modernize": 1.07e-06, - "mozilla": 1.07e-06, - "multilingual": 1.07e-06, - "nats": 9.77e-08, - "natured": 1.07e-06, - "nested": 1.07e-06, - "niki": 1.07e-06, - "nmr": 1.07e-06, - "notifying": 1.07e-06, - "nourishment": 1.07e-06, - "numerals": 1.07e-06, - "obeying": 1.07e-06, - "octavia": 1.07e-06, - "olfactory": 1.07e-06, - "organically": 1.07e-06, - "ortega": 1.07e-06, - "osbourne": 1.07e-06, - "paintball": 1.07e-06, - "parrish": 1.07e-06, - "parton": 1.07e-06, - "pedophiles": 1.07e-06, - "pertains": 1.07e-06, - "petrified": 1.07e-06, - "pheasant": 1.07e-06, - "photosynthesis": 1.07e-06, - "piccolo": 1.07e-06, - "pietro": 1.07e-06, - "piloted": 1.07e-06, - "pinching": 1.07e-06, - "pointe": 1.07e-06, - "pornhub": 1.07e-06, - "postponement": 1.07e-06, - "ppc": 1.07e-06, - "preclude": 1.07e-06, - "preorder": 1.07e-06, - "pressurized": 1.07e-06, - "prickly": 1.07e-06, - "pricks": 1.26e-08, - "priory": 1.07e-06, - "profiled": 1.07e-06, - "programmable": 1.07e-06, - "psn": 1.07e-06, - "puss": 1.07e-06, - "questionnaires": 1.07e-06, - "quintessential": 1.07e-06, - "racked": 1.07e-06, - "radiating": 1.07e-06, - "rancher": 1.07e-06, - "reclaiming": 1.07e-06, - "redding": 1.07e-06, - "regularity": 1.07e-06, - "remediation": 1.07e-06, - "reprints": 1.07e-06, - "resounding": 1.07e-06, - "restrooms": 1.07e-06, - "retract": 1.07e-06, - "ria": 1.07e-06, - "ripples": 1.07e-06, - "roared": 1.07e-06, - "rondo": 1.07e-06, - "rowley": 1.07e-06, - "rumoured": 1.07e-06, - "russel": 1.07e-06, - "saban": 1.07e-06, - "salazar": 1.07e-06, - "samuels": 2.14e-07, - "sana": 1.07e-06, - "sarasota": 1.07e-06, - "scaffold": 1.07e-06, - "scavenger": 1.07e-06, - "schooner": 1.07e-06, - "scion": 1.07e-06, - "seamus": 1.07e-06, - "secularism": 1.07e-06, - "separatists": 1.07e-06, - "sephora": 1.07e-06, - "servitude": 1.07e-06, - "severn": 1.07e-06, - "showbiz": 1.07e-06, - "sickly": 1.07e-06, - "siegfried": 1.07e-06, - "simeon": 1.07e-06, - "slaughtering": 1.07e-06, - "slumped": 1.07e-06, - "smacks": 1.07e-06, - "sme": 1.07e-06, - "snooker": 1.07e-06, - "solemnly": 1.07e-06, - "sores": 1.07e-06, - "splashed": 1.07e-06, - "sprained": 1.07e-06, - "squadrons": 7.24e-08, - "starling": 1.07e-06, - "steamboat": 1.07e-06, - "steinberg": 1.07e-06, - "stingy": 1.07e-06, - "stuffy": 1.07e-06, - "stumbles": 1.07e-06, - "substituting": 1.07e-06, - "subversion": 1.07e-06, - "sufficiency": 1.07e-06, - "sui": 1.07e-06, - "suitcases": 1.07e-06, - "sumatra": 1.07e-06, - "suvs": 1.26e-07, - "syn": 1.07e-06, - "takedown": 1.07e-06, - "tas": 8.91e-08, - "tasteless": 1.07e-06, - "tensor": 1.07e-06, - "terminally": 1.07e-06, - "tian": 1.07e-06, - "ticker": 1.07e-06, - "tiff": 1.07e-06, - "tijuana": 1.07e-06, - "toil": 1.07e-06, - "tomography": 1.07e-06, - "tonys": 1.38e-07, - "toon": 1.07e-06, - "toot": 1.07e-06, - "toulon": 1.07e-06, - "townsville": 1.07e-06, - "tru": 1.07e-06, - "truncated": 1.07e-06, - "trusty": 1.07e-06, - "twig": 1.07e-06, - "uf": 1.07e-06, - "ulcer": 1.07e-06, - "ummm": 1.07e-06, - "unconfirmed": 1.07e-06, - "undetected": 1.07e-06, - "uniformity": 1.07e-06, - "unjustified": 1.07e-06, - "unregistered": 1.07e-06, - "unsubscribe": 1.07e-06, - "untrained": 1.07e-06, - "ute": 1.07e-06, - "varnish": 1.07e-06, - "vee": 1.07e-06, - "videogames": 1.07e-06, - "vigor": 1.07e-06, - "waco": 1.07e-06, - "wag": 1.07e-06, - "walnuts": 1.07e-06, - "warhead": 1.07e-06, - "watcher": 1.07e-06, - "wealthier": 1.07e-06, - "welles": 1.07e-06, - "widower": 1.07e-06, - "wnba": 1.07e-06, - "wobbly": 1.07e-06, - "wot": 1.07e-06, - "wraith": 1.07e-06, - "yangon": 1.07e-06, - "yanks": 1.07e-06, - "yew": 1.07e-06, - "yugoslav": 1.07e-06, - "zoey": 1.07e-06, - "zoological": 1.07e-06, - "accorded": 1.05e-06, - "afb": 1.05e-06, - "agar": 1.05e-06, - "agnostic": 1.05e-06, - "airmen": 1.05e-06, - "aisha": 1.05e-06, - "alameda": 1.05e-06, - "algiers": 1.05e-06, - "alis": 1.29e-07, - "aligning": 1.05e-06, - "allocations": 1.05e-06, - "alluring": 1.05e-06, - "amputation": 1.05e-06, - "anarchism": 1.05e-06, - "antagonistic": 1.05e-06, - "anthropologists": 1.05e-06, - "anya": 1.05e-06, - "apprehend": 1.05e-06, - "aquinas": 1.05e-06, - "architectures": 6.03e-08, - "axiom": 1.05e-06, - "banger": 1.05e-06, - "barista": 1.05e-06, - "basalt": 1.05e-06, - "bashir": 1.05e-06, - "beatings": 1.05e-06, - "belated": 1.05e-06, - "bello": 1.05e-06, - "bequeathed": 1.05e-06, - "betterment": 1.05e-06, - "birthright": 1.05e-06, - "blackboard": 1.05e-06, - "blackwater": 1.05e-06, - "bor": 1.05e-06, - "breather": 1.05e-06, - "brendon": 1.05e-06, - "brothels": 1.05e-06, - "buckeyes": 1.05e-06, - "buffers": 1.05e-06, - "buffs": 1.05e-06, - "burrell": 1.05e-06, - "buzzed": 1.05e-06, - "bylaws": 1.05e-06, - "bystander": 1.05e-06, - "candace": 1.05e-06, - "carleton": 1.05e-06, - "catchment": 1.05e-06, - "chechen": 1.05e-06, - "chia": 1.05e-06, - "chino": 1.05e-06, - "cleanly": 1.05e-06, - "coffees": 1.55e-07, - "colorless": 1.05e-06, - "concave": 1.05e-06, - "confuses": 1.05e-06, - "consequent": 1.05e-06, - "contraceptives": 1.05e-06, - "corrects": 1.05e-06, - "coughs": 1.05e-06, - "cree": 1.05e-06, - "crucifix": 1.05e-06, - "cus": 1.05e-06, - "cyclones": 1.05e-06, - "daggers": 2.4e-08, - "dazzle": 1.05e-06, - "dealerships": 1.05e-06, - "decode": 1.05e-06, - "depriving": 1.05e-06, - "diagnosing": 1.05e-06, - "diarrhoea": 1.05e-06, - "dieter": 1.05e-06, - "discerning": 1.05e-06, - "disintegration": 1.05e-06, - "disposing": 1.05e-06, - "dissonance": 1.05e-06, - "dup": 1.05e-06, - "duress": 1.05e-06, - "dyslexia": 1.05e-06, - "earthy": 1.05e-06, - "editorials": 1.05e-06, - "elects": 5.37e-08, - "elevating": 1.05e-06, - "elmo": 1.05e-06, - "embezzlement": 1.05e-06, - "emigrants": 1.05e-06, - "emits": 1.05e-06, - "endorses": 1.05e-06, - "enforceable": 1.05e-06, - "ephraim": 1.05e-06, - "equinox": 1.05e-06, - "ericsson": 1.05e-06, - "erotica": 1.05e-06, - "erp": 1.05e-06, - "escalator": 1.05e-06, - "ethnicities": 1.05e-06, - "eulogy": 1.05e-06, - "eventful": 1.05e-06, - "excitation": 1.05e-06, - "fanatical": 1.05e-06, - "fangs": 5.62e-08, - "fantastically": 1.05e-06, - "fastened": 1.05e-06, - "fawn": 1.05e-06, - "flanking": 1.05e-06, - "flinders": 1.05e-06, - "fluency": 1.05e-06, - "fresher": 1.05e-06, - "frickin": 1.05e-06, - "fructose": 1.05e-06, - "furnishing": 1.05e-06, - "gah": 1.05e-06, - "galvanized": 1.05e-06, - "gambia": 1.05e-06, - "gaul": 1.05e-06, - "gaulle": 1.05e-06, - "gcc": 1.05e-06, - "geophysical": 1.05e-06, - "gladiators": 1.05e-06, - "godwin": 1.05e-06, - "gomes": 1.05e-06, - "graphene": 1.05e-06, - "grasped": 1.05e-06, - "graze": 1.05e-06, - "grenada": 1.05e-06, - "grossman": 1.05e-06, - "grower": 1.05e-06, - "grunge": 1.05e-06, - "gtfo": 1.05e-06, - "gump": 1.05e-06, - "hagen": 1.05e-06, - "halsey": 1.05e-06, - "hatches": 1.05e-06, - "hawkes": 1.74e-07, - "headlined": 1.05e-06, - "helene": 1.05e-06, - "hennessy": 1.05e-06, - "hilariously": 1.05e-06, - "hoodies": 1.05e-06, - "hottie": 1.05e-06, - "huddled": 1.05e-06, - "hypothesized": 1.05e-06, - "iaea": 1.05e-06, - "ics": 1.05e-06, - "illustrative": 1.05e-06, - "imbalances": 1.05e-06, - "improvise": 1.05e-06, - "inappropriately": 1.05e-06, - "incandescent": 1.05e-06, - "indistinct": 1.05e-06, - "infallible": 1.05e-06, - "infuriating": 1.05e-06, - "insulating": 1.05e-06, - "integers": 1.05e-06, - "intracellular": 1.05e-06, - "irma": 1.05e-06, - "jakob": 1.05e-06, - "janus": 1.05e-06, - "jens": 1.91e-07, - "jg": 1.05e-06, - "jia": 1.05e-06, - "jolt": 1.05e-06, - "juggle": 1.05e-06, - "jukebox": 1.05e-06, - "jumpsuit": 1.05e-06, - "kami": 1.05e-06, - "kangaroos": 1.05e-06, - "kar": 1.05e-06, - "kato": 1.05e-06, - "kayaking": 1.05e-06, - "kerosene": 1.05e-06, - "keto": 1.05e-06, - "knobs": 1.05e-06, - "kroger": 1.05e-06, - "legacies": 1.05e-06, - "leveraging": 1.05e-06, - "levies": 1.05e-06, - "likeable": 1.05e-06, - "longs": 3.89e-07, - "macos": 1.05e-06, - "magenta": 1.05e-06, - "markov": 1.05e-06, - "marlboro": 1.05e-06, - "mccormack": 1.05e-06, - "mee": 1.05e-06, - "merton": 1.05e-06, - "methodical": 1.05e-06, - "michigans": 1.05e-06, - "middletown": 1.05e-06, - "mince": 1.05e-06, - "miniatures": 1.05e-06, - "mints": 7.41e-08, - "molotov": 1.05e-06, - "monogram": 1.05e-06, - "moray": 1.05e-06, - "mumford": 1.05e-06, - "mus": 5.89e-08, - "mythic": 1.05e-06, - "nacho": 1.05e-06, - "nailing": 1.05e-06, - "nanotechnology": 1.05e-06, - "napping": 1.05e-06, - "negroes": 1.05e-06, - "niko": 1.05e-06, - "nobleman": 1.05e-06, - "nonprofits": 1.05e-06, - "nugent": 1.05e-06, - "oneil": 1.05e-06, - "obeyed": 1.05e-06, - "optimist": 1.05e-06, - "osiris": 1.05e-06, - "outwardly": 1.05e-06, - "overlord": 1.05e-06, - "overuse": 1.05e-06, - "panned": 1.05e-06, - "papacy": 1.05e-06, - "pasted": 1.05e-06, - "patreon": 1.05e-06, - "pdt": 1.05e-06, - "perfumes": 1.05e-06, - "phonetic": 1.05e-06, - "photovoltaic": 1.05e-06, - "piccadilly": 1.05e-06, - "pied": 1.05e-06, - "piloting": 1.05e-06, - "pius": 1.05e-06, - "pkk": 1.05e-06, - "planck": 1.05e-06, - "poodle": 1.05e-06, - "populism": 1.05e-06, - "precedes": 1.05e-06, - "pus": 4.07e-08, - "racetrack": 1.05e-06, - "redirected": 1.05e-06, - "reeds": 5.5e-07, - "rejoined": 1.05e-06, - "relayed": 1.05e-06, - "rescinded": 1.05e-06, - "resuming": 1.05e-06, - "retrieving": 1.05e-06, - "rnc": 1.05e-06, - "roadblock": 1.05e-06, - "roadshow": 1.05e-06, - "roadways": 1.05e-06, - "rsvp": 1.05e-06, - "sabre": 1.05e-06, - "saleh": 1.05e-06, - "salons": 7.94e-08, - "sandbox": 1.05e-06, - "sato": 1.05e-06, - "saxons": 1.05e-06, - "scooters": 5.37e-08, - "sds": 1.05e-06, - "seagull": 1.05e-06, - "shag": 1.05e-06, - "shahid": 1.05e-06, - "sheryl": 1.05e-06, - "shifter": 1.05e-06, - "shoemaker": 1.05e-06, - "shortfall": 1.05e-06, - "shrugs": 1.05e-06, - "sichuan": 1.05e-06, - "sift": 1.05e-06, - "silo": 1.05e-06, - "sion": 1.05e-06, - "smacking": 1.05e-06, - "smothered": 1.05e-06, - "sneezing": 1.05e-06, - "snooping": 1.05e-06, - "socialization": 1.05e-06, - "sonys": 1.05e-06, - "soot": 1.05e-06, - "sopranos": 1.05e-06, - "soto": 1.05e-06, - "southport": 1.05e-06, - "sparingly": 1.05e-06, - "speck": 1.05e-06, - "spectacularly": 1.05e-06, - "spiced": 1.05e-06, - "ssc": 1.05e-06, - "sse": 1.05e-06, - "stoves": 1.05e-06, - "streep": 1.05e-06, - "stylus": 1.05e-06, - "subclass": 1.05e-06, - "submits": 1.05e-06, - "successively": 1.05e-06, - "suk": 1.05e-06, - "sumptuous": 1.05e-06, - "suture": 1.05e-06, - "sydneys": 1.05e-06, - "synaptic": 1.05e-06, - "tailgate": 1.05e-06, - "tenuous": 1.05e-06, - "thelma": 1.05e-06, - "threes": 4.17e-07, - "tobin": 1.05e-06, - "topographic": 1.05e-06, - "trafalgar": 1.05e-06, - "tranquility": 1.05e-06, - "transmits": 1.05e-06, - "trekking": 1.05e-06, - "tuscan": 1.05e-06, - "tutu": 1.05e-06, - "tzu": 1.05e-06, - "umbilical": 1.05e-06, - "unhinged": 1.05e-06, - "uninterested": 1.05e-06, - "usaf": 1.05e-06, - "uterine": 1.05e-06, - "vanishes": 1.05e-06, - "vapour": 1.05e-06, - "vas": 1.78e-07, - "veer": 1.05e-06, - "versace": 1.05e-06, - "warheads": 1.05e-06, - "waxing": 1.05e-06, - "weirder": 1.05e-06, - "weller": 1.05e-06, - "wheaton": 1.05e-06, - "whereupon": 1.05e-06, - "winfrey": 1.05e-06, - "winn": 1.05e-06, - "withdraws": 1.05e-06, - "wither": 1.05e-06, - "wk": 1.05e-06, - "wobble": 1.05e-06, - "yadav": 1.05e-06, - "yeon": 1.05e-06, - "yvette": 1.05e-06, - "zak": 1.05e-06, - "zed": 1.05e-06, - "abridged": 1.02e-06, - "absences": 1.02e-06, - "acacia": 1.02e-06, - "adorn": 1.02e-06, - "aggressor": 1.02e-06, - "agm": 1.02e-06, - "ambivalent": 1.02e-06, - "amethyst": 1.02e-06, - "amit": 1.02e-06, - "angling": 1.02e-06, - "anil": 1.02e-06, - "antennae": 1.02e-06, - "antimicrobial": 1.02e-06, - "anybodys": 1.02e-06, - "asias": 1.02e-06, - "atk": 1.02e-06, - "ats": 5.01e-08, - "babylonian": 1.02e-06, - "baines": 1.02e-06, - "baiting": 1.02e-06, - "barks": 1.02e-06, - "beasley": 1.02e-06, - "berserk": 1.02e-06, - "berwick": 1.02e-06, - "bickering": 1.02e-06, - "bla": 1.02e-06, - "bobo": 1.02e-06, - "bovine": 1.02e-06, - "braids": 1.02e-06, - "braille": 1.02e-06, - "butchered": 1.02e-06, - "bypassing": 1.02e-06, - "cabot": 1.02e-06, - "candlelight": 1.02e-06, - "cannibalism": 1.02e-06, - "canoes": 1.02e-06, - "capricorn": 1.02e-06, - "captivated": 1.02e-06, - "catapult": 1.02e-06, - "cbn": 1.02e-06, - "ccs": 2e-07, - "cdr": 1.02e-06, - "censors": 1.02e-06, - "centro": 1.02e-06, - "cervix": 1.02e-06, - "cheery": 1.02e-06, - "chimneys": 1.02e-06, - "chit": 1.02e-06, - "chomsky": 1.02e-06, - "chrissy": 1.02e-06, - "clarks": 4.37e-07, - "clements": 9.55e-08, - "cleo": 1.02e-06, - "cog": 1.02e-06, - "cohorts": 1.02e-06, - "coloration": 1.02e-06, - "connective": 1.02e-06, - "cray": 1.02e-06, - "crayons": 1.02e-06, - "cronies": 1.02e-06, - "crusty": 1.02e-06, - "cumin": 1.02e-06, - "cutlery": 1.02e-06, - "dawes": 1.02e-06, - "decal": 1.02e-06, - "deciduous": 1.02e-06, - "degenerative": 1.02e-06, - "deloitte": 1.02e-06, - "delphi": 1.02e-06, - "detract": 1.02e-06, - "dialed": 1.02e-06, - "digested": 1.02e-06, - "diminishes": 1.02e-06, - "diplomas": 1.02e-06, - "dissection": 1.02e-06, - "dissimilar": 1.02e-06, - "dissuade": 1.02e-06, - "distillation": 1.02e-06, - "drab": 1.02e-06, - "dslr": 1.02e-06, - "dubs": 2.95e-08, - "ducked": 1.02e-06, - "dumfries": 1.02e-06, - "eeg": 1.02e-06, - "eggplant": 1.02e-06, - "ellington": 1.02e-06, - "engravings": 1.02e-06, - "enmity": 1.02e-06, - "epidemics": 1.02e-06, - "equipping": 1.02e-06, - "eucalyptus": 1.02e-06, - "eurasia": 1.02e-06, - "evaporate": 1.02e-06, - "execs": 1.02e-06, - "exhibitors": 1.02e-06, - "exo": 1.02e-06, - "exorbitant": 1.02e-06, - "expat": 1.02e-06, - "experimentally": 1.02e-06, - "expiring": 1.02e-06, - "eyelid": 1.02e-06, - "fainting": 1.02e-06, - "fecal": 1.02e-06, - "ferret": 1.02e-06, - "fertilizers": 1.02e-06, - "financier": 1.02e-06, - "fitter": 1.02e-06, - "flagrant": 1.02e-06, - "flapping": 1.02e-06, - "florist": 1.02e-06, - "foreplay": 1.02e-06, - "formatted": 1.02e-06, - "ftp": 1.02e-06, - "gangsta": 1.02e-06, - "garb": 1.02e-06, - "garvey": 1.02e-06, - "gassed": 1.02e-06, - "gatorade": 1.02e-06, - "gentiles": 1.02e-06, - "gilles": 1.02e-06, - "glancing": 1.02e-06, - "glaucoma": 1.02e-06, - "glazing": 1.02e-06, - "goblins": 6.61e-08, - "googling": 1.02e-06, - "goosebumps": 1.02e-06, - "granular": 1.02e-06, - "greenish": 1.02e-06, - "grocer": 1.02e-06, - "groping": 1.02e-06, - "gtx": 1.02e-06, - "headless": 1.02e-06, - "healthiest": 1.02e-06, - "heineken": 1.02e-06, - "hemsworth": 1.02e-06, - "hibernation": 1.02e-06, - "hindrance": 1.02e-06, - "hollywoods": 1.02e-06, - "hula": 1.02e-06, - "humanitys": 1.02e-06, - "huxley": 1.02e-06, - "ills": 1.02e-06, - "immunization": 1.02e-06, - "implantation": 1.02e-06, - "impressing": 1.02e-06, - "inaccuracies": 1.02e-06, - "inanimate": 1.02e-06, - "inca": 1.02e-06, - "inexplicably": 1.02e-06, - "infield": 1.02e-06, - "inflate": 1.02e-06, - "innovator": 1.02e-06, - "intermission": 1.02e-06, - "iqbal": 1.02e-06, - "irreplaceable": 1.02e-06, - "kanji": 1.02e-06, - "kh": 1.02e-06, - "kilogram": 1.02e-06, - "kn": 1.02e-06, - "kombat": 1.02e-06, - "kpop": 1.02e-06, - "kush": 1.02e-06, - "landline": 1.02e-06, - "lashed": 1.02e-06, - "legislate": 1.02e-06, - "liberian": 1.02e-06, - "lingo": 1.02e-06, - "lohan": 1.02e-06, - "looping": 1.02e-06, - "macy": 1.02e-06, - "marlin": 1.02e-06, - "marsden": 1.02e-06, - "marsha": 1.02e-06, - "masterchef": 1.02e-06, - "matron": 1.02e-06, - "mayfair": 1.02e-06, - "mcallister": 1.02e-06, - "mcgowan": 1.02e-06, - "meaty": 1.02e-06, - "mifflin": 1.02e-06, - "mirroring": 1.02e-06, - "mistaking": 1.02e-06, - "moderators": 1.02e-06, - "momo": 1.02e-06, - "mouthful": 1.02e-06, - "mun": 1.02e-06, - "murdock": 1.02e-06, - "mustangs": 6.61e-08, - "mutton": 1.02e-06, - "myra": 1.02e-06, - "neill": 1.02e-06, - "neoliberal": 1.02e-06, - "nestled": 1.02e-06, - "neutrons": 1.02e-06, - "newbury": 1.02e-06, - "newell": 1.02e-06, - "nfls": 1.02e-06, - "novelists": 1.02e-06, - "numeric": 1.02e-06, - "nunes": 1.02e-06, - "okeefe": 1.02e-06, - "oars": 1.02e-06, - "oates": 1.02e-06, - "ohm": 1.02e-06, - "oneplus": 1.02e-06, - "oop": 1.02e-06, - "optimizing": 1.02e-06, - "orc": 1.02e-06, - "outfielder": 1.02e-06, - "outflow": 1.02e-06, - "outperform": 1.02e-06, - "overtaking": 1.02e-06, - "overtook": 1.02e-06, - "overture": 1.02e-06, - "parma": 1.02e-06, - "parr": 1.02e-06, - "parrots": 6.46e-08, - "passively": 1.02e-06, - "paulson": 1.02e-06, - "peddling": 1.02e-06, - "pepperoni": 1.02e-06, - "perforated": 1.02e-06, - "pes": 2.34e-08, - "piero": 1.02e-06, - "pitchfork": 1.02e-06, - "placid": 1.02e-06, - "pleistocene": 1.02e-06, - "pooping": 1.02e-06, - "pox": 1.02e-06, - "pretense": 1.02e-06, - "principled": 1.02e-06, - "progesterone": 1.02e-06, - "puritan": 1.02e-06, - "quart": 1.02e-06, - "quinoa": 1.02e-06, - "rabble": 1.02e-06, - "rafters": 1.02e-06, - "raisin": 1.02e-06, - "rationing": 1.02e-06, - "reappear": 1.02e-06, - "rearrange": 1.02e-06, - "recreating": 1.02e-06, - "redeemer": 1.02e-06, - "redeeming": 1.02e-06, - "refreshments": 1.02e-06, - "reissue": 1.02e-06, - "remade": 1.02e-06, - "repulsed": 1.02e-06, - "resistor": 1.02e-06, - "restructure": 1.02e-06, - "revolting": 1.02e-06, - "rhapsody": 1.02e-06, - "rhea": 1.02e-06, - "robby": 1.02e-06, - "rousseau": 1.02e-06, - "roux": 1.02e-06, - "ruddy": 1.02e-06, - "rune": 1.02e-06, - "sahib": 1.02e-06, - "salam": 1.02e-06, - "sandler": 1.02e-06, - "saucepan": 1.02e-06, - "scala": 1.02e-06, - "scarier": 1.02e-06, - "schism": 1.02e-06, - "scrubbed": 1.02e-06, - "seer": 1.02e-06, - "sepsis": 1.02e-06, - "seward": 1.02e-06, - "sharpening": 1.02e-06, - "sharpness": 1.02e-06, - "shelved": 1.02e-06, - "shh": 1.02e-06, - "shipper": 1.02e-06, - "shopped": 1.02e-06, - "shui": 1.02e-06, - "sketching": 1.02e-06, - "skew": 1.02e-06, - "skimming": 1.02e-06, - "skydiving": 1.02e-06, - "smitten": 1.02e-06, - "snappy": 1.02e-06, - "sneaker": 1.02e-06, - "snort": 1.02e-06, - "snowboard": 1.02e-06, - "solitaire": 1.02e-06, - "sparing": 1.02e-06, - "spicer": 1.02e-06, - "spiegel": 1.02e-06, - "sportsmanship": 1.02e-06, - "sprinting": 1.02e-06, - "stakeholder": 1.02e-06, - "stanza": 1.02e-06, - "stipend": 1.02e-06, - "subsided": 1.02e-06, - "superannuation": 1.02e-06, - "surging": 1.02e-06, - "sweetened": 1.02e-06, - "sweetly": 1.02e-06, - "swims": 1.02e-06, - "swimwear": 1.02e-06, - "tamed": 1.02e-06, - "tampons": 1.02e-06, - "taunting": 1.02e-06, - "tec": 1.02e-06, - "tempe": 1.02e-06, - "tendons": 1.02e-06, - "terraced": 1.02e-06, - "testers": 1.02e-06, - "thrived": 1.02e-06, - "tickled": 1.02e-06, - "titty": 1.02e-06, - "toppings": 1.02e-06, - "traffickers": 1.02e-06, - "transcends": 1.02e-06, - "tropes": 1.02e-06, - "tsk": 1.02e-06, - "tumbled": 1.02e-06, - "twas": 6.92e-08, - "twitters": 1.55e-07, - "typography": 1.02e-06, - "typos": 1.02e-06, - "tyrion": 1.02e-06, - "uhhh": 1.02e-06, - "ukulele": 1.02e-06, - "ump": 1.02e-06, - "unauthorised": 1.02e-06, - "uncensored": 1.02e-06, - "unforgivable": 1.02e-06, - "uninhabited": 1.02e-06, - "unsurprisingly": 1.02e-06, - "untenable": 1.02e-06, - "unwavering": 1.02e-06, - "uranus": 1.02e-06, - "usability": 1.02e-06, - "veritable": 1.02e-06, - "vices": 5.5e-08, - "voldemort": 1.02e-06, - "wanderer": 1.02e-06, - "warts": 1.02e-06, - "watchman": 1.02e-06, - "whittaker": 1.02e-06, - "whys": 3.31e-07, - "wut": 1.02e-06, - "xander": 1.02e-06, - "xerox": 1.02e-06, - "xiaomi": 1.02e-06, - "yd": 1.02e-06, - "yeo": 1.02e-06, - "yeti": 1.02e-06, - "yoghurt": 1.02e-06, - "aac": 1e-06, - "abject": 1e-06, - "actionable": 1e-06, - "administers": 1e-06, - "aes": 3.24e-08, - "affective": 1e-06, - "afield": 1e-06, - "aldrich": 1e-06, - "aldridge": 1e-06, - "alienating": 1e-06, - "alight": 1e-06, - "amazement": 1e-06, - "amending": 1e-06, - "amg": 1e-06, - "aoc": 1e-06, - "apnea": 1e-06, - "appointees": 1e-06, - "armpit": 1e-06, - "arr": 1e-06, - "asl": 1e-06, - "austere": 1e-06, - "authoritarianism": 1e-06, - "awkwardness": 1e-06, - "bab": 1e-06, - "backer": 1e-06, - "backpacking": 1e-06, - "bagging": 1e-06, - "bailiff": 1e-06, - "banda": 1e-06, - "banked": 1e-06, - "barnsley": 1e-06, - "barricades": 1e-06, - "beamed": 1e-06, - "bergman": 1e-06, - "betrays": 1e-06, - "blinked": 1e-06, - "blissful": 1e-06, - "blister": 1e-06, - "blockage": 1e-06, - "blondes": 6.61e-08, - "bloodbath": 1e-06, - "bluffs": 1e-06, - "bmc": 1e-06, - "bnp": 1e-06, - "booms": 5.25e-08, - "bower": 1e-06, - "brah": 1e-06, - "bravest": 1e-06, - "brb": 1e-06, - "breasted": 1e-06, - "brookings": 1e-06, - "budgeted": 1e-06, - "bugger": 1e-06, - "buoy": 1e-06, - "bv": 1e-06, - "campaigner": 1e-06, - "capacitors": 1e-06, - "capes": 5.89e-08, - "carvings": 1e-06, - "cbt": 1e-06, - "celeb": 1e-06, - "cellars": 1e-06, - "cfl": 1e-06, - "chalice": 1e-06, - "chas": 5.75e-08, - "chichester": 1e-06, - "christophe": 1e-06, - "clippings": 1e-06, - "coll": 1e-06, - "colorectal": 1e-06, - "combing": 1e-06, - "commendation": 1e-06, - "compensating": 1e-06, - "condominiums": 1e-06, - "congratulating": 1e-06, - "consignment": 1e-06, - "contradicting": 1e-06, - "conundrum": 1e-06, - "corinne": 1e-06, - "coursework": 1e-06, - "coven": 1e-06, - "criminology": 1e-06, - "csu": 1e-06, - "czar": 1e-06, - "depots": 8.32e-08, - "dials": 1e-06, - "diamondbacks": 1e-06, - "dianne": 1e-06, - "discounting": 1e-06, - "disorganized": 1e-06, - "disseminated": 1e-06, - "dissolves": 1e-06, - "dmc": 1e-06, - "doggie": 1e-06, - "domes": 7.41e-08, - "duchy": 1e-06, - "dumplings": 1e-06, - "earmarked": 1e-06, - "ecumenical": 1e-06, - "electrification": 1e-06, - "embedding": 1e-06, - "encased": 1e-06, - "endothelial": 1e-06, - "engel": 1e-06, - "episodic": 1e-06, - "epsom": 1e-06, - "eros": 1e-06, - "eskimo": 1e-06, - "eus": 1.17e-07, - "ewan": 1e-06, - "expiry": 1e-06, - "extremity": 1e-06, - "fabregas": 1e-06, - "faithfulness": 1e-06, - "felonies": 1e-06, - "femur": 1e-06, - "ferrer": 1e-06, - "fluctuating": 1e-06, - "fong": 1e-06, - "fowl": 1e-06, - "foxy": 1e-06, - "franken": 1e-06, - "freckles": 1e-06, - "freelancer": 1e-06, - "fullerton": 1e-06, - "fundraisers": 1e-06, - "furs": 1e-06, - "gelatin": 1e-06, - "gestation": 1e-06, - "guangdong": 1e-06, - "guggenheim": 1e-06, - "guillotine": 1e-06, - "gull": 1e-06, - "gulls": 1e-06, - "gusto": 1e-06, - "halfback": 1e-06, - "handout": 1e-06, - "harbors": 6.76e-08, - "havens": 8.71e-08, - "headband": 1e-06, - "henning": 1e-06, - "heralded": 1e-06, - "heretic": 1e-06, - "hernia": 1e-06, - "hippy": 1e-06, - "hitachi": 1e-06, - "hummus": 1e-06, - "ideologically": 1e-06, - "indiscriminate": 1e-06, - "individualism": 1e-06, - "infernal": 1e-06, - "infrequently": 1e-06, - "instill": 1e-06, - "invalidate": 1e-06, - "isolates": 1e-06, - "jazzy": 1e-06, - "jehovahs": 5.01e-08, - "jeong": 1e-06, - "jerrys": 7.08e-08, - "jeter": 1e-06, - "joffrey": 1e-06, - "kenyon": 1e-06, - "kingpin": 1e-06, - "kiosk": 1e-06, - "klopp": 1e-06, - "lags": 1e-06, - "lawton": 1e-06, - "legalizing": 1e-06, - "lentils": 1e-06, - "leprosy": 1e-06, - "lh": 1e-06, - "lisp": 1e-06, - "liverpools": 1e-06, - "locust": 1e-06, - "lombard": 1e-06, - "looney": 1e-06, - "lubbock": 1e-06, - "lui": 1e-06, - "magnifying": 1e-06, - "malaya": 1e-06, - "mallet": 1e-06, - "maloney": 1e-06, - "mather": 1e-06, - "medici": 1e-06, - "mes": 2.45e-07, - "metastatic": 1e-06, - "meteorites": 1e-06, - "mew": 1e-06, - "militarily": 1e-06, - "minced": 1e-06, - "mishap": 1e-06, - "moby": 1e-06, - "mojave": 1e-06, - "molasses": 1e-06, - "monographs": 1e-06, - "monolithic": 1e-06, - "motoring": 1e-06, - "mott": 1e-06, - "moulded": 1e-06, - "mystique": 1e-06, - "nanjing": 1e-06, - "narcotic": 1e-06, - "nda": 1e-06, - "nefarious": 1e-06, - "nepali": 1e-06, - "nite": 1e-06, - "nix": 1e-06, - "nola": 1e-06, - "normalize": 1e-06, - "nucleotide": 1e-06, - "nurseries": 1e-06, - "olympians": 1e-06, - "optimus": 1e-06, - "orcs": 1e-06, - "orkney": 1e-06, - "outbound": 1e-06, - "outbursts": 1e-06, - "outsourced": 1e-06, - "overalls": 1e-06, - "overpowered": 1e-06, - "overworked": 1e-06, - "padilla": 1e-06, - "pantomime": 1e-06, - "parkers": 2.4e-07, - "peacetime": 1e-06, - "pei": 1e-06, - "permian": 1e-06, - "peso": 1e-06, - "pierson": 1e-06, - "pilates": 1e-06, - "pita": 1e-06, - "pitting": 1e-06, - "plagues": 1e-06, - "playtime": 1e-06, - "pompeii": 1e-06, - "pompey": 1e-06, - "portage": 1e-06, - "positional": 1e-06, - "postcode": 1e-06, - "predicated": 1e-06, - "predictably": 1e-06, - "progeny": 1e-06, - "propagated": 1e-06, - "pushy": 1e-06, - "qualcomm": 1e-06, - "quell": 1e-06, - "racecourse": 1e-06, - "railings": 1e-06, - "rainwater": 1e-06, - "rebounding": 1e-06, - "reflector": 1e-06, - "regimental": 1e-06, - "rehabilitate": 1e-06, - "renounced": 1e-06, - "reorganized": 1e-06, - "replicas": 1e-06, - "reread": 1e-06, - "revisiting": 1e-06, - "revolved": 1e-06, - "rigorously": 1e-06, - "roderick": 1e-06, - "rogues": 1.38e-07, - "roost": 1e-06, - "roswell": 1e-06, - "routers": 5.01e-08, - "salim": 1e-06, - "salzburg": 1e-06, - "savory": 1e-06, - "scholes": 1e-06, - "scorpions": 7.24e-08, - "sdf": 1e-06, - "seaworld": 1e-06, - "segmented": 1e-06, - "semesters": 1.02e-07, - "shalom": 1e-06, - "shard": 1e-06, - "sieve": 1e-06, - "signatories": 1e-06, - "sill": 1e-06, - "silvery": 1e-06, - "silvio": 1e-06, - "sittin": 1e-06, - "smartwatch": 1e-06, - "snapper": 1e-06, - "snickers": 1e-06, - "soleil": 1e-06, - "soloist": 1e-06, - "somerville": 1e-06, - "soreness": 1e-06, - "southerners": 1e-06, - "sowing": 1e-06, - "sphinx": 1e-06, - "spore": 3.55e-08, - "stances": 1e-06, - "starfish": 1e-06, - "stifle": 1e-06, - "sturridge": 1e-06, - "succulent": 1e-06, - "superbly": 1e-06, - "supercar": 1e-06, - "superfluous": 1e-06, - "surged": 1e-06, - "surpasses": 1e-06, - "swain": 1e-06, - "swarming": 1e-06, - "sxsw": 1e-06, - "synchronous": 1e-06, - "tania": 1e-06, - "tasteful": 1e-06, - "telemetry": 1e-06, - "templeton": 1e-06, - "tenet": 1e-06, - "testifies": 1e-06, - "theologian": 1e-06, - "tiled": 1e-06, - "togo": 1e-06, - "tolstoy": 1e-06, - "tots": 1e-06, - "transcendental": 1e-06, - "transformational": 1e-06, - "translational": 1e-06, - "travesty": 1e-06, - "tricking": 1e-06, - "tunis": 1e-06, - "uncomfortably": 1e-06, - "undiscovered": 1e-06, - "unisex": 1e-06, - "upi": 1e-06, - "vane": 1e-06, - "vegetarians": 1e-06, - "vengeful": 1e-06, - "vials": 1e-06, - "weavers": 2.19e-07, - "westside": 1e-06, - "whatnot": 1e-06, - "whiteness": 1e-06, - "wicker": 1e-06, - "wrinkled": 1e-06, - "wsj": 1e-06, - "wynne": 1e-06, - "yank": 1e-06, - "yaya": 1e-06, - "aback": 9.77e-07, - "accuser": 9.77e-07, - "adrenal": 9.77e-07, - "agonizing": 9.77e-07, - "aimee": 9.77e-07, - "alluding": 9.77e-07, - "aloof": 9.77e-07, - "amulet": 9.77e-07, - "annotations": 9.77e-07, - "anticipates": 9.77e-07, - "apologetic": 9.77e-07, - "apoptosis": 9.77e-07, - "aq": 9.77e-07, - "arcane": 9.77e-07, - "argo": 9.77e-07, - "aristocrat": 9.77e-07, - "arthurs": 1.41e-07, - "arty": 9.77e-07, - "assassinations": 9.77e-07, - "assays": 9.77e-07, - "astrid": 9.77e-07, - "astrophysics": 9.77e-07, - "atta": 9.77e-07, - "bader": 9.77e-07, - "baek": 9.77e-07, - "baku": 9.77e-07, - "bancroft": 9.77e-07, - "barbershop": 9.77e-07, - "batsmen": 9.77e-07, - "bbs": 1.74e-07, - "beal": 9.77e-07, - "beanie": 9.77e-07, - "behest": 9.77e-07, - "beit": 9.77e-07, - "benoit": 9.77e-07, - "bibi": 9.77e-07, - "biometric": 9.77e-07, - "blackened": 9.77e-07, - "blacklisted": 9.77e-07, - "blanca": 9.77e-07, - "bogged": 9.77e-07, - "boobies": 9.77e-07, - "bookkeeping": 9.77e-07, - "borden": 9.77e-07, - "braxton": 9.77e-07, - "bremen": 9.77e-07, - "brews": 9.77e-07, - "brixton": 9.77e-07, - "bronco": 9.77e-07, - "caesars": 8.51e-07, - "caitlyn": 9.77e-07, - "cajun": 9.77e-07, - "calvary": 9.77e-07, - "camaraderie": 9.77e-07, - "caravans": 9.77e-07, - "cascades": 9.77e-07, - "cask": 9.77e-07, - "catwalk": 9.77e-07, - "centimetres": 9.77e-07, - "chanted": 9.77e-07, - "christies": 8.91e-08, - "classically": 9.77e-07, - "clermont": 9.77e-07, - "clog": 9.77e-07, - "clubbing": 9.77e-07, - "colonized": 9.77e-07, - "columbian": 9.77e-07, - "competencies": 9.77e-07, - "confiscation": 9.77e-07, - "congresses": 9.77e-07, - "conscription": 9.77e-07, - "conserving": 9.77e-07, - "convo": 9.77e-07, - "covenants": 9.77e-07, - "cranial": 9.77e-07, - "criminality": 9.77e-07, - "croix": 9.77e-07, - "cts": 5.75e-08, - "culprits": 9.77e-07, - "custer": 9.77e-07, - "cyberspace": 9.77e-07, - "dao": 9.77e-07, - "dara": 9.77e-07, - "dbs": 1.29e-07, - "decapitated": 9.77e-07, - "detach": 9.77e-07, - "deterrence": 9.77e-07, - "deutsch": 9.77e-07, - "dielectric": 9.77e-07, - "dispensed": 9.77e-07, - "distanced": 9.77e-07, - "distasteful": 9.77e-07, - "dojo": 9.77e-07, - "dorms": 9.77e-07, - "dougie": 9.77e-07, - "dreading": 9.77e-07, - "droughts": 9.77e-07, - "druid": 9.77e-07, - "dud": 9.77e-07, - "duvet": 9.77e-07, - "eclipsed": 9.77e-07, - "eject": 9.77e-07, - "ell": 9.77e-07, - "emblems": 9.77e-07, - "endogenous": 9.77e-07, - "enforcer": 9.77e-07, - "ensembles": 6.17e-08, - "ephemeral": 9.77e-07, - "eponymous": 9.77e-07, - "erich": 9.77e-07, - "escorting": 9.77e-07, - "ethnographic": 9.77e-07, - "eurasian": 9.77e-07, - "examiners": 2.34e-07, - "extracurricular": 9.77e-07, - "faraway": 9.77e-07, - "fenway": 9.77e-07, - "fic": 9.77e-07, - "figurines": 9.77e-07, - "fittest": 9.77e-07, - "fleshy": 9.77e-07, - "flickering": 9.77e-07, - "fliers": 9.77e-07, - "fluctuate": 9.77e-07, - "fluttering": 9.77e-07, - "fontaine": 9.77e-07, - "footpath": 9.77e-07, - "fordham": 9.77e-07, - "forerunner": 9.77e-07, - "forgo": 9.77e-07, - "foxx": 9.77e-07, - "freer": 9.77e-07, - "frontage": 9.77e-07, - "frustrate": 9.77e-07, - "fryer": 9.77e-07, - "gaius": 9.77e-07, - "gar": 9.77e-07, - "garnett": 9.77e-07, - "ged": 9.77e-07, - "genomics": 9.77e-07, - "gingrich": 9.77e-07, - "goof": 9.77e-07, - "graced": 9.77e-07, - "grafton": 9.77e-07, - "grandad": 9.77e-07, - "greco": 9.77e-07, - "gunther": 9.77e-07, - "gurus": 1.86e-07, - "gustavo": 9.77e-07, - "hadith": 9.77e-07, - "hamburgers": 9.77e-07, - "hamlin": 9.77e-07, - "hangers": 9.77e-07, - "hannity": 9.77e-07, - "hardening": 9.77e-07, - "hippocampus": 9.77e-07, - "hoon": 9.77e-07, - "hoot": 9.77e-07, - "hoses": 9.77e-07, - "hostels": 9.77e-07, - "humanism": 9.77e-07, - "incarnate": 9.77e-07, - "incomparable": 9.77e-07, - "informer": 9.77e-07, - "infrequent": 9.77e-07, - "infringe": 9.77e-07, - "ingestion": 9.77e-07, - "inquiring": 9.77e-07, - "internment": 9.77e-07, - "interprets": 9.77e-07, - "janine": 9.77e-07, - "jap": 9.77e-07, - "jekyll": 9.77e-07, - "jims": 1.1e-07, - "joni": 9.77e-07, - "jour": 9.77e-07, - "juggernaut": 9.77e-07, - "jungles": 9.77e-07, - "kalamazoo": 9.77e-07, - "kawhi": 9.77e-07, - "khartoum": 9.77e-07, - "kj": 9.77e-07, - "kushner": 9.77e-07, - "lackluster": 9.77e-07, - "langdon": 9.77e-07, - "largo": 9.77e-07, - "larva": 9.77e-07, - "laude": 9.77e-07, - "lausanne": 9.77e-07, - "layering": 9.77e-07, - "libertarians": 9.77e-07, - "lint": 9.77e-07, - "lira": 9.77e-07, - "livid": 9.77e-07, - "lobbies": 9.77e-07, - "loomis": 9.77e-07, - "loon": 9.77e-07, - "looser": 9.77e-07, - "lotte": 9.77e-07, - "lowland": 9.77e-07, - "luce": 9.77e-07, - "luckiest": 9.77e-07, - "luscious": 9.77e-07, - "luxe": 9.77e-07, - "magnified": 9.77e-07, - "mainframe": 9.77e-07, - "mamas": 6.17e-07, - "manger": 9.77e-07, - "manicure": 9.77e-07, - "mares": 1.2e-07, - "materialistic": 9.77e-07, - "materialize": 9.77e-07, - "matts": 1.07e-07, - "maturation": 9.77e-07, - "maury": 9.77e-07, - "mckee": 9.77e-07, - "mckinnon": 9.77e-07, - "mcmanus": 9.77e-07, - "meditations": 9.77e-07, - "menzies": 9.77e-07, - "mica": 9.77e-07, - "millar": 9.77e-07, - "minerva": 9.77e-07, - "minted": 9.77e-07, - "minuscule": 9.77e-07, - "misspelled": 9.77e-07, - "mobil": 9.77e-07, - "moisturizer": 9.77e-07, - "molar": 9.77e-07, - "molestation": 9.77e-07, - "mong": 9.77e-07, - "montrose": 9.77e-07, - "mosley": 9.77e-07, - "motorsports": 9.77e-07, - "mush": 9.77e-07, - "narcissist": 9.77e-07, - "navigational": 9.77e-07, - "neolithic": 9.77e-07, - "nestle": 9.77e-07, - "normalization": 9.77e-07, - "nous": 9.77e-07, - "oahu": 9.77e-07, - "obsessing": 9.77e-07, - "oceania": 9.77e-07, - "offends": 9.77e-07, - "ola": 9.77e-07, - "onus": 9.77e-07, - "onyx": 9.77e-07, - "oppa": 9.77e-07, - "osteoporosis": 9.77e-07, - "othello": 9.77e-07, - "outfitted": 9.77e-07, - "outwards": 9.77e-07, - "paco": 9.77e-07, - "palazzo": 9.77e-07, - "panting": 9.77e-07, - "pawns": 9.77e-07, - "peering": 9.77e-07, - "perceptive": 9.77e-07, - "peri": 9.77e-07, - "perpetuating": 9.77e-07, - "phosphorylation": 9.77e-07, - "phuket": 9.77e-07, - "pianos": 7.94e-08, - "picker": 9.77e-07, - "poached": 9.77e-07, - "precautionary": 9.77e-07, - "precipitated": 9.77e-07, - "preside": 9.77e-07, - "primo": 9.77e-07, - "purportedly": 9.77e-07, - "ramona": 9.77e-07, - "rani": 9.77e-07, - "rayon": 9.77e-07, - "recessed": 9.77e-07, - "recklessly": 9.77e-07, - "redefined": 9.77e-07, - "reflux": 9.77e-07, - "regionally": 9.77e-07, - "reinhardt": 9.77e-07, - "reinstatement": 9.77e-07, - "relinquished": 9.77e-07, - "renovating": 9.77e-07, - "retriever": 9.77e-07, - "rigidity": 9.77e-07, - "ringtone": 9.77e-07, - "ritter": 9.77e-07, - "riveting": 9.77e-07, - "ronny": 9.77e-07, - "rosewood": 9.77e-07, - "sable": 9.77e-07, - "sars": 9.77e-07, - "scoops": 9.77e-07, - "scouring": 9.77e-07, - "sedative": 9.77e-07, - "senile": 9.77e-07, - "setter": 9.77e-07, - "sheesh": 9.77e-07, - "sher": 9.77e-07, - "shredding": 9.77e-07, - "shrouded": 9.77e-07, - "shuffled": 9.77e-07, - "sil": 9.77e-07, - "sips": 9.77e-07, - "skys": 9.77e-07, - "sleigh": 9.77e-07, - "sliders": 9.77e-07, - "sliver": 9.77e-07, - "slush": 9.77e-07, - "smelt": 9.77e-07, - "softness": 9.77e-07, - "solidify": 9.77e-07, - "sora": 9.77e-07, - "sordid": 9.77e-07, - "soundtracks": 9.77e-07, - "soybeans": 9.77e-07, - "sportsmen": 9.77e-07, - "sprawl": 9.77e-07, - "springboard": 9.77e-07, - "squashed": 9.77e-07, - "squatting": 9.77e-07, - "stasis": 1.29e-08, - "stirs": 9.77e-07, - "stonewall": 9.77e-07, - "storied": 9.77e-07, - "streamers": 9.77e-07, - "sultry": 9.77e-07, - "sustenance": 9.77e-07, - "swamped": 9.77e-07, - "swivel": 9.77e-07, - "tait": 9.77e-07, - "tearful": 9.77e-07, - "teri": 9.77e-07, - "terminates": 9.77e-07, - "thier": 9.77e-07, - "thrashing": 9.77e-07, - "toolbox": 9.77e-07, - "toying": 9.77e-07, - "transsexual": 9.77e-07, - "tuff": 9.77e-07, - "twitching": 9.77e-07, - "underdeveloped": 9.77e-07, - "undisturbed": 9.77e-07, - "unhelpful": 9.77e-07, - "uninformed": 9.77e-07, - "unkind": 9.77e-07, - "unresponsive": 9.77e-07, - "unscathed": 9.77e-07, - "unsupported": 9.77e-07, - "utd": 9.77e-07, - "utica": 9.77e-07, - "utrecht": 9.77e-07, - "uzi": 9.77e-07, - "vert": 9.77e-07, - "vindicated": 9.77e-07, - "warlock": 9.77e-07, - "waterhouse": 9.77e-07, - "wayside": 9.77e-07, - "whig": 9.77e-07, - "whirlpool": 9.77e-07, - "whiskers": 9.77e-07, - "whitish": 9.77e-07, - "wholesalers": 9.77e-07, - "wickham": 9.77e-07, - "willows": 1.48e-07, - "wishlist": 9.77e-07, - "woulda": 9.77e-07, - "wrexham": 9.77e-07, - "xm": 9.77e-07, - "zealous": 9.77e-07, - "aberration": 9.55e-07, - "ade": 9.55e-07, - "aditya": 9.55e-07, - "ailment": 9.55e-07, - "airstrike": 9.55e-07, - "airwaves": 9.55e-07, - "alerting": 9.55e-07, - "alonzo": 9.55e-07, - "antoinette": 9.55e-07, - "apricot": 9.55e-07, - "arbiter": 9.55e-07, - "arbitrator": 9.55e-07, - "archangel": 9.55e-07, - "armand": 9.55e-07, - "arte": 9.55e-07, - "arundel": 9.55e-07, - "atari": 9.55e-07, - "athleticism": 9.55e-07, - "axles": 9.55e-07, - "babu": 9.55e-07, - "bailing": 9.55e-07, - "baptiste": 9.55e-07, - "baptists": 9.55e-07, - "baritone": 9.55e-07, - "bayley": 9.55e-07, - "bbb": 9.55e-07, - "benefitted": 9.55e-07, - "bestow": 9.55e-07, - "beverley": 9.55e-07, - "bezos": 9.55e-07, - "blistering": 9.55e-07, - "bloodline": 9.55e-07, - "bmx": 9.55e-07, - "booby": 9.55e-07, - "borderlands": 9.55e-07, - "breaching": 9.55e-07, - "brees": 8.91e-08, - "brice": 9.55e-07, - "britton": 9.55e-07, - "brom": 9.55e-07, - "bromley": 9.55e-07, - "broward": 9.55e-07, - "bryn": 9.55e-07, - "bucs": 9.55e-07, - "buoyant": 9.55e-07, - "bushy": 9.55e-07, - "bustle": 9.55e-07, - "calculators": 9.55e-07, - "calms": 9.55e-07, - "caloric": 9.55e-07, - "campbells": 1.95e-07, - "captaincy": 9.55e-07, - "carbide": 9.55e-07, - "carmelo": 9.55e-07, - "carmine": 9.55e-07, - "caved": 9.55e-07, - "caverns": 9.55e-07, - "cca": 9.55e-07, - "cdt": 9.55e-07, - "chairmanship": 9.55e-07, - "chardonnay": 9.55e-07, - "checkmate": 9.55e-07, - "cheerfully": 9.55e-07, - "chou": 9.55e-07, - "clarissa": 9.55e-07, - "clem": 9.55e-07, - "clinician": 9.55e-07, - "clung": 9.55e-07, - "coals": 5.13e-08, - "cobain": 9.55e-07, - "coercive": 9.55e-07, - "collie": 9.55e-07, - "commenters": 9.55e-07, - "commercialization": 9.55e-07, - "conclusively": 9.55e-07, - "conduction": 9.55e-07, - "confided": 9.55e-07, - "conroy": 9.55e-07, - "constellations": 9.55e-07, - "consumerism": 9.55e-07, - "converters": 9.55e-07, - "convinces": 9.55e-07, - "copyrights": 9.55e-07, - "cosmology": 9.55e-07, - "cranston": 9.55e-07, - "criss": 9.55e-07, - "crumbled": 9.55e-07, - "curtail": 9.55e-07, - "daca": 9.55e-07, - "dakar": 9.55e-07, - "daydream": 9.55e-07, - "deafening": 9.55e-07, - "debuting": 9.55e-07, - "dedicating": 9.55e-07, - "detonate": 9.55e-07, - "dined": 9.55e-07, - "disarmed": 9.55e-07, - "disordered": 9.55e-07, - "divorcing": 9.55e-07, - "docker": 9.55e-07, - "docket": 9.55e-07, - "drifts": 9.55e-07, - "dy": 9.55e-07, - "earphones": 9.55e-07, - "edmunds": 9.12e-08, - "electrified": 9.55e-07, - "electrolytes": 9.55e-07, - "enchantment": 9.55e-07, - "endures": 9.55e-07, - "equated": 9.55e-07, - "esteban": 9.55e-07, - "expedited": 9.55e-07, - "experiential": 9.55e-07, - "faceless": 9.55e-07, - "factored": 9.55e-07, - "fascia": 9.55e-07, - "fasten": 9.55e-07, - "fatherland": 9.55e-07, - "fatigued": 9.55e-07, - "feasts": 9.55e-07, - "federalism": 9.55e-07, - "fey": 9.55e-07, - "figuratively": 9.55e-07, - "fizz": 9.55e-07, - "flatten": 9.55e-07, - "flopped": 9.55e-07, - "foiled": 9.55e-07, - "fonda": 9.55e-07, - "forester": 9.55e-07, - "fragility": 9.55e-07, - "frick": 9.55e-07, - "frigid": 9.55e-07, - "gallipoli": 9.55e-07, - "gasket": 9.55e-07, - "gemstone": 9.55e-07, - "ginny": 9.55e-07, - "goaltender": 9.55e-07, - "gonzaga": 9.55e-07, - "goodbyes": 9.55e-07, - "gory": 9.55e-07, - "granola": 9.55e-07, - "graphically": 9.55e-07, - "gre": 9.55e-07, - "groot": 9.55e-07, - "gushing": 9.55e-07, - "habitation": 9.55e-07, - "habs": 9.55e-07, - "hamiltons": 9.55e-08, - "hatchback": 9.55e-07, - "hawley": 9.55e-07, - "heirloom": 9.55e-07, - "hoisted": 9.55e-07, - "homing": 9.55e-07, - "hough": 9.55e-07, - "huntsman": 9.55e-07, - "hustler": 9.55e-07, - "hypothermia": 9.55e-07, - "img": 9.55e-07, - "impatience": 9.55e-07, - "indiscriminately": 9.55e-07, - "inquisitive": 9.55e-07, - "instructive": 9.55e-07, - "instructs": 9.55e-07, - "interlocking": 9.55e-07, - "introspection": 9.55e-07, - "invader": 9.55e-07, - "jaffa": 9.55e-07, - "jamestown": 9.55e-07, - "janata": 9.55e-07, - "jansen": 9.55e-07, - "jeffries": 9.55e-07, - "jocelyn": 9.55e-07, - "kamala": 9.55e-07, - "kari": 9.55e-07, - "kernels": 9.55e-07, - "khrushchev": 9.55e-07, - "kirsty": 9.55e-07, - "kors": 9.55e-07, - "lagged": 9.55e-07, - "lala": 9.55e-07, - "lancelot": 9.55e-07, - "lard": 9.55e-07, - "leblanc": 9.55e-07, - "leeway": 9.55e-07, - "lehmann": 9.55e-07, - "lexical": 9.55e-07, - "ley": 9.55e-07, - "lille": 9.55e-07, - "lob": 9.55e-07, - "lobsters": 9.55e-07, - "locale": 9.55e-07, - "loosened": 9.55e-07, - "ludlow": 9.55e-07, - "lutz": 9.55e-07, - "mademoiselle": 9.55e-07, - "maia": 9.55e-07, - "manifesting": 9.55e-07, - "marthas": 9.55e-07, - "maserati": 9.55e-07, - "matheson": 9.55e-07, - "mcu": 9.55e-07, - "memos": 9.55e-07, - "mena": 9.55e-07, - "menswear": 9.55e-07, - "meritorious": 9.55e-07, - "methadone": 9.55e-07, - "methanol": 9.55e-07, - "millet": 9.55e-07, - "misogynistic": 9.55e-07, - "misrepresentation": 9.55e-07, - "mistreatment": 9.55e-07, - "mitigated": 9.55e-07, - "moa": 9.55e-07, - "mocha": 9.55e-07, - "mockingbird": 9.55e-07, - "moriarty": 9.55e-07, - "motown": 9.55e-07, - "nagasaki": 9.55e-07, - "nea": 9.55e-07, - "negate": 9.55e-07, - "networked": 9.55e-07, - "nn": 9.55e-07, - "nomads": 9.55e-07, - "nonsensical": 9.55e-07, - "noor": 9.55e-07, - "noose": 9.55e-07, - "nordstrom": 9.55e-07, - "northrop": 9.55e-07, - "obstructed": 9.55e-07, - "offshoot": 9.55e-07, - "ointment": 9.55e-07, - "onscreen": 9.55e-07, - "onshore": 9.55e-07, - "ori": 9.55e-07, - "orthogonal": 9.55e-07, - "oss": 6.03e-08, - "ottomans": 9.55e-07, - "outnumber": 9.55e-07, - "outposts": 9.55e-07, - "overkill": 9.55e-07, - "overpowering": 9.55e-07, - "ovulation": 9.55e-07, - "pairings": 9.55e-07, - "paladin": 9.55e-07, - "parse": 9.55e-07, - "pegs": 9.55e-07, - "penises": 9.55e-07, - "perpetuated": 9.55e-07, - "petri": 9.55e-07, - "phasing": 9.55e-07, - "phnom": 9.55e-07, - "phrasing": 9.55e-07, - "pledging": 9.55e-07, - "pollination": 9.55e-07, - "pooled": 9.55e-07, - "postpartum": 9.55e-07, - "potions": 9.55e-07, - "pretzel": 9.55e-07, - "profusely": 9.55e-07, - "proletariat": 9.55e-07, - "promulgated": 9.55e-07, - "psu": 9.55e-07, - "puget": 9.55e-07, - "punctuated": 9.55e-07, - "punctured": 9.55e-07, - "punks": 3.24e-07, - "quadratic": 9.55e-07, - "raspberries": 9.55e-07, - "rebekah": 9.55e-07, - "recoup": 9.55e-07, - "rediscovered": 9.55e-07, - "remover": 9.55e-07, - "repelled": 9.55e-07, - "repertory": 9.55e-07, - "replicating": 9.55e-07, - "restructured": 9.55e-07, - "rhett": 9.55e-07, - "riddles": 7.59e-08, - "riga": 9.55e-07, - "roddy": 9.55e-07, - "rohit": 9.55e-07, - "rousing": 9.55e-07, - "roving": 9.55e-07, - "saas": 9.55e-07, - "sagan": 9.55e-07, - "sandman": 9.55e-07, - "sarahs": 9.55e-07, - "sass": 9.55e-07, - "savor": 9.55e-07, - "schofield": 9.55e-07, - "schoolteacher": 9.55e-07, - "schwab": 9.55e-07, - "seattles": 9.55e-07, - "senatorial": 9.55e-07, - "sexting": 9.55e-07, - "shankar": 9.55e-07, - "shimmer": 9.55e-07, - "shingle": 9.55e-07, - "shoplifting": 9.55e-07, - "simplification": 9.55e-07, - "simulating": 9.55e-07, - "sindh": 9.55e-07, - "sls": 9.55e-07, - "snatching": 9.55e-07, - "snooze": 9.55e-07, - "spasms": 9.55e-07, - "srs": 5.01e-08, - "staked": 9.55e-07, - "stillness": 9.55e-07, - "strikeouts": 9.55e-07, - "structuring": 9.55e-07, - "stupidly": 9.55e-07, - "subculture": 9.55e-07, - "substitutions": 9.55e-07, - "suitor": 9.55e-07, - "suitors": 9.55e-07, - "supposing": 9.55e-07, - "supt": 9.55e-07, - "taint": 3.55e-08, - "tantrums": 9.55e-07, - "tarp": 9.55e-07, - "tarts": 9.55e-07, - "terrell": 9.55e-07, - "thea": 9.55e-07, - "thiago": 9.55e-07, - "thoroughbred": 9.55e-07, - "tiara": 9.55e-07, - "totality": 9.55e-07, - "tranny": 9.55e-07, - "tremors": 9.55e-07, - "tupac": 9.55e-07, - "tyrants": 6.17e-08, - "ugliest": 9.55e-07, - "ugliness": 9.55e-07, - "unaccompanied": 9.55e-07, - "uncontrollably": 9.55e-07, - "underline": 9.55e-07, - "unduly": 9.55e-07, - "unincorporated": 9.55e-07, - "unsatisfied": 9.55e-07, - "venturing": 9.55e-07, - "victors": 3.89e-07, - "vikram": 9.55e-07, - "vimeo": 9.55e-07, - "vindictive": 9.55e-07, - "vinny": 9.55e-07, - "visor": 9.55e-07, - "volta": 9.55e-07, - "walrus": 9.55e-07, - "waynes": 1.41e-07, - "weighting": 9.55e-07, - "werewolves": 9.55e-07, - "withers": 9.55e-07, - "wrongfully": 9.55e-07, - "yanked": 9.55e-07, - "abercrombie": 9.33e-07, - "abhorrent": 9.33e-07, - "accelerates": 9.33e-07, - "acton": 9.33e-07, - "alder": 9.33e-07, - "allowable": 9.33e-07, - "ame": 9.33e-07, - "amex": 9.33e-07, - "amicable": 9.33e-07, - "amortization": 9.33e-07, - "anaconda": 9.33e-07, - "anaerobic": 9.33e-07, - "anchoring": 9.33e-07, - "ange": 9.33e-07, - "anglers": 9.33e-07, - "aniston": 9.33e-07, - "annihilated": 9.33e-07, - "antisemitic": 9.33e-07, - "antonia": 9.33e-07, - "arg": 9.33e-07, - "asc": 9.33e-07, - "ashford": 9.33e-07, - "ashraf": 9.33e-07, - "atrophy": 9.33e-07, - "aung": 9.33e-07, - "aviator": 9.33e-07, - "avoidable": 9.33e-07, - "ayr": 9.33e-07, - "bales": 2e-07, - "baring": 9.33e-07, - "baum": 9.33e-07, - "bebe": 9.33e-07, - "behemoth": 9.33e-07, - "benfica": 9.33e-07, - "bhp": 9.33e-07, - "bib": 9.33e-07, - "biebers": 9.33e-07, - "blackwood": 9.33e-07, - "blip": 9.33e-07, - "blount": 9.33e-07, - "bolshevik": 9.33e-07, - "bossy": 9.33e-07, - "bottleneck": 9.33e-07, - "bradbury": 9.33e-07, - "brandi": 9.33e-07, - "brenner": 9.33e-07, - "broadest": 9.33e-07, - "buccaneers": 9.33e-07, - "bumble": 9.33e-07, - "cabo": 9.33e-07, - "californians": 9.33e-07, - "callie": 9.33e-07, - "cambrian": 9.33e-07, - "camelot": 9.33e-07, - "camry": 9.33e-07, - "caribou": 9.33e-07, - "carnal": 9.33e-07, - "caro": 9.33e-07, - "carpentry": 9.33e-07, - "cataract": 9.33e-07, - "caterpillars": 5.37e-08, - "caustic": 9.33e-07, - "censoring": 9.33e-07, - "centrifugal": 9.33e-07, - "cfb": 9.33e-07, - "chechnya": 9.33e-07, - "chelmsford": 9.33e-07, - "chimpanzees": 9.33e-07, - "chum": 9.33e-07, - "circadian": 9.33e-07, - "claremont": 9.33e-07, - "clarifies": 9.33e-07, - "cleansed": 9.33e-07, - "clemency": 9.33e-07, - "clots": 9.33e-07, - "codified": 9.33e-07, - "colds": 9.33e-07, - "collab": 9.33e-07, - "confederates": 9.33e-07, - "constables": 1.1e-07, - "constabulary": 9.33e-07, - "coordinators": 9.33e-07, - "corinth": 9.33e-07, - "coroners": 3.8e-07, - "cote": 9.33e-07, - "crumb": 9.33e-07, - "ctr": 9.33e-07, - "cul": 9.33e-07, - "cushing": 9.33e-07, - "dames": 2.24e-07, - "darkly": 9.33e-07, - "davao": 9.33e-07, - "deactivate": 9.33e-07, - "deadlock": 9.33e-07, - "deathbed": 9.33e-07, - "deceitful": 9.33e-07, - "declan": 9.33e-07, - "deduce": 9.33e-07, - "deen": 9.33e-07, - "demented": 9.33e-07, - "denzel": 9.33e-07, - "devonshire": 9.33e-07, - "diddy": 9.33e-07, - "discernible": 9.33e-07, - "discharging": 9.33e-07, - "discourses": 9.33e-07, - "displace": 9.33e-07, - "displeased": 9.33e-07, - "dived": 9.33e-07, - "doge": 9.33e-07, - "dogged": 9.33e-07, - "dosing": 9.33e-07, - "drc": 9.33e-07, - "drury": 9.33e-07, - "duma": 9.33e-07, - "dylans": 9.33e-07, - "dynasties": 9.33e-07, - "ej": 9.33e-07, - "elated": 9.33e-07, - "elegantly": 9.33e-07, - "ember": 9.33e-07, - "embroiled": 9.33e-07, - "emmys": 9.33e-08, - "encampment": 9.33e-07, - "entitlements": 9.33e-07, - "equalizer": 9.33e-07, - "ergo": 9.33e-07, - "erskine": 9.33e-07, - "erupt": 9.33e-07, - "eugenics": 9.33e-07, - "evading": 9.33e-07, - "evaluates": 9.33e-07, - "evict": 9.33e-07, - "executor": 9.33e-07, - "expended": 9.33e-07, - "extremities": 9.33e-07, - "exuberant": 9.33e-07, - "fables": 9.33e-07, - "facsimile": 9.33e-07, - "fanciful": 9.33e-07, - "faraday": 9.33e-07, - "farting": 9.33e-07, - "feinstein": 9.33e-07, - "felons": 9.33e-07, - "ferrell": 9.33e-07, - "fez": 9.33e-07, - "fha": 9.33e-07, - "fillet": 9.33e-07, - "firmer": 9.33e-07, - "formaldehyde": 9.33e-07, - "fractal": 9.33e-07, - "franck": 9.33e-07, - "frida": 9.33e-07, - "fulfilment": 9.33e-07, - "fumbled": 9.33e-07, - "gaa": 9.33e-07, - "garter": 9.33e-07, - "gbp": 9.33e-07, - "gels": 9.33e-07, - "gentlemans": 9.33e-07, - "gerhard": 9.33e-07, - "gibberish": 9.33e-07, - "gifford": 9.33e-07, - "gifting": 9.33e-07, - "ginsburg": 9.33e-07, - "gleam": 9.33e-07, - "goff": 9.33e-07, - "goode": 9.33e-07, - "gordons": 1.1e-07, - "goss": 9.33e-07, - "gower": 9.33e-07, - "grandiose": 9.33e-07, - "growling": 9.33e-07, - "guerra": 9.33e-07, - "gummy": 9.33e-07, - "hag": 9.33e-07, - "handel": 9.33e-07, - "harmonica": 9.33e-07, - "hasbro": 9.33e-07, - "headlight": 9.33e-07, - "headsets": 9.33e-07, - "hera": 9.33e-07, - "hobson": 9.33e-07, - "housemate": 9.33e-07, - "hsu": 9.33e-07, - "humphreys": 9.77e-08, - "huston": 9.33e-07, - "icarus": 9.33e-07, - "idiom": 9.33e-07, - "iec": 9.33e-07, - "impersonating": 9.33e-07, - "impossibly": 9.33e-07, - "impressively": 9.33e-07, - "indulged": 9.33e-07, - "inexperience": 9.33e-07, - "inferiority": 9.33e-07, - "infuriated": 9.33e-07, - "inquired": 9.33e-07, - "inquirer": 9.33e-07, - "instilled": 9.33e-07, - "intently": 9.33e-07, - "intents": 9.33e-07, - "intoxicating": 9.33e-07, - "iota": 9.33e-07, - "jaded": 9.33e-07, - "jihadists": 9.33e-07, - "jn": 9.33e-07, - "jovi": 9.33e-07, - "juju": 9.33e-07, - "kaepernick": 9.33e-07, - "kafka": 9.33e-07, - "kates": 1.55e-07, - "keyes": 9.33e-07, - "koo": 9.33e-07, - "labored": 9.33e-07, - "lambeth": 9.33e-07, - "landslides": 9.33e-07, - "leno": 9.33e-07, - "lightness": 9.33e-07, - "liquidated": 9.33e-07, - "lovell": 9.33e-07, - "lubrication": 9.33e-07, - "lunatics": 9.33e-07, - "lustre": 9.33e-07, - "maddy": 9.33e-07, - "mako": 9.33e-07, - "mandalay": 9.33e-07, - "mauricio": 9.33e-07, - "maxima": 9.33e-07, - "mcclellan": 9.33e-07, - "mcculloch": 9.33e-07, - "mehta": 9.33e-07, - "methamphetamine": 9.33e-07, - "mex": 9.33e-07, - "midas": 9.33e-07, - "mobilizing": 9.33e-07, - "modernisation": 9.33e-07, - "modernized": 9.33e-07, - "modis": 1.45e-07, - "mongol": 9.33e-07, - "mortified": 9.33e-07, - "moshe": 9.33e-07, - "motionless": 9.33e-07, - "mpa": 9.33e-07, - "msn": 9.33e-07, - "mullet": 9.33e-07, - "naga": 9.33e-07, - "navigable": 9.33e-07, - "negotiators": 9.33e-07, - "niggers": 9.33e-07, - "nikola": 9.33e-07, - "nothingness": 9.33e-07, - "obe": 9.33e-07, - "odors": 9.33e-07, - "offensively": 9.33e-07, - "openers": 9.33e-07, - "orchestras": 3.16e-07, - "ores": 9.33e-07, - "oskar": 9.33e-07, - "ota": 9.33e-07, - "overjoyed": 9.33e-07, - "pacemaker": 9.33e-07, - "pagans": 9.33e-07, - "pallets": 9.33e-07, - "pandering": 9.33e-07, - "panty": 9.33e-07, - "paraphernalia": 9.33e-07, - "perl": 9.33e-07, - "pessimism": 9.33e-07, - "petes": 1.55e-07, - "petrie": 9.33e-07, - "petrochemical": 9.33e-07, - "plums": 9.33e-07, - "polyethylene": 9.33e-07, - "pooch": 9.33e-07, - "pooling": 9.33e-07, - "poppins": 9.33e-07, - "popularized": 9.33e-07, - "posterity": 9.33e-07, - "posthumous": 9.33e-07, - "pounce": 9.33e-07, - "pragmatism": 9.33e-07, - "projectors": 9.33e-07, - "proprietors": 9.33e-07, - "protestantism": 9.33e-07, - "qs": 4.47e-07, - "quan": 9.33e-07, - "quantified": 9.33e-07, - "receding": 9.33e-07, - "recognisable": 9.33e-07, - "recombination": 9.33e-07, - "recounting": 9.33e-07, - "rehabilitated": 9.33e-07, - "rejoicing": 9.33e-07, - "repayments": 9.33e-07, - "reprehensible": 9.33e-07, - "republished": 9.33e-07, - "resentful": 9.33e-07, - "rewatch": 9.33e-07, - "rhonda": 9.33e-07, - "rhubarb": 9.33e-07, - "riverdale": 9.33e-07, - "romanticism": 9.33e-07, - "rutland": 9.33e-07, - "ry": 9.33e-07, - "salesmen": 9.33e-07, - "sapiens": 9.33e-07, - "savers": 9.33e-07, - "scammed": 9.33e-07, - "scathing": 9.33e-07, - "scour": 9.33e-07, - "seagulls": 9.33e-07, - "serviceable": 9.33e-07, - "shanks": 9.33e-07, - "shearer": 9.33e-07, - "shimmering": 9.33e-07, - "shoals": 9.33e-07, - "shredder": 9.33e-07, - "shreveport": 9.33e-07, - "siamese": 9.33e-07, - "sienna": 9.33e-07, - "signifying": 9.33e-07, - "silvia": 9.33e-07, - "simplex": 9.33e-07, - "singaporean": 9.33e-07, - "sith": 9.33e-07, - "smokin": 9.33e-07, - "snorting": 9.33e-07, - "snows": 3.31e-07, - "sociable": 9.33e-07, - "socializing": 9.33e-07, - "soiled": 9.33e-07, - "soundly": 9.33e-07, - "speculations": 9.33e-07, - "sprinkling": 9.33e-07, - "ssi": 9.33e-07, - "standup": 9.33e-07, - "steves": 1.51e-07, - "stifling": 9.33e-07, - "stl": 9.33e-07, - "strayed": 9.33e-07, - "stunted": 9.33e-07, - "suh": 9.33e-07, - "supremacists": 9.33e-07, - "swastika": 9.33e-07, - "symbolically": 9.33e-07, - "talkative": 9.33e-07, - "talon": 9.33e-07, - "teleport": 9.33e-07, - "tenths": 9.33e-07, - "tes": 9.33e-07, - "thoughtfully": 9.33e-07, - "thr": 9.33e-07, - "thrillers": 9.33e-07, - "thump": 9.33e-07, - "totalled": 9.33e-07, - "trombone": 9.33e-07, - "truer": 9.33e-07, - "tun": 9.33e-07, - "tyrannical": 9.33e-07, - "ug": 9.33e-07, - "underscore": 9.33e-07, - "unlocks": 9.33e-07, - "untill": 9.33e-07, - "unusable": 9.33e-07, - "uprisings": 9.33e-07, - "valdez": 9.33e-07, - "vandals": 9.33e-07, - "varanasi": 9.33e-07, - "vented": 9.33e-07, - "ventilator": 9.33e-07, - "vertebrate": 9.33e-07, - "violets": 1.66e-07, - "waite": 9.33e-07, - "warehousing": 9.33e-07, - "warlords": 5.25e-08, - "watermark": 9.33e-07, - "waverly": 9.33e-07, - "weathering": 9.33e-07, - "webcast": 9.33e-07, - "wellesley": 9.33e-07, - "westport": 9.33e-07, - "wielded": 9.33e-07, - "winona": 9.33e-07, - "yahweh": 9.33e-07, - "yearn": 9.33e-07, - "yolanda": 9.33e-07, - "yonder": 9.33e-07, - "zionists": 9.33e-07, - "ababa": 9.12e-07, - "abandons": 9.12e-07, - "admires": 9.12e-07, - "affirms": 9.12e-07, - "afghans": 9.12e-07, - "agro": 9.12e-07, - "airtime": 9.12e-07, - "aldi": 9.12e-07, - "alibaba": 9.12e-07, - "alices": 9.12e-07, - "allocating": 9.12e-07, - "altman": 9.12e-07, - "ano": 9.12e-07, - "antithesis": 9.12e-07, - "arable": 9.12e-07, - "archetype": 9.12e-07, - "argyle": 9.12e-07, - "aristocrats": 9.12e-07, - "arlene": 9.12e-07, - "armin": 9.12e-07, - "arun": 9.12e-07, - "ashby": 9.12e-07, - "assyrian": 9.12e-07, - "ath": 9.12e-07, - "atrial": 9.12e-07, - "auditioning": 9.12e-07, - "avatars": 1e-07, - "avenged": 9.12e-07, - "awesomeness": 9.12e-07, - "ayn": 9.12e-07, - "bambi": 9.12e-07, - "bautista": 9.12e-07, - "bengaluru": 9.12e-07, - "bereavement": 9.12e-07, - "bertram": 9.12e-07, - "bikinis": 9.12e-07, - "bionic": 9.12e-07, - "blurring": 9.12e-07, - "boardroom": 9.12e-07, - "bobcats": 9.12e-07, - "bok": 9.12e-07, - "bondi": 9.12e-07, - "bonner": 9.12e-07, - "bottomless": 9.12e-07, - "bpm": 9.12e-07, - "brando": 9.12e-07, - "breakfasts": 9.12e-07, - "bsa": 9.12e-07, - "buena": 9.12e-07, - "bunches": 9.12e-07, - "burundi": 9.12e-07, - "caa": 9.12e-07, - "caddy": 9.12e-07, - "cade": 9.12e-07, - "caledonian": 9.12e-07, - "cautions": 9.12e-07, - "cee": 9.12e-07, - "cellphones": 9.12e-07, - "cetera": 9.12e-07, - "chandigarh": 9.12e-07, - "charted": 9.12e-07, - "chasm": 9.12e-07, - "chevalier": 9.12e-07, - "chimpanzee": 9.12e-07, - "chisel": 9.12e-07, - "choirs": 7.59e-08, - "cinder": 9.12e-07, - "cirque": 9.12e-07, - "coax": 9.12e-07, - "coincidences": 9.12e-07, - "commences": 9.12e-07, - "commenter": 9.12e-07, - "communicator": 9.12e-07, - "complies": 9.12e-07, - "comprehensively": 9.12e-07, - "condor": 9.12e-07, - "confectionery": 9.12e-07, - "confrontations": 9.12e-07, - "contented": 9.12e-07, - "coverings": 9.12e-07, - "crabtree": 9.12e-07, - "crass": 9.12e-07, - "crewe": 9.12e-07, - "cuddles": 9.12e-07, - "cull": 9.12e-07, - "culver": 9.12e-07, - "cymru": 9.12e-07, - "cz": 9.12e-07, - "dac": 9.12e-07, - "deference": 9.12e-07, - "delirium": 9.12e-07, - "deportations": 9.12e-07, - "descartes": 9.12e-07, - "devoting": 9.12e-07, - "diabolical": 9.12e-07, - "dilated": 9.12e-07, - "disarray": 9.12e-07, - "disinformation": 9.12e-07, - "disintegrated": 9.12e-07, - "dismayed": 9.12e-07, - "disregarding": 9.12e-07, - "dolby": 9.12e-07, - "ebert": 9.12e-07, - "edwardian": 9.12e-07, - "elector": 9.12e-07, - "eloquently": 9.12e-07, - "emojis": 9.12e-07, - "expendable": 9.12e-07, - "factoring": 9.12e-07, - "falkirk": 9.12e-07, - "falklands": 9.12e-07, - "fantastical": 9.12e-07, - "farmington": 9.12e-07, - "fennel": 9.12e-07, - "fetching": 9.12e-07, - "fieldwork": 9.12e-07, - "filipina": 9.12e-07, - "firework": 9.12e-07, - "firsts": 7.94e-08, - "flattery": 9.12e-07, - "fleur": 9.12e-07, - "foolishly": 9.12e-07, - "foreseen": 9.12e-07, - "forgives": 9.12e-07, - "forked": 9.12e-07, - "formulating": 9.12e-07, - "fracturing": 9.12e-07, - "freedman": 9.12e-07, - "frisbee": 9.12e-07, - "futility": 9.12e-07, - "gaal": 9.12e-07, - "gabi": 9.12e-07, - "geiger": 9.12e-07, - "geraldine": 9.12e-07, - "grantham": 9.12e-07, - "greenpeace": 9.12e-07, - "gruber": 9.12e-07, - "hamlets": 1.62e-07, - "handover": 9.12e-07, - "hardin": 9.12e-07, - "hedging": 9.12e-07, - "helens": 5.25e-07, - "heroines": 1.2e-07, - "herzog": 9.12e-07, - "hexagonal": 9.12e-07, - "hipsters": 9.12e-07, - "hiro": 9.12e-07, - "hospitable": 9.12e-07, - "hummingbird": 9.12e-07, - "ight": 9.12e-07, - "impactful": 9.12e-07, - "impasse": 9.12e-07, - "impotence": 9.12e-07, - "increment": 9.12e-07, - "incursions": 9.12e-07, - "inescapable": 9.12e-07, - "infecting": 9.12e-07, - "intermediaries": 9.12e-07, - "invertebrates": 9.12e-07, - "ipc": 9.12e-07, - "jama": 9.12e-07, - "jester": 9.12e-07, - "jihadist": 9.12e-07, - "jockeys": 6.17e-08, - "juxtaposition": 9.12e-07, - "kashmiri": 9.12e-07, - "kaya": 9.12e-07, - "kazakh": 9.12e-07, - "keene": 9.12e-07, - "kinect": 9.12e-07, - "kites": 9.12e-07, - "kline": 9.12e-07, - "kofi": 9.12e-07, - "kok": 9.12e-07, - "kongs": 6.03e-08, - "lesnar": 9.12e-07, - "ligue": 9.12e-07, - "likable": 9.12e-07, - "limping": 9.12e-07, - "lineups": 9.12e-07, - "lloyds": 6.76e-07, - "luisa": 9.12e-07, - "luster": 9.12e-07, - "luthor": 9.12e-07, - "madeira": 9.12e-07, - "maduro": 9.12e-07, - "mais": 9.12e-08, - "majoring": 9.12e-07, - "majorities": 9.12e-07, - "marcy": 9.12e-07, - "maris": 6.03e-08, - "maw": 9.12e-07, - "mbc": 9.12e-07, - "mcclure": 9.12e-07, - "mcg": 9.12e-07, - "melatonin": 9.12e-07, - "mesmerizing": 9.12e-07, - "metaphorically": 9.12e-07, - "millwall": 9.12e-07, - "mindanao": 9.12e-07, - "misread": 9.12e-07, - "misrepresented": 9.12e-07, - "mme": 9.12e-07, - "modulated": 9.12e-07, - "mousse": 9.12e-07, - "nai": 9.12e-07, - "naught": 9.12e-07, - "ncr": 9.12e-07, - "necessitated": 9.12e-07, - "nitrous": 9.12e-07, - "northamptonshire": 9.12e-07, - "obstructive": 9.12e-07, - "occupiers": 9.12e-07, - "odell": 3.55e-07, - "odour": 9.12e-07, - "olivers": 6.46e-08, - "ord": 9.12e-07, - "oreo": 9.12e-07, - "orientated": 9.12e-07, - "oscillation": 9.12e-07, - "oscillator": 9.12e-07, - "outrun": 9.12e-07, - "ov": 9.12e-07, - "overpass": 9.12e-07, - "pampered": 9.12e-07, - "paprika": 9.12e-07, - "patagonia": 9.12e-07, - "pathogenic": 9.12e-07, - "peeking": 9.12e-07, - "persevere": 9.12e-07, - "pfeiffer": 9.12e-07, - "pfft": 9.12e-07, - "piped": 9.12e-07, - "pisces": 9.12e-07, - "plasticity": 9.12e-07, - "playfully": 9.12e-07, - "polymerase": 9.12e-07, - "practicality": 9.12e-07, - "prawns": 9.12e-07, - "precedents": 9.12e-07, - "prerequisites": 9.12e-07, - "pretzels": 9.12e-07, - "proclaims": 9.12e-07, - "procrastination": 9.12e-07, - "profane": 9.12e-07, - "profiting": 9.12e-07, - "prospecting": 9.12e-07, - "prune": 9.12e-07, - "pte": 9.12e-07, - "putative": 9.12e-07, - "pyjamas": 9.12e-07, - "quirks": 9.12e-07, - "racine": 9.12e-07, - "radiate": 9.12e-07, - "raton": 9.12e-07, - "reaping": 9.12e-07, - "rectum": 9.12e-07, - "refrigerators": 9.12e-07, - "regressive": 9.12e-07, - "regrettable": 9.12e-07, - "reprise": 9.12e-07, - "restorative": 9.12e-07, - "rfc": 9.12e-07, - "rhyming": 9.12e-07, - "rigby": 9.12e-07, - "rojo": 9.12e-07, - "rumbling": 9.12e-07, - "salinity": 9.12e-07, - "samsungs": 9.12e-07, - "sandusky": 9.12e-07, - "scolded": 9.12e-07, - "scrooge": 9.12e-07, - "seb": 9.12e-07, - "sena": 9.12e-07, - "serials": 9.12e-07, - "shakira": 9.12e-07, - "shep": 9.12e-07, - "shipyards": 9.12e-07, - "shovels": 9.12e-07, - "silt": 9.12e-07, - "sisterhood": 9.12e-07, - "sketched": 9.12e-07, - "slr": 9.12e-07, - "sma": 9.12e-07, - "smuggler": 9.12e-07, - "snape": 9.12e-07, - "snob": 9.12e-07, - "sodomy": 9.12e-07, - "soe": 9.12e-07, - "soldering": 9.12e-07, - "solubility": 9.12e-07, - "somers": 9.12e-07, - "sonnet": 9.12e-07, - "spacey": 9.12e-07, - "spalding": 9.12e-07, - "spectrometry": 9.12e-07, - "spurious": 9.12e-07, - "strat": 9.12e-07, - "subgroups": 9.12e-07, - "substandard": 9.12e-07, - "sugarcane": 9.12e-07, - "sundown": 9.12e-07, - "suspecting": 9.12e-07, - "swingers": 9.12e-07, - "swiping": 9.12e-07, - "synths": 9.12e-07, - "takeaways": 9.12e-07, - "talker": 9.12e-07, - "talmud": 9.12e-07, - "taunt": 9.12e-07, - "taunts": 9.12e-07, - "tensile": 9.12e-07, - "tether": 9.12e-07, - "thayer": 9.12e-07, - "thundering": 9.12e-07, - "tightness": 9.12e-07, - "tinkering": 9.12e-07, - "todo": 9.12e-07, - "toothless": 9.12e-07, - "trayvon": 9.12e-07, - "troubleshooting": 9.12e-07, - "truffles": 9.12e-07, - "turkmenistan": 9.12e-07, - "turntable": 9.12e-07, - "tuttle": 9.12e-07, - "underdogs": 9.12e-07, - "understandings": 9.12e-07, - "undressed": 9.12e-07, - "unknowns": 9.12e-07, - "uruguayan": 9.12e-07, - "usaid": 9.12e-07, - "utilise": 9.12e-07, - "valhalla": 9.12e-07, - "validating": 9.12e-07, - "vasquez": 9.12e-07, - "vermin": 9.12e-07, - "vertebrates": 9.12e-07, - "vertices": 9.12e-07, - "voltages": 9.12e-07, - "wack": 9.12e-07, - "wardens": 1.41e-07, - "weaves": 9.12e-07, - "weirdos": 9.12e-07, - "wentz": 9.12e-07, - "westinghouse": 9.12e-07, - "whatd": 9.12e-07, - "whirl": 9.12e-07, - "widget": 9.12e-07, - "wineries": 9.12e-07, - "witt": 9.12e-07, - "woodbridge": 9.12e-07, - "workman": 9.12e-07, - "wrights": 1.82e-07, - "ypg": 9.12e-07, - "zap": 9.12e-07, - "zucchini": 9.12e-07, - "aborigines": 8.91e-07, - "abreast": 8.91e-07, - "absurdly": 8.91e-07, - "abv": 8.91e-07, - "ach": 8.91e-07, - "activision": 8.91e-07, - "adage": 8.91e-07, - "aguilera": 8.91e-07, - "airtight": 8.91e-07, - "albans": 8.91e-07, - "alls": 4.37e-07, - "altruistic": 8.91e-07, - "amalgamated": 8.91e-07, - "amorphous": 8.91e-07, - "annulled": 8.91e-07, - "anthems": 8.91e-07, - "antioxidants": 8.91e-07, - "antlers": 8.91e-07, - "anu": 8.91e-07, - "aquaman": 8.91e-07, - "argh": 8.91e-07, - "armaments": 8.91e-07, - "arroyo": 8.91e-07, - "atms": 7.41e-08, - "audacious": 8.91e-07, - "audubon": 8.91e-07, - "aur": 8.91e-07, - "auth": 8.91e-07, - "balboa": 8.91e-07, - "battleships": 8.91e-07, - "bayesian": 8.91e-07, - "befriended": 8.91e-07, - "beheading": 8.91e-07, - "bff": 8.91e-07, - "blaring": 8.91e-07, - "bolder": 8.91e-07, - "bookies": 8.91e-07, - "boolean": 8.91e-07, - "bourke": 8.91e-07, - "boyer": 8.91e-07, - "brash": 8.91e-07, - "breads": 8.91e-07, - "brookfield": 8.91e-07, - "bumpers": 8.91e-07, - "buoyancy": 8.91e-07, - "burglars": 8.91e-07, - "businesswoman": 8.91e-07, - "buttermilk": 8.91e-07, - "bypassed": 8.91e-07, - "cai": 8.91e-07, - "caledonia": 8.91e-07, - "camila": 8.91e-07, - "campaigners": 8.91e-07, - "canisters": 8.91e-07, - "captioned": 8.91e-07, - "captors": 8.91e-07, - "cassius": 8.91e-07, - "cautionary": 8.91e-07, - "cayenne": 8.91e-07, - "centering": 8.91e-07, - "chez": 8.91e-07, - "chimp": 8.91e-07, - "chromatography": 8.91e-07, - "classifying": 8.91e-07, - "cleary": 8.91e-07, - "clitoris": 8.91e-07, - "coincidental": 8.91e-07, - "colliding": 8.91e-07, - "colliery": 8.91e-07, - "consonants": 8.91e-07, - "constituting": 8.91e-07, - "corcoran": 8.91e-07, - "coriander": 8.91e-07, - "couches": 8.91e-07, - "critters": 8.91e-07, - "croc": 8.91e-07, - "crucially": 8.91e-07, - "cruelly": 8.91e-07, - "daleks": 8.91e-07, - "damnation": 8.91e-07, - "darfur": 8.91e-07, - "daves": 1.17e-07, - "debtors": 1.05e-07, - "debunked": 8.91e-07, - "decorator": 8.91e-07, - "deletes": 8.91e-07, - "delgado": 8.91e-07, - "delirious": 8.91e-07, - "denser": 8.91e-07, - "deo": 8.91e-07, - "dependents": 8.91e-07, - "deriving": 8.91e-07, - "detractors": 8.91e-07, - "dhoni": 8.91e-07, - "didi": 8.91e-07, - "differentiating": 8.91e-07, - "disconcerting": 8.91e-07, - "disingenuous": 8.91e-07, - "dissipate": 8.91e-07, - "dn": 8.91e-07, - "dooley": 8.91e-07, - "doran": 8.91e-07, - "dreamworks": 8.91e-07, - "dressings": 8.91e-07, - "dunedin": 8.91e-07, - "easterly": 8.91e-07, - "edema": 8.91e-07, - "edmonds": 8.91e-07, - "elapsed": 8.91e-07, - "ellsworth": 8.91e-07, - "empowers": 8.91e-07, - "encode": 8.91e-07, - "enrico": 8.91e-07, - "enterprising": 8.91e-07, - "eriksen": 8.91e-07, - "erupts": 8.91e-07, - "ets": 7.94e-08, - "exacting": 8.91e-07, - "expectant": 8.91e-07, - "exponent": 8.91e-07, - "extravaganza": 8.91e-07, - "faisal": 8.91e-07, - "falcao": 8.91e-07, - "falco": 8.91e-07, - "farr": 8.91e-07, - "fcs": 2.82e-07, - "filaments": 8.91e-07, - "findlay": 8.91e-07, - "finishers": 8.91e-07, - "flack": 8.91e-07, - "foaming": 8.91e-07, - "forma": 8.91e-07, - "forman": 8.91e-07, - "freebies": 8.91e-07, - "frye": 8.91e-07, - "fuming": 8.91e-07, - "fung": 8.91e-07, - "galen": 8.91e-07, - "ganesh": 8.91e-07, - "garza": 8.91e-07, - "geriatric": 8.91e-07, - "gleaned": 8.91e-07, - "globalisation": 8.91e-07, - "goddammit": 8.91e-07, - "goddamned": 8.91e-07, - "goodluck": 8.91e-07, - "grasslands": 8.91e-07, - "grays": 6.76e-07, - "guidebook": 8.91e-07, - "halved": 8.91e-07, - "hardline": 8.91e-07, - "haves": 8.91e-07, - "hel": 8.91e-07, - "herding": 8.91e-07, - "hereinafter": 8.91e-07, - "hiked": 8.91e-07, - "hindustan": 8.91e-07, - "hiram": 8.91e-07, - "historia": 8.91e-07, - "hoes": 8.91e-07, - "holman": 8.91e-07, - "honk": 8.91e-07, - "hotspots": 8.91e-07, - "houstons": 8.91e-07, - "hungover": 8.91e-07, - "hur": 8.91e-07, - "hwa": 8.91e-07, - "iam": 8.91e-07, - "importers": 8.91e-07, - "impure": 8.91e-07, - "incheon": 8.91e-07, - "incursion": 8.91e-07, - "inexcusable": 8.91e-07, - "influencer": 8.91e-07, - "inhibitory": 8.91e-07, - "installs": 8.91e-07, - "integrative": 8.91e-07, - "intl": 6.17e-07, - "inuit": 8.91e-07, - "invisibility": 8.91e-07, - "jermaine": 8.91e-07, - "jiu": 8.91e-07, - "keats": 8.91e-07, - "kilmarnock": 8.91e-07, - "kimono": 8.91e-07, - "kmart": 8.91e-07, - "knickers": 8.91e-07, - "kuhn": 8.91e-07, - "langston": 8.91e-07, - "leiden": 8.91e-07, - "lessened": 8.91e-07, - "liege": 8.91e-07, - "lightest": 8.91e-07, - "lightsaber": 8.91e-07, - "limbaugh": 8.91e-07, - "lingers": 8.91e-07, - "lipids": 8.91e-07, - "llama": 8.91e-07, - "looped": 8.91e-07, - "loosening": 8.91e-07, - "loudspeaker": 8.91e-07, - "lowes": 4.9e-07, - "lynda": 8.91e-07, - "macfarlane": 8.91e-07, - "macron": 8.91e-07, - "marisa": 8.91e-07, - "marketer": 8.91e-07, - "marko": 8.91e-07, - "mascots": 8.91e-07, - "mcfadden": 8.91e-07, - "mcnally": 8.91e-07, - "mcneil": 8.91e-07, - "mcs": 2.63e-07, - "mediators": 8.91e-07, - "minster": 8.91e-07, - "mongering": 8.91e-07, - "monotonous": 8.91e-07, - "morbidity": 8.91e-07, - "motherwell": 8.91e-07, - "multipurpose": 8.91e-07, - "muscat": 8.91e-07, - "muttering": 8.91e-07, - "naturalized": 8.91e-07, - "navel": 8.91e-07, - "neanderthal": 8.91e-07, - "newbies": 8.91e-07, - "nippon": 8.91e-07, - "nitric": 8.91e-07, - "northerly": 8.91e-07, - "orourke": 8.91e-07, - "obsidian": 8.91e-07, - "oe": 8.91e-07, - "overlaps": 8.91e-07, - "paging": 8.91e-07, - "palettes": 8.91e-07, - "parliamentarians": 8.91e-07, - "parnell": 8.91e-07, - "payed": 8.91e-07, - "pda": 8.91e-07, - "penang": 8.91e-07, - "penrith": 8.91e-07, - "pent": 8.91e-07, - "perky": 8.91e-07, - "phishing": 8.91e-07, - "plundered": 8.91e-07, - "pocahontas": 8.91e-07, - "polarizing": 8.91e-07, - "pomp": 8.91e-07, - "popper": 8.91e-07, - "priestess": 8.91e-07, - "prohibitive": 8.91e-07, - "psd": 8.91e-07, - "quakers": 8.91e-07, - "quarantined": 8.91e-07, - "quotient": 8.91e-07, - "rac": 8.91e-07, - "rajiv": 8.91e-07, - "raking": 8.91e-07, - "rami": 8.91e-07, - "realtors": 8.91e-07, - "rebelled": 8.91e-07, - "redefining": 8.91e-07, - "redness": 8.91e-07, - "reelected": 8.91e-07, - "resonated": 8.91e-07, - "retelling": 8.91e-07, - "reuniting": 8.91e-07, - "rios": 3.24e-07, - "roh": 8.91e-07, - "romanians": 8.91e-07, - "saba": 8.91e-07, - "sabbatical": 8.91e-07, - "sabotaging": 8.91e-07, - "sachin": 8.91e-07, - "sadder": 8.91e-07, - "sailboat": 8.91e-07, - "salaried": 8.91e-07, - "salmond": 8.91e-07, - "sancho": 8.91e-07, - "sansa": 8.91e-07, - "satans": 8.13e-08, - "saws": 8.91e-07, - "saxony": 8.91e-07, - "scallops": 8.91e-07, - "scammer": 8.91e-07, - "schubert": 8.91e-07, - "scottie": 8.91e-07, - "searing": 8.91e-07, - "secreted": 8.91e-07, - "sedation": 8.91e-07, - "sexier": 8.91e-07, - "shamelessly": 8.91e-07, - "shih": 8.91e-07, - "shithole": 8.91e-07, - "shivers": 8.91e-07, - "siena": 8.91e-07, - "sleepover": 8.91e-07, - "slingshot": 8.91e-07, - "slurry": 8.91e-07, - "smarts": 1.41e-07, - "sosa": 8.91e-07, - "sown": 8.91e-07, - "spc": 8.91e-07, - "spf": 8.91e-07, - "spitfire": 8.91e-07, - "sprinkles": 8.91e-07, - "src": 8.91e-07, - "stashed": 8.91e-07, - "steampunk": 8.91e-07, - "steed": 8.91e-07, - "stewarts": 1.62e-07, - "stfu": 8.91e-07, - "stints": 8.91e-07, - "strongholds": 8.91e-07, - "stumped": 8.91e-07, - "stutter": 8.91e-07, - "subspecies": 8.91e-07, - "subvert": 8.91e-07, - "sunburn": 8.91e-07, - "suny": 8.91e-07, - "supplementation": 8.91e-07, - "swerve": 8.91e-07, - "tampered": 8.91e-07, - "tarnished": 8.91e-07, - "taunton": 8.91e-07, - "termites": 8.91e-07, - "testicular": 8.91e-07, - "thompsons": 1.38e-07, - "tiller": 8.91e-07, - "tooling": 8.91e-07, - "topological": 8.91e-07, - "topple": 8.91e-07, - "transcendent": 8.91e-07, - "trapper": 8.91e-07, - "trickery": 8.91e-07, - "triton": 8.91e-07, - "trucker": 8.91e-07, - "truckers": 8.91e-07, - "tulips": 8.91e-07, - "turban": 8.91e-07, - "turners": 3.31e-07, - "tusk": 8.91e-07, - "ubisoft": 8.91e-07, - "undertakes": 8.91e-07, - "unending": 8.91e-07, - "unforgiving": 8.91e-07, - "uninstall": 8.91e-07, - "unplug": 8.91e-07, - "unproven": 8.91e-07, - "usain": 8.91e-07, - "vac": 8.91e-07, - "valium": 8.91e-07, - "vcr": 8.91e-07, - "ven": 8.91e-07, - "wanker": 8.91e-07, - "watchmen": 8.91e-07, - "wba": 8.91e-07, - "whitfield": 8.91e-07, - "willem": 8.91e-07, - "wl": 8.91e-07, - "wrigley": 8.91e-07, - "xy": 8.91e-07, - "yarmouth": 8.91e-07, - "yolo": 8.91e-07, - "zagreb": 8.91e-07, - "zlatan": 8.91e-07, - "acp": 8.71e-07, - "adrienne": 8.71e-07, - "aff": 8.71e-07, - "affixed": 8.71e-07, - "aguilar": 8.71e-07, - "airbags": 8.71e-07, - "albright": 8.71e-07, - "alkali": 8.71e-07, - "allusion": 8.71e-07, - "almeida": 8.71e-07, - "altruism": 8.71e-07, - "ambience": 8.71e-07, - "amphibians": 8.71e-07, - "andover": 8.71e-07, - "annabelle": 8.71e-07, - "anomalous": 8.71e-07, - "anson": 8.71e-07, - "antioxidant": 8.71e-07, - "apk": 8.71e-07, - "armitage": 8.71e-07, - "asos": 8.71e-07, - "assemblage": 8.71e-07, - "astm": 8.71e-07, - "astor": 8.71e-07, - "astounded": 8.71e-07, - "auld": 8.71e-07, - "austrians": 8.71e-07, - "autocorrect": 8.71e-07, - "baht": 8.71e-07, - "barrington": 8.71e-07, - "barrys": 8.71e-07, - "bec": 8.71e-07, - "benito": 8.71e-07, - "bev": 8.71e-07, - "bevan": 8.71e-07, - "birdman": 8.71e-07, - "birthing": 8.71e-07, - "boehner": 8.71e-07, - "boggs": 8.71e-07, - "bosh": 8.71e-07, - "bosss": 8.71e-07, - "bowden": 8.71e-07, - "boycotted": 8.71e-07, - "brandenburg": 8.71e-07, - "bulgarians": 8.71e-07, - "bureaus": 5.25e-07, - "burritos": 8.71e-07, - "butthole": 8.71e-07, - "campos": 8.71e-07, - "carcasses": 8.71e-07, - "caress": 8.71e-07, - "carolinas": 6.46e-07, - "catchphrase": 8.71e-07, - "censure": 8.71e-07, - "channeled": 8.71e-07, - "charlene": 8.71e-07, - "charlottes": 5.01e-08, - "chewy": 8.71e-07, - "childlike": 8.71e-07, - "chopin": 8.71e-07, - "cleanest": 8.71e-07, - "cleft": 8.71e-07, - "clump": 8.71e-07, - "cluttered": 8.71e-07, - "cmos": 8.71e-07, - "cnc": 8.71e-07, - "combos": 8.71e-07, - "communicative": 8.71e-07, - "complicating": 8.71e-07, - "conceivably": 8.71e-07, - "concussions": 8.71e-07, - "connotation": 8.71e-07, - "constitutionality": 8.71e-07, - "coughed": 8.71e-07, - "cra": 8.71e-07, - "creeper": 8.71e-07, - "cultivars": 8.71e-07, - "customizable": 8.71e-07, - "cuthbert": 8.71e-07, - "damper": 8.71e-07, - "dcs": 8.51e-07, - "deduced": 8.71e-07, - "deepwater": 8.71e-07, - "deja": 8.71e-07, - "dep": 8.71e-07, - "dependant": 8.71e-07, - "depository": 8.71e-07, - "deuce": 8.71e-07, - "diagonally": 8.71e-07, - "dickie": 8.71e-07, - "disapproved": 8.71e-07, - "disqualify": 8.71e-07, - "dnd": 8.71e-07, - "doh": 8.71e-07, - "dona": 8.71e-07, - "donates": 8.71e-07, - "donegal": 8.71e-07, - "doorways": 8.71e-07, - "doped": 8.71e-07, - "doritos": 8.71e-07, - "dram": 8.71e-07, - "dsp": 8.71e-07, - "earner": 8.71e-07, - "edc": 8.71e-07, - "efl": 8.71e-07, - "electrostatic": 8.71e-07, - "embed": 8.71e-07, - "empathetic": 8.71e-07, - "emulator": 8.71e-07, - "encompassed": 8.71e-07, - "enlisting": 8.71e-07, - "enlistment": 8.71e-07, - "entrant": 8.71e-07, - "envoys": 8.71e-07, - "ephesians": 8.71e-07, - "eraser": 8.71e-07, - "etymology": 8.71e-07, - "evidences": 8.71e-07, - "exasperated": 8.71e-07, - "excalibur": 8.71e-07, - "exorcist": 8.71e-07, - "faceted": 8.71e-07, - "faggots": 8.71e-07, - "fags": 8.71e-07, - "fayette": 8.71e-07, - "federated": 8.71e-07, - "fgm": 8.71e-07, - "fibrous": 8.71e-07, - "fiddling": 8.71e-07, - "fitbit": 8.71e-07, - "fixated": 8.71e-07, - "franciscos": 8.71e-07, - "freya": 8.71e-07, - "friars": 8.71e-07, - "frisco": 8.71e-07, - "galatasaray": 8.71e-07, - "gasped": 8.71e-07, - "gaussian": 8.71e-07, - "gaye": 8.71e-07, - "gdr": 8.71e-07, - "gea": 8.71e-07, - "geeky": 8.71e-07, - "goings": 8.71e-07, - "gove": 8.71e-07, - "gratis": 8.71e-07, - "gratuitous": 8.71e-07, - "gud": 8.71e-07, - "guiana": 8.71e-07, - "haggard": 8.71e-07, - "headings": 8.71e-07, - "headliner": 8.71e-07, - "herod": 8.71e-07, - "honeycomb": 8.71e-07, - "hooligans": 8.71e-07, - "hopelessness": 8.71e-07, - "horus": 8.71e-07, - "householder": 8.71e-07, - "href": 8.71e-07, - "hubris": 8.71e-07, - "hurrah": 8.71e-07, - "hutchison": 8.71e-07, - "hysterically": 8.71e-07, - "ias": 8.71e-07, - "idealized": 8.71e-07, - "idiosyncratic": 8.71e-07, - "ignatius": 8.71e-07, - "immerse": 8.71e-07, - "immortals": 8.71e-07, - "impassioned": 8.71e-07, - "indemnity": 8.71e-07, - "indira": 8.71e-07, - "installer": 8.71e-07, - "interoperability": 8.71e-07, - "jas": 8.71e-07, - "jitsu": 8.71e-07, - "juliana": 8.71e-07, - "juve": 8.71e-07, - "kampala": 8.71e-07, - "kasich": 8.71e-07, - "katniss": 8.71e-07, - "kelso": 8.71e-07, - "kiddie": 8.71e-07, - "kindest": 8.71e-07, - "labourer": 8.71e-07, - "langford": 8.71e-07, - "lapsed": 8.71e-07, - "lasalle": 8.71e-07, - "latitudes": 8.71e-07, - "lia": 8.71e-07, - "lili": 8.71e-07, - "lilith": 8.71e-07, - "livermore": 8.71e-07, - "lk": 8.71e-07, - "lures": 8.71e-07, - "mackey": 8.71e-07, - "mailer": 8.71e-07, - "malfunctioning": 8.71e-07, - "manfred": 8.71e-07, - "mangled": 8.71e-07, - "marxists": 8.71e-07, - "mausoleum": 8.71e-07, - "mccullough": 8.71e-07, - "melodramatic": 8.71e-07, - "mesopotamia": 8.71e-07, - "messaged": 8.71e-07, - "metallurgy": 8.71e-07, - "misc": 8.71e-07, - "mlk": 8.71e-07, - "mohan": 8.71e-07, - "mugged": 8.71e-07, - "mull": 8.71e-07, - "mushy": 8.71e-07, - "nauru": 8.71e-07, - "nepalese": 8.71e-07, - "newsletters": 8.71e-07, - "nixons": 8.71e-07, - "novices": 8.71e-07, - "nows": 1.05e-07, - "nsc": 8.71e-07, - "nursed": 8.71e-07, - "ocular": 8.71e-07, - "ontology": 8.71e-07, - "opm": 8.71e-07, - "oratory": 8.71e-07, - "orbiter": 8.71e-07, - "origami": 8.71e-07, - "orthopaedic": 8.71e-07, - "oust": 8.71e-07, - "ovary": 8.71e-07, - "oxides": 8.71e-07, - "palma": 8.71e-07, - "paradoxically": 8.71e-07, - "pcp": 8.71e-07, - "pena": 8.71e-07, - "perceives": 8.71e-07, - "petro": 8.71e-07, - "pewdiepie": 8.71e-07, - "phipps": 8.71e-07, - "picturing": 8.71e-07, - "pituitary": 8.71e-07, - "plumage": 8.71e-07, - "poachers": 8.71e-07, - "poof": 8.71e-07, - "possum": 8.71e-07, - "potted": 8.71e-07, - "premeditated": 8.71e-07, - "preset": 8.71e-07, - "profess": 8.71e-07, - "proportionally": 8.71e-07, - "purging": 8.71e-07, - "raiser": 8.71e-07, - "randle": 8.71e-07, - "ratify": 8.71e-07, - "rbc": 8.71e-07, - "rearranged": 8.71e-07, - "reassigned": 8.71e-07, - "recast": 8.71e-07, - "recombinant": 8.71e-07, - "refreshment": 8.71e-07, - "rehearse": 8.71e-07, - "remakes": 8.71e-07, - "repellent": 8.71e-07, - "reproach": 8.71e-07, - "repurchase": 8.71e-07, - "rescuers": 8.71e-07, - "resins": 8.71e-07, - "retractable": 8.71e-07, - "retroactively": 8.71e-07, - "retweeted": 8.71e-07, - "reunions": 8.71e-07, - "ronda": 8.71e-07, - "rosberg": 8.71e-07, - "runny": 8.71e-07, - "ruskin": 8.71e-07, - "rwandan": 8.71e-07, - "saad": 8.71e-07, - "saddled": 8.71e-07, - "saith": 8.71e-07, - "sander": 8.71e-07, - "sarcastically": 8.71e-07, - "scepticism": 8.71e-07, - "scorecard": 8.71e-07, - "scrutinized": 8.71e-07, - "scumbags": 8.71e-07, - "seabed": 8.71e-07, - "seamen": 8.71e-07, - "sed": 8.71e-07, - "senna": 8.71e-07, - "seok": 8.71e-07, - "serenade": 8.71e-07, - "shazam": 8.71e-07, - "sideshow": 8.71e-07, - "silos": 8.71e-07, - "simba": 8.71e-07, - "skimmed": 8.71e-07, - "skirmishes": 8.71e-07, - "slaughterhouse": 8.71e-07, - "slideshow": 8.71e-07, - "smurfs": 8.71e-07, - "sociologists": 8.71e-07, - "sonja": 8.71e-07, - "sparrows": 8.71e-08, - "speculators": 8.71e-07, - "splurge": 8.71e-07, - "spotty": 8.71e-07, - "springing": 8.71e-07, - "stabilizer": 8.71e-07, - "stereotyping": 8.71e-07, - "stimulants": 8.71e-07, - "struts": 8.71e-07, - "subconsciously": 8.71e-07, - "sufferer": 8.71e-07, - "suppressor": 8.71e-07, - "sycamore": 8.71e-07, - "synthesize": 8.71e-07, - "tabled": 8.71e-07, - "tacit": 8.71e-07, - "taggart": 8.71e-07, - "takeout": 8.71e-07, - "tangerine": 8.71e-07, - "taro": 8.71e-07, - "teeming": 8.71e-07, - "terrors": 8.71e-07, - "tethered": 8.71e-07, - "thefts": 8.71e-07, - "thrusting": 8.71e-07, - "tilly": 8.71e-07, - "tonnage": 8.71e-07, - "torrents": 8.71e-07, - "totes": 8.71e-07, - "tut": 8.71e-07, - "typhoid": 8.71e-07, - "tyrell": 8.71e-07, - "ub": 8.71e-07, - "ucf": 8.71e-07, - "unclaimed": 8.71e-07, - "underwhelming": 8.71e-07, - "unofficially": 8.71e-07, - "unopened": 8.71e-07, - "untapped": 8.71e-07, - "upholstery": 8.71e-07, - "valle": 8.71e-07, - "veracity": 8.71e-07, - "verifiable": 8.71e-07, - "vide": 8.71e-07, - "viscous": 8.71e-07, - "vitally": 8.71e-07, - "vixen": 8.71e-07, - "wank": 8.71e-07, - "waugh": 8.71e-07, - "waverley": 8.71e-07, - "wbc": 8.71e-07, - "weil": 8.71e-07, - "whatcha": 5.13e-08, - "whims": 8.71e-07, - "whitey": 8.71e-07, - "wilshere": 8.71e-07, - "windfall": 8.71e-07, - "woolwich": 8.71e-07, - "workday": 8.71e-07, - "wreak": 8.71e-07, - "wta": 8.71e-07, - "xviii": 8.71e-07, - "yap": 8.71e-07, - "yous": 5.13e-07, - "zayn": 8.71e-07, - "abbie": 8.51e-07, - "ablaze": 8.51e-07, - "adriatic": 8.51e-07, - "aegean": 8.51e-07, - "aerodynamics": 8.51e-07, - "agra": 8.51e-07, - "ahhhh": 8.51e-07, - "amiss": 2.45e-08, - "amphetamine": 8.51e-07, - "amputated": 8.51e-07, - "amr": 8.51e-07, - "anaesthetic": 8.51e-07, - "analogies": 8.51e-07, - "andys": 8.51e-07, - "animator": 8.51e-07, - "anno": 8.51e-07, - "antidepressant": 8.51e-07, - "aqueduct": 8.51e-07, - "archeological": 8.51e-07, - "aruba": 8.51e-07, - "assed": 8.51e-07, - "assesses": 8.51e-07, - "attributing": 8.51e-07, - "audiovisual": 8.51e-07, - "authenticated": 8.51e-07, - "awry": 8.51e-07, - "barnaby": 8.51e-07, - "barrymore": 8.51e-07, - "bask": 8.51e-07, - "befriend": 8.51e-07, - "bellingham": 8.51e-07, - "belo": 8.51e-07, - "bilbao": 8.51e-07, - "blakes": 9.12e-08, - "bobbi": 8.51e-07, - "bogart": 8.51e-07, - "bragged": 8.51e-07, - "brainwashing": 8.51e-07, - "breen": 8.51e-07, - "bribing": 8.51e-07, - "bristles": 8.51e-07, - "broome": 8.51e-07, - "bueno": 8.51e-07, - "busier": 8.51e-07, - "camino": 8.51e-07, - "captained": 8.51e-07, - "centralised": 8.51e-07, - "chilton": 8.51e-07, - "chiropractic": 8.51e-07, - "chopsticks": 8.51e-07, - "chp": 8.51e-07, - "citizenry": 8.51e-07, - "claudius": 8.51e-07, - "clumps": 8.51e-07, - "cocked": 8.51e-07, - "colloquial": 8.51e-07, - "combed": 8.51e-07, - "commas": 8.51e-07, - "confidant": 8.51e-07, - "config": 8.51e-07, - "confiscate": 8.51e-07, - "consecutively": 8.51e-07, - "controllable": 8.51e-07, - "conversing": 8.51e-07, - "cooley": 8.51e-07, - "coolidge": 8.51e-07, - "copped": 8.51e-07, - "cornea": 8.51e-07, - "cramer": 8.51e-07, - "crichton": 8.51e-07, - "crumpled": 8.51e-07, - "cuter": 8.51e-07, - "daimler": 8.51e-07, - "decompression": 8.51e-07, - "deflation": 8.51e-07, - "demeaning": 8.51e-07, - "dengue": 8.51e-07, - "denials": 8.51e-07, - "denominational": 8.51e-07, - "dermatology": 8.51e-07, - "detachable": 8.51e-07, - "deterministic": 8.51e-07, - "deux": 8.51e-07, - "devotee": 8.51e-07, - "dictating": 8.51e-07, - "diggers": 8.51e-07, - "dimes": 8.51e-07, - "directv": 8.51e-07, - "disfigured": 8.51e-07, - "disguises": 8.51e-07, - "disprove": 8.51e-07, - "disrespected": 8.51e-07, - "divulge": 8.51e-07, - "docile": 8.51e-07, - "doctrinal": 8.51e-07, - "dogmatic": 8.51e-07, - "dominica": 8.51e-07, - "doubleday": 8.51e-07, - "downton": 8.51e-07, - "droves": 8.51e-07, - "drunks": 8.51e-07, - "dryness": 8.51e-07, - "duterte": 8.51e-07, - "dyeing": 8.51e-07, - "eases": 8.51e-07, - "echelon": 8.51e-07, - "edifice": 8.51e-07, - "edu": 8.51e-07, - "ehh": 8.51e-07, - "ela": 8.51e-07, - "embossed": 8.51e-07, - "emt": 8.51e-07, - "encircled": 8.51e-07, - "endpoint": 8.51e-07, - "englewood": 8.51e-07, - "enid": 8.51e-07, - "entailed": 8.51e-07, - "ethyl": 8.51e-07, - "evanston": 8.51e-07, - "everglades": 8.51e-07, - "excels": 8.51e-07, - "expatriate": 8.51e-07, - "expats": 8.51e-07, - "expertly": 8.51e-07, - "facelift": 8.51e-07, - "fairway": 8.51e-07, - "fanboy": 8.51e-07, - "fao": 8.51e-07, - "farrow": 8.51e-07, - "fawcett": 8.51e-07, - "felton": 8.51e-07, - "fireplaces": 8.51e-07, - "fishers": 5.13e-07, - "fitzroy": 8.51e-07, - "flamenco": 8.51e-07, - "floored": 8.51e-07, - "flustered": 8.51e-07, - "follicles": 8.51e-07, - "folsom": 8.51e-07, - "formalities": 8.51e-07, - "franciscan": 8.51e-07, - "friendliness": 8.51e-07, - "gael": 8.51e-07, - "gagging": 8.51e-07, - "galloping": 8.51e-07, - "gaseous": 8.51e-07, - "geller": 8.51e-07, - "gio": 8.51e-07, - "gita": 8.51e-07, - "glows": 8.51e-07, - "goulding": 8.51e-07, - "gradients": 8.51e-07, - "grads": 8.51e-07, - "grits": 8.51e-07, - "groans": 8.51e-07, - "grosvenor": 8.51e-07, - "grueling": 8.51e-07, - "guardianship": 8.51e-07, - "gulp": 8.51e-07, - "gv": 8.51e-07, - "gypsum": 8.51e-07, - "hangin": 8.51e-07, - "hao": 8.51e-07, - "harbaugh": 8.51e-07, - "harbours": 5.62e-08, - "hasten": 8.51e-07, - "hauser": 8.51e-07, - "heady": 8.51e-07, - "healers": 8.51e-07, - "herbie": 8.51e-07, - "hindering": 8.51e-07, - "hiroshi": 8.51e-07, - "hmmmm": 8.51e-07, - "homesick": 8.51e-07, - "homme": 8.51e-07, - "hos": 3.72e-07, - "hotly": 8.51e-07, - "huber": 8.51e-07, - "humanly": 8.51e-07, - "hurd": 8.51e-07, - "husbandry": 8.51e-07, - "hushed": 8.51e-07, - "hyperbole": 8.51e-07, - "hypothetically": 8.51e-07, - "ibuprofen": 8.51e-07, - "identifiers": 8.51e-07, - "idly": 8.51e-07, - "imho": 8.51e-07, - "immigrated": 8.51e-07, - "immobile": 8.51e-07, - "impair": 8.51e-07, - "indycar": 8.51e-07, - "ipcc": 8.51e-07, - "irradiated": 8.51e-07, - "isaacs": 3.16e-07, - "jerked": 8.51e-07, - "jpg": 8.51e-07, - "jugs": 8.51e-07, - "karla": 8.51e-07, - "kharkiv": 8.51e-07, - "kinetics": 8.51e-07, - "kipling": 8.51e-07, - "knapp": 8.51e-07, - "lawler": 8.51e-07, - "layla": 8.51e-07, - "layman": 8.51e-07, - "layton": 8.51e-07, - "layup": 8.51e-07, - "leona": 8.51e-07, - "libra": 8.51e-07, - "librarys": 8.51e-07, - "luciano": 8.51e-07, - "macabre": 8.51e-07, - "macaulay": 8.51e-07, - "mackie": 8.51e-07, - "mackintosh": 8.51e-07, - "magdalene": 8.51e-07, - "magnification": 8.51e-07, - "maki": 8.51e-07, - "manziel": 8.51e-07, - "marshalls": 4.17e-07, - "mbe": 8.51e-07, - "mcdaniel": 8.51e-07, - "medicated": 8.51e-07, - "memento": 8.51e-07, - "midwifery": 8.51e-07, - "milieu": 8.51e-07, - "mistresses": 8.51e-07, - "miz": 8.51e-07, - "mms": 7.24e-08, - "modus": 8.51e-07, - "monsignor": 8.51e-07, - "moonshine": 8.51e-07, - "msa": 8.51e-07, - "msi": 8.51e-07, - "multitasking": 8.51e-07, - "mutt": 8.51e-07, - "myocardial": 8.51e-07, - "mysore": 8.51e-07, - "nachos": 8.51e-07, - "nani": 8.51e-07, - "nao": 8.51e-07, - "narnia": 8.51e-07, - "naturalistic": 8.51e-07, - "nepotism": 8.51e-07, - "ngl": 8.51e-07, - "normality": 8.51e-07, - "oblong": 8.51e-07, - "olly": 8.51e-07, - "ooooh": 8.51e-07, - "operatic": 8.51e-07, - "ophthalmology": 8.51e-07, - "oppenheimer": 8.51e-07, - "orca": 8.51e-07, - "osage": 8.51e-07, - "osman": 8.51e-07, - "overcomes": 8.51e-07, - "overseer": 8.51e-07, - "overstated": 8.51e-07, - "paddling": 8.51e-07, - "painstaking": 8.51e-07, - "pall": 8.51e-07, - "panelists": 8.51e-07, - "panzer": 8.51e-07, - "parodies": 8.51e-07, - "patchy": 8.51e-07, - "paychecks": 8.51e-07, - "pecan": 8.51e-07, - "penh": 8.51e-07, - "perceptual": 8.51e-07, - "pereira": 8.51e-07, - "photoshoot": 8.51e-07, - "pimples": 8.51e-07, - "pings": 8.51e-07, - "pinocchio": 8.51e-07, - "pips": 7.41e-08, - "pique": 8.51e-07, - "plo": 8.51e-07, - "plowed": 8.51e-07, - "politeness": 8.51e-07, - "pomegranate": 8.51e-07, - "ponzi": 8.51e-07, - "porters": 5.62e-07, - "potholes": 8.51e-07, - "ppi": 8.51e-07, - "pregame": 8.51e-07, - "promiscuous": 8.51e-07, - "proudest": 8.51e-07, - "psychopaths": 8.51e-07, - "pugh": 8.51e-07, - "punta": 8.51e-07, - "pusher": 8.51e-07, - "quixote": 8.51e-07, - "rangoon": 8.51e-07, - "raza": 8.51e-07, - "rbis": 9.33e-08, - "reagans": 5.89e-08, - "rebranded": 8.51e-07, - "refueling": 8.51e-07, - "reprimanded": 8.51e-07, - "reproductions": 8.51e-07, - "resell": 8.51e-07, - "reserving": 8.51e-07, - "resuscitation": 8.51e-07, - "revocation": 8.51e-07, - "richland": 8.51e-07, - "roadblocks": 8.51e-07, - "rosalind": 8.51e-07, - "russells": 9.55e-08, - "rusted": 8.51e-07, - "sacraments": 8.51e-07, - "sagging": 8.51e-07, - "sant": 8.51e-07, - "santas": 2.51e-07, - "sardines": 8.51e-07, - "sardinia": 8.51e-07, - "scalable": 8.51e-07, - "scalar": 8.51e-07, - "scalia": 8.51e-07, - "schaefer": 8.51e-07, - "schoolchildren": 8.51e-07, - "schwarz": 8.51e-07, - "scrapbook": 8.51e-07, - "selby": 8.51e-07, - "selectors": 8.51e-07, - "semiconductors": 8.51e-07, - "sensibly": 8.51e-07, - "sensitivities": 8.51e-07, - "separator": 8.51e-07, - "sequestration": 8.51e-07, - "sheraton": 8.51e-07, - "shoal": 8.51e-07, - "sigmund": 8.51e-07, - "sledgehammer": 8.51e-07, - "sleeved": 8.51e-07, - "smartly": 8.51e-07, - "smite": 8.51e-07, - "smt": 8.51e-07, - "sniping": 8.51e-07, - "socal": 8.51e-07, - "solicited": 8.51e-07, - "somatic": 8.51e-07, - "southside": 8.51e-07, - "splendour": 8.51e-07, - "ssl": 8.51e-07, - "stearns": 8.51e-07, - "steeply": 8.51e-07, - "stingray": 8.51e-07, - "stonehenge": 8.51e-07, - "straightening": 8.51e-07, - "subcontinent": 8.51e-07, - "subsets": 8.51e-07, - "subsidize": 8.51e-07, - "substation": 8.51e-07, - "sufferings": 8.51e-07, - "swarms": 8.51e-07, - "symbiotic": 8.51e-07, - "tantamount": 8.51e-07, - "tasha": 8.51e-07, - "teaspoons": 8.51e-07, - "tetris": 8.51e-07, - "therese": 8.51e-07, - "thereto": 8.51e-07, - "thermodynamic": 8.51e-07, - "thoreau": 8.51e-07, - "thorny": 8.51e-07, - "thurman": 8.51e-07, - "tickling": 8.51e-07, - "tortillas": 8.51e-07, - "tosses": 8.51e-07, - "traversed": 8.51e-07, - "trifle": 8.51e-07, - "trixie": 8.51e-07, - "twine": 8.51e-07, - "twink": 8.51e-07, - "tylers": 5.89e-08, - "uav": 8.51e-07, - "uci": 8.51e-07, - "unfulfilled": 8.51e-07, - "unjustly": 8.51e-07, - "unoccupied": 8.51e-07, - "venous": 8.51e-07, - "ventricular": 8.51e-07, - "viciously": 8.51e-07, - "videogame": 8.51e-07, - "vincenzo": 8.51e-07, - "vindication": 8.51e-07, - "vinnie": 8.51e-07, - "violins": 8.51e-07, - "vishnu": 8.51e-07, - "vive": 8.51e-07, - "voila": 8.51e-07, - "voip": 8.51e-07, - "wadsworth": 8.51e-07, - "watercolour": 8.51e-07, - "wedded": 8.51e-07, - "weymouth": 8.51e-07, - "whelan": 8.51e-07, - "whiter": 8.51e-07, - "wickedness": 8.51e-07, - "wilshire": 8.51e-07, - "woodson": 8.51e-07, - "worksheet": 8.51e-07, - "wrappers": 8.51e-07, - "wylie": 8.51e-07, - "wyndham": 8.51e-07, - "xxi": 8.51e-07, - "xxiii": 8.51e-07, - "yarns": 8.51e-07, - "abysmal": 8.32e-07, - "addams": 8.32e-07, - "adores": 8.32e-07, - "aman": 8.32e-07, - "amar": 8.32e-07, - "angelou": 8.32e-07, - "antigens": 8.32e-07, - "aorta": 8.32e-07, - "apostasy": 8.32e-07, - "aram": 8.32e-07, - "argyll": 8.32e-07, - "artistically": 8.32e-07, - "ascii": 8.32e-07, - "asda": 8.32e-07, - "ashram": 8.32e-07, - "attentions": 8.32e-07, - "aust": 8.32e-07, - "avocados": 8.32e-07, - "aya": 8.32e-07, - "ayatollah": 8.32e-07, - "baa": 8.32e-07, - "batista": 8.32e-07, - "battlefields": 8.32e-07, - "beowulf": 8.32e-07, - "beret": 8.32e-07, - "bharatiya": 8.32e-07, - "bleu": 8.32e-07, - "bloomsbury": 8.32e-07, - "bogey": 8.32e-07, - "bol": 8.32e-07, - "bolsheviks": 8.32e-07, - "bookshelf": 8.32e-07, - "boron": 8.32e-07, - "bpa": 8.32e-07, - "brainstorming": 8.32e-07, - "brigitte": 8.32e-07, - "bronchitis": 8.32e-07, - "brotherly": 8.32e-07, - "buffering": 8.32e-07, - "bugle": 8.32e-07, - "bumblebee": 8.32e-07, - "burch": 8.32e-07, - "buren": 8.32e-07, - "busters": 1.48e-07, - "butters": 8.32e-07, - "buxton": 8.32e-07, - "caf": 8.32e-07, - "callaghan": 8.32e-07, - "calum": 8.32e-07, - "canvases": 8.32e-07, - "capone": 8.32e-07, - "carboniferous": 8.32e-07, - "casings": 8.32e-07, - "catchers": 1.58e-07, - "catechism": 8.32e-07, - "categorize": 8.32e-07, - "cathedrals": 1.32e-07, - "causality": 8.32e-07, - "cern": 8.32e-07, - "cesare": 8.32e-07, - "chandeliers": 8.32e-07, - "chaney": 8.32e-07, - "chatty": 8.32e-07, - "chokes": 8.32e-07, - "christened": 8.32e-07, - "chug": 8.32e-07, - "churchyard": 8.32e-07, - "clapper": 8.32e-07, - "clarion": 8.32e-07, - "coffers": 8.32e-07, - "cognac": 8.32e-07, - "colette": 8.32e-07, - "combatant": 8.32e-07, - "commie": 8.32e-07, - "compels": 8.32e-07, - "compilations": 8.32e-07, - "concealer": 8.32e-07, - "concealment": 8.32e-07, - "concentric": 8.32e-07, - "conceptually": 8.32e-07, - "confine": 8.32e-07, - "congregate": 8.32e-07, - "congresswoman": 8.32e-07, - "constructor": 8.32e-07, - "coolers": 8.32e-07, - "copycat": 8.32e-07, - "corroborate": 8.32e-07, - "corroborated": 8.32e-07, - "coulda": 8.32e-07, - "cred": 8.32e-07, - "cur": 8.32e-07, - "curd": 8.32e-07, - "cursory": 8.32e-07, - "dangle": 8.32e-07, - "daniela": 8.32e-07, - "dario": 8.32e-07, - "ddos": 8.32e-07, - "dearth": 8.32e-07, - "delilah": 8.32e-07, - "delinquency": 8.32e-07, - "denominated": 8.32e-07, - "deutschland": 8.32e-07, - "dez": 8.32e-07, - "disservice": 8.32e-07, - "distaste": 8.32e-07, - "dost": 8.32e-07, - "dribbling": 8.32e-07, - "dryden": 8.32e-07, - "durango": 8.32e-07, - "dwindled": 8.32e-07, - "edie": 8.32e-07, - "een": 8.32e-07, - "ejaculation": 8.32e-07, - "enveloped": 8.32e-07, - "environmentalist": 8.32e-07, - "epileptic": 8.32e-07, - "erasure": 8.32e-07, - "errol": 8.32e-07, - "este": 8.32e-07, - "euphemism": 8.32e-07, - "exacerbate": 8.32e-07, - "exemplifies": 8.32e-07, - "exonerated": 8.32e-07, - "exquisitely": 8.32e-07, - "extinguisher": 8.32e-07, - "facilitation": 8.32e-07, - "falsehood": 8.32e-07, - "falsified": 8.32e-07, - "fantasia": 8.32e-07, - "favourably": 8.32e-07, - "fellaini": 8.32e-07, - "fertilized": 8.32e-07, - "firefighting": 8.32e-07, - "firestorm": 8.32e-07, - "flange": 8.32e-07, - "flaunt": 8.32e-07, - "flawlessly": 8.32e-07, - "flier": 8.32e-07, - "flinch": 8.32e-07, - "florentine": 8.32e-07, - "fontana": 8.32e-07, - "forefathers": 8.32e-07, - "frankel": 8.32e-07, - "freehold": 8.32e-07, - "freeport": 8.32e-07, - "frisk": 8.32e-07, - "fta": 8.32e-07, - "fulfills": 8.32e-07, - "fundamentalism": 8.32e-07, - "gables": 8.32e-07, - "gabon": 8.32e-07, - "gad": 8.32e-07, - "galapagos": 8.32e-07, - "ganges": 8.32e-07, - "garmin": 8.32e-07, - "gasps": 8.32e-07, - "gaz": 8.32e-07, - "girth": 8.32e-07, - "goalscorer": 8.32e-07, - "godmother": 8.32e-07, - "goodell": 8.32e-07, - "gothenburg": 8.32e-07, - "governorship": 8.32e-07, - "graf": 8.32e-07, - "grunts": 8.32e-07, - "guadalupe": 8.32e-07, - "guatemalan": 8.32e-07, - "guillaume": 8.32e-07, - "guzman": 8.32e-07, - "hallmarks": 8.32e-07, - "haq": 8.32e-07, - "hardwick": 8.32e-07, - "harrogate": 8.32e-07, - "hellish": 8.32e-07, - "hemoglobin": 8.32e-07, - "hermitage": 8.32e-07, - "heyman": 8.32e-07, - "hierarchies": 8.32e-07, - "histoire": 8.32e-07, - "honeywell": 8.32e-07, - "hooves": 8.32e-07, - "hourglass": 8.32e-07, - "hungarians": 8.32e-07, - "hygienic": 8.32e-07, - "idiocy": 8.32e-07, - "imitated": 8.32e-07, - "impersonal": 8.32e-07, - "impregnated": 8.32e-07, - "incontinence": 8.32e-07, - "ine": 8.32e-07, - "inhaler": 8.32e-07, - "injures": 8.32e-07, - "intersex": 8.32e-07, - "intricacies": 8.32e-07, - "ironed": 8.32e-07, - "jacuzzi": 8.32e-07, - "kenyas": 8.32e-07, - "kohler": 8.32e-07, - "lacquer": 8.32e-07, - "lakeland": 8.32e-07, - "laments": 8.32e-07, - "langer": 8.32e-07, - "lapses": 8.32e-07, - "lbj": 8.32e-07, - "ldl": 8.32e-07, - "levelling": 8.32e-07, - "linemen": 8.32e-07, - "lipsticks": 8.32e-07, - "liquefied": 8.32e-07, - "livestream": 8.32e-07, - "loaves": 8.32e-07, - "macgregor": 8.32e-07, - "madhya": 8.32e-07, - "maidens": 1.38e-07, - "malevolent": 8.32e-07, - "manchuria": 8.32e-07, - "mano": 8.32e-07, - "martyred": 8.32e-07, - "masterclass": 8.32e-07, - "matchups": 8.32e-07, - "mated": 8.32e-07, - "matrimony": 8.32e-07, - "matures": 8.32e-07, - "mechanized": 8.32e-07, - "mending": 8.32e-07, - "mercilessly": 8.32e-07, - "meteorologist": 8.32e-07, - "microprocessor": 8.32e-07, - "midweek": 8.32e-07, - "minefield": 8.32e-07, - "minogue": 8.32e-07, - "misha": 8.32e-07, - "mogadishu": 8.32e-07, - "mombasa": 8.32e-07, - "monash": 8.32e-07, - "monika": 8.32e-07, - "mta": 8.32e-07, - "murmur": 8.32e-07, - "murrays": 9.77e-08, - "musings": 8.32e-07, - "nair": 8.32e-07, - "napoleonic": 8.32e-07, - "narrating": 8.32e-07, - "necrosis": 8.32e-07, - "ning": 8.32e-07, - "niro": 8.32e-07, - "notches": 8.32e-07, - "nou": 8.32e-07, - "nth": 8.32e-07, - "oshea": 8.32e-07, - "onerous": 8.32e-07, - "onsite": 8.32e-07, - "orientations": 8.32e-07, - "outsource": 8.32e-07, - "overtones": 8.32e-07, - "pained": 8.32e-07, - "paradigms": 8.32e-07, - "pardons": 8.32e-07, - "patching": 8.32e-07, - "pcc": 8.32e-07, - "peeping": 8.32e-07, - "pembrokeshire": 8.32e-07, - "peralta": 8.32e-07, - "permeability": 8.32e-07, - "pershing": 8.32e-07, - "pharmacological": 8.32e-07, - "plano": 8.32e-07, - "playmaker": 8.32e-07, - "plumb": 8.32e-07, - "plumes": 8.32e-07, - "plunger": 8.32e-07, - "pokes": 8.32e-07, - "porta": 8.32e-07, - "posey": 8.32e-07, - "presto": 8.32e-07, - "priestly": 8.32e-07, - "printable": 8.32e-07, - "priya": 8.32e-07, - "procuring": 8.32e-07, - "prodigal": 8.32e-07, - "prodigious": 8.32e-07, - "propellant": 8.32e-07, - "pulley": 8.32e-07, - "qualms": 8.32e-07, - "raaf": 8.32e-07, - "raccoons": 8.32e-07, - "raju": 8.32e-07, - "reappeared": 8.32e-07, - "recaptured": 8.32e-07, - "rechargeable": 8.32e-07, - "recluse": 8.32e-07, - "rectified": 8.32e-07, - "refinance": 8.32e-07, - "reformist": 8.32e-07, - "refresher": 8.32e-07, - "relaxes": 8.32e-07, - "remodel": 8.32e-07, - "replaceable": 8.32e-07, - "reschedule": 8.32e-07, - "restarting": 8.32e-07, - "retroactive": 8.32e-07, - "reverb": 8.32e-07, - "revisionist": 8.32e-07, - "ribbed": 8.32e-07, - "robs": 4.07e-07, - "rodman": 8.32e-07, - "rohingya": 8.32e-07, - "romes": 8.32e-07, - "sabotaged": 8.32e-07, - "sages": 1.23e-07, - "sandoval": 8.32e-07, - "sarkar": 8.32e-07, - "saskatoon": 8.32e-07, - "satoshi": 8.32e-07, - "schoolhouse": 8.32e-07, - "seashore": 8.32e-07, - "seclusion": 8.32e-07, - "selenium": 8.32e-07, - "setups": 8.32e-07, - "sewell": 8.32e-07, - "shuttles": 1.23e-07, - "signatory": 8.32e-07, - "silverstone": 8.32e-07, - "sinha": 8.32e-07, - "siphon": 8.32e-07, - "skelton": 8.32e-07, - "slasher": 8.32e-07, - "slimming": 8.32e-07, - "slovenian": 8.32e-07, - "snagged": 8.32e-07, - "soulmate": 8.32e-07, - "spangled": 8.32e-07, - "spiteful": 8.32e-07, - "splashes": 8.32e-07, - "sporadically": 8.32e-07, - "stefani": 8.32e-07, - "stifled": 8.32e-07, - "stinger": 8.32e-07, - "stipulation": 8.32e-07, - "stowe": 8.32e-07, - "stubbornly": 8.32e-07, - "subtropical": 8.32e-07, - "sulfide": 8.32e-07, - "summation": 8.32e-07, - "superimposed": 8.32e-07, - "surfacing": 8.32e-07, - "swifts": 5.25e-07, - "tableau": 8.32e-07, - "taming": 8.32e-07, - "taxa": 8.32e-07, - "tbf": 8.32e-07, - "tebow": 8.32e-07, - "techs": 5.13e-07, - "tiredness": 8.32e-07, - "toi": 8.32e-07, - "toppled": 8.32e-07, - "trajectories": 8.32e-07, - "transgressions": 8.32e-07, - "transylvania": 8.32e-07, - "trotter": 8.32e-07, - "truest": 8.32e-07, - "tse": 8.32e-07, - "ufos": 1.07e-07, - "underpants": 8.32e-07, - "underprivileged": 8.32e-07, - "underscores": 8.32e-07, - "unhcr": 8.32e-07, - "unimpressed": 8.32e-07, - "unreasonably": 8.32e-07, - "unrelenting": 8.32e-07, - "unsupervised": 8.32e-07, - "vassal": 8.32e-07, - "vegetative": 8.32e-07, - "velcro": 8.32e-07, - "verne": 8.32e-07, - "vying": 8.32e-07, - "wabash": 8.32e-07, - "walla": 8.32e-07, - "waltham": 8.32e-07, - "warranties": 8.32e-07, - "washburn": 8.32e-07, - "washers": 8.32e-07, - "weimar": 8.32e-07, - "weirdness": 8.32e-07, - "westgate": 8.32e-07, - "wheatley": 8.32e-07, - "wheelchairs": 8.32e-07, - "wie": 8.32e-07, - "wiseman": 8.32e-07, - "withered": 8.32e-07, - "woefully": 8.32e-07, - "workmen": 8.32e-07, - "wrangler": 8.32e-07, - "yds": 8.32e-07, - "yeats": 8.32e-07, - "yonkers": 8.32e-07, - "yunnan": 8.32e-07, - "zidane": 8.32e-07, - "ziggy": 8.32e-07, - "aberdeenshire": 8.13e-07, - "abrasion": 8.13e-07, - "accrue": 8.13e-07, - "ackerman": 8.13e-07, - "acumen": 8.13e-07, - "admirably": 8.13e-07, - "alford": 8.13e-07, - "allele": 8.13e-07, - "alumnus": 8.13e-07, - "amon": 8.13e-07, - "amore": 8.13e-07, - "andean": 8.13e-07, - "angers": 3.09e-08, - "anniversaries": 8.13e-07, - "aphrodite": 8.13e-07, - "applauding": 8.13e-07, - "applicability": 8.13e-07, - "approachable": 8.13e-07, - "aragon": 8.13e-07, - "armagh": 8.13e-07, - "asexual": 8.13e-07, - "auditioned": 8.13e-07, - "automata": 8.13e-07, - "babel": 8.13e-07, - "balding": 8.13e-07, - "ballon": 8.13e-07, - "banding": 8.13e-07, - "bannister": 8.13e-07, - "bellies": 8.13e-07, - "bernice": 8.13e-07, - "beryl": 8.13e-07, - "blackbird": 8.13e-07, - "bleachers": 8.13e-07, - "bluebird": 8.13e-07, - "blunders": 8.13e-07, - "boe": 8.13e-07, - "boop": 8.13e-07, - "brats": 5.01e-08, - "breech": 8.13e-07, - "breezes": 8.13e-07, - "buttery": 8.13e-07, - "cadbury": 8.13e-07, - "caliph": 8.13e-07, - "calle": 8.13e-07, - "cameos": 8.13e-07, - "carta": 8.13e-07, - "celiac": 8.13e-07, - "celibacy": 8.13e-07, - "cersei": 8.13e-07, - "chancery": 8.13e-07, - "chappell": 8.13e-07, - "characterizes": 8.13e-07, - "chiu": 8.13e-07, - "choppy": 8.13e-07, - "chromatic": 8.13e-07, - "chronologically": 8.13e-07, - "chump": 8.13e-07, - "clamping": 8.13e-07, - "clashing": 8.13e-07, - "clenched": 8.13e-07, - "clogging": 8.13e-07, - "clove": 8.13e-07, - "columbine": 8.13e-07, - "commemorated": 8.13e-07, - "comte": 8.13e-07, - "converged": 8.13e-07, - "cordelia": 8.13e-07, - "countenance": 8.13e-07, - "crackling": 8.13e-07, - "crawls": 8.13e-07, - "creighton": 8.13e-07, - "crouching": 8.13e-07, - "crowder": 8.13e-07, - "cryptography": 8.13e-07, - "cysts": 8.13e-07, - "dali": 8.13e-07, - "damping": 8.13e-07, - "dapper": 8.13e-07, - "deathly": 8.13e-07, - "deere": 8.13e-07, - "defection": 8.13e-07, - "delightfully": 8.13e-07, - "dermatitis": 8.13e-07, - "desiring": 8.13e-07, - "determinants": 8.13e-07, - "devaluation": 8.13e-07, - "dictatorial": 8.13e-07, - "digitized": 8.13e-07, - "disinterested": 8.13e-07, - "dispensaries": 8.13e-07, - "disrespecting": 8.13e-07, - "dissected": 8.13e-07, - "dist": 8.13e-07, - "diversions": 8.13e-07, - "diwali": 8.13e-07, - "doreen": 8.13e-07, - "dota": 8.13e-07, - "downplay": 8.13e-07, - "drakes": 3.72e-07, - "drapes": 8.13e-07, - "dss": 5.89e-08, - "dunkin": 8.13e-07, - "dynamical": 8.13e-07, - "edi": 8.13e-07, - "electra": 8.13e-07, - "elicited": 8.13e-07, - "eluded": 8.13e-07, - "ema": 8.13e-07, - "encapsulated": 8.13e-07, - "eno": 8.13e-07, - "enquire": 8.13e-07, - "ensue": 8.13e-07, - "environs": 8.13e-07, - "epics": 8.13e-08, - "errant": 8.13e-07, - "esophagus": 8.13e-07, - "estelle": 8.13e-07, - "etfs": 5.62e-08, - "ethylene": 8.13e-07, - "eunice": 8.13e-07, - "evaded": 8.13e-07, - "evie": 8.13e-07, - "exterminate": 8.13e-07, - "eyewitnesses": 8.13e-07, - "fai": 8.13e-07, - "fairchild": 8.13e-07, - "falmouth": 8.13e-07, - "faze": 8.13e-07, - "fbs": 8.13e-07, - "fdi": 8.13e-07, - "fergie": 8.13e-07, - "figaro": 8.13e-07, - "finney": 8.13e-07, - "fisa": 8.13e-07, - "flatly": 8.13e-07, - "flicked": 8.13e-07, - "flocked": 8.13e-07, - "fluently": 8.13e-07, - "forsake": 8.13e-07, - "fusing": 8.13e-07, - "gallen": 8.13e-07, - "gamestop": 8.13e-07, - "gasol": 8.13e-07, - "gatwick": 8.13e-07, - "gecko": 8.13e-07, - "generalize": 8.13e-07, - "gervais": 8.13e-07, - "gianni": 8.13e-07, - "gila": 8.13e-07, - "giraffes": 5.89e-08, - "gondola": 8.13e-07, - "grained": 8.13e-07, - "grandmaster": 8.13e-07, - "grenoble": 8.13e-07, - "grills": 8.13e-07, - "grudges": 8.13e-07, - "guacamole": 8.13e-07, - "hagan": 8.13e-07, - "hammersmith": 8.13e-07, - "hamptons": 1.12e-07, - "handcrafted": 8.13e-07, - "harbinger": 8.13e-07, - "harnessed": 8.13e-07, - "harvests": 8.13e-07, - "headshot": 8.13e-07, - "heartily": 8.13e-07, - "heb": 8.13e-07, - "helplessness": 8.13e-07, - "helpline": 8.13e-07, - "henchman": 8.13e-07, - "hiccup": 8.13e-07, - "hoffmann": 8.13e-07, - "hurl": 8.13e-07, - "hydroxide": 8.13e-07, - "ied": 8.13e-07, - "iit": 8.13e-07, - "iliad": 8.13e-07, - "ilk": 8.13e-07, - "imbued": 8.13e-07, - "impartiality": 8.13e-07, - "incessantly": 8.13e-07, - "inertial": 8.13e-07, - "intentioned": 8.13e-07, - "introvert": 8.13e-07, - "invades": 8.13e-07, - "invocation": 8.13e-07, - "involuntarily": 8.13e-07, - "iroquois": 8.13e-07, - "irreparable": 8.13e-07, - "issuers": 8.13e-07, - "ivanka": 8.13e-07, - "iz": 8.13e-07, - "jer": 8.13e-07, - "jimenez": 8.13e-07, - "journeyman": 8.13e-07, - "kandahar": 8.13e-07, - "khloe": 8.13e-07, - "kitchener": 8.13e-07, - "kobayashi": 8.13e-07, - "korra": 8.13e-07, - "kpa": 8.13e-07, - "kuwaiti": 8.13e-07, - "kwan": 8.13e-07, - "lactic": 8.13e-07, - "laing": 8.13e-07, - "lanarkshire": 8.13e-07, - "larval": 8.13e-07, - "laterally": 8.13e-07, - "lathe": 8.13e-07, - "lawlessness": 8.13e-07, - "lcs": 8.13e-07, - "leela": 8.13e-07, - "leonid": 8.13e-07, - "leopards": 8.32e-08, - "liberally": 8.13e-07, - "lonnie": 8.13e-07, - "lopsided": 8.13e-07, - "lowlands": 8.13e-07, - "lunacy": 8.13e-07, - "magi": 8.13e-07, - "malia": 8.13e-07, - "malloy": 8.13e-07, - "mancini": 8.13e-07, - "mantel": 8.13e-07, - "marcello": 8.13e-07, - "matchday": 8.13e-07, - "mayday": 8.13e-07, - "mcafee": 8.13e-07, - "mcdonough": 8.13e-07, - "meier": 8.13e-07, - "melons": 8.13e-07, - "melton": 8.13e-07, - "mem": 8.13e-07, - "merges": 8.13e-07, - "meteors": 8.13e-07, - "methylation": 8.13e-07, - "micky": 8.13e-07, - "milligan": 8.13e-07, - "misinformed": 8.13e-07, - "mitchells": 1.26e-07, - "morphed": 8.13e-07, - "mumble": 8.13e-07, - "mummies": 8.13e-07, - "musketeers": 8.13e-07, - "nad": 8.13e-07, - "newmarket": 8.13e-07, - "nie": 8.13e-07, - "nonpartisan": 8.13e-07, - "norwalk": 8.13e-07, - "noxious": 8.13e-07, - "nucleic": 8.13e-07, - "oaths": 8.13e-07, - "ocs": 8.13e-08, - "octagon": 8.13e-07, - "offsets": 8.13e-07, - "oligarchs": 8.13e-07, - "opulent": 8.13e-07, - "ordinate": 8.13e-07, - "organist": 8.13e-07, - "oro": 8.13e-07, - "outed": 8.13e-07, - "outstretched": 8.13e-07, - "overbearing": 8.13e-07, - "patting": 8.13e-07, - "pectoral": 8.13e-07, - "percival": 8.13e-07, - "perplexing": 8.13e-07, - "personified": 8.13e-07, - "petr": 8.13e-07, - "plummeted": 8.13e-07, - "podesta": 8.13e-07, - "polaroid": 8.13e-07, - "preexisting": 8.13e-07, - "prepped": 8.13e-07, - "primrose": 8.13e-07, - "prohibitions": 8.13e-07, - "psyched": 8.13e-07, - "puddles": 8.13e-07, - "pulsating": 8.13e-07, - "pungent": 8.13e-07, - "putter": 8.13e-07, - "qatari": 8.13e-07, - "rachels": 8.13e-07, - "radioactivity": 8.13e-07, - "ranches": 8.13e-07, - "raquel": 8.13e-07, - "recessive": 8.13e-07, - "reclining": 8.13e-07, - "redford": 8.13e-07, - "reeve": 8.13e-07, - "refinancing": 8.13e-07, - "relativistic": 8.13e-07, - "relaunch": 8.13e-07, - "reloaded": 8.13e-07, - "remand": 8.13e-07, - "replete": 8.13e-07, - "repugnant": 8.13e-07, - "ringed": 8.13e-07, - "rmb": 8.13e-07, - "roaches": 8.13e-07, - "roamed": 8.13e-07, - "roars": 8.13e-07, - "rotc": 8.13e-07, - "rote": 8.13e-07, - "rotors": 8.13e-07, - "rudeness": 8.13e-07, - "ruffled": 8.13e-07, - "saa": 8.13e-07, - "sabah": 8.13e-07, - "salinas": 8.13e-07, - "salomon": 8.13e-07, - "sandal": 8.13e-07, - "sandro": 8.13e-07, - "santi": 8.13e-07, - "scat": 8.13e-07, - "scissor": 8.13e-07, - "seaport": 8.13e-07, - "sellout": 8.13e-07, - "seminole": 8.13e-07, - "serra": 8.13e-07, - "setlist": 8.13e-07, - "seychelles": 8.13e-07, - "shakers": 1.1e-08, - "shang": 8.13e-07, - "sharpest": 8.13e-07, - "simulators": 8.13e-07, - "sixes": 8.13e-07, - "skilful": 8.13e-07, - "snot": 8.13e-07, - "sodas": 8.13e-07, - "spilt": 8.13e-07, - "spineless": 8.13e-07, - "spirals": 8.13e-07, - "stairwell": 8.13e-07, - "stalwart": 8.13e-07, - "standardised": 8.13e-07, - "stapleton": 8.13e-07, - "starfleet": 8.13e-07, - "steeper": 8.13e-07, - "stomped": 8.13e-07, - "stooges": 8.13e-07, - "streisand": 8.13e-07, - "subtraction": 8.13e-07, - "sufi": 8.13e-07, - "summing": 8.13e-07, - "sutra": 8.13e-07, - "swiped": 8.13e-07, - "sybil": 8.13e-07, - "synagogues": 8.13e-07, - "tartan": 8.13e-07, - "taut": 8.13e-07, - "teapot": 8.13e-07, - "telephoned": 8.13e-07, - "theorems": 8.13e-07, - "therefor": 8.13e-07, - "thoroughfare": 8.13e-07, - "threading": 8.13e-07, - "traversing": 8.13e-07, - "treehouse": 8.13e-07, - "tribeca": 8.13e-07, - "tripadvisor": 8.13e-07, - "triumphed": 8.13e-07, - "tuner": 8.13e-07, - "ukraines": 8.13e-07, - "underrepresented": 8.13e-07, - "undervalued": 8.13e-07, - "undying": 8.13e-07, - "unequivocal": 8.13e-07, - "uneventful": 8.13e-07, - "unfathomable": 8.13e-07, - "ungodly": 8.13e-07, - "unprofitable": 8.13e-07, - "unreported": 8.13e-07, - "unsung": 8.13e-07, - "usas": 7.94e-08, - "vaginas": 8.13e-07, - "valour": 8.13e-07, - "vanquished": 8.13e-07, - "velocities": 8.13e-07, - "vern": 8.13e-07, - "vf": 8.13e-07, - "warburton": 8.13e-07, - "waterman": 8.13e-07, - "weinberg": 8.13e-07, - "wetter": 8.13e-07, - "whittier": 8.13e-07, - "windscreen": 8.13e-07, - "wonka": 8.13e-07, - "woodhouse": 8.13e-07, - "wormhole": 8.13e-07, - "wray": 8.13e-07, - "yellows": 4.37e-08, - "youngstown": 8.13e-07, - "zanzibar": 8.13e-07, - "zola": 8.13e-07, - "zooming": 8.13e-07, - "abram": 7.94e-07, - "accented": 7.94e-07, - "adonis": 7.94e-07, - "aggrieved": 7.94e-07, - "albatross": 7.94e-07, - "alina": 7.94e-07, - "allusions": 7.94e-07, - "amal": 7.94e-07, - "androids": 2.19e-07, - "anglesey": 7.94e-07, - "annabel": 7.94e-07, - "antivirus": 7.94e-07, - "aquifer": 7.94e-07, - "arduino": 7.94e-07, - "armando": 7.94e-07, - "arouse": 7.94e-07, - "arranges": 7.94e-07, - "assemblyman": 7.94e-07, - "autocratic": 7.94e-07, - "autographed": 7.94e-07, - "avis": 3.8e-08, - "ayres": 7.94e-07, - "baez": 7.94e-07, - "bak": 7.94e-07, - "bakeries": 7.94e-07, - "bakr": 7.94e-07, - "ballarat": 7.94e-07, - "baller": 7.94e-07, - "banff": 7.94e-07, - "basements": 7.94e-07, - "bene": 7.94e-07, - "bereaved": 7.94e-07, - "bes": 1.17e-07, - "bfa": 7.94e-07, - "bigelow": 7.94e-07, - "bindings": 7.94e-07, - "bjorn": 7.94e-07, - "blackouts": 7.94e-07, - "blossomed": 7.94e-07, - "blossoming": 7.94e-07, - "blowers": 7.94e-07, - "bogota": 7.94e-07, - "boldness": 7.94e-07, - "bolstered": 7.94e-07, - "bookseller": 7.94e-07, - "borrows": 7.94e-07, - "brahms": 7.94e-07, - "brampton": 7.94e-07, - "brant": 7.94e-07, - "breakage": 7.94e-07, - "brianna": 7.94e-07, - "budweiser": 7.94e-07, - "calc": 7.94e-07, - "capitulation": 7.94e-07, - "cardiologist": 7.94e-07, - "carelessly": 7.94e-07, - "carotid": 7.94e-07, - "catania": 7.94e-07, - "cath": 7.94e-07, - "caulfield": 7.94e-07, - "chaplains": 5.62e-08, - "charade": 7.94e-07, - "chimps": 7.94e-07, - "chinook": 7.94e-07, - "christoph": 7.94e-07, - "cme": 7.94e-07, - "coconuts": 7.94e-07, - "coed": 7.94e-07, - "coexistence": 7.94e-07, - "cohens": 7.76e-08, - "coiled": 7.94e-07, - "coimbatore": 7.94e-07, - "compatriots": 7.94e-07, - "concourse": 7.94e-07, - "confide": 7.94e-07, - "converging": 7.94e-07, - "corning": 7.94e-07, - "countryman": 7.94e-07, - "cpt": 7.94e-07, - "cpus": 9.33e-08, - "cramping": 7.94e-07, - "craved": 7.94e-07, - "craves": 7.94e-07, - "crs": 7.94e-07, - "crutch": 7.94e-07, - "cupboards": 7.94e-07, - "cursive": 7.94e-07, - "cutout": 7.94e-07, - "daisies": 7.94e-07, - "dandelion": 7.94e-07, - "ddt": 7.94e-07, - "deafness": 7.94e-07, - "decals": 7.94e-07, - "declassified": 7.94e-07, - "deflated": 7.94e-07, - "defoe": 7.94e-07, - "dekker": 7.94e-07, - "demonstrator": 7.94e-07, - "denoting": 7.94e-07, - "destruct": 7.94e-07, - "determinant": 7.94e-07, - "deterred": 7.94e-07, - "devonian": 7.94e-07, - "devouring": 7.94e-07, - "dias": 6.61e-08, - "disagreeing": 7.94e-07, - "disenfranchised": 7.94e-07, - "disengage": 7.94e-07, - "disoriented": 7.94e-07, - "displacing": 7.94e-07, - "dissect": 7.94e-07, - "dmitri": 7.94e-07, - "dominos": 4.9e-07, - "dowd": 7.94e-07, - "drm": 7.94e-07, - "drywall": 7.94e-07, - "dsc": 7.94e-07, - "duggan": 7.94e-07, - "eagerness": 7.94e-07, - "elba": 7.94e-07, - "elliptic": 7.94e-07, - "emitter": 7.94e-07, - "emporium": 7.94e-07, - "empties": 7.94e-07, - "endo": 7.94e-07, - "epicenter": 7.94e-07, - "epidural": 7.94e-07, - "epistle": 7.94e-07, - "equating": 7.94e-07, - "erstwhile": 7.94e-07, - "espoused": 7.94e-07, - "exertion": 7.94e-07, - "expend": 7.94e-07, - "facilitator": 7.94e-07, - "familia": 7.94e-07, - "fanfic": 7.94e-07, - "fathered": 7.94e-07, - "ferocity": 7.94e-07, - "flagstaff": 7.94e-07, - "fluidity": 7.94e-07, - "follies": 7.94e-07, - "fortify": 7.94e-07, - "fouling": 7.94e-07, - "frazer": 7.94e-07, - "frills": 7.94e-07, - "frodo": 7.94e-07, - "fsb": 7.94e-07, - "gabriella": 7.94e-07, - "gagged": 7.94e-07, - "galactica": 7.94e-07, - "ganga": 7.94e-07, - "garret": 7.94e-07, - "gartner": 7.94e-07, - "gaunt": 7.94e-07, - "gilchrist": 7.94e-07, - "gilman": 7.94e-07, - "gms": 6.03e-07, - "gops": 7.94e-07, - "grapevine": 7.94e-07, - "grinds": 7.94e-07, - "groaning": 7.94e-07, - "grotto": 7.94e-07, - "groundhog": 7.94e-07, - "gsa": 7.94e-07, - "guerilla": 7.94e-07, - "gwent": 7.94e-07, - "habeas": 7.94e-07, - "hain": 7.94e-07, - "hairless": 7.94e-07, - "hamm": 7.94e-07, - "healey": 7.94e-07, - "heave": 7.94e-07, - "hellfire": 7.94e-07, - "highlander": 7.94e-07, - "hilt": 7.94e-07, - "hinterland": 7.94e-07, - "hoh": 7.94e-07, - "holliday": 7.94e-07, - "homely": 7.94e-07, - "humphries": 7.94e-07, - "ibs": 7.94e-07, - "idlib": 7.94e-07, - "ignacio": 7.94e-07, - "inbred": 7.94e-07, - "incase": 7.94e-07, - "inclusions": 7.94e-07, - "indescribable": 7.94e-07, - "indoctrination": 7.94e-07, - "inductive": 7.94e-07, - "inevitability": 7.94e-07, - "infatuated": 7.94e-07, - "infatuation": 7.94e-07, - "infighting": 7.94e-07, - "infra": 7.94e-07, - "infraction": 7.94e-07, - "inhabiting": 7.94e-07, - "inkling": 7.94e-07, - "innuendo": 7.94e-07, - "insecticide": 7.94e-07, - "instantaneously": 7.94e-07, - "interchangeably": 7.94e-07, - "interfaith": 7.94e-07, - "interrogate": 7.94e-07, - "introspective": 7.94e-07, - "itu": 7.94e-07, - "javelin": 7.94e-07, - "jenn": 7.94e-07, - "joplin": 7.94e-07, - "juanita": 7.94e-07, - "juarez": 7.94e-07, - "judea": 7.94e-07, - "kazan": 7.94e-07, - "ketamine": 7.94e-07, - "kinney": 7.94e-07, - "klay": 7.94e-07, - "klingon": 7.94e-07, - "knoll": 7.94e-07, - "kurtz": 7.94e-07, - "laila": 7.94e-07, - "landlady": 7.94e-07, - "larceny": 7.94e-07, - "lavatory": 7.94e-07, - "leanings": 7.94e-07, - "leavenworth": 7.94e-07, - "leos": 2.75e-07, - "ligands": 7.94e-07, - "lingered": 7.94e-07, - "linings": 7.94e-07, - "loa": 7.94e-07, - "locales": 7.94e-07, - "lourdes": 7.94e-07, - "lucio": 7.94e-07, - "luffy": 7.94e-07, - "luminosity": 7.94e-07, - "luo": 7.94e-07, - "lw": 7.94e-07, - "magpie": 7.94e-07, - "maoist": 7.94e-07, - "masjid": 7.94e-07, - "massimo": 7.94e-07, - "materialized": 7.94e-07, - "matrimonial": 7.94e-07, - "maul": 7.94e-07, - "mayne": 7.94e-07, - "mcknight": 7.94e-07, - "meandering": 7.94e-07, - "melbournes": 7.94e-07, - "mendez": 7.94e-07, - "menstruation": 7.94e-07, - "messianic": 7.94e-07, - "metering": 7.94e-07, - "michaela": 7.94e-07, - "minimalism": 7.94e-07, - "misgivings": 7.94e-07, - "misogynist": 7.94e-07, - "modalities": 7.94e-07, - "motels": 7.94e-07, - "motivator": 7.94e-07, - "mts": 7.94e-07, - "mulch": 7.94e-07, - "musket": 7.94e-07, - "nader": 7.94e-07, - "nance": 7.94e-07, - "navi": 2.19e-07, - "neednt": 7.94e-07, - "nestor": 7.94e-07, - "nether": 7.94e-07, - "neuer": 7.94e-07, - "newtons": 2.04e-07, - "ngc": 7.94e-07, - "nintendos": 7.94e-07, - "nourish": 7.94e-07, - "nuh": 7.94e-07, - "numbing": 7.94e-07, - "nutritionist": 7.94e-07, - "oat": 7.94e-07, - "obscenity": 7.94e-07, - "obsess": 7.94e-07, - "ohhhh": 7.94e-07, - "onlookers": 7.94e-07, - "orator": 7.94e-07, - "oscillations": 7.94e-07, - "outweighed": 7.94e-07, - "ove": 7.94e-07, - "overhauled": 7.94e-07, - "overpaid": 7.94e-07, - "oxen": 7.94e-07, - "palais": 7.94e-07, - "palmerston": 7.94e-07, - "papyrus": 7.94e-07, - "patrolled": 7.94e-07, - "patties": 7.94e-07, - "pemberton": 7.94e-07, - "pennington": 7.94e-07, - "perpetuity": 7.94e-07, - "philipp": 7.94e-07, - "philo": 7.94e-07, - "phineas": 7.94e-07, - "pho": 7.94e-07, - "platelet": 7.94e-07, - "pliers": 7.94e-07, - "pluralism": 7.94e-07, - "polynesian": 7.94e-07, - "pooja": 7.94e-07, - "portability": 7.94e-07, - "posturing": 7.94e-07, - "pouches": 7.94e-07, - "pq": 7.94e-07, - "predation": 7.94e-07, - "preheat": 7.94e-07, - "prev": 7.94e-07, - "pringle": 7.94e-07, - "procter": 7.94e-07, - "pronouncing": 7.94e-07, - "propagating": 7.94e-07, - "prospered": 7.94e-07, - "protectorate": 7.94e-07, - "psychopathic": 7.94e-07, - "puffed": 7.94e-07, - "quarterfinal": 7.94e-07, - "randomness": 7.94e-07, - "recitation": 7.94e-07, - "reconsidered": 7.94e-07, - "rectal": 7.94e-07, - "recursive": 7.94e-07, - "reevaluate": 7.94e-07, - "renaming": 7.94e-07, - "reprimand": 7.94e-07, - "rerun": 7.94e-07, - "reverting": 7.94e-07, - "riddance": 7.94e-07, - "rk": 7.94e-07, - "ruthlessly": 7.94e-07, - "sakes": 7.94e-07, - "satchel": 7.94e-07, - "saucy": 7.94e-07, - "schalke": 7.94e-07, - "scorsese": 7.94e-07, - "scr": 7.94e-07, - "sculptural": 7.94e-07, - "septum": 7.94e-07, - "servo": 7.94e-07, - "shaws": 8.71e-08, - "shears": 7.94e-07, - "shemale": 7.94e-07, - "shiloh": 7.94e-07, - "shrank": 7.94e-07, - "shyness": 7.94e-07, - "slimmer": 7.94e-07, - "snub": 7.94e-07, - "sobering": 7.94e-07, - "soyuz": 7.94e-07, - "spandex": 7.94e-07, - "spanked": 7.94e-07, - "sparkles": 7.94e-07, - "spew": 7.94e-07, - "spieth": 7.94e-07, - "sportswear": 7.94e-07, - "squeak": 7.94e-07, - "srinagar": 7.94e-07, - "staking": 7.94e-07, - "steakhouse": 7.94e-07, - "steers": 7.94e-07, - "stratigraphic": 7.94e-07, - "stratosphere": 7.94e-07, - "stucco": 7.94e-07, - "suave": 7.94e-07, - "subcontractors": 7.94e-07, - "succinct": 7.94e-07, - "superficially": 7.94e-07, - "sweetener": 7.94e-07, - "syncing": 7.94e-07, - "tamar": 7.94e-07, - "taxonomic": 7.94e-07, - "telltale": 7.94e-07, - "tem": 7.94e-07, - "tennyson": 7.94e-07, - "teslas": 8.71e-08, - "testimonials": 7.94e-07, - "thanos": 7.94e-07, - "thisll": 7.94e-07, - "thoughtless": 7.94e-07, - "thrower": 7.94e-07, - "thud": 7.94e-07, - "tibia": 7.94e-07, - "tims": 3.09e-07, - "titular": 7.94e-07, - "toads": 8.91e-08, - "tok": 7.94e-07, - "torrential": 7.94e-07, - "trad": 7.94e-07, - "trashing": 7.94e-07, - "treading": 7.94e-07, - "trotting": 7.94e-07, - "tulane": 7.94e-07, - "tunneling": 7.94e-07, - "uma": 7.94e-07, - "unitarian": 7.94e-07, - "usp": 7.94e-07, - "valence": 7.94e-07, - "ventilated": 7.94e-07, - "villager": 7.94e-07, - "vincents": 1e-07, - "virtuoso": 7.94e-07, - "vos": 7.94e-07, - "wail": 7.94e-07, - "watertown": 7.94e-07, - "wedged": 7.94e-07, - "welder": 7.94e-07, - "westlake": 7.94e-07, - "wetting": 7.94e-07, - "wg": 7.94e-07, - "whitening": 7.94e-07, - "whitewater": 7.94e-07, - "whiz": 7.94e-07, - "wilds": 1.48e-07, - "wingman": 7.94e-07, - "witherspoon": 7.94e-07, - "wolverines": 1.29e-07, - "woodbury": 7.94e-07, - "woodford": 7.94e-07, - "woodruff": 7.94e-07, - "worshiped": 7.94e-07, - "xenon": 7.94e-07, - "zo": 7.94e-07, - "abnormality": 7.76e-07, - "acme": 7.76e-07, - "acta": 7.76e-07, - "addendum": 7.76e-07, - "adhesives": 7.76e-07, - "adsorption": 7.76e-07, - "affront": 7.76e-07, - "afoot": 7.76e-07, - "agri": 7.76e-07, - "alla": 7.76e-07, - "alludes": 7.76e-07, - "alms": 7.76e-07, - "altars": 7.76e-07, - "alternates": 7.76e-07, - "amenable": 7.76e-07, - "amity": 7.76e-07, - "amt": 7.76e-07, - "amys": 7.76e-07, - "annas": 1.55e-07, - "annotation": 7.76e-07, - "anthonys": 7.76e-07, - "antibacterial": 7.76e-07, - "antoni": 7.76e-07, - "apprenticeships": 7.76e-07, - "argumentative": 7.76e-07, - "arne": 7.76e-07, - "artsy": 7.76e-07, - "assailants": 7.76e-07, - "asymptomatic": 7.76e-07, - "atherton": 7.76e-07, - "atmospheres": 5.37e-08, - "attila": 7.76e-07, - "authorizes": 7.76e-07, - "avril": 7.76e-07, - "baccalaureate": 7.76e-07, - "bala": 7.76e-07, - "balmain": 7.76e-07, - "barcode": 7.76e-07, - "barra": 7.76e-07, - "bearable": 7.76e-07, - "beehive": 7.76e-07, - "beltway": 7.76e-07, - "bering": 7.76e-07, - "bianchi": 7.76e-07, - "biosphere": 7.76e-07, - "blackman": 7.76e-07, - "bloch": 7.76e-07, - "bodybuilder": 7.76e-07, - "bosco": 7.76e-07, - "botanist": 7.76e-07, - "bottomed": 7.76e-07, - "boutiques": 7.76e-07, - "brownsville": 7.76e-07, - "caches": 7.76e-07, - "calmness": 7.76e-07, - "canny": 7.76e-07, - "cartons": 7.76e-07, - "cassettes": 7.76e-07, - "castile": 7.76e-07, - "caveman": 7.76e-07, - "centimeter": 7.76e-07, - "cet": 7.76e-07, - "chairwoman": 7.76e-07, - "characterisation": 7.76e-07, - "checkered": 7.76e-07, - "cheekbones": 7.76e-07, - "chengdu": 7.76e-07, - "cias": 7.76e-07, - "cilantro": 7.76e-07, - "circumcised": 7.76e-07, - "cit": 7.76e-07, - "civics": 1.55e-08, - "clamped": 7.76e-07, - "claps": 7.76e-07, - "clementine": 7.76e-07, - "clipboard": 7.76e-07, - "compensatory": 7.76e-07, - "concedes": 7.76e-07, - "conceptions": 7.76e-07, - "confessor": 7.76e-07, - "connoisseur": 7.76e-07, - "contemplative": 7.76e-07, - "convocation": 7.76e-07, - "corrupting": 7.76e-07, - "countermeasures": 7.76e-07, - "crosse": 7.76e-07, - "culpable": 7.76e-07, - "dag": 7.76e-07, - "damsel": 7.76e-07, - "daze": 7.76e-07, - "debugging": 7.76e-07, - "deg": 7.76e-07, - "deliciously": 7.76e-07, - "dewitt": 7.76e-07, - "dickey": 7.76e-07, - "diocesan": 7.76e-07, - "disputing": 7.76e-07, - "distorting": 7.76e-07, - "disused": 7.76e-07, - "divination": 7.76e-07, - "doggo": 7.76e-07, - "dol": 7.76e-07, - "doolittle": 7.76e-07, - "douchebag": 7.76e-07, - "downsizing": 7.76e-07, - "dprk": 7.76e-07, - "drunkenness": 7.76e-07, - "dumas": 7.76e-07, - "dykes": 7.76e-07, - "eastbourne": 7.76e-07, - "ebenezer": 7.76e-07, - "ecm": 7.76e-07, - "emigrate": 7.76e-07, - "emulsion": 7.76e-07, - "epistemology": 7.76e-07, - "erick": 7.76e-07, - "esters": 7.76e-07, - "euphrates": 7.76e-07, - "evacuating": 7.76e-07, - "exorcism": 7.76e-07, - "fabled": 7.76e-07, - "fabricate": 7.76e-07, - "fatherhood": 7.76e-07, - "favre": 7.76e-07, - "fein": 7.76e-07, - "fem": 7.76e-07, - "femoral": 7.76e-07, - "ferreira": 7.76e-07, - "feuds": 7.76e-07, - "fijian": 7.76e-07, - "filibuster": 7.76e-07, - "fillings": 7.76e-07, - "fillmore": 7.76e-07, - "finalize": 7.76e-07, - "financiers": 7.76e-07, - "flicking": 7.76e-07, - "flourishes": 7.76e-07, - "fluctuation": 7.76e-07, - "foia": 7.76e-07, - "fraudulently": 7.76e-07, - "fumbles": 7.76e-07, - "gander": 7.76e-07, - "gauze": 7.76e-07, - "geometrical": 7.76e-07, - "ghoul": 7.76e-07, - "giggled": 7.76e-07, - "gimmicks": 7.76e-07, - "goebbels": 7.76e-07, - "golan": 7.76e-07, - "grandstand": 7.76e-07, - "grazed": 7.76e-07, - "grumbling": 7.76e-07, - "guelph": 7.76e-07, - "guitarists": 5.62e-08, - "hales": 1.62e-07, - "hallucination": 7.76e-07, - "hamill": 7.76e-07, - "hamza": 7.76e-07, - "hcl": 7.76e-07, - "heaton": 7.76e-07, - "heeled": 7.76e-07, - "helms": 1.17e-07, - "hibernian": 7.76e-07, - "hoi": 7.76e-07, - "hovered": 7.76e-07, - "hulls": 2.29e-07, - "huns": 7.76e-07, - "hutchins": 7.76e-07, - "hydrophobic": 7.76e-07, - "immaterial": 7.76e-07, - "imprinted": 7.76e-07, - "industrialists": 7.76e-07, - "inefficiency": 7.76e-07, - "inflationary": 7.76e-07, - "inflexible": 7.76e-07, - "inflow": 7.76e-07, - "inglis": 7.76e-07, - "intercom": 7.76e-07, - "internationale": 7.76e-07, - "intersecting": 7.76e-07, - "intrigues": 7.76e-07, - "invalidated": 7.76e-07, - "inwards": 7.76e-07, - "iw": 7.76e-07, - "jacking": 7.76e-07, - "jamieson": 7.76e-07, - "jem": 7.76e-07, - "jihadi": 7.76e-07, - "justifications": 7.76e-07, - "keanu": 7.76e-07, - "kenney": 7.76e-07, - "keyed": 7.76e-07, - "knighthood": 7.76e-07, - "kryptonite": 7.76e-07, - "laborer": 7.76e-07, - "lamenting": 7.76e-07, - "lefties": 7.76e-07, - "lengthened": 7.76e-07, - "levis": 3.98e-07, - "lifesaving": 7.76e-07, - "lire": 7.76e-07, - "lnp": 7.76e-07, - "lovecraft": 7.76e-07, - "lst": 7.76e-07, - "lucinda": 7.76e-07, - "lula": 7.76e-07, - "machinations": 7.76e-07, - "maha": 7.76e-07, - "mangrove": 7.76e-07, - "marmalade": 7.76e-07, - "marseilles": 5.25e-08, - "masala": 7.76e-07, - "masts": 7.76e-07, - "maura": 7.76e-07, - "maxs": 7.76e-07, - "mecha": 7.76e-07, - "metcalf": 7.76e-07, - "militarys": 7.76e-07, - "milled": 7.76e-07, - "miocene": 7.76e-07, - "mirren": 7.76e-07, - "mirza": 7.76e-07, - "mississauga": 7.76e-07, - "moderating": 7.76e-07, - "modifier": 7.76e-07, - "molesting": 7.76e-07, - "moored": 7.76e-07, - "naturalization": 7.76e-07, - "nene": 7.76e-07, - "nerf": 7.76e-07, - "norways": 7.76e-07, - "numbness": 7.76e-07, - "nunn": 7.76e-07, - "otoole": 7.76e-07, - "oar": 7.76e-07, - "objecting": 7.76e-07, - "occidental": 7.76e-07, - "oozing": 7.76e-07, - "opiate": 7.76e-07, - "ordinated": 7.76e-07, - "osprey": 7.76e-07, - "outscored": 7.76e-07, - "overheated": 7.76e-07, - "paddles": 7.76e-07, - "panes": 7.76e-07, - "patten": 7.76e-07, - "pattinson": 7.76e-07, - "pelt": 7.76e-07, - "pennant": 7.76e-07, - "perfectionist": 7.76e-07, - "phantoms": 7.94e-08, - "pickett": 7.76e-07, - "pitts": 3.31e-07, - "playwrights": 7.59e-08, - "poirot": 7.76e-07, - "polands": 7.76e-07, - "pomona": 7.76e-07, - "ponce": 7.76e-07, - "poppies": 7.76e-07, - "powys": 7.76e-07, - "praxis": 7.76e-07, - "preaches": 7.76e-07, - "primes": 1.12e-07, - "priming": 7.76e-07, - "princely": 7.76e-07, - "profited": 7.76e-07, - "psoriasis": 7.76e-07, - "putty": 7.76e-07, - "quench": 7.76e-07, - "radicalism": 7.76e-07, - "radon": 7.76e-07, - "ramping": 7.76e-07, - "rationalize": 7.76e-07, - "reactivity": 7.76e-07, - "reassignment": 7.76e-07, - "rebrand": 7.76e-07, - "relieves": 7.76e-07, - "rennie": 7.76e-07, - "repeater": 7.76e-07, - "reprisals": 7.76e-07, - "reruns": 7.76e-07, - "retardation": 7.76e-07, - "retards": 7.76e-07, - "retort": 7.76e-07, - "revitalization": 7.76e-07, - "rework": 7.76e-07, - "reworking": 7.76e-07, - "rudely": 7.76e-07, - "runes": 7.76e-07, - "sacha": 7.76e-07, - "saddles": 7.76e-07, - "sanctuaries": 7.76e-07, - "saracens": 7.76e-07, - "sawmill": 7.76e-07, - "sbc": 7.76e-07, - "scribes": 7.76e-07, - "selina": 7.76e-07, - "sewed": 7.76e-07, - "sheltering": 7.76e-07, - "shogun": 7.76e-07, - "shoutout": 7.76e-07, - "showings": 7.76e-07, - "shrinkage": 7.76e-07, - "skeptic": 7.76e-07, - "slacks": 7.76e-07, - "sleeveless": 7.76e-07, - "smalls": 9.12e-08, - "smelting": 7.76e-07, - "snell": 7.76e-07, - "snowstorm": 7.76e-07, - "socialite": 7.76e-07, - "somme": 7.76e-07, - "southerly": 7.76e-07, - "spectrometer": 7.76e-07, - "spouting": 7.76e-07, - "sprague": 7.76e-07, - "squandered": 7.76e-07, - "sterilized": 7.76e-07, - "strapping": 7.76e-07, - "stuns": 7.76e-07, - "subspace": 7.76e-07, - "subsurface": 7.76e-07, - "superstructure": 7.76e-07, - "surnames": 7.76e-07, - "sustains": 7.76e-07, - "sweeper": 7.76e-07, - "swish": 7.76e-07, - "sympathizers": 7.76e-07, - "synced": 7.76e-07, - "tabloids": 7.76e-07, - "tamper": 7.76e-07, - "tampon": 7.76e-07, - "telangana": 7.76e-07, - "telephony": 7.76e-07, - "telford": 7.76e-07, - "tenerife": 7.76e-07, - "thad": 7.76e-07, - "thickened": 7.76e-07, - "timberwolves": 7.76e-07, - "tms": 7.76e-07, - "toffee": 7.76e-07, - "tomahawk": 7.76e-07, - "tomlin": 7.76e-07, - "torched": 7.76e-07, - "torre": 7.76e-07, - "torrey": 7.76e-07, - "transactional": 7.76e-07, - "transcendence": 7.76e-07, - "transgression": 7.76e-07, - "trappings": 7.76e-07, - "triage": 7.76e-07, - "ulterior": 7.76e-07, - "unambiguous": 7.76e-07, - "undertakings": 7.76e-07, - "undetermined": 7.76e-07, - "undies": 7.76e-07, - "undulating": 7.76e-07, - "unfettered": 7.76e-07, - "unpacking": 7.76e-07, - "usernames": 7.76e-07, - "venison": 7.76e-07, - "veranda": 7.76e-07, - "verdicts": 7.76e-07, - "veterinarians": 7.76e-07, - "vn": 7.76e-07, - "walpole": 7.76e-07, - "wasserman": 7.76e-07, - "wessex": 7.76e-07, - "westmoreland": 7.76e-07, - "whiny": 7.76e-07, - "whitby": 7.76e-07, - "whitley": 7.76e-07, - "wth": 7.76e-07, - "xt": 7.76e-07, - "xxxx": 7.76e-07, - "yamamoto": 7.76e-07, - "ys": 1.91e-07, - "zaire": 7.76e-07, - "zheng": 7.76e-07, - "zine": 7.76e-07, - "accumulates": 7.59e-07, - "adamson": 7.59e-07, - "adapts": 7.59e-07, - "afterthought": 7.59e-07, - "aida": 7.59e-07, - "airbag": 7.59e-07, - "airman": 7.59e-07, - "airship": 7.59e-07, - "aki": 7.59e-07, - "aligns": 7.59e-07, - "alligators": 7.59e-07, - "alr": 7.59e-07, - "amigos": 7.59e-07, - "animators": 7.59e-07, - "annan": 7.59e-07, - "annihilate": 7.59e-07, - "appointee": 7.59e-07, - "archetypal": 7.59e-07, - "artful": 7.59e-07, - "ascendancy": 7.59e-07, - "asha": 7.59e-07, - "assessor": 7.59e-07, - "asymmetry": 7.59e-07, - "asynchronous": 7.59e-07, - "ati": 7.59e-07, - "attuned": 7.59e-07, - "austins": 6.61e-08, - "ayers": 7.59e-07, - "baal": 7.59e-07, - "baer": 7.59e-07, - "baffles": 7.59e-07, - "bahia": 7.59e-07, - "balotelli": 7.59e-07, - "banal": 7.59e-07, - "basking": 7.59e-07, - "baz": 7.59e-07, - "beattie": 7.59e-07, - "befitting": 7.59e-07, - "benched": 7.59e-07, - "blackface": 7.59e-07, - "bluish": 7.59e-07, - "boba": 7.59e-07, - "bombardier": 7.59e-07, - "boned": 7.59e-07, - "bookkeeper": 7.59e-07, - "booting": 7.59e-07, - "bountiful": 7.59e-07, - "boycotts": 7.59e-07, - "brimming": 7.59e-07, - "bub": 7.59e-07, - "bulldozer": 7.59e-07, - "byers": 7.59e-07, - "byrnes": 1.35e-07, - "cabernet": 7.59e-07, - "calico": 7.59e-07, - "camus": 7.59e-07, - "canoeing": 7.59e-07, - "canvassing": 7.59e-07, - "capillary": 7.59e-07, - "carols": 3.16e-07, - "casanova": 7.59e-07, - "categorical": 7.59e-07, - "ccd": 7.59e-07, - "chariots": 7.59e-07, - "charlemagne": 7.59e-07, - "checkup": 7.59e-07, - "chieftain": 7.59e-07, - "chisholm": 7.59e-07, - "christening": 7.59e-07, - "chs": 7.59e-07, - "cinematographer": 7.59e-07, - "cirrhosis": 7.59e-07, - "cla": 7.59e-07, - "cladding": 7.59e-07, - "clapton": 7.59e-07, - "cle": 7.59e-07, - "cleats": 7.59e-07, - "clemente": 7.59e-07, - "clings": 7.59e-07, - "clingy": 7.59e-07, - "clough": 7.59e-07, - "coburn": 7.59e-07, - "codeine": 7.59e-07, - "coeur": 7.59e-07, - "colitis": 7.59e-07, - "combative": 7.59e-07, - "conceited": 7.59e-07, - "connell": 7.59e-07, - "connery": 7.59e-07, - "consecration": 7.59e-07, - "conspicuously": 7.59e-07, - "coors": 7.59e-07, - "correa": 7.59e-07, - "counterattack": 7.59e-07, - "courted": 7.59e-07, - "cranked": 7.59e-07, - "crested": 7.59e-07, - "cro": 7.59e-07, - "cte": 7.59e-07, - "cto": 7.59e-07, - "curie": 7.59e-07, - "cuteness": 7.59e-07, - "daddies": 7.59e-07, - "darken": 7.59e-07, - "darlin": 7.59e-07, - "dba": 7.59e-07, - "dci": 7.59e-07, - "deane": 7.59e-07, - "debian": 7.59e-07, - "defaulted": 7.59e-07, - "defuse": 7.59e-07, - "deir": 7.59e-07, - "depositing": 7.59e-07, - "dermot": 7.59e-07, - "designating": 7.59e-07, - "devs": 1.35e-07, - "dilation": 7.59e-07, - "dios": 6.17e-08, - "directorial": 7.59e-07, - "dishonor": 7.59e-07, - "disintegrate": 7.59e-07, - "disjointed": 7.59e-07, - "disparaging": 7.59e-07, - "dissenters": 7.59e-07, - "divest": 7.59e-07, - "dodo": 7.59e-07, - "draconian": 7.59e-07, - "draymond": 7.59e-07, - "drosophila": 7.59e-07, - "drummers": 8.91e-08, - "duper": 7.59e-07, - "eerily": 7.59e-07, - "eine": 7.59e-07, - "electrochemical": 7.59e-07, - "embers": 7.59e-07, - "emotive": 7.59e-07, - "empirically": 7.59e-07, - "enforces": 7.59e-07, - "engels": 7.59e-07, - "entanglement": 7.59e-07, - "epsilon": 7.59e-07, - "esc": 7.59e-07, - "exs": 1.51e-07, - "expeditionary": 7.59e-07, - "falk": 7.59e-07, - "faqs": 7.59e-07, - "farrar": 7.59e-07, - "fec": 7.59e-07, - "federations": 3.8e-07, - "finns": 3.72e-07, - "firefight": 7.59e-07, - "firestone": 7.59e-07, - "firstborn": 7.59e-07, - "flees": 7.59e-07, - "flowery": 7.59e-07, - "foss": 7.59e-07, - "frock": 7.59e-07, - "gai": 7.59e-07, - "gamecube": 7.59e-07, - "gens": 4.9e-08, - "gerber": 7.59e-07, - "glutamate": 7.59e-07, - "goblet": 7.59e-07, - "greased": 7.59e-07, - "grimsby": 7.59e-07, - "groupon": 7.59e-07, - "gts": 1.07e-07, - "guilford": 7.59e-07, - "gyro": 7.59e-07, - "habib": 7.59e-07, - "handsomely": 7.59e-07, - "hapless": 7.59e-07, - "harnessing": 7.59e-07, - "hidalgo": 7.59e-07, - "hissing": 7.59e-07, - "hitched": 7.59e-07, - "humanistic": 7.59e-07, - "hurray": 7.59e-07, - "iconography": 7.59e-07, - "igbo": 7.59e-07, - "impervious": 7.59e-07, - "implausible": 7.59e-07, - "imposter": 7.59e-07, - "incurring": 7.59e-07, - "indeterminate": 7.59e-07, - "infidels": 7.59e-07, - "inflection": 7.59e-07, - "innocently": 7.59e-07, - "inroads": 7.59e-07, - "intractable": 7.59e-07, - "irb": 7.59e-07, - "jabs": 7.59e-07, - "jamison": 7.59e-07, - "janelle": 7.59e-07, - "jh": 7.59e-07, - "jimmys": 7.59e-07, - "kardashians": 4.47e-07, - "katya": 7.59e-07, - "kauai": 7.59e-07, - "kenyans": 7.59e-07, - "kickboxing": 7.59e-07, - "kilt": 7.59e-07, - "kirkpatrick": 7.59e-07, - "kona": 7.59e-07, - "kubrick": 7.59e-07, - "landscaped": 7.59e-07, - "leahy": 7.59e-07, - "leverkusen": 7.59e-07, - "lifesaver": 7.59e-07, - "linton": 7.59e-07, - "litany": 7.59e-07, - "localised": 7.59e-07, - "locket": 7.59e-07, - "locomotion": 7.59e-07, - "lott": 7.59e-07, - "lounging": 7.59e-07, - "lrt": 7.59e-07, - "lumia": 7.59e-07, - "lupe": 7.59e-07, - "macklemore": 7.59e-07, - "madre": 7.59e-07, - "mailman": 7.59e-07, - "manoeuvres": 7.59e-07, - "manus": 6.92e-08, - "marksman": 7.59e-07, - "maroons": 7.59e-07, - "maru": 7.59e-07, - "mathis": 7.59e-07, - "matisse": 7.59e-07, - "maven": 7.59e-07, - "mavs": 7.59e-07, - "mbps": 7.59e-07, - "mcfarland": 7.59e-07, - "mcfarlane": 7.59e-07, - "messrs": 7.59e-07, - "mikael": 7.59e-07, - "milliseconds": 7.59e-07, - "minimizes": 7.59e-07, - "mittens": 7.59e-07, - "monterrey": 7.59e-07, - "montoya": 7.59e-07, - "mossad": 7.59e-07, - "mourned": 7.59e-07, - "mourners": 7.59e-07, - "mpc": 7.59e-07, - "msrp": 7.59e-07, - "munching": 7.59e-07, - "myron": 7.59e-07, - "nagoya": 7.59e-07, - "nappy": 7.59e-07, - "nbl": 7.59e-07, - "neanderthals": 7.59e-07, - "nears": 7.59e-07, - "neuter": 7.59e-07, - "newlyweds": 7.59e-07, - "nis": 5.62e-08, - "norwegians": 7.59e-07, - "nvm": 7.59e-07, - "nx": 7.59e-07, - "obj": 7.59e-07, - "och": 7.59e-07, - "odysseus": 7.59e-07, - "ofa": 7.59e-07, - "okcupid": 7.59e-07, - "omitting": 7.59e-07, - "ophelia": 7.59e-07, - "opinionated": 7.59e-07, - "oppress": 7.59e-07, - "originator": 7.59e-07, - "outfitters": 7.59e-07, - "overthrew": 7.59e-07, - "overton": 7.59e-07, - "oxidized": 7.59e-07, - "panhandle": 7.59e-07, - "paradoxical": 7.59e-07, - "paralysed": 7.59e-07, - "parched": 7.59e-07, - "passageway": 7.59e-07, - "pasty": 7.59e-07, - "pate": 7.59e-07, - "patently": 7.59e-07, - "pca": 7.59e-07, - "pecking": 7.59e-07, - "pertain": 7.59e-07, - "pesto": 7.59e-07, - "phys": 7.59e-07, - "plata": 7.59e-07, - "plowing": 7.59e-07, - "pmi": 7.59e-07, - "polity": 7.59e-07, - "pooped": 7.59e-07, - "porcupine": 7.59e-07, - "portia": 7.59e-07, - "pps": 5.89e-08, - "prides": 1.17e-07, - "primacy": 7.59e-07, - "prioritized": 7.59e-07, - "prioritizing": 7.59e-07, - "probed": 7.59e-07, - "psychosocial": 7.59e-07, - "pti": 7.59e-07, - "pulaski": 7.59e-07, - "pwc": 7.59e-07, - "radiological": 7.59e-07, - "rafts": 7.59e-07, - "reagent": 7.59e-07, - "rebranding": 7.59e-07, - "reckons": 7.59e-07, - "rectory": 7.59e-07, - "referendums": 7.59e-07, - "refractive": 7.59e-07, - "refractory": 7.59e-07, - "regrettably": 7.59e-07, - "reiner": 7.59e-07, - "reintroduced": 7.59e-07, - "reorganisation": 7.59e-07, - "reprieve": 7.59e-07, - "resupply": 7.59e-07, - "resurfaced": 7.59e-07, - "retraction": 7.59e-07, - "ricci": 7.59e-07, - "riser": 7.59e-07, - "ruckus": 7.59e-07, - "rutledge": 7.59e-07, - "safeway": 7.59e-07, - "saginaw": 7.59e-07, - "salami": 7.59e-07, - "sandwiched": 7.59e-07, - "sasuke": 7.59e-07, - "schmitt": 7.59e-07, - "scopes": 7.59e-07, - "screech": 7.59e-07, - "scripps": 7.59e-07, - "sculpting": 7.59e-07, - "seared": 7.59e-07, - "sergeants": 1.2e-07, - "shakespearean": 7.59e-07, - "shaven": 7.59e-07, - "shiro": 7.59e-07, - "shopkeeper": 7.59e-07, - "shortness": 7.59e-07, - "shrill": 7.59e-07, - "signalled": 7.59e-07, - "skits": 7.59e-07, - "skyrocketed": 7.59e-07, - "slanted": 7.59e-07, - "slits": 7.59e-07, - "snowed": 7.59e-07, - "sonnets": 7.59e-07, - "soulless": 7.59e-07, - "splitter": 7.59e-07, - "spook": 7.59e-07, - "stagecoach": 7.59e-07, - "statesmen": 7.59e-07, - "stork": 7.59e-07, - "strode": 7.59e-07, - "strongman": 7.59e-07, - "subjecting": 7.59e-07, - "subordinated": 7.59e-07, - "subpoenas": 7.59e-07, - "subside": 7.59e-07, - "subways": 1.17e-07, - "sul": 7.59e-07, - "supp": 7.59e-07, - "swoon": 7.59e-07, - "syringes": 7.59e-07, - "tactically": 7.59e-07, - "tallied": 7.59e-07, - "tartar": 7.59e-07, - "tavares": 7.59e-07, - "telepathy": 7.59e-07, - "terrance": 7.59e-07, - "thane": 7.59e-07, - "thesaurus": 7.59e-07, - "thorax": 7.59e-07, - "thrusters": 7.59e-07, - "tien": 7.59e-07, - "timings": 7.59e-07, - "tithe": 7.59e-07, - "tou": 7.59e-07, - "trina": 7.59e-07, - "tripp": 7.59e-07, - "trolled": 7.59e-07, - "ttc": 7.59e-07, - "tucking": 7.59e-07, - "tugging": 7.59e-07, - "twickenham": 7.59e-07, - "ubs": 7.59e-07, - "uga": 7.59e-07, - "unattainable": 7.59e-07, - "underpinning": 7.59e-07, - "unexplored": 7.59e-07, - "unilever": 7.59e-07, - "unsold": 7.59e-07, - "unsubstantiated": 7.59e-07, - "uptight": 7.59e-07, - "valentin": 7.59e-07, - "veda": 7.59e-07, - "virulent": 7.59e-07, - "vomited": 7.59e-07, - "waterfowl": 7.59e-07, - "wesson": 7.59e-07, - "widescreen": 7.59e-07, - "windmills": 7.59e-07, - "womanhood": 7.59e-07, - "worrisome": 7.59e-07, - "wort": 7.59e-07, - "wreaths": 7.59e-07, - "wy": 7.59e-07, - "xix": 7.59e-07, - "yorke": 7.59e-07, - "yuma": 7.59e-07, - "zealanders": 7.59e-07, - "ack": 7.41e-07, - "acronyms": 7.41e-07, - "adderall": 7.41e-07, - "admissible": 7.41e-07, - "airlift": 7.41e-07, - "aitken": 7.41e-07, - "alluvial": 7.41e-07, - "amarillo": 7.41e-07, - "amis": 5.37e-08, - "amyloid": 7.41e-07, - "annes": 1.51e-07, - "ansi": 7.41e-07, - "apical": 7.41e-07, - "apo": 7.41e-07, - "appetites": 7.41e-07, - "armpits": 7.41e-07, - "ascendant": 7.41e-07, - "attenborough": 7.41e-07, - "audiobooks": 7.41e-07, - "bartenders": 6.92e-08, - "barth": 7.41e-07, - "bashar": 7.41e-07, - "battering": 7.41e-07, - "battersea": 7.41e-07, - "bedfordshire": 7.41e-07, - "beecher": 7.41e-07, - "belgians": 7.41e-07, - "bimbo": 7.41e-07, - "blackmailed": 7.41e-07, - "blazed": 7.41e-07, - "blowjobs": 7.41e-07, - "blum": 7.41e-07, - "boarders": 7.41e-07, - "bongo": 7.41e-07, - "bootstrap": 7.41e-07, - "boswell": 7.41e-07, - "bouchard": 7.41e-07, - "bouquets": 7.41e-07, - "braddock": 7.41e-07, - "brahma": 7.41e-07, - "braver": 7.41e-07, - "brisket": 7.41e-07, - "buckeye": 7.41e-07, - "burnside": 7.41e-07, - "cac": 7.41e-07, - "cairn": 7.41e-07, - "callin": 7.41e-07, - "campo": 7.41e-07, - "cancun": 7.41e-07, - "cannonball": 7.41e-07, - "cappuccino": 7.41e-07, - "caricatures": 7.41e-07, - "ceasing": 7.41e-07, - "championing": 7.41e-07, - "chapels": 8.13e-08, - "chirping": 7.41e-07, - "circulatory": 7.41e-07, - "citrate": 7.41e-07, - "climactic": 7.41e-07, - "cloaked": 7.41e-07, - "clocking": 7.41e-07, - "clotting": 7.41e-07, - "cnet": 7.41e-07, - "commemorates": 7.41e-07, - "comstock": 7.41e-07, - "conjuring": 7.41e-07, - "consigned": 7.41e-07, - "constructors": 7.41e-07, - "cornelia": 7.41e-07, - "coups": 7.41e-07, - "cowgirl": 7.41e-07, - "cowl": 7.41e-07, - "crepe": 7.41e-07, - "crocs": 7.41e-07, - "culling": 7.41e-07, - "cycled": 7.41e-07, - "cypriot": 7.41e-07, - "danvers": 7.41e-07, - "darlene": 7.41e-07, - "dashes": 7.41e-07, - "daydreaming": 7.41e-07, - "decently": 7.41e-07, - "decentralization": 7.41e-07, - "decomposed": 7.41e-07, - "decorum": 7.41e-07, - "definately": 7.41e-07, - "deft": 7.41e-07, - "dehydrogenase": 7.41e-07, - "deirdre": 7.41e-07, - "destinys": 7.41e-07, - "detest": 7.41e-07, - "deuteronomy": 7.41e-07, - "devising": 7.41e-07, - "diabetics": 7.41e-07, - "digg": 7.41e-07, - "diodes": 7.41e-07, - "disband": 7.41e-07, - "discarding": 7.41e-07, - "discloses": 7.41e-07, - "dislocation": 7.41e-07, - "disrupts": 7.41e-07, - "distinguishable": 7.41e-07, - "drexel": 7.41e-07, - "duels": 7.41e-07, - "dwells": 7.41e-07, - "earls": 4.17e-07, - "earnestly": 7.41e-07, - "ecg": 7.41e-07, - "effecting": 7.41e-07, - "einsteins": 1e-07, - "electrifying": 7.41e-07, - "elisha": 7.41e-07, - "emblematic": 7.41e-07, - "emilys": 7.41e-07, - "emmet": 7.41e-07, - "englishmen": 7.41e-07, - "enslavement": 7.41e-07, - "entrust": 7.41e-07, - "enviable": 7.41e-07, - "epidemiological": 7.41e-07, - "epithet": 7.41e-07, - "equipments": 9.33e-08, - "espns": 7.41e-07, - "eww": 7.41e-07, - "fairmont": 7.41e-07, - "fairview": 7.41e-07, - "fiercest": 7.41e-07, - "firehouse": 7.41e-07, - "flailing": 7.41e-07, - "flaky": 7.41e-07, - "fleury": 7.41e-07, - "flotilla": 7.41e-07, - "followup": 7.41e-07, - "foolproof": 7.41e-07, - "footballing": 7.41e-07, - "forgetful": 7.41e-07, - "forgettable": 7.41e-07, - "forklift": 7.41e-07, - "freeways": 7.41e-07, - "gallantry": 7.41e-07, - "gamut": 7.41e-07, - "gash": 7.41e-07, - "gawker": 7.41e-07, - "gazelle": 7.41e-07, - "genotype": 7.41e-07, - "gentler": 7.41e-07, - "geronimo": 7.41e-07, - "gilead": 7.41e-07, - "girard": 7.41e-07, - "glistening": 7.41e-07, - "glycol": 7.41e-07, - "gopher": 7.41e-07, - "governess": 7.41e-07, - "grahams": 1.29e-07, - "gravitate": 7.41e-07, - "gregorio": 7.41e-07, - "grinch": 7.41e-07, - "grinned": 7.41e-07, - "guesthouse": 7.41e-07, - "gunfight": 7.41e-07, - "haifa": 7.41e-07, - "hams": 2.75e-07, - "hamsters": 7.41e-07, - "hander": 7.41e-07, - "harvester": 7.41e-07, - "hattie": 7.41e-07, - "heaped": 7.41e-07, - "heartburn": 7.41e-07, - "helmut": 7.41e-07, - "heroics": 7.41e-07, - "hesse": 7.41e-07, - "hickman": 7.41e-07, - "hillbilly": 7.41e-07, - "hla": 7.41e-07, - "hmrc": 7.41e-07, - "hollister": 7.41e-07, - "homeopathy": 7.41e-07, - "hongkong": 7.41e-07, - "honouring": 7.41e-07, - "huckabee": 7.41e-07, - "huntley": 7.41e-07, - "hustling": 7.41e-07, - "ica": 7.41e-07, - "imbecile": 7.41e-07, - "impeded": 7.41e-07, - "impersonation": 7.41e-07, - "impresses": 7.41e-07, - "imprison": 7.41e-07, - "inasmuch": 7.41e-07, - "indonesias": 7.41e-07, - "infiltrating": 7.41e-07, - "intensifying": 7.41e-07, - "intensively": 7.41e-07, - "intercultural": 7.41e-07, - "interrogating": 7.41e-07, - "interviewers": 6.46e-08, - "irvin": 7.41e-07, - "ischemic": 7.41e-07, - "jackal": 7.41e-07, - "jaeger": 7.41e-07, - "jasons": 7.41e-07, - "jee": 7.41e-07, - "jethro": 7.41e-07, - "jokers": 3.98e-07, - "jolla": 7.41e-07, - "joystick": 7.41e-07, - "kamikaze": 7.41e-07, - "karina": 7.41e-07, - "karlsson": 7.41e-07, - "kelp": 7.41e-07, - "kidman": 7.41e-07, - "kingfisher": 7.41e-07, - "kiwis": 5.89e-08, - "kjv": 7.41e-07, - "kmt": 7.41e-07, - "knotted": 7.41e-07, - "lackey": 7.41e-07, - "lain": 7.41e-07, - "laminate": 7.41e-07, - "landis": 7.41e-07, - "leeches": 7.41e-07, - "leek": 7.41e-07, - "leviticus": 7.41e-07, - "levitt": 7.41e-07, - "lifecycle": 7.41e-07, - "linguist": 7.41e-07, - "lms": 7.41e-07, - "lomax": 7.41e-07, - "lor": 7.41e-07, - "lorne": 7.41e-07, - "luring": 7.41e-07, - "lute": 7.41e-07, - "lx": 7.41e-07, - "macrophages": 7.41e-07, - "macros": 7.41e-07, - "madge": 7.41e-07, - "magee": 7.41e-07, - "magpies": 7.41e-07, - "makoto": 7.41e-07, - "mala": 7.41e-07, - "manley": 7.41e-07, - "marketplaces": 7.41e-07, - "marv": 7.41e-07, - "masquerading": 7.41e-07, - "mattel": 7.41e-07, - "mauritania": 7.41e-07, - "mavis": 7.41e-07, - "mchugh": 7.41e-07, - "meanest": 7.41e-07, - "meaningfully": 7.41e-07, - "meatball": 7.41e-07, - "medford": 7.41e-07, - "merino": 7.41e-07, - "mermaids": 8.13e-08, - "metastasis": 7.41e-07, - "microchip": 7.41e-07, - "mikel": 7.41e-07, - "mingled": 7.41e-07, - "mitzvah": 7.41e-07, - "mordor": 7.41e-07, - "mosaics": 7.41e-07, - "muddled": 7.41e-07, - "mumbling": 7.41e-07, - "nautilus": 7.41e-07, - "necked": 7.41e-07, - "nicht": 7.41e-07, - "nieto": 7.41e-07, - "nox": 7.41e-07, - "nymph": 7.41e-07, - "oceanography": 7.41e-07, - "oedipus": 7.41e-07, - "offsetting": 7.41e-07, - "omer": 7.41e-07, - "orpheus": 7.41e-07, - "oswego": 7.41e-07, - "paler": 7.41e-07, - "papaya": 7.41e-07, - "partisanship": 7.41e-07, - "peachy": 7.41e-07, - "pearly": 7.41e-07, - "pensioner": 7.41e-07, - "periscope": 7.41e-07, - "pernicious": 7.41e-07, - "perversion": 7.41e-07, - "phylogenetic": 7.41e-07, - "physiotherapy": 7.41e-07, - "pigmentation": 7.41e-07, - "pizzeria": 7.41e-07, - "populate": 7.41e-07, - "posthumously": 7.41e-07, - "pra": 7.41e-07, - "prawn": 7.41e-07, - "preamble": 7.41e-07, - "predates": 7.41e-07, - "preoccupation": 7.41e-07, - "prim": 7.41e-07, - "programmatic": 7.41e-07, - "propellers": 7.41e-07, - "pruitt": 7.41e-07, - "prying": 7.41e-07, - "ptolemy": 7.41e-07, - "pulsing": 7.41e-07, - "punisher": 7.41e-07, - "pur": 7.41e-07, - "puree": 7.41e-07, - "pyrenees": 7.41e-07, - "quetta": 7.41e-07, - "racketeering": 7.41e-07, - "radars": 5.01e-08, - "radford": 7.41e-07, - "rainier": 7.41e-07, - "rattlesnake": 7.41e-07, - "realignment": 7.41e-07, - "receptacle": 7.41e-07, - "regatta": 7.41e-07, - "regionals": 7.41e-07, - "regs": 7.41e-07, - "reliefs": 7.41e-07, - "remixed": 7.41e-07, - "remo": 7.41e-07, - "removals": 7.41e-07, - "reprisal": 7.41e-07, - "rescind": 7.41e-07, - "reshape": 7.41e-07, - "reshaping": 7.41e-07, - "revitalize": 7.41e-07, - "risotto": 7.41e-07, - "robinsons": 3.02e-07, - "roku": 7.41e-07, - "sadiq": 7.41e-07, - "sagittarius": 7.41e-07, - "samoan": 7.41e-07, - "sauvignon": 7.41e-07, - "savagery": 7.41e-07, - "sca": 7.41e-07, - "scorned": 7.41e-07, - "searchable": 7.41e-07, - "seething": 7.41e-07, - "sequenced": 7.41e-07, - "sequentially": 7.41e-07, - "shamrock": 7.41e-07, - "shearing": 7.41e-07, - "shelving": 7.41e-07, - "sheng": 7.41e-07, - "sifting": 7.41e-07, - "sighing": 7.41e-07, - "sina": 7.41e-07, - "siva": 7.41e-07, - "slog": 7.41e-07, - "smithfield": 7.41e-07, - "smut": 7.41e-07, - "soars": 7.41e-07, - "socialized": 7.41e-07, - "sop": 7.41e-07, - "spiraling": 7.41e-07, - "splice": 7.41e-07, - "sponsorships": 7.41e-07, - "spoonful": 7.41e-07, - "spousal": 7.41e-07, - "sps": 7.41e-08, - "statistician": 7.41e-07, - "stds": 1.45e-07, - "storefront": 7.41e-07, - "storeys": 7.41e-07, - "stroud": 7.41e-07, - "stubble": 7.41e-07, - "subsystem": 7.41e-07, - "suffocated": 7.41e-07, - "summarizing": 7.41e-07, - "supple": 7.41e-07, - "swahili": 7.41e-07, - "syndromes": 7.41e-07, - "synergies": 7.41e-07, - "tacked": 7.41e-07, - "talia": 7.41e-07, - "teague": 7.41e-07, - "tfl": 7.41e-07, - "tipsy": 7.41e-07, - "tirade": 7.41e-07, - "tompkins": 7.41e-07, - "topaz": 7.41e-07, - "torino": 7.41e-07, - "trickster": 7.41e-07, - "trinkets": 7.41e-07, - "triples": 7.41e-07, - "trisha": 7.41e-07, - "trotsky": 7.41e-07, - "turbocharged": 7.41e-07, - "turmeric": 7.41e-07, - "unchallenged": 7.41e-07, - "underestimating": 7.41e-07, - "undress": 7.41e-07, - "uninteresting": 7.41e-07, - "unraveling": 7.41e-07, - "vandalized": 7.41e-07, - "veneration": 7.41e-07, - "vigilantes": 7.41e-07, - "vigour": 7.41e-07, - "vistas": 7.41e-07, - "vitriol": 7.41e-07, - "vue": 7.41e-07, - "wagging": 7.41e-07, - "waned": 7.41e-07, - "warrens": 1.7e-07, - "welt": 7.41e-07, - "wer": 6.31e-08, - "whatre": 7.41e-07, - "wheezing": 7.41e-07, - "whistleblowers": 7.41e-07, - "winded": 7.41e-07, - "wisest": 7.41e-07, - "wop": 7.41e-07, - "wordsworth": 7.41e-07, - "yaw": 7.41e-07, - "zi": 7.41e-07, - "zia": 7.41e-07, - "academys": 7.24e-07, - "accidently": 7.24e-07, - "accusers": 5.89e-08, - "adaptability": 7.24e-07, - "adapters": 7.24e-07, - "adheres": 7.24e-07, - "aetna": 7.24e-07, - "aggressiveness": 7.24e-07, - "ahold": 7.24e-07, - "alamos": 7.24e-07, - "alana": 7.24e-07, - "ales": 7.24e-07, - "alexanders": 6.92e-08, - "allegorical": 7.24e-07, - "amigo": 7.24e-07, - "anode": 7.24e-07, - "apparition": 7.24e-07, - "appetizer": 7.24e-07, - "arafat": 7.24e-07, - "argon": 7.24e-07, - "arrowhead": 7.24e-07, - "asic": 7.24e-07, - "asm": 7.24e-07, - "astonishingly": 7.24e-07, - "astonishment": 7.24e-07, - "atone": 7.24e-07, - "backend": 7.24e-07, - "backhand": 7.24e-07, - "bangla": 7.24e-07, - "bankroll": 7.24e-07, - "barbra": 7.24e-07, - "barnet": 7.24e-07, - "barristers": 7.24e-07, - "belittle": 7.24e-07, - "beryllium": 7.24e-07, - "betrothed": 7.24e-07, - "bidens": 1.66e-07, - "billiard": 7.24e-07, - "bloodthirsty": 7.24e-07, - "blumenthal": 7.24e-07, - "boisterous": 7.24e-07, - "bonneville": 7.24e-07, - "booksellers": 7.24e-07, - "bootcamp": 7.24e-07, - "bradys": 6.61e-08, - "bri": 7.24e-07, - "briar": 7.24e-07, - "brightened": 7.24e-07, - "broderick": 7.24e-07, - "broughton": 7.24e-07, - "buckled": 7.24e-07, - "burgh": 7.24e-07, - "cacao": 7.24e-07, - "cale": 7.24e-07, - "calypso": 7.24e-07, - "capacitance": 7.24e-07, - "caper": 7.24e-07, - "caprice": 7.24e-07, - "carer": 7.24e-07, - "carlsbad": 7.24e-07, - "carriageway": 7.24e-07, - "caspar": 7.24e-07, - "cbe": 7.24e-07, - "cede": 7.24e-07, - "ceres": 7.24e-07, - "chagrin": 7.24e-07, - "champlain": 7.24e-07, - "characterizing": 7.24e-07, - "chock": 7.24e-07, - "chronicled": 7.24e-07, - "clapham": 7.24e-07, - "clawed": 7.24e-07, - "coerce": 7.24e-07, - "coffey": 7.24e-07, - "combustible": 7.24e-07, - "comebacks": 7.24e-07, - "comer": 7.24e-07, - "cometh": 7.24e-07, - "complicates": 7.24e-07, - "complimenting": 7.24e-07, - "compositional": 7.24e-07, - "condenser": 7.24e-07, - "conglomerates": 7.24e-07, - "conjugate": 7.24e-07, - "conjured": 7.24e-07, - "coptic": 7.24e-07, - "cossacks": 7.24e-07, - "cpp": 7.24e-07, - "cutaneous": 7.24e-07, - "daenerys": 7.24e-07, - "dahlia": 7.24e-07, - "dalit": 7.24e-07, - "darlings": 1.1e-07, - "deandre": 7.24e-07, - "debug": 7.24e-07, - "decadence": 7.24e-07, - "decider": 7.24e-07, - "deconstruction": 7.24e-07, - "defamatory": 7.24e-07, - "depravity": 7.24e-07, - "depress": 7.24e-07, - "disheartening": 7.24e-07, - "dugan": 7.24e-07, - "dz": 7.24e-07, - "eavesdropping": 7.24e-07, - "eclipses": 7.24e-07, - "ecuadorian": 7.24e-07, - "edibles": 7.24e-07, - "eia": 7.24e-07, - "eldridge": 7.24e-07, - "enclaves": 7.24e-07, - "encroachment": 7.24e-07, - "equaliser": 7.24e-07, - "ervin": 7.24e-07, - "ese": 7.24e-07, - "etihad": 7.24e-07, - "euclid": 7.24e-07, - "evansville": 7.24e-07, - "exe": 7.24e-07, - "farrah": 7.24e-07, - "faves": 7.24e-07, - "felled": 7.24e-07, - "fentanyl": 7.24e-07, - "ferrara": 7.24e-07, - "fertiliser": 7.24e-07, - "finalised": 7.24e-07, - "finlay": 7.24e-07, - "fintech": 7.24e-07, - "fireflies": 7.24e-07, - "franklins": 8.32e-08, - "freebie": 7.24e-07, - "gaby": 7.24e-07, - "garda": 7.24e-07, - "garibaldi": 7.24e-07, - "garrick": 7.24e-07, - "geezer": 7.24e-07, - "geno": 7.24e-07, - "ghent": 7.24e-07, - "giggs": 7.24e-07, - "gilmour": 7.24e-07, - "givin": 7.24e-07, - "glassware": 7.24e-07, - "gleason": 7.24e-07, - "gmp": 7.24e-07, - "gooey": 7.24e-07, - "gottlieb": 7.24e-07, - "gutters": 7.24e-07, - "habitually": 7.24e-07, - "halts": 7.24e-07, - "harlequin": 7.24e-07, - "harwood": 7.24e-07, - "hatton": 7.24e-07, - "hav": 7.24e-07, - "hdtv": 7.24e-07, - "headgear": 7.24e-07, - "hearn": 7.24e-07, - "heathens": 7.24e-07, - "hemlock": 7.24e-07, - "henchmen": 7.24e-07, - "hep": 7.24e-07, - "hist": 7.24e-07, - "hokkaido": 7.24e-07, - "holm": 7.24e-07, - "honduran": 7.24e-07, - "hydraulics": 7.24e-07, - "hydrolysis": 7.24e-07, - "hydropower": 7.24e-07, - "hyman": 7.24e-07, - "hyperactivity": 7.24e-07, - "hyuk": 7.24e-07, - "ile": 7.24e-07, - "illiteracy": 7.24e-07, - "imac": 7.24e-07, - "incitement": 7.24e-07, - "inconsequential": 7.24e-07, - "indignant": 7.24e-07, - "infamy": 7.24e-07, - "infertile": 7.24e-07, - "infractions": 7.24e-07, - "injector": 7.24e-07, - "innes": 7.24e-07, - "insolvent": 7.24e-07, - "intergalactic": 7.24e-07, - "internalized": 7.24e-07, - "irregularly": 7.24e-07, - "itc": 7.24e-07, - "iterative": 7.24e-07, - "jacoby": 7.24e-07, - "jaya": 7.24e-07, - "jot": 7.24e-07, - "julianne": 7.24e-07, - "jurgen": 7.24e-07, - "kaur": 7.24e-07, - "kevins": 5.89e-08, - "kitties": 7.24e-07, - "klux": 7.24e-07, - "koko": 7.24e-07, - "krueger": 7.24e-07, - "leary": 7.24e-07, - "legumes": 7.24e-07, - "lengthening": 7.24e-07, - "lenox": 7.24e-07, - "lesotho": 7.24e-07, - "levinson": 7.24e-07, - "libre": 7.24e-07, - "lighthearted": 7.24e-07, - "littleton": 7.24e-07, - "lodgings": 7.24e-07, - "logitech": 7.24e-07, - "loma": 7.24e-07, - "lookup": 7.24e-07, - "loughborough": 7.24e-07, - "lounges": 7.24e-07, - "lupin": 7.24e-07, - "maharaj": 7.24e-07, - "marlow": 7.24e-07, - "marston": 7.24e-07, - "maximilian": 7.24e-07, - "meagre": 7.24e-07, - "meditative": 7.24e-07, - "mehdi": 7.24e-07, - "mentored": 7.24e-07, - "merced": 7.24e-07, - "metz": 7.24e-07, - "mics": 5.89e-08, - "middleman": 7.24e-07, - "mildew": 7.24e-07, - "mindedness": 7.24e-07, - "mingling": 7.24e-07, - "mishaps": 7.24e-07, - "moma": 7.24e-07, - "monologues": 7.24e-07, - "moritz": 7.24e-07, - "moulding": 7.24e-07, - "moussa": 7.24e-07, - "mufti": 7.24e-07, - "mughal": 7.24e-07, - "mukherjee": 7.24e-07, - "multivariate": 7.24e-07, - "mustnt": 7.24e-07, - "nadir": 7.24e-07, - "nara": 7.24e-07, - "neale": 7.24e-07, - "neutralized": 7.24e-07, - "nin": 7.24e-07, - "notepad": 7.24e-07, - "numerically": 7.24e-07, - "nutcracker": 7.24e-07, - "obs": 7.24e-07, - "odisha": 7.24e-07, - "okla": 7.24e-07, - "oled": 7.24e-07, - "oregons": 7.24e-07, - "osce": 7.24e-07, - "outboard": 7.24e-07, - "outlier": 7.24e-07, - "outweighs": 7.24e-07, - "pacs": 1.29e-07, - "paltry": 7.24e-07, - "parachutes": 7.24e-07, - "pars": 7.24e-07, - "parsing": 7.24e-07, - "pentecostal": 7.24e-07, - "peripherals": 7.24e-07, - "petitioner": 7.24e-07, - "pharisees": 7.24e-07, - "phils": 1.86e-07, - "pimps": 7.24e-07, - "pinkie": 7.24e-07, - "placer": 7.24e-07, - "plucking": 7.24e-07, - "plummer": 7.24e-07, - "pollute": 7.24e-07, - "potters": 7.08e-07, - "precede": 7.24e-07, - "precocious": 7.24e-07, - "preconceived": 7.24e-07, - "predictors": 7.24e-07, - "presumptuous": 7.24e-07, - "probabilistic": 7.24e-07, - "proms": 7.24e-07, - "pronto": 7.24e-07, - "provo": 7.24e-07, - "prs": 8.51e-08, - "publicize": 7.24e-07, - "purview": 7.24e-07, - "qantas": 7.24e-07, - "quicken": 7.24e-07, - "quicksilver": 7.24e-07, - "quince": 7.24e-07, - "racehorse": 7.24e-07, - "raheem": 7.24e-07, - "raked": 7.24e-07, - "ravioli": 7.24e-07, - "rawlings": 7.24e-07, - "razer": 7.24e-07, - "reagents": 7.24e-07, - "rebounded": 7.24e-07, - "redone": 7.24e-07, - "reston": 7.24e-07, - "revolutionized": 7.24e-07, - "rfid": 7.24e-07, - "ricans": 7.24e-07, - "rosalie": 7.24e-07, - "rove": 7.24e-07, - "rui": 7.24e-07, - "sadler": 7.24e-07, - "saitama": 7.24e-07, - "salvo": 7.24e-07, - "sauron": 7.24e-07, - "schuyler": 7.24e-07, - "scrapes": 7.24e-07, - "sdn": 7.24e-07, - "sei": 7.24e-07, - "seizes": 7.24e-07, - "shrieking": 7.24e-07, - "silences": 7.24e-07, - "silhouettes": 7.24e-07, - "simmering": 7.24e-07, - "sitcoms": 7.24e-07, - "siu": 7.24e-07, - "smears": 7.24e-07, - "smoothed": 7.24e-07, - "sodom": 7.24e-07, - "sofas": 7.24e-07, - "soi": 7.24e-07, - "solange": 7.24e-07, - "spatula": 7.24e-07, - "splicing": 7.24e-07, - "spreadsheets": 7.24e-07, - "squatters": 7.24e-07, - "steamers": 7.24e-07, - "stepdad": 7.24e-07, - "stipulates": 7.24e-07, - "sto": 7.24e-07, - "stockport": 7.24e-07, - "strangling": 7.24e-07, - "streamlining": 7.24e-07, - "stroked": 7.24e-07, - "subunits": 7.24e-07, - "suffocate": 7.24e-07, - "surat": 7.24e-07, - "suspends": 7.24e-07, - "tandy": 7.24e-07, - "tapas": 7.24e-07, - "tenement": 7.24e-07, - "tetanus": 7.24e-07, - "thatched": 7.24e-07, - "thon": 7.24e-07, - "thrifty": 7.24e-07, - "thrombosis": 7.24e-07, - "thunderbird": 7.24e-07, - "tiberius": 7.24e-07, - "tickles": 7.24e-07, - "tiling": 7.24e-07, - "tingle": 7.24e-07, - "townspeople": 7.24e-07, - "transvaal": 7.24e-07, - "treads": 7.24e-07, - "tricia": 7.24e-07, - "trippy": 7.24e-07, - "tryout": 7.24e-07, - "tuscaloosa": 7.24e-07, - "tyra": 7.24e-07, - "tyrosine": 7.24e-07, - "unbridled": 7.24e-07, - "undersea": 7.24e-07, - "unfiltered": 7.24e-07, - "unicode": 7.24e-07, - "unopposed": 7.24e-07, - "urs": 2.88e-08, - "vacationing": 7.24e-07, - "vamp": 7.24e-07, - "vassals": 7.24e-07, - "wanton": 7.24e-07, - "wedlock": 7.24e-07, - "welterweight": 7.24e-07, - "whiteboard": 7.24e-07, - "wholesaler": 7.24e-07, - "witted": 7.24e-07, - "woodside": 7.24e-07, - "wry": 7.24e-07, - "xc": 7.24e-07, - "xie": 7.24e-07, - "xyz": 7.24e-07, - "yasmin": 7.24e-07, - "yom": 7.24e-07, - "yon": 7.24e-07, - "zambian": 7.24e-07, - "ziegler": 7.24e-07, - "zimbabwean": 7.24e-07, - "aas": 1.41e-07, - "abominable": 7.08e-07, - "absolution": 7.08e-07, - "accomplishes": 7.08e-07, - "adequacy": 7.08e-07, - "adopters": 7.08e-07, - "aggie": 7.08e-07, - "ahmet": 7.08e-07, - "airplay": 7.08e-07, - "albrecht": 7.08e-07, - "amalgam": 7.08e-07, - "ambulatory": 7.08e-07, - "annulment": 7.08e-07, - "aoki": 7.08e-07, - "aramaic": 7.08e-07, - "arnie": 7.08e-07, - "articulating": 7.08e-07, - "asi": 7.08e-07, - "asif": 7.08e-07, - "askin": 7.08e-07, - "ato": 7.08e-07, - "atoll": 7.08e-07, - "awa": 7.08e-07, - "axioms": 7.08e-07, - "aztecs": 7.08e-07, - "babbling": 7.08e-07, - "bangers": 7.08e-07, - "bargained": 7.08e-07, - "barnabas": 7.08e-07, - "barrio": 7.08e-07, - "belleville": 7.08e-07, - "benzene": 7.08e-07, - "ber": 7.08e-07, - "bernhard": 7.08e-07, - "biennale": 7.08e-07, - "binghamton": 7.08e-07, - "blackish": 7.08e-07, - "blaise": 7.08e-07, - "blemish": 7.08e-07, - "bobbing": 7.08e-07, - "bogs": 7.08e-07, - "brainstorm": 7.08e-07, - "brevity": 7.08e-07, - "broadside": 7.08e-07, - "buckles": 7.08e-07, - "budd": 7.08e-07, - "burdensome": 7.08e-07, - "burley": 7.08e-07, - "buttered": 7.08e-07, - "cadmium": 7.08e-07, - "callaway": 7.08e-07, - "candida": 7.08e-07, - "carnivorous": 7.08e-07, - "cfc": 7.08e-07, - "characteristically": 7.08e-07, - "chasers": 7.08e-07, - "chf": 7.08e-07, - "chicano": 7.08e-07, - "chimera": 7.08e-07, - "chiropractor": 7.08e-07, - "chr": 7.08e-07, - "chromosomal": 7.08e-07, - "cic": 7.08e-07, - "cig": 7.08e-07, - "cigs": 7.08e-07, - "claustrophobic": 7.08e-07, - "cleave": 7.08e-07, - "clovis": 7.08e-07, - "coinciding": 7.08e-07, - "coleridge": 7.08e-07, - "colvin": 7.08e-07, - "commuted": 7.08e-07, - "conformation": 7.08e-07, - "conveniences": 7.08e-07, - "corinthian": 7.08e-07, - "cotta": 7.08e-07, - "councilor": 7.08e-07, - "counterterrorism": 7.08e-07, - "coyle": 7.08e-07, - "cq": 7.08e-07, - "crayfish": 7.08e-07, - "csf": 7.08e-07, - "cuckold": 7.08e-07, - "culled": 7.08e-07, - "czechs": 7.08e-07, - "davie": 7.08e-07, - "deanna": 7.08e-07, - "defraud": 7.08e-07, - "deftly": 7.08e-07, - "dens": 7.08e-07, - "desertion": 7.08e-07, - "detainee": 7.08e-07, - "devops": 7.08e-07, - "dike": 7.08e-07, - "dispensation": 7.08e-07, - "dit": 7.08e-07, - "domed": 7.08e-07, - "dowager": 7.08e-07, - "drips": 7.08e-07, - "ducati": 7.08e-07, - "dunning": 7.08e-07, - "eaves": 7.08e-07, - "edd": 7.08e-07, - "elie": 7.08e-07, - "emboldened": 7.08e-07, - "emc": 7.08e-07, - "enema": 7.08e-07, - "epp": 7.08e-07, - "erecting": 7.08e-07, - "eroding": 7.08e-07, - "euphoric": 7.08e-07, - "evangelism": 7.08e-07, - "evoking": 7.08e-07, - "excelsior": 7.08e-07, - "exploitative": 7.08e-07, - "fabricating": 7.08e-07, - "fae": 7.08e-07, - "falkland": 7.08e-07, - "fatah": 7.08e-07, - "fdic": 7.08e-07, - "feasting": 7.08e-07, - "ferment": 7.08e-07, - "fetuses": 7.08e-07, - "figurine": 7.08e-07, - "flocking": 7.08e-07, - "flogging": 7.08e-07, - "foote": 7.08e-07, - "freshen": 7.08e-07, - "frostbite": 7.08e-07, - "fuentes": 7.08e-07, - "fulbright": 7.08e-07, - "fulltime": 7.08e-07, - "fundamentalists": 7.08e-07, - "glories": 7.08e-07, - "gn": 7.08e-07, - "goodreads": 7.08e-07, - "goran": 7.08e-07, - "gul": 7.08e-07, - "gulag": 7.08e-07, - "gustave": 7.08e-07, - "hakeem": 7.08e-07, - "handyman": 7.08e-07, - "hangzhou": 7.08e-07, - "harare": 7.08e-07, - "hazing": 7.08e-07, - "heatwave": 7.08e-07, - "hellenic": 7.08e-07, - "hellenistic": 7.08e-07, - "heretical": 7.08e-07, - "herschel": 7.08e-07, - "heston": 7.08e-07, - "homeschool": 7.08e-07, - "homs": 7.08e-07, - "horst": 7.08e-07, - "hsv": 7.08e-07, - "humping": 7.08e-07, - "icd": 7.08e-07, - "ilya": 7.08e-07, - "immeasurable": 7.08e-07, - "immorality": 7.08e-07, - "immutable": 7.08e-07, - "imogen": 7.08e-07, - "impressionable": 7.08e-07, - "impressionist": 7.08e-07, - "ims": 6.17e-08, - "indica": 7.08e-07, - "indict": 7.08e-07, - "indisputable": 7.08e-07, - "inquisitor": 7.08e-07, - "inset": 7.08e-07, - "interceptor": 7.08e-07, - "interpolation": 7.08e-07, - "ischemia": 7.08e-07, - "jamies": 7.08e-07, - "jena": 7.08e-07, - "kaitlyn": 7.08e-07, - "kda": 7.08e-07, - "kettering": 7.08e-07, - "kiddos": 7.08e-07, - "killin": 7.08e-07, - "kohl": 7.08e-07, - "konrad": 7.08e-07, - "kraken": 7.08e-07, - "lancer": 7.08e-07, - "landau": 7.08e-07, - "lauder": 7.08e-07, - "laurels": 1.07e-07, - "leavers": 7.08e-07, - "lewes": 7.08e-07, - "licorice": 7.08e-07, - "lighters": 7.08e-07, - "limes": 1.86e-08, - "linearly": 7.08e-07, - "linguists": 7.08e-07, - "linkages": 7.08e-07, - "lisas": 7.08e-07, - "litchfield": 7.08e-07, - "lufthansa": 7.08e-07, - "lumped": 7.08e-07, - "lunge": 7.08e-07, - "lyra": 7.08e-07, - "mackinnon": 7.08e-07, - "maggots": 7.08e-07, - "malaga": 7.08e-07, - "malayalam": 7.08e-07, - "maliciously": 7.08e-07, - "manipulator": 7.08e-07, - "marathi": 7.08e-07, - "martino": 7.08e-07, - "meddle": 7.08e-07, - "medi": 7.08e-07, - "menagerie": 7.08e-07, - "mesut": 7.08e-07, - "metallurgical": 7.08e-07, - "mga": 7.08e-07, - "micron": 7.08e-07, - "midpoint": 7.08e-07, - "monoclonal": 7.08e-07, - "motorways": 7.08e-07, - "muay": 7.08e-07, - "multiverse": 7.08e-07, - "nibble": 7.08e-07, - "noonan": 7.08e-07, - "nosy": 7.08e-07, - "nullify": 7.08e-07, - "nys": 8.71e-08, - "ofsted": 7.08e-07, - "oligarchy": 7.08e-07, - "omelette": 7.08e-07, - "omnipotent": 7.08e-07, - "oppressors": 7.08e-07, - "orville": 7.08e-07, - "overpower": 7.08e-07, - "overthinking": 7.08e-07, - "overtures": 7.08e-07, - "paedophile": 7.08e-07, - "pagoda": 7.08e-07, - "paraded": 7.08e-07, - "parallax": 7.08e-07, - "passers": 7.08e-07, - "penniless": 7.08e-07, - "phalanx": 7.08e-07, - "photogenic": 7.08e-07, - "pilate": 7.08e-07, - "pirated": 7.08e-07, - "plantings": 7.08e-07, - "plummet": 7.08e-07, - "pn": 7.08e-07, - "pollack": 7.08e-07, - "polymerization": 7.08e-07, - "pondered": 7.08e-07, - "pounder": 7.08e-07, - "prado": 7.08e-07, - "prairies": 7.08e-07, - "prakash": 7.08e-07, - "predicate": 7.08e-07, - "predictability": 7.08e-07, - "prov": 7.08e-07, - "puking": 7.08e-07, - "pyle": 7.08e-07, - "qe": 7.08e-07, - "quaternary": 7.08e-07, - "queenslands": 7.08e-07, - "quintet": 7.08e-07, - "radiated": 7.08e-07, - "ramble": 7.08e-07, - "razors": 1.41e-07, - "realtime": 7.08e-07, - "reconstructive": 7.08e-07, - "reebok": 7.08e-07, - "refrained": 7.08e-07, - "retaliatory": 7.08e-07, - "revolutionize": 7.08e-07, - "revs": 7.08e-07, - "rhinoceros": 7.08e-07, - "ricks": 4.47e-07, - "rickshaw": 7.08e-07, - "rinehart": 7.08e-07, - "rodger": 7.08e-07, - "rollover": 7.08e-07, - "romain": 7.08e-07, - "romp": 7.08e-07, - "roxanne": 7.08e-07, - "rustling": 7.08e-07, - "sainte": 7.08e-07, - "salesforce": 7.08e-07, - "sanger": 7.08e-07, - "sarawak": 7.08e-07, - "sawdust": 7.08e-07, - "sba": 7.08e-07, - "scavenging": 7.08e-07, - "scoured": 7.08e-07, - "scrotum": 7.08e-07, - "scruffy": 7.08e-07, - "sdk": 7.08e-07, - "seans": 7.08e-07, - "sel": 7.08e-07, - "sewerage": 7.08e-07, - "shanahan": 7.08e-07, - "shangri": 7.08e-07, - "shasta": 7.08e-07, - "shenandoah": 7.08e-07, - "shithead": 7.08e-07, - "shoo": 7.08e-07, - "simplifies": 7.08e-07, - "sinuses": 7.08e-07, - "slc": 7.08e-07, - "slung": 7.08e-07, - "smelter": 7.08e-07, - "smoothness": 7.08e-07, - "smother": 7.08e-07, - "sniffed": 7.08e-07, - "snorted": 7.08e-07, - "soa": 7.08e-07, - "sparky": 7.08e-07, - "spencers": 1.35e-07, - "spontaneity": 7.08e-07, - "sprain": 7.08e-07, - "sprinklers": 7.08e-07, - "sss": 7.08e-07, - "stateless": 7.08e-07, - "stateside": 7.08e-07, - "stepson": 7.08e-07, - "stillwater": 7.08e-07, - "strolled": 7.08e-07, - "stunningly": 7.08e-07, - "sudbury": 7.08e-07, - "surly": 7.08e-07, - "susannah": 7.08e-07, - "sutures": 7.08e-07, - "sweeteners": 7.08e-07, - "symbolized": 7.08e-07, - "tarnish": 7.08e-07, - "tasman": 7.08e-07, - "tek": 7.08e-07, - "thailands": 7.08e-07, - "thermo": 7.08e-07, - "thrashed": 7.08e-07, - "thyself": 7.08e-07, - "tipton": 7.08e-07, - "tls": 7.08e-07, - "topsy": 7.08e-07, - "torsion": 7.08e-07, - "tosh": 7.08e-07, - "touchstone": 7.08e-07, - "tramway": 7.08e-07, - "treatable": 7.08e-07, - "trier": 7.08e-07, - "trouser": 7.08e-07, - "tugs": 7.08e-07, - "tumbler": 7.08e-07, - "typeface": 7.08e-07, - "uglier": 7.08e-07, - "ult": 7.08e-07, - "unaccounted": 7.08e-07, - "unbound": 7.08e-07, - "uncalled": 7.08e-07, - "undemocratic": 7.08e-07, - "undergrad": 7.08e-07, - "underpaid": 7.08e-07, - "uninvited": 7.08e-07, - "unleashing": 7.08e-07, - "unnerving": 7.08e-07, - "unpunished": 7.08e-07, - "unrecognized": 7.08e-07, - "untested": 7.08e-07, - "upping": 7.08e-07, - "urethra": 7.08e-07, - "utilising": 7.08e-07, - "uzbek": 7.08e-07, - "vaudeville": 7.08e-07, - "veils": 7.08e-07, - "verve": 7.08e-07, - "vex": 7.08e-07, - "vips": 7.76e-08, - "viv": 7.08e-07, - "vmware": 7.08e-07, - "vod": 7.08e-07, - "walkie": 7.08e-07, - "watchtower": 7.08e-07, - "watsons": 1.48e-07, - "waveform": 7.08e-07, - "weighty": 7.08e-07, - "wilma": 7.08e-07, - "wollongong": 7.08e-07, - "workbook": 7.08e-07, - "workspace": 7.08e-07, - "worships": 7.08e-07, - "xperia": 7.08e-07, - "yoshida": 7.08e-07, - "zephyr": 7.08e-07, - "zoomed": 7.08e-07, - "aberystwyth": 6.92e-07, - "abner": 6.92e-07, - "abstracted": 6.92e-07, - "adr": 6.92e-07, - "adversarial": 6.92e-07, - "aggies": 6.92e-07, - "agnew": 6.92e-07, - "aliases": 6.92e-07, - "allentown": 6.92e-07, - "alphonse": 6.92e-07, - "alvaro": 6.92e-07, - "amiable": 6.92e-07, - "amphitheatre": 6.92e-07, - "amygdala": 6.92e-07, - "angler": 6.92e-07, - "antagonism": 6.92e-07, - "antebellum": 6.92e-07, - "apathetic": 6.92e-07, - "apologists": 6.92e-07, - "appended": 6.92e-07, - "artiste": 6.92e-07, - "atty": 6.92e-07, - "backwater": 6.92e-07, - "ballistics": 6.92e-07, - "bastian": 6.92e-07, - "bequest": 6.92e-07, - "berths": 6.92e-07, - "bewildering": 6.92e-07, - "billiards": 6.92e-07, - "binders": 6.92e-07, - "biodegradable": 6.92e-07, - "biofuels": 6.92e-07, - "biomarkers": 6.92e-07, - "biosynthesis": 6.92e-07, - "blasphemous": 6.92e-07, - "bonny": 6.92e-07, - "booklets": 6.92e-07, - "bores": 6.92e-07, - "briscoe": 6.92e-07, - "briton": 6.92e-07, - "bungee": 6.92e-07, - "bureaucrat": 6.92e-07, - "cadres": 6.92e-07, - "carina": 6.92e-07, - "carnivores": 6.92e-07, - "cascading": 6.92e-07, - "chaucer": 6.92e-07, - "cherie": 6.92e-07, - "chipper": 6.92e-07, - "cli": 6.92e-07, - "cliffhanger": 6.92e-07, - "cline": 6.92e-07, - "clunky": 6.92e-07, - "colgate": 6.92e-07, - "collider": 6.92e-07, - "colosseum": 6.92e-07, - "comers": 6.92e-07, - "comme": 6.92e-07, - "commoner": 6.92e-07, - "conned": 6.92e-07, - "const": 6.92e-07, - "contemporaneous": 6.92e-07, - "contingencies": 6.92e-07, - "counsellors": 6.92e-07, - "cowley": 6.92e-07, - "crediting": 6.92e-07, - "crossovers": 6.92e-07, - "cta": 6.92e-07, - "cumberbatch": 6.92e-07, - "curtin": 6.92e-07, - "cutbacks": 6.92e-07, - "cutthroat": 6.92e-07, - "dailies": 6.92e-07, - "daria": 6.92e-07, - "datasets": 6.92e-07, - "decayed": 6.92e-07, - "deceptively": 6.92e-07, - "decoder": 6.92e-07, - "decommissioning": 6.92e-07, - "degeneres": 6.92e-07, - "delano": 6.92e-07, - "demarco": 6.92e-07, - "demography": 6.92e-07, - "denham": 6.92e-07, - "detroits": 6.92e-07, - "devilish": 6.92e-07, - "disarming": 6.92e-07, - "disloyal": 6.92e-07, - "disowned": 6.92e-07, - "dissociation": 6.92e-07, - "donner": 6.92e-07, - "dormitories": 6.92e-07, - "dowling": 6.92e-07, - "dpi": 6.92e-07, - "dq": 6.92e-07, - "drayton": 6.92e-07, - "dreads": 6.92e-07, - "drowns": 6.92e-07, - "druids": 6.92e-07, - "dueling": 6.92e-07, - "eared": 6.92e-07, - "earthen": 6.92e-07, - "eccentricity": 6.92e-07, - "eccles": 6.92e-07, - "electricians": 6.92e-07, - "electrocuted": 6.92e-07, - "els": 1e-07, - "emissary": 6.92e-07, - "enclosing": 6.92e-07, - "enron": 6.92e-07, - "entrapment": 6.92e-07, - "erectile": 6.92e-07, - "esposito": 6.92e-07, - "esta": 6.92e-07, - "exchanger": 6.92e-07, - "exerting": 6.92e-07, - "expatriates": 6.92e-07, - "eyelash": 6.92e-07, - "favouring": 6.92e-07, - "fernandes": 6.92e-07, - "flaherty": 6.92e-07, - "flappy": 6.92e-07, - "flashpoint": 6.92e-07, - "flirted": 6.92e-07, - "flopping": 6.92e-07, - "foodstuffs": 6.92e-07, - "forego": 6.92e-07, - "foretold": 6.92e-07, - "formalized": 6.92e-07, - "fortification": 6.92e-07, - "fortresses": 6.92e-07, - "fragrances": 6.92e-07, - "francine": 6.92e-07, - "fraternities": 6.92e-07, - "fredericksburg": 6.92e-07, - "frigates": 6.92e-07, - "gaba": 6.92e-07, - "gannon": 6.92e-07, - "gaol": 6.92e-07, - "genghis": 6.92e-07, - "giannis": 6.92e-07, - "gmos": 7.94e-08, - "goalkeepers": 5.89e-08, - "grafts": 6.92e-07, - "grainy": 6.92e-07, - "greenery": 6.92e-07, - "greenhouses": 6.92e-07, - "grundy": 6.92e-07, - "gwyneth": 6.92e-07, - "gynecology": 6.92e-07, - "haa": 6.92e-07, - "hakim": 6.92e-07, - "handily": 6.92e-07, - "harboring": 6.92e-07, - "hauls": 6.92e-07, - "hayek": 6.92e-07, - "heaving": 6.92e-07, - "hebrides": 6.92e-07, - "heighten": 6.92e-07, - "helluva": 6.92e-07, - "henna": 6.92e-07, - "hexagon": 6.92e-07, - "himmler": 6.92e-07, - "hinders": 6.92e-07, - "hinds": 6.92e-07, - "hinton": 6.92e-07, - "historys": 6.92e-07, - "hock": 6.92e-07, - "holler": 6.92e-07, - "holstein": 6.92e-07, - "honking": 6.92e-07, - "hookups": 6.92e-07, - "hooters": 6.92e-07, - "husk": 6.92e-07, - "hussey": 6.92e-07, - "iberian": 6.92e-07, - "ibms": 6.92e-07, - "ikr": 6.92e-07, - "implicate": 6.92e-07, - "implore": 6.92e-07, - "impounded": 6.92e-07, - "indigestion": 6.92e-07, - "indra": 6.92e-07, - "infarction": 6.92e-07, - "infrastructures": 6.92e-07, - "infront": 6.92e-07, - "intakes": 6.92e-07, - "intels": 6.92e-07, - "interned": 6.92e-07, - "internets": 3.02e-07, - "intonation": 6.92e-07, - "inversely": 6.92e-07, - "irrigated": 6.92e-07, - "irritates": 6.92e-07, - "ishmael": 6.92e-07, - "islamophobia": 6.92e-07, - "jeannie": 6.92e-07, - "josephus": 6.92e-07, - "jurys": 6.92e-07, - "justly": 6.92e-07, - "kaleidoscope": 6.92e-07, - "kath": 6.92e-07, - "keypad": 6.92e-07, - "kimchi": 6.92e-07, - "kita": 6.92e-07, - "krakow": 6.92e-07, - "krista": 6.92e-07, - "kutcher": 6.92e-07, - "lactation": 6.92e-07, - "laker": 6.92e-07, - "lapping": 6.92e-07, - "leyland": 6.92e-07, - "liberalization": 6.92e-07, - "lindy": 6.92e-07, - "looters": 6.92e-07, - "lorries": 6.92e-07, - "lottie": 6.92e-07, - "lough": 6.92e-07, - "ltc": 6.92e-07, - "lubricants": 6.92e-07, - "lumpy": 6.92e-07, - "lyricist": 6.92e-07, - "machined": 6.92e-07, - "mads": 6.92e-07, - "malacca": 6.92e-07, - "malaise": 6.92e-07, - "malaysias": 6.92e-07, - "malvern": 6.92e-07, - "mannequins": 6.92e-07, - "maricopa": 6.92e-07, - "mcnair": 6.92e-07, - "mdma": 6.92e-07, - "meatloaf": 6.92e-07, - "menial": 6.92e-07, - "mentorship": 6.92e-07, - "merriam": 6.92e-07, - "merrily": 6.92e-07, - "methinks": 6.92e-07, - "minas": 1.26e-07, - "monogamous": 6.92e-07, - "montessori": 6.92e-07, - "montpellier": 6.92e-07, - "mooring": 6.92e-07, - "moreau": 6.92e-07, - "mountaineering": 6.92e-07, - "mtn": 6.92e-07, - "nami": 6.92e-07, - "nantucket": 6.92e-07, - "napalm": 6.92e-07, - "nath": 6.92e-07, - "neared": 6.92e-07, - "neath": 6.92e-07, - "necessitate": 6.92e-07, - "negation": 6.92e-07, - "neurosurgery": 6.92e-07, - "neutrino": 6.92e-07, - "nga": 6.92e-07, - "nines": 1.48e-07, - "niv": 6.92e-07, - "nooo": 6.92e-07, - "norte": 6.92e-07, - "nur": 6.92e-07, - "nutella": 6.92e-07, - "obsessions": 6.92e-07, - "oclc": 6.92e-07, - "olden": 6.92e-07, - "omfg": 6.92e-07, - "oneness": 6.92e-07, - "opacity": 6.92e-07, - "opp": 6.92e-07, - "otherworldly": 6.92e-07, - "overdo": 6.92e-07, - "overdraft": 6.92e-07, - "overturning": 6.92e-07, - "paediatric": 6.92e-07, - "painstakingly": 6.92e-07, - "pantyhose": 6.92e-07, - "parametric": 6.92e-07, - "parentage": 6.92e-07, - "patna": 6.92e-07, - "pedo": 6.92e-07, - "pentecost": 6.92e-07, - "perverts": 6.92e-07, - "physio": 6.92e-07, - "picnics": 6.92e-07, - "pigmented": 6.92e-07, - "pippa": 6.92e-07, - "platte": 6.92e-07, - "pornstar": 6.92e-07, - "posner": 6.92e-07, - "postponing": 6.92e-07, - "practicable": 6.92e-07, - "privates": 6.92e-07, - "progenitor": 6.92e-07, - "protectionist": 6.92e-07, - "pryce": 6.92e-07, - "pulsed": 6.92e-07, - "punters": 6.92e-07, - "purporting": 6.92e-07, - "qua": 6.92e-07, - "quantification": 6.92e-07, - "quiver": 6.92e-07, - "radiators": 6.92e-07, - "raffles": 6.92e-07, - "rawls": 6.92e-07, - "refereeing": 6.92e-07, - "reflexive": 6.92e-07, - "refuel": 6.92e-07, - "reina": 6.92e-07, - "reinventing": 6.92e-07, - "reliving": 6.92e-07, - "reminisce": 6.92e-07, - "reminiscing": 6.92e-07, - "renegades": 6.92e-07, - "repositories": 6.92e-07, - "repurposed": 6.92e-07, - "resistors": 6.92e-07, - "riled": 6.92e-07, - "roadster": 6.92e-07, - "robben": 6.92e-07, - "rofl": 6.92e-07, - "roos": 6.92e-07, - "rougher": 6.92e-07, - "salesperson": 6.92e-07, - "schumann": 6.92e-07, - "scolding": 6.92e-07, - "scones": 6.92e-07, - "sculptors": 6.03e-08, - "sedgwick": 6.92e-07, - "seeger": 6.92e-07, - "segal": 6.92e-07, - "sentinels": 6.92e-07, - "seton": 6.92e-07, - "shad": 6.92e-07, - "shadowed": 6.92e-07, - "shadowing": 6.92e-07, - "shiite": 2.75e-07, - "shiraz": 6.92e-07, - "shitload": 6.92e-07, - "shouldered": 6.92e-07, - "simmonds": 6.92e-07, - "skillfully": 6.92e-07, - "skylight": 6.92e-07, - "skyrim": 6.92e-07, - "snacking": 6.92e-07, - "sneaked": 6.92e-07, - "snip": 6.92e-07, - "sombre": 6.92e-07, - "sothebys": 6.92e-07, - "sou": 6.92e-07, - "spas": 7.59e-08, - "spector": 6.92e-07, - "spi": 6.92e-07, - "spokes": 6.92e-07, - "spool": 6.92e-07, - "sprouting": 6.92e-07, - "spurt": 6.92e-07, - "sputtering": 6.92e-07, - "ssa": 6.92e-07, - "stahl": 6.92e-07, - "stencil": 6.92e-07, - "stoker": 6.92e-07, - "strays": 6.92e-07, - "stressors": 6.92e-07, - "strictest": 6.92e-07, - "subjectivity": 6.92e-07, - "subliminal": 6.92e-07, - "substantiated": 6.92e-07, - "sunil": 6.92e-07, - "superstitions": 6.92e-07, - "suri": 6.92e-07, - "surrogates": 6.92e-07, - "symphonic": 6.92e-07, - "taekwondo": 6.92e-07, - "tagalog": 6.92e-07, - "taka": 6.92e-07, - "teak": 6.92e-07, - "teary": 6.92e-07, - "teases": 6.92e-07, - "teething": 6.92e-07, - "toowoomba": 6.92e-07, - "tortures": 6.92e-07, - "tps": 6.92e-07, - "transducer": 6.92e-07, - "tryna": 6.92e-07, - "tuba": 6.92e-07, - "turnip": 6.92e-07, - "tween": 6.92e-07, - "twofold": 6.92e-07, - "uns": 5.75e-07, - "uncontested": 6.92e-07, - "uncovers": 6.92e-07, - "underwriters": 6.92e-07, - "uprooted": 6.92e-07, - "upstart": 6.92e-07, - "ure": 1e-07, - "urea": 6.92e-07, - "uso": 6.92e-07, - "veritas": 6.92e-07, - "vicksburg": 6.92e-07, - "villainous": 6.92e-07, - "voluminous": 6.92e-07, - "vv": 6.92e-07, - "walkways": 6.92e-07, - "watanabe": 6.92e-07, - "weathers": 3.09e-07, - "weeding": 6.92e-07, - "widens": 6.92e-07, - "winfield": 6.92e-07, - "winkler": 6.92e-07, - "wolfs": 1.38e-07, - "wonky": 6.92e-07, - "xavi": 6.92e-07, - "xfinity": 6.92e-07, - "yoshi": 6.92e-07, - "zebras": 5.13e-08, - "zhejiang": 6.92e-07, - "abed": 6.76e-07, - "absolve": 6.76e-07, - "acapulco": 6.76e-07, - "adair": 6.76e-07, - "adieu": 6.76e-07, - "agonist": 6.76e-07, - "aground": 6.76e-07, - "airfare": 6.76e-07, - "alli": 6.76e-07, - "alternator": 6.76e-07, - "antiviral": 6.76e-07, - "arousing": 6.76e-07, - "ashcroft": 6.76e-07, - "aspired": 6.76e-07, - "asuka": 6.76e-07, - "atlantas": 6.76e-07, - "austro": 6.76e-07, - "azhar": 6.76e-07, - "badlands": 6.76e-07, - "bari": 6.76e-07, - "baronet": 6.76e-07, - "batmans": 6.76e-07, - "battlestar": 6.76e-07, - "bdo": 6.76e-07, - "bearish": 6.76e-07, - "bebop": 6.76e-07, - "bela": 6.76e-07, - "belting": 6.76e-07, - "bendigo": 6.76e-07, - "bilal": 6.76e-07, - "bilbo": 6.76e-07, - "bitumen": 6.76e-07, - "blythe": 6.76e-07, - "bobbie": 6.76e-07, - "boland": 6.76e-07, - "borges": 6.76e-07, - "braden": 6.76e-07, - "buss": 4.17e-08, - "butterfield": 6.76e-07, - "buzzard": 6.76e-07, - "bygone": 6.76e-07, - "cannibals": 6.76e-07, - "capers": 6.76e-07, - "carbine": 6.76e-07, - "carelessness": 6.76e-07, - "cbo": 6.76e-07, - "cdn": 6.76e-07, - "cech": 6.76e-07, - "cedars": 6.76e-07, - "certifying": 6.76e-07, - "cesc": 6.76e-07, - "chattering": 6.76e-07, - "chaz": 6.76e-07, - "chongqing": 6.76e-07, - "chucked": 6.76e-07, - "chuckling": 6.76e-07, - "commensurate": 6.76e-07, - "compressors": 6.76e-07, - "confounding": 6.76e-07, - "contaminate": 6.76e-07, - "copley": 6.76e-07, - "corgi": 6.76e-07, - "corsair": 6.76e-07, - "cortes": 6.76e-07, - "counterfeiting": 6.76e-07, - "couriers": 5.89e-08, - "craigs": 1.05e-07, - "cranking": 6.76e-07, - "cranks": 6.76e-07, - "crenshaw": 6.76e-07, - "crescendo": 6.76e-07, - "cuss": 6.76e-07, - "dalek": 6.76e-07, - "dauphin": 6.76e-07, - "deepak": 6.76e-07, - "deformity": 6.76e-07, - "delevingne": 6.76e-07, - "dents": 7.76e-08, - "deviated": 6.76e-07, - "dibs": 1.02e-08, - "dickerson": 6.76e-07, - "dinghy": 6.76e-07, - "dipper": 6.76e-07, - "dipshit": 6.76e-07, - "discourages": 6.76e-07, - "disobey": 6.76e-07, - "disseminating": 6.76e-07, - "disturbs": 6.76e-07, - "diverge": 6.76e-07, - "dominoes": 6.76e-07, - "doughty": 6.76e-07, - "downpour": 6.76e-07, - "drifter": 6.76e-07, - "droids": 6.76e-07, - "dundas": 6.76e-07, - "durand": 6.76e-07, - "dusky": 6.76e-07, - "dystrophy": 6.76e-07, - "eastside": 6.76e-07, - "elizabeths": 9.12e-08, - "eloquence": 6.76e-07, - "elvira": 6.76e-07, - "enhancer": 6.76e-07, - "enquirer": 6.76e-07, - "enslave": 6.76e-07, - "epitaph": 6.76e-07, - "etat": 6.76e-07, - "exclusions": 6.76e-07, - "excrement": 6.76e-07, - "expedient": 6.76e-07, - "fac": 6.76e-07, - "fallow": 6.76e-07, - "fanart": 6.76e-07, - "fen": 6.76e-07, - "fermi": 6.76e-07, - "fiddler": 6.76e-07, - "flagging": 6.76e-07, - "foal": 6.76e-07, - "foreclosed": 6.76e-07, - "forlorn": 6.76e-07, - "foucault": 6.76e-07, - "fragmentary": 6.76e-07, - "freetown": 6.76e-07, - "furlongs": 6.76e-07, - "gab": 6.76e-07, - "gambino": 6.76e-07, - "gateways": 6.76e-07, - "gaudy": 6.76e-07, - "gauss": 6.76e-07, - "gawd": 6.76e-07, - "gazed": 6.76e-07, - "ginsberg": 6.76e-07, - "girlie": 6.76e-07, - "gobble": 6.76e-07, - "godspeed": 6.76e-07, - "grandparent": 6.76e-07, - "greeley": 6.76e-07, - "grout": 6.76e-07, - "grumman": 6.76e-07, - "gush": 6.76e-07, - "haddock": 6.76e-07, - "halogen": 6.76e-07, - "harald": 6.76e-07, - "harpoon": 6.76e-07, - "hartmann": 6.76e-07, - "haydn": 6.76e-07, - "hazmat": 6.76e-07, - "highlighter": 6.76e-07, - "hirst": 6.76e-07, - "hom": 6.76e-07, - "homeopathic": 6.76e-07, - "homogenous": 6.76e-07, - "hors": 6.76e-07, - "hv": 6.76e-07, - "hydrology": 6.76e-07, - "hypoxia": 6.76e-07, - "iba": 6.76e-07, - "ibis": 6.76e-07, - "ibrahimovic": 6.76e-07, - "idealist": 6.76e-07, - "ifa": 6.76e-07, - "ih": 6.76e-07, - "incarnations": 6.76e-07, - "incited": 6.76e-07, - "incubated": 6.76e-07, - "indecisive": 6.76e-07, - "indefensible": 6.76e-07, - "indivisible": 6.76e-07, - "industrialist": 6.76e-07, - "ineffectual": 6.76e-07, - "inextricably": 6.76e-07, - "inflows": 6.76e-07, - "ingest": 6.76e-07, - "inhibitions": 6.76e-07, - "innermost": 6.76e-07, - "insecticides": 6.76e-07, - "insoluble": 6.76e-07, - "instrumentals": 6.76e-07, - "insulate": 6.76e-07, - "interconnection": 6.76e-07, - "introverted": 6.76e-07, - "invokes": 6.76e-07, - "isobel": 6.76e-07, - "issn": 6.76e-07, - "jah": 6.76e-07, - "jewell": 6.76e-07, - "jian": 6.76e-07, - "jitters": 6.76e-07, - "johnnys": 6.76e-07, - "joness": 6.76e-07, - "kaine": 6.76e-07, - "katana": 6.76e-07, - "kendal": 6.76e-07, - "kessel": 6.76e-07, - "keyhole": 6.76e-07, - "kickers": 6.76e-07, - "kiosks": 6.76e-07, - "knighted": 6.76e-07, - "koenig": 6.76e-07, - "kota": 6.76e-07, - "kyu": 6.76e-07, - "lachlan": 6.76e-07, - "laredo": 6.76e-07, - "laughlin": 6.76e-07, - "lem": 6.76e-07, - "licensees": 6.76e-07, - "loafers": 6.76e-07, - "lovato": 6.76e-07, - "lymphocytes": 6.76e-07, - "lynched": 6.76e-07, - "maa": 6.76e-07, - "magda": 6.76e-07, - "mahdi": 6.76e-07, - "manipulations": 6.76e-07, - "margarine": 6.76e-07, - "mashup": 6.76e-07, - "massed": 6.76e-07, - "mauled": 6.76e-07, - "mayflower": 6.76e-07, - "meeks": 7.08e-08, - "mekong": 6.76e-07, - "melania": 6.76e-07, - "melanin": 6.76e-07, - "messina": 6.76e-07, - "millard": 6.76e-07, - "minis": 1.35e-07, - "mists": 6.76e-07, - "mobster": 6.76e-07, - "montevideo": 6.76e-07, - "moulds": 6.76e-07, - "murmurs": 6.76e-07, - "musty": 6.76e-07, - "muttered": 6.76e-07, - "mysql": 6.76e-07, - "nbn": 6.76e-07, - "nbs": 6.76e-07, - "neilson": 6.76e-07, - "neuropathy": 6.76e-07, - "neurotransmitter": 6.76e-07, - "neutrals": 6.76e-07, - "nevis": 6.76e-07, - "newsnight": 6.76e-07, - "niners": 6.76e-07, - "noam": 6.76e-07, - "normalcy": 6.76e-07, - "notts": 6.76e-07, - "nourished": 6.76e-07, - "nourishing": 6.76e-07, - "obituaries": 6.76e-07, - "oceanographic": 6.76e-07, - "okada": 6.76e-07, - "orissa": 6.76e-07, - "ormond": 6.76e-07, - "outcasts": 6.76e-07, - "outlay": 6.76e-07, - "outliers": 6.76e-07, - "overblown": 6.76e-07, - "overestimate": 6.76e-07, - "oxy": 6.76e-07, - "oxytocin": 6.76e-07, - "pandit": 6.76e-07, - "pandoras": 5.37e-08, - "partitioned": 6.76e-07, - "pathos": 6.76e-07, - "peacekeepers": 6.76e-07, - "ped": 6.76e-07, - "pellegrini": 6.76e-07, - "penetrates": 6.76e-07, - "peninsular": 6.76e-07, - "perrin": 6.76e-07, - "physicality": 6.76e-07, - "pickers": 6.76e-07, - "pid": 6.76e-07, - "pimple": 6.76e-07, - "platelets": 6.76e-07, - "poi": 6.76e-07, - "pomeroy": 6.76e-07, - "popeye": 6.76e-07, - "portraiture": 6.76e-07, - "potable": 6.76e-07, - "potsdam": 6.76e-07, - "pout": 6.76e-07, - "precepts": 6.76e-07, - "predominately": 6.76e-07, - "privatized": 6.76e-07, - "psy": 6.76e-07, - "psychoactive": 6.76e-07, - "puffing": 6.76e-07, - "punctual": 6.76e-07, - "punishes": 6.76e-07, - "quadrangle": 6.76e-07, - "quezon": 6.76e-07, - "quickness": 6.76e-07, - "quito": 6.76e-07, - "raceway": 6.76e-07, - "rafting": 6.76e-07, - "rainer": 6.76e-07, - "rajan": 6.76e-07, - "raves": 6.76e-07, - "reaffirm": 6.76e-07, - "rebellions": 6.76e-07, - "reentry": 6.76e-07, - "rephrase": 6.76e-07, - "retrofit": 6.76e-07, - "reus": 6.76e-07, - "riker": 6.76e-07, - "robustness": 6.76e-07, - "rogan": 6.76e-07, - "roleplaying": 6.76e-07, - "roped": 6.76e-07, - "roseanne": 6.76e-07, - "rosso": 6.76e-07, - "rubens": 6.76e-07, - "rubies": 6.76e-07, - "sade": 6.76e-07, - "salespeople": 6.76e-07, - "salutes": 6.76e-07, - "satisfactorily": 6.76e-07, - "savanna": 6.76e-07, - "scifi": 6.76e-07, - "scriptural": 6.76e-07, - "sedans": 6.76e-07, - "seedy": 6.76e-07, - "seuss": 6.76e-07, - "shandong": 6.76e-07, - "shawnee": 6.76e-07, - "skylar": 6.76e-07, - "sla": 6.76e-07, - "sleet": 6.76e-07, - "slugger": 6.76e-07, - "snarky": 6.76e-07, - "snr": 6.76e-07, - "sona": 6.76e-07, - "soooooo": 6.76e-07, - "sorghum": 6.76e-07, - "souza": 6.76e-07, - "spacer": 6.76e-07, - "spacetime": 6.76e-07, - "spartacus": 6.76e-07, - "spasm": 6.76e-07, - "spearhead": 6.76e-07, - "specialise": 6.76e-07, - "spl": 6.76e-07, - "sprites": 6.76e-07, - "squeal": 6.76e-07, - "squish": 6.76e-07, - "steppe": 6.76e-07, - "stubbornness": 6.76e-07, - "stubs": 6.76e-07, - "stunner": 6.76e-07, - "subcutaneous": 6.76e-07, - "subservient": 6.76e-07, - "substantiate": 6.76e-07, - "subtitled": 6.76e-07, - "subtracting": 6.76e-07, - "succinctly": 6.76e-07, - "summarily": 6.76e-07, - "summarised": 6.76e-07, - "supplementing": 6.76e-07, - "suresh": 6.76e-07, - "swab": 6.76e-07, - "swarmed": 6.76e-07, - "swath": 6.76e-07, - "swordsman": 6.76e-07, - "synapses": 6.76e-07, - "tailors": 9.55e-08, - "tattered": 6.76e-07, - "technicality": 6.76e-07, - "tekken": 6.76e-07, - "terracotta": 6.76e-07, - "testicle": 6.76e-07, - "thickening": 6.76e-07, - "thrush": 6.76e-07, - "thunderbirds": 6.76e-07, - "tillman": 6.76e-07, - "tinge": 6.76e-07, - "tinnitus": 6.76e-07, - "toed": 6.76e-07, - "toure": 6.76e-07, - "trample": 6.76e-07, - "tribesmen": 6.76e-07, - "tribulations": 6.76e-07, - "tropic": 6.76e-07, - "tux": 6.76e-07, - "uncomplicated": 6.76e-07, - "unconnected": 6.76e-07, - "underweight": 6.76e-07, - "undetectable": 6.76e-07, - "unis": 1.02e-07, - "unprovoked": 6.76e-07, - "unremarkable": 6.76e-07, - "untrustworthy": 6.76e-07, - "unwin": 6.76e-07, - "villarreal": 6.76e-07, - "vilnius": 6.76e-07, - "volition": 6.76e-07, - "wane": 6.76e-07, - "wellcome": 6.76e-07, - "westerns": 7.41e-08, - "whittle": 6.76e-07, - "wields": 6.76e-07, - "willian": 6.76e-07, - "withstood": 6.76e-07, - "wor": 6.76e-07, - "wretch": 6.76e-07, - "xinhua": 6.76e-07, - "yakima": 6.76e-07, - "yamato": 6.76e-07, - "yolks": 6.76e-07, - "abetting": 6.61e-07, - "accolade": 6.61e-07, - "accommodates": 6.61e-07, - "addicting": 6.61e-07, - "addy": 6.61e-07, - "adoptions": 6.61e-07, - "adoring": 6.61e-07, - "aime": 6.61e-07, - "aimlessly": 6.61e-07, - "alfalfa": 6.61e-07, - "alleles": 6.61e-07, - "amphetamines": 6.61e-07, - "andrey": 6.61e-07, - "appellant": 6.61e-07, - "archetypes": 6.61e-07, - "ashanti": 6.61e-07, - "ashok": 6.61e-07, - "atelier": 6.61e-07, - "australasia": 6.61e-07, - "axed": 6.61e-07, - "baguette": 6.61e-07, - "baloch": 6.61e-07, - "barbers": 3.09e-07, - "belichick": 6.61e-07, - "bioinformatics": 6.61e-07, - "bounties": 6.61e-07, - "breastfeed": 6.61e-07, - "brimstone": 6.61e-07, - "bristow": 6.61e-07, - "buhari": 6.61e-07, - "bunt": 6.61e-07, - "burly": 6.61e-07, - "carbonated": 6.61e-07, - "carburetor": 6.61e-07, - "carrey": 6.61e-07, - "caruso": 6.61e-07, - "catacombs": 6.61e-07, - "categorization": 6.61e-07, - "caving": 6.61e-07, - "celts": 6.61e-07, - "cessna": 6.61e-07, - "chara": 6.61e-07, - "cheetahs": 6.61e-07, - "chlamydia": 6.61e-07, - "chugging": 6.61e-07, - "classifies": 6.61e-07, - "cna": 6.61e-07, - "coachs": 6.61e-07, - "cobbler": 6.61e-07, - "cognizant": 6.61e-07, - "collared": 6.61e-07, - "colorados": 6.61e-07, - "columnists": 6.61e-07, - "communes": 6.61e-07, - "conceit": 6.61e-07, - "concubine": 6.61e-07, - "conforms": 6.61e-07, - "confounded": 6.61e-07, - "conservatively": 6.61e-07, - "constrain": 6.61e-07, - "contraption": 6.61e-07, - "cookbooks": 6.61e-07, - "coolness": 6.61e-07, - "coughlin": 6.61e-07, - "covertly": 6.61e-07, - "covet": 6.61e-07, - "cpm": 6.61e-07, - "curbing": 6.61e-07, - "dales": 2.63e-07, - "dds": 6.76e-08, - "deacons": 1.02e-07, - "defenceless": 6.61e-07, - "depressions": 6.61e-07, - "dfw": 6.61e-07, - "diggs": 6.61e-07, - "dingy": 6.61e-07, - "disappearances": 6.61e-07, - "disengaged": 6.61e-07, - "disillusionment": 6.61e-07, - "dispatching": 6.61e-07, - "dolph": 6.61e-07, - "donahue": 6.61e-07, - "doodles": 6.61e-07, - "dougherty": 6.61e-07, - "driverless": 6.61e-07, - "droppings": 6.61e-07, - "drowsy": 6.61e-07, - "dunlap": 6.61e-07, - "duos": 3.55e-07, - "elaboration": 6.61e-07, - "ele": 6.61e-07, - "elwood": 6.61e-07, - "eminently": 6.61e-07, - "emmas": 6.61e-07, - "emphasises": 6.61e-07, - "entre": 6.61e-07, - "eocene": 6.61e-07, - "epigenetic": 6.61e-07, - "equalled": 6.61e-07, - "eriksson": 6.61e-07, - "esprit": 6.61e-07, - "ess": 6.61e-07, - "ethnography": 6.61e-07, - "eunuch": 6.61e-07, - "exclaim": 6.61e-07, - "extort": 6.61e-07, - "falter": 6.61e-07, - "fanfiction": 6.61e-07, - "fantasize": 6.61e-07, - "feverish": 6.61e-07, - "fh": 6.61e-07, - "fibrillation": 6.61e-07, - "fissure": 6.61e-07, - "fizzy": 6.61e-07, - "flutes": 6.61e-07, - "footballs": 5.25e-07, - "forcible": 6.61e-07, - "frenzied": 6.61e-07, - "freudian": 6.61e-07, - "frightful": 6.61e-07, - "ftw": 6.61e-07, - "fumbling": 6.61e-07, - "gat": 6.61e-07, - "geforce": 6.61e-07, - "genji": 6.61e-07, - "geopolitics": 6.61e-07, - "getter": 6.61e-07, - "glamorgan": 6.61e-07, - "gloriously": 6.61e-07, - "gourd": 6.61e-07, - "grander": 6.61e-07, - "grins": 6.61e-07, - "grocers": 1.2e-07, - "hadi": 6.61e-07, - "haider": 6.61e-07, - "haig": 6.61e-07, - "hallam": 6.61e-07, - "halter": 6.61e-07, - "hawker": 6.61e-07, - "hei": 6.61e-07, - "heisenberg": 6.61e-07, - "hijackers": 6.61e-07, - "historiography": 6.61e-07, - "hogarth": 6.61e-07, - "hollowed": 6.61e-07, - "houdini": 6.61e-07, - "hybridization": 6.61e-07, - "hyenas": 6.61e-07, - "ibadan": 6.61e-07, - "icebreaker": 6.61e-07, - "idling": 6.61e-07, - "idolatry": 6.61e-07, - "iis": 5.13e-07, - "illawarra": 6.61e-07, - "indelible": 6.61e-07, - "indochina": 6.61e-07, - "infantile": 6.61e-07, - "infuse": 6.61e-07, - "inglewood": 6.61e-07, - "inheriting": 6.61e-07, - "iniesta": 6.61e-07, - "insuring": 6.61e-07, - "interplanetary": 6.61e-07, - "inv": 6.61e-07, - "irreverent": 6.61e-07, - "isd": 6.61e-07, - "isthmus": 6.61e-07, - "itinerant": 6.61e-07, - "jacky": 6.61e-07, - "jags": 6.61e-07, - "jeddah": 6.61e-07, - "jello": 6.61e-07, - "jud": 6.61e-07, - "judson": 6.61e-07, - "juke": 6.61e-07, - "juneau": 6.61e-07, - "kana": 6.61e-07, - "katarina": 6.61e-07, - "kenji": 6.61e-07, - "kiel": 6.61e-07, - "kincaid": 6.61e-07, - "kino": 6.61e-07, - "knopf": 6.61e-07, - "lakshmi": 6.61e-07, - "lanier": 6.61e-07, - "lazio": 6.61e-07, - "leniency": 6.61e-07, - "liber": 6.61e-07, - "lifeboats": 6.61e-07, - "lillard": 6.61e-07, - "lind": 6.61e-07, - "linens": 6.61e-07, - "lorenz": 6.61e-07, - "loudoun": 6.61e-07, - "lpg": 6.61e-07, - "luftwaffe": 6.61e-07, - "lurks": 6.61e-07, - "lymphatic": 6.61e-07, - "magdalena": 6.61e-07, - "mahler": 6.61e-07, - "malhotra": 6.61e-07, - "malleable": 6.61e-07, - "mannerisms": 6.61e-07, - "manta": 6.61e-07, - "marcellus": 6.61e-07, - "marek": 6.61e-07, - "marquess": 6.61e-07, - "matinee": 6.61e-07, - "maxx": 6.61e-07, - "mds": 7.94e-08, - "mediating": 6.61e-07, - "mercurial": 6.61e-07, - "micheal": 6.61e-07, - "microwaves": 6.61e-07, - "middling": 6.61e-07, - "millionth": 6.61e-07, - "mlas": 6.03e-08, - "mollie": 6.61e-07, - "mores": 1.51e-07, - "mpeg": 6.61e-07, - "multimillion": 6.61e-07, - "myung": 6.61e-07, - "nae": 6.61e-07, - "narrates": 6.61e-07, - "neg": 6.61e-07, - "nelsons": 9.55e-08, - "nicaraguan": 6.61e-07, - "nim": 6.61e-07, - "noi": 6.61e-07, - "noooo": 6.61e-07, - "oni": 6.61e-07, - "outgrown": 6.61e-07, - "outpouring": 6.61e-07, - "overdone": 6.61e-07, - "overreact": 6.61e-07, - "parson": 6.61e-07, - "pele": 6.61e-07, - "pelham": 6.61e-07, - "perceiving": 6.61e-07, - "peregrine": 6.61e-07, - "peres": 6.61e-07, - "pers": 6.61e-07, - "personification": 6.61e-07, - "petitioners": 5.13e-08, - "pheromones": 6.61e-07, - "piecemeal": 6.61e-07, - "piglet": 6.61e-07, - "pilar": 6.61e-07, - "placeholder": 6.61e-07, - "playmate": 6.61e-07, - "pliny": 6.61e-07, - "pnc": 6.61e-07, - "poetics": 6.61e-07, - "pogo": 6.61e-07, - "politicized": 6.61e-07, - "popsicle": 6.61e-07, - "predisposition": 6.61e-07, - "prefrontal": 6.61e-07, - "preservatives": 6.61e-07, - "presumptive": 6.61e-07, - "proactively": 6.61e-07, - "psychoanalytic": 6.61e-07, - "pto": 6.61e-07, - "purdy": 6.61e-07, - "puri": 6.61e-07, - "racy": 6.61e-07, - "radha": 6.61e-07, - "raucous": 6.61e-07, - "receivable": 6.61e-07, - "reconciling": 6.61e-07, - "reconstituted": 6.61e-07, - "reincarnated": 6.61e-07, - "reinsurance": 6.61e-07, - "repress": 6.61e-07, - "resignations": 6.61e-07, - "resolutely": 6.61e-07, - "respectability": 6.61e-07, - "retainers": 6.61e-07, - "retrospectively": 6.61e-07, - "revolts": 6.61e-07, - "robocop": 6.61e-07, - "roleplay": 6.61e-07, - "rostov": 6.61e-07, - "rotted": 6.61e-07, - "rte": 6.61e-07, - "rusher": 6.61e-07, - "sanctum": 6.61e-07, - "scarface": 6.61e-07, - "scc": 6.61e-07, - "scooping": 6.61e-07, - "scrolled": 6.61e-07, - "seng": 6.61e-07, - "sensuality": 6.61e-07, - "seperate": 6.61e-07, - "sequoia": 6.61e-07, - "serpents": 1.66e-07, - "serrano": 6.61e-07, - "serrated": 6.61e-07, - "severing": 6.61e-07, - "shunt": 6.61e-07, - "smyrna": 6.61e-07, - "snes": 6.61e-07, - "solis": 6.61e-07, - "solver": 6.61e-07, - "southland": 6.61e-07, - "spaniel": 6.61e-07, - "ssn": 6.61e-07, - "stagger": 6.61e-07, - "stalins": 6.61e-07, - "stalingrad": 6.61e-07, - "statuses": 6.61e-07, - "steels": 1.91e-07, - "steely": 6.61e-07, - "stent": 6.61e-07, - "stiffer": 6.61e-07, - "subtext": 6.61e-07, - "summa": 6.61e-07, - "sunflowers": 6.61e-07, - "supercharged": 6.61e-07, - "surety": 6.61e-07, - "susquehanna": 6.61e-07, - "swaziland": 6.61e-07, - "sweatpants": 6.61e-07, - "sweethearts": 6.61e-07, - "sylvie": 6.61e-07, - "syntactic": 6.61e-07, - "takahashi": 6.61e-07, - "talkie": 6.61e-07, - "tana": 6.61e-07, - "thang": 6.61e-07, - "theorized": 6.61e-07, - "thomass": 6.61e-07, - "thrusts": 6.61e-07, - "tiebreaker": 6.61e-07, - "tnf": 6.61e-07, - "torquay": 6.61e-07, - "totalitarianism": 6.61e-07, - "treatises": 6.61e-07, - "trimble": 6.61e-07, - "ubc": 6.61e-07, - "ugg": 6.61e-07, - "unassuming": 6.61e-07, - "undersecretary": 6.61e-07, - "unintelligible": 6.61e-07, - "unorganized": 6.61e-07, - "upholds": 6.61e-07, - "usmc": 6.61e-07, - "vegeta": 6.61e-07, - "verdi": 6.61e-07, - "verity": 6.61e-07, - "victimization": 6.61e-07, - "whiteside": 6.61e-07, - "whitmore": 6.61e-07, - "wicks": 5.37e-08, - "winking": 6.61e-07, - "withering": 6.61e-07, - "woodpecker": 6.61e-07, - "workstations": 6.61e-07, - "wrc": 6.61e-07, - "wtc": 6.61e-07, - "xin": 6.61e-07, - "xr": 6.61e-07, - "xvii": 6.61e-07, - "yip": 6.61e-07, - "zigzag": 6.61e-07, - "zika": 6.61e-07, - "aah": 6.46e-07, - "abilene": 6.46e-07, - "abscess": 6.46e-07, - "absorbent": 6.46e-07, - "acorns": 6.46e-07, - "acrobatic": 6.46e-07, - "acuity": 6.46e-07, - "acura": 6.46e-07, - "adrien": 6.46e-07, - "aec": 6.46e-07, - "afrikaans": 6.46e-07, - "agate": 6.46e-07, - "airstrip": 6.46e-07, - "albanians": 6.46e-07, - "alkyl": 6.46e-07, - "alle": 6.46e-07, - "amassing": 6.46e-07, - "amo": 6.46e-07, - "ansel": 6.46e-07, - "antiquarian": 6.46e-07, - "antiseptic": 6.46e-07, - "arbitrage": 6.46e-07, - "archduke": 6.46e-07, - "aren": 6.46e-07, - "arizonas": 6.46e-07, - "ascetic": 6.46e-07, - "aspires": 6.46e-07, - "aster": 6.46e-07, - "attains": 6.46e-07, - "attenuation": 6.46e-07, - "australasian": 6.46e-07, - "avila": 6.46e-07, - "avionics": 6.46e-07, - "azad": 6.46e-07, - "baileys": 2.88e-07, - "banshee": 6.46e-07, - "barbs": 6.92e-08, - "basingstoke": 6.46e-07, - "beastie": 6.46e-07, - "bedouin": 6.46e-07, - "beholden": 6.46e-07, - "beholder": 6.46e-07, - "benzema": 6.46e-07, - "blackrock": 6.46e-07, - "blogged": 6.46e-07, - "blushes": 6.46e-07, - "boas": 6.46e-07, - "bolivar": 6.46e-07, - "bookmarks": 6.46e-07, - "brahman": 6.46e-07, - "brahmin": 6.46e-07, - "brandeis": 6.46e-07, - "brentford": 6.46e-07, - "brinkley": 6.46e-07, - "brookes": 2.34e-07, - "bsp": 6.46e-07, - "bubblegum": 6.46e-07, - "bugatti": 6.46e-07, - "bungalows": 6.46e-07, - "burg": 6.46e-07, - "burp": 6.46e-07, - "buttoned": 6.46e-07, - "cano": 6.46e-07, - "canto": 6.46e-07, - "canvass": 6.46e-07, - "cashback": 6.46e-07, - "castings": 6.46e-07, - "cathartic": 6.46e-07, - "catwoman": 6.46e-07, - "caucuses": 6.46e-07, - "cementing": 6.46e-07, - "centrifuge": 6.46e-07, - "cfp": 6.46e-07, - "chee": 6.46e-07, - "chestnuts": 6.46e-07, - "ciao": 6.46e-07, - "cinco": 6.46e-07, - "citywide": 6.46e-07, - "cliches": 6.46e-07, - "cocker": 6.46e-07, - "comanche": 6.46e-07, - "comatose": 6.46e-07, - "comforter": 6.46e-07, - "commissary": 6.46e-07, - "compilers": 6.46e-07, - "conclave": 6.46e-07, - "concoction": 6.46e-07, - "confers": 6.46e-07, - "conspire": 6.46e-07, - "consternation": 6.46e-07, - "corneal": 6.46e-07, - "cornet": 6.46e-07, - "cramming": 6.46e-07, - "crawler": 6.46e-07, - "cris": 6.46e-07, - "cruised": 6.46e-07, - "cuffed": 6.46e-07, - "cynic": 6.46e-07, - "daemon": 6.46e-07, - "dampen": 6.46e-07, - "dancehall": 6.46e-07, - "darwins": 6.46e-07, - "decommissioned": 6.46e-07, - "defensible": 6.46e-07, - "demolishing": 6.46e-07, - "dentures": 6.46e-07, - "descriptor": 6.46e-07, - "diehard": 6.46e-07, - "differentiates": 6.46e-07, - "dipole": 6.46e-07, - "discoloration": 6.46e-07, - "disinfectant": 6.46e-07, - "dissipation": 6.46e-07, - "distracts": 6.46e-07, - "divider": 6.46e-07, - "dji": 6.46e-07, - "downsides": 6.46e-07, - "dsl": 6.46e-07, - "dts": 8.71e-08, - "dynamism": 6.46e-07, - "ealing": 6.46e-07, - "earnhardt": 6.46e-07, - "effigy": 6.46e-07, - "ehrlich": 6.46e-07, - "eisenberg": 6.46e-07, - "encroaching": 6.46e-07, - "encyclopaedia": 6.46e-07, - "entomology": 6.46e-07, - "erred": 6.46e-07, - "estes": 6.46e-07, - "estrada": 6.46e-07, - "everyman": 6.46e-07, - "excepting": 6.46e-07, - "exclaims": 6.46e-07, - "exclusives": 6.46e-07, - "excommunicated": 6.46e-07, - "exterminated": 6.46e-07, - "extravagance": 6.46e-07, - "facetime": 6.46e-07, - "factually": 6.46e-07, - "faker": 6.46e-07, - "falconer": 6.46e-07, - "figurehead": 6.46e-07, - "fina": 6.46e-07, - "fiscally": 6.46e-07, - "fjord": 6.46e-07, - "flowered": 6.46e-07, - "flume": 6.46e-07, - "flyover": 6.46e-07, - "focussing": 6.46e-07, - "foils": 6.46e-07, - "foy": 6.46e-07, - "freelancers": 6.46e-07, - "fretting": 6.46e-07, - "fuchs": 6.46e-07, - "gabriela": 6.46e-07, - "gales": 1.2e-07, - "gallbladder": 6.46e-07, - "gatherers": 6.46e-07, - "gauteng": 6.46e-07, - "gaya": 6.46e-07, - "geordie": 6.46e-07, - "germantown": 6.46e-07, - "gestational": 6.46e-07, - "gigabit": 6.46e-07, - "gillis": 6.46e-07, - "girdle": 6.46e-07, - "giselle": 6.46e-07, - "glut": 6.46e-07, - "godless": 6.46e-07, - "goldwater": 6.46e-07, - "grandsons": 1.58e-07, - "gripe": 6.46e-07, - "gruff": 6.46e-07, - "gurgaon": 6.46e-07, - "hahahahaha": 6.46e-07, - "haji": 6.46e-07, - "hark": 6.46e-07, - "harmonics": 6.46e-07, - "hatchery": 6.46e-07, - "haystack": 6.46e-07, - "hearthstone": 6.46e-07, - "hegel": 6.46e-07, - "heidegger": 6.46e-07, - "helga": 6.46e-07, - "helical": 6.46e-07, - "hemorrhagic": 6.46e-07, - "hibbert": 6.46e-07, - "holo": 6.46e-07, - "homies": 6.46e-07, - "hookah": 6.46e-07, - "hse": 6.46e-07, - "htm": 6.46e-07, - "humpback": 6.46e-07, - "hundredth": 6.46e-07, - "huntingdon": 6.46e-07, - "iglesias": 6.46e-07, - "igneous": 6.46e-07, - "imams": 9.33e-08, - "imperfection": 6.46e-07, - "implosion": 6.46e-07, - "incredulous": 6.46e-07, - "inherits": 6.46e-07, - "intensification": 6.46e-07, - "intercepts": 6.46e-07, - "interwoven": 6.46e-07, - "intrude": 6.46e-07, - "jeweler": 6.46e-07, - "jpmorgan": 6.46e-07, - "jumble": 6.46e-07, - "kagan": 6.46e-07, - "kagawa": 6.46e-07, - "kala": 6.46e-07, - "kenyatta": 6.46e-07, - "kimmy": 6.46e-07, - "kodi": 6.46e-07, - "konami": 6.46e-07, - "kpmg": 6.46e-07, - "krause": 6.46e-07, - "krebs": 6.46e-07, - "kyrgyz": 6.46e-07, - "labors": 4.79e-07, - "latched": 6.46e-07, - "latimer": 6.46e-07, - "lengthen": 6.46e-07, - "lewandowski": 6.46e-07, - "lineages": 6.46e-07, - "liqueur": 6.46e-07, - "locksmith": 6.46e-07, - "locusts": 6.46e-07, - "lolly": 6.46e-07, - "londoners": 6.46e-07, - "lynette": 6.46e-07, - "lyrically": 6.46e-07, - "maidstone": 6.46e-07, - "maimed": 6.46e-07, - "maisie": 6.46e-07, - "mallard": 6.46e-07, - "mallorca": 6.46e-07, - "mandating": 6.46e-07, - "marchand": 6.46e-07, - "mariachi": 6.46e-07, - "mccallum": 6.46e-07, - "mcd": 6.46e-07, - "mcneill": 6.46e-07, - "medvedev": 6.46e-07, - "memorizing": 6.46e-07, - "merc": 6.46e-07, - "metabolite": 6.46e-07, - "metlife": 6.46e-07, - "mezzanine": 6.46e-07, - "mgmt": 6.46e-07, - "midlife": 6.46e-07, - "mired": 6.46e-07, - "missoula": 6.46e-07, - "mistletoe": 6.46e-07, - "mmo": 6.46e-07, - "mmr": 6.46e-07, - "modality": 6.46e-07, - "modifiers": 6.46e-07, - "moly": 6.46e-07, - "monetize": 6.46e-07, - "monolith": 6.46e-07, - "monticello": 6.46e-07, - "moodys": 6.46e-07, - "mtb": 6.46e-07, - "mulan": 6.46e-07, - "mumps": 6.46e-07, - "mya": 6.46e-07, - "mystics": 6.46e-07, - "naturalists": 6.46e-07, - "needham": 6.46e-07, - "nesbitt": 6.46e-07, - "nils": 6.46e-07, - "nudist": 6.46e-07, - "nymphs": 6.46e-07, - "ochoa": 6.46e-07, - "oder": 6.46e-07, - "orgies": 6.46e-07, - "ortho": 6.46e-07, - "outlast": 6.46e-07, - "ozzie": 6.46e-07, - "pajama": 6.46e-07, - "panics": 6.46e-07, - "paratroopers": 6.46e-07, - "partitioning": 6.46e-07, - "pathogenesis": 6.46e-07, - "pavements": 6.46e-07, - "pawnee": 6.46e-07, - "payloads": 6.46e-07, - "penney": 6.46e-07, - "pero": 6.46e-07, - "phoning": 6.46e-07, - "plunkett": 6.46e-07, - "pompeo": 6.46e-07, - "pon": 6.46e-07, - "potash": 6.46e-07, - "predisposed": 6.46e-07, - "presentable": 6.46e-07, - "processions": 6.46e-07, - "pronouncements": 6.46e-07, - "protectionism": 6.46e-07, - "provokes": 6.46e-07, - "purports": 6.46e-07, - "quinlan": 6.46e-07, - "rab": 6.46e-07, - "radiocarbon": 6.46e-07, - "raunchy": 6.46e-07, - "raya": 6.46e-07, - "rebuked": 6.46e-07, - "reconstructions": 6.46e-07, - "redesignated": 6.46e-07, - "reeks": 6.46e-07, - "refuges": 6.46e-07, - "relaying": 6.46e-07, - "remarking": 6.46e-07, - "resetting": 6.46e-07, - "reshuffle": 6.46e-07, - "responder": 6.46e-07, - "retiree": 6.46e-07, - "rewatching": 6.46e-07, - "rho": 6.46e-07, - "rommel": 6.46e-07, - "roughness": 6.46e-07, - "rudi": 6.46e-07, - "saf": 6.46e-07, - "saiyan": 6.46e-07, - "sala": 6.46e-07, - "salter": 6.46e-07, - "salve": 6.46e-07, - "sanatorium": 6.46e-07, - "savoury": 6.46e-07, - "scaly": 6.46e-07, - "scamming": 6.46e-07, - "scold": 6.46e-07, - "seducing": 6.46e-07, - "senpai": 6.46e-07, - "sentimentality": 6.46e-07, - "shabaab": 6.46e-07, - "shaolin": 6.46e-07, - "shimon": 6.46e-07, - "shined": 6.46e-07, - "slo": 6.46e-07, - "smearing": 6.46e-07, - "smudge": 6.46e-07, - "sociedad": 6.46e-07, - "speckled": 6.46e-07, - "stallone": 6.46e-07, - "subsidised": 6.46e-07, - "subtype": 6.46e-07, - "subtypes": 6.46e-07, - "supplanted": 6.46e-07, - "surfboard": 6.46e-07, - "swatch": 6.46e-07, - "sweatshirts": 6.46e-07, - "switchboard": 6.46e-07, - "synthesizer": 6.46e-07, - "taboos": 6.46e-07, - "tahir": 6.46e-07, - "tbilisi": 6.46e-07, - "teflon": 6.46e-07, - "telecoms": 5.62e-08, - "tempers": 6.46e-07, - "tencent": 6.46e-07, - "terrorized": 6.46e-07, - "terrorizing": 6.46e-07, - "tet": 6.46e-07, - "thebes": 6.46e-07, - "tibetans": 6.46e-07, - "tierney": 6.46e-07, - "tierra": 6.46e-07, - "toenails": 6.46e-07, - "tonya": 6.46e-07, - "toothpick": 6.46e-07, - "topshop": 6.46e-07, - "touting": 6.46e-07, - "tradesmen": 6.46e-07, - "transporters": 6.46e-07, - "travolta": 6.46e-07, - "trifecta": 6.46e-07, - "trois": 6.46e-07, - "trs": 6.46e-07, - "trumped": 6.46e-07, - "twinkling": 6.46e-07, - "underserved": 6.46e-07, - "undertones": 6.46e-07, - "unfairness": 6.46e-07, - "unwieldy": 6.46e-07, - "urinate": 6.46e-07, - "urology": 6.46e-07, - "vero": 6.46e-07, - "vertebral": 6.46e-07, - "vexed": 6.46e-07, - "vibrates": 6.46e-07, - "viennese": 6.46e-07, - "vignettes": 6.46e-07, - "vinson": 6.46e-07, - "vivienne": 6.46e-07, - "voc": 6.46e-07, - "vocalists": 6.46e-07, - "voids": 6.46e-07, - "wada": 6.46e-07, - "waitresses": 6.46e-07, - "warping": 6.46e-07, - "welbeck": 6.46e-07, - "westeros": 6.46e-07, - "whacked": 6.46e-07, - "whisperer": 6.46e-07, - "whitewash": 6.46e-07, - "whitewashed": 6.46e-07, - "widths": 6.46e-07, - "wingspan": 6.46e-07, - "winton": 6.46e-07, - "wiper": 6.46e-07, - "wipers": 6.46e-07, - "wristband": 6.46e-07, - "xxl": 6.46e-07, - "yarra": 6.46e-07, - "yeltsin": 6.46e-07, - "abdication": 6.31e-07, - "adirondack": 6.31e-07, - "admittance": 6.31e-07, - "adolph": 6.31e-07, - "aggravate": 6.31e-07, - "aia": 6.31e-07, - "airbase": 6.31e-07, - "aircrafts": 3.02e-07, - "alcohols": 7.41e-08, - "alpaca": 6.31e-07, - "alveolar": 6.31e-07, - "aly": 6.31e-07, - "ambivalence": 6.31e-07, - "amped": 6.31e-07, - "amphitheater": 6.31e-07, - "andrade": 6.31e-07, - "ansari": 6.31e-07, - "anthropogenic": 6.31e-07, - "appendages": 6.31e-07, - "appraisals": 6.31e-07, - "appraiser": 6.31e-07, - "arboretum": 6.31e-07, - "archivist": 6.31e-07, - "aretha": 6.31e-07, - "argent": 6.31e-07, - "argentinas": 6.92e-08, - "arraignment": 6.31e-07, - "arsehole": 6.31e-07, - "arvind": 6.31e-07, - "asahi": 6.31e-07, - "asgard": 6.31e-07, - "astrologer": 6.31e-07, - "awd": 6.31e-07, - "banknotes": 6.31e-07, - "beaker": 6.31e-07, - "belcher": 6.31e-07, - "belted": 6.31e-07, - "bereft": 6.31e-07, - "bezel": 6.31e-07, - "bhutto": 6.31e-07, - "bicentennial": 6.31e-07, - "biff": 6.31e-07, - "blackberries": 6.31e-07, - "blairs": 6.61e-08, - "blameless": 6.31e-07, - "blasio": 6.31e-07, - "blindfold": 6.31e-07, - "bobcat": 6.31e-07, - "bock": 6.31e-07, - "booties": 6.31e-07, - "borno": 6.31e-07, - "bottlenecks": 6.31e-07, - "bravado": 6.31e-07, - "brokered": 6.31e-07, - "bruces": 6.31e-07, - "bruges": 6.31e-07, - "bucking": 6.31e-07, - "buffoon": 6.31e-07, - "bullseye": 6.31e-07, - "bumbling": 6.31e-07, - "byzantium": 6.31e-07, - "cagr": 6.31e-07, - "calderon": 6.31e-07, - "canaveral": 6.31e-07, - "candor": 6.31e-07, - "canines": 6.31e-07, - "capitalizing": 6.31e-07, - "carats": 6.31e-07, - "caretakers": 8.32e-08, - "cassava": 6.31e-07, - "cellulite": 6.31e-07, - "cervantes": 6.31e-07, - "changers": 6.31e-07, - "chaste": 6.31e-07, - "chucky": 6.31e-07, - "clamoring": 6.31e-07, - "clarkes": 5.25e-08, - "cobbled": 6.31e-07, - "communicable": 6.31e-07, - "compatriot": 6.31e-07, - "computations": 6.31e-07, - "concorde": 6.31e-07, - "consuls": 6.31e-07, - "conti": 6.31e-07, - "convergent": 6.31e-07, - "copd": 6.31e-07, - "cordova": 6.31e-07, - "cosmological": 6.31e-07, - "cossack": 6.31e-07, - "courtois": 6.31e-07, - "cpd": 6.31e-07, - "craps": 6.31e-07, - "crazies": 6.31e-07, - "creaking": 6.31e-07, - "creatine": 6.31e-07, - "creatives": 6.31e-07, - "crick": 6.31e-07, - "crohns": 7.94e-08, - "cronin": 6.31e-07, - "crumbles": 6.31e-07, - "cypher": 6.31e-07, - "darnell": 6.31e-07, - "dazzled": 6.31e-07, - "decomposing": 6.31e-07, - "dekalb": 6.31e-07, - "demetrius": 6.31e-07, - "deploys": 6.31e-07, - "derision": 6.31e-07, - "dermal": 6.31e-07, - "destabilize": 6.31e-07, - "dfs": 6.31e-07, - "diameters": 6.31e-07, - "digimon": 6.31e-07, - "dollhouse": 6.31e-07, - "donned": 6.31e-07, - "dosages": 6.31e-07, - "dramatist": 6.31e-07, - "dressage": 6.31e-07, - "duc": 6.31e-07, - "dumont": 6.31e-07, - "dunks": 6.31e-07, - "dysentery": 6.31e-07, - "eas": 1.91e-07, - "ecologically": 6.31e-07, - "elaborating": 6.31e-07, - "emeralds": 6.31e-07, - "enumerated": 6.31e-07, - "executable": 6.31e-07, - "extradited": 6.31e-07, - "fait": 6.31e-07, - "fallin": 6.31e-07, - "faltered": 6.31e-07, - "farnsworth": 6.31e-07, - "fightin": 6.31e-07, - "filet": 6.31e-07, - "firmness": 6.31e-07, - "flannery": 6.31e-07, - "flipper": 6.31e-07, - "fml": 6.31e-07, - "fnc": 6.31e-07, - "follicle": 6.31e-07, - "foreclosures": 6.31e-07, - "frasier": 6.31e-07, - "frayed": 6.31e-07, - "frenchmen": 6.31e-07, - "furlong": 6.31e-07, - "genocidal": 6.31e-07, - "germination": 6.31e-07, - "geyser": 6.31e-07, - "gibbon": 6.31e-07, - "gilligan": 6.31e-07, - "gimp": 6.31e-07, - "glorifying": 6.31e-07, - "gonzo": 6.31e-07, - "goodie": 6.31e-07, - "gorges": 6.31e-07, - "graff": 6.31e-07, - "grainger": 6.31e-07, - "greaves": 6.31e-07, - "greening": 6.31e-07, - "greenleaf": 6.31e-07, - "greenwald": 6.31e-07, - "greenway": 6.31e-07, - "gresham": 6.31e-07, - "gretzky": 6.31e-07, - "grinders": 6.31e-07, - "griswold": 6.31e-07, - "grooms": 4.9e-07, - "grumble": 6.31e-07, - "guevara": 6.31e-07, - "hairspray": 6.31e-07, - "hani": 6.31e-07, - "hardback": 6.31e-07, - "harveys": 8.71e-08, - "healthful": 6.31e-07, - "hearse": 6.31e-07, - "helplessly": 6.31e-07, - "heralds": 1.02e-07, - "herbicide": 6.31e-07, - "homemaker": 6.31e-07, - "hotdog": 6.31e-07, - "hots": 6.31e-07, - "hpa": 6.31e-07, - "hrt": 6.31e-07, - "huggins": 6.31e-07, - "hunan": 6.31e-07, - "hunched": 6.31e-07, - "hyena": 6.31e-07, - "hypnotized": 6.31e-07, - "igniting": 6.31e-07, - "illuminates": 6.31e-07, - "immaturity": 6.31e-07, - "impeding": 6.31e-07, - "impostor": 6.31e-07, - "incensed": 6.31e-07, - "inclement": 6.31e-07, - "inferences": 6.31e-07, - "ingesting": 6.31e-07, - "intercepting": 6.31e-07, - "iridescent": 6.31e-07, - "janssen": 6.31e-07, - "jinping": 6.31e-07, - "jordi": 6.31e-07, - "judi": 6.31e-07, - "justifiably": 6.31e-07, - "kannada": 6.31e-07, - "kata": 6.31e-07, - "kilowatt": 6.31e-07, - "knelt": 6.31e-07, - "kol": 6.31e-07, - "krystal": 6.31e-07, - "laborious": 6.31e-07, - "landfills": 6.31e-07, - "latters": 6.31e-07, - "laval": 6.31e-07, - "lavishly": 6.31e-07, - "lazar": 6.31e-07, - "legible": 6.31e-07, - "lingual": 6.31e-07, - "liquidate": 6.31e-07, - "livable": 6.31e-07, - "lobo": 6.31e-07, - "loftus": 6.31e-07, - "loomed": 6.31e-07, - "lovejoy": 6.31e-07, - "lowercase": 6.31e-07, - "lpga": 6.31e-07, - "lusty": 6.31e-07, - "macao": 6.31e-07, - "maddening": 6.31e-07, - "malnourished": 6.31e-07, - "mami": 6.31e-07, - "manassas": 6.31e-07, - "manna": 6.31e-07, - "marias": 1.2e-07, - "martine": 6.31e-07, - "massaging": 6.31e-07, - "materiel": 6.31e-07, - "mchenry": 6.31e-07, - "menlo": 6.31e-07, - "mennonite": 6.31e-07, - "messier": 6.31e-07, - "mgr": 6.31e-07, - "microcosm": 6.31e-07, - "miki": 6.31e-07, - "mille": 6.31e-07, - "milos": 1.95e-07, - "miscarriages": 6.31e-07, - "misdeeds": 6.31e-07, - "mishra": 6.31e-07, - "mixtapes": 6.31e-07, - "moaned": 6.31e-07, - "monrovia": 6.31e-07, - "moro": 6.31e-07, - "muhammed": 6.31e-07, - "multifaceted": 6.31e-07, - "multiplicity": 6.31e-07, - "nac": 6.31e-07, - "nagpur": 6.31e-07, - "nasir": 6.31e-07, - "naylor": 6.31e-07, - "nbas": 6.31e-07, - "neurosurgeon": 6.31e-07, - "nist": 6.31e-07, - "noe": 6.31e-07, - "norah": 6.31e-07, - "norbert": 6.31e-07, - "nullified": 6.31e-07, - "nutter": 6.31e-07, - "obsessively": 6.31e-07, - "occured": 6.31e-07, - "olde": 6.31e-07, - "ooze": 6.31e-07, - "orangutan": 6.31e-07, - "orbs": 6.31e-07, - "oregano": 6.31e-07, - "organics": 6.31e-07, - "orig": 6.31e-07, - "osmond": 6.31e-07, - "outdone": 6.31e-07, - "outplayed": 6.31e-07, - "outrageously": 6.31e-07, - "outro": 6.31e-07, - "pacino": 6.31e-07, - "palisades": 6.31e-07, - "palmers": 1.66e-07, - "paloma": 6.31e-07, - "pandey": 6.31e-07, - "paraphrasing": 6.31e-07, - "parliamentarian": 6.31e-07, - "partied": 6.31e-07, - "passable": 6.31e-07, - "pasteur": 6.31e-07, - "pasting": 6.31e-07, - "patted": 6.31e-07, - "pease": 6.31e-07, - "peels": 5.13e-08, - "peeve": 6.31e-07, - "pendants": 6.31e-07, - "perishable": 6.31e-07, - "persie": 6.31e-07, - "personas": 6.31e-07, - "perv": 6.31e-07, - "pfc": 6.31e-07, - "photojournalist": 6.31e-07, - "pinks": 2.51e-07, - "plunges": 6.31e-07, - "politburo": 6.31e-07, - "polystyrene": 6.31e-07, - "pontiff": 6.31e-07, - "portrayals": 6.31e-07, - "postulated": 6.31e-07, - "pows": 9.55e-08, - "preemptive": 6.31e-07, - "pretender": 6.31e-07, - "primers": 6.31e-07, - "proletarian": 6.31e-07, - "prolonging": 6.31e-07, - "prong": 6.31e-07, - "prosthesis": 6.31e-07, - "prosthetics": 6.31e-07, - "psc": 6.31e-07, - "puny": 6.31e-07, - "qf": 6.31e-07, - "quantico": 6.31e-07, - "quarrels": 6.31e-07, - "quilted": 6.31e-07, - "quilts": 6.31e-07, - "radium": 6.31e-07, - "ramming": 6.31e-07, - "rancid": 6.31e-07, - "reassess": 6.31e-07, - "reb": 6.31e-07, - "recoverable": 6.31e-07, - "rectangles": 6.31e-07, - "rediscover": 6.31e-07, - "redistricting": 6.31e-07, - "ree": 6.31e-07, - "reissued": 6.31e-07, - "renner": 6.31e-07, - "reorganize": 6.31e-07, - "replayed": 6.31e-07, - "reservists": 6.31e-07, - "resonator": 6.31e-07, - "restlessness": 6.31e-07, - "retaliated": 6.31e-07, - "retirements": 6.31e-07, - "revives": 6.31e-07, - "revolted": 6.31e-07, - "rojas": 6.31e-07, - "roms": 6.31e-07, - "royalist": 6.31e-07, - "rpgs": 6.17e-08, - "ryo": 6.31e-07, - "savile": 6.31e-07, - "sawed": 6.31e-07, - "sayers": 6.31e-07, - "schilling": 6.31e-07, - "screenwriting": 6.31e-07, - "sculpt": 6.31e-07, - "selectivity": 6.31e-07, - "shatters": 6.31e-07, - "shopkeepers": 6.31e-07, - "sicker": 6.31e-07, - "signified": 6.31e-07, - "simi": 6.31e-07, - "sita": 6.31e-07, - "sizzle": 6.31e-07, - "skated": 6.31e-07, - "sloop": 6.31e-07, - "smu": 6.31e-07, - "snoopy": 6.31e-07, - "sobbed": 6.31e-07, - "spooner": 6.31e-07, - "spotter": 6.31e-07, - "squint": 6.31e-07, - "statisticians": 6.31e-07, - "stenosis": 6.31e-07, - "strathclyde": 6.31e-07, - "stv": 6.31e-07, - "subsystems": 6.31e-07, - "suffocation": 6.31e-07, - "surpluses": 6.31e-07, - "surrenders": 6.31e-07, - "syndication": 6.31e-07, - "tailgating": 6.31e-07, - "tama": 6.31e-07, - "tapestries": 6.31e-07, - "teamsters": 6.31e-07, - "technologists": 6.31e-07, - "tenfold": 6.31e-07, - "terrify": 6.31e-07, - "terrys": 6.31e-07, - "therere": 6.31e-07, - "thrall": 6.31e-07, - "throng": 6.31e-07, - "tianjin": 6.31e-07, - "togetherness": 6.31e-07, - "tolerances": 6.31e-07, - "tongs": 3.89e-08, - "topographical": 6.31e-07, - "traceable": 6.31e-07, - "trieste": 6.31e-07, - "trite": 6.31e-07, - "tryouts": 6.31e-07, - "tues": 6.31e-07, - "tusks": 6.31e-07, - "tylenol": 6.31e-07, - "undamaged": 6.31e-07, - "unpacked": 6.31e-07, - "unrivalled": 6.31e-07, - "urgh": 6.31e-07, - "urinating": 6.31e-07, - "verily": 6.31e-07, - "vga": 6.31e-07, - "vir": 6.31e-07, - "visualized": 6.31e-07, - "vitae": 6.31e-07, - "vocally": 6.31e-07, - "wadi": 6.31e-07, - "walkthrough": 6.31e-07, - "wallow": 6.31e-07, - "washroom": 6.31e-07, - "weldon": 6.31e-07, - "whigs": 6.31e-07, - "widgets": 6.31e-07, - "wilkie": 6.31e-07, - "wily": 6.31e-07, - "winks": 6.31e-07, - "wol": 6.31e-07, - "womack": 6.31e-07, - "workhouse": 6.31e-07, - "worshiping": 6.31e-07, - "wouldn": 6.31e-07, - "xian": 6.31e-07, - "zs": 3.09e-07, - "zum": 6.31e-07, - "zz": 6.31e-07, - "aam": 6.17e-07, - "abingdon": 6.17e-07, - "acetone": 6.17e-07, - "actuarial": 6.17e-07, - "adel": 6.17e-07, - "adventist": 6.17e-07, - "albemarle": 6.17e-07, - "alcatraz": 6.17e-07, - "allahs": 6.17e-07, - "allot": 6.17e-07, - "amine": 6.17e-07, - "amma": 6.17e-07, - "anathema": 6.17e-07, - "angelique": 6.17e-07, - "anni": 6.17e-07, - "anz": 6.17e-07, - "appeasement": 6.17e-07, - "appropriating": 6.17e-07, - "artisanal": 6.17e-07, - "ascertained": 6.17e-07, - "aspergers": 2.63e-07, - "auguste": 6.17e-07, - "aurelius": 6.17e-07, - "aureus": 6.17e-07, - "authorise": 6.17e-07, - "bacchus": 6.17e-07, - "bantam": 6.17e-07, - "barked": 6.17e-07, - "barrack": 6.17e-07, - "baseballs": 2.82e-07, - "batty": 6.17e-07, - "belive": 6.17e-07, - "bellow": 6.17e-07, - "belvedere": 6.17e-07, - "benefactors": 6.17e-07, - "betta": 6.17e-07, - "bhopal": 6.17e-07, - "bia": 6.17e-07, - "bitty": 6.17e-07, - "blurb": 6.17e-07, - "bonham": 6.17e-07, - "bonsai": 6.17e-07, - "boro": 6.17e-07, - "bosworth": 6.17e-07, - "boyish": 6.17e-07, - "bps": 4.57e-07, - "brians": 6.17e-07, - "bron": 6.17e-07, - "bronte": 6.17e-07, - "brownlow": 6.17e-07, - "buckwheat": 6.17e-07, - "bushel": 6.17e-07, - "busses": 6.17e-07, - "bute": 6.17e-07, - "buttercup": 6.17e-07, - "calibrate": 6.17e-07, - "callback": 6.17e-07, - "campsites": 6.17e-07, - "candlestick": 6.17e-07, - "capricious": 6.17e-07, - "carcinogenic": 6.17e-07, - "cartagena": 6.17e-07, - "cataracts": 6.17e-07, - "cation": 6.17e-07, - "caveats": 6.17e-07, - "cdu": 6.17e-07, - "cel": 6.17e-07, - "centaur": 6.17e-07, - "centipede": 6.17e-07, - "chested": 6.17e-07, - "chiffon": 6.17e-07, - "chirp": 6.17e-07, - "chloroform": 6.17e-07, - "chromatin": 6.17e-07, - "citibank": 6.17e-07, - "clays": 3.31e-07, - "clogs": 6.17e-07, - "coaxial": 6.17e-07, - "colluding": 6.17e-07, - "colman": 6.17e-07, - "commutes": 6.17e-07, - "completions": 6.17e-07, - "conch": 6.17e-07, - "concocted": 6.17e-07, - "conditioners": 6.17e-07, - "condon": 6.17e-07, - "confucian": 6.17e-07, - "conspirator": 6.17e-07, - "conveyance": 6.17e-07, - "coronado": 6.17e-07, - "corrie": 6.17e-07, - "corsica": 6.17e-07, - "cosgrove": 6.17e-07, - "cotter": 6.17e-07, - "cottonwood": 6.17e-07, - "cranberries": 6.17e-07, - "crankshaft": 6.17e-07, - "cristo": 6.17e-07, - "crossbar": 6.17e-07, - "cytokines": 6.17e-07, - "dawning": 6.17e-07, - "delicacies": 6.17e-07, - "demarcation": 6.17e-07, - "desai": 6.17e-07, - "desalination": 6.17e-07, - "desktops": 6.17e-07, - "determinations": 6.17e-07, - "dictatorships": 6.17e-07, - "digby": 6.17e-07, - "dildos": 6.17e-07, - "dimly": 6.17e-07, - "discernment": 6.17e-07, - "dislodge": 6.17e-07, - "dismembered": 6.17e-07, - "disrepair": 6.17e-07, - "dissertations": 6.17e-07, - "doings": 6.17e-07, - "doorman": 6.17e-07, - "drogba": 6.17e-07, - "duckworth": 6.17e-07, - "duets": 6.17e-07, - "dunfermline": 6.17e-07, - "eames": 6.17e-07, - "easement": 6.17e-07, - "ebitda": 6.17e-07, - "eis": 6.17e-07, - "eloise": 6.17e-07, - "emilie": 6.17e-07, - "emulated": 6.17e-07, - "emulating": 6.17e-07, - "endorphins": 6.17e-07, - "engrossed": 6.17e-07, - "entwined": 6.17e-07, - "eren": 6.17e-07, - "espinosa": 6.17e-07, - "euclidean": 6.17e-07, - "euler": 6.17e-07, - "evacuations": 6.17e-07, - "ewe": 6.17e-07, - "exponents": 6.17e-07, - "extraneous": 6.17e-07, - "exuberance": 6.17e-07, - "eyeglasses": 6.17e-07, - "falsehoods": 6.17e-07, - "familiarize": 6.17e-07, - "fap": 6.17e-07, - "fastening": 6.17e-07, - "fenwick": 6.17e-07, - "ferrous": 6.17e-07, - "feta": 6.17e-07, - "florian": 6.17e-07, - "forearms": 6.17e-07, - "foreboding": 6.17e-07, - "frieze": 6.17e-07, - "gangnam": 6.17e-07, - "gatekeeper": 6.17e-07, - "giacomo": 6.17e-07, - "glyn": 6.17e-07, - "golem": 6.17e-07, - "gossiping": 6.17e-07, - "gracias": 6.17e-07, - "grafting": 6.17e-07, - "granules": 6.17e-07, - "gridlock": 6.17e-07, - "guarantor": 6.17e-07, - "gujarati": 6.17e-07, - "gy": 6.17e-07, - "hanlon": 6.17e-07, - "happend": 6.17e-07, - "hares": 1.07e-07, - "haywood": 6.17e-07, - "herbaceous": 6.17e-07, - "herodotus": 6.17e-07, - "hightower": 6.17e-07, - "hilliard": 6.17e-07, - "hinckley": 6.17e-07, - "hither": 6.17e-07, - "hol": 6.17e-07, - "holbrook": 6.17e-07, - "homeboy": 6.17e-07, - "honing": 6.17e-07, - "honky": 6.17e-07, - "honorably": 6.17e-07, - "horan": 6.17e-07, - "hoskins": 6.17e-07, - "hoyer": 6.17e-07, - "humber": 6.17e-07, - "hurriedly": 6.17e-07, - "hyping": 6.17e-07, - "idioms": 6.17e-07, - "iga": 6.17e-07, - "illusory": 6.17e-07, - "illustrators": 6.17e-07, - "ilo": 6.17e-07, - "iman": 6.17e-07, - "inadequacy": 6.17e-07, - "inadvertent": 6.17e-07, - "inaudible": 6.17e-07, - "incapacity": 6.17e-07, - "indianas": 6.17e-07, - "industrious": 6.17e-07, - "infects": 6.17e-07, - "inflating": 6.17e-07, - "ingress": 6.17e-07, - "insufferable": 6.17e-07, - "interred": 6.17e-07, - "interrogations": 6.17e-07, - "intrusions": 6.17e-07, - "isometric": 6.17e-07, - "javi": 6.17e-07, - "jeeps": 8.91e-08, - "jett": 6.17e-07, - "jib": 6.17e-07, - "jinnah": 6.17e-07, - "journeyed": 6.17e-07, - "jute": 6.17e-07, - "kauffman": 6.17e-07, - "kejriwal": 6.17e-07, - "kel": 6.17e-07, - "kevlar": 6.17e-07, - "kkr": 6.17e-07, - "kristian": 6.17e-07, - "laissez": 6.17e-07, - "layoff": 6.17e-07, - "leica": 6.17e-07, - "leper": 6.17e-07, - "levee": 6.17e-07, - "lewin": 6.17e-07, - "lido": 6.17e-07, - "lise": 6.17e-07, - "loci": 6.17e-07, - "loos": 6.17e-07, - "lotteries": 6.17e-07, - "loudspeakers": 6.17e-07, - "lovett": 6.17e-07, - "lucerne": 6.17e-07, - "lurch": 6.17e-07, - "madrids": 6.17e-07, - "magnificence": 6.17e-07, - "majid": 6.17e-07, - "majored": 6.17e-07, - "malaysians": 6.17e-07, - "malfunctions": 6.17e-07, - "mangoes": 6.17e-07, - "manipur": 6.17e-07, - "margaritas": 6.17e-07, - "martens": 6.17e-07, - "matchmaker": 6.17e-07, - "matlab": 6.17e-07, - "mattie": 6.17e-07, - "mayhew": 6.17e-07, - "mcphee": 6.17e-07, - "measly": 6.17e-07, - "megapixel": 6.17e-07, - "mellitus": 6.17e-07, - "meringue": 6.17e-07, - "miamis": 6.17e-07, - "minstrel": 6.17e-07, - "modesto": 6.17e-07, - "monaghan": 6.17e-07, - "mondo": 6.17e-07, - "moronic": 6.17e-07, - "mouthing": 6.17e-07, - "muddle": 6.17e-07, - "multidimensional": 6.17e-07, - "nabbed": 6.17e-07, - "nantes": 6.17e-07, - "narrate": 6.17e-07, - "nathalie": 6.17e-07, - "naturalism": 6.17e-07, - "navigated": 6.17e-07, - "neoclassical": 6.17e-07, - "neoliberalism": 6.17e-07, - "neutered": 6.17e-07, - "neve": 6.17e-07, - "neverland": 6.17e-07, - "newsworthy": 6.17e-07, - "nomura": 6.17e-07, - "normalizing": 6.17e-07, - "northerners": 6.17e-07, - "nts": 6.17e-07, - "oaxaca": 6.17e-07, - "obliterate": 6.17e-07, - "ocr": 6.17e-07, - "oeuvre": 6.17e-07, - "omnipresent": 6.17e-07, - "oneida": 6.17e-07, - "ontarios": 6.17e-07, - "ordinator": 6.17e-07, - "osmosis": 6.17e-07, - "outcrops": 6.17e-07, - "overhang": 6.17e-07, - "oxley": 6.17e-07, - "paganism": 6.17e-07, - "pail": 6.17e-07, - "palatine": 6.17e-07, - "paleontology": 6.17e-07, - "parabolic": 6.17e-07, - "paradoxes": 6.17e-07, - "pare": 6.17e-07, - "parkour": 6.17e-07, - "parlance": 6.17e-07, - "permafrost": 6.17e-07, - "permutations": 6.17e-07, - "persecute": 6.17e-07, - "phat": 6.17e-07, - "pixies": 6.17e-07, - "plexus": 6.17e-07, - "politic": 6.17e-07, - "poncho": 6.17e-07, - "poolside": 6.17e-07, - "pornstars": 6.17e-07, - "preeminent": 6.17e-07, - "prefabricated": 6.17e-07, - "premiering": 6.17e-07, - "presbytery": 6.17e-07, - "preservative": 6.17e-07, - "presse": 6.17e-07, - "presser": 6.17e-07, - "prioritise": 6.17e-07, - "probs": 6.17e-07, - "propelling": 6.17e-07, - "propriety": 6.17e-07, - "provisionally": 6.17e-07, - "pythons": 3.47e-07, - "qbs": 1.95e-07, - "quartered": 6.17e-07, - "quigley": 6.17e-07, - "rainey": 6.17e-07, - "rapunzel": 6.17e-07, - "rattles": 6.17e-07, - "razed": 6.17e-07, - "recitals": 6.17e-07, - "reconstructing": 6.17e-07, - "rejuvenation": 6.17e-07, - "repatriated": 6.17e-07, - "reposted": 6.17e-07, - "resection": 6.17e-07, - "reseller": 6.17e-07, - "roald": 6.17e-07, - "robles": 6.17e-07, - "rockland": 6.17e-07, - "ruffle": 6.17e-07, - "saito": 6.17e-07, - "samar": 6.17e-07, - "sarcophagus": 6.17e-07, - "sardar": 6.17e-07, - "sarin": 6.17e-07, - "sartre": 6.17e-07, - "saud": 6.17e-07, - "scab": 6.17e-07, - "schenectady": 6.17e-07, - "schlesinger": 6.17e-07, - "scoot": 6.17e-07, - "scp": 6.17e-07, - "scratchy": 6.17e-07, - "scuffle": 6.17e-07, - "secede": 6.17e-07, - "seep": 6.17e-07, - "sensuous": 6.17e-07, - "shabbat": 6.17e-07, - "shakti": 6.17e-07, - "shanti": 6.17e-07, - "shaver": 6.17e-07, - "sherpa": 6.17e-07, - "showy": 6.17e-07, - "sideboard": 6.17e-07, - "silks": 6.17e-07, - "silliness": 6.17e-07, - "sills": 6.17e-07, - "sisi": 6.17e-07, - "skittles": 6.17e-07, - "skyler": 6.17e-07, - "skyrocket": 6.17e-07, - "smalling": 6.17e-07, - "sns": 6.17e-07, - "softest": 6.17e-07, - "sonora": 6.17e-07, - "sor": 6.17e-07, - "spate": 6.17e-07, - "spellings": 6.17e-07, - "splinters": 6.17e-07, - "squeezes": 6.17e-07, - "starks": 4.27e-07, - "stasi": 6.17e-07, - "stealthy": 6.17e-07, - "stereotyped": 6.17e-07, - "storybook": 6.17e-07, - "stowed": 6.17e-07, - "strobe": 6.17e-07, - "stryker": 6.17e-07, - "stylists": 6.17e-07, - "subduction": 6.17e-07, - "submersible": 6.17e-07, - "suburbia": 6.17e-07, - "sud": 6.17e-07, - "sulu": 6.17e-07, - "superlative": 6.17e-07, - "surmounted": 6.17e-07, - "swarovski": 6.17e-07, - "sylvan": 6.17e-07, - "symphonies": 6.17e-07, - "tabby": 6.17e-07, - "taiwans": 6.17e-07, - "tamils": 6.17e-07, - "tatar": 6.17e-07, - "tatars": 6.17e-07, - "technologist": 6.17e-07, - "templars": 6.17e-07, - "terrorize": 6.17e-07, - "thorium": 6.17e-07, - "throes": 6.17e-07, - "tiananmen": 6.17e-07, - "tilts": 6.17e-07, - "tion": 6.17e-07, - "tomboy": 6.17e-07, - "tonsils": 6.17e-07, - "transfusions": 6.17e-07, - "traumas": 6.17e-07, - "triassic": 6.17e-07, - "tricycle": 6.17e-07, - "trp": 6.17e-07, - "truro": 6.17e-07, - "umass": 6.17e-07, - "unaltered": 6.17e-07, - "unapologetic": 6.17e-07, - "unclassified": 6.17e-07, - "uncool": 6.17e-07, - "unfavourable": 6.17e-07, - "unloved": 6.17e-07, - "unmasked": 6.17e-07, - "unsightly": 6.17e-07, - "uptick": 6.17e-07, - "urchin": 6.17e-07, - "vandal": 6.17e-07, - "vhf": 6.17e-07, - "villanova": 6.17e-07, - "violators": 6.17e-07, - "vise": 6.17e-07, - "vj": 6.17e-07, - "walsall": 6.17e-07, - "wasn": 6.17e-07, - "watertight": 6.17e-07, - "wavering": 6.17e-07, - "wherefore": 6.17e-07, - "whoo": 6.17e-07, - "wildflowers": 6.17e-07, - "windward": 6.17e-07, - "wip": 6.17e-07, - "witcher": 6.17e-07, - "wok": 6.17e-07, - "woodcock": 6.17e-07, - "xiang": 6.17e-07, - "xtreme": 6.17e-07, - "yahya": 6.17e-07, - "yoy": 6.17e-07, - "zag": 6.17e-07, - "zips": 1.07e-08, - "abstained": 6.03e-07, - "accretion": 6.03e-07, - "activator": 6.03e-07, - "aeroplanes": 6.03e-07, - "aerosmith": 6.03e-07, - "affirmations": 6.03e-07, - "afresh": 6.03e-07, - "ahs": 5.25e-08, - "allahabad": 6.03e-07, - "allotments": 6.03e-07, - "annular": 6.03e-07, - "appetizers": 6.03e-07, - "appleby": 6.03e-07, - "appraised": 6.03e-07, - "appreciable": 6.03e-07, - "aquila": 6.03e-07, - "arnaud": 6.03e-07, - "associative": 6.03e-07, - "asst": 6.03e-07, - "assuredly": 6.03e-07, - "atherosclerosis": 6.03e-07, - "auctioneers": 6.03e-07, - "augsburg": 6.03e-07, - "aural": 6.03e-07, - "automakers": 5.01e-08, - "bachmann": 6.03e-07, - "backroom": 6.03e-07, - "baited": 6.03e-07, - "banksy": 6.03e-07, - "bap": 6.03e-07, - "barracuda": 6.03e-07, - "bcc": 6.03e-07, - "beauchamp": 6.03e-07, - "beethovens": 6.03e-07, - "belarusian": 6.03e-07, - "benefitting": 6.03e-07, - "benevolence": 6.03e-07, - "bettering": 6.03e-07, - "bewitched": 6.03e-07, - "bil": 6.03e-07, - "blazes": 6.03e-07, - "blimp": 6.03e-07, - "bls": 6.03e-07, - "bodywork": 6.03e-07, - "bondholders": 6.03e-07, - "bookcase": 6.03e-07, - "boucher": 6.03e-07, - "bracken": 6.03e-07, - "bridle": 6.03e-07, - "bruv": 6.03e-07, - "buddys": 6.03e-07, - "buford": 6.03e-07, - "bullard": 6.03e-07, - "bullshitting": 6.03e-07, - "butterworth": 6.03e-07, - "cassini": 6.03e-07, - "castration": 6.03e-07, - "cathay": 6.03e-07, - "caudal": 6.03e-07, - "charing": 6.03e-07, - "cheeseburgers": 6.03e-07, - "chews": 6.03e-07, - "chiles": 4.27e-07, - "chillin": 6.03e-07, - "choruses": 6.03e-07, - "chowder": 6.03e-07, - "clary": 6.03e-07, - "clinching": 6.03e-07, - "cmd": 6.03e-07, - "cogs": 6.03e-07, - "collarbone": 6.03e-07, - "colonize": 6.03e-07, - "condolence": 6.03e-07, - "conjugated": 6.03e-07, - "conquerors": 6.17e-08, - "consents": 6.03e-07, - "constructively": 6.03e-07, - "cordoba": 6.03e-07, - "cov": 6.03e-07, - "crackle": 6.03e-07, - "crematorium": 6.03e-07, - "crests": 6.03e-07, - "croissant": 6.03e-07, - "crustaceans": 6.03e-07, - "cryin": 6.03e-07, - "cryogenic": 6.03e-07, - "curbs": 6.03e-07, - "dally": 6.03e-07, - "decoded": 6.03e-07, - "decontamination": 6.03e-07, - "defenceman": 6.03e-07, - "delle": 6.03e-07, - "delving": 6.03e-07, - "demonstrably": 6.03e-07, - "deniers": 6.03e-07, - "depositors": 6.03e-07, - "despises": 6.03e-07, - "devolve": 6.03e-07, - "devotes": 6.03e-07, - "dha": 6.03e-07, - "dianas": 6.03e-07, - "diffuser": 6.03e-07, - "dispersing": 6.03e-07, - "disposals": 6.03e-07, - "dominguez": 6.03e-07, - "dor": 6.03e-07, - "dpp": 6.03e-07, - "drucker": 6.03e-07, - "dupe": 6.03e-07, - "duster": 6.03e-07, - "eatery": 6.03e-07, - "electronica": 6.03e-07, - "elms": 6.03e-07, - "elongate": 6.03e-07, - "elude": 6.03e-07, - "embattled": 6.03e-07, - "enamored": 6.03e-07, - "encephalitis": 6.03e-07, - "ender": 6.03e-07, - "endowments": 6.03e-07, - "entertainments": 2.63e-07, - "enthralled": 6.03e-07, - "escalates": 6.03e-07, - "eskimos": 6.03e-07, - "eso": 6.03e-07, - "esplanade": 6.03e-07, - "etch": 6.03e-07, - "eustace": 6.03e-07, - "evangelists": 6.03e-07, - "excavating": 6.03e-07, - "expelling": 6.03e-07, - "eyewear": 6.03e-07, - "fairgrounds": 6.03e-07, - "fallacies": 6.03e-07, - "farted": 6.03e-07, - "favoritism": 6.03e-07, - "fenders": 6.03e-07, - "fervently": 6.03e-07, - "feudalism": 6.03e-07, - "fireproof": 6.03e-07, - "flounder": 6.03e-07, - "foetus": 6.03e-07, - "forthright": 6.03e-07, - "frans": 8.13e-08, - "gaon": 6.03e-07, - "gaylord": 6.03e-07, - "geisha": 6.03e-07, - "gelato": 6.03e-07, - "gemstones": 6.03e-07, - "giza": 6.03e-07, - "glade": 6.03e-07, - "glassy": 6.03e-07, - "gleefully": 6.03e-07, - "glycogen": 6.03e-07, - "godsend": 6.03e-07, - "gofundme": 6.03e-07, - "goodall": 6.03e-07, - "grasshoppers": 6.03e-07, - "groped": 6.03e-07, - "grubby": 6.03e-07, - "guan": 6.03e-07, - "gulch": 6.03e-07, - "gynecologist": 6.03e-07, - "hacienda": 6.03e-07, - "hairpin": 6.03e-07, - "halliday": 6.03e-07, - "hannahs": 6.03e-07, - "hannover": 6.03e-07, - "harnesses": 6.03e-07, - "harts": 1.86e-07, - "haru": 6.03e-07, - "hatter": 6.03e-07, - "hausa": 6.03e-07, - "hawes": 6.03e-07, - "hazelnut": 6.03e-07, - "hbos": 9.12e-08, - "hendrick": 6.03e-07, - "hiker": 6.03e-07, - "hilbert": 6.03e-07, - "hj": 6.03e-07, - "homologous": 6.03e-07, - "horseshit": 6.03e-07, - "howls": 1.55e-07, - "hsc": 6.03e-07, - "hummer": 6.03e-07, - "hydrating": 6.03e-07, - "hyo": 6.03e-07, - "icp": 6.03e-07, - "ifc": 6.03e-07, - "iffy": 6.03e-07, - "immovable": 6.03e-07, - "impaled": 6.03e-07, - "inspectorate": 6.03e-07, - "interstitial": 6.03e-07, - "inverter": 6.03e-07, - "iona": 6.03e-07, - "irate": 6.03e-07, - "isu": 6.03e-07, - "iverson": 6.03e-07, - "jakes": 3.24e-07, - "jeju": 6.03e-07, - "jezebel": 6.03e-07, - "jf": 6.03e-07, - "jizz": 6.03e-07, - "joliet": 6.03e-07, - "joshi": 6.03e-07, - "jugular": 6.03e-07, - "kean": 6.03e-07, - "kelli": 6.03e-07, - "kerrigan": 6.03e-07, - "kickstart": 6.03e-07, - "killian": 6.03e-07, - "kinsey": 6.03e-07, - "kirkwood": 6.03e-07, - "knockdown": 6.03e-07, - "konstantin": 6.03e-07, - "kor": 6.03e-07, - "krugman": 6.03e-07, - "ladd": 6.03e-07, - "lagoons": 6.03e-07, - "lapis": 6.03e-07, - "laramie": 6.03e-07, - "lessening": 6.03e-07, - "lethargic": 6.03e-07, - "lga": 6.03e-07, - "liberator": 6.03e-07, - "ligature": 6.03e-07, - "linkin": 6.03e-07, - "lipped": 6.03e-07, - "littering": 6.03e-07, - "livers": 5.75e-08, - "logans": 6.03e-07, - "longhorns": 6.03e-07, - "loony": 6.03e-07, - "loveliest": 6.03e-07, - "lse": 6.03e-07, - "lynchburg": 6.03e-07, - "maggot": 6.03e-07, - "mahesh": 6.03e-07, - "malek": 6.03e-07, - "malkin": 6.03e-07, - "mambo": 6.03e-07, - "mandala": 6.03e-07, - "mandolin": 6.03e-07, - "manhattans": 8.51e-08, - "margie": 6.03e-07, - "marinated": 6.03e-07, - "martinique": 6.03e-07, - "maryam": 6.03e-07, - "mbs": 6.03e-07, - "mcguinness": 6.03e-07, - "mcnulty": 6.03e-07, - "mediaeval": 6.03e-07, - "megaphone": 6.03e-07, - "megawatts": 6.03e-07, - "merci": 6.03e-07, - "milfs": 6.03e-07, - "militarism": 6.03e-07, - "millimetres": 6.03e-07, - "mim": 6.03e-07, - "misfortunes": 6.03e-07, - "mismatched": 6.03e-07, - "missus": 6.03e-07, - "miyazaki": 6.03e-07, - "moab": 6.03e-07, - "modernizing": 6.03e-07, - "moped": 6.03e-07, - "morrisons": 3.55e-07, - "moser": 6.03e-07, - "mountaineers": 6.03e-07, - "msf": 6.03e-07, - "mugging": 6.03e-07, - "multiplex": 6.03e-07, - "musica": 6.03e-07, - "nang": 6.03e-07, - "nar": 6.03e-07, - "nickels": 6.03e-07, - "nicol": 6.03e-07, - "noelle": 6.03e-07, - "ogrady": 6.03e-07, - "obstructions": 6.03e-07, - "odom": 6.03e-07, - "oktoberfest": 6.03e-07, - "oncologist": 6.03e-07, - "onside": 6.03e-07, - "opel": 6.03e-07, - "opiates": 6.03e-07, - "optimally": 6.03e-07, - "optionally": 6.03e-07, - "oscillating": 6.03e-07, - "outperformed": 6.03e-07, - "overlaid": 6.03e-07, - "overlapped": 6.03e-07, - "pamper": 6.03e-07, - "panacea": 6.03e-07, - "parc": 6.03e-07, - "parietal": 6.03e-07, - "parkes": 6.03e-07, - "patronizing": 6.03e-07, - "pauper": 6.03e-07, - "pedersen": 6.03e-07, - "peppered": 6.03e-07, - "pestilence": 6.03e-07, - "pews": 6.03e-07, - "pewter": 6.03e-07, - "philippa": 6.03e-07, - "philosophically": 6.03e-07, - "pineapples": 6.03e-07, - "pippin": 6.03e-07, - "pittsburg": 6.03e-07, - "plainfield": 6.03e-07, - "plenum": 6.03e-07, - "polygraph": 6.03e-07, - "popup": 6.03e-07, - "precipitate": 6.03e-07, - "principality": 6.03e-07, - "priori": 6.03e-07, - "pronged": 6.03e-07, - "proofing": 6.03e-07, - "propping": 6.03e-07, - "protease": 6.03e-07, - "proust": 6.03e-07, - "punchline": 6.03e-07, - "purges": 6.03e-07, - "px": 6.03e-07, - "queenstown": 6.03e-07, - "quintana": 6.03e-07, - "radish": 6.03e-07, - "rashad": 6.03e-07, - "rds": 6.03e-07, - "receded": 6.03e-07, - "reciprocate": 6.03e-07, - "recklessness": 6.03e-07, - "regenerating": 6.03e-07, - "remaking": 6.03e-07, - "repetitions": 6.03e-07, - "restock": 6.03e-07, - "restorations": 6.03e-07, - "retweets": 6.03e-07, - "reykjavik": 6.03e-07, - "rickie": 6.03e-07, - "roasts": 6.03e-07, - "rocha": 6.03e-07, - "rotunda": 6.03e-07, - "roundhouse": 6.03e-07, - "rowed": 6.03e-07, - "roys": 9.12e-08, - "rpi": 6.03e-07, - "rushmore": 6.03e-07, - "sanctioning": 6.03e-07, - "sativa": 6.03e-07, - "savour": 6.03e-07, - "sawing": 6.03e-07, - "scarab": 6.03e-07, - "schengen": 6.03e-07, - "scoff": 6.03e-07, - "scythe": 6.03e-07, - "searle": 6.03e-07, - "secretions": 6.03e-07, - "sedated": 6.03e-07, - "semper": 6.03e-07, - "sepia": 6.03e-07, - "severus": 6.03e-07, - "shaffer": 6.03e-07, - "shamans": 9.12e-08, - "shipley": 6.03e-07, - "shoveling": 6.03e-07, - "shs": 6.03e-07, - "silvers": 3.47e-07, - "sinaloa": 6.03e-07, - "sketchbook": 6.03e-07, - "skirting": 6.03e-07, - "slapstick": 6.03e-07, - "slinging": 6.03e-07, - "smythe": 6.03e-07, - "sourdough": 6.03e-07, - "spiking": 6.03e-07, - "spires": 6.03e-07, - "sprinters": 6.03e-07, - "sprouted": 6.03e-07, - "squirm": 6.03e-07, - "srt": 6.03e-07, - "staircases": 6.03e-07, - "stepdaughter": 6.03e-07, - "stm": 6.03e-07, - "stoney": 6.03e-07, - "strategists": 6.03e-07, - "stupendous": 6.03e-07, - "sunbathing": 6.03e-07, - "supercars": 6.03e-07, - "surrealism": 6.03e-07, - "surya": 6.03e-07, - "sys": 6.03e-07, - "tabitha": 6.03e-07, - "tabor": 6.03e-07, - "takashi": 6.03e-07, - "tarrant": 6.03e-07, - "tca": 6.03e-07, - "telepathic": 6.03e-07, - "telescopic": 6.03e-07, - "tellers": 1.12e-07, - "telstra": 6.03e-07, - "tenderly": 6.03e-07, - "termite": 6.03e-07, - "theron": 6.03e-07, - "thicke": 6.03e-07, - "thickens": 6.03e-07, - "thongs": 6.03e-07, - "thurs": 6.03e-07, - "tig": 6.03e-07, - "timetables": 6.03e-07, - "tortoises": 6.03e-07, - "transcriptional": 6.03e-07, - "transgenic": 6.03e-07, - "trimmer": 6.03e-07, - "trudy": 6.03e-07, - "twa": 6.03e-07, - "ucc": 6.03e-07, - "underscored": 6.03e-07, - "undiagnosed": 6.03e-07, - "unease": 6.03e-07, - "univision": 6.03e-07, - "unrequited": 6.03e-07, - "uptime": 6.03e-07, - "urinal": 6.03e-07, - "urls": 6.03e-07, - "usf": 6.03e-07, - "usurped": 6.03e-07, - "vagabond": 6.03e-07, - "vamos": 6.03e-07, - "vanuatu": 6.03e-07, - "varna": 6.03e-07, - "vaseline": 6.03e-07, - "vedas": 6.03e-07, - "vestiges": 6.03e-07, - "vipers": 8.32e-08, - "virtualization": 6.03e-07, - "visage": 6.03e-07, - "vk": 6.03e-07, - "warne": 6.03e-07, - "webcams": 6.03e-07, - "wechat": 6.03e-07, - "weeps": 6.03e-07, - "wel": 6.03e-07, - "wether": 6.03e-07, - "wham": 6.03e-07, - "wien": 6.03e-07, - "winked": 6.03e-07, - "woodville": 6.03e-07, - "woohoo": 6.03e-07, - "wook": 6.03e-07, - "writhing": 6.03e-07, - "wuhan": 6.03e-07, - "yardage": 6.03e-07, - "yg": 6.03e-07, - "yue": 6.03e-07, - "zeitung": 6.03e-07, - "zing": 6.03e-07, - "zumba": 6.03e-07, - "ablation": 5.89e-07, - "abo": 5.89e-07, - "accelerators": 5.89e-07, - "actuator": 5.89e-07, - "adkins": 5.89e-07, - "admirals": 1.95e-07, - "adrenalin": 5.89e-07, - "advertises": 5.89e-07, - "agribusiness": 5.89e-07, - "aguirre": 5.89e-07, - "aig": 5.89e-07, - "aja": 5.89e-07, - "aleksandr": 5.89e-07, - "algorithmic": 5.89e-07, - "alignments": 5.89e-07, - "alleviating": 5.89e-07, - "alsace": 5.89e-07, - "amass": 5.89e-07, - "amok": 5.89e-07, - "anatolia": 5.89e-07, - "androgen": 5.89e-07, - "angina": 5.89e-07, - "animating": 5.89e-07, - "anthologies": 5.89e-07, - "apolitical": 5.89e-07, - "apologist": 5.89e-07, - "appalachia": 5.89e-07, - "arcades": 5.89e-07, - "archeology": 5.89e-07, - "arian": 5.89e-07, - "asf": 5.89e-07, - "astrological": 5.89e-07, - "auger": 5.89e-07, - "ayala": 5.89e-07, - "babble": 5.89e-07, - "babs": 1.12e-08, - "baillie": 5.89e-07, - "balinese": 5.89e-07, - "bankruptcies": 5.89e-07, - "barman": 5.89e-07, - "barrows": 5.89e-08, - "baruch": 5.89e-07, - "beachfront": 5.89e-07, - "beatrix": 5.89e-07, - "beckman": 5.89e-07, - "berlusconi": 5.89e-07, - "bic": 5.89e-07, - "blighted": 5.89e-07, - "blinks": 1.74e-08, - "bloodborne": 5.89e-07, - "borrowings": 5.89e-07, - "botha": 5.89e-07, - "bottas": 5.89e-07, - "bouncers": 5.89e-07, - "brea": 5.89e-07, - "buoys": 5.89e-07, - "cady": 5.89e-07, - "camouflaged": 5.89e-07, - "cardi": 5.89e-07, - "carrera": 5.89e-07, - "cartesian": 5.89e-07, - "catalogued": 5.89e-07, - "catastrophes": 5.89e-07, - "cerberus": 5.89e-07, - "chalkboard": 5.89e-07, - "chantal": 5.89e-07, - "chappelle": 5.89e-07, - "charlestown": 5.89e-07, - "cheerios": 5.89e-07, - "chica": 5.89e-07, - "childress": 5.89e-07, - "chorizo": 5.89e-07, - "chubb": 5.89e-07, - "cockney": 5.89e-07, - "collated": 5.89e-07, - "comically": 5.89e-07, - "commoners": 5.89e-07, - "compiles": 5.89e-07, - "conde": 5.89e-07, - "conjoined": 5.89e-07, - "conservationists": 5.89e-07, - "controversially": 5.89e-07, - "credo": 5.89e-07, - "crevices": 5.89e-07, - "cri": 5.89e-07, - "critter": 5.89e-07, - "csc": 5.89e-07, - "culminates": 5.89e-07, - "cytoplasm": 5.89e-07, - "dap": 5.89e-07, - "darpa": 5.89e-07, - "ddr": 5.89e-07, - "deadbeat": 5.89e-07, - "debauchery": 5.89e-07, - "decrepit": 5.89e-07, - "dejected": 5.89e-07, - "democratization": 5.89e-07, - "denison": 5.89e-07, - "dented": 5.89e-07, - "deprecating": 5.89e-07, - "derided": 5.89e-07, - "designates": 5.89e-07, - "despatched": 5.89e-07, - "dimples": 5.89e-07, - "dirtiest": 5.89e-07, - "djibouti": 5.89e-07, - "domenico": 5.89e-07, - "driest": 5.89e-07, - "dubbing": 5.89e-07, - "dubuque": 5.89e-07, - "durbin": 5.89e-07, - "dweller": 5.89e-07, - "dynastic": 5.89e-07, - "edouard": 5.89e-07, - "eea": 5.89e-07, - "elan": 5.89e-07, - "elinor": 5.89e-07, - "elkins": 5.89e-07, - "elo": 5.89e-07, - "embarrassingly": 5.89e-07, - "embolism": 5.89e-07, - "enclose": 5.89e-07, - "entree": 5.89e-07, - "enzymatic": 5.89e-07, - "eradicating": 5.89e-07, - "esmeralda": 5.89e-07, - "esophageal": 5.89e-07, - "essen": 5.89e-07, - "euston": 5.89e-07, - "figueroa": 5.89e-07, - "firs": 5.89e-07, - "flashlights": 5.89e-07, - "flaunting": 5.89e-07, - "flavoring": 5.89e-07, - "flirtatious": 5.89e-07, - "flue": 5.89e-07, - "formulae": 5.89e-07, - "frankfort": 5.89e-07, - "frescoes": 5.89e-07, - "fuckery": 5.89e-07, - "furness": 5.89e-07, - "futurama": 5.89e-07, - "fwd": 5.89e-07, - "gam": 5.89e-07, - "gandhis": 5.89e-07, - "gatherer": 5.89e-07, - "generative": 5.89e-07, - "gentleness": 5.89e-07, - "ghouls": 5.89e-07, - "globalist": 5.89e-07, - "gnarly": 5.89e-07, - "gnostic": 5.89e-07, - "grassley": 5.89e-07, - "greenbelt": 5.89e-07, - "grier": 5.89e-07, - "griggs": 5.89e-07, - "guadalajara": 5.89e-07, - "handicrafts": 5.89e-07, - "haphazard": 5.89e-07, - "harrisons": 9.55e-08, - "haus": 5.89e-07, - "headliners": 5.89e-07, - "hempstead": 5.89e-07, - "hippos": 5.89e-07, - "hollande": 5.89e-07, - "huck": 5.89e-07, - "hyperion": 5.89e-07, - "hypersensitivity": 5.89e-07, - "inaccuracy": 5.89e-07, - "inadmissible": 5.89e-07, - "indecision": 5.89e-07, - "indomitable": 5.89e-07, - "infidel": 5.89e-07, - "inhabits": 5.89e-07, - "ini": 5.89e-07, - "inr": 5.89e-07, - "insemination": 5.89e-07, - "insinuating": 5.89e-07, - "inst": 5.89e-07, - "intelligible": 5.89e-07, - "intervenes": 5.89e-07, - "ionizing": 5.89e-07, - "irrevocably": 5.89e-07, - "islets": 5.89e-07, - "ivanov": 5.89e-07, - "jayden": 5.89e-07, - "jimbo": 5.89e-07, - "jocks": 5.89e-07, - "juba": 5.89e-07, - "judgemental": 5.89e-07, - "jurisdictional": 5.89e-07, - "kama": 5.89e-07, - "kenosha": 5.89e-07, - "kentuckys": 5.89e-07, - "kidnapper": 5.89e-07, - "kiran": 5.89e-07, - "knesset": 5.89e-07, - "krusty": 5.89e-07, - "krypton": 5.89e-07, - "kuan": 5.89e-07, - "kuo": 5.89e-07, - "lagrange": 5.89e-07, - "lapel": 5.89e-07, - "laverne": 5.89e-07, - "leaped": 5.89e-07, - "liao": 5.89e-07, - "lichen": 5.89e-07, - "liechtenstein": 5.89e-07, - "lindbergh": 5.89e-07, - "lino": 5.89e-07, - "litmus": 5.89e-07, - "llewellyn": 5.89e-07, - "longman": 5.89e-07, - "magellan": 5.89e-07, - "magnificently": 5.89e-07, - "magnify": 5.89e-07, - "malachi": 5.89e-07, - "marnie": 5.89e-07, - "marques": 5.89e-07, - "masha": 5.89e-07, - "matador": 5.89e-07, - "maxed": 5.89e-07, - "mccains": 5.89e-07, - "mcdougall": 5.89e-07, - "mcm": 5.89e-07, - "mda": 5.89e-07, - "meera": 5.89e-07, - "megatron": 5.89e-07, - "mehmet": 5.89e-07, - "mendel": 5.89e-07, - "meniscus": 5.89e-07, - "menthol": 5.89e-07, - "methodically": 5.89e-07, - "mightily": 5.89e-07, - "misjudged": 5.89e-07, - "miso": 5.89e-07, - "monotone": 5.89e-07, - "monstrosity": 5.89e-07, - "mordecai": 5.89e-07, - "moseley": 5.89e-07, - "mourns": 5.89e-07, - "mowed": 5.89e-07, - "mst": 5.89e-07, - "muskets": 5.89e-07, - "mutter": 5.89e-07, - "naismith": 5.89e-07, - "nationale": 5.89e-07, - "navigators": 5.89e-07, - "neb": 5.89e-07, - "netflixs": 5.89e-07, - "nineveh": 5.89e-07, - "nostril": 5.89e-07, - "notting": 5.89e-07, - "numeral": 5.89e-07, - "oddity": 5.89e-07, - "odious": 5.89e-07, - "odo": 5.89e-07, - "offbeat": 5.89e-07, - "officio": 5.89e-07, - "omb": 5.89e-07, - "omens": 5.89e-07, - "operandi": 5.89e-07, - "opie": 5.89e-07, - "opportunist": 5.89e-07, - "orifice": 5.89e-07, - "ornamentation": 5.89e-07, - "overcoat": 5.89e-07, - "overreaction": 5.89e-07, - "overused": 5.89e-07, - "pag": 5.89e-07, - "pah": 5.89e-07, - "painkiller": 5.89e-07, - "panchayat": 5.89e-07, - "pansy": 5.89e-07, - "parading": 5.89e-07, - "parte": 5.89e-07, - "parti": 5.89e-07, - "pathologists": 5.89e-07, - "patter": 5.89e-07, - "peerage": 5.89e-07, - "peirce": 5.89e-07, - "peloton": 5.89e-07, - "permissive": 5.89e-07, - "phrased": 5.89e-07, - "pieced": 5.89e-07, - "pittman": 5.89e-07, - "placate": 5.89e-07, - "ploughed": 5.89e-07, - "polynomials": 5.89e-07, - "posited": 5.89e-07, - "postsecondary": 5.89e-07, - "powdery": 5.89e-07, - "ppe": 5.89e-07, - "pram": 5.89e-07, - "prescriptive": 5.89e-07, - "preying": 5.89e-07, - "psst": 5.89e-07, - "purifying": 5.89e-07, - "puritans": 5.89e-07, - "pushback": 5.89e-07, - "quads": 5.89e-07, - "radicalized": 5.89e-07, - "ragnar": 5.89e-07, - "ramesh": 5.89e-07, - "rampart": 5.89e-07, - "rapporteur": 5.89e-07, - "rav": 5.89e-07, - "rcs": 5.89e-07, - "reaped": 5.89e-07, - "recesses": 5.89e-07, - "redeemable": 5.89e-07, - "redistribute": 5.89e-07, - "redistributed": 5.89e-07, - "refraction": 5.89e-07, - "reinvented": 5.89e-07, - "rejections": 5.89e-07, - "rejuvenated": 5.89e-07, - "reloading": 5.89e-07, - "reminiscences": 5.89e-07, - "remittances": 5.89e-07, - "remus": 5.89e-07, - "renewals": 5.89e-07, - "renter": 5.89e-07, - "revels": 5.89e-07, - "revolvers": 5.89e-07, - "ringside": 5.89e-07, - "rinsed": 5.89e-07, - "riverbank": 5.89e-07, - "rockingham": 5.89e-07, - "rog": 5.89e-07, - "ronin": 5.89e-07, - "roofed": 5.89e-07, - "rouen": 5.89e-07, - "rourke": 5.89e-07, - "rousey": 5.89e-07, - "rowers": 5.89e-07, - "sab": 5.89e-07, - "safes": 5.89e-07, - "saif": 5.89e-07, - "salma": 5.89e-07, - "sarkozy": 5.89e-07, - "scoundrel": 5.89e-07, - "scouted": 5.89e-07, - "sdi": 5.89e-07, - "seamstress": 5.89e-07, - "sevastopol": 5.89e-07, - "shifty": 5.89e-07, - "showman": 5.89e-07, - "sibley": 5.89e-07, - "siobhan": 5.89e-07, - "slacking": 5.89e-07, - "slashes": 5.89e-07, - "slob": 5.89e-07, - "sneezes": 5.89e-07, - "snubbed": 5.89e-07, - "sojourn": 5.89e-07, - "sounders": 5.89e-07, - "soured": 5.89e-07, - "sousa": 5.89e-07, - "southernmost": 5.89e-07, - "spitzer": 5.89e-07, - "splatter": 5.89e-07, - "sputnik": 5.89e-07, - "squirting": 5.89e-07, - "stanhope": 5.89e-07, - "stipulate": 5.89e-07, - "stipulations": 5.89e-07, - "straddle": 5.89e-07, - "subbing": 5.89e-07, - "sumter": 5.89e-07, - "suzie": 5.89e-07, - "swatches": 5.89e-07, - "sweeten": 5.89e-07, - "swinger": 5.89e-07, - "talib": 5.89e-07, - "tallies": 5.89e-07, - "talons": 5.89e-07, - "tawny": 5.89e-07, - "tbd": 5.89e-07, - "tenured": 5.89e-07, - "terriers": 5.89e-07, - "thereon": 5.89e-07, - "throwaway": 5.89e-07, - "thunderous": 5.89e-07, - "tiffanys": 5.89e-07, - "tigris": 5.89e-07, - "transcontinental": 5.89e-07, - "trims": 5.89e-07, - "trott": 5.89e-07, - "tui": 5.89e-07, - "tweezers": 5.89e-07, - "twerking": 5.89e-07, - "typographical": 5.89e-07, - "ubi": 5.89e-07, - "unbeknownst": 5.89e-07, - "unchained": 5.89e-07, - "unedited": 5.89e-07, - "unelected": 5.89e-07, - "unleashes": 5.89e-07, - "uplands": 5.89e-07, - "uppsala": 5.89e-07, - "upstanding": 5.89e-07, - "vallejo": 5.89e-07, - "vapors": 5.89e-07, - "verma": 5.89e-07, - "vertebra": 5.89e-07, - "viaduct": 5.89e-07, - "vino": 5.89e-07, - "voracious": 5.89e-07, - "warbler": 5.89e-07, - "wart": 5.89e-07, - "wasabi": 5.89e-07, - "waterworks": 5.89e-07, - "wettest": 5.89e-07, - "whammy": 5.89e-07, - "whedon": 5.89e-07, - "whines": 5.89e-07, - "whitechapel": 5.89e-07, - "wich": 5.89e-07, - "wilful": 5.89e-07, - "willa": 5.89e-07, - "wisconsins": 5.89e-07, - "wittgenstein": 5.89e-07, - "wolfsburg": 5.89e-07, - "wye": 5.89e-07, - "xia": 5.89e-07, - "yams": 5.89e-07, - "yorktown": 5.89e-07, - "yui": 5.89e-07, - "zeitgeist": 5.89e-07, - "aarons": 1.78e-07, - "abb": 5.75e-07, - "accentuate": 5.75e-07, - "adf": 5.75e-07, - "adipose": 5.75e-07, - "adjudication": 5.75e-07, - "adl": 5.75e-07, - "advices": 5.75e-07, - "affording": 5.75e-07, - "aggravation": 5.75e-07, - "aggregator": 5.75e-07, - "agua": 5.75e-07, - "ainsworth": 5.75e-07, - "airforce": 5.75e-07, - "ait": 5.75e-07, - "aldermen": 5.75e-07, - "alvarado": 5.75e-07, - "amazonian": 5.75e-07, - "aml": 5.75e-07, - "amorous": 5.75e-07, - "anabolic": 5.75e-07, - "andersson": 5.75e-07, - "anemic": 5.75e-07, - "anima": 5.75e-07, - "anointing": 5.75e-07, - "apologising": 5.75e-07, - "apostrophe": 5.75e-07, - "appellation": 5.75e-07, - "appendage": 5.75e-07, - "appendicitis": 5.75e-07, - "appropriateness": 5.75e-07, - "aquariums": 5.89e-08, - "artur": 5.75e-07, - "ary": 5.75e-07, - "ashleys": 5.75e-07, - "assads": 5.75e-07, - "autumnal": 5.75e-07, - "awash": 5.75e-07, - "backstreet": 5.75e-07, - "bagley": 5.75e-07, - "balling": 5.75e-07, - "bandai": 5.75e-07, - "banerjee": 5.75e-07, - "banishment": 5.75e-07, - "baptised": 5.75e-07, - "basra": 5.75e-07, - "bate": 5.75e-07, - "bawling": 5.75e-07, - "bayard": 5.75e-07, - "bayonets": 5.75e-07, - "beastly": 5.75e-07, - "becket": 5.75e-07, - "beetroot": 5.75e-07, - "berkley": 5.75e-07, - "beto": 5.75e-07, - "billys": 5.75e-07, - "bim": 5.75e-07, - "birdies": 5.75e-07, - "blockbusters": 5.75e-07, - "bluffing": 5.75e-07, - "bonita": 5.75e-07, - "bonjour": 5.75e-07, - "boomed": 5.75e-07, - "boson": 5.75e-07, - "brainchild": 5.75e-07, - "brawn": 5.75e-07, - "bridegroom": 5.75e-07, - "buh": 5.75e-07, - "bulwark": 5.75e-07, - "butthurt": 5.75e-07, - "candidly": 5.75e-07, - "cappella": 5.75e-07, - "capsized": 5.75e-07, - "carne": 5.75e-07, - "cartman": 5.75e-07, - "cec": 5.75e-07, - "chapo": 5.75e-07, - "chatsworth": 5.75e-07, - "chauncey": 5.75e-07, - "chien": 5.75e-07, - "chippewa": 5.75e-07, - "christa": 5.75e-07, - "ciara": 5.75e-07, - "ciudad": 5.75e-07, - "conciliatory": 5.75e-07, - "condensate": 5.75e-07, - "condiments": 5.75e-07, - "conferring": 5.75e-07, - "convening": 5.75e-07, - "correspondingly": 5.75e-07, - "corrigan": 5.75e-07, - "crit": 5.75e-07, - "crouched": 5.75e-07, - "crusoe": 5.75e-07, - "crybaby": 5.75e-07, - "culpability": 5.75e-07, - "cyberpunk": 5.75e-07, - "deflecting": 5.75e-07, - "desegregation": 5.75e-07, - "deserters": 5.75e-07, - "deservedly": 5.75e-07, - "devalued": 5.75e-07, - "digress": 5.75e-07, - "dijon": 5.75e-07, - "dinesh": 5.75e-07, - "disappoints": 5.75e-07, - "discus": 5.75e-07, - "distinctively": 5.75e-07, - "diverged": 5.75e-07, - "dla": 5.75e-07, - "dnr": 5.75e-07, - "doa": 5.75e-07, - "dryers": 5.75e-07, - "dumbarton": 5.75e-07, - "eatin": 5.75e-07, - "ece": 5.75e-07, - "eduard": 5.75e-07, - "elaborately": 5.75e-07, - "elevates": 5.75e-07, - "empathize": 5.75e-07, - "encrypt": 5.75e-07, - "endocrinology": 5.75e-07, - "energetically": 5.75e-07, - "energize": 5.75e-07, - "enix": 5.75e-07, - "entertains": 5.75e-07, - "estimator": 5.75e-07, - "excellently": 5.75e-07, - "exerts": 5.75e-07, - "extrusion": 5.75e-07, - "facades": 5.75e-07, - "fagan": 5.75e-07, - "farnham": 5.75e-07, - "felling": 5.75e-07, - "fester": 5.75e-07, - "feuding": 5.75e-07, - "flexed": 5.75e-07, - "flywheel": 5.75e-07, - "foams": 5.75e-07, - "foregone": 5.75e-07, - "foreshadowed": 5.75e-07, - "foreshadowing": 5.75e-07, - "formosa": 5.75e-07, - "fortnightly": 5.75e-07, - "fourths": 5.75e-07, - "freshest": 5.75e-07, - "fringed": 5.75e-07, - "ftse": 5.75e-07, - "fulcrum": 5.75e-07, - "funnels": 5.75e-07, - "furman": 5.75e-07, - "gaiman": 5.75e-07, - "galbraith": 5.75e-07, - "gallic": 5.75e-07, - "geddes": 5.75e-07, - "ghosh": 5.75e-07, - "gilliam": 5.75e-07, - "gilroy": 5.75e-07, - "ginseng": 5.75e-07, - "gnomes": 5.75e-07, - "goodrich": 5.75e-07, - "goodwood": 5.75e-07, - "gophers": 5.75e-07, - "goths": 5.75e-07, - "grandest": 5.75e-07, - "greeces": 5.75e-07, - "grimy": 5.75e-07, - "gsp": 5.75e-07, - "gung": 5.75e-07, - "gunter": 5.75e-07, - "hadid": 5.75e-07, - "hanukkah": 5.75e-07, - "hardball": 5.75e-07, - "hargreaves": 5.75e-07, - "harriman": 5.75e-07, - "hatcher": 5.75e-07, - "headstone": 5.75e-07, - "heil": 5.75e-07, - "herbicides": 5.75e-07, - "heterogeneity": 5.75e-07, - "hibiscus": 5.75e-07, - "hillman": 5.75e-07, - "hin": 5.75e-07, - "hitchens": 5.75e-07, - "hob": 5.75e-07, - "hwan": 5.75e-07, - "hyperactive": 5.75e-07, - "hysterectomy": 5.75e-07, - "iberia": 5.75e-07, - "icky": 5.75e-07, - "identically": 5.75e-07, - "immediacy": 5.75e-07, - "immunotherapy": 5.75e-07, - "improvising": 5.75e-07, - "inbreeding": 5.75e-07, - "incisive": 5.75e-07, - "inconspicuous": 5.75e-07, - "indebtedness": 5.75e-07, - "indentured": 5.75e-07, - "infiniti": 5.75e-07, - "inhabitant": 5.75e-07, - "inhospitable": 5.75e-07, - "inoperable": 5.75e-07, - "instigate": 5.75e-07, - "insufficiently": 5.75e-07, - "intercession": 5.75e-07, - "interferon": 5.75e-07, - "intersects": 5.75e-07, - "irrevocable": 5.75e-07, - "irritability": 5.75e-07, - "islet": 5.75e-07, - "israelite": 5.75e-07, - "ivoire": 5.75e-07, - "jaden": 5.75e-07, - "jaffe": 5.75e-07, - "janie": 5.75e-07, - "jefferies": 5.75e-07, - "jessicas": 5.75e-07, - "johansen": 5.75e-07, - "jonathon": 5.75e-07, - "juris": 5.75e-07, - "kaduna": 5.75e-07, - "kcal": 5.75e-07, - "ker": 5.75e-07, - "keychain": 5.75e-07, - "khorasan": 5.75e-07, - "kojima": 5.75e-07, - "kraus": 5.75e-07, - "kravitz": 5.75e-07, - "krieger": 5.75e-07, - "laity": 5.75e-07, - "landlocked": 5.75e-07, - "latterly": 5.75e-07, - "leaner": 5.75e-07, - "legos": 1.41e-07, - "leukaemia": 5.75e-07, - "leyte": 5.75e-07, - "licensure": 5.75e-07, - "lighthouses": 5.75e-07, - "lingua": 5.75e-07, - "lipton": 5.75e-07, - "llamas": 5.75e-07, - "lts": 7.24e-08, - "lucys": 5.75e-07, - "luminaries": 5.75e-07, - "lz": 5.75e-07, - "makings": 5.75e-07, - "maldonado": 5.75e-07, - "maleficent": 5.75e-07, - "maniacs": 5.75e-07, - "manifolds": 5.75e-07, - "maradona": 5.75e-07, - "marrakech": 5.75e-07, - "mauro": 5.75e-07, - "mcfly": 5.75e-07, - "mckinsey": 5.75e-07, - "mcl": 5.75e-07, - "medea": 5.75e-07, - "mek": 5.75e-07, - "mesmerized": 5.75e-07, - "midge": 5.75e-07, - "milked": 5.75e-07, - "minotaur": 5.75e-07, - "misfit": 5.75e-07, - "miu": 5.75e-07, - "moana": 5.75e-07, - "moorish": 5.75e-07, - "morgana": 5.75e-07, - "mosquitos": 5.62e-08, - "mottled": 5.75e-07, - "moulton": 5.75e-07, - "mountaineer": 5.75e-07, - "mountainside": 5.75e-07, - "mov": 5.75e-07, - "mucous": 5.75e-07, - "mulholland": 5.75e-07, - "murmuring": 5.75e-07, - "mvc": 5.75e-07, - "myer": 5.75e-07, - "mythos": 5.75e-07, - "naa": 5.75e-07, - "najib": 5.75e-07, - "nationalized": 5.75e-07, - "nca": 5.75e-07, - "neutrinos": 5.75e-07, - "nips": 5.75e-07, - "northside": 5.75e-07, - "nuevo": 5.75e-07, - "nus": 5.75e-07, - "nusra": 5.75e-07, - "obelisk": 5.75e-07, - "oddball": 5.75e-07, - "offload": 5.75e-07, - "ohios": 5.75e-07, - "osa": 5.75e-07, - "osteoarthritis": 5.75e-07, - "otago": 5.75e-07, - "outcrop": 5.75e-07, - "outlander": 5.75e-07, - "overestimated": 5.75e-07, - "overloading": 5.75e-07, - "overthrowing": 5.75e-07, - "oxfam": 5.75e-07, - "padua": 5.75e-07, - "pageants": 5.75e-07, - "paley": 5.75e-07, - "panning": 5.75e-07, - "pari": 5.75e-07, - "pariah": 5.75e-07, - "parka": 5.75e-07, - "parke": 5.75e-07, - "paton": 5.75e-07, - "peddle": 5.75e-07, - "peerless": 5.75e-07, - "pentium": 5.75e-07, - "permanence": 5.75e-07, - "permeable": 5.75e-07, - "personhood": 5.75e-07, - "pil": 5.75e-07, - "pillage": 5.75e-07, - "pistachio": 5.75e-07, - "planing": 5.75e-07, - "plebiscite": 5.75e-07, - "ploughing": 5.75e-07, - "poisson": 5.75e-07, - "polynesia": 5.75e-07, - "polyurethane": 5.75e-07, - "posit": 5.75e-07, - "poughkeepsie": 5.75e-07, - "precipice": 5.75e-07, - "presuming": 5.75e-07, - "puked": 5.75e-07, - "queued": 5.75e-07, - "quickie": 5.75e-07, - "rahim": 5.75e-07, - "raina": 5.75e-07, - "ralston": 5.75e-07, - "randi": 5.75e-07, - "ravages": 5.75e-07, - "ravenous": 5.75e-07, - "realy": 5.75e-07, - "rearranging": 5.75e-07, - "reclusive": 5.75e-07, - "reek": 5.75e-07, - "regenerated": 5.75e-07, - "regimens": 5.75e-07, - "reinhold": 5.75e-07, - "reinstall": 5.75e-07, - "rena": 5.75e-07, - "req": 5.75e-07, - "resold": 5.75e-07, - "rimmed": 5.75e-07, - "rind": 5.75e-07, - "riparian": 5.75e-07, - "risers": 5.75e-07, - "riverfront": 5.75e-07, - "rosebud": 5.75e-07, - "rtd": 5.75e-07, - "ruck": 5.75e-07, - "rumsfeld": 5.75e-07, - "runaways": 5.75e-07, - "salamander": 5.75e-07, - "santorum": 5.75e-07, - "sats": 8.13e-08, - "satya": 5.75e-07, - "scalpel": 5.75e-07, - "scraper": 5.75e-07, - "scribbled": 5.75e-07, - "scrutinize": 5.75e-07, - "seatbelts": 5.75e-07, - "sedate": 5.75e-07, - "sfa": 5.75e-07, - "shallower": 5.75e-07, - "shaves": 5.75e-07, - "sheeps": 1.55e-07, - "shou": 5.75e-07, - "shriek": 5.75e-07, - "simulates": 5.75e-07, - "singularly": 5.75e-07, - "sinkhole": 5.75e-07, - "skimpy": 5.75e-07, - "slavs": 5.75e-07, - "sloped": 5.75e-07, - "snore": 5.75e-07, - "solaris": 5.75e-07, - "sooners": 5.75e-07, - "sorceress": 5.75e-07, - "spaceflight": 5.75e-07, - "spe": 5.75e-07, - "spender": 5.75e-07, - "sphincter": 5.75e-07, - "spooks": 5.75e-07, - "squires": 5.01e-08, - "stalinist": 5.75e-07, - "stank": 5.75e-07, - "sternum": 5.75e-07, - "stockbroker": 5.75e-07, - "stoppers": 5.75e-07, - "storytellers": 5.75e-07, - "strachan": 5.75e-07, - "strangulation": 5.75e-07, - "stratification": 5.75e-07, - "stratified": 5.75e-07, - "streaked": 5.75e-07, - "stretchy": 5.75e-07, - "suckling": 5.75e-07, - "sucrose": 5.75e-07, - "suleiman": 5.75e-07, - "sundae": 5.75e-07, - "sundry": 5.75e-07, - "supercomputer": 5.75e-07, - "svetlana": 5.75e-07, - "swampy": 5.75e-07, - "synapse": 5.75e-07, - "tasking": 5.75e-07, - "tidings": 5.75e-07, - "toothache": 5.75e-07, - "tranquillity": 5.75e-07, - "transitive": 5.75e-07, - "trickling": 5.75e-07, - "trigonometry": 5.75e-07, - "trimmings": 5.75e-07, - "tupperware": 5.75e-07, - "tur": 5.75e-07, - "tutelage": 5.75e-07, - "twos": 5.25e-07, - "typhus": 5.75e-07, - "uhf": 5.75e-07, - "unaffiliated": 5.75e-07, - "unconscionable": 5.75e-07, - "underlines": 5.75e-07, - "unflattering": 5.75e-07, - "unrecognizable": 5.75e-07, - "unscheduled": 5.75e-07, - "unstructured": 5.75e-07, - "vagrant": 5.75e-07, - "veracruz": 5.75e-07, - "viacom": 5.75e-07, - "vidya": 5.75e-07, - "vlog": 5.75e-07, - "voiceless": 5.75e-07, - "volga": 5.75e-07, - "volgograd": 5.75e-07, - "waka": 5.75e-07, - "walkout": 5.75e-07, - "wands": 5.75e-07, - "wearables": 5.75e-07, - "whosoever": 5.75e-07, - "willamette": 5.75e-07, - "wimpy": 5.75e-07, - "woodman": 5.75e-07, - "wordplay": 5.75e-07, - "worthing": 5.75e-07, - "aarp": 5.62e-07, - "abou": 5.62e-07, - "abstractions": 5.62e-07, - "acceptor": 5.62e-07, - "acrobatics": 5.62e-07, - "aerobics": 5.62e-07, - "afd": 5.62e-07, - "alabamas": 5.62e-07, - "alertness": 5.62e-07, - "alleyway": 5.62e-07, - "amenity": 5.62e-07, - "angrier": 5.62e-07, - "antilles": 5.62e-07, - "arabella": 5.62e-07, - "arnhem": 5.62e-07, - "arno": 5.62e-07, - "ascribe": 5.62e-07, - "aso": 5.62e-07, - "athos": 5.62e-07, - "attenuated": 5.62e-07, - "atticus": 5.62e-07, - "atx": 5.62e-07, - "augusto": 5.62e-07, - "avenging": 5.62e-07, - "azerbaijani": 5.62e-07, - "backcountry": 5.62e-07, - "bandana": 5.62e-07, - "bangles": 5.62e-07, - "barbarism": 5.62e-07, - "bareback": 5.62e-07, - "battlefront": 5.62e-07, - "bcci": 5.62e-07, - "beaters": 5.62e-07, - "bennetts": 1.35e-07, - "berne": 5.62e-07, - "biddle": 5.62e-07, - "billet": 5.62e-07, - "binaries": 5.62e-07, - "blackmailing": 5.62e-07, - "blissfully": 5.62e-07, - "bloodied": 5.62e-07, - "bobbys": 5.62e-07, - "boneless": 5.62e-07, - "borealis": 5.62e-07, - "brainless": 5.62e-07, - "breadcrumbs": 5.62e-07, - "breathable": 5.62e-07, - "bridged": 5.62e-07, - "brightening": 5.62e-07, - "bristle": 5.62e-07, - "buffaloes": 5.62e-07, - "bulkhead": 5.62e-07, - "bund": 5.62e-07, - "bur": 5.62e-07, - "burglaries": 5.62e-07, - "cacti": 5.62e-07, - "canaries": 5.62e-07, - "carded": 5.62e-07, - "carpool": 5.62e-07, - "cashew": 5.62e-07, - "cashiers": 2.19e-07, - "cavernous": 5.62e-07, - "ccm": 5.62e-07, - "cece": 5.62e-07, - "chaff": 5.62e-07, - "changeable": 5.62e-07, - "chaperone": 5.62e-07, - "chlorophyll": 5.62e-07, - "chroma": 5.62e-07, - "claret": 5.62e-07, - "cloister": 5.62e-07, - "clothe": 5.62e-07, - "clutched": 5.62e-07, - "cochlear": 5.62e-07, - "coen": 5.62e-07, - "complainants": 6.31e-08, - "comps": 5.62e-07, - "concomitant": 5.62e-07, - "constipated": 5.62e-07, - "consults": 5.62e-07, - "consummated": 5.62e-07, - "contemplates": 5.62e-07, - "coppola": 5.62e-07, - "corby": 5.62e-07, - "creationism": 5.62e-07, - "credential": 5.62e-07, - "crump": 5.62e-07, - "crunches": 5.62e-07, - "csp": 5.62e-07, - "cthulhu": 5.62e-07, - "ctv": 5.62e-07, - "cubas": 5.62e-07, - "curiosities": 5.62e-07, - "cymbals": 5.62e-07, - "danforth": 5.62e-07, - "dannys": 5.62e-07, - "darkening": 5.62e-07, - "darrow": 5.62e-07, - "debs": 6.17e-08, - "debunking": 5.62e-07, - "decompose": 5.62e-07, - "ded": 5.62e-07, - "deepens": 5.62e-07, - "deformities": 5.62e-07, - "denier": 5.62e-07, - "denounces": 5.62e-07, - "destabilizing": 5.62e-07, - "detaining": 5.62e-07, - "determinism": 5.62e-07, - "dieu": 5.62e-07, - "digesting": 5.62e-07, - "dimmed": 5.62e-07, - "dingo": 5.62e-07, - "disaffected": 5.62e-07, - "disheartened": 5.62e-07, - "dispossessed": 5.62e-07, - "dissecting": 5.62e-07, - "dma": 5.62e-07, - "domicile": 5.62e-07, - "dominions": 5.37e-08, - "donts": 5.62e-07, - "donne": 5.62e-07, - "dreamland": 5.62e-07, - "dumbfounded": 5.62e-07, - "ecc": 5.62e-07, - "effie": 5.62e-07, - "effing": 5.62e-07, - "egotistical": 5.62e-07, - "elgar": 5.62e-07, - "elmore": 5.62e-07, - "emirate": 5.62e-07, - "encrusted": 5.62e-07, - "enticed": 5.62e-07, - "eph": 5.62e-07, - "erudite": 5.62e-07, - "estuaries": 5.62e-07, - "faintest": 5.62e-07, - "fasteners": 5.62e-07, - "fervour": 5.62e-07, - "fiends": 5.62e-07, - "finders": 6.92e-08, - "flattening": 5.62e-07, - "flirts": 5.62e-07, - "foursome": 5.62e-07, - "franchising": 5.62e-07, - "francophone": 5.62e-07, - "froth": 5.62e-07, - "furlough": 5.62e-07, - "galatians": 5.62e-07, - "galicia": 5.62e-07, - "galleria": 5.62e-07, - "gambled": 5.62e-07, - "garnering": 5.62e-07, - "gentlemens": 5.01e-08, - "ghettos": 5.62e-07, - "gnawing": 5.62e-07, - "growths": 5.62e-07, - "gru": 5.62e-07, - "guile": 5.62e-07, - "gurley": 5.62e-07, - "hallo": 5.62e-07, - "hallows": 5.62e-07, - "hamiltonian": 5.62e-07, - "hangovers": 5.62e-07, - "havre": 5.62e-07, - "heartedly": 5.62e-07, - "heft": 5.62e-07, - "henrique": 5.62e-07, - "hibs": 5.62e-07, - "hideaway": 5.62e-07, - "hilarity": 5.62e-07, - "hiller": 5.62e-07, - "hillsides": 5.62e-07, - "holyrood": 5.62e-07, - "homeworld": 5.62e-07, - "homey": 5.62e-07, - "hortons": 2e-07, - "ils": 1.07e-07, - "imparted": 5.62e-07, - "impersonate": 5.62e-07, - "impropriety": 5.62e-07, - "inactivation": 5.62e-07, - "incompatibility": 5.62e-07, - "infact": 5.62e-07, - "instalments": 5.62e-07, - "intermediates": 5.62e-07, - "interment": 5.62e-07, - "introverts": 5.62e-07, - "irked": 5.62e-07, - "ivor": 5.62e-07, - "jardin": 5.62e-07, - "jbl": 5.62e-07, - "jemima": 5.62e-07, - "jenni": 5.62e-07, - "joshs": 5.62e-07, - "json": 5.62e-07, - "junkyard": 5.62e-07, - "jurists": 5.62e-07, - "juxtaposed": 5.62e-07, - "kaufmann": 5.62e-07, - "kennels": 5.62e-07, - "keri": 5.62e-07, - "kingship": 5.62e-07, - "kinshasa": 5.62e-07, - "kourtney": 5.62e-07, - "laa": 5.62e-07, - "lando": 5.62e-07, - "larissa": 5.62e-07, - "launceston": 5.62e-07, - "legitimize": 5.62e-07, - "leif": 5.62e-07, - "lifelike": 5.62e-07, - "lilian": 5.62e-07, - "lioness": 5.62e-07, - "lobos": 5.62e-07, - "locates": 5.62e-07, - "loin": 5.62e-07, - "loire": 5.62e-07, - "longterm": 5.62e-07, - "loveable": 5.62e-07, - "lovey": 5.62e-07, - "lowndes": 5.62e-07, - "lyin": 5.62e-07, - "maastricht": 5.62e-07, - "machinist": 5.62e-07, - "mainz": 5.62e-07, - "mandible": 5.62e-07, - "manhole": 5.62e-07, - "margate": 5.62e-07, - "marginalised": 5.62e-07, - "marigold": 5.62e-07, - "marinade": 5.62e-07, - "marla": 5.62e-07, - "matted": 5.62e-07, - "mattis": 5.62e-07, - "mcarthur": 5.62e-07, - "mcclain": 5.62e-07, - "mccord": 5.62e-07, - "melancholic": 5.62e-07, - "merlot": 5.62e-07, - "methodists": 5.62e-07, - "metoo": 5.62e-07, - "michal": 5.62e-07, - "middlemen": 5.62e-07, - "mineralogy": 5.62e-07, - "minibus": 5.62e-07, - "misdemeanors": 5.62e-07, - "modifies": 5.62e-07, - "modulus": 5.62e-07, - "monarchies": 5.62e-07, - "monogamy": 5.62e-07, - "monotony": 5.62e-07, - "mopping": 5.62e-07, - "mormonism": 5.62e-07, - "mortally": 5.62e-07, - "moveable": 5.62e-07, - "multinationals": 5.62e-07, - "musculoskeletal": 5.62e-07, - "mut": 5.62e-07, - "myeloma": 5.62e-07, - "nast": 5.62e-07, - "natty": 5.62e-07, - "navies": 5.62e-07, - "neapolitan": 5.62e-07, - "nebulous": 5.62e-07, - "negated": 5.62e-07, - "neurotransmitters": 5.62e-07, - "newberry": 5.62e-07, - "nilsson": 5.62e-07, - "nok": 5.62e-07, - "nots": 5.62e-07, - "nozzles": 5.62e-07, - "nrg": 5.62e-07, - "nucleotides": 5.62e-07, - "nwa": 5.62e-07, - "oberlin": 5.62e-07, - "obscuring": 5.62e-07, - "occlusion": 5.62e-07, - "oliveira": 5.62e-07, - "opa": 5.62e-07, - "osgood": 5.62e-07, - "outlived": 5.62e-07, - "overdoses": 5.62e-07, - "paralegal": 5.62e-07, - "pared": 5.62e-07, - "payrolls": 5.62e-07, - "peckham": 5.62e-07, - "petersons": 7.76e-08, - "petrov": 5.62e-07, - "pieter": 5.62e-07, - "pikes": 1.78e-07, - "pim": 5.62e-07, - "pining": 5.62e-07, - "pinoy": 5.62e-07, - "piranha": 5.62e-07, - "pix": 5.62e-07, - "pocketed": 5.62e-07, - "ponte": 5.62e-07, - "posits": 5.62e-07, - "postmortem": 5.62e-07, - "postscript": 5.62e-07, - "prehistory": 5.62e-07, - "preterm": 5.62e-07, - "prismatic": 5.62e-07, - "prophesied": 5.62e-07, - "prototyping": 5.62e-07, - "prowl": 5.62e-07, - "psv": 5.62e-07, - "ptc": 5.62e-07, - "pugs": 5.62e-07, - "puja": 5.62e-07, - "punchy": 5.62e-07, - "purr": 5.62e-07, - "pussycat": 5.62e-07, - "quagmire": 5.62e-07, - "quaid": 5.62e-07, - "quash": 5.62e-07, - "rackets": 5.62e-07, - "radiates": 5.62e-07, - "rafe": 5.62e-07, - "rahm": 5.62e-07, - "railed": 5.62e-07, - "raindrops": 5.62e-07, - "rajesh": 5.62e-07, - "ransacked": 5.62e-07, - "readability": 5.62e-07, - "reba": 5.62e-07, - "recieve": 5.62e-07, - "recieved": 5.62e-07, - "reciprocated": 5.62e-07, - "redman": 5.62e-07, - "redox": 5.62e-07, - "reductive": 5.62e-07, - "refundable": 5.62e-07, - "reinvestment": 5.62e-07, - "remedied": 5.62e-07, - "renews": 5.62e-07, - "replaying": 5.62e-07, - "repose": 5.62e-07, - "reptilian": 5.62e-07, - "restful": 5.62e-07, - "retraining": 5.62e-07, - "rewrote": 5.62e-07, - "riccardo": 5.62e-07, - "ricochet": 5.62e-07, - "rifts": 5.62e-07, - "rishi": 5.62e-07, - "rona": 5.62e-07, - "rosh": 5.62e-07, - "rubric": 5.62e-07, - "savagely": 5.62e-07, - "scallop": 5.62e-07, - "scavengers": 5.62e-07, - "schoolmaster": 5.62e-07, - "schoolwork": 5.62e-07, - "scoffed": 5.62e-07, - "scoping": 5.62e-07, - "scoreline": 5.62e-07, - "searchers": 5.62e-07, - "seedling": 5.62e-07, - "setters": 5.62e-07, - "shaikh": 5.62e-07, - "shanty": 5.62e-07, - "shao": 5.62e-07, - "sharepoint": 5.62e-07, - "shat": 5.62e-07, - "sheba": 5.62e-07, - "sherri": 5.62e-07, - "shrew": 5.62e-07, - "shrimps": 5.62e-07, - "shush": 5.62e-07, - "signor": 5.62e-07, - "silencer": 5.62e-07, - "sind": 5.62e-07, - "singin": 5.62e-07, - "sited": 5.62e-07, - "slacker": 5.62e-07, - "sleight": 5.62e-07, - "smoldering": 5.62e-07, - "snowmobile": 5.62e-07, - "soapy": 5.62e-07, - "soloists": 5.62e-07, - "southgate": 5.62e-07, - "sovereigns": 7.76e-08, - "spaceships": 5.62e-07, - "spatially": 5.62e-07, - "spectroscopic": 5.62e-07, - "speedily": 5.62e-07, - "spidey": 5.62e-07, - "spiky": 5.62e-07, - "stilts": 5.62e-07, - "stoddard": 5.62e-07, - "stoning": 5.62e-07, - "stp": 5.62e-07, - "straddling": 5.62e-07, - "strikeout": 5.62e-07, - "styrofoam": 5.62e-07, - "subpoenaed": 5.62e-07, - "subprime": 5.62e-07, - "subtleties": 5.62e-07, - "succumbing": 5.62e-07, - "sulfuric": 5.62e-07, - "sunroof": 5.62e-07, - "suppresses": 5.62e-07, - "surabaya": 5.62e-07, - "surrealist": 5.62e-07, - "suspenseful": 5.62e-07, - "swartz": 5.62e-07, - "tallinn": 5.62e-07, - "tanked": 5.62e-07, - "tattooing": 5.62e-07, - "tbi": 5.62e-07, - "tchaikovsky": 5.62e-07, - "tcm": 5.62e-07, - "teleportation": 5.62e-07, - "temperamental": 5.62e-07, - "teutonic": 5.62e-07, - "thakur": 5.62e-07, - "thiel": 5.62e-07, - "tock": 5.62e-07, - "tolerating": 5.62e-07, - "toning": 5.62e-07, - "traditionalist": 5.62e-07, - "trickier": 5.62e-07, - "tripartite": 5.62e-07, - "trujillo": 5.62e-07, - "tsai": 5.62e-07, - "twirling": 5.62e-07, - "udp": 5.62e-07, - "ultima": 5.62e-07, - "understudy": 5.62e-07, - "unguarded": 5.62e-07, - "unionized": 5.62e-07, - "unscientific": 5.62e-07, - "untamed": 5.62e-07, - "uo": 5.62e-07, - "upa": 5.62e-07, - "usn": 5.62e-07, - "utilisation": 5.62e-07, - "venn": 5.62e-07, - "vermilion": 5.62e-07, - "vesicles": 5.62e-07, - "vfx": 5.62e-07, - "victorians": 5.62e-07, - "visualizing": 5.62e-07, - "vivien": 5.62e-07, - "vor": 5.62e-07, - "vps": 8.32e-08, - "wafers": 5.62e-07, - "waver": 5.62e-07, - "weaning": 5.62e-07, - "webbing": 5.62e-07, - "wehrmacht": 5.62e-07, - "whoosh": 5.62e-07, - "winifred": 5.62e-07, - "winterfell": 5.62e-07, - "wmd": 5.62e-07, - "wooing": 5.62e-07, - "workloads": 5.62e-07, - "wracking": 5.62e-07, - "wring": 5.62e-07, - "xenophon": 5.62e-07, - "yar": 5.62e-07, - "ypres": 5.62e-07, - "zipped": 5.62e-07, - "zorro": 5.62e-07, - "abduct": 5.5e-07, - "abolitionist": 5.5e-07, - "adama": 5.5e-07, - "adb": 5.5e-07, - "addie": 5.5e-07, - "aether": 5.5e-07, - "affluence": 5.5e-07, - "agave": 5.5e-07, - "alexey": 5.5e-07, - "algebras": 5.5e-07, - "alhambra": 5.5e-07, - "amicus": 5.5e-07, - "amritsar": 5.5e-07, - "andaman": 5.5e-07, - "apothecary": 5.5e-07, - "applauds": 5.5e-07, - "apricots": 5.5e-07, - "asbury": 5.5e-07, - "ashleigh": 5.5e-07, - "attica": 5.5e-07, - "authoring": 5.5e-07, - "ayer": 5.5e-07, - "backwoods": 5.5e-07, - "baddies": 5.5e-07, - "bagpipes": 5.5e-07, - "bainbridge": 5.5e-07, - "balsamic": 5.5e-07, - "bandcamp": 5.5e-07, - "barf": 5.5e-07, - "batten": 5.5e-07, - "beaks": 5.5e-07, - "beefy": 5.5e-07, - "benchmarking": 5.5e-07, - "benedictine": 5.5e-07, - "benitez": 5.5e-07, - "benning": 5.5e-07, - "berks": 5.5e-07, - "bernier": 5.5e-07, - "beseech": 5.5e-07, - "blackadder": 5.5e-07, - "blasters": 5.5e-07, - "bledsoe": 5.5e-07, - "boars": 1.05e-07, - "bodega": 5.5e-07, - "boing": 5.5e-07, - "bombard": 5.5e-07, - "bram": 5.5e-07, - "britannica": 5.5e-07, - "broads": 7.94e-08, - "brownlee": 5.5e-07, - "bru": 5.5e-07, - "buffon": 5.5e-07, - "butlers": 3.72e-07, - "camcorder": 5.5e-07, - "canola": 5.5e-07, - "casillas": 5.5e-07, - "casters": 5.5e-07, - "castrated": 5.5e-07, - "cav": 5.5e-07, - "cava": 5.5e-07, - "cbp": 5.5e-07, - "chapin": 5.5e-07, - "chipmunk": 5.5e-07, - "chronicling": 5.5e-07, - "chucking": 5.5e-07, - "chutney": 5.5e-07, - "claiborne": 5.5e-07, - "claires": 5.5e-07, - "cllr": 5.5e-07, - "cochin": 5.5e-07, - "coda": 5.5e-07, - "coders": 5.5e-07, - "coker": 5.5e-07, - "colluded": 5.5e-07, - "colonoscopy": 5.5e-07, - "commies": 5.5e-07, - "compaq": 5.5e-07, - "composting": 5.5e-07, - "conceiving": 5.5e-07, - "conciliation": 5.5e-07, - "concurred": 5.5e-07, - "conjugation": 5.5e-07, - "conklin": 5.5e-07, - "contreras": 5.5e-07, - "coombs": 5.5e-07, - "coos": 1.78e-08, - "corollary": 5.5e-07, - "couldn": 5.5e-07, - "counterbalance": 5.5e-07, - "courtiers": 5.5e-07, - "cringing": 5.5e-07, - "cui": 5.5e-07, - "culminate": 5.5e-07, - "customised": 5.5e-07, - "cuyahoga": 5.5e-07, - "cybercrime": 5.5e-07, - "cytochrome": 5.5e-07, - "czechoslovak": 5.5e-07, - "darien": 5.5e-07, - "defaced": 5.5e-07, - "deh": 5.5e-07, - "dendritic": 5.5e-07, - "deporting": 5.5e-07, - "desecration": 5.5e-07, - "destinies": 5.5e-07, - "devo": 5.5e-07, - "devos": 5.5e-07, - "didactic": 5.5e-07, - "diversifying": 5.5e-07, - "domestication": 5.5e-07, - "dominicans": 5.5e-07, - "dominick": 5.5e-07, - "donning": 5.5e-07, - "dorothea": 5.5e-07, - "drape": 5.5e-07, - "drax": 5.5e-07, - "drinkin": 5.5e-07, - "droplet": 5.5e-07, - "drunkard": 5.5e-07, - "dst": 5.5e-07, - "duds": 5.5e-07, - "dur": 5.5e-07, - "earp": 5.5e-07, - "electives": 5.5e-07, - "emphasising": 5.5e-07, - "enabler": 5.5e-07, - "endpoints": 5.5e-07, - "enforcers": 5.5e-07, - "engrossing": 5.5e-07, - "epistles": 5.5e-07, - "epithelium": 5.5e-07, - "ergonomics": 5.5e-07, - "erics": 5.5e-07, - "eugenie": 5.5e-07, - "eukaryotic": 5.5e-07, - "evaporates": 5.5e-07, - "evers": 5.5e-07, - "excitable": 5.5e-07, - "fanned": 5.5e-07, - "ferro": 5.5e-07, - "fes": 5.75e-08, - "fevers": 5.01e-08, - "flaring": 5.5e-07, - "flirtation": 5.5e-07, - "flor": 5.5e-07, - "fora": 5.5e-07, - "foresters": 5.5e-07, - "formulaic": 5.5e-07, - "frisky": 5.5e-07, - "funnily": 5.5e-07, - "garrisons": 8.51e-08, - "genesee": 5.5e-07, - "gerrymandering": 5.5e-07, - "ghibli": 5.5e-07, - "giulia": 5.5e-07, - "givers": 5.5e-07, - "glenda": 5.5e-07, - "glynn": 5.5e-07, - "gpl": 5.5e-07, - "gregorian": 5.5e-07, - "grisly": 5.5e-07, - "guesswork": 5.5e-07, - "gutting": 5.5e-07, - "gymnasts": 5.5e-07, - "haemorrhage": 5.5e-07, - "hairdressers": 7.59e-08, - "handpicked": 5.5e-07, - "handsets": 5.5e-07, - "harpercollins": 5.5e-07, - "hdl": 5.5e-07, - "hendry": 5.5e-07, - "herndon": 5.5e-07, - "hetero": 5.5e-07, - "hollows": 5.5e-07, - "homeostasis": 5.5e-07, - "homeschooling": 5.5e-07, - "huckleberry": 5.5e-07, - "hutt": 5.5e-07, - "iguana": 5.5e-07, - "impassable": 5.5e-07, - "impatiently": 5.5e-07, - "imprints": 5.5e-07, - "incinerator": 5.5e-07, - "inclinations": 5.5e-07, - "individualistic": 5.5e-07, - "init": 5.5e-07, - "innit": 5.5e-07, - "insolent": 5.5e-07, - "instituting": 5.5e-07, - "insulator": 5.5e-07, - "invert": 5.5e-07, - "invertebrate": 5.5e-07, - "iridium": 5.5e-07, - "irrefutable": 5.5e-07, - "ivo": 5.5e-07, - "jacobi": 5.5e-07, - "jameis": 5.5e-07, - "jammer": 5.5e-07, - "jewry": 5.5e-07, - "jnr": 5.5e-07, - "jovial": 5.5e-07, - "jupiters": 1.15e-07, - "justins": 5.5e-07, - "kbs": 5.5e-07, - "kde": 5.5e-07, - "kenobi": 5.5e-07, - "keynesian": 5.5e-07, - "kidnappings": 5.5e-07, - "kippur": 5.5e-07, - "kitts": 5.5e-07, - "kohn": 5.5e-07, - "korn": 5.5e-07, - "kristy": 5.5e-07, - "laine": 5.5e-07, - "lasso": 5.5e-07, - "lattes": 5.5e-07, - "launder": 5.5e-07, - "lauras": 5.5e-07, - "legislated": 5.5e-07, - "lemma": 5.5e-07, - "lexie": 5.5e-07, - "lian": 5.5e-07, - "lillie": 5.5e-07, - "loaders": 5.5e-07, - "lonsdale": 5.5e-07, - "lowkey": 5.5e-07, - "mahi": 5.5e-07, - "manatee": 5.5e-07, - "mansour": 5.5e-07, - "mcilroy": 5.5e-07, - "mdc": 5.5e-07, - "meehan": 5.5e-07, - "mesothelioma": 5.5e-07, - "mib": 5.5e-07, - "minnesotas": 5.5e-07, - "mire": 5.5e-07, - "mlp": 5.5e-07, - "modulate": 5.5e-07, - "moisturizing": 5.5e-07, - "molybdenum": 5.5e-07, - "moncton": 5.5e-07, - "morecambe": 5.5e-07, - "motocross": 5.5e-07, - "motorcade": 5.5e-07, - "motorcyclist": 5.5e-07, - "moya": 5.5e-07, - "murakami": 5.5e-07, - "mussel": 5.5e-07, - "namaste": 5.5e-07, - "nanotubes": 5.5e-07, - "ncc": 5.5e-07, - "necessitates": 5.5e-07, - "neue": 5.5e-07, - "nihilism": 5.5e-07, - "nonchalant": 5.5e-07, - "noob": 5.5e-07, - "ntsb": 5.5e-07, - "nyx": 5.5e-07, - "obispo": 5.5e-07, - "oilfield": 5.5e-07, - "opportune": 5.5e-07, - "oppressor": 5.5e-07, - "orcas": 5.5e-07, - "orchestration": 5.5e-07, - "osi": 5.5e-07, - "oth": 5.5e-07, - "ouija": 5.5e-07, - "palmyra": 5.5e-07, - "panamanian": 5.5e-07, - "parapet": 5.5e-07, - "patterning": 5.5e-07, - "pejorative": 5.5e-07, - "penalize": 5.5e-07, - "penning": 5.5e-07, - "penrose": 5.5e-07, - "perseus": 5.5e-07, - "petitioning": 5.5e-07, - "pgs": 5.5e-07, - "pharaohs": 2.75e-07, - "phonograph": 5.5e-07, - "piggyback": 5.5e-07, - "pinochet": 5.5e-07, - "planetarium": 5.5e-07, - "poli": 5.5e-07, - "polis": 1.32e-08, - "porches": 5.5e-07, - "portico": 5.5e-07, - "postures": 5.5e-07, - "powerlifting": 5.5e-07, - "ppd": 5.5e-07, - "pravda": 5.5e-07, - "premarital": 5.5e-07, - "procreation": 5.5e-07, - "projective": 5.5e-07, - "proteus": 5.5e-07, - "pyramidal": 5.5e-07, - "qq": 5.5e-07, - "quarks": 5.5e-07, - "quashed": 5.5e-07, - "queried": 5.5e-07, - "quidditch": 5.5e-07, - "quivering": 5.5e-07, - "radeon": 5.5e-07, - "raff": 5.5e-07, - "rainforests": 5.5e-07, - "ramblings": 5.5e-07, - "ramparts": 5.5e-07, - "rasa": 5.5e-07, - "rascals": 5.5e-07, - "rebooted": 5.5e-07, - "receivership": 5.5e-07, - "redd": 5.5e-07, - "redstone": 5.5e-07, - "redux": 5.5e-07, - "refills": 5.5e-07, - "replenished": 5.5e-07, - "replenishment": 5.5e-07, - "rhoda": 5.5e-07, - "riveted": 5.5e-07, - "rok": 5.5e-07, - "romantics": 5.5e-07, - "rosette": 5.5e-07, - "rouhani": 5.5e-07, - "rsi": 5.5e-07, - "sacs": 7.41e-08, - "sainsburys": 1.07e-07, - "saluting": 5.5e-07, - "sanguine": 5.5e-07, - "sav": 5.5e-07, - "saxophonist": 5.5e-07, - "scone": 5.5e-07, - "scs": 9.55e-08, - "seeping": 5.5e-07, - "sein": 5.5e-07, - "seminoles": 5.5e-07, - "serendipity": 5.5e-07, - "shareholding": 5.5e-07, - "shatner": 5.5e-07, - "shem": 5.5e-07, - "shim": 5.5e-07, - "shona": 5.5e-07, - "sian": 5.5e-07, - "smallville": 5.5e-07, - "solano": 5.5e-07, - "sophomores": 5.5e-07, - "soya": 5.5e-07, - "splattered": 5.5e-07, - "spr": 5.5e-07, - "squander": 5.5e-07, - "ssp": 5.5e-07, - "stalkers": 5.5e-07, - "stans": 3.16e-07, - "steen": 5.5e-07, - "steeple": 5.5e-07, - "sth": 5.5e-07, - "stig": 5.5e-07, - "stillborn": 5.5e-07, - "sturgis": 5.5e-07, - "superintendents": 1.32e-07, - "suspenders": 5.5e-07, - "suu": 5.5e-07, - "swerved": 5.5e-07, - "syndicates": 6.31e-08, - "tajik": 5.5e-07, - "tamer": 5.5e-07, - "taunted": 5.5e-07, - "taverns": 5.5e-07, - "tba": 5.5e-07, - "teasers": 5.5e-07, - "teds": 9.77e-08, - "teenaged": 5.5e-07, - "thaddeus": 5.5e-07, - "thematically": 5.5e-07, - "timescale": 5.5e-07, - "toc": 5.5e-07, - "toke": 5.5e-07, - "toting": 5.5e-07, - "trademarked": 5.5e-07, - "trampling": 5.5e-07, - "tramways": 5.5e-07, - "transcended": 5.5e-07, - "twit": 5.5e-07, - "uaw": 5.5e-07, - "unconcerned": 5.5e-07, - "underbelly": 5.5e-07, - "underfunded": 5.5e-07, - "underperforming": 5.5e-07, - "undp": 5.5e-07, - "unlisted": 5.5e-07, - "unpredictability": 5.5e-07, - "uti": 5.5e-07, - "venezuelas": 5.5e-07, - "ventricle": 5.5e-07, - "vichy": 5.5e-07, - "vieira": 5.5e-07, - "vietnams": 5.5e-07, - "vittorio": 5.5e-07, - "vulva": 5.5e-07, - "wahlberg": 5.5e-07, - "waistband": 5.5e-07, - "wap": 5.5e-07, - "warhammer": 5.5e-07, - "wayland": 5.5e-07, - "welker": 5.5e-07, - "whistled": 5.5e-07, - "wikimedia": 5.5e-07, - "winless": 5.5e-07, - "wipeout": 5.5e-07, - "wizardry": 5.5e-07, - "woollen": 5.5e-07, - "wooster": 5.5e-07, - "wyman": 5.5e-07, - "xrp": 5.5e-07, - "yamada": 5.5e-07, - "yuen": 5.5e-07, - "zanu": 5.5e-07, - "zonal": 5.5e-07, - "abatement": 5.37e-07, - "accentuated": 5.37e-07, - "acidification": 5.37e-07, - "acropolis": 5.37e-07, - "adaption": 5.37e-07, - "aer": 5.37e-07, - "agi": 5.37e-07, - "ahoy": 5.37e-07, - "aix": 5.37e-07, - "ako": 5.37e-07, - "allo": 5.37e-07, - "alston": 5.37e-07, - "alva": 5.37e-07, - "amiga": 5.37e-07, - "amplifying": 5.37e-07, - "anatoly": 5.37e-07, - "anns": 6.46e-08, - "anorexic": 5.37e-07, - "anthropomorphic": 5.37e-07, - "aprons": 5.37e-07, - "archiving": 5.37e-07, - "arif": 5.37e-07, - "armoury": 5.37e-07, - "aro": 5.37e-07, - "arraigned": 5.37e-07, - "artichoke": 5.37e-07, - "attendances": 5.37e-07, - "autonomic": 5.37e-07, - "avignon": 5.37e-07, - "awh": 5.37e-07, - "baboon": 5.37e-07, - "baca": 5.37e-07, - "backfield": 5.37e-07, - "bahadur": 5.37e-07, - "bakes": 5.37e-07, - "balled": 5.37e-07, - "bally": 5.37e-07, - "bandung": 5.37e-07, - "barnum": 5.37e-07, - "bba": 5.37e-07, - "beaux": 5.37e-07, - "beeps": 5.37e-07, - "begotten": 5.37e-07, - "beleaguered": 5.37e-07, - "bennie": 5.37e-07, - "berlins": 5.37e-07, - "bicarbonate": 5.37e-07, - "bigg": 5.37e-07, - "biome": 5.37e-07, - "birthed": 5.37e-07, - "boarder": 5.37e-07, - "boardman": 5.37e-07, - "bollinger": 5.37e-07, - "boudoir": 5.37e-07, - "bough": 5.37e-07, - "bounding": 5.37e-07, - "bowery": 5.37e-07, - "browned": 5.37e-07, - "brunner": 5.37e-07, - "bse": 5.37e-07, - "capo": 5.37e-07, - "carls": 8.51e-08, - "casio": 5.37e-07, - "catalyzed": 5.37e-07, - "categorised": 5.37e-07, - "caterer": 5.37e-07, - "cay": 5.37e-07, - "celibate": 5.37e-07, - "chancel": 5.37e-07, - "chekhov": 5.37e-07, - "chiming": 5.37e-07, - "chivas": 5.37e-07, - "christendom": 5.37e-07, - "cmdr": 5.37e-07, - "cockburn": 5.37e-07, - "coltrane": 5.37e-07, - "commonality": 5.37e-07, - "congratulates": 5.37e-07, - "congratulation": 5.37e-07, - "congratulatory": 5.37e-07, - "conlon": 5.37e-07, - "conquers": 5.37e-07, - "contactless": 5.37e-07, - "continuance": 5.37e-07, - "cooney": 5.37e-07, - "cordless": 5.37e-07, - "costumed": 5.37e-07, - "countrywide": 5.37e-07, - "cre": 5.37e-07, - "creepers": 5.37e-07, - "crony": 5.37e-07, - "cru": 5.37e-07, - "cryptographic": 5.37e-07, - "csm": 5.37e-07, - "dabbled": 5.37e-07, - "daffodils": 5.37e-07, - "dalian": 5.37e-07, - "danbury": 5.37e-07, - "dartmoor": 5.37e-07, - "darwinism": 5.37e-07, - "deadwood": 5.37e-07, - "deceleration": 5.37e-07, - "defaulting": 5.37e-07, - "denmarks": 5.37e-07, - "dennys": 1.07e-07, - "detergents": 5.37e-07, - "deva": 5.37e-07, - "developmentally": 5.37e-07, - "dhl": 5.37e-07, - "dickheads": 5.37e-07, - "dicky": 5.37e-07, - "diffused": 5.37e-07, - "dint": 8.32e-08, - "dioceses": 5.37e-07, - "disagreeable": 5.37e-07, - "disapproving": 5.37e-07, - "disembodied": 5.37e-07, - "dishonored": 5.37e-07, - "dockyard": 5.37e-07, - "doctored": 5.37e-07, - "duffel": 5.37e-07, - "dumbo": 5.37e-07, - "ecole": 5.37e-07, - "efron": 5.37e-07, - "eindhoven": 5.37e-07, - "elektra": 5.37e-07, - "emaciated": 5.37e-07, - "emcee": 5.37e-07, - "endoscopy": 5.37e-07, - "envied": 5.37e-07, - "epps": 5.37e-07, - "ergonomic": 5.37e-07, - "especial": 5.37e-07, - "estradiol": 5.37e-07, - "exemplify": 5.37e-07, - "fanaticism": 5.37e-07, - "fattening": 5.37e-07, - "feller": 5.37e-07, - "fifi": 5.37e-07, - "fillets": 5.37e-07, - "fingernail": 5.37e-07, - "fireside": 5.37e-07, - "fis": 1.02e-07, - "fishman": 5.37e-07, - "fissures": 5.37e-07, - "fisted": 5.37e-07, - "flinging": 5.37e-07, - "floodplain": 5.37e-07, - "foodies": 5.37e-07, - "franchisees": 5.37e-07, - "freemasonry": 5.37e-07, - "fugue": 5.37e-07, - "funders": 5.37e-07, - "garber": 5.37e-07, - "gateshead": 5.37e-07, - "gelding": 5.37e-07, - "gerardo": 5.37e-07, - "gibsons": 1e-07, - "gj": 5.37e-07, - "glandular": 5.37e-07, - "glaser": 5.37e-07, - "glean": 5.37e-07, - "gliders": 5.37e-07, - "glo": 5.37e-07, - "golding": 5.37e-07, - "greenspan": 5.37e-07, - "growls": 5.37e-07, - "guerre": 5.37e-07, - "gutsy": 5.37e-07, - "hafiz": 5.37e-07, - "haim": 5.37e-07, - "handiwork": 5.37e-07, - "handjob": 5.37e-07, - "handlebars": 5.37e-07, - "hangouts": 5.37e-07, - "hastened": 5.37e-07, - "hoff": 5.37e-07, - "holtz": 5.37e-07, - "homelands": 6.17e-08, - "homicidal": 5.37e-07, - "hovers": 5.37e-07, - "hurrying": 5.37e-07, - "hyacinth": 5.37e-07, - "hydroxy": 5.37e-07, - "ichi": 5.37e-07, - "ici": 5.37e-07, - "imitates": 5.37e-07, - "impersonator": 5.37e-07, - "ince": 5.37e-07, - "indi": 5.37e-07, - "inez": 5.37e-07, - "intergenerational": 5.37e-07, - "intricately": 5.37e-07, - "invigorating": 5.37e-07, - "inwardly": 5.37e-07, - "ise": 5.37e-07, - "italic": 5.37e-07, - "jac": 5.37e-07, - "jarrod": 5.37e-07, - "javed": 5.37e-07, - "jenson": 5.37e-07, - "jfc": 5.37e-07, - "jie": 5.37e-07, - "jure": 5.37e-07, - "kanes": 5.37e-08, - "keira": 5.37e-07, - "khyber": 5.37e-07, - "kilkenny": 5.37e-07, - "kimura": 5.37e-07, - "kochi": 5.37e-07, - "kroos": 5.37e-07, - "laban": 5.37e-07, - "laguardia": 5.37e-07, - "lallana": 5.37e-07, - "lanky": 5.37e-07, - "lar": 5.37e-07, - "lawrie": 5.37e-07, - "linebackers": 5.37e-07, - "loitering": 5.37e-07, - "lookalike": 5.37e-07, - "loveless": 5.37e-07, - "lurid": 5.37e-07, - "luzon": 5.37e-07, - "lviv": 5.37e-07, - "malays": 5.37e-07, - "marconi": 5.37e-07, - "marti": 5.37e-07, - "memoriam": 5.37e-07, - "merited": 5.37e-07, - "mesquite": 5.37e-07, - "metcalfe": 5.37e-07, - "microns": 5.37e-07, - "misnomer": 5.37e-07, - "mmorpg": 5.37e-07, - "mobilisation": 5.37e-07, - "mobsters": 5.37e-07, - "modulator": 5.37e-07, - "molest": 5.37e-07, - "monetization": 5.37e-07, - "morgantown": 5.37e-07, - "mountaintop": 5.37e-07, - "mournful": 5.37e-07, - "mrt": 5.37e-07, - "muh": 5.37e-07, - "mullah": 5.37e-07, - "mumbled": 5.37e-07, - "muscled": 5.37e-07, - "nagy": 5.37e-07, - "neeson": 5.37e-07, - "nettles": 5.37e-07, - "nicked": 5.37e-07, - "nodules": 5.37e-07, - "nuttall": 5.37e-07, - "nws": 5.37e-07, - "oba": 5.37e-07, - "obstinate": 5.37e-07, - "oddities": 5.37e-07, - "ontological": 5.37e-07, - "opined": 5.37e-07, - "optimisation": 5.37e-07, - "opts": 5.37e-07, - "oreos": 5.37e-07, - "orphanages": 5.37e-07, - "ospreys": 5.37e-07, - "outbuildings": 5.37e-07, - "overrule": 5.37e-07, - "ozark": 5.37e-07, - "pacify": 5.37e-07, - "pales": 5.37e-07, - "paraffin": 5.37e-07, - "pds": 1.26e-07, - "peculiarities": 5.37e-07, - "pere": 5.37e-07, - "periodontal": 5.37e-07, - "peruse": 5.37e-07, - "petulant": 5.37e-07, - "phenomenology": 5.37e-07, - "philology": 5.37e-07, - "pinus": 5.37e-07, - "piqued": 5.37e-07, - "pis": 1.32e-07, - "platitudes": 5.37e-07, - "pleated": 5.37e-07, - "pled": 5.37e-07, - "pnp": 5.37e-07, - "pointedly": 5.37e-07, - "pollinators": 5.37e-07, - "polygons": 5.37e-07, - "powerball": 5.37e-07, - "pretence": 5.37e-07, - "priyanka": 5.37e-07, - "progressions": 5.37e-07, - "psl": 5.37e-07, - "psychotherapist": 5.37e-07, - "pum": 5.37e-07, - "punctuality": 5.37e-07, - "purring": 5.37e-07, - "puttin": 5.37e-07, - "rashes": 5.37e-07, - "rath": 5.37e-07, - "reade": 5.37e-07, - "reals": 9.77e-08, - "rebuffed": 5.37e-07, - "recuperate": 5.37e-07, - "remi": 5.37e-07, - "renoir": 5.37e-07, - "retweet": 5.37e-07, - "revoking": 5.37e-07, - "rigidly": 5.37e-07, - "ripening": 5.37e-07, - "riskier": 5.37e-07, - "rivets": 5.37e-07, - "roblox": 5.37e-07, - "rollo": 5.37e-07, - "rots": 5.37e-07, - "ryanair": 5.37e-07, - "salina": 5.37e-07, - "salome": 5.37e-07, - "sandpaper": 5.37e-07, - "sandstorm": 5.37e-07, - "scepter": 5.37e-07, - "scorch": 5.37e-07, - "scribble": 5.37e-07, - "scurvy": 5.37e-07, - "searchlight": 5.37e-07, - "sentries": 5.37e-07, - "sharpie": 5.37e-07, - "shayne": 5.37e-07, - "sheena": 5.37e-07, - "sheeting": 5.37e-07, - "shipwrecked": 5.37e-07, - "shudders": 5.37e-07, - "sickened": 5.37e-07, - "silverado": 5.37e-07, - "singaporeans": 5.37e-07, - "singly": 5.37e-07, - "sitters": 5.13e-08, - "skyrocketing": 5.37e-07, - "smc": 5.37e-07, - "softbank": 5.37e-07, - "sot": 5.37e-07, - "soweto": 5.37e-07, - "sported": 5.37e-07, - "spotlights": 5.37e-07, - "squealing": 5.37e-07, - "stallions": 5.37e-07, - "stannis": 5.37e-07, - "starcraft": 5.37e-07, - "stiletto": 5.37e-07, - "stipe": 5.37e-07, - "stockpiling": 5.37e-07, - "stooge": 5.37e-07, - "strep": 5.37e-07, - "stringing": 5.37e-07, - "subjugation": 5.37e-07, - "sunnis": 5.37e-07, - "supermans": 5.37e-07, - "surrogacy": 5.37e-07, - "tamworth": 5.37e-07, - "tangential": 5.37e-07, - "teardrop": 5.37e-07, - "tera": 5.37e-07, - "theseus": 5.37e-07, - "thieving": 5.37e-07, - "toews": 5.37e-07, - "toga": 5.37e-07, - "toiletries": 5.37e-07, - "tommys": 5.37e-07, - "toolbar": 5.37e-07, - "tpa": 5.37e-07, - "transference": 5.37e-07, - "transphobic": 5.37e-07, - "traverses": 5.37e-07, - "tribulation": 5.37e-07, - "trill": 5.37e-07, - "twisty": 5.37e-07, - "tye": 5.37e-07, - "unchanging": 5.37e-07, - "unfunded": 5.37e-07, - "universality": 5.37e-07, - "universidad": 5.37e-07, - "unmet": 5.37e-07, - "unsteady": 5.37e-07, - "untied": 5.37e-07, - "unturned": 5.37e-07, - "uplink": 5.37e-07, - "vaccinate": 5.37e-07, - "vax": 5.37e-07, - "veered": 5.37e-07, - "vestibule": 5.37e-07, - "vestry": 5.37e-07, - "vigo": 5.37e-07, - "vitaly": 5.37e-07, - "voluptuous": 5.37e-07, - "vx": 5.37e-07, - "wagering": 5.37e-07, - "watchin": 5.37e-07, - "weasley": 5.37e-07, - "weevil": 5.37e-07, - "whatevers": 6.76e-08, - "whirling": 5.37e-07, - "whitlock": 5.37e-07, - "windham": 5.37e-07, - "winehouse": 5.37e-07, - "wintry": 5.37e-07, - "worshipers": 5.37e-07, - "wycombe": 5.37e-07, - "xe": 5.37e-07, - "xing": 5.37e-07, - "yas": 5.25e-08, - "yow": 5.37e-07, - "zealots": 5.37e-07, - "zim": 5.37e-07, - "abubakar": 5.25e-07, - "acadia": 5.25e-07, - "acetyl": 5.25e-07, - "achievers": 5.25e-07, - "acrobat": 5.25e-07, - "actuators": 5.25e-07, - "afi": 5.25e-07, - "agora": 5.25e-07, - "aldershot": 5.25e-07, - "algarve": 5.25e-07, - "allende": 5.25e-07, - "alumina": 5.25e-07, - "ambien": 5.25e-07, - "amicably": 5.25e-07, - "amiibo": 5.25e-07, - "amphibian": 5.25e-07, - "amputee": 5.25e-07, - "analogues": 5.25e-07, - "anchovies": 5.25e-07, - "anjali": 5.25e-07, - "annies": 6.61e-08, - "apu": 5.25e-07, - "ashtray": 5.25e-07, - "asics": 5.25e-07, - "askew": 5.25e-07, - "assoc": 5.25e-07, - "assyria": 5.25e-07, - "astana": 5.25e-07, - "athenians": 5.25e-07, - "attendee": 5.25e-07, - "authenticate": 5.25e-07, - "aviva": 5.25e-07, - "awoken": 5.25e-07, - "backline": 5.25e-07, - "backtrack": 5.25e-07, - "bada": 5.25e-07, - "baffle": 5.25e-07, - "baguio": 5.25e-07, - "balk": 5.25e-07, - "banquets": 5.25e-07, - "batavia": 5.25e-07, - "beckons": 5.25e-07, - "belles": 1.86e-07, - "bested": 5.25e-07, - "bicep": 5.25e-07, - "bioshock": 5.25e-07, - "bligh": 5.25e-07, - "bloating": 5.25e-07, - "bodybuilders": 5.25e-07, - "boulton": 5.25e-07, - "braintree": 5.25e-07, - "braised": 5.25e-07, - "breakups": 5.25e-07, - "brecht": 5.25e-07, - "brest": 5.25e-07, - "buckland": 5.25e-07, - "bulimia": 5.25e-07, - "burrowing": 5.25e-07, - "buyback": 5.25e-07, - "byes": 5.25e-07, - "caltech": 5.25e-07, - "campion": 5.25e-07, - "canter": 5.25e-07, - "cantilever": 5.25e-07, - "caressing": 5.25e-07, - "carpal": 5.25e-07, - "cdl": 5.25e-07, - "cem": 5.25e-07, - "cements": 5.25e-07, - "cfm": 5.25e-07, - "chalked": 5.25e-07, - "chans": 6.61e-08, - "cheetos": 5.25e-07, - "cine": 5.25e-07, - "clevelands": 5.25e-07, - "cloaks": 5.25e-07, - "cnt": 5.25e-07, - "coastguard": 5.25e-07, - "coasting": 5.25e-07, - "cobble": 5.25e-07, - "coc": 5.25e-07, - "colonisation": 5.25e-07, - "conduits": 5.25e-07, - "conferencing": 5.25e-07, - "contaminating": 5.25e-07, - "convulsions": 5.25e-07, - "copernicus": 5.25e-07, - "cornbread": 5.25e-07, - "corso": 5.25e-07, - "corwin": 5.25e-07, - "costas": 2e-07, - "cqc": 5.25e-07, - "creamed": 5.25e-07, - "creeped": 5.25e-07, - "cronulla": 5.25e-07, - "crowbar": 5.25e-07, - "crowell": 5.25e-07, - "crudely": 5.25e-07, - "cuisines": 5.25e-07, - "cytoplasmic": 5.25e-07, - "dca": 5.25e-07, - "deakin": 5.25e-07, - "dedicates": 5.25e-07, - "deleterious": 5.25e-07, - "delft": 5.25e-07, - "delineated": 5.25e-07, - "demeanour": 5.25e-07, - "depressants": 5.25e-07, - "desiree": 5.25e-07, - "detritus": 5.25e-07, - "dillard": 5.25e-07, - "dimple": 5.25e-07, - "disengagement": 5.25e-07, - "dishing": 5.25e-07, - "disintegrating": 5.25e-07, - "disown": 5.25e-07, - "disproved": 5.25e-07, - "distilleries": 5.25e-07, - "distilling": 5.25e-07, - "distorts": 5.25e-07, - "divinely": 5.25e-07, - "dorky": 5.25e-07, - "dormer": 5.25e-07, - "downplayed": 5.25e-07, - "driftwood": 5.25e-07, - "drivel": 5.25e-07, - "durga": 5.25e-07, - "dyslexic": 5.25e-07, - "dystopia": 5.25e-07, - "eateries": 5.25e-07, - "eda": 5.25e-07, - "effeminate": 5.25e-07, - "eldon": 5.25e-07, - "electrolysis": 5.25e-07, - "embarks": 5.25e-07, - "emotionless": 5.25e-07, - "emphysema": 5.25e-07, - "endometriosis": 5.25e-07, - "entitles": 5.25e-07, - "eritrean": 5.25e-07, - "etta": 5.25e-07, - "euthanized": 5.25e-07, - "excision": 5.25e-07, - "exogenous": 5.25e-07, - "expandable": 5.25e-07, - "extractor": 5.25e-07, - "faerie": 5.25e-07, - "faulted": 5.25e-07, - "fel": 5.25e-07, - "ferrets": 5.25e-07, - "fet": 5.25e-07, - "fillies": 5.25e-07, - "fleshed": 5.25e-07, - "foresaw": 5.25e-07, - "foreskin": 5.25e-07, - "friendlier": 5.25e-07, - "futurist": 5.25e-07, - "gabbana": 5.25e-07, - "gaffney": 5.25e-07, - "gagas": 5.25e-07, - "ganja": 5.25e-07, - "genial": 5.25e-07, - "geophysics": 5.25e-07, - "gerd": 5.25e-07, - "gibb": 5.25e-07, - "givenchy": 5.25e-07, - "goalless": 5.25e-07, - "gogo": 5.25e-07, - "gooch": 5.25e-07, - "gra": 5.25e-07, - "grafted": 5.25e-07, - "gti": 5.25e-07, - "gulliver": 5.25e-07, - "gunnery": 5.25e-07, - "gurion": 5.25e-07, - "hairdo": 5.25e-07, - "haitians": 5.25e-07, - "hala": 5.25e-07, - "hallucinating": 5.25e-07, - "hardie": 5.25e-07, - "harrell": 5.25e-07, - "headlong": 5.25e-07, - "herrick": 5.25e-07, - "hesitating": 5.25e-07, - "heuristic": 5.25e-07, - "hick": 5.25e-07, - "hombre": 5.25e-07, - "homology": 5.25e-07, - "hopefuls": 5.25e-07, - "hopi": 5.25e-07, - "howes": 1.26e-07, - "humerus": 5.25e-07, - "hunky": 5.25e-07, - "hypertrophy": 5.25e-07, - "iceman": 5.25e-07, - "incestuous": 5.25e-07, - "iniquity": 5.25e-07, - "initiator": 5.25e-07, - "inman": 5.25e-07, - "innovating": 5.25e-07, - "interviewees": 5.25e-07, - "ironclad": 5.25e-07, - "jabbar": 5.25e-07, - "jacobsen": 5.25e-07, - "jalen": 5.25e-07, - "johnathan": 5.25e-07, - "joiner": 5.25e-07, - "jonathans": 5.25e-07, - "jordy": 5.25e-07, - "kavanagh": 5.25e-07, - "kaz": 5.25e-07, - "kearns": 5.25e-07, - "keepin": 5.25e-07, - "kiddies": 5.25e-07, - "kilimanjaro": 5.25e-07, - "kirchner": 5.25e-07, - "kon": 5.25e-07, - "kristi": 5.25e-07, - "kwame": 5.25e-07, - "lactate": 5.25e-07, - "landers": 5.01e-08, - "lansdowne": 5.25e-07, - "lapped": 5.25e-07, - "lather": 5.25e-07, - "leaching": 5.25e-07, - "ledges": 5.25e-07, - "leed": 5.25e-07, - "linde": 5.25e-07, - "loathed": 5.25e-07, - "lovelace": 5.25e-07, - "luge": 5.25e-07, - "lumberjack": 5.25e-07, - "lunchbox": 5.25e-07, - "lye": 5.25e-07, - "madsen": 5.25e-07, - "mahmood": 5.25e-07, - "mahmud": 5.25e-07, - "manmade": 5.25e-07, - "marauders": 5.25e-07, - "mccaffrey": 5.25e-07, - "mci": 5.25e-07, - "meld": 5.25e-07, - "mended": 5.25e-07, - "mendelssohn": 5.25e-07, - "mettle": 5.25e-07, - "militancy": 5.25e-07, - "molars": 5.25e-07, - "monochromatic": 5.25e-07, - "motherly": 5.25e-07, - "moulin": 5.25e-07, - "munchies": 5.25e-07, - "muni": 5.25e-07, - "munson": 5.25e-07, - "nannies": 5.25e-07, - "narayan": 5.25e-07, - "navarre": 5.25e-07, - "nhk": 5.25e-07, - "nhtsa": 5.25e-07, - "nightstand": 5.25e-07, - "noh": 5.25e-07, - "northernmost": 5.25e-07, - "notifies": 5.25e-07, - "npp": 5.25e-07, - "ntsc": 5.25e-07, - "nunavut": 5.25e-07, - "officiated": 5.25e-07, - "okey": 5.25e-07, - "optically": 5.25e-07, - "orgs": 5.25e-07, - "ouster": 5.25e-07, - "outdo": 5.25e-07, - "outlive": 5.25e-07, - "oxymoron": 5.25e-07, - "palmetto": 5.25e-07, - "pastels": 5.25e-07, - "patronize": 5.25e-07, - "paulina": 5.25e-07, - "pfa": 5.25e-07, - "phelan": 5.25e-07, - "phonological": 5.25e-07, - "pinkerton": 5.25e-07, - "pinkish": 5.25e-07, - "pissy": 5.25e-07, - "plundering": 5.25e-07, - "poa": 5.25e-07, - "polymorphism": 5.25e-07, - "pontoon": 5.25e-07, - "postoperative": 5.25e-07, - "powershell": 5.25e-07, - "prescribes": 5.25e-07, - "pretrial": 5.25e-07, - "primus": 5.25e-07, - "probationary": 5.25e-07, - "professorship": 5.25e-07, - "promontory": 5.25e-07, - "proportioned": 5.25e-07, - "prozac": 5.25e-07, - "psychics": 1.86e-08, - "pushkin": 5.25e-07, - "pygmy": 5.25e-07, - "pym": 5.25e-07, - "quakes": 5.25e-07, - "quarrying": 5.25e-07, - "quin": 5.25e-07, - "rada": 5.25e-07, - "raines": 5.25e-07, - "ramones": 5.25e-07, - "raytheon": 5.25e-07, - "rearrangement": 5.25e-07, - "rearview": 5.25e-07, - "refocus": 5.25e-07, - "regains": 5.25e-07, - "registries": 5.25e-07, - "relevancy": 5.25e-07, - "renegotiate": 5.25e-07, - "rensselaer": 5.25e-07, - "resurfacing": 5.25e-07, - "rik": 5.25e-07, - "riven": 5.25e-07, - "roan": 5.25e-07, - "rodrigues": 5.25e-07, - "rumi": 5.25e-07, - "rusting": 5.25e-07, - "rustle": 5.25e-07, - "sabina": 5.25e-07, - "saluted": 5.25e-07, - "sanborn": 5.25e-07, - "sarcoma": 5.25e-07, - "schooler": 5.25e-07, - "schweitzer": 5.25e-07, - "secretarial": 5.25e-07, - "secrete": 5.25e-07, - "senegalese": 5.25e-07, - "sik": 5.25e-07, - "skids": 5.25e-07, - "slytherin": 5.25e-07, - "smb": 5.25e-07, - "snarling": 5.25e-07, - "snatches": 5.25e-07, - "spillway": 5.25e-07, - "spiro": 5.25e-07, - "splintered": 5.25e-07, - "sriracha": 5.25e-07, - "stadia": 5.25e-07, - "standardize": 5.25e-07, - "stanzas": 5.25e-07, - "stetson": 5.25e-07, - "stigmatized": 5.25e-07, - "stormwater": 5.25e-07, - "strapless": 5.25e-07, - "stupor": 5.25e-07, - "subcontractor": 5.25e-07, - "summerslam": 5.25e-07, - "susanne": 5.25e-07, - "svp": 5.25e-07, - "swinton": 5.25e-07, - "sx": 5.25e-07, - "systolic": 5.25e-07, - "takeda": 5.25e-07, - "tanking": 5.25e-07, - "tanzanian": 5.25e-07, - "tarantula": 5.25e-07, - "tern": 5.25e-07, - "tetra": 5.25e-07, - "thinned": 5.25e-07, - "thot": 5.25e-07, - "tightrope": 5.25e-07, - "tink": 5.25e-07, - "toasty": 5.25e-07, - "towne": 5.25e-07, - "trailblazer": 5.25e-07, - "trainings": 5.62e-08, - "translocation": 5.25e-07, - "treasuries": 5.25e-07, - "trepidation": 5.25e-07, - "trumbull": 5.25e-07, - "turkmen": 5.25e-07, - "tutored": 5.25e-07, - "typified": 5.25e-07, - "unanticipated": 5.25e-07, - "unblock": 5.25e-07, - "unionism": 5.25e-07, - "unsavory": 5.25e-07, - "unselfish": 5.25e-07, - "unsound": 5.25e-07, - "unverified": 5.25e-07, - "unwashed": 5.25e-07, - "urination": 5.25e-07, - "utterance": 5.25e-07, - "valedictorian": 5.25e-07, - "verso": 5.25e-07, - "vibrational": 5.25e-07, - "vicariously": 5.25e-07, - "vila": 5.25e-07, - "vl": 5.25e-07, - "vms": 5.25e-07, - "voided": 5.25e-07, - "volumetric": 5.25e-07, - "vom": 5.25e-07, - "vroom": 5.25e-07, - "wagers": 5.25e-07, - "walther": 5.25e-07, - "wapo": 5.25e-07, - "waterbury": 5.25e-07, - "wav": 5.25e-07, - "wean": 5.25e-07, - "weezer": 5.25e-07, - "welling": 5.25e-07, - "wexford": 5.25e-07, - "whisked": 5.25e-07, - "wilfrid": 5.25e-07, - "wimp": 5.25e-07, - "wir": 5.25e-07, - "workhorse": 5.25e-07, - "wristbands": 5.25e-07, - "yachting": 5.25e-07, - "yeovil": 5.25e-07, - "yeung": 5.25e-07, - "zeroes": 5.25e-07, - "zooms": 5.25e-07, - "aaah": 5.13e-07, - "aang": 5.13e-07, - "abrahams": 3.16e-07, - "absorber": 5.13e-07, - "accenture": 5.13e-07, - "adjourn": 5.13e-07, - "airliners": 5.13e-07, - "aku": 5.13e-07, - "alabaster": 5.13e-07, - "allegro": 5.13e-07, - "allergens": 5.13e-07, - "allianz": 5.13e-07, - "anaesthesia": 5.13e-07, - "andros": 5.13e-07, - "approximations": 5.13e-07, - "aquifers": 5.13e-07, - "arching": 5.13e-07, - "arf": 5.13e-07, - "arrhythmia": 5.13e-07, - "arsed": 5.13e-07, - "backlinks": 5.13e-07, - "baddest": 5.13e-07, - "bahraini": 5.13e-07, - "bandaged": 5.13e-07, - "barak": 5.13e-07, - "barium": 5.13e-07, - "bauxite": 5.13e-07, - "befall": 5.13e-07, - "behead": 5.13e-07, - "bellied": 5.13e-07, - "beretta": 5.13e-07, - "bergeron": 5.13e-07, - "bestsellers": 5.13e-07, - "beyonces": 5.13e-07, - "biofuel": 5.13e-07, - "biometrics": 5.13e-07, - "bladed": 5.13e-07, - "blenheim": 5.13e-07, - "blindsided": 5.13e-07, - "bloodlines": 5.13e-07, - "blowback": 5.13e-07, - "boathouse": 5.13e-07, - "bogut": 5.13e-07, - "bonfires": 5.13e-07, - "brickwork": 5.13e-07, - "britten": 5.13e-07, - "brooms": 5.13e-07, - "buchan": 5.13e-07, - "burnaby": 5.13e-07, - "calumet": 5.13e-07, - "cana": 5.13e-07, - "cardamom": 5.13e-07, - "cargill": 5.13e-07, - "carrion": 5.13e-07, - "casks": 5.13e-07, - "catherines": 6.46e-08, - "cellist": 5.13e-07, - "cham": 5.13e-07, - "chard": 5.13e-07, - "charmer": 5.13e-07, - "chewbacca": 5.13e-07, - "choctaw": 5.13e-07, - "chrissie": 5.13e-07, - "churchills": 5.13e-08, - "cif": 5.13e-07, - "clickbait": 5.13e-07, - "closings": 5.13e-07, - "cmt": 5.13e-07, - "cobwebs": 5.13e-07, - "cogent": 5.13e-07, - "collaborates": 5.13e-07, - "collages": 5.13e-07, - "colonels": 1.82e-07, - "comprehensible": 5.13e-07, - "compressing": 5.13e-07, - "condense": 5.13e-07, - "condescension": 5.13e-07, - "corkscrew": 5.13e-07, - "corporates": 5.13e-07, - "counsels": 2.82e-07, - "cour": 5.13e-07, - "creamer": 5.13e-07, - "creases": 5.13e-07, - "cribs": 5.13e-07, - "croissants": 5.13e-07, - "cse": 5.13e-07, - "curveball": 5.13e-07, - "custodians": 5.13e-07, - "cyan": 5.13e-07, - "danica": 5.13e-07, - "dantes": 2.04e-07, - "dbz": 5.13e-07, - "delves": 5.13e-07, - "derozan": 5.13e-07, - "deserter": 5.13e-07, - "dewar": 5.13e-07, - "dhawan": 5.13e-07, - "dictation": 5.13e-07, - "diction": 5.13e-07, - "dink": 5.13e-07, - "disbursement": 5.13e-07, - "disguising": 5.13e-07, - "dishonour": 5.13e-07, - "dissociative": 5.13e-07, - "diverging": 5.13e-07, - "dodds": 6.17e-08, - "dodson": 5.13e-07, - "dorn": 5.13e-07, - "dua": 5.13e-07, - "dunstan": 5.13e-07, - "durations": 5.13e-07, - "earpiece": 5.13e-07, - "edf": 5.13e-07, - "edwina": 5.13e-07, - "eee": 5.13e-07, - "elegy": 5.13e-07, - "elia": 5.13e-07, - "emf": 5.13e-07, - "encircling": 5.13e-07, - "ene": 5.13e-07, - "entitle": 5.13e-07, - "entomologist": 5.13e-07, - "ephesus": 5.13e-07, - "epidermis": 5.13e-07, - "epinephrine": 5.13e-07, - "erections": 5.13e-07, - "escalators": 5.13e-07, - "ethiopians": 5.13e-07, - "evacuees": 5.13e-07, - "evens": 1.17e-08, - "evs": 5.25e-08, - "faeces": 5.13e-07, - "faltering": 5.13e-07, - "femmes": 5.13e-07, - "fictions": 7.24e-08, - "finalizing": 5.13e-07, - "fiver": 5.13e-07, - "flabby": 5.13e-07, - "floodgates": 5.13e-07, - "floorboards": 5.13e-07, - "fluctuated": 5.13e-07, - "fluctuates": 5.13e-07, - "folic": 5.13e-07, - "fornication": 5.13e-07, - "fortuna": 5.13e-07, - "frailty": 5.13e-07, - "freiburg": 5.13e-07, - "fricking": 5.13e-07, - "frieda": 5.13e-07, - "friendliest": 5.13e-07, - "frowning": 5.13e-07, - "ful": 5.13e-07, - "futsal": 5.13e-07, - "gaggle": 5.13e-07, - "gauging": 5.13e-07, - "gazebo": 5.13e-07, - "geary": 5.13e-07, - "gees": 8.71e-08, - "germaine": 5.13e-07, - "girder": 5.13e-07, - "gol": 5.13e-07, - "golly": 5.13e-07, - "gonorrhea": 5.13e-07, - "gopal": 5.13e-07, - "gots": 5.13e-07, - "gouge": 5.13e-07, - "goulburn": 5.13e-07, - "greenock": 5.13e-07, - "gregarious": 5.13e-07, - "grenville": 5.13e-07, - "gretel": 5.13e-07, - "grosse": 5.13e-07, - "grunting": 5.13e-07, - "haden": 5.13e-07, - "halibut": 5.13e-07, - "halley": 5.13e-07, - "halloran": 5.13e-07, - "hama": 5.13e-07, - "hanford": 5.13e-07, - "hawaiis": 5.13e-07, - "hein": 5.13e-07, - "hemispheres": 5.75e-08, - "herder": 5.13e-07, - "herefordshire": 5.13e-07, - "hillsboro": 5.13e-07, - "himachal": 5.13e-07, - "himalaya": 5.13e-07, - "histone": 5.13e-07, - "hmong": 5.13e-07, - "hocking": 5.13e-07, - "holi": 5.13e-07, - "holiest": 5.13e-07, - "holograms": 5.13e-07, - "holotype": 5.13e-07, - "hospitalised": 5.13e-07, - "hudsons": 5.37e-08, - "hydrant": 5.13e-07, - "icao": 5.13e-07, - "ignites": 5.13e-07, - "immortalized": 5.13e-07, - "immunodeficiency": 5.13e-07, - "incidences": 5.13e-07, - "inconveniences": 5.13e-07, - "incrementally": 5.13e-07, - "incubators": 5.13e-07, - "indiegogo": 5.13e-07, - "inefficiencies": 5.13e-07, - "infusions": 5.13e-07, - "injunctions": 5.13e-07, - "inlaid": 5.13e-07, - "invents": 5.13e-07, - "jaundice": 5.13e-07, - "jayson": 5.13e-07, - "jeffs": 1.78e-07, - "jeon": 5.13e-07, - "jewelers": 7.76e-08, - "jihadis": 5.13e-07, - "joyfully": 5.13e-07, - "judeo": 5.13e-07, - "kap": 5.13e-07, - "kasper": 5.13e-07, - "kibbutz": 5.13e-07, - "kiefer": 5.13e-07, - "kilns": 5.13e-07, - "klm": 5.13e-07, - "knightley": 5.13e-07, - "kowalski": 5.13e-07, - "kya": 5.13e-07, - "larynx": 5.13e-07, - "lassie": 5.13e-07, - "laurens": 4.37e-07, - "lavigne": 5.13e-07, - "lawrences": 5.13e-07, - "lewiss": 5.13e-07, - "lewiston": 5.13e-07, - "lifter": 5.13e-07, - "lightbulb": 5.13e-07, - "lithography": 5.13e-07, - "loathsome": 5.13e-07, - "lode": 5.13e-07, - "loggers": 5.13e-07, - "loins": 5.13e-07, - "madonnas": 9.12e-08, - "magnitudes": 5.13e-07, - "maharaja": 5.13e-07, - "managements": 2.14e-07, - "manipulates": 5.13e-07, - "martell": 5.13e-07, - "marwan": 5.13e-07, - "marylands": 5.13e-07, - "masterson": 5.13e-07, - "matriarch": 5.13e-07, - "mauve": 5.13e-07, - "mccaskill": 5.13e-07, - "mcclelland": 5.13e-07, - "mcdavid": 5.13e-07, - "mcewen": 5.13e-07, - "meir": 5.13e-07, - "mellor": 5.13e-07, - "mera": 5.13e-07, - "messis": 5.13e-07, - "microfilm": 5.13e-07, - "mitts": 5.13e-07, - "modems": 5.13e-07, - "modicum": 5.13e-07, - "montagu": 5.13e-07, - "montclair": 5.13e-07, - "moreton": 5.13e-07, - "motorbikes": 5.13e-07, - "mouthwash": 5.13e-07, - "mowbray": 5.13e-07, - "mrc": 5.13e-07, - "mrsa": 5.13e-07, - "mss": 5.13e-07, - "mujahideen": 5.13e-07, - "multipliers": 5.13e-07, - "murat": 5.13e-07, - "nathans": 6.46e-08, - "nationalization": 5.13e-07, - "nauseating": 5.13e-07, - "neff": 5.13e-07, - "negan": 5.13e-07, - "nettle": 5.13e-07, - "newry": 5.13e-07, - "newtonian": 5.13e-07, - "normans": 3.55e-07, - "oakes": 5.13e-07, - "oldman": 5.13e-07, - "oli": 5.13e-07, - "olin": 5.13e-07, - "omits": 5.13e-07, - "omniscient": 5.13e-07, - "ona": 5.13e-07, - "opengl": 5.13e-07, - "oreal": 5.13e-07, - "oren": 5.13e-07, - "origination": 5.13e-07, - "ossetia": 5.13e-07, - "overdosed": 5.13e-07, - "overpopulation": 5.13e-07, - "overran": 5.13e-07, - "overshadow": 5.13e-07, - "pacer": 5.13e-07, - "pancras": 5.13e-07, - "paroled": 5.13e-07, - "partaking": 5.13e-07, - "parvati": 5.13e-07, - "patriarchs": 5.13e-07, - "paulsen": 5.13e-07, - "pavilions": 5.13e-07, - "pcm": 5.13e-07, - "peacocks": 8.32e-08, - "pedicure": 5.13e-07, - "pheromone": 5.13e-07, - "philistines": 5.13e-07, - "phish": 5.13e-07, - "placard": 5.13e-07, - "plutarch": 5.13e-07, - "polyps": 5.13e-07, - "postgame": 5.13e-07, - "postmodernism": 5.13e-07, - "pothole": 5.13e-07, - "potting": 5.13e-07, - "preconceptions": 5.13e-07, - "presides": 5.13e-07, - "primeval": 5.13e-07, - "procrastinate": 5.13e-07, - "promiscuity": 5.13e-07, - "provisioning": 5.13e-07, - "puddings": 5.13e-07, - "purplish": 5.13e-07, - "rabbinic": 5.13e-07, - "rabin": 5.13e-07, - "rakes": 5.13e-07, - "ranching": 5.13e-07, - "raqqa": 5.13e-07, - "rationalization": 5.13e-07, - "ravel": 5.13e-07, - "reachable": 5.13e-07, - "reaffirms": 5.13e-07, - "reappears": 5.13e-07, - "reardon": 5.13e-07, - "rebelling": 5.13e-07, - "recede": 5.13e-07, - "reciprocating": 5.13e-07, - "reductase": 5.13e-07, - "reestablish": 5.13e-07, - "reintroduce": 5.13e-07, - "reintroduction": 5.13e-07, - "rekindle": 5.13e-07, - "relapsed": 5.13e-07, - "relented": 5.13e-07, - "reposition": 5.13e-07, - "reproduces": 5.13e-07, - "reverts": 5.13e-07, - "revulsion": 5.13e-07, - "rhs": 5.13e-07, - "richelieu": 5.13e-07, - "ricos": 5.13e-07, - "rinsing": 5.13e-07, - "rly": 5.13e-07, - "rocknroll": 7.08e-08, - "rosenstein": 5.13e-07, - "roxbury": 5.13e-07, - "rtl": 5.13e-07, - "rubicon": 5.13e-07, - "safeties": 5.13e-07, - "samaritans": 1.02e-07, - "sanctified": 5.13e-07, - "sandalwood": 5.13e-07, - "sandberg": 5.13e-07, - "sanding": 5.13e-07, - "savant": 5.13e-07, - "scape": 5.13e-07, - "schoolgirls": 5.13e-07, - "sco": 5.13e-07, - "scrawny": 5.13e-07, - "seabirds": 5.13e-07, - "sear": 5.13e-07, - "sequins": 5.13e-07, - "seri": 5.13e-07, - "shabab": 5.13e-07, - "shackled": 5.13e-07, - "shoreditch": 5.13e-07, - "slop": 5.13e-07, - "smothering": 5.13e-07, - "smp": 5.13e-07, - "solvency": 5.13e-07, - "sommer": 5.13e-07, - "sophies": 5.13e-07, - "spyware": 5.13e-07, - "stade": 5.13e-07, - "stamens": 5.13e-07, - "stepmom": 5.13e-07, - "stevenage": 5.13e-07, - "stewie": 5.13e-07, - "stockbridge": 5.13e-07, - "stocky": 5.13e-07, - "stoll": 5.13e-07, - "straus": 5.13e-07, - "strutting": 5.13e-07, - "subsidence": 5.13e-07, - "subtracted": 5.13e-07, - "sullen": 5.13e-07, - "sump": 5.13e-07, - "superconducting": 5.13e-07, - "supervises": 5.13e-07, - "swirls": 5.13e-07, - "symbiosis": 5.13e-07, - "sympathise": 5.13e-07, - "synchronize": 5.13e-07, - "taffy": 5.13e-07, - "tantalizing": 5.13e-07, - "taos": 8.51e-08, - "tarek": 5.13e-07, - "targaryen": 5.13e-07, - "taster": 5.13e-07, - "teacup": 5.13e-07, - "technicalities": 5.13e-07, - "tectonics": 5.13e-07, - "teo": 5.13e-07, - "tepid": 5.13e-07, - "terrifies": 5.13e-07, - "testes": 5.13e-07, - "thatch": 5.13e-07, - "thawed": 5.13e-07, - "thicken": 5.13e-07, - "thornhill": 5.13e-07, - "throated": 5.13e-07, - "thumbnails": 5.13e-07, - "ticketmaster": 5.13e-07, - "tko": 5.13e-07, - "tmc": 5.13e-07, - "tmi": 5.13e-07, - "toa": 5.13e-07, - "tol": 5.13e-07, - "towson": 5.13e-07, - "tripe": 5.13e-07, - "trippin": 5.13e-07, - "tristram": 5.13e-07, - "trotted": 5.13e-07, - "troughs": 5.13e-07, - "tweeter": 5.13e-07, - "twinning": 5.13e-07, - "typewriters": 5.13e-07, - "unabated": 5.13e-07, - "unafraid": 5.13e-07, - "unambiguously": 5.13e-07, - "underpinnings": 5.13e-07, - "unearned": 5.13e-07, - "unenforceable": 5.13e-07, - "uninhabitable": 5.13e-07, - "unread": 5.13e-07, - "unsaturated": 5.13e-07, - "unsurpassed": 5.13e-07, - "urns": 5.13e-07, - "vadim": 5.13e-07, - "validates": 5.13e-07, - "valparaiso": 5.13e-07, - "vancouvers": 5.13e-07, - "vats": 5.13e-07, - "vaulting": 5.13e-07, - "vcs": 5.62e-08, - "venerated": 5.13e-07, - "vere": 5.13e-07, - "waisted": 5.13e-07, - "waiving": 5.13e-07, - "waldron": 5.13e-07, - "wandsworth": 5.13e-07, - "waring": 5.13e-07, - "waxy": 5.13e-07, - "whimper": 5.13e-07, - "whoopi": 5.13e-07, - "wiles": 5.13e-07, - "windermere": 5.13e-07, - "winkle": 5.13e-07, - "wistful": 5.13e-07, - "wizarding": 5.13e-07, - "wolfram": 5.13e-07, - "workaround": 5.13e-07, - "wpa": 5.13e-07, - "yeezus": 5.13e-07, - "yeezy": 5.13e-07, - "yeoman": 5.13e-07, - "yuk": 5.13e-07, - "yule": 5.13e-07, - "abounds": 5.01e-07, - "accumulator": 5.01e-07, - "aerosols": 5.01e-07, - "airfields": 5.01e-07, - "airpods": 5.01e-07, - "ajit": 5.01e-07, - "alaskas": 5.01e-07, - "allman": 5.01e-07, - "allude": 5.01e-07, - "amina": 5.01e-07, - "anas": 2.51e-07, - "anda": 5.01e-07, - "androgynous": 5.01e-07, - "animus": 5.01e-07, - "anion": 5.01e-07, - "antipathy": 5.01e-07, - "anubis": 5.01e-07, - "apd": 5.01e-07, - "archdeacon": 5.01e-07, - "arginine": 5.01e-07, - "armadillo": 5.01e-07, - "armband": 5.01e-07, - "arp": 5.01e-07, - "artefact": 5.01e-07, - "aslan": 5.01e-07, - "augustin": 5.01e-07, - "awning": 5.01e-07, - "awol": 5.01e-07, - "bacillus": 5.01e-07, - "balmy": 5.01e-07, - "bandmates": 5.01e-07, - "barbeque": 5.01e-07, - "bards": 1.82e-07, - "bayside": 5.01e-07, - "bento": 5.01e-07, - "berber": 5.01e-07, - "bicycling": 5.01e-07, - "binomial": 5.01e-07, - "blackie": 5.01e-07, - "blinders": 5.01e-07, - "bloodhound": 5.01e-07, - "booger": 5.01e-07, - "bowes": 5.01e-07, - "brandishing": 5.01e-07, - "bratislava": 5.01e-07, - "bridger": 5.01e-07, - "bromide": 5.01e-07, - "brookline": 5.01e-07, - "cabana": 5.01e-07, - "cadaver": 5.01e-07, - "caked": 5.01e-07, - "carnation": 5.01e-07, - "carsons": 5.01e-07, - "censuses": 5.01e-07, - "centauri": 5.01e-07, - "chand": 5.01e-07, - "chesterton": 5.01e-07, - "chickpeas": 5.01e-07, - "chipset": 5.01e-07, - "chitty": 5.01e-07, - "choppers": 5.01e-07, - "chromebook": 5.01e-07, - "chronicler": 5.01e-07, - "chub": 5.01e-07, - "chuffed": 5.01e-07, - "chutes": 5.01e-07, - "citric": 5.01e-07, - "clawing": 5.01e-07, - "cls": 5.01e-07, - "cobblestone": 5.01e-07, - "communique": 5.01e-07, - "compacted": 5.01e-07, - "complementing": 5.01e-07, - "condiment": 5.01e-07, - "confederations": 5.01e-07, - "conservationist": 5.01e-07, - "corroboration": 5.01e-07, - "cortana": 5.01e-07, - "cots": 5.01e-07, - "cowen": 5.01e-07, - "crim": 5.01e-07, - "cristian": 5.01e-07, - "croquet": 5.01e-07, - "crosshairs": 5.01e-07, - "cruzs": 5.01e-07, - "crystallized": 5.01e-07, - "cska": 5.01e-07, - "cuddled": 5.01e-07, - "cuppa": 5.01e-07, - "curzon": 5.01e-07, - "dancefloor": 5.01e-07, - "dancin": 5.01e-07, - "degenerated": 5.01e-07, - "degrades": 5.01e-07, - "delectable": 5.01e-07, - "demotion": 5.01e-07, - "denizens": 5.01e-07, - "derailment": 5.01e-07, - "descriptors": 5.01e-07, - "dif": 5.01e-07, - "discoverer": 5.01e-07, - "dislodged": 5.01e-07, - "dmca": 5.01e-07, - "doubters": 5.01e-07, - "dragoons": 5.01e-07, - "dreadfully": 5.01e-07, - "dredged": 5.01e-07, - "duarte": 5.01e-07, - "durst": 5.01e-07, - "duvall": 5.01e-07, - "echelons": 5.01e-07, - "eec": 5.01e-07, - "elation": 5.01e-07, - "elly": 5.01e-07, - "elucidate": 5.01e-07, - "emitters": 5.01e-07, - "engraver": 5.01e-07, - "enlarging": 5.01e-07, - "envisage": 5.01e-07, - "eon": 5.01e-07, - "etcetera": 5.01e-07, - "evictions": 5.01e-07, - "excavator": 5.01e-07, - "exclusionary": 5.01e-07, - "excommunication": 5.01e-07, - "fads": 5.01e-07, - "fafsa": 5.01e-07, - "fairing": 5.01e-07, - "farnborough": 5.01e-07, - "fatwa": 5.01e-07, - "fawkes": 5.01e-07, - "fishermans": 6.61e-08, - "flamingos": 5.01e-07, - "flippers": 5.01e-07, - "flog": 5.01e-07, - "flogged": 5.01e-07, - "fluorine": 5.01e-07, - "flushes": 5.01e-07, - "flynns": 5.01e-07, - "forehand": 5.01e-07, - "fortescue": 5.01e-07, - "foursquare": 5.01e-07, - "fuego": 5.01e-07, - "gcses": 5.01e-07, - "gillard": 5.01e-07, - "giroux": 5.01e-07, - "givens": 5.01e-07, - "gleeson": 5.01e-07, - "glencoe": 5.01e-07, - "glimpsed": 5.01e-07, - "glyph": 5.01e-07, - "gob": 5.01e-07, - "gohan": 5.01e-07, - "gollum": 5.01e-07, - "gordy": 5.01e-07, - "gotti": 5.01e-07, - "grammatically": 5.01e-07, - "gramophone": 5.01e-07, - "gratefully": 5.01e-07, - "grindr": 5.01e-07, - "gtr": 5.01e-07, - "gumbo": 5.01e-07, - "gwynedd": 5.01e-07, - "hadrian": 5.01e-07, - "halliwell": 5.01e-07, - "hansel": 5.01e-07, - "hardman": 5.01e-07, - "harrier": 5.01e-07, - "harshest": 5.01e-07, - "hartlepool": 5.01e-07, - "haymarket": 5.01e-07, - "heeded": 5.01e-07, - "helmand": 5.01e-07, - "herrmann": 5.01e-07, - "heyward": 5.01e-07, - "hibernate": 5.01e-07, - "hipaa": 5.01e-07, - "holborn": 5.01e-07, - "hollering": 5.01e-07, - "hollingsworth": 5.01e-07, - "hollyoaks": 5.01e-07, - "homeownership": 5.01e-07, - "homeward": 5.01e-07, - "hotdogs": 5.01e-07, - "hounded": 5.01e-07, - "iac": 5.01e-07, - "ibd": 5.01e-07, - "icann": 5.01e-07, - "igg": 5.01e-07, - "imitations": 5.01e-07, - "immanuel": 5.01e-07, - "impediments": 5.01e-07, - "implode": 5.01e-07, - "inane": 5.01e-07, - "industrialisation": 5.01e-07, - "ineptitude": 5.01e-07, - "inshore": 5.01e-07, - "instigating": 5.01e-07, - "instituto": 5.01e-07, - "intelligentsia": 5.01e-07, - "intensities": 5.01e-07, - "interagency": 5.01e-07, - "interconnect": 5.01e-07, - "interrelated": 5.01e-07, - "interviewee": 5.01e-07, - "irritant": 5.01e-07, - "ite": 5.01e-07, - "itis": 5.01e-07, - "jacqui": 5.01e-07, - "jak": 5.01e-07, - "jalan": 5.01e-07, - "jardine": 5.01e-07, - "jelena": 5.01e-07, - "jetpack": 5.01e-07, - "joao": 5.01e-07, - "jquery": 5.01e-07, - "juicing": 5.01e-07, - "jurist": 5.01e-07, - "kelowna": 5.01e-07, - "kenton": 5.01e-07, - "khamenei": 5.01e-07, - "kickbacks": 5.01e-07, - "kickin": 5.01e-07, - "kik": 5.01e-07, - "kisser": 5.01e-07, - "kwang": 5.01e-07, - "kyles": 1.29e-07, - "kyushu": 5.01e-07, - "labia": 5.01e-07, - "lakeshore": 5.01e-07, - "lakota": 5.01e-07, - "lawnmower": 5.01e-07, - "lazer": 5.01e-07, - "leaved": 5.01e-07, - "leeks": 5.01e-07, - "leibniz": 5.01e-07, - "leninist": 5.01e-07, - "lennie": 5.01e-07, - "leonidas": 5.01e-07, - "lik": 5.01e-07, - "litecoin": 5.01e-07, - "livia": 5.01e-07, - "longfellow": 5.01e-07, - "lop": 5.01e-07, - "lupita": 5.01e-07, - "lynchs": 5.01e-07, - "lysine": 5.01e-07, - "machiavelli": 5.01e-07, - "maier": 5.01e-07, - "majorly": 5.01e-07, - "malian": 5.01e-07, - "manicured": 5.01e-07, - "manolo": 5.01e-07, - "marais": 5.01e-07, - "marbella": 5.01e-07, - "mariam": 5.01e-07, - "marquise": 5.01e-07, - "mastectomy": 5.01e-07, - "maybelline": 5.01e-07, - "mcrae": 5.01e-07, - "mears": 5.01e-07, - "medellin": 5.01e-07, - "meiji": 5.01e-07, - "meteoric": 5.01e-07, - "midair": 5.01e-07, - "militaries": 5.01e-07, - "militiamen": 5.01e-07, - "milli": 5.01e-07, - "miscommunication": 5.01e-07, - "mohr": 5.01e-07, - "molester": 5.01e-07, - "monomer": 5.01e-07, - "moreland": 5.01e-07, - "moynihan": 5.01e-07, - "muff": 5.01e-07, - "muffler": 5.01e-07, - "multitudes": 5.01e-07, - "narrowest": 5.01e-07, - "necessitating": 5.01e-07, - "neckline": 5.01e-07, - "neuroscientist": 5.01e-07, - "neutralizing": 5.01e-07, - "ney": 5.01e-07, - "niels": 1.12e-08, - "nightmarish": 5.01e-07, - "nitty": 5.01e-07, - "noc": 5.01e-07, - "noire": 5.01e-07, - "northfield": 5.01e-07, - "northwards": 5.01e-07, - "nudged": 5.01e-07, - "obliquely": 5.01e-07, - "operationally": 5.01e-07, - "ophthalmologist": 5.01e-07, - "outermost": 5.01e-07, - "overheat": 5.01e-07, - "overlords": 5.01e-07, - "overthink": 5.01e-07, - "overzealous": 5.01e-07, - "ovid": 5.01e-07, - "pala": 5.01e-07, - "palgrave": 5.01e-07, - "paola": 5.01e-07, - "paperbacks": 5.01e-07, - "passcode": 5.01e-07, - "pbr": 5.01e-07, - "peasantry": 5.01e-07, - "persisting": 5.01e-07, - "photocopy": 5.01e-07, - "pitman": 5.01e-07, - "plying": 5.01e-07, - "pmo": 5.01e-07, - "polices": 4.79e-07, - "porosity": 5.01e-07, - "pouting": 5.01e-07, - "powells": 5.01e-08, - "prefixes": 5.01e-07, - "prejudicial": 5.01e-07, - "preliminaries": 5.01e-07, - "preponderance": 5.01e-07, - "presbyterians": 5.01e-07, - "preyed": 5.01e-07, - "probiotics": 5.01e-07, - "procrastinating": 5.01e-07, - "propertys": 5.01e-07, - "prot": 5.01e-07, - "protege": 5.01e-07, - "pulsar": 5.01e-07, - "putrid": 5.01e-07, - "pylons": 5.01e-07, - "quinns": 5.89e-08, - "racquet": 5.01e-07, - "ramped": 5.01e-07, - "ransomware": 5.01e-07, - "rapped": 5.01e-07, - "rawalpindi": 5.01e-07, - "rayner": 5.01e-07, - "rda": 5.01e-07, - "reactivated": 5.01e-07, - "recessions": 5.01e-07, - "redfern": 5.01e-07, - "regalia": 5.01e-07, - "remaster": 5.01e-07, - "repainted": 5.01e-07, - "reposting": 5.01e-07, - "reproducible": 5.01e-07, - "retrial": 5.01e-07, - "ricciardo": 5.01e-07, - "rippling": 5.01e-07, - "ris": 6.17e-08, - "ritualistic": 5.01e-07, - "rko": 5.01e-07, - "roethlisberger": 5.01e-07, - "rogen": 5.01e-07, - "rolfe": 5.01e-07, - "rollback": 5.01e-07, - "rorschach": 5.01e-07, - "rosenfeld": 5.01e-07, - "rota": 5.01e-07, - "royally": 5.01e-07, - "rube": 5.01e-07, - "rubiks": 5.01e-07, - "rucker": 5.01e-07, - "rusk": 5.01e-07, - "saggy": 5.01e-07, - "salvadoran": 5.01e-07, - "sanitizer": 5.01e-07, - "scanlon": 5.01e-07, - "schematics": 5.01e-07, - "schreiber": 5.01e-07, - "scoliosis": 5.01e-07, - "seiko": 5.01e-07, - "separatism": 5.01e-07, - "septa": 5.01e-07, - "serfs": 5.01e-07, - "shacks": 5.01e-07, - "shari": 5.01e-07, - "shibuya": 5.01e-07, - "shockwave": 5.01e-07, - "showrooms": 5.01e-07, - "shuttered": 5.01e-07, - "silurian": 5.01e-07, - "singling": 5.01e-07, - "sinning": 5.01e-07, - "skeet": 5.01e-07, - "skrillex": 5.01e-07, - "slouch": 5.01e-07, - "snapdragon": 5.01e-07, - "sneer": 5.01e-07, - "sola": 5.01e-07, - "somaliland": 5.01e-07, - "somalis": 5.01e-07, - "sorcerers": 2.69e-07, - "sorensen": 5.01e-07, - "sorrowful": 5.01e-07, - "spewed": 5.01e-07, - "splat": 5.01e-07, - "spokesmen": 5.01e-07, - "stabilise": 5.01e-07, - "stopover": 5.01e-07, - "suga": 5.01e-07, - "technicolor": 5.01e-07, - "thwarting": 5.01e-07, - "tidbits": 5.01e-07, - "tightens": 5.01e-07, - "tintin": 5.01e-07, - "tous": 5.01e-07, - "touts": 5.01e-07, - "tracksuit": 5.01e-07, - "transduction": 5.01e-07, - "triads": 5.01e-07, - "trinket": 5.01e-07, - "triplet": 5.01e-07, - "trolleys": 5.01e-07, - "troublemaker": 5.01e-07, - "truely": 5.01e-07, - "trumpeter": 5.01e-07, - "trusses": 5.01e-07, - "tshirt": 5.01e-07, - "tufted": 5.01e-07, - "tumult": 5.01e-07, - "typhoons": 5.01e-07, - "umi": 5.01e-07, - "uninitiated": 5.01e-07, - "uninspired": 5.01e-07, - "unrestrained": 5.01e-07, - "unsanitary": 5.01e-07, - "untoward": 5.01e-07, - "uppermost": 5.01e-07, - "ushers": 1.2e-07, - "usman": 5.01e-07, - "usurp": 5.01e-07, - "utahs": 5.01e-07, - "utero": 5.01e-07, - "utes": 5.01e-07, - "uu": 5.01e-07, - "vag": 5.01e-07, - "valeria": 5.01e-07, - "valverde": 5.01e-07, - "vasectomy": 5.01e-07, - "vd": 5.01e-07, - "verdant": 5.01e-07, - "vicarage": 5.01e-07, - "videotaped": 5.01e-07, - "vilified": 5.01e-07, - "waistline": 5.01e-07, - "weatherman": 5.01e-07, - "wf": 5.01e-07, - "whopper": 5.01e-07, - "wiretapping": 5.01e-07, - "woolen": 5.01e-07, - "worldnews": 5.01e-07, - "wringing": 5.01e-07, - "wristwatch": 5.01e-07, - "xeon": 5.01e-07, - "yangtze": 5.01e-07, - "yerevan": 5.01e-07, - "yonge": 5.01e-07, - "youssef": 5.01e-07, - "youtubes": 6.92e-08, - "aberrant": 4.9e-07, - "absinthe": 4.9e-07, - "absolved": 4.9e-07, - "abstaining": 4.9e-07, - "acetaminophen": 4.9e-07, - "adamantly": 4.9e-07, - "adder": 4.9e-07, - "administratively": 4.9e-07, - "advisories": 4.9e-07, - "adwords": 4.9e-07, - "affinities": 4.9e-07, - "agamemnon": 4.9e-07, - "ageless": 4.9e-07, - "agitators": 4.9e-07, - "agonists": 4.9e-07, - "ahab": 4.9e-07, - "airframe": 4.9e-07, - "akp": 4.9e-07, - "alegre": 4.9e-07, - "alessandra": 4.9e-07, - "algal": 4.9e-07, - "alisa": 4.9e-07, - "allay": 4.9e-07, - "anachronistic": 4.9e-07, - "anarcho": 4.9e-07, - "anatomically": 4.9e-07, - "ancelotti": 4.9e-07, - "andorra": 4.9e-07, - "annoyingly": 4.9e-07, - "answerable": 4.9e-07, - "aprils": 4.9e-07, - "apropos": 4.9e-07, - "archimedes": 4.9e-07, - "arran": 4.9e-07, - "asad": 4.9e-07, - "assembler": 4.9e-07, - "asymptotic": 4.9e-07, - "aviators": 4.9e-07, - "axelrod": 4.9e-07, - "ayesha": 4.9e-07, - "azul": 4.9e-07, - "bachchan": 4.9e-07, - "backfires": 4.9e-07, - "bailiffs": 4.9e-07, - "ballgame": 4.9e-07, - "barcelonas": 4.9e-07, - "barricaded": 4.9e-07, - "batmobile": 4.9e-07, - "bday": 5.5e-08, - "bedlam": 4.9e-07, - "beeping": 4.9e-07, - "beluga": 4.9e-07, - "bernies": 4.9e-07, - "beveridge": 4.9e-07, - "bhatt": 4.9e-07, - "bibliographic": 4.9e-07, - "biel": 4.9e-07, - "biopsies": 4.9e-07, - "blackest": 4.9e-07, - "blakely": 4.9e-07, - "bloodless": 4.9e-07, - "boateng": 4.9e-07, - "bookshelves": 4.9e-07, - "boreal": 4.9e-07, - "brackish": 4.9e-07, - "bream": 4.9e-07, - "brough": 4.9e-07, - "buckling": 4.9e-07, - "buries": 4.9e-07, - "burlap": 4.9e-07, - "byproducts": 4.9e-07, - "cackling": 4.9e-07, - "cadiz": 4.9e-07, - "caicos": 4.9e-07, - "calabria": 4.9e-07, - "capitalise": 4.9e-07, - "capstone": 4.9e-07, - "carpeting": 4.9e-07, - "carvalho": 4.9e-07, - "cassel": 4.9e-07, - "catalysis": 4.9e-07, - "cdm": 4.9e-07, - "cen": 4.9e-07, - "centralization": 4.9e-07, - "changeover": 4.9e-07, - "chins": 8.13e-08, - "chiseled": 4.9e-07, - "chromecast": 4.9e-07, - "chrono": 4.9e-07, - "cistern": 4.9e-07, - "citigroup": 4.9e-07, - "classifieds": 4.9e-07, - "cleverness": 4.9e-07, - "coagulation": 4.9e-07, - "coder": 4.9e-07, - "coldly": 4.9e-07, - "colloquially": 4.9e-07, - "congruent": 4.9e-07, - "contributory": 4.9e-07, - "convective": 4.9e-07, - "counterintuitive": 4.9e-07, - "coursing": 4.9e-07, - "crowdsourcing": 4.9e-07, - "crucify": 4.9e-07, - "cryptocurrencies": 4.9e-07, - "csiro": 4.9e-07, - "cuticle": 4.9e-07, - "cyberbullying": 4.9e-07, - "dalrymple": 4.9e-07, - "darwinian": 4.9e-07, - "dateline": 4.9e-07, - "dauntless": 4.9e-07, - "degas": 4.9e-07, - "denning": 4.9e-07, - "denvers": 4.9e-07, - "depleting": 4.9e-07, - "despatch": 4.9e-07, - "devotions": 4.9e-07, - "dialectic": 4.9e-07, - "diegos": 4.9e-07, - "dietitian": 4.9e-07, - "differentials": 4.9e-07, - "dijk": 4.9e-07, - "dinka": 4.9e-07, - "dismissals": 4.9e-07, - "disobeyed": 4.9e-07, - "disobeying": 4.9e-07, - "disorientation": 4.9e-07, - "dispositions": 4.9e-07, - "diurnal": 4.9e-07, - "divisible": 4.9e-07, - "domineering": 4.9e-07, - "downes": 4.9e-07, - "dredd": 4.9e-07, - "dunking": 4.9e-07, - "dura": 4.9e-07, - "dwarfed": 4.9e-07, - "dwyane": 4.9e-07, - "electrics": 1.2e-07, - "emancipated": 4.9e-07, - "embellishment": 4.9e-07, - "emblazoned": 4.9e-07, - "encodes": 4.9e-07, - "environmentalism": 4.9e-07, - "equalization": 4.9e-07, - "erupting": 4.9e-07, - "etchings": 4.9e-07, - "ethno": 4.9e-07, - "eto": 4.9e-07, - "eugenia": 4.9e-07, - "exclaiming": 4.9e-07, - "fabulously": 4.9e-07, - "faithless": 4.9e-07, - "falsetto": 4.9e-07, - "feliz": 4.9e-07, - "festering": 4.9e-07, - "fibonacci": 4.9e-07, - "finlands": 4.9e-07, - "firecracker": 4.9e-07, - "firecrackers": 4.9e-07, - "flabbergasted": 4.9e-07, - "flanker": 4.9e-07, - "flathead": 4.9e-07, - "forges": 4.9e-07, - "fortran": 4.9e-07, - "frontrunner": 4.9e-07, - "frowns": 4.9e-07, - "frs": 4.9e-07, - "frustrates": 4.9e-07, - "fuchsia": 4.9e-07, - "fukuoka": 4.9e-07, - "gant": 4.9e-07, - "garys": 4.9e-07, - "geraldo": 4.9e-07, - "geschichte": 4.9e-07, - "ghanas": 4.9e-07, - "ghazi": 4.9e-07, - "giancarlo": 4.9e-07, - "gillies": 4.9e-07, - "glittery": 4.9e-07, - "globular": 4.9e-07, - "glutathione": 4.9e-07, - "glyphosate": 4.9e-07, - "goddam": 4.9e-07, - "gow": 4.9e-07, - "grandpas": 1.82e-07, - "gro": 4.9e-07, - "groaned": 4.9e-07, - "guildhall": 4.9e-07, - "haldane": 4.9e-07, - "hanuman": 4.9e-07, - "harvards": 4.9e-07, - "haulage": 4.9e-07, - "headland": 4.9e-07, - "headstrong": 4.9e-07, - "hedgehogs": 4.9e-07, - "hefner": 4.9e-07, - "heinemann": 4.9e-07, - "herbivores": 4.9e-07, - "hildebrand": 4.9e-07, - "hn": 4.9e-07, - "holcomb": 4.9e-07, - "hollander": 4.9e-07, - "holley": 4.9e-07, - "hooligan": 4.9e-07, - "horizonte": 4.9e-07, - "howland": 4.9e-07, - "huffman": 4.9e-07, - "humongous": 4.9e-07, - "hunchback": 4.9e-07, - "hydrothermal": 4.9e-07, - "hydroxyl": 4.9e-07, - "hyperspace": 4.9e-07, - "hypo": 4.9e-07, - "ibid": 4.9e-07, - "ife": 4.9e-07, - "igf": 4.9e-07, - "impurity": 4.9e-07, - "inactivated": 4.9e-07, - "inalienable": 4.9e-07, - "incisions": 4.9e-07, - "incongruous": 4.9e-07, - "indio": 4.9e-07, - "indonesians": 4.9e-07, - "infographics": 4.9e-07, - "informations": 9.12e-08, - "inge": 4.9e-07, - "innkeeper": 4.9e-07, - "insufficiency": 4.9e-07, - "interdependence": 4.9e-07, - "interleukin": 4.9e-07, - "intifada": 4.9e-07, - "intracranial": 4.9e-07, - "intruding": 4.9e-07, - "irreducible": 4.9e-07, - "iwo": 4.9e-07, - "jiangsu": 4.9e-07, - "jiggle": 4.9e-07, - "jingles": 4.9e-07, - "jumbled": 4.9e-07, - "keeler": 4.9e-07, - "keita": 4.9e-07, - "kell": 4.9e-07, - "kellie": 4.9e-07, - "ketones": 4.9e-07, - "kitsch": 4.9e-07, - "klamath": 4.9e-07, - "kleenex": 4.9e-07, - "knick": 4.9e-07, - "kubo": 4.9e-07, - "lakeview": 4.9e-07, - "lazily": 4.9e-07, - "leadoff": 4.9e-07, - "lebowski": 4.9e-07, - "leger": 4.9e-07, - "leprechaun": 4.9e-07, - "lethargy": 4.9e-07, - "lettered": 4.9e-07, - "lic": 4.9e-07, - "liddell": 4.9e-07, - "lifeblood": 4.9e-07, - "lilo": 4.9e-07, - "lindley": 4.9e-07, - "linguistically": 4.9e-07, - "litt": 4.9e-07, - "littoral": 4.9e-07, - "lua": 4.9e-07, - "lumbering": 4.9e-07, - "macular": 4.9e-07, - "madhouse": 4.9e-07, - "madigan": 4.9e-07, - "maelstrom": 4.9e-07, - "mahan": 4.9e-07, - "makati": 4.9e-07, - "maligned": 4.9e-07, - "marchers": 4.9e-07, - "marianna": 4.9e-07, - "mariota": 4.9e-07, - "marylebone": 4.9e-07, - "mazes": 4.9e-07, - "mcavoy": 4.9e-07, - "meander": 4.9e-07, - "menon": 4.9e-07, - "mercier": 4.9e-07, - "meshes": 4.9e-07, - "mhc": 4.9e-07, - "microscopes": 4.9e-07, - "mideast": 4.9e-07, - "midseason": 4.9e-07, - "miku": 4.9e-07, - "milkshakes": 4.9e-07, - "mimosa": 4.9e-07, - "minty": 4.9e-07, - "misbehaving": 4.9e-07, - "misusing": 4.9e-07, - "moldy": 4.9e-07, - "moll": 4.9e-07, - "molloy": 4.9e-07, - "mommys": 4.9e-07, - "monahan": 4.9e-07, - "monorail": 4.9e-07, - "moraine": 4.9e-07, - "morehouse": 4.9e-07, - "morpheus": 4.9e-07, - "morphing": 4.9e-07, - "mothership": 4.9e-07, - "munchkin": 4.9e-07, - "museo": 4.9e-07, - "musharraf": 4.9e-07, - "nach": 4.9e-07, - "nanking": 4.9e-07, - "nationalised": 4.9e-07, - "navas": 4.9e-07, - "nicklaus": 4.9e-07, - "noida": 4.9e-07, - "nonviolence": 4.9e-07, - "noo": 4.9e-07, - "npd": 4.9e-07, - "nueva": 4.9e-07, - "nwo": 4.9e-07, - "oboe": 4.9e-07, - "ochre": 4.9e-07, - "ogle": 4.9e-07, - "oligarch": 4.9e-07, - "onesie": 4.9e-07, - "oot": 4.9e-07, - "oppo": 4.9e-07, - "opulence": 4.9e-07, - "orang": 4.9e-07, - "oshkosh": 4.9e-07, - "overeating": 4.9e-07, - "overheads": 4.9e-07, - "overlays": 4.9e-07, - "overreacted": 4.9e-07, - "oxidase": 4.9e-07, - "paget": 4.9e-07, - "paleozoic": 4.9e-07, - "pali": 4.9e-07, - "palpitations": 4.9e-07, - "pancho": 4.9e-07, - "pancreatitis": 4.9e-07, - "pandemonium": 4.9e-07, - "parlors": 4.9e-07, - "patronising": 4.9e-07, - "pattaya": 4.9e-07, - "payoffs": 4.9e-07, - "peacemaker": 4.9e-07, - "penske": 4.9e-07, - "permeates": 4.9e-07, - "perpetuates": 4.9e-07, - "personable": 4.9e-07, - "personalize": 4.9e-07, - "perturbed": 4.9e-07, - "phenotypes": 4.9e-07, - "philanthropists": 4.9e-07, - "phoenician": 4.9e-07, - "phoney": 4.9e-07, - "pickens": 4.9e-07, - "platypus": 4.9e-07, - "ple": 4.9e-07, - "plows": 4.9e-07, - "polanski": 4.9e-07, - "pollutant": 4.9e-07, - "polypropylene": 4.9e-07, - "prankster": 4.9e-07, - "prentiss": 4.9e-07, - "priestley": 4.9e-07, - "profitably": 4.9e-07, - "proliferate": 4.9e-07, - "propagandist": 4.9e-07, - "publically": 4.9e-07, - "publix": 4.9e-07, - "punting": 4.9e-07, - "pyre": 4.9e-07, - "quibble": 4.9e-07, - "quinton": 4.9e-07, - "raison": 4.9e-07, - "ralf": 4.9e-07, - "rasheed": 4.9e-07, - "ravishing": 4.9e-07, - "readout": 4.9e-07, - "reapply": 4.9e-07, - "recidivism": 4.9e-07, - "recollect": 4.9e-07, - "reids": 4.9e-07, - "reis": 6.61e-08, - "reiterates": 4.9e-07, - "relievers": 4.9e-07, - "reo": 4.9e-07, - "repeatable": 4.9e-07, - "replicates": 4.9e-07, - "requisition": 4.9e-07, - "resettled": 4.9e-07, - "resistances": 4.9e-07, - "resp": 4.9e-07, - "restarts": 4.9e-07, - "retrace": 4.9e-07, - "reusing": 4.9e-07, - "rfa": 4.9e-07, - "ridin": 4.9e-07, - "rivet": 4.9e-07, - "roa": 4.9e-07, - "roadhouse": 4.9e-07, - "romneys": 4.9e-07, - "romulus": 4.9e-07, - "roughing": 4.9e-07, - "rrp": 4.9e-07, - "ruffles": 4.9e-07, - "ruinous": 4.9e-07, - "sadat": 4.9e-07, - "saintly": 4.9e-07, - "saks": 4.9e-07, - "scalability": 4.9e-07, - "schindler": 4.9e-07, - "scuttle": 4.9e-07, - "secretarys": 4.9e-07, - "seein": 4.9e-07, - "seeley": 4.9e-07, - "selkirk": 4.9e-07, - "seltzer": 4.9e-07, - "senates": 5.5e-08, - "shakur": 4.9e-07, - "sharjah": 4.9e-07, - "sherwin": 4.9e-07, - "skippy": 4.9e-07, - "skyward": 4.9e-07, - "slings": 4.9e-07, - "sobre": 4.9e-07, - "solihull": 4.9e-07, - "solomons": 3.63e-07, - "speedo": 4.9e-07, - "spinster": 4.9e-07, - "spliced": 4.9e-07, - "sprinted": 4.9e-07, - "spud": 4.9e-07, - "squalor": 4.9e-07, - "stabilisation": 4.9e-07, - "startle": 4.9e-07, - "staunchly": 4.9e-07, - "steadfastly": 4.9e-07, - "straying": 4.9e-07, - "streaking": 4.9e-07, - "stubby": 4.9e-07, - "subjugated": 4.9e-07, - "subplot": 4.9e-07, - "subsidizing": 4.9e-07, - "subterfuge": 4.9e-07, - "sullivans": 7.24e-08, - "sunnyvale": 4.9e-07, - "supercharger": 4.9e-07, - "superfast": 4.9e-07, - "supersport": 4.9e-07, - "surfactants": 4.9e-07, - "surreptitiously": 4.9e-07, - "symonds": 4.9e-07, - "tablecloth": 4.9e-07, - "tacitly": 4.9e-07, - "tailing": 4.9e-07, - "tailings": 4.9e-07, - "tami": 4.9e-07, - "tapper": 4.9e-07, - "tardy": 4.9e-07, - "tassel": 4.9e-07, - "thicket": 4.9e-07, - "threefold": 4.9e-07, - "thruster": 4.9e-07, - "ths": 4.9e-07, - "tidying": 4.9e-07, - "tinned": 4.9e-07, - "toasting": 4.9e-07, - "torchwood": 4.9e-07, - "torrens": 4.9e-07, - "townhouses": 4.9e-07, - "transcribe": 4.9e-07, - "trapeze": 4.9e-07, - "triangulation": 4.9e-07, - "trifling": 4.9e-07, - "tsm": 4.9e-07, - "twirl": 4.9e-07, - "unconsciousness": 4.9e-07, - "unconvincing": 4.9e-07, - "uncooked": 4.9e-07, - "undaunted": 4.9e-07, - "underlining": 4.9e-07, - "underpinned": 4.9e-07, - "undeserved": 4.9e-07, - "unearth": 4.9e-07, - "unsaid": 4.9e-07, - "unsurprising": 4.9e-07, - "uppers": 4.9e-07, - "urquhart": 4.9e-07, - "uta": 4.9e-07, - "uttering": 4.9e-07, - "vardy": 4.9e-07, - "velvety": 4.9e-07, - "vim": 4.9e-07, - "wagga": 4.9e-07, - "walid": 4.9e-07, - "wallabies": 4.9e-07, - "wallaces": 4.9e-07, - "waukesha": 4.9e-07, - "webcomic": 4.9e-07, - "wheelie": 4.9e-07, - "wildflower": 4.9e-07, - "winemaker": 4.9e-07, - "wiretap": 4.9e-07, - "wirral": 4.9e-07, - "woeful": 4.9e-07, - "wolfson": 4.9e-07, - "wsu": 4.9e-07, - "wvu": 4.9e-07, - "xhosa": 4.9e-07, - "xps": 4.9e-07, - "yada": 4.9e-07, - "yardstick": 4.9e-07, - "zh": 4.9e-07, - "zhen": 4.9e-07, - "abate": 4.79e-07, - "abra": 4.79e-07, - "accesses": 4.79e-07, - "adenosine": 4.79e-07, - "adios": 4.79e-07, - "adjuster": 4.79e-07, - "adsense": 4.79e-07, - "affaires": 4.79e-07, - "aftertaste": 4.79e-07, - "airtel": 4.79e-07, - "ald": 4.79e-07, - "alleviated": 4.79e-07, - "amadeus": 4.79e-07, - "ambiance": 4.79e-07, - "analgesic": 4.79e-07, - "angkor": 4.79e-07, - "anh": 4.79e-07, - "antonin": 4.79e-07, - "apec": 4.79e-07, - "approximated": 4.79e-07, - "arlo": 4.79e-07, - "armstrongs": 5.01e-08, - "arnolds": 5.5e-08, - "ascends": 4.79e-07, - "aspirants": 4.79e-07, - "assisi": 4.79e-07, - "atwater": 4.79e-07, - "authentically": 4.79e-07, - "automaton": 4.79e-07, - "avalanches": 4.79e-07, - "axl": 4.79e-07, - "baboons": 4.79e-07, - "backflip": 4.79e-07, - "bade": 4.79e-07, - "baluchistan": 4.79e-07, - "baptize": 4.79e-07, - "batgirl": 4.79e-07, - "bathrobe": 4.79e-07, - "bef": 4.79e-07, - "beresford": 4.79e-07, - "berliner": 4.79e-07, - "biathlon": 4.79e-07, - "bir": 4.79e-07, - "blocs": 7.94e-08, - "bmp": 4.79e-07, - "bodyweight": 4.79e-07, - "bolo": 4.79e-07, - "bookie": 4.79e-07, - "bookmakers": 4.79e-07, - "bothersome": 4.79e-07, - "bou": 4.79e-07, - "bowe": 4.79e-07, - "brained": 4.79e-07, - "brantley": 4.79e-07, - "bsd": 4.79e-07, - "bundling": 4.79e-07, - "burleigh": 4.79e-07, - "busby": 4.79e-07, - "caching": 4.79e-07, - "calamities": 4.79e-07, - "campgrounds": 4.79e-07, - "canfield": 4.79e-07, - "cantina": 4.79e-07, - "carnivore": 4.79e-07, - "casement": 4.79e-07, - "catalans": 4.79e-07, - "cataloging": 4.79e-07, - "catnip": 4.79e-07, - "causative": 4.79e-07, - "cda": 4.79e-07, - "cdp": 4.79e-07, - "cesspool": 4.79e-07, - "chalky": 4.79e-07, - "chipmunks": 4.79e-07, - "churned": 4.79e-07, - "clio": 4.79e-07, - "collaboratively": 4.79e-07, - "commissar": 4.79e-07, - "conformed": 4.79e-07, - "congestive": 4.79e-07, - "consulates": 4.79e-07, - "corfu": 4.79e-07, - "corrupts": 4.79e-07, - "cupola": 4.79e-07, - "dabble": 4.79e-07, - "daesh": 4.79e-07, - "darting": 4.79e-07, - "dass": 4.79e-07, - "debunk": 4.79e-07, - "decays": 4.79e-07, - "decking": 4.79e-07, - "decrypt": 4.79e-07, - "deerfield": 4.79e-07, - "defectors": 4.79e-07, - "degenerates": 4.79e-07, - "depositions": 4.79e-07, - "despondent": 4.79e-07, - "despot": 4.79e-07, - "detachments": 4.79e-07, - "dialectical": 4.79e-07, - "digestible": 4.79e-07, - "disassembled": 4.79e-07, - "disembark": 4.79e-07, - "disgusts": 4.79e-07, - "dishonorable": 4.79e-07, - "disraeli": 4.79e-07, - "dogging": 4.79e-07, - "dopey": 4.79e-07, - "dubrovnik": 4.79e-07, - "ducky": 4.79e-07, - "duncans": 5.01e-08, - "dutt": 4.79e-07, - "easel": 4.79e-07, - "eastwards": 4.79e-07, - "ecs": 7.94e-08, - "edmondson": 4.79e-07, - "eek": 4.79e-07, - "eldorado": 4.79e-07, - "eliminations": 4.79e-07, - "ellipse": 4.79e-07, - "elysium": 4.79e-07, - "encoder": 4.79e-07, - "enormity": 4.79e-07, - "eons": 4.79e-07, - "espouse": 4.79e-07, - "exemplar": 4.79e-07, - "extender": 4.79e-07, - "extramarital": 4.79e-07, - "fandango": 4.79e-07, - "farber": 4.79e-07, - "farc": 4.79e-07, - "farina": 4.79e-07, - "fearlessly": 4.79e-07, - "fete": 4.79e-07, - "feynman": 4.79e-07, - "fiorentina": 4.79e-07, - "firewalls": 4.79e-07, - "fmri": 4.79e-07, - "foi": 4.79e-07, - "foie": 4.79e-07, - "foles": 4.79e-07, - "formalism": 4.79e-07, - "fortuitous": 4.79e-07, - "framingham": 4.79e-07, - "franchisee": 4.79e-07, - "franky": 4.79e-07, - "fredrik": 4.79e-07, - "freestanding": 4.79e-07, - "frenetic": 4.79e-07, - "fridges": 4.79e-07, - "frolic": 4.79e-07, - "funneled": 4.79e-07, - "fussing": 4.79e-07, - "gaff": 4.79e-07, - "galleys": 4.79e-07, - "ganesha": 4.79e-07, - "gangrene": 4.79e-07, - "gatekeepers": 4.79e-07, - "gilgamesh": 4.79e-07, - "gillingham": 4.79e-07, - "gini": 4.79e-07, - "glides": 4.79e-07, - "glosses": 4.79e-07, - "gluttony": 4.79e-07, - "goalkeeping": 4.79e-07, - "goaltending": 4.79e-07, - "goatee": 4.79e-07, - "gordo": 4.79e-07, - "gottfried": 4.79e-07, - "graceland": 4.79e-07, - "granddad": 4.79e-07, - "greyhounds": 4.79e-07, - "grieved": 4.79e-07, - "grist": 4.79e-07, - "grope": 4.79e-07, - "gto": 4.79e-07, - "guardsmen": 4.79e-07, - "gutenberg": 4.79e-07, - "gx": 4.79e-07, - "hadron": 4.79e-07, - "hammerhead": 4.79e-07, - "hampers": 4.79e-07, - "hangman": 4.79e-07, - "harvick": 4.79e-07, - "haughty": 4.79e-07, - "headmistress": 4.79e-07, - "headteacher": 4.79e-07, - "heavyweights": 4.79e-07, - "hela": 4.79e-07, - "hervey": 4.79e-07, - "hobbits": 4.79e-07, - "hogging": 4.79e-07, - "hoisting": 4.79e-07, - "horseradish": 4.79e-07, - "hotshot": 4.79e-07, - "householders": 4.79e-07, - "hus": 8.91e-08, - "hyland": 4.79e-07, - "hypoglycemia": 4.79e-07, - "hypothyroidism": 4.79e-07, - "ihs": 4.79e-07, - "immeasurably": 4.79e-07, - "imprecise": 4.79e-07, - "indigent": 4.79e-07, - "ingham": 4.79e-07, - "ings": 4.79e-07, - "inlay": 4.79e-07, - "intramural": 4.79e-07, - "invulnerable": 4.79e-07, - "irreconcilable": 4.79e-07, - "janitors": 6.03e-08, - "jawbone": 4.79e-07, - "jittery": 4.79e-07, - "joyner": 4.79e-07, - "judicious": 4.79e-07, - "kaka": 4.79e-07, - "kegs": 4.79e-07, - "kerri": 4.79e-07, - "kesha": 4.79e-07, - "khanna": 4.79e-07, - "kickass": 4.79e-07, - "kickback": 4.79e-07, - "kinsman": 4.79e-07, - "kirin": 4.79e-07, - "kowloon": 4.79e-07, - "krauss": 4.79e-07, - "kristine": 4.79e-07, - "kuroda": 4.79e-07, - "kyi": 4.79e-07, - "laboured": 4.79e-07, - "lankas": 4.79e-07, - "laudable": 4.79e-07, - "lbc": 4.79e-07, - "ldp": 4.79e-07, - "lessens": 4.79e-07, - "lessing": 4.79e-07, - "liberalisation": 4.79e-07, - "liftoff": 4.79e-07, - "lightfoot": 4.79e-07, - "linnaeus": 4.79e-07, - "liszt": 4.79e-07, - "logarithmic": 4.79e-07, - "loudness": 4.79e-07, - "lowery": 4.79e-07, - "ltte": 4.79e-07, - "lucasfilm": 4.79e-07, - "luxor": 4.79e-07, - "macroeconomics": 4.79e-07, - "majlis": 4.79e-07, - "majorca": 4.79e-07, - "manchin": 4.79e-07, - "mandi": 4.79e-07, - "mannheim": 4.79e-07, - "manors": 4.79e-07, - "mantras": 4.79e-07, - "marist": 4.79e-07, - "marysville": 4.79e-07, - "mathers": 4.79e-07, - "mchale": 4.79e-07, - "mclachlan": 4.79e-07, - "mec": 4.79e-07, - "megawatt": 4.79e-07, - "meri": 4.79e-07, - "mesozoic": 4.79e-07, - "metroid": 4.79e-07, - "midlothian": 4.79e-07, - "militarized": 4.79e-07, - "misinterpretation": 4.79e-07, - "mobbed": 4.79e-07, - "mobilised": 4.79e-07, - "moorland": 4.79e-07, - "morristown": 4.79e-07, - "mourinhos": 4.79e-07, - "naively": 4.79e-07, - "nappies": 4.79e-07, - "narcissus": 4.79e-07, - "nau": 4.79e-07, - "neurodegenerative": 4.79e-07, - "neva": 4.79e-07, - "nightwing": 4.79e-07, - "nitrates": 4.79e-07, - "nlrb": 4.79e-07, - "northumbria": 4.79e-07, - "nouvelle": 4.79e-07, - "npa": 4.79e-07, - "npcs": 6.61e-08, - "obv": 4.79e-07, - "occipital": 4.79e-07, - "ophthalmic": 4.79e-07, - "ordinating": 4.79e-07, - "ostentatious": 4.79e-07, - "osteopathic": 4.79e-07, - "osx": 4.79e-07, - "oversize": 4.79e-07, - "padlock": 4.79e-07, - "palau": 4.79e-07, - "paltrow": 4.79e-07, - "panini": 4.79e-07, - "paras": 4.79e-07, - "pasco": 4.79e-07, - "patina": 4.79e-07, - "pauly": 4.79e-07, - "pcos": 4.79e-07, - "perf": 4.79e-07, - "permeated": 4.79e-07, - "perspiration": 4.79e-07, - "phenotypic": 4.79e-07, - "philippians": 4.79e-07, - "pina": 4.79e-07, - "pirelli": 4.79e-07, - "plagiarized": 4.79e-07, - "plasmid": 4.79e-07, - "playthrough": 4.79e-07, - "pleaser": 4.79e-07, - "pliocene": 4.79e-07, - "plummeting": 4.79e-07, - "poach": 4.79e-07, - "policyholders": 4.79e-07, - "pontifical": 4.79e-07, - "postcolonial": 4.79e-07, - "precluded": 4.79e-07, - "prez": 4.79e-07, - "prosecco": 4.79e-07, - "prostrate": 4.79e-07, - "pubes": 4.79e-07, - "publicised": 4.79e-07, - "pushover": 4.79e-07, - "pythagoras": 4.79e-07, - "quicksand": 4.79e-07, - "quilting": 4.79e-07, - "raincoat": 4.79e-07, - "raine": 4.79e-07, - "randal": 4.79e-07, - "rasputin": 4.79e-07, - "ratcliffe": 4.79e-07, - "reconnected": 4.79e-07, - "reconsidering": 4.79e-07, - "redeveloped": 4.79e-07, - "refreshingly": 4.79e-07, - "refrigerate": 4.79e-07, - "refutes": 4.79e-07, - "reichstag": 4.79e-07, - "reiss": 4.79e-07, - "relativism": 4.79e-07, - "renata": 4.79e-07, - "renato": 4.79e-07, - "renditions": 4.79e-07, - "repelling": 4.79e-07, - "representational": 4.79e-07, - "republicanism": 4.79e-07, - "restaurateur": 4.79e-07, - "ribeiro": 4.79e-07, - "rickety": 4.79e-07, - "ricotta": 4.79e-07, - "riddick": 4.79e-07, - "ridership": 4.79e-07, - "rina": 4.79e-07, - "rox": 4.79e-07, - "rps": 4.79e-07, - "rsl": 4.79e-07, - "ruger": 4.79e-07, - "sacra": 4.79e-07, - "saddens": 4.79e-07, - "salinger": 4.79e-07, - "sappy": 4.79e-07, - "sark": 4.79e-07, - "sasquatch": 4.79e-07, - "saturns": 4.79e-07, - "saucers": 4.79e-07, - "saviors": 9.55e-08, - "scofield": 4.79e-07, - "semite": 4.79e-07, - "separations": 4.79e-07, - "sepulchre": 4.79e-07, - "sfo": 4.79e-07, - "shallots": 4.79e-07, - "shifters": 4.79e-07, - "shill": 4.79e-07, - "shins": 9.12e-08, - "shorted": 4.79e-07, - "sich": 4.79e-07, - "singhs": 4.79e-07, - "sipped": 4.79e-07, - "siting": 4.79e-07, - "sixpence": 4.79e-07, - "sjw": 4.79e-07, - "skank": 4.79e-07, - "skateboards": 4.79e-07, - "skinhead": 4.79e-07, - "slats": 4.79e-07, - "sligo": 4.79e-07, - "sneezed": 4.79e-07, - "snorkel": 4.79e-07, - "solenoid": 4.79e-07, - "songbird": 4.79e-07, - "sorties": 4.79e-07, - "spaulding": 4.79e-07, - "speer": 4.79e-07, - "spinoza": 4.79e-07, - "splendidly": 4.79e-07, - "sprawled": 4.79e-07, - "spyder": 4.79e-07, - "squaw": 4.79e-07, - "stabilised": 4.79e-07, - "starz": 4.79e-07, - "staunton": 4.79e-07, - "stiller": 4.79e-07, - "storehouse": 4.79e-07, - "stormont": 4.79e-07, - "straighter": 4.79e-07, - "striptease": 4.79e-07, - "suki": 4.79e-07, - "sumerian": 4.79e-07, - "supersede": 4.79e-07, - "sustainably": 4.79e-07, - "svt": 4.79e-07, - "swimsuits": 4.79e-07, - "swooped": 4.79e-07, - "synergistic": 4.79e-07, - "tanganyika": 4.79e-07, - "tantric": 4.79e-07, - "taoist": 4.79e-07, - "tats": 4.79e-07, - "taz": 4.79e-07, - "tbc": 4.79e-07, - "telegrams": 4.79e-07, - "telekom": 4.79e-07, - "thais": 4.17e-08, - "thar": 4.79e-07, - "theatrics": 4.79e-07, - "theodor": 4.79e-07, - "thermally": 4.79e-07, - "throb": 4.79e-07, - "tht": 4.79e-07, - "ticketed": 4.79e-07, - "timon": 4.79e-07, - "tipperary": 4.79e-07, - "toda": 4.79e-07, - "tormenting": 4.79e-07, - "touche": 4.79e-07, - "tov": 4.79e-07, - "toyed": 4.79e-07, - "trachea": 4.79e-07, - "transitory": 4.79e-07, - "transparently": 4.79e-07, - "treasonous": 4.79e-07, - "tribalism": 4.79e-07, - "trig": 4.79e-07, - "truckload": 4.79e-07, - "tss": 4.79e-07, - "tua": 4.79e-07, - "tyneside": 4.79e-07, - "tyrol": 4.79e-07, - "unattached": 4.79e-07, - "underlie": 4.79e-07, - "underlies": 4.79e-07, - "unger": 4.79e-07, - "unmanageable": 4.79e-07, - "unmoved": 4.79e-07, - "unt": 4.79e-07, - "uplifted": 4.79e-07, - "upshot": 4.79e-07, - "upsurge": 4.79e-07, - "uribe": 4.79e-07, - "valery": 4.79e-07, - "vasco": 4.79e-07, - "vcu": 4.79e-07, - "virginian": 4.79e-07, - "vivacious": 4.79e-07, - "vowing": 4.79e-07, - "voyeur": 4.79e-07, - "warlike": 4.79e-07, - "warmup": 4.79e-07, - "watercolors": 4.79e-07, - "watermelons": 4.79e-07, - "watersheds": 4.79e-07, - "weaned": 4.79e-07, - "wid": 4.79e-07, - "willi": 4.79e-07, - "winnebago": 4.79e-07, - "wisp": 4.79e-07, - "wold": 4.79e-07, - "woolworths": 9.12e-08, - "xena": 4.79e-07, - "xerxes": 4.79e-07, - "xue": 4.79e-07, - "yearling": 4.79e-07, - "zahra": 4.79e-07, - "zamora": 4.79e-07, - "zapata": 4.79e-07, - "zeiss": 4.79e-07, - "zhong": 4.79e-07, - "zimmermann": 4.79e-07, - "abbotts": 9.55e-08, - "abductions": 4.68e-07, - "ably": 4.68e-07, - "abortive": 4.68e-07, - "acr": 4.68e-07, - "afghanistans": 4.68e-07, - "agitating": 4.68e-07, - "aikido": 4.68e-07, - "aileen": 4.68e-07, - "akshay": 4.68e-07, - "alcoa": 4.68e-07, - "alkaloids": 4.68e-07, - "allahu": 4.68e-07, - "alm": 4.68e-07, - "alternated": 4.68e-07, - "amato": 4.68e-07, - "anagram": 4.68e-07, - "apaches": 4.68e-07, - "apologises": 4.68e-07, - "apostate": 4.68e-07, - "arabias": 4.68e-07, - "archway": 4.68e-07, - "arcy": 4.68e-07, - "ariane": 4.68e-07, - "artfully": 4.68e-07, - "artistes": 4.68e-07, - "asada": 4.68e-07, - "ashwin": 4.68e-07, - "axon": 4.68e-07, - "azam": 4.68e-07, - "azores": 4.68e-07, - "backpackers": 4.68e-07, - "bahn": 4.68e-07, - "ballooning": 4.68e-07, - "baptismal": 4.68e-07, - "basses": 4.68e-07, - "bauman": 4.68e-07, - "bca": 4.68e-07, - "beauregard": 4.68e-07, - "bede": 4.68e-07, - "beeswax": 4.68e-07, - "bentham": 4.68e-07, - "benthic": 4.68e-07, - "berated": 4.68e-07, - "bernal": 4.68e-07, - "bhd": 4.68e-07, - "bight": 4.68e-07, - "bilge": 4.68e-07, - "biohazard": 4.68e-07, - "bischoff": 4.68e-07, - "bissau": 4.68e-07, - "blouses": 4.68e-07, - "bonne": 4.68e-07, - "bozeman": 4.68e-07, - "breaststroke": 4.68e-07, - "breeches": 4.68e-07, - "bronzes": 4.68e-07, - "buttress": 4.68e-07, - "cabling": 4.68e-07, - "camber": 4.68e-07, - "canelo": 4.68e-07, - "cartography": 4.68e-07, - "cataclysmic": 4.68e-07, - "catharsis": 4.68e-07, - "cerebellum": 4.68e-07, - "chancellors": 4.27e-07, - "chau": 4.68e-07, - "chesney": 4.68e-07, - "chiral": 4.68e-07, - "choy": 4.68e-07, - "civilisations": 4.68e-07, - "codec": 4.68e-07, - "cohabitation": 4.68e-07, - "collapsible": 4.68e-07, - "conga": 4.68e-07, - "conjures": 4.68e-07, - "consumables": 4.68e-07, - "contractually": 4.68e-07, - "contravention": 4.68e-07, - "copier": 4.68e-07, - "corden": 4.68e-07, - "corticosteroids": 4.68e-07, - "courtyards": 4.68e-07, - "coyne": 4.68e-07, - "creamery": 4.68e-07, - "critiquing": 4.68e-07, - "crunchyroll": 4.68e-07, - "ctc": 4.68e-07, - "cytokine": 4.68e-07, - "daffy": 4.68e-07, - "dany": 4.68e-07, - "danzig": 4.68e-07, - "darko": 4.68e-07, - "defrauded": 4.68e-07, - "depose": 4.68e-07, - "deprecated": 4.68e-07, - "dic": 4.68e-07, - "dicey": 4.68e-07, - "dimmer": 4.68e-07, - "disconnecting": 4.68e-07, - "disinfection": 4.68e-07, - "disobedient": 4.68e-07, - "distantly": 4.68e-07, - "divestment": 4.68e-07, - "divya": 4.68e-07, - "dizzying": 4.68e-07, - "donbass": 4.68e-07, - "downtrodden": 4.68e-07, - "drowsiness": 4.68e-07, - "dulce": 4.68e-07, - "dumpling": 4.68e-07, - "dupree": 4.68e-07, - "dutifully": 4.68e-07, - "dysplasia": 4.68e-07, - "ecologist": 4.68e-07, - "edicts": 4.68e-07, - "eeoc": 4.68e-07, - "effluent": 4.68e-07, - "egress": 4.68e-07, - "eights": 4.68e-07, - "embodying": 4.68e-07, - "encapsulates": 4.68e-07, - "encephalopathy": 4.68e-07, - "endangerment": 4.68e-07, - "enrol": 4.68e-07, - "evangeline": 4.68e-07, - "eventuality": 4.68e-07, - "evermore": 4.68e-07, - "evolutions": 5.62e-08, - "excretion": 4.68e-07, - "exegesis": 4.68e-07, - "exhibitor": 4.68e-07, - "exhumed": 4.68e-07, - "expunged": 4.68e-07, - "extrajudicial": 4.68e-07, - "extrapolate": 4.68e-07, - "fal": 4.68e-07, - "faring": 4.68e-07, - "fingertip": 4.68e-07, - "finnegan": 4.68e-07, - "flavorful": 4.68e-07, - "floyds": 6.76e-08, - "forecasted": 4.68e-07, - "freemasons": 4.68e-07, - "ftl": 4.68e-07, - "fts": 1.07e-07, - "galena": 4.68e-07, - "gamecocks": 4.68e-07, - "georgians": 4.68e-07, - "ggg": 4.68e-07, - "ghee": 4.68e-07, - "girolamo": 4.68e-07, - "glyphs": 4.68e-07, - "gor": 4.68e-07, - "gott": 4.68e-07, - "gouging": 4.68e-07, - "gpus": 4.68e-07, - "grammer": 4.68e-07, - "gravitation": 4.68e-07, - "griff": 4.68e-07, - "grr": 4.68e-07, - "gyllenhaal": 4.68e-07, - "gyn": 4.68e-07, - "halen": 4.68e-07, - "harmonize": 4.68e-07, - "haskins": 4.68e-07, - "haworth": 4.68e-07, - "hazzard": 4.68e-07, - "hcg": 4.68e-07, - "headwaters": 4.68e-07, - "hennessey": 4.68e-07, - "herbarium": 4.68e-07, - "hewn": 4.68e-07, - "hinata": 4.68e-07, - "honeysuckle": 4.68e-07, - "hoppers": 1.41e-07, - "hoshi": 4.68e-07, - "houseboat": 4.68e-07, - "houthi": 4.68e-07, - "houthis": 4.68e-07, - "hypothalamus": 4.68e-07, - "iea": 4.68e-07, - "ila": 4.68e-07, - "imaged": 4.68e-07, - "immobilized": 4.68e-07, - "imparting": 4.68e-07, - "imperium": 4.68e-07, - "indenture": 4.68e-07, - "inhumans": 4.68e-07, - "inimitable": 4.68e-07, - "instilling": 4.68e-07, - "inversions": 4.68e-07, - "iom": 4.68e-07, - "iplayer": 4.68e-07, - "jada": 4.68e-07, - "jealously": 4.68e-07, - "jervis": 4.68e-07, - "jetta": 4.68e-07, - "jogger": 4.68e-07, - "jumpy": 4.68e-07, - "justinian": 4.68e-07, - "kampf": 4.68e-07, - "kandi": 4.68e-07, - "karlsruhe": 4.68e-07, - "kenmore": 4.68e-07, - "keogh": 4.68e-07, - "kierkegaard": 4.68e-07, - "kildare": 4.68e-07, - "kingman": 4.68e-07, - "knockouts": 4.68e-07, - "kroner": 4.68e-07, - "lacerations": 4.68e-07, - "lacs": 4.68e-07, - "ladybug": 4.68e-07, - "latif": 4.68e-07, - "lauer": 4.68e-07, - "layover": 4.68e-07, - "leathers": 4.68e-07, - "leveson": 4.68e-07, - "lichfield": 4.68e-07, - "liens": 4.68e-07, - "littlest": 4.68e-07, - "loath": 4.68e-07, - "longhorn": 4.68e-07, - "loopy": 4.68e-07, - "lun": 4.68e-07, - "maeve": 4.68e-07, - "magdalen": 4.68e-07, - "maidan": 4.68e-07, - "mair": 4.68e-07, - "mang": 4.68e-07, - "manifestly": 4.68e-07, - "manmohan": 4.68e-07, - "masa": 4.68e-07, - "matcha": 4.68e-07, - "matchbox": 4.68e-07, - "mathilde": 4.68e-07, - "mdr": 4.68e-07, - "mercia": 4.68e-07, - "mercies": 4.68e-07, - "mervyn": 4.68e-07, - "metamorphic": 4.68e-07, - "methuen": 4.68e-07, - "mews": 4.68e-07, - "minimums": 4.68e-07, - "modded": 4.68e-07, - "mongoose": 4.68e-07, - "monza": 4.68e-07, - "motility": 4.68e-07, - "moz": 4.68e-07, - "mucosa": 4.68e-07, - "munroe": 4.68e-07, - "mused": 4.68e-07, - "napoleons": 6.76e-08, - "nashua": 4.68e-07, - "natalya": 4.68e-07, - "naysayers": 4.68e-07, - "netizens": 4.68e-07, - "neuromuscular": 4.68e-07, - "nme": 4.68e-07, - "noblemen": 4.68e-07, - "nobu": 4.68e-07, - "nolans": 5.37e-08, - "nome": 4.68e-07, - "norths": 1.23e-07, - "northridge": 4.68e-07, - "nta": 4.68e-07, - "nunez": 4.68e-07, - "obeys": 4.68e-07, - "obsolescence": 4.68e-07, - "obstetrician": 4.68e-07, - "occ": 4.68e-07, - "oceanside": 4.68e-07, - "ogilvy": 4.68e-07, - "ordinal": 4.68e-07, - "outgrow": 4.68e-07, - "outsmart": 4.68e-07, - "overcooked": 4.68e-07, - "overrides": 4.68e-07, - "overstate": 4.68e-07, - "oxnard": 4.68e-07, - "parables": 4.68e-07, - "particulates": 4.68e-07, - "pashtun": 4.68e-07, - "pcbs": 4.68e-07, - "penile": 4.68e-07, - "perfusion": 4.68e-07, - "pessimist": 4.68e-07, - "physiotherapist": 4.68e-07, - "piecing": 4.68e-07, - "placards": 4.68e-07, - "plaguing": 4.68e-07, - "plantain": 4.68e-07, - "podcasting": 4.68e-07, - "poms": 4.68e-07, - "porky": 4.68e-07, - "poser": 4.68e-07, - "ppt": 4.68e-07, - "preschoolers": 4.68e-07, - "pronounces": 4.68e-07, - "pullin": 4.68e-07, - "pyeongchang": 4.68e-07, - "pylon": 4.68e-07, - "quantifying": 4.68e-07, - "quip": 4.68e-07, - "radishes": 4.68e-07, - "rayburn": 4.68e-07, - "recife": 4.68e-07, - "recyclable": 4.68e-07, - "redirecting": 4.68e-07, - "reenactment": 4.68e-07, - "refit": 4.68e-07, - "reiterating": 4.68e-07, - "rejuvenate": 4.68e-07, - "relaunched": 4.68e-07, - "renard": 4.68e-07, - "renderings": 4.68e-07, - "renton": 4.68e-07, - "repaying": 4.68e-07, - "rereading": 4.68e-07, - "resellers": 4.68e-07, - "respirator": 4.68e-07, - "resplendent": 4.68e-07, - "restated": 4.68e-07, - "revitalized": 4.68e-07, - "rhythmically": 4.68e-07, - "rigour": 4.68e-07, - "rileys": 4.68e-07, - "romani": 4.68e-07, - "roomy": 4.68e-07, - "rowena": 4.68e-07, - "rsc": 4.68e-07, - "rtc": 4.68e-07, - "rti": 4.68e-07, - "rulebook": 4.68e-07, - "salvia": 4.68e-07, - "saps": 1.02e-07, - "scm": 4.68e-07, - "seaton": 4.68e-07, - "seduces": 4.68e-07, - "seeps": 4.68e-07, - "segregate": 4.68e-07, - "seminaries": 4.68e-07, - "sfc": 4.68e-07, - "shaftesbury": 4.68e-07, - "shhhh": 4.68e-07, - "signer": 4.68e-07, - "signet": 4.68e-07, - "silicate": 4.68e-07, - "singlet": 4.68e-07, - "sirs": 8.13e-08, - "skewer": 4.68e-07, - "sloths": 4.68e-07, - "slugging": 4.68e-07, - "snares": 4.68e-07, - "soldered": 4.68e-07, - "spammers": 4.68e-07, - "spastic": 4.68e-07, - "specks": 1.23e-08, - "spina": 4.68e-07, - "squall": 4.68e-07, - "sst": 4.68e-07, - "stabilizers": 4.68e-07, - "starlet": 4.68e-07, - "stayin": 4.68e-07, - "steinbeck": 4.68e-07, - "stinson": 4.68e-07, - "stockpiles": 4.68e-07, - "stoners": 6.61e-08, - "stranding": 4.68e-07, - "strangeness": 4.68e-07, - "stratum": 4.68e-07, - "strenuously": 4.68e-07, - "strove": 4.68e-07, - "surmise": 4.68e-07, - "susana": 4.68e-07, - "swindle": 4.68e-07, - "swirled": 4.68e-07, - "swordfish": 4.68e-07, - "swot": 4.68e-07, - "takings": 4.68e-07, - "talkers": 4.68e-07, - "tcs": 4.68e-07, - "tegan": 4.68e-07, - "tempore": 4.68e-07, - "tentacle": 4.68e-07, - "terse": 4.68e-07, - "thackeray": 4.68e-07, - "thales": 4.68e-07, - "thawing": 4.68e-07, - "thermonuclear": 4.68e-07, - "thinnest": 4.68e-07, - "thrace": 4.68e-07, - "timeliness": 4.68e-07, - "tincture": 4.68e-07, - "tio": 4.68e-07, - "tivoli": 4.68e-07, - "tmp": 4.68e-07, - "tombstones": 4.68e-07, - "tonto": 4.68e-07, - "tooting": 4.68e-07, - "topps": 4.68e-07, - "tora": 4.68e-07, - "torments": 4.68e-07, - "traitorous": 4.68e-07, - "transact": 4.68e-07, - "trawler": 4.68e-07, - "triumphantly": 4.68e-07, - "trustworthiness": 4.68e-07, - "tsx": 4.68e-07, - "tuan": 4.68e-07, - "tuc": 4.68e-07, - "tunbridge": 4.68e-07, - "turkic": 4.68e-07, - "turnips": 4.68e-07, - "tuskegee": 4.68e-07, - "ubers": 1.05e-07, - "ultras": 4.68e-07, - "unadulterated": 4.68e-07, - "unbelievers": 4.68e-07, - "undeclared": 4.68e-07, - "undercurrent": 4.68e-07, - "undergrowth": 4.68e-07, - "underpin": 4.68e-07, - "unseemly": 4.68e-07, - "unsympathetic": 4.68e-07, - "unyielding": 4.68e-07, - "upheavals": 4.68e-07, - "urbanized": 4.68e-07, - "usages": 4.68e-07, - "vacuuming": 4.68e-07, - "vergara": 4.68e-07, - "vers": 4.68e-07, - "vesuvius": 4.68e-07, - "videography": 4.68e-07, - "viejo": 4.68e-07, - "wale": 4.68e-07, - "wallowing": 4.68e-07, - "wavered": 4.68e-07, - "wench": 4.68e-07, - "westin": 4.68e-07, - "wexler": 4.68e-07, - "whoevers": 4.68e-07, - "wiggles": 4.68e-07, - "wilberforce": 4.68e-07, - "wilfully": 4.68e-07, - "wirelessly": 4.68e-07, - "witchs": 4.68e-07, - "woking": 4.68e-07, - "woodhead": 4.68e-07, - "worsens": 4.68e-07, - "xxii": 4.68e-07, - "yeshiva": 4.68e-07, - "zany": 4.68e-07, - "zedd": 4.68e-07, - "zeno": 4.68e-07, - "zucker": 4.68e-07, - "aau": 4.57e-07, - "abalone": 4.57e-07, - "abdicate": 4.57e-07, - "accosted": 4.57e-07, - "adjournment": 4.57e-07, - "admonished": 4.57e-07, - "affable": 4.57e-07, - "aficionados": 4.57e-07, - "aggressors": 4.57e-07, - "airbrush": 4.57e-07, - "airsoft": 4.57e-07, - "alarmingly": 4.57e-07, - "algonquin": 4.57e-07, - "alon": 4.57e-07, - "alopecia": 4.57e-07, - "alzheimer": 4.57e-07, - "ander": 4.57e-07, - "anja": 4.57e-07, - "annika": 4.57e-07, - "apocryphal": 4.57e-07, - "arguable": 4.57e-07, - "arianna": 4.57e-07, - "aru": 4.57e-07, - "asghar": 4.57e-07, - "ashworth": 4.57e-07, - "assembles": 4.57e-07, - "avowed": 4.57e-07, - "bahama": 4.57e-07, - "baldness": 4.57e-07, - "bamford": 4.57e-07, - "bathhouse": 4.57e-07, - "bayonne": 4.57e-07, - "beekeeping": 4.57e-07, - "beltran": 4.57e-07, - "bennington": 4.57e-07, - "berk": 4.57e-07, - "bide": 4.57e-07, - "biotic": 4.57e-07, - "bisexuality": 4.57e-07, - "bismuth": 4.57e-07, - "bitters": 4.57e-07, - "biweekly": 4.57e-07, - "bizarrely": 4.57e-07, - "blacker": 4.57e-07, - "blemishes": 4.57e-07, - "bloomed": 4.57e-07, - "bloomer": 4.57e-07, - "bmo": 4.57e-07, - "boleyn": 4.57e-07, - "bolshoi": 4.57e-07, - "boulevards": 4.57e-07, - "brags": 4.57e-07, - "brainwash": 4.57e-07, - "breadwinner": 4.57e-07, - "bridgend": 4.57e-07, - "bridgestone": 4.57e-07, - "bulbous": 4.57e-07, - "bunbury": 4.57e-07, - "butternut": 4.57e-07, - "butting": 4.57e-07, - "cambria": 4.57e-07, - "capa": 4.57e-07, - "capillaries": 4.57e-07, - "carcinogens": 4.57e-07, - "cardiomyopathy": 4.57e-07, - "caregiving": 4.57e-07, - "carpeted": 4.57e-07, - "casas": 4.57e-07, - "cea": 4.57e-07, - "cerro": 4.57e-07, - "chaka": 4.57e-07, - "charly": 4.57e-07, - "chastised": 4.57e-07, - "cie": 4.57e-07, - "cin": 4.57e-07, - "circuses": 4.57e-07, - "clank": 4.57e-07, - "classifier": 4.57e-07, - "cliques": 4.57e-07, - "clp": 4.57e-07, - "combinatorial": 4.57e-07, - "compensates": 4.57e-07, - "constitutive": 4.57e-07, - "coolly": 4.57e-07, - "copping": 4.57e-07, - "cormier": 4.57e-07, - "cornering": 4.57e-07, - "coronal": 4.57e-07, - "counterweight": 4.57e-07, - "coupler": 4.57e-07, - "courtesan": 4.57e-07, - "cristobal": 4.57e-07, - "cuck": 4.57e-07, - "curable": 4.57e-07, - "curative": 4.57e-07, - "cushy": 4.57e-07, - "cysteine": 4.57e-07, - "dalmatian": 4.57e-07, - "danilo": 4.57e-07, - "darin": 4.57e-07, - "darkroom": 4.57e-07, - "daviss": 4.57e-07, - "decentralised": 4.57e-07, - "deciphering": 4.57e-07, - "defibrillator": 4.57e-07, - "desirability": 4.57e-07, - "deuterium": 4.57e-07, - "dietz": 4.57e-07, - "diluting": 4.57e-07, - "diplo": 4.57e-07, - "disconnection": 4.57e-07, - "disenchanted": 4.57e-07, - "distillers": 4.57e-07, - "dodgeball": 4.57e-07, - "dodges": 5.25e-08, - "donalds": 9.12e-08, - "downwind": 4.57e-07, - "drago": 4.57e-07, - "dri": 4.57e-07, - "dropouts": 4.57e-07, - "duckling": 4.57e-07, - "dunked": 4.57e-07, - "eac": 4.57e-07, - "ectopic": 4.57e-07, - "educates": 4.57e-07, - "elbert": 4.57e-07, - "elmira": 4.57e-07, - "endoscopic": 4.57e-07, - "engulf": 4.57e-07, - "enrollees": 4.57e-07, - "enrollments": 4.57e-07, - "enthralling": 4.57e-07, - "epping": 4.57e-07, - "equaled": 4.57e-07, - "equivalency": 4.57e-07, - "erc": 4.57e-07, - "essayist": 4.57e-07, - "excavate": 4.57e-07, - "exceptionalism": 4.57e-07, - "exchangers": 4.57e-07, - "excreted": 4.57e-07, - "fallback": 4.57e-07, - "faris": 4.57e-07, - "faroe": 4.57e-07, - "farsi": 4.57e-07, - "fess": 4.57e-07, - "feu": 4.57e-07, - "fib": 4.57e-07, - "fico": 4.57e-07, - "filename": 4.57e-07, - "finsbury": 4.57e-07, - "firebird": 4.57e-07, - "flings": 4.57e-07, - "foreheads": 4.57e-07, - "forgeries": 4.57e-07, - "forsythe": 4.57e-07, - "fossilized": 4.57e-07, - "fournier": 4.57e-07, - "franca": 4.57e-07, - "franchised": 4.57e-07, - "fraudsters": 4.57e-07, - "freddys": 4.57e-07, - "fromm": 4.57e-07, - "fsc": 4.57e-07, - "fte": 4.57e-07, - "gaffe": 4.57e-07, - "gallatin": 4.57e-07, - "gard": 4.57e-07, - "gargantuan": 4.57e-07, - "gavel": 4.57e-07, - "geometries": 4.57e-07, - "ghosted": 4.57e-07, - "glens": 1.2e-07, - "glitz": 4.57e-07, - "goalies": 6.03e-08, - "godhead": 4.57e-07, - "godlike": 4.57e-07, - "goofing": 4.57e-07, - "goverment": 4.57e-07, - "goya": 4.57e-07, - "grates": 4.57e-07, - "gravestone": 4.57e-07, - "gridiron": 4.57e-07, - "grohl": 4.57e-07, - "grp": 4.57e-07, - "grupo": 4.57e-07, - "haggis": 4.57e-07, - "hainan": 4.57e-07, - "hamad": 4.57e-07, - "hangings": 4.57e-07, - "headdress": 4.57e-07, - "heli": 4.57e-07, - "hemmed": 4.57e-07, - "hgh": 4.57e-07, - "higuain": 4.57e-07, - "hoarder": 4.57e-07, - "hoarse": 4.57e-07, - "holyoke": 4.57e-07, - "homebrew": 4.57e-07, - "homebuyers": 4.57e-07, - "hoppy": 4.57e-07, - "howells": 8.71e-08, - "hts": 4.57e-07, - "hydrographic": 4.57e-07, - "iago": 4.57e-07, - "icebergs": 4.57e-07, - "icelands": 4.57e-07, - "illegality": 4.57e-07, - "imperious": 4.57e-07, - "implored": 4.57e-07, - "indore": 4.57e-07, - "industrialised": 4.57e-07, - "infanticide": 4.57e-07, - "infestations": 4.57e-07, - "ingraham": 4.57e-07, - "injectors": 4.57e-07, - "injects": 4.57e-07, - "ino": 4.57e-07, - "inoculation": 4.57e-07, - "inordinate": 4.57e-07, - "inquires": 4.57e-07, - "insensitivity": 4.57e-07, - "insincere": 4.57e-07, - "instigator": 4.57e-07, - "insubordination": 4.57e-07, - "intercity": 4.57e-07, - "iras": 1.95e-07, - "isc": 4.57e-07, - "isotopic": 4.57e-07, - "iver": 4.57e-07, - "ivey": 4.57e-07, - "jal": 4.57e-07, - "jeopardizing": 4.57e-07, - "joakim": 4.57e-07, - "joggers": 4.57e-07, - "joh": 4.57e-07, - "johnstown": 4.57e-07, - "josep": 4.57e-07, - "karel": 4.57e-07, - "kebabs": 4.57e-07, - "khomeini": 4.57e-07, - "klinger": 4.57e-07, - "koalas": 4.57e-07, - "kodiak": 4.57e-07, - "kook": 4.57e-07, - "kronos": 4.57e-07, - "kunming": 4.57e-07, - "ladle": 4.57e-07, - "launchpad": 4.57e-07, - "laundered": 4.57e-07, - "laundromat": 4.57e-07, - "lavinia": 4.57e-07, - "lavrov": 4.57e-07, - "laxative": 4.57e-07, - "laxatives": 4.57e-07, - "leeward": 4.57e-07, - "lentil": 4.57e-07, - "lepage": 4.57e-07, - "lewisham": 4.57e-07, - "liaisons": 4.57e-07, - "lifeguards": 4.57e-07, - "lionsgate": 4.57e-07, - "liston": 4.57e-07, - "litters": 4.57e-07, - "lma": 4.57e-07, - "loca": 4.57e-07, - "lolo": 4.57e-07, - "lusaka": 4.57e-07, - "lustful": 4.57e-07, - "lustrous": 4.57e-07, - "macintyre": 4.57e-07, - "macroscopic": 4.57e-07, - "mahindra": 4.57e-07, - "maines": 9.33e-08, - "malden": 4.57e-07, - "marbled": 4.57e-07, - "margery": 4.57e-07, - "marten": 4.57e-07, - "materia": 4.57e-07, - "maxime": 4.57e-07, - "mbeki": 4.57e-07, - "mccollum": 4.57e-07, - "mcconaughey": 4.57e-07, - "mcmurray": 4.57e-07, - "meaner": 4.57e-07, - "medway": 4.57e-07, - "meetups": 4.57e-07, - "mensa": 4.57e-07, - "mignon": 4.57e-07, - "millicent": 4.57e-07, - "milt": 4.57e-07, - "mlg": 4.57e-07, - "moda": 4.57e-07, - "modric": 4.57e-07, - "morsi": 4.57e-07, - "morten": 4.57e-07, - "mosby": 4.57e-07, - "mosh": 4.57e-07, - "mosses": 4.57e-07, - "mozarts": 4.57e-07, - "muellers": 4.57e-07, - "mumbles": 4.57e-07, - "nabil": 4.57e-07, - "nationalisation": 4.57e-07, - "ncs": 4.57e-07, - "ndtv": 4.57e-07, - "newscast": 4.57e-07, - "nex": 4.57e-07, - "nfs": 4.57e-07, - "nicu": 4.57e-07, - "nighter": 4.57e-07, - "nir": 4.57e-07, - "nonverbal": 4.57e-07, - "nui": 4.57e-07, - "oakville": 4.57e-07, - "observatories": 4.57e-07, - "ooc": 4.57e-07, - "orchestrate": 4.57e-07, - "ordovician": 4.57e-07, - "otaku": 4.57e-07, - "ovechkin": 4.57e-07, - "overprotective": 4.57e-07, - "panache": 4.57e-07, - "panelist": 4.57e-07, - "paracetamol": 4.57e-07, - "paralyzing": 4.57e-07, - "parkin": 4.57e-07, - "parthenon": 4.57e-07, - "participle": 4.57e-07, - "pastimes": 4.57e-07, - "pathetically": 4.57e-07, - "pathophysiology": 4.57e-07, - "pauli": 4.57e-07, - "pdfs": 4.57e-07, - "pedantic": 4.57e-07, - "peered": 4.57e-07, - "pegging": 4.57e-07, - "peo": 4.57e-07, - "perthshire": 4.57e-07, - "perturbation": 4.57e-07, - "pha": 4.57e-07, - "phage": 4.57e-07, - "phallic": 4.57e-07, - "phobias": 4.57e-07, - "phonology": 4.57e-07, - "pickings": 4.57e-07, - "pima": 4.57e-07, - "pimping": 4.57e-07, - "pino": 4.57e-07, - "plateaus": 4.57e-07, - "pml": 4.57e-07, - "pocketbook": 4.57e-07, - "polymeric": 4.57e-07, - "portugals": 4.57e-07, - "ppr": 4.57e-07, - "precludes": 4.57e-07, - "prescient": 4.57e-07, - "procurator": 4.57e-07, - "prophesy": 4.57e-07, - "prouder": 4.57e-07, - "puffin": 4.57e-07, - "pumas": 5.62e-08, - "punts": 4.57e-07, - "purebred": 4.57e-07, - "purists": 4.57e-07, - "putney": 4.57e-07, - "qaida": 4.57e-07, - "rafferty": 4.57e-07, - "rar": 4.57e-07, - "ratepayers": 4.57e-07, - "recep": 4.57e-07, - "redline": 4.57e-07, - "rednecks": 4.57e-07, - "reefer": 4.57e-07, - "refilled": 4.57e-07, - "refrigerant": 4.57e-07, - "remarry": 4.57e-07, - "resiliency": 4.57e-07, - "retorted": 4.57e-07, - "revivals": 4.57e-07, - "revving": 4.57e-07, - "rhone": 4.57e-07, - "rhp": 4.57e-07, - "ridding": 4.57e-07, - "riddler": 4.57e-07, - "riordan": 4.57e-07, - "ripon": 4.57e-07, - "rit": 4.57e-07, - "rizal": 4.57e-07, - "rockabilly": 4.57e-07, - "rodin": 4.57e-07, - "roshan": 4.57e-07, - "salivary": 4.57e-07, - "saloons": 4.57e-07, - "sandford": 4.57e-07, - "sandor": 4.57e-07, - "sanitarium": 4.57e-07, - "sardine": 4.57e-07, - "sauerkraut": 4.57e-07, - "saville": 4.57e-07, - "sawn": 4.57e-07, - "scheer": 4.57e-07, - "schoolboys": 4.57e-07, - "seafloor": 4.57e-07, - "sedimentation": 4.57e-07, - "sequestered": 4.57e-07, - "sharpton": 4.57e-07, - "shavings": 4.57e-07, - "shek": 4.57e-07, - "shing": 4.57e-07, - "shirk": 4.57e-07, - "shitless": 4.57e-07, - "shoves": 4.57e-07, - "shrieks": 4.57e-07, - "shriver": 4.57e-07, - "skewers": 4.57e-07, - "slav": 4.57e-07, - "sleepwalking": 4.57e-07, - "slinky": 4.57e-07, - "slipknot": 4.57e-07, - "smirking": 4.57e-07, - "snd": 4.57e-07, - "snorkeling": 4.57e-07, - "snuggled": 4.57e-07, - "soames": 4.57e-07, - "softens": 4.57e-07, - "solon": 4.57e-07, - "speedster": 4.57e-07, - "spellbound": 4.57e-07, - "spiel": 4.57e-07, - "splint": 4.57e-07, - "spunk": 4.57e-07, - "squinting": 4.57e-07, - "squirming": 4.57e-07, - "statham": 4.57e-07, - "stc": 4.57e-07, - "stepan": 4.57e-07, - "stethoscope": 4.57e-07, - "stoops": 4.57e-07, - "strident": 4.57e-07, - "superstore": 4.57e-07, - "sutcliffe": 4.57e-07, - "svg": 4.57e-07, - "swank": 4.57e-07, - "swerving": 4.57e-07, - "swipes": 4.57e-07, - "syfy": 4.57e-07, - "syriac": 4.57e-07, - "tacks": 4.57e-07, - "takumi": 4.57e-07, - "tans": 1.66e-07, - "techcrunch": 4.57e-07, - "tendering": 4.57e-07, - "tenses": 4.57e-07, - "thay": 4.57e-07, - "thicc": 4.57e-07, - "thinkpad": 4.57e-07, - "thors": 6.46e-08, - "tilbury": 4.57e-07, - "tilda": 4.57e-07, - "toasts": 4.57e-07, - "tobey": 4.57e-07, - "tolkiens": 4.57e-07, - "tolling": 4.57e-07, - "tomi": 4.57e-07, - "torts": 4.57e-07, - "tradeoff": 4.57e-07, - "trapp": 4.57e-07, - "treadwell": 4.57e-07, - "tritium": 4.57e-07, - "tsn": 4.57e-07, - "tsu": 4.57e-07, - "tubby": 4.57e-07, - "tubers": 4.57e-07, - "tutti": 4.57e-07, - "twill": 4.57e-07, - "twinks": 4.57e-07, - "uavs": 4.57e-07, - "ubiquity": 4.57e-07, - "udall": 4.57e-07, - "unaccountable": 4.57e-07, - "unaffordable": 4.57e-07, - "underfoot": 4.57e-07, - "undrafted": 4.57e-07, - "unevenly": 4.57e-07, - "ung": 4.57e-07, - "unknowable": 4.57e-07, - "unreachable": 4.57e-07, - "unsealed": 4.57e-07, - "upc": 4.57e-07, - "upswing": 4.57e-07, - "urbanisation": 4.57e-07, - "uxbridge": 4.57e-07, - "valdes": 4.57e-07, - "varun": 4.57e-07, - "vastness": 4.57e-07, - "veganism": 4.57e-07, - "velasquez": 4.57e-07, - "verdun": 4.57e-07, - "vickie": 4.57e-07, - "vincennes": 4.57e-07, - "vogt": 4.57e-07, - "vou": 4.57e-07, - "waddell": 4.57e-07, - "wags": 4.57e-07, - "waikiki": 4.57e-07, - "waistcoat": 4.57e-07, - "wald": 4.57e-07, - "wankers": 4.57e-07, - "warburg": 4.57e-07, - "weeknd": 4.57e-07, - "wheelbarrow": 4.57e-07, - "whipple": 4.57e-07, - "wic": 4.57e-07, - "wrangling": 4.57e-07, - "yara": 4.57e-07, - "yawns": 4.57e-07, - "yellen": 4.57e-07, - "yost": 4.57e-07, - "yousef": 4.57e-07, - "yuna": 4.57e-07, - "zn": 4.57e-07, - "abacus": 4.47e-07, - "abbotsford": 4.47e-07, - "abkhazia": 4.47e-07, - "abolitionists": 4.47e-07, - "absorbers": 4.47e-07, - "acct": 4.47e-07, - "acetic": 4.47e-07, - "aed": 4.47e-07, - "affidavits": 4.47e-07, - "afr": 4.47e-07, - "agape": 4.47e-07, - "agh": 4.47e-07, - "ailes": 4.47e-07, - "aimless": 4.47e-07, - "akhtar": 4.47e-07, - "alasdair": 4.47e-07, - "aldous": 4.47e-07, - "aldrin": 4.47e-07, - "aliexpress": 4.47e-07, - "allegiances": 4.47e-07, - "allstate": 4.47e-07, - "alo": 4.47e-07, - "altho": 4.47e-07, - "ambrosia": 4.47e-07, - "americano": 4.47e-07, - "amitabh": 4.47e-07, - "amoral": 4.47e-07, - "anise": 4.47e-07, - "ansar": 4.47e-07, - "aragorn": 4.47e-07, - "argonne": 4.47e-07, - "argumentation": 4.47e-07, - "asphyxiation": 4.47e-07, - "assessors": 5.5e-08, - "astaire": 4.47e-07, - "attn": 4.47e-07, - "auden": 4.47e-07, - "austrias": 4.47e-07, - "avs": 4.47e-07, - "babyface": 4.47e-07, - "backstroke": 4.47e-07, - "baits": 4.47e-07, - "balsam": 4.47e-07, - "balzac": 4.47e-07, - "barbecues": 4.47e-07, - "barbell": 4.47e-07, - "barbican": 4.47e-07, - "baskin": 4.47e-07, - "bastions": 4.47e-07, - "bellator": 4.47e-07, - "benzodiazepines": 4.47e-07, - "bilingualism": 4.47e-07, - "biodiesel": 4.47e-07, - "blogosphere": 4.47e-07, - "bmt": 4.47e-07, - "bobble": 4.47e-07, - "bobsleigh": 4.47e-07, - "bohr": 4.47e-07, - "bola": 4.47e-07, - "boniface": 4.47e-07, - "boxy": 4.47e-07, - "boynton": 4.47e-07, - "brahmins": 4.47e-07, - "breakwater": 4.47e-07, - "breckenridge": 4.47e-07, - "broiler": 4.47e-07, - "brookhaven": 4.47e-07, - "buckner": 4.47e-07, - "buoyed": 4.47e-07, - "bushnell": 4.47e-07, - "bypasses": 4.47e-07, - "caliper": 4.47e-07, - "canopies": 4.47e-07, - "cargoes": 4.47e-07, - "caron": 4.47e-07, - "carted": 4.47e-07, - "cazorla": 4.47e-07, - "cbr": 4.47e-07, - "celluloid": 4.47e-07, - "chae": 4.47e-07, - "chantilly": 4.47e-07, - "chens": 4.47e-07, - "chimed": 4.47e-07, - "cilia": 4.47e-07, - "cinch": 4.47e-07, - "cirrus": 4.47e-07, - "clarksville": 4.47e-07, - "clatter": 4.47e-07, - "clench": 4.47e-07, - "clos": 4.47e-07, - "closeted": 4.47e-07, - "coinbase": 4.47e-07, - "colic": 4.47e-07, - "collectable": 4.47e-07, - "combats": 4.47e-07, - "commonsense": 4.47e-07, - "conceals": 4.47e-07, - "cond": 4.47e-07, - "confirmations": 4.47e-07, - "confound": 4.47e-07, - "conjugal": 4.47e-07, - "contouring": 4.47e-07, - "conyers": 4.47e-07, - "cornwallis": 4.47e-07, - "corr": 4.47e-07, - "couplings": 4.47e-07, - "courageously": 4.47e-07, - "covalent": 4.47e-07, - "crackhead": 4.47e-07, - "crawfish": 4.47e-07, - "crispr": 4.47e-07, - "cruciate": 4.47e-07, - "cudi": 4.47e-07, - "cufflinks": 4.47e-07, - "cussing": 4.47e-07, - "dandruff": 4.47e-07, - "darmstadt": 4.47e-07, - "dawsons": 4.47e-07, - "deductive": 4.47e-07, - "defile": 4.47e-07, - "defiled": 4.47e-07, - "dela": 4.47e-07, - "deletions": 4.47e-07, - "delved": 4.47e-07, - "depeche": 4.47e-07, - "deplete": 4.47e-07, - "deteriorates": 4.47e-07, - "devalue": 4.47e-07, - "devel": 4.47e-07, - "dido": 4.47e-07, - "dingle": 4.47e-07, - "diphtheria": 4.47e-07, - "disconnects": 4.47e-07, - "dispelled": 4.47e-07, - "dispensers": 4.47e-07, - "disturbingly": 4.47e-07, - "dob": 4.47e-07, - "doer": 4.47e-07, - "doorknob": 4.47e-07, - "doormat": 4.47e-07, - "downsize": 4.47e-07, - "dpr": 4.47e-07, - "dragoon": 4.47e-07, - "dsa": 4.47e-07, - "dwelt": 4.47e-07, - "easygoing": 4.47e-07, - "eben": 4.47e-07, - "elway": 4.47e-07, - "envisioning": 4.47e-07, - "envisions": 4.47e-07, - "epcot": 4.47e-07, - "epidermal": 4.47e-07, - "erratically": 4.47e-07, - "esperanza": 4.47e-07, - "essences": 4.47e-07, - "etna": 4.47e-07, - "etruscan": 4.47e-07, - "excusing": 4.47e-07, - "extraordinaire": 4.47e-07, - "facials": 4.47e-07, - "fallujah": 4.47e-07, - "farcical": 4.47e-07, - "fattest": 4.47e-07, - "fawning": 4.47e-07, - "featherweight": 4.47e-07, - "feigned": 4.47e-07, - "feinberg": 4.47e-07, - "ferraris": 3.39e-07, - "fetishes": 4.47e-07, - "filip": 4.47e-07, - "filippo": 4.47e-07, - "fiske": 4.47e-07, - "flasks": 4.47e-07, - "folate": 4.47e-07, - "folkestone": 4.47e-07, - "forthwith": 4.47e-07, - "frampton": 4.47e-07, - "frankfurter": 4.47e-07, - "fre": 4.47e-07, - "frets": 4.47e-07, - "frome": 4.47e-07, - "fulani": 4.47e-07, - "gassing": 4.47e-07, - "gautam": 4.47e-07, - "gbs": 2e-07, - "geri": 4.47e-07, - "gestalt": 4.47e-07, - "gfs": 2.34e-07, - "gigabyte": 4.47e-07, - "gilda": 4.47e-07, - "gipsy": 4.47e-07, - "giulio": 4.47e-07, - "glint": 4.47e-07, - "gloating": 4.47e-07, - "gnc": 4.47e-07, - "goad": 4.47e-07, - "goddamnit": 4.47e-07, - "grammars": 4.47e-07, - "greenlight": 4.47e-07, - "greig": 4.47e-07, - "greyish": 4.47e-07, - "grog": 4.47e-07, - "groupie": 4.47e-07, - "gruden": 4.47e-07, - "guardia": 4.47e-07, - "haggle": 4.47e-07, - "halcyon": 4.47e-07, - "halos": 6.17e-08, - "handicaps": 4.47e-07, - "handicraft": 4.47e-07, - "harshness": 4.47e-07, - "hashim": 4.47e-07, - "hea": 4.47e-07, - "headscarf": 4.47e-07, - "headshots": 4.47e-07, - "heaping": 4.47e-07, - "heartbeats": 4.47e-07, - "hedwig": 4.47e-07, - "heine": 4.47e-07, - "helios": 4.47e-07, - "hilo": 4.47e-07, - "hons": 4.47e-07, - "hotbed": 4.47e-07, - "hotness": 4.47e-07, - "hoya": 4.47e-07, - "hungarys": 4.47e-07, - "ians": 1.62e-07, - "ifrs": 4.47e-07, - "immunoglobulin": 4.47e-07, - "imperatives": 4.47e-07, - "incinerated": 4.47e-07, - "indented": 4.47e-07, - "inking": 4.47e-07, - "insolence": 4.47e-07, - "instigation": 4.47e-07, - "irresponsibility": 4.47e-07, - "islamism": 4.47e-07, - "jacinto": 4.47e-07, - "jafar": 8.51e-08, - "jamboree": 4.47e-07, - "jeanie": 4.47e-07, - "jeeves": 4.47e-07, - "jeopardized": 4.47e-07, - "jesuss": 4.47e-07, - "jeweller": 4.47e-07, - "jima": 4.47e-07, - "jorgensen": 4.47e-07, - "juilliard": 4.47e-07, - "jumpin": 4.47e-07, - "kao": 4.47e-07, - "karp": 4.47e-07, - "kasey": 4.47e-07, - "kass": 4.47e-07, - "katerina": 4.47e-07, - "kemal": 4.47e-07, - "kigali": 4.47e-07, - "kyra": 4.47e-07, - "lanyard": 4.47e-07, - "leavitt": 4.47e-07, - "lebrons": 1.35e-07, - "leesburg": 4.47e-07, - "lefts": 2.51e-07, - "letdown": 4.47e-07, - "lewinsky": 4.47e-07, - "libretto": 4.47e-07, - "lidar": 4.47e-07, - "lipoprotein": 4.47e-07, - "lod": 4.47e-07, - "lopes": 4.47e-07, - "lotions": 4.47e-07, - "lox": 4.47e-07, - "luckier": 4.47e-07, - "lundy": 4.47e-07, - "lycra": 4.47e-07, - "macclesfield": 4.47e-07, - "machina": 4.47e-07, - "maddow": 4.47e-07, - "madmen": 4.47e-07, - "mahon": 4.47e-07, - "malignancy": 4.47e-07, - "mamie": 4.47e-07, - "mandel": 4.47e-07, - "margarets": 4.47e-07, - "marginalization": 4.47e-07, - "marshy": 4.47e-07, - "masai": 4.47e-07, - "massing": 4.47e-07, - "matriculation": 4.47e-07, - "mcclintock": 4.47e-07, - "mclennan": 4.47e-07, - "mecklenburg": 4.47e-07, - "medallions": 4.47e-07, - "meister": 4.47e-07, - "mercifully": 4.47e-07, - "mersey": 4.47e-07, - "mev": 4.47e-07, - "michelles": 4.47e-07, - "microbiome": 4.47e-07, - "midgets": 4.47e-07, - "mindsets": 4.47e-07, - "ministrys": 4.47e-07, - "minutiae": 4.47e-07, - "misrepresent": 4.47e-07, - "misrepresenting": 4.47e-07, - "mitra": 4.47e-07, - "miyagi": 4.47e-07, - "mmmmm": 4.47e-07, - "mongrel": 4.47e-07, - "morin": 4.47e-07, - "moscows": 4.47e-07, - "mrp": 4.47e-07, - "mtvs": 4.47e-07, - "mulling": 4.47e-07, - "mundy": 4.47e-07, - "munn": 4.47e-07, - "musgrave": 4.47e-07, - "nairn": 4.47e-07, - "nak": 4.47e-07, - "nancys": 4.47e-07, - "nanoscale": 4.47e-07, - "napolitano": 4.47e-07, - "neely": 4.47e-07, - "neha": 4.47e-07, - "neiman": 4.47e-07, - "ner": 4.47e-07, - "nibbling": 4.47e-07, - "nisha": 4.47e-07, - "nita": 4.47e-07, - "nob": 4.47e-07, - "nother": 4.47e-07, - "nuys": 4.47e-07, - "oas": 4.47e-07, - "oberon": 4.47e-07, - "objectors": 4.47e-07, - "octagonal": 4.47e-07, - "ofcom": 4.47e-07, - "oldie": 4.47e-07, - "operable": 4.47e-07, - "organises": 4.47e-07, - "orgasmic": 4.47e-07, - "oui": 4.47e-07, - "outclassed": 4.47e-07, - "overflows": 4.47e-07, - "overhear": 4.47e-07, - "oyo": 4.47e-07, - "pacifism": 4.47e-07, - "padma": 4.47e-07, - "pampering": 4.47e-07, - "paralyze": 4.47e-07, - "parra": 4.47e-07, - "pascoe": 4.47e-07, - "pasquale": 4.47e-07, - "pelts": 4.47e-07, - "perennials": 4.47e-07, - "perp": 4.47e-07, - "perugia": 4.47e-07, - "pham": 4.47e-07, - "phu": 4.47e-07, - "pillsbury": 4.47e-07, - "pineda": 4.47e-07, - "pinewood": 4.47e-07, - "pio": 4.47e-07, - "pjs": 2.4e-07, - "platters": 4.47e-07, - "policymaking": 4.47e-07, - "porting": 4.47e-07, - "postnatal": 4.47e-07, - "powertrain": 4.47e-07, - "predefined": 4.47e-07, - "preferentially": 4.47e-07, - "prelate": 4.47e-07, - "premonition": 4.47e-07, - "presets": 4.47e-07, - "pretenders": 4.47e-07, - "primitives": 4.47e-07, - "propagandists": 4.47e-07, - "proportionality": 4.47e-07, - "proportionately": 4.47e-07, - "provident": 4.47e-07, - "pubescent": 4.47e-07, - "pyro": 4.47e-07, - "qingdao": 4.47e-07, - "quantifiable": 4.47e-07, - "raffaele": 4.47e-07, - "rajah": 4.47e-07, - "ramallah": 4.47e-07, - "randwick": 4.47e-07, - "rata": 4.47e-07, - "ravenna": 4.47e-07, - "rcd": 4.47e-07, - "reaffirming": 4.47e-07, - "recaps": 4.47e-07, - "recharging": 4.47e-07, - "reconsideration": 4.47e-07, - "recur": 4.47e-07, - "recursion": 4.47e-07, - "redheads": 4.47e-07, - "redirects": 4.47e-07, - "redundancies": 4.47e-07, - "registrars": 1.02e-07, - "rehman": 4.47e-07, - "rejoiced": 4.47e-07, - "religiosity": 4.47e-07, - "relished": 4.47e-07, - "reportage": 4.47e-07, - "resents": 4.47e-07, - "resets": 4.47e-07, - "reviled": 4.47e-07, - "rifled": 4.47e-07, - "riva": 4.47e-07, - "robison": 4.47e-07, - "roebuck": 4.47e-07, - "rossetti": 4.47e-07, - "rotator": 4.47e-07, - "rta": 4.47e-07, - "rubbers": 1.12e-08, - "sadist": 4.47e-07, - "sais": 4.47e-07, - "salamanca": 4.47e-07, - "salas": 4.47e-07, - "samara": 4.47e-07, - "sanaa": 2.95e-07, - "sault": 4.47e-07, - "sbi": 4.47e-07, - "scheduler": 4.47e-07, - "schott": 4.47e-07, - "screamer": 4.47e-07, - "scrumptious": 4.47e-07, - "sectioned": 4.47e-07, - "sendai": 4.47e-07, - "shackleton": 4.47e-07, - "shakedown": 4.47e-07, - "shamefully": 4.47e-07, - "shams": 4.47e-07, - "shariah": 7.59e-08, - "shimmy": 4.47e-07, - "shoestring": 4.47e-07, - "shucks": 4.47e-07, - "sired": 4.47e-07, - "sitka": 4.47e-07, - "sleaze": 4.47e-07, - "smg": 4.47e-07, - "smithers": 4.47e-07, - "smoothest": 4.47e-07, - "snags": 4.47e-07, - "snark": 4.47e-07, - "spartanburg": 4.47e-07, - "speculates": 4.47e-07, - "sperry": 4.47e-07, - "spurned": 4.47e-07, - "squamous": 4.47e-07, - "stagnated": 4.47e-07, - "staphylococcus": 4.47e-07, - "stator": 4.47e-07, - "steelhead": 4.47e-07, - "stewed": 4.47e-07, - "stews": 4.47e-07, - "stockman": 4.47e-07, - "stoppages": 4.47e-07, - "straights": 4.47e-07, - "stravinsky": 4.47e-07, - "stuntman": 4.47e-07, - "stylistically": 4.47e-07, - "subjectively": 4.47e-07, - "subpar": 4.47e-07, - "subsumed": 4.47e-07, - "suffixes": 4.47e-07, - "sunbeam": 4.47e-07, - "swanky": 4.47e-07, - "swaths": 4.47e-07, - "symbolizing": 4.47e-07, - "synchrotron": 4.47e-07, - "synthase": 4.47e-07, - "teixeira": 4.47e-07, - "tendulkar": 4.47e-07, - "teton": 4.47e-07, - "thereabouts": 4.47e-07, - "thermos": 4.47e-07, - "thrasher": 4.47e-07, - "timo": 4.47e-07, - "tine": 4.47e-07, - "tinsel": 4.47e-07, - "toppling": 4.47e-07, - "tortuous": 4.47e-07, - "toughen": 4.47e-07, - "trawl": 4.47e-07, - "triglycerides": 4.47e-07, - "triumphal": 4.47e-07, - "tuk": 4.47e-07, - "tulsi": 4.47e-07, - "typology": 4.47e-07, - "tywin": 4.47e-07, - "ultralight": 4.47e-07, - "uncooperative": 4.47e-07, - "underappreciated": 4.47e-07, - "undisciplined": 4.47e-07, - "uninjured": 4.47e-07, - "unlv": 4.47e-07, - "unobstructed": 4.47e-07, - "unobtrusive": 4.47e-07, - "unwitting": 4.47e-07, - "upholstered": 4.47e-07, - "upturned": 4.47e-07, - "usl": 4.47e-07, - "vandenberg": 4.47e-07, - "vaporized": 4.47e-07, - "variances": 4.47e-07, - "vaz": 4.47e-07, - "vela": 4.47e-07, - "vignette": 4.47e-07, - "vulgarity": 4.47e-07, - "wakanda": 4.47e-07, - "wanderlust": 4.47e-07, - "wardrobes": 4.47e-07, - "waterside": 4.47e-07, - "wattage": 4.47e-07, - "waxes": 4.47e-07, - "websters": 6.31e-08, - "wedgwood": 4.47e-07, - "weightless": 4.47e-07, - "wheelhouse": 4.47e-07, - "whiteley": 4.47e-07, - "whitworth": 4.47e-07, - "williamstown": 4.47e-07, - "withstanding": 4.47e-07, - "yucca": 4.47e-07, - "zaha": 4.47e-07, - "zappa": 4.47e-07, - "zx": 4.47e-07, - "abhor": 4.37e-07, - "abreu": 4.37e-07, - "absentia": 4.37e-07, - "accursed": 4.37e-07, - "adaptor": 4.37e-07, - "adj": 4.37e-07, - "aegon": 4.37e-07, - "aeon": 4.37e-07, - "aest": 4.37e-07, - "afterglow": 4.37e-07, - "aghast": 4.37e-07, - "agitate": 4.37e-07, - "ags": 2e-07, - "aight": 4.37e-07, - "alban": 4.37e-07, - "albertas": 4.37e-07, - "alderson": 4.37e-07, - "amador": 4.37e-07, - "amoeba": 4.37e-07, - "andalusia": 4.37e-07, - "annuals": 4.37e-07, - "anselm": 4.37e-07, - "antimatter": 4.37e-07, - "apologetics": 4.37e-07, - "append": 4.37e-07, - "appraisers": 4.37e-07, - "arie": 4.37e-07, - "arnett": 4.37e-07, - "aspirational": 4.37e-07, - "asr": 4.37e-07, - "atmos": 4.37e-07, - "australis": 4.37e-07, - "authoritys": 4.37e-07, - "automaker": 4.37e-07, - "autonomously": 4.37e-07, - "auxiliaries": 4.37e-07, - "awp": 4.37e-07, - "ayrton": 4.37e-07, - "azur": 4.37e-07, - "backpacker": 4.37e-07, - "baidu": 4.37e-07, - "baka": 4.37e-07, - "banbury": 4.37e-07, - "bani": 4.37e-07, - "bankstown": 4.37e-07, - "bared": 4.37e-07, - "bariatric": 4.37e-07, - "basu": 4.37e-07, - "baywatch": 4.37e-07, - "bcg": 4.37e-07, - "bedbugs": 4.37e-07, - "bedded": 4.37e-07, - "bedridden": 4.37e-07, - "berners": 4.37e-07, - "bild": 4.37e-07, - "binance": 4.37e-07, - "birding": 4.37e-07, - "bleh": 4.37e-07, - "blige": 4.37e-07, - "blushed": 4.37e-07, - "bms": 4.37e-07, - "bombarding": 4.37e-07, - "borgia": 4.37e-07, - "boulogne": 4.37e-07, - "bowies": 4.37e-07, - "brecon": 4.37e-07, - "broadcasted": 4.37e-07, - "bronzer": 4.37e-07, - "bukhari": 4.37e-07, - "burnet": 4.37e-07, - "burtons": 4.37e-07, - "buts": 4.37e-07, - "bx": 4.37e-07, - "caen": 4.37e-07, - "caldera": 4.37e-07, - "calvinist": 4.37e-07, - "capitan": 4.37e-07, - "carpe": 4.37e-07, - "carrollton": 4.37e-07, - "caseys": 4.37e-07, - "cataclysm": 4.37e-07, - "catapulted": 4.37e-07, - "cavani": 4.37e-07, - "cdma": 4.37e-07, - "censured": 4.37e-07, - "centrepiece": 4.37e-07, - "chairing": 4.37e-07, - "chaise": 4.37e-07, - "chakras": 4.37e-07, - "characterise": 4.37e-07, - "chautauqua": 4.37e-07, - "chiba": 4.37e-07, - "childers": 4.37e-07, - "chloes": 4.37e-07, - "choc": 4.37e-07, - "choco": 4.37e-07, - "chronograph": 4.37e-07, - "chul": 4.37e-07, - "clairvoyant": 4.37e-07, - "clarita": 4.37e-07, - "clc": 4.37e-07, - "coldness": 4.37e-07, - "coleslaw": 4.37e-07, - "collard": 4.37e-07, - "columbias": 4.37e-07, - "commercialized": 4.37e-07, - "committal": 4.37e-07, - "communicators": 4.37e-07, - "conceptualized": 4.37e-07, - "condensing": 4.37e-07, - "condoned": 4.37e-07, - "connaught": 4.37e-07, - "conniving": 4.37e-07, - "contemptuous": 4.37e-07, - "corroded": 4.37e-07, - "corvallis": 4.37e-07, - "cosmetology": 4.37e-07, - "cotswolds": 4.37e-07, - "counterintelligence": 4.37e-07, - "countertop": 4.37e-07, - "courtier": 4.37e-07, - "crag": 4.37e-07, - "cranium": 4.37e-07, - "crystallization": 4.37e-07, - "csl": 4.37e-07, - "cultivar": 4.37e-07, - "curtiss": 1.38e-07, - "dachshund": 4.37e-07, - "dagenham": 4.37e-07, - "damm": 4.37e-07, - "dampened": 4.37e-07, - "dastardly": 4.37e-07, - "dawns": 3.02e-07, - "deadpan": 4.37e-07, - "decibels": 4.37e-07, - "decried": 4.37e-07, - "deeming": 4.37e-07, - "delinquents": 4.37e-07, - "delorean": 4.37e-07, - "desecrated": 4.37e-07, - "deserting": 4.37e-07, - "detonating": 4.37e-07, - "detours": 4.37e-07, - "dewy": 4.37e-07, - "dilly": 4.37e-07, - "dimitrov": 4.37e-07, - "dings": 4.37e-07, - "dionysus": 4.37e-07, - "discontinuous": 4.37e-07, - "docklands": 4.37e-07, - "dolomite": 4.37e-07, - "dominatrix": 4.37e-07, - "dou": 4.37e-07, - "dov": 4.37e-07, - "doze": 4.37e-07, - "dreamcast": 4.37e-07, - "dwi": 4.37e-07, - "eamon": 4.37e-07, - "eckhart": 4.37e-07, - "eichmann": 4.37e-07, - "elaborates": 4.37e-07, - "elongation": 4.37e-07, - "embiid": 4.37e-07, - "emmerdale": 4.37e-07, - "enlists": 4.37e-07, - "enthused": 4.37e-07, - "erases": 4.37e-07, - "escapism": 4.37e-07, - "euripides": 4.37e-07, - "exasperation": 4.37e-07, - "excelling": 4.37e-07, - "exoskeleton": 4.37e-07, - "expropriation": 4.37e-07, - "extinguishers": 4.37e-07, - "extruded": 4.37e-07, - "falafel": 4.37e-07, - "fallacious": 4.37e-07, - "falstaff": 4.37e-07, - "famines": 4.37e-07, - "fanboys": 4.37e-07, - "fasted": 4.37e-07, - "fastidious": 4.37e-07, - "fealty": 4.37e-07, - "federalists": 4.37e-07, - "fibroblasts": 4.37e-07, - "fido": 4.37e-07, - "filial": 4.37e-07, - "fingerprinting": 4.37e-07, - "fisting": 4.37e-07, - "flaccid": 4.37e-07, - "flagpole": 4.37e-07, - "flamethrower": 4.37e-07, - "florists": 5.25e-08, - "fogg": 4.37e-07, - "footpaths": 4.37e-07, - "forays": 4.37e-07, - "francos": 4.37e-07, - "freda": 4.37e-07, - "freelancing": 4.37e-07, - "freeland": 4.37e-07, - "freezers": 4.37e-07, - "fut": 4.37e-07, - "fv": 4.37e-07, - "gameday": 4.37e-07, - "garnished": 4.37e-07, - "gastronomy": 4.37e-07, - "gauls": 4.37e-07, - "gazprom": 4.37e-07, - "generalised": 4.37e-07, - "generics": 4.37e-07, - "genteel": 4.37e-07, - "geographers": 4.37e-07, - "geotechnical": 4.37e-07, - "gesturing": 4.37e-07, - "ghani": 4.37e-07, - "glenwood": 4.37e-07, - "glib": 4.37e-07, - "glorification": 4.37e-07, - "goshen": 4.37e-07, - "govan": 4.37e-07, - "grands": 4.37e-07, - "gratuity": 4.37e-07, - "grayling": 4.37e-07, - "groningen": 4.37e-07, - "growled": 4.37e-07, - "gumball": 4.37e-07, - "haggling": 4.37e-07, - "hairdressing": 4.37e-07, - "handshakes": 4.37e-07, - "hardens": 1.55e-07, - "hardwoods": 4.37e-07, - "harker": 4.37e-07, - "harkness": 4.37e-07, - "harv": 4.37e-07, - "haye": 4.37e-07, - "hcv": 4.37e-07, - "headstones": 4.37e-07, - "heartbreaker": 4.37e-07, - "hemorrhoids": 4.37e-07, - "henshaw": 4.37e-07, - "herbalife": 4.37e-07, - "herders": 4.37e-07, - "hertford": 4.37e-07, - "hiphop": 4.37e-07, - "histamine": 4.37e-07, - "hitchhiking": 4.37e-07, - "hobbyists": 4.37e-07, - "holocene": 4.37e-07, - "hoosier": 4.37e-07, - "hrm": 4.37e-07, - "hsa": 4.37e-07, - "hst": 4.37e-07, - "humanely": 4.37e-07, - "hustled": 4.37e-07, - "huw": 4.37e-07, - "hynes": 4.37e-07, - "hyphen": 4.37e-07, - "ides": 1.91e-08, - "igloo": 4.37e-07, - "imessage": 4.37e-07, - "impregnable": 4.37e-07, - "impressionism": 4.37e-07, - "incredibles": 4.37e-07, - "indecency": 4.37e-07, - "indentation": 4.37e-07, - "inebriated": 4.37e-07, - "inexorably": 4.37e-07, - "insipid": 4.37e-07, - "intercollegiate": 4.37e-07, - "interdependent": 4.37e-07, - "itineraries": 4.37e-07, - "jamaicans": 4.37e-07, - "jessup": 4.37e-07, - "jewellers": 4.37e-07, - "jiffy": 4.37e-07, - "jor": 4.37e-07, - "jpl": 4.37e-07, - "jpn": 4.37e-07, - "kamara": 4.37e-07, - "kanpur": 4.37e-07, - "karting": 4.37e-07, - "karzai": 4.37e-07, - "keir": 4.37e-07, - "kemper": 4.37e-07, - "kenwood": 4.37e-07, - "ketone": 4.37e-07, - "kf": 4.37e-07, - "kiko": 4.37e-07, - "kimber": 4.37e-07, - "kingsbury": 4.37e-07, - "knackered": 4.37e-07, - "komodo": 4.37e-07, - "ktm": 4.37e-07, - "kunis": 4.37e-07, - "lagi": 4.37e-07, - "lah": 4.37e-07, - "lancers": 4.37e-07, - "lapland": 4.37e-07, - "leaded": 4.37e-07, - "lhasa": 4.37e-07, - "lhc": 4.37e-07, - "lightroom": 4.37e-07, - "lilys": 4.37e-07, - "lingard": 4.37e-07, - "livy": 4.37e-07, - "loaning": 4.37e-07, - "lofts": 4.37e-07, - "loi": 4.37e-07, - "lomond": 4.37e-07, - "lorena": 4.37e-07, - "lossless": 4.37e-07, - "lucan": 4.37e-07, - "lugs": 4.37e-07, - "lyceum": 4.37e-07, - "machinists": 4.37e-07, - "macrae": 4.37e-07, - "madera": 4.37e-07, - "madoff": 4.37e-07, - "maim": 4.37e-07, - "mamba": 4.37e-07, - "mammography": 4.37e-07, - "manchu": 4.37e-07, - "maneuverability": 4.37e-07, - "mangroves": 4.37e-07, - "mankinds": 4.37e-07, - "maples": 4.37e-07, - "marg": 4.37e-07, - "marooned": 4.37e-07, - "martians": 4.37e-07, - "mcallen": 4.37e-07, - "mcelroy": 4.37e-07, - "meena": 4.37e-07, - "merrier": 4.37e-07, - "mesmerising": 4.37e-07, - "mfs": 4.37e-07, - "milliken": 4.37e-07, - "mistrial": 4.37e-07, - "miyamoto": 4.37e-07, - "moffett": 4.37e-07, - "moh": 4.37e-07, - "monicas": 4.37e-07, - "montero": 4.37e-07, - "moorings": 4.37e-07, - "moretti": 4.37e-07, - "mortgaged": 4.37e-07, - "mossy": 4.37e-07, - "murad": 4.37e-07, - "muslin": 4.37e-07, - "myopic": 4.37e-07, - "nabi": 4.37e-07, - "nagel": 4.37e-07, - "naka": 4.37e-07, - "nape": 4.37e-07, - "natively": 4.37e-07, - "natos": 4.37e-07, - "naturals": 4.37e-07, - "nco": 4.37e-07, - "neel": 4.37e-07, - "nehemiah": 4.37e-07, - "nematodes": 4.37e-07, - "netscape": 4.37e-07, - "nida": 4.37e-07, - "nikkei": 4.37e-07, - "nipped": 4.37e-07, - "noncommercial": 4.37e-07, - "nondescript": 4.37e-07, - "norad": 4.37e-07, - "notables": 4.37e-07, - "objectification": 4.37e-07, - "officiate": 4.37e-07, - "ohms": 5.75e-08, - "ope": 4.37e-07, - "optimised": 4.37e-07, - "oracles": 2.63e-07, - "orbitals": 4.37e-07, - "origen": 4.37e-07, - "ornamented": 4.37e-07, - "oso": 4.37e-07, - "ots": 4.37e-07, - "outbid": 4.37e-07, - "outgrowth": 4.37e-07, - "outhouse": 4.37e-07, - "outlawing": 4.37e-07, - "overhanging": 4.37e-07, - "overreach": 4.37e-07, - "pacifier": 4.37e-07, - "pander": 4.37e-07, - "paralleled": 4.37e-07, - "pasts": 4.37e-07, - "patrician": 4.37e-07, - "pederson": 4.37e-07, - "pediatricians": 4.37e-07, - "peeked": 4.37e-07, - "pennsylvanias": 4.37e-07, - "perfumed": 4.37e-07, - "permutation": 4.37e-07, - "phan": 4.37e-07, - "phenol": 4.37e-07, - "philadelphias": 4.37e-07, - "phytoplankton": 4.37e-07, - "pirlo": 4.37e-07, - "plantar": 4.37e-07, - "platos": 4.37e-07, - "pliable": 4.37e-07, - "polemic": 4.37e-07, - "ponderosa": 4.37e-07, - "poppin": 4.37e-07, - "positron": 4.37e-07, - "praia": 4.37e-07, - "prewar": 4.37e-07, - "prodding": 4.37e-07, - "prognostic": 4.37e-07, - "proviso": 4.37e-07, - "prunes": 4.37e-07, - "pubg": 4.37e-07, - "puffer": 4.37e-07, - "purport": 4.37e-07, - "quarts": 4.37e-07, - "quattro": 4.37e-07, - "ques": 4.37e-07, - "queueing": 4.37e-07, - "quint": 4.37e-07, - "radicalization": 4.37e-07, - "radiologist": 4.37e-07, - "ragnarok": 4.37e-07, - "rashford": 4.37e-07, - "raspy": 4.37e-07, - "receivables": 4.37e-07, - "recites": 4.37e-07, - "recuperation": 4.37e-07, - "rediscovering": 4.37e-07, - "redshirt": 4.37e-07, - "referential": 4.37e-07, - "refinements": 4.37e-07, - "reflectors": 4.37e-07, - "regrowth": 4.37e-07, - "reimagined": 4.37e-07, - "reinvention": 4.37e-07, - "reit": 4.37e-07, - "relinquishing": 4.37e-07, - "renunciation": 4.37e-07, - "reparation": 4.37e-07, - "repute": 4.37e-07, - "retardant": 4.37e-07, - "reunites": 4.37e-07, - "revamping": 4.37e-07, - "reversals": 4.37e-07, - "rez": 4.37e-07, - "rhiannon": 4.37e-07, - "ricketts": 4.37e-07, - "ripen": 4.37e-07, - "romaine": 4.37e-07, - "roseville": 4.37e-07, - "rosss": 4.37e-07, - "rounders": 4.37e-07, - "rucksack": 4.37e-07, - "rvs": 1.35e-07, - "sacrilege": 4.37e-07, - "sadr": 4.37e-07, - "safekeeping": 4.37e-07, - "sahel": 4.37e-07, - "sallie": 4.37e-07, - "samaria": 4.37e-07, - "schoolyard": 4.37e-07, - "screenwriters": 4.37e-07, - "scruples": 4.37e-07, - "seafront": 4.37e-07, - "sedatives": 4.37e-07, - "seguin": 4.37e-07, - "selfishly": 4.37e-07, - "serif": 4.37e-07, - "serine": 4.37e-07, - "sexualized": 4.37e-07, - "shaheen": 4.37e-07, - "shallows": 4.37e-07, - "shawshank": 4.37e-07, - "shortfalls": 4.37e-07, - "showrunner": 4.37e-07, - "sickest": 4.37e-07, - "simcoe": 4.37e-07, - "sincerest": 4.37e-07, - "sistine": 4.37e-07, - "snazzy": 4.37e-07, - "snider": 4.37e-07, - "snipes": 4.37e-07, - "sorbet": 4.37e-07, - "soriano": 4.37e-07, - "specialities": 4.37e-07, - "spiny": 4.37e-07, - "spm": 4.37e-07, - "spreader": 4.37e-07, - "squarepants": 4.37e-07, - "ssb": 4.37e-07, - "stanleys": 4.37e-07, - "steepest": 4.37e-07, - "straightaway": 4.37e-07, - "strainer": 4.37e-07, - "sturt": 4.37e-07, - "subsides": 4.37e-07, - "subverted": 4.37e-07, - "sudoku": 4.37e-07, - "suis": 4.37e-07, - "surefire": 4.37e-07, - "surmised": 4.37e-07, - "swabs": 4.37e-07, - "sweetwater": 4.37e-07, - "symantec": 4.37e-07, - "tacitus": 4.37e-07, - "tambourine": 4.37e-07, - "tangy": 4.37e-07, - "tarik": 4.37e-07, - "tch": 4.37e-07, - "tensed": 4.37e-07, - "tft": 4.37e-07, - "throttling": 4.37e-07, - "tics": 4.37e-07, - "tilapia": 4.37e-07, - "timbre": 4.37e-07, - "tiptoe": 4.37e-07, - "tithes": 4.37e-07, - "tongued": 4.37e-07, - "tonkin": 4.37e-07, - "toppers": 4.37e-07, - "torrid": 4.37e-07, - "traumatised": 4.37e-07, - "trawling": 4.37e-07, - "trestle": 4.37e-07, - "troublemakers": 4.37e-07, - "tsunamis": 4.37e-07, - "tuber": 4.37e-07, - "tugged": 4.37e-07, - "ulcerative": 4.37e-07, - "unabridged": 4.37e-07, - "unbearably": 4.37e-07, - "underwriter": 4.37e-07, - "undeserving": 4.37e-07, - "unfunny": 4.37e-07, - "unkempt": 4.37e-07, - "unmitigated": 4.37e-07, - "unneeded": 4.37e-07, - "unsc": 4.37e-07, - "upmarket": 4.37e-07, - "upriver": 4.37e-07, - "uric": 4.37e-07, - "utley": 4.37e-07, - "utterances": 4.37e-07, - "venezuelans": 4.37e-07, - "virat": 4.37e-07, - "vit": 4.37e-07, - "vladivostok": 4.37e-07, - "vole": 4.37e-07, - "volker": 4.37e-07, - "vuelta": 4.37e-07, - "wagners": 4.37e-07, - "wallaby": 4.37e-07, - "warfarin": 4.37e-07, - "warplanes": 4.37e-07, - "warzone": 4.37e-07, - "welds": 4.37e-07, - "westphalia": 4.37e-07, - "whorls": 4.37e-07, - "wilders": 2.29e-07, - "wildwood": 4.37e-07, - "wilkerson": 4.37e-07, - "winder": 4.37e-07, - "wintering": 4.37e-07, - "workaholic": 4.37e-07, - "worthiness": 4.37e-07, - "wrt": 4.37e-07, - "yeager": 4.37e-07, - "yore": 1.78e-08, - "zedong": 4.37e-07, - "zeit": 4.37e-07, - "aamir": 4.27e-07, - "abdi": 4.27e-07, - "aberrations": 4.27e-07, - "addon": 4.27e-07, - "aeg": 4.27e-07, - "aerials": 4.27e-07, - "affix": 4.27e-07, - "afoul": 4.27e-07, - "ahmadinejad": 4.27e-07, - "airlock": 4.27e-07, - "alcatel": 4.27e-07, - "alicante": 4.27e-07, - "allergen": 4.27e-07, - "alleviation": 4.27e-07, - "alphabets": 4.27e-07, - "amara": 4.27e-07, - "ambrosio": 4.27e-07, - "analogs": 4.27e-07, - "anchorman": 4.27e-07, - "angolan": 4.27e-07, - "aphids": 4.27e-07, - "appendices": 4.27e-07, - "applesauce": 4.27e-07, - "aqsa": 4.27e-07, - "aromas": 4.27e-07, - "assuage": 4.27e-07, - "asthmatic": 4.27e-07, - "autopsies": 4.27e-07, - "awed": 4.27e-07, - "bachman": 4.27e-07, - "bailouts": 4.27e-07, - "ballets": 1.78e-07, - "balmoral": 4.27e-07, - "bana": 4.27e-07, - "barreled": 4.27e-07, - "battlegrounds": 4.27e-07, - "bazooka": 4.27e-07, - "beatle": 4.27e-07, - "beckoning": 4.27e-07, - "beckwith": 4.27e-07, - "beebe": 4.27e-07, - "belfort": 4.27e-07, - "bewilderment": 4.27e-07, - "beyer": 4.27e-07, - "bighorn": 4.27e-07, - "biloxi": 4.27e-07, - "biomarker": 4.27e-07, - "bitchin": 4.27e-07, - "bitrate": 4.27e-07, - "bittorrent": 4.27e-07, - "blankly": 4.27e-07, - "bletchley": 4.27e-07, - "blyth": 4.27e-07, - "boho": 4.27e-07, - "bombastic": 4.27e-07, - "braved": 4.27e-07, - "brienne": 4.27e-07, - "brocade": 4.27e-07, - "brt": 4.27e-07, - "btu": 4.27e-07, - "buddhas": 3.72e-07, - "bulldozers": 4.27e-07, - "bunks": 4.27e-07, - "butchering": 4.27e-07, - "cameroonian": 4.27e-07, - "capacitive": 4.27e-07, - "capaldi": 4.27e-07, - "carapace": 4.27e-07, - "carew": 4.27e-07, - "cecile": 4.27e-07, - "cecily": 4.27e-07, - "centurys": 4.27e-07, - "changi": 4.27e-07, - "chapelle": 4.27e-07, - "charlatan": 4.27e-07, - "chatterjee": 4.27e-07, - "checkbook": 4.27e-07, - "chhattisgarh": 4.27e-07, - "chillies": 4.27e-07, - "chim": 4.27e-07, - "chomping": 4.27e-07, - "christen": 4.27e-07, - "christiane": 4.27e-07, - "chucks": 3.24e-07, - "circulates": 4.27e-07, - "cityscape": 4.27e-07, - "clang": 4.27e-07, - "clergymen": 4.27e-07, - "closeup": 4.27e-07, - "clowning": 4.27e-07, - "cmp": 4.27e-07, - "coalesce": 4.27e-07, - "coldwater": 4.27e-07, - "competently": 4.27e-07, - "compresses": 4.27e-07, - "concacaf": 4.27e-07, - "conman": 4.27e-07, - "conning": 4.27e-07, - "constricted": 4.27e-07, - "contrarian": 4.27e-07, - "coped": 4.27e-07, - "cordially": 4.27e-07, - "cormac": 4.27e-07, - "corned": 4.27e-07, - "cornice": 4.27e-07, - "cornwell": 4.27e-07, - "corporeal": 4.27e-07, - "cowering": 4.27e-07, - "creeds": 7.76e-08, - "crepes": 4.27e-07, - "crispin": 4.27e-07, - "criticises": 4.27e-07, - "croats": 4.27e-07, - "crosswalk": 4.27e-07, - "crud": 4.27e-07, - "curation": 4.27e-07, - "curley": 4.27e-07, - "cushman": 4.27e-07, - "cybernetic": 4.27e-07, - "cygnus": 4.27e-07, - "cyndi": 4.27e-07, - "cyrillic": 4.27e-07, - "dsouza": 4.27e-07, - "dampening": 4.27e-07, - "darned": 4.27e-07, - "decaf": 4.27e-07, - "decapitation": 4.27e-07, - "deciphered": 4.27e-07, - "declarative": 4.27e-07, - "dede": 4.27e-07, - "demonstrable": 4.27e-07, - "demonstrative": 4.27e-07, - "despairing": 4.27e-07, - "deviates": 4.27e-07, - "digi": 4.27e-07, - "dillinger": 4.27e-07, - "dinky": 4.27e-07, - "disapproves": 4.27e-07, - "discontinuation": 4.27e-07, - "disliking": 4.27e-07, - "dismemberment": 4.27e-07, - "djing": 4.27e-07, - "dlr": 4.27e-07, - "dmx": 4.27e-07, - "dobby": 4.27e-07, - "doon": 4.27e-07, - "dorman": 4.27e-07, - "downplaying": 4.27e-07, - "doyles": 4.27e-07, - "drawstring": 4.27e-07, - "drunkenly": 4.27e-07, - "dumbbell": 4.27e-07, - "dutiful": 4.27e-07, - "earhart": 4.27e-07, - "earplugs": 4.27e-07, - "earshot": 4.27e-07, - "ecw": 4.27e-07, - "edn": 4.27e-07, - "efi": 4.27e-07, - "eke": 4.27e-07, - "electorates": 4.27e-07, - "elitism": 4.27e-07, - "elven": 4.27e-07, - "emigrant": 4.27e-07, - "enders": 2.57e-07, - "engender": 4.27e-07, - "entente": 4.27e-07, - "enveloping": 4.27e-07, - "escherichia": 4.27e-07, - "etudes": 4.27e-07, - "excavators": 4.27e-07, - "exhausts": 4.27e-07, - "exxonmobil": 4.27e-07, - "factional": 4.27e-07, - "fahey": 4.27e-07, - "felice": 4.27e-07, - "fermenting": 4.27e-07, - "fibromyalgia": 4.27e-07, - "fiftieth": 4.27e-07, - "flacco": 4.27e-07, - "flatbed": 4.27e-07, - "fms": 2.69e-07, - "foals": 4.27e-07, - "footbridge": 4.27e-07, - "forceps": 4.27e-07, - "forecasters": 4.27e-07, - "fos": 4.27e-07, - "frothy": 4.27e-07, - "fucken": 4.27e-07, - "fujitsu": 4.27e-07, - "fume": 4.27e-07, - "gallium": 4.27e-07, - "gantry": 4.27e-07, - "gargoyle": 4.27e-07, - "gaslight": 4.27e-07, - "gastro": 4.27e-07, - "gastroenterology": 4.27e-07, - "gcs": 4.27e-07, - "generalist": 4.27e-07, - "georgi": 4.27e-07, - "germinate": 4.27e-07, - "gershwin": 4.27e-07, - "ghg": 4.27e-07, - "girardi": 4.27e-07, - "gitmo": 4.27e-07, - "glades": 4.27e-07, - "glebe": 4.27e-07, - "glowed": 4.27e-07, - "godard": 4.27e-07, - "goh": 4.27e-07, - "gramps": 4.27e-07, - "granddaughters": 1.07e-07, - "grannies": 4.27e-07, - "gremlin": 4.27e-07, - "grrr": 4.27e-07, - "grudgingly": 4.27e-07, - "gryffindor": 4.27e-07, - "guadeloupe": 4.27e-07, - "gws": 5.89e-08, - "haddad": 4.27e-07, - "hallett": 4.27e-07, - "harbored": 4.27e-07, - "harmonized": 4.27e-07, - "headroom": 4.27e-07, - "hedley": 4.27e-07, - "henan": 4.27e-07, - "heparin": 4.27e-07, - "herded": 4.27e-07, - "hernando": 4.27e-07, - "hgtv": 4.27e-07, - "hikaru": 4.27e-07, - "hilal": 4.27e-07, - "hillel": 4.27e-07, - "hodgkin": 4.27e-07, - "hodor": 4.27e-07, - "hollands": 1.51e-07, - "homily": 4.27e-07, - "hor": 4.27e-07, - "hornby": 4.27e-07, - "humana": 4.27e-07, - "hummingbirds": 4.27e-07, - "humpty": 4.27e-07, - "hustlers": 4.27e-07, - "ibanez": 4.27e-07, - "icbm": 4.27e-07, - "ideation": 4.27e-07, - "iff": 4.27e-07, - "impeccably": 4.27e-07, - "impulsively": 4.27e-07, - "inedible": 4.27e-07, - "inequities": 4.27e-07, - "infinitesimal": 4.27e-07, - "informers": 4.27e-07, - "integrals": 4.27e-07, - "ipods": 4.27e-07, - "isolationist": 4.27e-07, - "iucn": 4.27e-07, - "jailhouse": 4.27e-07, - "jeanine": 4.27e-07, - "jeannette": 4.27e-07, - "jellies": 4.27e-07, - "jetblue": 4.27e-07, - "jubilant": 4.27e-07, - "kain": 4.27e-07, - "kamen": 4.27e-07, - "karat": 4.27e-07, - "karens": 1.23e-07, - "karmic": 4.27e-07, - "keefe": 4.27e-07, - "keener": 4.27e-07, - "keepsake": 4.27e-07, - "kerber": 4.27e-07, - "kilpatrick": 4.27e-07, - "kobo": 4.27e-07, - "kohls": 1.78e-07, - "kono": 4.27e-07, - "krill": 4.27e-07, - "krispy": 4.27e-07, - "krug": 4.27e-07, - "kruse": 4.27e-07, - "laceration": 4.27e-07, - "laplace": 4.27e-07, - "leonards": 1.86e-07, - "libor": 4.27e-07, - "lightened": 4.27e-07, - "liposuction": 4.27e-07, - "literatures": 7.41e-08, - "liven": 4.27e-07, - "lombardo": 4.27e-07, - "longo": 4.27e-07, - "loudon": 4.27e-07, - "lowdown": 4.27e-07, - "loy": 4.27e-07, - "ltr": 4.27e-07, - "lubricated": 4.27e-07, - "lucca": 4.27e-07, - "luk": 4.27e-07, - "lul": 4.27e-07, - "lyricism": 4.27e-07, - "madi": 4.27e-07, - "mages": 5.25e-08, - "maghreb": 4.27e-07, - "mahjong": 4.27e-07, - "maja": 4.27e-07, - "malabar": 4.27e-07, - "malala": 4.27e-07, - "mammary": 4.27e-07, - "maximized": 4.27e-07, - "meer": 4.27e-07, - "menendez": 4.27e-07, - "menopausal": 4.27e-07, - "mers": 4.27e-07, - "metered": 4.27e-07, - "mfg": 4.27e-07, - "mfw": 4.27e-07, - "michonne": 4.27e-07, - "mickeys": 5.62e-08, - "microbe": 4.27e-07, - "midline": 4.27e-07, - "millstone": 4.27e-07, - "mimicry": 4.27e-07, - "mitre": 4.27e-07, - "moonlit": 4.27e-07, - "morningstar": 4.27e-07, - "morphs": 4.27e-07, - "mortis": 4.27e-07, - "mote": 4.27e-07, - "moyer": 4.27e-07, - "multiracial": 4.27e-07, - "munoz": 4.27e-07, - "murchison": 4.27e-07, - "musashi": 4.27e-07, - "mutate": 4.27e-07, - "myeloid": 4.27e-07, - "naik": 4.27e-07, - "naira": 4.27e-07, - "nand": 4.27e-07, - "neglects": 4.27e-07, - "nep": 4.27e-07, - "nervosa": 4.27e-07, - "newsom": 4.27e-07, - "nez": 4.27e-07, - "nickelback": 4.27e-07, - "nimrod": 4.27e-07, - "njpw": 4.27e-07, - "nooooo": 4.27e-07, - "novelties": 4.27e-07, - "novi": 4.27e-07, - "nubian": 4.27e-07, - "nutt": 4.27e-07, - "oakwood": 4.27e-07, - "oblast": 4.27e-07, - "oeuvres": 4.27e-07, - "offhand": 4.27e-07, - "okra": 4.27e-07, - "olney": 4.27e-07, - "omelet": 4.27e-07, - "oozes": 4.27e-07, - "opi": 4.27e-07, - "optometry": 4.27e-07, - "orchestrating": 4.27e-07, - "orwellian": 4.27e-07, - "oscillators": 4.27e-07, - "otp": 4.27e-07, - "outtakes": 4.27e-07, - "pacifica": 4.27e-07, - "paella": 4.27e-07, - "pager": 4.27e-07, - "panicky": 4.27e-07, - "papier": 4.27e-07, - "parasol": 4.27e-07, - "parenthesis": 4.27e-07, - "parser": 4.27e-07, - "partick": 4.27e-07, - "pattison": 4.27e-07, - "peachtree": 4.27e-07, - "peele": 4.27e-07, - "pensive": 4.27e-07, - "performative": 4.27e-07, - "permeate": 4.27e-07, - "persevered": 4.27e-07, - "petticoat": 4.27e-07, - "pheasants": 4.27e-07, - "phenom": 4.27e-07, - "photosynthetic": 4.27e-07, - "pinging": 4.27e-07, - "pinion": 4.27e-07, - "pinter": 4.27e-07, - "pivots": 4.27e-07, - "plenipotentiary": 4.27e-07, - "plotters": 4.27e-07, - "pocono": 4.27e-07, - "pons": 4.27e-07, - "poppers": 4.27e-07, - "posses": 4.27e-07, - "precondition": 4.27e-07, - "preconditions": 4.27e-07, - "premierships": 4.27e-07, - "preppy": 4.27e-07, - "pretensions": 4.27e-07, - "priebus": 4.27e-07, - "professing": 4.27e-07, - "prospector": 4.27e-07, - "psychos": 4.27e-07, - "purvis": 4.27e-07, - "qian": 4.27e-07, - "qual": 4.27e-07, - "quantitatively": 4.27e-07, - "radiative": 4.27e-07, - "rambler": 4.27e-07, - "rance": 4.27e-07, - "rattan": 4.27e-07, - "reactivate": 4.27e-07, - "reapers": 7.76e-08, - "reassembled": 4.27e-07, - "rebalance": 4.27e-07, - "rebooting": 4.27e-07, - "recreates": 4.27e-07, - "refuting": 4.27e-07, - "regress": 4.27e-07, - "reintegration": 4.27e-07, - "rejoining": 4.27e-07, - "renegotiation": 4.27e-07, - "repositioning": 4.27e-07, - "reshaped": 4.27e-07, - "resurface": 4.27e-07, - "retails": 4.27e-07, - "retinue": 4.27e-07, - "rickey": 4.27e-07, - "rnas": 4.27e-07, - "roberson": 4.27e-07, - "rockaway": 4.27e-07, - "rockhampton": 4.27e-07, - "romanesque": 4.27e-07, - "roubles": 4.27e-07, - "rumba": 4.27e-07, - "saatchi": 4.27e-07, - "sallys": 4.27e-07, - "salvaging": 4.27e-07, - "sandi": 4.27e-07, - "saree": 4.27e-07, - "satirist": 4.27e-07, - "schrader": 4.27e-07, - "screenplays": 4.27e-07, - "segundo": 4.27e-07, - "sga": 4.27e-07, - "shaka": 4.27e-07, - "sharpshooter": 4.27e-07, - "shiner": 4.27e-07, - "shrugging": 4.27e-07, - "shrunken": 4.27e-07, - "sidetracked": 4.27e-07, - "silesia": 4.27e-07, - "singlehandedly": 4.27e-07, - "skiff": 4.27e-07, - "skittish": 4.27e-07, - "skopje": 4.27e-07, - "skynet": 4.27e-07, - "slattery": 4.27e-07, - "sleuth": 4.27e-07, - "slocum": 4.27e-07, - "sluice": 4.27e-07, - "smokeless": 4.27e-07, - "solidity": 4.27e-07, - "sorrento": 4.27e-07, - "speciation": 4.27e-07, - "splatoon": 4.27e-07, - "sportsnet": 4.27e-07, - "squaring": 4.27e-07, - "squeamish": 4.27e-07, - "stockade": 4.27e-07, - "stoicism": 4.27e-07, - "stoughton": 4.27e-07, - "straddles": 4.27e-07, - "strasburg": 4.27e-07, - "strontium": 4.27e-07, - "sturm": 4.27e-07, - "sunbury": 4.27e-07, - "superfund": 4.27e-07, - "supposition": 4.27e-07, - "suprised": 4.27e-07, - "svu": 4.27e-07, - "synchronised": 4.27e-07, - "tabasco": 4.27e-07, - "tagore": 4.27e-07, - "tantra": 4.27e-07, - "tarsus": 4.27e-07, - "tasker": 4.27e-07, - "teatro": 4.27e-07, - "theorizing": 4.27e-07, - "thermoplastic": 4.27e-07, - "thessaloniki": 4.27e-07, - "thickly": 4.27e-07, - "thro": 4.27e-07, - "timbuktu": 4.27e-07, - "timeshare": 4.27e-07, - "tino": 4.27e-07, - "tinto": 4.27e-07, - "tipper": 4.27e-07, - "titanfall": 4.27e-07, - "todds": 4.27e-07, - "toiling": 4.27e-07, - "toothbrushes": 4.27e-07, - "townshend": 4.27e-07, - "trailhead": 4.27e-07, - "transvestite": 4.27e-07, - "trask": 4.27e-07, - "trodden": 4.27e-07, - "tsang": 4.27e-07, - "tucks": 4.27e-07, - "turismo": 4.27e-07, - "tussle": 4.27e-07, - "twp": 4.27e-07, - "typist": 4.27e-07, - "tyr": 4.27e-07, - "uhhhh": 4.27e-07, - "uhuru": 4.27e-07, - "unaided": 4.27e-07, - "unbecoming": 4.27e-07, - "universalist": 4.27e-07, - "unmistakably": 4.27e-07, - "unrealized": 4.27e-07, - "unworkable": 4.27e-07, - "uppercut": 4.27e-07, - "uproot": 4.27e-07, - "usenet": 4.27e-07, - "valiantly": 4.27e-07, - "verandah": 4.27e-07, - "vermeer": 4.27e-07, - "villeneuve": 4.27e-07, - "virology": 4.27e-07, - "vivek": 4.27e-07, - "voir": 4.27e-07, - "voor": 4.27e-07, - "vulgaris": 4.27e-07, - "wastage": 4.27e-07, - "waterline": 4.27e-07, - "waxman": 4.27e-07, - "weariness": 4.27e-07, - "weblog": 4.27e-07, - "whalers": 4.27e-07, - "wheelbase": 4.27e-07, - "wholeness": 4.27e-07, - "williston": 4.27e-07, - "wilmer": 4.27e-07, - "wingate": 4.27e-07, - "woolley": 4.27e-07, - "woot": 4.27e-07, - "wrest": 4.27e-07, - "yannick": 4.27e-07, - "zillion": 4.27e-07, - "zona": 4.27e-07, - "zte": 4.27e-07, - "zynga": 4.27e-07, - "aar": 4.17e-07, - "acceptability": 4.17e-07, - "aceh": 4.17e-07, - "adjudged": 4.17e-07, - "adriano": 4.17e-07, - "ahaha": 4.17e-07, - "airbender": 4.17e-07, - "aire": 4.17e-07, - "alb": 4.17e-07, - "alcove": 4.17e-07, - "alger": 4.17e-07, - "alrighty": 4.17e-07, - "amira": 4.17e-07, - "ane": 4.17e-07, - "anesthesiologist": 4.17e-07, - "annualized": 4.17e-07, - "arcana": 4.17e-07, - "architecturally": 4.17e-07, - "ase": 4.17e-07, - "asimov": 4.17e-07, - "aspirant": 4.17e-07, - "assertiveness": 4.17e-07, - "assyrians": 4.17e-07, - "astride": 4.17e-07, - "astrophysicist": 4.17e-07, - "asx": 4.17e-07, - "ateneo": 4.17e-07, - "auerbach": 4.17e-07, - "aut": 4.17e-07, - "autocracy": 4.17e-07, - "autosomal": 4.17e-07, - "awwww": 4.17e-07, - "balloting": 4.17e-07, - "bandar": 4.17e-07, - "baratheon": 4.17e-07, - "basset": 4.17e-07, - "baynes": 4.17e-07, - "beaton": 4.17e-07, - "bestiality": 4.17e-07, - "biracial": 4.17e-07, - "bixby": 4.17e-07, - "ble": 4.17e-07, - "blk": 4.17e-07, - "bluray": 4.17e-07, - "blurs": 6.03e-08, - "blurted": 4.17e-07, - "bodice": 4.17e-07, - "bogdan": 4.17e-07, - "bozo": 4.17e-07, - "brac": 4.17e-07, - "brainy": 4.17e-07, - "braithwaite": 4.17e-07, - "bren": 4.17e-07, - "broach": 4.17e-07, - "broadbent": 4.17e-07, - "bromance": 4.17e-07, - "butane": 4.17e-07, - "bynum": 4.17e-07, - "cabbie": 4.17e-07, - "calcite": 4.17e-07, - "callan": 4.17e-07, - "candied": 4.17e-07, - "cantons": 4.17e-07, - "carbondale": 4.17e-07, - "castiel": 4.17e-07, - "celta": 4.17e-07, - "centrality": 4.17e-07, - "chamomile": 4.17e-07, - "childbearing": 4.17e-07, - "chippy": 4.17e-07, - "chives": 4.17e-07, - "chriss": 6.17e-08, - "chua": 4.17e-07, - "citroen": 4.17e-07, - "clamor": 4.17e-07, - "classless": 4.17e-07, - "clink": 4.17e-07, - "cloaking": 4.17e-07, - "coastlines": 4.17e-07, - "coelho": 4.17e-07, - "cognate": 4.17e-07, - "coking": 4.17e-07, - "colombians": 4.17e-07, - "configuring": 4.17e-07, - "conifers": 4.17e-07, - "connoisseurs": 4.17e-07, - "consoling": 4.17e-07, - "contaminant": 4.17e-07, - "contrition": 4.17e-07, - "converges": 4.17e-07, - "correlating": 4.17e-07, - "cosa": 4.17e-07, - "counterclockwise": 4.17e-07, - "crevice": 4.17e-07, - "crewman": 4.17e-07, - "crockery": 4.17e-07, - "croke": 4.17e-07, - "crusts": 4.17e-07, - "cums": 4.17e-07, - "cusack": 4.17e-07, - "cushioned": 4.17e-07, - "cvd": 4.17e-07, - "dais": 3.55e-08, - "dalhousie": 4.17e-07, - "defector": 4.17e-07, - "deferring": 4.17e-07, - "degeneracy": 4.17e-07, - "delphine": 4.17e-07, - "demoralized": 4.17e-07, - "denali": 4.17e-07, - "devastate": 4.17e-07, - "diesels": 8.91e-08, - "dimming": 4.17e-07, - "disciplining": 4.17e-07, - "disloyalty": 4.17e-07, - "divested": 4.17e-07, - "dll": 4.17e-07, - "dmz": 4.17e-07, - "doers": 4.17e-07, - "dollop": 4.17e-07, - "donatello": 4.17e-07, - "dongle": 4.17e-07, - "donohue": 4.17e-07, - "dosed": 4.17e-07, - "doused": 4.17e-07, - "drapery": 4.17e-07, - "drawdown": 4.17e-07, - "dreadlocks": 4.17e-07, - "dreadnought": 4.17e-07, - "dregs": 4.17e-07, - "driveways": 4.17e-07, - "edgerton": 4.17e-07, - "elissa": 4.17e-07, - "emptive": 4.17e-07, - "enablers": 4.17e-07, - "engendered": 4.17e-07, - "engined": 4.17e-07, - "entranced": 4.17e-07, - "escapades": 4.17e-07, - "escarpment": 4.17e-07, - "esperanto": 4.17e-07, - "eval": 4.17e-07, - "expedia": 4.17e-07, - "expos": 4.17e-07, - "extrinsic": 4.17e-07, - "fabrizio": 4.17e-07, - "facie": 4.17e-07, - "falcone": 4.17e-07, - "fantasizing": 4.17e-07, - "farid": 4.17e-07, - "farthing": 4.17e-07, - "fascinates": 4.17e-07, - "favs": 4.17e-07, - "feigning": 4.17e-07, - "fells": 4.17e-07, - "fenty": 4.17e-07, - "fett": 4.17e-07, - "fie": 4.17e-07, - "finality": 4.17e-07, - "flatbush": 4.17e-07, - "foldable": 4.17e-07, - "forebears": 4.17e-07, - "forestall": 4.17e-07, - "furthered": 4.17e-07, - "garlands": 1.17e-07, - "gatehouse": 4.17e-07, - "generalizing": 4.17e-07, - "gentlemanly": 4.17e-07, - "gesellschaft": 4.17e-07, - "gillett": 4.17e-07, - "giordano": 4.17e-07, - "gloat": 4.17e-07, - "glossed": 4.17e-07, - "glycerin": 4.17e-07, - "gog": 4.17e-07, - "goldeneye": 4.17e-07, - "goldilocks": 4.17e-07, - "goldmine": 4.17e-07, - "goodfellas": 4.17e-07, - "gorgon": 4.17e-07, - "gorillaz": 4.17e-07, - "grayish": 4.17e-07, - "griezmann": 4.17e-07, - "gris": 4.17e-07, - "gros": 4.17e-07, - "groupies": 4.17e-07, - "gurl": 4.17e-07, - "gymnastic": 4.17e-07, - "hahahah": 4.17e-07, - "handcuff": 4.17e-07, - "harbin": 4.17e-07, - "hardwired": 4.17e-07, - "harland": 4.17e-07, - "harpsichord": 4.17e-07, - "harriss": 5.25e-08, - "hashish": 4.17e-07, - "hawaiians": 4.17e-07, - "hematology": 4.17e-07, - "heroically": 4.17e-07, - "highgate": 4.17e-07, - "hindenburg": 4.17e-07, - "hinkley": 4.17e-07, - "histogram": 4.17e-07, - "hmo": 4.17e-07, - "hokey": 4.17e-07, - "husain": 4.17e-07, - "hutu": 4.17e-07, - "hydrochloric": 4.17e-07, - "hydrochloride": 4.17e-07, - "iata": 4.17e-07, - "ibsen": 4.17e-07, - "iep": 4.17e-07, - "ies": 4.17e-07, - "impolite": 4.17e-07, - "inbetween": 4.17e-07, - "infringements": 4.17e-07, - "insomniac": 4.17e-07, - "installers": 4.17e-07, - "interlock": 4.17e-07, - "interventionist": 4.17e-07, - "ionian": 4.17e-07, - "ionized": 4.17e-07, - "irrelevance": 4.17e-07, - "italiano": 4.17e-07, - "itemized": 4.17e-07, - "ivanovic": 4.17e-07, - "jabba": 4.17e-07, - "javanese": 4.17e-07, - "jawline": 4.17e-07, - "jaylen": 4.17e-07, - "jell": 4.17e-07, - "jit": 4.17e-07, - "joann": 4.17e-07, - "kaiju": 4.17e-07, - "kaminsky": 4.17e-07, - "kanan": 4.17e-07, - "karts": 4.17e-07, - "kerouac": 4.17e-07, - "kilgore": 4.17e-07, - "kitt": 4.17e-07, - "koji": 4.17e-07, - "kyoko": 4.17e-07, - "lacroix": 4.17e-07, - "langton": 4.17e-07, - "languishing": 4.17e-07, - "lauryn": 4.17e-07, - "laymen": 4.17e-07, - "layne": 4.17e-07, - "leandro": 4.17e-07, - "leathery": 4.17e-07, - "leclerc": 4.17e-07, - "libertarianism": 4.17e-07, - "lisle": 4.17e-07, - "lll": 5.01e-08, - "loam": 4.17e-07, - "lodi": 4.17e-07, - "lollipops": 4.17e-07, - "luger": 4.17e-07, - "lunges": 4.17e-07, - "lys": 1.15e-08, - "lytton": 4.17e-07, - "machu": 4.17e-07, - "maggies": 4.17e-07, - "maidenhead": 4.17e-07, - "malagasy": 4.17e-07, - "malfoy": 4.17e-07, - "malin": 4.17e-07, - "mammy": 4.17e-07, - "mannings": 7.24e-08, - "manuela": 4.17e-07, - "marlo": 4.17e-07, - "masque": 4.17e-07, - "masseuse": 4.17e-07, - "masson": 4.17e-07, - "matti": 4.17e-07, - "maulana": 4.17e-07, - "mayes": 4.17e-07, - "mcauliffe": 4.17e-07, - "mello": 4.17e-07, - "meltzer": 4.17e-07, - "mendocino": 4.17e-07, - "messer": 4.17e-07, - "meteorologists": 4.17e-07, - "metronome": 4.17e-07, - "metzger": 4.17e-07, - "mha": 4.17e-07, - "midrange": 4.17e-07, - "militaristic": 4.17e-07, - "mimicked": 4.17e-07, - "minimising": 4.17e-07, - "minnow": 4.17e-07, - "mirth": 4.17e-07, - "mitosis": 4.17e-07, - "mnemonic": 4.17e-07, - "mobilise": 4.17e-07, - "mofo": 4.17e-07, - "moonstone": 4.17e-07, - "morel": 4.17e-07, - "morey": 4.17e-07, - "moria": 4.17e-07, - "morningside": 4.17e-07, - "mothering": 4.17e-07, - "motorcyclists": 4.17e-07, - "natsu": 4.17e-07, - "naz": 4.17e-07, - "ndc": 4.17e-07, - "neds": 9.77e-08, - "neet": 4.17e-07, - "negotiates": 4.17e-07, - "nimbus": 4.17e-07, - "nog": 4.17e-07, - "notations": 4.17e-07, - "noyes": 4.17e-07, - "obscures": 4.17e-07, - "odis": 4.17e-07, - "ogilvie": 4.17e-07, - "oomph": 4.17e-07, - "ostracized": 4.17e-07, - "overvalued": 4.17e-07, - "overwork": 4.17e-07, - "pacman": 4.17e-07, - "paintbrush": 4.17e-07, - "passaic": 4.17e-07, - "patil": 4.17e-07, - "pcie": 4.17e-07, - "persecutions": 4.17e-07, - "pestering": 4.17e-07, - "pilkington": 4.17e-07, - "pivoting": 4.17e-07, - "pizzagate": 4.17e-07, - "plausibly": 4.17e-07, - "plebs": 4.17e-07, - "plucky": 4.17e-07, - "pocock": 4.17e-07, - "preposition": 4.17e-07, - "pretenses": 4.17e-07, - "privatised": 4.17e-07, - "proclamations": 4.17e-07, - "prohibitively": 4.17e-07, - "prost": 4.17e-07, - "proximate": 4.17e-07, - "puller": 4.17e-07, - "punctures": 4.17e-07, - "py": 4.17e-07, - "quadrupled": 4.17e-07, - "queasy": 4.17e-07, - "quiche": 4.17e-07, - "quips": 4.17e-07, - "qureshi": 4.17e-07, - "radley": 4.17e-07, - "rainstorm": 4.17e-07, - "rangel": 4.17e-07, - "rapprochement": 4.17e-07, - "rayleigh": 4.17e-07, - "reappearance": 4.17e-07, - "recompense": 4.17e-07, - "recuperating": 4.17e-07, - "redesigning": 4.17e-07, - "redlands": 4.17e-07, - "redraw": 4.17e-07, - "redrawn": 4.17e-07, - "refutation": 4.17e-07, - "remiss": 4.17e-07, - "remittance": 4.17e-07, - "renfrewshire": 4.17e-07, - "repudiated": 4.17e-07, - "resuscitate": 4.17e-07, - "reticent": 4.17e-07, - "reverie": 4.17e-07, - "revisionism": 4.17e-07, - "rewrites": 4.17e-07, - "rheumatism": 4.17e-07, - "rickman": 4.17e-07, - "rightwing": 4.17e-07, - "roused": 4.17e-07, - "ruble": 4.17e-07, - "ryerson": 4.17e-07, - "safeguarded": 4.17e-07, - "sakurai": 4.17e-07, - "santorini": 4.17e-07, - "sasaki": 4.17e-07, - "saya": 4.17e-07, - "schaeffer": 4.17e-07, - "schweinsteiger": 4.17e-07, - "scintillating": 4.17e-07, - "scribbling": 4.17e-07, - "scuttled": 4.17e-07, - "sectoral": 4.17e-07, - "selflessness": 4.17e-07, - "seong": 4.17e-07, - "sharapova": 4.17e-07, - "sharps": 1.95e-07, - "shauna": 4.17e-07, - "shimano": 4.17e-07, - "shinto": 4.17e-07, - "shrooms": 4.17e-07, - "shuddering": 4.17e-07, - "silken": 4.17e-07, - "slayers": 1.02e-07, - "slippage": 4.17e-07, - "slowness": 4.17e-07, - "slurred": 4.17e-07, - "smattering": 4.17e-07, - "snarl": 4.17e-07, - "snuggling": 4.17e-07, - "solvers": 4.17e-07, - "sook": 4.17e-07, - "sorbonne": 4.17e-07, - "spawns": 4.17e-07, - "spongy": 4.17e-07, - "spx": 4.17e-07, - "sterilize": 4.17e-07, - "stewardess": 4.17e-07, - "stockholder": 4.17e-07, - "storefronts": 4.17e-07, - "storyboard": 4.17e-07, - "stragglers": 4.17e-07, - "stratigraphy": 4.17e-07, - "striding": 4.17e-07, - "strom": 4.17e-07, - "stunting": 4.17e-07, - "surcharges": 4.17e-07, - "surest": 4.17e-07, - "suriname": 4.17e-07, - "swe": 4.17e-07, - "sweety": 4.17e-07, - "taiga": 4.17e-07, - "tangier": 4.17e-07, - "tapioca": 4.17e-07, - "taskforce": 4.17e-07, - "telemedicine": 4.17e-07, - "tendrils": 4.17e-07, - "teng": 4.17e-07, - "texarkana": 4.17e-07, - "tfc": 4.17e-07, - "thani": 4.17e-07, - "thickest": 4.17e-07, - "ticklish": 4.17e-07, - "timestamp": 4.17e-07, - "tivo": 4.17e-07, - "tolerates": 4.17e-07, - "tomo": 4.17e-07, - "tradesman": 4.17e-07, - "traditionalists": 4.17e-07, - "trappers": 4.17e-07, - "tulle": 4.17e-07, - "turtleneck": 4.17e-07, - "tutsi": 4.17e-07, - "twats": 4.17e-07, - "uab": 4.17e-07, - "ugc": 4.17e-07, - "ula": 4.17e-07, - "ulm": 4.17e-07, - "umberto": 4.17e-07, - "unconvinced": 4.17e-07, - "underclass": 4.17e-07, - "underhill": 4.17e-07, - "undertone": 4.17e-07, - "undressing": 4.17e-07, - "unpopularity": 4.17e-07, - "unquestionable": 4.17e-07, - "unreadable": 4.17e-07, - "unwinding": 4.17e-07, - "urchins": 4.17e-07, - "ursa": 4.17e-07, - "vanquish": 4.17e-07, - "variegated": 4.17e-07, - "vedanta": 4.17e-07, - "vehement": 4.17e-07, - "vel": 4.17e-07, - "velma": 4.17e-07, - "videotapes": 4.17e-07, - "vikas": 4.17e-07, - "vinaigrette": 4.17e-07, - "walkman": 4.17e-07, - "wallop": 4.17e-07, - "wcs": 4.17e-07, - "wea": 4.17e-07, - "weeknight": 4.17e-07, - "weenie": 4.17e-07, - "whet": 4.17e-07, - "whitehaven": 4.17e-07, - "wile": 4.17e-07, - "wilmot": 4.17e-07, - "wim": 4.17e-07, - "witten": 4.17e-07, - "wobbling": 4.17e-07, - "wowed": 4.17e-07, - "wps": 4.17e-07, - "wwes": 4.17e-07, - "xoxo": 4.17e-07, - "yamaguchi": 4.17e-07, - "yesteryear": 4.17e-07, - "ziggler": 4.17e-07, - "zipping": 4.17e-07, - "aced": 4.07e-07, - "advantaged": 4.07e-07, - "afm": 4.07e-07, - "agarwal": 4.07e-07, - "agl": 4.07e-07, - "airspeed": 4.07e-07, - "ake": 4.07e-07, - "albus": 4.07e-07, - "allocates": 4.07e-07, - "alphas": 1.38e-07, - "altoona": 4.07e-07, - "amplifies": 4.07e-07, - "amply": 4.07e-07, - "anglophone": 4.07e-07, - "annealing": 4.07e-07, - "annexing": 4.07e-07, - "antecedents": 4.07e-07, - "antiretroviral": 4.07e-07, - "antithetical": 4.07e-07, - "antler": 4.07e-07, - "aoa": 4.07e-07, - "aoi": 4.07e-07, - "applegate": 4.07e-07, - "apprenticed": 4.07e-07, - "arb": 4.07e-07, - "aris": 1.74e-07, - "arma": 4.07e-07, - "arn": 4.07e-07, - "aromatherapy": 4.07e-07, - "arranger": 4.07e-07, - "asb": 4.07e-07, - "aspirated": 4.07e-07, - "atchison": 4.07e-07, - "atr": 4.07e-07, - "attestation": 4.07e-07, - "aways": 4.07e-07, - "aylesbury": 4.07e-07, - "ayurveda": 4.07e-07, - "babar": 4.07e-07, - "baptisms": 4.07e-07, - "baraka": 4.07e-07, - "barbary": 4.07e-07, - "baudelaire": 4.07e-07, - "beached": 4.07e-07, - "beavis": 4.07e-07, - "beefing": 4.07e-07, - "belittling": 4.07e-07, - "bellini": 4.07e-07, - "bevel": 4.07e-07, - "birdsong": 4.07e-07, - "bizarro": 4.07e-07, - "blatt": 4.07e-07, - "blesses": 4.07e-07, - "blockaded": 4.07e-07, - "bly": 4.07e-07, - "bodhi": 4.07e-07, - "bookmaker": 4.07e-07, - "bradman": 4.07e-07, - "brava": 4.07e-07, - "brawling": 4.07e-07, - "breakouts": 4.07e-07, - "brezhnev": 4.07e-07, - "brin": 4.07e-07, - "brogan": 4.07e-07, - "bunyan": 4.07e-07, - "businesspeople": 4.07e-07, - "buzzword": 4.07e-07, - "cabbages": 4.07e-07, - "cacophony": 4.07e-07, - "caligula": 4.07e-07, - "capitalistic": 4.07e-07, - "caresses": 4.07e-07, - "carlsen": 4.07e-07, - "carnations": 4.07e-07, - "carruthers": 4.07e-07, - "carswell": 4.07e-07, - "cartoonists": 4.07e-07, - "castaway": 4.07e-07, - "catharine": 4.07e-07, - "cavanaugh": 4.07e-07, - "ccg": 4.07e-07, - "cenotaph": 4.07e-07, - "chafing": 4.07e-07, - "chairmans": 4.07e-07, - "chambered": 4.07e-07, - "chibi": 4.07e-07, - "chibok": 4.07e-07, - "chink": 4.07e-07, - "chl": 4.07e-07, - "cip": 4.07e-07, - "circumscribed": 4.07e-07, - "cking": 4.07e-07, - "clack": 4.07e-07, - "clicker": 4.07e-07, - "collation": 4.07e-07, - "colombias": 4.07e-07, - "comings": 4.07e-07, - "commandeered": 4.07e-07, - "commemorations": 4.07e-07, - "commentating": 4.07e-07, - "comprehending": 4.07e-07, - "confidentially": 4.07e-07, - "confining": 4.07e-07, - "confucianism": 4.07e-07, - "connectedness": 4.07e-07, - "conscripts": 4.07e-07, - "conservator": 4.07e-07, - "cooperates": 4.07e-07, - "cooperatively": 4.07e-07, - "copperfield": 4.07e-07, - "cou": 4.07e-07, - "counseled": 4.07e-07, - "covey": 4.07e-07, - "crewmen": 4.07e-07, - "crimp": 4.07e-07, - "cruces": 4.07e-07, - "cryo": 4.07e-07, - "curbed": 4.07e-07, - "customarily": 4.07e-07, - "dagestan": 4.07e-07, - "dartford": 4.07e-07, - "ddd": 4.07e-07, - "deactivation": 4.07e-07, - "debby": 4.07e-07, - "deductibles": 4.07e-07, - "deflate": 4.07e-07, - "demonize": 4.07e-07, - "dena": 4.07e-07, - "denunciation": 4.07e-07, - "dft": 4.07e-07, - "diazepam": 4.07e-07, - "discrediting": 4.07e-07, - "dished": 4.07e-07, - "dismount": 4.07e-07, - "diuretic": 4.07e-07, - "dnb": 4.07e-07, - "domini": 4.07e-07, - "doppelganger": 4.07e-07, - "dpa": 4.07e-07, - "drawbridge": 4.07e-07, - "drivin": 4.07e-07, - "drudge": 4.07e-07, - "drugging": 4.07e-07, - "duquesne": 4.07e-07, - "dwindle": 4.07e-07, - "eckert": 4.07e-07, - "eddies": 2.75e-07, - "edp": 4.07e-07, - "effector": 4.07e-07, - "ellery": 4.07e-07, - "encapsulation": 4.07e-07, - "enchantress": 4.07e-07, - "encircle": 4.07e-07, - "env": 4.07e-07, - "eoin": 4.07e-07, - "epas": 4.07e-07, - "epistemological": 4.07e-07, - "etiology": 4.07e-07, - "evangelion": 4.07e-07, - "exonerate": 4.07e-07, - "expediency": 4.07e-07, - "exudes": 4.07e-07, - "eyesore": 4.07e-07, - "faceoff": 4.07e-07, - "facile": 4.07e-07, - "facilitators": 4.07e-07, - "fatherless": 4.07e-07, - "featherstone": 4.07e-07, - "feely": 4.07e-07, - "fertilize": 4.07e-07, - "fiennes": 4.07e-07, - "fittingly": 4.07e-07, - "flossing": 4.07e-07, - "fluted": 4.07e-07, - "fogarty": 4.07e-07, - "foreshore": 4.07e-07, - "foyle": 4.07e-07, - "freds": 4.07e-07, - "frederik": 4.07e-07, - "frightens": 4.07e-07, - "fruiting": 4.07e-07, - "fuk": 4.07e-07, - "gangbang": 4.07e-07, - "gascoigne": 4.07e-07, - "gasses": 4.07e-07, - "gawain": 4.07e-07, - "gazes": 4.07e-07, - "geneticist": 4.07e-07, - "genotypes": 4.07e-07, - "gert": 4.07e-07, - "gilly": 4.07e-07, - "gizmo": 4.07e-07, - "glycine": 4.07e-07, - "godot": 4.07e-07, - "goop": 4.07e-07, - "gorsuch": 4.07e-07, - "gregson": 4.07e-07, - "griffins": 2.45e-07, - "grimace": 4.07e-07, - "groggy": 4.07e-07, - "grt": 4.07e-07, - "guano": 4.07e-07, - "guava": 4.07e-07, - "guinean": 4.07e-07, - "gwinnett": 4.07e-07, - "gwyn": 4.07e-07, - "gwynn": 4.07e-07, - "hab": 4.07e-07, - "habsburg": 4.07e-07, - "haller": 4.07e-07, - "halliburton": 4.07e-07, - "halstead": 4.07e-07, - "hammocks": 4.07e-07, - "hamstrings": 4.07e-07, - "handbooks": 4.07e-07, - "hanzo": 4.07e-07, - "harford": 4.07e-07, - "haslam": 4.07e-07, - "hematoma": 4.07e-07, - "hew": 4.07e-07, - "hhh": 4.07e-07, - "hideo": 4.07e-07, - "histology": 4.07e-07, - "hitching": 4.07e-07, - "homewood": 4.07e-07, - "homogeneity": 4.07e-07, - "hoss": 4.07e-07, - "hossein": 4.07e-07, - "hotties": 4.07e-07, - "hoyle": 4.07e-07, - "huerta": 4.07e-07, - "huma": 4.07e-07, - "humanists": 4.07e-07, - "humbert": 4.07e-07, - "hummel": 4.07e-07, - "huntress": 4.07e-07, - "husks": 4.07e-07, - "ichigo": 4.07e-07, - "icrc": 4.07e-07, - "idiopathic": 4.07e-07, - "ige": 4.07e-07, - "ij": 4.07e-07, - "illini": 4.07e-07, - "immigrate": 4.07e-07, - "imparts": 4.07e-07, - "implacable": 4.07e-07, - "implicating": 4.07e-07, - "imprisoning": 4.07e-07, - "inclusiveness": 4.07e-07, - "indemnify": 4.07e-07, - "indiscretion": 4.07e-07, - "indulgences": 4.07e-07, - "infirm": 4.07e-07, - "inga": 4.07e-07, - "intermodal": 4.07e-07, - "intraday": 4.07e-07, - "ishikawa": 4.07e-07, - "iwc": 4.07e-07, - "jackals": 4.07e-07, - "jaclyn": 4.07e-07, - "jailer": 4.07e-07, - "jamaat": 4.07e-07, - "jeffersons": 9.55e-08, - "jharkhand": 4.07e-07, - "jins": 4.07e-07, - "joists": 4.07e-07, - "jons": 9.12e-08, - "kanto": 4.07e-07, - "kanyes": 4.07e-07, - "karabakh": 4.07e-07, - "keiko": 4.07e-07, - "keiths": 4.07e-07, - "kenner": 4.07e-07, - "kennett": 4.07e-07, - "kerb": 4.07e-07, - "kiara": 4.07e-07, - "kidnaps": 4.07e-07, - "klingons": 4.07e-07, - "knott": 4.07e-07, - "kondo": 4.07e-07, - "kot": 4.07e-07, - "kwok": 4.07e-07, - "lacing": 4.07e-07, - "laidlaw": 4.07e-07, - "lambo": 4.07e-07, - "lanham": 4.07e-07, - "latches": 4.07e-07, - "ldr": 4.07e-07, - "lengthwise": 4.07e-07, - "lennons": 4.07e-07, - "lenore": 4.07e-07, - "leopoldo": 4.07e-07, - "linoleum": 4.07e-07, - "listeria": 4.07e-07, - "lockett": 4.07e-07, - "longview": 4.07e-07, - "lutherans": 4.07e-07, - "luxemburg": 4.07e-07, - "lyre": 4.07e-07, - "maas": 4.07e-07, - "maasai": 4.07e-07, - "magnanimous": 4.07e-07, - "magus": 4.07e-07, - "mammoths": 4.07e-07, - "manchurian": 4.07e-07, - "maniacal": 4.07e-07, - "manish": 4.07e-07, - "maries": 1.15e-07, - "marshawn": 4.07e-07, - "martel": 4.07e-07, - "materialist": 4.07e-07, - "matsumoto": 4.07e-07, - "maximizes": 4.07e-07, - "mccarthys": 4.07e-07, - "mccarty": 4.07e-07, - "mccauley": 4.07e-07, - "medica": 4.07e-07, - "meeker": 4.07e-07, - "metabolized": 4.07e-07, - "mewtwo": 4.07e-07, - "mfc": 4.07e-07, - "mickelson": 4.07e-07, - "micrograms": 4.07e-07, - "micronesia": 4.07e-07, - "mie": 4.07e-07, - "miniscule": 4.07e-07, - "ministering": 4.07e-07, - "miramar": 4.07e-07, - "miri": 4.07e-07, - "miro": 4.07e-07, - "miscalculation": 4.07e-07, - "misdirection": 4.07e-07, - "mlc": 4.07e-07, - "moc": 4.07e-07, - "modernised": 4.07e-07, - "modulating": 4.07e-07, - "monger": 4.07e-07, - "montpelier": 4.07e-07, - "montreals": 4.07e-07, - "mookie": 4.07e-07, - "morrell": 4.07e-07, - "mua": 4.07e-07, - "multicolored": 4.07e-07, - "multifamily": 4.07e-07, - "musing": 4.07e-07, - "mystified": 4.07e-07, - "narc": 4.07e-07, - "natl": 3.55e-07, - "natchez": 4.07e-07, - "natwest": 4.07e-07, - "naya": 4.07e-07, - "necromancer": 4.07e-07, - "neh": 4.07e-07, - "neurobiology": 4.07e-07, - "newmans": 4.07e-07, - "nics": 6.17e-08, - "nitride": 4.07e-07, - "noa": 4.07e-07, - "nobodies": 4.07e-07, - "norepinephrine": 4.07e-07, - "notional": 4.07e-07, - "nsaids": 4.07e-07, - "nuff": 4.07e-07, - "nuffield": 4.07e-07, - "obliging": 4.07e-07, - "observances": 4.07e-07, - "obverse": 4.07e-07, - "ocala": 4.07e-07, - "offing": 4.07e-07, - "offstage": 4.07e-07, - "oka": 4.07e-07, - "oooo": 4.07e-07, - "outkast": 4.07e-07, - "overlying": 4.07e-07, - "overridden": 4.07e-07, - "overruns": 4.07e-07, - "pacts": 4.07e-07, - "palatial": 4.07e-07, - "pappas": 4.07e-07, - "parley": 4.07e-07, - "parris": 4.07e-07, - "paucity": 4.07e-07, - "pavlov": 4.07e-07, - "peculiarly": 4.07e-07, - "peddler": 4.07e-07, - "pelagic": 4.07e-07, - "peppa": 4.07e-07, - "pepsico": 4.07e-07, - "persecuting": 4.07e-07, - "persephone": 4.07e-07, - "phds": 7.94e-08, - "phenomenally": 4.07e-07, - "phonics": 4.07e-07, - "phs": 4.07e-07, - "physiologically": 4.07e-07, - "pilgrimages": 4.07e-07, - "pithy": 4.07e-07, - "pittance": 4.07e-07, - "placental": 4.07e-07, - "plastering": 4.07e-07, - "plex": 4.07e-07, - "plop": 4.07e-07, - "poes": 8.32e-08, - "portobello": 4.07e-07, - "prancing": 4.07e-07, - "preclinical": 4.07e-07, - "primark": 4.07e-07, - "prisms": 4.07e-07, - "prowling": 4.07e-07, - "puccini": 4.07e-07, - "pujols": 4.07e-07, - "pulleys": 4.07e-07, - "pullover": 4.07e-07, - "pye": 4.07e-07, - "rafi": 4.07e-07, - "rapp": 4.07e-07, - "rarities": 4.07e-07, - "raster": 4.07e-07, - "rau": 4.07e-07, - "razak": 4.07e-07, - "reassessment": 4.07e-07, - "recharged": 4.07e-07, - "reconfigured": 4.07e-07, - "reeled": 4.07e-07, - "registrant": 4.07e-07, - "rehabilitating": 4.07e-07, - "reimer": 4.07e-07, - "rekindled": 4.07e-07, - "renouncing": 4.07e-07, - "repaint": 4.07e-07, - "reprocessing": 4.07e-07, - "repulsion": 4.07e-07, - "resistive": 4.07e-07, - "resurgent": 4.07e-07, - "rfp": 4.07e-07, - "rihannas": 4.07e-07, - "rika": 4.07e-07, - "rma": 4.07e-07, - "romanias": 4.07e-07, - "ronaldos": 4.07e-07, - "ronson": 4.07e-07, - "roosevelts": 8.51e-08, - "rosita": 4.07e-07, - "rothman": 4.07e-07, - "roxas": 4.07e-07, - "rubbery": 4.07e-07, - "rubys": 4.07e-07, - "ruths": 4.07e-07, - "sagas": 6.61e-08, - "salamanders": 4.07e-07, - "sameer": 4.07e-07, - "sandia": 4.07e-07, - "sashimi": 4.07e-07, - "sauber": 4.07e-07, - "sayed": 4.07e-07, - "scalding": 4.07e-07, - "sceptre": 4.07e-07, - "schmitz": 4.07e-07, - "scoundrels": 4.07e-07, - "scrambles": 4.07e-07, - "seacrest": 4.07e-07, - "seasonings": 4.07e-07, - "seditious": 4.07e-07, - "segway": 4.07e-07, - "selangor": 4.07e-07, - "senor": 4.07e-07, - "serviceman": 4.07e-07, - "seti": 4.07e-07, - "sfr": 4.07e-07, - "shinjuku": 4.07e-07, - "shopify": 4.07e-07, - "shorting": 4.07e-07, - "shortsighted": 4.07e-07, - "shunning": 4.07e-07, - "silverstein": 4.07e-07, - "simona": 4.07e-07, - "sinker": 4.07e-07, - "skyfall": 4.07e-07, - "slates": 7.24e-08, - "smartass": 4.07e-07, - "snodgrass": 4.07e-07, - "sono": 4.07e-07, - "sophocles": 4.07e-07, - "soren": 4.07e-07, - "sortie": 4.07e-07, - "sotomayor": 4.07e-07, - "standish": 4.07e-07, - "starburst": 4.07e-07, - "statist": 4.07e-07, - "statuette": 4.07e-07, - "steppes": 4.07e-07, - "storeroom": 4.07e-07, - "strumming": 4.07e-07, - "sua": 4.07e-07, - "subban": 4.07e-07, - "sucky": 4.07e-07, - "suiting": 4.07e-07, - "supersedes": 4.07e-07, - "swamy": 4.07e-07, - "swig": 4.07e-07, - "takeovers": 4.07e-07, - "tangles": 4.07e-07, - "tash": 4.07e-07, - "tass": 4.07e-07, - "taxidermy": 4.07e-07, - "tenner": 4.07e-07, - "texaco": 4.07e-07, - "thankless": 4.07e-07, - "thorin": 4.07e-07, - "thos": 4.07e-07, - "throwers": 4.07e-07, - "tightest": 4.07e-07, - "tillerson": 4.07e-07, - "tisdale": 4.07e-07, - "titian": 4.07e-07, - "todos": 4.07e-07, - "toiled": 4.07e-07, - "tomes": 4.07e-07, - "toots": 4.07e-07, - "trainor": 4.07e-07, - "triceps": 4.07e-07, - "tropez": 4.07e-07, - "tsui": 4.07e-07, - "ttp": 4.07e-07, - "tts": 5.89e-08, - "unapologetically": 4.07e-07, - "unappealing": 4.07e-07, - "uncivilized": 4.07e-07, - "underwritten": 4.07e-07, - "undoubted": 4.07e-07, - "unpatriotic": 4.07e-07, - "unrepentant": 4.07e-07, - "unsee": 4.07e-07, - "untidy": 4.07e-07, - "ural": 4.07e-07, - "useable": 4.07e-07, - "ushering": 4.07e-07, - "vassar": 4.07e-07, - "veep": 4.07e-07, - "velodrome": 4.07e-07, - "vevo": 4.07e-07, - "viewable": 4.07e-07, - "visionaries": 4.07e-07, - "vitals": 4.07e-07, - "waaaay": 4.07e-07, - "washable": 4.07e-07, - "washy": 4.07e-07, - "waterproofing": 4.07e-07, - "watters": 4.07e-07, - "waveguide": 4.07e-07, - "weaponized": 4.07e-07, - "wearers": 2.19e-07, - "weill": 4.07e-07, - "welders": 4.07e-07, - "werk": 4.07e-07, - "wetness": 4.07e-07, - "wheelers": 2.24e-07, - "wierd": 4.07e-07, - "wiggling": 4.07e-07, - "wilfried": 4.07e-07, - "wince": 4.07e-07, - "winemaking": 4.07e-07, - "wn": 4.07e-07, - "wnt": 4.07e-07, - "womanizer": 4.07e-07, - "woodbine": 4.07e-07, - "wreaking": 4.07e-07, - "wrecker": 4.07e-07, - "wrenches": 4.07e-07, - "xa": 4.07e-07, - "yulia": 4.07e-07, - "zayed": 4.07e-07, - "zealander": 4.07e-07, - "zuckerman": 4.07e-07, - "aachen": 3.98e-07, - "abn": 3.98e-07, - "abrasions": 3.98e-07, - "acetylcholine": 3.98e-07, - "aco": 3.98e-07, - "actives": 3.98e-07, - "adherent": 3.98e-07, - "adulation": 3.98e-07, - "adverbs": 3.98e-07, - "aforesaid": 3.98e-07, - "afridi": 3.98e-07, - "agr": 3.98e-07, - "ahmadi": 3.98e-07, - "airlifted": 3.98e-07, - "alans": 1.38e-07, - "aleksandar": 3.98e-07, - "amines": 3.98e-07, - "amniotic": 3.98e-07, - "amulets": 3.98e-07, - "amusements": 3.98e-07, - "antecedent": 3.98e-07, - "antiwar": 3.98e-07, - "aphasia": 3.98e-07, - "aphrodisiac": 3.98e-07, - "apm": 3.98e-07, - "aristotelian": 3.98e-07, - "arteta": 3.98e-07, - "astley": 3.98e-07, - "astrophysical": 3.98e-07, - "asunder": 3.98e-07, - "aum": 3.98e-07, - "automating": 3.98e-07, - "ayy": 3.98e-07, - "backstabbing": 3.98e-07, - "backstop": 3.98e-07, - "bauhaus": 3.98e-07, - "begets": 3.98e-07, - "belgiums": 3.98e-07, - "bernanke": 3.98e-07, - "bevin": 3.98e-07, - "bharti": 3.98e-07, - "bibliographies": 3.98e-07, - "bimonthly": 3.98e-07, - "binocular": 3.98e-07, - "bioethics": 3.98e-07, - "birdy": 3.98e-07, - "birkenhead": 3.98e-07, - "birkin": 3.98e-07, - "biter": 3.98e-07, - "blatter": 3.98e-07, - "bldg": 3.98e-07, - "bloat": 3.98e-07, - "boden": 3.98e-07, - "boers": 3.98e-07, - "bolus": 3.98e-07, - "botanists": 3.98e-07, - "breakin": 3.98e-07, - "bretton": 3.98e-07, - "breyer": 3.98e-07, - "brightens": 3.98e-07, - "briskly": 3.98e-07, - "bruiser": 3.98e-07, - "brunel": 3.98e-07, - "brutes": 3.98e-07, - "bubonic": 3.98e-07, - "buggers": 3.98e-07, - "bulger": 3.98e-07, - "burgos": 3.98e-07, - "burj": 3.98e-07, - "bursa": 3.98e-07, - "bushels": 3.98e-07, - "busta": 3.98e-07, - "bylaw": 3.98e-07, - "cabello": 3.98e-07, - "cached": 3.98e-07, - "caddie": 3.98e-07, - "caplan": 3.98e-07, - "carrillo": 3.98e-07, - "carrolls": 3.98e-07, - "castros": 3.98e-07, - "caterers": 3.98e-07, - "cations": 3.98e-07, - "cellophane": 3.98e-07, - "cept": 3.98e-07, - "cera": 3.98e-07, - "chaining": 3.98e-07, - "channelled": 3.98e-07, - "chiara": 3.98e-07, - "chiron": 3.98e-07, - "choker": 3.98e-07, - "chrysalis": 3.98e-07, - "chums": 3.98e-07, - "cialis": 3.98e-07, - "clamour": 3.98e-07, - "clarice": 3.98e-07, - "claudette": 3.98e-07, - "clenching": 3.98e-07, - "clumsily": 3.98e-07, - "cmv": 3.98e-07, - "codename": 3.98e-07, - "cofounder": 3.98e-07, - "collectives": 7.59e-08, - "colonizing": 3.98e-07, - "compressive": 3.98e-07, - "condoning": 3.98e-07, - "convalescent": 3.98e-07, - "costal": 3.98e-07, - "couscous": 3.98e-07, - "crassus": 3.98e-07, - "cristal": 3.98e-07, - "critiqued": 3.98e-07, - "croker": 3.98e-07, - "crompton": 3.98e-07, - "crone": 3.98e-07, - "crystallography": 3.98e-07, - "cupping": 3.98e-07, - "dabbling": 3.98e-07, - "dabs": 3.98e-07, - "dampers": 3.98e-07, - "dayz": 3.98e-07, - "decoys": 3.98e-07, - "decry": 3.98e-07, - "deferral": 3.98e-07, - "delisted": 3.98e-07, - "desc": 3.98e-07, - "desoto": 3.98e-07, - "deviantart": 3.98e-07, - "dirtbag": 3.98e-07, - "dirtier": 3.98e-07, - "disavow": 3.98e-07, - "discordant": 3.98e-07, - "dismounted": 3.98e-07, - "distrustful": 3.98e-07, - "dmg": 3.98e-07, - "downy": 3.98e-07, - "dragonball": 3.98e-07, - "dru": 3.98e-07, - "dsi": 3.98e-07, - "dualism": 3.98e-07, - "duplicating": 3.98e-07, - "durante": 3.98e-07, - "dwp": 3.98e-07, - "eazy": 3.98e-07, - "ecr": 3.98e-07, - "egon": 3.98e-07, - "elegans": 3.98e-07, - "embittered": 3.98e-07, - "emissaries": 3.98e-07, - "encyclopedias": 3.98e-07, - "endangers": 3.98e-07, - "enugu": 3.98e-07, - "epithets": 3.98e-07, - "esse": 3.98e-07, - "estimations": 3.98e-07, - "eunuchs": 3.98e-07, - "eves": 2.19e-07, - "evidentiary": 3.98e-07, - "ewen": 3.98e-07, - "exalt": 3.98e-07, - "executors": 3.98e-07, - "exoplanets": 3.98e-07, - "fairground": 3.98e-07, - "fairytales": 3.98e-07, - "fancier": 3.98e-07, - "fatherly": 3.98e-07, - "faultless": 3.98e-07, - "feedstock": 3.98e-07, - "fending": 3.98e-07, - "fistula": 3.98e-07, - "fjords": 3.98e-07, - "flemming": 3.98e-07, - "foxtrot": 3.98e-07, - "frith": 3.98e-07, - "frizzy": 3.98e-07, - "gabriels": 3.98e-07, - "garbled": 3.98e-07, - "garfunkel": 3.98e-07, - "gaskets": 3.98e-07, - "geert": 3.98e-07, - "generale": 3.98e-07, - "ginn": 3.98e-07, - "gla": 3.98e-07, - "godin": 3.98e-07, - "gpo": 3.98e-07, - "grimshaw": 3.98e-07, - "gronk": 3.98e-07, - "gsw": 3.98e-07, - "gulfstream": 3.98e-07, - "gyu": 3.98e-07, - "hachette": 3.98e-07, - "hadoop": 3.98e-07, - "hallucinogenic": 3.98e-07, - "halve": 3.98e-07, - "hamer": 3.98e-07, - "handfuls": 3.98e-07, - "harlot": 3.98e-07, - "headbutt": 3.98e-07, - "heathcote": 3.98e-07, - "hebei": 3.98e-07, - "hecht": 3.98e-07, - "heckler": 3.98e-07, - "heifer": 3.98e-07, - "hendersons": 6.61e-08, - "hendrickson": 3.98e-07, - "hezekiah": 3.98e-07, - "hmas": 3.98e-07, - "hoards": 3.98e-07, - "holger": 3.98e-07, - "hoosiers": 3.98e-07, - "hsi": 3.98e-07, - "hued": 3.98e-07, - "humbug": 3.98e-07, - "hydrological": 3.98e-07, - "icf": 3.98e-07, - "icm": 3.98e-07, - "imc": 3.98e-07, - "ime": 3.98e-07, - "impetuous": 3.98e-07, - "inadequately": 3.98e-07, - "inconvenienced": 3.98e-07, - "indignity": 3.98e-07, - "indisputably": 3.98e-07, - "indoctrinated": 3.98e-07, - "inflorescence": 3.98e-07, - "infowars": 3.98e-07, - "injectable": 3.98e-07, - "inky": 3.98e-07, - "inlets": 3.98e-07, - "innsbruck": 3.98e-07, - "interactivity": 3.98e-07, - "interdiction": 3.98e-07, - "intros": 3.98e-07, - "isl": 3.98e-07, - "jarred": 3.98e-07, - "jasmin": 3.98e-07, - "jaunt": 3.98e-07, - "jawaharlal": 3.98e-07, - "jointed": 3.98e-07, - "joong": 3.98e-07, - "jutting": 3.98e-07, - "kawaii": 3.98e-07, - "kayaks": 3.98e-07, - "keeley": 3.98e-07, - "keisha": 3.98e-07, - "kerrys": 3.98e-07, - "kindergartens": 3.98e-07, - "kneels": 3.98e-07, - "knits": 3.98e-07, - "kph": 3.98e-07, - "kyo": 3.98e-07, - "ladbrokes": 3.98e-07, - "laszlo": 3.98e-07, - "laud": 3.98e-07, - "leavin": 3.98e-07, - "legation": 3.98e-07, - "leh": 3.98e-07, - "letterhead": 3.98e-07, - "levity": 3.98e-07, - "lichtenstein": 3.98e-07, - "lidl": 3.98e-07, - "likud": 3.98e-07, - "limped": 3.98e-07, - "liquors": 3.98e-07, - "loh": 3.98e-07, - "lombardy": 3.98e-07, - "lorentz": 3.98e-07, - "louse": 3.98e-07, - "lsat": 3.98e-07, - "lucha": 3.98e-07, - "luciana": 3.98e-07, - "lucked": 3.98e-07, - "lugo": 3.98e-07, - "luhansk": 3.98e-07, - "maarten": 3.98e-07, - "mab": 3.98e-07, - "magick": 3.98e-07, - "malayan": 3.98e-07, - "malfeasance": 3.98e-07, - "mandeville": 3.98e-07, - "markey": 3.98e-07, - "markle": 3.98e-07, - "martinis": 3.98e-07, - "massaged": 3.98e-07, - "massif": 3.98e-07, - "mattingly": 3.98e-07, - "mccracken": 3.98e-07, - "mechanistic": 3.98e-07, - "meijer": 3.98e-07, - "mementos": 3.98e-07, - "mercado": 3.98e-07, - "mezzo": 3.98e-07, - "mightiest": 3.98e-07, - "mii": 3.98e-07, - "millenium": 3.98e-07, - "millimetre": 3.98e-07, - "minnows": 3.98e-07, - "mino": 3.98e-07, - "misappropriation": 3.98e-07, - "mishandling": 3.98e-07, - "misinterpret": 3.98e-07, - "misstep": 3.98e-07, - "mitsui": 3.98e-07, - "mmc": 3.98e-07, - "moguls": 3.98e-07, - "mohamad": 3.98e-07, - "montauk": 3.98e-07, - "moorhead": 3.98e-07, - "morello": 3.98e-07, - "motherfuckin": 3.98e-07, - "mowers": 3.98e-07, - "multichannel": 3.98e-07, - "mummified": 3.98e-07, - "musik": 3.98e-07, - "nacl": 3.98e-07, - "nagano": 3.98e-07, - "narcissists": 3.98e-07, - "narrators": 1.82e-07, - "natura": 3.98e-07, - "nawab": 3.98e-07, - "nct": 3.98e-07, - "nederland": 3.98e-07, - "neu": 3.98e-07, - "newington": 3.98e-07, - "newness": 3.98e-07, - "newsreader": 3.98e-07, - "nipping": 3.98e-07, - "nona": 3.98e-07, - "nontraditional": 3.98e-07, - "nori": 3.98e-07, - "obriens": 3.98e-07, - "octavian": 3.98e-07, - "oddest": 3.98e-07, - "olmsted": 3.98e-07, - "olympiad": 3.98e-07, - "optimise": 3.98e-07, - "oration": 3.98e-07, - "ordinates": 3.98e-07, - "orrin": 3.98e-07, - "ousting": 3.98e-07, - "overseers": 3.98e-07, - "oxidizing": 3.98e-07, - "paneling": 3.98e-07, - "panelled": 3.98e-07, - "pangs": 3.98e-07, - "pape": 3.98e-07, - "paribas": 3.98e-07, - "paschal": 3.98e-07, - "passivity": 3.98e-07, - "paterno": 3.98e-07, - "pcl": 3.98e-07, - "pec": 3.98e-07, - "peeks": 3.98e-07, - "percussive": 3.98e-07, - "perdue": 3.98e-07, - "phosphatase": 3.98e-07, - "pickets": 3.98e-07, - "piezoelectric": 3.98e-07, - "piglets": 3.98e-07, - "pinches": 3.98e-07, - "pir": 3.98e-07, - "pittsfield": 3.98e-07, - "plessis": 3.98e-07, - "plies": 3.98e-07, - "plinth": 3.98e-07, - "plos": 3.98e-07, - "pmc": 3.98e-07, - "polishes": 3.98e-07, - "polypeptide": 3.98e-07, - "postulate": 3.98e-07, - "presidio": 3.98e-07, - "priors": 7.76e-08, - "probiotic": 3.98e-07, - "productively": 3.98e-07, - "propylene": 3.98e-07, - "prosaic": 3.98e-07, - "proscribed": 3.98e-07, - "prosecutorial": 3.98e-07, - "pyrotechnics": 3.98e-07, - "qos": 3.98e-07, - "quacks": 3.98e-07, - "quandary": 3.98e-07, - "quietest": 3.98e-07, - "quipped": 3.98e-07, - "rabat": 3.98e-07, - "radisson": 3.98e-07, - "rajya": 3.98e-07, - "rationalism": 3.98e-07, - "rears": 3.98e-07, - "rebut": 3.98e-07, - "reclassified": 3.98e-07, - "reconnecting": 3.98e-07, - "redondo": 3.98e-07, - "refiners": 3.98e-07, - "reheat": 3.98e-07, - "reinhard": 3.98e-07, - "reinhart": 3.98e-07, - "reinvest": 3.98e-07, - "remorseful": 3.98e-07, - "repackaged": 3.98e-07, - "repented": 3.98e-07, - "reprogramming": 3.98e-07, - "restocking": 3.98e-07, - "reticence": 3.98e-07, - "reversion": 3.98e-07, - "reys": 5.13e-08, - "rhinestone": 3.98e-07, - "riemann": 3.98e-07, - "rittenhouse": 3.98e-07, - "roundabouts": 3.98e-07, - "rspca": 3.98e-07, - "rubinstein": 3.98e-07, - "rutter": 3.98e-07, - "saipan": 3.98e-07, - "saladin": 3.98e-07, - "saleem": 3.98e-07, - "sandown": 3.98e-07, - "sapphires": 3.98e-07, - "saran": 3.98e-07, - "scrip": 3.98e-07, - "scruff": 3.98e-07, - "scurrying": 3.98e-07, - "seafaring": 3.98e-07, - "sepp": 3.98e-07, - "sexiness": 3.98e-07, - "shania": 3.98e-07, - "shaquille": 3.98e-07, - "sheaf": 3.98e-07, - "shipwrecks": 3.98e-07, - "siesta": 3.98e-07, - "sikkim": 3.98e-07, - "sinhalese": 3.98e-07, - "skoda": 3.98e-07, - "slp": 3.98e-07, - "sniffer": 3.98e-07, - "snobs": 3.98e-07, - "snyders": 3.98e-07, - "socialise": 3.98e-07, - "sociopathic": 3.98e-07, - "sociopaths": 3.98e-07, - "sof": 3.98e-07, - "speedometer": 3.98e-07, - "splints": 3.98e-07, - "spoofing": 3.98e-07, - "squalid": 3.98e-07, - "staves": 3.98e-07, - "stillman": 3.98e-07, - "stockwell": 3.98e-07, - "stringed": 3.98e-07, - "strollers": 3.98e-07, - "strolls": 3.98e-07, - "styx": 3.98e-07, - "submerge": 3.98e-07, - "subordination": 3.98e-07, - "summarise": 3.98e-07, - "sunnah": 3.98e-07, - "surfactant": 3.98e-07, - "surry": 3.98e-07, - "survivability": 3.98e-07, - "sweltering": 3.98e-07, - "swooping": 3.98e-07, - "sz": 3.98e-07, - "tahrir": 3.98e-07, - "tannins": 3.98e-07, - "tanto": 3.98e-07, - "tarn": 3.98e-07, - "tater": 3.98e-07, - "taxicab": 3.98e-07, - "tdp": 3.98e-07, - "tedx": 3.98e-07, - "telluride": 3.98e-07, - "telus": 3.98e-07, - "tenements": 3.98e-07, - "thanet": 3.98e-07, - "themself": 3.98e-07, - "thule": 3.98e-07, - "thunk": 3.98e-07, - "tiber": 3.98e-07, - "tigger": 3.98e-07, - "tints": 3.98e-07, - "tokugawa": 3.98e-07, - "tonk": 3.98e-07, - "trevelyan": 3.98e-07, - "ttt": 3.98e-07, - "tupelo": 3.98e-07, - "ulta": 3.98e-07, - "unabashed": 3.98e-07, - "unencumbered": 3.98e-07, - "unfilled": 3.98e-07, - "unionization": 3.98e-07, - "unjustifiable": 3.98e-07, - "unnaturally": 3.98e-07, - "uttarakhand": 3.98e-07, - "uwu": 3.98e-07, - "vann": 3.98e-07, - "vazquez": 3.98e-07, - "vegetarianism": 3.98e-07, - "verstappen": 3.98e-07, - "vey": 3.98e-07, - "vicarious": 3.98e-07, - "villainy": 3.98e-07, - "virtuosity": 3.98e-07, - "virulence": 3.98e-07, - "vishal": 3.98e-07, - "vix": 3.98e-07, - "vizier": 3.98e-07, - "vries": 3.98e-07, - "waa": 3.98e-07, - "wali": 3.98e-07, - "walkable": 3.98e-07, - "walling": 3.98e-07, - "warmers": 3.98e-07, - "westbury": 3.98e-07, - "whimsy": 3.98e-07, - "whitcomb": 3.98e-07, - "wicca": 3.98e-07, - "willett": 3.98e-07, - "wilted": 3.98e-07, - "winging": 3.98e-07, - "wolfpack": 3.98e-07, - "worf": 3.98e-07, - "workpiece": 3.98e-07, - "wormwood": 3.98e-07, - "wrangle": 3.98e-07, - "youngblood": 3.98e-07, - "yucatan": 3.98e-07, - "zander": 3.98e-07, - "zeller": 3.98e-07, - "zhi": 3.98e-07, - "zircon": 3.98e-07, - "zora": 3.98e-07, - "aaaa": 3.89e-07, - "abated": 3.89e-07, - "abernathy": 3.89e-07, - "accrediting": 3.89e-07, - "aci": 3.89e-07, - "acoustical": 3.89e-07, - "advil": 3.89e-07, - "afflictions": 3.89e-07, - "afterall": 3.89e-07, - "aggregating": 3.89e-07, - "agitator": 3.89e-07, - "albedo": 3.89e-07, - "alcott": 3.89e-07, - "alisha": 3.89e-07, - "allyson": 3.89e-07, - "alun": 3.89e-07, - "alway": 3.89e-07, - "amateurish": 3.89e-07, - "anaphylaxis": 3.89e-07, - "ando": 3.89e-07, - "angelus": 3.89e-07, - "angora": 3.89e-07, - "anyplace": 3.89e-07, - "aos": 3.89e-07, - "appetizing": 3.89e-07, - "applicator": 3.89e-07, - "arbys": 3.89e-07, - "arsonist": 3.89e-07, - "artichokes": 3.89e-07, - "ashlee": 3.89e-07, - "aslam": 3.89e-07, - "asmr": 3.89e-07, - "asquith": 3.89e-07, - "assemblages": 3.89e-07, - "augmenting": 3.89e-07, - "axons": 3.89e-07, - "babbitt": 3.89e-07, - "bachs": 3.89e-07, - "ballin": 3.89e-07, - "baltimores": 3.89e-07, - "banc": 3.89e-07, - "barnacles": 3.89e-07, - "bast": 3.89e-07, - "beekeepers": 3.89e-07, - "benteke": 3.89e-07, - "berta": 3.89e-07, - "bests": 8.71e-08, - "beulah": 3.89e-07, - "biafra": 3.89e-07, - "biologic": 3.89e-07, - "bjj": 3.89e-07, - "blackfish": 3.89e-07, - "bleacher": 3.89e-07, - "blizzards": 1.38e-07, - "bloodiest": 3.89e-07, - "bloodshot": 3.89e-07, - "bnb": 3.89e-07, - "boku": 3.89e-07, - "bolognese": 3.89e-07, - "bolstering": 3.89e-07, - "brawls": 3.89e-07, - "bronchial": 3.89e-07, - "brownstone": 3.89e-07, - "buffered": 3.89e-07, - "burgoyne": 3.89e-07, - "burka": 3.89e-07, - "butterscotch": 3.89e-07, - "byung": 3.89e-07, - "caballero": 3.89e-07, - "caboose": 3.89e-07, - "caesarean": 3.89e-07, - "cair": 3.89e-07, - "calcareous": 3.89e-07, - "callus": 3.89e-07, - "cally": 3.89e-07, - "capella": 3.89e-07, - "capote": 3.89e-07, - "carmarthenshire": 3.89e-07, - "carotene": 3.89e-07, - "carpark": 3.89e-07, - "cartoonish": 3.89e-07, - "cassell": 3.89e-07, - "cesarean": 3.89e-07, - "chaim": 3.89e-07, - "chalets": 3.89e-07, - "characterizations": 3.89e-07, - "cherub": 3.89e-07, - "chiswick": 3.89e-07, - "chula": 3.89e-07, - "clearinghouse": 3.89e-07, - "cleve": 3.89e-07, - "coaxed": 3.89e-07, - "colloidal": 3.89e-07, - "colville": 3.89e-07, - "commited": 3.89e-07, - "conceptualize": 3.89e-07, - "concurrency": 3.89e-07, - "confidante": 3.89e-07, - "conifer": 3.89e-07, - "consumable": 3.89e-07, - "convener": 3.89e-07, - "coogan": 3.89e-07, - "corker": 3.89e-07, - "corroborating": 3.89e-07, - "corsa": 3.89e-07, - "cours": 3.89e-07, - "courtenay": 3.89e-07, - "courtly": 3.89e-07, - "cupertino": 3.89e-07, - "cutlass": 3.89e-07, - "cutouts": 3.89e-07, - "cvt": 3.89e-07, - "cybernetics": 3.89e-07, - "cymbal": 3.89e-07, - "dabbing": 3.89e-07, - "dachau": 3.89e-07, - "dalits": 3.89e-07, - "darjeeling": 3.89e-07, - "daydreams": 3.89e-07, - "deccan": 3.89e-07, - "decriminalization": 3.89e-07, - "dejan": 3.89e-07, - "delmar": 3.89e-07, - "demar": 3.89e-07, - "demarcus": 3.89e-07, - "demoralizing": 3.89e-07, - "denigrate": 3.89e-07, - "dennison": 3.89e-07, - "derrida": 3.89e-07, - "despatches": 3.89e-07, - "detonator": 3.89e-07, - "devereux": 3.89e-07, - "diametrically": 3.89e-07, - "dian": 3.89e-07, - "dirac": 3.89e-07, - "dissing": 3.89e-07, - "disuse": 3.89e-07, - "dmt": 3.89e-07, - "donal": 3.89e-07, - "dore": 3.89e-07, - "dorks": 3.89e-07, - "douse": 3.89e-07, - "downgrading": 3.89e-07, - "dozing": 3.89e-07, - "dramatized": 3.89e-07, - "drinkable": 3.89e-07, - "drooping": 3.89e-07, - "ecologists": 3.89e-07, - "edin": 3.89e-07, - "edson": 3.89e-07, - "elam": 3.89e-07, - "eller": 3.89e-07, - "embarassing": 3.89e-07, - "embellishments": 3.89e-07, - "emg": 3.89e-07, - "emigrating": 3.89e-07, - "empathic": 3.89e-07, - "energizing": 3.89e-07, - "engl": 3.89e-07, - "enumeration": 3.89e-07, - "epo": 3.89e-07, - "epson": 3.89e-07, - "esme": 3.89e-07, - "evocation": 3.89e-07, - "excepted": 3.89e-07, - "existentialism": 3.89e-07, - "exterminator": 3.89e-07, - "extinguishing": 3.89e-07, - "extradite": 3.89e-07, - "extrapolated": 3.89e-07, - "extricate": 3.89e-07, - "falsifying": 3.89e-07, - "farmville": 3.89e-07, - "faro": 3.89e-07, - "fassbender": 3.89e-07, - "fastener": 3.89e-07, - "fatale": 3.89e-07, - "fedor": 3.89e-07, - "fibula": 3.89e-07, - "fidget": 3.89e-07, - "filesystem": 3.89e-07, - "flexion": 3.89e-07, - "flippant": 3.89e-07, - "floater": 3.89e-07, - "fondue": 3.89e-07, - "forerunners": 3.89e-07, - "fretted": 3.89e-07, - "fuelling": 3.89e-07, - "gallardo": 3.89e-07, - "galt": 3.89e-07, - "galvin": 3.89e-07, - "ganglia": 3.89e-07, - "ganglion": 3.89e-07, - "gare": 3.89e-07, - "geeta": 3.89e-07, - "geographies": 3.89e-07, - "geospatial": 3.89e-07, - "geranium": 3.89e-07, - "geun": 3.89e-07, - "ghanaians": 3.89e-07, - "gilberto": 3.89e-07, - "gingerly": 3.89e-07, - "glared": 3.89e-07, - "glick": 3.89e-07, - "goalposts": 3.89e-07, - "godaddy": 3.89e-07, - "goer": 3.89e-07, - "goldsmiths": 1e-07, - "gowdy": 3.89e-07, - "gpm": 3.89e-07, - "gratified": 3.89e-07, - "groucho": 3.89e-07, - "grouchy": 3.89e-07, - "grownup": 3.89e-07, - "guaranty": 3.89e-07, - "gusty": 3.89e-07, - "haber": 3.89e-07, - "hagar": 3.89e-07, - "hagerstown": 3.89e-07, - "harmonizing": 3.89e-07, - "heaviness": 3.89e-07, - "hedonism": 3.89e-07, - "heirlooms": 3.89e-07, - "hereof": 3.89e-07, - "heretofore": 3.89e-07, - "hillsdale": 3.89e-07, - "hopewell": 3.89e-07, - "horoscopes": 3.89e-07, - "hospitalizations": 3.89e-07, - "hov": 3.89e-07, - "huntingtons": 3.89e-07, - "ichiro": 3.89e-07, - "immemorial": 3.89e-07, - "inequity": 3.89e-07, - "ines": 3.89e-07, - "inflected": 3.89e-07, - "infotainment": 3.89e-07, - "ingalls": 3.89e-07, - "ingersoll": 3.89e-07, - "inna": 3.89e-07, - "insinuate": 3.89e-07, - "inspects": 3.89e-07, - "interludes": 3.89e-07, - "iodide": 3.89e-07, - "irishmen": 3.89e-07, - "iva": 3.89e-07, - "ivana": 3.89e-07, - "iwatch": 3.89e-07, - "jacobite": 3.89e-07, - "jeffers": 3.89e-07, - "jesses": 3.89e-07, - "jindal": 3.89e-07, - "jodhpur": 3.89e-07, - "johor": 3.89e-07, - "jolene": 3.89e-07, - "joyces": 3.89e-07, - "juana": 3.89e-07, - "juiced": 3.89e-07, - "jumpstart": 3.89e-07, - "kabuki": 3.89e-07, - "karol": 3.89e-07, - "kelloggs": 5.62e-08, - "kindling": 3.89e-07, - "knell": 3.89e-07, - "koehler": 3.89e-07, - "kroll": 3.89e-07, - "laboring": 3.89e-07, - "ladakh": 3.89e-07, - "lannisters": 6.46e-08, - "laparoscopic": 3.89e-07, - "laurier": 3.89e-07, - "leer": 3.89e-07, - "legume": 3.89e-07, - "lemurs": 3.89e-07, - "linesman": 3.89e-07, - "lipa": 3.89e-07, - "ljubljana": 3.89e-07, - "locum": 3.89e-07, - "logie": 3.89e-07, - "lpc": 3.89e-07, - "lum": 3.89e-07, - "lunged": 3.89e-07, - "madder": 3.89e-07, - "mailboxes": 3.89e-07, - "malign": 3.89e-07, - "maliki": 3.89e-07, - "maltreatment": 3.89e-07, - "mandrake": 3.89e-07, - "maos": 3.89e-07, - "marburg": 3.89e-07, - "marinate": 3.89e-07, - "marque": 3.89e-07, - "marxs": 3.89e-07, - "mashable": 3.89e-07, - "maurer": 3.89e-07, - "mcghee": 3.89e-07, - "mcloughlin": 3.89e-07, - "mcnabb": 3.89e-07, - "mcveigh": 3.89e-07, - "meltdowns": 3.89e-07, - "memorization": 3.89e-07, - "mems": 3.89e-07, - "merida": 3.89e-07, - "merthyr": 3.89e-07, - "middlebury": 3.89e-07, - "millisecond": 3.89e-07, - "misdirected": 3.89e-07, - "missteps": 3.89e-07, - "mockingjay": 3.89e-07, - "moiety": 3.89e-07, - "moline": 3.89e-07, - "mollys": 3.89e-07, - "montreux": 3.89e-07, - "montserrat": 3.89e-07, - "mornington": 3.89e-07, - "morsel": 3.89e-07, - "mq": 3.89e-07, - "mucho": 3.89e-07, - "mugshot": 3.89e-07, - "mukesh": 3.89e-07, - "muncie": 3.89e-07, - "mundi": 3.89e-07, - "murillo": 3.89e-07, - "murthy": 3.89e-07, - "mythbusters": 3.89e-07, - "nabokov": 3.89e-07, - "naia": 3.89e-07, - "naperville": 3.89e-07, - "nary": 3.89e-07, - "nasi": 3.89e-07, - "nasr": 3.89e-07, - "nastiest": 3.89e-07, - "nei": 3.89e-07, - "newburgh": 3.89e-07, - "newsflash": 3.89e-07, - "nilly": 3.89e-07, - "nlp": 3.89e-07, - "nocturne": 3.89e-07, - "nongovernmental": 3.89e-07, - "nooks": 3.89e-07, - "nostra": 3.89e-07, - "nudging": 3.89e-07, - "oems": 3.89e-07, - "oma": 3.89e-07, - "ombre": 3.89e-07, - "optimizations": 3.89e-07, - "oran": 3.89e-07, - "ors": 3.89e-07, - "osc": 3.89e-07, - "oxycodone": 3.89e-07, - "pacheco": 3.89e-07, - "paleolithic": 3.89e-07, - "paraphrased": 3.89e-07, - "parisians": 3.89e-07, - "passageways": 3.89e-07, - "passersby": 3.89e-07, - "patrolman": 3.89e-07, - "peacekeeper": 3.89e-07, - "peake": 3.89e-07, - "penzance": 3.89e-07, - "perlman": 3.89e-07, - "perot": 3.89e-07, - "pert": 3.89e-07, - "petco": 3.89e-07, - "petraeus": 3.89e-07, - "picchu": 3.89e-07, - "pillaging": 3.89e-07, - "platoons": 3.89e-07, - "playmates": 3.89e-07, - "pma": 3.89e-07, - "pollsters": 3.89e-07, - "populists": 3.89e-07, - "portlands": 3.89e-07, - "practises": 3.89e-07, - "prat": 3.89e-07, - "pratchett": 3.89e-07, - "predate": 3.89e-07, - "predominate": 3.89e-07, - "prelims": 3.89e-07, - "presumes": 3.89e-07, - "principalities": 3.89e-07, - "printout": 3.89e-07, - "prodded": 3.89e-07, - "profiler": 3.89e-07, - "proofread": 3.89e-07, - "prophylactic": 3.89e-07, - "prophylaxis": 3.89e-07, - "pseudomonas": 3.89e-07, - "psh": 3.89e-07, - "ptv": 3.89e-07, - "pullout": 3.89e-07, - "puppeteer": 3.89e-07, - "purist": 3.89e-07, - "purposed": 3.89e-07, - "radiography": 3.89e-07, - "rajput": 3.89e-07, - "readied": 3.89e-07, - "recherche": 3.89e-07, - "reiki": 3.89e-07, - "reimbursements": 3.89e-07, - "reopens": 3.89e-07, - "repairman": 3.89e-07, - "rescuer": 3.89e-07, - "resurrecting": 3.89e-07, - "revolutionizing": 3.89e-07, - "rialto": 3.89e-07, - "ridgeway": 3.89e-07, - "ringleader": 3.89e-07, - "riverview": 3.89e-07, - "rococo": 3.89e-07, - "rodolfo": 3.89e-07, - "rong": 3.89e-07, - "rottweiler": 3.89e-07, - "rq": 3.89e-07, - "ruhr": 3.89e-07, - "rukh": 3.89e-07, - "rumblings": 3.89e-07, - "runescape": 3.89e-07, - "sandbags": 3.89e-07, - "sandeep": 3.89e-07, - "sapporo": 3.89e-07, - "sauer": 3.89e-07, - "scalping": 3.89e-07, - "scantily": 3.89e-07, - "scarlets": 3.89e-07, - "schmid": 3.89e-07, - "scsi": 3.89e-07, - "scurry": 3.89e-07, - "sebastien": 3.89e-07, - "secessionist": 3.89e-07, - "sedona": 3.89e-07, - "semites": 3.89e-07, - "sepals": 3.89e-07, - "serengeti": 3.89e-07, - "serialized": 3.89e-07, - "shader": 3.89e-07, - "shakin": 3.89e-07, - "shaper": 3.89e-07, - "sharkey": 3.89e-07, - "shaykh": 3.89e-07, - "sheamus": 3.89e-07, - "shekhar": 3.89e-07, - "sidestep": 3.89e-07, - "sieges": 3.89e-07, - "sinbad": 3.89e-07, - "slaw": 3.89e-07, - "smirked": 3.89e-07, - "smokescreen": 3.89e-07, - "snide": 3.89e-07, - "snohomish": 3.89e-07, - "snowballs": 7.76e-08, - "societe": 3.89e-07, - "solider": 3.89e-07, - "sov": 3.89e-07, - "sowed": 3.89e-07, - "sows": 3.89e-07, - "sprocket": 3.89e-07, - "squabble": 3.89e-07, - "squabbling": 3.89e-07, - "squeaking": 3.89e-07, - "sra": 3.89e-07, - "stapled": 3.89e-07, - "starbuck": 3.89e-07, - "starkey": 3.89e-07, - "startin": 3.89e-07, - "statins": 3.89e-07, - "steeplechase": 3.89e-07, - "steffen": 3.89e-07, - "sternly": 3.89e-07, - "stopwatch": 3.89e-07, - "stranglehold": 3.89e-07, - "stratospheric": 3.89e-07, - "streetwear": 3.89e-07, - "subcultures": 3.89e-07, - "subfamily": 3.89e-07, - "succulents": 3.89e-07, - "sulphate": 3.89e-07, - "superposition": 3.89e-07, - "suprise": 3.89e-07, - "sylvain": 3.89e-07, - "sympathizer": 3.89e-07, - "symposia": 3.89e-07, - "synchro": 3.89e-07, - "tachycardia": 3.89e-07, - "tactful": 3.89e-07, - "tafe": 3.89e-07, - "takeshi": 3.89e-07, - "tamarind": 3.89e-07, - "tapers": 3.89e-07, - "tarte": 3.89e-07, - "teared": 3.89e-07, - "telco": 3.89e-07, - "tete": 3.89e-07, - "theism": 3.89e-07, - "theocracy": 3.89e-07, - "theoretic": 3.89e-07, - "thun": 3.89e-07, - "tilley": 3.89e-07, - "tobi": 3.89e-07, - "toenail": 3.89e-07, - "toh": 3.89e-07, - "toussaint": 3.89e-07, - "tpc": 3.89e-07, - "tracers": 3.89e-07, - "trafficker": 3.89e-07, - "transducers": 3.89e-07, - "transfiguration": 3.89e-07, - "transphobia": 3.89e-07, - "trellis": 3.89e-07, - "tropicana": 3.89e-07, - "truthfulness": 3.89e-07, - "tryptophan": 3.89e-07, - "twd": 3.89e-07, - "typescript": 3.89e-07, - "tyrannosaurus": 3.89e-07, - "ulf": 3.89e-07, - "ullman": 3.89e-07, - "unblocked": 3.89e-07, - "undersized": 3.89e-07, - "understaffed": 3.89e-07, - "unexplainable": 3.89e-07, - "unflinching": 3.89e-07, - "uninhibited": 3.89e-07, - "unmodified": 3.89e-07, - "unpretentious": 3.89e-07, - "unprocessed": 3.89e-07, - "unseat": 3.89e-07, - "urbanism": 3.89e-07, - "uriel": 3.89e-07, - "usurper": 3.89e-07, - "vagaries": 3.89e-07, - "vamps": 3.89e-07, - "vermouth": 3.89e-07, - "verna": 3.89e-07, - "vespa": 3.89e-07, - "vesta": 3.89e-07, - "videographer": 3.89e-07, - "viewfinder": 3.89e-07, - "vonnegut": 3.89e-07, - "waikato": 3.89e-07, - "wanking": 3.89e-07, - "watchdogs": 3.89e-07, - "watchmaker": 3.89e-07, - "wawrinka": 3.89e-07, - "whe": 3.89e-07, - "whitefish": 3.89e-07, - "whittington": 3.89e-07, - "whoring": 3.89e-07, - "wiccan": 3.89e-07, - "wishy": 3.89e-07, - "wojciech": 3.89e-07, - "workbench": 3.89e-07, - "worksheets": 3.89e-07, - "wriggle": 3.89e-07, - "wrs": 8.13e-08, - "yama": 3.89e-07, - "yardley": 3.89e-07, - "yat": 3.89e-07, - "yearns": 3.89e-07, - "yemens": 3.89e-07, - "yoyo": 3.89e-07, - "yumi": 3.89e-07, - "aaliyah": 3.8e-07, - "aarhus": 3.8e-07, - "abdicated": 3.8e-07, - "abm": 3.8e-07, - "acceded": 3.8e-07, - "accruing": 3.8e-07, - "acquit": 3.8e-07, - "adjuvant": 3.8e-07, - "admixture": 3.8e-07, - "adopter": 3.8e-07, - "afa": 3.8e-07, - "aftershock": 3.8e-07, - "agence": 3.8e-07, - "airshow": 3.8e-07, - "albumin": 3.8e-07, - "algernon": 3.8e-07, - "aline": 3.8e-07, - "amaya": 3.8e-07, - "ambiguities": 3.8e-07, - "amirite": 3.8e-07, - "amuses": 3.8e-07, - "anchovy": 3.8e-07, - "anguished": 3.8e-07, - "antagonize": 3.8e-07, - "antalya": 3.8e-07, - "anthracite": 3.8e-07, - "appa": 3.8e-07, - "apparitions": 3.8e-07, - "applebees": 1.23e-07, - "appt": 3.8e-07, - "ariadne": 3.8e-07, - "arjuna": 3.8e-07, - "artifice": 3.8e-07, - "aryans": 3.8e-07, - "ashburn": 3.8e-07, - "asides": 3.8e-07, - "aspergillus": 3.8e-07, - "assistive": 3.8e-07, - "audibly": 3.8e-07, - "ayurvedic": 3.8e-07, - "baldy": 3.8e-07, - "balthazar": 3.8e-07, - "bartley": 3.8e-07, - "batons": 3.8e-07, - "batshit": 3.8e-07, - "beardsley": 3.8e-07, - "becks": 2.88e-07, - "begining": 3.8e-07, - "beni": 3.8e-07, - "betcha": 3.8e-07, - "bidet": 3.8e-07, - "bingley": 3.8e-07, - "biophysics": 3.8e-07, - "biscayne": 3.8e-07, - "blacksmiths": 1.26e-07, - "blobs": 3.8e-07, - "bluster": 3.8e-07, - "boc": 3.8e-07, - "bodes": 3.8e-07, - "bodie": 3.8e-07, - "bookworm": 3.8e-07, - "bowyer": 3.8e-07, - "braga": 3.8e-07, - "bratton": 3.8e-07, - "brut": 3.8e-07, - "bruyne": 3.8e-07, - "bsn": 3.8e-07, - "buell": 3.8e-07, - "bung": 3.8e-07, - "bungie": 3.8e-07, - "burkes": 9.33e-08, - "burqa": 3.8e-07, - "bursary": 3.8e-07, - "butted": 3.8e-07, - "cae": 3.8e-07, - "caffeinated": 3.8e-07, - "calvinism": 3.8e-07, - "cannery": 3.8e-07, - "canvassed": 3.8e-07, - "capra": 3.8e-07, - "captioning": 3.8e-07, - "carcinogen": 3.8e-07, - "careys": 3.8e-07, - "cased": 3.8e-07, - "catamaran": 3.8e-07, - "cates": 3.8e-07, - "catheters": 3.8e-07, - "caucasians": 3.8e-07, - "cavill": 3.8e-07, - "cdna": 3.8e-07, - "ceding": 3.8e-07, - "celled": 3.8e-07, - "changeling": 3.8e-07, - "chargeable": 3.8e-07, - "chastain": 3.8e-07, - "chatroom": 3.8e-07, - "cheadle": 3.8e-07, - "checkin": 3.8e-07, - "checklists": 3.8e-07, - "cheri": 3.8e-07, - "chieftains": 3.8e-07, - "chil": 3.8e-07, - "choreographers": 3.8e-07, - "christo": 3.8e-07, - "clasped": 3.8e-07, - "clo": 3.8e-07, - "cmb": 3.8e-07, - "coauthor": 3.8e-07, - "cocos": 1.38e-07, - "colson": 3.8e-07, - "comming": 3.8e-07, - "constantin": 3.8e-07, - "cookware": 3.8e-07, - "cooperstown": 3.8e-07, - "copacabana": 3.8e-07, - "cordell": 3.8e-07, - "corduroy": 3.8e-07, - "corky": 3.8e-07, - "corleone": 3.8e-07, - "corsets": 3.8e-07, - "cortland": 3.8e-07, - "counterculture": 3.8e-07, - "crandall": 3.8e-07, - "criminalize": 3.8e-07, - "crocheted": 3.8e-07, - "crummy": 3.8e-07, - "crusading": 3.8e-07, - "curating": 3.8e-07, - "curries": 3.8e-07, - "customizing": 3.8e-07, - "cyrano": 3.8e-07, - "dandenong": 3.8e-07, - "daniele": 3.8e-07, - "darla": 3.8e-07, - "darted": 3.8e-07, - "datacenter": 3.8e-07, - "decryption": 3.8e-07, - "degrasse": 3.8e-07, - "dembele": 3.8e-07, - "demean": 3.8e-07, - "deming": 3.8e-07, - "dempster": 3.8e-07, - "depaul": 3.8e-07, - "deterring": 3.8e-07, - "detoxification": 3.8e-07, - "deutschen": 3.8e-07, - "diatribe": 3.8e-07, - "dinar": 3.8e-07, - "dionne": 3.8e-07, - "diplomatically": 3.8e-07, - "disassemble": 3.8e-07, - "discards": 3.8e-07, - "discontinuing": 3.8e-07, - "disparage": 3.8e-07, - "disqualifying": 3.8e-07, - "ditty": 3.8e-07, - "dockers": 3.8e-07, - "dogfight": 3.8e-07, - "dordrecht": 3.8e-07, - "downers": 3.8e-07, - "downfield": 3.8e-07, - "downsized": 3.8e-07, - "dramatists": 3.8e-07, - "droll": 3.8e-07, - "drudgery": 3.8e-07, - "drupal": 3.8e-07, - "ducats": 3.8e-07, - "dulwich": 3.8e-07, - "dumbasses": 3.8e-07, - "durian": 3.8e-07, - "edinburghs": 3.8e-07, - "edl": 3.8e-07, - "edvard": 3.8e-07, - "egerton": 3.8e-07, - "electrocution": 3.8e-07, - "elkhart": 3.8e-07, - "emoluments": 3.8e-07, - "endometrial": 3.8e-07, - "energys": 3.8e-07, - "enright": 3.8e-07, - "erg": 3.8e-07, - "eucharistic": 3.8e-07, - "eusebius": 3.8e-07, - "excised": 3.8e-07, - "executioners": 8.71e-08, - "exhortation": 3.8e-07, - "exoplanet": 3.8e-07, - "exteriors": 3.8e-07, - "fader": 3.8e-07, - "fallopian": 3.8e-07, - "feign": 3.8e-07, - "fermanagh": 3.8e-07, - "fistful": 3.8e-07, - "fj": 3.8e-07, - "flamed": 3.8e-07, - "flatulence": 3.8e-07, - "flavia": 3.8e-07, - "flowchart": 3.8e-07, - "foetal": 3.8e-07, - "forgetfulness": 3.8e-07, - "fou": 3.8e-07, - "freshers": 3.8e-07, - "freuds": 3.8e-07, - "fujian": 3.8e-07, - "gaithersburg": 3.8e-07, - "garish": 3.8e-07, - "gba": 3.8e-07, - "gdi": 3.8e-07, - "geodetic": 3.8e-07, - "gian": 3.8e-07, - "gib": 3.8e-07, - "gilding": 3.8e-07, - "globalism": 3.8e-07, - "gluing": 3.8e-07, - "googly": 3.8e-07, - "gorham": 3.8e-07, - "greenbrier": 3.8e-07, - "gremlins": 3.8e-07, - "gringo": 3.8e-07, - "gunslinger": 3.8e-07, - "haan": 3.8e-07, - "hampering": 3.8e-07, - "hansard": 3.8e-07, - "harps": 3.8e-07, - "hashing": 3.8e-07, - "hayman": 3.8e-07, - "hayne": 3.8e-07, - "headspace": 3.8e-07, - "healthily": 3.8e-07, - "hedonistic": 3.8e-07, - "hegemonic": 3.8e-07, - "hehehe": 3.8e-07, - "hellboy": 3.8e-07, - "hemming": 3.8e-07, - "hesitates": 3.8e-07, - "hina": 3.8e-07, - "histological": 3.8e-07, - "hoaxes": 3.8e-07, - "hobbled": 3.8e-07, - "hodder": 3.8e-07, - "hooch": 3.8e-07, - "hsiao": 3.8e-07, - "hysterics": 3.8e-07, - "ibf": 3.8e-07, - "incas": 3.8e-07, - "incriminate": 3.8e-07, - "infill": 3.8e-07, - "inflame": 3.8e-07, - "injurious": 3.8e-07, - "integrator": 3.8e-07, - "interminable": 3.8e-07, - "interrogator": 3.8e-07, - "inthe": 3.8e-07, - "irks": 3.8e-07, - "irrigate": 3.8e-07, - "itty": 3.8e-07, - "januzaj": 3.8e-07, - "jigs": 3.8e-07, - "jinn": 3.8e-07, - "jura": 3.8e-07, - "kanawha": 3.8e-07, - "keratin": 3.8e-07, - "keurig": 3.8e-07, - "kidder": 3.8e-07, - "kinases": 3.8e-07, - "koichi": 3.8e-07, - "kom": 3.8e-07, - "kooky": 3.8e-07, - "lances": 1.66e-07, - "lansbury": 3.8e-07, - "larue": 3.8e-07, - "lauda": 3.8e-07, - "laureates": 3.8e-07, - "leaker": 3.8e-07, - "ledgers": 1.26e-07, - "leery": 3.8e-07, - "legislating": 3.8e-07, - "lepers": 3.8e-07, - "lessee": 3.8e-07, - "lethbridge": 3.8e-07, - "lettres": 3.8e-07, - "levees": 3.8e-07, - "lif": 3.8e-07, - "lobed": 3.8e-07, - "lodger": 3.8e-07, - "loew": 3.8e-07, - "lolol": 3.8e-07, - "lora": 3.8e-07, - "loveland": 3.8e-07, - "lubricating": 3.8e-07, - "lumley": 3.8e-07, - "magnetized": 3.8e-07, - "manon": 3.8e-07, - "marcella": 3.8e-07, - "marios": 1.1e-07, - "marple": 3.8e-07, - "massie": 3.8e-07, - "mastiff": 3.8e-07, - "mcewan": 3.8e-07, - "mcp": 3.8e-07, - "mediates": 3.8e-07, - "megadeth": 3.8e-07, - "mehr": 3.8e-07, - "melodious": 3.8e-07, - "microfinance": 3.8e-07, - "middleware": 3.8e-07, - "midori": 3.8e-07, - "midshipman": 3.8e-07, - "miffed": 3.8e-07, - "miho": 3.8e-07, - "minna": 3.8e-07, - "minot": 3.8e-07, - "mismanaged": 3.8e-07, - "mistral": 3.8e-07, - "mockingly": 3.8e-07, - "mook": 3.8e-07, - "morbidly": 3.8e-07, - "moresby": 3.8e-07, - "mucking": 3.8e-07, - "mudd": 3.8e-07, - "murano": 3.8e-07, - "muskegon": 3.8e-07, - "mvps": 8.71e-08, - "naan": 3.8e-07, - "naivety": 3.8e-07, - "nama": 3.8e-07, - "nanda": 3.8e-07, - "nastiness": 3.8e-07, - "nazarene": 3.8e-07, - "nem": 3.8e-07, - "newcomb": 3.8e-07, - "newsstand": 3.8e-07, - "nhls": 3.8e-07, - "nibbles": 3.8e-07, - "nonchalantly": 3.8e-07, - "normals": 3.8e-07, - "northwood": 3.8e-07, - "novartis": 3.8e-07, - "novgorod": 3.8e-07, - "nya": 3.8e-07, - "occasioned": 3.8e-07, - "occupier": 3.8e-07, - "odette": 3.8e-07, - "oki": 3.8e-07, - "oklahomas": 3.8e-07, - "omo": 3.8e-07, - "onetime": 3.8e-07, - "onondaga": 3.8e-07, - "orthography": 3.8e-07, - "ould": 3.8e-07, - "ovate": 3.8e-07, - "overflowed": 3.8e-07, - "overtakes": 3.8e-07, - "pageantry": 3.8e-07, - "parallelism": 3.8e-07, - "pba": 3.8e-07, - "peasy": 3.8e-07, - "pecans": 3.8e-07, - "penitent": 3.8e-07, - "pentagram": 3.8e-07, - "pettigrew": 3.8e-07, - "phe": 3.8e-07, - "philistine": 3.8e-07, - "phlegm": 3.8e-07, - "photonic": 3.8e-07, - "pianists": 3.8e-07, - "picketing": 3.8e-07, - "pka": 3.8e-07, - "poacher": 3.8e-07, - "poco": 3.8e-07, - "pomeranian": 3.8e-07, - "poon": 3.8e-07, - "possessor": 3.8e-07, - "precept": 3.8e-07, - "precipitous": 3.8e-07, - "previewed": 3.8e-07, - "prioritization": 3.8e-07, - "profiteering": 3.8e-07, - "proofreading": 3.8e-07, - "prospectors": 3.8e-07, - "prosser": 3.8e-07, - "prude": 3.8e-07, - "purifier": 3.8e-07, - "qiu": 3.8e-07, - "quartets": 7.76e-08, - "queers": 3.8e-07, - "quenching": 3.8e-07, - "racecar": 3.8e-07, - "radioed": 3.8e-07, - "raglan": 3.8e-07, - "ramone": 3.8e-07, - "rampaging": 3.8e-07, - "randomised": 3.8e-07, - "rapier": 3.8e-07, - "ravage": 3.8e-07, - "readjust": 3.8e-07, - "realizations": 3.8e-07, - "reams": 3.8e-07, - "redirection": 3.8e-07, - "reeses": 5.25e-08, - "reinvested": 3.8e-07, - "repeaters": 3.8e-07, - "reputedly": 3.8e-07, - "residencies": 3.8e-07, - "ridiculing": 3.8e-07, - "rifling": 3.8e-07, - "riverbed": 3.8e-07, - "robespierre": 3.8e-07, - "rons": 3.8e-07, - "rood": 3.8e-07, - "roundly": 3.8e-07, - "roz": 3.8e-07, - "rummaging": 3.8e-07, - "ryde": 3.8e-07, - "sacramental": 3.8e-07, - "sainsbury": 3.8e-07, - "sanctimonious": 3.8e-07, - "sardonic": 3.8e-07, - "sate": 3.8e-07, - "scabs": 3.8e-07, - "schafer": 3.8e-07, - "scunthorpe": 3.8e-07, - "sda": 3.8e-07, - "sdr": 3.8e-07, - "seabrook": 3.8e-07, - "sequencer": 3.8e-07, - "shittiest": 3.8e-07, - "shultz": 3.8e-07, - "siddiqui": 3.8e-07, - "sieg": 3.8e-07, - "siem": 3.8e-07, - "signers": 3.8e-07, - "sinead": 3.8e-07, - "singed": 3.8e-07, - "sle": 3.8e-07, - "sledding": 3.8e-07, - "snowboarders": 3.8e-07, - "snowdon": 3.8e-07, - "soaks": 3.8e-07, - "socialising": 3.8e-07, - "solidifying": 3.8e-07, - "solvable": 3.8e-07, - "sonatas": 3.8e-07, - "sone": 3.8e-07, - "sororities": 3.8e-07, - "sorrel": 3.8e-07, - "southwards": 3.8e-07, - "spanner": 3.8e-07, - "speakeasy": 3.8e-07, - "specialisation": 3.8e-07, - "spenser": 3.8e-07, - "spiritualism": 3.8e-07, - "srinivasan": 3.8e-07, - "sry": 3.8e-07, - "staccato": 3.8e-07, - "staid": 3.8e-07, - "steadman": 3.8e-07, - "steyn": 3.8e-07, - "stilettos": 3.8e-07, - "stormtrooper": 3.8e-07, - "strang": 3.8e-07, - "stubhub": 3.8e-07, - "subatomic": 3.8e-07, - "subclasses": 3.8e-07, - "subscribes": 3.8e-07, - "suharto": 3.8e-07, - "sulking": 3.8e-07, - "sunnyside": 3.8e-07, - "tallulah": 3.8e-07, - "tannehill": 3.8e-07, - "tastings": 3.8e-07, - "tatters": 3.8e-07, - "tayyip": 3.8e-07, - "tenderloin": 3.8e-07, - "thoroughfares": 3.8e-07, - "thunders": 1.7e-07, - "thymus": 3.8e-07, - "tidewater": 3.8e-07, - "timberland": 3.8e-07, - "tomcat": 3.8e-07, - "tomkins": 3.8e-07, - "tornados": 3.8e-07, - "tramps": 3.8e-07, - "transcribing": 3.8e-07, - "transcriptions": 3.8e-07, - "ttl": 3.8e-07, - "uml": 3.8e-07, - "unappreciated": 3.8e-07, - "uncaring": 3.8e-07, - "uncharacteristic": 3.8e-07, - "uncommonly": 3.8e-07, - "undercooked": 3.8e-07, - "unplayable": 3.8e-07, - "usefully": 3.8e-07, - "uts": 6.92e-08, - "vagueness": 3.8e-07, - "valerian": 3.8e-07, - "vexing": 3.8e-07, - "virginians": 3.8e-07, - "vivaldi": 3.8e-07, - "vivi": 3.8e-07, - "vocab": 3.8e-07, - "voicemails": 3.8e-07, - "wac": 3.8e-07, - "waddle": 3.8e-07, - "wades": 1.55e-07, - "waded": 3.8e-07, - "watchable": 3.8e-07, - "wayyy": 3.8e-07, - "wherewithal": 3.8e-07, - "whined": 3.8e-07, - "wirth": 3.8e-07, - "wombat": 3.8e-07, - "woolsey": 3.8e-07, - "workweek": 3.8e-07, - "yangs": 6.17e-08, - "yanking": 3.8e-07, - "yearned": 3.8e-07, - "zain": 3.8e-07, - "zooey": 3.8e-07, - "zuko": 3.8e-07, - "aaaah": 3.72e-07, - "abominations": 3.72e-07, - "absenteeism": 3.72e-07, - "acrylics": 3.72e-07, - "adventuring": 3.72e-07, - "aew": 3.72e-07, - "aficionado": 3.72e-07, - "ajar": 3.72e-07, - "albury": 3.72e-07, - "alene": 3.72e-07, - "allegra": 3.72e-07, - "anguilla": 3.72e-07, - "anjou": 3.72e-07, - "annalise": 3.72e-07, - "anova": 3.72e-07, - "antipsychotic": 3.72e-07, - "apl": 3.72e-07, - "apogee": 3.72e-07, - "aquatics": 3.72e-07, - "arora": 3.72e-07, - "arrayed": 3.72e-07, - "articulates": 3.72e-07, - "ashy": 3.72e-07, - "auc": 3.72e-07, - "backboard": 3.72e-07, - "bancorp": 3.72e-07, - "bandstand": 3.72e-07, - "banyan": 3.72e-07, - "bara": 3.72e-07, - "barnyard": 3.72e-07, - "basf": 3.72e-07, - "batt": 3.72e-07, - "bau": 3.72e-07, - "bazar": 3.72e-07, - "bbm": 3.72e-07, - "bcm": 3.72e-07, - "beaulieu": 3.72e-07, - "begrudge": 3.72e-07, - "belatedly": 3.72e-07, - "benadryl": 3.72e-07, - "bernd": 3.72e-07, - "biggar": 3.72e-07, - "bioavailability": 3.72e-07, - "biogas": 3.72e-07, - "biosciences": 3.72e-07, - "bisexuals": 3.72e-07, - "bishopric": 3.72e-07, - "blackhawk": 3.72e-07, - "blacking": 3.72e-07, - "blimey": 3.72e-07, - "blitzer": 3.72e-07, - "bolting": 3.72e-07, - "bookish": 3.72e-07, - "bookshops": 3.72e-07, - "bosphorus": 3.72e-07, - "brainiac": 3.72e-07, - "brasilia": 3.72e-07, - "brevard": 3.72e-07, - "brioche": 3.72e-07, - "brutish": 3.72e-07, - "bui": 3.72e-07, - "bukit": 3.72e-07, - "buller": 3.72e-07, - "bushing": 3.72e-07, - "busily": 3.72e-07, - "byline": 3.72e-07, - "calamari": 3.72e-07, - "cami": 3.72e-07, - "cannabinoids": 3.72e-07, - "captor": 3.72e-07, - "carlotta": 3.72e-07, - "carrs": 5.01e-08, - "carsten": 3.72e-07, - "cashman": 3.72e-07, - "caterina": 3.72e-07, - "caw": 3.72e-07, - "cci": 3.72e-07, - "ceaseless": 3.72e-07, - "charli": 3.72e-07, - "charmingly": 3.72e-07, - "childhoods": 7.94e-08, - "chinchilla": 3.72e-07, - "chrysanthemum": 3.72e-07, - "cobham": 3.72e-07, - "codenamed": 3.72e-07, - "cognitively": 3.72e-07, - "coining": 3.72e-07, - "collette": 3.72e-07, - "coms": 7.08e-08, - "concertos": 3.72e-07, - "concubines": 3.72e-07, - "conflagration": 3.72e-07, - "congenial": 3.72e-07, - "consoled": 3.72e-07, - "constriction": 3.72e-07, - "cookers": 3.72e-07, - "coppers": 6.46e-08, - "corks": 3.72e-07, - "coutts": 3.72e-07, - "coverup": 3.72e-07, - "coxs": 3.72e-07, - "creampie": 3.72e-07, - "credibly": 3.72e-07, - "cringed": 3.72e-07, - "crozier": 3.72e-07, - "crunched": 3.72e-07, - "cso": 3.72e-07, - "csv": 3.72e-07, - "csx": 3.72e-07, - "cumulus": 3.72e-07, - "cytotoxic": 3.72e-07, - "daedalus": 3.72e-07, - "dcc": 3.72e-07, - "debussy": 3.72e-07, - "decathlon": 3.72e-07, - "deflections": 3.72e-07, - "defrauding": 3.72e-07, - "depressant": 3.72e-07, - "derangement": 3.72e-07, - "derp": 3.72e-07, - "despotic": 3.72e-07, - "devito": 3.72e-07, - "disallow": 3.72e-07, - "discriminates": 3.72e-07, - "disgustingly": 3.72e-07, - "disulfide": 3.72e-07, - "dnp": 3.72e-07, - "doctorates": 3.72e-07, - "doghouse": 3.72e-07, - "dottie": 3.72e-07, - "doubleheader": 3.72e-07, - "drg": 3.72e-07, - "drivetrain": 3.72e-07, - "dropper": 3.72e-07, - "druze": 3.72e-07, - "dvorak": 3.72e-07, - "dysphoria": 3.72e-07, - "eclipsing": 3.72e-07, - "educations": 3.47e-07, - "einar": 3.72e-07, - "elks": 3.72e-07, - "emin": 3.72e-07, - "employability": 3.72e-07, - "enchant": 3.72e-07, - "engle": 3.72e-07, - "entanglements": 3.72e-07, - "equalize": 3.72e-07, - "esau": 3.72e-07, - "eschew": 3.72e-07, - "etude": 3.72e-07, - "exhaled": 3.72e-07, - "expanses": 3.72e-07, - "expansionist": 3.72e-07, - "expressionism": 3.72e-07, - "externalities": 3.72e-07, - "extractive": 3.72e-07, - "extrovert": 3.72e-07, - "fabius": 3.72e-07, - "faints": 3.72e-07, - "fata": 3.72e-07, - "feeney": 3.72e-07, - "fendi": 3.72e-07, - "fics": 3.72e-07, - "figment": 3.72e-07, - "firmament": 3.72e-07, - "fleck": 3.72e-07, - "flipside": 3.72e-07, - "floodwaters": 3.72e-07, - "floundering": 3.72e-07, - "fondant": 3.72e-07, - "foolhardy": 3.72e-07, - "fortaleza": 3.72e-07, - "fossa": 3.72e-07, - "fredo": 3.72e-07, - "freeware": 3.72e-07, - "furrow": 3.72e-07, - "gaffer": 3.72e-07, - "gaiety": 3.72e-07, - "galleon": 3.72e-07, - "gama": 3.72e-07, - "garnier": 3.72e-07, - "gauguin": 3.72e-07, - "geico": 3.72e-07, - "geist": 3.72e-07, - "generically": 3.72e-07, - "genitive": 3.72e-07, - "geoscience": 3.72e-07, - "girders": 3.72e-07, - "giveth": 3.72e-07, - "glenelg": 3.72e-07, - "globalized": 3.72e-07, - "glycerol": 3.72e-07, - "glycoprotein": 3.72e-07, - "godolphin": 3.72e-07, - "gooding": 3.72e-07, - "granary": 3.72e-07, - "graveyards": 3.72e-07, - "gravitas": 3.72e-07, - "greenback": 3.72e-07, - "gregs": 3.72e-07, - "grenfell": 3.72e-07, - "grieves": 3.72e-07, - "grimly": 3.72e-07, - "grooved": 3.72e-07, - "grosses": 3.72e-07, - "grownups": 3.72e-07, - "gutless": 3.72e-07, - "hak": 3.72e-07, - "hanes": 3.72e-07, - "harrods": 3.72e-07, - "hayashi": 3.72e-07, - "haywire": 3.72e-07, - "heaney": 3.72e-07, - "hendrik": 3.72e-07, - "heredity": 3.72e-07, - "hermosa": 3.72e-07, - "hibernating": 3.72e-07, - "highbury": 3.72e-07, - "hing": 3.72e-07, - "hobbyist": 3.72e-07, - "hocus": 3.72e-07, - "hollins": 3.72e-07, - "horvath": 3.72e-07, - "hosea": 3.72e-07, - "hsien": 3.72e-07, - "hymen": 3.72e-07, - "ices": 1.58e-07, - "idgaf": 3.72e-07, - "impairs": 3.72e-07, - "inaccurately": 3.72e-07, - "inadequacies": 3.72e-07, - "inaugurate": 3.72e-07, - "inching": 3.72e-07, - "inexhaustible": 3.72e-07, - "inexorable": 3.72e-07, - "inferring": 3.72e-07, - "infinitive": 3.72e-07, - "ingots": 3.72e-07, - "inoculated": 3.72e-07, - "inoue": 3.72e-07, - "instinctual": 3.72e-07, - "intangibles": 3.72e-07, - "intersected": 3.72e-07, - "iowas": 3.72e-07, - "irena": 3.72e-07, - "irfan": 3.72e-07, - "irregularity": 3.72e-07, - "irv": 3.72e-07, - "isco": 3.72e-07, - "islams": 3.72e-07, - "issac": 3.72e-07, - "janeway": 3.72e-07, - "jaye": 3.72e-07, - "jepsen": 3.72e-07, - "jessi": 3.72e-07, - "jogged": 3.72e-07, - "juli": 3.72e-07, - "kamloops": 3.72e-07, - "kandy": 3.72e-07, - "kaoru": 3.72e-07, - "kazuo": 3.72e-07, - "kempton": 3.72e-07, - "kens": 1.15e-07, - "kenilworth": 3.72e-07, - "khun": 3.72e-07, - "knead": 3.72e-07, - "kno": 3.72e-07, - "kop": 3.72e-07, - "landmines": 3.72e-07, - "laney": 3.72e-07, - "lanza": 3.72e-07, - "larrys": 3.72e-07, - "latinas": 3.72e-07, - "latour": 3.72e-07, - "lav": 3.72e-07, - "leapfrog": 3.72e-07, - "lemur": 3.72e-07, - "leyton": 3.72e-07, - "lieut": 3.72e-07, - "liken": 3.72e-07, - "linker": 3.72e-07, - "lismore": 3.72e-07, - "littlefield": 3.72e-07, - "loons": 3.72e-07, - "lovemaking": 3.72e-07, - "lovren": 3.72e-07, - "lugging": 3.72e-07, - "lululemon": 3.72e-07, - "lumens": 3.72e-07, - "lurked": 3.72e-07, - "magnetically": 3.72e-07, - "magnetite": 3.72e-07, - "malcom": 3.72e-07, - "malfunctioned": 3.72e-07, - "malo": 3.72e-07, - "mance": 3.72e-07, - "maneuvered": 3.72e-07, - "mappings": 3.72e-07, - "marauder": 3.72e-07, - "maribor": 3.72e-07, - "marksmanship": 3.72e-07, - "masood": 3.72e-07, - "masterfully": 3.72e-07, - "maurizio": 3.72e-07, - "mawr": 3.72e-07, - "maximising": 3.72e-07, - "mcenroe": 3.72e-07, - "mcmurdo": 3.72e-07, - "meath": 3.72e-07, - "merv": 3.72e-07, - "metalcore": 3.72e-07, - "metastases": 3.72e-07, - "meu": 3.72e-07, - "militarization": 3.72e-07, - "minimization": 3.72e-07, - "missa": 3.72e-07, - "mitchel": 3.72e-07, - "mitral": 3.72e-07, - "montmartre": 3.72e-07, - "morata": 3.72e-07, - "moribund": 3.72e-07, - "mortensen": 3.72e-07, - "mose": 3.72e-07, - "muda": 3.72e-07, - "mulatto": 3.72e-07, - "multicast": 3.72e-07, - "mumbo": 3.72e-07, - "musicianship": 3.72e-07, - "napster": 3.72e-07, - "narco": 3.72e-07, - "nci": 3.72e-07, - "needlework": 3.72e-07, - "nematode": 3.72e-07, - "neurosis": 3.72e-07, - "nevins": 3.72e-07, - "newhouse": 3.72e-07, - "newlywed": 3.72e-07, - "nicolson": 3.72e-07, - "nicosia": 3.72e-07, - "nominative": 3.72e-07, - "nono": 3.72e-07, - "northland": 3.72e-07, - "nougat": 3.72e-07, - "npt": 3.72e-07, - "nss": 3.72e-07, - "nullification": 3.72e-07, - "numeracy": 3.72e-07, - "nuptial": 3.72e-07, - "oban": 3.72e-07, - "obligate": 3.72e-07, - "obstetric": 3.72e-07, - "octaves": 3.72e-07, - "odeon": 3.72e-07, - "okanagan": 3.72e-07, - "oldfield": 3.72e-07, - "olsson": 3.72e-07, - "oppressing": 3.72e-07, - "outerwear": 3.72e-07, - "outflows": 3.72e-07, - "overdoing": 3.72e-07, - "overhauling": 3.72e-07, - "overwhelms": 3.72e-07, - "ows": 3.72e-07, - "oxon": 3.72e-07, - "pacification": 3.72e-07, - "palme": 3.72e-07, - "palos": 3.72e-07, - "paradis": 3.72e-07, - "parlay": 3.72e-07, - "penalised": 3.72e-07, - "peony": 3.72e-07, - "perceptible": 3.72e-07, - "perches": 3.72e-07, - "perinatal": 3.72e-07, - "permanente": 3.72e-07, - "personalization": 3.72e-07, - "persson": 3.72e-07, - "perusing": 3.72e-07, - "pester": 3.72e-07, - "petey": 3.72e-07, - "phonetics": 3.72e-07, - "piet": 3.72e-07, - "pika": 3.72e-07, - "pittsburghs": 3.72e-07, - "plodding": 3.72e-07, - "pluralistic": 3.72e-07, - "pocus": 3.72e-07, - "poetical": 3.72e-07, - "poltergeist": 3.72e-07, - "ponders": 3.72e-07, - "poops": 3.72e-07, - "potro": 3.72e-07, - "pounced": 3.72e-07, - "powerplant": 3.72e-07, - "preorders": 3.72e-07, - "printmaking": 3.72e-07, - "promissory": 3.72e-07, - "pruned": 3.72e-07, - "publ": 3.72e-07, - "pushers": 3.72e-07, - "pyke": 3.72e-07, - "pythagorean": 3.72e-07, - "qualitatively": 3.72e-07, - "quant": 3.72e-07, - "quinnipiac": 3.72e-07, - "ragtime": 3.72e-07, - "rawlins": 3.72e-07, - "rba": 3.72e-07, - "reassures": 3.72e-07, - "rebar": 3.72e-07, - "recliner": 3.72e-07, - "reconfigure": 3.72e-07, - "recreations": 3.72e-07, - "redemptive": 3.72e-07, - "redevelop": 3.72e-07, - "redwoods": 3.72e-07, - "refuelling": 3.72e-07, - "refurbish": 3.72e-07, - "reimagining": 3.72e-07, - "remodelling": 3.72e-07, - "remoteness": 3.72e-07, - "resonances": 3.72e-07, - "resonating": 3.72e-07, - "retold": 3.72e-07, - "retry": 3.72e-07, - "rhesus": 3.72e-07, - "rickard": 3.72e-07, - "ricoh": 3.72e-07, - "ridgway": 3.72e-07, - "riesling": 3.72e-07, - "rikki": 3.72e-07, - "rosenbaum": 3.72e-07, - "royalists": 3.72e-07, - "rudyard": 3.72e-07, - "smores": 7.41e-08, - "sacco": 3.72e-07, - "sadism": 3.72e-07, - "sagar": 3.72e-07, - "saki": 3.72e-07, - "salicylic": 3.72e-07, - "sandringham": 3.72e-07, - "sanitized": 3.72e-07, - "sarandon": 3.72e-07, - "saturate": 3.72e-07, - "schatz": 3.72e-07, - "scipio": 3.72e-07, - "scrupulous": 3.72e-07, - "seagate": 3.72e-07, - "sealer": 3.72e-07, - "sectarianism": 3.72e-07, - "semicircular": 3.72e-07, - "sez": 3.72e-07, - "shana": 3.72e-07, - "shashi": 3.72e-07, - "sheri": 3.72e-07, - "shootin": 3.72e-07, - "shortcoming": 3.72e-07, - "showmanship": 3.72e-07, - "sids": 1.58e-07, - "sifted": 3.72e-07, - "skydive": 3.72e-07, - "sleds": 3.72e-07, - "smock": 3.72e-07, - "smudged": 3.72e-07, - "sna": 3.72e-07, - "sniffs": 3.72e-07, - "snuffed": 3.72e-07, - "soca": 3.72e-07, - "socratic": 3.72e-07, - "solute": 3.72e-07, - "sombrero": 3.72e-07, - "sommers": 3.72e-07, - "souths": 3.02e-07, - "southerner": 3.72e-07, - "southpaw": 3.72e-07, - "specializations": 3.72e-07, - "sprayer": 3.72e-07, - "squirts": 3.72e-07, - "stags": 3.72e-07, - "stansted": 3.72e-07, - "staph": 3.72e-07, - "starchy": 3.72e-07, - "statuary": 3.72e-07, - "stereoscopic": 3.72e-07, - "stil": 3.72e-07, - "stoneware": 3.72e-07, - "stover": 3.72e-07, - "subreddit": 3.72e-07, - "suffused": 3.72e-07, - "svalbard": 3.72e-07, - "symbiote": 3.72e-07, - "symons": 3.72e-07, - "synthesizing": 3.72e-07, - "systematics": 3.72e-07, - "tactician": 3.72e-07, - "tah": 3.72e-07, - "tasers": 3.72e-07, - "tassels": 3.72e-07, - "tavistock": 3.72e-07, - "tdi": 3.72e-07, - "testaments": 3.72e-07, - "theon": 3.72e-07, - "thicknesses": 3.72e-07, - "thins": 3.72e-07, - "tiago": 3.72e-07, - "tidbit": 3.72e-07, - "tik": 3.72e-07, - "tobe": 3.72e-07, - "toma": 3.72e-07, - "torpedoed": 3.72e-07, - "torturous": 3.72e-07, - "torus": 3.72e-07, - "toth": 3.72e-07, - "touristy": 3.72e-07, - "transceiver": 3.72e-07, - "transcending": 3.72e-07, - "transmutation": 3.72e-07, - "ttip": 3.72e-07, - "turntables": 3.72e-07, - "twitchy": 3.72e-07, - "tyrrell": 3.72e-07, - "ufa": 3.72e-07, - "uhd": 3.72e-07, - "ultimo": 3.72e-07, - "unassisted": 3.72e-07, - "undercutting": 3.72e-07, - "undergarments": 3.72e-07, - "undertale": 3.72e-07, - "unranked": 3.72e-07, - "unsatisfying": 3.72e-07, - "unsophisticated": 3.72e-07, - "unspoiled": 3.72e-07, - "uriah": 3.72e-07, - "usm": 3.72e-07, - "vaca": 3.72e-07, - "veneto": 3.72e-07, - "verifies": 3.72e-07, - "vermillion": 3.72e-07, - "vh": 3.72e-07, - "vibrators": 3.72e-07, - "vinod": 3.72e-07, - "vitriolic": 3.72e-07, - "voight": 3.72e-07, - "volleys": 3.72e-07, - "wahoo": 3.72e-07, - "watercraft": 3.72e-07, - "waterlogged": 3.72e-07, - "whacking": 3.72e-07, - "whalen": 3.72e-07, - "whiteman": 3.72e-07, - "winemakers": 3.72e-07, - "wiretaps": 3.72e-07, - "wisteria": 3.72e-07, - "wordless": 3.72e-07, - "wyeth": 3.72e-07, - "wyo": 3.72e-07, - "yalta": 3.72e-07, - "yazidi": 3.72e-07, - "yiu": 3.72e-07, - "yp": 3.72e-07, - "yuh": 3.72e-07, - "zillow": 3.72e-07, - "zimbabwes": 3.72e-07, - "zippers": 3.72e-07, - "zoya": 3.72e-07, - "abetted": 3.63e-07, - "abit": 3.63e-07, - "abstracting": 3.63e-07, - "acb": 3.63e-07, - "actuated": 3.63e-07, - "addled": 3.63e-07, - "adil": 3.63e-07, - "aeneas": 3.63e-07, - "afs": 3.63e-07, - "aftershave": 3.63e-07, - "aiko": 3.63e-07, - "airdrop": 3.63e-07, - "akram": 3.63e-07, - "alarmist": 3.63e-07, - "althea": 3.63e-07, - "amari": 3.63e-07, - "ameliorate": 3.63e-07, - "americanism": 3.63e-07, - "anak": 3.63e-07, - "anderlecht": 3.63e-07, - "anemone": 3.63e-07, - "angell": 3.63e-07, - "antifreeze": 3.63e-07, - "arco": 3.63e-07, - "artem": 3.63e-07, - "artis": 3.63e-07, - "asinine": 3.63e-07, - "astrologers": 3.63e-07, - "authorising": 3.63e-07, - "autocad": 3.63e-07, - "babysitters": 6.61e-08, - "backyards": 3.63e-07, - "bails": 3.63e-07, - "bamba": 3.63e-07, - "bankrupted": 3.63e-07, - "barksdale": 3.63e-07, - "barrios": 3.63e-07, - "baumann": 3.63e-07, - "bawdy": 3.63e-07, - "beaut": 3.63e-07, - "becuase": 3.63e-07, - "befriending": 3.63e-07, - "begum": 3.63e-07, - "beijings": 3.63e-07, - "belfry": 3.63e-07, - "beloit": 3.63e-07, - "bemused": 3.63e-07, - "berating": 3.63e-07, - "berkowitz": 3.63e-07, - "bettys": 5.25e-08, - "bgs": 7.59e-08, - "bhagat": 3.63e-07, - "bianco": 3.63e-07, - "bicker": 3.63e-07, - "bicyclists": 3.63e-07, - "blackbeard": 3.63e-07, - "blitzkrieg": 3.63e-07, - "boozer": 3.63e-07, - "bossing": 3.63e-07, - "brabham": 3.63e-07, - "bradleys": 6.03e-08, - "bramble": 3.63e-07, - "bremer": 3.63e-07, - "bric": 3.63e-07, - "brics": 3.63e-07, - "bruni": 3.63e-07, - "bryans": 8.32e-08, - "bsb": 3.63e-07, - "burnished": 3.63e-07, - "bursaries": 3.63e-07, - "butchery": 3.63e-07, - "cala": 3.63e-07, - "calloway": 3.63e-07, - "candlesticks": 3.63e-07, - "carbonyl": 3.63e-07, - "cardenas": 3.63e-07, - "cardigans": 3.63e-07, - "catty": 3.63e-07, - "cavalli": 3.63e-07, - "ccl": 3.63e-07, - "cfd": 3.63e-07, - "charlize": 3.63e-07, - "chewie": 3.63e-07, - "chittagong": 3.63e-07, - "cinque": 3.63e-07, - "claustrophobia": 3.63e-07, - "cleaved": 3.63e-07, - "coleraine": 3.63e-07, - "computationally": 3.63e-07, - "concurrence": 3.63e-07, - "conscripted": 3.63e-07, - "conspiratorial": 3.63e-07, - "cookin": 3.63e-07, - "cornucopia": 3.63e-07, - "corvettes": 3.63e-07, - "cotswold": 3.63e-07, - "covariance": 3.63e-07, - "cowper": 3.63e-07, - "crabb": 3.63e-07, - "creepiest": 3.63e-07, - "crustacean": 3.63e-07, - "ctf": 3.63e-07, - "cuny": 3.63e-07, - "curia": 3.63e-07, - "currys": 1.7e-07, - "curtailing": 3.63e-07, - "cybermen": 3.63e-07, - "cyborgs": 3.63e-07, - "daffodil": 3.63e-07, - "dangled": 3.63e-07, - "darrin": 3.63e-07, - "debriefing": 3.63e-07, - "debutant": 3.63e-07, - "decorators": 3.63e-07, - "delineate": 3.63e-07, - "demure": 3.63e-07, - "depresses": 3.63e-07, - "descendents": 3.63e-07, - "detested": 3.63e-07, - "dethroned": 3.63e-07, - "dionysius": 3.63e-07, - "disavowed": 3.63e-07, - "discerned": 3.63e-07, - "disembarked": 3.63e-07, - "disinterest": 3.63e-07, - "dissented": 3.63e-07, - "dissuaded": 3.63e-07, - "dogwood": 3.63e-07, - "domiciled": 3.63e-07, - "dornan": 3.63e-07, - "dripped": 3.63e-07, - "dustbin": 3.63e-07, - "dutchess": 3.63e-07, - "edgewood": 3.63e-07, - "eevee": 3.63e-07, - "efe": 3.63e-07, - "eisner": 3.63e-07, - "electrophoresis": 3.63e-07, - "eliciting": 3.63e-07, - "elicits": 3.63e-07, - "ello": 3.63e-07, - "embalming": 3.63e-07, - "embezzled": 3.63e-07, - "encyclopedic": 3.63e-07, - "enos": 8.71e-08, - "entrees": 3.63e-07, - "epistemic": 3.63e-07, - "epub": 3.63e-07, - "estrangement": 3.63e-07, - "ethnology": 3.63e-07, - "etoo": 3.63e-07, - "evaporating": 3.63e-07, - "extenuating": 3.63e-07, - "facilitys": 3.63e-07, - "fallible": 3.63e-07, - "fandoms": 3.63e-07, - "farhan": 3.63e-07, - "fars": 3.63e-07, - "fenner": 3.63e-07, - "fides": 3.63e-07, - "filigree": 3.63e-07, - "fincher": 3.63e-07, - "firings": 3.63e-07, - "fissile": 3.63e-07, - "flagg": 3.63e-07, - "flaunts": 3.63e-07, - "fleischer": 3.63e-07, - "forking": 3.63e-07, - "freefall": 3.63e-07, - "frigging": 3.63e-07, - "fujifilm": 3.63e-07, - "furtherance": 3.63e-07, - "futon": 3.63e-07, - "gabor": 3.63e-07, - "gabriele": 3.63e-07, - "gangland": 3.63e-07, - "gating": 3.63e-07, - "gauthier": 3.63e-07, - "gaynor": 3.63e-07, - "geffen": 3.63e-07, - "geographer": 3.63e-07, - "georgette": 3.63e-07, - "gerda": 3.63e-07, - "gippsland": 3.63e-07, - "gisele": 3.63e-07, - "giuliano": 3.63e-07, - "glabrous": 3.63e-07, - "globo": 3.63e-07, - "gloved": 3.63e-07, - "gnaw": 3.63e-07, - "godson": 3.63e-07, - "grahame": 3.63e-07, - "grasse": 3.63e-07, - "gravelly": 3.63e-07, - "grazia": 3.63e-07, - "grenadines": 3.63e-07, - "grizzled": 3.63e-07, - "grosser": 3.63e-07, - "guetta": 3.63e-07, - "gusting": 3.63e-07, - "gwendolyn": 3.63e-07, - "haaretz": 3.63e-07, - "hagrid": 3.63e-07, - "halfpenny": 3.63e-07, - "hammam": 3.63e-07, - "harlequins": 3.63e-07, - "harmoniously": 3.63e-07, - "hasta": 3.63e-07, - "hayat": 3.63e-07, - "hazrat": 3.63e-07, - "headlamps": 3.63e-07, - "heartening": 3.63e-07, - "hebdo": 3.63e-07, - "hedged": 3.63e-07, - "hemi": 3.63e-07, - "hemmings": 3.63e-07, - "henny": 3.63e-07, - "hermetic": 3.63e-07, - "hessian": 3.63e-07, - "hic": 3.63e-07, - "hijacker": 3.63e-07, - "hippopotamus": 3.63e-07, - "hod": 3.63e-07, - "holla": 3.63e-07, - "homophobe": 3.63e-07, - "hondas": 1.17e-07, - "honeybees": 3.63e-07, - "honorees": 3.63e-07, - "hoopla": 3.63e-07, - "hora": 3.63e-07, - "hornsby": 3.63e-07, - "hrw": 3.63e-07, - "huffpost": 3.63e-07, - "hulme": 3.63e-07, - "humps": 3.63e-07, - "hurtling": 3.63e-07, - "hyperinflation": 3.63e-07, - "icj": 3.63e-07, - "identifications": 3.63e-07, - "ideologues": 3.63e-07, - "idiosyncrasies": 3.63e-07, - "imelda": 3.63e-07, - "immigrating": 3.63e-07, - "imperialists": 3.63e-07, - "imploded": 3.63e-07, - "incantation": 3.63e-07, - "infielder": 3.63e-07, - "infrastructural": 3.63e-07, - "inhumanity": 3.63e-07, - "inigo": 3.63e-07, - "initialization": 3.63e-07, - "inoffensive": 3.63e-07, - "inscrutable": 3.63e-07, - "intercede": 3.63e-07, - "internals": 3.63e-07, - "internationalization": 3.63e-07, - "irrationally": 3.63e-07, - "irrepressible": 3.63e-07, - "isha": 3.63e-07, - "ishida": 3.63e-07, - "isr": 3.63e-07, - "ith": 3.63e-07, - "ivar": 3.63e-07, - "jalapeno": 3.63e-07, - "joinery": 3.63e-07, - "jove": 3.63e-07, - "kaboom": 3.63e-07, - "katies": 3.63e-07, - "kaylee": 3.63e-07, - "kennys": 3.63e-07, - "kents": 1.17e-07, - "keswick": 3.63e-07, - "kettles": 5.25e-08, - "kilburn": 3.63e-07, - "knitwear": 3.63e-07, - "knowledgable": 3.63e-07, - "kompany": 3.63e-07, - "koscielny": 3.63e-07, - "kundalini": 3.63e-07, - "lally": 3.63e-07, - "laporte": 3.63e-07, - "latching": 3.63e-07, - "laver": 3.63e-07, - "lebanons": 3.63e-07, - "lel": 3.63e-07, - "leninism": 3.63e-07, - "liams": 3.63e-07, - "lichens": 3.63e-07, - "lithograph": 3.63e-07, - "lockup": 3.63e-07, - "lope": 3.63e-07, - "lorain": 3.63e-07, - "loring": 3.63e-07, - "lotr": 3.63e-07, - "louboutin": 3.63e-07, - "lovebirds": 3.63e-07, - "lsc": 3.63e-07, - "lucent": 3.63e-07, - "ludacris": 3.63e-07, - "lyell": 3.63e-07, - "macomb": 3.63e-07, - "madurai": 3.63e-07, - "margherita": 3.63e-07, - "marl": 3.63e-07, - "marne": 3.63e-07, - "marveled": 3.63e-07, - "matias": 3.63e-07, - "maxillary": 3.63e-07, - "mccluskey": 3.63e-07, - "mcmullen": 3.63e-07, - "meiosis": 3.63e-07, - "mela": 3.63e-07, - "mensch": 3.63e-07, - "menzel": 3.63e-07, - "merkels": 3.63e-07, - "messin": 3.63e-07, - "metacritic": 3.63e-07, - "meted": 3.63e-07, - "mgs": 8.13e-08, - "miroslav": 3.63e-07, - "misadventures": 3.63e-07, - "misconstrued": 3.63e-07, - "miser": 3.63e-07, - "mises": 3.63e-07, - "misreading": 3.63e-07, - "mizzou": 3.63e-07, - "mln": 3.63e-07, - "mmp": 3.63e-07, - "mockup": 3.63e-07, - "modena": 3.63e-07, - "monogatari": 3.63e-07, - "montaigne": 3.63e-07, - "montanas": 3.63e-07, - "moog": 3.63e-07, - "morison": 3.63e-07, - "moslem": 3.63e-07, - "mpaa": 3.63e-07, - "mpi": 3.63e-07, - "myopia": 3.63e-07, - "myrrh": 3.63e-07, - "naidu": 3.63e-07, - "nakedness": 3.63e-07, - "nashs": 3.63e-07, - "nazir": 3.63e-07, - "negates": 3.63e-07, - "negros": 3.63e-07, - "neurologic": 3.63e-07, - "newsday": 3.63e-07, - "newsreel": 3.63e-07, - "nikos": 3.63e-07, - "nitrite": 3.63e-07, - "nominates": 3.63e-07, - "npl": 3.63e-07, - "nrs": 3.63e-07, - "obfuscation": 3.63e-07, - "ome": 3.63e-07, - "omi": 3.63e-07, - "osceola": 3.63e-07, - "ozawa": 3.63e-07, - "pallas": 3.63e-07, - "pappy": 3.63e-07, - "parsonage": 3.63e-07, - "pecs": 3.63e-07, - "peebles": 3.63e-07, - "pees": 3.63e-07, - "peeta": 3.63e-07, - "pelle": 3.63e-07, - "pentax": 3.63e-07, - "perfectionism": 3.63e-07, - "perforation": 3.63e-07, - "periodicity": 3.63e-07, - "personals": 3.63e-07, - "pettis": 3.63e-07, - "phenolic": 3.63e-07, - "phosphor": 3.63e-07, - "photonics": 3.63e-07, - "pierrot": 3.63e-07, - "pigtails": 3.63e-07, - "pistachios": 3.63e-07, - "platformer": 3.63e-07, - "plied": 3.63e-07, - "pll": 3.63e-07, - "ponta": 3.63e-07, - "pooper": 3.63e-07, - "poppa": 3.63e-07, - "porpoise": 3.63e-07, - "portmanteau": 3.63e-07, - "postural": 3.63e-07, - "ppa": 3.63e-07, - "prednisone": 3.63e-07, - "preordered": 3.63e-07, - "professes": 3.63e-07, - "prototypical": 3.63e-07, - "pseudoscience": 3.63e-07, - "puritanical": 3.63e-07, - "pushups": 3.63e-07, - "pyrite": 3.63e-07, - "quadrants": 3.63e-07, - "quayle": 3.63e-07, - "quitter": 3.63e-07, - "rafter": 3.63e-07, - "raisers": 3.63e-07, - "rationalist": 3.63e-07, - "rcc": 3.63e-07, - "redknapp": 3.63e-07, - "reedy": 3.63e-07, - "refreshes": 3.63e-07, - "refurbishing": 3.63e-07, - "registrants": 3.63e-07, - "relapsing": 3.63e-07, - "repudiation": 3.63e-07, - "reselling": 3.63e-07, - "retaken": 3.63e-07, - "retaking": 3.63e-07, - "revis": 3.63e-07, - "rhee": 3.63e-07, - "rheumatic": 3.63e-07, - "ridiculousness": 3.63e-07, - "rinks": 3.63e-07, - "roadkill": 3.63e-07, - "romana": 3.63e-07, - "rooks": 3.63e-07, - "rooneys": 3.63e-07, - "roque": 3.63e-07, - "rostrum": 3.63e-07, - "rothstein": 3.63e-07, - "rua": 3.63e-07, - "sagebrush": 3.63e-07, - "saheb": 3.63e-07, - "sajid": 3.63e-07, - "sakho": 3.63e-07, - "sanctification": 3.63e-07, - "sandhurst": 3.63e-07, - "sandstones": 3.63e-07, - "sanfl": 3.63e-07, - "sau": 3.63e-07, - "savin": 3.63e-07, - "scalloped": 3.63e-07, - "scalps": 3.63e-07, - "schuylkill": 3.63e-07, - "scudder": 3.63e-07, - "sdp": 3.63e-07, - "seager": 3.63e-07, - "sealant": 3.63e-07, - "seeped": 3.63e-07, - "segue": 3.63e-07, - "sequin": 3.63e-07, - "sevenfold": 3.63e-07, - "sforza": 3.63e-07, - "shackle": 3.63e-07, - "shapely": 3.63e-07, - "shellac": 3.63e-07, - "shoelaces": 3.63e-07, - "shutdowns": 3.63e-07, - "sidi": 3.63e-07, - "sif": 3.63e-07, - "skirted": 3.63e-07, - "sleepiness": 3.63e-07, - "slurp": 3.63e-07, - "soothes": 3.63e-07, - "soundness": 3.63e-07, - "spammed": 3.63e-07, - "spca": 3.63e-07, - "spotters": 3.63e-07, - "springbok": 3.63e-07, - "springboks": 3.63e-07, - "squealed": 3.63e-07, - "srinivas": 3.63e-07, - "starkly": 3.63e-07, - "stealthily": 3.63e-07, - "stilted": 3.63e-07, - "stooped": 3.63e-07, - "stuyvesant": 3.63e-07, - "suds": 3.63e-07, - "sumitomo": 3.63e-07, - "sunburst": 3.63e-07, - "supplant": 3.63e-07, - "sura": 3.63e-07, - "sweatshop": 3.63e-07, - "synthetics": 3.63e-07, - "tada": 3.63e-07, - "taf": 3.63e-07, - "talkies": 3.63e-07, - "tamales": 3.63e-07, - "tastefully": 3.63e-07, - "tbe": 3.63e-07, - "technica": 3.63e-07, - "technologys": 3.63e-07, - "teetering": 3.63e-07, - "telegraphed": 3.63e-07, - "timezone": 3.63e-07, - "tohoku": 3.63e-07, - "townsfolk": 3.63e-07, - "traci": 3.63e-07, - "trav": 3.63e-07, - "treasurers": 1.62e-07, - "trt": 3.63e-07, - "tryst": 3.63e-07, - "tubal": 3.63e-07, - "tuft": 3.63e-07, - "turpentine": 3.63e-07, - "twang": 3.63e-07, - "typesetting": 3.63e-07, - "uas": 5.62e-08, - "ucs": 8.13e-08, - "udaipur": 3.63e-07, - "ugandas": 3.63e-07, - "underpass": 3.63e-07, - "undeterred": 3.63e-07, - "unhappily": 3.63e-07, - "unoriginal": 3.63e-07, - "unpalatable": 3.63e-07, - "unwillingly": 3.63e-07, - "unwrap": 3.63e-07, - "unzipped": 3.63e-07, - "upwardly": 3.63e-07, - "usr": 3.63e-07, - "uwe": 3.63e-07, - "uyghur": 3.63e-07, - "vanadium": 3.63e-07, - "varian": 3.63e-07, - "verdes": 3.63e-07, - "verlander": 3.63e-07, - "vernal": 3.63e-07, - "vibrato": 3.63e-07, - "viewings": 3.63e-07, - "waifu": 3.63e-07, - "waitrose": 3.63e-07, - "wakeup": 3.63e-07, - "walleye": 3.63e-07, - "wallingford": 3.63e-07, - "warnock": 3.63e-07, - "watchlist": 3.63e-07, - "wawa": 3.63e-07, - "westerner": 3.63e-07, - "whimpering": 3.63e-07, - "whisker": 3.63e-07, - "whorl": 3.63e-07, - "wickedly": 3.63e-07, - "wilhelmina": 3.63e-07, - "willey": 3.63e-07, - "williamss": 3.63e-07, - "wordy": 3.63e-07, - "wove": 3.63e-07, - "wozniak": 3.63e-07, - "wraparound": 3.63e-07, - "yasser": 3.63e-07, - "yau": 3.63e-07, - "yul": 3.63e-07, - "zainab": 3.63e-07, - "zenit": 3.63e-07, - "abducting": 3.55e-07, - "abides": 3.55e-07, - "aboriginals": 3.55e-07, - "accelerometer": 3.55e-07, - "acrimonious": 3.55e-07, - "adelphi": 3.55e-07, - "adorning": 3.55e-07, - "adverb": 3.55e-07, - "afrika": 3.55e-07, - "agt": 3.55e-07, - "alc": 3.55e-07, - "algo": 3.55e-07, - "allardyce": 3.55e-07, - "almaty": 3.55e-07, - "amb": 3.55e-07, - "anarchic": 3.55e-07, - "arkady": 3.55e-07, - "arras": 3.55e-07, - "ashdown": 3.55e-07, - "ashoka": 3.55e-07, - "asta": 3.55e-07, - "attache": 3.55e-07, - "aurelia": 3.55e-07, - "avondale": 3.55e-07, - "backtracking": 3.55e-07, - "bahamian": 3.55e-07, - "bamako": 3.55e-07, - "bandy": 3.55e-07, - "barbosa": 3.55e-07, - "barnacle": 3.55e-07, - "barometric": 3.55e-07, - "barstow": 3.55e-07, - "bby": 3.55e-07, - "beamer": 3.55e-07, - "beguiling": 3.55e-07, - "bendy": 3.55e-07, - "benigno": 3.55e-07, - "berets": 3.55e-07, - "berrys": 3.55e-07, - "bestie": 3.55e-07, - "bevy": 3.55e-07, - "bfi": 3.55e-07, - "bfs": 2.45e-07, - "bidirectional": 3.55e-07, - "biltmore": 3.55e-07, - "bioengineering": 3.55e-07, - "blanked": 3.55e-07, - "blowin": 3.55e-07, - "bmg": 3.55e-07, - "bogan": 3.55e-07, - "bpi": 3.55e-07, - "braveheart": 3.55e-07, - "breastfed": 3.55e-07, - "brodsky": 3.55e-07, - "brompton": 3.55e-07, - "bronzed": 3.55e-07, - "brooklyns": 3.55e-07, - "brunettes": 3.55e-07, - "bunched": 3.55e-07, - "bureaucracies": 3.55e-07, - "burney": 3.55e-07, - "burwell": 3.55e-07, - "bushings": 3.55e-07, - "buzzards": 3.55e-07, - "calipers": 3.55e-07, - "cantwell": 3.55e-07, - "carboxylic": 3.55e-07, - "carrasco": 3.55e-07, - "cataloguing": 3.55e-07, - "cathcart": 3.55e-07, - "causa": 3.55e-07, - "centimetre": 3.55e-07, - "certifies": 3.55e-07, - "cgt": 3.55e-07, - "chambre": 3.55e-07, - "chaparral": 3.55e-07, - "chivalrous": 3.55e-07, - "christiana": 3.55e-07, - "christos": 1.29e-08, - "ciel": 3.55e-07, - "clarifications": 3.55e-07, - "clasps": 3.55e-07, - "clouding": 3.55e-07, - "cmu": 3.55e-07, - "cobbles": 3.55e-07, - "cobras": 7.08e-08, - "combatting": 3.55e-07, - "computerised": 3.55e-07, - "confiscating": 3.55e-07, - "conformal": 3.55e-07, - "conformist": 3.55e-07, - "contemptible": 3.55e-07, - "contorted": 3.55e-07, - "costanza": 3.55e-07, - "courant": 3.55e-07, - "cower": 3.55e-07, - "crackpot": 3.55e-07, - "crewed": 3.55e-07, - "crist": 3.55e-07, - "croat": 3.55e-07, - "crowther": 3.55e-07, - "crusted": 3.55e-07, - "cubby": 3.55e-07, - "culvert": 3.55e-07, - "cumshot": 3.55e-07, - "cutscenes": 3.55e-07, - "dalia": 3.55e-07, - "dav": 3.55e-07, - "daya": 3.55e-07, - "decibel": 3.55e-07, - "deconstructed": 3.55e-07, - "defensemen": 3.55e-07, - "dependability": 3.55e-07, - "deregulated": 3.55e-07, - "dereliction": 3.55e-07, - "diario": 3.55e-07, - "dikes": 3.55e-07, - "dimer": 3.55e-07, - "disables": 3.55e-07, - "disinfect": 3.55e-07, - "disregards": 3.55e-07, - "dissension": 3.55e-07, - "distributive": 3.55e-07, - "dlp": 3.55e-07, - "dominus": 3.55e-07, - "dotcom": 3.55e-07, - "dour": 3.55e-07, - "downie": 3.55e-07, - "dox": 3.55e-07, - "dozier": 3.55e-07, - "dragonflies": 3.55e-07, - "dumpsters": 3.55e-07, - "dundalk": 3.55e-07, - "earthworms": 3.55e-07, - "echr": 3.55e-07, - "efficacious": 3.55e-07, - "eft": 3.55e-07, - "ehhh": 3.55e-07, - "ejaculate": 3.55e-07, - "elec": 3.55e-07, - "electromechanical": 3.55e-07, - "embellish": 3.55e-07, - "endeared": 3.55e-07, - "entrails": 3.55e-07, - "equalised": 3.55e-07, - "equalling": 3.55e-07, - "eri": 3.55e-07, - "eroticism": 3.55e-07, - "eshop": 3.55e-07, - "espinoza": 3.55e-07, - "exacerbating": 3.55e-07, - "exaggerates": 3.55e-07, - "exhilaration": 3.55e-07, - "exon": 3.55e-07, - "exotics": 3.55e-07, - "extensible": 3.55e-07, - "extrapolation": 3.55e-07, - "falsify": 3.55e-07, - "farris": 3.55e-07, - "faulting": 3.55e-07, - "fco": 3.55e-07, - "fea": 3.55e-07, - "febrile": 3.55e-07, - "fenn": 3.55e-07, - "fim": 3.55e-07, - "flail": 3.55e-07, - "flaked": 3.55e-07, - "foh": 3.55e-07, - "fomo": 3.55e-07, - "fondling": 3.55e-07, - "fpl": 3.55e-07, - "franciscans": 3.55e-07, - "freakish": 3.55e-07, - "fredrick": 3.55e-07, - "freeform": 3.55e-07, - "freemans": 3.55e-07, - "fronds": 3.55e-07, - "fyodor": 3.55e-07, - "gadsden": 3.55e-07, - "gainsborough": 3.55e-07, - "galvanised": 3.55e-07, - "gameboy": 3.55e-07, - "garbo": 3.55e-07, - "gbr": 3.55e-07, - "gere": 3.55e-07, - "gerson": 3.55e-07, - "gestured": 3.55e-07, - "geysers": 3.55e-07, - "giovanna": 3.55e-07, - "glazer": 3.55e-07, - "goalscoring": 3.55e-07, - "gogol": 3.55e-07, - "goldschmidt": 3.55e-07, - "goldwyn": 3.55e-07, - "gossips": 3.55e-07, - "grandstanding": 3.55e-07, - "graphing": 3.55e-07, - "greenhill": 3.55e-07, - "grissom": 3.55e-07, - "groton": 3.55e-07, - "guadalcanal": 3.55e-07, - "guardsman": 3.55e-07, - "gunship": 3.55e-07, - "guttural": 3.55e-07, - "gyroscope": 3.55e-07, - "hackathon": 3.55e-07, - "hammy": 3.55e-07, - "handedness": 3.55e-07, - "handkerchiefs": 3.55e-07, - "handley": 3.55e-07, - "hangars": 3.55e-07, - "hardys": 1.2e-07, - "hartwell": 3.55e-07, - "heartstrings": 3.55e-07, - "hellcat": 3.55e-07, - "hellhole": 3.55e-07, - "hellman": 3.55e-07, - "helmholtz": 3.55e-07, - "herat": 3.55e-07, - "hiddleston": 3.55e-07, - "hiit": 3.55e-07, - "hillcrest": 3.55e-07, - "hoare": 3.55e-07, - "hofmann": 3.55e-07, - "hogans": 3.55e-07, - "hoke": 3.55e-07, - "hokies": 3.55e-07, - "holdin": 3.55e-07, - "holier": 3.55e-07, - "holtby": 3.55e-07, - "holton": 3.55e-07, - "hoodoo": 3.55e-07, - "horsham": 3.55e-07, - "hrh": 3.55e-07, - "hubbell": 3.55e-07, - "hummels": 3.55e-07, - "hygienist": 3.55e-07, - "hypertext": 3.55e-07, - "idolized": 3.55e-07, - "ilan": 3.55e-07, - "illegible": 3.55e-07, - "immunities": 3.55e-07, - "immunological": 3.55e-07, - "impertinent": 3.55e-07, - "incised": 3.55e-07, - "indefatigable": 3.55e-07, - "individualist": 3.55e-07, - "ingles": 3.55e-07, - "insinuated": 3.55e-07, - "instrumentalist": 3.55e-07, - "interbank": 3.55e-07, - "intravenously": 3.55e-07, - "investigational": 3.55e-07, - "iri": 3.55e-07, - "irrationality": 3.55e-07, - "jamil": 3.55e-07, - "jawed": 3.55e-07, - "jemma": 3.55e-07, - "jenks": 3.55e-07, - "jesu": 3.55e-07, - "jojos": 3.55e-07, - "jonson": 3.55e-07, - "juggler": 3.55e-07, - "kabbalah": 3.55e-07, - "kanter": 3.55e-07, - "kenai": 3.55e-07, - "kendricks": 1.7e-07, - "ket": 3.55e-07, - "kitkat": 3.55e-07, - "kovacs": 3.55e-07, - "krazy": 3.55e-07, - "kreme": 3.55e-07, - "ksa": 3.55e-07, - "labouring": 3.55e-07, - "ladyship": 3.55e-07, - "lagrangian": 3.55e-07, - "languish": 3.55e-07, - "larch": 3.55e-07, - "lathrop": 3.55e-07, - "lavished": 3.55e-07, - "leamington": 3.55e-07, - "leander": 3.55e-07, - "leggett": 3.55e-07, - "lemieux": 3.55e-07, - "likens": 3.55e-07, - "liliana": 3.55e-07, - "limiter": 3.55e-07, - "limousines": 3.55e-07, - "linearity": 3.55e-07, - "lineker": 3.55e-07, - "lita": 3.55e-07, - "lockyer": 3.55e-07, - "looker": 3.55e-07, - "lsa": 3.55e-07, - "madisons": 3.55e-07, - "magyar": 3.55e-07, - "mahone": 3.55e-07, - "malady": 3.55e-07, - "mame": 3.55e-07, - "mantua": 3.55e-07, - "marche": 3.55e-07, - "mastodon": 3.55e-07, - "matlock": 3.55e-07, - "mav": 3.55e-07, - "mccown": 3.55e-07, - "meditated": 3.55e-07, - "meritocracy": 3.55e-07, - "merriman": 3.55e-07, - "metformin": 3.55e-07, - "midler": 3.55e-07, - "midshipmen": 3.55e-07, - "midsize": 3.55e-07, - "milks": 1.12e-07, - "minima": 3.55e-07, - "miscellany": 3.55e-07, - "misdiagnosed": 3.55e-07, - "mish": 3.55e-07, - "moderne": 3.55e-07, - "monson": 3.55e-07, - "moravian": 3.55e-07, - "morell": 3.55e-07, - "mota": 3.55e-07, - "moxie": 3.55e-07, - "mpn": 3.55e-07, - "mra": 3.55e-07, - "multiplies": 3.55e-07, - "mur": 3.55e-07, - "murine": 3.55e-07, - "mvs": 3.55e-07, - "nala": 3.55e-07, - "nbcuniversal": 3.55e-07, - "ncp": 3.55e-07, - "necktie": 3.55e-07, - "necrotic": 3.55e-07, - "negating": 3.55e-07, - "negev": 3.55e-07, - "neko": 3.55e-07, - "neoprene": 3.55e-07, - "neuroscientists": 3.55e-07, - "neves": 3.55e-07, - "newham": 3.55e-07, - "newlands": 3.55e-07, - "newsome": 3.55e-07, - "nhc": 3.55e-07, - "nightcrawler": 3.55e-07, - "nightgown": 3.55e-07, - "nightshade": 3.55e-07, - "nizam": 3.55e-07, - "nodal": 3.55e-07, - "nonzero": 3.55e-07, - "noriega": 3.55e-07, - "normalised": 3.55e-07, - "nosey": 3.55e-07, - "nott": 3.55e-07, - "nub": 3.55e-07, - "nuer": 3.55e-07, - "nutritionally": 3.55e-07, - "ocallaghan": 3.55e-07, - "obstetricians": 3.55e-07, - "ocho": 3.55e-07, - "okafor": 3.55e-07, - "oleksandr": 3.55e-07, - "oper": 3.55e-07, - "orwells": 3.55e-07, - "oughta": 3.55e-07, - "outlooks": 3.55e-07, - "outmoded": 3.55e-07, - "overfishing": 3.55e-07, - "oxo": 3.55e-07, - "oxygenated": 3.55e-07, - "paddled": 3.55e-07, - "paneled": 3.55e-07, - "pantera": 3.55e-07, - "paraplegic": 3.55e-07, - "passerby": 3.55e-07, - "paulette": 3.55e-07, - "paulus": 3.55e-07, - "pecos": 3.55e-07, - "peds": 3.55e-07, - "pertussis": 3.55e-07, - "pettiness": 3.55e-07, - "peyote": 3.55e-07, - "pff": 3.55e-07, - "pgp": 3.55e-07, - "physiologist": 3.55e-07, - "pillowcase": 3.55e-07, - "pincus": 3.55e-07, - "plausibility": 3.55e-07, - "playfulness": 3.55e-07, - "playroom": 3.55e-07, - "pleural": 3.55e-07, - "pmqs": 3.55e-07, - "pratap": 3.55e-07, - "predominance": 3.55e-07, - "prefixed": 3.55e-07, - "prepayment": 3.55e-07, - "pringles": 3.55e-07, - "privatize": 3.55e-07, - "prolapse": 3.55e-07, - "pubmed": 3.55e-07, - "puebla": 3.55e-07, - "pura": 3.55e-07, - "pursuers": 3.55e-07, - "purveyor": 3.55e-07, - "quebecs": 3.55e-07, - "quinta": 3.55e-07, - "rabbitohs": 3.55e-07, - "racehorses": 3.55e-07, - "radii": 3.55e-07, - "raikkonen": 3.55e-07, - "rasmus": 3.55e-07, - "rathbone": 3.55e-07, - "ravines": 3.55e-07, - "readying": 3.55e-07, - "recalcitrant": 3.55e-07, - "recs": 3.55e-07, - "rectification": 3.55e-07, - "reddick": 3.55e-07, - "regretful": 3.55e-07, - "regrouped": 3.55e-07, - "reminiscence": 3.55e-07, - "reorganizing": 3.55e-07, - "repossessed": 3.55e-07, - "repulse": 3.55e-07, - "rerouted": 3.55e-07, - "resourcefulness": 3.55e-07, - "resto": 3.55e-07, - "rices": 7.76e-08, - "richman": 3.55e-07, - "rie": 3.55e-07, - "rigors": 3.55e-07, - "riptide": 3.55e-07, - "rivas": 3.55e-07, - "rocca": 3.55e-07, - "rolando": 3.55e-07, - "romancing": 3.55e-07, - "roti": 3.55e-07, - "rungs": 3.55e-07, - "rushdie": 3.55e-07, - "sah": 3.55e-07, - "salafi": 3.55e-07, - "sani": 3.55e-07, - "satanism": 3.55e-07, - "schell": 3.55e-07, - "screensaver": 3.55e-07, - "sdgs": 3.55e-07, - "seder": 3.55e-07, - "sek": 3.55e-07, - "selectable": 3.55e-07, - "selig": 3.55e-07, - "selwyn": 3.55e-07, - "semaphore": 3.55e-07, - "shae": 3.55e-07, - "shaheed": 3.55e-07, - "shailene": 3.55e-07, - "shames": 3.55e-07, - "shel": 3.55e-07, - "shermans": 1.2e-07, - "shiba": 3.55e-07, - "shipbuilders": 3.55e-07, - "shitter": 3.55e-07, - "shoebox": 3.55e-07, - "sicko": 3.55e-07, - "sima": 3.55e-07, - "siriusxm": 3.55e-07, - "skinheads": 3.55e-07, - "skinning": 3.55e-07, - "slighted": 3.55e-07, - "slumping": 3.55e-07, - "smithy": 3.55e-07, - "sneering": 3.55e-07, - "snooty": 3.55e-07, - "snotty": 3.55e-07, - "songbook": 3.55e-07, - "spake": 3.55e-07, - "sportscenter": 3.55e-07, - "squatter": 3.55e-07, - "ssm": 3.55e-07, - "stabilizes": 3.55e-07, - "stickler": 3.55e-07, - "stott": 3.55e-07, - "studys": 3.55e-07, - "subjunctive": 3.55e-07, - "subsist": 3.55e-07, - "subverting": 3.55e-07, - "sulk": 3.55e-07, - "sunspot": 3.55e-07, - "superboy": 3.55e-07, - "supercell": 3.55e-07, - "supermodels": 3.55e-07, - "susans": 5.62e-08, - "swathes": 3.55e-07, - "swinburne": 3.55e-07, - "taiji": 3.55e-07, - "taki": 3.55e-07, - "tali": 3.55e-07, - "talladega": 3.55e-07, - "tastic": 3.55e-07, - "tedium": 3.55e-07, - "theodora": 3.55e-07, - "thoughtfulness": 3.55e-07, - "thousandth": 3.55e-07, - "tilden": 3.55e-07, - "timeouts": 3.55e-07, - "tittle": 3.55e-07, - "toddy": 3.55e-07, - "tokyos": 3.55e-07, - "toleration": 3.55e-07, - "topsoil": 3.55e-07, - "tradeoffs": 3.55e-07, - "transposed": 3.55e-07, - "trawlers": 3.55e-07, - "trembled": 3.55e-07, - "tremont": 3.55e-07, - "triumvirate": 3.55e-07, - "troubleshoot": 3.55e-07, - "trudeaus": 3.55e-07, - "tubman": 3.55e-07, - "turds": 3.55e-07, - "twc": 3.55e-07, - "tweeters": 3.55e-07, - "undercard": 3.55e-07, - "underwrite": 3.55e-07, - "undesired": 3.55e-07, - "unfurled": 3.55e-07, - "unimpressive": 3.55e-07, - "uninspiring": 3.55e-07, - "unraveled": 3.55e-07, - "unscripted": 3.55e-07, - "unser": 3.55e-07, - "unwrapped": 3.55e-07, - "unzip": 3.55e-07, - "upham": 3.55e-07, - "vallarta": 3.55e-07, - "vander": 3.55e-07, - "veering": 3.55e-07, - "vellum": 3.55e-07, - "ves": 3.55e-07, - "visualise": 3.55e-07, - "vlogs": 3.55e-07, - "voce": 3.55e-07, - "voorhees": 3.55e-07, - "votive": 3.55e-07, - "wannabes": 3.55e-07, - "warners": 1.91e-07, - "wengers": 3.55e-07, - "wetsuit": 3.55e-07, - "whiskies": 3.55e-07, - "whitten": 3.55e-07, - "wicklow": 3.55e-07, - "wilding": 3.55e-07, - "winslet": 3.55e-07, - "wolcott": 3.55e-07, - "writs": 3.55e-07, - "wyn": 3.55e-07, - "xiaoping": 3.55e-07, - "yarmouk": 3.55e-07, - "zorn": 3.55e-07, - "abdallah": 3.47e-07, - "abut": 3.47e-07, - "accumulations": 3.47e-07, - "adeline": 3.47e-07, - "adjudicated": 3.47e-07, - "adulterous": 3.47e-07, - "aerodrome": 3.47e-07, - "aftercare": 3.47e-07, - "agni": 3.47e-07, - "agrippa": 3.47e-07, - "ahhhhh": 3.47e-07, - "alliteration": 3.47e-07, - "allyn": 3.47e-07, - "altos": 3.47e-07, - "amandas": 3.47e-07, - "ambushes": 3.47e-07, - "amie": 3.47e-07, - "amiens": 3.47e-07, - "anheuser": 3.47e-07, - "anker": 3.47e-07, - "antimony": 3.47e-07, - "antonios": 3.47e-07, - "appraise": 3.47e-07, - "archbishops": 1.26e-07, - "arians": 3.47e-07, - "armature": 3.47e-07, - "attests": 3.47e-07, - "autobots": 3.47e-07, - "axa": 3.47e-07, - "axiomatic": 3.47e-07, - "backlit": 3.47e-07, - "ballantyne": 3.47e-07, - "ballsy": 3.47e-07, - "barbarous": 3.47e-07, - "bardot": 3.47e-07, - "baroda": 3.47e-07, - "baru": 3.47e-07, - "bashful": 3.47e-07, - "basildon": 3.47e-07, - "batik": 3.47e-07, - "battlements": 3.47e-07, - "bayless": 3.47e-07, - "beekeeper": 3.47e-07, - "befell": 3.47e-07, - "bettered": 3.47e-07, - "bettina": 3.47e-07, - "bewitching": 3.47e-07, - "bhushan": 3.47e-07, - "bibby": 3.47e-07, - "biographers": 3.47e-07, - "biomechanics": 3.47e-07, - "blanch": 3.47e-07, - "blindside": 3.47e-07, - "bloor": 3.47e-07, - "blotting": 3.47e-07, - "blunted": 3.47e-07, - "bookmarked": 3.47e-07, - "borat": 3.47e-07, - "borehole": 3.47e-07, - "bosque": 3.47e-07, - "bouillon": 3.47e-07, - "bourdain": 3.47e-07, - "bpl": 3.47e-07, - "bracts": 3.47e-07, - "bridgette": 3.47e-07, - "brockton": 3.47e-07, - "bryants": 3.47e-07, - "btr": 3.47e-07, - "bubbled": 3.47e-07, - "buggies": 3.47e-07, - "burnie": 3.47e-07, - "burnin": 3.47e-07, - "cahoots": 3.47e-07, - "cait": 3.47e-07, - "caius": 3.47e-07, - "calender": 3.47e-07, - "capitulated": 3.47e-07, - "caputo": 3.47e-07, - "casein": 3.47e-07, - "caskets": 3.47e-07, - "casted": 3.47e-07, - "categorizing": 3.47e-07, - "cftc": 3.47e-07, - "chandlers": 9.12e-08, - "chartres": 3.47e-07, - "chiller": 3.47e-07, - "chlorinated": 3.47e-07, - "clubbed": 3.47e-07, - "clyne": 3.47e-07, - "cmo": 3.47e-07, - "coachman": 3.47e-07, - "cocking": 3.47e-07, - "collides": 3.47e-07, - "collieries": 3.47e-07, - "colloquium": 3.47e-07, - "colossians": 3.47e-07, - "conger": 3.47e-07, - "coniferous": 3.47e-07, - "consciences": 3.47e-07, - "copulation": 3.47e-07, - "coq": 3.47e-07, - "coronet": 3.47e-07, - "cort": 3.47e-07, - "cortisone": 3.47e-07, - "coun": 3.47e-07, - "councilors": 3.47e-07, - "cradled": 3.47e-07, - "craggy": 3.47e-07, - "creatinine": 3.47e-07, - "cressida": 3.47e-07, - "cripples": 3.47e-07, - "cronyism": 3.47e-07, - "crp": 3.47e-07, - "cubicles": 3.47e-07, - "curlers": 3.47e-07, - "cwa": 3.47e-07, - "cynically": 3.47e-07, - "darden": 3.47e-07, - "darley": 3.47e-07, - "deadlift": 3.47e-07, - "delineation": 3.47e-07, - "demolitions": 3.47e-07, - "denture": 3.47e-07, - "deon": 3.47e-07, - "dera": 3.47e-07, - "desirous": 3.47e-07, - "deviating": 3.47e-07, - "dinars": 3.47e-07, - "disheveled": 3.47e-07, - "dispatchers": 3.47e-07, - "dissapointed": 3.47e-07, - "dissipates": 3.47e-07, - "diverts": 3.47e-07, - "divi": 3.47e-07, - "docu": 3.47e-07, - "domo": 3.47e-07, - "dovey": 3.47e-07, - "draftsman": 3.47e-07, - "dribbles": 3.47e-07, - "drinkwater": 3.47e-07, - "ducklings": 3.47e-07, - "dugdale": 3.47e-07, - "dusseldorf": 3.47e-07, - "eads": 3.47e-07, - "earthbound": 3.47e-07, - "eigenvalues": 3.47e-07, - "einer": 3.47e-07, - "emea": 3.47e-07, - "emmons": 3.47e-07, - "emoticons": 3.47e-07, - "enda": 3.47e-07, - "escapist": 3.47e-07, - "esso": 3.47e-07, - "eula": 3.47e-07, - "evert": 3.47e-07, - "ewa": 3.47e-07, - "exc": 3.47e-07, - "expletive": 3.47e-07, - "fain": 3.47e-07, - "fairtrade": 3.47e-07, - "fashionista": 3.47e-07, - "faucets": 3.47e-07, - "favela": 3.47e-07, - "ferried": 3.47e-07, - "ferrying": 3.47e-07, - "fertilisation": 3.47e-07, - "festivity": 3.47e-07, - "ffp": 3.47e-07, - "fining": 3.47e-07, - "flatmate": 3.47e-07, - "fondest": 3.47e-07, - "foodservice": 3.47e-07, - "foto": 3.47e-07, - "foxtel": 3.47e-07, - "framers": 3.47e-07, - "freedmen": 3.47e-07, - "freehand": 3.47e-07, - "freighters": 3.47e-07, - "fullbacks": 3.47e-07, - "funder": 3.47e-07, - "fussed": 3.47e-07, - "gainer": 3.47e-07, - "gallerys": 3.47e-07, - "gannett": 3.47e-07, - "ganz": 3.47e-07, - "gape": 3.47e-07, - "gdc": 3.47e-07, - "geraint": 3.47e-07, - "gigabytes": 3.47e-07, - "giorno": 3.47e-07, - "glitters": 3.47e-07, - "gmb": 3.47e-07, - "gobi": 3.47e-07, - "golovkin": 3.47e-07, - "goodison": 3.47e-07, - "grabber": 3.47e-07, - "granulated": 3.47e-07, - "gravesend": 3.47e-07, - "grenadier": 3.47e-07, - "grisham": 3.47e-07, - "grosjean": 3.47e-07, - "grouper": 3.47e-07, - "gustavus": 3.47e-07, - "gyrus": 3.47e-07, - "hacksaw": 3.47e-07, - "hager": 3.47e-07, - "haile": 3.47e-07, - "halide": 3.47e-07, - "handbrake": 3.47e-07, - "haphazardly": 3.47e-07, - "harte": 3.47e-07, - "hashem": 3.47e-07, - "hau": 3.47e-07, - "hawkeyes": 3.47e-07, - "headfirst": 3.47e-07, - "headley": 3.47e-07, - "headquarter": 3.47e-07, - "hec": 3.47e-07, - "heists": 3.47e-07, - "helpfully": 3.47e-07, - "hennepin": 3.47e-07, - "herons": 3.47e-07, - "herron": 3.47e-07, - "hetty": 3.47e-07, - "hilfiger": 3.47e-07, - "hillbillies": 3.47e-07, - "hmp": 3.47e-07, - "homeroom": 3.47e-07, - "homeschooled": 3.47e-07, - "honeybee": 3.47e-07, - "hosmer": 3.47e-07, - "hosp": 3.47e-07, - "hounding": 3.47e-07, - "hovercraft": 3.47e-07, - "howarth": 3.47e-07, - "huffing": 3.47e-07, - "hunks": 3.47e-07, - "hyperventilating": 3.47e-07, - "hypnotize": 3.47e-07, - "ick": 3.47e-07, - "ido": 3.47e-07, - "iirc": 3.47e-07, - "immersing": 3.47e-07, - "impresario": 3.47e-07, - "imps": 3.47e-07, - "incineration": 3.47e-07, - "incipient": 3.47e-07, - "infest": 3.47e-07, - "inhales": 3.47e-07, - "innards": 3.47e-07, - "interfacing": 3.47e-07, - "internalize": 3.47e-07, - "intimated": 3.47e-07, - "intranet": 3.47e-07, - "intubation": 3.47e-07, - "inventiveness": 3.47e-07, - "irises": 3.47e-07, - "isaf": 3.47e-07, - "islami": 3.47e-07, - "isolationism": 3.47e-07, - "isuzu": 3.47e-07, - "jailing": 3.47e-07, - "jamaal": 3.47e-07, - "jamaicas": 3.47e-07, - "jettison": 3.47e-07, - "jha": 3.47e-07, - "jio": 3.47e-07, - "joeys": 9.77e-08, - "joie": 3.47e-07, - "joseon": 3.47e-07, - "jsa": 3.47e-07, - "jut": 3.47e-07, - "kalman": 3.47e-07, - "kamehameha": 3.47e-07, - "karbala": 3.47e-07, - "kashi": 3.47e-07, - "kau": 3.47e-07, - "kea": 3.47e-07, - "keck": 3.47e-07, - "killa": 3.47e-07, - "klara": 3.47e-07, - "klondike": 3.47e-07, - "koeman": 3.47e-07, - "kola": 3.47e-07, - "labeouf": 3.47e-07, - "lacoste": 3.47e-07, - "ladybird": 3.47e-07, - "landmass": 3.47e-07, - "languid": 3.47e-07, - "leann": 3.47e-07, - "leche": 3.47e-07, - "leni": 3.47e-07, - "leotard": 3.47e-07, - "lidocaine": 3.47e-07, - "lionheart": 3.47e-07, - "lorelai": 3.47e-07, - "louisianas": 3.47e-07, - "loveliness": 3.47e-07, - "luminance": 3.47e-07, - "lundqvist": 3.47e-07, - "magnates": 3.47e-07, - "mandir": 3.47e-07, - "manoeuvring": 3.47e-07, - "marauding": 3.47e-07, - "marisol": 3.47e-07, - "martindale": 3.47e-07, - "masterminded": 3.47e-07, - "masterminds": 3.47e-07, - "mcadams": 3.47e-07, - "mcf": 3.47e-07, - "medalists": 3.47e-07, - "melina": 3.47e-07, - "meowing": 3.47e-07, - "metalworking": 3.47e-07, - "miao": 3.47e-07, - "microprocessors": 3.47e-07, - "microsd": 3.47e-07, - "milanese": 3.47e-07, - "milburn": 3.47e-07, - "miler": 3.47e-07, - "minimalistic": 3.47e-07, - "mirai": 3.47e-07, - "mise": 3.47e-07, - "misspelling": 3.47e-07, - "mizuno": 3.47e-07, - "modo": 3.47e-07, - "mollusks": 3.47e-07, - "mommies": 3.47e-07, - "monmouthshire": 3.47e-07, - "mooted": 3.47e-07, - "motherboards": 3.47e-07, - "motta": 3.47e-07, - "msps": 3.47e-07, - "mtr": 3.47e-07, - "muggle": 3.47e-07, - "multilevel": 3.47e-07, - "multimodal": 3.47e-07, - "murmured": 3.47e-07, - "musculature": 3.47e-07, - "mustapha": 3.47e-07, - "mwah": 3.47e-07, - "nal": 3.47e-07, - "nds": 3.47e-07, - "needful": 3.47e-07, - "newswire": 3.47e-07, - "nihon": 3.47e-07, - "nikes": 2.4e-07, - "nikolay": 3.47e-07, - "noggin": 3.47e-07, - "norcross": 3.47e-07, - "nuptials": 3.47e-07, - "nutritionists": 3.47e-07, - "odes": 3.47e-07, - "onn": 3.47e-07, - "opportunism": 3.47e-07, - "opry": 3.47e-07, - "orm": 3.47e-07, - "ourself": 3.47e-07, - "oviedo": 3.47e-07, - "pais": 3.89e-08, - "pamplona": 3.47e-07, - "paring": 3.47e-07, - "pegg": 3.47e-07, - "persimmon": 3.47e-07, - "persuades": 3.47e-07, - "pestle": 3.47e-07, - "petrochemicals": 3.47e-07, - "photometric": 3.47e-07, - "phy": 3.47e-07, - "pidgin": 3.47e-07, - "pinker": 3.47e-07, - "plover": 3.47e-07, - "pokey": 3.47e-07, - "policed": 3.47e-07, - "policewoman": 3.47e-07, - "polluters": 3.47e-07, - "polygonal": 3.47e-07, - "pontius": 3.47e-07, - "postdoc": 3.47e-07, - "postulates": 3.47e-07, - "potluck": 3.47e-07, - "powerhouses": 3.47e-07, - "precariously": 3.47e-07, - "prendergast": 3.47e-07, - "prepositions": 3.47e-07, - "pricked": 3.47e-07, - "privateer": 3.47e-07, - "procreate": 3.47e-07, - "progressivism": 3.47e-07, - "pronouncement": 3.47e-07, - "prospero": 3.47e-07, - "prowler": 3.47e-07, - "prt": 3.47e-07, - "pse": 3.47e-07, - "pss": 3.47e-07, - "psychosomatic": 3.47e-07, - "psychotropic": 3.47e-07, - "publicizing": 3.47e-07, - "qm": 3.47e-07, - "quantization": 3.47e-07, - "queenie": 3.47e-07, - "raa": 3.47e-07, - "rabbinical": 3.47e-07, - "rach": 3.47e-07, - "raga": 3.47e-07, - "raggedy": 3.47e-07, - "rawhide": 3.47e-07, - "reacher": 3.47e-07, - "reassemble": 3.47e-07, - "reauthorization": 3.47e-07, - "reconvene": 3.47e-07, - "recuse": 3.47e-07, - "redoing": 3.47e-07, - "regrouping": 3.47e-07, - "reinstalled": 3.47e-07, - "repressing": 3.47e-07, - "rhe": 3.47e-07, - "rhetorically": 3.47e-07, - "rhodesian": 3.47e-07, - "rhymed": 3.47e-07, - "riaa": 3.47e-07, - "ribosomal": 3.47e-07, - "richmonds": 3.47e-07, - "riddell": 3.47e-07, - "rizzoli": 3.47e-07, - "romford": 3.47e-07, - "roping": 3.47e-07, - "roslyn": 3.47e-07, - "rulemaking": 3.47e-07, - "rummage": 3.47e-07, - "salerno": 3.47e-07, - "salivating": 3.47e-07, - "saplings": 3.47e-07, - "sarge": 3.47e-07, - "saxe": 3.47e-07, - "schaffer": 3.47e-07, - "schopenhauer": 3.47e-07, - "sdl": 3.47e-07, - "seafarers": 3.47e-07, - "seaplane": 3.47e-07, - "seashells": 3.47e-07, - "selflessly": 3.47e-07, - "selfridge": 3.47e-07, - "sequester": 3.47e-07, - "shetty": 3.47e-07, - "shree": 3.47e-07, - "sidecar": 3.47e-07, - "simulcast": 3.47e-07, - "sittings": 3.47e-07, - "sli": 3.47e-07, - "smaug": 3.47e-07, - "snafu": 3.47e-07, - "snuggles": 3.47e-07, - "snugly": 3.47e-07, - "sofie": 3.47e-07, - "solemnity": 3.47e-07, - "sondheim": 3.47e-07, - "sourcebook": 3.47e-07, - "southwell": 3.47e-07, - "spg": 3.47e-07, - "spitz": 3.47e-07, - "spurts": 3.47e-07, - "squabbles": 3.47e-07, - "squished": 3.47e-07, - "srp": 3.47e-07, - "statin": 3.47e-07, - "stefanie": 3.47e-07, - "stevia": 3.47e-07, - "stoking": 3.47e-07, - "studious": 3.47e-07, - "stymied": 3.47e-07, - "styrene": 3.47e-07, - "surah": 3.47e-07, - "systemically": 3.47e-07, - "tadpoles": 3.47e-07, - "talley": 3.47e-07, - "tappan": 3.47e-07, - "taupe": 3.47e-07, - "tcg": 3.47e-07, - "tecumseh": 3.47e-07, - "testy": 3.47e-07, - "thabo": 3.47e-07, - "thalia": 3.47e-07, - "theorize": 3.47e-07, - "thereupon": 3.47e-07, - "thermometers": 3.47e-07, - "thermostats": 3.47e-07, - "thf": 3.47e-07, - "thievery": 3.47e-07, - "threesomes": 3.47e-07, - "thurmond": 3.47e-07, - "tiffin": 3.47e-07, - "timepiece": 3.47e-07, - "tourmaline": 3.47e-07, - "tourniquet": 3.47e-07, - "trac": 3.47e-07, - "transpose": 3.47e-07, - "transposition": 3.47e-07, - "trax": 3.47e-07, - "tresses": 3.47e-07, - "trinidadian": 3.47e-07, - "trios": 2.04e-07, - "trod": 3.47e-07, - "troubadour": 3.47e-07, - "tumbleweed": 3.47e-07, - "turkestan": 3.47e-07, - "turnkey": 3.47e-07, - "tva": 3.47e-07, - "twerk": 3.47e-07, - "uggs": 3.47e-07, - "ugo": 3.47e-07, - "unabashedly": 3.47e-07, - "unanimity": 3.47e-07, - "unassailable": 3.47e-07, - "unavailability": 3.47e-07, - "unbounded": 3.47e-07, - "unceremoniously": 3.47e-07, - "uncredited": 3.47e-07, - "undercarriage": 3.47e-07, - "unhindered": 3.47e-07, - "unimaginative": 3.47e-07, - "unquestioned": 3.47e-07, - "unreserved": 3.47e-07, - "untangle": 3.47e-07, - "usury": 3.47e-07, - "vacuous": 3.47e-07, - "valera": 3.47e-07, - "vecchio": 3.47e-07, - "veers": 3.47e-07, - "venetians": 3.47e-07, - "venturi": 3.47e-07, - "vestige": 3.47e-07, - "vibrancy": 3.47e-07, - "vicodin": 3.47e-07, - "vindicate": 3.47e-07, - "waddington": 3.47e-07, - "warrick": 3.47e-07, - "waveforms": 3.47e-07, - "wcf": 3.47e-07, - "weds": 3.47e-07, - "westcott": 3.47e-07, - "wharves": 3.47e-07, - "williamsport": 3.47e-07, - "willson": 3.47e-07, - "winnable": 3.47e-07, - "woburn": 3.47e-07, - "wolsey": 3.47e-07, - "wooo": 3.47e-07, - "worldviews": 3.47e-07, - "worley": 3.47e-07, - "xf": 3.47e-07, - "xtra": 3.47e-07, - "yougov": 3.47e-07, - "zechariah": 3.47e-07, - "zeitschrift": 3.47e-07, - "abl": 3.39e-07, - "acolytes": 3.39e-07, - "addo": 3.39e-07, - "aesop": 3.39e-07, - "agglomeration": 3.39e-07, - "alaric": 3.39e-07, - "alchemists": 6.03e-08, - "alissa": 3.39e-07, - "alix": 3.39e-07, - "alternation": 3.39e-07, - "amalfi": 3.39e-07, - "ambedkar": 3.39e-07, - "amelie": 3.39e-07, - "anachronism": 3.39e-07, - "anacostia": 3.39e-07, - "angelas": 3.39e-07, - "anglicans": 3.39e-07, - "annapurna": 3.39e-07, - "apostates": 3.39e-07, - "appel": 3.39e-07, - "arda": 3.39e-07, - "arquette": 3.39e-07, - "artagnan": 3.39e-07, - "arthropods": 3.39e-07, - "asme": 3.39e-07, - "ataxia": 3.39e-07, - "auctioning": 3.39e-07, - "augments": 3.39e-07, - "autodesk": 3.39e-07, - "awesomely": 3.39e-07, - "babylonia": 3.39e-07, - "baggies": 3.39e-07, - "bailly": 3.39e-07, - "balked": 3.39e-07, - "ballpoint": 3.39e-07, - "barneys": 2.24e-07, - "barratt": 3.39e-07, - "bassoon": 3.39e-07, - "batchelor": 3.39e-07, - "bayliss": 3.39e-07, - "beachy": 3.39e-07, - "beefed": 3.39e-07, - "bellagio": 3.39e-07, - "belli": 3.39e-07, - "bellowing": 3.39e-07, - "belvoir": 3.39e-07, - "berra": 3.39e-07, - "bestest": 3.39e-07, - "betel": 3.39e-07, - "betfair": 3.39e-07, - "bethune": 3.39e-07, - "betis": 3.39e-07, - "betsey": 3.39e-07, - "bex": 3.39e-07, - "bha": 3.39e-07, - "bhakti": 3.39e-07, - "bigs": 7.59e-08, - "billowing": 3.39e-07, - "biotin": 3.39e-07, - "bip": 3.39e-07, - "bish": 3.39e-07, - "bissell": 3.39e-07, - "blackfriars": 3.39e-07, - "blanchett": 3.39e-07, - "blubber": 3.39e-07, - "bluebell": 3.39e-07, - "blume": 3.39e-07, - "blunts": 7.94e-08, - "boaters": 3.39e-07, - "bojack": 3.39e-07, - "boldest": 3.39e-07, - "bonaventure": 3.39e-07, - "borer": 3.39e-07, - "boyds": 7.08e-08, - "bradenton": 3.39e-07, - "brazenly": 3.39e-07, - "brazier": 3.39e-07, - "bre": 3.39e-07, - "britta": 3.39e-07, - "broadchurch": 3.39e-07, - "brony": 3.39e-07, - "brownfield": 3.39e-07, - "brun": 3.39e-07, - "brunson": 3.39e-07, - "busing": 3.39e-07, - "caithness": 3.39e-07, - "cameramen": 3.39e-07, - "cantaloupe": 3.39e-07, - "caries": 3.39e-07, - "carle": 3.39e-07, - "cavan": 3.39e-07, - "charitys": 3.39e-07, - "charizard": 3.39e-07, - "charlatans": 3.39e-07, - "chastise": 3.39e-07, - "chiapas": 3.39e-07, - "chomp": 3.39e-07, - "ciaran": 3.39e-07, - "circumvented": 3.39e-07, - "clinique": 3.39e-07, - "cng": 3.39e-07, - "coffeehouse": 3.39e-07, - "coincident": 3.39e-07, - "colfax": 3.39e-07, - "colonist": 3.39e-07, - "commendations": 3.39e-07, - "competences": 3.39e-07, - "concurring": 3.39e-07, - "confusingly": 3.39e-07, - "conjectures": 3.39e-07, - "connacht": 3.39e-07, - "cornfield": 3.39e-07, - "corrine": 3.39e-07, - "costed": 3.39e-07, - "counterinsurgency": 3.39e-07, - "cpg": 3.39e-07, - "criminalization": 3.39e-07, - "cropper": 3.39e-07, - "crowing": 3.39e-07, - "crushers": 3.39e-07, - "csg": 3.39e-07, - "cubed": 3.39e-07, - "cuddy": 3.39e-07, - "culpa": 3.39e-07, - "cuneiform": 3.39e-07, - "cuttlefish": 3.39e-07, - "cyl": 3.39e-07, - "davina": 3.39e-07, - "deca": 3.39e-07, - "decanter": 3.39e-07, - "decimals": 3.39e-07, - "deconstruct": 3.39e-07, - "defame": 3.39e-07, - "deliberative": 3.39e-07, - "dhcp": 3.39e-07, - "differentially": 3.39e-07, - "dimaggio": 3.39e-07, - "directx": 3.39e-07, - "discouragement": 3.39e-07, - "discursive": 3.39e-07, - "dispassionate": 3.39e-07, - "displaces": 3.39e-07, - "disrepute": 3.39e-07, - "divan": 3.39e-07, - "dixit": 3.39e-07, - "doggies": 3.39e-07, - "donnell": 3.39e-07, - "doss": 3.39e-07, - "dozed": 3.39e-07, - "drifters": 3.39e-07, - "droning": 3.39e-07, - "earthlings": 3.39e-07, - "ecclesiastes": 3.39e-07, - "econometric": 3.39e-07, - "econometrics": 3.39e-07, - "edgewater": 3.39e-07, - "ejecting": 3.39e-07, - "elbe": 3.39e-07, - "elin": 3.39e-07, - "elspeth": 3.39e-07, - "eludes": 3.39e-07, - "emre": 3.39e-07, - "endicott": 3.39e-07, - "enfant": 3.39e-07, - "entomological": 3.39e-07, - "ephemera": 3.39e-07, - "erikson": 3.39e-07, - "eris": 3.39e-07, - "escapees": 3.39e-07, - "esi": 3.39e-07, - "esr": 3.39e-07, - "eukaryotes": 3.39e-07, - "everly": 3.39e-07, - "explainer": 3.39e-07, - "expressionist": 3.39e-07, - "extractions": 3.39e-07, - "fabrications": 3.39e-07, - "fairways": 3.39e-07, - "farquhar": 3.39e-07, - "fasts": 3.39e-07, - "fatigues": 3.39e-07, - "fergusons": 3.39e-07, - "feverishly": 3.39e-07, - "feyenoord": 3.39e-07, - "fibreglass": 3.39e-07, - "finches": 3.39e-07, - "flaking": 3.39e-07, - "flanges": 3.39e-07, - "flecks": 3.39e-07, - "flexor": 3.39e-07, - "flintshire": 3.39e-07, - "flipkart": 3.39e-07, - "flippin": 3.39e-07, - "francais": 3.39e-07, - "frc": 3.39e-07, - "fritters": 3.39e-07, - "frustratingly": 3.39e-07, - "funerary": 3.39e-07, - "furies": 3.39e-07, - "fusions": 3.39e-07, - "fwiw": 3.39e-07, - "gday": 3.39e-07, - "galaxys": 3.39e-07, - "garuda": 3.39e-07, - "gauche": 3.39e-07, - "gdpr": 3.39e-07, - "gelatinous": 3.39e-07, - "gennady": 3.39e-07, - "georgiana": 3.39e-07, - "glennon": 3.39e-07, - "gnocchi": 3.39e-07, - "gobsmacked": 3.39e-07, - "godliness": 3.39e-07, - "goldfinger": 3.39e-07, - "gooseberry": 3.39e-07, - "grappled": 3.39e-07, - "graz": 3.39e-07, - "gripes": 3.39e-07, - "grosso": 3.39e-07, - "gte": 3.39e-07, - "gunships": 3.39e-07, - "habana": 3.39e-07, - "haj": 3.39e-07, - "halpern": 3.39e-07, - "halving": 3.39e-07, - "handlebar": 3.39e-07, - "handoff": 3.39e-07, - "harvesters": 3.39e-07, - "hassles": 3.39e-07, - "headlamp": 3.39e-07, - "heffernan": 3.39e-07, - "heinlein": 3.39e-07, - "helmed": 3.39e-07, - "herts": 3.39e-07, - "hier": 3.39e-07, - "hillier": 3.39e-07, - "honble": 3.39e-07, - "hosed": 3.39e-07, - "hutchings": 3.39e-07, - "hydrostatic": 3.39e-07, - "hypersonic": 3.39e-07, - "iaa": 3.39e-07, - "ibc": 3.39e-07, - "ibrox": 3.39e-07, - "icecream": 3.39e-07, - "ifn": 3.39e-07, - "iia": 3.39e-07, - "imploring": 3.39e-07, - "incisors": 3.39e-07, - "incredulity": 3.39e-07, - "inducement": 3.39e-07, - "infomercial": 3.39e-07, - "infos": 3.39e-07, - "insurances": 3.39e-07, - "interventional": 3.39e-07, - "investigatory": 3.39e-07, - "irani": 3.39e-07, - "ishtar": 3.39e-07, - "isro": 3.39e-07, - "itvs": 3.39e-07, - "jarman": 3.39e-07, - "joyride": 3.39e-07, - "jubilation": 3.39e-07, - "julias": 3.39e-07, - "kadri": 3.39e-07, - "kalyan": 3.39e-07, - "kante": 3.39e-07, - "karam": 3.39e-07, - "ketchum": 3.39e-07, - "keying": 3.39e-07, - "kinross": 3.39e-07, - "kiri": 3.39e-07, - "kirkman": 3.39e-07, - "kratom": 3.39e-07, - "kree": 3.39e-07, - "kuomintang": 3.39e-07, - "kwazulu": 3.39e-07, - "lackawanna": 3.39e-07, - "lambeau": 3.39e-07, - "landless": 3.39e-07, - "langham": 3.39e-07, - "larder": 3.39e-07, - "lasagne": 3.39e-07, - "latrobe": 3.39e-07, - "legalised": 3.39e-07, - "leonie": 3.39e-07, - "letitia": 3.39e-07, - "letterbox": 3.39e-07, - "leuven": 3.39e-07, - "liana": 3.39e-07, - "libyas": 3.39e-07, - "linz": 3.39e-07, - "listless": 3.39e-07, - "localize": 3.39e-07, - "logger": 3.39e-07, - "logics": 7.41e-08, - "longitudinally": 3.39e-07, - "lorca": 3.39e-07, - "macadamia": 3.39e-07, - "macklin": 3.39e-07, - "maddison": 3.39e-07, - "madhu": 3.39e-07, - "malignancies": 3.39e-07, - "manet": 3.39e-07, - "manifestos": 3.39e-07, - "manitowoc": 3.39e-07, - "manliness": 3.39e-07, - "marinara": 3.39e-07, - "marmite": 3.39e-07, - "maxwells": 3.39e-07, - "mcadoo": 3.39e-07, - "meekly": 3.39e-07, - "megumi": 3.39e-07, - "methionine": 3.39e-07, - "metros": 2.69e-07, - "microbiota": 3.39e-07, - "mids": 1.17e-08, - "midwinter": 3.39e-07, - "miko": 3.39e-07, - "milans": 3.39e-07, - "milkman": 3.39e-07, - "minato": 3.39e-07, - "minton": 3.39e-07, - "minutemen": 3.39e-07, - "mirrorless": 3.39e-07, - "misbehavior": 3.39e-07, - "miscarried": 3.39e-07, - "missouris": 3.39e-07, - "miura": 3.39e-07, - "mkt": 3.39e-07, - "moir": 3.39e-07, - "mojito": 3.39e-07, - "molyneux": 3.39e-07, - "monteith": 3.39e-07, - "motorised": 3.39e-07, - "mouton": 3.39e-07, - "muggy": 3.39e-07, - "mulled": 3.39e-07, - "multiplicative": 3.39e-07, - "muting": 3.39e-07, - "mutters": 3.39e-07, - "mysterio": 3.39e-07, - "namespace": 3.39e-07, - "neto": 3.39e-07, - "newsfeed": 3.39e-07, - "niceties": 3.39e-07, - "nicoles": 3.39e-07, - "nid": 3.39e-07, - "nier": 3.39e-07, - "nighthawk": 3.39e-07, - "niu": 3.39e-07, - "nmc": 3.39e-07, - "nogales": 3.39e-07, - "nota": 3.39e-07, - "novellas": 3.39e-07, - "ntt": 3.39e-07, - "objector": 3.39e-07, - "obscenities": 3.39e-07, - "octavius": 3.39e-07, - "oden": 3.39e-07, - "offensives": 3.39e-07, - "ojai": 3.39e-07, - "optometrist": 3.39e-07, - "orangutans": 3.39e-07, - "orestes": 3.39e-07, - "overstepped": 3.39e-07, - "oye": 3.39e-07, - "ozarks": 3.39e-07, - "paa": 3.39e-07, - "paducah": 3.39e-07, - "paladins": 3.39e-07, - "parodied": 3.39e-07, - "passe": 3.39e-07, - "pawan": 3.39e-07, - "pdc": 3.39e-07, - "peeves": 3.39e-07, - "pelted": 3.39e-07, - "peppy": 3.39e-07, - "pepys": 3.39e-07, - "pervades": 3.39e-07, - "phobic": 3.39e-07, - "pierces": 2.4e-07, - "pillaged": 3.39e-07, - "pinged": 3.39e-07, - "piotr": 3.39e-07, - "pitfall": 3.39e-07, - "pivoted": 3.39e-07, - "polenta": 3.39e-07, - "polygamous": 3.39e-07, - "powerlessness": 3.39e-07, - "preteen": 3.39e-07, - "prided": 3.39e-07, - "pritchett": 3.39e-07, - "probst": 3.39e-07, - "proliferated": 3.39e-07, - "propels": 3.39e-07, - "prosciutto": 3.39e-07, - "psychoanalyst": 3.39e-07, - "pucks": 6.46e-08, - "purer": 3.39e-07, - "purveyors": 3.39e-07, - "pz": 3.39e-07, - "qp": 3.39e-07, - "quays": 3.39e-07, - "queso": 3.39e-07, - "quinine": 3.39e-07, - "quintus": 3.39e-07, - "rajeev": 3.39e-07, - "ral": 3.39e-07, - "rankine": 3.39e-07, - "rapt": 3.39e-07, - "reappointed": 3.39e-07, - "rearguard": 3.39e-07, - "reasonableness": 3.39e-07, - "rebalancing": 3.39e-07, - "rebus": 3.39e-07, - "redgrave": 3.39e-07, - "refereed": 3.39e-07, - "refilling": 3.39e-07, - "regressed": 3.39e-07, - "reims": 3.39e-07, - "rennes": 3.39e-07, - "revitalizing": 3.39e-07, - "revlon": 3.39e-07, - "rhoades": 3.39e-07, - "rhodium": 3.39e-07, - "ribbing": 3.39e-07, - "ricki": 3.39e-07, - "rida": 3.39e-07, - "righty": 3.39e-07, - "rimmer": 3.39e-07, - "risa": 3.39e-07, - "ritalin": 3.39e-07, - "rmt": 3.39e-07, - "robeson": 3.39e-07, - "ronaldinho": 3.39e-07, - "rooming": 3.39e-07, - "rosin": 3.39e-07, - "rsv": 3.39e-07, - "rubella": 3.39e-07, - "rumbled": 3.39e-07, - "ruptures": 3.39e-07, - "sangh": 3.39e-07, - "schaub": 3.39e-07, - "scrutinizing": 3.39e-07, - "seaway": 3.39e-07, - "semiautomatic": 3.39e-07, - "sfx": 3.39e-07, - "shales": 3.39e-07, - "sharpener": 3.39e-07, - "shawls": 3.39e-07, - "shekels": 3.39e-07, - "sherif": 3.39e-07, - "shorn": 3.39e-07, - "shortens": 3.39e-07, - "sideburns": 3.39e-07, - "sigurd": 3.39e-07, - "simian": 3.39e-07, - "simran": 3.39e-07, - "sio": 3.39e-07, - "skinnier": 3.39e-07, - "slandered": 3.39e-07, - "slays": 3.39e-07, - "slither": 3.39e-07, - "smallish": 3.39e-07, - "snarled": 3.39e-07, - "snk": 3.39e-07, - "snobbery": 3.39e-07, - "sorenson": 3.39e-07, - "sorkin": 3.39e-07, - "spacers": 3.39e-07, - "spiller": 3.39e-07, - "spurgeon": 3.39e-07, - "squidward": 3.39e-07, - "srsly": 3.39e-07, - "stabbings": 3.39e-07, - "staley": 3.39e-07, - "stapler": 3.39e-07, - "starlings": 3.39e-07, - "stef": 3.39e-07, - "sterility": 3.39e-07, - "sternberg": 3.39e-07, - "sterne": 3.39e-07, - "stg": 3.39e-07, - "stiffened": 3.39e-07, - "stonework": 3.39e-07, - "strahan": 3.39e-07, - "streptococcus": 3.39e-07, - "subroutine": 3.39e-07, - "succubus": 3.39e-07, - "supervillain": 3.39e-07, - "sweated": 3.39e-07, - "switzerlands": 3.39e-07, - "synch": 3.39e-07, - "synthesizers": 3.39e-07, - "taa": 3.39e-07, - "taman": 3.39e-07, - "tammany": 3.39e-07, - "tcl": 3.39e-07, - "tcr": 3.39e-07, - "teachable": 3.39e-07, - "techies": 3.39e-07, - "telephoto": 3.39e-07, - "teleported": 3.39e-07, - "teriyaki": 3.39e-07, - "tfa": 3.39e-07, - "theistic": 3.39e-07, - "theobald": 3.39e-07, - "thessalonians": 3.39e-07, - "thimble": 3.39e-07, - "thorp": 3.39e-07, - "tikka": 3.39e-07, - "timur": 3.39e-07, - "tokio": 3.39e-07, - "tommaso": 3.39e-07, - "toomey": 3.39e-07, - "tootsie": 3.39e-07, - "transits": 3.39e-07, - "treks": 1.26e-07, - "trespassers": 3.39e-07, - "trickled": 3.39e-07, - "triptych": 3.39e-07, - "trna": 3.39e-07, - "tro": 3.39e-07, - "tsarnaev": 3.39e-07, - "tuareg": 3.39e-07, - "tugboat": 3.39e-07, - "tulare": 3.39e-07, - "twinge": 3.39e-07, - "ucsb": 3.39e-07, - "uli": 3.39e-07, - "unbelief": 3.39e-07, - "uncharacteristically": 3.39e-07, - "underestimates": 3.39e-07, - "undid": 3.39e-07, - "unfocused": 3.39e-07, - "unimpeded": 3.39e-07, - "unmotivated": 3.39e-07, - "unsweetened": 3.39e-07, - "urals": 3.39e-07, - "usg": 3.39e-07, - "vai": 3.39e-07, - "validly": 3.39e-07, - "valli": 3.39e-07, - "varicose": 3.39e-07, - "vaunted": 3.39e-07, - "venezia": 3.39e-07, - "vestibular": 3.39e-07, - "vestments": 3.39e-07, - "vil": 3.39e-07, - "visualisation": 3.39e-07, - "vocations": 3.39e-07, - "wala": 3.39e-07, - "walken": 3.39e-07, - "wangs": 6.61e-08, - "warrantless": 3.39e-07, - "waterpark": 3.39e-07, - "wayback": 3.39e-07, - "wayyyy": 3.39e-07, - "wcc": 3.39e-07, - "weasels": 3.39e-07, - "webbed": 3.39e-07, - "webinars": 3.39e-07, - "ween": 3.39e-07, - "welshman": 3.39e-07, - "westboro": 3.39e-07, - "whitepaper": 3.39e-07, - "whitest": 3.39e-07, - "whooped": 3.39e-07, - "wishers": 3.39e-07, - "woodard": 3.39e-07, - "wrinkly": 3.39e-07, - "wuthering": 3.39e-07, - "yarrow": 3.39e-07, - "yearbooks": 3.39e-07, - "yesss": 3.39e-07, - "zaman": 3.39e-07, - "zeb": 3.39e-07, - "zinn": 3.39e-07, - "zirconia": 3.39e-07, - "zoloft": 3.39e-07, - "aan": 3.31e-07, - "abh": 3.31e-07, - "acharya": 3.31e-07, - "actuaries": 3.31e-07, - "adolfo": 3.31e-07, - "agha": 3.31e-07, - "ahsoka": 3.31e-07, - "aintree": 3.31e-07, - "airships": 3.31e-07, - "alanis": 3.31e-07, - "allard": 3.31e-07, - "angies": 3.31e-07, - "antsy": 3.31e-07, - "apac": 3.31e-07, - "apertures": 3.31e-07, - "apprised": 3.31e-07, - "arabidopsis": 3.31e-07, - "arendt": 3.31e-07, - "argentinean": 3.31e-07, - "arlen": 3.31e-07, - "arunachal": 3.31e-07, - "ashish": 3.31e-07, - "ashkenazi": 3.31e-07, - "assailed": 3.31e-07, - "astern": 3.31e-07, - "atpase": 3.31e-07, - "audra": 3.31e-07, - "autofocus": 3.31e-07, - "badoo": 3.31e-07, - "baghdadi": 3.31e-07, - "baldwins": 6.31e-08, - "balenciaga": 3.31e-07, - "baloney": 3.31e-07, - "bangin": 3.31e-07, - "banister": 3.31e-07, - "banque": 3.31e-07, - "barbaras": 3.31e-07, - "beatriz": 3.31e-07, - "beautification": 3.31e-07, - "belladonna": 3.31e-07, - "bellas": 2.88e-07, - "bexley": 3.31e-07, - "bhubaneswar": 3.31e-07, - "biochemist": 3.31e-07, - "birla": 3.31e-07, - "birminghams": 3.31e-07, - "blt": 3.31e-07, - "boaz": 3.31e-07, - "bobbin": 3.31e-07, - "bogo": 3.31e-07, - "bolden": 3.31e-07, - "boll": 3.31e-07, - "bolsters": 3.31e-07, - "boogeyman": 3.31e-07, - "boozy": 3.31e-07, - "bothwell": 3.31e-07, - "boyne": 3.31e-07, - "brackett": 3.31e-07, - "brainstem": 3.31e-07, - "brenton": 3.31e-07, - "brereton": 3.31e-07, - "bricklayer": 3.31e-07, - "browsed": 3.31e-07, - "bruin": 3.31e-07, - "bundaberg": 3.31e-07, - "businessweek": 3.31e-07, - "camacho": 3.31e-07, - "camellia": 3.31e-07, - "canonized": 3.31e-07, - "captivate": 3.31e-07, - "carling": 3.31e-07, - "carmarthen": 3.31e-07, - "carnaval": 3.31e-07, - "carvajal": 3.31e-07, - "cashews": 3.31e-07, - "catalyze": 3.31e-07, - "cavalcade": 3.31e-07, - "cerebrospinal": 3.31e-07, - "ceredigion": 3.31e-07, - "chamberlin": 3.31e-07, - "charless": 3.31e-07, - "chequered": 3.31e-07, - "chine": 3.31e-07, - "choosy": 3.31e-07, - "ciphers": 3.31e-07, - "circumventing": 3.31e-07, - "clarksburg": 3.31e-07, - "clostridium": 3.31e-07, - "coaxing": 3.31e-07, - "cockatoo": 3.31e-07, - "collectables": 3.31e-07, - "colm": 3.31e-07, - "colonised": 3.31e-07, - "commends": 3.31e-07, - "commonalities": 3.31e-07, - "compressions": 3.31e-07, - "concisely": 3.31e-07, - "conditionally": 3.31e-07, - "consummation": 3.31e-07, - "convents": 3.31e-07, - "conveyors": 3.31e-07, - "coons": 3.31e-07, - "copolymer": 3.31e-07, - "cpo": 3.31e-07, - "crags": 3.31e-07, - "crain": 3.31e-07, - "creak": 3.31e-07, - "creditable": 3.31e-07, - "cringey": 3.31e-07, - "cripps": 3.31e-07, - "curatorial": 3.31e-07, - "cutesy": 3.31e-07, - "cydia": 3.31e-07, - "dann": 3.31e-07, - "darshan": 3.31e-07, - "datum": 3.31e-07, - "davide": 3.31e-07, - "deathmatch": 3.31e-07, - "debutante": 3.31e-07, - "deconstructing": 3.31e-07, - "deepika": 3.31e-07, - "deflector": 3.31e-07, - "dehumanizing": 3.31e-07, - "delhis": 3.31e-07, - "deliberating": 3.31e-07, - "delos": 3.31e-07, - "demonizing": 3.31e-07, - "digitization": 3.31e-07, - "dinos": 1.12e-07, - "disassembly": 3.31e-07, - "displacements": 3.31e-07, - "dissonant": 3.31e-07, - "divulged": 3.31e-07, - "doric": 3.31e-07, - "doting": 3.31e-07, - "dra": 3.31e-07, - "dreamin": 3.31e-07, - "dreamlike": 3.31e-07, - "dressers": 3.31e-07, - "drummed": 3.31e-07, - "duggar": 3.31e-07, - "dulled": 3.31e-07, - "dvi": 3.31e-07, - "dyin": 3.31e-07, - "earthenware": 3.31e-07, - "egalitarianism": 3.31e-07, - "ehr": 3.31e-07, - "ekaterina": 3.31e-07, - "ekg": 3.31e-07, - "eloped": 3.31e-07, - "emanates": 3.31e-07, - "embezzling": 3.31e-07, - "ents": 3.31e-07, - "epc": 3.31e-07, - "epr": 3.31e-07, - "ert": 3.31e-07, - "escapade": 3.31e-07, - "essie": 3.31e-07, - "expending": 3.31e-07, - "expounded": 3.31e-07, - "extinctions": 3.31e-07, - "exude": 3.31e-07, - "facepalm": 3.31e-07, - "factorial": 3.31e-07, - "famers": 3.31e-07, - "fanta": 3.31e-07, - "fazio": 3.31e-07, - "feint": 3.31e-07, - "fergusson": 3.31e-07, - "fireballs": 3.31e-07, - "firebrand": 3.31e-07, - "fishs": 3.31e-07, - "flinched": 3.31e-07, - "fondle": 3.31e-07, - "foothill": 3.31e-07, - "frankston": 3.31e-07, - "freund": 3.31e-07, - "frontlines": 3.31e-07, - "froome": 3.31e-07, - "frosts": 2.34e-07, - "frugality": 3.31e-07, - "frys": 6.61e-08, - "funneling": 3.31e-07, - "furor": 3.31e-07, - "galling": 3.31e-07, - "garcias": 3.31e-07, - "gargoyles": 3.31e-07, - "gaslighting": 3.31e-07, - "gaspar": 3.31e-07, - "gerhardt": 3.31e-07, - "ghosting": 3.31e-07, - "gillan": 3.31e-07, - "gir": 3.31e-07, - "glum": 3.31e-07, - "gobbling": 3.31e-07, - "goetz": 3.31e-07, - "goldblum": 3.31e-07, - "goro": 3.31e-07, - "goswami": 3.31e-07, - "gouda": 3.31e-07, - "gouged": 3.31e-07, - "gravitated": 3.31e-07, - "griddle": 3.31e-07, - "grinnell": 3.31e-07, - "groundless": 3.31e-07, - "gsc": 3.31e-07, - "gunboats": 3.31e-07, - "gurgling": 3.31e-07, - "hampson": 3.31e-07, - "hannan": 3.31e-07, - "harington": 3.31e-07, - "haruka": 3.31e-07, - "haverhill": 3.31e-07, - "hazelwood": 3.31e-07, - "headboard": 3.31e-07, - "hebert": 3.31e-07, - "helo": 3.31e-07, - "hematopoietic": 3.31e-07, - "hercule": 3.31e-07, - "herculean": 3.31e-07, - "hereunder": 3.31e-07, - "heterosexuality": 3.31e-07, - "heuristics": 3.31e-07, - "hmv": 3.31e-07, - "hss": 3.31e-07, - "hydride": 3.31e-07, - "hypotension": 3.31e-07, - "iaaf": 3.31e-07, - "iap": 3.31e-07, - "idi": 3.31e-07, - "idps": 3.31e-07, - "ieds": 3.31e-07, - "illus": 3.31e-07, - "imd": 3.31e-07, - "imploding": 3.31e-07, - "improvisational": 3.31e-07, - "incubus": 3.31e-07, - "incurs": 3.31e-07, - "inductees": 3.31e-07, - "inflicts": 3.31e-07, - "infosys": 3.31e-07, - "inkjet": 3.31e-07, - "interlaced": 3.31e-07, - "intermarriage": 3.31e-07, - "inuyasha": 3.31e-07, - "invalidating": 3.31e-07, - "irresistibly": 3.31e-07, - "ismael": 3.31e-07, - "ivorian": 3.31e-07, - "ivs": 2.45e-07, - "iyer": 3.31e-07, - "jeffreys": 1.2e-07, - "jennifers": 3.31e-07, - "jerzy": 3.31e-07, - "jez": 3.31e-07, - "jilted": 3.31e-07, - "jiro": 3.31e-07, - "joels": 3.31e-07, - "journeying": 3.31e-07, - "jousting": 3.31e-07, - "juicer": 3.31e-07, - "justus": 3.31e-07, - "kalahari": 3.31e-07, - "karst": 3.31e-07, - "kenan": 3.31e-07, - "kentish": 3.31e-07, - "kes": 3.31e-07, - "keyboardist": 3.31e-07, - "keyser": 3.31e-07, - "kgs": 3.31e-07, - "kinnear": 3.31e-07, - "knightsbridge": 3.31e-07, - "kunst": 3.31e-07, - "kylo": 3.31e-07, - "kym": 3.31e-07, - "ladens": 3.31e-07, - "languished": 3.31e-07, - "lanning": 3.31e-07, - "lcc": 3.31e-07, - "lecter": 3.31e-07, - "legate": 3.31e-07, - "legoland": 3.31e-07, - "legolas": 3.31e-07, - "leong": 3.31e-07, - "lethality": 3.31e-07, - "levitate": 3.31e-07, - "levitation": 3.31e-07, - "lifters": 3.31e-07, - "lilley": 3.31e-07, - "linder": 3.31e-07, - "liquidator": 3.31e-07, - "lithgow": 3.31e-07, - "logarithm": 3.31e-07, - "longoria": 3.31e-07, - "lordy": 3.31e-07, - "lorelei": 3.31e-07, - "louth": 3.31e-07, - "lugano": 3.31e-07, - "mlady": 3.31e-07, - "maan": 3.31e-07, - "machiavellian": 3.31e-07, - "maimonides": 3.31e-07, - "maladies": 3.31e-07, - "manchesters": 3.31e-07, - "mandibular": 3.31e-07, - "manx": 3.31e-07, - "maoists": 3.31e-07, - "marrakesh": 3.31e-07, - "masochistic": 3.31e-07, - "mauna": 3.31e-07, - "mccarron": 3.31e-07, - "mccloud": 3.31e-07, - "midsection": 3.31e-07, - "mightier": 3.31e-07, - "mmol": 3.31e-07, - "modernise": 3.31e-07, - "mongo": 3.31e-07, - "monomers": 3.31e-07, - "montes": 5.75e-08, - "mountbatten": 3.31e-07, - "mucosal": 3.31e-07, - "muhammads": 3.31e-07, - "murdochs": 5.89e-08, - "musks": 3.31e-07, - "mustaches": 3.31e-07, - "myanmars": 3.31e-07, - "mykonos": 3.31e-07, - "mz": 3.31e-07, - "naloxone": 3.31e-07, - "nameplate": 3.31e-07, - "nanaimo": 3.31e-07, - "nasri": 3.31e-07, - "nella": 3.31e-07, - "nen": 3.31e-07, - "neoplasms": 3.31e-07, - "nevin": 3.31e-07, - "newscaster": 3.31e-07, - "newsprint": 3.31e-07, - "newyork": 3.31e-07, - "nha": 3.31e-07, - "nicolai": 3.31e-07, - "nikhil": 3.31e-07, - "noblest": 3.31e-07, - "nsas": 3.31e-07, - "ntc": 3.31e-07, - "nuri": 3.31e-07, - "obasanjo": 3.31e-07, - "oic": 3.31e-07, - "oliphant": 3.31e-07, - "olivias": 3.31e-07, - "ominously": 3.31e-07, - "onslow": 3.31e-07, - "optioned": 3.31e-07, - "ornithology": 3.31e-07, - "orthodontist": 3.31e-07, - "osorio": 3.31e-07, - "overcharged": 3.31e-07, - "overgrowth": 3.31e-07, - "overshoot": 3.31e-07, - "owo": 3.31e-07, - "paedophiles": 3.31e-07, - "paleontologist": 3.31e-07, - "panelling": 3.31e-07, - "panera": 3.31e-07, - "papillon": 3.31e-07, - "paredes": 3.31e-07, - "parque": 3.31e-07, - "pastiche": 3.31e-07, - "pater": 3.31e-07, - "pawtucket": 3.31e-07, - "pecker": 3.31e-07, - "penner": 3.31e-07, - "peritoneal": 3.31e-07, - "persevering": 3.31e-07, - "pettit": 3.31e-07, - "phallus": 3.31e-07, - "phenomenological": 3.31e-07, - "phonemes": 3.31e-07, - "phosphates": 3.31e-07, - "pinellas": 3.31e-07, - "plath": 3.31e-07, - "pld": 3.31e-07, - "pleasantries": 3.31e-07, - "polarisation": 3.31e-07, - "polarised": 3.31e-07, - "pollinated": 3.31e-07, - "predilection": 3.31e-07, - "principe": 3.31e-07, - "prion": 3.31e-07, - "profs": 3.31e-07, - "profusion": 3.31e-07, - "progenitors": 3.31e-07, - "protestations": 3.31e-07, - "pseudonyms": 3.31e-07, - "pucker": 3.31e-07, - "pullback": 3.31e-07, - "punted": 3.31e-07, - "pusha": 3.31e-07, - "pyne": 3.31e-07, - "qasim": 3.31e-07, - "rakesh": 3.31e-07, - "ranjit": 3.31e-07, - "ratatouille": 3.31e-07, - "raze": 3.31e-07, - "rct": 3.31e-07, - "reestablished": 3.31e-07, - "relent": 3.31e-07, - "renfrew": 3.31e-07, - "requisitioned": 3.31e-07, - "retest": 3.31e-07, - "retrain": 3.31e-07, - "retrofitted": 3.31e-07, - "rhododendron": 3.31e-07, - "rian": 3.31e-07, - "rifleman": 3.31e-07, - "rino": 3.31e-07, - "rns": 3.31e-07, - "roams": 3.31e-07, - "rosamund": 3.31e-07, - "rossini": 3.31e-07, - "roughed": 3.31e-07, - "roughest": 3.31e-07, - "rubenstein": 3.31e-07, - "rumbles": 3.31e-07, - "rusev": 3.31e-07, - "rushton": 3.31e-07, - "ruthlessness": 3.31e-07, - "sabo": 3.31e-07, - "sackville": 3.31e-07, - "sacral": 3.31e-07, - "samuelson": 3.31e-07, - "saracen": 3.31e-07, - "sassoon": 3.31e-07, - "sawmills": 3.31e-07, - "scherzer": 3.31e-07, - "schmuck": 3.31e-07, - "scrawled": 3.31e-07, - "scuffed": 3.31e-07, - "seaford": 3.31e-07, - "secondaries": 3.31e-07, - "sensationalism": 3.31e-07, - "septuagint": 3.31e-07, - "sheathed": 3.31e-07, - "shelburne": 3.31e-07, - "shinobi": 3.31e-07, - "shipman": 3.31e-07, - "shortbread": 3.31e-07, - "shtick": 3.31e-07, - "shulman": 3.31e-07, - "sidings": 3.31e-07, - "sinuous": 3.31e-07, - "sires": 3.31e-07, - "sirloin": 3.31e-07, - "sivan": 3.31e-07, - "skimp": 3.31e-07, - "skunks": 3.31e-07, - "slayed": 3.31e-07, - "slicer": 3.31e-07, - "slipstream": 3.31e-07, - "slumps": 3.31e-07, - "smit": 3.31e-07, - "snobby": 3.31e-07, - "snowboarder": 3.31e-07, - "sonics": 1.55e-07, - "spaceport": 3.31e-07, - "spayed": 3.31e-07, - "speedboat": 3.31e-07, - "spouts": 3.31e-07, - "sprees": 3.31e-07, - "spry": 3.31e-07, - "spurring": 3.31e-07, - "stalwarts": 3.31e-07, - "stanislaus": 3.31e-07, - "stealer": 3.31e-07, - "strabo": 3.31e-07, - "stringy": 3.31e-07, - "struct": 3.31e-07, - "stuarts": 1.66e-07, - "subsonic": 3.31e-07, - "substations": 3.31e-07, - "summery": 3.31e-07, - "suplex": 3.31e-07, - "survivalist": 3.31e-07, - "syrups": 3.31e-07, - "tableware": 3.31e-07, - "talc": 3.31e-07, - "tallis": 3.31e-07, - "tapeworm": 3.31e-07, - "tdm": 3.31e-07, - "teesside": 3.31e-07, - "telnet": 3.31e-07, - "tempering": 3.31e-07, - "tennessees": 3.31e-07, - "terminations": 3.31e-07, - "ternary": 3.31e-07, - "therewith": 3.31e-07, - "thes": 3.31e-07, - "thither": 3.31e-07, - "tid": 3.31e-07, - "tinfoil": 3.31e-07, - "tish": 3.31e-07, - "titania": 3.31e-07, - "tongan": 3.31e-07, - "toons": 3.31e-07, - "topanga": 3.31e-07, - "toyotas": 9.77e-08, - "transfixed": 3.31e-07, - "trended": 3.31e-07, - "tripura": 3.31e-07, - "troika": 3.31e-07, - "tryon": 3.31e-07, - "tula": 3.31e-07, - "tull": 3.31e-07, - "tunnelling": 3.31e-07, - "turnoff": 3.31e-07, - "uncouth": 3.31e-07, - "underutilized": 3.31e-07, - "unexploded": 3.31e-07, - "unhurt": 3.31e-07, - "unleaded": 3.31e-07, - "unpleasantness": 3.31e-07, - "unrivaled": 3.31e-07, - "unsalted": 3.31e-07, - "unsullied": 3.31e-07, - "unwed": 3.31e-07, - "urologist": 3.31e-07, - "utensil": 3.31e-07, - "vacuums": 3.31e-07, - "vanities": 3.31e-07, - "vaporizer": 3.31e-07, - "vasily": 3.31e-07, - "venables": 3.31e-07, - "venereal": 3.31e-07, - "vergil": 3.31e-07, - "vesting": 3.31e-07, - "virile": 3.31e-07, - "vitali": 3.31e-07, - "vittoria": 3.31e-07, - "vivendi": 3.31e-07, - "vmas": 3.31e-07, - "vss": 3.31e-07, - "wallach": 3.31e-07, - "washout": 3.31e-07, - "wattle": 3.31e-07, - "westpac": 3.31e-07, - "whatll": 3.31e-07, - "whither": 3.31e-07, - "wifey": 3.31e-07, - "wilco": 3.31e-07, - "wildebeest": 3.31e-07, - "wilks": 3.31e-07, - "wintertime": 3.31e-07, - "woodcut": 3.31e-07, - "woodlawn": 3.31e-07, - "wooed": 3.31e-07, - "wootton": 3.31e-07, - "xuan": 3.31e-07, - "yaoi": 3.31e-07, - "yasir": 3.31e-07, - "yatra": 3.31e-07, - "yb": 3.31e-07, - "yitzhak": 3.31e-07, - "yl": 3.31e-07, - "younis": 3.31e-07, - "zamboanga": 3.31e-07, - "zaza": 3.31e-07, - "zippy": 3.31e-07, - "aadmi": 3.24e-07, - "abstention": 3.24e-07, - "accusative": 3.24e-07, - "acquaint": 3.24e-07, - "acrobats": 3.24e-07, - "admonition": 3.24e-07, - "adolphus": 3.24e-07, - "ainslie": 3.24e-07, - "akers": 3.24e-07, - "alanine": 3.24e-07, - "alberts": 2.09e-07, - "allenby": 3.24e-07, - "allstar": 3.24e-07, - "amalia": 3.24e-07, - "amputations": 3.24e-07, - "anaemia": 3.24e-07, - "analyzers": 3.24e-07, - "andie": 3.24e-07, - "andrus": 3.24e-07, - "anesthesiology": 3.24e-07, - "angiography": 3.24e-07, - "annexe": 3.24e-07, - "antifungal": 3.24e-07, - "antigone": 3.24e-07, - "anythings": 5.62e-08, - "apos": 3.24e-07, - "appeasing": 3.24e-07, - "aquamarine": 3.24e-07, - "arbitrators": 3.24e-07, - "arbroath": 3.24e-07, - "assassinating": 3.24e-07, - "astringent": 3.24e-07, - "atalanta": 3.24e-07, - "athenaeum": 3.24e-07, - "atropine": 3.24e-07, - "attentively": 3.24e-07, - "auvergne": 3.24e-07, - "azimuth": 3.24e-07, - "bacardi": 3.24e-07, - "backdrops": 3.24e-07, - "bains": 5.13e-08, - "balaclava": 3.24e-07, - "bandicoot": 3.24e-07, - "bangle": 3.24e-07, - "banishing": 3.24e-07, - "bayes": 3.24e-07, - "bch": 3.24e-07, - "beadle": 3.24e-07, - "beautify": 3.24e-07, - "beckoned": 3.24e-07, - "befriends": 3.24e-07, - "beheld": 3.24e-07, - "belies": 3.24e-07, - "bessemer": 3.24e-07, - "bffs": 8.91e-08, - "bhs": 3.24e-07, - "bifida": 3.24e-07, - "blanton": 3.24e-07, - "blocky": 3.24e-07, - "bluebirds": 3.24e-07, - "bma": 3.24e-07, - "bmws": 2.34e-07, - "bodhisattva": 3.24e-07, - "boilerplate": 3.24e-07, - "boz": 3.24e-07, - "breakneck": 3.24e-07, - "bringer": 3.24e-07, - "broadens": 3.24e-07, - "brokeback": 3.24e-07, - "brosnan": 3.24e-07, - "brotha": 3.24e-07, - "brussel": 3.24e-07, - "buk": 3.24e-07, - "bukowski": 3.24e-07, - "bulkheads": 3.24e-07, - "bumgarner": 3.24e-07, - "businesss": 3.24e-07, - "cag": 3.24e-07, - "cammy": 3.24e-07, - "campy": 3.24e-07, - "capn": 3.24e-07, - "caressed": 3.24e-07, - "carnivals": 6.03e-08, - "caseload": 3.24e-07, - "cassia": 3.24e-07, - "catapults": 3.24e-07, - "changs": 5.37e-08, - "chattel": 3.24e-07, - "cheeto": 3.24e-07, - "chika": 3.24e-07, - "choe": 3.24e-07, - "chorale": 3.24e-07, - "chowdhury": 3.24e-07, - "ciro": 3.24e-07, - "clavicle": 3.24e-07, - "cleese": 3.24e-07, - "coalesced": 3.24e-07, - "coburg": 3.24e-07, - "cochise": 3.24e-07, - "coffman": 3.24e-07, - "colliers": 1.45e-07, - "colourless": 3.24e-07, - "commutative": 3.24e-07, - "compaction": 3.24e-07, - "composes": 3.24e-07, - "computes": 3.24e-07, - "concours": 3.24e-07, - "conformance": 3.24e-07, - "constraining": 3.24e-07, - "copywriter": 3.24e-07, - "correspondences": 3.24e-07, - "cosimo": 3.24e-07, - "cosine": 3.24e-07, - "cosmonaut": 3.24e-07, - "costner": 3.24e-07, - "cottrell": 3.24e-07, - "countable": 3.24e-07, - "couplet": 3.24e-07, - "creationists": 3.24e-07, - "cricketing": 3.24e-07, - "criminalized": 3.24e-07, - "crowne": 3.24e-07, - "curitiba": 3.24e-07, - "curler": 3.24e-07, - "currant": 3.24e-07, - "cutaway": 3.24e-07, - "dari": 3.24e-07, - "daz": 3.24e-07, - "decca": 3.24e-07, - "deducting": 3.24e-07, - "deejay": 3.24e-07, - "dees": 2.51e-07, - "defecation": 3.24e-07, - "defund": 3.24e-07, - "denbighshire": 3.24e-07, - "deprives": 3.24e-07, - "dern": 3.24e-07, - "desorption": 3.24e-07, - "destabilization": 3.24e-07, - "diller": 3.24e-07, - "dimethyl": 3.24e-07, - "diogenes": 3.24e-07, - "disbelieve": 3.24e-07, - "dispenses": 3.24e-07, - "dissipating": 3.24e-07, - "dividers": 3.24e-07, - "dmd": 6.03e-08, - "dogecoin": 3.24e-07, - "doggett": 3.24e-07, - "doobie": 3.24e-07, - "dori": 3.24e-07, - "dostoevsky": 3.24e-07, - "draughts": 3.24e-07, - "droop": 3.24e-07, - "duce": 3.24e-07, - "duplicity": 3.24e-07, - "dyck": 3.24e-07, - "eck": 3.24e-07, - "effervescent": 3.24e-07, - "eko": 3.24e-07, - "elearning": 3.24e-07, - "elliots": 3.24e-07, - "emanate": 3.24e-07, - "eminems": 3.24e-07, - "enactments": 3.24e-07, - "encapsulate": 3.24e-07, - "enduro": 3.24e-07, - "ens": 1.86e-08, - "entryway": 3.24e-07, - "eod": 3.24e-07, - "escalade": 3.24e-07, - "espousing": 3.24e-07, - "esv": 3.24e-07, - "ethiopias": 3.24e-07, - "eugenio": 3.24e-07, - "excerpted": 3.24e-07, - "fabrice": 3.24e-07, - "facetious": 3.24e-07, - "falsification": 3.24e-07, - "farooq": 3.24e-07, - "fascinate": 3.24e-07, - "fauci": 3.24e-07, - "femdom": 3.24e-07, - "ffxiv": 3.24e-07, - "fielders": 1.15e-07, - "finkelstein": 3.24e-07, - "firmino": 3.24e-07, - "fluxes": 3.24e-07, - "flyin": 3.24e-07, - "fma": 3.24e-07, - "follicular": 3.24e-07, - "footloose": 3.24e-07, - "forde": 3.24e-07, - "foreclose": 3.24e-07, - "forecourt": 3.24e-07, - "forewarned": 3.24e-07, - "forger": 3.24e-07, - "foundered": 3.24e-07, - "fpga": 3.24e-07, - "frankish": 3.24e-07, - "frankness": 3.24e-07, - "fredericton": 3.24e-07, - "freshener": 3.24e-07, - "frighteningly": 3.24e-07, - "frilly": 3.24e-07, - "furries": 3.24e-07, - "fusiliers": 3.24e-07, - "gagnon": 3.24e-07, - "gammon": 3.24e-07, - "gangway": 3.24e-07, - "garvin": 3.24e-07, - "gchq": 3.24e-07, - "generality": 3.24e-07, - "gente": 3.24e-07, - "georgy": 3.24e-07, - "giga": 3.24e-07, - "gli": 3.24e-07, - "globalists": 3.24e-07, - "glutes": 3.24e-07, - "gobbled": 3.24e-07, - "gordie": 3.24e-07, - "goring": 3.24e-07, - "governorate": 3.24e-07, - "grater": 3.24e-07, - "grogan": 3.24e-07, - "gruelling": 3.24e-07, - "guises": 3.24e-07, - "gushed": 3.24e-07, - "haddon": 3.24e-07, - "haight": 3.24e-07, - "hallie": 3.24e-07, - "hankering": 3.24e-07, - "hannigan": 3.24e-07, - "harkin": 3.24e-07, - "harrelson": 3.24e-07, - "hasidic": 3.24e-07, - "hattiesburg": 3.24e-07, - "haut": 3.24e-07, - "headingley": 3.24e-07, - "healths": 3.24e-07, - "helmsman": 3.24e-07, - "hendon": 3.24e-07, - "hieroglyphics": 3.24e-07, - "hindley": 3.24e-07, - "hippocampal": 3.24e-07, - "hitchhiker": 3.24e-07, - "hitomi": 3.24e-07, - "hoffa": 3.24e-07, - "hollys": 3.24e-07, - "homophobes": 3.24e-07, - "hosiery": 3.24e-07, - "housemaid": 3.24e-07, - "howler": 3.24e-07, - "hubbub": 3.24e-07, - "huda": 3.24e-07, - "humorously": 3.24e-07, - "husseins": 3.24e-07, - "hydrogenated": 3.24e-07, - "hydrophilic": 3.24e-07, - "ibo": 3.24e-07, - "idw": 3.24e-07, - "ignis": 3.24e-07, - "igt": 3.24e-07, - "ihop": 3.24e-07, - "imitators": 3.24e-07, - "inclusivity": 3.24e-07, - "incorrigible": 3.24e-07, - "insertions": 3.24e-07, - "insinuation": 3.24e-07, - "insulators": 3.24e-07, - "insures": 3.24e-07, - "interceptors": 3.24e-07, - "interchanges": 3.24e-07, - "internationalist": 3.24e-07, - "intersectional": 3.24e-07, - "invicta": 3.24e-07, - "iptv": 3.24e-07, - "irresponsibly": 3.24e-07, - "irreversibly": 3.24e-07, - "islay": 3.24e-07, - "iterate": 3.24e-07, - "itf": 3.24e-07, - "iud": 3.24e-07, - "iwata": 3.24e-07, - "jabari": 3.24e-07, - "jager": 3.24e-07, - "jerez": 3.24e-07, - "journaling": 3.24e-07, - "junius": 3.24e-07, - "kacey": 3.24e-07, - "karthik": 3.24e-07, - "katharina": 3.24e-07, - "katia": 3.24e-07, - "keeled": 3.24e-07, - "kenseth": 3.24e-07, - "keselowski": 3.24e-07, - "kilbride": 3.24e-07, - "kinsella": 3.24e-07, - "kirill": 3.24e-07, - "kirks": 6.92e-08, - "klee": 3.24e-07, - "knotty": 3.24e-07, - "knut": 3.24e-07, - "kotaku": 3.24e-07, - "kwai": 3.24e-07, - "lamas": 1.58e-07, - "lampert": 3.24e-07, - "landlines": 3.24e-07, - "lassen": 3.24e-07, - "latrine": 3.24e-07, - "latrines": 3.24e-07, - "lavine": 3.24e-07, - "leasehold": 3.24e-07, - "lech": 3.24e-07, - "legwork": 3.24e-07, - "leng": 3.24e-07, - "lepidoptera": 3.24e-07, - "leste": 3.24e-07, - "liaise": 3.24e-07, - "liaoning": 3.24e-07, - "libertine": 3.24e-07, - "libyans": 3.24e-07, - "lich": 3.24e-07, - "ligation": 3.24e-07, - "lightyear": 3.24e-07, - "limpopo": 3.24e-07, - "lindo": 3.24e-07, - "lissa": 3.24e-07, - "llandudno": 3.24e-07, - "lockouts": 3.24e-07, - "loli": 3.24e-07, - "lombok": 3.24e-07, - "ltv": 3.24e-07, - "luminescence": 3.24e-07, - "lune": 3.24e-07, - "macedon": 3.24e-07, - "machi": 3.24e-07, - "manoj": 3.24e-07, - "marat": 3.24e-07, - "masturbates": 3.24e-07, - "matson": 3.24e-07, - "mawson": 3.24e-07, - "mayans": 3.24e-07, - "maz": 3.24e-07, - "mcalpine": 3.24e-07, - "mcdonagh": 3.24e-07, - "mcginnis": 3.24e-07, - "mckellar": 3.24e-07, - "mdm": 3.24e-07, - "medallists": 3.24e-07, - "merriment": 3.24e-07, - "mertens": 3.24e-07, - "mignolet": 3.24e-07, - "minigames": 3.24e-07, - "misa": 3.24e-07, - "misbehave": 3.24e-07, - "mischa": 3.24e-07, - "mishandled": 3.24e-07, - "misshapen": 3.24e-07, - "mississippian": 3.24e-07, - "mittal": 3.24e-07, - "moccasins": 3.24e-07, - "mogg": 3.24e-07, - "moisturiser": 3.24e-07, - "moisturize": 3.24e-07, - "mondale": 3.24e-07, - "monotheistic": 3.24e-07, - "montezuma": 3.24e-07, - "mops": 3.24e-07, - "mtc": 3.24e-07, - "muggles": 3.24e-07, - "muhammadu": 3.24e-07, - "mva": 3.24e-07, - "myc": 3.24e-07, - "myelin": 3.24e-07, - "neils": 5.5e-08, - "neocon": 3.24e-07, - "neocons": 3.24e-07, - "nepa": 3.24e-07, - "newsstands": 3.24e-07, - "niacin": 3.24e-07, - "nickerson": 3.24e-07, - "nigra": 3.24e-07, - "niqab": 3.24e-07, - "nms": 3.24e-07, - "noma": 3.24e-07, - "nonhuman": 3.24e-07, - "nosebleed": 3.24e-07, - "nought": 3.24e-07, - "nri": 3.24e-07, - "nussbaum": 3.24e-07, - "okeeffe": 3.24e-07, - "offal": 3.24e-07, - "offsite": 3.24e-07, - "oldsmobile": 3.24e-07, - "omnium": 3.24e-07, - "oooooh": 3.24e-07, - "oratorio": 3.24e-07, - "oryx": 3.24e-07, - "otr": 3.24e-07, - "outshine": 3.24e-07, - "paddocks": 3.24e-07, - "palisade": 3.24e-07, - "palmdale": 3.24e-07, - "paratrooper": 3.24e-07, - "pardew": 3.24e-07, - "pardo": 3.24e-07, - "patrimony": 3.24e-07, - "perchance": 3.24e-07, - "peshmerga": 3.24e-07, - "petrograd": 3.24e-07, - "phonetically": 3.24e-07, - "phosphorous": 3.24e-07, - "pickford": 3.24e-07, - "pitied": 3.24e-07, - "pizarro": 3.24e-07, - "plaything": 3.24e-07, - "pnr": 3.24e-07, - "pocketing": 3.24e-07, - "podiums": 3.24e-07, - "pof": 3.24e-07, - "polycarbonate": 3.24e-07, - "pontificate": 3.24e-07, - "pou": 3.24e-07, - "ppb": 3.24e-07, - "preakness": 3.24e-07, - "precast": 3.24e-07, - "predestination": 3.24e-07, - "prefaced": 3.24e-07, - "proliferating": 3.24e-07, - "provocations": 3.24e-07, - "prussians": 3.24e-07, - "ptr": 3.24e-07, - "publican": 3.24e-07, - "pulverized": 3.24e-07, - "pumice": 3.24e-07, - "pupa": 3.24e-07, - "pyrex": 3.24e-07, - "ramses": 3.24e-07, - "rancor": 3.24e-07, - "ranieri": 3.24e-07, - "rationalized": 3.24e-07, - "ratner": 3.24e-07, - "reactivation": 3.24e-07, - "realists": 3.24e-07, - "reassert": 3.24e-07, - "reboots": 3.24e-07, - "recline": 3.24e-07, - "rectifier": 3.24e-07, - "redfield": 3.24e-07, - "rediscovery": 3.24e-07, - "rehash": 3.24e-07, - "reinterpretation": 3.24e-07, - "rejuvenating": 3.24e-07, - "replenishing": 3.24e-07, - "residuals": 3.24e-07, - "reticulum": 3.24e-07, - "retook": 3.24e-07, - "rif": 3.24e-07, - "righting": 3.24e-07, - "rikers": 7.08e-08, - "riotous": 3.24e-07, - "roasters": 3.24e-07, - "roca": 3.24e-07, - "rocketed": 3.24e-07, - "rolland": 3.24e-07, - "sabra": 3.24e-07, - "saddams": 3.24e-07, - "sambo": 3.24e-07, - "sangria": 3.24e-07, - "sano": 3.24e-07, - "scavenge": 3.24e-07, - "scg": 3.24e-07, - "schlegel": 3.24e-07, - "scowl": 3.24e-07, - "scribbles": 3.24e-07, - "seema": 3.24e-07, - "selden": 3.24e-07, - "selene": 3.24e-07, - "senescence": 3.24e-07, - "separable": 3.24e-07, - "sheared": 3.24e-07, - "shied": 3.24e-07, - "shortwave": 3.24e-07, - "shrubbery": 3.24e-07, - "shura": 3.24e-07, - "sila": 3.24e-07, - "siro": 3.24e-07, - "skidded": 3.24e-07, - "snc": 3.24e-07, - "snorts": 3.24e-07, - "softener": 3.24e-07, - "soledad": 3.24e-07, - "solidifies": 3.24e-07, - "sookie": 3.24e-07, - "sooty": 3.24e-07, - "spillover": 3.24e-07, - "spunky": 3.24e-07, - "squatted": 3.24e-07, - "squeaks": 3.24e-07, - "ssds": 3.24e-07, - "stagg": 3.24e-07, - "stanfords": 3.24e-07, - "statically": 3.24e-07, - "stephane": 3.24e-07, - "stingrays": 3.24e-07, - "stowaway": 3.24e-07, - "streeter": 3.24e-07, - "stretchers": 3.24e-07, - "strictures": 3.24e-07, - "stylised": 3.24e-07, - "sublimation": 3.24e-07, - "suboptimal": 3.24e-07, - "subsea": 3.24e-07, - "swa": 3.24e-07, - "swaraj": 3.24e-07, - "sweepers": 3.24e-07, - "swenson": 3.24e-07, - "switcher": 3.24e-07, - "sympathetically": 3.24e-07, - "tacking": 3.24e-07, - "tadpole": 3.24e-07, - "takei": 3.24e-07, - "tamir": 3.24e-07, - "tarred": 3.24e-07, - "tashkent": 3.24e-07, - "terns": 3.24e-07, - "terr": 3.24e-07, - "terran": 3.24e-07, - "tfs": 3.24e-07, - "theologically": 3.24e-07, - "timeslot": 3.24e-07, - "tirana": 3.24e-07, - "tiwari": 3.24e-07, - "tma": 3.24e-07, - "tobruk": 3.24e-07, - "tomar": 3.24e-07, - "tommie": 3.24e-07, - "transmembrane": 3.24e-07, - "travail": 3.24e-07, - "trophic": 3.24e-07, - "tsarist": 3.24e-07, - "tso": 3.24e-07, - "tubbs": 3.24e-07, - "tuckers": 6.92e-08, - "turpin": 3.24e-07, - "uke": 3.24e-07, - "unbuttoned": 3.24e-07, - "underlings": 3.24e-07, - "underperformed": 3.24e-07, - "uneasiness": 3.24e-07, - "unfailing": 3.24e-07, - "unfavorably": 3.24e-07, - "uniqlo": 3.24e-07, - "unknowing": 3.24e-07, - "unnerved": 3.24e-07, - "untie": 3.24e-07, - "untouchables": 3.24e-07, - "utilitarianism": 3.24e-07, - "vella": 3.24e-07, - "veneers": 3.24e-07, - "venter": 3.24e-07, - "ventilators": 3.24e-07, - "veronika": 3.24e-07, - "vetoes": 3.24e-07, - "volk": 3.24e-07, - "walkabout": 3.24e-07, - "wass": 3.24e-07, - "waterboarding": 3.24e-07, - "wbo": 3.24e-07, - "wearin": 3.24e-07, - "weaved": 3.24e-07, - "wellman": 3.24e-07, - "westwards": 3.24e-07, - "westworld": 3.24e-07, - "whitlam": 3.24e-07, - "windowsill": 3.24e-07, - "wining": 3.24e-07, - "wiry": 3.24e-07, - "wittenberg": 3.24e-07, - "wobbles": 3.24e-07, - "womanly": 3.24e-07, - "wrestles": 3.24e-07, - "xanadu": 3.24e-07, - "yancey": 3.24e-07, - "yano": 3.24e-07, - "yash": 3.24e-07, - "yeet": 3.24e-07, - "yhwh": 3.24e-07, - "zealot": 3.24e-07, - "zoologist": 3.24e-07, - "abattoir": 3.16e-07, - "abbess": 3.16e-07, - "abidjan": 3.16e-07, - "ableton": 3.16e-07, - "abp": 3.16e-07, - "accede": 3.16e-07, - "accrual": 3.16e-07, - "achiever": 3.16e-07, - "actuary": 3.16e-07, - "adagio": 3.16e-07, - "agostino": 3.16e-07, - "aircrew": 3.16e-07, - "airdrie": 3.16e-07, - "airmail": 3.16e-07, - "alchemical": 3.16e-07, - "aleutian": 3.16e-07, - "alexia": 3.16e-07, - "allegri": 3.16e-07, - "amputees": 3.16e-07, - "anaphylactic": 3.16e-07, - "anatomic": 3.16e-07, - "angering": 3.16e-07, - "angiogenesis": 3.16e-07, - "annunciation": 3.16e-07, - "aor": 3.16e-07, - "appl": 3.16e-07, - "apra": 3.16e-07, - "archon": 3.16e-07, - "arl": 3.16e-07, - "arrondissement": 3.16e-07, - "arthurian": 3.16e-07, - "articular": 3.16e-07, - "assemblys": 3.16e-07, - "asylums": 3.16e-07, - "avarice": 3.16e-07, - "avenida": 3.16e-07, - "averting": 3.16e-07, - "avicii": 3.16e-07, - "awsome": 3.16e-07, - "azkaban": 3.16e-07, - "badr": 3.16e-07, - "bajaj": 3.16e-07, - "ballantine": 3.16e-07, - "bannerman": 3.16e-07, - "barba": 3.16e-07, - "bares": 3.16e-07, - "barged": 3.16e-07, - "barony": 3.16e-07, - "barret": 3.16e-07, - "bashes": 3.16e-07, - "bata": 3.16e-07, - "bem": 3.16e-07, - "bernhardt": 3.16e-07, - "bhi": 3.16e-07, - "biding": 3.16e-07, - "bioscience": 3.16e-07, - "blackmore": 3.16e-07, - "blacksburg": 3.16e-07, - "blogpost": 3.16e-07, - "boastful": 3.16e-07, - "boatman": 3.16e-07, - "bogeyman": 3.16e-07, - "boney": 3.16e-07, - "boning": 3.16e-07, - "bonito": 3.16e-07, - "bork": 3.16e-07, - "botnet": 3.16e-07, - "bracketed": 3.16e-07, - "brads": 9.77e-08, - "braiding": 3.16e-07, - "brainerd": 3.16e-07, - "brazos": 3.16e-07, - "breslin": 3.16e-07, - "brien": 3.16e-07, - "brittney": 3.16e-07, - "brno": 3.16e-07, - "brokerages": 3.16e-07, - "bucked": 3.16e-07, - "bulking": 3.16e-07, - "bundestag": 3.16e-07, - "buttercream": 3.16e-07, - "butyl": 3.16e-07, - "canonization": 3.16e-07, - "capitulate": 3.16e-07, - "caramelized": 3.16e-07, - "carmody": 3.16e-07, - "cashless": 3.16e-07, - "catalunya": 3.16e-07, - "catskill": 3.16e-07, - "cavanagh": 3.16e-07, - "cbss": 3.16e-07, - "cbse": 3.16e-07, - "ccr": 3.16e-07, - "cdi": 3.16e-07, - "centerline": 3.16e-07, - "centurylink": 3.16e-07, - "charmaine": 3.16e-07, - "chars": 3.16e-07, - "chaudhary": 3.16e-07, - "chaudhry": 3.16e-07, - "chd": 3.16e-07, - "chianti": 3.16e-07, - "chicagoland": 3.16e-07, - "chickpea": 3.16e-07, - "chiropractors": 3.16e-07, - "chocolat": 3.16e-07, - "christiansen": 3.16e-07, - "chuan": 3.16e-07, - "chuckie": 3.16e-07, - "cim": 3.16e-07, - "cima": 3.16e-07, - "conchita": 3.16e-07, - "concordance": 3.16e-07, - "congresss": 3.16e-07, - "conwy": 3.16e-07, - "coot": 3.16e-07, - "cornstarch": 3.16e-07, - "crawfords": 5.25e-08, - "cruiserweight": 3.16e-07, - "dairies": 3.16e-07, - "dammed": 3.16e-07, - "daugherty": 3.16e-07, - "dayne": 3.16e-07, - "decimate": 3.16e-07, - "decrying": 3.16e-07, - "deform": 3.16e-07, - "defrost": 3.16e-07, - "dele": 3.16e-07, - "delegating": 3.16e-07, - "deltas": 2.09e-07, - "dench": 3.16e-07, - "denman": 3.16e-07, - "deptford": 3.16e-07, - "derwent": 3.16e-07, - "detentions": 3.16e-07, - "dewan": 3.16e-07, - "dexters": 3.16e-07, - "dfa": 3.16e-07, - "disbarred": 3.16e-07, - "disbursed": 3.16e-07, - "discipleship": 3.16e-07, - "discontinuity": 3.16e-07, - "disquiet": 3.16e-07, - "doberman": 3.16e-07, - "domesday": 3.16e-07, - "doodling": 3.16e-07, - "doofus": 3.16e-07, - "dotty": 3.16e-07, - "downbeat": 3.16e-07, - "downforce": 3.16e-07, - "drillers": 3.16e-07, - "droit": 3.16e-07, - "droopy": 3.16e-07, - "drysdale": 3.16e-07, - "duchamp": 3.16e-07, - "dumpty": 3.16e-07, - "dunce": 3.16e-07, - "dva": 3.16e-07, - "eamonn": 3.16e-07, - "eba": 3.16e-07, - "effigies": 3.16e-07, - "egbert": 3.16e-07, - "ehud": 3.16e-07, - "ellens": 3.16e-07, - "elmhurst": 3.16e-07, - "elope": 3.16e-07, - "elucidated": 3.16e-07, - "elvin": 3.16e-07, - "encamped": 3.16e-07, - "encampments": 3.16e-07, - "encloses": 3.16e-07, - "endearment": 3.16e-07, - "endzone": 3.16e-07, - "enhancers": 3.16e-07, - "enthroned": 3.16e-07, - "equalized": 3.16e-07, - "errata": 3.16e-07, - "essa": 3.16e-07, - "estrella": 3.16e-07, - "evander": 3.16e-07, - "ewes": 3.16e-07, - "exacerbates": 3.16e-07, - "expository": 3.16e-07, - "farragut": 3.16e-07, - "farrington": 3.16e-07, - "fatten": 3.16e-07, - "fba": 3.16e-07, - "feliciano": 3.16e-07, - "fernand": 3.16e-07, - "filipe": 3.16e-07, - "fitzsimmons": 3.16e-07, - "fizzle": 3.16e-07, - "flac": 3.16e-07, - "flemington": 3.16e-07, - "fletchers": 5.01e-08, - "fon": 3.16e-07, - "footman": 3.16e-07, - "freeview": 3.16e-07, - "fsm": 3.16e-07, - "fulfils": 3.16e-07, - "furthers": 3.16e-07, - "gamal": 3.16e-07, - "ganymede": 3.16e-07, - "garcinia": 3.16e-07, - "geomagnetic": 3.16e-07, - "gerontology": 3.16e-07, - "getup": 3.16e-07, - "gisborne": 3.16e-07, - "glaciation": 3.16e-07, - "glutamine": 3.16e-07, - "gomorrah": 3.16e-07, - "goofball": 3.16e-07, - "gorton": 3.16e-07, - "gracing": 3.16e-07, - "gravest": 3.16e-07, - "gronkowski": 3.16e-07, - "gustafson": 3.16e-07, - "hackensack": 3.16e-07, - "hairstylist": 3.16e-07, - "hajime": 3.16e-07, - "haldeman": 3.16e-07, - "hammonds": 1e-07, - "haney": 3.16e-07, - "happ": 3.16e-07, - "hardiness": 3.16e-07, - "hariri": 3.16e-07, - "harping": 3.16e-07, - "harpy": 3.16e-07, - "hashimoto": 3.16e-07, - "havelock": 3.16e-07, - "hazara": 3.16e-07, - "heckling": 3.16e-07, - "helipad": 3.16e-07, - "helmer": 3.16e-07, - "helter": 3.16e-07, - "hemorrhaging": 3.16e-07, - "herrings": 3.16e-07, - "hie": 3.16e-07, - "hight": 3.16e-07, - "hippocrates": 3.16e-07, - "hissed": 3.16e-07, - "hite": 3.16e-07, - "hoarded": 3.16e-07, - "hodson": 3.16e-07, - "homeric": 3.16e-07, - "horseracing": 3.16e-07, - "hortense": 3.16e-07, - "hps": 2.57e-07, - "hulking": 3.16e-07, - "humanoids": 3.16e-07, - "hundley": 3.16e-07, - "hypnotist": 3.16e-07, - "hypothesize": 3.16e-07, - "ibaka": 3.16e-07, - "ifr": 3.16e-07, - "iheartradio": 3.16e-07, - "iloilo": 3.16e-07, - "imbeciles": 3.16e-07, - "incites": 3.16e-07, - "infamously": 3.16e-07, - "infringes": 3.16e-07, - "infusing": 3.16e-07, - "intellectualism": 3.16e-07, - "interferometer": 3.16e-07, - "inverting": 3.16e-07, - "invictus": 3.16e-07, - "ipso": 3.16e-07, - "ipsos": 3.16e-07, - "irreparably": 3.16e-07, - "islamophobic": 3.16e-07, - "isotropic": 3.16e-07, - "itches": 3.16e-07, - "iti": 3.16e-07, - "jacquard": 3.16e-07, - "jaitley": 3.16e-07, - "jaunty": 3.16e-07, - "jayhawks": 3.16e-07, - "jenkinson": 3.16e-07, - "jobseekers": 3.16e-07, - "jonesboro": 3.16e-07, - "jpy": 3.16e-07, - "jughead": 3.16e-07, - "julianna": 3.16e-07, - "jutland": 3.16e-07, - "kamil": 3.16e-07, - "karna": 3.16e-07, - "karo": 3.16e-07, - "kayleigh": 3.16e-07, - "khakis": 3.16e-07, - "kiribati": 3.16e-07, - "klitschko": 3.16e-07, - "knave": 3.16e-07, - "kneecap": 3.16e-07, - "knowlton": 3.16e-07, - "knudsen": 3.16e-07, - "kogan": 3.16e-07, - "kurosawa": 3.16e-07, - "kurtis": 3.16e-07, - "lactating": 3.16e-07, - "lakefront": 3.16e-07, - "laminar": 3.16e-07, - "lamy": 3.16e-07, - "lanny": 3.16e-07, - "lans": 5.62e-08, - "lauds": 3.16e-07, - "leda": 3.16e-07, - "legalisation": 3.16e-07, - "lemmings": 3.16e-07, - "lemmon": 3.16e-07, - "lenten": 3.16e-07, - "leonora": 3.16e-07, - "litigants": 3.16e-07, - "logbook": 3.16e-07, - "logistically": 3.16e-07, - "lolz": 3.16e-07, - "loneliest": 3.16e-07, - "longford": 3.16e-07, - "looper": 3.16e-07, - "lsi": 3.16e-07, - "lullabies": 3.16e-07, - "lumumba": 3.16e-07, - "maf": 3.16e-07, - "magruder": 3.16e-07, - "malick": 3.16e-07, - "malkovich": 3.16e-07, - "malmo": 3.16e-07, - "mange": 3.16e-07, - "mansell": 3.16e-07, - "marca": 3.16e-07, - "marika": 3.16e-07, - "mariposa": 3.16e-07, - "marksmen": 3.16e-07, - "mashing": 3.16e-07, - "matey": 3.16e-07, - "mathematica": 3.16e-07, - "mato": 3.16e-07, - "mch": 3.16e-07, - "merrimack": 3.16e-07, - "methodism": 3.16e-07, - "metrology": 3.16e-07, - "mirna": 3.16e-07, - "miscalculated": 3.16e-07, - "miseries": 3.16e-07, - "mitcham": 3.16e-07, - "mobo": 3.16e-07, - "modding": 3.16e-07, - "moller": 3.16e-07, - "molluscs": 3.16e-07, - "mond": 3.16e-07, - "monopolistic": 3.16e-07, - "monotheism": 3.16e-07, - "monti": 3.16e-07, - "moonlighting": 3.16e-07, - "moravia": 3.16e-07, - "morelli": 3.16e-07, - "morphologically": 3.16e-07, - "moshi": 3.16e-07, - "motorboat": 3.16e-07, - "motte": 3.16e-07, - "mtl": 3.16e-07, - "multitask": 3.16e-07, - "mummys": 3.16e-07, - "murfreesboro": 3.16e-07, - "murs": 3.16e-07, - "nanna": 3.16e-07, - "nanoparticle": 3.16e-07, - "narcolepsy": 3.16e-07, - "nasl": 3.16e-07, - "netherland": 3.16e-07, - "neverending": 3.16e-07, - "nfa": 3.16e-07, - "ngs": 3.16e-07, - "niamh": 3.16e-07, - "niantic": 3.16e-07, - "nihilistic": 3.16e-07, - "niven": 3.16e-07, - "noll": 3.16e-07, - "nollywood": 3.16e-07, - "northstar": 3.16e-07, - "nostradamus": 3.16e-07, - "nowitzki": 3.16e-07, - "ntr": 3.16e-07, - "numero": 3.16e-07, - "numismatic": 3.16e-07, - "nunnery": 3.16e-07, - "offroad": 3.16e-07, - "omnia": 3.16e-07, - "oregonian": 3.16e-07, - "originators": 3.16e-07, - "ostensible": 3.16e-07, - "overactive": 3.16e-07, - "pareto": 3.16e-07, - "pathologies": 3.16e-07, - "paves": 3.16e-07, - "pbl": 3.16e-07, - "pde": 3.16e-07, - "peculiarity": 3.16e-07, - "pedaling": 3.16e-07, - "peridot": 3.16e-07, - "petrus": 3.16e-07, - "phaser": 3.16e-07, - "phylogeny": 3.16e-07, - "physic": 3.16e-07, - "pica": 3.16e-07, - "pickin": 3.16e-07, - "pickpocket": 3.16e-07, - "pineal": 3.16e-07, - "planking": 3.16e-07, - "playmaking": 3.16e-07, - "poirier": 3.16e-07, - "poopy": 3.16e-07, - "popovich": 3.16e-07, - "postmenopausal": 3.16e-07, - "poutine": 3.16e-07, - "praeger": 3.16e-07, - "preet": 3.16e-07, - "preform": 3.16e-07, - "prelim": 3.16e-07, - "prenup": 3.16e-07, - "preys": 3.16e-07, - "prnewswire": 3.16e-07, - "prongs": 3.16e-07, - "pronunciations": 3.16e-07, - "prospering": 3.16e-07, - "ptt": 3.16e-07, - "puta": 3.16e-07, - "qd": 3.16e-07, - "quarto": 3.16e-07, - "questioner": 3.16e-07, - "quintessentially": 3.16e-07, - "quora": 3.16e-07, - "qwerty": 3.16e-07, - "radiometric": 3.16e-07, - "rasta": 3.16e-07, - "raved": 3.16e-07, - "raynor": 3.16e-07, - "rdf": 3.16e-07, - "reconfiguration": 3.16e-07, - "reforestation": 3.16e-07, - "refunding": 3.16e-07, - "regretfully": 3.16e-07, - "reinstating": 3.16e-07, - "rejoices": 3.16e-07, - "relishing": 3.16e-07, - "remarriage": 3.16e-07, - "renaud": 3.16e-07, - "renshaw": 3.16e-07, - "retrieves": 3.16e-07, - "returner": 3.16e-07, - "revelry": 3.16e-07, - "riba": 3.16e-07, - "rime": 3.16e-07, - "rotisserie": 3.16e-07, - "rrna": 3.16e-07, - "sakai": 3.16e-07, - "samira": 3.16e-07, - "sanded": 3.16e-07, - "sapp": 3.16e-07, - "saras": 5.37e-08, - "sashes": 3.16e-07, - "saxton": 3.16e-07, - "sayer": 3.16e-07, - "scapegoats": 3.16e-07, - "sceptic": 3.16e-07, - "scrim": 3.16e-07, - "seahorse": 3.16e-07, - "sebring": 3.16e-07, - "seductively": 3.16e-07, - "sefton": 3.16e-07, - "selim": 3.16e-07, - "seraphim": 3.16e-07, - "sethi": 3.16e-07, - "shafer": 3.16e-07, - "shai": 3.16e-07, - "shampoos": 3.16e-07, - "shar": 3.16e-07, - "sharman": 3.16e-07, - "sharons": 3.16e-07, - "sheepskin": 3.16e-07, - "sherbet": 3.16e-07, - "shimizu": 3.16e-07, - "shoreham": 3.16e-07, - "sickens": 3.16e-07, - "siddhartha": 3.16e-07, - "sidekicks": 3.16e-07, - "simeone": 3.16e-07, - "simpleton": 3.16e-07, - "sissoko": 3.16e-07, - "skeeter": 3.16e-07, - "skelter": 3.16e-07, - "skilfully": 3.16e-07, - "skippers": 1.07e-07, - "skt": 3.16e-07, - "skylights": 3.16e-07, - "slovakian": 3.16e-07, - "smallwood": 3.16e-07, - "smirnoff": 3.16e-07, - "sncf": 3.16e-07, - "snobbish": 3.16e-07, - "snowdonia": 3.16e-07, - "soapbox": 3.16e-07, - "spearheading": 3.16e-07, - "spindles": 3.16e-07, - "spooning": 3.16e-07, - "squeals": 3.16e-07, - "ssg": 3.16e-07, - "standardisation": 3.16e-07, - "stanfield": 3.16e-07, - "stanislas": 3.16e-07, - "starches": 3.16e-07, - "starships": 3.16e-07, - "stedman": 3.16e-07, - "storks": 3.16e-07, - "strider": 3.16e-07, - "stutters": 3.16e-07, - "supplication": 3.16e-07, - "swayze": 3.16e-07, - "sylvania": 3.16e-07, - "symbolises": 3.16e-07, - "tabulated": 3.16e-07, - "tallying": 3.16e-07, - "taxon": 3.16e-07, - "tbm": 3.16e-07, - "tdd": 3.16e-07, - "teat": 3.16e-07, - "techie": 3.16e-07, - "teleprompter": 3.16e-07, - "tere": 3.16e-07, - "testa": 3.16e-07, - "tevez": 3.16e-07, - "textural": 3.16e-07, - "tgf": 3.16e-07, - "thunderclap": 3.16e-07, - "tiana": 3.16e-07, - "tikrit": 3.16e-07, - "toki": 3.16e-07, - "trailblazers": 3.16e-07, - "transiting": 3.16e-07, - "transpires": 3.16e-07, - "transponders": 3.16e-07, - "trespasses": 3.16e-07, - "trop": 3.16e-07, - "trowbridge": 3.16e-07, - "trundle": 3.16e-07, - "tsonga": 3.16e-07, - "tumbles": 3.16e-07, - "twee": 3.16e-07, - "tycho": 3.16e-07, - "tyndall": 3.16e-07, - "ucsd": 3.16e-07, - "uncoordinated": 3.16e-07, - "underwhelmed": 3.16e-07, - "unrwa": 3.16e-07, - "unstuck": 3.16e-07, - "unsuited": 3.16e-07, - "vapid": 3.16e-07, - "visser": 3.16e-07, - "vitale": 3.16e-07, - "vivre": 3.16e-07, - "wahl": 3.16e-07, - "wallflower": 3.16e-07, - "walts": 3.16e-07, - "wani": 3.16e-07, - "watercolours": 3.16e-07, - "watersports": 3.16e-07, - "wec": 3.16e-07, - "whi": 3.16e-07, - "whitewashing": 3.16e-07, - "wingfield": 3.16e-07, - "wishbone": 3.16e-07, - "wistfully": 3.16e-07, - "worshipful": 3.16e-07, - "wows": 6.03e-08, - "xhaka": 3.16e-07, - "xxiv": 3.16e-07, - "yeasts": 3.16e-07, - "yn": 3.16e-07, - "yunus": 3.16e-07, - "zeng": 3.16e-07, - "abramson": 3.09e-07, - "acca": 3.09e-07, - "adt": 3.09e-07, - "aeration": 3.09e-07, - "aftershocks": 3.09e-07, - "agassi": 3.09e-07, - "agassiz": 3.09e-07, - "aip": 3.09e-07, - "akita": 3.09e-07, - "akon": 3.09e-07, - "allin": 3.09e-07, - "aloysius": 3.09e-07, - "altair": 3.09e-07, - "anbar": 3.09e-07, - "anglian": 3.09e-07, - "annoyances": 3.09e-07, - "annul": 3.09e-07, - "antiaircraft": 3.09e-07, - "apg": 3.09e-07, - "aphorism": 3.09e-07, - "aplenty": 3.09e-07, - "ararat": 3.09e-07, - "archeologists": 3.09e-07, - "asami": 3.09e-07, - "aspartame": 3.09e-07, - "assimilating": 3.09e-07, - "attractively": 3.09e-07, - "auch": 3.09e-07, - "austens": 3.09e-07, - "austral": 3.09e-07, - "autobahn": 3.09e-07, - "aviary": 3.09e-07, - "baddie": 3.09e-07, - "ballerinas": 3.09e-07, - "bandleader": 3.09e-07, - "banknote": 3.09e-07, - "banshees": 3.09e-07, - "bcl": 3.09e-07, - "beachside": 3.09e-07, - "beauvoir": 3.09e-07, - "belittled": 3.09e-07, - "belton": 3.09e-07, - "benediction": 3.09e-07, - "betrothal": 3.09e-07, - "bfg": 3.09e-07, - "bhaskar": 3.09e-07, - "bijou": 3.09e-07, - "biota": 3.09e-07, - "biryani": 3.09e-07, - "boatload": 3.09e-07, - "bodleian": 3.09e-07, - "bodysuit": 3.09e-07, - "bolero": 3.09e-07, - "bolin": 3.09e-07, - "botw": 3.09e-07, - "bourbons": 3.09e-07, - "brasserie": 3.09e-07, - "breastplate": 3.09e-07, - "breathtakingly": 3.09e-07, - "briana": 3.09e-07, - "brooches": 3.09e-07, - "buch": 3.09e-07, - "budgie": 3.09e-07, - "bul": 3.09e-07, - "burris": 3.09e-07, - "buzzwords": 3.09e-07, - "cadavers": 3.09e-07, - "calabasas": 3.09e-07, - "canna": 3.09e-07, - "capsicum": 3.09e-07, - "carding": 3.09e-07, - "cardiopulmonary": 3.09e-07, - "casuals": 3.09e-07, - "cayuga": 3.09e-07, - "cfpb": 3.09e-07, - "chaco": 3.09e-07, - "chads": 9.55e-08, - "chaffetz": 3.09e-07, - "chagall": 3.09e-07, - "chantelle": 3.09e-07, - "chantry": 3.09e-07, - "chauvinism": 3.09e-07, - "cheol": 3.09e-07, - "cherbourg": 3.09e-07, - "chessboard": 3.09e-07, - "chilis": 1.55e-07, - "chiltern": 3.09e-07, - "chorley": 3.09e-07, - "christophers": 5.5e-08, - "cicada": 3.09e-07, - "climes": 3.09e-07, - "cny": 3.09e-07, - "cobol": 3.09e-07, - "codys": 3.09e-07, - "colemans": 3.09e-07, - "collett": 3.09e-07, - "collude": 3.09e-07, - "comparator": 3.09e-07, - "compasses": 3.09e-07, - "conductance": 3.09e-07, - "configurable": 3.09e-07, - "conflated": 3.09e-07, - "conjectured": 3.09e-07, - "contessa": 3.09e-07, - "cookout": 3.09e-07, - "copywriting": 3.09e-07, - "corliss": 3.09e-07, - "cornerstones": 3.09e-07, - "coterie": 3.09e-07, - "councilwoman": 3.09e-07, - "coverages": 3.09e-07, - "coves": 3.09e-07, - "crazily": 3.09e-07, - "creationist": 3.09e-07, - "cress": 3.09e-07, - "cron": 3.09e-07, - "croutons": 3.09e-07, - "cruze": 3.09e-07, - "csis": 3.09e-07, - "cultivators": 3.09e-07, - "cupped": 3.09e-07, - "cuties": 3.09e-07, - "cvc": 3.09e-07, - "damask": 3.09e-07, - "damme": 3.09e-07, - "daniella": 3.09e-07, - "daresay": 3.09e-07, - "deceiver": 3.09e-07, - "deceptions": 3.09e-07, - "defections": 3.09e-07, - "deliberated": 3.09e-07, - "delimited": 3.09e-07, - "delish": 3.09e-07, - "delray": 3.09e-07, - "demonized": 3.09e-07, - "dere": 3.09e-07, - "desdemona": 3.09e-07, - "destin": 3.09e-07, - "devours": 3.09e-07, - "diorama": 3.09e-07, - "diptera": 3.09e-07, - "disbanding": 3.09e-07, - "discolored": 3.09e-07, - "discontented": 3.09e-07, - "disenfranchisement": 3.09e-07, - "disorienting": 3.09e-07, - "dolomites": 3.09e-07, - "dramatics": 3.09e-07, - "drumsticks": 3.09e-07, - "dunaway": 3.09e-07, - "dunphy": 3.09e-07, - "eap": 3.09e-07, - "earphone": 3.09e-07, - "eastleigh": 3.09e-07, - "edgbaston": 3.09e-07, - "egged": 3.09e-07, - "eighths": 3.09e-07, - "embarkation": 3.09e-07, - "emts": 5.01e-08, - "ena": 3.09e-07, - "encroach": 3.09e-07, - "eni": 3.09e-07, - "epidemiologist": 3.09e-07, - "erebus": 3.09e-07, - "eschewed": 3.09e-07, - "esper": 3.09e-07, - "estuarine": 3.09e-07, - "eugen": 3.09e-07, - "evaluator": 3.09e-07, - "exempts": 3.09e-07, - "expeditiously": 3.09e-07, - "expositions": 3.09e-07, - "expound": 3.09e-07, - "fashionably": 3.09e-07, - "fathoms": 3.09e-07, - "feathery": 3.09e-07, - "feedings": 3.09e-07, - "feelgood": 3.09e-07, - "fellatio": 3.09e-07, - "fff": 3.09e-07, - "fft": 3.09e-07, - "fifo": 3.09e-07, - "fitchburg": 3.09e-07, - "fitzgeralds": 5.5e-08, - "fitzwilliam": 3.09e-07, - "fizzled": 3.09e-07, - "flapper": 3.09e-07, - "flay": 3.09e-07, - "flintstones": 3.09e-07, - "floodlights": 3.09e-07, - "florets": 3.09e-07, - "flyby": 3.09e-07, - "foibles": 3.09e-07, - "fonseca": 3.09e-07, - "fortis": 3.09e-07, - "foundries": 3.09e-07, - "fraudster": 3.09e-07, - "frazzled": 3.09e-07, - "fren": 3.09e-07, - "friendless": 3.09e-07, - "friendzone": 3.09e-07, - "frolicking": 3.09e-07, - "frothing": 3.09e-07, - "furtive": 3.09e-07, - "galerie": 3.09e-07, - "galle": 3.09e-07, - "gauged": 3.09e-07, - "gaurav": 3.09e-07, - "geckos": 3.09e-07, - "genealogies": 3.09e-07, - "geneticists": 3.09e-07, - "gennaro": 3.09e-07, - "geologically": 3.09e-07, - "ghulam": 3.09e-07, - "gimbal": 3.09e-07, - "gona": 3.09e-07, - "gosford": 3.09e-07, - "grandfathered": 3.09e-07, - "grc": 3.09e-07, - "greggs": 9.33e-08, - "gunderson": 3.09e-07, - "gunnison": 3.09e-07, - "guppy": 3.09e-07, - "guyanese": 3.09e-07, - "guzzling": 3.09e-07, - "gynaecology": 3.09e-07, - "hadfield": 3.09e-07, - "hammett": 3.09e-07, - "handstand": 3.09e-07, - "harambe": 3.09e-07, - "hardaway": 3.09e-07, - "hawkesbury": 3.09e-07, - "haydon": 3.09e-07, - "hca": 3.09e-07, - "heracles": 3.09e-07, - "heraldry": 3.09e-07, - "heresies": 3.09e-07, - "hermeneutics": 3.09e-07, - "hersheys": 3.09e-07, - "hittite": 3.09e-07, - "holst": 3.09e-07, - "homesteads": 3.09e-07, - "hori": 3.09e-07, - "horseshoes": 3.09e-07, - "howitzer": 3.09e-07, - "hudgens": 3.09e-07, - "hugger": 3.09e-07, - "humvee": 3.09e-07, - "hungrier": 3.09e-07, - "hyperplasia": 3.09e-07, - "hypertensive": 3.09e-07, - "iaf": 3.09e-07, - "iguanas": 3.09e-07, - "impedes": 3.09e-07, - "imperceptible": 3.09e-07, - "impregnate": 3.09e-07, - "indiscretions": 3.09e-07, - "industrially": 3.09e-07, - "innately": 3.09e-07, - "intuit": 3.09e-07, - "inu": 3.09e-07, - "investiture": 3.09e-07, - "isfahan": 3.09e-07, - "ishii": 3.09e-07, - "itn": 3.09e-07, - "ivanhoe": 3.09e-07, - "izumi": 3.09e-07, - "jackies": 3.09e-07, - "japs": 3.09e-07, - "jes": 3.09e-07, - "jettisoned": 3.09e-07, - "joi": 3.09e-07, - "jrs": 1.29e-07, - "julies": 3.09e-07, - "juncker": 3.09e-07, - "kailash": 3.09e-07, - "kanu": 3.09e-07, - "kaspersky": 3.09e-07, - "katowice": 3.09e-07, - "kellerman": 3.09e-07, - "kendo": 3.09e-07, - "kenshin": 3.09e-07, - "kha": 3.09e-07, - "kiffin": 3.09e-07, - "kirbys": 3.09e-07, - "kirkuk": 3.09e-07, - "knockoff": 3.09e-07, - "kotor": 3.09e-07, - "kristoff": 3.09e-07, - "landmine": 3.09e-07, - "lazaro": 3.09e-07, - "lefebvre": 3.09e-07, - "lefevre": 3.09e-07, - "legitimized": 3.09e-07, - "lenticular": 3.09e-07, - "leven": 3.09e-07, - "leverages": 3.09e-07, - "lexa": 3.09e-07, - "libtards": 3.09e-07, - "lins": 1.23e-07, - "lippincott": 3.09e-07, - "liveable": 3.09e-07, - "lodz": 3.09e-07, - "lollapalooza": 3.09e-07, - "longley": 3.09e-07, - "lowlife": 3.09e-07, - "lra": 3.09e-07, - "ludo": 3.09e-07, - "lusts": 3.09e-07, - "machetes": 3.09e-07, - "machismo": 3.09e-07, - "mahabharata": 3.09e-07, - "malformations": 3.09e-07, - "mammogram": 3.09e-07, - "manaus": 3.09e-07, - "mankato": 3.09e-07, - "marky": 3.09e-07, - "martinsville": 3.09e-07, - "masterplan": 3.09e-07, - "materialise": 3.09e-07, - "maxie": 3.09e-07, - "mccloskey": 3.09e-07, - "mccrory": 3.09e-07, - "mccutcheon": 3.09e-07, - "mcevoy": 3.09e-07, - "mclellan": 3.09e-07, - "meagher": 3.09e-07, - "medico": 3.09e-07, - "medulla": 3.09e-07, - "meerkat": 3.09e-07, - "mesenchymal": 3.09e-07, - "mesopotamian": 3.09e-07, - "metatarsal": 3.09e-07, - "mhm": 3.09e-07, - "microstructure": 3.09e-07, - "mikado": 3.09e-07, - "millen": 3.09e-07, - "mindlessly": 3.09e-07, - "mineralization": 3.09e-07, - "minuteman": 3.09e-07, - "minx": 3.09e-07, - "mips": 3.09e-07, - "misrepresentations": 3.09e-07, - "mistreat": 3.09e-07, - "moes": 7.76e-08, - "mongers": 3.09e-07, - "monroes": 3.09e-07, - "morehead": 3.09e-07, - "mosfet": 3.09e-07, - "mounties": 3.09e-07, - "mpp": 3.09e-07, - "muammar": 3.09e-07, - "mullahs": 3.09e-07, - "mullin": 3.09e-07, - "mycobacterium": 3.09e-07, - "mythologies": 3.09e-07, - "nars": 3.09e-07, - "nebuchadnezzar": 3.09e-07, - "nebulae": 3.09e-07, - "neigh": 3.09e-07, - "nessa": 3.09e-07, - "neuroimaging": 3.09e-07, - "neurologists": 3.09e-07, - "nicodemus": 3.09e-07, - "nikko": 3.09e-07, - "nimh": 3.09e-07, - "nimmo": 3.09e-07, - "noisily": 3.09e-07, - "nprs": 3.09e-07, - "nutting": 3.09e-07, - "oneills": 3.09e-07, - "obliges": 3.09e-07, - "odile": 3.09e-07, - "odours": 3.09e-07, - "ogres": 3.09e-07, - "ogun": 3.09e-07, - "ohhhhh": 3.09e-07, - "oke": 3.09e-07, - "ood": 3.09e-07, - "opines": 3.09e-07, - "oriel": 3.09e-07, - "ork": 3.09e-07, - "osmotic": 3.09e-07, - "ouse": 3.09e-07, - "outgunned": 3.09e-07, - "outlays": 3.09e-07, - "overburdened": 3.09e-07, - "overcharge": 3.09e-07, - "overhauls": 3.09e-07, - "overstatement": 3.09e-07, - "ovo": 3.09e-07, - "oxycontin": 3.09e-07, - "pacified": 3.09e-07, - "pagano": 3.09e-07, - "paki": 3.09e-07, - "palacio": 3.09e-07, - "papadopoulos": 3.09e-07, - "paragliding": 3.09e-07, - "paramore": 3.09e-07, - "pastes": 3.09e-07, - "pasteurized": 3.09e-07, - "pasties": 3.09e-07, - "paulinho": 3.09e-07, - "pekka": 3.09e-07, - "perrier": 3.09e-07, - "perturbations": 3.09e-07, - "phoenicians": 3.09e-07, - "pimlico": 3.09e-07, - "pinhole": 3.09e-07, - "pinnacles": 3.09e-07, - "pinpointed": 3.09e-07, - "pires": 3.09e-07, - "pitbulls": 6.17e-08, - "pitchforks": 3.09e-07, - "pogroms": 3.09e-07, - "polemical": 3.09e-07, - "polymorphisms": 3.09e-07, - "popularised": 3.09e-07, - "powerplay": 3.09e-07, - "predestined": 3.09e-07, - "protrude": 3.09e-07, - "prp": 3.09e-07, - "prue": 3.09e-07, - "psychopathy": 3.09e-07, - "puc": 3.09e-07, - "puente": 3.09e-07, - "quarried": 3.09e-07, - "quills": 3.09e-07, - "radek": 3.09e-07, - "radially": 3.09e-07, - "raith": 3.09e-07, - "ramseys": 3.09e-07, - "rattlesnakes": 3.09e-07, - "ravaging": 3.09e-07, - "realign": 3.09e-07, - "rebuilds": 3.09e-07, - "recanted": 3.09e-07, - "reiter": 3.09e-07, - "relapses": 3.09e-07, - "rending": 3.09e-07, - "repentant": 3.09e-07, - "reportable": 3.09e-07, - "reprogram": 3.09e-07, - "rescheduling": 3.09e-07, - "retracting": 3.09e-07, - "revisits": 3.09e-07, - "rigg": 3.09e-07, - "rile": 3.09e-07, - "ripened": 3.09e-07, - "riverboat": 3.09e-07, - "roadie": 3.09e-07, - "roaster": 3.09e-07, - "rodham": 3.09e-07, - "romper": 3.09e-07, - "roomie": 3.09e-07, - "rosanna": 3.09e-07, - "rupp": 3.09e-07, - "rushers": 3.09e-07, - "saar": 3.09e-07, - "sabin": 3.09e-07, - "safaris": 3.09e-07, - "sager": 3.09e-07, - "salutations": 3.09e-07, - "sangha": 3.09e-07, - "sanofi": 3.09e-07, - "sargon": 3.09e-07, - "satiety": 3.09e-07, - "scanlan": 3.09e-07, - "schroder": 3.09e-07, - "sculptured": 3.09e-07, - "seasonality": 3.09e-07, - "segmental": 3.09e-07, - "segura": 3.09e-07, - "semiotics": 3.09e-07, - "serfdom": 3.09e-07, - "shanes": 3.09e-07, - "sheepishly": 3.09e-07, - "shias": 3.09e-07, - "shipp": 3.09e-07, - "shoring": 3.09e-07, - "shuffles": 3.09e-07, - "shukla": 3.09e-07, - "sippy": 3.09e-07, - "sjws": 6.31e-08, - "skidding": 3.09e-07, - "slandering": 3.09e-07, - "smitty": 3.09e-07, - "smooch": 3.09e-07, - "snitches": 3.09e-07, - "sno": 3.09e-07, - "soares": 3.09e-07, - "sombra": 3.09e-07, - "sopa": 3.09e-07, - "southbank": 3.09e-07, - "spigot": 3.09e-07, - "sprightly": 3.09e-07, - "squandering": 3.09e-07, - "squids": 3.09e-07, - "stagnate": 3.09e-07, - "staines": 3.09e-07, - "stairways": 3.09e-07, - "stammer": 3.09e-07, - "starfire": 3.09e-07, - "stargazing": 3.09e-07, - "stavros": 3.09e-07, - "stencils": 3.09e-07, - "stiffen": 3.09e-07, - "stingers": 3.09e-07, - "stis": 3.09e-07, - "stockpiled": 3.09e-07, - "strasse": 3.09e-07, - "stupider": 3.09e-07, - "subjection": 3.09e-07, - "submachine": 3.09e-07, - "subtler": 3.09e-07, - "subwoofer": 3.09e-07, - "sulla": 3.09e-07, - "summarises": 3.09e-07, - "sunspots": 3.09e-07, - "superfood": 3.09e-07, - "supergroup": 3.09e-07, - "surg": 3.09e-07, - "suter": 3.09e-07, - "suzhou": 3.09e-07, - "swindled": 3.09e-07, - "symbolise": 3.09e-07, - "symmetrically": 3.09e-07, - "tahitian": 3.09e-07, - "tangents": 3.09e-07, - "taoism": 3.09e-07, - "tearfully": 3.09e-07, - "telegraphs": 6.46e-08, - "telemarketing": 3.09e-07, - "tempestuous": 3.09e-07, - "tempura": 3.09e-07, - "thanh": 3.09e-07, - "theophilus": 3.09e-07, - "thickets": 3.09e-07, - "timbered": 3.09e-07, - "tingly": 3.09e-07, - "tippy": 3.09e-07, - "tix": 3.09e-07, - "tomorrowland": 3.09e-07, - "touchpad": 3.09e-07, - "trajan": 3.09e-07, - "trapdoor": 3.09e-07, - "tricolor": 3.09e-07, - "triennial": 3.09e-07, - "tripling": 3.09e-07, - "trondheim": 3.09e-07, - "tuners": 3.09e-07, - "turvy": 3.09e-07, - "tus": 3.09e-07, - "udc": 3.09e-07, - "ummah": 3.09e-07, - "underhand": 3.09e-07, - "underpins": 3.09e-07, - "undifferentiated": 3.09e-07, - "undignified": 3.09e-07, - "unfeasible": 3.09e-07, - "unintelligent": 3.09e-07, - "unrecorded": 3.09e-07, - "urinals": 3.09e-07, - "utters": 3.09e-07, - "utv": 3.09e-07, - "velasco": 3.09e-07, - "vena": 3.09e-07, - "vladislav": 3.09e-07, - "vlc": 3.09e-07, - "voa": 3.09e-07, - "vomits": 3.09e-07, - "warblers": 3.09e-07, - "warthog": 3.09e-07, - "watercress": 3.09e-07, - "westland": 3.09e-07, - "whelp": 3.09e-07, - "wherewith": 3.09e-07, - "whitecaps": 3.09e-07, - "whitefield": 3.09e-07, - "whizz": 3.09e-07, - "wiggly": 3.09e-07, - "wooly": 3.09e-07, - "wuss": 3.09e-07, - "xlviii": 3.09e-07, - "yanukovych": 3.09e-07, - "yellowing": 3.09e-07, - "zan": 3.09e-07, - "zeroed": 3.09e-07, - "zod": 3.09e-07, - "abes": 3.02e-07, - "abhishek": 3.02e-07, - "abounding": 3.02e-07, - "abrahamic": 3.02e-07, - "acker": 3.02e-07, - "acquiesce": 3.02e-07, - "acyl": 3.02e-07, - "adcock": 3.02e-07, - "aditi": 3.02e-07, - "afghani": 3.02e-07, - "agricola": 3.02e-07, - "agustin": 3.02e-07, - "ails": 3.02e-07, - "aish": 3.02e-07, - "aishwarya": 3.02e-07, - "aks": 7.41e-08, - "alpert": 3.02e-07, - "alphabetic": 3.02e-07, - "altimeter": 3.02e-07, - "alumnae": 3.02e-07, - "amcs": 5.25e-08, - "ameer": 3.02e-07, - "ammar": 3.02e-07, - "amur": 3.02e-07, - "ananda": 3.02e-07, - "andrzej": 3.02e-07, - "animatronic": 3.02e-07, - "anisotropic": 3.02e-07, - "annandale": 3.02e-07, - "annenberg": 3.02e-07, - "anoint": 3.02e-07, - "antares": 3.02e-07, - "antihistamines": 3.02e-07, - "aot": 3.02e-07, - "apocrypha": 3.02e-07, - "apportionment": 3.02e-07, - "araki": 3.02e-07, - "aran": 3.02e-07, - "archivists": 3.02e-07, - "aristide": 3.02e-07, - "aronson": 3.02e-07, - "ashen": 3.02e-07, - "asn": 3.02e-07, - "atheistic": 3.02e-07, - "attlee": 3.02e-07, - "augur": 3.02e-07, - "authorizations": 3.02e-07, - "autocrat": 3.02e-07, - "ayahuasca": 3.02e-07, - "azeri": 3.02e-07, - "azusa": 3.02e-07, - "backlight": 3.02e-07, - "bakewell": 3.02e-07, - "balsa": 3.02e-07, - "barone": 3.02e-07, - "bartending": 3.02e-07, - "bayswater": 3.02e-07, - "beading": 3.02e-07, - "beady": 3.02e-07, - "beaverton": 3.02e-07, - "belknap": 3.02e-07, - "benders": 9.33e-08, - "berryman": 3.02e-07, - "besties": 3.02e-07, - "bestows": 3.02e-07, - "betas": 3.02e-07, - "betters": 3.02e-07, - "bibs": 3.02e-07, - "binh": 3.02e-07, - "blackbirds": 3.02e-07, - "blithe": 3.02e-07, - "blurt": 3.02e-07, - "bmj": 3.02e-07, - "boltzmann": 3.02e-07, - "bongs": 3.02e-07, - "borax": 3.02e-07, - "bourse": 3.02e-07, - "bq": 3.02e-07, - "braving": 3.02e-07, - "bricked": 3.02e-07, - "brooker": 3.02e-07, - "broussard": 3.02e-07, - "bruna": 3.02e-07, - "bruxelles": 3.02e-07, - "bushfire": 3.02e-07, - "bushman": 3.02e-07, - "buttock": 3.02e-07, - "camphor": 3.02e-07, - "canis": 3.02e-07, - "carman": 3.02e-07, - "carmela": 3.02e-07, - "carolines": 5.62e-08, - "cashflow": 3.02e-07, - "castel": 3.02e-07, - "cavemen": 3.02e-07, - "celestine": 3.02e-07, - "certainties": 3.02e-07, - "chainsaws": 3.02e-07, - "chickasaw": 3.02e-07, - "clancys": 3.02e-07, - "clattering": 3.02e-07, - "coherently": 3.02e-07, - "coitus": 3.02e-07, - "cokes": 1.07e-07, - "collectivism": 3.02e-07, - "columbo": 3.02e-07, - "conceptualization": 3.02e-07, - "confection": 3.02e-07, - "conformational": 3.02e-07, - "contrite": 3.02e-07, - "convenes": 3.02e-07, - "cordillera": 3.02e-07, - "cpe": 3.02e-07, - "crabbe": 3.02e-07, - "cradles": 3.02e-07, - "crawlers": 3.02e-07, - "criminalizing": 3.02e-07, - "crips": 3.02e-07, - "croce": 3.02e-07, - "crossroad": 3.02e-07, - "croton": 3.02e-07, - "cunard": 3.02e-07, - "curds": 3.02e-07, - "cya": 3.02e-07, - "daegu": 3.02e-07, - "dahmer": 3.02e-07, - "dampness": 3.02e-07, - "danton": 3.02e-07, - "decepticons": 3.02e-07, - "decoupling": 3.02e-07, - "defcon": 3.02e-07, - "defecting": 3.02e-07, - "delicatessen": 3.02e-07, - "delude": 3.02e-07, - "demagogue": 3.02e-07, - "dene": 3.02e-07, - "derailing": 3.02e-07, - "dicked": 3.02e-07, - "directness": 3.02e-07, - "disappointingly": 3.02e-07, - "disjoint": 3.02e-07, - "dislocations": 3.02e-07, - "distrusted": 3.02e-07, - "divorcee": 3.02e-07, - "diya": 3.02e-07, - "doma": 3.02e-07, - "doozy": 3.02e-07, - "dorfman": 3.02e-07, - "downgrades": 3.02e-07, - "dpm": 3.02e-07, - "dragnet": 3.02e-07, - "drawl": 3.02e-07, - "dreyfuss": 3.02e-07, - "dublins": 3.02e-07, - "duda": 3.02e-07, - "duffle": 3.02e-07, - "dupes": 3.02e-07, - "eason": 3.02e-07, - "easts": 1.23e-07, - "eavesdrop": 3.02e-07, - "eca": 3.02e-07, - "eccentricities": 3.02e-07, - "ecj": 3.02e-07, - "ecowas": 3.02e-07, - "eder": 3.02e-07, - "egocentric": 3.02e-07, - "electrolytic": 3.02e-07, - "elliotts": 3.02e-07, - "emirati": 3.02e-07, - "empiricism": 3.02e-07, - "emulators": 3.02e-07, - "enamoured": 3.02e-07, - "endeavoured": 3.02e-07, - "engulfing": 3.02e-07, - "enquired": 3.02e-07, - "enroute": 3.02e-07, - "envelop": 3.02e-07, - "equaling": 3.02e-07, - "escondido": 3.02e-07, - "espanyol": 3.02e-07, - "estella": 3.02e-07, - "evernote": 3.02e-07, - "evian": 3.02e-07, - "ewell": 3.02e-07, - "experimenter": 3.02e-07, - "extrapolating": 3.02e-07, - "eze": 3.02e-07, - "fantasized": 3.02e-07, - "fatboy": 3.02e-07, - "feathering": 3.02e-07, - "feckless": 3.02e-07, - "fela": 3.02e-07, - "fellowes": 3.02e-07, - "ferrero": 3.02e-07, - "fetches": 3.02e-07, - "fios": 3.02e-07, - "flan": 3.02e-07, - "flinching": 3.02e-07, - "fmc": 3.02e-07, - "fnb": 3.02e-07, - "followings": 3.02e-07, - "forbearance": 3.02e-07, - "fournette": 3.02e-07, - "freebsd": 3.02e-07, - "frontend": 3.02e-07, - "funko": 3.02e-07, - "gabba": 3.02e-07, - "gamification": 3.02e-07, - "gandy": 3.02e-07, - "gardners": 5.37e-08, - "gato": 3.02e-07, - "geochemical": 3.02e-07, - "geochemistry": 3.02e-07, - "geometrically": 3.02e-07, - "gfc": 3.02e-07, - "ghostwriter": 3.02e-07, - "gladness": 3.02e-07, - "glares": 3.02e-07, - "glc": 3.02e-07, - "glob": 3.02e-07, - "gormley": 3.02e-07, - "grandview": 3.02e-07, - "grattan": 3.02e-07, - "gravestones": 3.02e-07, - "greenes": 3.02e-07, - "gretna": 3.02e-07, - "grubs": 1.2e-08, - "grumbled": 3.02e-07, - "grylls": 3.02e-07, - "guidebooks": 3.02e-07, - "gumtree": 3.02e-07, - "gundy": 3.02e-07, - "gwangju": 3.02e-07, - "haag": 3.02e-07, - "haka": 3.02e-07, - "halford": 3.02e-07, - "havel": 3.02e-07, - "haverford": 3.02e-07, - "hayworth": 3.02e-07, - "hazen": 3.02e-07, - "headhunter": 3.02e-07, - "heer": 3.02e-07, - "hematite": 3.02e-07, - "herdsmen": 3.02e-07, - "heritable": 3.02e-07, - "hermaphrodite": 3.02e-07, - "heterosexuals": 3.02e-07, - "hfc": 3.02e-07, - "hine": 3.02e-07, - "hollie": 3.02e-07, - "homerun": 3.02e-07, - "hondo": 3.02e-07, - "hounslow": 3.02e-07, - "houseguests": 3.02e-07, - "howled": 3.02e-07, - "hums": 3.02e-07, - "hussars": 3.02e-07, - "hypodermic": 3.02e-07, - "idleness": 3.02e-07, - "idolize": 3.02e-07, - "idp": 3.02e-07, - "iiis": 1.05e-07, - "ilford": 3.02e-07, - "immunized": 3.02e-07, - "impeaching": 3.02e-07, - "incalculable": 3.02e-07, - "indemnification": 3.02e-07, - "infinitum": 3.02e-07, - "infuriates": 3.02e-07, - "insp": 3.02e-07, - "interwar": 3.02e-07, - "intruded": 3.02e-07, - "ipos": 3.02e-07, - "isolde": 3.02e-07, - "isomorphic": 3.02e-07, - "isopropyl": 3.02e-07, - "jagr": 3.02e-07, - "jeet": 3.02e-07, - "jetting": 3.02e-07, - "jewett": 3.02e-07, - "jolted": 3.02e-07, - "joules": 3.02e-07, - "jumpsuits": 3.02e-07, - "junes": 3.02e-07, - "juridical": 3.02e-07, - "kah": 3.02e-07, - "kahlo": 3.02e-07, - "kalam": 3.02e-07, - "katja": 3.02e-07, - "kek": 3.02e-07, - "kenna": 3.02e-07, - "kibble": 3.02e-07, - "kiir": 3.02e-07, - "killeen": 3.02e-07, - "kilter": 3.02e-07, - "kinsmen": 3.02e-07, - "kloss": 3.02e-07, - "kneading": 3.02e-07, - "kokoro": 3.02e-07, - "krishnan": 3.02e-07, - "kubota": 3.02e-07, - "kuro": 3.02e-07, - "kx": 3.02e-07, - "lamentations": 3.02e-07, - "laroche": 3.02e-07, - "lata": 3.02e-07, - "lauri": 3.02e-07, - "laziest": 3.02e-07, - "leaguers": 3.02e-07, - "leggy": 3.02e-07, - "leitch": 3.02e-07, - "leons": 3.02e-07, - "leyden": 3.02e-07, - "lgbti": 3.02e-07, - "liberators": 3.02e-07, - "limbic": 3.02e-07, - "lipo": 3.02e-07, - "liquorice": 3.02e-07, - "lithe": 3.02e-07, - "livres": 3.02e-07, - "logano": 3.02e-07, - "longshot": 3.02e-07, - "louvain": 3.02e-07, - "lucretia": 3.02e-07, - "lulled": 3.02e-07, - "lymphocyte": 3.02e-07, - "macgyver": 3.02e-07, - "makkah": 3.02e-07, - "malachite": 3.02e-07, - "managua": 3.02e-07, - "mangala": 3.02e-07, - "marchant": 3.02e-07, - "marinas": 1.29e-07, - "mccarthyism": 3.02e-07, - "mccourt": 3.02e-07, - "mccurdy": 3.02e-07, - "mcginn": 3.02e-07, - "medicate": 3.02e-07, - "megans": 3.02e-07, - "mejia": 3.02e-07, - "methotrexate": 3.02e-07, - "mian": 3.02e-07, - "microelectronics": 3.02e-07, - "microgravity": 3.02e-07, - "microsystems": 3.02e-07, - "mils": 3.02e-07, - "mingo": 3.02e-07, - "misbah": 3.02e-07, - "mitten": 3.02e-07, - "mnet": 3.02e-07, - "mok": 3.02e-07, - "mommas": 1.1e-07, - "montfort": 3.02e-07, - "mpd": 3.02e-07, - "msw": 3.02e-07, - "nadezhda": 3.02e-07, - "namibian": 3.02e-07, - "nanometers": 3.02e-07, - "nettie": 3.02e-07, - "neutrophils": 3.02e-07, - "nichol": 3.02e-07, - "niklas": 3.02e-07, - "nitin": 3.02e-07, - "nong": 3.02e-07, - "noninvasive": 3.02e-07, - "nonproliferation": 3.02e-07, - "nse": 3.02e-07, - "nyssa": 3.02e-07, - "odorless": 3.02e-07, - "oppositional": 3.02e-07, - "oppositions": 2.57e-07, - "ordain": 3.02e-07, - "organelles": 3.02e-07, - "outwit": 3.02e-07, - "overturns": 3.02e-07, - "oxidant": 3.02e-07, - "oxygenation": 3.02e-07, - "padang": 3.02e-07, - "paleontologists": 3.02e-07, - "palpatine": 3.02e-07, - "parakeet": 3.02e-07, - "paralytic": 3.02e-07, - "parfait": 3.02e-07, - "patella": 3.02e-07, - "patrik": 3.02e-07, - "pattie": 3.02e-07, - "paymaster": 3.02e-07, - "payson": 3.02e-07, - "pce": 3.02e-07, - "pdx": 3.02e-07, - "pecuniary": 3.02e-07, - "peddled": 3.02e-07, - "peeler": 3.02e-07, - "pelletier": 3.02e-07, - "pender": 3.02e-07, - "pennys": 3.02e-07, - "perera": 3.02e-07, - "perpetrate": 3.02e-07, - "petunia": 3.02e-07, - "phosphoric": 3.02e-07, - "phosphorylated": 3.02e-07, - "piney": 3.02e-07, - "plazas": 6.03e-08, - "pochettino": 3.02e-07, - "ponting": 3.02e-07, - "popsicles": 3.02e-07, - "porcine": 3.02e-07, - "pragmatist": 3.02e-07, - "precambrian": 3.02e-07, - "precipitating": 3.02e-07, - "pretreatment": 3.02e-07, - "pricier": 3.02e-07, - "prioritizes": 3.02e-07, - "privateers": 3.02e-07, - "propagates": 3.02e-07, - "prostatic": 3.02e-07, - "protrusion": 3.02e-07, - "provable": 3.02e-07, - "provocateur": 3.02e-07, - "psilocybin": 3.02e-07, - "psychopathology": 3.02e-07, - "puckett": 3.02e-07, - "pulis": 3.02e-07, - "purples": 3.02e-07, - "quercus": 3.02e-07, - "raab": 3.02e-07, - "rajapaksa": 3.02e-07, - "rationed": 3.02e-07, - "rawlinson": 3.02e-07, - "rawson": 3.02e-07, - "realness": 3.02e-07, - "receptacles": 3.02e-07, - "redmi": 3.02e-07, - "reflexively": 3.02e-07, - "refraining": 3.02e-07, - "renumbered": 3.02e-07, - "resentments": 3.02e-07, - "resize": 3.02e-07, - "revved": 3.02e-07, - "rhineland": 3.02e-07, - "ricard": 3.02e-07, - "richardsons": 5.25e-08, - "riche": 3.02e-07, - "richey": 3.02e-07, - "rincon": 3.02e-07, - "riverton": 3.02e-07, - "romanticized": 3.02e-07, - "romer": 3.02e-07, - "rst": 3.02e-07, - "ruffalo": 3.02e-07, - "rupaul": 3.02e-07, - "ryzen": 3.02e-07, - "saccharine": 3.02e-07, - "sakamoto": 3.02e-07, - "santino": 3.02e-07, - "sapling": 3.02e-07, - "sasa": 3.02e-07, - "saskia": 3.02e-07, - "sati": 3.02e-07, - "sbb": 3.02e-07, - "scaffolds": 3.02e-07, - "schoenberg": 3.02e-07, - "scholl": 3.02e-07, - "schoolmates": 3.02e-07, - "scolds": 3.02e-07, - "scrupulously": 3.02e-07, - "sdlp": 3.02e-07, - "seaward": 3.02e-07, - "sebastians": 3.02e-07, - "seco": 3.02e-07, - "seitz": 3.02e-07, - "semicolon": 3.02e-07, - "sensitively": 3.02e-07, - "seu": 3.02e-07, - "sev": 3.02e-07, - "sexed": 3.02e-07, - "shakhtar": 3.02e-07, - "sharpens": 3.02e-07, - "shattuck": 3.02e-07, - "shephard": 3.02e-07, - "shipboard": 3.02e-07, - "shootouts": 3.02e-07, - "shoppe": 3.02e-07, - "shorelines": 3.02e-07, - "shriveled": 3.02e-07, - "shunted": 3.02e-07, - "sisko": 3.02e-07, - "slanderous": 3.02e-07, - "slavonic": 3.02e-07, - "sleepin": 3.02e-07, - "sleepovers": 3.02e-07, - "slitting": 3.02e-07, - "snelling": 3.02e-07, - "snicker": 3.02e-07, - "snook": 3.02e-07, - "soba": 3.02e-07, - "sociopolitical": 3.02e-07, - "somersault": 3.02e-07, - "sommelier": 3.02e-07, - "soulmates": 3.02e-07, - "spiralling": 3.02e-07, - "squibb": 3.02e-07, - "stagnating": 3.02e-07, - "starstruck": 3.02e-07, - "steaua": 3.02e-07, - "stenographer": 3.02e-07, - "stoneman": 3.02e-07, - "stormtroopers": 3.02e-07, - "streetcars": 3.02e-07, - "striping": 3.02e-07, - "strum": 3.02e-07, - "suffragette": 3.02e-07, - "sumatran": 3.02e-07, - "supercomputers": 3.02e-07, - "superconductivity": 3.02e-07, - "supposes": 3.02e-07, - "swastikas": 3.02e-07, - "swingin": 3.02e-07, - "swisher": 3.02e-07, - "swooning": 3.02e-07, - "tamale": 3.02e-07, - "tarragon": 3.02e-07, - "tenancies": 3.02e-07, - "termini": 3.02e-07, - "testable": 3.02e-07, - "tetracycline": 3.02e-07, - "tew": 3.02e-07, - "thatchers": 5.37e-08, - "theroux": 3.02e-07, - "thirtieth": 3.02e-07, - "timmons": 3.02e-07, - "torr": 3.02e-07, - "tove": 3.02e-07, - "trang": 3.02e-07, - "trc": 3.02e-07, - "treacle": 3.02e-07, - "trev": 3.02e-07, - "treviso": 3.02e-07, - "tribals": 3.02e-07, - "tsb": 3.02e-07, - "twisters": 3.02e-07, - "twitches": 3.02e-07, - "tyree": 3.02e-07, - "umpiring": 3.02e-07, - "unapproved": 3.02e-07, - "underhanded": 3.02e-07, - "unfazed": 3.02e-07, - "unmask": 3.02e-07, - "unreservedly": 3.02e-07, - "uppity": 3.02e-07, - "upturn": 3.02e-07, - "vandy": 3.02e-07, - "vfw": 3.02e-07, - "vickery": 3.02e-07, - "victimhood": 3.02e-07, - "voltron": 3.02e-07, - "voy": 3.02e-07, - "waterborne": 3.02e-07, - "waziristan": 3.02e-07, - "weidman": 3.02e-07, - "wenn": 3.02e-07, - "wfp": 3.02e-07, - "whizzing": 3.02e-07, - "whoah": 3.02e-07, - "wildness": 3.02e-07, - "winchell": 3.02e-07, - "windsurfing": 3.02e-07, - "witney": 3.02e-07, - "worden": 3.02e-07, - "wormholes": 3.02e-07, - "worsley": 3.02e-07, - "wriggling": 3.02e-07, - "yeong": 3.02e-07, - "yessir": 3.02e-07, - "ym": 3.02e-07, - "yucky": 3.02e-07, - "zacks": 1.38e-07, - "zafar": 3.02e-07, - "zahir": 3.02e-07, - "aber": 2.95e-07, - "acclimated": 2.95e-07, - "acquiescence": 2.95e-07, - "acu": 2.95e-07, - "adamawa": 2.95e-07, - "adblock": 2.95e-07, - "adenocarcinoma": 2.95e-07, - "adjudicate": 2.95e-07, - "adornment": 2.95e-07, - "aedes": 2.95e-07, - "afrikaner": 2.95e-07, - "agnieszka": 2.95e-07, - "aii": 2.95e-07, - "alleyways": 2.95e-07, - "alloa": 2.95e-07, - "altona": 2.95e-07, - "alumna": 2.95e-07, - "alyson": 2.95e-07, - "amory": 2.95e-07, - "amplitudes": 2.95e-07, - "anatole": 2.95e-07, - "anatolian": 2.95e-07, - "angiotensin": 2.95e-07, - "anglais": 2.95e-07, - "anhui": 2.95e-07, - "antenatal": 2.95e-07, - "aon": 2.95e-07, - "aquaria": 2.95e-07, - "arca": 2.95e-07, - "ardmore": 2.95e-07, - "arses": 2.95e-07, - "asim": 2.95e-07, - "asterisks": 2.95e-07, - "astonish": 2.95e-07, - "auteur": 2.95e-07, - "availed": 2.95e-07, - "averys": 2.95e-07, - "awakenings": 2.95e-07, - "azov": 2.95e-07, - "babi": 2.95e-07, - "baccarat": 2.95e-07, - "badness": 2.95e-07, - "baes": 2.95e-07, - "bagger": 2.95e-07, - "barmaid": 2.95e-07, - "batu": 2.95e-07, - "bearcats": 2.95e-07, - "bedchamber": 2.95e-07, - "beeline": 2.95e-07, - "befuddled": 2.95e-07, - "bequeath": 2.95e-07, - "besieging": 2.95e-07, - "bifurcation": 2.95e-07, - "biofilm": 2.95e-07, - "blockages": 2.95e-07, - "bluestone": 2.95e-07, - "blustery": 2.95e-07, - "boles": 2.95e-07, - "bossa": 2.95e-07, - "bratty": 2.95e-07, - "brevet": 2.95e-07, - "bristling": 2.95e-07, - "brittain": 2.95e-07, - "broached": 2.95e-07, - "broomstick": 2.95e-07, - "brower": 2.95e-07, - "bruton": 2.95e-07, - "buckshot": 2.95e-07, - "buda": 2.95e-07, - "buffing": 2.95e-07, - "busking": 2.95e-07, - "bz": 2.95e-07, - "caerphilly": 2.95e-07, - "cakewalk": 2.95e-07, - "caliente": 2.95e-07, - "camberwell": 2.95e-07, - "camshaft": 2.95e-07, - "cann": 2.95e-07, - "capitalisation": 2.95e-07, - "capper": 2.95e-07, - "carjacking": 2.95e-07, - "carnarvon": 2.95e-07, - "cataloged": 2.95e-07, - "catlin": 2.95e-07, - "ceci": 2.95e-07, - "centigrade": 2.95e-07, - "cerebellar": 2.95e-07, - "cesaro": 2.95e-07, - "chamois": 2.95e-07, - "chapped": 2.95e-07, - "chapstick": 2.95e-07, - "chechens": 2.95e-07, - "cheep": 2.95e-07, - "chickenpox": 2.95e-07, - "chirac": 2.95e-07, - "cicadas": 2.95e-07, - "cirencester": 2.95e-07, - "clammy": 2.95e-07, - "classicism": 2.95e-07, - "cleanses": 2.95e-07, - "cloisters": 2.95e-07, - "clr": 2.95e-07, - "clydesdale": 2.95e-07, - "coexisting": 2.95e-07, - "colas": 1.29e-07, - "colley": 2.95e-07, - "comparably": 2.95e-07, - "connecticuts": 2.95e-07, - "conscript": 2.95e-07, - "convicting": 2.95e-07, - "convolution": 2.95e-07, - "cooped": 2.95e-07, - "coote": 2.95e-07, - "copilot": 2.95e-07, - "cornflakes": 2.95e-07, - "cornmeal": 2.95e-07, - "cosplayers": 2.95e-07, - "courtside": 2.95e-07, - "cpac": 2.95e-07, - "craddock": 2.95e-07, - "crikey": 2.95e-07, - "crosswords": 2.95e-07, - "crtc": 2.95e-07, - "crustal": 2.95e-07, - "crypts": 2.95e-07, - "culpepper": 2.95e-07, - "cusco": 2.95e-07, - "cws": 1.58e-07, - "daisuke": 2.95e-07, - "dangerfield": 2.95e-07, - "dassault": 2.95e-07, - "ddg": 2.95e-07, - "deangelo": 2.95e-07, - "debugger": 2.95e-07, - "decompress": 2.95e-07, - "deering": 2.95e-07, - "definetly": 2.95e-07, - "degli": 2.95e-07, - "deleuze": 2.95e-07, - "demilitarized": 2.95e-07, - "destabilized": 2.95e-07, - "detestable": 2.95e-07, - "diggin": 2.95e-07, - "disastrously": 2.95e-07, - "disreputable": 2.95e-07, - "distill": 2.95e-07, - "distiller": 2.95e-07, - "djinn": 2.95e-07, - "doan": 2.95e-07, - "dolla": 2.95e-07, - "domaine": 2.95e-07, - "dorsum": 2.95e-07, - "dothraki": 2.95e-07, - "duffield": 2.95e-07, - "dwts": 2.95e-07, - "ead": 2.95e-07, - "earthworks": 2.95e-07, - "eggshell": 2.95e-07, - "ehlers": 2.95e-07, - "emacs": 2.95e-07, - "embryology": 2.95e-07, - "enacts": 2.95e-07, - "eoc": 2.95e-07, - "estadio": 2.95e-07, - "ethers": 2.95e-07, - "evaporator": 2.95e-07, - "ewart": 2.95e-07, - "exaltation": 2.95e-07, - "exempting": 2.95e-07, - "exhaling": 2.95e-07, - "explosively": 2.95e-07, - "extorted": 2.95e-07, - "farewells": 2.95e-07, - "farhad": 2.95e-07, - "farouk": 2.95e-07, - "faunal": 2.95e-07, - "faxed": 2.95e-07, - "fiba": 2.95e-07, - "fidgeting": 2.95e-07, - "fiu": 2.95e-07, - "flexibly": 2.95e-07, - "flightless": 2.95e-07, - "fook": 2.95e-07, - "forethought": 2.95e-07, - "formalize": 2.95e-07, - "frag": 2.95e-07, - "frauen": 2.95e-07, - "freemen": 2.95e-07, - "froggy": 2.95e-07, - "frp": 2.95e-07, - "fuscous": 2.95e-07, - "futurism": 2.95e-07, - "gainful": 2.95e-07, - "gambier": 2.95e-07, - "ganguly": 2.95e-07, - "gastronomic": 2.95e-07, - "gatling": 2.95e-07, - "gautier": 2.95e-07, - "gazeta": 2.95e-07, - "gendarmes": 2.95e-07, - "generalisation": 2.95e-07, - "geriatrics": 2.95e-07, - "gers": 2.95e-07, - "getaways": 2.95e-07, - "gigolo": 2.95e-07, - "gilpin": 2.95e-07, - "girlish": 2.95e-07, - "glided": 2.95e-07, - "goi": 2.95e-07, - "goodly": 2.95e-07, - "graduations": 2.95e-07, - "griffey": 2.95e-07, - "grifter": 2.95e-07, - "gritted": 2.95e-07, - "groomsmen": 2.95e-07, - "groupe": 2.95e-07, - "growler": 2.95e-07, - "grumbles": 2.95e-07, - "guwahati": 2.95e-07, - "gyan": 2.95e-07, - "haigh": 2.95e-07, - "hamel": 2.95e-07, - "happenin": 2.95e-07, - "hatchlings": 2.95e-07, - "hatteras": 2.95e-07, - "hauler": 2.95e-07, - "hazelnuts": 2.95e-07, - "hearne": 2.95e-07, - "heber": 2.95e-07, - "heme": 2.95e-07, - "heng": 2.95e-07, - "heraldic": 2.95e-07, - "hereto": 2.95e-07, - "heya": 2.95e-07, - "hideously": 2.95e-07, - "hofer": 2.95e-07, - "homespun": 2.95e-07, - "hominem": 2.95e-07, - "homozygous": 2.95e-07, - "horta": 2.95e-07, - "hostesses": 2.95e-07, - "housings": 2.95e-07, - "huzzah": 2.95e-07, - "hydrodynamic": 2.95e-07, - "iem": 2.95e-07, - "imgur": 2.95e-07, - "imi": 2.95e-07, - "implicates": 2.95e-07, - "impound": 2.95e-07, - "inclines": 2.95e-07, - "insignificance": 2.95e-07, - "interlinked": 2.95e-07, - "interrogators": 2.95e-07, - "interurban": 2.95e-07, - "intuitions": 2.95e-07, - "invigorated": 2.95e-07, - "invincibility": 2.95e-07, - "ionosphere": 2.95e-07, - "isms": 2.95e-07, - "isomers": 2.95e-07, - "izmir": 2.95e-07, - "jaffna": 2.95e-07, - "jamey": 2.95e-07, - "jani": 2.95e-07, - "janko": 2.95e-07, - "jennys": 2.95e-07, - "jeweled": 2.95e-07, - "jitter": 2.95e-07, - "jourdan": 2.95e-07, - "joust": 2.95e-07, - "jutsu": 2.95e-07, - "jy": 2.95e-07, - "kapil": 2.95e-07, - "kasi": 2.95e-07, - "kasparov": 2.95e-07, - "katara": 2.95e-07, - "kayo": 2.95e-07, - "kestrel": 2.95e-07, - "kil": 2.95e-07, - "kilmer": 2.95e-07, - "kinematics": 2.95e-07, - "kissimmee": 2.95e-07, - "koda": 2.95e-07, - "krieg": 2.95e-07, - "krs": 2.95e-07, - "lafferty": 2.95e-07, - "lagerfeld": 2.95e-07, - "lamentable": 2.95e-07, - "lascivious": 2.95e-07, - "lasik": 2.95e-07, - "latifah": 2.95e-07, - "lawes": 2.95e-07, - "lawman": 2.95e-07, - "lca": 2.95e-07, - "lec": 2.95e-07, - "lejeune": 2.95e-07, - "lemony": 2.95e-07, - "lenz": 2.95e-07, - "letty": 2.95e-07, - "lewy": 2.95e-07, - "lifers": 2.95e-07, - "lindberg": 2.95e-07, - "liquidating": 2.95e-07, - "litigated": 2.95e-07, - "llanelli": 2.95e-07, - "lols": 2.95e-07, - "lonzo": 2.95e-07, - "looses": 2.95e-07, - "loup": 2.95e-07, - "luci": 2.95e-07, - "ludicrously": 2.95e-07, - "lupo": 2.95e-07, - "lurched": 2.95e-07, - "madrigal": 2.95e-07, - "mahathir": 2.95e-07, - "manda": 2.95e-07, - "marmaduke": 2.95e-07, - "maruti": 2.95e-07, - "maslow": 2.95e-07, - "mauser": 2.95e-07, - "mbta": 2.95e-07, - "mccrae": 2.95e-07, - "mccree": 2.95e-07, - "mcgarry": 2.95e-07, - "mcginty": 2.95e-07, - "mckeown": 2.95e-07, - "mcr": 2.95e-07, - "mcwilliams": 2.95e-07, - "meanie": 2.95e-07, - "meanness": 2.95e-07, - "melding": 2.95e-07, - "mellowed": 2.95e-07, - "memoranda": 2.95e-07, - "menard": 2.95e-07, - "michaud": 2.95e-07, - "midstream": 2.95e-07, - "minto": 2.95e-07, - "misfire": 2.95e-07, - "mishnah": 2.95e-07, - "mitotic": 2.95e-07, - "mohd": 2.95e-07, - "mone": 2.88e-08, - "monocle": 2.95e-07, - "monopolize": 2.95e-07, - "moti": 2.95e-07, - "mowgli": 2.95e-07, - "msd": 2.95e-07, - "msl": 2.95e-07, - "mtdna": 2.95e-07, - "mugger": 2.95e-07, - "mui": 2.95e-07, - "muldoon": 2.95e-07, - "multifunctional": 2.95e-07, - "murkowski": 2.95e-07, - "namco": 2.95e-07, - "narayana": 2.95e-07, - "narragansett": 2.95e-07, - "nava": 2.95e-07, - "naver": 2.95e-07, - "nbd": 2.95e-07, - "nextgen": 2.95e-07, - "nfpa": 2.95e-07, - "nibs": 2.95e-07, - "nii": 2.95e-07, - "nio": 2.95e-07, - "nivea": 2.95e-07, - "noms": 2.95e-07, - "norrie": 2.95e-07, - "notarized": 2.95e-07, - "nowak": 2.95e-07, - "nva": 2.95e-07, - "occuring": 2.95e-07, - "oceana": 2.95e-07, - "oed": 2.95e-07, - "offshoots": 2.95e-07, - "ogg": 2.95e-07, - "okie": 2.95e-07, - "omnipotence": 2.95e-07, - "opc": 2.95e-07, - "opossum": 2.95e-07, - "opportunists": 2.95e-07, - "optima": 2.95e-07, - "origi": 2.95e-07, - "ormsby": 2.95e-07, - "orthopedics": 2.95e-07, - "osh": 2.95e-07, - "outperforming": 2.95e-07, - "ovals": 2.95e-07, - "overplayed": 2.95e-07, - "oversold": 2.95e-07, - "overwrought": 2.95e-07, - "pacemakers": 2.95e-07, - "palacios": 2.95e-07, - "parachuting": 2.95e-07, - "paradiso": 2.95e-07, - "paraguayan": 2.95e-07, - "peaky": 2.95e-07, - "peale": 2.95e-07, - "pearsons": 2.95e-07, - "peet": 2.95e-07, - "penne": 2.95e-07, - "penta": 2.95e-07, - "percutaneous": 2.95e-07, - "pervez": 2.95e-07, - "petaluma": 2.95e-07, - "petiole": 2.95e-07, - "pickling": 2.95e-07, - "pippen": 2.95e-07, - "plasmodium": 2.95e-07, - "plotline": 2.95e-07, - "pollo": 2.95e-07, - "pollster": 2.95e-07, - "polonium": 2.95e-07, - "polyvinyl": 2.95e-07, - "pommel": 2.95e-07, - "ponderous": 2.95e-07, - "popov": 2.95e-07, - "posteriorly": 2.95e-07, - "pounders": 2.95e-07, - "pradhan": 2.95e-07, - "predeceased": 2.95e-07, - "preformed": 2.95e-07, - "preps": 2.95e-07, - "presidente": 2.95e-07, - "pritzker": 2.95e-07, - "proselytizing": 2.95e-07, - "pucci": 2.95e-07, - "pud": 2.95e-07, - "pudgy": 2.95e-07, - "pyruvate": 2.95e-07, - "quang": 2.95e-07, - "quds": 2.95e-07, - "quenched": 2.95e-07, - "quotable": 2.95e-07, - "randomization": 2.95e-07, - "ratty": 2.95e-07, - "redcliffe": 2.95e-07, - "reflectance": 2.95e-07, - "relegate": 2.95e-07, - "remeber": 2.95e-07, - "remodelled": 2.95e-07, - "remotes": 2.95e-07, - "renzo": 2.95e-07, - "reoccurring": 2.95e-07, - "reservist": 2.95e-07, - "resettle": 2.95e-07, - "resnick": 2.95e-07, - "restate": 2.95e-07, - "retinol": 2.95e-07, - "retrofitting": 2.95e-07, - "returnees": 2.95e-07, - "revenant": 2.95e-07, - "rhinestones": 2.95e-07, - "ries": 2.95e-07, - "riffing": 2.95e-07, - "riki": 2.95e-07, - "rollie": 2.95e-07, - "rothwell": 2.95e-07, - "rousseff": 2.95e-07, - "rowell": 2.95e-07, - "rpa": 2.95e-07, - "rpc": 2.95e-07, - "rspb": 2.95e-07, - "runt": 2.95e-07, - "saha": 2.95e-07, - "salk": 2.95e-07, - "sask": 2.95e-07, - "satyr": 2.95e-07, - "sayre": 2.95e-07, - "sciatica": 2.95e-07, - "scimitar": 2.95e-07, - "scrubber": 2.95e-07, - "scud": 2.95e-07, - "seceded": 2.95e-07, - "securitys": 2.95e-07, - "seepage": 2.95e-07, - "seesaw": 2.95e-07, - "sema": 2.95e-07, - "sephardic": 2.95e-07, - "serv": 2.95e-07, - "sgs": 2.95e-07, - "shabazz": 2.95e-07, - "shanxi": 2.95e-07, - "sharknado": 2.95e-07, - "sheboygan": 2.95e-07, - "shinzo": 2.95e-07, - "shires": 6.03e-08, - "shrouds": 2.95e-07, - "shuddered": 2.95e-07, - "siddharth": 2.95e-07, - "sidewinder": 2.95e-07, - "skaggs": 2.95e-07, - "skylark": 2.95e-07, - "skyway": 2.95e-07, - "smouldering": 2.95e-07, - "sociocultural": 2.95e-07, - "sokoto": 2.95e-07, - "speculum": 2.95e-07, - "spelman": 2.95e-07, - "spielbergs": 2.95e-07, - "spuds": 2.95e-07, - "ssris": 2.95e-07, - "statehouse": 2.95e-07, - "stellenbosch": 2.95e-07, - "sten": 2.95e-07, - "stents": 2.95e-07, - "stooping": 2.95e-07, - "strived": 2.95e-07, - "sty": 2.95e-07, - "subjugate": 2.95e-07, - "sublet": 2.95e-07, - "subsections": 2.95e-07, - "sulawesi": 2.95e-07, - "sultans": 2.09e-07, - "sunder": 2.95e-07, - "superlatives": 2.95e-07, - "supermassive": 2.95e-07, - "surfed": 2.95e-07, - "sussman": 2.95e-07, - "suzi": 2.95e-07, - "suzuka": 2.95e-07, - "swoosh": 2.95e-07, - "taketh": 2.95e-07, - "tarr": 2.95e-07, - "tars": 2.95e-07, - "taub": 2.95e-07, - "terrains": 2.95e-07, - "theocratic": 2.95e-07, - "thermoelectric": 2.95e-07, - "thet": 2.95e-07, - "timey": 2.95e-07, - "tippett": 2.95e-07, - "togethers": 2.95e-07, - "tonics": 2.95e-07, - "topo": 2.95e-07, - "tosca": 2.95e-07, - "tpb": 2.95e-07, - "tracklist": 2.95e-07, - "triomphe": 2.95e-07, - "truancy": 2.95e-07, - "trx": 2.95e-07, - "tsh": 2.95e-07, - "tunable": 2.95e-07, - "ucsf": 2.95e-07, - "uday": 2.95e-07, - "udon": 2.95e-07, - "unboxing": 2.95e-07, - "uncapped": 2.95e-07, - "unfollow": 2.95e-07, - "unrefined": 2.95e-07, - "unsportsmanlike": 2.95e-07, - "uppercase": 2.95e-07, - "uprooting": 2.95e-07, - "valeri": 2.95e-07, - "vaporize": 2.95e-07, - "varga": 2.95e-07, - "varietal": 2.95e-07, - "varma": 2.95e-07, - "varney": 2.95e-07, - "vedder": 2.95e-07, - "vestal": 2.95e-07, - "vestigial": 2.95e-07, - "virginal": 2.95e-07, - "visitations": 2.95e-07, - "vitreous": 2.95e-07, - "vocabularies": 2.95e-07, - "vortices": 2.95e-07, - "vpns": 2.95e-07, - "waaay": 2.95e-07, - "wads": 2.95e-07, - "waists": 2.95e-07, - "wast": 4.57e-08, - "waylon": 2.95e-07, - "whittled": 2.95e-07, - "xenia": 2.95e-07, - "xxv": 2.95e-07, - "yad": 2.95e-07, - "yadda": 2.95e-07, - "yana": 2.95e-07, - "yann": 2.95e-07, - "yoder": 2.95e-07, - "yor": 2.95e-07, - "zilch": 2.95e-07, - "zoes": 2.95e-07, - "zoran": 2.95e-07, - "abductor": 2.88e-07, - "abstentions": 2.88e-07, - "actualization": 2.88e-07, - "addons": 2.88e-07, - "adeles": 2.88e-07, - "adjudicator": 2.88e-07, - "adorns": 2.88e-07, - "afire": 2.88e-07, - "aflame": 2.88e-07, - "agen": 2.88e-07, - "aggro": 2.88e-07, - "airasia": 2.88e-07, - "akali": 2.88e-07, - "albee": 2.88e-07, - "aliasing": 2.88e-07, - "alleluia": 2.88e-07, - "alphanumeric": 2.88e-07, - "amas": 1.15e-07, - "amboy": 2.88e-07, - "ammon": 2.88e-07, - "amu": 2.88e-07, - "amusingly": 2.88e-07, - "amway": 2.88e-07, - "analytically": 2.88e-07, - "andalusian": 2.88e-07, - "anniston": 2.88e-07, - "antiochus": 2.88e-07, - "apace": 2.88e-07, - "appalachians": 2.88e-07, - "apportioned": 2.88e-07, - "ards": 2.88e-07, - "arles": 2.88e-07, - "arugula": 2.88e-07, - "asante": 2.88e-07, - "asperger": 2.88e-07, - "astroturf": 2.88e-07, - "athanasius": 2.88e-07, - "audios": 2.88e-07, - "aunties": 5.89e-08, - "autobiographies": 2.88e-07, - "autophagy": 2.88e-07, - "avanti": 2.88e-07, - "avidly": 2.88e-07, - "bahasa": 2.88e-07, - "bambino": 2.88e-07, - "barbecued": 2.88e-07, - "baristas": 2.88e-07, - "bartering": 2.88e-07, - "bartolo": 2.88e-07, - "basaltic": 2.88e-07, - "beanstalk": 2.88e-07, - "becketts": 2.88e-07, - "beckhams": 9.12e-08, - "beleive": 2.88e-07, - "belkin": 2.88e-07, - "benjamins": 2.51e-07, - "berea": 2.88e-07, - "bestowing": 2.88e-07, - "bhagavad": 2.88e-07, - "biannual": 2.88e-07, - "bibliographical": 2.88e-07, - "bier": 2.88e-07, - "bih": 2.88e-07, - "biliary": 2.88e-07, - "biophysical": 2.88e-07, - "bioware": 2.88e-07, - "biplane": 2.88e-07, - "blaney": 2.88e-07, - "bloodstained": 2.88e-07, - "boggles": 2.88e-07, - "bogie": 2.88e-07, - "boomtown": 2.88e-07, - "brandons": 2.88e-07, - "breck": 2.88e-07, - "brisbanes": 2.88e-07, - "brophy": 2.88e-07, - "browder": 2.88e-07, - "bruner": 2.88e-07, - "brutalized": 2.88e-07, - "buffets": 5.01e-08, - "bulges": 2.88e-07, - "bullfighting": 2.88e-07, - "burlingame": 2.88e-07, - "buzzy": 2.88e-07, - "cagliari": 2.88e-07, - "callow": 2.88e-07, - "candour": 2.88e-07, - "captaining": 2.88e-07, - "capua": 2.88e-07, - "caravaggio": 2.88e-07, - "cartographic": 2.88e-07, - "castlereagh": 2.88e-07, - "caswell": 2.88e-07, - "cbf": 2.88e-07, - "cdo": 2.88e-07, - "certiorari": 2.88e-07, - "cesium": 2.88e-07, - "ceviche": 2.88e-07, - "chainz": 2.88e-07, - "chapmans": 2.88e-07, - "checkerboard": 2.88e-07, - "cheech": 2.88e-07, - "cheeked": 2.88e-07, - "chih": 2.88e-07, - "chinaman": 2.88e-07, - "choline": 2.88e-07, - "chyna": 2.88e-07, - "circumspect": 2.88e-07, - "clausen": 2.88e-07, - "cleaves": 2.88e-07, - "cloudless": 2.88e-07, - "cmg": 2.88e-07, - "cnr": 2.88e-07, - "colada": 2.88e-07, - "coleoptera": 2.88e-07, - "collectivist": 2.88e-07, - "colonizers": 2.88e-07, - "combe": 2.88e-07, - "concussed": 2.88e-07, - "condit": 2.88e-07, - "connexion": 2.88e-07, - "consign": 2.88e-07, - "consolidates": 2.88e-07, - "constancy": 2.88e-07, - "constructivist": 2.88e-07, - "contraindications": 2.88e-07, - "conveyancing": 2.88e-07, - "coops": 2.88e-07, - "copes": 2.88e-07, - "copter": 2.88e-07, - "couched": 2.88e-07, - "cousteau": 2.88e-07, - "cowbell": 2.88e-07, - "cpap": 2.88e-07, - "crabby": 2.88e-07, - "cracow": 2.88e-07, - "creased": 2.88e-07, - "cretan": 2.88e-07, - "croatias": 2.88e-07, - "crocus": 2.88e-07, - "cromer": 2.88e-07, - "cronkite": 2.88e-07, - "crossley": 2.88e-07, - "cth": 2.88e-07, - "cwc": 2.88e-07, - "cypriots": 2.88e-07, - "daf": 2.88e-07, - "dagon": 2.88e-07, - "dandelions": 2.88e-07, - "darvish": 2.88e-07, - "dcu": 2.88e-07, - "debentures": 2.88e-07, - "deliciousness": 2.88e-07, - "depreciate": 2.88e-07, - "derbies": 2.88e-07, - "dermatologists": 2.88e-07, - "deron": 2.88e-07, - "deschamps": 2.88e-07, - "despotism": 2.88e-07, - "detracts": 2.88e-07, - "devolving": 2.88e-07, - "devonport": 2.88e-07, - "dfl": 2.88e-07, - "diehl": 2.88e-07, - "dietetics": 2.88e-07, - "diggle": 2.88e-07, - "dilbert": 2.88e-07, - "diploid": 2.88e-07, - "disenchantment": 2.88e-07, - "disfigurement": 2.88e-07, - "dishwashers": 2.88e-07, - "disinfected": 2.88e-07, - "dissociate": 2.88e-07, - "dogmas": 2.88e-07, - "dormancy": 2.88e-07, - "dostoyevsky": 2.88e-07, - "downriver": 2.88e-07, - "dressmaker": 2.88e-07, - "dumbbells": 2.88e-07, - "durch": 2.88e-07, - "easements": 2.88e-07, - "easyjet": 2.88e-07, - "ebs": 2.88e-07, - "ecf": 2.88e-07, - "editorship": 2.88e-07, - "ejector": 2.88e-07, - "elyse": 2.88e-07, - "elysian": 2.88e-07, - "embankments": 2.88e-07, - "emote": 2.88e-07, - "enchiladas": 2.88e-07, - "enriches": 2.88e-07, - "episcopalian": 2.88e-07, - "ermine": 2.88e-07, - "estado": 2.88e-07, - "eurostar": 2.88e-07, - "evangelization": 2.88e-07, - "evi": 2.88e-07, - "excruciatingly": 2.88e-07, - "exfoliating": 2.88e-07, - "exterminating": 2.88e-07, - "extravagantly": 2.88e-07, - "ezequiel": 2.88e-07, - "fansite": 2.88e-07, - "farmlands": 2.88e-07, - "fashioning": 2.88e-07, - "fdas": 2.88e-07, - "fearlessness": 2.88e-07, - "featureless": 2.88e-07, - "feld": 2.88e-07, - "ferociously": 2.88e-07, - "fictionalized": 2.88e-07, - "fiendish": 2.88e-07, - "fila": 2.88e-07, - "finery": 2.88e-07, - "firming": 2.88e-07, - "fishnet": 2.88e-07, - "fletch": 2.88e-07, - "flit": 2.88e-07, - "fmla": 2.88e-07, - "forthe": 2.88e-07, - "fortifying": 2.88e-07, - "frei": 2.88e-07, - "frequenting": 2.88e-07, - "furrowed": 2.88e-07, - "fyfe": 2.88e-07, - "gac": 2.88e-07, - "gallaudet": 2.88e-07, - "gamescom": 2.88e-07, - "gaskell": 2.88e-07, - "gault": 2.88e-07, - "gdansk": 2.88e-07, - "gerrit": 2.88e-07, - "getz": 2.88e-07, - "glial": 2.88e-07, - "globetrotters": 2.88e-07, - "glorifies": 2.88e-07, - "glycemic": 2.88e-07, - "gnat": 2.88e-07, - "gnats": 2.88e-07, - "goldfields": 2.88e-07, - "golgi": 2.88e-07, - "goonies": 2.88e-07, - "gos": 2.82e-07, - "govinda": 2.88e-07, - "grecian": 2.88e-07, - "grigg": 2.88e-07, - "grossest": 2.88e-07, - "gsk": 2.88e-07, - "gullies": 2.88e-07, - "gunboat": 2.88e-07, - "gynecological": 2.88e-07, - "haggerty": 2.88e-07, - "halton": 2.88e-07, - "hannon": 2.88e-07, - "haptic": 2.88e-07, - "harmonization": 2.88e-07, - "haruhi": 2.88e-07, - "hawkers": 2.88e-07, - "haz": 2.88e-07, - "headbands": 2.88e-07, - "headlock": 2.88e-07, - "headpiece": 2.88e-07, - "heartbreakers": 2.88e-07, - "hermits": 2.88e-07, - "herz": 2.88e-07, - "hillsong": 2.88e-07, - "hittin": 2.88e-07, - "holdsworth": 2.88e-07, - "holidaymakers": 2.88e-07, - "homered": 2.88e-07, - "hooke": 2.88e-07, - "horsey": 2.88e-07, - "hoxton": 2.88e-07, - "hpc": 2.88e-07, - "humidifier": 2.88e-07, - "hypersensitive": 2.88e-07, - "idiomatic": 2.88e-07, - "ijn": 2.88e-07, - "illuminations": 2.88e-07, - "immaculately": 2.88e-07, - "immolation": 2.88e-07, - "immunisation": 2.88e-07, - "impudent": 2.88e-07, - "incentivize": 2.88e-07, - "incontrovertible": 2.88e-07, - "incorruptible": 2.88e-07, - "incubate": 2.88e-07, - "ineffectiveness": 2.88e-07, - "inflight": 2.88e-07, - "ingrown": 2.88e-07, - "inte": 2.88e-07, - "inundation": 2.88e-07, - "isomer": 2.88e-07, - "italiana": 2.88e-07, - "iyengar": 2.88e-07, - "jalisco": 2.88e-07, - "jamb": 2.88e-07, - "janette": 2.88e-07, - "janitorial": 2.88e-07, - "jeremys": 2.88e-07, - "joc": 2.88e-07, - "jordon": 2.88e-07, - "juma": 2.88e-07, - "junko": 2.88e-07, - "kennard": 2.88e-07, - "killarney": 2.88e-07, - "kirwan": 2.88e-07, - "kokomo": 2.88e-07, - "kolo": 2.88e-07, - "korg": 2.88e-07, - "koto": 2.88e-07, - "ksi": 2.88e-07, - "kunal": 2.88e-07, - "kurd": 2.88e-07, - "lackeys": 2.88e-07, - "ladylike": 2.88e-07, - "lamberts": 9.12e-08, - "lamela": 2.88e-07, - "lani": 2.88e-07, - "layed": 2.88e-07, - "leben": 2.88e-07, - "legia": 2.88e-07, - "lemmy": 2.88e-07, - "letts": 2.88e-07, - "leu": 2.88e-07, - "levon": 2.88e-07, - "lfc": 2.88e-07, - "lifer": 2.88e-07, - "lignite": 2.88e-07, - "linc": 2.88e-07, - "linky": 2.88e-07, - "linwood": 2.88e-07, - "liquidators": 2.88e-07, - "lithographs": 2.88e-07, - "livonia": 2.88e-07, - "lobotomy": 2.88e-07, - "longworth": 2.88e-07, - "lorimer": 2.88e-07, - "lothar": 2.88e-07, - "lowestoft": 2.88e-07, - "lowther": 2.88e-07, - "lvg": 2.88e-07, - "lynchings": 2.88e-07, - "lyne": 2.88e-07, - "macdonalds": 1.66e-07, - "magisterial": 2.88e-07, - "mailings": 2.88e-07, - "makeovers": 2.88e-07, - "mandelson": 2.88e-07, - "mandibles": 2.88e-07, - "manipulators": 2.88e-07, - "manse": 2.88e-07, - "marcin": 2.88e-07, - "marshfield": 2.88e-07, - "marzipan": 2.88e-07, - "masterly": 2.88e-07, - "masterwork": 2.88e-07, - "masthead": 2.88e-07, - "materiality": 2.88e-07, - "matting": 2.88e-07, - "mbbs": 2.88e-07, - "mcat": 2.88e-07, - "melba": 2.88e-07, - "metabolize": 2.88e-07, - "mhs": 2.88e-07, - "mickie": 2.88e-07, - "mits": 1.2e-07, - "miyuki": 2.88e-07, - "moldovan": 2.88e-07, - "molinari": 2.88e-07, - "moloney": 2.88e-07, - "mopped": 2.88e-07, - "morro": 2.88e-07, - "mpls": 2.88e-07, - "mulcahy": 2.88e-07, - "multivitamin": 2.88e-07, - "murata": 2.88e-07, - "muy": 2.88e-07, - "nandi": 2.88e-07, - "nanette": 2.88e-07, - "nass": 2.88e-07, - "nationhood": 2.88e-07, - "neglectful": 2.88e-07, - "nevadas": 2.88e-07, - "ninas": 2.88e-07, - "noni": 2.88e-07, - "novosibirsk": 2.88e-07, - "nutcase": 2.88e-07, - "objectified": 2.88e-07, - "ods": 2.82e-08, - "oligocene": 2.88e-07, - "orsay": 2.88e-07, - "otl": 2.88e-07, - "outgrew": 2.88e-07, - "overconfident": 2.88e-07, - "palmas": 5.01e-08, - "parachuted": 2.88e-07, - "paralleling": 2.88e-07, - "paramilitaries": 2.88e-07, - "parklands": 2.88e-07, - "parquet": 2.88e-07, - "passat": 2.88e-07, - "paternalistic": 2.88e-07, - "patronized": 2.88e-07, - "pdr": 2.88e-07, - "pera": 2.88e-07, - "perdition": 2.88e-07, - "perus": 2.88e-07, - "pez": 2.88e-07, - "phaedra": 2.88e-07, - "pharmacokinetics": 2.88e-07, - "photocopies": 2.88e-07, - "pipers": 2.51e-07, - "pirie": 2.88e-07, - "pith": 2.88e-07, - "plaintive": 2.88e-07, - "plasmas": 2.88e-07, - "plotter": 2.88e-07, - "poehler": 2.88e-07, - "policyholder": 2.88e-07, - "polyunsaturated": 2.88e-07, - "pondicherry": 2.88e-07, - "popularize": 2.88e-07, - "poroshenko": 2.88e-07, - "poss": 1.12e-08, - "praiseworthy": 2.88e-07, - "predated": 2.88e-07, - "prelates": 2.88e-07, - "preoperative": 2.88e-07, - "pressurised": 2.88e-07, - "presupposes": 2.88e-07, - "previewing": 2.88e-07, - "prideful": 2.88e-07, - "psychometric": 2.88e-07, - "pupper": 2.88e-07, - "quai": 2.88e-07, - "quechua": 2.88e-07, - "quelled": 2.88e-07, - "querying": 2.88e-07, - "quickened": 2.88e-07, - "raghu": 2.88e-07, - "rands": 1.35e-07, - "ranted": 2.88e-07, - "rapeseed": 2.88e-07, - "rarefied": 2.88e-07, - "rask": 2.88e-07, - "rcp": 2.88e-07, - "rebukes": 2.88e-07, - "reclassification": 2.88e-07, - "recumbent": 2.88e-07, - "redshift": 2.88e-07, - "reframe": 2.88e-07, - "reproducibility": 2.88e-07, - "reprogrammed": 2.88e-07, - "restorer": 2.88e-07, - "reverent": 2.88e-07, - "revista": 2.88e-07, - "reyna": 2.88e-07, - "rfu": 2.88e-07, - "rhondda": 2.88e-07, - "ridings": 2.88e-07, - "ringwood": 2.88e-07, - "ritas": 2.88e-07, - "rivaled": 2.88e-07, - "rnli": 2.88e-07, - "rohr": 2.88e-07, - "romanov": 2.88e-07, - "roni": 2.88e-07, - "rosettes": 2.88e-07, - "royston": 2.88e-07, - "rsd": 2.88e-07, - "rtp": 2.88e-07, - "rtr": 2.88e-07, - "rupa": 2.88e-07, - "rvp": 2.88e-07, - "ryland": 2.88e-07, - "saarc": 2.88e-07, - "salacious": 2.88e-07, - "salting": 2.88e-07, - "sandpiper": 2.88e-07, - "sangster": 2.88e-07, - "satanists": 2.88e-07, - "saute": 2.88e-07, - "saxena": 2.88e-07, - "scabbard": 2.88e-07, - "scapula": 2.88e-07, - "scherer": 2.88e-07, - "schindlers": 2.88e-07, - "screamin": 2.88e-07, - "scribner": 2.88e-07, - "sensationalist": 2.88e-07, - "seon": 2.88e-07, - "serbias": 2.88e-07, - "sfs": 7.24e-08, - "shadowbanned": 2.88e-07, - "shand": 2.88e-07, - "shaqiri": 2.88e-07, - "shew": 2.88e-07, - "shimbun": 2.88e-07, - "shinn": 2.88e-07, - "sidearm": 2.88e-07, - "signpost": 2.88e-07, - "sinhala": 2.88e-07, - "siphoning": 2.88e-07, - "skatepark": 2.88e-07, - "skied": 2.88e-07, - "slicker": 2.88e-07, - "slurping": 2.88e-07, - "slyly": 2.88e-07, - "smi": 2.88e-07, - "snagging": 2.88e-07, - "snorlax": 2.88e-07, - "socorro": 2.88e-07, - "softcore": 2.88e-07, - "soiree": 2.88e-07, - "sont": 2.88e-07, - "sooooooo": 2.88e-07, - "soph": 2.88e-07, - "sounder": 2.88e-07, - "spaceman": 2.88e-07, - "spars": 2.88e-07, - "spearman": 2.88e-07, - "spenders": 2.88e-07, - "spiraled": 2.88e-07, - "splayed": 2.88e-07, - "spline": 2.88e-07, - "sportscaster": 2.88e-07, - "spratt": 2.88e-07, - "springy": 2.88e-07, - "spritz": 2.88e-07, - "squirted": 2.88e-07, - "sram": 2.88e-07, - "standouts": 2.88e-07, - "statics": 1.15e-08, - "stax": 2.88e-07, - "steamboats": 2.88e-07, - "steelworkers": 2.88e-07, - "steinway": 2.88e-07, - "stepbrother": 2.88e-07, - "stigmas": 2.88e-07, - "stocker": 2.88e-07, - "stomps": 2.88e-07, - "streaky": 2.88e-07, - "suc": 2.88e-07, - "sulaiman": 2.88e-07, - "sundial": 2.88e-07, - "suo": 2.88e-07, - "supranational": 2.88e-07, - "svc": 2.88e-07, - "sydenham": 2.88e-07, - "sym": 2.88e-07, - "symmetries": 2.88e-07, - "sympathized": 2.88e-07, - "taoiseach": 2.88e-07, - "tastier": 2.88e-07, - "tbr": 2.88e-07, - "tehreek": 2.88e-07, - "telegraphy": 2.88e-07, - "telekinesis": 2.88e-07, - "telematics": 2.88e-07, - "telepathically": 2.88e-07, - "terrifyingly": 2.88e-07, - "territorys": 2.88e-07, - "thoroughbreds": 2.88e-07, - "thoroughness": 2.88e-07, - "throttled": 2.88e-07, - "tiktok": 2.88e-07, - "tills": 5.37e-08, - "timelapse": 2.88e-07, - "timescales": 2.88e-07, - "tinkling": 2.88e-07, - "tinsley": 2.88e-07, - "tiramisu": 2.88e-07, - "tnc": 2.88e-07, - "tng": 2.88e-07, - "toasters": 2.88e-07, - "toothpicks": 2.88e-07, - "tpm": 2.88e-07, - "tq": 2.88e-07, - "trainspotting": 2.88e-07, - "tranche": 2.88e-07, - "transplanting": 2.88e-07, - "trashcan": 2.88e-07, - "travelogue": 2.88e-07, - "triathlete": 2.88e-07, - "trine": 2.88e-07, - "trix": 2.88e-07, - "trollope": 2.88e-07, - "trumpeting": 2.88e-07, - "tsc": 2.88e-07, - "tumblers": 2.88e-07, - "turan": 2.88e-07, - "turley": 2.88e-07, - "ucas": 2.88e-07, - "uj": 2.88e-07, - "undersigned": 2.88e-07, - "underused": 2.88e-07, - "unep": 2.88e-07, - "unionize": 2.88e-07, - "untraceable": 2.88e-07, - "urbane": 2.88e-07, - "uther": 2.88e-07, - "valladolid": 2.88e-07, - "villanueva": 2.88e-07, - "volcanism": 2.88e-07, - "volte": 2.88e-07, - "waldman": 2.88e-07, - "waltzing": 2.88e-07, - "warsi": 2.88e-07, - "wayans": 2.88e-07, - "waze": 2.88e-07, - "weatherford": 2.88e-07, - "webbs": 5.62e-08, - "webmd": 2.88e-07, - "welby": 2.88e-07, - "welter": 2.88e-07, - "wiesbaden": 2.88e-07, - "willingham": 2.88e-07, - "windowless": 2.88e-07, - "winky": 2.88e-07, - "wishart": 2.88e-07, - "woh": 2.88e-07, - "wolfman": 2.88e-07, - "woodwind": 2.88e-07, - "woop": 2.88e-07, - "worldcat": 2.88e-07, - "wracked": 2.88e-07, - "wrongdoings": 2.88e-07, - "wsb": 2.88e-07, - "yc": 2.88e-07, - "yehuda": 2.88e-07, - "yuba": 2.88e-07, - "yuko": 2.88e-07, - "yusef": 2.88e-07, - "zaragoza": 2.88e-07, - "zebrafish": 2.88e-07, - "zetas": 2.88e-07, - "zimmermans": 2.88e-07, - "zootopia": 2.88e-07, - "zr": 2.88e-07, - "abdulaziz": 2.82e-07, - "absolutism": 2.82e-07, - "abutting": 2.82e-07, - "academicians": 2.82e-07, - "accomodate": 2.82e-07, - "accrington": 2.82e-07, - "adorno": 2.82e-07, - "afrique": 2.82e-07, - "afterschool": 2.82e-07, - "aikman": 2.82e-07, - "aipac": 2.82e-07, - "akan": 2.82e-07, - "akane": 2.82e-07, - "alcantara": 2.82e-07, - "aldehyde": 2.82e-07, - "alexi": 2.82e-07, - "allis": 2.82e-07, - "allisons": 2.82e-07, - "allstars": 2.82e-07, - "alstom": 2.82e-07, - "alu": 2.82e-07, - "ambit": 2.82e-07, - "analytica": 2.82e-07, - "andretti": 2.82e-07, - "anemones": 2.82e-07, - "angsty": 2.82e-07, - "apb": 2.82e-07, - "appeased": 2.82e-07, - "appreciably": 2.82e-07, - "archiv": 2.82e-07, - "arcing": 2.82e-07, - "arnott": 2.82e-07, - "arrhythmias": 2.82e-07, - "arrowheads": 2.82e-07, - "arsenio": 2.82e-07, - "arthritic": 2.82e-07, - "ascents": 2.82e-07, - "asis": 2.82e-07, - "asterix": 2.82e-07, - "astigmatism": 2.82e-07, - "audiophile": 2.82e-07, - "audley": 2.82e-07, - "avast": 2.82e-07, - "avp": 2.82e-07, - "bacall": 2.82e-07, - "backgammon": 2.82e-07, - "badu": 2.82e-07, - "bair": 2.82e-07, - "bangladeshs": 2.82e-07, - "bapu": 2.82e-07, - "barbarity": 2.82e-07, - "barretts": 2.82e-07, - "barts": 2.29e-07, - "basta": 2.82e-07, - "bax": 2.82e-07, - "begone": 2.82e-07, - "belie": 2.82e-07, - "believeth": 2.82e-07, - "benidorm": 2.82e-07, - "berlioz": 2.82e-07, - "bernardi": 2.82e-07, - "biol": 2.82e-07, - "birdcage": 2.82e-07, - "birthmark": 2.82e-07, - "bisping": 2.82e-07, - "bisque": 2.82e-07, - "bitched": 2.82e-07, - "bjork": 2.82e-07, - "bjps": 2.82e-07, - "blackfoot": 2.82e-07, - "bladders": 2.82e-07, - "blanketed": 2.82e-07, - "bloemfontein": 2.82e-07, - "blotches": 2.82e-07, - "bmd": 2.82e-07, - "bolshevism": 2.82e-07, - "bonnets": 2.82e-07, - "botulism": 2.82e-07, - "boxcar": 2.82e-07, - "boykin": 2.82e-07, - "brandis": 2.82e-07, - "brandywine": 2.82e-07, - "brennans": 2.82e-07, - "brickell": 2.82e-07, - "brougham": 2.82e-07, - "browner": 2.82e-07, - "brzezinski": 2.82e-07, - "busquets": 2.82e-07, - "cabral": 2.82e-07, - "cagayan": 2.82e-07, - "cagney": 2.82e-07, - "cajon": 2.82e-07, - "calvins": 2.82e-07, - "calyx": 2.82e-07, - "canadensis": 2.82e-07, - "candelabra": 2.82e-07, - "cannula": 2.82e-07, - "canteens": 2.82e-07, - "cantona": 2.82e-07, - "cantrell": 2.82e-07, - "cardwell": 2.82e-07, - "carell": 2.82e-07, - "carlile": 2.82e-07, - "carrefour": 2.82e-07, - "cartwheel": 2.82e-07, - "cascadia": 2.82e-07, - "catchphrases": 2.82e-07, - "cavite": 2.82e-07, - "caxton": 2.82e-07, - "cdf": 2.82e-07, - "centaurs": 2.82e-07, - "charlottetown": 2.82e-07, - "chauhan": 2.82e-07, - "checkups": 2.82e-07, - "chronos": 2.82e-07, - "chumps": 2.82e-07, - "cicely": 2.82e-07, - "cincy": 2.82e-07, - "citron": 2.82e-07, - "claudine": 2.82e-07, - "clef": 2.82e-07, - "clothesline": 2.82e-07, - "coarsely": 2.82e-07, - "codification": 2.82e-07, - "codon": 2.82e-07, - "coetzee": 2.82e-07, - "commending": 2.82e-07, - "conant": 2.82e-07, - "congregated": 2.82e-07, - "consortia": 2.82e-07, - "contusion": 2.82e-07, - "corazon": 2.82e-07, - "corns": 2.82e-07, - "corsican": 2.82e-07, - "cortina": 2.82e-07, - "couplers": 2.82e-07, - "cradling": 2.82e-07, - "cranny": 2.82e-07, - "cretin": 2.82e-07, - "crittenden": 2.82e-07, - "crosstown": 2.82e-07, - "ctl": 2.82e-07, - "cultivates": 2.82e-07, - "customisation": 2.82e-07, - "cyberattacks": 2.82e-07, - "dafuq": 2.82e-07, - "danielson": 2.82e-07, - "dashwood": 2.82e-07, - "datas": 8.32e-08, - "dayan": 2.82e-07, - "dcp": 2.82e-07, - "deadlocked": 2.82e-07, - "debrief": 2.82e-07, - "deflects": 2.82e-07, - "dehradun": 2.82e-07, - "delacroix": 2.82e-07, - "delbert": 2.82e-07, - "delighting": 2.82e-07, - "delimitation": 2.82e-07, - "delores": 2.82e-07, - "deniability": 2.82e-07, - "deplored": 2.82e-07, - "deployable": 2.82e-07, - "dereks": 2.82e-07, - "desertification": 2.82e-07, - "detonators": 2.82e-07, - "deviance": 2.82e-07, - "dialling": 2.82e-07, - "diastolic": 2.82e-07, - "dictum": 2.82e-07, - "dier": 2.82e-07, - "dima": 2.82e-07, - "disbursements": 2.82e-07, - "disclaimers": 2.82e-07, - "distro": 2.82e-07, - "disunity": 2.82e-07, - "dme": 2.82e-07, - "dnf": 2.82e-07, - "dof": 2.82e-07, - "dono": 2.82e-07, - "dop": 2.82e-07, - "dube": 2.82e-07, - "duller": 2.82e-07, - "ecliptic": 2.82e-07, - "effusive": 2.82e-07, - "egging": 2.82e-07, - "ekiti": 2.82e-07, - "elbowed": 2.82e-07, - "ellwood": 2.82e-07, - "elmwood": 2.82e-07, - "elohim": 2.82e-07, - "embalmed": 2.82e-07, - "embarassed": 2.82e-07, - "endocrinologist": 2.82e-07, - "ensconced": 2.82e-07, - "entrusting": 2.82e-07, - "envisages": 2.82e-07, - "equidistant": 2.82e-07, - "erbil": 2.82e-07, - "erectus": 2.82e-07, - "erodes": 2.82e-07, - "esb": 2.82e-07, - "esd": 2.82e-07, - "etymological": 2.82e-07, - "evangelistic": 2.82e-07, - "evgeny": 2.82e-07, - "exacted": 2.82e-07, - "excusable": 2.82e-07, - "expendables": 2.82e-07, - "extolling": 2.82e-07, - "extroverted": 2.82e-07, - "fane": 2.82e-07, - "fausto": 2.82e-07, - "faxes": 2.82e-07, - "feldspar": 2.82e-07, - "fellini": 2.82e-07, - "ferg": 2.82e-07, - "fianna": 2.82e-07, - "filer": 2.82e-07, - "finalise": 2.82e-07, - "finicky": 2.82e-07, - "firenze": 2.82e-07, - "flatbread": 2.82e-07, - "flexes": 2.82e-07, - "floridians": 2.82e-07, - "flynt": 2.82e-07, - "fonte": 2.82e-07, - "footscray": 2.82e-07, - "formers": 1.55e-07, - "formless": 2.82e-07, - "fossilised": 2.82e-07, - "foxconn": 2.82e-07, - "fractals": 2.82e-07, - "frankensteins": 2.82e-07, - "fredericks": 1.2e-07, - "fuhrer": 2.82e-07, - "gamepad": 2.82e-07, - "gameplan": 2.82e-07, - "gamora": 2.82e-07, - "gauri": 2.82e-07, - "gazillion": 2.82e-07, - "ghb": 2.82e-07, - "ghraib": 2.82e-07, - "giffords": 2.82e-07, - "glasgows": 2.82e-07, - "glazes": 2.82e-07, - "glutton": 2.82e-07, - "goldstone": 2.82e-07, - "goner": 2.82e-07, - "gongs": 2.82e-07, - "gorky": 2.82e-07, - "grantee": 2.82e-07, - "grata": 2.82e-07, - "grooving": 2.82e-07, - "guardrail": 2.82e-07, - "guerin": 2.82e-07, - "gulen": 2.82e-07, - "gunk": 2.82e-07, - "gz": 2.82e-07, - "haida": 2.82e-07, - "handers": 2.82e-07, - "handicapping": 2.82e-07, - "harries": 2.82e-07, - "harrigan": 2.82e-07, - "harwich": 2.82e-07, - "hasselhoff": 2.82e-07, - "hcc": 2.82e-07, - "hersh": 2.82e-07, - "heseltine": 2.82e-07, - "hikari": 2.82e-07, - "hisham": 2.82e-07, - "hitchcocks": 2.82e-07, - "hitches": 2.82e-07, - "hitmen": 2.82e-07, - "hogue": 2.82e-07, - "honeys": 1.15e-07, - "hoots": 2.82e-07, - "hotchkiss": 2.82e-07, - "housekeepers": 2.82e-07, - "hplc": 2.82e-07, - "hsr": 2.82e-07, - "humanize": 2.82e-07, - "hungerford": 2.82e-07, - "huo": 2.82e-07, - "hurries": 2.82e-07, - "hypnotism": 2.82e-07, - "hyrule": 2.82e-07, - "idd": 1.05e-07, - "ilia": 2.82e-07, - "illiberal": 2.82e-07, - "ilm": 2.82e-07, - "immunizations": 2.82e-07, - "impressionistic": 2.82e-07, - "infiltrates": 2.82e-07, - "initialize": 2.82e-07, - "internationalism": 2.82e-07, - "intersectionality": 2.82e-07, - "intertidal": 2.82e-07, - "intimates": 2.82e-07, - "ironwood": 2.82e-07, - "isoforms": 2.82e-07, - "jobe": 2.82e-07, - "johny": 2.82e-07, - "joubert": 2.82e-07, - "jsc": 2.82e-07, - "jstor": 2.82e-07, - "jyp": 2.82e-07, - "kaley": 2.82e-07, - "kargil": 2.82e-07, - "keeling": 2.82e-07, - "kelleher": 2.82e-07, - "keppel": 2.82e-07, - "kesler": 2.82e-07, - "kiddy": 2.82e-07, - "kidz": 2.82e-07, - "kiernan": 2.82e-07, - "kilowatts": 2.82e-07, - "kimble": 2.82e-07, - "kindled": 2.82e-07, - "kirkcaldy": 2.82e-07, - "kirsch": 2.82e-07, - "kleins": 2.82e-07, - "kleiner": 2.82e-07, - "knockin": 2.82e-07, - "kolb": 2.82e-07, - "kombucha": 2.82e-07, - "krabs": 2.82e-07, - "kray": 2.82e-07, - "krupp": 2.82e-07, - "kuma": 2.82e-07, - "labelle": 2.82e-07, - "lacklustre": 2.82e-07, - "lak": 2.82e-07, - "lattices": 2.82e-07, - "laymans": 2.82e-07, - "leake": 2.82e-07, - "legg": 2.82e-07, - "lesbianism": 2.82e-07, - "letterpress": 2.82e-07, - "lexis": 6.17e-08, - "lignin": 2.82e-07, - "limber": 2.82e-07, - "littlejohn": 2.82e-07, - "llb": 2.82e-07, - "localisation": 2.82e-07, - "locos": 2.82e-07, - "londoner": 2.82e-07, - "lonergan": 2.82e-07, - "longstreet": 2.82e-07, - "longwood": 2.82e-07, - "lucidity": 2.82e-07, - "lusting": 2.82e-07, - "lynns": 2.82e-07, - "macaques": 2.82e-07, - "macedonians": 2.82e-07, - "machen": 2.82e-07, - "macneil": 2.82e-07, - "mailers": 7.41e-08, - "majestically": 2.82e-07, - "malawian": 2.82e-07, - "mancuso": 2.82e-07, - "mantelpiece": 2.82e-07, - "marleys": 2.82e-07, - "massager": 2.82e-07, - "matchless": 2.82e-07, - "materialised": 2.82e-07, - "matterhorn": 2.82e-07, - "maus": 2.82e-07, - "maxilla": 2.82e-07, - "mcinnes": 2.82e-07, - "mckellen": 2.82e-07, - "mcvey": 2.82e-07, - "meanders": 2.82e-07, - "meerut": 2.82e-07, - "megabytes": 2.82e-07, - "mennonites": 2.82e-07, - "metalwork": 2.82e-07, - "microbiological": 2.82e-07, - "mikasa": 2.82e-07, - "milkweed": 2.82e-07, - "millenials": 2.82e-07, - "milligram": 2.82e-07, - "minimised": 2.82e-07, - "ministered": 2.82e-07, - "minoan": 2.82e-07, - "minstrels": 2.82e-07, - "mobius": 2.82e-07, - "moen": 2.82e-07, - "morgenstern": 2.82e-07, - "mortifying": 2.82e-07, - "mortons": 2.82e-07, - "motioned": 2.82e-07, - "motorcycling": 2.82e-07, - "mouldings": 2.82e-07, - "mtf": 2.82e-07, - "multibillion": 2.82e-07, - "multicellular": 2.82e-07, - "mutes": 2.82e-07, - "mutilate": 2.82e-07, - "mwc": 2.82e-07, - "mycelium": 2.82e-07, - "myfitnesspal": 2.82e-07, - "nagorno": 2.82e-07, - "natale": 2.82e-07, - "necropolis": 2.82e-07, - "negligently": 2.82e-07, - "nemanja": 2.82e-07, - "nepals": 2.82e-07, - "newgate": 2.82e-07, - "nig": 2.82e-07, - "nkrumah": 2.82e-07, - "noche": 2.82e-07, - "nokias": 2.82e-07, - "noncompliance": 2.82e-07, - "northcote": 2.82e-07, - "novus": 2.82e-07, - "nowell": 2.82e-07, - "nubia": 2.82e-07, - "nuit": 2.82e-07, - "numbed": 2.82e-07, - "nylons": 2.82e-07, - "nyquist": 2.82e-07, - "ocarina": 2.82e-07, - "octavio": 2.82e-07, - "odometer": 2.82e-07, - "offloading": 2.82e-07, - "ohl": 2.82e-07, - "optus": 2.82e-07, - "orthodontic": 2.82e-07, - "otf": 2.82e-07, - "outfitting": 2.82e-07, - "outperforms": 2.82e-07, - "outrages": 2.82e-07, - "overstating": 2.82e-07, - "pabst": 2.82e-07, - "paged": 2.82e-07, - "papas": 2.82e-07, - "pappu": 2.82e-07, - "parrott": 2.82e-07, - "pashto": 2.82e-07, - "pata": 2.82e-07, - "patriarchate": 2.82e-07, - "pav": 2.82e-07, - "penmanship": 2.82e-07, - "perc": 2.82e-07, - "perce": 2.82e-07, - "percussionist": 2.82e-07, - "perfunctory": 2.82e-07, - "petsmart": 2.82e-07, - "pfi": 2.82e-07, - "phenyl": 2.82e-07, - "philological": 2.82e-07, - "photojournalism": 2.82e-07, - "pickwick": 2.82e-07, - "pilbara": 2.82e-07, - "pinckney": 2.82e-07, - "pindar": 2.82e-07, - "piraeus": 2.82e-07, - "pitying": 2.82e-07, - "pixelated": 2.82e-07, - "plp": 2.82e-07, - "pluses": 2.82e-07, - "pok": 2.82e-07, - "poodles": 2.82e-07, - "poors": 1.2e-07, - "populus": 2.82e-07, - "portillo": 2.82e-07, - "prater": 2.82e-07, - "presidencies": 2.82e-07, - "prise": 2.82e-07, - "proline": 2.82e-07, - "prostheses": 2.82e-07, - "protestor": 2.82e-07, - "purim": 2.82e-07, - "putts": 2.82e-07, - "pva": 2.82e-07, - "pyotr": 2.82e-07, - "quartzite": 2.82e-07, - "quietness": 2.82e-07, - "rabi": 2.82e-07, - "radiologists": 2.82e-07, - "rak": 2.82e-07, - "rakhine": 2.82e-07, - "rakuten": 2.82e-07, - "ramayana": 2.82e-07, - "ramsgate": 2.82e-07, - "raring": 2.82e-07, - "reformatory": 2.82e-07, - "regi": 2.82e-07, - "reprinting": 2.82e-07, - "reprising": 2.82e-07, - "repudiate": 2.82e-07, - "resonators": 2.82e-07, - "restaurateurs": 2.82e-07, - "retinopathy": 2.82e-07, - "revelatory": 2.82e-07, - "rewire": 2.82e-07, - "rfi": 2.82e-07, - "rinaldo": 2.82e-07, - "ringtones": 2.82e-07, - "rinpoche": 2.82e-07, - "roadworks": 2.82e-07, - "rosedale": 2.82e-07, - "russet": 2.82e-07, - "saboteurs": 2.82e-07, - "salva": 2.82e-07, - "samplers": 2.82e-07, - "sceptics": 2.82e-07, - "scilly": 2.82e-07, - "scuff": 2.82e-07, - "scylla": 2.82e-07, - "sdc": 2.82e-07, - "sellin": 2.82e-07, - "servile": 2.82e-07, - "sesh": 2.82e-07, - "seths": 2.82e-07, - "shagging": 2.82e-07, - "shamanism": 2.82e-07, - "sheepdog": 2.82e-07, - "shivaji": 2.82e-07, - "shlomo": 2.82e-07, - "shoshone": 2.82e-07, - "shunting": 2.82e-07, - "shutouts": 2.82e-07, - "sibyl": 2.82e-07, - "sikes": 2.82e-07, - "silverton": 2.82e-07, - "simmered": 2.82e-07, - "simonds": 2.82e-07, - "skidmore": 2.82e-07, - "skokie": 2.82e-07, - "sku": 2.82e-07, - "slavers": 2.82e-07, - "slaving": 2.82e-07, - "smartwatches": 2.82e-07, - "smarty": 2.82e-07, - "smelters": 2.82e-07, - "snores": 2.82e-07, - "sohn": 2.82e-07, - "solent": 2.82e-07, - "soliloquy": 2.82e-07, - "someway": 2.82e-07, - "somthing": 2.82e-07, - "sonically": 2.82e-07, - "soothed": 2.82e-07, - "soylent": 2.82e-07, - "spats": 2.82e-07, - "specious": 2.82e-07, - "speight": 2.82e-07, - "spews": 2.82e-07, - "squeaked": 2.82e-07, - "staggers": 2.82e-07, - "stepsister": 2.82e-07, - "steubenville": 2.82e-07, - "stradivarius": 2.82e-07, - "strategize": 2.82e-07, - "streetlights": 2.82e-07, - "studebaker": 2.82e-07, - "sucre": 2.82e-07, - "superconductors": 2.82e-07, - "supremes": 2.82e-07, - "swatting": 2.82e-07, - "swf": 2.82e-07, - "switzer": 2.82e-07, - "synoptic": 2.82e-07, - "taha": 2.82e-07, - "tannin": 2.82e-07, - "tantalum": 2.82e-07, - "tati": 2.82e-07, - "telethon": 2.82e-07, - "tgs": 2.82e-07, - "therefrom": 2.82e-07, - "thracian": 2.82e-07, - "thumper": 2.82e-07, - "thundered": 2.82e-07, - "tilton": 2.82e-07, - "tithing": 2.82e-07, - "tmnt": 2.82e-07, - "tmo": 2.82e-07, - "tmr": 2.82e-07, - "tonality": 2.82e-07, - "topmost": 2.82e-07, - "transients": 2.82e-07, - "trembles": 2.82e-07, - "trowel": 2.82e-07, - "tshirts": 2.82e-07, - "turbans": 2.82e-07, - "tvn": 2.82e-07, - "tweety": 2.82e-07, - "twinkies": 2.82e-07, - "tz": 2.82e-07, - "unaccustomed": 2.82e-07, - "unawares": 2.82e-07, - "universalism": 2.82e-07, - "unlearn": 2.82e-07, - "unscrew": 2.82e-07, - "unsub": 2.82e-07, - "valance": 2.82e-07, - "ved": 2.82e-07, - "ventriloquist": 2.82e-07, - "verticals": 2.82e-07, - "vesper": 2.82e-07, - "vfr": 2.82e-07, - "vied": 2.82e-07, - "vig": 2.82e-07, - "viggo": 2.82e-07, - "vma": 2.82e-07, - "vociferous": 2.82e-07, - "voles": 2.82e-07, - "waders": 2.82e-07, - "wails": 2.82e-07, - "walford": 2.82e-07, - "wanderings": 2.82e-07, - "weft": 2.82e-07, - "weinberger": 2.82e-07, - "wellies": 2.82e-07, - "wester": 2.82e-07, - "wey": 2.82e-07, - "whereof": 2.82e-07, - "whirring": 2.82e-07, - "windings": 2.82e-07, - "winstons": 2.82e-07, - "witte": 2.82e-07, - "wollaston": 2.82e-07, - "woodall": 2.82e-07, - "workflows": 2.82e-07, - "worshipper": 2.82e-07, - "xb": 2.82e-07, - "xj": 2.82e-07, - "yaz": 2.82e-07, - "yosef": 2.82e-07, - "ytd": 2.82e-07, - "zachariah": 2.82e-07, - "zambezi": 2.82e-07, - "zapped": 2.82e-07, - "zippo": 2.82e-07, - "zirconium": 2.82e-07, - "zor": 2.82e-07, - "abbe": 2.75e-07, - "abrasives": 2.75e-07, - "absurdities": 2.75e-07, - "acad": 2.75e-07, - "academician": 2.75e-07, - "acetylene": 2.75e-07, - "acidosis": 2.75e-07, - "actuation": 2.75e-07, - "adani": 2.75e-07, - "adelaides": 2.75e-07, - "adrenergic": 2.75e-07, - "airbrushed": 2.75e-07, - "aliphatic": 2.75e-07, - "alkaloid": 2.75e-07, - "alles": 2.75e-07, - "altima": 2.75e-07, - "amano": 2.75e-07, - "amendola": 2.75e-07, - "amide": 2.75e-07, - "amjad": 2.75e-07, - "anesthetics": 2.75e-07, - "anika": 2.75e-07, - "annexes": 2.75e-07, - "anticancer": 2.75e-07, - "approximating": 2.75e-07, - "aqaba": 2.75e-07, - "arapahoe": 2.75e-07, - "ardently": 2.75e-07, - "ariza": 2.75e-07, - "armchairs": 2.75e-07, - "arrogantly": 2.75e-07, - "ashfield": 2.75e-07, - "assiduously": 2.75e-07, - "astronautics": 2.75e-07, - "asv": 2.75e-07, - "asw": 2.75e-07, - "atb": 2.75e-07, - "ayodhya": 2.75e-07, - "baggins": 2.75e-07, - "baltics": 2.75e-07, - "bamboozled": 2.75e-07, - "banderas": 2.75e-07, - "barroso": 2.75e-07, - "bassey": 2.75e-07, - "basso": 2.75e-07, - "bausch": 2.75e-07, - "beaconsfield": 2.75e-07, - "beatdown": 2.75e-07, - "beatz": 2.75e-07, - "beckford": 2.75e-07, - "belafonte": 2.75e-07, - "bendix": 2.75e-07, - "benelux": 2.75e-07, - "benjy": 2.75e-07, - "berate": 2.75e-07, - "biomechanical": 2.75e-07, - "bishkek": 2.75e-07, - "blithely": 2.75e-07, - "blockades": 2.75e-07, - "blockading": 2.75e-07, - "bloodlust": 2.75e-07, - "blotter": 2.75e-07, - "blowouts": 2.75e-07, - "bool": 2.75e-07, - "borisov": 2.75e-07, - "bowdoin": 2.75e-07, - "brabant": 2.75e-07, - "brambles": 2.75e-07, - "brayden": 2.75e-07, - "bremner": 2.75e-07, - "bridgwater": 2.75e-07, - "brigid": 2.75e-07, - "brimmed": 2.75e-07, - "brodeur": 2.75e-07, - "broil": 2.75e-07, - "brokaw": 2.75e-07, - "bromine": 2.75e-07, - "bucolic": 2.75e-07, - "bunga": 2.75e-07, - "bure": 2.75e-07, - "bushfires": 2.75e-07, - "buttresses": 2.75e-07, - "buyouts": 2.75e-07, - "calabar": 2.75e-07, - "calibrating": 2.75e-07, - "cals": 2.19e-07, - "calving": 2.75e-07, - "camara": 2.75e-07, - "cantata": 2.75e-07, - "carli": 2.75e-07, - "carlsberg": 2.75e-07, - "castlevania": 2.75e-07, - "centrelink": 2.75e-07, - "cer": 2.75e-07, - "cespedes": 2.75e-07, - "cest": 2.75e-07, - "chanced": 2.75e-07, - "channelling": 2.75e-07, - "charon": 2.75e-07, - "chartreuse": 2.75e-07, - "chowk": 2.75e-07, - "christmases": 2.75e-07, - "cilla": 2.75e-07, - "clapp": 2.75e-07, - "claro": 2.75e-07, - "cleland": 2.75e-07, - "cloudflare": 2.75e-07, - "cmi": 2.75e-07, - "cocksucker": 2.75e-07, - "codecs": 2.75e-07, - "colonialist": 2.75e-07, - "colter": 2.75e-07, - "combust": 2.75e-07, - "commercialism": 2.75e-07, - "compulsively": 2.75e-07, - "concretely": 2.75e-07, - "congruence": 2.75e-07, - "conseil": 2.75e-07, - "coochie": 2.75e-07, - "cosmonauts": 2.75e-07, - "cowles": 2.75e-07, - "cpsu": 2.75e-07, - "cruyff": 2.75e-07, - "culkin": 2.75e-07, - "cumulatively": 2.75e-07, - "customise": 2.75e-07, - "cve": 2.75e-07, - "cyanobacteria": 2.75e-07, - "cynics": 2.75e-07, - "daa": 2.75e-07, - "dall": 2.75e-07, - "dansk": 2.75e-07, - "darkseid": 2.75e-07, - "darkside": 2.75e-07, - "dato": 2.75e-07, - "dears": 2.75e-07, - "deflating": 2.75e-07, - "deflationary": 2.75e-07, - "delany": 2.75e-07, - "demigod": 2.75e-07, - "desantis": 2.75e-07, - "descents": 2.75e-07, - "desh": 2.75e-07, - "didst": 2.75e-07, - "dilate": 2.75e-07, - "discos": 5.13e-08, - "disinfecting": 2.75e-07, - "diuretics": 2.75e-07, - "dmk": 2.75e-07, - "dolled": 2.75e-07, - "dray": 2.75e-07, - "dtc": 2.75e-07, - "dukakis": 2.75e-07, - "duomo": 2.75e-07, - "duopoly": 2.75e-07, - "dynamos": 2.75e-07, - "edgardo": 2.75e-07, - "edgeworth": 2.75e-07, - "edifying": 2.75e-07, - "eggshells": 2.75e-07, - "ellesmere": 2.75e-07, - "emanated": 2.75e-07, - "emr": 2.75e-07, - "enslaving": 2.75e-07, - "entombed": 2.75e-07, - "epicentre": 2.75e-07, - "equivalently": 2.75e-07, - "erasers": 2.75e-07, - "etheridge": 2.75e-07, - "evaluators": 2.75e-07, - "evita": 2.75e-07, - "excitatory": 2.75e-07, - "eyepiece": 2.75e-07, - "facies": 2.75e-07, - "fau": 2.75e-07, - "feingold": 2.75e-07, - "fenix": 2.75e-07, - "fiddly": 2.75e-07, - "filo": 2.75e-07, - "fluvial": 2.75e-07, - "fnatic": 2.75e-07, - "foci": 2.75e-07, - "fomc": 2.75e-07, - "fop": 2.75e-07, - "forgoing": 2.75e-07, - "forme": 2.75e-07, - "forsberg": 2.75e-07, - "fourfold": 2.75e-07, - "fpv": 2.75e-07, - "frack": 2.75e-07, - "frankincense": 2.75e-07, - "freese": 2.75e-07, - "frere": 2.75e-07, - "ftm": 2.75e-07, - "futbol": 2.75e-07, - "galician": 2.75e-07, - "gambles": 5.75e-08, - "gasification": 2.75e-07, - "gass": 2.75e-07, - "gatlin": 2.75e-07, - "gav": 2.75e-07, - "gehrig": 2.75e-07, - "geosciences": 2.75e-07, - "gerbil": 2.75e-07, - "getters": 2.75e-07, - "geyer": 2.75e-07, - "giddings": 2.75e-07, - "gimmicky": 2.75e-07, - "gorgeously": 2.75e-07, - "gossamer": 2.75e-07, - "gramercy": 2.75e-07, - "grantees": 2.75e-07, - "greinke": 2.75e-07, - "grillo": 2.75e-07, - "gruel": 2.75e-07, - "gtp": 2.75e-07, - "gua": 2.75e-07, - "hakan": 2.75e-07, - "happenstance": 2.75e-07, - "harbouring": 2.75e-07, - "harkins": 2.75e-07, - "harolds": 2.75e-07, - "harried": 2.75e-07, - "harriers": 2.75e-07, - "hbs": 2.75e-07, - "headcount": 2.75e-07, - "heartthrob": 2.75e-07, - "heaved": 2.75e-07, - "hellas": 2.75e-07, - "helsing": 2.75e-07, - "helvetica": 2.75e-07, - "hesitantly": 2.75e-07, - "heuer": 2.75e-07, - "hmph": 2.75e-07, - "hoarders": 2.75e-07, - "hockney": 2.75e-07, - "hodgkins": 1.41e-07, - "holdout": 2.75e-07, - "honoree": 2.75e-07, - "horsley": 2.75e-07, - "hosni": 2.75e-07, - "humorist": 2.75e-07, - "hyaluronic": 2.75e-07, - "hydrates": 2.75e-07, - "hydrologic": 2.75e-07, - "hyphae": 2.75e-07, - "ident": 2.75e-07, - "idyll": 2.75e-07, - "ihr": 2.75e-07, - "ikon": 2.75e-07, - "illusionist": 2.75e-07, - "impeller": 2.75e-07, - "implantable": 2.75e-07, - "imt": 2.75e-07, - "inattentive": 2.75e-07, - "indent": 2.75e-07, - "indiscreet": 2.75e-07, - "indium": 2.75e-07, - "integrations": 2.75e-07, - "janos": 2.75e-07, - "jibe": 2.75e-07, - "joses": 2.75e-07, - "joule": 2.75e-07, - "jst": 2.75e-07, - "julians": 2.75e-07, - "kaitlin": 2.75e-07, - "kalashnikov": 2.75e-07, - "kaos": 2.75e-07, - "keef": 2.75e-07, - "kenzo": 2.75e-07, - "ketogenic": 2.75e-07, - "khawaja": 2.75e-07, - "kikuyu": 2.75e-07, - "kingsway": 2.75e-07, - "kishore": 2.75e-07, - "kissy": 2.75e-07, - "kitted": 2.75e-07, - "kiva": 2.75e-07, - "kneed": 2.75e-07, - "knickerbocker": 2.75e-07, - "knifed": 2.75e-07, - "koa": 2.75e-07, - "kony": 2.75e-07, - "kz": 2.75e-07, - "ladyboy": 2.75e-07, - "lamina": 2.75e-07, - "lanark": 2.75e-07, - "landes": 2.75e-07, - "landy": 2.75e-07, - "lapierre": 2.75e-07, - "lapointe": 2.75e-07, - "larks": 2.75e-07, - "lasse": 2.75e-07, - "leaver": 2.75e-07, - "leckie": 2.75e-07, - "lectern": 2.75e-07, - "leftwing": 2.75e-07, - "legionnaires": 2.75e-07, - "lemuel": 2.75e-07, - "leticia": 2.75e-07, - "lett": 2.75e-07, - "levying": 2.75e-07, - "leyla": 2.75e-07, - "limos": 2.75e-07, - "lindas": 2.75e-07, - "loach": 2.75e-07, - "loyally": 2.75e-07, - "luang": 2.75e-07, - "lulz": 2.75e-07, - "lurie": 2.75e-07, - "luttrell": 2.75e-07, - "lyall": 2.75e-07, - "lyles": 8.32e-08, - "macarena": 2.75e-07, - "maclaren": 2.75e-07, - "macrophage": 2.75e-07, - "magnetization": 2.75e-07, - "magnussen": 2.75e-07, - "mahayana": 2.75e-07, - "maketh": 2.75e-07, - "mangan": 2.75e-07, - "mariel": 2.75e-07, - "marionette": 2.75e-07, - "marouane": 2.75e-07, - "masochist": 2.75e-07, - "masturbated": 2.75e-07, - "mbappe": 2.75e-07, - "mccartneys": 2.75e-07, - "mckeon": 2.75e-07, - "mct": 2.75e-07, - "megyn": 2.75e-07, - "memorise": 2.75e-07, - "merrell": 2.75e-07, - "meshed": 2.75e-07, - "microcontroller": 2.75e-07, - "microfiber": 2.75e-07, - "milosevic": 2.75e-07, - "mimo": 2.75e-07, - "miserables": 2.75e-07, - "mismatches": 2.75e-07, - "mitterrand": 2.75e-07, - "moca": 2.75e-07, - "modulators": 2.75e-07, - "molesters": 2.75e-07, - "momento": 2.75e-07, - "morose": 2.75e-07, - "morte": 2.75e-07, - "mujeres": 2.75e-07, - "mukhtar": 2.75e-07, - "multilayer": 2.75e-07, - "multiplexing": 2.75e-07, - "multnomah": 2.75e-07, - "mungo": 2.75e-07, - "munition": 2.75e-07, - "nascars": 2.75e-07, - "naughton": 2.75e-07, - "negra": 2.75e-07, - "neruda": 2.75e-07, - "newquay": 2.75e-07, - "noes": 2.75e-07, - "nonce": 2.75e-07, - "nudges": 2.75e-07, - "numerology": 2.75e-07, - "obannon": 2.75e-07, - "odwyer": 2.75e-07, - "ocasio": 2.75e-07, - "olli": 2.75e-07, - "oncologists": 2.75e-07, - "ondo": 2.75e-07, - "oprahs": 2.75e-07, - "optimistically": 2.75e-07, - "orlov": 2.75e-07, - "orly": 2.75e-07, - "orme": 2.75e-07, - "oroville": 2.75e-07, - "ottawas": 2.75e-07, - "oud": 2.75e-07, - "outpaced": 2.75e-07, - "overdosing": 2.75e-07, - "overstepping": 2.75e-07, - "pacifists": 2.75e-07, - "paddies": 2.75e-07, - "paediatrics": 2.75e-07, - "pairwise": 2.75e-07, - "pally": 2.75e-07, - "param": 2.75e-07, - "parkman": 2.75e-07, - "peddlers": 2.75e-07, - "pedestals": 2.75e-07, - "pendragon": 2.75e-07, - "pentagons": 5.5e-08, - "permaculture": 2.75e-07, - "petronas": 2.75e-07, - "philbin": 2.75e-07, - "philosophic": 2.75e-07, - "phoneme": 2.75e-07, - "phonemic": 2.75e-07, - "physiologic": 2.75e-07, - "picassos": 5.25e-08, - "pimped": 2.75e-07, - "pkg": 2.75e-07, - "plebeian": 2.75e-07, - "ploughs": 2.75e-07, - "poindexter": 2.75e-07, - "popo": 2.75e-07, - "possums": 2.75e-07, - "precession": 2.75e-07, - "preempt": 2.75e-07, - "prefectural": 2.75e-07, - "prichard": 2.75e-07, - "primavera": 2.75e-07, - "propositional": 2.75e-07, - "publicists": 2.75e-07, - "pummeled": 2.75e-07, - "purina": 2.75e-07, - "qadri": 2.75e-07, - "quatre": 2.75e-07, - "quincey": 2.75e-07, - "racquetball": 2.75e-07, - "radiographic": 2.75e-07, - "railroading": 2.75e-07, - "ralphs": 1.05e-07, - "ramblers": 2.75e-07, - "ramiro": 2.75e-07, - "ranchi": 2.75e-07, - "rationalizing": 2.75e-07, - "rayo": 2.75e-07, - "raz": 2.75e-07, - "ream": 2.75e-07, - "rebeccas": 2.75e-07, - "redder": 2.75e-07, - "refractor": 2.75e-07, - "regrow": 2.75e-07, - "remotest": 2.75e-07, - "repels": 2.75e-07, - "repositioned": 2.75e-07, - "retorts": 2.75e-07, - "retrievers": 2.75e-07, - "reuter": 2.75e-07, - "revaluation": 2.75e-07, - "riflemen": 2.75e-07, - "riposte": 2.75e-07, - "rive": 2.75e-07, - "rls": 5.25e-08, - "roark": 2.75e-07, - "robbo": 2.75e-07, - "robertsons": 2.75e-07, - "rocketing": 2.75e-07, - "rockport": 2.75e-07, - "roden": 2.75e-07, - "rosales": 2.75e-07, - "rosemont": 2.75e-07, - "roubaix": 2.75e-07, - "rowlands": 7.76e-08, - "ruf": 2.75e-07, - "ryback": 2.75e-07, - "saddening": 2.75e-07, - "sailings": 2.75e-07, - "sainthood": 2.75e-07, - "salud": 2.75e-07, - "salutation": 2.75e-07, - "sandisk": 2.75e-07, - "sapper": 2.75e-07, - "scandinavians": 2.75e-07, - "sciatic": 2.75e-07, - "scopus": 2.75e-07, - "scotiabank": 2.75e-07, - "screwball": 2.75e-07, - "seale": 2.75e-07, - "sekai": 2.75e-07, - "selah": 2.75e-07, - "semantically": 2.75e-07, - "semple": 2.75e-07, - "serums": 2.75e-07, - "sessile": 2.75e-07, - "settee": 2.75e-07, - "shami": 2.75e-07, - "shannons": 2.75e-07, - "shastri": 2.75e-07, - "shelbyville": 2.75e-07, - "sherbrooke": 2.75e-07, - "shigeru": 2.75e-07, - "shogunate": 2.75e-07, - "shure": 2.75e-07, - "shylock": 2.75e-07, - "sidon": 2.75e-07, - "sikorsky": 2.75e-07, - "sindhu": 2.75e-07, - "singularities": 2.75e-07, - "skewered": 2.75e-07, - "skimmer": 2.75e-07, - "slaughterhouses": 2.75e-07, - "slivers": 2.75e-07, - "smithereens": 2.75e-07, - "smithson": 2.75e-07, - "snf": 2.75e-07, - "snorkelling": 2.75e-07, - "socials": 2.75e-07, - "sodden": 2.75e-07, - "soli": 2.75e-07, - "southall": 2.75e-07, - "specie": 2.75e-07, - "speechwriter": 2.75e-07, - "spillage": 2.75e-07, - "spiritualist": 2.75e-07, - "spo": 2.75e-07, - "srebrenica": 2.75e-07, - "srm": 2.75e-07, - "sso": 2.75e-07, - "stabilising": 2.75e-07, - "stalinism": 2.75e-07, - "steamships": 2.75e-07, - "stiglitz": 2.75e-07, - "stinker": 2.75e-07, - "stipends": 2.75e-07, - "stirrup": 2.75e-07, - "stockdale": 2.75e-07, - "strangler": 2.75e-07, - "strasser": 2.75e-07, - "subgenre": 2.75e-07, - "subplots": 2.75e-07, - "succumbs": 2.75e-07, - "sultanate": 2.75e-07, - "sunlit": 2.75e-07, - "superbike": 2.75e-07, - "supers": 2.75e-07, - "suppressive": 2.75e-07, - "suva": 2.75e-07, - "swoops": 2.75e-07, - "synchronicity": 2.75e-07, - "syncs": 2.75e-07, - "syrah": 2.75e-07, - "tabular": 2.75e-07, - "tawdry": 2.75e-07, - "technics": 2.75e-07, - "temecula": 2.75e-07, - "thalamus": 2.75e-07, - "thibault": 2.75e-07, - "threshing": 2.75e-07, - "throngs": 2.75e-07, - "thwaites": 2.75e-07, - "tigre": 2.75e-07, - "timex": 2.75e-07, - "tns": 2.75e-07, - "torchlight": 2.75e-07, - "touristic": 2.75e-07, - "transl": 2.75e-07, - "transom": 2.75e-07, - "transsexuals": 2.75e-07, - "trigonometric": 2.75e-07, - "tunics": 2.75e-07, - "tuple": 2.75e-07, - "tupper": 2.75e-07, - "twiggy": 2.75e-07, - "typefaces": 2.75e-07, - "tysons": 1.62e-07, - "uic": 2.75e-07, - "uncountable": 2.75e-07, - "unearthly": 2.75e-07, - "unfashionable": 2.75e-07, - "unlit": 2.75e-07, - "unpainted": 2.75e-07, - "unpaved": 2.75e-07, - "updike": 2.75e-07, - "usagi": 2.75e-07, - "vandalised": 2.75e-07, - "vanya": 2.75e-07, - "vba": 2.75e-07, - "velour": 2.75e-07, - "verbose": 2.75e-07, - "verging": 2.75e-07, - "vespers": 2.75e-07, - "vilify": 2.75e-07, - "virility": 2.75e-07, - "wahhabi": 2.75e-07, - "walsingham": 2.75e-07, - "wam": 2.75e-07, - "warps": 2.75e-07, - "wasatch": 2.75e-07, - "weeden": 2.75e-07, - "weightlifter": 2.75e-07, - "westley": 2.75e-07, - "wilber": 2.75e-07, - "wildlings": 2.75e-07, - "wilford": 2.75e-07, - "windswept": 2.75e-07, - "winsor": 2.75e-07, - "wisps": 2.75e-07, - "wod": 2.75e-07, - "woodcuts": 2.75e-07, - "wozniacki": 2.75e-07, - "wrested": 2.75e-07, - "xiamen": 2.75e-07, - "yamazaki": 2.75e-07, - "yogyakarta": 2.75e-07, - "yohan": 2.75e-07, - "zakaria": 2.75e-07, - "zakir": 2.75e-07, - "zoltan": 2.75e-07, - "zookeeper": 2.75e-07, - "abbots": 6.17e-08, - "abcd": 2.69e-07, - "abramovich": 2.69e-07, - "absolutes": 2.69e-07, - "acheson": 2.69e-07, - "acknowledgements": 2.69e-07, - "acoustically": 2.69e-07, - "adelson": 2.69e-07, - "affine": 2.69e-07, - "afflict": 2.69e-07, - "agee": 2.69e-07, - "agronomy": 2.69e-07, - "ahern": 2.69e-07, - "aic": 2.69e-07, - "alexandrian": 2.69e-07, - "alhaji": 2.69e-07, - "alka": 2.69e-07, - "allegany": 2.69e-07, - "amerika": 2.69e-07, - "andriy": 2.69e-07, - "anp": 2.69e-07, - "anushka": 2.69e-07, - "apotheosis": 2.69e-07, - "arron": 2.69e-07, - "arti": 2.69e-07, - "astrazeneca": 2.69e-07, - "aught": 2.69e-07, - "augie": 2.69e-07, - "aurelio": 2.69e-07, - "autologous": 2.69e-07, - "ayo": 2.69e-07, - "babylonians": 2.69e-07, - "backcourt": 2.69e-07, - "bagh": 2.69e-07, - "bandmate": 2.69e-07, - "bantamweight": 2.69e-07, - "barrens": 2.69e-07, - "barty": 2.69e-07, - "bassline": 2.69e-07, - "bataan": 2.69e-07, - "bechtel": 2.69e-07, - "beetlejuice": 2.69e-07, - "belay": 2.69e-07, - "bellinger": 2.69e-07, - "belter": 2.69e-07, - "benzodiazepine": 2.69e-07, - "beths": 2.69e-07, - "bethnal": 2.69e-07, - "biomaterials": 2.69e-07, - "birthdate": 2.69e-07, - "blackett": 2.69e-07, - "blacklisting": 2.69e-07, - "blankenship": 2.69e-07, - "blanking": 2.69e-07, - "blogspot": 2.69e-07, - "bloop": 2.69e-07, - "bluesy": 2.69e-07, - "bobsled": 2.69e-07, - "bonk": 2.69e-07, - "borland": 2.69e-07, - "botticelli": 2.69e-07, - "boudreau": 2.69e-07, - "boylston": 2.69e-07, - "brae": 2.69e-07, - "brawler": 2.69e-07, - "brenna": 2.69e-07, - "brokering": 2.69e-07, - "buffed": 2.69e-07, - "bullitt": 2.69e-07, - "bungled": 2.69e-07, - "bunn": 2.69e-07, - "bunsen": 2.69e-07, - "burdett": 2.69e-07, - "burl": 2.69e-07, - "buscemi": 2.69e-07, - "bushland": 2.69e-07, - "bustin": 2.69e-07, - "cafeterias": 2.69e-07, - "calamitous": 2.69e-07, - "calgarys": 2.69e-07, - "canard": 2.69e-07, - "capitalised": 2.69e-07, - "caraway": 2.69e-07, - "cardozo": 2.69e-07, - "castleford": 2.69e-07, - "catatonic": 2.69e-07, - "causally": 2.69e-07, - "ccf": 2.69e-07, - "cenozoic": 2.69e-07, - "centerville": 2.69e-07, - "centrifuges": 2.69e-07, - "cerevisiae": 2.69e-07, - "cgs": 2.69e-07, - "chiaki": 2.69e-07, - "chon": 2.69e-07, - "chromebooks": 2.69e-07, - "chrysostom": 2.69e-07, - "circuitous": 2.69e-07, - "clamouring": 2.69e-07, - "clin": 2.69e-07, - "cloistered": 2.69e-07, - "commonwealths": 1.29e-07, - "commutation": 2.69e-07, - "concoct": 2.69e-07, - "conners": 8.51e-08, - "contoured": 2.69e-07, - "cooing": 2.69e-07, - "corbyns": 2.69e-07, - "cordoned": 2.69e-07, - "cori": 2.69e-07, - "costar": 2.69e-07, - "coster": 2.69e-07, - "cotto": 2.69e-07, - "creedence": 2.69e-07, - "creosote": 2.69e-07, - "crumbly": 2.69e-07, - "cubits": 2.69e-07, - "cultists": 2.69e-07, - "curio": 2.69e-07, - "cushioning": 2.69e-07, - "cust": 2.69e-07, - "cuzco": 2.69e-07, - "dakotas": 2.51e-07, - "damons": 2.69e-07, - "danni": 2.69e-07, - "dative": 2.69e-07, - "dcf": 2.69e-07, - "deadman": 2.69e-07, - "deathstroke": 2.69e-07, - "decentralisation": 2.69e-07, - "decolonization": 2.69e-07, - "defused": 2.69e-07, - "deke": 2.69e-07, - "deliverable": 2.69e-07, - "deluca": 2.69e-07, - "dendrites": 2.69e-07, - "deplore": 2.69e-07, - "depressingly": 2.69e-07, - "destitution": 2.69e-07, - "deville": 2.69e-07, - "dhamma": 2.69e-07, - "dili": 2.69e-07, - "dilma": 2.69e-07, - "dinh": 2.69e-07, - "disclaim": 2.69e-07, - "disillusion": 2.69e-07, - "distinctiveness": 2.69e-07, - "doldrums": 2.69e-07, - "dooku": 2.69e-07, - "dougal": 2.69e-07, - "dovetail": 2.69e-07, - "dramatization": 2.69e-07, - "dred": 2.69e-07, - "dressy": 2.69e-07, - "drews": 9.33e-08, - "dubais": 2.69e-07, - "dumbing": 2.69e-07, - "dunhill": 2.69e-07, - "durkin": 2.69e-07, - "eardrum": 2.69e-07, - "eastlake": 2.69e-07, - "ebt": 2.69e-07, - "ecotourism": 2.69e-07, - "elis": 2.19e-07, - "ellicott": 2.69e-07, - "ellipsis": 2.69e-07, - "elvish": 2.69e-07, - "emoticon": 2.69e-07, - "empathise": 2.69e-07, - "emporia": 2.69e-07, - "encroached": 2.69e-07, - "encyclical": 2.69e-07, - "endeavored": 2.69e-07, - "endow": 2.69e-07, - "eschatology": 2.69e-07, - "evp": 2.69e-07, - "extorting": 2.69e-07, - "falun": 2.69e-07, - "fawlty": 2.69e-07, - "fearfully": 2.69e-07, - "felines": 2.69e-07, - "firma": 2.69e-07, - "fishin": 2.69e-07, - "flemings": 1.02e-07, - "folksy": 2.69e-07, - "fontainebleau": 2.69e-07, - "foramen": 2.69e-07, - "forecaster": 2.69e-07, - "forfeiting": 2.69e-07, - "formica": 2.69e-07, - "fosse": 2.69e-07, - "freemason": 2.69e-07, - "fron": 2.69e-07, - "frontpage": 2.69e-07, - "frum": 2.69e-07, - "functionalities": 2.69e-07, - "fundraise": 2.69e-07, - "funimation": 2.69e-07, - "gardenia": 2.69e-07, - "gazetteer": 2.69e-07, - "germanium": 2.69e-07, - "gianna": 2.69e-07, - "gild": 2.69e-07, - "glasshouse": 2.69e-07, - "gleeful": 2.69e-07, - "gluck": 2.69e-07, - "goggle": 2.69e-07, - "goldfinch": 2.69e-07, - "goldin": 2.69e-07, - "gord": 2.69e-07, - "grasps": 2.69e-07, - "greenest": 2.69e-07, - "guangxi": 2.69e-07, - "gutman": 2.69e-07, - "hairdryer": 2.69e-07, - "harmlessly": 2.69e-07, - "hasegawa": 2.69e-07, - "hawkish": 2.69e-07, - "hazlitt": 2.69e-07, - "heightening": 2.69e-07, - "heightens": 2.69e-07, - "hema": 2.69e-07, - "hemodialysis": 2.69e-07, - "hensley": 2.69e-07, - "heung": 2.69e-07, - "hewson": 2.69e-07, - "hia": 2.69e-07, - "hieroglyphs": 2.69e-07, - "hitchhikers": 2.09e-07, - "hofstra": 2.69e-07, - "holdup": 2.69e-07, - "honked": 2.69e-07, - "hossain": 2.69e-07, - "hotlines": 2.69e-07, - "hotmail": 2.69e-07, - "hoverboard": 2.69e-07, - "hrd": 2.69e-07, - "humdrum": 2.69e-07, - "hunker": 2.69e-07, - "huy": 2.69e-07, - "ibu": 2.69e-07, - "icicle": 2.69e-07, - "ikeda": 2.69e-07, - "imager": 2.69e-07, - "imbalanced": 2.69e-07, - "impartially": 2.69e-07, - "impermeable": 2.69e-07, - "implanting": 2.69e-07, - "imprinting": 2.69e-07, - "inbetweeners": 2.69e-07, - "inborn": 2.69e-07, - "inductance": 2.69e-07, - "infallibility": 2.69e-07, - "infiltrators": 2.69e-07, - "inglorious": 2.69e-07, - "initialized": 2.69e-07, - "institutionalised": 2.69e-07, - "interstates": 2.69e-07, - "ints": 2.69e-07, - "iqs": 8.71e-08, - "ironies": 2.69e-07, - "irritants": 2.69e-07, - "isidore": 2.69e-07, - "italo": 2.69e-07, - "itm": 2.69e-07, - "izzo": 2.69e-07, - "jaan": 2.69e-07, - "jabbing": 2.69e-07, - "jadeja": 2.69e-07, - "janey": 2.69e-07, - "japonica": 2.69e-07, - "jarl": 2.69e-07, - "jeering": 2.69e-07, - "jessa": 2.69e-07, - "jokey": 2.69e-07, - "josephson": 2.69e-07, - "jostling": 2.69e-07, - "jungian": 2.69e-07, - "kagame": 2.69e-07, - "kakashi": 2.69e-07, - "kamp": 2.69e-07, - "kanata": 2.69e-07, - "kaori": 2.69e-07, - "kava": 2.69e-07, - "kellen": 2.69e-07, - "kem": 2.69e-07, - "keno": 2.69e-07, - "keren": 2.69e-07, - "knockers": 2.69e-07, - "korver": 2.69e-07, - "kostas": 2.69e-07, - "kou": 2.69e-07, - "krone": 2.69e-07, - "kuching": 2.69e-07, - "kudo": 2.69e-07, - "kui": 2.69e-07, - "kwa": 2.69e-07, - "labyrinthine": 2.69e-07, - "lahey": 2.69e-07, - "lambasted": 2.69e-07, - "lanzarote": 2.69e-07, - "lapels": 2.69e-07, - "laryngeal": 2.69e-07, - "lavery": 2.69e-07, - "laxmi": 2.69e-07, - "lbw": 2.69e-07, - "leaguer": 2.69e-07, - "leant": 2.69e-07, - "legalise": 2.69e-07, - "lela": 2.69e-07, - "lemongrass": 2.69e-07, - "leucine": 2.69e-07, - "lidia": 2.69e-07, - "lineal": 2.69e-07, - "lipman": 2.69e-07, - "litigate": 2.69e-07, - "livre": 2.69e-07, - "lloris": 2.69e-07, - "lockes": 2.69e-07, - "lockport": 2.69e-07, - "logins": 2.69e-07, - "longchamp": 2.69e-07, - "lubricate": 2.69e-07, - "lue": 2.69e-07, - "lugar": 2.69e-07, - "luminescent": 2.69e-07, - "lundgren": 2.69e-07, - "luthers": 2.69e-07, - "lysis": 2.69e-07, - "maar": 2.69e-07, - "macaque": 2.69e-07, - "machin": 2.69e-07, - "mackinac": 2.69e-07, - "madcap": 2.69e-07, - "maeda": 2.69e-07, - "maggi": 2.69e-07, - "mahendra": 2.69e-07, - "mainstays": 2.69e-07, - "mainwaring": 2.69e-07, - "malformation": 2.69e-07, - "manes": 4.9e-08, - "maquis": 2.69e-07, - "maritimes": 2.69e-07, - "marte": 2.69e-07, - "matric": 2.69e-07, - "mayall": 2.69e-07, - "mccaw": 2.69e-07, - "medan": 2.69e-07, - "mentalist": 2.69e-07, - "meso": 2.69e-07, - "metrical": 2.69e-07, - "micrometers": 2.69e-07, - "migos": 2.69e-07, - "mili": 2.69e-07, - "minder": 2.69e-07, - "mip": 2.69e-07, - "mirandas": 2.69e-07, - "misquoted": 2.69e-07, - "mmhg": 2.69e-07, - "mobley": 2.69e-07, - "moldings": 2.69e-07, - "mooch": 2.69e-07, - "morissette": 2.69e-07, - "morrill": 2.69e-07, - "mouldy": 2.69e-07, - "munger": 2.69e-07, - "munk": 2.69e-07, - "murph": 2.69e-07, - "museveni": 2.69e-07, - "musicality": 2.69e-07, - "musique": 2.69e-07, - "musky": 2.69e-07, - "muss": 2.69e-07, - "mwh": 2.69e-07, - "nablus": 2.69e-07, - "naf": 2.69e-07, - "nagaland": 2.69e-07, - "nando": 2.69e-07, - "nanomaterials": 2.69e-07, - "nassar": 2.69e-07, - "nastier": 2.69e-07, - "nata": 2.69e-07, - "nates": 6.76e-08, - "neem": 2.69e-07, - "neuman": 2.69e-07, - "neutralise": 2.69e-07, - "newland": 2.69e-07, - "nikolas": 2.69e-07, - "nimoy": 2.69e-07, - "nissen": 2.69e-07, - "noona": 2.69e-07, - "noosa": 2.69e-07, - "northam": 2.69e-07, - "nour": 2.69e-07, - "ntv": 2.69e-07, - "nycs": 2.69e-07, - "obrian": 2.69e-07, - "omeara": 2.69e-07, - "oca": 2.69e-07, - "octopuses": 2.69e-07, - "oms": 2.69e-07, - "onesies": 2.69e-07, - "oodles": 2.69e-07, - "orifices": 2.69e-07, - "ostriches": 2.69e-07, - "oto": 2.69e-07, - "overslept": 2.69e-07, - "oversupply": 2.69e-07, - "overwrite": 2.69e-07, - "painterly": 2.69e-07, - "palawan": 2.69e-07, - "pana": 2.69e-07, - "panna": 2.69e-07, - "pansies": 2.69e-07, - "paperless": 2.69e-07, - "patchouli": 2.69e-07, - "pearse": 2.69e-07, - "pelting": 2.69e-07, - "perennially": 2.69e-07, - "perforations": 2.69e-07, - "pericles": 2.69e-07, - "petted": 2.69e-07, - "pharm": 2.69e-07, - "physicals": 2.69e-07, - "planed": 2.69e-07, - "plasmids": 2.69e-07, - "playmakers": 2.69e-07, - "plein": 2.69e-07, - "poetically": 2.69e-07, - "pohl": 2.69e-07, - "politique": 2.69e-07, - "pollinate": 2.69e-07, - "polymorphic": 2.69e-07, - "pomegranates": 2.69e-07, - "preds": 2.69e-07, - "professorial": 2.69e-07, - "propofol": 2.69e-07, - "psalter": 2.69e-07, - "pwr": 2.69e-07, - "qed": 2.69e-07, - "quaking": 2.69e-07, - "quando": 2.69e-07, - "quasar": 2.69e-07, - "quickening": 2.69e-07, - "qvc": 2.69e-07, - "rafale": 2.69e-07, - "rager": 2.69e-07, - "rainmaker": 2.69e-07, - "ramsays": 2.69e-07, - "ramshackle": 2.69e-07, - "ranbir": 2.69e-07, - "randoms": 2.69e-07, - "rcm": 2.69e-07, - "redecorating": 2.69e-07, - "reenter": 2.69e-07, - "reformulated": 2.69e-07, - "refrains": 2.69e-07, - "rehired": 2.69e-07, - "rend": 2.69e-07, - "renzi": 2.69e-07, - "repos": 2.69e-07, - "resistivity": 2.69e-07, - "resourced": 2.69e-07, - "ridgefield": 2.69e-07, - "rien": 2.69e-07, - "rightist": 2.69e-07, - "ringers": 2.69e-07, - "ripoff": 2.69e-07, - "rippled": 2.69e-07, - "risque": 2.69e-07, - "robed": 2.69e-07, - "romulan": 2.69e-07, - "romy": 2.69e-07, - "rowntree": 2.69e-07, - "rrsp": 2.69e-07, - "rugrats": 2.69e-07, - "ruthie": 2.69e-07, - "sacrilegious": 2.69e-07, - "sacrosanct": 2.69e-07, - "sancti": 2.69e-07, - "sandbag": 2.69e-07, - "sated": 2.69e-07, - "scabies": 2.69e-07, - "scania": 2.69e-07, - "scatters": 2.69e-07, - "scf": 2.69e-07, - "schadenfreude": 2.69e-07, - "schaumburg": 2.69e-07, - "schleswig": 2.69e-07, - "searcher": 2.69e-07, - "sevenoaks": 2.69e-07, - "shakeup": 2.69e-07, - "sheaves": 2.69e-07, - "shinichi": 2.69e-07, - "sigourney": 2.69e-07, - "sigrid": 2.69e-07, - "silvester": 2.69e-07, - "singe": 2.69e-07, - "skateboarder": 2.69e-07, - "skynyrd": 2.69e-07, - "skytrain": 2.69e-07, - "slurring": 2.69e-07, - "smokehouse": 2.69e-07, - "snowmen": 2.69e-07, - "soir": 2.69e-07, - "solicitations": 2.69e-07, - "songbirds": 2.69e-07, - "soonest": 2.69e-07, - "soundproof": 2.69e-07, - "southfield": 2.69e-07, - "spacewalk": 2.69e-07, - "spay": 2.69e-07, - "sprig": 2.69e-07, - "sprigs": 2.69e-07, - "spyro": 2.69e-07, - "srl": 2.69e-07, - "steppin": 2.69e-07, - "steuben": 2.69e-07, - "stimson": 2.69e-07, - "stine": 2.69e-07, - "stockmarket": 2.69e-07, - "straddled": 2.69e-07, - "strava": 2.69e-07, - "streatham": 2.69e-07, - "stuttered": 2.69e-07, - "sudans": 2.69e-07, - "sudo": 2.69e-07, - "suet": 2.69e-07, - "sunburned": 2.69e-07, - "supremo": 2.69e-07, - "sutras": 2.69e-07, - "swatted": 2.69e-07, - "sways": 2.69e-07, - "swum": 2.69e-07, - "tablecloths": 2.69e-07, - "tallow": 2.69e-07, - "talmudic": 2.69e-07, - "tamoxifen": 2.69e-07, - "tardiness": 2.69e-07, - "tarry": 2.69e-07, - "tartarus": 2.69e-07, - "tates": 9.77e-08, - "teeter": 2.69e-07, - "tei": 2.69e-07, - "telomeres": 2.69e-07, - "temporally": 2.69e-07, - "testis": 2.69e-07, - "teva": 2.69e-07, - "theatrically": 2.69e-07, - "thibaut": 2.69e-07, - "thistles": 2.69e-07, - "threadbare": 2.69e-07, - "tigray": 2.69e-07, - "tir": 2.69e-07, - "tolman": 2.69e-07, - "tomasz": 2.69e-07, - "toughened": 2.69e-07, - "tourettes": 8.51e-08, - "toyo": 2.69e-07, - "trae": 2.69e-07, - "transgendered": 2.69e-07, - "transliteration": 2.69e-07, - "tremaine": 2.69e-07, - "tren": 2.69e-07, - "trilateral": 2.69e-07, - "trini": 2.69e-07, - "truant": 2.69e-07, - "trudged": 2.69e-07, - "truex": 2.69e-07, - "tseng": 2.69e-07, - "tudors": 2.69e-07, - "turnstiles": 2.69e-07, - "twi": 2.69e-07, - "tyndale": 2.69e-07, - "udo": 2.69e-07, - "ummmm": 2.69e-07, - "umno": 2.69e-07, - "unblemished": 2.69e-07, - "uncircumcised": 2.69e-07, - "underemployed": 2.69e-07, - "undertow": 2.69e-07, - "unmasking": 2.69e-07, - "unravelling": 2.69e-07, - "unshakable": 2.69e-07, - "vagrants": 2.69e-07, - "varela": 2.69e-07, - "verbiage": 2.69e-07, - "voigt": 2.69e-07, - "vostok": 2.69e-07, - "vulcans": 2.69e-07, - "wacker": 2.69e-07, - "wailed": 2.69e-07, - "waleed": 2.69e-07, - "waterville": 2.69e-07, - "weakling": 2.69e-07, - "webpages": 2.69e-07, - "weightlessness": 2.69e-07, - "weis": 7.41e-08, - "welland": 2.69e-07, - "willcox": 2.69e-07, - "windpipe": 2.69e-07, - "wks": 2.69e-07, - "wma": 2.69e-07, - "yarder": 2.69e-07, - "yelena": 2.69e-07, - "ypsilanti": 2.69e-07, - "yurt": 2.69e-07, - "yusuke": 2.69e-07, - "zweig": 2.69e-07, - "abbys": 2.63e-07, - "abhi": 2.63e-07, - "abington": 2.63e-07, - "abscesses": 2.63e-07, - "accutane": 2.63e-07, - "acquiesced": 2.63e-07, - "actu": 2.63e-07, - "addington": 2.63e-07, - "adha": 2.63e-07, - "adn": 2.63e-07, - "adolphe": 2.63e-07, - "afore": 2.63e-07, - "afzal": 2.63e-07, - "ahah": 2.63e-07, - "ainsley": 2.63e-07, - "alena": 2.63e-07, - "aliyev": 2.63e-07, - "alums": 2.63e-07, - "alwyn": 2.63e-07, - "amf": 2.63e-07, - "androgens": 2.63e-07, - "anecdotally": 2.63e-07, - "anticoagulant": 2.63e-07, - "antipsychotics": 2.63e-07, - "antonov": 2.63e-07, - "appellants": 5.37e-08, - "apprehending": 2.63e-07, - "aqueducts": 2.63e-07, - "aquitaine": 2.63e-07, - "arabica": 2.63e-07, - "arbitral": 2.63e-07, - "archeologist": 2.63e-07, - "ardennes": 2.63e-07, - "arndt": 2.63e-07, - "aromatics": 2.63e-07, - "artic": 2.63e-07, - "asshat": 2.63e-07, - "astrocytes": 2.63e-07, - "aubry": 2.63e-07, - "awakes": 2.63e-07, - "awami": 2.63e-07, - "backwaters": 2.63e-07, - "baha": 2.63e-07, - "baikal": 2.63e-07, - "bakker": 2.63e-07, - "bakshi": 2.63e-07, - "ballymena": 2.63e-07, - "banality": 2.63e-07, - "barangay": 2.63e-07, - "barbarossa": 2.63e-07, - "basilisk": 2.63e-07, - "bazaars": 2.63e-07, - "bbe": 2.63e-07, - "benetton": 2.63e-07, - "benue": 2.63e-07, - "bergdahl": 2.63e-07, - "betrayals": 2.63e-07, - "bettie": 2.63e-07, - "bint": 2.63e-07, - "biologics": 2.63e-07, - "biopharmaceutical": 2.63e-07, - "bipedal": 2.63e-07, - "bitmap": 2.63e-07, - "blackmon": 2.63e-07, - "blas": 2.63e-07, - "blinkers": 2.63e-07, - "blooper": 2.63e-07, - "bludgeoned": 2.63e-07, - "boggy": 2.63e-07, - "boners": 2.63e-07, - "boogers": 2.63e-07, - "booklist": 2.63e-07, - "bracknell": 2.63e-07, - "brainard": 2.63e-07, - "breakable": 2.63e-07, - "breathlessly": 2.63e-07, - "brescia": 2.63e-07, - "brubaker": 2.63e-07, - "bulldozed": 2.63e-07, - "burgesses": 2.63e-07, - "buzzes": 2.63e-07, - "byzantines": 2.63e-07, - "cadmus": 2.63e-07, - "calibers": 2.63e-07, - "canaanite": 2.63e-07, - "carbons": 2.63e-07, - "cardin": 2.63e-07, - "cardoso": 2.63e-07, - "carting": 2.63e-07, - "castello": 2.63e-07, - "castilian": 2.63e-07, - "catastrophically": 2.63e-07, - "catriona": 2.63e-07, - "centrals": 7.76e-08, - "centralize": 2.63e-07, - "cession": 2.63e-07, - "chadian": 2.63e-07, - "chakraborty": 2.63e-07, - "chamonix": 2.63e-07, - "chaplaincy": 2.63e-07, - "cheong": 2.63e-07, - "chided": 2.63e-07, - "chippendale": 2.63e-07, - "churchman": 2.63e-07, - "claymore": 2.63e-07, - "cocteau": 2.63e-07, - "coercing": 2.63e-07, - "collate": 2.63e-07, - "colonia": 2.63e-07, - "colonic": 2.63e-07, - "commissariat": 2.63e-07, - "compacts": 2.63e-07, - "condi": 2.63e-07, - "conic": 2.63e-07, - "consecrate": 2.63e-07, - "contingents": 2.63e-07, - "conways": 2.63e-07, - "corinna": 2.63e-07, - "corrector": 2.63e-07, - "corticosteroid": 2.63e-07, - "corvus": 2.63e-07, - "counterparty": 2.63e-07, - "crier": 2.63e-07, - "cringeworthy": 2.63e-07, - "cuckoos": 1.7e-07, - "cuda": 2.63e-07, - "danby": 2.63e-07, - "datta": 2.63e-07, - "dau": 2.63e-07, - "ddp": 2.63e-07, - "deena": 2.63e-07, - "deion": 2.63e-07, - "demeter": 2.63e-07, - "demille": 2.63e-07, - "denigrating": 2.63e-07, - "denouement": 2.63e-07, - "dines": 2.63e-07, - "dissociated": 2.63e-07, - "divisor": 2.63e-07, - "dixons": 1.2e-07, - "doane": 2.63e-07, - "donovans": 2.63e-07, - "dorcas": 2.63e-07, - "dorsett": 2.63e-07, - "dosent": 1.2e-07, - "dower": 2.63e-07, - "draughtsman": 2.63e-07, - "ductile": 2.63e-07, - "duelling": 2.63e-07, - "duk": 2.63e-07, - "eardrums": 2.63e-07, - "earthworm": 2.63e-07, - "ebbing": 2.63e-07, - "eberhard": 2.63e-07, - "ecchi": 2.63e-07, - "eccleston": 2.63e-07, - "eclampsia": 2.63e-07, - "emmanuelle": 2.63e-07, - "employable": 2.63e-07, - "encino": 2.63e-07, - "enmeshed": 2.63e-07, - "enquiring": 2.63e-07, - "equips": 2.63e-07, - "erb": 2.63e-07, - "estrogens": 2.63e-07, - "euphemisms": 2.63e-07, - "evades": 2.63e-07, - "evicting": 2.63e-07, - "ewald": 2.63e-07, - "exaggerations": 2.63e-07, - "exertions": 2.63e-07, - "exhaustively": 2.63e-07, - "exhibitionist": 2.63e-07, - "exhorted": 2.63e-07, - "faun": 2.63e-07, - "felder": 2.63e-07, - "ferraro": 2.63e-07, - "ferrier": 2.63e-07, - "fertilisers": 2.63e-07, - "festa": 2.63e-07, - "ficus": 2.63e-07, - "fieldhouse": 2.63e-07, - "fieri": 2.63e-07, - "fils": 2.63e-07, - "fiore": 2.63e-07, - "fitters": 2.63e-07, - "fleurs": 2.63e-07, - "fluoridation": 2.63e-07, - "fluttered": 2.63e-07, - "flyweight": 2.63e-07, - "fpc": 2.63e-07, - "freakishly": 2.63e-07, - "frenchie": 2.63e-07, - "fresnel": 2.63e-07, - "frictional": 2.63e-07, - "frito": 2.63e-07, - "futa": 2.63e-07, - "gaf": 2.63e-07, - "ganging": 2.63e-07, - "gau": 2.63e-07, - "geldof": 2.63e-07, - "genet": 2.63e-07, - "geng": 2.63e-07, - "genovese": 2.63e-07, - "gerais": 2.63e-07, - "ghats": 2.63e-07, - "gish": 2.63e-07, - "gladwell": 2.63e-07, - "glans": 2.63e-07, - "glas": 2.63e-07, - "glues": 2.63e-07, - "goering": 2.63e-07, - "gonads": 2.63e-07, - "greville": 2.63e-07, - "grounder": 2.63e-07, - "gullet": 2.63e-07, - "gustafsson": 2.63e-07, - "hafeez": 2.63e-07, - "hake": 2.63e-07, - "hamada": 2.63e-07, - "hammerstein": 2.63e-07, - "hansens": 2.63e-07, - "haringey": 2.63e-07, - "hartnell": 2.63e-07, - "havilland": 2.63e-07, - "helle": 2.63e-07, - "helton": 2.63e-07, - "herbst": 2.63e-07, - "hexadecimal": 2.63e-07, - "highbrow": 2.63e-07, - "hillock": 2.63e-07, - "hime": 2.63e-07, - "hippocratic": 2.63e-07, - "hmg": 2.63e-07, - "hmmmmm": 2.63e-07, - "hollered": 2.63e-07, - "hombres": 2.63e-07, - "homesickness": 2.63e-07, - "homoerotic": 2.63e-07, - "hooliganism": 2.63e-07, - "hufflepuff": 2.63e-07, - "huguenot": 2.63e-07, - "huguenots": 2.63e-07, - "humberside": 2.63e-07, - "hundredths": 2.63e-07, - "hydroponic": 2.63e-07, - "hyperbaric": 2.63e-07, - "hyperlink": 2.63e-07, - "ibe": 2.63e-07, - "ibra": 2.63e-07, - "icahn": 2.63e-07, - "idealists": 2.63e-07, - "ifi": 2.63e-07, - "ily": 2.63e-07, - "imbue": 2.63e-07, - "impressionists": 2.63e-07, - "inattention": 2.63e-07, - "inconsistently": 2.63e-07, - "incubating": 2.63e-07, - "industrie": 2.63e-07, - "inquisitors": 2.63e-07, - "institutionally": 2.63e-07, - "intelligencer": 2.63e-07, - "interning": 2.63e-07, - "interpretative": 2.63e-07, - "invariance": 2.63e-07, - "invariants": 2.63e-07, - "ipsa": 2.63e-07, - "ironworks": 2.63e-07, - "isiah": 2.63e-07, - "iter": 2.63e-07, - "jahan": 2.63e-07, - "jaina": 2.63e-07, - "janesville": 2.63e-07, - "jaywalking": 2.63e-07, - "jenga": 2.63e-07, - "jinks": 2.63e-07, - "joomla": 2.63e-07, - "judiciously": 2.63e-07, - "junky": 2.63e-07, - "kachin": 2.63e-07, - "kamui": 2.63e-07, - "kandinsky": 2.63e-07, - "karenina": 2.63e-07, - "kas": 2.63e-07, - "kdp": 2.63e-07, - "khabib": 2.63e-07, - "kiera": 2.63e-07, - "kilts": 2.63e-07, - "kinematic": 2.63e-07, - "kingfishers": 2.63e-07, - "kittys": 2.63e-07, - "knightly": 2.63e-07, - "kovalev": 2.63e-07, - "kuznetsov": 2.63e-07, - "lassiter": 2.63e-07, - "latakia": 2.63e-07, - "lazier": 2.63e-07, - "leptin": 2.63e-07, - "ler": 2.63e-07, - "libtard": 2.63e-07, - "likenesses": 2.63e-07, - "likening": 2.63e-07, - "liquefaction": 2.63e-07, - "lisburn": 2.63e-07, - "lithuanians": 2.63e-07, - "litigious": 2.63e-07, - "lmaooo": 2.63e-07, - "loe": 2.63e-07, - "lomas": 2.63e-07, - "lookouts": 2.63e-07, - "loosens": 2.63e-07, - "loras": 2.63e-07, - "lous": 8.71e-08, - "louiss": 2.63e-07, - "lumiere": 2.63e-07, - "lymphoid": 2.63e-07, - "lyndhurst": 2.63e-07, - "machida": 2.63e-07, - "maddux": 2.63e-07, - "madoka": 2.63e-07, - "maersk": 2.63e-07, - "maitre": 2.63e-07, - "mallett": 2.63e-07, - "manhandled": 2.63e-07, - "manns": 8.32e-08, - "maro": 2.63e-07, - "marshalling": 2.63e-07, - "maryville": 2.63e-07, - "masaki": 2.63e-07, - "masochism": 2.63e-07, - "mathur": 2.63e-07, - "maximization": 2.63e-07, - "maybach": 2.63e-07, - "mayberry": 2.63e-07, - "mcalister": 2.63e-07, - "mccomb": 2.63e-07, - "mcdougal": 2.63e-07, - "mckean": 2.63e-07, - "mcshane": 2.63e-07, - "mels": 7.08e-08, - "meldrum": 2.63e-07, - "mendelson": 2.63e-07, - "mendenhall": 2.63e-07, - "meo": 2.63e-07, - "meridians": 2.63e-07, - "metamorphoses": 2.63e-07, - "midcentury": 2.63e-07, - "migs": 2.63e-07, - "milla": 2.63e-07, - "misalignment": 2.63e-07, - "misheard": 2.63e-07, - "mistreating": 2.63e-07, - "mnf": 2.63e-07, - "mochi": 2.63e-07, - "mohair": 2.63e-07, - "moloch": 2.63e-07, - "monarchist": 2.63e-07, - "moni": 2.63e-07, - "montgomerie": 2.63e-07, - "moocs": 2.63e-07, - "moos": 2.63e-07, - "moroccans": 2.63e-07, - "moustaches": 2.63e-07, - "mse": 2.63e-07, - "msr": 2.63e-07, - "muirhead": 2.63e-07, - "multicolor": 2.63e-07, - "munir": 2.63e-07, - "murrow": 2.63e-07, - "mutineers": 2.63e-07, - "mutts": 2.63e-07, - "mykola": 2.63e-07, - "myrna": 2.63e-07, - "narita": 2.63e-07, - "nauseated": 2.63e-07, - "nema": 2.63e-07, - "neri": 2.63e-07, - "nestling": 2.63e-07, - "neuropsychological": 2.63e-07, - "nevill": 2.63e-07, - "newcombe": 2.63e-07, - "niel": 2.63e-07, - "nishikori": 2.63e-07, - "nitroglycerin": 2.63e-07, - "noobs": 2.63e-07, - "noooooo": 2.63e-07, - "nsx": 2.63e-07, - "nucleation": 2.63e-07, - "nusa": 2.63e-07, - "ofarrell": 2.63e-07, - "oan": 2.63e-07, - "oig": 2.63e-07, - "ojo": 2.63e-07, - "oldenburg": 2.63e-07, - "onedrive": 2.63e-07, - "orbis": 2.63e-07, - "orin": 2.63e-07, - "oscillate": 2.63e-07, - "oshawa": 2.63e-07, - "oster": 2.63e-07, - "oswalt": 2.63e-07, - "outa": 2.63e-07, - "outpace": 2.63e-07, - "overhearing": 2.63e-07, - "ovoid": 2.63e-07, - "padi": 2.63e-07, - "paf": 2.63e-07, - "panetta": 2.63e-07, - "panoramas": 2.63e-07, - "pardoning": 2.63e-07, - "parsnips": 2.63e-07, - "pasternak": 2.63e-07, - "pastrami": 2.63e-07, - "patios": 2.63e-07, - "pauley": 2.63e-07, - "pbuh": 2.63e-07, - "peacemakers": 2.63e-07, - "pectin": 2.63e-07, - "perla": 2.63e-07, - "pernambuco": 2.63e-07, - "philippi": 2.63e-07, - "pilsner": 2.63e-07, - "pitta": 2.63e-07, - "plait": 2.63e-07, - "plantagenet": 2.63e-07, - "plummets": 2.63e-07, - "pogue": 2.63e-07, - "poldark": 2.63e-07, - "poring": 2.63e-07, - "portly": 2.63e-07, - "postmarked": 2.63e-07, - "preoccupations": 2.63e-07, - "prequels": 2.63e-07, - "prerecorded": 2.63e-07, - "presale": 2.63e-07, - "pret": 2.63e-07, - "proffered": 2.63e-07, - "propulsive": 2.63e-07, - "provincetown": 2.63e-07, - "psb": 2.63e-07, - "pua": 2.63e-07, - "puppetry": 2.63e-07, - "quicktime": 2.63e-07, - "reactionaries": 2.63e-07, - "readies": 2.63e-07, - "readmitted": 2.63e-07, - "recant": 2.63e-07, - "recognitions": 2.63e-07, - "redoubt": 2.63e-07, - "reenact": 2.63e-07, - "regimented": 2.63e-07, - "reignited": 2.63e-07, - "reinterpreted": 2.63e-07, - "resuscitated": 2.63e-07, - "returnable": 2.63e-07, - "reverberation": 2.63e-07, - "ribosome": 2.63e-07, - "richfield": 2.63e-07, - "rightmove": 2.63e-07, - "rioja": 2.63e-07, - "roby": 2.63e-07, - "rockys": 2.63e-07, - "rosslyn": 2.63e-07, - "roush": 2.63e-07, - "rowlings": 2.63e-07, - "roxie": 2.63e-07, - "rpt": 2.63e-07, - "rupauls": 2.63e-07, - "ruslan": 2.63e-07, - "rwd": 2.63e-07, - "sailboats": 2.63e-07, - "samadhi": 2.63e-07, - "sandow": 2.63e-07, - "sanitize": 2.63e-07, - "sankey": 2.63e-07, - "sascha": 2.63e-07, - "saunas": 2.63e-07, - "savoring": 2.63e-07, - "scapegoating": 2.63e-07, - "schloss": 2.63e-07, - "schulman": 2.63e-07, - "scoffing": 2.63e-07, - "scrambler": 2.63e-07, - "scrapers": 2.63e-07, - "scrivener": 2.63e-07, - "sebi": 2.63e-07, - "sectionals": 2.63e-07, - "seers": 2.63e-07, - "seg": 2.63e-07, - "seligman": 2.63e-07, - "separators": 2.63e-07, - "serialization": 2.63e-07, - "shahs": 7.24e-08, - "shawna": 2.63e-07, - "sheaths": 2.63e-07, - "sheepish": 2.63e-07, - "sherrod": 2.63e-07, - "shevchenko": 2.63e-07, - "shindig": 2.63e-07, - "shuster": 2.63e-07, - "shyam": 2.63e-07, - "shyly": 2.63e-07, - "signora": 2.63e-07, - "sinusitis": 2.63e-07, - "sistema": 2.63e-07, - "skint": 2.63e-07, - "slackers": 2.63e-07, - "smm": 2.63e-07, - "smorgasbord": 2.63e-07, - "snaked": 2.63e-07, - "snaking": 2.63e-07, - "sniffles": 2.63e-07, - "solzhenitsyn": 2.63e-07, - "somalian": 2.63e-07, - "soundwave": 2.63e-07, - "speculator": 2.63e-07, - "splintering": 2.63e-07, - "spoofed": 2.63e-07, - "squawk": 2.63e-07, - "squier": 2.63e-07, - "ssw": 2.63e-07, - "stabler": 2.63e-07, - "stache": 2.63e-07, - "stammering": 2.63e-07, - "startlingly": 2.63e-07, - "steinmetz": 2.63e-07, - "strafing": 2.63e-07, - "studien": 2.63e-07, - "sufficed": 2.63e-07, - "suffices": 2.63e-07, - "suge": 2.63e-07, - "suggs": 2.63e-07, - "sumer": 2.63e-07, - "supine": 2.63e-07, - "survivorship": 2.63e-07, - "svoboda": 2.63e-07, - "swt": 2.63e-07, - "sycophants": 2.63e-07, - "tannery": 2.63e-07, - "tard": 2.63e-07, - "taryn": 2.63e-07, - "tbt": 2.63e-07, - "technic": 2.63e-07, - "technocratic": 2.63e-07, - "teigen": 2.63e-07, - "temerity": 2.63e-07, - "tempera": 2.63e-07, - "teresas": 2.63e-07, - "theodosius": 2.63e-07, - "throughs": 2.63e-07, - "thumped": 2.63e-07, - "tigress": 2.63e-07, - "tioga": 2.63e-07, - "tmt": 2.63e-07, - "torching": 2.63e-07, - "totems": 2.63e-07, - "towered": 2.63e-07, - "transgressive": 2.63e-07, - "trappist": 2.63e-07, - "traumatizing": 2.63e-07, - "tremolo": 2.63e-07, - "trike": 2.63e-07, - "trots": 2.63e-07, - "trudging": 2.63e-07, - "tsi": 2.63e-07, - "tsr": 2.63e-07, - "tweens": 2.63e-07, - "unadorned": 2.63e-07, - "undercuts": 2.63e-07, - "underscoring": 2.63e-07, - "ungainly": 2.63e-07, - "uninstalled": 2.63e-07, - "uprights": 2.63e-07, - "uscg": 2.63e-07, - "utf": 2.63e-07, - "velazquez": 2.63e-07, - "venmo": 2.63e-07, - "vesicle": 2.63e-07, - "vincis": 2.63e-07, - "vintages": 2.63e-07, - "visconti": 2.63e-07, - "vite": 2.63e-07, - "vy": 2.63e-07, - "waless": 2.63e-07, - "walthamstow": 2.63e-07, - "wardle": 2.63e-07, - "warfield": 2.63e-07, - "weeklies": 2.63e-07, - "weevils": 2.63e-07, - "westview": 2.63e-07, - "wildcards": 2.63e-07, - "wildlands": 2.63e-07, - "wincing": 2.63e-07, - "wispy": 2.63e-07, - "witter": 2.63e-07, - "worsted": 2.63e-07, - "wreaked": 2.63e-07, - "wrx": 2.63e-07, - "wwdc": 2.63e-07, - "xray": 2.63e-07, - "yessss": 2.63e-07, - "yj": 2.63e-07, - "yy": 2.63e-07, - "zaheer": 2.63e-07, - "zardari": 2.63e-07, - "zoot": 2.63e-07, - "aaas": 7.76e-08, - "aaf": 2.57e-07, - "abdulla": 2.57e-07, - "abet": 2.57e-07, - "aborting": 2.57e-07, - "abounded": 2.57e-07, - "acf": 2.57e-07, - "ached": 2.57e-07, - "acolyte": 2.57e-07, - "adela": 2.57e-07, - "adorably": 2.57e-07, - "adulterated": 2.57e-07, - "airfoil": 2.57e-07, - "aldean": 2.57e-07, - "alito": 2.57e-07, - "alk": 2.57e-07, - "alts": 2.57e-07, - "amoled": 2.57e-07, - "amputate": 2.57e-07, - "anally": 2.57e-07, - "aneurysms": 2.57e-07, - "anhydrous": 2.57e-07, - "annales": 2.57e-07, - "anselmo": 2.57e-07, - "anteriorly": 2.57e-07, - "aod": 2.57e-07, - "aqui": 2.57e-07, - "argan": 2.57e-07, - "argentines": 2.57e-07, - "arnt": 6.76e-08, - "arpaio": 2.57e-07, - "artemisia": 2.57e-07, - "ascap": 2.57e-07, - "asg": 2.57e-07, - "asphyxia": 2.57e-07, - "asturias": 2.57e-07, - "athol": 2.57e-07, - "attics": 2.57e-07, - "aubergine": 2.57e-07, - "availing": 2.57e-07, - "awestruck": 2.57e-07, - "awl": 2.57e-07, - "axillary": 2.57e-07, - "ayla": 2.57e-07, - "aza": 2.57e-07, - "backless": 2.57e-07, - "bahai": 8.32e-08, - "bahr": 2.57e-07, - "ballinger": 2.57e-07, - "balustrade": 2.57e-07, - "banach": 2.57e-07, - "barbuda": 2.57e-07, - "barents": 2.57e-07, - "basie": 2.57e-07, - "bathers": 2.57e-07, - "bayview": 2.57e-07, - "beek": 2.57e-07, - "befits": 2.57e-07, - "begat": 2.57e-07, - "bernabeu": 2.57e-07, - "bernoulli": 2.57e-07, - "berserker": 2.57e-07, - "beveled": 2.57e-07, - "binging": 2.57e-07, - "biochem": 2.57e-07, - "blau": 2.57e-07, - "blinder": 2.57e-07, - "blundell": 2.57e-07, - "bnsf": 2.57e-07, - "bohm": 2.57e-07, - "bohn": 2.57e-07, - "bonney": 2.57e-07, - "borderless": 2.57e-07, - "breaded": 2.57e-07, - "breivik": 2.57e-07, - "breslau": 2.57e-07, - "broods": 2.57e-07, - "broomfield": 2.57e-07, - "buccaneer": 2.57e-07, - "buffalos": 9.12e-08, - "buisness": 2.57e-07, - "bulawayo": 2.57e-07, - "bulgarias": 2.57e-07, - "bungle": 2.57e-07, - "burbs": 2.57e-07, - "bushwick": 2.57e-07, - "buti": 2.57e-07, - "bynes": 2.57e-07, - "cachet": 2.57e-07, - "cackle": 2.57e-07, - "calcification": 2.57e-07, - "calliope": 2.57e-07, - "campfires": 2.57e-07, - "cannabinoid": 2.57e-07, - "capoeira": 2.57e-07, - "cardholders": 2.57e-07, - "carmella": 2.57e-07, - "carplay": 2.57e-07, - "carstairs": 2.57e-07, - "casimir": 2.57e-07, - "catawba": 2.57e-07, - "caterham": 2.57e-07, - "changsha": 2.57e-07, - "chaperones": 2.57e-07, - "churns": 2.57e-07, - "circe": 2.57e-07, - "civilly": 2.57e-07, - "clairvoyance": 2.57e-07, - "clemons": 2.57e-07, - "clickbank": 2.57e-07, - "clift": 2.57e-07, - "clinker": 2.57e-07, - "cloakroom": 2.57e-07, - "clotted": 2.57e-07, - "clu": 2.57e-07, - "coenzyme": 2.57e-07, - "cohan": 2.57e-07, - "collating": 2.57e-07, - "colonnade": 2.57e-07, - "colorway": 2.57e-07, - "columba": 2.57e-07, - "contraptions": 2.57e-07, - "convertibles": 2.57e-07, - "corded": 2.57e-07, - "coriolanus": 2.57e-07, - "cosplayer": 2.57e-07, - "coulthard": 2.57e-07, - "courtrooms": 2.57e-07, - "covina": 2.57e-07, - "cresswell": 2.57e-07, - "crossbows": 2.57e-07, - "cruella": 2.57e-07, - "cti": 2.57e-07, - "cultura": 2.57e-07, - "curacao": 2.57e-07, - "curbside": 2.57e-07, - "cutback": 2.57e-07, - "cutty": 2.57e-07, - "cyclin": 2.57e-07, - "dafoe": 2.57e-07, - "daredevils": 6.03e-08, - "deepa": 2.57e-07, - "deformations": 2.57e-07, - "degrassi": 2.57e-07, - "dentition": 2.57e-07, - "dermis": 2.57e-07, - "dfb": 2.57e-07, - "dht": 2.57e-07, - "diallo": 2.57e-07, - "dicking": 2.57e-07, - "difficile": 2.57e-07, - "diffusing": 2.57e-07, - "dimensionality": 2.57e-07, - "dimitar": 2.57e-07, - "dingell": 2.57e-07, - "disintegrates": 2.57e-07, - "disparaged": 2.57e-07, - "dispelling": 2.57e-07, - "disruptor": 2.57e-07, - "dissed": 2.57e-07, - "dowdy": 2.57e-07, - "dro": 2.57e-07, - "dropkick": 2.57e-07, - "dtm": 2.57e-07, - "duplicitous": 2.57e-07, - "effusion": 2.57e-07, - "eggman": 2.57e-07, - "eggnog": 2.57e-07, - "electromagnetism": 2.57e-07, - "elegiac": 2.57e-07, - "eliminator": 2.57e-07, - "elio": 2.57e-07, - "ellipses": 2.57e-07, - "engravers": 2.57e-07, - "enliven": 2.57e-07, - "ennui": 2.57e-07, - "epitomized": 2.57e-07, - "eredivisie": 2.57e-07, - "esf": 2.57e-07, - "espana": 2.57e-07, - "ethans": 2.57e-07, - "euronews": 2.57e-07, - "excl": 2.57e-07, - "exorcise": 2.57e-07, - "experian": 2.57e-07, - "expropriated": 2.57e-07, - "extendable": 2.57e-07, - "factorization": 2.57e-07, - "factorys": 2.57e-07, - "fairbairn": 2.57e-07, - "fajr": 2.57e-07, - "falters": 2.57e-07, - "falwell": 2.57e-07, - "farmyard": 2.57e-07, - "faustus": 2.57e-07, - "feelers": 2.57e-07, - "ferb": 2.57e-07, - "fernanda": 2.57e-07, - "ferragamo": 2.57e-07, - "ferrante": 2.57e-07, - "fetishism": 2.57e-07, - "filmography": 2.57e-07, - "flagler": 2.57e-07, - "flatness": 2.57e-07, - "flaxseed": 2.57e-07, - "flayed": 2.57e-07, - "fleeced": 2.57e-07, - "flickered": 2.57e-07, - "flickers": 2.57e-07, - "foa": 2.57e-07, - "foamy": 2.57e-07, - "forevermore": 2.57e-07, - "foundling": 2.57e-07, - "franzen": 2.57e-07, - "fraunhofer": 2.57e-07, - "freemium": 2.57e-07, - "frequents": 2.57e-07, - "frivolity": 2.57e-07, - "fujita": 2.57e-07, - "fuqua": 2.57e-07, - "futurity": 2.57e-07, - "fuze": 2.57e-07, - "fwb": 2.57e-07, - "garrido": 2.57e-07, - "gayest": 2.57e-07, - "gev": 2.57e-07, - "ghar": 2.57e-07, - "ghoulish": 2.57e-07, - "gilberts": 7.08e-08, - "gimli": 2.57e-07, - "gins": 2.57e-07, - "goghs": 2.57e-07, - "goober": 2.57e-07, - "granby": 2.57e-07, - "grazie": 2.57e-07, - "grendel": 2.57e-07, - "griping": 2.57e-07, - "groomer": 2.57e-07, - "grudging": 2.57e-07, - "gsd": 2.57e-07, - "guang": 2.57e-07, - "hader": 2.57e-07, - "halperin": 2.57e-07, - "hamon": 2.57e-07, - "hants": 2.57e-07, - "hardcastle": 2.57e-07, - "hci": 2.57e-07, - "headhunters": 2.57e-07, - "heckled": 2.57e-07, - "helpdesk": 2.57e-07, - "hemophilia": 2.57e-07, - "herniated": 2.57e-07, - "hershel": 2.57e-07, - "hissy": 2.57e-07, - "hobble": 2.57e-07, - "hokage": 2.57e-07, - "honcho": 2.57e-07, - "hopkinson": 2.57e-07, - "hsieh": 2.57e-07, - "hubei": 2.57e-07, - "humped": 2.57e-07, - "ibex": 2.57e-07, - "icicles": 2.57e-07, - "ideologue": 2.57e-07, - "illuminator": 2.57e-07, - "inconsolable": 2.57e-07, - "incrimination": 2.57e-07, - "indulges": 2.57e-07, - "ineffable": 2.57e-07, - "infuriate": 2.57e-07, - "interpolated": 2.57e-07, - "intramuscular": 2.57e-07, - "invective": 2.57e-07, - "invoicing": 2.57e-07, - "isomorphism": 2.57e-07, - "iterated": 2.57e-07, - "ivanovich": 2.57e-07, - "jacobean": 2.57e-07, - "jacobin": 2.57e-07, - "jacque": 2.57e-07, - "jago": 2.57e-07, - "jailbait": 2.57e-07, - "jammers": 2.57e-07, - "jaques": 2.57e-07, - "jeopardise": 2.57e-07, - "jerusalems": 2.57e-07, - "jessy": 2.57e-07, - "jiggling": 2.57e-07, - "joans": 2.57e-07, - "jost": 2.57e-07, - "juri": 2.57e-07, - "kankakee": 2.57e-07, - "kaohsiung": 2.57e-07, - "karsten": 2.57e-07, - "kash": 2.57e-07, - "keke": 2.57e-07, - "kennesaw": 2.57e-07, - "khaleesi": 2.57e-07, - "klimt": 2.57e-07, - "kluwer": 2.57e-07, - "knapsack": 2.57e-07, - "koster": 2.57e-07, - "kovac": 2.57e-07, - "kuch": 2.57e-07, - "kuta": 2.57e-07, - "lalo": 2.57e-07, - "lanceolate": 2.57e-07, - "lashley": 2.57e-07, - "lawrenceville": 2.57e-07, - "leashes": 2.57e-07, - "lebedev": 2.57e-07, - "libro": 2.57e-07, - "lier": 2.57e-07, - "linfield": 2.57e-07, - "littler": 2.57e-07, - "lockerbie": 2.57e-07, - "lozano": 2.57e-07, - "lpl": 2.57e-07, - "lucrezia": 2.57e-07, - "ludhiana": 2.57e-07, - "macdougall": 2.57e-07, - "madea": 2.57e-07, - "maester": 2.57e-07, - "magister": 2.57e-07, - "mahama": 2.57e-07, - "mahinda": 2.57e-07, - "maksim": 2.57e-07, - "malarkey": 2.57e-07, - "malones": 2.57e-07, - "mangalore": 2.57e-07, - "mangos": 2.57e-07, - "maren": 2.57e-07, - "margaery": 2.57e-07, - "marsupial": 2.57e-07, - "masahiro": 2.57e-07, - "mcclaren": 2.57e-07, - "mdt": 2.57e-07, - "measurably": 2.57e-07, - "mechanization": 2.57e-07, - "melanogaster": 2.57e-07, - "memorably": 2.57e-07, - "menacingly": 2.57e-07, - "mensah": 2.57e-07, - "meriden": 2.57e-07, - "merman": 2.57e-07, - "mete": 2.57e-07, - "meuse": 2.57e-07, - "mexicana": 2.57e-07, - "mias": 7.76e-08, - "miata": 2.57e-07, - "microtubules": 2.57e-07, - "migrates": 2.57e-07, - "mimosas": 2.57e-07, - "minami": 2.57e-07, - "mindblowing": 2.57e-07, - "minivans": 2.57e-07, - "misaligned": 2.57e-07, - "mita": 2.57e-07, - "mitzi": 2.57e-07, - "mmf": 2.57e-07, - "molson": 2.57e-07, - "mondrian": 2.57e-07, - "moneyed": 2.57e-07, - "monongahela": 2.57e-07, - "montgomerys": 2.57e-07, - "mooc": 2.57e-07, - "motivators": 2.57e-07, - "motorhome": 2.57e-07, - "mro": 2.57e-07, - "murcia": 2.57e-07, - "murmansk": 2.57e-07, - "muscovite": 2.57e-07, - "muskrat": 2.57e-07, - "mutable": 2.57e-07, - "mutating": 2.57e-07, - "nagle": 2.57e-07, - "nags": 2.57e-07, - "navratilova": 2.57e-07, - "nelle": 2.57e-07, - "netanyahus": 2.57e-07, - "nett": 2.57e-07, - "nicene": 2.57e-07, - "nimitz": 2.57e-07, - "nisa": 2.57e-07, - "nisbet": 2.57e-07, - "nisi": 2.57e-07, - "nmda": 2.57e-07, - "nosferatu": 2.57e-07, - "notching": 2.57e-07, - "noth": 2.57e-07, - "npm": 2.57e-07, - "numan": 2.57e-07, - "omara": 2.57e-07, - "oberyn": 2.57e-07, - "obit": 2.57e-07, - "ohno": 2.57e-07, - "omani": 2.57e-07, - "onassis": 2.57e-07, - "onna": 2.57e-07, - "oppenheim": 2.57e-07, - "optician": 2.57e-07, - "optimists": 2.57e-07, - "orisa": 2.57e-07, - "orla": 2.57e-07, - "osvaldo": 2.57e-07, - "outdid": 2.57e-07, - "outsold": 2.57e-07, - "overcharging": 2.57e-07, - "overexpression": 2.57e-07, - "overshot": 2.57e-07, - "pacey": 2.57e-07, - "pacha": 2.57e-07, - "paean": 2.57e-07, - "parodying": 2.57e-07, - "parsnip": 2.57e-07, - "patria": 2.57e-07, - "patric": 2.57e-07, - "pawned": 2.57e-07, - "pcd": 2.57e-07, - "peal": 2.57e-07, - "peduncle": 2.57e-07, - "peeped": 2.57e-07, - "perak": 2.57e-07, - "petrobras": 2.57e-07, - "petrovich": 2.57e-07, - "pfs": 2.57e-07, - "picayune": 2.57e-07, - "piggies": 2.57e-07, - "pilipinas": 2.57e-07, - "placings": 2.57e-07, - "plantains": 2.57e-07, - "playset": 2.57e-07, - "pneumoniae": 2.57e-07, - "polyphonic": 2.57e-07, - "pompidou": 2.57e-07, - "positivism": 2.57e-07, - "preload": 2.57e-07, - "premeditation": 2.57e-07, - "premised": 2.57e-07, - "presidium": 2.57e-07, - "programing": 2.57e-07, - "promulgation": 2.57e-07, - "proofed": 2.57e-07, - "pru": 2.57e-07, - "punic": 2.57e-07, - "purnell": 2.57e-07, - "pwd": 2.57e-07, - "quadcopter": 2.57e-07, - "quiero": 2.57e-07, - "quieted": 2.57e-07, - "radnor": 2.57e-07, - "ramadi": 2.57e-07, - "rambles": 2.57e-07, - "rambunctious": 2.57e-07, - "rapturous": 2.57e-07, - "rauner": 2.57e-07, - "rayed": 2.57e-07, - "rcn": 2.57e-07, - "readmission": 2.57e-07, - "reaves": 2.57e-07, - "recedes": 2.57e-07, - "reflectivity": 2.57e-07, - "regen": 2.57e-07, - "reggio": 2.57e-07, - "reheated": 2.57e-07, - "reinvigorate": 2.57e-07, - "reinvigorated": 2.57e-07, - "reneged": 2.57e-07, - "repurpose": 2.57e-07, - "rer": 2.57e-07, - "reroute": 2.57e-07, - "retweeting": 2.57e-07, - "reuptake": 2.57e-07, - "rewatched": 2.57e-07, - "rickets": 2.57e-07, - "ror": 2.57e-07, - "roundtrip": 2.57e-07, - "ruan": 2.57e-07, - "ruc": 2.57e-07, - "saka": 2.57e-07, - "salgado": 2.57e-07, - "salutary": 2.57e-07, - "sandhu": 2.57e-07, - "santee": 2.57e-07, - "sarbanes": 2.57e-07, - "satanist": 2.57e-07, - "sbr": 2.57e-07, - "schemas": 2.57e-07, - "schick": 2.57e-07, - "schlumberger": 2.57e-07, - "schmidts": 2.57e-07, - "scientologists": 2.57e-07, - "scoffs": 2.57e-07, - "scrapbooking": 2.57e-07, - "sdsu": 2.57e-07, - "seagal": 2.57e-07, - "seaports": 2.57e-07, - "secreting": 2.57e-07, - "seddon": 2.57e-07, - "selfridges": 2.57e-07, - "seraph": 2.57e-07, - "serf": 2.57e-07, - "sexualities": 2.57e-07, - "shaanxi": 2.57e-07, - "shaders": 2.57e-07, - "shisha": 2.57e-07, - "shorthanded": 2.57e-07, - "shostakovich": 2.57e-07, - "showalter": 2.57e-07, - "shruti": 2.57e-07, - "sierras": 8.32e-08, - "simile": 2.57e-07, - "siphoned": 2.57e-07, - "sissies": 2.57e-07, - "sitar": 2.57e-07, - "situate": 2.57e-07, - "skillset": 2.57e-07, - "skipton": 2.57e-07, - "slushy": 2.57e-07, - "smoak": 2.57e-07, - "smth": 2.57e-07, - "smuts": 2.57e-07, - "snitching": 2.57e-07, - "snowshoe": 2.57e-07, - "sobel": 2.57e-07, - "sobered": 2.57e-07, - "solly": 2.57e-07, - "sonam": 2.57e-07, - "sonos": 2.57e-07, - "soule": 2.57e-07, - "soundscape": 2.57e-07, - "spangler": 2.57e-07, - "sperling": 2.57e-07, - "sportscar": 2.57e-07, - "spurrier": 2.57e-07, - "stacie": 2.57e-07, - "starc": 2.57e-07, - "steins": 2.19e-07, - "sterlings": 2.57e-07, - "stillbirth": 2.57e-07, - "stipulating": 2.57e-07, - "storrs": 2.57e-07, - "strappy": 2.57e-07, - "stratus": 2.57e-07, - "stressor": 2.57e-07, - "striatum": 2.57e-07, - "stringers": 2.57e-07, - "stromal": 2.57e-07, - "stylings": 2.57e-07, - "sufism": 2.57e-07, - "sultana": 2.57e-07, - "superfoods": 2.57e-07, - "suraj": 2.57e-07, - "suss": 2.57e-07, - "svenska": 2.57e-07, - "svr": 2.57e-07, - "switchblade": 2.57e-07, - "talbott": 2.57e-07, - "tasered": 2.57e-07, - "tatts": 2.57e-07, - "tatyana": 2.57e-07, - "tcc": 2.57e-07, - "teed": 2.57e-07, - "teensy": 2.57e-07, - "temperaments": 2.57e-07, - "tenures": 2.57e-07, - "thanx": 2.57e-07, - "thei": 2.57e-07, - "thomason": 2.57e-07, - "thumps": 2.57e-07, - "tibial": 2.57e-07, - "tog": 2.57e-07, - "topside": 2.57e-07, - "torrington": 2.57e-07, - "totti": 2.57e-07, - "tradable": 2.57e-07, - "transportable": 2.57e-07, - "treetops": 2.57e-07, - "tremblay": 2.57e-07, - "trespasser": 2.57e-07, - "truism": 2.57e-07, - "trumbo": 2.57e-07, - "tsung": 2.57e-07, - "turnin": 2.57e-07, - "uhc": 2.57e-07, - "ultrasounds": 2.57e-07, - "unchangeable": 2.57e-07, - "unforced": 2.57e-07, - "unni": 2.57e-07, - "urethane": 2.57e-07, - "vacating": 2.57e-07, - "vaccinating": 2.57e-07, - "valletta": 2.57e-07, - "varus": 2.57e-07, - "velez": 2.57e-07, - "venti": 2.57e-07, - "ventricles": 2.57e-07, - "verges": 2.57e-07, - "viber": 2.57e-07, - "vict": 2.57e-07, - "vigils": 2.57e-07, - "visualizations": 2.57e-07, - "vouched": 2.57e-07, - "voyeurism": 2.57e-07, - "vulgate": 2.57e-07, - "vz": 2.57e-07, - "wafting": 2.57e-07, - "wagoner": 2.57e-07, - "walmarts": 1.45e-07, - "wargaming": 2.57e-07, - "weeded": 2.57e-07, - "wgn": 2.57e-07, - "whisking": 2.57e-07, - "whiten": 2.57e-07, - "wiiu": 2.57e-07, - "wilf": 2.57e-07, - "wilting": 2.57e-07, - "wolfie": 2.57e-07, - "woodpeckers": 2.57e-07, - "woogie": 2.57e-07, - "wryly": 2.57e-07, - "xcx": 2.57e-07, - "yazidis": 2.57e-07, - "yazoo": 2.57e-07, - "yippee": 2.57e-07, - "ysl": 2.57e-07, - "yume": 2.57e-07, - "zacharias": 2.57e-07, - "zandt": 2.57e-07, - "zesty": 2.57e-07, - "zoolander": 2.57e-07, - "zooplankton": 2.57e-07, - "zoro": 2.57e-07, - "zuni": 2.57e-07, - "aadhaar": 2.51e-07, - "aapl": 2.51e-07, - "abelian": 2.51e-07, - "abell": 2.51e-07, - "absolutist": 2.51e-07, - "abul": 2.51e-07, - "abyssinia": 2.51e-07, - "accel": 2.51e-07, - "acclamation": 2.51e-07, - "adiabatic": 2.51e-07, - "adria": 2.51e-07, - "advisement": 2.51e-07, - "afterword": 2.51e-07, - "ageism": 2.51e-07, - "agrawal": 2.51e-07, - "ahahaha": 2.51e-07, - "ahi": 2.51e-07, - "aib": 2.51e-07, - "aliyah": 2.51e-07, - "allred": 2.51e-07, - "almeria": 2.51e-07, - "alphonso": 2.51e-07, - "altcoin": 2.51e-07, - "amaro": 2.51e-07, - "amazonia": 2.51e-07, - "ambers": 7.94e-08, - "americanized": 2.51e-07, - "analyte": 2.51e-07, - "anambra": 2.51e-07, - "ancona": 2.51e-07, - "andrej": 2.51e-07, - "anions": 2.51e-07, - "aphorisms": 2.51e-07, - "arman": 2.51e-07, - "arriba": 2.51e-07, - "arrington": 2.51e-07, - "arseholes": 2.51e-07, - "arvo": 2.51e-07, - "asceticism": 2.51e-07, - "ascorbic": 2.51e-07, - "asio": 2.51e-07, - "asli": 2.51e-07, - "asma": 2.51e-07, - "atacama": 2.51e-07, - "atg": 2.51e-07, - "atomizer": 2.51e-07, - "atwell": 2.51e-07, - "avo": 2.51e-07, - "ballers": 2.51e-07, - "ballooned": 2.51e-07, - "ballou": 2.51e-07, - "barbies": 1.74e-07, - "barden": 2.51e-07, - "bathes": 2.51e-07, - "battista": 2.51e-07, - "beachhead": 2.51e-07, - "befallen": 2.51e-07, - "begg": 2.51e-07, - "belgique": 2.51e-07, - "bellew": 2.51e-07, - "berm": 2.51e-07, - "bermondsey": 2.51e-07, - "bethenny": 2.51e-07, - "bhatia": 2.51e-07, - "bigtime": 2.51e-07, - "bikram": 2.51e-07, - "binned": 2.51e-07, - "biogenesis": 2.51e-07, - "birnbaum": 2.51e-07, - "bleating": 2.51e-07, - "bloodletting": 2.51e-07, - "blowtorch": 2.51e-07, - "bme": 2.51e-07, - "boban": 2.51e-07, - "bolan": 2.51e-07, - "bole": 2.51e-07, - "bonobos": 2.51e-07, - "boogaloo": 2.51e-07, - "botch": 2.51e-07, - "bowtie": 2.51e-07, - "boyband": 2.51e-07, - "breakpoint": 2.51e-07, - "brite": 2.51e-07, - "brouwer": 2.51e-07, - "brs": 2.51e-07, - "bsl": 2.51e-07, - "buckler": 2.51e-07, - "bugsy": 2.51e-07, - "burleson": 2.51e-07, - "burman": 2.51e-07, - "busi": 2.51e-07, - "buybacks": 2.51e-07, - "caesarea": 2.51e-07, - "cah": 2.51e-07, - "cambodias": 2.51e-07, - "campbelltown": 2.51e-07, - "canonically": 2.51e-07, - "captcha": 2.51e-07, - "carbonation": 2.51e-07, - "carves": 2.51e-07, - "catskills": 2.51e-07, - "cauchy": 2.51e-07, - "ceaselessly": 2.51e-07, - "celina": 2.51e-07, - "chafe": 2.51e-07, - "chc": 2.51e-07, - "cherishing": 2.51e-07, - "chummy": 2.51e-07, - "cisterns": 2.51e-07, - "clt": 2.51e-07, - "clued": 2.51e-07, - "cluttering": 2.51e-07, - "coarser": 2.51e-07, - "coby": 2.51e-07, - "coley": 2.51e-07, - "colonials": 2.51e-07, - "colostomy": 2.51e-07, - "columnar": 2.51e-07, - "commercialisation": 2.51e-07, - "commercialize": 2.51e-07, - "compagnie": 2.51e-07, - "concepcion": 2.51e-07, - "concurs": 2.51e-07, - "conflate": 2.51e-07, - "conflation": 2.51e-07, - "conjunctions": 2.51e-07, - "conservatoire": 2.51e-07, - "conservators": 2.51e-07, - "constricting": 2.51e-07, - "contras": 2.51e-07, - "coots": 2.51e-07, - "copycats": 2.51e-07, - "corman": 2.51e-07, - "corrode": 2.51e-07, - "cota": 2.51e-07, - "cowed": 2.51e-07, - "crannies": 2.51e-07, - "crapped": 2.51e-07, - "creasing": 2.51e-07, - "croak": 2.51e-07, - "crowed": 2.51e-07, - "csn": 2.51e-07, - "cubism": 2.51e-07, - "cubist": 2.51e-07, - "cud": 2.51e-07, - "curriculums": 2.51e-07, - "cwt": 2.51e-07, - "cyclonic": 2.51e-07, - "dailey": 2.51e-07, - "dalby": 2.51e-07, - "darrel": 2.51e-07, - "daunted": 2.51e-07, - "dda": 2.51e-07, - "deadlier": 2.51e-07, - "debater": 2.51e-07, - "debenhams": 2.51e-07, - "debits": 2.51e-07, - "decomposes": 2.51e-07, - "decrypted": 2.51e-07, - "defamed": 2.51e-07, - "defecate": 2.51e-07, - "densest": 2.51e-07, - "denys": 2.51e-07, - "depo": 2.51e-07, - "depositary": 2.51e-07, - "deprecation": 2.51e-07, - "depreciated": 2.51e-07, - "depreciating": 2.51e-07, - "deputation": 2.51e-07, - "deride": 2.51e-07, - "dervish": 2.51e-07, - "devereaux": 2.51e-07, - "devises": 2.51e-07, - "dewsbury": 2.51e-07, - "dietitians": 2.51e-07, - "diminution": 2.51e-07, - "dinklage": 2.51e-07, - "directorship": 2.51e-07, - "disaffection": 2.51e-07, - "discworld": 2.51e-07, - "dita": 2.51e-07, - "dming": 2.51e-07, - "dobbins": 2.51e-07, - "doms": 1.7e-07, - "donaghy": 2.51e-07, - "doren": 2.51e-07, - "downcast": 2.51e-07, - "drumpf": 2.51e-07, - "dufour": 2.51e-07, - "dutta": 2.51e-07, - "ecco": 2.51e-07, - "elenas": 2.51e-07, - "eluding": 2.51e-07, - "embarrasses": 2.51e-07, - "enameled": 2.51e-07, - "encumbered": 2.51e-07, - "endoplasmic": 2.51e-07, - "enlivened": 2.51e-07, - "enumerate": 2.51e-07, - "epigenetics": 2.51e-07, - "epochs": 2.51e-07, - "equanimity": 2.51e-07, - "equitably": 2.51e-07, - "eschewing": 2.51e-07, - "eurostat": 2.51e-07, - "evra": 2.51e-07, - "exasperating": 2.51e-07, - "exportation": 2.51e-07, - "expulsions": 2.51e-07, - "extents": 2.51e-07, - "extolled": 2.51e-07, - "extraterrestrials": 2.51e-07, - "fainter": 2.51e-07, - "fairweather": 2.51e-07, - "fangirl": 2.51e-07, - "farmworkers": 2.51e-07, - "fateh": 2.51e-07, - "fdny": 2.51e-07, - "feasted": 2.51e-07, - "fibroblast": 2.51e-07, - "fief": 2.51e-07, - "finales": 2.51e-07, - "firebirds": 2.51e-07, - "fls": 2.51e-07, - "foment": 2.51e-07, - "formalised": 2.51e-07, - "fot": 2.51e-07, - "founds": 2.51e-07, - "fowlers": 2.51e-07, - "frantz": 2.51e-07, - "frasers": 1.05e-07, - "frizz": 2.51e-07, - "frocks": 2.51e-07, - "fungicide": 2.51e-07, - "funnies": 2.51e-07, - "gacha": 2.51e-07, - "gallstones": 2.51e-07, - "ganda": 2.51e-07, - "gawk": 2.51e-07, - "gayatri": 2.51e-07, - "gendarmerie": 2.51e-07, - "genoese": 2.51e-07, - "geodesic": 2.51e-07, - "geostationary": 2.51e-07, - "giddens": 2.51e-07, - "ginormous": 2.51e-07, - "glaxosmithkline": 2.51e-07, - "gnp": 2.51e-07, - "goaded": 2.51e-07, - "goodfellow": 2.51e-07, - "gosport": 2.51e-07, - "gradation": 2.51e-07, - "gratings": 2.51e-07, - "grimaldi": 2.51e-07, - "gtav": 2.51e-07, - "guinevere": 2.51e-07, - "guizhou": 2.51e-07, - "gynaecologist": 2.51e-07, - "haar": 2.51e-07, - "hackneyed": 2.51e-07, - "hamed": 2.51e-07, - "hass": 2.51e-07, - "haya": 2.51e-07, - "heathcliff": 2.51e-07, - "heckle": 2.51e-07, - "hedda": 2.51e-07, - "henriques": 2.51e-07, - "herc": 2.51e-07, - "heriot": 2.51e-07, - "hermon": 2.51e-07, - "historicity": 2.51e-07, - "holdover": 2.51e-07, - "holyhead": 2.51e-07, - "honeydew": 2.51e-07, - "honeypot": 2.51e-07, - "horford": 2.51e-07, - "horsemanship": 2.51e-07, - "housewarming": 2.51e-07, - "howitzers": 2.51e-07, - "humberto": 2.51e-07, - "hustings": 2.51e-07, - "hutcherson": 2.51e-07, - "hypoxic": 2.51e-07, - "iib": 2.51e-07, - "ika": 2.51e-07, - "inboard": 2.51e-07, - "inched": 2.51e-07, - "incumbency": 2.51e-07, - "inducements": 2.51e-07, - "inelastic": 2.51e-07, - "ingle": 2.51e-07, - "inopportune": 2.51e-07, - "interscope": 2.51e-07, - "inxs": 2.51e-07, - "iow": 2.51e-07, - "jabez": 2.51e-07, - "jaco": 2.51e-07, - "jcpenney": 2.51e-07, - "jinxed": 2.51e-07, - "juni": 2.51e-07, - "junker": 2.51e-07, - "kalgoorlie": 2.51e-07, - "kann": 2.51e-07, - "kansai": 2.51e-07, - "karr": 2.51e-07, - "kasim": 2.51e-07, - "katanga": 2.51e-07, - "kearny": 2.51e-07, - "kehoe": 2.51e-07, - "kemble": 2.51e-07, - "ketosis": 2.51e-07, - "kevan": 2.51e-07, - "keystrokes": 2.51e-07, - "kharkov": 2.51e-07, - "kike": 2.51e-07, - "kiowa": 2.51e-07, - "kock": 2.51e-07, - "kwong": 2.51e-07, - "labial": 2.51e-07, - "lacquered": 2.51e-07, - "lagarde": 2.51e-07, - "landsat": 2.51e-07, - "lauper": 2.51e-07, - "lawley": 2.51e-07, - "lazuli": 2.51e-07, - "leaden": 2.51e-07, - "ledbetter": 2.51e-07, - "leicesters": 2.51e-07, - "lenins": 2.51e-07, - "lenoir": 2.51e-07, - "lerman": 2.51e-07, - "levitating": 2.51e-07, - "lilacs": 2.51e-07, - "linseed": 2.51e-07, - "lithosphere": 2.51e-07, - "loafer": 2.51e-07, - "logue": 2.51e-07, - "lundberg": 2.51e-07, - "luongo": 2.51e-07, - "mache": 2.51e-07, - "madan": 2.51e-07, - "magics": 1.51e-07, - "maiduguri": 2.51e-07, - "malformed": 2.51e-07, - "mammograms": 2.51e-07, - "manama": 2.51e-07, - "manilow": 2.51e-07, - "mannix": 2.51e-07, - "maplewood": 2.51e-07, - "marciano": 2.51e-07, - "mariko": 2.51e-07, - "markdown": 2.51e-07, - "marmot": 2.51e-07, - "matsui": 2.51e-07, - "maximally": 2.51e-07, - "mbt": 2.51e-07, - "mcauley": 2.51e-07, - "mcclatchy": 2.51e-07, - "mccool": 2.51e-07, - "mccullum": 2.51e-07, - "mcnaughton": 2.51e-07, - "mealy": 2.51e-07, - "meatless": 2.51e-07, - "mechanised": 2.51e-07, - "medtronic": 2.51e-07, - "melamine": 2.51e-07, - "menorah": 2.51e-07, - "methylated": 2.51e-07, - "microbiologist": 2.51e-07, - "minibar": 2.51e-07, - "minnelli": 2.51e-07, - "mintz": 2.51e-07, - "misaki": 2.51e-07, - "miscreants": 2.51e-07, - "missal": 2.51e-07, - "mlle": 2.51e-07, - "mna": 2.51e-07, - "mola": 2.51e-07, - "monogrammed": 2.51e-07, - "montego": 2.51e-07, - "moralistic": 2.51e-07, - "mordred": 2.51e-07, - "moreira": 2.51e-07, - "morgen": 2.51e-07, - "mouthwatering": 2.51e-07, - "mulroney": 2.51e-07, - "multimillionaire": 2.51e-07, - "muskoka": 2.51e-07, - "mustering": 2.51e-07, - "naito": 2.51e-07, - "najaf": 2.51e-07, - "nanotube": 2.51e-07, - "naveen": 2.51e-07, - "nein": 2.51e-07, - "nightcap": 2.51e-07, - "nighty": 2.51e-07, - "northgate": 2.51e-07, - "nosebleeds": 2.51e-07, - "notaries": 2.51e-07, - "nowt": 2.51e-07, - "oakdale": 2.51e-07, - "obliterating": 2.51e-07, - "oceanfront": 2.51e-07, - "ocp": 2.51e-07, - "oestrogen": 2.51e-07, - "olivine": 2.51e-07, - "omagh": 2.51e-07, - "oom": 2.51e-07, - "orban": 2.51e-07, - "osb": 2.51e-07, - "oscilloscope": 2.51e-07, - "ospina": 2.51e-07, - "otherness": 2.51e-07, - "outsized": 2.51e-07, - "outstripped": 2.51e-07, - "overextended": 2.51e-07, - "overreaching": 2.51e-07, - "overspending": 2.51e-07, - "oxbridge": 2.51e-07, - "paddys": 2.51e-07, - "pani": 2.51e-07, - "panto": 2.51e-07, - "partum": 2.51e-07, - "partway": 2.51e-07, - "pascual": 2.51e-07, - "paseo": 2.51e-07, - "patenting": 2.51e-07, - "pathologic": 2.51e-07, - "payin": 2.51e-07, - "peaceable": 2.51e-07, - "peacebuilding": 2.51e-07, - "peeved": 2.51e-07, - "peewee": 2.51e-07, - "penns": 8.71e-08, - "penobscot": 2.51e-07, - "perfecto": 2.51e-07, - "perma": 2.51e-07, - "perpetrating": 2.51e-07, - "perron": 2.51e-07, - "playthings": 2.51e-07, - "pleadings": 2.51e-07, - "pleiades": 2.51e-07, - "pln": 2.51e-07, - "plovdiv": 2.51e-07, - "pluripotent": 2.51e-07, - "podolski": 2.51e-07, - "pog": 2.51e-07, - "pogrom": 2.51e-07, - "posen": 2.51e-07, - "posi": 2.51e-07, - "predicates": 2.51e-07, - "presences": 2.51e-07, - "prioritised": 2.51e-07, - "prolongs": 2.51e-07, - "protip": 2.51e-07, - "provocatively": 2.51e-07, - "pul": 2.51e-07, - "puncher": 2.51e-07, - "purrs": 2.51e-07, - "pwm": 2.51e-07, - "qol": 2.51e-07, - "quelle": 2.51e-07, - "quinto": 2.51e-07, - "rachelle": 2.51e-07, - "racings": 2.51e-07, - "rajendra": 2.51e-07, - "rasp": 2.51e-07, - "ratifying": 2.51e-07, - "ratna": 2.51e-07, - "rayne": 2.51e-07, - "rectifying": 2.51e-07, - "redemptions": 2.51e-07, - "reeder": 2.51e-07, - "rehabilitative": 2.51e-07, - "reignite": 2.51e-07, - "reince": 2.51e-07, - "repainting": 2.51e-07, - "repatriate": 2.51e-07, - "respawn": 2.51e-07, - "reticle": 2.51e-07, - "revd": 5.37e-08, - "reve": 2.51e-07, - "reverberating": 2.51e-07, - "rezoning": 2.51e-07, - "rfe": 2.51e-07, - "rhizome": 2.51e-07, - "ricin": 2.51e-07, - "rickys": 2.51e-07, - "rimes": 2.51e-07, - "ritually": 2.51e-07, - "roadrunner": 2.51e-07, - "rogelio": 2.51e-07, - "rolla": 2.51e-07, - "rtf": 2.51e-07, - "saboteur": 2.51e-07, - "saison": 2.51e-07, - "samus": 2.51e-07, - "sappho": 2.51e-07, - "saris": 2.51e-07, - "sauteed": 2.51e-07, - "scherzinger": 2.51e-07, - "schuman": 2.51e-07, - "scl": 2.51e-07, - "seawall": 2.51e-07, - "secondarily": 2.51e-07, - "shani": 2.51e-07, - "shapeshifter": 2.51e-07, - "shiki": 2.51e-07, - "shivered": 2.51e-07, - "showgirl": 2.51e-07, - "silkworm": 2.51e-07, - "silliest": 2.51e-07, - "sinclairs": 2.51e-07, - "slags": 2.51e-07, - "slaver": 2.51e-07, - "slicked": 2.51e-07, - "smedley": 2.51e-07, - "smol": 2.51e-07, - "smollett": 2.51e-07, - "snooki": 2.51e-07, - "sofi": 2.51e-07, - "sog": 2.51e-07, - "sotto": 2.51e-07, - "soundgarden": 2.51e-07, - "soundstage": 2.51e-07, - "spatter": 2.51e-07, - "spaz": 2.51e-07, - "speared": 2.51e-07, - "spools": 2.51e-07, - "springdale": 2.51e-07, - "sqft": 2.51e-07, - "sro": 2.51e-07, - "stamos": 2.51e-07, - "stamper": 2.51e-07, - "steinem": 2.51e-07, - "stepper": 2.51e-07, - "stifles": 2.51e-07, - "stimulator": 2.51e-07, - "stopgap": 2.51e-07, - "stuckey": 2.51e-07, - "subiaco": 2.51e-07, - "subnet": 2.51e-07, - "sullied": 2.51e-07, - "sunblock": 2.51e-07, - "superconductor": 2.51e-07, - "superheated": 2.51e-07, - "supernovae": 2.51e-07, - "suppers": 2.51e-07, - "synchrony": 2.51e-07, - "taber": 2.51e-07, - "takagi": 2.51e-07, - "talcott": 2.51e-07, - "tamilnadu": 2.51e-07, - "taobao": 2.51e-07, - "taran": 2.51e-07, - "telcos": 2.51e-07, - "teletubbies": 2.51e-07, - "tempts": 2.51e-07, - "tenable": 2.51e-07, - "tenzin": 2.51e-07, - "tga": 2.51e-07, - "thacker": 2.51e-07, - "thalidomide": 2.51e-07, - "thingies": 2.51e-07, - "thurgood": 2.51e-07, - "thurlow": 2.51e-07, - "tif": 2.51e-07, - "timbaland": 2.51e-07, - "timorese": 2.51e-07, - "tindall": 2.51e-07, - "tite": 2.51e-07, - "toluene": 2.51e-07, - "trainwreck": 2.51e-07, - "treadmills": 2.51e-07, - "trebek": 2.51e-07, - "trice": 2.51e-07, - "triglyceride": 2.51e-07, - "trillium": 2.51e-07, - "trinitarian": 2.51e-07, - "trudge": 2.51e-07, - "tuam": 2.51e-07, - "tweedy": 2.51e-07, - "twinned": 2.51e-07, - "umc": 2.51e-07, - "umd": 2.51e-07, - "uncritical": 2.51e-07, - "unfeeling": 2.51e-07, - "unidirectional": 2.51e-07, - "unmade": 2.51e-07, - "unravels": 2.51e-07, - "unreliability": 2.51e-07, - "untainted": 2.51e-07, - "usu": 2.51e-07, - "usurping": 2.51e-07, - "vaal": 2.51e-07, - "valenti": 2.51e-07, - "valenzuela": 2.51e-07, - "vanna": 2.51e-07, - "vegemite": 2.51e-07, - "vicars": 1.05e-07, - "vieux": 2.51e-07, - "vlan": 2.51e-07, - "vocaloid": 2.51e-07, - "wain": 2.51e-07, - "waltzes": 2.51e-07, - "warlocks": 5.5e-08, - "waw": 2.51e-07, - "wedgie": 2.51e-07, - "weekender": 2.51e-07, - "weeklong": 2.51e-07, - "weirded": 2.51e-07, - "westernized": 2.51e-07, - "whaley": 2.51e-07, - "wheeze": 2.51e-07, - "whist": 2.51e-07, - "whitbread": 2.51e-07, - "wongs": 2.51e-07, - "woops": 2.51e-07, - "woozy": 2.51e-07, - "wulf": 2.51e-07, - "xiu": 2.51e-07, - "xrd": 2.51e-07, - "yasmine": 2.51e-07, - "yevgeny": 2.51e-07, - "yuppie": 2.51e-07, - "zam": 2.51e-07, - "zavala": 2.51e-07, - "zealously": 2.51e-07, - "zell": 2.51e-07, - "zimbabweans": 2.51e-07, - "zinger": 2.51e-07, - "zit": 2.51e-07, - "zwei": 2.51e-07, - "aardvark": 2.45e-07, - "absalom": 2.45e-07, - "abyssal": 2.45e-07, - "achy": 2.45e-07, - "adhesions": 2.45e-07, - "adirondacks": 2.45e-07, - "adress": 2.45e-07, - "adsl": 2.45e-07, - "airstream": 2.45e-07, - "akash": 2.45e-07, - "albin": 2.45e-07, - "alcorn": 2.45e-07, - "aleph": 2.45e-07, - "amico": 2.45e-07, - "angioplasty": 2.45e-07, - "annihilating": 2.45e-07, - "antagonizing": 2.45e-07, - "anthea": 2.45e-07, - "anticipatory": 2.45e-07, - "antonius": 2.45e-07, - "anurag": 2.45e-07, - "anywho": 2.45e-07, - "aphid": 2.45e-07, - "apoptotic": 2.45e-07, - "aral": 2.45e-07, - "aramis": 2.45e-07, - "areal": 2.45e-07, - "artesian": 2.45e-07, - "ashs": 2.45e-07, - "atul": 2.45e-07, - "augustinian": 2.45e-07, - "backhanded": 2.45e-07, - "backhoe": 2.45e-07, - "bagram": 2.45e-07, - "bakar": 2.45e-07, - "balearic": 2.45e-07, - "ballmer": 2.45e-07, - "bandra": 2.45e-07, - "bartel": 2.45e-07, - "basher": 2.45e-07, - "baste": 2.45e-07, - "bataille": 2.45e-07, - "batangas": 2.45e-07, - "batterys": 2.45e-07, - "bayeux": 2.45e-07, - "beautician": 2.45e-07, - "beckon": 2.45e-07, - "beget": 2.45e-07, - "belied": 2.45e-07, - "bellatrix": 2.45e-07, - "benazir": 2.45e-07, - "bentonite": 2.45e-07, - "berenson": 2.45e-07, - "bestial": 2.45e-07, - "betwixt": 2.45e-07, - "bgc": 2.45e-07, - "bhattacharya": 2.45e-07, - "bhavan": 2.45e-07, - "biddy": 2.45e-07, - "bigamy": 2.45e-07, - "billingsley": 2.45e-07, - "binks": 2.45e-07, - "blackheads": 2.45e-07, - "blare": 2.45e-07, - "bluefin": 2.45e-07, - "bna": 2.45e-07, - "bojan": 2.45e-07, - "bolger": 2.45e-07, - "boltons": 9.33e-08, - "bonafide": 2.45e-07, - "boof": 2.45e-07, - "boondocks": 2.45e-07, - "bord": 2.45e-07, - "bottoming": 2.45e-07, - "bouvier": 2.45e-07, - "bpo": 2.45e-07, - "bradfield": 2.45e-07, - "branden": 2.45e-07, - "brantford": 2.45e-07, - "breadsticks": 2.45e-07, - "breakeven": 2.45e-07, - "breathalyzer": 2.45e-07, - "brining": 2.45e-07, - "brio": 2.45e-07, - "bristled": 2.45e-07, - "broadsides": 2.45e-07, - "broiled": 2.45e-07, - "brolin": 2.45e-07, - "bsi": 2.45e-07, - "bss": 2.45e-07, - "btn": 2.45e-07, - "bubs": 2.45e-07, - "buchholz": 2.45e-07, - "bumblebees": 2.45e-07, - "bvs": 2.45e-07, - "cagey": 2.45e-07, - "camillo": 2.45e-07, - "capps": 2.45e-07, - "carbonaceous": 2.45e-07, - "carbonates": 2.45e-07, - "carbonic": 2.45e-07, - "carrara": 2.45e-07, - "caso": 2.45e-07, - "catt": 2.45e-07, - "ccw": 2.45e-07, - "celebrant": 2.45e-07, - "cengage": 2.45e-07, - "chauffeurs": 2.45e-07, - "checkbox": 2.45e-07, - "cherokees": 2.45e-07, - "chicory": 2.45e-07, - "chihuahuas": 2.45e-07, - "chileans": 2.45e-07, - "cib": 2.45e-07, - "cinta": 2.45e-07, - "citra": 2.45e-07, - "ckd": 2.45e-07, - "classifiers": 2.45e-07, - "clawson": 2.45e-07, - "clerkenwell": 2.45e-07, - "cleverest": 2.45e-07, - "clonal": 2.45e-07, - "cml": 2.45e-07, - "codify": 2.45e-07, - "colburn": 2.45e-07, - "collison": 2.45e-07, - "colorblind": 2.45e-07, - "condoleezza": 2.45e-07, - "conjunct": 2.45e-07, - "constrictor": 2.45e-07, - "consumerist": 2.45e-07, - "contador": 2.45e-07, - "contraindicated": 2.45e-07, - "conv": 2.45e-07, - "convenor": 2.45e-07, - "conversant": 2.45e-07, - "convivial": 2.45e-07, - "coquitlam": 2.45e-07, - "corse": 2.45e-07, - "coulomb": 2.45e-07, - "countermeasure": 2.45e-07, - "cranmer": 2.45e-07, - "crashers": 2.45e-07, - "creel": 2.45e-07, - "crofts": 5.13e-08, - "csd": 2.45e-07, - "cueto": 2.45e-07, - "culpeper": 2.45e-07, - "curates": 2.45e-07, - "cuse": 2.45e-07, - "cyprian": 2.45e-07, - "dailymotion": 2.45e-07, - "danganronpa": 2.45e-07, - "dappled": 2.45e-07, - "dardanelles": 2.45e-07, - "daren": 2.45e-07, - "darian": 2.45e-07, - "darnley": 2.45e-07, - "daylights": 2.45e-07, - "dedham": 2.45e-07, - "deets": 2.45e-07, - "defeatist": 2.45e-07, - "definable": 2.45e-07, - "delph": 2.45e-07, - "demarcated": 2.45e-07, - "deschanel": 2.45e-07, - "detaching": 2.45e-07, - "deters": 2.45e-07, - "deuces": 2.45e-07, - "diadem": 2.45e-07, - "dialled": 2.45e-07, - "diamondback": 2.45e-07, - "dib": 2.45e-07, - "diddle": 2.45e-07, - "diderot": 2.45e-07, - "dien": 2.45e-07, - "dietician": 2.45e-07, - "dinero": 2.45e-07, - "disciplinarian": 2.45e-07, - "disincentive": 2.45e-07, - "diversionary": 2.45e-07, - "divisiveness": 2.45e-07, - "dni": 2.45e-07, - "doctoring": 2.45e-07, - "dominik": 2.45e-07, - "donato": 2.45e-07, - "dood": 2.45e-07, - "doorsteps": 2.45e-07, - "doraemon": 2.45e-07, - "doral": 2.45e-07, - "dorne": 2.45e-07, - "dotting": 2.45e-07, - "dougs": 2.45e-07, - "dpt": 2.45e-07, - "draping": 2.45e-07, - "dso": 2.45e-07, - "duan": 2.45e-07, - "ducal": 2.45e-07, - "earnestness": 2.45e-07, - "ebbs": 2.45e-07, - "eberle": 2.45e-07, - "ecclestone": 2.45e-07, - "echos": 1.26e-07, - "economys": 2.45e-07, - "edelweiss": 2.45e-07, - "eep": 2.45e-07, - "eisen": 2.45e-07, - "electrolux": 2.45e-07, - "elizabethtown": 2.45e-07, - "elkin": 2.45e-07, - "ellies": 2.45e-07, - "ellipsoid": 2.45e-07, - "embraer": 2.45e-07, - "embry": 2.45e-07, - "emmerson": 2.45e-07, - "energised": 2.45e-07, - "energizer": 2.45e-07, - "erudition": 2.45e-07, - "escher": 2.45e-07, - "esk": 2.45e-07, - "euan": 2.45e-07, - "evaporative": 2.45e-07, - "evened": 2.45e-07, - "evertons": 2.45e-07, - "eviscerated": 2.45e-07, - "evolutionarily": 2.45e-07, - "exfoliate": 2.45e-07, - "exfoliation": 2.45e-07, - "exhalation": 2.45e-07, - "expels": 2.45e-07, - "faf": 2.45e-07, - "fairyland": 2.45e-07, - "famished": 2.45e-07, - "fccs": 2.45e-07, - "feige": 2.45e-07, - "fencer": 2.45e-07, - "ffl": 2.45e-07, - "fiddled": 2.45e-07, - "finlayson": 2.45e-07, - "finra": 2.45e-07, - "fiorina": 2.45e-07, - "fip": 2.45e-07, - "fishbowl": 2.45e-07, - "flexi": 2.45e-07, - "floaty": 2.45e-07, - "florals": 2.45e-07, - "florid": 2.45e-07, - "floridian": 2.45e-07, - "flours": 2.45e-07, - "flunked": 2.45e-07, - "foosball": 2.45e-07, - "foresees": 2.45e-07, - "foreshadow": 2.45e-07, - "forfar": 2.45e-07, - "forsaking": 2.45e-07, - "francoise": 2.45e-07, - "functionaries": 2.45e-07, - "gabbard": 2.45e-07, - "gagarin": 2.45e-07, - "galahad": 2.45e-07, - "gallifrey": 2.45e-07, - "galloped": 2.45e-07, - "gamespot": 2.45e-07, - "gardena": 2.45e-07, - "gastroenteritis": 2.45e-07, - "gentrified": 2.45e-07, - "ghs": 2.45e-07, - "ghul": 2.45e-07, - "ginkgo": 2.45e-07, - "girardeau": 2.45e-07, - "giuliana": 2.45e-07, - "glaad": 2.45e-07, - "glioblastoma": 2.45e-07, - "goan": 2.45e-07, - "goldfarb": 2.45e-07, - "gondor": 2.45e-07, - "gores": 1.26e-07, - "gpt": 2.45e-07, - "gramm": 2.45e-07, - "grampian": 2.45e-07, - "grandes": 1.86e-07, - "grannys": 2.45e-07, - "grapples": 2.45e-07, - "greedily": 2.45e-07, - "gregoire": 2.45e-07, - "grierson": 2.45e-07, - "grubb": 2.45e-07, - "gtd": 2.45e-07, - "guac": 2.45e-07, - "gumption": 2.45e-07, - "gympie": 2.45e-07, - "habe": 2.45e-07, - "haleys": 2.45e-07, - "hamdan": 2.45e-07, - "handels": 2.45e-07, - "hardwicke": 2.45e-07, - "hargrove": 2.45e-07, - "haruki": 2.45e-07, - "hashes": 2.45e-07, - "haswell": 2.45e-07, - "headman": 2.45e-07, - "headwear": 2.45e-07, - "hedgerows": 2.45e-07, - "hemphill": 2.45e-07, - "hepworth": 2.45e-07, - "herbivore": 2.45e-07, - "herewith": 2.45e-07, - "hewett": 2.45e-07, - "higginson": 2.45e-07, - "hmd": 2.45e-07, - "holme": 2.45e-07, - "hommes": 2.45e-07, - "horrifically": 2.45e-07, - "hotelier": 2.45e-07, - "hothouse": 2.45e-07, - "houseguest": 2.45e-07, - "humanized": 2.45e-07, - "hx": 2.45e-07, - "hydrocodone": 2.45e-07, - "hyphenated": 2.45e-07, - "hypnotherapy": 2.45e-07, - "ibooks": 2.45e-07, - "icr": 2.45e-07, - "idealised": 2.45e-07, - "ifl": 2.45e-07, - "igm": 2.45e-07, - "immunosuppressive": 2.45e-07, - "impairing": 2.45e-07, - "inauspicious": 2.45e-07, - "inbuilt": 2.45e-07, - "incantations": 2.45e-07, - "industrials": 2.45e-07, - "inflections": 2.45e-07, - "ingeniously": 2.45e-07, - "injunctive": 2.45e-07, - "insinuations": 2.45e-07, - "instabilities": 2.45e-07, - "integra": 2.45e-07, - "intelligences": 2.45e-07, - "interconnections": 2.45e-07, - "irgc": 2.45e-07, - "isak": 2.45e-07, - "jalal": 2.45e-07, - "janna": 2.45e-07, - "jara": 2.45e-07, - "jase": 2.45e-07, - "jazzed": 2.45e-07, - "jimin": 2.45e-07, - "jonjo": 2.45e-07, - "jono": 2.45e-07, - "jyoti": 2.45e-07, - "kaito": 2.45e-07, - "kak": 2.45e-07, - "kaleb": 2.45e-07, - "kaliningrad": 2.45e-07, - "kamchatka": 2.45e-07, - "kanna": 2.45e-07, - "kantor": 2.45e-07, - "kare": 2.45e-07, - "karolina": 2.45e-07, - "kathie": 2.45e-07, - "keighley": 2.45e-07, - "khl": 2.45e-07, - "kingsman": 2.45e-07, - "kobes": 2.45e-07, - "kone": 2.45e-07, - "kratos": 2.45e-07, - "krav": 2.45e-07, - "kristol": 2.45e-07, - "kum": 2.45e-07, - "kyla": 2.45e-07, - "lacan": 2.45e-07, - "laconic": 2.45e-07, - "laidback": 2.45e-07, - "lamentation": 2.45e-07, - "laotian": 2.45e-07, - "lateness": 2.45e-07, - "laughin": 2.45e-07, - "laure": 2.45e-07, - "lawd": 2.45e-07, - "leas": 7.76e-08, - "legitimizing": 2.45e-07, - "legrand": 2.45e-07, - "leppard": 2.45e-07, - "levites": 2.45e-07, - "lhp": 2.45e-07, - "ligne": 2.45e-07, - "lillys": 2.45e-07, - "lindgren": 2.45e-07, - "liss": 2.45e-07, - "llewelyn": 2.45e-07, - "lobbed": 2.45e-07, - "loko": 2.45e-07, - "lololol": 2.45e-07, - "londo": 2.45e-07, - "loreto": 2.45e-07, - "luanda": 2.45e-07, - "luminary": 2.45e-07, - "lynyrd": 2.45e-07, - "lysander": 2.45e-07, - "maida": 2.45e-07, - "mallow": 2.45e-07, - "manatees": 2.45e-07, - "mandal": 2.45e-07, - "mandarins": 2.45e-07, - "mangle": 2.45e-07, - "maniacally": 2.45e-07, - "manitou": 2.45e-07, - "manohar": 2.45e-07, - "maputo": 2.45e-07, - "marketability": 2.45e-07, - "massoud": 2.45e-07, - "mati": 2.45e-07, - "maturities": 2.45e-07, - "maudlin": 2.45e-07, - "maugham": 2.45e-07, - "maximo": 2.45e-07, - "maxims": 1.1e-07, - "maxis": 2.45e-07, - "mccray": 2.45e-07, - "mclane": 2.45e-07, - "meagan": 2.45e-07, - "megastar": 2.45e-07, - "mehra": 2.45e-07, - "melilla": 2.45e-07, - "mercurys": 2.45e-07, - "michelson": 2.45e-07, - "michiko": 2.45e-07, - "minos": 1.12e-08, - "minutely": 2.45e-07, - "miter": 2.45e-07, - "mito": 2.45e-07, - "mnc": 2.45e-07, - "mnd": 2.45e-07, - "monkees": 2.45e-07, - "moping": 2.45e-07, - "moretz": 2.45e-07, - "moslems": 2.45e-07, - "mots": 2.45e-07, - "multan": 2.45e-07, - "murali": 2.45e-07, - "nadya": 2.45e-07, - "nanak": 2.45e-07, - "nandini": 2.45e-07, - "nanometer": 2.45e-07, - "natsuki": 2.45e-07, - "natur": 2.45e-07, - "ncos": 2.45e-07, - "ndt": 2.45e-07, - "nef": 2.45e-07, - "newcastles": 2.45e-07, - "newsman": 2.45e-07, - "nijmegen": 2.45e-07, - "nlc": 2.45e-07, - "nobly": 2.45e-07, - "nomi": 2.45e-07, - "nonspecific": 2.45e-07, - "noreen": 2.45e-07, - "nuked": 2.45e-07, - "odonoghue": 2.45e-07, - "odm": 2.45e-07, - "ohs": 1.2e-07, - "oilfields": 2.45e-07, - "olathe": 2.45e-07, - "oldschool": 2.45e-07, - "oras": 2.45e-07, - "ordo": 2.45e-07, - "ort": 2.45e-07, - "osm": 2.45e-07, - "otero": 2.45e-07, - "overhand": 2.45e-07, - "overhyped": 2.45e-07, - "oversimplification": 2.45e-07, - "overwritten": 2.45e-07, - "ovr": 2.45e-07, - "ovum": 2.45e-07, - "pakhtunkhwa": 2.45e-07, - "pampers": 2.45e-07, - "panchayats": 2.45e-07, - "pantone": 2.45e-07, - "parabola": 2.45e-07, - "parishioner": 2.45e-07, - "parkside": 2.45e-07, - "pasa": 2.45e-07, - "pascale": 2.45e-07, - "pati": 2.45e-07, - "patricio": 2.45e-07, - "pavlova": 2.45e-07, - "pedrosa": 2.45e-07, - "pellegrino": 2.45e-07, - "penalizing": 2.45e-07, - "peonies": 2.45e-07, - "pepperdine": 2.45e-07, - "perestroika": 2.45e-07, - "periwinkle": 2.45e-07, - "perked": 2.45e-07, - "perpetuation": 2.45e-07, - "perri": 2.45e-07, - "persuasions": 2.45e-07, - "peruvians": 2.45e-07, - "peterman": 2.45e-07, - "pfister": 2.45e-07, - "phill": 2.45e-07, - "phillipe": 2.45e-07, - "photoshopping": 2.45e-07, - "pickard": 2.45e-07, - "pillai": 2.45e-07, - "pinkett": 2.45e-07, - "piste": 2.45e-07, - "pkwy": 2.45e-07, - "plainclothes": 2.45e-07, - "platz": 2.45e-07, - "pleasanton": 2.45e-07, - "pleasuring": 2.45e-07, - "pmr": 2.45e-07, - "pnw": 2.45e-07, - "poh": 2.45e-07, - "polak": 2.45e-07, - "polemics": 2.45e-07, - "politicization": 2.45e-07, - "polycystic": 2.45e-07, - "polyp": 2.45e-07, - "pompano": 2.45e-07, - "potpourri": 2.45e-07, - "practicalities": 2.45e-07, - "prance": 2.45e-07, - "pranksters": 2.45e-07, - "precipitously": 2.45e-07, - "preheated": 2.45e-07, - "prerogatives": 2.45e-07, - "pried": 2.45e-07, - "prieto": 2.45e-07, - "privatizing": 2.45e-07, - "probity": 2.45e-07, - "proboscis": 2.45e-07, - "proclivity": 2.45e-07, - "proprietorship": 2.45e-07, - "puglia": 2.45e-07, - "punto": 2.45e-07, - "purser": 2.45e-07, - "pylori": 2.45e-07, - "rackham": 2.45e-07, - "radiographs": 2.45e-07, - "ramada": 2.45e-07, - "rangefinder": 2.45e-07, - "rapacious": 2.45e-07, - "ravenswood": 2.45e-07, - "rdp": 2.45e-07, - "redefinition": 2.45e-07, - "redistributing": 2.45e-07, - "regionalism": 2.45e-07, - "regurgitation": 2.45e-07, - "rehnquist": 2.45e-07, - "reits": 2.45e-07, - "renegotiated": 2.45e-07, - "repossession": 2.45e-07, - "resenting": 2.45e-07, - "revo": 2.45e-07, - "revolutionised": 2.45e-07, - "rfk": 2.45e-07, - "rheumatology": 2.45e-07, - "rhinitis": 2.45e-07, - "rhyl": 2.45e-07, - "riaz": 2.45e-07, - "ridgewood": 2.45e-07, - "ripa": 2.45e-07, - "robustly": 2.45e-07, - "rockwood": 2.45e-07, - "rollicking": 2.45e-07, - "roosting": 2.45e-07, - "rothenberg": 2.45e-07, - "roto": 2.45e-07, - "rrr": 2.45e-07, - "rufous": 2.45e-07, - "runic": 2.45e-07, - "sabers": 2.45e-07, - "saccharomyces": 2.45e-07, - "saltire": 2.45e-07, - "sanjeev": 2.45e-07, - "saraswati": 2.45e-07, - "sava": 2.45e-07, - "scd": 2.45e-07, - "schenck": 2.45e-07, - "schnitzel": 2.45e-07, - "scratcher": 2.45e-07, - "scrutinised": 2.45e-07, - "seashell": 2.45e-07, - "sedge": 2.45e-07, - "sensitization": 2.45e-07, - "sensitized": 2.45e-07, - "serjeant": 2.45e-07, - "sfm": 2.45e-07, - "shafted": 2.45e-07, - "shamanic": 2.45e-07, - "shapeless": 2.45e-07, - "sharpshooters": 2.45e-07, - "shelleys": 2.45e-07, - "shelve": 2.45e-07, - "shima": 2.45e-07, - "shimla": 2.45e-07, - "shirin": 2.45e-07, - "shockwaves": 2.45e-07, - "shonda": 2.45e-07, - "shonen": 2.45e-07, - "shortcake": 2.45e-07, - "shrike": 2.45e-07, - "shrivel": 2.45e-07, - "sib": 2.45e-07, - "sibelius": 2.45e-07, - "slithering": 2.45e-07, - "sloshing": 2.45e-07, - "smd": 2.45e-07, - "smoot": 2.45e-07, - "smugly": 2.45e-07, - "sneered": 2.45e-07, - "snoozing": 2.45e-07, - "softcover": 2.45e-07, - "soiling": 2.45e-07, - "squirtle": 2.45e-07, - "staal": 2.45e-07, - "stam": 2.45e-07, - "standin": 2.45e-07, - "starfighter": 2.45e-07, - "steelworks": 2.45e-07, - "steffi": 2.45e-07, - "sterilisation": 2.45e-07, - "stigmata": 2.45e-07, - "stile": 2.45e-07, - "stratagem": 2.45e-07, - "striated": 2.45e-07, - "strutt": 2.45e-07, - "stunk": 2.45e-07, - "sturdier": 2.45e-07, - "subramanian": 2.45e-07, - "succesful": 2.45e-07, - "sugarcoat": 2.45e-07, - "supercritical": 2.45e-07, - "supermajority": 2.45e-07, - "surnamed": 2.45e-07, - "swiftness": 2.45e-07, - "symbolised": 2.45e-07, - "synchronizing": 2.45e-07, - "syne": 2.45e-07, - "tala": 2.45e-07, - "tambo": 2.45e-07, - "tarnishing": 2.45e-07, - "teddington": 2.45e-07, - "tema": 2.45e-07, - "thankfulness": 2.45e-07, - "thermals": 2.45e-07, - "thinness": 2.45e-07, - "throwin": 2.45e-07, - "thunderbolts": 2.45e-07, - "tidied": 2.45e-07, - "tipple": 2.45e-07, - "transnistria": 2.45e-07, - "traynor": 2.45e-07, - "trebled": 2.45e-07, - "trickles": 2.45e-07, - "trobe": 2.45e-07, - "tubercles": 2.45e-07, - "tucci": 2.45e-07, - "tunica": 2.45e-07, - "turnstile": 2.45e-07, - "twinkie": 2.45e-07, - "uclas": 2.45e-07, - "udemy": 2.45e-07, - "ulnar": 2.45e-07, - "umber": 2.45e-07, - "umbra": 2.45e-07, - "unashamed": 2.45e-07, - "unconstitutionally": 2.45e-07, - "unearthing": 2.45e-07, - "unhygienic": 2.45e-07, - "unnumbered": 2.45e-07, - "unobtainable": 2.45e-07, - "unseated": 2.45e-07, - "unter": 2.45e-07, - "untried": 2.45e-07, - "unwisely": 2.45e-07, - "upwind": 2.45e-07, - "urethral": 2.45e-07, - "vacationers": 2.45e-07, - "vagus": 2.45e-07, - "valdosta": 2.45e-07, - "varner": 2.45e-07, - "vinton": 2.45e-07, - "visalia": 2.45e-07, - "vivekananda": 2.45e-07, - "wahab": 2.45e-07, - "wailers": 2.45e-07, - "warding": 2.45e-07, - "warily": 2.45e-07, - "warr": 2.45e-07, - "wastelands": 2.45e-07, - "wausau": 2.45e-07, - "wavelet": 2.45e-07, - "webmaster": 2.45e-07, - "wiesel": 2.45e-07, - "wikipedias": 2.45e-07, - "wimps": 2.45e-07, - "windhoek": 2.45e-07, - "winsome": 2.45e-07, - "wintour": 2.45e-07, - "witwatersrand": 2.45e-07, - "wodehouse": 2.45e-07, - "wolfenstein": 2.45e-07, - "wonderment": 2.45e-07, - "woodburn": 2.45e-07, - "wrenched": 2.45e-07, - "wti": 2.45e-07, - "xan": 2.45e-07, - "yamashita": 2.45e-07, - "yankovic": 2.45e-07, - "yaris": 2.45e-07, - "yisrael": 2.45e-07, - "yousaf": 2.45e-07, - "yuu": 2.45e-07, - "yuzu": 2.45e-07, - "ywca": 2.45e-07, - "zaid": 2.45e-07, - "zev": 2.45e-07, - "zhan": 2.45e-07, - "ziegfeld": 2.45e-07, - "zinedine": 2.45e-07, - "aaaand": 2.4e-07, - "abia": 2.4e-07, - "abrogated": 2.4e-07, - "absolut": 2.4e-07, - "adjoins": 2.4e-07, - "aeschylus": 2.4e-07, - "aet": 2.4e-07, - "affixes": 2.4e-07, - "afton": 2.4e-07, - "ager": 2.4e-07, - "agnostics": 2.4e-07, - "agp": 2.4e-07, - "agricole": 2.4e-07, - "agu": 2.4e-07, - "ahrar": 2.4e-07, - "algerians": 2.4e-07, - "altrincham": 2.4e-07, - "amaranth": 2.4e-07, - "amat": 2.4e-07, - "ambani": 2.4e-07, - "ambidextrous": 2.4e-07, - "amundsen": 2.4e-07, - "analgesics": 2.4e-07, - "ands": 2.4e-07, - "anstey": 2.4e-07, - "anthropologie": 2.4e-07, - "approximates": 2.4e-07, - "archangels": 2.4e-07, - "arin": 2.4e-07, - "aristophanes": 2.4e-07, - "aspinall": 2.4e-07, - "atria": 2.4e-07, - "attesting": 2.4e-07, - "atti": 2.4e-07, - "attributions": 2.4e-07, - "aves": 1.17e-08, - "ayman": 2.4e-07, - "azar": 2.4e-07, - "backfiring": 2.4e-07, - "balmer": 2.4e-07, - "balor": 2.4e-07, - "barrons": 5.37e-08, - "barstool": 2.4e-07, - "bassam": 2.4e-07, - "batcave": 2.4e-07, - "baubles": 2.4e-07, - "baugh": 2.4e-07, - "bayan": 2.4e-07, - "bcp": 2.4e-07, - "beagles": 2.4e-07, - "begley": 2.4e-07, - "begrudgingly": 2.4e-07, - "belching": 2.4e-07, - "benioff": 2.4e-07, - "bhutanese": 2.4e-07, - "biarritz": 2.4e-07, - "bicyclist": 2.4e-07, - "bidwell": 2.4e-07, - "blandford": 2.4e-07, - "blips": 2.4e-07, - "bloomers": 2.4e-07, - "bloopers": 2.4e-07, - "bludgeon": 2.4e-07, - "bobbed": 2.4e-07, - "bobblehead": 2.4e-07, - "boeings": 2.4e-07, - "bolling": 2.4e-07, - "bonnaroo": 2.4e-07, - "bonobo": 2.4e-07, - "boombox": 2.4e-07, - "boracay": 2.4e-07, - "boughs": 2.4e-07, - "boxset": 2.4e-07, - "bregman": 2.4e-07, - "bringin": 2.4e-07, - "brusque": 2.4e-07, - "bry": 2.4e-07, - "bsf": 2.4e-07, - "bucknell": 2.4e-07, - "burgled": 2.4e-07, - "burk": 2.4e-07, - "burping": 2.4e-07, - "buxom": 2.4e-07, - "byways": 2.4e-07, - "cadillacs": 6.46e-08, - "calisthenics": 2.4e-07, - "callas": 2.4e-07, - "callbacks": 2.4e-07, - "camilo": 2.4e-07, - "canker": 2.4e-07, - "cantonment": 2.4e-07, - "carbone": 2.4e-07, - "carcinomas": 2.4e-07, - "cari": 2.4e-07, - "caritas": 2.4e-07, - "carles": 2.4e-07, - "carley": 2.4e-07, - "carlow": 2.4e-07, - "caseworker": 2.4e-07, - "cassiopeia": 2.4e-07, - "castell": 2.4e-07, - "cationic": 2.4e-07, - "cavitation": 2.4e-07, - "ced": 2.4e-07, - "celestia": 2.4e-07, - "ceta": 2.4e-07, - "chal": 2.4e-07, - "chanda": 2.4e-07, - "cheever": 2.4e-07, - "cheez": 2.4e-07, - "chelyabinsk": 2.4e-07, - "chicane": 2.4e-07, - "cleansers": 2.4e-07, - "clematis": 2.4e-07, - "climatology": 2.4e-07, - "cll": 2.4e-07, - "coakley": 2.4e-07, - "colle": 2.4e-07, - "commonest": 2.4e-07, - "compulsions": 2.4e-07, - "congregants": 2.4e-07, - "conjunctivitis": 2.4e-07, - "connally": 2.4e-07, - "conover": 2.4e-07, - "conrads": 2.4e-07, - "convalescence": 2.4e-07, - "cookson": 2.4e-07, - "corbusier": 2.4e-07, - "corporatism": 2.4e-07, - "cosplaying": 2.4e-07, - "countertops": 2.4e-07, - "couplets": 2.4e-07, - "cranbrook": 2.4e-07, - "crankcase": 2.4e-07, - "craw": 2.4e-07, - "creasy": 2.4e-07, - "crewmembers": 2.4e-07, - "criticality": 2.4e-07, - "crockpot": 2.4e-07, - "cruickshank": 2.4e-07, - "culloden": 2.4e-07, - "cunliffe": 2.4e-07, - "cylon": 2.4e-07, - "cyr": 2.4e-07, - "dabbed": 2.4e-07, - "dashcam": 2.4e-07, - "datsun": 2.4e-07, - "dawood": 2.4e-07, - "dearer": 2.4e-07, - "debased": 2.4e-07, - "deferential": 2.4e-07, - "defray": 2.4e-07, - "deliverer": 2.4e-07, - "demographically": 2.4e-07, - "deniz": 2.4e-07, - "depopulation": 2.4e-07, - "derick": 2.4e-07, - "derivations": 2.4e-07, - "derulo": 2.4e-07, - "descendent": 2.4e-07, - "deseret": 2.4e-07, - "desiccated": 2.4e-07, - "desjardins": 2.4e-07, - "despots": 2.4e-07, - "deutscher": 2.4e-07, - "deviants": 2.4e-07, - "diatoms": 2.4e-07, - "digitised": 2.4e-07, - "dinnertime": 2.4e-07, - "dirge": 2.4e-07, - "dismember": 2.4e-07, - "doggedly": 2.4e-07, - "dominator": 2.4e-07, - "dowel": 2.4e-07, - "dozer": 2.4e-07, - "duhamel": 2.4e-07, - "dullness": 2.4e-07, - "dunmore": 2.4e-07, - "dwarfism": 2.4e-07, - "dyna": 2.4e-07, - "eagleton": 2.4e-07, - "ecoboost": 2.4e-07, - "edgier": 2.4e-07, - "educative": 2.4e-07, - "egoism": 2.4e-07, - "eigenvalue": 2.4e-07, - "eir": 2.4e-07, - "eldar": 2.4e-07, - "elt": 2.4e-07, - "englander": 2.4e-07, - "enrage": 2.4e-07, - "enthalpy": 2.4e-07, - "errr": 2.4e-07, - "estee": 2.4e-07, - "etobicoke": 2.4e-07, - "exhilarated": 2.4e-07, - "existentialist": 2.4e-07, - "exoneration": 2.4e-07, - "fahad": 2.4e-07, - "farmstead": 2.4e-07, - "fatih": 2.4e-07, - "faulk": 2.4e-07, - "favreau": 2.4e-07, - "femi": 2.4e-07, - "feminization": 2.4e-07, - "fens": 2.4e-07, - "finchley": 2.4e-07, - "fitzgibbon": 2.4e-07, - "flagrantly": 2.4e-07, - "flotsam": 2.4e-07, - "flt": 2.4e-07, - "flutters": 2.4e-07, - "forefinger": 2.4e-07, - "fracas": 2.4e-07, - "frist": 2.4e-07, - "fundy": 2.4e-07, - "furrows": 2.4e-07, - "galton": 2.4e-07, - "gans": 2.4e-07, - "gargle": 2.4e-07, - "gassy": 2.4e-07, - "gastritis": 2.4e-07, - "gaultier": 2.4e-07, - "germania": 2.4e-07, - "gillen": 2.4e-07, - "ging": 2.4e-07, - "gingers": 8.51e-08, - "gizmodo": 2.4e-07, - "gizzard": 2.4e-07, - "glenns": 2.4e-07, - "godiva": 2.4e-07, - "goma": 2.4e-07, - "goodson": 2.4e-07, - "gratz": 2.4e-07, - "greensburg": 2.4e-07, - "grindstone": 2.4e-07, - "grubbing": 2.4e-07, - "guerillas": 2.4e-07, - "guilders": 2.4e-07, - "gulfport": 2.4e-07, - "gynecologists": 2.4e-07, - "hahahahahaha": 2.4e-07, - "hann": 2.4e-07, - "harada": 2.4e-07, - "harney": 2.4e-07, - "hcs": 2.4e-07, - "heeding": 2.4e-07, - "heralding": 2.4e-07, - "hetherington": 2.4e-07, - "hialeah": 2.4e-07, - "hibbard": 2.4e-07, - "hickok": 2.4e-07, - "higham": 2.4e-07, - "hinkle": 2.4e-07, - "hisses": 2.4e-07, - "hodgepodge": 2.4e-07, - "hoffmans": 2.4e-07, - "hogwash": 2.4e-07, - "hoists": 2.4e-07, - "holyfield": 2.4e-07, - "honorific": 2.4e-07, - "hopscotch": 2.4e-07, - "hornblower": 2.4e-07, - "houser": 2.4e-07, - "humus": 2.4e-07, - "hurls": 2.4e-07, - "hurwitz": 2.4e-07, - "hydraulically": 2.4e-07, - "hydrolyzed": 2.4e-07, - "icac": 2.4e-07, - "icbms": 2.4e-07, - "iker": 2.4e-07, - "impersonated": 2.4e-07, - "inaugurating": 2.4e-07, - "infantryman": 2.4e-07, - "ingot": 2.4e-07, - "inoperative": 2.4e-07, - "instil": 2.4e-07, - "interconnecting": 2.4e-07, - "internacional": 2.4e-07, - "intrauterine": 2.4e-07, - "invocations": 2.4e-07, - "ipp": 2.4e-07, - "irk": 2.4e-07, - "jad": 2.4e-07, - "jammy": 2.4e-07, - "jcb": 2.4e-07, - "jdm": 2.4e-07, - "jeffersonian": 2.4e-07, - "jessop": 2.4e-07, - "jeune": 2.4e-07, - "jiangxi": 2.4e-07, - "johnstons": 2.4e-07, - "joshuas": 2.4e-07, - "journos": 2.4e-07, - "jvm": 2.4e-07, - "kaolin": 2.4e-07, - "kats": 1.91e-07, - "kavanaughs": 2.4e-07, - "kinnock": 2.4e-07, - "kipp": 2.4e-07, - "kirkby": 2.4e-07, - "kirstie": 2.4e-07, - "kish": 2.4e-07, - "kiwanis": 2.4e-07, - "koga": 2.4e-07, - "komen": 2.4e-07, - "krasnodar": 2.4e-07, - "kraut": 2.4e-07, - "kul": 2.4e-07, - "kumasi": 2.4e-07, - "lactobacillus": 2.4e-07, - "lamest": 2.4e-07, - "leaderboards": 2.4e-07, - "leslies": 2.4e-07, - "levante": 2.4e-07, - "lhs": 2.4e-07, - "liddle": 2.4e-07, - "lig": 2.4e-07, - "lightbulbs": 2.4e-07, - "limoges": 2.4e-07, - "lisboa": 2.4e-07, - "littles": 1.48e-07, - "loiter": 2.4e-07, - "longingly": 2.4e-07, - "loosed": 2.4e-07, - "lopezs": 2.4e-07, - "lq": 2.4e-07, - "lto": 2.4e-07, - "maddon": 2.4e-07, - "magento": 2.4e-07, - "mainstreaming": 2.4e-07, - "maintainer": 2.4e-07, - "manuka": 2.4e-07, - "mapp": 2.4e-07, - "marginalize": 2.4e-07, - "mcdaniels": 2.4e-07, - "megapixels": 2.4e-07, - "mendelsohn": 2.4e-07, - "mercator": 2.4e-07, - "merdeka": 2.4e-07, - "merrin": 2.4e-07, - "meru": 2.4e-07, - "merwe": 2.4e-07, - "meshing": 2.4e-07, - "metta": 2.4e-07, - "microchips": 2.4e-07, - "micronutrients": 2.4e-07, - "milliner": 2.4e-07, - "miniaturized": 2.4e-07, - "miniskirt": 2.4e-07, - "misra": 2.4e-07, - "mitford": 2.4e-07, - "modernising": 2.4e-07, - "mog": 2.4e-07, - "monocytes": 2.4e-07, - "montano": 2.4e-07, - "moonrise": 2.4e-07, - "morozov": 2.4e-07, - "motes": 2.4e-07, - "motm": 2.4e-07, - "moviegoers": 2.4e-07, - "mulvaney": 2.4e-07, - "muna": 2.4e-07, - "nakamoto": 2.4e-07, - "narcos": 2.4e-07, - "nashvilles": 2.4e-07, - "navigates": 2.4e-07, - "nephrology": 2.4e-07, - "nessie": 2.4e-07, - "neutralised": 2.4e-07, - "neutralization": 2.4e-07, - "newbery": 2.4e-07, - "newby": 2.4e-07, - "newhaven": 2.4e-07, - "nila": 2.4e-07, - "nippy": 2.4e-07, - "nishi": 2.4e-07, - "nishimura": 2.4e-07, - "nits": 2.4e-07, - "nobis": 2.4e-07, - "nytimes": 2.4e-07, - "obp": 2.4e-07, - "ointments": 2.4e-07, - "okeechobee": 2.4e-07, - "onenote": 2.4e-07, - "oolong": 2.4e-07, - "orientalism": 2.4e-07, - "orsini": 2.4e-07, - "outfielders": 2.4e-07, - "overpaying": 2.4e-07, - "overproduction": 2.4e-07, - "overshadowing": 2.4e-07, - "overstep": 2.4e-07, - "pachinko": 2.4e-07, - "palatal": 2.4e-07, - "pallid": 2.4e-07, - "paro": 2.4e-07, - "parsed": 2.4e-07, - "patek": 2.4e-07, - "pavia": 2.4e-07, - "pedi": 2.4e-07, - "pennsylvanian": 2.4e-07, - "perceval": 2.4e-07, - "pergamon": 2.4e-07, - "peron": 2.4e-07, - "personage": 2.4e-07, - "petter": 2.4e-07, - "pilling": 2.4e-07, - "pinehurst": 2.4e-07, - "pinpointing": 2.4e-07, - "pmp": 2.4e-07, - "politifact": 2.4e-07, - "polyglot": 2.4e-07, - "pontypridd": 2.4e-07, - "popstar": 2.4e-07, - "porpoises": 2.4e-07, - "pouty": 2.4e-07, - "prabhu": 2.4e-07, - "prashant": 2.4e-07, - "preachy": 2.4e-07, - "preserver": 2.4e-07, - "prioritising": 2.4e-07, - "pris": 2.4e-07, - "prolongation": 2.4e-07, - "propellants": 2.4e-07, - "psychedelics": 2.4e-07, - "publicise": 2.4e-07, - "puerta": 2.4e-07, - "puyo": 2.4e-07, - "quanta": 2.4e-07, - "quimby": 2.4e-07, - "rabe": 2.4e-07, - "rader": 2.4e-07, - "raiden": 2.4e-07, - "ramakrishna": 2.4e-07, - "rationalisation": 2.4e-07, - "reallocated": 2.4e-07, - "recycles": 2.4e-07, - "referenda": 2.4e-07, - "reformists": 2.4e-07, - "refracted": 2.4e-07, - "reggaeton": 2.4e-07, - "reine": 2.4e-07, - "reintroducing": 2.4e-07, - "relatedness": 2.4e-07, - "relocations": 2.4e-07, - "repurposing": 2.4e-07, - "restocked": 2.4e-07, - "retaliating": 2.4e-07, - "retracing": 2.4e-07, - "retracts": 2.4e-07, - "retrenchment": 2.4e-07, - "revell": 2.4e-07, - "reynard": 2.4e-07, - "righteously": 2.4e-07, - "risc": 2.4e-07, - "roddick": 2.4e-07, - "roly": 2.4e-07, - "romcom": 2.4e-07, - "roomba": 2.4e-07, - "rosenblum": 2.4e-07, - "rosewater": 2.4e-07, - "rossiter": 2.4e-07, - "rothko": 2.4e-07, - "rowboat": 2.4e-07, - "roxburgh": 2.4e-07, - "rundle": 2.4e-07, - "sada": 2.4e-07, - "sahih": 2.4e-07, - "sammi": 2.4e-07, - "satires": 2.4e-07, - "schulte": 2.4e-07, - "schulze": 2.4e-07, - "scorecards": 2.4e-07, - "screentime": 2.4e-07, - "sct": 2.4e-07, - "scuttling": 2.4e-07, - "sdg": 2.4e-07, - "seabird": 2.4e-07, - "sealants": 2.4e-07, - "segregating": 2.4e-07, - "seidel": 2.4e-07, - "seiu": 2.4e-07, - "sence": 2.4e-07, - "severin": 2.4e-07, - "shandy": 2.4e-07, - "shere": 2.4e-07, - "shinobu": 2.4e-07, - "showpiece": 2.4e-07, - "showstopper": 2.4e-07, - "shumpert": 2.4e-07, - "sidewall": 2.4e-07, - "sinusoidal": 2.4e-07, - "siv": 2.4e-07, - "skewing": 2.4e-07, - "slink": 2.4e-07, - "slovaks": 2.4e-07, - "snead": 2.4e-07, - "snps": 1.51e-07, - "solana": 2.4e-07, - "sontag": 2.4e-07, - "souter": 2.4e-07, - "sowell": 2.4e-07, - "spacexs": 2.4e-07, - "splc": 2.4e-07, - "stadler": 2.4e-07, - "stadt": 2.4e-07, - "staggeringly": 2.4e-07, - "stamkos": 2.4e-07, - "stenson": 2.4e-07, - "stepney": 2.4e-07, - "stewing": 2.4e-07, - "stirrups": 2.4e-07, - "stn": 2.4e-07, - "straitjacket": 2.4e-07, - "stratocaster": 2.4e-07, - "stubbed": 2.4e-07, - "studi": 2.4e-07, - "subduing": 2.4e-07, - "subhuman": 2.4e-07, - "sulfates": 2.4e-07, - "suzette": 2.4e-07, - "tableaux": 2.4e-07, - "taillights": 2.4e-07, - "talus": 2.4e-07, - "tampico": 2.4e-07, - "tangentially": 2.4e-07, - "tarpaulin": 2.4e-07, - "tastebuds": 2.4e-07, - "telomere": 2.4e-07, - "terabytes": 2.4e-07, - "tesseract": 2.4e-07, - "tgv": 2.4e-07, - "thaksin": 2.4e-07, - "thoth": 2.4e-07, - "thurber": 2.4e-07, - "tiamat": 2.4e-07, - "timmins": 2.4e-07, - "tinny": 2.4e-07, - "tita": 2.4e-07, - "titi": 2.4e-07, - "titration": 2.4e-07, - "toefl": 2.4e-07, - "toilette": 2.4e-07, - "tonks": 2.4e-07, - "tonsillitis": 2.4e-07, - "toonami": 2.4e-07, - "topologies": 2.4e-07, - "torbay": 2.4e-07, - "toshio": 2.4e-07, - "totoro": 2.4e-07, - "totten": 2.4e-07, - "townes": 2.4e-07, - "tox": 2.4e-07, - "trialled": 2.4e-07, - "triceratops": 2.4e-07, - "tsinghua": 2.4e-07, - "turboprop": 2.4e-07, - "turkana": 2.4e-07, - "uaap": 2.4e-07, - "ucb": 2.4e-07, - "umami": 2.4e-07, - "umpteenth": 2.4e-07, - "unacceptably": 2.4e-07, - "uncommitted": 2.4e-07, - "unconstrained": 2.4e-07, - "uncultured": 2.4e-07, - "underarm": 2.4e-07, - "underpowered": 2.4e-07, - "unlockable": 2.4e-07, - "unsw": 2.4e-07, - "unwatchable": 2.4e-07, - "uploader": 2.4e-07, - "upwelling": 2.4e-07, - "utilises": 2.4e-07, - "vegf": 2.4e-07, - "vell": 2.4e-07, - "viera": 2.4e-07, - "vik": 2.4e-07, - "visors": 2.4e-07, - "vitoria": 2.4e-07, - "wacko": 2.4e-07, - "wafl": 2.4e-07, - "waft": 2.4e-07, - "walshs": 2.4e-07, - "washcloth": 2.4e-07, - "wassup": 2.4e-07, - "watermarks": 2.4e-07, - "waypoint": 2.4e-07, - "webby": 2.4e-07, - "wellspring": 2.4e-07, - "werden": 2.4e-07, - "wetzel": 2.4e-07, - "whistleblowing": 2.4e-07, - "widnes": 2.4e-07, - "wikis": 2.4e-07, - "wildland": 2.4e-07, - "winced": 2.4e-07, - "wisc": 2.4e-07, - "wreckers": 2.4e-07, - "xcode": 2.4e-07, - "xxvii": 2.4e-07, - "yearlong": 2.4e-07, - "yorkville": 2.4e-07, - "yuletide": 2.4e-07, - "zapp": 2.4e-07, - "zenyatta": 2.4e-07, - "zin": 2.4e-07, - "zou": 2.4e-07, - "abiotic": 2.34e-07, - "absconded": 2.34e-07, - "absorbance": 2.34e-07, - "absurdist": 2.34e-07, - "accomodation": 2.34e-07, - "acculturation": 2.34e-07, - "acevedo": 2.34e-07, - "acrid": 2.34e-07, - "adrianna": 2.34e-07, - "agg": 2.34e-07, - "aggravates": 2.34e-07, - "airfares": 2.34e-07, - "ajayi": 2.34e-07, - "alcock": 2.34e-07, - "aleksander": 2.34e-07, - "alister": 2.34e-07, - "allegiant": 2.34e-07, - "allgemeine": 2.34e-07, - "alpacas": 2.34e-07, - "americorps": 2.34e-07, - "amgen": 2.34e-07, - "amrita": 2.34e-07, - "amyotrophic": 2.34e-07, - "anais": 2.34e-07, - "analgesia": 2.34e-07, - "anisotropy": 2.34e-07, - "ankh": 2.34e-07, - "ansell": 2.34e-07, - "appomattox": 2.34e-07, - "appstore": 2.34e-07, - "arash": 2.34e-07, - "arbiters": 2.34e-07, - "arbuthnot": 2.34e-07, - "arellano": 2.34e-07, - "arima": 2.34e-07, - "armbands": 2.34e-07, - "arsonists": 2.34e-07, - "artpop": 2.34e-07, - "arum": 2.34e-07, - "aryl": 2.34e-07, - "asano": 2.34e-07, - "ascertaining": 2.34e-07, - "ashgate": 2.34e-07, - "asura": 2.34e-07, - "aswan": 2.34e-07, - "athabasca": 2.34e-07, - "atos": 2.34e-07, - "attentional": 2.34e-07, - "auras": 2.34e-07, - "bangladeshis": 2.34e-07, - "barging": 2.34e-07, - "baumgartner": 2.34e-07, - "bedouins": 2.34e-07, - "beefs": 2.34e-07, - "beekman": 2.34e-07, - "behar": 2.34e-07, - "bellman": 2.34e-07, - "belsen": 2.34e-07, - "benching": 2.34e-07, - "bendtner": 2.34e-07, - "bentonville": 2.34e-07, - "benzo": 2.34e-07, - "berdych": 2.34e-07, - "bergin": 2.34e-07, - "bettman": 2.34e-07, - "bigly": 2.34e-07, - "biko": 2.34e-07, - "billington": 2.34e-07, - "binaural": 2.34e-07, - "bindi": 2.34e-07, - "bioactive": 2.34e-07, - "birdwatching": 2.34e-07, - "blam": 2.34e-07, - "blenders": 2.34e-07, - "blistered": 2.34e-07, - "blitzed": 2.34e-07, - "bluewater": 2.34e-07, - "boj": 2.34e-07, - "bombardments": 2.34e-07, - "bottlenose": 2.34e-07, - "brassy": 2.34e-07, - "breckinridge": 2.34e-07, - "bridlington": 2.34e-07, - "brindle": 2.34e-07, - "brix": 2.34e-07, - "brocks": 2.34e-07, - "brownback": 2.34e-07, - "bumming": 2.34e-07, - "burge": 2.34e-07, - "burghley": 2.34e-07, - "burks": 2.34e-07, - "burwood": 2.34e-07, - "butthead": 2.34e-07, - "caliban": 2.34e-07, - "calluses": 2.34e-07, - "candi": 2.34e-07, - "capuchin": 2.34e-07, - "carteret": 2.34e-07, - "cartographer": 2.34e-07, - "caryl": 2.34e-07, - "cashs": 2.34e-07, - "castleton": 2.34e-07, - "catalyzes": 2.34e-07, - "catarina": 2.34e-07, - "catharines": 2.34e-07, - "cep": 2.34e-07, - "cetaceans": 2.34e-07, - "cfi": 2.34e-07, - "chabad": 2.34e-07, - "chaffee": 2.34e-07, - "chameleons": 2.34e-07, - "chatfield": 2.34e-07, - "chauvinist": 2.34e-07, - "chiquita": 2.34e-07, - "chisels": 2.34e-07, - "choudhury": 2.34e-07, - "chroniclers": 2.34e-07, - "cibc": 2.34e-07, - "citrix": 2.34e-07, - "clacton": 2.34e-07, - "clade": 2.34e-07, - "clanging": 2.34e-07, - "claras": 2.34e-07, - "classier": 2.34e-07, - "clea": 2.34e-07, - "cleat": 2.34e-07, - "climaxes": 2.34e-07, - "clumsiness": 2.34e-07, - "clydebank": 2.34e-07, - "cocoons": 2.34e-07, - "colander": 2.34e-07, - "colston": 2.34e-07, - "colum": 2.34e-07, - "combi": 2.34e-07, - "concoctions": 2.34e-07, - "condenses": 2.34e-07, - "conservatories": 2.34e-07, - "cooldown": 2.34e-07, - "coraline": 2.34e-07, - "corrado": 2.34e-07, - "covergirl": 2.34e-07, - "crayola": 2.34e-07, - "crevasse": 2.34e-07, - "crooner": 2.34e-07, - "crosstalk": 2.34e-07, - "cruelest": 2.34e-07, - "cupids": 1.15e-07, - "cussed": 2.34e-07, - "daiichi": 2.34e-07, - "dangles": 2.34e-07, - "dashboards": 2.34e-07, - "dawgs": 2.34e-07, - "dbt": 2.34e-07, - "deceaseds": 2.34e-07, - "declination": 2.34e-07, - "decoupled": 2.34e-07, - "defacing": 2.34e-07, - "defaming": 2.34e-07, - "defensiveness": 2.34e-07, - "defo": 2.34e-07, - "dello": 2.34e-07, - "dells": 1.95e-07, - "denunciations": 2.34e-07, - "dershowitz": 2.34e-07, - "desean": 2.34e-07, - "desensitized": 2.34e-07, - "digests": 2.34e-07, - "dinamo": 2.34e-07, - "disclaims": 2.34e-07, - "disorganised": 2.34e-07, - "diverges": 2.34e-07, - "divina": 2.34e-07, - "dolt": 2.34e-07, - "donk": 2.34e-07, - "dothan": 2.34e-07, - "drench": 2.34e-07, - "drexler": 2.34e-07, - "dribbled": 2.34e-07, - "dross": 2.34e-07, - "dweeb": 2.34e-07, - "dworkin": 2.34e-07, - "earmarks": 2.34e-07, - "eddington": 2.34e-07, - "edelstein": 2.34e-07, - "edta": 2.34e-07, - "eez": 2.34e-07, - "eggers": 2.34e-07, - "einhorn": 2.34e-07, - "elkhorn": 2.34e-07, - "emas": 2.34e-07, - "emulates": 2.34e-07, - "ende": 2.34e-07, - "enel": 2.34e-07, - "engrave": 2.34e-07, - "enjoined": 2.34e-07, - "entrapped": 2.34e-07, - "equivocal": 2.34e-07, - "erdogans": 2.34e-07, - "erna": 2.34e-07, - "espouses": 2.34e-07, - "ethane": 2.34e-07, - "euroleague": 2.34e-07, - "eusebio": 2.34e-07, - "eventing": 2.34e-07, - "everard": 2.34e-07, - "expediting": 2.34e-07, - "exuded": 2.34e-07, - "faure": 2.34e-07, - "fibro": 2.34e-07, - "fifield": 2.34e-07, - "fille": 2.34e-07, - "firebox": 2.34e-07, - "fistfight": 2.34e-07, - "fite": 2.34e-07, - "fitzhugh": 2.34e-07, - "fiving": 2.34e-07, - "fixable": 2.34e-07, - "flatiron": 2.34e-07, - "flighty": 2.34e-07, - "flintstone": 2.34e-07, - "florin": 2.34e-07, - "fouad": 2.34e-07, - "fractionation": 2.34e-07, - "fugly": 2.34e-07, - "fujiwara": 2.34e-07, - "fullers": 8.13e-08, - "fusco": 2.34e-07, - "galvanic": 2.34e-07, - "galvanizing": 2.34e-07, - "gametes": 2.34e-07, - "garretts": 2.34e-07, - "gayer": 2.34e-07, - "geer": 2.34e-07, - "gentoo": 2.34e-07, - "georgios": 2.34e-07, - "gilmer": 2.34e-07, - "gingham": 2.34e-07, - "glaringly": 2.34e-07, - "glitzy": 2.34e-07, - "glycolysis": 2.34e-07, - "gnarled": 2.34e-07, - "goodmans": 2.34e-07, - "gouache": 2.34e-07, - "grampa": 2.34e-07, - "gri": 2.34e-07, - "griffon": 2.34e-07, - "grote": 2.34e-07, - "gruen": 2.34e-07, - "guayaquil": 2.34e-07, - "gumi": 2.34e-07, - "gutta": 2.34e-07, - "habanero": 2.34e-07, - "hac": 2.34e-07, - "haitis": 2.34e-07, - "hallow": 2.34e-07, - "hallucinatory": 2.34e-07, - "hanan": 2.34e-07, - "hanky": 2.34e-07, - "haqqani": 2.34e-07, - "hardtop": 2.34e-07, - "haring": 2.34e-07, - "hartigan": 2.34e-07, - "hashed": 2.34e-07, - "hauntingly": 2.34e-07, - "hayao": 2.34e-07, - "hdp": 2.34e-07, - "heimlich": 2.34e-07, - "hemel": 2.34e-07, - "hemingways": 2.34e-07, - "henkel": 2.34e-07, - "herne": 2.34e-07, - "hiawatha": 2.34e-07, - "hifi": 2.34e-07, - "hindustani": 2.34e-07, - "hippodrome": 2.34e-07, - "hmu": 2.34e-07, - "hoang": 2.34e-07, - "holdem": 1.51e-07, - "hort": 2.34e-07, - "hoth": 2.34e-07, - "housewares": 2.34e-07, - "huddleston": 2.34e-07, - "huffed": 2.34e-07, - "humic": 2.34e-07, - "hummed": 2.34e-07, - "hurdler": 2.34e-07, - "hydrangea": 2.34e-07, - "hydrotherapy": 2.34e-07, - "iambic": 2.34e-07, - "ichabod": 2.34e-07, - "icl": 2.34e-07, - "iconoclastic": 2.34e-07, - "icts": 2.34e-07, - "ili": 2.34e-07, - "imperfectly": 2.34e-07, - "inauthentic": 2.34e-07, - "incontinent": 2.34e-07, - "infliction": 2.34e-07, - "interferometry": 2.34e-07, - "interject": 2.34e-07, - "interlocutor": 2.34e-07, - "intermountain": 2.34e-07, - "isabela": 2.34e-07, - "jat": 2.34e-07, - "jaz": 2.34e-07, - "jobber": 2.34e-07, - "jogs": 2.34e-07, - "jugglers": 2.34e-07, - "jungs": 2.34e-07, - "kade": 2.34e-07, - "kassel": 2.34e-07, - "khao": 2.34e-07, - "kidderminster": 2.34e-07, - "kinesiology": 2.34e-07, - "kirkham": 2.34e-07, - "koizumi": 2.34e-07, - "kopp": 2.34e-07, - "kryptonian": 2.34e-07, - "kuiper": 2.34e-07, - "lamia": 2.34e-07, - "laryngitis": 2.34e-07, - "lashkar": 2.34e-07, - "lavatories": 2.34e-07, - "lda": 2.34e-07, - "leal": 2.34e-07, - "learnings": 2.34e-07, - "legalistic": 2.34e-07, - "legge": 2.34e-07, - "legroom": 2.34e-07, - "lep": 2.34e-07, - "librarianship": 2.34e-07, - "lieber": 2.34e-07, - "lightspeed": 2.34e-07, - "lilli": 2.34e-07, - "lindholm": 2.34e-07, - "linea": 2.34e-07, - "logon": 2.34e-07, - "lolas": 2.34e-07, - "longboard": 2.34e-07, - "lov": 2.34e-07, - "lovesick": 2.34e-07, - "lublin": 2.34e-07, - "lunas": 8.51e-08, - "macaroons": 2.34e-07, - "maccabees": 2.34e-07, - "macks": 5.5e-08, - "magill": 2.34e-07, - "magnetosphere": 2.34e-07, - "mahrez": 2.34e-07, - "maiming": 2.34e-07, - "mainstage": 2.34e-07, - "majeure": 2.34e-07, - "malted": 2.34e-07, - "maman": 2.34e-07, - "mandalorian": 2.34e-07, - "mando": 2.34e-07, - "marchioness": 2.34e-07, - "marci": 2.34e-07, - "marlies": 2.34e-07, - "marni": 2.34e-07, - "martineau": 2.34e-07, - "masterworks": 2.34e-07, - "maxillofacial": 2.34e-07, - "mbp": 2.34e-07, - "medicating": 2.34e-07, - "melancholia": 2.34e-07, - "menelaus": 2.34e-07, - "meows": 2.34e-07, - "merlyn": 2.34e-07, - "michelangelos": 2.34e-07, - "michi": 2.34e-07, - "midriff": 2.34e-07, - "milena": 2.34e-07, - "millington": 2.34e-07, - "millsap": 2.34e-07, - "minden": 2.34e-07, - "missive": 2.34e-07, - "modernists": 2.34e-07, - "modularity": 2.34e-07, - "moffitt": 2.34e-07, - "molt": 2.34e-07, - "monsoons": 2.34e-07, - "montages": 2.34e-07, - "montefiore": 2.34e-07, - "moonves": 2.34e-07, - "morag": 2.34e-07, - "morsels": 2.34e-07, - "mostafa": 2.34e-07, - "motherless": 2.34e-07, - "multilayered": 2.34e-07, - "multiparty": 2.34e-07, - "mung": 2.34e-07, - "muon": 2.34e-07, - "mura": 2.34e-07, - "mylar": 2.34e-07, - "myosin": 2.34e-07, - "nadi": 2.34e-07, - "nadler": 2.34e-07, - "nari": 2.34e-07, - "nazionale": 2.34e-07, - "neater": 2.34e-07, - "nebraskas": 2.34e-07, - "neighborly": 2.34e-07, - "netbook": 2.34e-07, - "neuroblastoma": 2.34e-07, - "nonconformist": 2.34e-07, - "nonstandard": 2.34e-07, - "nop": 2.34e-07, - "northbrook": 2.34e-07, - "nosedive": 2.34e-07, - "novell": 2.34e-07, - "numa": 2.34e-07, - "obadiah": 2.34e-07, - "obliteration": 2.34e-07, - "ohne": 2.34e-07, - "oksana": 2.34e-07, - "oliva": 2.34e-07, - "omniscience": 2.34e-07, - "onl": 2.34e-07, - "ordeals": 2.34e-07, - "orthodontics": 2.34e-07, - "outdoorsy": 2.34e-07, - "overground": 2.34e-07, - "padgett": 2.34e-07, - "palates": 2.34e-07, - "parise": 2.34e-07, - "parkersburg": 2.34e-07, - "parnassus": 2.34e-07, - "partook": 2.34e-07, - "paye": 2.34e-07, - "paynes": 6.46e-08, - "payphone": 2.34e-07, - "pbx": 2.34e-07, - "peekaboo": 2.34e-07, - "pennell": 2.34e-07, - "pentateuch": 2.34e-07, - "pepin": 2.34e-07, - "perpignan": 2.34e-07, - "perversely": 2.34e-07, - "pervy": 2.34e-07, - "pestered": 2.34e-07, - "philomena": 2.34e-07, - "photocopying": 2.34e-07, - "piaget": 2.34e-07, - "pickpockets": 2.34e-07, - "pik": 2.34e-07, - "pinstripe": 2.34e-07, - "piranhas": 2.34e-07, - "platforming": 2.34e-07, - "pleats": 2.34e-07, - "plopped": 2.34e-07, - "pneumothorax": 2.34e-07, - "pokies": 2.34e-07, - "polaroids": 2.34e-07, - "porzingis": 2.34e-07, - "postpaid": 2.34e-07, - "pranking": 2.34e-07, - "pref": 2.34e-07, - "prefectures": 2.34e-07, - "prefered": 2.34e-07, - "prepackaged": 2.34e-07, - "prisma": 2.34e-07, - "priv": 2.34e-07, - "processional": 2.34e-07, - "profligate": 2.34e-07, - "prolactin": 2.34e-07, - "proteases": 2.34e-07, - "proteomics": 2.34e-07, - "proxima": 2.34e-07, - "psm": 2.34e-07, - "psr": 2.34e-07, - "psychical": 2.34e-07, - "ptfe": 2.34e-07, - "puerile": 2.34e-07, - "puyallup": 2.34e-07, - "pyrotechnic": 2.34e-07, - "qatars": 2.34e-07, - "quadriceps": 2.34e-07, - "quadrilateral": 2.34e-07, - "quartile": 2.34e-07, - "quickbooks": 2.34e-07, - "quitters": 2.34e-07, - "radhika": 2.34e-07, - "ragtag": 2.34e-07, - "ranveer": 2.34e-07, - "rapidity": 2.34e-07, - "ravindra": 2.34e-07, - "razzle": 2.34e-07, - "rdx": 2.34e-07, - "reay": 2.34e-07, - "rebutted": 2.34e-07, - "recasting": 2.34e-07, - "recheck": 2.34e-07, - "reconstitute": 2.34e-07, - "reconstitution": 2.34e-07, - "recused": 2.34e-07, - "redeems": 2.34e-07, - "redmayne": 2.34e-07, - "refitted": 2.34e-07, - "reframing": 2.34e-07, - "reining": 2.34e-07, - "remembrances": 2.34e-07, - "renwick": 2.34e-07, - "repeals": 2.34e-07, - "repubblica": 2.34e-07, - "rerouting": 2.34e-07, - "restatement": 2.34e-07, - "restive": 2.34e-07, - "retouching": 2.34e-07, - "rias": 2.34e-07, - "ridged": 2.34e-07, - "righted": 2.34e-07, - "riku": 2.34e-07, - "ripleys": 2.34e-07, - "rnb": 5.01e-08, - "rorys": 2.34e-07, - "roscommon": 2.34e-07, - "rosemarys": 2.34e-07, - "roslin": 2.34e-07, - "rummy": 2.34e-07, - "ruts": 2.34e-07, - "sainz": 2.34e-07, - "sameness": 2.34e-07, - "sanctify": 2.34e-07, - "satiated": 2.34e-07, - "sattar": 2.34e-07, - "savoir": 2.34e-07, - "saxo": 2.34e-07, - "sayaka": 2.34e-07, - "sayonara": 2.34e-07, - "sbu": 2.34e-07, - "scalped": 2.34e-07, - "scaremongering": 2.34e-07, - "scriptwriter": 2.34e-07, - "scummy": 2.34e-07, - "seaver": 2.34e-07, - "secretory": 2.34e-07, - "secularization": 2.34e-07, - "segovia": 2.34e-07, - "seis": 2.34e-07, - "sellars": 2.34e-07, - "sheeple": 2.34e-07, - "sheva": 2.34e-07, - "shiites": 8.91e-08, - "shira": 2.34e-07, - "shitheads": 2.34e-07, - "shota": 2.34e-07, - "shr": 2.34e-07, - "shuck": 2.34e-07, - "sidhu": 2.34e-07, - "sigil": 2.34e-07, - "silhouetted": 2.34e-07, - "silla": 2.34e-07, - "simonson": 2.34e-07, - "sint": 2.34e-07, - "slouching": 2.34e-07, - "smidge": 2.34e-07, - "snappers": 2.34e-07, - "sonu": 2.34e-07, - "sooth": 2.34e-07, - "sparkled": 2.34e-07, - "speeded": 2.34e-07, - "spellbinding": 2.34e-07, - "spiffy": 2.34e-07, - "sprains": 2.34e-07, - "ssu": 2.34e-07, - "stackhouse": 2.34e-07, - "stateroom": 2.34e-07, - "stavanger": 2.34e-07, - "stb": 2.34e-07, - "steeping": 2.34e-07, - "stevan": 2.34e-07, - "stilt": 2.34e-07, - "storia": 2.34e-07, - "stretton": 2.34e-07, - "subcategory": 2.34e-07, - "suffragettes": 2.34e-07, - "sulphide": 2.34e-07, - "sulzberger": 2.34e-07, - "sunscreens": 2.34e-07, - "swindler": 2.34e-07, - "swinney": 2.34e-07, - "swole": 2.34e-07, - "syl": 2.34e-07, - "sympathizing": 2.34e-07, - "syrupy": 2.34e-07, - "taciturn": 2.34e-07, - "tage": 2.34e-07, - "talentless": 2.34e-07, - "taskmaster": 2.34e-07, - "tastiest": 2.34e-07, - "tatsuya": 2.34e-07, - "technocrats": 2.34e-07, - "telescoping": 2.34e-07, - "tempos": 2.34e-07, - "tempus": 2.34e-07, - "tented": 2.34e-07, - "tert": 2.34e-07, - "thomsen": 2.34e-07, - "thots": 2.34e-07, - "tib": 2.34e-07, - "tice": 2.34e-07, - "tolbert": 2.34e-07, - "tooled": 2.34e-07, - "torpor": 2.34e-07, - "traceability": 2.34e-07, - "transfered": 2.34e-07, - "transmissible": 2.34e-07, - "trigg": 2.34e-07, - "trilling": 2.34e-07, - "trotters": 2.34e-07, - "trucked": 2.34e-07, - "truckee": 2.34e-07, - "tty": 2.34e-07, - "tussauds": 2.34e-07, - "typecast": 2.34e-07, - "typographic": 2.34e-07, - "ueno": 2.34e-07, - "unh": 2.34e-07, - "unicycle": 2.34e-07, - "unidentifiable": 2.34e-07, - "unpolished": 2.34e-07, - "untethered": 2.34e-07, - "unvaccinated": 2.34e-07, - "upp": 2.34e-07, - "vacuumed": 2.34e-07, - "vagabonds": 2.34e-07, - "valjean": 2.34e-07, - "valois": 2.34e-07, - "varnished": 2.34e-07, - "vasari": 2.34e-07, - "vicissitudes": 2.34e-07, - "vientiane": 2.34e-07, - "viktoria": 2.34e-07, - "vinyls": 2.34e-07, - "voyagers": 6.03e-08, - "wakey": 2.34e-07, - "wayfarer": 2.34e-07, - "weedy": 2.34e-07, - "weightloss": 2.34e-07, - "weintraub": 2.34e-07, - "wenatchee": 2.34e-07, - "wert": 2.34e-07, - "winches": 2.34e-07, - "wom": 2.34e-07, - "womenswear": 2.34e-07, - "wpc": 2.34e-07, - "wyatts": 2.34e-07, - "wyden": 2.34e-07, - "wyler": 2.34e-07, - "xxvi": 2.34e-07, - "xylophone": 2.34e-07, - "yai": 2.34e-07, - "yair": 2.34e-07, - "yasin": 2.34e-07, - "yeshua": 2.34e-07, - "yf": 2.34e-07, - "yugioh": 2.34e-07, - "zsa": 2.34e-07, - "zulus": 2.34e-07, - "aat": 2.29e-07, - "abeyance": 2.29e-07, - "aby": 2.29e-07, - "accentuates": 2.29e-07, - "acceptances": 2.29e-07, - "addi": 2.29e-07, - "addressable": 2.29e-07, - "adlai": 2.29e-07, - "aeolian": 2.29e-07, - "aftr": 2.29e-07, - "agnosticism": 2.29e-07, - "agonising": 2.29e-07, - "akt": 2.29e-07, - "alacrity": 2.29e-07, - "allying": 2.29e-07, - "ambler": 2.29e-07, - "amla": 2.29e-07, - "ammonites": 2.29e-07, - "anderton": 2.29e-07, - "andor": 2.29e-07, - "animes": 1.45e-07, - "antihistamine": 2.29e-07, - "aplomb": 2.29e-07, - "apologia": 2.29e-07, - "apparatuses": 2.29e-07, - "arabi": 2.29e-07, - "aramco": 2.29e-07, - "arbitrate": 2.29e-07, - "archies": 6.17e-08, - "arouses": 2.29e-07, - "artificer": 2.29e-07, - "arvin": 2.29e-07, - "ashtons": 2.29e-07, - "ashura": 2.29e-07, - "aspartate": 2.29e-07, - "atlases": 2.29e-07, - "atopic": 2.29e-07, - "attired": 2.29e-07, - "avram": 2.29e-07, - "awnings": 2.29e-07, - "ayre": 2.29e-07, - "azaleas": 9.33e-08, - "bacons": 2.29e-07, - "bacteriology": 2.29e-07, - "baklava": 2.29e-07, - "balliol": 2.29e-07, - "bamber": 2.29e-07, - "bankhead": 2.29e-07, - "bansal": 2.29e-07, - "barbieri": 2.29e-07, - "barbiturates": 2.29e-07, - "barcodes": 2.29e-07, - "barnstable": 2.29e-07, - "barnwell": 2.29e-07, - "barris": 2.29e-07, - "baskerville": 2.29e-07, - "beanbag": 2.29e-07, - "beautys": 2.29e-07, - "beckley": 2.29e-07, - "bedspread": 2.29e-07, - "bengalis": 2.29e-07, - "bergmann": 2.29e-07, - "besiege": 2.29e-07, - "bilaterally": 2.29e-07, - "binky": 2.29e-07, - "bituminous": 2.29e-07, - "blackheath": 2.29e-07, - "blacktown": 2.29e-07, - "bookmarking": 2.29e-07, - "borthwick": 2.29e-07, - "botulinum": 2.29e-07, - "bowditch": 2.29e-07, - "boyles": 1.2e-07, - "braked": 2.29e-07, - "brc": 2.29e-07, - "breda": 2.29e-07, - "broadmoor": 2.29e-07, - "broadways": 1.38e-08, - "bronwyn": 2.29e-07, - "bruckner": 2.29e-07, - "brunos": 2.29e-07, - "buf": 2.29e-07, - "burgas": 2.29e-07, - "burts": 2.29e-07, - "bussy": 2.29e-07, - "cabriolet": 2.29e-07, - "cains": 2.29e-07, - "calcified": 2.29e-07, - "calla": 2.29e-07, - "calvinists": 2.29e-07, - "cambodians": 2.29e-07, - "cantonal": 2.29e-07, - "caped": 2.29e-07, - "cardiologists": 2.29e-07, - "carpathian": 2.29e-07, - "cau": 2.29e-07, - "centralisation": 2.29e-07, - "cerebrovascular": 2.29e-07, - "ceuta": 2.29e-07, - "cgc": 2.29e-07, - "charades": 2.29e-07, - "charan": 2.29e-07, - "charlesworth": 2.29e-07, - "chatto": 2.29e-07, - "cherishes": 2.29e-07, - "choate": 2.29e-07, - "chol": 2.29e-07, - "chor": 2.29e-07, - "cielo": 2.29e-07, - "clarksons": 2.29e-07, - "claud": 2.29e-07, - "clitoral": 2.29e-07, - "clorox": 2.29e-07, - "cnd": 2.29e-07, - "cnrs": 2.29e-07, - "cobblers": 2.29e-07, - "cockerel": 2.29e-07, - "collabs": 2.29e-07, - "comely": 2.29e-07, - "commodores": 5.25e-08, - "comoros": 2.29e-07, - "compensations": 2.29e-07, - "conflating": 2.29e-07, - "conscientiously": 2.29e-07, - "coolie": 2.29e-07, - "cordero": 2.29e-07, - "coretta": 2.29e-07, - "corpora": 2.29e-07, - "corporatist": 2.29e-07, - "corsi": 2.29e-07, - "corte": 2.29e-07, - "cottle": 2.29e-07, - "cranford": 2.29e-07, - "crombie": 2.29e-07, - "cucamonga": 2.29e-07, - "cuvier": 2.29e-07, - "cyclotron": 2.29e-07, - "dabney": 2.29e-07, - "dacia": 2.29e-07, - "daisys": 2.29e-07, - "dalmatians": 2.29e-07, - "darkens": 2.29e-07, - "dasha": 2.29e-07, - "dayum": 2.29e-07, - "dazzles": 2.29e-07, - "decapitate": 2.29e-07, - "denby": 2.29e-07, - "derisive": 2.29e-07, - "desperado": 2.29e-07, - "dethrone": 2.29e-07, - "detonates": 2.29e-07, - "deviled": 2.29e-07, - "diamante": 2.29e-07, - "dianna": 2.29e-07, - "dimas": 2.29e-07, - "dinwiddie": 2.29e-07, - "distemper": 2.29e-07, - "distillate": 2.29e-07, - "domesticity": 2.29e-07, - "doria": 2.29e-07, - "dossiers": 2.29e-07, - "downpours": 2.29e-07, - "dravid": 2.29e-07, - "drumstick": 2.29e-07, - "dsr": 2.29e-07, - "dumbed": 2.29e-07, - "earbud": 2.29e-07, - "easternmost": 2.29e-07, - "edina": 2.29e-07, - "effingham": 2.29e-07, - "eggleston": 2.29e-07, - "eglinton": 2.29e-07, - "eisenstein": 2.29e-07, - "eleazar": 2.29e-07, - "electrify": 2.29e-07, - "emasculated": 2.29e-07, - "ephedrine": 2.29e-07, - "epitomizes": 2.29e-07, - "equifax": 2.29e-07, - "ero": 2.29e-07, - "esthetic": 2.29e-07, - "eudora": 2.29e-07, - "evesham": 2.29e-07, - "exmoor": 2.29e-07, - "expander": 2.29e-07, - "expansionism": 2.29e-07, - "ezio": 2.29e-07, - "faecal": 2.29e-07, - "fanon": 2.29e-07, - "faw": 2.29e-07, - "fdp": 2.29e-07, - "feder": 2.29e-07, - "fennell": 2.29e-07, - "fertilizing": 2.29e-07, - "fevered": 2.29e-07, - "finkel": 2.29e-07, - "flamini": 2.29e-07, - "flatmates": 2.29e-07, - "flattens": 2.29e-07, - "flava": 2.29e-07, - "flavouring": 2.29e-07, - "flurries": 2.29e-07, - "foodstuff": 2.29e-07, - "forney": 2.29e-07, - "foxnews": 2.29e-07, - "freckle": 2.29e-07, - "freckled": 2.29e-07, - "freddies": 2.29e-07, - "frightfully": 2.29e-07, - "fruitcake": 2.29e-07, - "fsh": 2.29e-07, - "fungicides": 2.29e-07, - "funke": 2.29e-07, - "furore": 2.29e-07, - "gadot": 2.29e-07, - "gaeta": 2.29e-07, - "gallaghers": 6.76e-08, - "gamboa": 2.29e-07, - "gana": 2.29e-07, - "ganache": 2.29e-07, - "gatos": 2.29e-07, - "gds": 2.29e-07, - "geoengineering": 2.29e-07, - "ghat": 2.29e-07, - "ghostface": 2.29e-07, - "gibby": 2.29e-07, - "glamping": 2.29e-07, - "gnosticism": 2.29e-07, - "goffin": 2.29e-07, - "gora": 2.29e-07, - "gracia": 2.29e-07, - "granularity": 2.29e-07, - "gregorys": 2.29e-07, - "grenadiers": 2.29e-07, - "grozny": 2.29e-07, - "grs": 2.29e-07, - "gtk": 2.29e-07, - "guk": 2.29e-07, - "hackman": 2.29e-07, - "halides": 2.29e-07, - "hallucinate": 2.29e-07, - "hanif": 2.29e-07, - "hattori": 2.29e-07, - "hbv": 2.29e-07, - "hdpe": 2.29e-07, - "headrest": 2.29e-07, - "heavies": 2.29e-07, - "heifers": 2.29e-07, - "heo": 2.29e-07, - "hermetically": 2.29e-07, - "heterozygous": 2.29e-07, - "higginbotham": 2.29e-07, - "hil": 2.29e-07, - "homilies": 2.29e-07, - "hoodlums": 2.29e-07, - "horry": 2.29e-07, - "houlihan": 2.29e-07, - "howlett": 2.29e-07, - "hulks": 1.41e-07, - "hydrants": 2.29e-07, - "hyeon": 2.29e-07, - "hysteresis": 2.29e-07, - "iim": 2.29e-07, - "iliac": 2.29e-07, - "impel": 2.29e-07, - "imperiled": 2.29e-07, - "impulsivity": 2.29e-07, - "imputed": 2.29e-07, - "incapacitate": 2.29e-07, - "inductor": 2.29e-07, - "infomercials": 2.29e-07, - "inger": 2.29e-07, - "inositol": 2.29e-07, - "inspite": 2.29e-07, - "insubstantial": 2.29e-07, - "intermingled": 2.29e-07, - "intertwining": 2.29e-07, - "interventionism": 2.29e-07, - "intraocular": 2.29e-07, - "ioi": 2.29e-07, - "ionia": 2.29e-07, - "iop": 2.29e-07, - "ipr": 2.29e-07, - "irredeemable": 2.29e-07, - "isf": 2.29e-07, - "isidro": 2.29e-07, - "isner": 2.29e-07, - "jahangir": 2.29e-07, - "jakub": 2.29e-07, - "jalalabad": 2.29e-07, - "janney": 2.29e-07, - "johar": 2.29e-07, - "joneses": 2.29e-07, - "jonsson": 2.29e-07, - "judes": 5.75e-08, - "juts": 2.29e-07, - "kaj": 2.29e-07, - "kapur": 2.29e-07, - "kashyap": 2.29e-07, - "kaspar": 2.29e-07, - "kawai": 2.29e-07, - "kays": 1.05e-07, - "kenzie": 2.29e-07, - "keyless": 2.29e-07, - "kieron": 2.29e-07, - "kilauea": 2.29e-07, - "kiley": 2.29e-07, - "kith": 2.29e-07, - "kootenay": 2.29e-07, - "kronor": 2.29e-07, - "kumari": 2.29e-07, - "kursk": 2.29e-07, - "lada": 2.29e-07, - "lafarge": 2.29e-07, - "lahm": 2.29e-07, - "lamarcus": 2.29e-07, - "languedoc": 2.29e-07, - "lattimore": 2.29e-07, - "leering": 2.29e-07, - "lehrer": 2.29e-07, - "lesbos": 2.29e-07, - "lessor": 2.29e-07, - "libelous": 2.29e-07, - "liberace": 2.29e-07, - "limon": 2.29e-07, - "lindstrom": 2.29e-07, - "linklater": 2.29e-07, - "lipscomb": 2.29e-07, - "litton": 2.29e-07, - "lizs": 2.29e-07, - "lochte": 2.29e-07, - "lordships": 2.29e-07, - "loyd": 2.29e-07, - "luau": 2.29e-07, - "luff": 2.29e-07, - "lunging": 2.29e-07, - "lustig": 2.29e-07, - "magnusson": 2.29e-07, - "malts": 2.29e-07, - "mamadou": 2.29e-07, - "maneuverable": 2.29e-07, - "mangold": 2.29e-07, - "manicures": 2.29e-07, - "mansur": 2.29e-07, - "marbury": 2.29e-07, - "marianas": 2.29e-07, - "mariupol": 2.29e-07, - "marketwatch": 2.29e-07, - "marvell": 2.29e-07, - "maslin": 2.29e-07, - "matheny": 2.29e-07, - "mathieson": 2.29e-07, - "mathison": 2.29e-07, - "matriculated": 2.29e-07, - "mauling": 2.29e-07, - "mayas": 9.77e-08, - "mcardle": 2.29e-07, - "mccrea": 2.29e-07, - "mcgrady": 2.29e-07, - "mcquaid": 2.29e-07, - "mdf": 2.29e-07, - "menachem": 2.29e-07, - "mencken": 2.29e-07, - "menstruating": 2.29e-07, - "merica": 2.29e-07, - "messe": 2.29e-07, - "methylene": 2.29e-07, - "michaelis": 2.29e-07, - "mikkelsen": 2.29e-07, - "mims": 2.29e-07, - "minaret": 2.29e-07, - "minho": 2.29e-07, - "minter": 2.29e-07, - "minuet": 2.29e-07, - "misadventure": 2.29e-07, - "mishima": 2.29e-07, - "missin": 2.29e-07, - "mitchum": 2.29e-07, - "mitigates": 2.29e-07, - "mixon": 2.29e-07, - "mobilising": 2.29e-07, - "moffatt": 2.29e-07, - "moisturized": 2.29e-07, - "monolingual": 2.29e-07, - "monopolized": 2.29e-07, - "monta": 2.29e-07, - "morass": 2.29e-07, - "morena": 2.29e-07, - "mozambican": 2.29e-07, - "mrnas": 2.29e-07, - "msnbcs": 2.29e-07, - "mtp": 2.29e-07, - "mughals": 2.29e-07, - "mul": 2.29e-07, - "myr": 2.29e-07, - "mystifying": 2.29e-07, - "nagisa": 2.29e-07, - "naivete": 2.29e-07, - "nanosecond": 2.29e-07, - "nathanael": 2.29e-07, - "natick": 2.29e-07, - "ndi": 2.29e-07, - "neuropsychology": 2.29e-07, - "newshour": 2.29e-07, - "nfp": 2.29e-07, - "nicklas": 2.29e-07, - "nielson": 2.29e-07, - "nightline": 2.29e-07, - "nihilist": 2.29e-07, - "nish": 2.29e-07, - "nlt": 2.29e-07, - "noctis": 2.29e-07, - "normie": 2.29e-07, - "nyongo": 2.29e-07, - "oases": 2.29e-07, - "oiler": 2.29e-07, - "oly": 2.29e-07, - "onda": 2.29e-07, - "onsen": 2.29e-07, - "ook": 2.29e-07, - "operetta": 2.29e-07, - "ornstein": 2.29e-07, - "osuna": 2.29e-07, - "otome": 2.29e-07, - "otra": 2.29e-07, - "outsmarted": 2.29e-07, - "overexcited": 2.29e-07, - "overpay": 2.29e-07, - "overshadows": 2.29e-07, - "overviews": 2.29e-07, - "ovulating": 2.29e-07, - "oxfords": 1.82e-07, - "oxidize": 2.29e-07, - "padawan": 2.29e-07, - "paedophilia": 2.29e-07, - "painlessly": 2.29e-07, - "pams": 2.29e-07, - "pangolin": 2.29e-07, - "paramour": 2.29e-07, - "parried": 2.29e-07, - "partiality": 2.29e-07, - "pastas": 2.29e-07, - "patronised": 2.29e-07, - "pdi": 2.29e-07, - "pella": 2.29e-07, - "peppery": 2.29e-07, - "perelman": 2.29e-07, - "perjured": 2.29e-07, - "personages": 2.29e-07, - "persuasively": 2.29e-07, - "pgi": 2.29e-07, - "pharoah": 2.29e-07, - "phc": 2.29e-07, - "phoebus": 2.29e-07, - "phylum": 2.29e-07, - "pianoforte": 2.29e-07, - "pincer": 2.29e-07, - "planer": 2.29e-07, - "plaudits": 2.29e-07, - "polyamory": 2.29e-07, - "poppe": 2.29e-07, - "porque": 2.29e-07, - "postpones": 2.29e-07, - "posttraumatic": 2.29e-07, - "potteries": 2.29e-07, - "powerpuff": 2.29e-07, - "prd": 2.29e-07, - "pressman": 2.29e-07, - "principia": 2.29e-07, - "pueblos": 2.29e-07, - "puncturing": 2.29e-07, - "qiang": 2.29e-07, - "quarreling": 2.29e-07, - "quayside": 2.29e-07, - "quel": 2.29e-07, - "questing": 2.29e-07, - "quine": 2.29e-07, - "quintero": 2.29e-07, - "rationalise": 2.29e-07, - "ratliff": 2.29e-07, - "raye": 2.29e-07, - "razorback": 2.29e-07, - "reassessed": 2.29e-07, - "redecorated": 2.29e-07, - "redeployment": 2.29e-07, - "refocused": 2.29e-07, - "reiko": 2.29e-07, - "reissues": 2.29e-07, - "remorseless": 2.29e-07, - "reorder": 2.29e-07, - "rescinding": 2.29e-07, - "retransmission": 2.29e-07, - "reuss": 2.29e-07, - "revocable": 2.29e-07, - "revolutionise": 2.29e-07, - "rewinding": 2.29e-07, - "ridicules": 2.29e-07, - "riedel": 2.29e-07, - "rimini": 2.29e-07, - "rng": 2.29e-07, - "robbies": 2.29e-07, - "rodwell": 2.29e-07, - "rolle": 2.29e-07, - "rosacea": 2.29e-07, - "rov": 2.29e-07, - "ruffian": 2.29e-07, - "runyon": 2.29e-07, - "rustled": 2.29e-07, - "sacre": 2.29e-07, - "sakhalin": 2.29e-07, - "sampras": 2.29e-07, - "sanhedrin": 2.29e-07, - "sante": 2.29e-07, - "santini": 2.29e-07, - "sapped": 2.29e-07, - "sartorial": 2.29e-07, - "satu": 2.29e-07, - "sauvage": 2.29e-07, - "scamper": 2.29e-07, - "sce": 2.29e-07, - "schiffer": 2.29e-07, - "schiphol": 2.29e-07, - "schooners": 2.29e-07, - "schweiz": 2.29e-07, - "scoped": 2.29e-07, - "scorpius": 2.29e-07, - "screencap": 2.29e-07, - "scruggs": 2.29e-07, - "seaborne": 2.29e-07, - "seacoast": 2.29e-07, - "seagrass": 2.29e-07, - "seaworthy": 2.29e-07, - "seh": 2.29e-07, - "semyon": 2.29e-07, - "sepa": 2.29e-07, - "sepang": 2.29e-07, - "serenaded": 2.29e-07, - "sergi": 2.29e-07, - "sess": 2.29e-07, - "sff": 2.29e-07, - "sgi": 2.29e-07, - "shagged": 2.29e-07, - "shallot": 2.29e-07, - "shebang": 2.29e-07, - "sherborne": 2.29e-07, - "sica": 2.29e-07, - "sider": 2.29e-07, - "signe": 2.29e-07, - "silvas": 2.29e-07, - "sinkholes": 2.29e-07, - "skateboarders": 2.29e-07, - "skybox": 2.29e-07, - "slaughters": 2.29e-07, - "slicks": 2.29e-07, - "slinger": 2.29e-07, - "slotting": 2.29e-07, - "snarls": 2.29e-07, - "snowmobiles": 2.29e-07, - "snuggly": 2.29e-07, - "soler": 2.29e-07, - "soni": 2.29e-07, - "sonoran": 2.29e-07, - "speakerphone": 2.29e-07, - "sph": 2.29e-07, - "spinoffs": 2.29e-07, - "spivey": 2.29e-07, - "spss": 2.29e-07, - "spurn": 2.29e-07, - "squashing": 2.29e-07, - "starwood": 2.29e-07, - "steadied": 2.29e-07, - "stiffening": 2.29e-07, - "stilwell": 2.29e-07, - "strathmore": 2.29e-07, - "stroman": 2.29e-07, - "strychnine": 2.29e-07, - "subsidise": 2.29e-07, - "suckered": 2.29e-07, - "sula": 2.29e-07, - "sulphuric": 2.29e-07, - "sunburnt": 2.29e-07, - "sunda": 2.29e-07, - "sunrises": 2.29e-07, - "supercharge": 2.29e-07, - "surfboards": 2.29e-07, - "swarthmore": 2.29e-07, - "symbian": 2.29e-07, - "sympathisers": 2.29e-07, - "tabbed": 2.29e-07, - "tabula": 2.29e-07, - "tactfully": 2.29e-07, - "talal": 2.29e-07, - "talismans": 2.29e-07, - "tamaki": 2.29e-07, - "tamaulipas": 2.29e-07, - "tandoori": 2.29e-07, - "tankard": 2.29e-07, - "taras": 2.14e-07, - "tarpon": 2.29e-07, - "tarps": 2.29e-07, - "tce": 2.29e-07, - "tej": 2.29e-07, - "tendinitis": 2.29e-07, - "tenors": 2.29e-07, - "terrarium": 2.29e-07, - "tetrahedral": 2.29e-07, - "thespian": 2.29e-07, - "thibodeau": 2.29e-07, - "thucydides": 2.29e-07, - "thusly": 2.29e-07, - "tilling": 2.29e-07, - "tinas": 2.29e-07, - "tinkle": 2.29e-07, - "tld": 2.29e-07, - "tobys": 2.29e-07, - "tocqueville": 2.29e-07, - "tortoiseshell": 2.29e-07, - "toucan": 2.29e-07, - "transpire": 2.29e-07, - "trifles": 2.29e-07, - "triplicate": 2.29e-07, - "trl": 2.29e-07, - "tuo": 2.29e-07, - "ture": 2.29e-07, - "umbria": 2.29e-07, - "unashamedly": 2.29e-07, - "unassigned": 2.29e-07, - "unavoidably": 2.29e-07, - "uncompressed": 2.29e-07, - "underperform": 2.29e-07, - "unidos": 2.29e-07, - "uninvolved": 2.29e-07, - "unironically": 2.29e-07, - "unmolested": 2.29e-07, - "unsanctioned": 2.29e-07, - "unthinking": 2.29e-07, - "vainly": 2.29e-07, - "vala": 2.29e-07, - "vandalizing": 2.29e-07, - "vesey": 2.29e-07, - "vics": 1.45e-07, - "vitor": 2.29e-07, - "vixens": 2.29e-07, - "wagered": 2.29e-07, - "wakefulness": 2.29e-07, - "walworth": 2.29e-07, - "wareham": 2.29e-07, - "warhols": 5.75e-08, - "wasim": 2.29e-07, - "watercourses": 2.29e-07, - "weise": 2.29e-07, - "welle": 2.29e-07, - "werribee": 2.29e-07, - "whaler": 2.29e-07, - "whatevs": 2.29e-07, - "wheelock": 2.29e-07, - "whitehorse": 2.29e-07, - "whitelist": 2.29e-07, - "wideband": 2.29e-07, - "widowers": 2.29e-07, - "wigmore": 2.29e-07, - "wintergreen": 2.29e-07, - "wird": 2.29e-07, - "wmo": 2.29e-07, - "wrung": 2.29e-07, - "wyandotte": 2.29e-07, - "xg": 2.29e-07, - "yamuna": 2.29e-07, - "yawned": 2.29e-07, - "youn": 2.29e-07, - "zaki": 2.29e-07, - "zico": 2.29e-07, - "zilla": 2.29e-07, - "zoroastrian": 2.29e-07, - "zune": 2.29e-07, - "aad": 2.24e-07, - "aaj": 2.24e-07, - "abutment": 2.24e-07, - "accusatory": 2.24e-07, - "adjuncts": 2.24e-07, - "advani": 2.24e-07, - "aeruginosa": 2.24e-07, - "afflicting": 2.24e-07, - "afrin": 2.24e-07, - "agincourt": 2.24e-07, - "agron": 2.24e-07, - "agus": 2.24e-07, - "ajc": 2.24e-07, - "akio": 2.24e-07, - "akkadian": 2.24e-07, - "akwa": 2.24e-07, - "albanese": 2.24e-07, - "albers": 2.24e-07, - "aleister": 2.24e-07, - "alek": 2.24e-07, - "alg": 2.24e-07, - "alittle": 2.24e-07, - "allegories": 2.24e-07, - "anf": 2.24e-07, - "antiquaries": 2.24e-07, - "antiquary": 2.24e-07, - "applejack": 2.24e-07, - "apprehensions": 2.24e-07, - "areola": 2.24e-07, - "argonauts": 2.24e-07, - "armrest": 2.24e-07, - "arrieta": 2.24e-07, - "artois": 2.24e-07, - "ashkelon": 2.24e-07, - "ashmore": 2.24e-07, - "athletically": 2.24e-07, - "attenuate": 2.24e-07, - "autobot": 2.24e-07, - "ayub": 2.24e-07, - "bagdad": 2.24e-07, - "bagpipe": 2.24e-07, - "baguettes": 2.24e-07, - "ballina": 2.24e-07, - "barbera": 2.24e-07, - "barreling": 2.24e-07, - "basle": 2.24e-07, - "bateson": 2.24e-07, - "bauchi": 2.24e-07, - "bedsheets": 2.24e-07, - "beheadings": 2.24e-07, - "bellowed": 2.24e-07, - "bemoaning": 2.24e-07, - "benedetto": 2.24e-07, - "benedicts": 2.24e-07, - "berkeleys": 2.24e-07, - "betrayer": 2.24e-07, - "bettencourt": 2.24e-07, - "bibb": 2.24e-07, - "biblioteca": 2.24e-07, - "bifurcated": 2.24e-07, - "billets": 2.24e-07, - "biofeedback": 2.24e-07, - "bjs": 2.19e-07, - "blinker": 2.24e-07, - "blockchains": 2.24e-07, - "blundering": 2.24e-07, - "boh": 2.24e-07, - "bonifacio": 2.24e-07, - "bonilla": 2.24e-07, - "boohoo": 2.24e-07, - "bookcases": 2.24e-07, - "bookends": 2.24e-07, - "boorish": 2.24e-07, - "borderland": 2.24e-07, - "bortles": 2.24e-07, - "bougainville": 2.24e-07, - "bradstreet": 2.24e-07, - "brainpower": 2.24e-07, - "brandished": 2.24e-07, - "brauer": 2.24e-07, - "brier": 2.24e-07, - "brigands": 2.24e-07, - "britches": 2.24e-07, - "brunet": 2.24e-07, - "brunton": 2.24e-07, - "burdening": 2.24e-07, - "burro": 2.24e-07, - "buyin": 2.24e-07, - "cadogan": 2.24e-07, - "campania": 2.24e-07, - "canaria": 2.24e-07, - "caning": 2.24e-07, - "cannock": 2.24e-07, - "capel": 2.24e-07, - "carryover": 2.24e-07, - "cartwheels": 2.24e-07, - "cashes": 2.24e-07, - "cassio": 2.24e-07, - "castaways": 2.24e-07, - "catelyn": 2.24e-07, - "cbbc": 2.24e-07, - "cbm": 2.24e-07, - "cdg": 2.24e-07, - "centrists": 2.24e-07, - "chacha": 2.24e-07, - "changin": 2.24e-07, - "charcuterie": 2.24e-07, - "chequers": 2.24e-07, - "chidambaram": 2.24e-07, - "chik": 2.24e-07, - "chinos": 2.24e-07, - "cholo": 2.24e-07, - "choreograph": 2.24e-07, - "christmastime": 2.24e-07, - "churkin": 2.24e-07, - "clas": 2.24e-07, - "cletus": 2.24e-07, - "cleverer": 2.24e-07, - "cliched": 2.24e-07, - "clichy": 2.24e-07, - "clincher": 2.24e-07, - "cloture": 2.24e-07, - "clovers": 2.24e-07, - "clowes": 2.24e-07, - "clwyd": 2.24e-07, - "cmr": 2.24e-07, - "coho": 2.24e-07, - "coldwell": 2.24e-07, - "colins": 2.24e-07, - "collegial": 2.24e-07, - "colonna": 2.24e-07, - "colourpop": 2.24e-07, - "comas": 2.24e-07, - "comeys": 2.24e-07, - "comprehended": 2.24e-07, - "concha": 2.24e-07, - "condors": 2.24e-07, - "confides": 2.24e-07, - "constrains": 2.24e-07, - "constructivism": 2.24e-07, - "cooch": 2.24e-07, - "coppa": 2.24e-07, - "cornel": 2.24e-07, - "cornyn": 2.24e-07, - "corroborates": 2.24e-07, - "coty": 2.24e-07, - "coulee": 2.24e-07, - "counterfeits": 2.24e-07, - "cowdenbeath": 2.24e-07, - "cowgirls": 2.24e-07, - "crea": 2.24e-07, - "creaky": 2.24e-07, - "crowdsourced": 2.24e-07, - "crystallize": 2.24e-07, - "csb": 2.24e-07, - "cunha": 2.24e-07, - "cunningly": 2.24e-07, - "cura": 2.24e-07, - "curried": 2.24e-07, - "cva": 2.24e-07, - "cytotoxicity": 2.24e-07, - "davidsons": 2.24e-07, - "davinci": 2.24e-07, - "dawa": 2.24e-07, - "dct": 2.24e-07, - "deaconess": 2.24e-07, - "dearie": 2.24e-07, - "debi": 2.24e-07, - "deceives": 2.24e-07, - "decimation": 2.24e-07, - "decriminalized": 2.24e-07, - "deeded": 2.24e-07, - "defra": 2.24e-07, - "deluding": 2.24e-07, - "dennett": 2.24e-07, - "deportivo": 2.24e-07, - "detainment": 2.24e-07, - "deut": 2.24e-07, - "devastatingly": 2.24e-07, - "devolves": 2.24e-07, - "dingwall": 2.24e-07, - "diocletian": 2.24e-07, - "disassociate": 2.24e-07, - "disdainful": 2.24e-07, - "dishonestly": 2.24e-07, - "disinfectants": 2.24e-07, - "diz": 2.24e-07, - "dmr": 2.24e-07, - "doble": 2.24e-07, - "doling": 2.24e-07, - "dotson": 2.24e-07, - "doty": 2.24e-07, - "downloader": 2.24e-07, - "dravidian": 2.24e-07, - "dreamliner": 2.24e-07, - "driller": 2.24e-07, - "drouin": 2.24e-07, - "drumbeat": 2.24e-07, - "dubbo": 2.24e-07, - "dunns": 2.24e-07, - "educationally": 2.24e-07, - "ees": 1e-07, - "ehs": 2.24e-07, - "eic": 2.24e-07, - "eld": 2.24e-07, - "electioneering": 2.24e-07, - "elim": 2.24e-07, - "elland": 2.24e-07, - "emmaus": 2.24e-07, - "emmerich": 2.24e-07, - "emplacement": 2.24e-07, - "emulsions": 2.24e-07, - "enchilada": 2.24e-07, - "endear": 2.24e-07, - "enrolls": 2.24e-07, - "equilateral": 2.24e-07, - "escalante": 2.24e-07, - "evanescence": 2.24e-07, - "evangelicalism": 2.24e-07, - "exhumation": 2.24e-07, - "experimenters": 2.24e-07, - "expletives": 2.24e-07, - "eyal": 2.24e-07, - "eyeshadows": 2.24e-07, - "fabien": 2.24e-07, - "faeries": 2.24e-07, - "failsafe": 2.24e-07, - "farmhouses": 2.24e-07, - "fatass": 2.24e-07, - "fattah": 2.24e-07, - "featurette": 2.24e-07, - "feedbacks": 2.24e-07, - "ferc": 2.24e-07, - "ferengi": 2.24e-07, - "festus": 2.24e-07, - "fgs": 2.24e-07, - "fiedler": 2.24e-07, - "fijians": 2.24e-07, - "fisheye": 2.24e-07, - "flatline": 2.24e-07, - "flaubert": 2.24e-07, - "flitting": 2.24e-07, - "flycatcher": 2.24e-07, - "fnaf": 2.24e-07, - "fokker": 2.24e-07, - "fom": 2.24e-07, - "foodborne": 2.24e-07, - "frac": 2.24e-07, - "fram": 2.24e-07, - "freire": 2.24e-07, - "friedlander": 2.24e-07, - "frontispiece": 2.24e-07, - "fullmetal": 2.24e-07, - "fullscreen": 2.24e-07, - "gagne": 2.24e-07, - "galina": 2.24e-07, - "gallantly": 2.24e-07, - "garros": 2.24e-07, - "genealogist": 2.24e-07, - "gershon": 2.24e-07, - "ges": 1.86e-07, - "gic": 2.24e-07, - "gillibrand": 2.24e-07, - "gilligans": 2.24e-07, - "giri": 2.24e-07, - "glanville": 2.24e-07, - "gnashing": 2.24e-07, - "gnawed": 2.24e-07, - "goe": 2.24e-07, - "goldy": 2.24e-07, - "gorse": 2.24e-07, - "gourds": 2.24e-07, - "granddaddy": 2.24e-07, - "grassed": 2.24e-07, - "gratia": 2.24e-07, - "greendale": 2.24e-07, - "grenier": 2.24e-07, - "greyjoy": 2.24e-07, - "grotesquely": 2.24e-07, - "grungy": 2.24e-07, - "gunsmith": 2.24e-07, - "gushes": 2.24e-07, - "hafez": 2.24e-07, - "hagel": 2.24e-07, - "hairbrush": 2.24e-07, - "hallucinogens": 2.24e-07, - "hamstrung": 2.24e-07, - "handrail": 2.24e-07, - "harboured": 2.24e-07, - "hardliners": 2.24e-07, - "hargrave": 2.24e-07, - "hartnett": 2.24e-07, - "harvie": 2.24e-07, - "havasu": 2.24e-07, - "hawick": 2.24e-07, - "hbc": 2.24e-07, - "hdi": 2.24e-07, - "helio": 2.24e-07, - "henrico": 2.24e-07, - "henriette": 2.24e-07, - "herbalist": 2.24e-07, - "heritability": 2.24e-07, - "herkimer": 2.24e-07, - "herve": 2.24e-07, - "hesitancy": 2.24e-07, - "hickson": 2.24e-07, - "hieroglyphic": 2.24e-07, - "hilde": 2.24e-07, - "hindmarsh": 2.24e-07, - "hispaniola": 2.24e-07, - "hobbling": 2.24e-07, - "hodgkinson": 2.24e-07, - "hoey": 2.24e-07, - "holodeck": 2.24e-07, - "hpd": 2.24e-07, - "humanizing": 2.24e-07, - "hydroponics": 2.24e-07, - "ihc": 2.24e-07, - "iknow": 2.24e-07, - "ilham": 2.24e-07, - "ilona": 2.24e-07, - "imaginings": 2.24e-07, - "imm": 2.24e-07, - "imminently": 2.24e-07, - "immobility": 2.24e-07, - "immobilize": 2.24e-07, - "imperator": 2.24e-07, - "imperials": 2.24e-07, - "impermissible": 2.24e-07, - "improvisations": 2.24e-07, - "imprudent": 2.24e-07, - "incoherently": 2.24e-07, - "indentations": 2.24e-07, - "independant": 2.24e-07, - "indu": 2.24e-07, - "inhalers": 2.24e-07, - "interdict": 2.24e-07, - "interjected": 2.24e-07, - "interrogative": 2.24e-07, - "intransigence": 2.24e-07, - "ipf": 2.24e-07, - "irr": 2.24e-07, - "islip": 2.24e-07, - "jackasses": 2.24e-07, - "jarrah": 2.24e-07, - "jeezy": 2.24e-07, - "jef": 2.24e-07, - "jesper": 2.24e-07, - "joko": 2.24e-07, - "jonestown": 2.24e-07, - "joyously": 2.24e-07, - "jsut": 2.24e-07, - "kagura": 2.24e-07, - "kamel": 2.24e-07, - "karine": 2.24e-07, - "karlie": 2.24e-07, - "kashgar": 2.24e-07, - "kazoo": 2.24e-07, - "kbps": 2.24e-07, - "kemba": 2.24e-07, - "kenley": 2.24e-07, - "ketch": 2.24e-07, - "kettlebell": 2.24e-07, - "kingsford": 2.24e-07, - "klum": 2.24e-07, - "knocker": 2.24e-07, - "kosta": 2.24e-07, - "kroenke": 2.24e-07, - "kross": 2.24e-07, - "ksu": 2.24e-07, - "kuang": 2.24e-07, - "kubricks": 2.24e-07, - "kuti": 2.24e-07, - "kylies": 2.24e-07, - "landholders": 2.24e-07, - "latins": 2.24e-07, - "lcp": 2.24e-07, - "leichhardt": 2.24e-07, - "lettin": 2.24e-07, - "lgb": 2.24e-07, - "licensor": 2.24e-07, - "lifespans": 2.24e-07, - "lindsays": 2.24e-07, - "linlithgow": 2.24e-07, - "linotype": 2.24e-07, - "listenin": 2.24e-07, - "llorente": 2.24e-07, - "loafing": 2.24e-07, - "loners": 2.24e-07, - "longmont": 2.24e-07, - "lossy": 2.24e-07, - "lovelies": 2.24e-07, - "lpn": 2.24e-07, - "lta": 2.24e-07, - "lukashenko": 2.24e-07, - "lumping": 2.24e-07, - "lusk": 2.24e-07, - "lutyens": 2.24e-07, - "luxuriant": 2.24e-07, - "macduff": 2.24e-07, - "maclaine": 2.24e-07, - "majesties": 2.24e-07, - "malarial": 2.24e-07, - "malmesbury": 2.24e-07, - "manville": 2.24e-07, - "margolis": 2.24e-07, - "marlena": 2.24e-07, - "masseur": 2.24e-07, - "mathura": 2.24e-07, - "matos": 2.24e-07, - "matsuda": 2.24e-07, - "mauer": 2.24e-07, - "mccandless": 2.24e-07, - "mechs": 2.24e-07, - "meigs": 2.24e-07, - "mfi": 2.24e-07, - "mfr": 2.24e-07, - "mgt": 2.24e-07, - "midrash": 2.24e-07, - "mies": 2.24e-07, - "mikaela": 2.24e-07, - "moistened": 2.24e-07, - "monad": 2.24e-07, - "moneyball": 2.24e-07, - "moolah": 2.24e-07, - "mordaunt": 2.24e-07, - "morita": 2.24e-07, - "moskowitz": 2.24e-07, - "mosman": 2.24e-07, - "moy": 2.24e-07, - "msft": 2.24e-07, - "mth": 2.24e-07, - "multiyear": 2.24e-07, - "nabisco": 2.24e-07, - "nadh": 2.24e-07, - "nephi": 2.24e-07, - "nesta": 2.24e-07, - "neuropathic": 2.24e-07, - "neuropsychiatric": 2.24e-07, - "nevermore": 2.24e-07, - "newburyport": 2.24e-07, - "newspaperman": 2.24e-07, - "niceness": 2.24e-07, - "nicolette": 2.24e-07, - "noch": 2.24e-07, - "nonwhite": 2.24e-07, - "norden": 2.24e-07, - "noticias": 2.24e-07, - "obscura": 2.24e-07, - "obvs": 2.24e-07, - "oesophagus": 2.24e-07, - "offa": 2.24e-07, - "offical": 2.24e-07, - "olof": 2.24e-07, - "omicron": 2.24e-07, - "oompa": 2.24e-07, - "orbison": 2.24e-07, - "oriole": 2.24e-07, - "orman": 2.24e-07, - "osbornes": 2.24e-07, - "overconfidence": 2.24e-07, - "overdrawn": 2.24e-07, - "oya": 2.24e-07, - "pago": 2.24e-07, - "pagodas": 2.24e-07, - "palins": 2.24e-07, - "parkhurst": 2.24e-07, - "patois": 2.24e-07, - "paywall": 2.24e-07, - "pentland": 2.24e-07, - "perimeters": 2.24e-07, - "perrine": 2.24e-07, - "phantasy": 2.24e-07, - "phlox": 2.24e-07, - "pickaxe": 2.24e-07, - "picnicking": 2.24e-07, - "picts": 2.24e-07, - "piggott": 2.24e-07, - "pish": 2.24e-07, - "pitcairn": 2.24e-07, - "playpen": 2.24e-07, - "plm": 2.24e-07, - "poignancy": 2.24e-07, - "pollux": 2.24e-07, - "pottsville": 2.24e-07, - "powerline": 2.24e-07, - "praetorian": 2.24e-07, - "pranked": 2.24e-07, - "preempted": 2.24e-07, - "pretax": 2.24e-07, - "primera": 2.24e-07, - "procedurally": 2.24e-07, - "proclivities": 2.24e-07, - "prowse": 2.24e-07, - "pso": 2.24e-07, - "pula": 2.24e-07, - "pupae": 2.24e-07, - "pursuer": 2.24e-07, - "putsch": 2.24e-07, - "quadrature": 2.24e-07, - "quadriplegic": 2.24e-07, - "quasars": 2.24e-07, - "quelling": 2.24e-07, - "quiescent": 2.24e-07, - "quintessence": 2.24e-07, - "quizzing": 2.24e-07, - "qumran": 2.24e-07, - "quod": 2.24e-07, - "rabb": 2.24e-07, - "rakitic": 2.24e-07, - "rando": 2.24e-07, - "raritan": 2.24e-07, - "rashi": 2.24e-07, - "reappearing": 2.24e-07, - "rearrangements": 2.24e-07, - "rearward": 2.24e-07, - "rebbe": 2.24e-07, - "recalibrate": 2.24e-07, - "redbull": 2.24e-07, - "redecorate": 2.24e-07, - "redefines": 2.24e-07, - "redeploy": 2.24e-07, - "redheaded": 2.24e-07, - "redick": 2.24e-07, - "reeking": 2.24e-07, - "reem": 2.24e-07, - "reexamine": 2.24e-07, - "relishes": 2.24e-07, - "resubmit": 2.24e-07, - "resveratrol": 2.24e-07, - "retrovirus": 2.24e-07, - "revises": 2.24e-07, - "ribcage": 2.24e-07, - "ribosomes": 2.24e-07, - "rideau": 2.24e-07, - "ringling": 2.24e-07, - "rmc": 2.24e-07, - "roadsides": 2.24e-07, - "roadtrip": 2.24e-07, - "rocher": 2.24e-07, - "rochford": 2.24e-07, - "rosies": 2.24e-07, - "rotorua": 2.24e-07, - "rou": 2.24e-07, - "rudest": 2.24e-07, - "rudiments": 2.24e-07, - "ruffin": 2.24e-07, - "runcorn": 2.24e-07, - "rupiah": 2.24e-07, - "sabc": 2.24e-07, - "sabi": 2.24e-07, - "sacrum": 2.24e-07, - "safran": 2.24e-07, - "sandys": 2.19e-07, - "sanji": 2.24e-07, - "sapping": 2.24e-07, - "saruman": 2.24e-07, - "sawtooth": 2.24e-07, - "sayyaf": 2.24e-07, - "scarsdale": 2.24e-07, - "scram": 2.24e-07, - "screwdrivers": 2.24e-07, - "scrubbers": 2.24e-07, - "seahawk": 2.24e-07, - "seance": 2.24e-07, - "seascape": 2.24e-07, - "sebastopol": 2.24e-07, - "seducer": 2.24e-07, - "selectmen": 2.24e-07, - "senders": 8.32e-08, - "sennheiser": 2.24e-07, - "septal": 2.24e-07, - "serially": 2.24e-07, - "seve": 2.24e-07, - "severs": 2.24e-07, - "sevier": 2.24e-07, - "sexing": 2.24e-07, - "shamus": 2.24e-07, - "shemales": 2.24e-07, - "sherrill": 2.24e-07, - "shoelace": 2.24e-07, - "showrunners": 2.24e-07, - "shrieked": 2.24e-07, - "silencers": 2.24e-07, - "skylines": 2.24e-07, - "slat": 2.24e-07, - "slugged": 2.24e-07, - "smudges": 2.24e-07, - "snatcher": 2.24e-07, - "snatchers": 2.24e-07, - "snipped": 2.24e-07, - "snopes": 2.24e-07, - "softie": 2.24e-07, - "sokka": 2.24e-07, - "souk": 2.24e-07, - "sours": 2.24e-07, - "spearing": 2.24e-07, - "spiritus": 2.24e-07, - "spoilage": 2.24e-07, - "sputum": 2.24e-07, - "squelch": 2.24e-07, - "stacker": 2.24e-07, - "stallings": 2.24e-07, - "starwars": 2.24e-07, - "statuettes": 2.24e-07, - "stilton": 2.24e-07, - "stinkin": 2.24e-07, - "stockbrokers": 2.24e-07, - "stonewalling": 2.24e-07, - "stoppard": 2.24e-07, - "stor": 2.24e-07, - "storekeeper": 2.24e-07, - "stowell": 2.24e-07, - "streetlight": 2.24e-07, - "streetwise": 2.24e-07, - "strix": 2.24e-07, - "studiously": 2.24e-07, - "subcategories": 2.24e-07, - "submariner": 2.24e-07, - "sunfish": 2.24e-07, - "superhighway": 2.24e-07, - "swimmingly": 2.24e-07, - "sylar": 2.24e-07, - "synods": 2.24e-07, - "synovial": 2.24e-07, - "tchalla": 2.24e-07, - "taek": 2.24e-07, - "tain": 2.24e-07, - "tamura": 2.24e-07, - "taranaki": 2.24e-07, - "tartare": 2.24e-07, - "taskbar": 2.24e-07, - "tatooine": 2.24e-07, - "teatime": 2.24e-07, - "telekinetic": 2.24e-07, - "thein": 2.24e-07, - "thomsons": 2.24e-07, - "thronged": 2.24e-07, - "ticonderoga": 2.24e-07, - "tiebreak": 2.24e-07, - "tiempo": 2.24e-07, - "tillage": 2.24e-07, - "timidly": 2.24e-07, - "titling": 2.24e-07, - "toei": 2.24e-07, - "tolled": 2.24e-07, - "tonka": 2.24e-07, - "tonsil": 2.24e-07, - "touchline": 2.24e-07, - "tracys": 2.24e-07, - "tranquilizers": 2.24e-07, - "transept": 2.24e-07, - "trenchant": 2.24e-07, - "tress": 2.24e-07, - "trilby": 2.24e-07, - "tuf": 2.24e-07, - "tumi": 2.24e-07, - "tunstall": 2.24e-07, - "turbocharger": 2.24e-07, - "tynan": 2.24e-07, - "ucp": 2.24e-07, - "ukips": 2.24e-07, - "ulan": 2.24e-07, - "ulna": 2.24e-07, - "unacknowledged": 2.24e-07, - "uncollected": 2.24e-07, - "uncompleted": 2.24e-07, - "uncontroversial": 2.24e-07, - "uncritically": 2.24e-07, - "undertakers": 1.23e-07, - "undervalue": 2.24e-07, - "unforeseeable": 2.24e-07, - "unperturbed": 2.24e-07, - "upstage": 2.24e-07, - "uq": 2.24e-07, - "utm": 2.24e-07, - "uvb": 2.24e-07, - "vajpayee": 2.24e-07, - "varys": 2.24e-07, - "vibratory": 2.24e-07, - "vikki": 2.24e-07, - "vill": 2.24e-07, - "vinay": 2.24e-07, - "vinces": 2.24e-07, - "violator": 2.24e-07, - "violette": 2.24e-07, - "visakhapatnam": 2.24e-07, - "viscera": 2.24e-07, - "volodymyr": 2.24e-07, - "waaaaay": 2.24e-07, - "waif": 2.24e-07, - "waives": 2.24e-07, - "warpath": 2.24e-07, - "warrnambool": 2.24e-07, - "watercourse": 2.24e-07, - "weeb": 2.24e-07, - "wef": 2.24e-07, - "weissman": 2.24e-07, - "wellingtons": 1.17e-07, - "westmorland": 2.24e-07, - "westover": 2.24e-07, - "wgbh": 2.24e-07, - "wgc": 2.24e-07, - "wiese": 2.24e-07, - "wilmore": 2.24e-07, - "wilts": 2.24e-07, - "wipo": 2.24e-07, - "woodys": 2.24e-07, - "woolworth": 2.24e-07, - "wou": 2.24e-07, - "wuz": 2.24e-07, - "xabi": 2.24e-07, - "xen": 2.24e-07, - "yami": 2.24e-07, - "yellowknife": 2.24e-07, - "yemenis": 2.24e-07, - "yorkie": 2.24e-07, - "yousuf": 2.24e-07, - "yuji": 2.24e-07, - "yukio": 2.24e-07, - "zai": 2.24e-07, - "zf": 2.24e-07, - "zhivago": 2.24e-07, - "zohar": 2.24e-07, - "zygote": 2.24e-07, - "abad": 2.19e-07, - "acai": 2.19e-07, - "accoutrements": 2.19e-07, - "acrimony": 2.19e-07, - "addressee": 2.19e-07, - "adenine": 2.19e-07, - "adu": 2.19e-07, - "aeneid": 2.19e-07, - "agoraphobia": 2.19e-07, - "airpower": 2.19e-07, - "albarn": 2.19e-07, - "albertans": 2.19e-07, - "alejandra": 2.19e-07, - "alienware": 2.19e-07, - "altercations": 2.19e-07, - "amds": 2.19e-07, - "ameen": 2.19e-07, - "ameri": 2.19e-07, - "anka": 2.19e-07, - "anopheles": 2.19e-07, - "apn": 2.19e-07, - "approvingly": 2.19e-07, - "apse": 2.19e-07, - "arboreal": 2.19e-07, - "ardor": 2.19e-07, - "arial": 2.19e-07, - "armenias": 2.19e-07, - "asin": 2.19e-07, - "attwood": 2.19e-07, - "avc": 2.19e-07, - "awad": 2.19e-07, - "backus": 2.19e-07, - "badri": 2.19e-07, - "bakelite": 2.19e-07, - "baloo": 2.19e-07, - "banfield": 2.19e-07, - "bangerz": 2.19e-07, - "banzai": 2.19e-07, - "barkers": 9.55e-08, - "bartoli": 2.19e-07, - "bathsheba": 2.19e-07, - "bathtubs": 2.19e-07, - "batts": 2.19e-07, - "bawled": 2.19e-07, - "bbva": 2.19e-07, - "bcd": 2.19e-07, - "beachs": 2.19e-07, - "beazley": 2.19e-07, - "beckys": 2.19e-07, - "beng": 2.19e-07, - "benzoyl": 2.19e-07, - "berthing": 2.19e-07, - "berthold": 2.19e-07, - "besotted": 2.19e-07, - "bett": 2.19e-07, - "bexar": 2.19e-07, - "biosecurity": 2.19e-07, - "bipartisanship": 2.19e-07, - "birkenau": 2.19e-07, - "birther": 2.19e-07, - "birthstone": 2.19e-07, - "bodmin": 2.19e-07, - "boehm": 2.19e-07, - "bogeys": 2.19e-07, - "bohemians": 2.19e-07, - "bomba": 2.19e-07, - "boozing": 2.19e-07, - "bouldering": 2.19e-07, - "boylan": 2.19e-07, - "braindead": 2.19e-07, - "branco": 2.19e-07, - "braunschweig": 2.19e-07, - "brawny": 2.19e-07, - "breastmilk": 2.19e-07, - "breathy": 2.19e-07, - "breuer": 2.19e-07, - "briefest": 2.19e-07, - "broadcom": 2.19e-07, - "btec": 2.19e-07, - "bullfrog": 2.19e-07, - "businesslike": 2.19e-07, - "callen": 2.19e-07, - "caltrans": 2.19e-07, - "cannoli": 2.19e-07, - "canst": 2.19e-07, - "cantankerous": 2.19e-07, - "capello": 2.19e-07, - "caricom": 2.19e-07, - "carragher": 2.19e-07, - "carthaginians": 2.19e-07, - "cassino": 2.19e-07, - "cei": 2.19e-07, - "cfe": 2.19e-07, - "cfu": 2.19e-07, - "chakrabarti": 2.19e-07, - "chemtrails": 2.19e-07, - "cinders": 2.19e-07, - "circumferential": 2.19e-07, - "clambered": 2.19e-07, - "clandestinely": 2.19e-07, - "clobbered": 2.19e-07, - "clumping": 2.19e-07, - "coalfield": 2.19e-07, - "cobblestones": 2.19e-07, - "cockle": 2.19e-07, - "codebase": 2.19e-07, - "cohesiveness": 2.19e-07, - "coi": 2.19e-07, - "coldstream": 2.19e-07, - "comanches": 2.19e-07, - "comeuppance": 2.19e-07, - "commerical": 2.19e-07, - "confiding": 2.19e-07, - "confusions": 2.19e-07, - "conversationalist": 2.19e-07, - "copse": 2.19e-07, - "corgis": 2.19e-07, - "cormorant": 2.19e-07, - "costliest": 2.19e-07, - "courtland": 2.19e-07, - "cowes": 2.19e-07, - "crafter": 2.19e-07, - "crosbys": 2.19e-07, - "crossrail": 2.19e-07, - "cryer": 2.19e-07, - "currants": 2.19e-07, - "curren": 2.19e-07, - "currier": 2.19e-07, - "cybertron": 2.19e-07, - "daan": 2.19e-07, - "dalla": 2.19e-07, - "damped": 2.19e-07, - "damsels": 2.19e-07, - "dasher": 2.19e-07, - "datuk": 2.19e-07, - "daum": 2.19e-07, - "dbm": 2.19e-07, - "dcm": 2.19e-07, - "deactivating": 2.19e-07, - "deckard": 2.19e-07, - "deferment": 2.19e-07, - "defusing": 2.19e-07, - "demerit": 2.19e-07, - "denatured": 2.19e-07, - "derails": 2.19e-07, - "devoutly": 2.19e-07, - "diageo": 2.19e-07, - "diagonals": 2.19e-07, - "dieppe": 2.19e-07, - "differentiable": 2.19e-07, - "digitizing": 2.19e-07, - "dignify": 2.19e-07, - "dilip": 2.19e-07, - "dimorphism": 2.19e-07, - "disadvantageous": 2.19e-07, - "disharmony": 2.19e-07, - "disinherited": 2.19e-07, - "dookie": 2.19e-07, - "dorr": 2.19e-07, - "dowell": 2.19e-07, - "drugstores": 2.19e-07, - "dtv": 2.19e-07, - "dunbartonshire": 2.19e-07, - "duro": 2.19e-07, - "dyk": 2.19e-07, - "eam": 2.19e-07, - "easterners": 2.19e-07, - "eastland": 2.19e-07, - "ebro": 2.19e-07, - "ecuadors": 2.19e-07, - "edgware": 2.19e-07, - "edsa": 2.19e-07, - "effectual": 2.19e-07, - "egfr": 2.19e-07, - "eiji": 2.19e-07, - "eldritch": 2.19e-07, - "electroplating": 2.19e-07, - "eliezer": 2.19e-07, - "elisabetta": 2.19e-07, - "emiliano": 2.19e-07, - "empt": 2.19e-07, - "endor": 2.19e-07, - "endorser": 2.19e-07, - "enniskillen": 2.19e-07, - "entendre": 2.19e-07, - "enteric": 2.19e-07, - "epidemiologists": 2.19e-07, - "epsteins": 2.19e-07, - "ersatz": 2.19e-07, - "eurosceptic": 2.19e-07, - "eurosport": 2.19e-07, - "exhales": 2.19e-07, - "exmouth": 2.19e-07, - "exploitable": 2.19e-07, - "extenders": 2.19e-07, - "factly": 2.19e-07, - "fairmount": 2.19e-07, - "fara": 2.19e-07, - "farrakhan": 2.19e-07, - "fifas": 2.19e-07, - "filers": 2.19e-07, - "fino": 2.19e-07, - "flam": 2.19e-07, - "floaters": 2.19e-07, - "florio": 2.19e-07, - "foamed": 2.19e-07, - "folktales": 2.19e-07, - "foolin": 2.19e-07, - "footers": 2.19e-07, - "footfall": 2.19e-07, - "fortieth": 2.19e-07, - "fossiliferous": 2.19e-07, - "fractious": 2.19e-07, - "franke": 2.19e-07, - "fredric": 2.19e-07, - "freitas": 2.19e-07, - "frieza": 2.19e-07, - "fue": 2.19e-07, - "functionary": 2.19e-07, - "gaffes": 2.19e-07, - "galactus": 2.19e-07, - "galls": 2.19e-07, - "gantt": 2.19e-07, - "garners": 1.66e-07, - "gata": 2.19e-07, - "gazetted": 2.19e-07, - "gbm": 2.19e-07, - "gehry": 2.19e-07, - "gelatine": 2.19e-07, - "gellar": 2.19e-07, - "geomorphology": 2.19e-07, - "gilgit": 2.19e-07, - "giorgi": 2.19e-07, - "gizmos": 2.19e-07, - "glamor": 2.19e-07, - "gls": 2.19e-07, - "gnr": 2.19e-07, - "goel": 2.19e-07, - "gooder": 2.19e-07, - "gox": 2.19e-07, - "gramma": 2.19e-07, - "greasing": 2.19e-07, - "greenstone": 2.19e-07, - "grice": 2.19e-07, - "grievously": 2.19e-07, - "gsr": 2.19e-07, - "gulps": 2.19e-07, - "guna": 2.19e-07, - "gunplay": 2.19e-07, - "gur": 2.19e-07, - "halep": 2.19e-07, - "haman": 2.19e-07, - "haneda": 2.19e-07, - "harvin": 2.19e-07, - "harwell": 2.19e-07, - "hasina": 2.19e-07, - "hawa": 2.19e-07, - "hcm": 2.19e-07, - "heald": 2.19e-07, - "heartaches": 2.19e-07, - "heim": 2.19e-07, - "hems": 2.19e-07, - "hepatocytes": 2.19e-07, - "herringbone": 2.19e-07, - "hickenlooper": 2.19e-07, - "homogenized": 2.19e-07, - "honshu": 2.19e-07, - "hosanna": 2.19e-07, - "hotshots": 2.19e-07, - "hsm": 2.19e-07, - "humiliations": 2.19e-07, - "huntly": 2.19e-07, - "hydrogenation": 2.19e-07, - "hymenoptera": 2.19e-07, - "hyperthermia": 2.19e-07, - "hyperthyroidism": 2.19e-07, - "idm": 2.19e-07, - "ignominious": 2.19e-07, - "ihre": 2.19e-07, - "ilana": 2.19e-07, - "imbedded": 2.19e-07, - "imperil": 2.19e-07, - "impreza": 2.19e-07, - "indelibly": 2.19e-07, - "innuendos": 2.19e-07, - "instar": 2.19e-07, - "intergroup": 2.19e-07, - "inveterate": 2.19e-07, - "ipanema": 2.19e-07, - "ipm": 2.19e-07, - "irn": 2.19e-07, - "isaak": 2.19e-07, - "italicized": 2.19e-07, - "ius": 7.08e-08, - "izzie": 2.19e-07, - "jailbroken": 2.19e-07, - "janets": 2.19e-07, - "jcc": 2.19e-07, - "jebel": 2.19e-07, - "jenkin": 2.19e-07, - "jiao": 2.19e-07, - "jonesy": 2.19e-07, - "joost": 2.19e-07, - "journo": 2.19e-07, - "joyless": 2.19e-07, - "jumanji": 2.19e-07, - "junket": 2.19e-07, - "justina": 2.19e-07, - "jvc": 2.19e-07, - "kabila": 2.19e-07, - "kajal": 2.19e-07, - "kamran": 2.19e-07, - "kareena": 2.19e-07, - "katrin": 2.19e-07, - "kells": 2.19e-07, - "kennan": 2.19e-07, - "kickball": 2.19e-07, - "kiddin": 2.19e-07, - "kingswood": 2.19e-07, - "kirov": 2.19e-07, - "kishi": 2.19e-07, - "kitchenaid": 2.19e-07, - "kiyoshi": 2.19e-07, - "klerk": 2.19e-07, - "kooks": 2.19e-07, - "koons": 2.19e-07, - "koufax": 2.19e-07, - "krauthammer": 2.19e-07, - "kubiak": 2.19e-07, - "kwik": 2.19e-07, - "kyrgios": 2.19e-07, - "lacma": 2.19e-07, - "laddie": 2.19e-07, - "lambton": 2.19e-07, - "laminates": 2.19e-07, - "lamppost": 2.19e-07, - "lanas": 1.26e-08, - "lecherous": 2.19e-07, - "leiter": 2.19e-07, - "lentz": 2.19e-07, - "lettings": 2.19e-07, - "lgs": 1.82e-07, - "libertad": 2.19e-07, - "libri": 2.19e-07, - "likey": 2.19e-07, - "litigator": 2.19e-07, - "lius": 2.19e-07, - "livejournal": 2.19e-07, - "losin": 2.19e-07, - "louises": 2.19e-07, - "lucina": 2.19e-07, - "lupton": 2.19e-07, - "luzerne": 2.19e-07, - "macchiato": 2.19e-07, - "machar": 2.19e-07, - "maggiore": 2.19e-07, - "magikarp": 2.19e-07, - "magmatic": 2.19e-07, - "magog": 2.19e-07, - "malang": 2.19e-07, - "malcolms": 2.19e-07, - "manhunter": 2.19e-07, - "mapper": 2.19e-07, - "marcie": 2.19e-07, - "maron": 2.19e-07, - "marsala": 2.19e-07, - "marshland": 2.19e-07, - "mcgonagall": 2.19e-07, - "mcnab": 2.19e-07, - "meadowlands": 2.19e-07, - "meine": 2.19e-07, - "melded": 2.19e-07, - "melvyn": 2.19e-07, - "memorialize": 2.19e-07, - "merah": 2.19e-07, - "merediths": 2.19e-07, - "microarray": 2.19e-07, - "milani": 2.19e-07, - "millbrook": 2.19e-07, - "minchin": 2.19e-07, - "mincing": 2.19e-07, - "miramax": 2.19e-07, - "mizuki": 2.19e-07, - "mobi": 2.19e-07, - "mohave": 2.19e-07, - "mojang": 2.19e-07, - "mollusca": 2.19e-07, - "monarchical": 2.19e-07, - "monetizing": 2.19e-07, - "mopar": 2.19e-07, - "moralizing": 2.19e-07, - "moroccos": 2.19e-07, - "morphin": 2.19e-07, - "mouthpieces": 2.19e-07, - "mre": 2.19e-07, - "mudstone": 2.19e-07, - "muerte": 2.19e-07, - "mufasa": 2.19e-07, - "multifunction": 2.19e-07, - "muskogee": 2.19e-07, - "mutagenesis": 2.19e-07, - "mycroft": 2.19e-07, - "mylan": 2.19e-07, - "myst": 2.19e-07, - "nakajima": 2.19e-07, - "naman": 2.19e-07, - "nanostructures": 2.19e-07, - "nasrallah": 2.19e-07, - "neodymium": 2.19e-07, - "netherworld": 2.19e-07, - "neuroendocrine": 2.19e-07, - "neuroses": 2.19e-07, - "nevilles": 2.19e-07, - "newhall": 2.19e-07, - "ngozi": 2.19e-07, - "nhra": 2.19e-07, - "nichole": 2.19e-07, - "nika": 2.19e-07, - "niobium": 2.19e-07, - "normand": 2.19e-07, - "northeasterly": 2.19e-07, - "northerner": 2.19e-07, - "notte": 2.19e-07, - "nrw": 2.19e-07, - "nutters": 2.19e-07, - "nymphomaniac": 2.19e-07, - "oshaughnessy": 2.19e-07, - "obc": 2.19e-07, - "ocelot": 2.19e-07, - "ochs": 2.19e-07, - "oiling": 2.19e-07, - "oozed": 2.19e-07, - "opals": 2.19e-07, - "operatively": 2.19e-07, - "ophir": 2.19e-07, - "orlandos": 2.19e-07, - "ostracism": 2.19e-07, - "ouachita": 2.19e-07, - "outpatients": 2.19e-07, - "overhangs": 2.19e-07, - "oversimplified": 2.19e-07, - "ovi": 2.19e-07, - "oxalate": 2.19e-07, - "palaeolithic": 2.19e-07, - "pandemics": 2.19e-07, - "paperweight": 2.19e-07, - "parenteral": 2.19e-07, - "parsi": 2.19e-07, - "partizan": 2.19e-07, - "pashtuns": 2.19e-07, - "pathan": 2.19e-07, - "paulas": 2.19e-07, - "pdb": 2.19e-07, - "pecked": 2.19e-07, - "peen": 2.19e-07, - "pennywise": 2.19e-07, - "peopled": 2.19e-07, - "peppercorns": 2.19e-07, - "perilously": 2.19e-07, - "peritonitis": 2.19e-07, - "pertained": 2.19e-07, - "perversions": 2.19e-07, - "peterhead": 2.19e-07, - "pharyngeal": 2.19e-07, - "phoenixs": 2.19e-07, - "picton": 2.19e-07, - "pinhead": 2.19e-07, - "pitifully": 2.19e-07, - "pitkin": 2.19e-07, - "piya": 2.19e-07, - "playgroup": 2.19e-07, - "podemos": 2.19e-07, - "poitiers": 2.19e-07, - "pollinator": 2.19e-07, - "polycrystalline": 2.19e-07, - "ponsonby": 2.19e-07, - "porphyry": 2.19e-07, - "posada": 2.19e-07, - "prager": 2.19e-07, - "prefab": 2.19e-07, - "pretension": 2.19e-07, - "prissy": 2.19e-07, - "prolog": 2.19e-07, - "provisioned": 2.19e-07, - "puffins": 2.19e-07, - "punctuate": 2.19e-07, - "punky": 2.19e-07, - "purifiers": 2.19e-07, - "pygmies": 2.19e-07, - "pynchon": 2.19e-07, - "quarreled": 2.19e-07, - "radicalisation": 2.19e-07, - "radioshack": 2.19e-07, - "raimi": 2.19e-07, - "rakhi": 2.19e-07, - "rann": 2.19e-07, - "ransome": 2.19e-07, - "raonic": 2.19e-07, - "rares": 2.19e-07, - "rashly": 2.19e-07, - "ravana": 2.19e-07, - "rayman": 2.19e-07, - "reaps": 2.19e-07, - "rebuff": 2.19e-07, - "recapturing": 2.19e-07, - "recouped": 2.19e-07, - "recursively": 2.19e-07, - "redeployed": 2.19e-07, - "refusals": 2.19e-07, - "regenerates": 2.19e-07, - "regressions": 2.19e-07, - "reinstalling": 2.19e-07, - "relearn": 2.19e-07, - "remitted": 2.19e-07, - "replicator": 2.19e-07, - "reprised": 2.19e-07, - "repubs": 2.19e-07, - "reputational": 2.19e-07, - "retinas": 2.19e-07, - "rexs": 2.19e-07, - "rilke": 2.19e-07, - "rivaling": 2.19e-07, - "riverine": 2.19e-07, - "riz": 2.19e-07, - "rlc": 2.19e-07, - "rnd": 2.19e-07, - "rocksteady": 2.19e-07, - "rol": 2.19e-07, - "rosas": 1.86e-07, - "rosey": 2.19e-07, - "rosneft": 2.19e-07, - "rtg": 2.19e-07, - "ruffians": 2.19e-07, - "ruggles": 2.19e-07, - "ruud": 2.19e-07, - "ryman": 2.19e-07, - "sado": 2.19e-07, - "sak": 2.19e-07, - "saleable": 2.19e-07, - "salix": 2.19e-07, - "sankara": 2.19e-07, - "sanya": 2.19e-07, - "sashas": 2.19e-07, - "satish": 2.19e-07, - "scalise": 2.19e-07, - "scanty": 2.19e-07, - "schnell": 2.19e-07, - "schon": 2.19e-07, - "scorcher": 2.19e-07, - "sealers": 2.19e-07, - "sealy": 2.19e-07, - "sebaceous": 2.19e-07, - "seif": 2.19e-07, - "serendipitous": 2.19e-07, - "serenely": 2.19e-07, - "sgd": 2.19e-07, - "sharm": 2.19e-07, - "shaughnessy": 2.19e-07, - "shavers": 2.19e-07, - "sheathing": 2.19e-07, - "shee": 2.19e-07, - "shenyang": 2.19e-07, - "shimmery": 2.19e-07, - "shockers": 2.19e-07, - "shod": 2.19e-07, - "shor": 2.19e-07, - "shouldering": 2.19e-07, - "shoveled": 2.19e-07, - "shute": 2.19e-07, - "sikorski": 2.19e-07, - "silverback": 2.19e-07, - "simferopol": 2.19e-07, - "sinjar": 2.19e-07, - "sintering": 2.19e-07, - "siya": 2.19e-07, - "skein": 2.19e-07, - "skilling": 2.19e-07, - "skool": 2.19e-07, - "slammer": 2.19e-07, - "slights": 2.19e-07, - "slogging": 2.19e-07, - "smalley": 2.19e-07, - "smarties": 2.19e-07, - "smothers": 2.19e-07, - "smr": 2.19e-07, - "snakeskin": 2.19e-07, - "somalias": 2.19e-07, - "sophias": 2.19e-07, - "soulja": 2.19e-07, - "spitfires": 2.19e-07, - "spliff": 2.19e-07, - "sputtered": 2.19e-07, - "srf": 2.19e-07, - "stairwells": 2.19e-07, - "stanislaw": 2.19e-07, - "steamroller": 2.19e-07, - "steinfeld": 2.19e-07, - "stele": 2.19e-07, - "sterner": 2.19e-07, - "stix": 2.19e-07, - "storer": 2.19e-07, - "storyboards": 2.19e-07, - "stumping": 2.19e-07, - "subhash": 2.19e-07, - "subzero": 2.19e-07, - "sumac": 2.19e-07, - "sux": 2.19e-07, - "syllabic": 2.19e-07, - "syme": 2.19e-07, - "szabo": 2.19e-07, - "tabu": 2.19e-07, - "tackler": 2.19e-07, - "tadashi": 2.19e-07, - "tarantulas": 2.19e-07, - "tattle": 2.19e-07, - "teahouse": 2.19e-07, - "technische": 2.19e-07, - "tedesco": 2.19e-07, - "teleconference": 2.19e-07, - "telex": 2.19e-07, - "teu": 2.19e-07, - "tham": 2.19e-07, - "theosophical": 2.19e-07, - "thresher": 2.19e-07, - "throwbacks": 2.19e-07, - "timidity": 2.19e-07, - "tisch": 2.19e-07, - "tmobile": 2.19e-07, - "tomoko": 2.19e-07, - "toole": 2.19e-07, - "tozer": 2.19e-07, - "trampolines": 2.19e-07, - "transgress": 2.19e-07, - "translink": 2.19e-07, - "trekked": 2.19e-07, - "tripods": 2.19e-07, - "trivandrum": 2.19e-07, - "troupes": 6.61e-08, - "tuileries": 2.19e-07, - "turgid": 2.19e-07, - "turton": 2.19e-07, - "tustin": 2.19e-07, - "tuxedos": 2.19e-07, - "tycoons": 2.19e-07, - "tyga": 2.19e-07, - "uchiha": 2.19e-07, - "umbrage": 2.19e-07, - "umbridge": 2.19e-07, - "unapproachable": 2.19e-07, - "unbeliever": 2.19e-07, - "unde": 2.19e-07, - "undefended": 2.19e-07, - "unimaginably": 2.19e-07, - "unloads": 2.19e-07, - "unm": 2.19e-07, - "unpleasantly": 2.19e-07, - "unrated": 2.19e-07, - "uruk": 2.19e-07, - "usada": 2.19e-07, - "usos": 2.19e-07, - "valero": 2.19e-07, - "venal": 2.19e-07, - "veyron": 2.19e-07, - "vicenza": 2.19e-07, - "vietcong": 2.19e-07, - "vina": 2.19e-07, - "vitiligo": 2.19e-07, - "volunteerism": 2.19e-07, - "volusia": 2.19e-07, - "vyacheslav": 2.19e-07, - "wana": 2.19e-07, - "wanes": 2.19e-07, - "warder": 2.19e-07, - "watterson": 2.19e-07, - "waynesboro": 2.19e-07, - "wearily": 2.19e-07, - "weems": 2.19e-07, - "weepy": 2.19e-07, - "weitzman": 2.19e-07, - "weizmann": 2.19e-07, - "westernmost": 2.19e-07, - "westlife": 2.19e-07, - "whl": 2.19e-07, - "wikia": 2.19e-07, - "winterbottom": 2.19e-07, - "witching": 2.19e-07, - "woon": 2.19e-07, - "wus": 1e-07, - "xeno": 2.19e-07, - "xero": 2.19e-07, - "xpress": 2.19e-07, - "yael": 2.19e-07, - "yapping": 2.19e-07, - "yellin": 2.19e-07, - "yeomanry": 2.19e-07, - "yerba": 2.19e-07, - "yodel": 2.19e-07, - "zar": 2.19e-07, - "aaaaand": 2.14e-07, - "abolishment": 2.14e-07, - "abso": 2.14e-07, - "abutments": 2.14e-07, - "academical": 2.14e-07, - "acadian": 2.14e-07, - "acclimate": 2.14e-07, - "accompaniments": 2.14e-07, - "acd": 2.14e-07, - "acn": 2.14e-07, - "acquirer": 2.14e-07, - "affirmatively": 2.14e-07, - "agonized": 2.14e-07, - "aho": 2.14e-07, - "alaa": 2.14e-07, - "albinism": 2.14e-07, - "alcs": 2.14e-07, - "alda": 2.14e-07, - "aleks": 2.14e-07, - "aleksei": 2.14e-07, - "alga": 2.14e-07, - "allez": 2.14e-07, - "altai": 2.14e-07, - "ambiguously": 2.14e-07, - "amnesiac": 2.14e-07, - "andronicus": 2.14e-07, - "antic": 2.14e-07, - "aqa": 2.14e-07, - "arthropod": 2.14e-07, - "aruna": 2.14e-07, - "arv": 2.14e-07, - "asaph": 2.14e-07, - "astoundingly": 2.14e-07, - "atolls": 2.14e-07, - "audiology": 2.14e-07, - "ault": 2.14e-07, - "autotune": 2.14e-07, - "autre": 2.14e-07, - "averill": 2.14e-07, - "avigdor": 2.14e-07, - "ayton": 2.14e-07, - "backbench": 2.14e-07, - "backbenchers": 2.14e-07, - "badgering": 2.14e-07, - "bakken": 2.14e-07, - "baptizing": 2.14e-07, - "barossa": 2.14e-07, - "barrera": 2.14e-07, - "bated": 2.14e-07, - "baud": 2.14e-07, - "baxters": 6.61e-08, - "bayfield": 2.14e-07, - "belden": 2.14e-07, - "bellerin": 2.14e-07, - "belushi": 2.14e-07, - "benham": 2.14e-07, - "bennys": 2.14e-07, - "bergamo": 2.14e-07, - "bergstrom": 2.14e-07, - "bhabhi": 2.14e-07, - "bihari": 2.14e-07, - "billabong": 2.14e-07, - "biomes": 2.14e-07, - "biostatistics": 2.14e-07, - "blane": 2.14e-07, - "bohol": 2.14e-07, - "bootlegs": 2.14e-07, - "bosoms": 2.14e-07, - "bossed": 2.14e-07, - "bott": 2.14e-07, - "bougie": 2.14e-07, - "brack": 2.14e-07, - "branagh": 2.14e-07, - "branford": 2.14e-07, - "brazzaville": 2.14e-07, - "brexiteers": 2.14e-07, - "brights": 1.2e-07, - "brokenness": 2.14e-07, - "brookside": 2.14e-07, - "brownian": 2.14e-07, - "bsg": 2.14e-07, - "buckman": 2.14e-07, - "bugg": 2.14e-07, - "burford": 2.14e-07, - "burrowed": 2.14e-07, - "byod": 2.14e-07, - "cabell": 2.14e-07, - "canandaigua": 2.14e-07, - "cantu": 2.14e-07, - "capsize": 2.14e-07, - "carnes": 2.14e-07, - "cassation": 2.14e-07, - "castilla": 2.14e-07, - "castrate": 2.14e-07, - "catheterization": 2.14e-07, - "cbb": 2.14e-07, - "ccb": 2.14e-07, - "ccu": 2.14e-07, - "cecelia": 2.14e-07, - "centralia": 2.14e-07, - "centreville": 2.14e-07, - "centurions": 2.14e-07, - "cess": 2.14e-07, - "champa": 2.14e-07, - "chartering": 2.14e-07, - "chastising": 2.14e-07, - "cheekbone": 2.14e-07, - "chillicothe": 2.14e-07, - "chola": 2.14e-07, - "chrysanthemums": 2.14e-07, - "cian": 2.14e-07, - "cissy": 2.14e-07, - "cistercian": 2.14e-07, - "clickable": 2.14e-07, - "coeliac": 2.14e-07, - "cogan": 2.14e-07, - "colorist": 2.14e-07, - "colorized": 2.14e-07, - "colwyn": 2.14e-07, - "comintern": 2.14e-07, - "comparability": 2.14e-07, - "compo": 2.14e-07, - "consistory": 2.14e-07, - "constitutionalism": 2.14e-07, - "constrict": 2.14e-07, - "consuelo": 2.14e-07, - "conus": 2.14e-07, - "cooties": 2.14e-07, - "copland": 2.14e-07, - "copts": 2.14e-07, - "costuming": 2.14e-07, - "coverts": 2.14e-07, - "coworking": 2.14e-07, - "credulity": 2.14e-07, - "cronenberg": 2.14e-07, - "crouse": 2.14e-07, - "crum": 2.14e-07, - "cued": 2.14e-07, - "cuevas": 2.14e-07, - "culverts": 2.14e-07, - "cutscene": 2.14e-07, - "dama": 2.14e-07, - "danner": 2.14e-07, - "dano": 2.14e-07, - "daraa": 2.14e-07, - "darya": 2.14e-07, - "debonair": 2.14e-07, - "debunks": 2.14e-07, - "decedent": 2.14e-07, - "decimating": 2.14e-07, - "deified": 2.14e-07, - "denbigh": 2.14e-07, - "depopulated": 2.14e-07, - "deshaun": 2.14e-07, - "destro": 2.14e-07, - "determinate": 2.14e-07, - "dexamethasone": 2.14e-07, - "diddly": 2.14e-07, - "disembarking": 2.14e-07, - "disquieting": 2.14e-07, - "ditka": 2.14e-07, - "dls": 2.14e-07, - "dnt": 7.08e-08, - "dockside": 2.14e-07, - "dok": 2.14e-07, - "domine": 2.14e-07, - "donatella": 2.14e-07, - "donnas": 1.02e-07, - "dopaminergic": 2.14e-07, - "dosh": 2.14e-07, - "downlink": 2.14e-07, - "draftees": 2.14e-07, - "draxler": 2.14e-07, - "dreyer": 2.14e-07, - "drizzled": 2.14e-07, - "drogo": 2.14e-07, - "drunkards": 2.14e-07, - "dryly": 2.14e-07, - "dte": 2.14e-07, - "ducktales": 2.14e-07, - "dunblane": 2.14e-07, - "duns": 2.09e-08, - "dusters": 2.14e-07, - "ean": 2.14e-07, - "echolocation": 2.14e-07, - "eclecticism": 2.14e-07, - "ecp": 2.14e-07, - "ehm": 2.14e-07, - "elihu": 2.14e-07, - "elroy": 2.14e-07, - "emus": 2.14e-07, - "encrypting": 2.14e-07, - "engorged": 2.14e-07, - "enrolments": 2.14e-07, - "entebbe": 2.14e-07, - "entrap": 2.14e-07, - "entrench": 2.14e-07, - "entwistle": 2.14e-07, - "escapee": 2.14e-07, - "esperance": 2.14e-07, - "etl": 2.14e-07, - "eurydice": 2.14e-07, - "evac": 2.14e-07, - "everdeen": 2.14e-07, - "evergreens": 2.14e-07, - "exchangeable": 2.14e-07, - "exemplars": 2.14e-07, - "eyeglass": 2.14e-07, - "faithfull": 2.14e-07, - "fashionistas": 2.14e-07, - "fathering": 2.14e-07, - "ferndale": 2.14e-07, - "fick": 2.14e-07, - "fidesz": 2.14e-07, - "fingerprinted": 2.14e-07, - "fitr": 2.14e-07, - "florentino": 2.14e-07, - "fluorite": 2.14e-07, - "flys": 1.91e-07, - "folger": 2.14e-07, - "footstool": 2.14e-07, - "foran": 2.14e-07, - "forgivable": 2.14e-07, - "francaise": 2.14e-07, - "frankies": 2.14e-07, - "franny": 2.14e-07, - "frawley": 2.14e-07, - "frobisher": 2.14e-07, - "fukuda": 2.14e-07, - "fulmer": 2.14e-07, - "gaither": 2.14e-07, - "garrisoned": 2.14e-07, - "gena": 2.14e-07, - "generalities": 2.14e-07, - "genocides": 2.14e-07, - "germane": 2.14e-07, - "gertie": 2.14e-07, - "ghaziabad": 2.14e-07, - "gid": 2.14e-07, - "gilson": 2.14e-07, - "glucocorticoid": 2.14e-07, - "glucosamine": 2.14e-07, - "gneiss": 2.14e-07, - "godparents": 2.14e-07, - "gomer": 2.14e-07, - "goofed": 2.14e-07, - "gratuities": 2.14e-07, - "greenblatt": 2.14e-07, - "greiner": 2.14e-07, - "grigor": 2.14e-07, - "grilles": 2.14e-07, - "groupthink": 2.14e-07, - "hadrians": 2.14e-07, - "haris": 2.14e-07, - "harmer": 2.14e-07, - "hartland": 2.14e-07, - "hemolytic": 2.14e-07, - "heptathlon": 2.14e-07, - "heterodox": 2.14e-07, - "hev": 2.14e-07, - "highwayman": 2.14e-07, - "himym": 2.14e-07, - "hobos": 2.14e-07, - "holsters": 2.14e-07, - "hominid": 2.14e-07, - "hsp": 2.14e-07, - "hurtin": 2.14e-07, - "hutcheson": 2.14e-07, - "hymnal": 2.14e-07, - "hypothalamic": 2.14e-07, - "iad": 2.14e-07, - "ignoramus": 2.14e-07, - "imaginatively": 2.14e-07, - "imago": 2.14e-07, - "impostors": 2.14e-07, - "incinerate": 2.14e-07, - "indepth": 2.14e-07, - "indictable": 2.14e-07, - "inductee": 2.14e-07, - "infante": 2.14e-07, - "inflates": 2.14e-07, - "inouye": 2.14e-07, - "instigators": 2.14e-07, - "institutionalization": 2.14e-07, - "intricacy": 2.14e-07, - "irksome": 2.14e-07, - "ironside": 2.14e-07, - "irt": 2.14e-07, - "isaacson": 2.14e-07, - "jabbed": 2.14e-07, - "jackhammer": 2.14e-07, - "jainism": 2.14e-07, - "jammin": 2.14e-07, - "jcp": 2.14e-07, - "jensens": 2.14e-07, - "jessies": 2.14e-07, - "jetted": 2.14e-07, - "jinan": 2.14e-07, - "jostled": 2.14e-07, - "jsp": 2.14e-07, - "kabaddi": 2.14e-07, - "kaga": 2.14e-07, - "karn": 2.14e-07, - "katakana": 2.14e-07, - "kayne": 2.14e-07, - "kemi": 2.14e-07, - "khali": 2.14e-07, - "khalsa": 2.14e-07, - "khutor": 2.14e-07, - "kingsland": 2.14e-07, - "klass": 2.14e-07, - "kleine": 2.14e-07, - "komatsu": 2.14e-07, - "kore": 2.14e-07, - "koreatown": 2.14e-07, - "kremer": 2.14e-07, - "kth": 2.14e-07, - "kuna": 2.14e-07, - "lambing": 2.14e-07, - "lamination": 2.14e-07, - "lampoon": 2.14e-07, - "landa": 2.14e-07, - "laughably": 2.14e-07, - "laughton": 2.14e-07, - "laz": 2.14e-07, - "lek": 2.14e-07, - "lele": 2.14e-07, - "lemming": 2.14e-07, - "leprechauns": 2.14e-07, - "libertys": 2.14e-07, - "limburg": 2.14e-07, - "linchpin": 2.14e-07, - "lindt": 2.14e-07, - "lisbeth": 2.14e-07, - "livelier": 2.14e-07, - "lmaoo": 2.14e-07, - "longish": 2.14e-07, - "loonies": 2.14e-07, - "loooong": 2.14e-07, - "loris": 8.91e-08, - "lowrie": 2.14e-07, - "luann": 2.14e-07, - "luft": 2.14e-07, - "lyndsey": 2.14e-07, - "macaw": 2.14e-07, - "maglev": 2.14e-07, - "malevolence": 2.14e-07, - "malinowski": 2.14e-07, - "mallon": 2.14e-07, - "malory": 2.14e-07, - "manas": 2.09e-08, - "manasseh": 2.14e-07, - "manos": 2.14e-07, - "marinette": 2.14e-07, - "marsupials": 2.14e-07, - "masao": 2.14e-07, - "mase": 2.14e-07, - "masri": 2.14e-07, - "mattes": 2.14e-07, - "mccutchen": 2.14e-07, - "mcginley": 2.14e-07, - "meacham": 2.14e-07, - "medio": 2.14e-07, - "megaton": 2.14e-07, - "mell": 2.14e-07, - "mertesacker": 2.14e-07, - "mescaline": 2.14e-07, - "metis": 2.14e-07, - "midazolam": 2.14e-07, - "mikkel": 2.14e-07, - "miming": 2.14e-07, - "minajs": 2.14e-07, - "minarets": 2.14e-07, - "minolta": 2.14e-07, - "miserly": 2.14e-07, - "miya": 2.14e-07, - "mmt": 2.14e-07, - "mockumentary": 2.14e-07, - "modulates": 2.14e-07, - "modulo": 2.14e-07, - "molokai": 2.14e-07, - "mongodb": 2.14e-07, - "mongoloid": 2.14e-07, - "monoamine": 2.14e-07, - "monreal": 2.14e-07, - "montez": 2.14e-07, - "morden": 2.14e-07, - "mork": 2.14e-07, - "mosher": 2.14e-07, - "motile": 2.14e-07, - "motu": 2.14e-07, - "moyers": 2.14e-07, - "nahum": 2.14e-07, - "naoki": 2.14e-07, - "nephilim": 2.14e-07, - "neurosciences": 2.14e-07, - "neurotoxin": 2.14e-07, - "nibbled": 2.14e-07, - "nicolaus": 2.14e-07, - "nighters": 2.14e-07, - "nikolaj": 2.14e-07, - "nlcs": 2.14e-07, - "nonpublic": 2.14e-07, - "norcal": 2.14e-07, - "norsk": 2.14e-07, - "northrup": 2.14e-07, - "nq": 2.14e-07, - "nsync": 2.14e-07, - "nuc": 2.14e-07, - "nuneaton": 2.14e-07, - "nuno": 2.14e-07, - "nwt": 2.14e-07, - "odowd": 2.14e-07, - "obediently": 2.14e-07, - "objectifying": 2.14e-07, - "ock": 2.14e-07, - "oglethorpe": 2.14e-07, - "olbermann": 2.14e-07, - "openssl": 2.14e-07, - "ordinaries": 2.14e-07, - "ornery": 2.14e-07, - "osun": 2.14e-07, - "ouagadougou": 2.14e-07, - "outlasted": 2.14e-07, - "outstandingly": 2.14e-07, - "owensboro": 2.14e-07, - "owings": 2.14e-07, - "papyri": 2.14e-07, - "parathyroid": 2.14e-07, - "partie": 2.14e-07, - "patiala": 2.14e-07, - "pattersons": 2.14e-07, - "paxman": 2.14e-07, - "pearlman": 2.14e-07, - "pedigrees": 2.14e-07, - "pekin": 2.14e-07, - "percocet": 2.14e-07, - "pervading": 2.14e-07, - "pharynx": 2.14e-07, - "philby": 2.14e-07, - "philosophie": 2.14e-07, - "pitney": 2.14e-07, - "pixars": 2.14e-07, - "plas": 2.14e-07, - "plasters": 2.14e-07, - "pmt": 2.14e-07, - "pob": 2.14e-07, - "politicking": 2.14e-07, - "pompadour": 2.14e-07, - "pontus": 2.14e-07, - "positing": 2.14e-07, - "postmark": 2.14e-07, - "poznan": 2.14e-07, - "pradeep": 2.14e-07, - "pragmatically": 2.14e-07, - "preamp": 2.14e-07, - "preeclampsia": 2.14e-07, - "preemption": 2.14e-07, - "preselected": 2.14e-07, - "priam": 2.14e-07, - "prin": 2.14e-07, - "princesss": 2.14e-07, - "prn": 2.14e-07, - "prods": 2.14e-07, - "protrudes": 2.14e-07, - "prudently": 2.14e-07, - "ptolemaic": 2.14e-07, - "pummel": 2.14e-07, - "puppys": 2.14e-07, - "pyrmont": 2.14e-07, - "pyroclastic": 2.14e-07, - "qaedas": 2.14e-07, - "qiao": 2.14e-07, - "quesadilla": 2.14e-07, - "quixotic": 2.14e-07, - "rais": 5.89e-08, - "rationales": 2.14e-07, - "raymonds": 2.14e-07, - "recherches": 2.14e-07, - "recurred": 2.14e-07, - "regurgitate": 2.14e-07, - "relegating": 2.14e-07, - "remixing": 2.14e-07, - "replanted": 2.14e-07, - "reprimands": 2.14e-07, - "repurchased": 2.14e-07, - "respirators": 2.14e-07, - "rfs": 2.14e-07, - "ribery": 2.14e-07, - "richs": 2.14e-07, - "ridgeline": 2.14e-07, - "rigger": 2.14e-07, - "rinaldi": 2.14e-07, - "rioted": 2.14e-07, - "riverwalk": 2.14e-07, - "rmit": 2.14e-07, - "rochefort": 2.14e-07, - "rohde": 2.14e-07, - "rojava": 2.14e-07, - "roose": 2.14e-07, - "rosalyn": 2.14e-07, - "rosenblatt": 2.14e-07, - "roths": 2.14e-07, - "rubrics": 2.14e-07, - "rupturing": 2.14e-07, - "ryuji": 2.14e-07, - "sagna": 2.14e-07, - "salih": 2.14e-07, - "salo": 2.14e-07, - "samsara": 2.14e-07, - "sanju": 2.14e-07, - "sarnia": 2.14e-07, - "sartorius": 2.14e-07, - "satsuma": 2.14e-07, - "sayles": 2.14e-07, - "saylor": 2.14e-07, - "scallions": 2.14e-07, - "schuler": 2.14e-07, - "scowling": 2.14e-07, - "screeches": 2.14e-07, - "scrunched": 2.14e-07, - "seaview": 2.14e-07, - "securitization": 2.14e-07, - "seger": 2.14e-07, - "sentience": 2.14e-07, - "seva": 2.14e-07, - "shanna": 2.14e-07, - "sherpas": 2.14e-07, - "shinee": 2.14e-07, - "shoaib": 2.14e-07, - "shoplifter": 2.14e-07, - "shouldn": 2.14e-07, - "showgirls": 2.14e-07, - "sidwell": 2.14e-07, - "silage": 2.14e-07, - "sindhi": 2.14e-07, - "sinew": 2.14e-07, - "singletary": 2.14e-07, - "sisterly": 2.14e-07, - "skelly": 2.14e-07, - "sks": 2.14e-07, - "skylanders": 2.14e-07, - "snubs": 2.14e-07, - "soapstone": 2.14e-07, - "soldiering": 2.14e-07, - "soong": 2.14e-07, - "soundbite": 2.14e-07, - "spattered": 2.14e-07, - "spect": 2.14e-07, - "spellman": 2.14e-07, - "spla": 2.14e-07, - "splitters": 2.14e-07, - "sportive": 2.14e-07, - "sre": 2.14e-07, - "srivastava": 2.14e-07, - "standardizing": 2.14e-07, - "stang": 2.14e-07, - "stanislav": 2.14e-07, - "starke": 2.14e-07, - "stashing": 2.14e-07, - "stauffer": 2.14e-07, - "stereotypically": 2.14e-07, - "sterns": 1.38e-07, - "stoplight": 2.14e-07, - "strangelove": 2.14e-07, - "straub": 2.14e-07, - "striations": 2.14e-07, - "stromberg": 2.14e-07, - "strowman": 2.14e-07, - "subcommittees": 2.14e-07, - "substantively": 2.14e-07, - "suckle": 2.14e-07, - "sulky": 2.14e-07, - "suman": 2.14e-07, - "survivable": 2.14e-07, - "suttons": 5.89e-08, - "sweatshops": 2.14e-07, - "syncope": 2.14e-07, - "tamayo": 2.14e-07, - "tamsin": 2.14e-07, - "tare": 2.14e-07, - "tauranga": 2.14e-07, - "taurine": 2.14e-07, - "tcf": 2.14e-07, - "telehealth": 2.14e-07, - "tennessean": 2.14e-07, - "terraforming": 2.14e-07, - "thera": 2.14e-07, - "thetford": 2.14e-07, - "thorburn": 2.14e-07, - "thumbing": 2.14e-07, - "tilak": 2.14e-07, - "timekeeping": 2.14e-07, - "tines": 2.14e-07, - "tingles": 2.14e-07, - "tinkerbell": 2.14e-07, - "toeing": 2.14e-07, - "tourneys": 2.14e-07, - "tranmere": 2.14e-07, - "tranquilizer": 2.14e-07, - "treblinka": 2.14e-07, - "trekkers": 2.14e-07, - "tripathi": 2.14e-07, - "trounced": 2.14e-07, - "tulloch": 2.14e-07, - "turbidity": 2.14e-07, - "twitched": 2.14e-07, - "tyme": 2.14e-07, - "tyron": 2.14e-07, - "uac": 2.14e-07, - "ucd": 2.14e-07, - "ukranian": 2.14e-07, - "unachievable": 2.14e-07, - "unaddressed": 2.14e-07, - "unclog": 2.14e-07, - "uncompetitive": 2.14e-07, - "undesirables": 2.14e-07, - "uneasily": 2.14e-07, - "unemotional": 2.14e-07, - "unemployable": 2.14e-07, - "unencrypted": 2.14e-07, - "universals": 1.74e-07, - "unmissable": 2.14e-07, - "unrealistically": 2.14e-07, - "untroubled": 2.14e-07, - "unwary": 2.14e-07, - "upended": 2.14e-07, - "urie": 2.14e-07, - "uselessness": 2.14e-07, - "usmnt": 2.14e-07, - "uspto": 2.14e-07, - "usta": 2.14e-07, - "usurpation": 2.14e-07, - "uy": 2.14e-07, - "vada": 2.14e-07, - "vagrancy": 2.14e-07, - "varane": 2.14e-07, - "vaticans": 2.14e-07, - "veined": 2.14e-07, - "velociraptor": 2.14e-07, - "viticulture": 2.14e-07, - "viviane": 2.14e-07, - "voi": 2.14e-07, - "voxel": 2.14e-07, - "waal": 2.14e-07, - "waffen": 2.14e-07, - "wagstaff": 2.14e-07, - "wark": 2.14e-07, - "warrenton": 2.14e-07, - "waster": 2.14e-07, - "weeknights": 2.14e-07, - "weiser": 2.14e-07, - "wew": 2.14e-07, - "wher": 2.14e-07, - "whittingham": 2.14e-07, - "whittling": 2.14e-07, - "witchy": 2.14e-07, - "wobbled": 2.14e-07, - "wooten": 2.14e-07, - "workarounds": 2.14e-07, - "workdays": 2.14e-07, - "wranglers": 2.14e-07, - "yoked": 2.14e-07, - "yousafzai": 2.14e-07, - "zahn": 2.14e-07, - "zaidi": 2.14e-07, - "zakat": 2.14e-07, - "zarya": 2.14e-07, - "zeeland": 2.14e-07, - "zeroing": 2.14e-07, - "abernethy": 2.09e-07, - "abundances": 2.09e-07, - "abyssinian": 2.09e-07, - "acapella": 2.09e-07, - "ackermann": 2.09e-07, - "acls": 2.09e-07, - "adjusters": 2.09e-07, - "adulterer": 2.09e-07, - "aerated": 2.09e-07, - "afflicts": 2.09e-07, - "afk": 2.09e-07, - "agc": 2.09e-07, - "aina": 2.09e-07, - "aio": 2.09e-07, - "ajmal": 2.09e-07, - "akashi": 2.09e-07, - "alanna": 2.09e-07, - "alberti": 2.09e-07, - "alkalinity": 2.09e-07, - "amado": 2.09e-07, - "amiri": 2.09e-07, - "ancien": 2.09e-07, - "animalistic": 2.09e-07, - "animates": 2.09e-07, - "annunzio": 2.09e-07, - "anse": 2.09e-07, - "antietam": 2.09e-07, - "apcs": 2.09e-07, - "apollos": 1.35e-07, - "arabesque": 2.09e-07, - "arielle": 2.09e-07, - "arthroscopic": 2.09e-07, - "atar": 2.09e-07, - "atleti": 2.09e-07, - "attunement": 2.09e-07, - "aubameyang": 2.09e-07, - "auroras": 1.51e-07, - "avr": 2.09e-07, - "axonal": 2.09e-07, - "azarenka": 2.09e-07, - "bandanna": 2.09e-07, - "bandied": 2.09e-07, - "barbier": 2.09e-07, - "bardo": 2.09e-07, - "barmy": 2.09e-07, - "barrick": 2.09e-07, - "bartram": 2.09e-07, - "basques": 2.09e-07, - "basquiat": 2.09e-07, - "bawl": 2.09e-07, - "bayreuth": 2.09e-07, - "beane": 2.09e-07, - "beaujolais": 2.09e-07, - "behring": 2.09e-07, - "belgrave": 2.09e-07, - "bellwether": 2.09e-07, - "benedetti": 2.09e-07, - "benefice": 2.09e-07, - "bequests": 2.09e-07, - "berkman": 2.09e-07, - "bernards": 1.1e-07, - "bernini": 2.09e-07, - "besiktas": 2.09e-07, - "betfred": 2.09e-07, - "bhangra": 2.09e-07, - "biles": 2.09e-07, - "bina": 2.09e-07, - "birdhouse": 2.09e-07, - "biro": 2.09e-07, - "birt": 2.09e-07, - "bisbee": 2.09e-07, - "blotted": 2.09e-07, - "bluth": 2.09e-07, - "bodo": 2.09e-07, - "boldin": 2.09e-07, - "bolter": 2.09e-07, - "bongos": 2.09e-07, - "boni": 2.09e-07, - "bosley": 2.09e-07, - "bourque": 2.09e-07, - "boyes": 2.09e-07, - "brazile": 2.09e-07, - "bretagne": 2.09e-07, - "broadsheet": 2.09e-07, - "brockman": 2.09e-07, - "brownell": 2.09e-07, - "buble": 2.09e-07, - "bulacan": 2.09e-07, - "bulldoze": 2.09e-07, - "buono": 2.09e-07, - "burghers": 2.09e-07, - "burkhardt": 2.09e-07, - "burnings": 2.09e-07, - "bygones": 2.09e-07, - "caffe": 2.09e-07, - "calipari": 2.09e-07, - "camarillo": 2.09e-07, - "capex": 2.09e-07, - "capp": 2.09e-07, - "capsaicin": 2.09e-07, - "carbines": 2.09e-07, - "carbonara": 2.09e-07, - "carfax": 2.09e-07, - "carmona": 2.09e-07, - "carthaginian": 2.09e-07, - "casebook": 2.09e-07, - "caspase": 2.09e-07, - "cde": 2.09e-07, - "centrum": 2.09e-07, - "chaldean": 2.09e-07, - "chamberlains": 7.76e-08, - "chana": 2.09e-07, - "characterises": 2.09e-07, - "charmander": 2.09e-07, - "charteris": 2.09e-07, - "cheerio": 2.09e-07, - "chevelle": 2.09e-07, - "cheyne": 2.09e-07, - "chipsets": 2.09e-07, - "chuang": 2.09e-07, - "chutzpah": 2.09e-07, - "cii": 2.09e-07, - "cil": 2.09e-07, - "cingulate": 2.09e-07, - "circulars": 2.09e-07, - "ciscos": 2.09e-07, - "cisneros": 2.09e-07, - "citrine": 2.09e-07, - "clamshell": 2.09e-07, - "clod": 2.09e-07, - "clowney": 2.09e-07, - "cluck": 2.09e-07, - "cluj": 2.09e-07, - "cne": 2.09e-07, - "coalfields": 2.09e-07, - "coddle": 2.09e-07, - "collet": 2.09e-07, - "coman": 2.09e-07, - "commodification": 2.09e-07, - "concessional": 2.09e-07, - "confections": 2.09e-07, - "conlan": 2.09e-07, - "construe": 2.09e-07, - "coombes": 2.09e-07, - "cooter": 2.09e-07, - "cosponsors": 2.09e-07, - "coughlan": 2.09e-07, - "counselled": 2.09e-07, - "counterfactual": 2.09e-07, - "couric": 2.09e-07, - "courtesans": 2.09e-07, - "courthouses": 2.09e-07, - "cozumel": 2.09e-07, - "crafters": 2.09e-07, - "cranfield": 2.09e-07, - "craniofacial": 2.09e-07, - "crappie": 2.09e-07, - "crean": 2.09e-07, - "crimped": 2.09e-07, - "crinkle": 2.09e-07, - "crl": 2.09e-07, - "cropland": 2.09e-07, - "crumple": 2.09e-07, - "curvaceous": 2.09e-07, - "cutlets": 2.09e-07, - "cwm": 2.09e-07, - "cyberattack": 2.09e-07, - "dabo": 2.09e-07, - "dalmatia": 2.09e-07, - "damming": 2.09e-07, - "danse": 2.09e-07, - "danson": 2.09e-07, - "deadshot": 2.09e-07, - "deadweight": 2.09e-07, - "deauville": 2.09e-07, - "decepticon": 2.09e-07, - "dedications": 2.09e-07, - "deface": 2.09e-07, - "dehumanization": 2.09e-07, - "deliverables": 2.09e-07, - "demesne": 2.09e-07, - "ders": 2.09e-07, - "desensitization": 2.09e-07, - "deum": 2.09e-07, - "dietetic": 2.09e-07, - "dignitary": 2.09e-07, - "dimensionless": 2.09e-07, - "dinger": 2.09e-07, - "discretely": 2.09e-07, - "disengaging": 2.09e-07, - "disorganization": 2.09e-07, - "dissolute": 2.09e-07, - "distended": 2.09e-07, - "dmso": 2.09e-07, - "dogfish": 2.09e-07, - "donde": 2.09e-07, - "donn": 2.09e-07, - "dorking": 2.09e-07, - "dosa": 2.09e-07, - "doublet": 2.09e-07, - "douchebags": 2.09e-07, - "dragic": 2.09e-07, - "draperies": 2.09e-07, - "drenching": 2.09e-07, - "dsg": 2.09e-07, - "dti": 2.09e-07, - "dufresne": 2.09e-07, - "dumpy": 2.09e-07, - "dunleavy": 2.09e-07, - "dunstable": 2.09e-07, - "dupage": 2.09e-07, - "durden": 2.09e-07, - "dux": 2.09e-07, - "ecclesia": 2.09e-07, - "eeyore": 2.09e-07, - "efta": 2.09e-07, - "egret": 2.09e-07, - "elson": 2.09e-07, - "eltham": 2.09e-07, - "enemas": 2.09e-07, - "engadget": 2.09e-07, - "ensnared": 2.09e-07, - "entreat": 2.09e-07, - "episcopate": 2.09e-07, - "equalizing": 2.09e-07, - "equilibria": 2.09e-07, - "equus": 2.09e-07, - "erins": 2.09e-07, - "erk": 2.09e-07, - "ern": 2.09e-07, - "esmond": 2.09e-07, - "espy": 2.09e-07, - "esto": 2.09e-07, - "esu": 2.09e-07, - "etre": 2.09e-07, - "eustis": 2.09e-07, - "evas": 9.33e-08, - "extortionate": 2.09e-07, - "facs": 2.09e-07, - "fajitas": 2.09e-07, - "falsity": 2.09e-07, - "farron": 2.09e-07, - "favorability": 2.09e-07, - "favouritism": 2.09e-07, - "februarys": 2.09e-07, - "fertilised": 2.09e-07, - "fests": 2.09e-07, - "fibroids": 2.09e-07, - "fiddles": 2.09e-07, - "fivefold": 2.09e-07, - "flavius": 2.09e-07, - "flecked": 2.09e-07, - "floured": 2.09e-07, - "foleys": 2.09e-07, - "fomenting": 2.09e-07, - "fondled": 2.09e-07, - "footings": 2.09e-07, - "forfeits": 2.09e-07, - "fpr": 2.09e-07, - "frenkel": 2.09e-07, - "freq": 2.09e-07, - "fubar": 2.09e-07, - "gaiden": 2.09e-07, - "ganged": 2.09e-07, - "garters": 2.09e-07, - "gatt": 2.09e-07, - "gbc": 2.09e-07, - "gemmell": 2.09e-07, - "genuineness": 2.09e-07, - "geraldton": 2.09e-07, - "gerlach": 2.09e-07, - "gfa": 2.09e-07, - "gfp": 2.09e-07, - "gingival": 2.09e-07, - "ginza": 2.09e-07, - "girona": 2.09e-07, - "glenview": 2.09e-07, - "glitching": 2.09e-07, - "glitchy": 2.09e-07, - "gnosis": 2.09e-07, - "gobs": 2.09e-07, - "gorda": 2.09e-07, - "goyal": 2.09e-07, - "grandly": 2.09e-07, - "grav": 2.09e-07, - "graydon": 2.09e-07, - "graziano": 2.09e-07, - "grimoire": 2.09e-07, - "grizz": 2.09e-07, - "gromit": 2.09e-07, - "groth": 2.09e-07, - "gse": 2.09e-07, - "gudrun": 2.09e-07, - "guin": 2.09e-07, - "gummies": 2.09e-07, - "gwynne": 2.09e-07, - "haarlem": 2.09e-07, - "hangul": 2.09e-07, - "hannes": 2.09e-07, - "harpo": 2.09e-07, - "hassled": 2.09e-07, - "hatta": 2.09e-07, - "hatters": 5.89e-08, - "havnt": 1.35e-07, - "hazlewood": 2.09e-07, - "headlands": 2.09e-07, - "headstock": 2.09e-07, - "hemispherical": 2.09e-07, - "herm": 2.09e-07, - "hernan": 2.09e-07, - "hockley": 2.09e-07, - "holdens": 2.09e-07, - "honeymooners": 2.09e-07, - "horacio": 2.09e-07, - "horgan": 2.09e-07, - "hra": 2.09e-07, - "hugos": 7.08e-08, - "hydrocephalus": 2.09e-07, - "hypertrophic": 2.09e-07, - "iab": 2.09e-07, - "ican": 2.09e-07, - "icelanders": 2.09e-07, - "idx": 2.09e-07, - "iko": 2.09e-07, - "imbibe": 2.09e-07, - "immunocompromised": 2.09e-07, - "impassive": 2.09e-07, - "impermanence": 2.09e-07, - "imposters": 2.09e-07, - "impudence": 2.09e-07, - "incoherence": 2.09e-07, - "incompleteness": 2.09e-07, - "indignities": 2.09e-07, - "infirmity": 2.09e-07, - "ingmar": 2.09e-07, - "initiators": 2.09e-07, - "inlays": 2.09e-07, - "inshallah": 2.09e-07, - "internist": 2.09e-07, - "intransitive": 2.09e-07, - "inverters": 2.09e-07, - "invigorate": 2.09e-07, - "inviolable": 2.09e-07, - "irvings": 2.09e-07, - "ishaq": 2.09e-07, - "isherwood": 2.09e-07, - "isothermal": 2.09e-07, - "iwan": 2.09e-07, - "jeers": 2.09e-07, - "jukes": 2.09e-07, - "kakao": 2.09e-07, - "kaleidoscopic": 2.09e-07, - "kalimantan": 2.09e-07, - "kamla": 2.09e-07, - "kanda": 2.09e-07, - "kantian": 2.09e-07, - "karpov": 2.09e-07, - "karyn": 2.09e-07, - "katsina": 2.09e-07, - "kennebec": 2.09e-07, - "kian": 2.09e-07, - "kingsbridge": 2.09e-07, - "kipper": 2.09e-07, - "kis": 5.75e-08, - "kismet": 2.09e-07, - "kitsune": 2.09e-07, - "kneeled": 2.09e-07, - "koe": 2.09e-07, - "komi": 2.09e-07, - "koontz": 2.09e-07, - "kozak": 2.09e-07, - "krasinski": 2.09e-07, - "kristallnacht": 2.09e-07, - "kron": 2.09e-07, - "kucinich": 2.09e-07, - "kurz": 2.09e-07, - "lacuna": 2.09e-07, - "lage": 2.09e-07, - "langs": 1.02e-07, - "lauding": 2.09e-07, - "lavin": 2.09e-07, - "leakers": 2.09e-07, - "leaven": 2.09e-07, - "lederer": 2.09e-07, - "leena": 2.09e-07, - "leftie": 2.09e-07, - "leibowitz": 2.09e-07, - "leones": 2.09e-07, - "licht": 2.09e-07, - "liffey": 2.09e-07, - "limassol": 2.09e-07, - "linehan": 2.09e-07, - "lintel": 2.09e-07, - "liqueurs": 2.09e-07, - "literati": 2.09e-07, - "liturgies": 2.09e-07, - "loaner": 2.09e-07, - "localism": 2.09e-07, - "longmans": 2.09e-07, - "loong": 2.09e-07, - "lowenstein": 2.09e-07, - "lucero": 2.09e-07, - "lufkin": 2.09e-07, - "lymphocytic": 2.09e-07, - "lyte": 2.09e-07, - "magica": 2.09e-07, - "magnolias": 2.09e-07, - "magnuson": 2.09e-07, - "maladaptive": 2.09e-07, - "mamet": 2.09e-07, - "mancha": 2.09e-07, - "mandelas": 2.09e-07, - "manheim": 2.09e-07, - "mapuche": 2.09e-07, - "marjory": 2.09e-07, - "maroc": 2.09e-07, - "martinelli": 2.09e-07, - "maryann": 2.09e-07, - "massacring": 2.09e-07, - "mazur": 2.09e-07, - "mcadam": 2.09e-07, - "mcluhan": 2.09e-07, - "mdp": 2.09e-07, - "meads": 8.71e-08, - "meddled": 2.09e-07, - "megalomaniac": 2.09e-07, - "memorialized": 2.09e-07, - "mert": 2.09e-07, - "michie": 2.09e-07, - "micrometer": 2.09e-07, - "microorganism": 2.09e-07, - "micros": 2.09e-07, - "microtubule": 2.09e-07, - "milhouse": 2.09e-07, - "milwaukees": 2.09e-07, - "mingus": 2.09e-07, - "minigame": 2.09e-07, - "misidentified": 2.09e-07, - "misspoke": 2.09e-07, - "mns": 2.09e-07, - "moba": 2.09e-07, - "moeller": 2.09e-07, - "mohegan": 2.09e-07, - "montebello": 2.09e-07, - "moriah": 2.09e-07, - "morriss": 6.61e-08, - "mousetrap": 2.09e-07, - "mris": 2.09e-07, - "msci": 2.09e-07, - "mujer": 2.09e-07, - "mullan": 2.09e-07, - "murrieta": 2.09e-07, - "musketeer": 2.09e-07, - "mutilating": 2.09e-07, - "naboo": 2.09e-07, - "nagged": 2.09e-07, - "nati": 2.09e-07, - "naturist": 2.09e-07, - "nayak": 2.09e-07, - "neophyte": 2.09e-07, - "nepean": 2.09e-07, - "newkirk": 2.09e-07, - "newsrooms": 2.09e-07, - "nextel": 2.09e-07, - "nima": 2.09e-07, - "niue": 2.09e-07, - "nnn": 2.09e-07, - "nobler": 2.09e-07, - "nock": 2.09e-07, - "nonconforming": 2.09e-07, - "nonessential": 2.09e-07, - "noriko": 2.09e-07, - "nosing": 2.09e-07, - "nouri": 2.09e-07, - "nourishes": 2.09e-07, - "nozomi": 2.09e-07, - "nsu": 2.09e-07, - "nuovo": 2.09e-07, - "nyasaland": 2.09e-07, - "odriscoll": 2.09e-07, - "ogorman": 2.09e-07, - "ober": 2.09e-07, - "oberoi": 2.09e-07, - "octa": 2.09e-07, - "ogawa": 2.09e-07, - "olivet": 2.09e-07, - "omnivorous": 2.09e-07, - "oneworld": 2.09e-07, - "optometrists": 2.09e-07, - "orienteering": 2.09e-07, - "orinoco": 2.09e-07, - "orozco": 2.09e-07, - "orthopaedics": 2.09e-07, - "outpacing": 2.09e-07, - "outwith": 2.09e-07, - "overabundance": 2.09e-07, - "overage": 2.09e-07, - "overloads": 2.09e-07, - "owain": 2.09e-07, - "paas": 2.09e-07, - "pampanga": 2.09e-07, - "pankhurst": 2.09e-07, - "panoply": 2.09e-07, - "pansexual": 2.09e-07, - "paperclip": 2.09e-07, - "papuan": 2.09e-07, - "paralympian": 2.09e-07, - "paramus": 2.09e-07, - "parm": 2.09e-07, - "pastore": 2.09e-07, - "pavarotti": 2.09e-07, - "pawar": 2.09e-07, - "pbc": 2.09e-07, - "peacemaking": 2.09e-07, - "pedos": 2.09e-07, - "peloponnesian": 2.09e-07, - "pennines": 2.09e-07, - "penthouses": 2.09e-07, - "peon": 2.09e-07, - "perusal": 2.09e-07, - "pesa": 2.09e-07, - "pft": 2.09e-07, - "pge": 2.09e-07, - "phantasm": 2.09e-07, - "philpott": 2.09e-07, - "pietersen": 2.09e-07, - "pinup": 2.09e-07, - "pistorius": 2.09e-07, - "plaines": 2.09e-07, - "pleb": 2.09e-07, - "poitier": 2.09e-07, - "pokeball": 2.09e-07, - "polities": 2.09e-07, - "pollinating": 2.09e-07, - "ppo": 2.09e-07, - "praetor": 2.09e-07, - "prearranged": 2.09e-07, - "preening": 2.09e-07, - "preschools": 2.09e-07, - "prestwick": 2.09e-07, - "presumptions": 2.09e-07, - "printouts": 2.09e-07, - "psf": 2.09e-07, - "publius": 2.09e-07, - "pve": 2.09e-07, - "pvr": 2.09e-07, - "pygmalion": 2.09e-07, - "pyjama": 2.09e-07, - "pyo": 2.09e-07, - "pyrolysis": 2.09e-07, - "quackery": 2.09e-07, - "quali": 2.09e-07, - "quarles": 2.09e-07, - "quizzed": 2.09e-07, - "qv": 2.09e-07, - "rabia": 2.09e-07, - "rabindranath": 2.09e-07, - "rafah": 2.09e-07, - "raindrop": 2.09e-07, - "ramey": 2.09e-07, - "randalls": 2.09e-07, - "ratan": 2.09e-07, - "rattler": 2.09e-07, - "rauch": 2.09e-07, - "rcr": 2.09e-07, - "reactants": 2.09e-07, - "reanimated": 2.09e-07, - "reappraisal": 2.09e-07, - "reattach": 2.09e-07, - "rebounder": 2.09e-07, - "rebroadcast": 2.09e-07, - "reclined": 2.09e-07, - "reconditioning": 2.09e-07, - "rede": 2.09e-07, - "reducer": 2.09e-07, - "reeked": 2.09e-07, - "rego": 2.09e-07, - "renan": 2.09e-07, - "requisites": 2.09e-07, - "resurfaces": 2.09e-07, - "rewiring": 2.09e-07, - "reznor": 2.09e-07, - "rhoads": 2.09e-07, - "ribble": 2.09e-07, - "riggins": 2.09e-07, - "riko": 2.09e-07, - "rimbaud": 2.09e-07, - "rinds": 2.09e-07, - "ringleaders": 2.09e-07, - "rizvi": 2.09e-07, - "roading": 2.09e-07, - "robinhood": 2.09e-07, - "roch": 2.09e-07, - "rudman": 2.09e-07, - "rudra": 2.09e-07, - "ruefully": 2.09e-07, - "rumpus": 2.09e-07, - "saic": 2.09e-07, - "saldana": 2.09e-07, - "salience": 2.09e-07, - "salut": 2.09e-07, - "sandinista": 2.09e-07, - "sassafras": 2.09e-07, - "scamp": 2.09e-07, - "schoolmate": 2.09e-07, - "screed": 2.09e-07, - "sdcc": 2.09e-07, - "secularist": 2.09e-07, - "seibert": 2.09e-07, - "sequitur": 2.09e-07, - "seul": 2.09e-07, - "severino": 2.09e-07, - "shafiq": 2.09e-07, - "shills": 2.09e-07, - "shipbuilder": 2.09e-07, - "showboat": 2.09e-07, - "showground": 2.09e-07, - "shrewdly": 2.09e-07, - "shuns": 2.09e-07, - "sickles": 2.09e-07, - "sigel": 2.09e-07, - "signposts": 2.09e-07, - "sikhism": 2.09e-07, - "sive": 2.09e-07, - "slanders": 2.09e-07, - "slithered": 2.09e-07, - "smo": 2.09e-07, - "smokies": 2.09e-07, - "smolensk": 2.09e-07, - "smtp": 2.09e-07, - "snowpack": 2.09e-07, - "snsd": 2.09e-07, - "socialistic": 2.09e-07, - "sohail": 2.09e-07, - "soju": 2.09e-07, - "sonne": 2.09e-07, - "soria": 2.09e-07, - "sorrell": 2.09e-07, - "soundings": 2.09e-07, - "soundscapes": 2.09e-07, - "spacesuit": 2.09e-07, - "spams": 2.09e-07, - "spanx": 2.09e-07, - "spearmint": 2.09e-07, - "speedier": 2.09e-07, - "spengler": 2.09e-07, - "spica": 2.09e-07, - "spinnin": 2.09e-07, - "spoonfuls": 2.09e-07, - "squawking": 2.09e-07, - "srb": 2.09e-07, - "stackable": 2.09e-07, - "stalag": 2.09e-07, - "stiffed": 2.09e-07, - "storytime": 2.09e-07, - "streamlines": 2.09e-07, - "strudel": 2.09e-07, - "sturges": 2.09e-07, - "subcontract": 2.09e-07, - "succ": 2.09e-07, - "summarising": 2.09e-07, - "summerville": 2.09e-07, - "superdome": 2.09e-07, - "superoxide": 2.09e-07, - "sustainment": 2.09e-07, - "swashbuckling": 2.09e-07, - "swill": 2.09e-07, - "synthesised": 2.09e-07, - "syr": 2.09e-07, - "tabi": 2.09e-07, - "tabulation": 2.09e-07, - "tailspin": 2.09e-07, - "tanja": 2.09e-07, - "taw": 2.09e-07, - "tdc": 2.09e-07, - "teardrops": 2.09e-07, - "telos": 2.09e-07, - "tethering": 2.09e-07, - "theis": 2.09e-07, - "thessaly": 2.09e-07, - "thiefs": 2.09e-07, - "thirsting": 2.09e-07, - "thorndike": 2.09e-07, - "tillis": 2.09e-07, - "tinkered": 2.09e-07, - "tipster": 2.09e-07, - "tla": 2.09e-07, - "todoroki": 2.09e-07, - "toluca": 2.09e-07, - "tonawanda": 2.09e-07, - "tonbridge": 2.09e-07, - "toothy": 2.09e-07, - "toshi": 2.09e-07, - "tosser": 2.09e-07, - "tought": 2.09e-07, - "tpg": 2.09e-07, - "tph": 2.09e-07, - "tpu": 2.09e-07, - "traditionalism": 2.09e-07, - "tramadol": 2.09e-07, - "trapezoidal": 2.09e-07, - "travertine": 2.09e-07, - "troposphere": 2.09e-07, - "tsing": 2.09e-07, - "twittering": 2.09e-07, - "uan": 2.09e-07, - "uighur": 2.09e-07, - "ulla": 2.09e-07, - "unbranded": 2.09e-07, - "undergrads": 2.09e-07, - "undiluted": 2.09e-07, - "uninfected": 2.09e-07, - "unlined": 2.09e-07, - "unplugging": 2.09e-07, - "unrecognised": 2.09e-07, - "unsolvable": 2.09e-07, - "unspoilt": 2.09e-07, - "unstressed": 2.09e-07, - "upperclassmen": 2.09e-07, - "usaa": 2.09e-07, - "uscs": 2.09e-07, - "uselessly": 2.09e-07, - "usga": 2.09e-07, - "uyghurs": 2.09e-07, - "verizons": 2.09e-07, - "vermonts": 2.09e-07, - "vespasian": 2.09e-07, - "viki": 2.09e-07, - "vineland": 2.09e-07, - "viscose": 2.09e-07, - "vlogger": 2.09e-07, - "vocalizations": 2.09e-07, - "voiding": 2.09e-07, - "wanamaker": 2.09e-07, - "waratahs": 2.09e-07, - "wardell": 2.09e-07, - "washi": 2.09e-07, - "wasters": 2.09e-07, - "watling": 2.09e-07, - "weare": 2.09e-07, - "webcomics": 2.09e-07, - "weiland": 2.09e-07, - "weirs": 1.35e-07, - "wendt": 2.09e-07, - "weng": 2.09e-07, - "whetstone": 2.09e-07, - "whiteout": 2.09e-07, - "wicketkeeper": 2.09e-07, - "wieland": 2.09e-07, - "wildman": 2.09e-07, - "windowed": 2.09e-07, - "windshields": 2.09e-07, - "wireline": 2.09e-07, - "witless": 2.09e-07, - "wix": 2.09e-07, - "wls": 2.09e-07, - "woc": 2.09e-07, - "workroom": 2.09e-07, - "wsop": 2.09e-07, - "yasiel": 2.09e-07, - "yasuo": 2.09e-07, - "yh": 2.09e-07, - "yuka": 2.09e-07, - "ziva": 2.09e-07, - "aal": 2.04e-07, - "abdullahi": 2.04e-07, - "abhorred": 2.04e-07, - "ablative": 2.04e-07, - "accompli": 2.04e-07, - "acerbic": 2.04e-07, - "activations": 2.04e-07, - "adebayor": 2.04e-07, - "adjoint": 2.04e-07, - "adoptees": 2.04e-07, - "adroit": 2.04e-07, - "adsorbed": 2.04e-07, - "agains": 2.04e-07, - "ahmadiyya": 2.04e-07, - "ahora": 2.04e-07, - "ahsan": 2.04e-07, - "aioli": 2.04e-07, - "airhead": 2.04e-07, - "airless": 2.04e-07, - "airworthiness": 2.04e-07, - "akiko": 2.04e-07, - "aldehydes": 2.04e-07, - "alsatian": 2.04e-07, - "amistad": 2.04e-07, - "amro": 2.04e-07, - "amylase": 2.04e-07, - "anionic": 2.04e-07, - "annesley": 2.04e-07, - "antoninus": 2.04e-07, - "aoe": 2.04e-07, - "appallingly": 2.04e-07, - "appendectomy": 2.04e-07, - "applet": 2.04e-07, - "arachnid": 2.04e-07, - "arashi": 2.04e-07, - "arbuckle": 2.04e-07, - "arik": 2.04e-07, - "arista": 2.04e-07, - "armadale": 2.04e-07, - "arriva": 2.04e-07, - "ashburton": 2.04e-07, - "ashtrays": 2.04e-07, - "aspca": 2.04e-07, - "astound": 2.04e-07, - "ativan": 2.04e-07, - "aventura": 2.04e-07, - "awk": 2.04e-07, - "azerbaijans": 2.04e-07, - "badal": 2.04e-07, - "baffin": 2.04e-07, - "baggie": 2.04e-07, - "bamberg": 2.04e-07, - "banca": 2.04e-07, - "banqueting": 2.04e-07, - "barest": 2.04e-07, - "barrages": 2.04e-07, - "barrelled": 2.04e-07, - "bayne": 2.04e-07, - "beals": 2.04e-07, - "beano": 2.04e-07, - "beckmann": 2.04e-07, - "beelzebub": 2.04e-07, - "bega": 2.04e-07, - "behinds": 2.04e-07, - "behr": 2.04e-07, - "belgravia": 2.04e-07, - "bergamot": 2.04e-07, - "besson": 2.04e-07, - "biked": 2.04e-07, - "bilirubin": 2.04e-07, - "billionth": 2.04e-07, - "bioenergy": 2.04e-07, - "biomedicine": 2.04e-07, - "birdlife": 2.04e-07, - "biswas": 2.04e-07, - "blain": 2.04e-07, - "blanched": 2.04e-07, - "bloomingdales": 6.76e-08, - "bludgeoning": 2.04e-07, - "bluebells": 2.04e-07, - "bofa": 2.04e-07, - "boobie": 2.04e-07, - "boric": 2.04e-07, - "brachial": 2.04e-07, - "brayton": 2.04e-07, - "bretts": 2.04e-07, - "brita": 2.04e-07, - "britpop": 2.04e-07, - "brokenhearted": 2.04e-07, - "bromo": 2.04e-07, - "bsu": 2.04e-07, - "buckhead": 2.04e-07, - "buffetts": 2.04e-07, - "buffoons": 2.04e-07, - "bukkake": 2.04e-07, - "bullhorn": 2.04e-07, - "bungling": 2.04e-07, - "buzzkill": 2.04e-07, - "callisto": 2.04e-07, - "candidature": 2.04e-07, - "cappadocia": 2.04e-07, - "carbo": 2.04e-07, - "cardinality": 2.04e-07, - "carmack": 2.04e-07, - "carnot": 2.04e-07, - "carotenoids": 2.04e-07, - "cartilaginous": 2.04e-07, - "cbeebies": 2.04e-07, - "cellmate": 2.04e-07, - "cellulosic": 2.04e-07, - "celt": 2.04e-07, - "chabot": 2.04e-07, - "chace": 2.04e-07, - "chairlift": 2.04e-07, - "chaturbate": 2.04e-07, - "childe": 2.04e-07, - "chirps": 2.04e-07, - "chloroplast": 2.04e-07, - "chloroplasts": 2.04e-07, - "chronometer": 2.04e-07, - "circassian": 2.04e-07, - "cleaving": 2.04e-07, - "clerkship": 2.04e-07, - "clinches": 2.04e-07, - "cockles": 2.04e-07, - "coddled": 2.04e-07, - "coddling": 2.04e-07, - "cohabiting": 2.04e-07, - "compactness": 2.04e-07, - "concentrator": 2.04e-07, - "condemnations": 2.04e-07, - "connick": 2.04e-07, - "corry": 2.04e-07, - "costigan": 2.04e-07, - "cowling": 2.04e-07, - "crackles": 2.04e-07, - "crapping": 2.04e-07, - "cravat": 2.04e-07, - "creditworthiness": 2.04e-07, - "crf": 2.04e-07, - "cringy": 2.04e-07, - "crossbones": 2.04e-07, - "crossdressing": 2.04e-07, - "cuervo": 2.04e-07, - "cuomos": 2.04e-07, - "curfews": 2.04e-07, - "curios": 2.04e-07, - "daewoo": 2.04e-07, - "daggett": 2.04e-07, - "dalziel": 2.04e-07, - "danske": 2.04e-07, - "dbl": 2.04e-07, - "dceu": 2.04e-07, - "declaratory": 2.04e-07, - "declension": 2.04e-07, - "dehumidifier": 2.04e-07, - "deidre": 2.04e-07, - "demobilization": 2.04e-07, - "desu": 2.04e-07, - "detections": 2.04e-07, - "devaluing": 2.04e-07, - "dewhurst": 2.04e-07, - "dextrose": 2.04e-07, - "dialectics": 2.04e-07, - "dichotomous": 2.04e-07, - "dieing": 2.04e-07, - "dik": 2.04e-07, - "dinged": 2.04e-07, - "disallowing": 2.04e-07, - "dishwashing": 2.04e-07, - "disposes": 2.04e-07, - "dispossession": 2.04e-07, - "disqualifies": 2.04e-07, - "disruptors": 2.04e-07, - "dithering": 2.04e-07, - "divulging": 2.04e-07, - "dobbin": 2.04e-07, - "docherty": 2.04e-07, - "dongguan": 2.04e-07, - "dongs": 7.08e-08, - "doody": 2.04e-07, - "draculas": 2.04e-07, - "dragan": 2.04e-07, - "drizzling": 2.04e-07, - "drogheda": 2.04e-07, - "durants": 2.04e-07, - "dws": 2.04e-07, - "easley": 2.04e-07, - "ebv": 2.04e-07, - "edx": 2.04e-07, - "ejaculated": 2.04e-07, - "electrodynamics": 2.04e-07, - "elli": 2.04e-07, - "emd": 2.04e-07, - "eme": 2.04e-07, - "emmeline": 2.04e-07, - "endymion": 2.04e-07, - "envelops": 2.04e-07, - "epipen": 2.04e-07, - "equalise": 2.04e-07, - "erring": 2.04e-07, - "esea": 2.04e-07, - "eulogies": 2.04e-07, - "eurocentric": 2.04e-07, - "evidential": 2.04e-07, - "exhortations": 2.04e-07, - "expeditious": 2.04e-07, - "expressiveness": 2.04e-07, - "fareed": 2.04e-07, - "faridabad": 2.04e-07, - "farrier": 2.04e-07, - "fatness": 2.04e-07, - "fatties": 2.04e-07, - "fayre": 2.04e-07, - "federals": 2.04e-07, - "fernandinho": 2.04e-07, - "ferrand": 2.04e-07, - "ferri": 2.04e-07, - "ferric": 2.04e-07, - "ferrite": 2.04e-07, - "fid": 2.04e-07, - "findley": 2.04e-07, - "fixate": 2.04e-07, - "fkn": 2.04e-07, - "flankers": 2.04e-07, - "flannels": 2.04e-07, - "flasher": 2.04e-07, - "flatts": 2.04e-07, - "flavorings": 2.04e-07, - "fock": 2.04e-07, - "fogel": 2.04e-07, - "follett": 2.04e-07, - "fonder": 2.04e-07, - "foretell": 2.04e-07, - "foward": 2.04e-07, - "frill": 2.04e-07, - "frm": 2.04e-07, - "fuckface": 2.04e-07, - "fusarium": 2.04e-07, - "gaas": 2.04e-07, - "gaetano": 2.04e-07, - "gainers": 2.04e-07, - "galesburg": 2.04e-07, - "galvanize": 2.04e-07, - "gara": 2.04e-07, - "garcon": 2.04e-07, - "gaucho": 2.04e-07, - "gazelles": 2.04e-07, - "gelling": 2.04e-07, - "generalisations": 2.04e-07, - "genova": 2.04e-07, - "gianluigi": 2.04e-07, - "gilad": 2.04e-07, - "gilts": 2.04e-07, - "ginebra": 2.04e-07, - "gna": 2.04e-07, - "golda": 2.04e-07, - "gorka": 2.04e-07, - "gravis": 2.04e-07, - "gravitating": 2.04e-07, - "grayscale": 2.04e-07, - "greenlit": 2.04e-07, - "grimms": 1.1e-07, - "griselda": 2.04e-07, - "gsi": 2.04e-07, - "guenther": 2.04e-07, - "guha": 2.04e-07, - "gulping": 2.04e-07, - "gustaf": 2.04e-07, - "hada": 2.04e-07, - "hailstorm": 2.04e-07, - "haku": 2.04e-07, - "halsted": 2.04e-07, - "hambleton": 2.04e-07, - "hampshires": 2.04e-07, - "handmaiden": 2.04e-07, - "hashmi": 2.04e-07, - "haulers": 2.04e-07, - "hauptmann": 2.04e-07, - "hcp": 2.04e-07, - "heatsink": 2.04e-07, - "heatstroke": 2.04e-07, - "herbivorous": 2.04e-07, - "herzl": 2.04e-07, - "hideki": 2.04e-07, - "hideouts": 2.04e-07, - "highlighters": 2.04e-07, - "highrise": 2.04e-07, - "hindutva": 2.04e-07, - "hobgoblin": 2.04e-07, - "hobie": 2.04e-07, - "holbein": 2.04e-07, - "homa": 2.04e-07, - "hooting": 2.04e-07, - "horwood": 2.04e-07, - "hoteliers": 2.04e-07, - "hous": 2.04e-07, - "hovel": 2.04e-07, - "hughie": 2.04e-07, - "humiliates": 2.04e-07, - "hurston": 2.04e-07, - "huygens": 2.04e-07, - "hyperglycemia": 2.04e-07, - "icebox": 2.04e-07, - "ileana": 2.04e-07, - "illa": 2.04e-07, - "ille": 2.04e-07, - "imani": 2.04e-07, - "impeachable": 2.04e-07, - "imperialistic": 2.04e-07, - "impinge": 2.04e-07, - "implores": 2.04e-07, - "inarticulate": 2.04e-07, - "infective": 2.04e-07, - "infor": 2.04e-07, - "iniquities": 2.04e-07, - "innovated": 2.04e-07, - "insoles": 2.04e-07, - "instrumentalists": 2.04e-07, - "interconnectedness": 2.04e-07, - "interfacial": 2.04e-07, - "interloper": 2.04e-07, - "inyo": 2.04e-07, - "ironstone": 2.04e-07, - "itemize": 2.04e-07, - "ivanovna": 2.04e-07, - "jami": 2.04e-07, - "jeffree": 2.04e-07, - "jills": 2.04e-07, - "jiri": 2.04e-07, - "joanie": 2.04e-07, - "joelle": 2.04e-07, - "jools": 2.04e-07, - "jou": 2.04e-07, - "juul": 2.04e-07, - "kaede": 2.04e-07, - "kaffir": 2.04e-07, - "katelyn": 2.04e-07, - "kazuma": 2.04e-07, - "keil": 2.04e-07, - "khal": 2.04e-07, - "killua": 2.04e-07, - "kingmaker": 2.04e-07, - "klobuchar": 2.04e-07, - "knowhow": 2.04e-07, - "kory": 2.04e-07, - "kreider": 2.04e-07, - "kriss": 2.04e-07, - "kuni": 2.04e-07, - "kut": 2.04e-07, - "labrum": 2.04e-07, - "lae": 2.04e-07, - "lahiri": 2.04e-07, - "landforms": 2.04e-07, - "langkawi": 2.04e-07, - "largesse": 2.04e-07, - "lasses": 2.04e-07, - "latam": 2.04e-07, - "lathes": 2.04e-07, - "latinx": 2.04e-07, - "lcm": 2.04e-07, - "leadville": 2.04e-07, - "legless": 2.04e-07, - "leman": 2.04e-07, - "lewisburg": 2.04e-07, - "lfl": 2.04e-07, - "liaising": 2.04e-07, - "libero": 2.04e-07, - "lightheaded": 2.04e-07, - "lilting": 2.04e-07, - "limestones": 2.04e-07, - "listers": 5.37e-08, - "litigating": 2.04e-07, - "littlefinger": 2.04e-07, - "longings": 2.04e-07, - "lozenge": 2.04e-07, - "lozenges": 2.04e-07, - "lso": 2.04e-07, - "lucass": 2.04e-07, - "lucifers": 2.04e-07, - "luma": 2.04e-07, - "lumina": 2.04e-07, - "lydon": 2.04e-07, - "lyttelton": 2.04e-07, - "macey": 2.04e-07, - "macromolecular": 2.04e-07, - "mada": 2.04e-07, - "magnifies": 2.04e-07, - "mahomes": 2.04e-07, - "malina": 2.04e-07, - "maratha": 2.04e-07, - "marblehead": 2.04e-07, - "marvins": 2.04e-07, - "masc": 2.04e-07, - "mayoralty": 2.04e-07, - "mbit": 2.04e-07, - "mcbain": 2.04e-07, - "mcclean": 2.04e-07, - "mccoll": 2.04e-07, - "mcconnells": 2.04e-07, - "mccoys": 1.07e-07, - "mcduck": 2.04e-07, - "mcw": 2.04e-07, - "mealtime": 2.04e-07, - "meany": 2.04e-07, - "meathead": 2.04e-07, - "medline": 2.04e-07, - "meerkats": 2.04e-07, - "melissas": 2.04e-07, - "meningococcal": 2.04e-07, - "menominee": 2.04e-07, - "michell": 2.04e-07, - "midsomer": 2.04e-07, - "mien": 2.04e-07, - "mikko": 2.04e-07, - "mimes": 2.04e-07, - "minefields": 2.04e-07, - "mineralized": 2.04e-07, - "mineralogical": 2.04e-07, - "mirko": 2.04e-07, - "misappropriated": 2.04e-07, - "mississippis": 2.04e-07, - "mitty": 2.04e-07, - "mnh": 2.04e-07, - "modigliani": 2.04e-07, - "molto": 2.04e-07, - "monotype": 2.04e-07, - "monro": 2.04e-07, - "montag": 2.04e-07, - "mopeds": 2.04e-07, - "morelos": 2.04e-07, - "mountings": 2.04e-07, - "mouthy": 2.04e-07, - "mox": 2.04e-07, - "mraz": 2.04e-07, - "mtt": 2.04e-07, - "muddied": 2.04e-07, - "mudslides": 2.04e-07, - "mulls": 2.04e-07, - "mumtaz": 2.04e-07, - "munchkins": 2.04e-07, - "murtagh": 2.04e-07, - "muzik": 2.04e-07, - "myrick": 2.04e-07, - "naam": 2.04e-07, - "naina": 2.04e-07, - "naturalised": 2.04e-07, - "navalny": 2.04e-07, - "nayarit": 2.04e-07, - "nazca": 2.04e-07, - "ncaas": 5.75e-08, - "neda": 2.04e-07, - "nek": 2.04e-07, - "nespresso": 2.04e-07, - "neuberger": 2.04e-07, - "newmark": 2.04e-07, - "nicoll": 2.04e-07, - "niner": 2.04e-07, - "nodule": 2.04e-07, - "nolte": 2.04e-07, - "nonbinary": 2.04e-07, - "nonfat": 2.04e-07, - "normalisation": 2.04e-07, - "normalise": 2.04e-07, - "nostrum": 2.04e-07, - "noto": 2.04e-07, - "novello": 2.04e-07, - "nsp": 2.04e-07, - "ntp": 2.04e-07, - "nup": 2.04e-07, - "oconnors": 2.04e-07, - "oaklands": 8.71e-08, - "obscenely": 2.04e-07, - "ocampo": 2.04e-07, - "octavo": 2.04e-07, - "octo": 2.04e-07, - "oer": 2.04e-07, - "ogs": 7.59e-08, - "onc": 2.04e-07, - "onlooker": 2.04e-07, - "ooooo": 2.04e-07, - "ooty": 2.04e-07, - "opticians": 2.04e-07, - "organometallic": 2.04e-07, - "orientalist": 2.04e-07, - "ose": 2.04e-07, - "oup": 2.04e-07, - "outstrip": 2.04e-07, - "overdrafts": 2.04e-07, - "overlaying": 2.04e-07, - "oversea": 2.04e-07, - "palatinate": 2.04e-07, - "palmieri": 2.04e-07, - "paneer": 2.04e-07, - "papillomavirus": 2.04e-07, - "parter": 2.04e-07, - "pastoralists": 2.04e-07, - "pathologically": 2.04e-07, - "pauling": 2.04e-07, - "paupers": 6.31e-08, - "pausanias": 2.04e-07, - "pch": 2.04e-07, - "pediment": 2.04e-07, - "penciled": 2.04e-07, - "penetrative": 2.04e-07, - "pennants": 2.04e-07, - "pepa": 2.04e-07, - "pergola": 2.04e-07, - "peripatetic": 2.04e-07, - "perverting": 2.04e-07, - "pienaar": 2.04e-07, - "pierpont": 2.04e-07, - "pillowcases": 2.04e-07, - "pimentel": 2.04e-07, - "pitiless": 2.04e-07, - "pki": 2.04e-07, - "plaintext": 2.04e-07, - "plante": 2.04e-07, - "playboys": 1.12e-07, - "poisonings": 2.04e-07, - "pokerstars": 2.04e-07, - "politicizing": 2.04e-07, - "polos": 6.92e-08, - "polyphony": 2.04e-07, - "pontefract": 2.04e-07, - "popularizing": 2.04e-07, - "poste": 2.04e-07, - "pothead": 2.04e-07, - "preemptively": 2.04e-07, - "preludes": 2.04e-07, - "prenuptial": 2.04e-07, - "preppers": 2.04e-07, - "prestons": 2.04e-07, - "prodigies": 2.04e-07, - "prokofiev": 2.04e-07, - "proliferative": 2.04e-07, - "prostaglandin": 2.04e-07, - "protrusions": 2.04e-07, - "prout": 2.04e-07, - "psychedelia": 2.04e-07, - "pulisic": 2.04e-07, - "purana": 2.04e-07, - "pushin": 2.04e-07, - "quatro": 2.04e-07, - "racialized": 2.04e-07, - "radionuclides": 2.04e-07, - "rads": 2.04e-07, - "ramaphosa": 2.04e-07, - "rapoport": 2.04e-07, - "rara": 2.04e-07, - "razorbacks": 2.04e-07, - "reconnection": 2.04e-07, - "redbox": 2.04e-07, - "redrawing": 2.04e-07, - "referent": 2.04e-07, - "renta": 2.04e-07, - "repenting": 2.04e-07, - "replant": 2.04e-07, - "replanting": 2.04e-07, - "reuven": 2.04e-07, - "reveling": 2.04e-07, - "riad": 2.04e-07, - "rial": 2.04e-07, - "rima": 2.04e-07, - "roadies": 2.04e-07, - "rosina": 2.04e-07, - "rothschilds": 7.76e-08, - "roxana": 2.04e-07, - "royle": 2.04e-07, - "rwby": 2.04e-07, - "rz": 2.04e-07, - "safi": 2.04e-07, - "saldanha": 2.04e-07, - "samarra": 2.04e-07, - "samberg": 2.04e-07, - "sanada": 2.04e-07, - "sandbar": 2.04e-07, - "sapa": 2.04e-07, - "sawa": 2.04e-07, - "sayyid": 2.04e-07, - "scarfs": 2.04e-07, - "scavenged": 2.04e-07, - "schist": 2.04e-07, - "schtick": 2.04e-07, - "schuller": 2.04e-07, - "scoresheet": 2.04e-07, - "scouse": 2.04e-07, - "scree": 2.04e-07, - "screwy": 2.04e-07, - "scrubby": 2.04e-07, - "searchlights": 2.04e-07, - "seismology": 2.04e-07, - "semiotic": 2.04e-07, - "sentai": 2.04e-07, - "sentosa": 2.04e-07, - "sequined": 2.04e-07, - "sexless": 2.04e-07, - "shahbaz": 2.04e-07, - "shedd": 2.04e-07, - "sheikhs": 7.08e-08, - "shimada": 2.04e-07, - "shippuden": 2.04e-07, - "shoah": 2.04e-07, - "shuttling": 2.04e-07, - "sigmar": 2.04e-07, - "similiar": 2.04e-07, - "sirte": 2.04e-07, - "sisyphus": 2.04e-07, - "sizemore": 2.04e-07, - "sizzles": 2.04e-07, - "skegness": 2.04e-07, - "slagging": 2.04e-07, - "slava": 2.04e-07, - "slimmed": 2.04e-07, - "smugness": 2.04e-07, - "sorel": 2.04e-07, - "spectrograph": 2.04e-07, - "spindly": 2.04e-07, - "spinel": 2.04e-07, - "spokespeople": 2.04e-07, - "springsteens": 2.04e-07, - "sqm": 2.04e-07, - "stebbins": 2.04e-07, - "steeles": 5.13e-08, - "steinbrenner": 2.04e-07, - "stepchildren": 2.04e-07, - "stephanies": 2.04e-07, - "ster": 2.04e-07, - "stf": 2.04e-07, - "stoddart": 2.04e-07, - "stonebridge": 2.04e-07, - "straightforwardly": 2.04e-07, - "strangles": 2.04e-07, - "subgenus": 2.04e-07, - "subic": 2.04e-07, - "sunbae": 2.04e-07, - "superfamily": 2.04e-07, - "supermax": 2.04e-07, - "swaggering": 2.04e-07, - "swindling": 2.04e-07, - "tahini": 2.04e-07, - "tailback": 2.04e-07, - "tailwind": 2.04e-07, - "takeuchi": 2.04e-07, - "tamu": 2.04e-07, - "tandon": 2.04e-07, - "tani": 2.04e-07, - "tantalising": 2.04e-07, - "taxman": 2.04e-07, - "tedeschi": 2.04e-07, - "teleporting": 2.04e-07, - "telfer": 2.04e-07, - "temptress": 2.04e-07, - "tewkesbury": 2.04e-07, - "theatricality": 2.04e-07, - "thk": 2.04e-07, - "throught": 2.04e-07, - "titillating": 2.04e-07, - "toba": 2.04e-07, - "toboggan": 2.04e-07, - "toho": 2.04e-07, - "tommorow": 2.04e-07, - "tormentor": 2.04e-07, - "torturer": 2.04e-07, - "toru": 2.04e-07, - "towpath": 2.04e-07, - "toynbee": 2.04e-07, - "transacted": 2.04e-07, - "travails": 2.04e-07, - "traversal": 2.04e-07, - "treme": 2.04e-07, - "tricare": 2.04e-07, - "truckloads": 2.04e-07, - "tullius": 2.04e-07, - "turku": 2.04e-07, - "tuvalu": 2.04e-07, - "ull": 6.17e-08, - "unbalance": 2.04e-07, - "underemployment": 2.04e-07, - "uneconomic": 2.04e-07, - "unga": 2.04e-07, - "unheated": 2.04e-07, - "unlearned": 2.04e-07, - "unquenchable": 2.04e-07, - "unshaven": 2.04e-07, - "upskirt": 2.04e-07, - "urinated": 2.04e-07, - "usha": 2.04e-07, - "utep": 2.04e-07, - "utsa": 2.04e-07, - "uup": 2.04e-07, - "vanden": 2.04e-07, - "vento": 2.04e-07, - "vico": 2.04e-07, - "videotaping": 2.04e-07, - "visayas": 2.04e-07, - "vivisection": 2.04e-07, - "vra": 2.04e-07, - "wacom": 2.04e-07, - "waitlist": 2.04e-07, - "walder": 2.04e-07, - "warframe": 2.04e-07, - "washboard": 2.04e-07, - "washoe": 2.04e-07, - "wegener": 2.04e-07, - "werth": 2.04e-07, - "wets": 2.04e-07, - "whinge": 2.04e-07, - "whitneys": 2.04e-07, - "whs": 2.04e-07, - "wiig": 2.04e-07, - "williamsons": 2.04e-07, - "willies": 2.04e-07, - "windstorm": 2.04e-07, - "wmc": 2.04e-07, - "wms": 2.04e-07, - "wolseley": 2.04e-07, - "workup": 2.04e-07, - "workwear": 2.04e-07, - "wyvern": 2.04e-07, - "xvideos": 2.04e-07, - "xxviii": 2.04e-07, - "yahoos": 1.32e-07, - "yeap": 2.04e-07, - "yeol": 2.04e-07, - "yggdrasil": 2.04e-07, - "yojana": 2.04e-07, - "zarathustra": 2.04e-07, - "zines": 2.04e-07, - "zits": 2.04e-07, - "abadi": 2e-07, - "abbeville": 2e-07, - "abbeys": 1.86e-07, - "abbottabad": 2e-07, - "aboveground": 2e-07, - "absentees": 2e-07, - "abuzz": 2e-07, - "accompanist": 2e-07, - "adan": 2e-07, - "adductor": 2e-07, - "adrians": 2e-07, - "aea": 2e-07, - "aedt": 2e-07, - "aeroflot": 2e-07, - "afferent": 2e-07, - "ajith": 2e-07, - "akatsuki": 2e-07, - "alaba": 2e-07, - "aligarh": 2e-07, - "allaah": 2e-07, - "aller": 2e-07, - "allerton": 2e-07, - "alleviates": 2e-07, - "allright": 2e-07, - "allys": 2e-07, - "alnwick": 2e-07, - "alpes": 2e-07, - "altcoins": 2e-07, - "amble": 2e-07, - "amortized": 2e-07, - "anadolu": 2e-07, - "antelopes": 2e-07, - "anyday": 2e-07, - "aoyama": 2e-07, - "approbation": 2e-07, - "arcadian": 2e-07, - "archaea": 2e-07, - "armes": 2e-07, - "arpa": 2e-07, - "arpeggios": 2e-07, - "atal": 2e-07, - "athlone": 2e-07, - "attentiveness": 2e-07, - "auburns": 2e-07, - "aurobindo": 2e-07, - "authorial": 2e-07, - "autres": 2e-07, - "avraham": 2e-07, - "babb": 2e-07, - "babson": 2e-07, - "backstrom": 2e-07, - "backtracked": 2e-07, - "baelish": 2e-07, - "bagwell": 2e-07, - "bahar": 2e-07, - "baily": 2e-07, - "balaji": 2e-07, - "balu": 2e-07, - "bandidos": 2e-07, - "bankrolled": 2e-07, - "barnhart": 2e-07, - "barrowman": 2e-07, - "bci": 2e-07, - "bdc": 2e-07, - "beaked": 2e-07, - "beaty": 2e-07, - "beecham": 2e-07, - "beggin": 2e-07, - "behemoths": 2e-07, - "bemidji": 2e-07, - "bended": 2e-07, - "berenice": 2e-07, - "bilayer": 2e-07, - "billows": 2e-07, - "binning": 2e-07, - "bizkit": 2e-07, - "blantyre": 2e-07, - "blindingly": 2e-07, - "blots": 2e-07, - "bogies": 2e-07, - "boilermakers": 2e-07, - "bojangles": 2e-07, - "bolsonaro": 2e-07, - "bootle": 2e-07, - "boren": 2e-07, - "bossier": 2e-07, - "brainwave": 2e-07, - "bratwurst": 2e-07, - "brickyard": 2e-07, - "brito": 2e-07, - "brutalist": 2e-07, - "bryony": 2e-07, - "buccal": 2e-07, - "buckaroo": 2e-07, - "bullocks": 1.62e-07, - "bunnings": 2e-07, - "burdick": 2e-07, - "burry": 2e-07, - "buttressed": 2e-07, - "bys": 2e-07, - "cablevision": 2e-07, - "caddo": 2e-07, - "californication": 2e-07, - "campari": 2e-07, - "carcassonne": 2e-07, - "carnahan": 2e-07, - "castellano": 2e-07, - "castellanos": 2e-07, - "ccgs": 2e-07, - "centerfold": 2e-07, - "centipedes": 2e-07, - "centrale": 2e-07, - "cerf": 2e-07, - "cerulean": 2e-07, - "cft": 2e-07, - "cgm": 2e-07, - "changeup": 2e-07, - "chappie": 2e-07, - "charterhouse": 2e-07, - "chatbot": 2e-07, - "chauvinistic": 2e-07, - "cheerfulness": 2e-07, - "chenoweth": 2e-07, - "chichi": 2e-07, - "chihiro": 2e-07, - "choudary": 2e-07, - "circumvention": 2e-07, - "claflin": 2e-07, - "clif": 2e-07, - "closers": 2e-07, - "coiling": 2e-07, - "coked": 2e-07, - "commode": 2e-07, - "compartmentalized": 2e-07, - "completly": 2e-07, - "condones": 2e-07, - "conquistadors": 2e-07, - "contextually": 2e-07, - "contravene": 2e-07, - "contre": 2e-07, - "convulsed": 2e-07, - "copolymers": 2e-07, - "counterfeiters": 2e-07, - "coupes": 2e-07, - "coursera": 2e-07, - "couturier": 2e-07, - "crackheads": 2e-07, - "craigie": 2e-07, - "crampton": 2e-07, - "cretins": 2e-07, - "crimewatch": 2e-07, - "crowleys": 2e-07, - "ctu": 2e-07, - "cumbrian": 2e-07, - "cunnilingus": 2e-07, - "cuoco": 2e-07, - "cytoskeleton": 2e-07, - "daemons": 2e-07, - "daud": 2e-07, - "dcr": 2e-07, - "decriminalize": 2e-07, - "deepthroat": 2e-07, - "deftones": 2e-07, - "defunding": 2e-07, - "demigods": 2e-07, - "demurred": 2e-07, - "dente": 2e-07, - "desecrate": 2e-07, - "despising": 2e-07, - "devore": 2e-07, - "dewalt": 2e-07, - "dfid": 2e-07, - "dimitris": 2e-07, - "dioxin": 2e-07, - "discernable": 2e-07, - "dispels": 2e-07, - "disrespects": 2e-07, - "dobie": 2e-07, - "docent": 2e-07, - "downplays": 2e-07, - "downstate": 2e-07, - "downturns": 2e-07, - "dramatize": 2e-07, - "dsb": 2e-07, - "dungeness": 2e-07, - "dunst": 2e-07, - "dvla": 2e-07, - "dyad": 2e-07, - "dystonia": 2e-07, - "earful": 2e-07, - "edifices": 2e-07, - "efflux": 2e-07, - "einem": 2e-07, - "elko": 2e-07, - "embolden": 2e-07, - "embossing": 2e-07, - "endeavoring": 2e-07, - "epicurean": 2e-07, - "epistolary": 2e-07, - "equalities": 2e-07, - "ericson": 2e-07, - "eruptive": 2e-07, - "esg": 2e-07, - "esm": 2e-07, - "evaluative": 2e-07, - "excercise": 2e-07, - "excrete": 2e-07, - "extol": 2e-07, - "fabry": 2e-07, - "fairplay": 2e-07, - "fangled": 2e-07, - "fash": 2e-07, - "fatalism": 2e-07, - "fava": 2e-07, - "feminized": 2e-07, - "ferromagnetic": 2e-07, - "fidgety": 2e-07, - "fiefdom": 2e-07, - "fightback": 2e-07, - "fijis": 2e-07, - "filamentous": 2e-07, - "fineness": 2e-07, - "finitely": 2e-07, - "fisticuffs": 2e-07, - "flavonoids": 2e-07, - "florins": 2e-07, - "foghorn": 2e-07, - "folios": 2e-07, - "francia": 2e-07, - "franklyn": 2e-07, - "fraying": 2e-07, - "freo": 2e-07, - "frictionless": 2e-07, - "frictions": 2e-07, - "friedmans": 2e-07, - "fuente": 2e-07, - "galilean": 2e-07, - "gargano": 2e-07, - "gaspard": 2e-07, - "gats": 2e-07, - "gautama": 2e-07, - "getafe": 2e-07, - "ghouta": 2e-07, - "glp": 2e-07, - "glucagon": 2e-07, - "glycoproteins": 2e-07, - "gpc": 2e-07, - "granule": 2e-07, - "gratin": 2e-07, - "gravesite": 2e-07, - "greenpoint": 2e-07, - "grouch": 2e-07, - "grunwald": 2e-07, - "guanine": 2e-07, - "guff": 2e-07, - "gummi": 2e-07, - "gunny": 2e-07, - "haben": 2e-07, - "hamdi": 2e-07, - "hamels": 2e-07, - "hankey": 2e-07, - "harasses": 2e-07, - "harleys": 1.1e-07, - "harpoons": 2e-07, - "harrisonburg": 2e-07, - "hashanah": 2e-07, - "hastening": 2e-07, - "hbr": 2e-07, - "headwind": 2e-07, - "hernandezs": 2e-07, - "hertha": 2e-07, - "hgv": 2e-07, - "hinterlands": 2e-07, - "hitchin": 2e-07, - "hoch": 2e-07, - "holidaying": 2e-07, - "holl": 2e-07, - "hollandaise": 2e-07, - "holts": 8.13e-08, - "homesteading": 2e-07, - "hometowns": 2e-07, - "hoppe": 2e-07, - "hospices": 2e-07, - "howto": 2e-07, - "hsin": 2e-07, - "hte": 2e-07, - "hyder": 2e-07, - "hypochondriac": 2e-07, - "hywel": 2e-07, - "idler": 2e-07, - "ift": 2e-07, - "ignominy": 2e-07, - "immortalised": 2e-07, - "inaba": 2e-07, - "indisposed": 2e-07, - "inducible": 2e-07, - "inequitable": 2e-07, - "inputting": 2e-07, - "interlocked": 2e-07, - "internazionale": 2e-07, - "intracoastal": 2e-07, - "introversion": 2e-07, - "iol": 2e-07, - "irkutsk": 2e-07, - "irvington": 2e-07, - "itachi": 2e-07, - "ivanova": 2e-07, - "iwas": 2e-07, - "jacobus": 2e-07, - "jahn": 2e-07, - "jango": 2e-07, - "jarod": 2e-07, - "jav": 2e-07, - "javid": 2e-07, - "jjs": 5.25e-08, - "joana": 2e-07, - "joiners": 2e-07, - "jorah": 2e-07, - "jps": 7.24e-08, - "junaid": 2e-07, - "kaman": 2e-07, - "kars": 2e-07, - "kashmiris": 2e-07, - "kati": 2e-07, - "kaul": 2e-07, - "keele": 2e-07, - "keels": 2e-07, - "kees": 1.7e-08, - "kellers": 2e-07, - "kellner": 2e-07, - "kellyanne": 2e-07, - "kenta": 2e-07, - "keokuk": 2e-07, - "kerfuffle": 2e-07, - "khatib": 2e-07, - "kilroy": 2e-07, - "kindles": 2e-07, - "kissin": 2e-07, - "kivu": 2e-07, - "kleinman": 2e-07, - "ksc": 2e-07, - "kvm": 2e-07, - "kyun": 2e-07, - "lacazette": 2e-07, - "lanai": 2e-07, - "landscaper": 2e-07, - "laurentian": 2e-07, - "lautrec": 2e-07, - "layin": 2e-07, - "lehner": 2e-07, - "lensing": 2e-07, - "liberalized": 2e-07, - "lightens": 2e-07, - "lochs": 2e-07, - "loess": 2e-07, - "lom": 2e-07, - "longmire": 2e-07, - "loudmouth": 2e-07, - "lucic": 2e-07, - "lucile": 2e-07, - "lunt": 2e-07, - "macarons": 2e-07, - "magnesia": 2e-07, - "mammon": 2e-07, - "marke": 2e-07, - "martys": 2e-07, - "marvelled": 2e-07, - "marvelously": 2e-07, - "marxian": 2e-07, - "mascherano": 2e-07, - "massimiliano": 2e-07, - "mathewson": 2e-07, - "mathilda": 2e-07, - "mayers": 1.02e-07, - "mciver": 2e-07, - "mclain": 2e-07, - "menards": 2e-07, - "menezes": 2e-07, - "metamorphosed": 2e-07, - "mfp": 2e-07, - "microcomputer": 2e-07, - "microseconds": 2e-07, - "middleburg": 2e-07, - "midges": 2e-07, - "misinterpreting": 2e-07, - "mista": 2e-07, - "mkx": 2e-07, - "moccasin": 2e-07, - "moet": 2e-07, - "mohsen": 2e-07, - "monasticism": 2e-07, - "monoculture": 2e-07, - "montane": 2e-07, - "moonwalk": 2e-07, - "morrigan": 2e-07, - "motherf": 2e-07, - "mpr": 2e-07, - "mso": 2e-07, - "mtu": 2e-07, - "mulvey": 2e-07, - "mumbais": 2e-07, - "municipally": 2e-07, - "musselburgh": 2e-07, - "mwd": 2e-07, - "nakano": 2e-07, - "nansen": 2e-07, - "napped": 2e-07, - "nasties": 2e-07, - "natalies": 2e-07, - "nde": 2e-07, - "neals": 2e-07, - "neary": 2e-07, - "needlepoint": 2e-07, - "neuralgia": 2e-07, - "newscasts": 2e-07, - "niosh": 2e-07, - "nipper": 2e-07, - "nitrile": 2e-07, - "nkjv": 2e-07, - "noblesse": 2e-07, - "normandie": 2e-07, - "nortons": 2e-07, - "nosql": 2e-07, - "novosti": 2e-07, - "noy": 2e-07, - "nullifying": 2e-07, - "nuncio": 2e-07, - "nuova": 2e-07, - "nurtures": 2e-07, - "nvidias": 2e-07, - "oakleigh": 2e-07, - "obstructs": 2e-07, - "obtrusive": 2e-07, - "odins": 2e-07, - "ogling": 2e-07, - "oink": 2e-07, - "oligopoly": 2e-07, - "olympiakos": 2e-07, - "oocytes": 2e-07, - "openstack": 2e-07, - "opine": 2e-07, - "optimising": 2e-07, - "orde": 2e-07, - "orford": 2e-07, - "orienting": 2e-07, - "orland": 2e-07, - "orthographic": 2e-07, - "ostia": 2e-07, - "oswalds": 2e-07, - "othe": 2e-07, - "otolaryngology": 2e-07, - "overeat": 2e-07, - "overrode": 2e-07, - "paisa": 2e-07, - "palaeontology": 2e-07, - "palomar": 2e-07, - "pankaj": 2e-07, - "parfum": 2e-07, - "patisserie": 2e-07, - "pbt": 2e-07, - "peaceably": 2e-07, - "perishing": 2e-07, - "pernod": 2e-07, - "petticoats": 2e-07, - "philemon": 2e-07, - "photoelectric": 2e-07, - "photosensitive": 2e-07, - "photoshoots": 2e-07, - "phra": 2e-07, - "picot": 2e-07, - "pilasters": 2e-07, - "pileup": 2e-07, - "pincers": 2e-07, - "pincher": 2e-07, - "pinkman": 2e-07, - "piscataway": 2e-07, - "plainview": 2e-07, - "playwriting": 2e-07, - "plotlines": 2e-07, - "polanco": 2e-07, - "policemans": 2e-07, - "polytheism": 2e-07, - "pontoons": 2e-07, - "pooley": 2e-07, - "popeyes": 1.51e-07, - "portent": 2e-07, - "posers": 2e-07, - "poul": 2e-07, - "prana": 2e-07, - "prayerful": 2e-07, - "precipitates": 2e-07, - "predominates": 2e-07, - "prek": 2e-07, - "prepper": 2e-07, - "preselection": 2e-07, - "proffer": 2e-07, - "profiteers": 2e-07, - "prospectively": 2e-07, - "protozoa": 2e-07, - "provolone": 2e-07, - "prow": 2e-07, - "prunus": 2e-07, - "pyd": 2e-07, - "radamel": 2e-07, - "raincoats": 2e-07, - "raitt": 2e-07, - "ramsden": 2e-07, - "raper": 2e-07, - "rater": 2e-07, - "rcb": 2e-07, - "readin": 2e-07, - "reallocation": 2e-07, - "reassign": 2e-07, - "reconvened": 2e-07, - "redditch": 2e-07, - "redesigns": 2e-07, - "reductionist": 2e-07, - "reevaluation": 2e-07, - "regulus": 2e-07, - "rehydration": 2e-07, - "reigate": 2e-07, - "reined": 2e-07, - "rejoins": 2e-07, - "rekindling": 2e-07, - "reliquary": 2e-07, - "renderer": 2e-07, - "repopulate": 2e-07, - "republica": 2e-07, - "rerum": 2e-07, - "resisters": 2e-07, - "resourcing": 2e-07, - "retouched": 2e-07, - "reverberated": 2e-07, - "rha": 2e-07, - "rimming": 2e-07, - "rinne": 2e-07, - "rolo": 2e-07, - "romanticize": 2e-07, - "roomed": 2e-07, - "rosebery": 2e-07, - "roshi": 2e-07, - "rpf": 2e-07, - "rsm": 2e-07, - "rumen": 2e-07, - "russe": 2e-07, - "rustlers": 2e-07, - "ruthven": 2e-07, - "saco": 2e-07, - "sadc": 2e-07, - "salamis": 2e-07, - "samarkand": 2e-07, - "sammie": 2e-07, - "sangre": 2e-07, - "santoro": 2e-07, - "sardinian": 2e-07, - "sarita": 2e-07, - "sarwar": 2e-07, - "satsuki": 2e-07, - "saturating": 2e-07, - "sauk": 2e-07, - "sauls": 2e-07, - "scalpers": 2e-07, - "scarily": 2e-07, - "sched": 2e-07, - "schizoid": 2e-07, - "schoen": 2e-07, - "scholz": 2e-07, - "scientologist": 2e-07, - "screener": 2e-07, - "scrounge": 2e-07, - "scurried": 2e-07, - "seiji": 2e-07, - "seppuku": 2e-07, - "septembers": 2e-07, - "sepulveda": 2e-07, - "serenas": 2e-07, - "sext": 2e-07, - "seyfried": 2e-07, - "shapeshifting": 2e-07, - "shawarma": 2e-07, - "shelvey": 2e-07, - "shepards": 2e-07, - "shibata": 2e-07, - "shipmates": 2e-07, - "showa": 2e-07, - "shum": 2e-07, - "shutterstock": 2e-07, - "sicken": 2e-07, - "signups": 2e-07, - "simp": 2e-07, - "sinatras": 2e-07, - "sleeplessness": 2e-07, - "sleuthing": 2e-07, - "slumdog": 2e-07, - "smote": 2e-07, - "sockeye": 2e-07, - "sofitel": 2e-07, - "softwood": 2e-07, - "sojourner": 2e-07, - "solas": 2e-07, - "solicits": 2e-07, - "solus": 2e-07, - "soppy": 2e-07, - "soundboard": 2e-07, - "souped": 2e-07, - "souris": 2e-07, - "spaniels": 2e-07, - "spartak": 2e-07, - "ssri": 2e-07, - "starmer": 2e-07, - "steagall": 2e-07, - "steiger": 2e-07, - "stellas": 2e-07, - "sterilised": 2e-07, - "sterilizing": 2e-07, - "steroidal": 2e-07, - "stornoway": 2e-07, - "strafford": 2e-07, - "stranraer": 2e-07, - "stumpy": 2e-07, - "stupa": 2e-07, - "subcompact": 2e-07, - "subdural": 2e-07, - "submerging": 2e-07, - "subsp": 2e-07, - "succour": 2e-07, - "sulcus": 2e-07, - "suntrust": 2e-07, - "supa": 2e-07, - "superwoman": 2e-07, - "svensson": 2e-07, - "swc": 2e-07, - "swr": 2e-07, - "talcum": 2e-07, - "talksport": 2e-07, - "talmadge": 2e-07, - "tamp": 2e-07, - "teddys": 2e-07, - "telecaster": 2e-07, - "tepco": 2e-07, - "tepper": 2e-07, - "tetrahedron": 2e-07, - "thiem": 2e-07, - "thornberry": 2e-07, - "thorsten": 2e-07, - "thunderdome": 2e-07, - "thurrock": 2e-07, - "topiary": 2e-07, - "tota": 2e-07, - "tracheal": 2e-07, - "traill": 2e-07, - "trannies": 2e-07, - "transversely": 2e-07, - "trevino": 2e-07, - "tribunes": 9.55e-08, - "tricolour": 2e-07, - "trivially": 2e-07, - "turbos": 2e-07, - "turnabout": 2e-07, - "turnouts": 2e-07, - "twente": 2e-07, - "typ": 2e-07, - "ugandans": 2e-07, - "uist": 2e-07, - "ulbricht": 2e-07, - "understate": 2e-07, - "undistinguished": 2e-07, - "unfailingly": 2e-07, - "unobserved": 2e-07, - "unprincipled": 2e-07, - "unrepresented": 2e-07, - "unshakeable": 2e-07, - "unspeakably": 2e-07, - "unwound": 2e-07, - "upsc": 2e-07, - "upsides": 2e-07, - "usin": 2e-07, - "vampiric": 2e-07, - "vanda": 2e-07, - "vanek": 2e-07, - "vanes": 2e-07, - "vapours": 2e-07, - "vari": 2e-07, - "variational": 2e-07, - "vaux": 2e-07, - "vdc": 2e-07, - "velar": 2e-07, - "verbena": 2e-07, - "verdis": 2e-07, - "vigilantism": 2e-07, - "villegas": 2e-07, - "virtus": 2e-07, - "volkov": 2e-07, - "volpe": 2e-07, - "vvd": 2e-07, - "waals": 2e-07, - "wargames": 2e-07, - "warmups": 2e-07, - "washtenaw": 2e-07, - "weald": 2e-07, - "weingarten": 2e-07, - "weitz": 2e-07, - "wendi": 2e-07, - "westjet": 2e-07, - "whalley": 2e-07, - "wheatgrass": 2e-07, - "whitford": 2e-07, - "widener": 2e-07, - "wildes": 5.75e-08, - "windex": 2e-07, - "wladimir": 2e-07, - "wofford": 2e-07, - "wogan": 2e-07, - "woodchuck": 2e-07, - "wooldridge": 2e-07, - "wylde": 2e-07, - "xis": 8.13e-08, - "yaar": 2e-07, - "yogic": 2e-07, - "yugo": 2e-07, - "yuval": 2e-07, - "ziploc": 2e-07, - "zito": 2e-07, - "abled": 1.95e-07, - "aboot": 1.95e-07, - "acha": 1.95e-07, - "adana": 1.95e-07, - "admonish": 1.95e-07, - "adrianne": 1.95e-07, - "affectation": 1.95e-07, - "agger": 1.95e-07, - "akc": 1.95e-07, - "akuma": 1.95e-07, - "alessio": 1.95e-07, - "allston": 1.95e-07, - "allways": 1.95e-07, - "altarpiece": 1.95e-07, - "ambushing": 1.95e-07, - "andalucia": 1.95e-07, - "angeline": 1.95e-07, - "annotate": 1.95e-07, - "anther": 1.95e-07, - "anthers": 1.95e-07, - "applique": 1.95e-07, - "arak": 1.95e-07, - "arjen": 1.95e-07, - "arshad": 1.95e-07, - "artes": 1.95e-07, - "arusha": 1.95e-07, - "assi": 1.95e-07, - "atlus": 1.95e-07, - "audis": 1.07e-07, - "azteca": 1.95e-07, - "bachata": 1.95e-07, - "balancer": 1.95e-07, - "ballesteros": 1.95e-07, - "barham": 1.95e-07, - "basterds": 1.95e-07, - "basti": 1.95e-07, - "bathgate": 1.95e-07, - "bathwater": 1.95e-07, - "bauble": 1.95e-07, - "bayt": 1.95e-07, - "beall": 1.95e-07, - "bebo": 1.95e-07, - "bedazzled": 1.95e-07, - "bedfellows": 1.95e-07, - "beefcake": 1.95e-07, - "behrens": 1.95e-07, - "belen": 1.95e-07, - "bemoan": 1.95e-07, - "benet": 1.95e-07, - "bergkamp": 1.95e-07, - "berklee": 1.95e-07, - "bgp": 1.95e-07, - "bigwigs": 1.95e-07, - "billable": 1.95e-07, - "binney": 1.95e-07, - "bioterrorism": 1.95e-07, - "birches": 1.95e-07, - "birkbeck": 1.95e-07, - "bisected": 1.95e-07, - "blab": 1.95e-07, - "blakey": 1.95e-07, - "bleecker": 1.95e-07, - "blowfish": 1.95e-07, - "bogle": 1.95e-07, - "bogor": 1.95e-07, - "bondsman": 1.95e-07, - "bookmaking": 1.95e-07, - "boreholes": 1.95e-07, - "boruto": 1.95e-07, - "bosa": 1.95e-07, - "boseman": 1.95e-07, - "bosons": 1.95e-07, - "boult": 1.95e-07, - "bowker": 1.95e-07, - "boyden": 1.95e-07, - "brendans": 1.95e-07, - "broadsword": 1.95e-07, - "brogue": 1.95e-07, - "bta": 1.95e-07, - "buffeted": 1.95e-07, - "bulbasaur": 1.95e-07, - "buttigieg": 1.95e-07, - "cabeza": 1.95e-07, - "caddies": 1.95e-07, - "calvo": 1.95e-07, - "canby": 1.95e-07, - "cannibalistic": 1.95e-07, - "carissa": 1.95e-07, - "carti": 1.95e-07, - "carvers": 1.2e-07, - "casework": 1.95e-07, - "caulk": 1.95e-07, - "cct": 1.95e-07, - "cdcs": 5.01e-08, - "chancellery": 1.95e-07, - "chanson": 1.95e-07, - "chatrooms": 1.95e-07, - "chea": 1.95e-07, - "cherubs": 1.95e-07, - "chitchat": 1.95e-07, - "chittenden": 1.95e-07, - "chokehold": 1.95e-07, - "churros": 1.95e-07, - "cincinnatis": 1.95e-07, - "cinderellas": 1.95e-07, - "circ": 1.95e-07, - "clearings": 1.95e-07, - "cloying": 1.95e-07, - "coalescing": 1.95e-07, - "cobweb": 1.95e-07, - "coffs": 1.95e-07, - "collegium": 1.95e-07, - "colonialists": 1.95e-07, - "commodus": 1.95e-07, - "complementarity": 1.95e-07, - "compositing": 1.95e-07, - "conakry": 1.95e-07, - "connemara": 1.95e-07, - "conserves": 1.95e-07, - "conspires": 1.95e-07, - "coord": 1.95e-07, - "coram": 1.95e-07, - "corea": 1.95e-07, - "cored": 1.95e-07, - "counteracting": 1.95e-07, - "cowie": 1.95e-07, - "craic": 1.95e-07, - "credentialed": 1.95e-07, - "credulous": 1.95e-07, - "criminologist": 1.95e-07, - "crocheting": 1.95e-07, - "crossbody": 1.95e-07, - "crystallised": 1.95e-07, - "crystallographic": 1.95e-07, - "curvilinear": 1.95e-07, - "cush": 1.95e-07, - "cutts": 1.95e-07, - "cytosol": 1.95e-07, - "daiquiri": 1.95e-07, - "dalglish": 1.95e-07, - "damen": 1.95e-07, - "dauphine": 1.95e-07, - "debauched": 1.95e-07, - "dehydrate": 1.95e-07, - "delon": 1.95e-07, - "delong": 1.95e-07, - "demerara": 1.95e-07, - "demote": 1.95e-07, - "dependants": 1.95e-07, - "deportees": 1.95e-07, - "derisively": 1.95e-07, - "designee": 1.95e-07, - "despaired": 1.95e-07, - "deterrents": 1.95e-07, - "dfe": 1.95e-07, - "dga": 1.95e-07, - "digitizer": 1.95e-07, - "dims": 1.95e-07, - "dirksen": 1.95e-07, - "distributional": 1.95e-07, - "diwan": 1.95e-07, - "dlamini": 1.95e-07, - "doki": 1.95e-07, - "dpd": 1.95e-07, - "drafters": 1.95e-07, - "dropship": 1.95e-07, - "dsd": 1.95e-07, - "dstv": 1.95e-07, - "dualistic": 1.95e-07, - "ducted": 1.95e-07, - "duffys": 1.95e-07, - "dunwoody": 1.95e-07, - "dwt": 1.95e-07, - "dysfunctions": 1.95e-07, - "dzeko": 1.95e-07, - "edification": 1.95e-07, - "edwardsville": 1.95e-07, - "eeo": 1.95e-07, - "eet": 1.95e-07, - "efc": 1.95e-07, - "einen": 1.95e-07, - "electroshock": 1.95e-07, - "elem": 1.95e-07, - "eliots": 1.95e-07, - "elopement": 1.95e-07, - "elucidation": 1.95e-07, - "eman": 1.95e-07, - "embellishing": 1.95e-07, - "emmitt": 1.95e-07, - "enceladus": 1.95e-07, - "encirclement": 1.95e-07, - "endocarditis": 1.95e-07, - "enfants": 1.95e-07, - "epiphone": 1.95e-07, - "equestria": 1.95e-07, - "equivocation": 1.95e-07, - "erh": 1.95e-07, - "erlang": 1.95e-07, - "eschews": 1.95e-07, - "esher": 1.95e-07, - "estimators": 1.95e-07, - "estonians": 1.95e-07, - "eubank": 1.95e-07, - "evel": 1.95e-07, - "everthing": 1.95e-07, - "exemplifying": 1.95e-07, - "exhibitionism": 1.95e-07, - "extremis": 1.95e-07, - "eyeballing": 1.95e-07, - "fabricator": 1.95e-07, - "facemask": 1.95e-07, - "factionalism": 1.95e-07, - "fagin": 1.95e-07, - "fah": 1.95e-07, - "fahd": 1.95e-07, - "fak": 1.95e-07, - "falconry": 1.95e-07, - "fanclub": 1.95e-07, - "fanfics": 1.95e-07, - "fanservice": 1.95e-07, - "fbr": 1.95e-07, - "fecundity": 1.95e-07, - "fetid": 1.95e-07, - "ffc": 1.95e-07, - "ffffff": 1.95e-07, - "fica": 1.95e-07, - "fini": 1.95e-07, - "fishermens": 1.95e-07, - "fishmonger": 1.95e-07, - "fixings": 1.95e-07, - "flamethrowers": 1.95e-07, - "flapped": 1.95e-07, - "flatters": 1.95e-07, - "floodplains": 1.95e-07, - "fmv": 1.95e-07, - "foiling": 1.95e-07, - "forasmuch": 1.95e-07, - "foreknowledge": 1.95e-07, - "foxboro": 1.95e-07, - "fretboard": 1.95e-07, - "friedel": 1.95e-07, - "frisch": 1.95e-07, - "frisian": 1.95e-07, - "frosh": 1.95e-07, - "fss": 1.95e-07, - "fuckhead": 1.95e-07, - "fujimori": 1.95e-07, - "furtado": 1.95e-07, - "fz": 1.95e-07, - "gacy": 1.95e-07, - "gae": 1.95e-07, - "garrard": 1.95e-07, - "gatineau": 1.95e-07, - "gearboxes": 1.95e-07, - "generalissimo": 1.95e-07, - "geralt": 1.95e-07, - "ghandi": 1.95e-07, - "glycosylation": 1.95e-07, - "glyndebourne": 1.95e-07, - "gook": 1.95e-07, - "gopi": 1.95e-07, - "gori": 1.95e-07, - "goy": 1.95e-07, - "gree": 1.95e-07, - "griffen": 1.95e-07, - "groff": 1.95e-07, - "groundnut": 1.95e-07, - "groundswell": 1.95e-07, - "grump": 1.95e-07, - "gyros": 1.95e-07, - "hags": 1.95e-07, - "hamden": 1.95e-07, - "haploid": 1.95e-07, - "havers": 1.95e-07, - "hawn": 1.95e-07, - "hearken": 1.95e-07, - "hegarty": 1.95e-07, - "henk": 1.95e-07, - "hersey": 1.95e-07, - "hiragana": 1.95e-07, - "histrionic": 1.95e-07, - "hoary": 1.95e-07, - "hoffenheim": 1.95e-07, - "homebase": 1.95e-07, - "homos": 1.95e-07, - "hoodlum": 1.95e-07, - "hoody": 1.95e-07, - "hpe": 1.95e-07, - "hydrogel": 1.95e-07, - "hyperloop": 1.95e-07, - "icebreakers": 1.95e-07, - "iet": 1.95e-07, - "iger": 1.95e-07, - "ihe": 1.95e-07, - "ilse": 1.95e-07, - "imad": 1.95e-07, - "immensity": 1.95e-07, - "impersonations": 1.95e-07, - "impregnating": 1.95e-07, - "improbably": 1.95e-07, - "imputation": 1.95e-07, - "inculcate": 1.95e-07, - "indole": 1.95e-07, - "ingratitude": 1.95e-07, - "inheritors": 1.95e-07, - "integrally": 1.95e-07, - "intelligibility": 1.95e-07, - "interlocutors": 1.95e-07, - "internalization": 1.95e-07, - "interoperable": 1.95e-07, - "intransigent": 1.95e-07, - "involvements": 1.95e-07, - "ipas": 5.75e-08, - "irascible": 1.95e-07, - "iro": 1.95e-07, - "iru": 1.95e-07, - "isdn": 1.95e-07, - "iwa": 1.95e-07, - "izzard": 1.95e-07, - "jacinta": 1.95e-07, - "jacketed": 1.95e-07, - "jacopo": 1.95e-07, - "jammies": 1.95e-07, - "jangling": 1.95e-07, - "jann": 1.95e-07, - "jansson": 1.95e-07, - "jeered": 1.95e-07, - "jerrold": 1.95e-07, - "jilly": 1.95e-07, - "jockeying": 1.95e-07, - "jolts": 1.95e-07, - "jussi": 1.95e-07, - "kaep": 1.95e-07, - "kailua": 1.95e-07, - "kaji": 1.95e-07, - "kalle": 1.95e-07, - "karas": 1.23e-07, - "karolinska": 1.95e-07, - "katherines": 1.95e-07, - "katsu": 1.95e-07, - "kaw": 1.95e-07, - "kcl": 1.95e-07, - "keenum": 1.95e-07, - "kennington": 1.95e-07, - "kfar": 1.95e-07, - "kochs": 1.62e-07, - "kogi": 1.95e-07, - "kongo": 1.95e-07, - "krampus": 1.95e-07, - "kurzweil": 1.95e-07, - "kyc": 1.95e-07, - "lading": 1.95e-07, - "langue": 1.95e-07, - "largemouth": 1.95e-07, - "larrabee": 1.95e-07, - "laundries": 1.95e-07, - "lavelle": 1.95e-07, - "layups": 1.95e-07, - "leafed": 1.95e-07, - "legalities": 1.95e-07, - "leighs": 1.95e-07, - "leroux": 1.95e-07, - "leukocyte": 1.95e-07, - "liberates": 1.95e-07, - "liberman": 1.95e-07, - "lii": 1.95e-07, - "lindner": 1.95e-07, - "linley": 1.95e-07, - "lipase": 1.95e-07, - "lippi": 1.95e-07, - "lithographic": 1.95e-07, - "livewire": 1.95e-07, - "llm": 1.95e-07, - "lmg": 1.95e-07, - "lollies": 1.95e-07, - "loro": 1.95e-07, - "lovelock": 1.95e-07, - "lunching": 1.95e-07, - "lusitania": 1.95e-07, - "lynton": 1.95e-07, - "macadam": 1.95e-07, - "macromolecules": 1.95e-07, - "madinah": 1.95e-07, - "mafioso": 1.95e-07, - "magnetometer": 1.95e-07, - "magnitsky": 1.95e-07, - "mahalo": 1.95e-07, - "mahoning": 1.95e-07, - "maintainers": 1.95e-07, - "malema": 1.95e-07, - "maliks": 1.95e-07, - "manufactory": 1.95e-07, - "marcela": 1.95e-07, - "maree": 1.95e-07, - "marimba": 1.95e-07, - "marly": 1.95e-07, - "martialed": 1.95e-07, - "marton": 1.95e-07, - "marwick": 1.95e-07, - "marymount": 1.95e-07, - "matin": 1.95e-07, - "mattia": 1.95e-07, - "maumee": 1.95e-07, - "mauritanian": 1.95e-07, - "mbas": 1.95e-07, - "mcnamee": 1.95e-07, - "meatpacking": 1.95e-07, - "medians": 1.95e-07, - "melendez": 1.95e-07, - "memoria": 1.95e-07, - "menaced": 1.95e-07, - "mephisto": 1.95e-07, - "mercure": 1.95e-07, - "mestizo": 1.95e-07, - "mgh": 1.95e-07, - "michaelmas": 1.95e-07, - "microrna": 1.95e-07, - "microwaved": 1.95e-07, - "midyear": 1.95e-07, - "millan": 1.95e-07, - "minesweeper": 1.95e-07, - "minnetonka": 1.95e-07, - "miscegenation": 1.95e-07, - "misogynists": 1.95e-07, - "mkr": 1.95e-07, - "mnuchin": 1.95e-07, - "monumentally": 1.95e-07, - "moree": 1.95e-07, - "morne": 1.95e-07, - "mortification": 1.95e-07, - "mucky": 1.95e-07, - "mudder": 1.95e-07, - "musee": 1.95e-07, - "musgrove": 1.95e-07, - "mustafi": 1.95e-07, - "mycenaean": 1.95e-07, - "myo": 1.95e-07, - "naca": 1.95e-07, - "nacht": 1.95e-07, - "nagato": 1.95e-07, - "nasheed": 1.95e-07, - "nationalize": 1.95e-07, - "nazar": 1.95e-07, - "nels": 1.95e-07, - "newbold": 1.95e-07, - "newfangled": 1.95e-07, - "nflpa": 1.95e-07, - "nieves": 1.95e-07, - "nigella": 1.95e-07, - "ningbo": 1.95e-07, - "nissans": 5.01e-08, - "nittany": 1.95e-07, - "nobunaga": 1.95e-07, - "nonstick": 1.95e-07, - "nontrivial": 1.95e-07, - "notley": 1.95e-07, - "npv": 1.95e-07, - "ntu": 1.95e-07, - "numerator": 1.95e-07, - "nuthin": 1.95e-07, - "nutjob": 1.95e-07, - "nutritive": 1.95e-07, - "oberst": 1.95e-07, - "objectify": 1.95e-07, - "oceanographer": 1.95e-07, - "offscreen": 1.95e-07, - "ogdensburg": 1.95e-07, - "ohana": 1.95e-07, - "ois": 1.95e-07, - "omelettes": 1.95e-07, - "oncogene": 1.95e-07, - "ontologies": 1.95e-07, - "orem": 1.95e-07, - "orhan": 1.95e-07, - "oshie": 1.95e-07, - "othman": 1.95e-07, - "outrigger": 1.95e-07, - "overestimating": 1.95e-07, - "overstuffed": 1.95e-07, - "padukone": 1.95e-07, - "palomino": 1.95e-07, - "pancetta": 1.95e-07, - "pappus": 1.07e-08, - "parlours": 1.95e-07, - "pawnbroker": 1.95e-07, - "payee": 1.95e-07, - "peaty": 1.95e-07, - "pedantry": 1.95e-07, - "pedros": 1.95e-07, - "peltier": 1.95e-07, - "perigee": 1.95e-07, - "pervaded": 1.95e-07, - "pesetas": 1.95e-07, - "phenix": 1.95e-07, - "phenylalanine": 1.95e-07, - "phono": 1.95e-07, - "photocopied": 1.95e-07, - "pinkney": 1.95e-07, - "pinwheel": 1.95e-07, - "pinyin": 1.95e-07, - "piri": 1.95e-07, - "pitstop": 1.95e-07, - "playability": 1.95e-07, - "plexiglass": 1.95e-07, - "poignantly": 1.95e-07, - "poona": 1.95e-07, - "populating": 1.95e-07, - "postsynaptic": 1.95e-07, - "poynter": 1.95e-07, - "practicum": 1.95e-07, - "preceptor": 1.95e-07, - "prefects": 1.95e-07, - "preloaded": 1.95e-07, - "pressurization": 1.95e-07, - "profuse": 1.95e-07, - "promulgate": 1.95e-07, - "prosody": 1.95e-07, - "proteolytic": 1.95e-07, - "prudish": 1.95e-07, - "psychically": 1.95e-07, - "pterodactyl": 1.95e-07, - "ptp": 1.95e-07, - "pulau": 1.95e-07, - "pullen": 1.95e-07, - "pulsars": 1.95e-07, - "puna": 1.95e-07, - "quesadillas": 1.95e-07, - "quranic": 1.26e-07, - "radiofrequency": 1.95e-07, - "rafiq": 1.95e-07, - "raipur": 1.95e-07, - "raksha": 1.95e-07, - "rammstein": 1.95e-07, - "randys": 1.95e-07, - "rappahannock": 1.95e-07, - "rasping": 1.95e-07, - "ratting": 1.95e-07, - "reasserted": 1.95e-07, - "recognizance": 1.95e-07, - "recoiled": 1.95e-07, - "recriminations": 1.95e-07, - "redaction": 1.95e-07, - "redden": 1.95e-07, - "redid": 1.95e-07, - "redolent": 1.95e-07, - "reestablishing": 1.95e-07, - "refectory": 1.95e-07, - "regia": 1.95e-07, - "rehoboth": 1.95e-07, - "rendell": 1.95e-07, - "retooled": 1.95e-07, - "reveled": 1.95e-07, - "reverberate": 1.95e-07, - "rhizomes": 1.95e-07, - "ribbentrop": 1.95e-07, - "ringworm": 1.95e-07, - "riveras": 1.95e-07, - "robredo": 1.95e-07, - "rogerson": 1.95e-07, - "rohrabacher": 1.95e-07, - "romagna": 1.95e-07, - "ronde": 1.95e-07, - "roofer": 1.95e-07, - "rossum": 1.95e-07, - "rrb": 1.95e-07, - "rumination": 1.95e-07, - "sago": 1.95e-07, - "samaj": 1.95e-07, - "sampdoria": 1.95e-07, - "sania": 1.95e-07, - "sattler": 1.95e-07, - "scharf": 1.95e-07, - "schoolteachers": 1.95e-07, - "scornful": 1.95e-07, - "scrunch": 1.95e-07, - "scull": 1.95e-07, - "secretes": 1.95e-07, - "secularists": 1.95e-07, - "sella": 1.95e-07, - "serhiy": 1.95e-07, - "serous": 1.95e-07, - "sfi": 1.95e-07, - "sfv": 1.95e-07, - "shanties": 1.95e-07, - "shawns": 1.95e-07, - "shepparton": 1.95e-07, - "shhhhh": 1.95e-07, - "shirking": 1.95e-07, - "shitstorm": 1.95e-07, - "shp": 1.95e-07, - "shula": 1.95e-07, - "signposted": 1.95e-07, - "sklar": 1.95e-07, - "slippy": 1.95e-07, - "slovene": 1.95e-07, - "smallholder": 1.95e-07, - "smarting": 1.95e-07, - "smidgen": 1.95e-07, - "smurfette": 1.95e-07, - "snitched": 1.95e-07, - "sods": 1.95e-07, - "sok": 1.95e-07, - "sondra": 1.95e-07, - "songstress": 1.95e-07, - "sorter": 1.95e-07, - "southsea": 1.95e-07, - "sparc": 1.95e-07, - "sparklers": 1.95e-07, - "spirituals": 1.95e-07, - "spitalfields": 1.95e-07, - "spouted": 1.95e-07, - "squamish": 1.95e-07, - "squib": 1.95e-07, - "starrer": 1.95e-07, - "statler": 1.95e-07, - "steadier": 1.95e-07, - "steerage": 1.95e-07, - "stepford": 1.95e-07, - "stereos": 1.95e-07, - "stillwell": 1.95e-07, - "structuralism": 1.95e-07, - "stylishly": 1.95e-07, - "suey": 1.95e-07, - "sumi": 1.95e-07, - "sundar": 1.95e-07, - "sunless": 1.95e-07, - "superfan": 1.95e-07, - "susa": 1.95e-07, - "swathe": 1.95e-07, - "swordsmen": 1.95e-07, - "synchronisation": 1.95e-07, - "synonymy": 1.95e-07, - "syriza": 1.95e-07, - "tabata": 1.95e-07, - "taff": 1.95e-07, - "taffeta": 1.95e-07, - "tangerines": 1.95e-07, - "tapir": 1.95e-07, - "tapp": 1.95e-07, - "tci": 1.95e-07, - "teck": 1.95e-07, - "tegucigalpa": 1.95e-07, - "teheran": 1.95e-07, - "telemundo": 1.95e-07, - "teleports": 1.95e-07, - "tengo": 1.95e-07, - "terrill": 1.95e-07, - "tfr": 1.95e-07, - "theorie": 1.95e-07, - "thinners": 1.95e-07, - "thomasville": 1.95e-07, - "thome": 1.95e-07, - "thruway": 1.95e-07, - "tiaras": 1.95e-07, - "tibor": 1.95e-07, - "timms": 1.95e-07, - "titos": 1.95e-07, - "toney": 1.95e-07, - "tonite": 1.95e-07, - "torsional": 1.95e-07, - "tracie": 1.95e-07, - "triathletes": 1.95e-07, - "trigeminal": 1.95e-07, - "trin": 1.95e-07, - "troon": 1.95e-07, - "twains": 1.95e-07, - "twiddling": 1.95e-07, - "tydfil": 1.95e-07, - "tze": 1.95e-07, - "ubiquitin": 1.95e-07, - "ucr": 1.95e-07, - "uda": 1.95e-07, - "udder": 1.95e-07, - "udi": 1.95e-07, - "ueda": 1.95e-07, - "ulloa": 1.95e-07, - "unaudited": 1.95e-07, - "uncategorized": 1.95e-07, - "uncoupling": 1.95e-07, - "undernourished": 1.95e-07, - "unequally": 1.95e-07, - "unforgiven": 1.95e-07, - "unleavened": 1.95e-07, - "unquestioning": 1.95e-07, - "unripe": 1.95e-07, - "unseasonably": 1.95e-07, - "unstated": 1.95e-07, - "unwinnable": 1.95e-07, - "vaclav": 1.95e-07, - "varley": 1.95e-07, - "vasa": 1.95e-07, - "vasculitis": 1.95e-07, - "vce": 1.95e-07, - "ventilate": 1.95e-07, - "verner": 1.95e-07, - "veronicas": 1.17e-07, - "vies": 1.95e-07, - "vijayawada": 1.95e-07, - "violinists": 1.95e-07, - "votre": 1.95e-07, - "vrs": 1.95e-07, - "waken": 1.95e-07, - "walley": 1.95e-07, - "wdc": 1.95e-07, - "welled": 1.95e-07, - "werder": 1.95e-07, - "werke": 1.95e-07, - "whataburger": 1.95e-07, - "whinging": 1.95e-07, - "whitelaw": 1.95e-07, - "wiggin": 1.95e-07, - "windbreaker": 1.95e-07, - "winstone": 1.95e-07, - "winx": 1.95e-07, - "wj": 1.95e-07, - "wonk": 1.95e-07, - "woooo": 1.95e-07, - "workbooks": 1.95e-07, - "wpp": 1.95e-07, - "wraiths": 1.95e-07, - "wringer": 1.95e-07, - "wrinkling": 1.95e-07, - "writeup": 1.95e-07, - "xiong": 1.95e-07, - "yankton": 1.95e-07, - "yeezys": 1.95e-07, - "yim": 1.95e-07, - "yobe": 1.95e-07, - "yossi": 1.95e-07, - "yuuki": 1.95e-07, - "yuvraj": 1.95e-07, - "zeman": 1.95e-07, - "zhuang": 1.95e-07, - "zwischen": 1.95e-07, - "aab": 1.91e-07, - "abaddon": 1.91e-07, - "abbasi": 1.91e-07, - "abbi": 1.91e-07, - "abergavenny": 1.91e-07, - "abhors": 1.91e-07, - "accelerometers": 1.91e-07, - "achille": 1.91e-07, - "adina": 1.91e-07, - "adulterers": 1.91e-07, - "adventists": 1.91e-07, - "aftereffects": 1.91e-07, - "agata": 1.91e-07, - "aggregators": 1.91e-07, - "agin": 1.91e-07, - "ainge": 1.91e-07, - "ajmer": 1.91e-07, - "akmal": 1.91e-07, - "alfreds": 1.91e-07, - "alim": 1.91e-07, - "alpharetta": 1.91e-07, - "aniline": 1.91e-07, - "anklet": 1.91e-07, - "anteater": 1.91e-07, - "antihero": 1.91e-07, - "antitank": 1.91e-07, - "applicators": 1.91e-07, - "aqi": 1.91e-07, - "arxiv": 1.91e-07, - "asch": 1.91e-07, - "ashutosh": 1.91e-07, - "aspersions": 1.91e-07, - "athene": 1.91e-07, - "aurangzeb": 1.91e-07, - "autoplay": 1.91e-07, - "awacs": 1.91e-07, - "ayah": 1.91e-07, - "aylmer": 1.91e-07, - "babette": 1.91e-07, - "bache": 1.91e-07, - "backwardness": 1.91e-07, - "bads": 9.33e-08, - "balto": 1.91e-07, - "barakat": 1.91e-07, - "barros": 1.91e-07, - "bartered": 1.91e-07, - "baselines": 1.91e-07, - "batson": 1.91e-07, - "beanies": 1.91e-07, - "belair": 1.91e-07, - "belial": 1.91e-07, - "bellicose": 1.91e-07, - "berner": 1.91e-07, - "besting": 1.91e-07, - "bexhill": 1.91e-07, - "bicameral": 1.91e-07, - "biogeography": 1.91e-07, - "biomed": 1.91e-07, - "birthrate": 1.91e-07, - "biscay": 1.91e-07, - "bitsy": 1.91e-07, - "biya": 1.91e-07, - "blakeney": 1.91e-07, - "blotch": 1.91e-07, - "bonar": 1.91e-07, - "bonehead": 1.91e-07, - "bonhoeffer": 1.91e-07, - "bons": 1.91e-07, - "booz": 1.91e-07, - "borel": 1.91e-07, - "bostock": 1.91e-07, - "bravos": 1.26e-07, - "brazzers": 1.91e-07, - "breaux": 1.91e-07, - "bridgetown": 1.91e-07, - "broadwater": 1.91e-07, - "bronfman": 1.91e-07, - "brushstrokes": 1.91e-07, - "bsnl": 1.91e-07, - "bullen": 1.91e-07, - "bumi": 1.91e-07, - "bunkhouse": 1.91e-07, - "bushido": 1.91e-07, - "bvb": 1.91e-07, - "byun": 1.91e-07, - "cabled": 1.91e-07, - "calabrese": 1.91e-07, - "callousness": 1.91e-07, - "cambridges": 1.91e-07, - "cantos": 1.91e-07, - "canuck": 1.91e-07, - "capistrano": 1.91e-07, - "carolingian": 1.91e-07, - "cassis": 1.91e-07, - "categorise": 1.91e-07, - "categorizes": 1.91e-07, - "cbj": 1.91e-07, - "chafed": 1.91e-07, - "changelog": 1.91e-07, - "chantel": 1.91e-07, - "chek": 1.91e-07, - "chemie": 1.91e-07, - "cheval": 1.91e-07, - "chinks": 1.91e-07, - "chosun": 1.91e-07, - "christinas": 1.91e-07, - "cigna": 1.91e-07, - "claridge": 1.91e-07, - "clg": 1.91e-07, - "clobber": 1.91e-07, - "clothier": 1.91e-07, - "coattails": 1.91e-07, - "cochabamba": 1.91e-07, - "cockpits": 1.91e-07, - "codeword": 1.91e-07, - "coleen": 1.91e-07, - "collinson": 1.91e-07, - "comorbid": 1.91e-07, - "confit": 1.91e-07, - "conglomeration": 1.91e-07, - "connotes": 1.91e-07, - "conscientiousness": 1.91e-07, - "considine": 1.91e-07, - "consignments": 1.91e-07, - "consignor": 1.91e-07, - "contrivance": 1.91e-07, - "conversed": 1.91e-07, - "convos": 1.91e-07, - "copperhead": 1.91e-07, - "coriolis": 1.91e-07, - "cormack": 1.91e-07, - "corpsman": 1.91e-07, - "correia": 1.91e-07, - "cortese": 1.91e-07, - "costlier": 1.91e-07, - "courtneys": 1.91e-07, - "crb": 1.91e-07, - "creech": 1.91e-07, - "creepier": 1.91e-07, - "creoles": 1.91e-07, - "crisscross": 1.91e-07, - "crowdfunded": 1.91e-07, - "ctp": 1.91e-07, - "cultivator": 1.91e-07, - "curlew": 1.91e-07, - "cytosolic": 1.91e-07, - "dahlias": 1.91e-07, - "debaters": 1.91e-07, - "decelerate": 1.91e-07, - "declassification": 1.91e-07, - "degrom": 1.91e-07, - "denigrated": 1.91e-07, - "devoe": 1.91e-07, - "dexterous": 1.91e-07, - "didcot": 1.91e-07, - "dieters": 1.91e-07, - "digitize": 1.91e-07, - "digoxin": 1.91e-07, - "dilettante": 1.91e-07, - "disenfranchise": 1.91e-07, - "disfiguring": 1.91e-07, - "disinclined": 1.91e-07, - "divines": 1.91e-07, - "dogshit": 1.91e-07, - "donelson": 1.91e-07, - "dorothys": 1.91e-07, - "dorsally": 1.91e-07, - "downpayment": 1.91e-07, - "dragonite": 1.91e-07, - "dreamworld": 1.91e-07, - "drescher": 1.91e-07, - "dth": 1.91e-07, - "dualshock": 1.91e-07, - "duodenum": 1.91e-07, - "durin": 1.91e-07, - "dushanbe": 1.91e-07, - "dusts": 1.91e-07, - "dwelled": 1.91e-07, - "dyno": 1.91e-07, - "eagan": 1.91e-07, - "ebc": 1.91e-07, - "echocardiography": 1.91e-07, - "eckhardt": 1.91e-07, - "eckstein": 1.91e-07, - "effacing": 1.91e-07, - "egotism": 1.91e-07, - "eichel": 1.91e-07, - "eilish": 1.91e-07, - "ells": 1.91e-07, - "elsas": 1.91e-07, - "elytra": 1.91e-07, - "emanuele": 1.91e-07, - "embargoes": 1.91e-07, - "emotes": 1.91e-07, - "empath": 1.91e-07, - "encircles": 1.91e-07, - "endothelium": 1.91e-07, - "enola": 1.91e-07, - "enraptured": 1.91e-07, - "ensnare": 1.91e-07, - "ergodic": 1.91e-07, - "ery": 1.91e-07, - "esh": 1.91e-07, - "eventhough": 1.91e-07, - "ewww": 1.91e-07, - "exalts": 1.91e-07, - "explainable": 1.91e-07, - "expressionless": 1.91e-07, - "extruder": 1.91e-07, - "fangio": 1.91e-07, - "fanzine": 1.91e-07, - "farfetched": 1.91e-07, - "fatalistic": 1.91e-07, - "fathead": 1.91e-07, - "favelas": 1.91e-07, - "fawad": 1.91e-07, - "fct": 1.91e-07, - "federica": 1.91e-07, - "ffxv": 1.91e-07, - "fiercer": 1.91e-07, - "fillon": 1.91e-07, - "finis": 1.91e-07, - "finna": 1.91e-07, - "finned": 1.91e-07, - "fischers": 1.91e-07, - "flsa": 1.91e-07, - "foisted": 1.91e-07, - "fok": 1.91e-07, - "foll": 1.91e-07, - "foreshadows": 1.91e-07, - "fount": 1.91e-07, - "fountainhead": 1.91e-07, - "fov": 1.91e-07, - "franchisor": 1.91e-07, - "frappuccino": 1.91e-07, - "fricken": 1.91e-07, - "frumpy": 1.91e-07, - "fuckable": 1.91e-07, - "fujii": 1.91e-07, - "funhouse": 1.91e-07, - "funnest": 1.91e-07, - "gaddafis": 1.91e-07, - "gaels": 1.91e-07, - "gainsbourg": 1.91e-07, - "gamba": 1.91e-07, - "garp": 1.91e-07, - "gasquet": 1.91e-07, - "gauntlets": 1.91e-07, - "gawler": 1.91e-07, - "genealogists": 1.91e-07, - "gillman": 1.91e-07, - "giotto": 1.91e-07, - "gladiatorial": 1.91e-07, - "glioma": 1.91e-07, - "globus": 1.91e-07, - "goalscorers": 1.91e-07, - "gondolas": 1.91e-07, - "gooden": 1.91e-07, - "gosselin": 1.91e-07, - "gotha": 1.91e-07, - "gracilis": 1.91e-07, - "graco": 1.91e-07, - "granderson": 1.91e-07, - "grandstands": 1.91e-07, - "gratify": 1.91e-07, - "grift": 1.91e-07, - "grigory": 1.91e-07, - "grovel": 1.91e-07, - "grunted": 1.91e-07, - "gujrat": 1.91e-07, - "gwb": 1.91e-07, - "haase": 1.91e-07, - "habermas": 1.91e-07, - "haemoglobin": 1.91e-07, - "hakuna": 1.91e-07, - "hali": 1.91e-07, - "handa": 1.91e-07, - "handrails": 1.91e-07, - "hannay": 1.91e-07, - "harmonisation": 1.91e-07, - "hastert": 1.91e-07, - "hayter": 1.91e-07, - "headwinds": 1.91e-07, - "heartened": 1.91e-07, - "heathers": 1.58e-07, - "hepatocellular": 1.91e-07, - "hfcs": 1.91e-07, - "hii": 1.91e-07, - "hillis": 1.91e-07, - "hls": 1.91e-07, - "hofstadter": 1.91e-07, - "homecare": 1.91e-07, - "hoodwinked": 1.91e-07, - "horticulturist": 1.91e-07, - "howson": 1.91e-07, - "hullabaloo": 1.91e-07, - "hulled": 1.91e-07, - "humayun": 1.91e-07, - "hunches": 1.91e-07, - "huskers": 1.91e-07, - "huss": 1.91e-07, - "huxtable": 1.91e-07, - "hyattsville": 1.91e-07, - "hydroxylase": 1.91e-07, - "hygienists": 1.91e-07, - "hyperlinks": 1.91e-07, - "hypoallergenic": 1.91e-07, - "icarly": 1.91e-07, - "icici": 1.91e-07, - "idr": 1.91e-07, - "immobilization": 1.91e-07, - "immuno": 1.91e-07, - "impingement": 1.91e-07, - "imprimatur": 1.91e-07, - "inbev": 1.91e-07, - "incan": 1.91e-07, - "incarnated": 1.91e-07, - "incentivized": 1.91e-07, - "incinerators": 1.91e-07, - "inspiron": 1.91e-07, - "intelsat": 1.91e-07, - "internecine": 1.91e-07, - "intertwine": 1.91e-07, - "invalidates": 1.91e-07, - "invitees": 1.91e-07, - "irretrievably": 1.91e-07, - "isola": 1.91e-07, - "ivans": 1.91e-07, - "jacko": 1.91e-07, - "jangle": 1.91e-07, - "janusz": 1.91e-07, - "jaxx": 1.91e-07, - "jds": 1.2e-07, - "jedediah": 1.91e-07, - "jefe": 1.91e-07, - "jellybean": 1.91e-07, - "jenners": 6.03e-08, - "jere": 1.91e-07, - "jeri": 1.91e-07, - "jermain": 1.91e-07, - "jiji": 1.91e-07, - "joaquim": 1.91e-07, - "joly": 1.91e-07, - "jozef": 1.91e-07, - "judean": 1.91e-07, - "judicially": 1.91e-07, - "judys": 1.91e-07, - "jumbotron": 1.91e-07, - "kafir": 1.91e-07, - "kanazawa": 1.91e-07, - "karnak": 1.91e-07, - "karoo": 1.91e-07, - "kasumi": 1.91e-07, - "keitel": 1.91e-07, - "khadija": 1.91e-07, - "kingly": 1.91e-07, - "kitchenware": 1.91e-07, - "kody": 1.91e-07, - "koop": 1.91e-07, - "kora": 1.91e-07, - "koren": 1.91e-07, - "koss": 1.91e-07, - "krantz": 1.91e-07, - "kress": 1.91e-07, - "kumars": 1.91e-07, - "kurts": 1.91e-07, - "kwara": 1.91e-07, - "labo": 1.91e-07, - "laboriously": 1.91e-07, - "lacerated": 1.91e-07, - "lagers": 1.91e-07, - "lameness": 1.91e-07, - "lamprey": 1.91e-07, - "lariat": 1.91e-07, - "layperson": 1.91e-07, - "leatherhead": 1.91e-07, - "lense": 1.91e-07, - "leonor": 1.91e-07, - "levene": 1.91e-07, - "levenson": 1.91e-07, - "lightsabers": 1.91e-07, - "limehouse": 1.91e-07, - "linke": 1.91e-07, - "littlewood": 1.91e-07, - "liveliness": 1.91e-07, - "lls": 1.91e-07, - "lmc": 1.91e-07, - "lns": 1.91e-07, - "loathes": 1.91e-07, - "lobbing": 1.91e-07, - "lockstep": 1.91e-07, - "lordes": 1.91e-07, - "lorrie": 1.91e-07, - "louisvilles": 1.91e-07, - "ltp": 1.91e-07, - "lucious": 1.91e-07, - "lyfe": 1.91e-07, - "lysosomal": 1.91e-07, - "macready": 1.91e-07, - "madd": 1.91e-07, - "madhuri": 1.91e-07, - "madiba": 1.91e-07, - "magdeburg": 1.91e-07, - "maharajah": 1.91e-07, - "mainsail": 1.91e-07, - "maire": 1.91e-07, - "maldon": 1.91e-07, - "mannerism": 1.91e-07, - "mannion": 1.91e-07, - "marden": 1.91e-07, - "marquardt": 1.91e-07, - "marshalled": 1.91e-07, - "martinsburg": 1.91e-07, - "mashups": 1.91e-07, - "matz": 1.91e-07, - "maximums": 1.91e-07, - "maye": 1.91e-07, - "mcclendon": 1.91e-07, - "mccready": 1.91e-07, - "mcgann": 1.91e-07, - "mckesson": 1.91e-07, - "mckim": 1.91e-07, - "mcnuggets": 1.91e-07, - "meissner": 1.91e-07, - "melange": 1.91e-07, - "melly": 1.91e-07, - "menage": 1.91e-07, - "mende": 1.91e-07, - "merion": 1.91e-07, - "messner": 1.91e-07, - "metatron": 1.91e-07, - "metra": 1.91e-07, - "metropole": 1.91e-07, - "micromanage": 1.91e-07, - "millinery": 1.91e-07, - "millman": 1.91e-07, - "minting": 1.91e-07, - "mireille": 1.91e-07, - "mishmash": 1.91e-07, - "misplace": 1.91e-07, - "mizoram": 1.91e-07, - "mkv": 1.91e-07, - "mlbs": 1.91e-07, - "moieties": 1.91e-07, - "mollusk": 1.91e-07, - "monero": 1.91e-07, - "moneymaker": 1.91e-07, - "monfils": 1.91e-07, - "montagne": 1.91e-07, - "morpheme": 1.91e-07, - "morphemes": 1.91e-07, - "moskva": 1.91e-07, - "moura": 1.91e-07, - "mouses": 6.46e-08, - "mtm": 1.91e-07, - "mto": 1.91e-07, - "muffle": 1.91e-07, - "multiethnic": 1.91e-07, - "multiplexed": 1.91e-07, - "mundt": 1.91e-07, - "murrayfield": 1.91e-07, - "mycorrhizal": 1.91e-07, - "nadeem": 1.91e-07, - "nadph": 1.91e-07, - "nahi": 1.91e-07, - "nanas": 6.92e-08, - "nanowires": 1.91e-07, - "narwhal": 1.91e-07, - "nathanson": 1.91e-07, - "necker": 1.91e-07, - "neonates": 1.91e-07, - "neurosurgical": 1.91e-07, - "nge": 1.91e-07, - "niccolo": 1.91e-07, - "niet": 1.91e-07, - "nixed": 1.91e-07, - "nomine": 1.91e-07, - "nondiscrimination": 1.91e-07, - "nordisk": 1.91e-07, - "novembers": 1.91e-07, - "nyan": 1.91e-07, - "obfuscate": 1.91e-07, - "obo": 1.91e-07, - "odinga": 1.91e-07, - "officialdom": 1.91e-07, - "offloaded": 1.91e-07, - "onboarding": 1.91e-07, - "ophthalmologists": 1.91e-07, - "orangeburg": 1.91e-07, - "orators": 1.91e-07, - "ossie": 1.91e-07, - "ostend": 1.91e-07, - "outtake": 1.91e-07, - "ovations": 1.91e-07, - "overclocking": 1.91e-07, - "overpayment": 1.91e-07, - "overstayed": 1.91e-07, - "overtone": 1.91e-07, - "owari": 1.91e-07, - "pakenham": 1.91e-07, - "paled": 1.91e-07, - "pallbearers": 1.91e-07, - "pampa": 1.91e-07, - "pandya": 1.91e-07, - "panellists": 1.91e-07, - "pantsuit": 1.91e-07, - "parasympathetic": 1.91e-07, - "partido": 1.91e-07, - "pascals": 1.91e-07, - "patanjali": 1.91e-07, - "pato": 1.91e-07, - "pattys": 1.91e-07, - "pecks": 9.33e-08, - "pedicures": 1.91e-07, - "peggys": 1.91e-07, - "pel": 1.91e-07, - "pelly": 1.91e-07, - "perioperative": 1.91e-07, - "persepolis": 1.91e-07, - "pinstripes": 1.91e-07, - "pipette": 1.91e-07, - "pirating": 1.91e-07, - "piso": 1.91e-07, - "pitty": 1.91e-07, - "pizzazz": 1.91e-07, - "plexiglas": 1.91e-07, - "plimpton": 1.91e-07, - "polina": 1.91e-07, - "pomade": 1.91e-07, - "poppet": 1.91e-07, - "porsches": 1.38e-07, - "portadown": 1.91e-07, - "porthole": 1.91e-07, - "pratts": 1.91e-07, - "predispose": 1.91e-07, - "prego": 1.91e-07, - "preparer": 1.91e-07, - "presuppositions": 1.91e-07, - "privatise": 1.91e-07, - "psionic": 1.91e-07, - "psni": 1.91e-07, - "pth": 1.91e-07, - "puckered": 1.91e-07, - "pumper": 1.91e-07, - "puritanism": 1.91e-07, - "puro": 1.91e-07, - "puto": 1.91e-07, - "quadrennial": 1.91e-07, - "rabinowitz": 1.91e-07, - "ragging": 1.91e-07, - "rania": 1.91e-07, - "rappaport": 1.91e-07, - "rashmi": 1.91e-07, - "ratcheting": 1.91e-07, - "rauf": 1.91e-07, - "rayna": 1.91e-07, - "realigned": 1.91e-07, - "reena": 1.91e-07, - "refactoring": 1.91e-07, - "refiner": 1.91e-07, - "regensburg": 1.91e-07, - "reimagine": 1.91e-07, - "rela": 1.91e-07, - "relived": 1.91e-07, - "remainers": 1.91e-07, - "renounces": 1.91e-07, - "reorganised": 1.91e-07, - "repackage": 1.91e-07, - "repping": 1.91e-07, - "retraced": 1.91e-07, - "retroviral": 1.91e-07, - "riek": 1.91e-07, - "ringmaster": 1.91e-07, - "riv": 1.91e-07, - "riverhead": 1.91e-07, - "ronstadt": 1.91e-07, - "rop": 1.91e-07, - "roseland": 1.91e-07, - "rosemarie": 1.91e-07, - "rosier": 1.91e-07, - "rosser": 1.91e-07, - "roxane": 1.91e-07, - "rpo": 1.91e-07, - "rtm": 1.91e-07, - "rtx": 1.91e-07, - "ruminating": 1.91e-07, - "saadi": 1.91e-07, - "saleswoman": 1.91e-07, - "samos": 1.91e-07, - "sandburg": 1.91e-07, - "sande": 1.91e-07, - "sandrine": 1.91e-07, - "sanna": 1.91e-07, - "sarai": 1.91e-07, - "satiric": 1.91e-07, - "satoru": 1.91e-07, - "sausalito": 1.91e-07, - "scarp": 1.91e-07, - "schemer": 1.91e-07, - "schizophrenics": 1.91e-07, - "schleicher": 1.91e-07, - "schmeichel": 1.91e-07, - "scrapyard": 1.91e-07, - "screamers": 1.91e-07, - "seasick": 1.91e-07, - "sengoku": 1.91e-07, - "seta": 1.91e-07, - "sextant": 1.91e-07, - "sgc": 1.91e-07, - "shalimar": 1.91e-07, - "shambhala": 1.91e-07, - "shamir": 1.91e-07, - "shareware": 1.91e-07, - "shinigami": 1.91e-07, - "shoop": 1.91e-07, - "shuttled": 1.91e-07, - "signifier": 1.91e-07, - "simcity": 1.91e-07, - "sinensis": 1.91e-07, - "siti": 1.91e-07, - "skews": 1.91e-07, - "skillz": 1.91e-07, - "skinless": 1.91e-07, - "skirmishing": 1.91e-07, - "skydiver": 1.91e-07, - "smasher": 1.91e-07, - "smirks": 1.91e-07, - "smooches": 1.91e-07, - "sneakily": 1.91e-07, - "socked": 1.91e-07, - "softwares": 1.38e-07, - "soled": 1.91e-07, - "somos": 1.91e-07, - "soraya": 1.91e-07, - "soupy": 1.91e-07, - "spectrometers": 1.91e-07, - "splashy": 1.91e-07, - "spotifys": 1.91e-07, - "starched": 1.91e-07, - "stargazer": 1.91e-07, - "statecraft": 1.91e-07, - "stationing": 1.91e-07, - "stato": 1.91e-07, - "stoller": 1.91e-07, - "submitter": 1.91e-07, - "subroutines": 1.91e-07, - "subtotal": 1.91e-07, - "sugared": 1.91e-07, - "sugden": 1.91e-07, - "summoner": 1.91e-07, - "suncorp": 1.91e-07, - "suntan": 1.91e-07, - "superyacht": 1.91e-07, - "surreptitious": 1.91e-07, - "swirly": 1.91e-07, - "synching": 1.91e-07, - "szechuan": 1.91e-07, - "tachibana": 1.91e-07, - "taichi": 1.91e-07, - "tailpipe": 1.91e-07, - "takeo": 1.91e-07, - "tamimi": 1.91e-07, - "tamiya": 1.91e-07, - "tanis": 1.91e-07, - "targ": 1.91e-07, - "tarleton": 1.91e-07, - "tase": 1.91e-07, - "teodoro": 1.91e-07, - "terrapin": 1.91e-07, - "thiruvananthapuram": 1.91e-07, - "tiernan": 1.91e-07, - "tighe": 1.91e-07, - "tings": 1.91e-07, - "tiptoeing": 1.91e-07, - "tomoe": 1.91e-07, - "toph": 1.91e-07, - "topher": 1.91e-07, - "topically": 1.91e-07, - "toros": 1.15e-07, - "townley": 1.91e-07, - "tpd": 1.91e-07, - "tramping": 1.91e-07, - "traviata": 1.91e-07, - "trendsetter": 1.91e-07, - "trimmers": 1.91e-07, - "troys": 1.91e-07, - "truncation": 1.91e-07, - "tubules": 1.91e-07, - "tuco": 1.91e-07, - "twining": 1.91e-07, - "uch": 1.91e-07, - "umbilicus": 1.91e-07, - "ume": 1.91e-07, - "uncivil": 1.91e-07, - "underlay": 1.91e-07, - "undershirt": 1.91e-07, - "understory": 1.91e-07, - "unerring": 1.91e-07, - "unf": 1.91e-07, - "unfriend": 1.91e-07, - "uninstalling": 1.91e-07, - "unpredictably": 1.91e-07, - "unrepresentative": 1.91e-07, - "unsavoury": 1.91e-07, - "untruthful": 1.91e-07, - "unum": 1.91e-07, - "ura": 1.91e-07, - "uscis": 1.91e-07, - "vali": 1.91e-07, - "valkyries": 1.91e-07, - "vancomycin": 1.91e-07, - "vasculature": 1.91e-07, - "vegetal": 1.91e-07, - "veld": 1.91e-07, - "venerate": 1.91e-07, - "victimless": 1.91e-07, - "ving": 1.91e-07, - "viol": 1.91e-07, - "votto": 1.91e-07, - "vst": 1.91e-07, - "waldemar": 1.91e-07, - "wantonly": 1.91e-07, - "wapping": 1.91e-07, - "washrooms": 1.91e-07, - "wazir": 1.91e-07, - "wenzel": 1.91e-07, - "westfall": 1.91e-07, - "wetherby": 1.91e-07, - "whiskeys": 1.91e-07, - "wielder": 1.91e-07, - "wigwam": 1.91e-07, - "winningest": 1.91e-07, - "wmds": 1.91e-07, - "wombats": 1.91e-07, - "worryingly": 1.91e-07, - "wreaks": 1.91e-07, - "wretches": 1.91e-07, - "wroclaw": 1.91e-07, - "wuxi": 1.91e-07, - "wynonna": 1.91e-07, - "xlr": 1.91e-07, - "xun": 1.91e-07, - "yaakov": 1.91e-07, - "yahtzee": 1.91e-07, - "yeas": 1.91e-07, - "yesh": 1.91e-07, - "yogis": 1.91e-07, - "yoni": 1.91e-07, - "youse": 1.26e-08, - "zachs": 1.91e-07, - "zanesville": 1.91e-07, - "aai": 1.86e-07, - "abating": 1.86e-07, - "ableist": 1.86e-07, - "abr": 1.86e-07, - "abrogation": 1.86e-07, - "abstractly": 1.86e-07, - "abuela": 1.86e-07, - "abuts": 1.86e-07, - "adenauer": 1.86e-07, - "adepts": 1.86e-07, - "afflecks": 1.86e-07, - "aggressions": 1.86e-07, - "agosto": 1.86e-07, - "ainu": 1.86e-07, - "aircon": 1.86e-07, - "akagi": 1.86e-07, - "akai": 1.86e-07, - "alby": 1.86e-07, - "alibis": 1.86e-07, - "allspice": 1.86e-07, - "alternators": 1.86e-07, - "altmann": 1.86e-07, - "aminu": 1.86e-07, - "amsterdams": 1.86e-07, - "amyloidosis": 1.86e-07, - "androgyny": 1.86e-07, - "anesthetized": 1.86e-07, - "angelika": 1.86e-07, - "annecy": 1.86e-07, - "anodized": 1.86e-07, - "anoxic": 1.86e-07, - "antis": 1.86e-07, - "antofagasta": 1.86e-07, - "apatow": 1.86e-07, - "ashdod": 1.86e-07, - "assamese": 1.86e-07, - "assayed": 1.86e-07, - "assizes": 1.86e-07, - "asymptotically": 1.86e-07, - "atrophied": 1.86e-07, - "augustines": 1.86e-07, - "auk": 1.86e-07, - "automatics": 1.86e-07, - "aymara": 1.86e-07, - "ayyy": 1.86e-07, - "babbage": 1.86e-07, - "babymetal": 1.86e-07, - "backflips": 1.86e-07, - "balan": 1.86e-07, - "ballance": 1.86e-07, - "bandera": 1.86e-07, - "bangui": 1.86e-07, - "bannockburn": 1.86e-07, - "barat": 1.86e-07, - "barbadian": 1.86e-07, - "barnstaple": 1.86e-07, - "barrs": 1.86e-07, - "bartolomeo": 1.86e-07, - "barzani": 1.86e-07, - "bassinet": 1.86e-07, - "baying": 1.86e-07, - "bcr": 1.86e-07, - "beatin": 1.86e-07, - "beechwood": 1.86e-07, - "beh": 1.86e-07, - "behaviorist": 1.86e-07, - "belch": 1.86e-07, - "bellum": 1.86e-07, - "bemoaned": 1.86e-07, - "bentleys": 1.35e-07, - "besser": 1.86e-07, - "bestiary": 1.86e-07, - "bgm": 1.86e-07, - "bibliotheca": 1.86e-07, - "bilderberg": 1.86e-07, - "biomolecules": 1.86e-07, - "birks": 1.86e-07, - "biscotti": 1.86e-07, - "bjarne": 1.86e-07, - "blinky": 1.86e-07, - "bloombergs": 1.86e-07, - "bloomin": 1.86e-07, - "blowed": 1.86e-07, - "blundered": 1.86e-07, - "bnc": 1.86e-07, - "bodine": 1.86e-07, - "boggle": 1.86e-07, - "bolland": 1.86e-07, - "bombast": 1.86e-07, - "bootstraps": 1.86e-07, - "bravura": 1.86e-07, - "bridgeman": 1.86e-07, - "brp": 1.86e-07, - "brumbies": 1.86e-07, - "buchenwald": 1.86e-07, - "buckskin": 1.86e-07, - "bulma": 1.86e-07, - "bulwer": 1.86e-07, - "buncha": 1.86e-07, - "buona": 1.86e-07, - "burne": 1.86e-07, - "burpees": 1.86e-07, - "bustamante": 1.86e-07, - "buu": 1.86e-07, - "cabbies": 1.86e-07, - "calabash": 1.86e-07, - "caliphs": 1.86e-07, - "canio": 1.86e-07, - "careening": 1.86e-07, - "caricatured": 1.86e-07, - "carillon": 1.86e-07, - "catchments": 1.86e-07, - "caton": 1.86e-07, - "cavaliere": 1.86e-07, - "cento": 1.86e-07, - "chafee": 1.86e-07, - "chagas": 1.86e-07, - "challis": 1.86e-07, - "chastened": 1.86e-07, - "chatbots": 1.86e-07, - "chattahoochee": 1.86e-07, - "chatterton": 1.86e-07, - "chav": 1.86e-07, - "checksum": 1.86e-07, - "cheneys": 1.86e-07, - "chepstow": 1.86e-07, - "cheryls": 1.86e-07, - "chicagoans": 1.86e-07, - "chie": 1.86e-07, - "chilies": 1.86e-07, - "choosers": 1.86e-07, - "choses": 1.86e-07, - "christines": 1.86e-07, - "ciders": 1.86e-07, - "clares": 1.86e-07, - "clarinets": 1.86e-07, - "clinking": 1.86e-07, - "clojure": 1.86e-07, - "cluny": 1.86e-07, - "coasted": 1.86e-07, - "cochlea": 1.86e-07, - "coeducational": 1.86e-07, - "coldfield": 1.86e-07, - "colonise": 1.86e-07, - "colquhoun": 1.86e-07, - "commedia": 1.86e-07, - "compostela": 1.86e-07, - "conc": 1.86e-07, - "concatenation": 1.86e-07, - "concertina": 1.86e-07, - "contravened": 1.86e-07, - "copula": 1.86e-07, - "corley": 1.86e-07, - "cormorants": 1.86e-07, - "corriere": 1.86e-07, - "corruptions": 1.86e-07, - "councilmember": 1.86e-07, - "coveralls": 1.86e-07, - "cpsc": 1.86e-07, - "crespo": 1.86e-07, - "crisper": 1.86e-07, - "crofton": 1.86e-07, - "crooning": 1.86e-07, - "crosswalks": 1.86e-07, - "cruikshank": 1.86e-07, - "crumpets": 1.86e-07, - "ctd": 1.86e-07, - "cuadrado": 1.86e-07, - "cunninghams": 1.86e-07, - "curdling": 1.86e-07, - "cuttin": 1.86e-07, - "dail": 1.86e-07, - "danas": 1.86e-07, - "dandridge": 1.86e-07, - "darcey": 1.86e-07, - "darknet": 1.86e-07, - "dasgupta": 1.86e-07, - "datsyuk": 1.86e-07, - "daws": 1.86e-07, - "deads": 1.07e-07, - "decries": 1.86e-07, - "demagogues": 1.86e-07, - "demerits": 1.86e-07, - "demosthenes": 1.86e-07, - "deschutes": 1.86e-07, - "desecrating": 1.86e-07, - "devilishly": 1.86e-07, - "dickenson": 1.86e-07, - "diecast": 1.86e-07, - "diez": 1.86e-07, - "digitalis": 1.86e-07, - "dimon": 1.86e-07, - "dingus": 1.86e-07, - "disbelieving": 1.86e-07, - "disentangle": 1.86e-07, - "dispersive": 1.86e-07, - "divestiture": 1.86e-07, - "dmp": 1.86e-07, - "doak": 1.86e-07, - "doled": 1.86e-07, - "donbas": 1.86e-07, - "doot": 1.86e-07, - "dort": 1.86e-07, - "dpc": 1.86e-07, - "dreamcatcher": 1.86e-07, - "druggie": 1.86e-07, - "duque": 1.86e-07, - "dvb": 1.86e-07, - "dwights": 1.86e-07, - "dybala": 1.86e-07, - "earlobe": 1.86e-07, - "echidna": 1.86e-07, - "eci": 1.86e-07, - "editable": 1.86e-07, - "edom": 1.86e-07, - "elocution": 1.86e-07, - "elucidating": 1.86e-07, - "empanadas": 1.86e-07, - "engin": 1.86e-07, - "entomologists": 1.86e-07, - "epigrams": 1.86e-07, - "episcopalians": 1.86e-07, - "epworth": 1.86e-07, - "erving": 1.86e-07, - "eschatological": 1.86e-07, - "estoppel": 1.86e-07, - "euromillions": 1.86e-07, - "evangelize": 1.86e-07, - "everson": 1.86e-07, - "evgeni": 1.86e-07, - "exhorting": 1.86e-07, - "expunge": 1.86e-07, - "fabre": 1.86e-07, - "falciparum": 1.86e-07, - "fattened": 1.86e-07, - "fcb": 1.86e-07, - "fck": 1.86e-07, - "felixs": 1.86e-07, - "festooned": 1.86e-07, - "fips": 1.86e-07, - "fiverr": 1.86e-07, - "fixers": 1.86e-07, - "fka": 1.86e-07, - "flagellation": 1.86e-07, - "flashcards": 1.86e-07, - "fluttershy": 1.86e-07, - "foch": 1.86e-07, - "fogged": 1.86e-07, - "follette": 1.86e-07, - "formulates": 1.86e-07, - "foulkes": 1.86e-07, - "freeholders": 1.86e-07, - "freewheeling": 1.86e-07, - "frig": 1.86e-07, - "frontera": 1.86e-07, - "fuad": 1.86e-07, - "fuckup": 1.86e-07, - "fulford": 1.86e-07, - "fumigation": 1.86e-07, - "gallegos": 1.86e-07, - "galleons": 1.86e-07, - "gallops": 1.86e-07, - "gambian": 1.86e-07, - "gamekeeper": 1.86e-07, - "garrity": 1.86e-07, - "gazza": 1.86e-07, - "gec": 1.86e-07, - "gelman": 1.86e-07, - "genting": 1.86e-07, - "getcha": 1.86e-07, - "gibney": 1.86e-07, - "giglio": 1.86e-07, - "glace": 1.86e-07, - "glassdoor": 1.86e-07, - "goldmans": 1.86e-07, - "gossipy": 1.86e-07, - "govind": 1.86e-07, - "graver": 1.86e-07, - "grodd": 1.86e-07, - "gruyter": 1.86e-07, - "gsh": 1.86e-07, - "gunmetal": 1.86e-07, - "gynecologic": 1.86e-07, - "hacer": 1.86e-07, - "hadden": 1.86e-07, - "hadiths": 1.86e-07, - "hamelin": 1.86e-07, - "hamming": 1.86e-07, - "handmaids": 9.55e-08, - "hartz": 1.86e-07, - "harun": 1.86e-07, - "haviland": 1.86e-07, - "hellbent": 1.86e-07, - "hellraiser": 1.86e-07, - "hexagons": 1.86e-07, - "hexham": 1.86e-07, - "hingis": 1.86e-07, - "hinsdale": 1.86e-07, - "hislop": 1.86e-07, - "hittites": 1.86e-07, - "homefront": 1.86e-07, - "hore": 1.86e-07, - "houseman": 1.86e-07, - "houten": 1.86e-07, - "howre": 1.86e-07, - "humbles": 1.86e-07, - "huppert": 1.86e-07, - "hyannis": 1.86e-07, - "hylton": 1.86e-07, - "hypnotised": 1.86e-07, - "ibom": 1.86e-07, - "icos": 5.13e-08, - "idahos": 1.86e-07, - "ietf": 1.86e-07, - "igo": 1.86e-07, - "immanent": 1.86e-07, - "immodest": 1.86e-07, - "imphal": 1.86e-07, - "imu": 1.86e-07, - "inboxes": 1.86e-07, - "incompletely": 1.86e-07, - "inexpensively": 1.86e-07, - "innis": 1.86e-07, - "instants": 1.86e-07, - "intentionality": 1.86e-07, - "interbreeding": 1.86e-07, - "interwebs": 1.86e-07, - "invoiced": 1.86e-07, - "inwood": 1.86e-07, - "irie": 1.86e-07, - "irreverence": 1.86e-07, - "irritations": 1.86e-07, - "issei": 1.86e-07, - "ivys": 1.86e-07, - "jambalaya": 1.86e-07, - "jameel": 1.86e-07, - "jareds": 1.86e-07, - "jaune": 1.86e-07, - "javad": 1.86e-07, - "jawad": 1.86e-07, - "jaymes": 1.86e-07, - "jcs": 7.41e-08, - "jeepers": 1.86e-07, - "jewelled": 1.86e-07, - "jewishness": 1.86e-07, - "jfks": 1.86e-07, - "jis": 1.48e-07, - "jist": 1.86e-07, - "jls": 1.86e-07, - "josey": 1.86e-07, - "journeymen": 1.86e-07, - "judaic": 1.86e-07, - "jumeirah": 1.86e-07, - "kaaba": 1.86e-07, - "kalb": 1.86e-07, - "kamakura": 1.86e-07, - "kanagawa": 1.86e-07, - "karls": 1.86e-07, - "katrine": 1.86e-07, - "kayakers": 1.86e-07, - "kaze": 1.86e-07, - "killick": 1.86e-07, - "kimbrel": 1.86e-07, - "kirtland": 1.86e-07, - "kitsap": 1.86e-07, - "klose": 1.86e-07, - "klotz": 1.86e-07, - "knacks": 1.86e-07, - "kneecaps": 1.86e-07, - "koolaid": 1.86e-07, - "koro": 1.86e-07, - "kvyat": 1.86e-07, - "lafleur": 1.86e-07, - "lampshade": 1.86e-07, - "lancs": 1.86e-07, - "langlois": 1.86e-07, - "lapdog": 1.86e-07, - "laravel": 1.86e-07, - "lasky": 1.86e-07, - "lateran": 1.86e-07, - "lawsons": 1.86e-07, - "lbp": 1.86e-07, - "leavened": 1.86e-07, - "leeson": 1.86e-07, - "leukocytes": 1.86e-07, - "lfs": 1.86e-07, - "libera": 1.86e-07, - "libertines": 1.86e-07, - "licker": 1.86e-07, - "lida": 1.86e-07, - "lifeforms": 1.86e-07, - "lifesavers": 1.86e-07, - "ligatures": 1.86e-07, - "liveries": 1.86e-07, - "lovie": 1.86e-07, - "lulls": 1.86e-07, - "lumsden": 1.86e-07, - "lymington": 1.86e-07, - "lymphomas": 1.86e-07, - "lytle": 1.86e-07, - "machinegun": 1.86e-07, - "madero": 1.86e-07, - "magnifier": 1.86e-07, - "malbec": 1.86e-07, - "mandell": 1.86e-07, - "manilla": 1.86e-07, - "manti": 1.86e-07, - "marigolds": 1.86e-07, - "marseillaise": 1.86e-07, - "marts": 1.29e-07, - "maryanne": 1.86e-07, - "maryse": 1.86e-07, - "mastitis": 1.86e-07, - "matriarchal": 1.86e-07, - "matta": 1.86e-07, - "maytag": 1.86e-07, - "mbr": 1.86e-07, - "mcgregors": 1.86e-07, - "meester": 1.86e-07, - "melaka": 1.86e-07, - "mele": 1.86e-07, - "mellencamp": 1.86e-07, - "mengele": 1.86e-07, - "merlins": 1.86e-07, - "meron": 1.86e-07, - "mesmerised": 1.86e-07, - "mette": 1.86e-07, - "miasma": 1.86e-07, - "microeconomics": 1.86e-07, - "milady": 1.86e-07, - "minke": 1.86e-07, - "mks": 1.86e-07, - "mmd": 1.86e-07, - "modell": 1.86e-07, - "monetized": 1.86e-07, - "monoliths": 1.86e-07, - "montys": 1.86e-07, - "moodie": 1.86e-07, - "morrie": 1.86e-07, - "mowry": 1.86e-07, - "mpumalanga": 1.86e-07, - "muds": 1.86e-07, - "mudslide": 1.86e-07, - "mugshots": 1.86e-07, - "muirfield": 1.86e-07, - "mujahid": 1.86e-07, - "mula": 1.86e-07, - "multicenter": 1.86e-07, - "muskie": 1.86e-07, - "musta": 1.86e-07, - "naturelle": 1.86e-07, - "nauvoo": 1.86e-07, - "neptunes": 1.05e-07, - "neurodevelopmental": 1.86e-07, - "neurogenesis": 1.86e-07, - "neutering": 1.86e-07, - "neutralizes": 1.86e-07, - "neutrophil": 1.86e-07, - "nextdoor": 1.86e-07, - "niang": 1.86e-07, - "nica": 1.86e-07, - "nicholl": 1.86e-07, - "nicobar": 1.86e-07, - "nikkor": 1.86e-07, - "noakes": 1.86e-07, - "nol": 1.86e-07, - "noland": 1.86e-07, - "nondisclosure": 1.86e-07, - "nontoxic": 1.86e-07, - "noras": 1.86e-07, - "northport": 1.86e-07, - "northwesterly": 1.86e-07, - "ntfs": 1.86e-07, - "oday": 5.75e-08, - "oloughlin": 1.86e-07, - "oreillys": 1.86e-07, - "obnoxiously": 1.86e-07, - "oconee": 1.86e-07, - "octahedral": 1.86e-07, - "okamoto": 1.86e-07, - "olmstead": 1.86e-07, - "omari": 1.86e-07, - "optimizer": 1.86e-07, - "orderlies": 1.86e-07, - "orochi": 1.86e-07, - "oromo": 1.86e-07, - "outland": 1.86e-07, - "overlain": 1.86e-07, - "overpowers": 1.86e-07, - "oxlade": 1.86e-07, - "padlocks": 1.86e-07, - "panos": 1.86e-07, - "parasitism": 1.86e-07, - "particularity": 1.86e-07, - "pawel": 1.86e-07, - "peice": 1.86e-07, - "penfield": 1.86e-07, - "pennine": 1.86e-07, - "peons": 1.86e-07, - "peppercorn": 1.86e-07, - "percys": 1.86e-07, - "perfects": 1.86e-07, - "perfumery": 1.86e-07, - "perlmutter": 1.86e-07, - "petar": 1.86e-07, - "pettersson": 1.86e-07, - "pffft": 1.86e-07, - "pharisee": 1.86e-07, - "phenols": 1.86e-07, - "photobook": 1.86e-07, - "photovoltaics": 1.86e-07, - "physiologists": 1.86e-07, - "pii": 1.86e-07, - "plod": 1.86e-07, - "plucks": 1.86e-07, - "pocatello": 1.86e-07, - "podiatrist": 1.86e-07, - "polarities": 1.86e-07, - "pollyanna": 1.86e-07, - "pols": 1.86e-07, - "polyphenols": 1.86e-07, - "polysaccharide": 1.86e-07, - "ponchos": 1.86e-07, - "ponty": 1.86e-07, - "potemkin": 1.86e-07, - "powhatan": 1.86e-07, - "powwow": 1.86e-07, - "pragmatics": 1.86e-07, - "predating": 1.86e-07, - "premade": 1.86e-07, - "presleys": 1.86e-07, - "presque": 1.86e-07, - "priestesses": 1.86e-07, - "prokaryotic": 1.86e-07, - "prorated": 1.86e-07, - "pubis": 1.86e-07, - "puyol": 1.86e-07, - "qigong": 1.86e-07, - "qty": 1.86e-07, - "quails": 1.86e-07, - "quantized": 1.86e-07, - "quasimodo": 1.86e-07, - "quebecois": 1.86e-07, - "quik": 1.86e-07, - "radovan": 1.86e-07, - "ragan": 1.86e-07, - "ramo": 1.86e-07, - "ranjan": 1.86e-07, - "ravenclaw": 1.86e-07, - "razing": 1.86e-07, - "rebs": 1.86e-07, - "reconciles": 1.86e-07, - "reconditioned": 1.86e-07, - "redeye": 1.86e-07, - "refillable": 1.86e-07, - "regale": 1.86e-07, - "regurgitated": 1.86e-07, - "reintegrate": 1.86e-07, - "rekha": 1.86e-07, - "reme": 1.86e-07, - "reni": 1.86e-07, - "renly": 1.86e-07, - "reordering": 1.86e-07, - "repeatability": 1.86e-07, - "resound": 1.86e-07, - "retakes": 1.86e-07, - "rhein": 1.86e-07, - "rhimes": 1.86e-07, - "rhododendrons": 1.86e-07, - "richies": 1.86e-07, - "ridesharing": 1.86e-07, - "rivero": 1.86e-07, - "riviere": 1.86e-07, - "rix": 1.86e-07, - "rodan": 1.86e-07, - "rolly": 1.86e-07, - "romany": 1.86e-07, - "roode": 1.86e-07, - "rotund": 1.86e-07, - "rubios": 1.86e-07, - "runabout": 1.86e-07, - "ruston": 1.86e-07, - "salvageable": 1.86e-07, - "sandcastle": 1.86e-07, - "sanitizing": 1.86e-07, - "sardis": 1.86e-07, - "sargeant": 1.86e-07, - "sarong": 1.86e-07, - "sasse": 1.86e-07, - "saussure": 1.86e-07, - "savaged": 1.86e-07, - "savio": 1.86e-07, - "savored": 1.86e-07, - "scandalized": 1.86e-07, - "schenk": 1.86e-07, - "schnauzer": 1.86e-07, - "schoolroom": 1.86e-07, - "scions": 1.86e-07, - "scorseses": 1.86e-07, - "scotrail": 1.86e-07, - "scrapbooks": 1.86e-07, - "scrawl": 1.86e-07, - "screeched": 1.86e-07, - "scurrilous": 1.86e-07, - "seamanship": 1.86e-07, - "seedless": 1.86e-07, - "semana": 1.86e-07, - "semicircle": 1.86e-07, - "sett": 1.86e-07, - "sextet": 1.86e-07, - "shabbos": 1.86e-07, - "shepherding": 1.86e-07, - "shithouse": 1.86e-07, - "shitshow": 1.86e-07, - "shmuel": 1.86e-07, - "shoji": 1.86e-07, - "shuttleworth": 1.86e-07, - "shying": 1.86e-07, - "sleepwear": 1.86e-07, - "smalltalk": 1.86e-07, - "snowdens": 1.86e-07, - "socialised": 1.86e-07, - "socialites": 1.86e-07, - "soldado": 1.86e-07, - "songz": 1.86e-07, - "souffle": 1.86e-07, - "southwesterly": 1.86e-07, - "sowerby": 1.86e-07, - "spandau": 1.86e-07, - "speeder": 1.86e-07, - "squashes": 1.86e-07, - "stansfield": 1.86e-07, - "steams": 7.59e-08, - "stigmatization": 1.86e-07, - "stigmatizing": 1.86e-07, - "stim": 1.86e-07, - "stockyards": 1.86e-07, - "strada": 1.86e-07, - "straightener": 1.86e-07, - "strindberg": 1.86e-07, - "struthers": 1.86e-07, - "subchapter": 1.86e-07, - "subdivide": 1.86e-07, - "suborbital": 1.86e-07, - "subregion": 1.86e-07, - "subservience": 1.86e-07, - "subverts": 1.86e-07, - "sufis": 1.86e-07, - "sukarno": 1.86e-07, - "suppository": 1.86e-07, - "suppressors": 1.86e-07, - "swire": 1.86e-07, - "swizz": 1.86e-07, - "swp": 1.86e-07, - "sws": 1.86e-07, - "tabling": 1.86e-07, - "takedowns": 1.86e-07, - "takoma": 1.86e-07, - "taku": 1.86e-07, - "talos": 1.86e-07, - "tambor": 1.86e-07, - "tampere": 1.86e-07, - "tanga": 1.86e-07, - "tapia": 1.86e-07, - "tarantinos": 1.86e-07, - "tasmanias": 1.86e-07, - "taxiing": 1.86e-07, - "tchaikovskys": 1.86e-07, - "tdf": 1.86e-07, - "teargas": 1.86e-07, - "teats": 1.86e-07, - "textron": 1.86e-07, - "tgt": 1.86e-07, - "thaler": 1.86e-07, - "thao": 1.86e-07, - "thems": 1.26e-07, - "theorys": 1.86e-07, - "thiamine": 1.86e-07, - "threonine": 1.86e-07, - "throwdown": 1.86e-07, - "thumbed": 1.86e-07, - "tiberias": 1.86e-07, - "timekeeper": 1.86e-07, - "tinting": 1.86e-07, - "tiverton": 1.86e-07, - "tizzy": 1.86e-07, - "tle": 1.86e-07, - "tob": 1.86e-07, - "tof": 1.86e-07, - "tolliver": 1.86e-07, - "tortuga": 1.86e-07, - "tourette": 1.86e-07, - "towner": 1.86e-07, - "tows": 1.86e-07, - "toya": 1.86e-07, - "toyama": 1.86e-07, - "trackpad": 1.86e-07, - "trapezoid": 1.86e-07, - "treacy": 1.86e-07, - "trills": 1.86e-07, - "tring": 1.86e-07, - "tst": 1.86e-07, - "tums": 1.86e-07, - "tutankhamun": 1.86e-07, - "twits": 1.86e-07, - "typifies": 1.86e-07, - "uaes": 1.86e-07, - "uddin": 1.86e-07, - "ufcs": 1.86e-07, - "uhs": 1.86e-07, - "ulmer": 1.86e-07, - "ultraman": 1.86e-07, - "unanswerable": 1.86e-07, - "undercurrents": 1.86e-07, - "undoes": 1.86e-07, - "unescos": 1.86e-07, - "unexamined": 1.86e-07, - "unheeded": 1.86e-07, - "unmentioned": 1.86e-07, - "unsettle": 1.86e-07, - "unviable": 1.86e-07, - "unwrapping": 1.86e-07, - "upmc": 1.86e-07, - "urself": 1.86e-07, - "vadodara": 1.86e-07, - "vaio": 1.86e-07, - "velo": 1.86e-07, - "venable": 1.86e-07, - "vermaelen": 1.86e-07, - "vetter": 1.86e-07, - "vexatious": 1.86e-07, - "vibrated": 1.86e-07, - "victimised": 1.86e-07, - "vihar": 1.86e-07, - "violetta": 1.86e-07, - "vivacity": 1.86e-07, - "wageningen": 1.86e-07, - "waggoner": 1.86e-07, - "wahhabism": 1.86e-07, - "walmsley": 1.86e-07, - "wario": 1.86e-07, - "warmonger": 1.86e-07, - "warmongering": 1.86e-07, - "waterhole": 1.86e-07, - "weg": 1.86e-07, - "weisz": 1.86e-07, - "welton": 1.86e-07, - "welts": 1.86e-07, - "wendel": 1.86e-07, - "wenzhou": 1.86e-07, - "wep": 1.86e-07, - "wholehearted": 1.86e-07, - "wholesaling": 1.86e-07, - "whyre": 1.86e-07, - "wilbert": 1.86e-07, - "wombs": 1.86e-07, - "wonderwall": 1.86e-07, - "worksite": 1.86e-07, - "woz": 1.86e-07, - "wsl": 1.86e-07, - "wulff": 1.86e-07, - "wythe": 1.86e-07, - "xenoblade": 1.86e-07, - "xor": 1.86e-07, - "xxxi": 1.86e-07, - "xxxxx": 1.86e-07, - "yandex": 1.86e-07, - "yass": 1.86e-07, - "yess": 1.86e-07, - "yori": 1.86e-07, - "yuge": 1.86e-07, - "zaria": 1.86e-07, - "zermatt": 1.86e-07, - "zhangs": 1.86e-07, - "zuckerbergs": 1.86e-07, - "abouts": 1.26e-08, - "acknowledgments": 1.82e-07, - "ackroyd": 1.82e-07, - "adenovirus": 1.82e-07, - "admissibility": 1.82e-07, - "admonishing": 1.82e-07, - "aiims": 1.82e-07, - "ail": 1.82e-07, - "akka": 1.82e-07, - "alaskans": 1.82e-07, - "alds": 1.82e-07, - "aled": 1.82e-07, - "alessia": 1.82e-07, - "allister": 1.82e-07, - "alois": 1.82e-07, - "alok": 1.82e-07, - "altaf": 1.82e-07, - "ammonite": 1.82e-07, - "amoxicillin": 1.82e-07, - "andesite": 1.82e-07, - "anhydride": 1.82e-07, - "annulus": 1.82e-07, - "antibes": 1.82e-07, - "aperitif": 1.82e-07, - "aphex": 1.82e-07, - "apostrophes": 1.82e-07, - "argento": 1.82e-07, - "ascribing": 1.82e-07, - "ashtabula": 1.82e-07, - "assemblers": 1.82e-07, - "astin": 1.82e-07, - "asuna": 1.82e-07, - "atif": 1.82e-07, - "autoclave": 1.82e-07, - "axially": 1.82e-07, - "ayu": 1.82e-07, - "baahubali": 1.82e-07, - "babington": 1.82e-07, - "backdoors": 1.82e-07, - "backes": 1.82e-07, - "bagan": 1.82e-07, - "baier": 1.82e-07, - "bairstow": 1.82e-07, - "bajwa": 1.82e-07, - "bakri": 1.82e-07, - "balanchine": 1.82e-07, - "baler": 1.82e-07, - "bame": 1.82e-07, - "barc": 1.82e-07, - "bartow": 1.82e-07, - "bastogne": 1.82e-07, - "batley": 1.82e-07, - "bayonetta": 1.82e-07, - "beca": 1.82e-07, - "bek": 1.82e-07, - "berates": 1.82e-07, - "bergerac": 1.82e-07, - "berle": 1.82e-07, - "betz": 1.82e-07, - "biasing": 1.82e-07, - "biblically": 1.82e-07, - "billiton": 1.82e-07, - "biofilms": 1.82e-07, - "birk": 1.82e-07, - "bivouac": 1.82e-07, - "bix": 1.82e-07, - "blarney": 1.82e-07, - "blowhard": 1.82e-07, - "bluntness": 1.82e-07, - "bocce": 1.82e-07, - "bokep": 1.82e-07, - "borscht": 1.82e-07, - "bourg": 1.82e-07, - "bovary": 1.82e-07, - "boxwood": 1.82e-07, - "breadfruit": 1.82e-07, - "breathers": 1.82e-07, - "bremerton": 1.82e-07, - "brightside": 1.82e-07, - "brm": 1.82e-07, - "btv": 1.82e-07, - "budden": 1.82e-07, - "bunce": 1.82e-07, - "bunnys": 1.82e-07, - "burps": 1.82e-07, - "bussed": 1.82e-07, - "cahn": 1.82e-07, - "calista": 1.82e-07, - "camorra": 1.82e-07, - "campervan": 1.82e-07, - "cancelation": 1.82e-07, - "cannae": 1.82e-07, - "carrol": 1.82e-07, - "castigated": 1.82e-07, - "castille": 1.82e-07, - "catcalling": 1.82e-07, - "categorisation": 1.82e-07, - "ceb": 1.82e-07, - "ceri": 1.82e-07, - "certificated": 1.82e-07, - "chama": 1.82e-07, - "cheapskate": 1.82e-07, - "checkouts": 1.82e-07, - "chert": 1.82e-07, - "chesters": 6.61e-08, - "chickened": 1.82e-07, - "chilliwack": 1.82e-07, - "chocolatey": 1.82e-07, - "christology": 1.82e-07, - "chugged": 1.82e-07, - "chui": 1.82e-07, - "cios": 6.46e-08, - "circumnavigate": 1.82e-07, - "clackamas": 1.82e-07, - "claes": 1.82e-07, - "claxton": 1.82e-07, - "clearfield": 1.82e-07, - "coghlan": 1.82e-07, - "colberts": 1.82e-07, - "collectivization": 1.82e-07, - "collinsville": 1.82e-07, - "collis": 1.82e-07, - "compactor": 1.82e-07, - "compote": 1.82e-07, - "compressible": 1.82e-07, - "confidants": 1.82e-07, - "confirmatory": 1.82e-07, - "congeniality": 1.82e-07, - "contentions": 1.82e-07, - "continuo": 1.82e-07, - "convulsing": 1.82e-07, - "cornerbacks": 1.82e-07, - "cosima": 1.82e-07, - "costumer": 1.82e-07, - "covalently": 1.82e-07, - "cowherd": 1.82e-07, - "cpb": 1.82e-07, - "crackdowns": 1.82e-07, - "creaming": 1.82e-07, - "crema": 1.82e-07, - "cremona": 1.82e-07, - "cruelties": 1.82e-07, - "cudgel": 1.82e-07, - "culbertson": 1.82e-07, - "cumbernauld": 1.82e-07, - "cylons": 1.82e-07, - "dado": 1.82e-07, - "dahlgren": 1.82e-07, - "dalston": 1.82e-07, - "danziger": 1.82e-07, - "dayal": 1.82e-07, - "dce": 1.82e-07, - "deadspin": 1.82e-07, - "deezer": 1.82e-07, - "deign": 1.82e-07, - "delancey": 1.82e-07, - "dentate": 1.82e-07, - "depts": 1.82e-07, - "dewi": 1.82e-07, - "dibble": 1.82e-07, - "diggity": 1.82e-07, - "dimwit": 1.82e-07, - "diodorus": 1.82e-07, - "dipstick": 1.82e-07, - "disambiguation": 1.82e-07, - "dissenter": 1.82e-07, - "divalent": 1.82e-07, - "diviner": 1.82e-07, - "djt": 1.82e-07, - "dnipro": 1.82e-07, - "donoghue": 1.82e-07, - "douches": 1.82e-07, - "doula": 1.82e-07, - "duchene": 1.82e-07, - "duchenne": 1.82e-07, - "dungannon": 1.82e-07, - "dwarka": 1.82e-07, - "eadie": 1.82e-07, - "earldom": 1.82e-07, - "earley": 1.82e-07, - "earthwork": 1.82e-07, - "eccentrics": 1.82e-07, - "echols": 1.82e-07, - "egmont": 1.82e-07, - "eire": 1.82e-07, - "ekman": 1.82e-07, - "eldredge": 1.82e-07, - "eleanors": 1.82e-07, - "electrocute": 1.82e-07, - "elfin": 1.82e-07, - "elina": 1.82e-07, - "elitists": 1.82e-07, - "ellas": 7.59e-08, - "elma": 1.82e-07, - "elsinore": 1.82e-07, - "enamelled": 1.82e-07, - "enbridge": 1.82e-07, - "encroachments": 1.82e-07, - "enlarges": 1.82e-07, - "entrainment": 1.82e-07, - "eres": 1.82e-07, - "eskom": 1.82e-07, - "exacerbation": 1.82e-07, - "excitability": 1.82e-07, - "exegetical": 1.82e-07, - "existance": 1.82e-07, - "exorcisms": 1.82e-07, - "exothermic": 1.82e-07, - "expansionary": 1.82e-07, - "expectancies": 1.82e-07, - "expensively": 1.82e-07, - "facedown": 1.82e-07, - "fairley": 1.82e-07, - "fakers": 1.82e-07, - "farnese": 1.82e-07, - "farren": 1.82e-07, - "farrer": 1.82e-07, - "fasciitis": 1.82e-07, - "fazed": 1.82e-07, - "fehr": 1.82e-07, - "fenech": 1.82e-07, - "fibrils": 1.82e-07, - "figo": 1.82e-07, - "fingerboard": 1.82e-07, - "fking": 1.82e-07, - "flab": 1.82e-07, - "flaunted": 1.82e-07, - "fluffed": 1.82e-07, - "fns": 1.82e-07, - "foerster": 1.82e-07, - "fogs": 1.82e-07, - "footstep": 1.82e-07, - "foraged": 1.82e-07, - "foragers": 1.82e-07, - "forecastle": 1.82e-07, - "franconia": 1.82e-07, - "friedland": 1.82e-07, - "friendzoned": 1.82e-07, - "fritter": 1.82e-07, - "fultz": 1.82e-07, - "futura": 1.82e-07, - "gabapentin": 1.82e-07, - "galactose": 1.82e-07, - "galas": 1.82e-07, - "gallus": 1.82e-07, - "gawking": 1.82e-07, - "gazas": 1.82e-07, - "generis": 1.82e-07, - "geocaching": 1.82e-07, - "geolocation": 1.82e-07, - "geraghty": 1.82e-07, - "germinal": 1.82e-07, - "gethsemane": 1.82e-07, - "giggly": 1.82e-07, - "gioia": 1.82e-07, - "gisela": 1.82e-07, - "glazier": 1.82e-07, - "glu": 1.82e-07, - "gmat": 1.82e-07, - "goalpost": 1.82e-07, - "godavari": 1.82e-07, - "godforsaken": 1.82e-07, - "goguryeo": 1.82e-07, - "gombe": 1.82e-07, - "gorging": 1.82e-07, - "gota": 1.82e-07, - "graying": 1.82e-07, - "greenaway": 1.82e-07, - "grima": 1.82e-07, - "gristle": 1.82e-07, - "grumps": 1.82e-07, - "guar": 1.82e-07, - "guid": 1.82e-07, - "gurps": 1.82e-07, - "gurung": 1.82e-07, - "gwalior": 1.82e-07, - "hammad": 1.82e-07, - "hammon": 1.82e-07, - "hanbury": 1.82e-07, - "handloom": 1.82e-07, - "hanyu": 1.82e-07, - "harajuku": 1.82e-07, - "hards": 1.82e-07, - "harish": 1.82e-07, - "harmonise": 1.82e-07, - "harmonised": 1.82e-07, - "hatin": 1.82e-07, - "hatreds": 1.82e-07, - "hava": 1.82e-07, - "hecate": 1.82e-07, - "hemorrhoid": 1.82e-07, - "hfs": 1.82e-07, - "hilux": 1.82e-07, - "hmc": 1.82e-07, - "homan": 1.82e-07, - "hones": 1.82e-07, - "honeyed": 1.82e-07, - "horrendously": 1.82e-07, - "horrocks": 1.82e-07, - "howden": 1.82e-07, - "hsing": 1.82e-07, - "huan": 1.82e-07, - "humphry": 1.82e-07, - "huth": 1.82e-07, - "hutson": 1.82e-07, - "iditarod": 1.82e-07, - "igp": 1.82e-07, - "illiquid": 1.82e-07, - "illusive": 1.82e-07, - "imei": 1.82e-07, - "impelled": 1.82e-07, - "incapacitating": 1.82e-07, - "indistinctly": 1.82e-07, - "indolent": 1.82e-07, - "inductively": 1.82e-07, - "infantrymen": 1.82e-07, - "infeasible": 1.82e-07, - "informa": 1.82e-07, - "inoculate": 1.82e-07, - "insistently": 1.82e-07, - "insula": 1.82e-07, - "integrable": 1.82e-07, - "interleaved": 1.82e-07, - "intermedia": 1.82e-07, - "intimidates": 1.82e-07, - "intrastate": 1.82e-07, - "invisibly": 1.82e-07, - "ior": 1.82e-07, - "iou": 1.82e-07, - "iscariot": 1.82e-07, - "islamization": 1.82e-07, - "istituto": 1.82e-07, - "itl": 1.82e-07, - "jabber": 1.82e-07, - "jades": 1.12e-07, - "jamia": 1.82e-07, - "jatt": 1.82e-07, - "jawa": 1.82e-07, - "jehan": 1.82e-07, - "jennas": 1.82e-07, - "jeroen": 1.82e-07, - "jeu": 1.82e-07, - "jomo": 1.82e-07, - "jordin": 1.82e-07, - "josip": 1.82e-07, - "jovan": 1.82e-07, - "julienne": 1.82e-07, - "junie": 1.82e-07, - "juried": 1.82e-07, - "kaa": 1.82e-07, - "kabuto": 1.82e-07, - "kage": 1.82e-07, - "kaminski": 1.82e-07, - "katt": 1.82e-07, - "keely": 1.82e-07, - "kelton": 1.82e-07, - "kenichi": 1.82e-07, - "kerrs": 1.82e-07, - "keystroke": 1.82e-07, - "khashoggi": 1.82e-07, - "khedira": 1.82e-07, - "killjoy": 1.82e-07, - "kina": 1.82e-07, - "kirkus": 1.82e-07, - "kitchenette": 1.82e-07, - "kittredge": 1.82e-07, - "knighton": 1.82e-07, - "knoxs": 1.82e-07, - "kohlberg": 1.82e-07, - "krasny": 1.82e-07, - "lamarr": 1.82e-07, - "langdale": 1.82e-07, - "langhorne": 1.82e-07, - "larp": 1.82e-07, - "lashings": 1.82e-07, - "lats": 1.82e-07, - "lavas": 1.82e-07, - "lawmaking": 1.82e-07, - "laxman": 1.82e-07, - "lazare": 1.82e-07, - "lcl": 1.82e-07, - "lcr": 1.82e-07, - "leaderless": 1.82e-07, - "legato": 1.82e-07, - "legibility": 1.82e-07, - "legionella": 1.82e-07, - "lelouch": 1.82e-07, - "lesters": 1.82e-07, - "letchworth": 1.82e-07, - "leve": 1.82e-07, - "lez": 1.82e-07, - "libations": 1.82e-07, - "licenced": 1.82e-07, - "lionesses": 1.82e-07, - "litigant": 1.82e-07, - "lito": 1.82e-07, - "loadings": 1.82e-07, - "lochaber": 1.82e-07, - "loggerheads": 1.82e-07, - "loney": 1.82e-07, - "longbow": 1.82e-07, - "lotsa": 1.82e-07, - "lrc": 1.82e-07, - "lumberjacks": 1.82e-07, - "luxuriously": 1.82e-07, - "lycan": 1.82e-07, - "lyla": 1.82e-07, - "maclennan": 1.82e-07, - "magaluf": 1.82e-07, - "malton": 1.82e-07, - "manton": 1.82e-07, - "marchetti": 1.82e-07, - "margaux": 1.82e-07, - "mariage": 1.82e-07, - "maryborough": 1.82e-07, - "mascarpone": 1.82e-07, - "matata": 1.82e-07, - "matsuyama": 1.82e-07, - "matthieu": 1.82e-07, - "mayr": 1.82e-07, - "mazar": 1.82e-07, - "mcas": 1.82e-07, - "mccune": 1.82e-07, - "mcdowall": 1.82e-07, - "mcinerney": 1.82e-07, - "mclarens": 6.76e-08, - "medrano": 1.82e-07, - "meech": 1.82e-07, - "melia": 1.82e-07, - "mercs": 1.82e-07, - "metternich": 1.82e-07, - "micks": 1.82e-07, - "microcontrollers": 1.82e-07, - "microservices": 1.82e-07, - "mildura": 1.82e-07, - "millett": 1.82e-07, - "mineola": 1.82e-07, - "miniaturization": 1.82e-07, - "mislaid": 1.82e-07, - "misspell": 1.82e-07, - "mof": 1.82e-07, - "moga": 1.82e-07, - "mohsin": 1.82e-07, - "monsantos": 1.82e-07, - "monstrosities": 1.82e-07, - "montesquieu": 1.82e-07, - "moomin": 1.82e-07, - "moreso": 1.82e-07, - "morland": 1.82e-07, - "moselle": 1.82e-07, - "mothballed": 1.82e-07, - "movistar": 1.82e-07, - "mqm": 1.82e-07, - "muharram": 1.82e-07, - "mulcair": 1.82e-07, - "muto": 1.82e-07, - "naeem": 1.82e-07, - "naomis": 1.82e-07, - "nbcsn": 1.82e-07, - "negus": 1.82e-07, - "nemours": 1.82e-07, - "neoconservative": 1.82e-07, - "neoplastic": 1.82e-07, - "neymars": 1.82e-07, - "ngai": 1.82e-07, - "nhat": 1.82e-07, - "nif": 1.82e-07, - "niggling": 1.82e-07, - "nne": 1.82e-07, - "noda": 1.82e-07, - "nombre": 1.82e-07, - "nore": 1.82e-07, - "nortel": 1.82e-07, - "nsg": 1.82e-07, - "nso": 1.82e-07, - "nuestra": 1.82e-07, - "nuna": 1.82e-07, - "nunca": 1.82e-07, - "obie": 1.82e-07, - "occultist": 1.82e-07, - "oko": 1.82e-07, - "oladipo": 1.82e-07, - "oort": 1.82e-07, - "orf": 1.82e-07, - "ornithologist": 1.82e-07, - "ottos": 1.82e-07, - "overburden": 1.82e-07, - "overpopulated": 1.82e-07, - "oxidizer": 1.82e-07, - "ozymandias": 1.82e-07, - "pagers": 1.82e-07, - "paiges": 1.82e-07, - "pampas": 1.82e-07, - "parisi": 1.82e-07, - "parkville": 1.82e-07, - "parttime": 1.82e-07, - "paternalism": 1.82e-07, - "pavers": 1.82e-07, - "pawing": 1.82e-07, - "pbo": 1.82e-07, - "peinture": 1.82e-07, - "pels": 1.82e-07, - "pelton": 1.82e-07, - "percolating": 1.82e-07, - "perkin": 1.82e-07, - "peroxidase": 1.82e-07, - "perths": 1.82e-07, - "perused": 1.82e-07, - "petioles": 1.82e-07, - "philandering": 1.82e-07, - "physiotherapists": 1.82e-07, - "pigskin": 1.82e-07, - "pinata": 1.82e-07, - "pks": 1.82e-07, - "plagiarizing": 1.82e-07, - "polybius": 1.82e-07, - "polychrome": 1.82e-07, - "ponytails": 1.82e-07, - "poussin": 1.82e-07, - "prahran": 1.82e-07, - "premarket": 1.82e-07, - "privet": 1.82e-07, - "problema": 1.82e-07, - "projekt": 1.82e-07, - "purred": 1.82e-07, - "putz": 1.82e-07, - "pyrrhic": 1.82e-07, - "quoi": 1.82e-07, - "racetracks": 1.82e-07, - "radians": 1.82e-07, - "rahane": 1.82e-07, - "rajab": 1.82e-07, - "ramu": 1.82e-07, - "raskin": 1.82e-07, - "rcw": 1.82e-07, - "rdc": 1.82e-07, - "reactant": 1.82e-07, - "reassuringly": 1.82e-07, - "reconfiguring": 1.82e-07, - "redcar": 1.82e-07, - "redouble": 1.82e-07, - "refurb": 1.82e-07, - "regularization": 1.82e-07, - "reinterpret": 1.82e-07, - "relaxant": 1.82e-07, - "reminisces": 1.82e-07, - "renege": 1.82e-07, - "repairable": 1.82e-07, - "reposts": 1.82e-07, - "retailed": 1.82e-07, - "reticulated": 1.82e-07, - "reveille": 1.82e-07, - "rheims": 1.82e-07, - "rics": 1.82e-07, - "rivalled": 1.82e-07, - "rodd": 1.82e-07, - "rodriguezs": 1.82e-07, - "roemer": 1.82e-07, - "romanoff": 1.82e-07, - "romelu": 1.82e-07, - "romeros": 1.82e-07, - "roomful": 1.82e-07, - "rosanne": 1.82e-07, - "rossa": 1.82e-07, - "rotavirus": 1.82e-07, - "roussel": 1.82e-07, - "rpms": 1.82e-07, - "rubberized": 1.82e-07, - "rumford": 1.82e-07, - "sacristy": 1.82e-07, - "saddleback": 1.82e-07, - "saddler": 1.82e-07, - "sags": 1.82e-07, - "sahil": 1.82e-07, - "salton": 1.82e-07, - "santosh": 1.82e-07, - "sanusi": 1.82e-07, - "saranac": 1.82e-07, - "schelling": 1.82e-07, - "schneiderman": 1.82e-07, - "schur": 1.82e-07, - "schwinn": 1.82e-07, - "searcy": 1.82e-07, - "seigneur": 1.82e-07, - "serkis": 1.82e-07, - "sexualizing": 1.82e-07, - "sfw": 1.82e-07, - "shambolic": 1.82e-07, - "shapers": 1.82e-07, - "sheehy": 1.82e-07, - "shelbys": 1.82e-07, - "shimmers": 1.82e-07, - "shireen": 1.82e-07, - "shoujo": 1.82e-07, - "shrews": 1.82e-07, - "sigismund": 1.82e-07, - "sigurdsson": 1.82e-07, - "singalong": 1.82e-07, - "sinless": 1.82e-07, - "slapper": 1.82e-07, - "slobodan": 1.82e-07, - "slowpoke": 1.82e-07, - "smilin": 1.82e-07, - "snared": 1.82e-07, - "sneijder": 1.82e-07, - "snowballed": 1.82e-07, - "sociability": 1.82e-07, - "socs": 1.82e-07, - "soes": 1.82e-07, - "sofias": 1.82e-07, - "solberg": 1.82e-07, - "soloing": 1.82e-07, - "sonorous": 1.82e-07, - "spammer": 1.82e-07, - "spanky": 1.82e-07, - "spectres": 1.82e-07, - "spee": 1.82e-07, - "sphagnum": 1.82e-07, - "spink": 1.82e-07, - "spinnaker": 1.82e-07, - "spivak": 1.82e-07, - "spokespersons": 1.82e-07, - "spoofs": 1.82e-07, - "sportswriter": 1.82e-07, - "sprockets": 1.82e-07, - "spt": 1.82e-07, - "squints": 1.82e-07, - "squishing": 1.82e-07, - "starlets": 1.82e-07, - "steadfastness": 1.82e-07, - "steadiness": 1.82e-07, - "stepwise": 1.82e-07, - "stonehaven": 1.82e-07, - "storybrooke": 1.82e-07, - "strachey": 1.82e-07, - "stratos": 1.82e-07, - "stroma": 1.82e-07, - "subcontracted": 1.82e-07, - "subsiding": 1.82e-07, - "substructure": 1.82e-07, - "sunning": 1.82e-07, - "superego": 1.82e-07, - "superseding": 1.82e-07, - "suppl": 1.82e-07, - "susy": 1.82e-07, - "sweeties": 1.82e-07, - "swishing": 1.82e-07, - "syllabi": 1.82e-07, - "syncopated": 1.82e-07, - "syndicalism": 1.82e-07, - "tacs": 1.82e-07, - "tactless": 1.82e-07, - "taillight": 1.82e-07, - "takata": 1.82e-07, - "taluk": 1.82e-07, - "tamra": 1.82e-07, - "taney": 1.82e-07, - "tangling": 1.82e-07, - "tarrytown": 1.82e-07, - "tartars": 1.82e-07, - "telegraphic": 1.82e-07, - "tertullian": 1.82e-07, - "thallium": 1.82e-07, - "theos": 9.55e-08, - "tibbs": 1.82e-07, - "tila": 1.82e-07, - "tillie": 1.82e-07, - "tinctures": 1.82e-07, - "tissot": 1.82e-07, - "tomtom": 1.82e-07, - "tormentors": 1.82e-07, - "torsten": 1.82e-07, - "torturers": 1.82e-07, - "totnes": 1.82e-07, - "tracery": 1.82e-07, - "transacting": 1.82e-07, - "travancore": 1.82e-07, - "trevors": 1.82e-07, - "triode": 1.82e-07, - "troilus": 1.82e-07, - "trombones": 1.82e-07, - "troyes": 1.82e-07, - "truckin": 1.82e-07, - "tsetse": 1.82e-07, - "tsla": 1.82e-07, - "tummies": 1.82e-07, - "tunney": 1.82e-07, - "tyco": 1.82e-07, - "tyro": 1.82e-07, - "ubud": 1.82e-07, - "uct": 1.82e-07, - "uit": 1.82e-07, - "ultrafast": 1.82e-07, - "umma": 1.82e-07, - "unenviable": 1.82e-07, - "unfamiliarity": 1.82e-07, - "ungovernable": 1.82e-07, - "unguided": 1.82e-07, - "unimpeachable": 1.82e-07, - "unroll": 1.82e-07, - "untruths": 1.82e-07, - "upend": 1.82e-07, - "uptempo": 1.82e-07, - "urticaria": 1.82e-07, - "usoc": 1.82e-07, - "vaders": 1.82e-07, - "valens": 1.82e-07, - "valets": 1.82e-07, - "vaporization": 1.82e-07, - "variably": 1.82e-07, - "varro": 1.82e-07, - "venetia": 1.82e-07, - "ventilating": 1.82e-07, - "victorville": 1.82e-07, - "vilification": 1.82e-07, - "vilma": 1.82e-07, - "viner": 1.82e-07, - "vio": 1.82e-07, - "vitesse": 1.82e-07, - "vlsi": 1.82e-07, - "vocalization": 1.82e-07, - "vociferously": 1.82e-07, - "wagyu": 1.82e-07, - "wallin": 1.82e-07, - "warbling": 1.82e-07, - "waterstones": 1.82e-07, - "wavers": 1.82e-07, - "wds": 1.82e-07, - "webbers": 1.82e-07, - "weekes": 1.82e-07, - "wessel": 1.82e-07, - "wga": 1.82e-07, - "wheelwright": 1.82e-07, - "whitmans": 1.82e-07, - "whitstable": 1.82e-07, - "wicking": 1.82e-07, - "wif": 1.82e-07, - "wiggled": 1.82e-07, - "winchesters": 7.94e-08, - "wingless": 1.82e-07, - "wirt": 1.82e-07, - "witham": 1.82e-07, - "wollstonecraft": 1.82e-07, - "workaholics": 1.82e-07, - "wotton": 1.82e-07, - "xz": 1.82e-07, - "yukari": 1.82e-07, - "yuppies": 1.82e-07, - "yura": 1.82e-07, - "zalman": 1.82e-07, - "zina": 1.82e-07, - "zong": 1.82e-07, - "zoroastrianism": 1.82e-07, - "acetylation": 1.78e-07, - "achebe": 1.78e-07, - "adjacency": 1.78e-07, - "adonai": 1.78e-07, - "agn": 1.78e-07, - "agressive": 1.78e-07, - "ahhhhhh": 1.78e-07, - "aird": 1.78e-07, - "albicans": 1.78e-07, - "alienates": 1.78e-07, - "allu": 1.78e-07, - "alsop": 1.78e-07, - "altamont": 1.78e-07, - "altera": 1.78e-07, - "amadou": 1.78e-07, - "ambassadorial": 1.78e-07, - "amici": 1.78e-07, - "ampicillin": 1.78e-07, - "andante": 1.78e-07, - "andra": 1.78e-07, - "animatronics": 1.78e-07, - "anis": 2.75e-08, - "antti": 1.78e-07, - "apoplectic": 1.78e-07, - "appiah": 1.78e-07, - "appleseed": 1.78e-07, - "arachnids": 1.78e-07, - "arbour": 1.78e-07, - "ardour": 1.78e-07, - "ascribes": 1.78e-07, - "assanges": 1.78e-07, - "async": 1.78e-07, - "athlon": 1.78e-07, - "atten": 1.78e-07, - "attractor": 1.78e-07, - "authoritatively": 1.78e-07, - "aven": 1.78e-07, - "aventador": 1.78e-07, - "avn": 1.78e-07, - "ayes": 1.78e-07, - "aykroyd": 1.78e-07, - "azadi": 1.78e-07, - "azevedo": 1.78e-07, - "bacharach": 1.78e-07, - "baddeley": 1.78e-07, - "baroni": 1.78e-07, - "barthes": 1.78e-07, - "bartok": 1.78e-07, - "bartons": 1.78e-07, - "battler": 1.78e-07, - "bayerns": 1.78e-07, - "beckenham": 1.78e-07, - "beckinsale": 1.78e-07, - "beeing": 1.78e-07, - "beeston": 1.78e-07, - "belk": 1.78e-07, - "bemis": 1.78e-07, - "benares": 1.78e-07, - "bengt": 1.78e-07, - "benzoate": 1.78e-07, - "berkut": 1.78e-07, - "beshear": 1.78e-07, - "bharati": 1.78e-07, - "bhat": 1.78e-07, - "bicester": 1.78e-07, - "birdland": 1.78e-07, - "blacken": 1.78e-07, - "blather": 1.78e-07, - "bloomingdale": 1.78e-07, - "boldface": 1.78e-07, - "bootie": 1.78e-07, - "bormann": 1.78e-07, - "bovis": 1.78e-07, - "brawley": 1.78e-07, - "bresson": 1.78e-07, - "bricklayers": 1.78e-07, - "bridgehead": 1.78e-07, - "bridgeton": 1.78e-07, - "bristols": 1.78e-07, - "broadview": 1.78e-07, - "broking": 1.78e-07, - "brum": 1.78e-07, - "brushless": 1.78e-07, - "buckleys": 1.78e-07, - "bugler": 1.78e-07, - "businesswomen": 1.78e-07, - "cabos": 1.78e-07, - "caceres": 1.78e-07, - "caernarfon": 1.78e-07, - "calaveras": 1.78e-07, - "callout": 1.78e-07, - "camembert": 1.78e-07, - "cameroons": 1.12e-07, - "campylobacter": 1.78e-07, - "candide": 1.78e-07, - "candlelit": 1.78e-07, - "cantilevered": 1.78e-07, - "capetown": 1.78e-07, - "carabinieri": 1.78e-07, - "cardiothoracic": 1.78e-07, - "carmelite": 1.78e-07, - "carport": 1.78e-07, - "carranza": 1.78e-07, - "cascaded": 1.78e-07, - "casseroles": 1.78e-07, - "cata": 1.78e-07, - "cather": 1.78e-07, - "cathys": 1.78e-07, - "cautioning": 1.78e-07, - "caz": 1.78e-07, - "ccna": 1.78e-07, - "ceballos": 1.78e-07, - "cellini": 1.78e-07, - "centralizing": 1.78e-07, - "cerebro": 1.78e-07, - "cette": 1.78e-07, - "cfcs": 1.78e-07, - "chablis": 1.78e-07, - "chainsmokers": 1.78e-07, - "chaplins": 1.78e-07, - "charcot": 1.78e-07, - "chatters": 1.78e-07, - "ched": 1.78e-07, - "cheesesteak": 1.78e-07, - "childishness": 1.78e-07, - "clasping": 1.78e-07, - "clattenburg": 1.78e-07, - "clave": 1.78e-07, - "cleverley": 1.78e-07, - "clumped": 1.78e-07, - "cognizance": 1.78e-07, - "conceptualizing": 1.78e-07, - "condescend": 1.78e-07, - "conestoga": 1.78e-07, - "congressmans": 1.78e-07, - "contro": 1.78e-07, - "cornices": 1.78e-07, - "corvo": 1.78e-07, - "cottons": 1.55e-07, - "counterattacks": 1.78e-07, - "coursed": 1.78e-07, - "crisscrossed": 1.78e-07, - "cronk": 1.78e-07, - "cubbies": 1.78e-07, - "cuesta": 1.78e-07, - "cuming": 1.78e-07, - "cutoffs": 1.78e-07, - "cyruss": 1.78e-07, - "cytometry": 1.78e-07, - "dafydd": 1.78e-07, - "daigo": 1.78e-07, - "dain": 1.78e-07, - "dando": 1.78e-07, - "dccc": 1.78e-07, - "democratisation": 1.78e-07, - "depredations": 1.78e-07, - "derm": 1.78e-07, - "desde": 1.78e-07, - "dfc": 1.78e-07, - "dignitas": 1.78e-07, - "digression": 1.78e-07, - "disa": 1.78e-07, - "dishonourable": 1.78e-07, - "divergences": 1.78e-07, - "divesting": 1.78e-07, - "dolor": 1.78e-07, - "domi": 1.78e-07, - "domina": 1.78e-07, - "domus": 1.78e-07, - "doxycycline": 1.78e-07, - "doyen": 1.78e-07, - "drover": 1.78e-07, - "dryland": 1.78e-07, - "dufferin": 1.78e-07, - "dunford": 1.78e-07, - "dupuis": 1.78e-07, - "durrell": 1.78e-07, - "dvt": 1.78e-07, - "earnshaw": 1.78e-07, - "ecl": 1.78e-07, - "edinburg": 1.78e-07, - "editorially": 1.78e-07, - "edwardes": 1.78e-07, - "eka": 1.78e-07, - "electrophysiology": 1.78e-07, - "eloy": 1.78e-07, - "elp": 1.78e-07, - "elric": 1.78e-07, - "enchantments": 1.78e-07, - "endeavouring": 1.78e-07, - "endorphin": 1.78e-07, - "engulfs": 1.78e-07, - "ennobled": 1.78e-07, - "enya": 1.78e-07, - "eoe": 1.78e-07, - "epictetus": 1.78e-07, - "episcopacy": 1.78e-07, - "erykah": 1.78e-07, - "erythema": 1.78e-07, - "exculpatory": 1.78e-07, - "extremly": 1.78e-07, - "eyck": 1.78e-07, - "eyrie": 1.78e-07, - "fairings": 1.78e-07, - "faisalabad": 1.78e-07, - "fallons": 1.78e-07, - "famille": 1.78e-07, - "faria": 1.78e-07, - "fayed": 1.78e-07, - "ferenc": 1.78e-07, - "fetters": 1.78e-07, - "fiestas": 1.78e-07, - "filmfare": 1.78e-07, - "finnigan": 1.78e-07, - "firebase": 1.78e-07, - "firewire": 1.78e-07, - "firmed": 1.78e-07, - "fleshing": 1.78e-07, - "flim": 1.78e-07, - "flir": 1.78e-07, - "fln": 1.78e-07, - "floundered": 1.78e-07, - "flout": 1.78e-07, - "foc": 1.78e-07, - "formulary": 1.78e-07, - "foxborough": 1.78e-07, - "frailties": 1.78e-07, - "frankland": 1.78e-07, - "freshening": 1.78e-07, - "frontenac": 1.78e-07, - "fryers": 1.78e-07, - "ftr": 1.78e-07, - "fukuyama": 1.78e-07, - "fumed": 1.78e-07, - "furloughed": 1.78e-07, - "furnishes": 1.78e-07, - "furred": 1.78e-07, - "furys": 1.78e-07, - "galli": 1.78e-07, - "gamed": 1.78e-07, - "garam": 1.78e-07, - "gase": 1.78e-07, - "gatto": 1.78e-07, - "gayness": 1.78e-07, - "gendarme": 1.78e-07, - "genki": 1.78e-07, - "geocentric": 1.78e-07, - "gianluca": 1.78e-07, - "gigging": 1.78e-07, - "gingivitis": 1.78e-07, - "ginobili": 1.78e-07, - "glengarry": 1.78e-07, - "glimmering": 1.78e-07, - "glisten": 1.78e-07, - "glittered": 1.78e-07, - "glucocorticoids": 1.78e-07, - "glutinous": 1.78e-07, - "goading": 1.78e-07, - "goblets": 1.78e-07, - "goldbergs": 1.2e-07, - "goldsboro": 1.78e-07, - "gomezs": 1.78e-07, - "gprs": 1.78e-07, - "grambling": 1.78e-07, - "grammarians": 1.78e-07, - "gratuitously": 1.78e-07, - "gravedigger": 1.78e-07, - "greeter": 1.78e-07, - "grinstead": 1.78e-07, - "groovin": 1.78e-07, - "grose": 1.78e-07, - "growlers": 1.78e-07, - "grrrr": 1.78e-07, - "gunfighter": 1.78e-07, - "gunns": 7.41e-08, - "gurkha": 1.78e-07, - "gurkhas": 1.78e-07, - "guterres": 1.78e-07, - "gwan": 1.78e-07, - "hadassah": 1.78e-07, - "halfpipe": 1.78e-07, - "hameed": 1.78e-07, - "handjobs": 1.78e-07, - "handsomest": 1.78e-07, - "haran": 1.78e-07, - "hasn": 1.78e-07, - "haughton": 1.78e-07, - "havok": 1.78e-07, - "hearers": 1.78e-07, - "helices": 1.78e-07, - "hermine": 1.78e-07, - "hesiod": 1.78e-07, - "highline": 1.78e-07, - "hijabs": 1.78e-07, - "hilaire": 1.78e-07, - "hird": 1.78e-07, - "histidine": 1.78e-07, - "hoar": 1.78e-07, - "hoeing": 1.78e-07, - "homebound": 1.78e-07, - "homunculus": 1.78e-07, - "horwitz": 1.78e-07, - "hubba": 1.78e-07, - "hughs": 1.78e-07, - "humanitarianism": 1.78e-07, - "hurtado": 1.78e-07, - "husker": 1.78e-07, - "hyaline": 1.78e-07, - "hydrazine": 1.78e-07, - "hyoid": 1.78e-07, - "hyperdrive": 1.78e-07, - "hypnotizing": 1.78e-07, - "ifyou": 1.78e-07, - "ikes": 1.78e-07, - "illy": 1.78e-07, - "imovie": 1.78e-07, - "impertinence": 1.78e-07, - "impregnation": 1.78e-07, - "indesign": 1.78e-07, - "indexation": 1.78e-07, - "indoctrinate": 1.78e-07, - "induct": 1.78e-07, - "innova": 1.78e-07, - "inquests": 1.78e-07, - "instyle": 1.78e-07, - "internalizing": 1.78e-07, - "irenes": 1.78e-07, - "irregulars": 1.78e-07, - "irreligious": 1.78e-07, - "iy": 1.78e-07, - "jabal": 1.78e-07, - "jackrabbit": 1.78e-07, - "janson": 1.78e-07, - "javelins": 1.78e-07, - "jeffords": 1.78e-07, - "jingling": 1.78e-07, - "jochen": 1.78e-07, - "joist": 1.78e-07, - "jol": 1.78e-07, - "jotaro": 1.78e-07, - "jsf": 1.78e-07, - "jule": 1.78e-07, - "junkers": 1.78e-07, - "jurong": 1.78e-07, - "kalin": 1.78e-07, - "kazakhstans": 1.78e-07, - "kegan": 1.78e-07, - "keirin": 1.78e-07, - "kermode": 1.78e-07, - "kerner": 1.78e-07, - "kersey": 1.78e-07, - "khe": 1.78e-07, - "khoury": 1.78e-07, - "kickstand": 1.78e-07, - "kirke": 1.78e-07, - "kishan": 1.78e-07, - "kishimoto": 1.78e-07, - "kitson": 1.78e-07, - "klang": 1.78e-07, - "krg": 1.78e-07, - "kubernetes": 1.78e-07, - "kula": 1.78e-07, - "kulkarni": 1.78e-07, - "kunitz": 1.78e-07, - "kyocera": 1.78e-07, - "lamars": 1.78e-07, - "latta": 1.78e-07, - "latvians": 1.78e-07, - "laudanum": 1.78e-07, - "laughingstock": 1.78e-07, - "layaway": 1.78e-07, - "ldc": 1.78e-07, - "lemay": 1.78e-07, - "lewisville": 1.78e-07, - "liddy": 1.78e-07, - "limpet": 1.78e-07, - "linoleic": 1.78e-07, - "lio": 1.78e-07, - "lippman": 1.78e-07, - "lisi": 1.78e-07, - "liste": 1.78e-07, - "lites": 1.78e-07, - "lockjaw": 1.78e-07, - "loggins": 1.78e-07, - "loll": 1.78e-07, - "longue": 1.78e-07, - "loni": 1.78e-07, - "looong": 1.78e-07, - "lorazepam": 1.78e-07, - "lsp": 1.78e-07, - "ludovic": 1.78e-07, - "ludovico": 1.78e-07, - "lunchroom": 1.78e-07, - "lychee": 1.78e-07, - "lytham": 1.78e-07, - "macallan": 1.78e-07, - "macan": 1.78e-07, - "maccabi": 1.78e-07, - "macdowell": 1.78e-07, - "machinima": 1.78e-07, - "macneill": 1.78e-07, - "macross": 1.78e-07, - "madelyn": 1.78e-07, - "mainlanders": 1.78e-07, - "maka": 1.78e-07, - "maktoum": 1.78e-07, - "malan": 1.78e-07, - "malley": 1.78e-07, - "mally": 1.78e-07, - "mand": 1.78e-07, - "manoa": 1.78e-07, - "mansoor": 1.78e-07, - "manticore": 1.78e-07, - "marceau": 1.78e-07, - "marduk": 1.78e-07, - "marfa": 1.78e-07, - "margret": 1.78e-07, - "marmont": 1.78e-07, - "masih": 1.78e-07, - "massena": 1.78e-07, - "massy": 1.78e-07, - "masterclasses": 1.78e-07, - "mateen": 1.78e-07, - "mattias": 1.78e-07, - "maurier": 1.78e-07, - "mccloy": 1.78e-07, - "mcdevitt": 1.78e-07, - "mclemore": 1.78e-07, - "mcneal": 1.78e-07, - "mcqueens": 1.78e-07, - "mdgs": 1.78e-07, - "meandered": 1.78e-07, - "meep": 1.78e-07, - "meereen": 1.78e-07, - "meetin": 1.78e-07, - "melanesian": 1.78e-07, - "membered": 1.78e-07, - "mesmer": 1.78e-07, - "metroplex": 1.78e-07, - "michener": 1.78e-07, - "milbank": 1.78e-07, - "millenia": 1.78e-07, - "mincemeat": 1.78e-07, - "minibuses": 1.78e-07, - "minkowski": 1.78e-07, - "minnesotans": 1.78e-07, - "misdiagnosis": 1.78e-07, - "mktg": 1.78e-07, - "mle": 1.78e-07, - "mmj": 1.78e-07, - "moats": 1.78e-07, - "mobutu": 1.78e-07, - "modafinil": 1.78e-07, - "modifiable": 1.78e-07, - "mogwai": 1.78e-07, - "mohammedan": 1.78e-07, - "moises": 1.78e-07, - "moisten": 1.78e-07, - "moniz": 1.78e-07, - "monstrously": 1.78e-07, - "montparnasse": 1.78e-07, - "mope": 1.78e-07, - "mordant": 1.78e-07, - "morgenthau": 1.78e-07, - "mors": 1.78e-07, - "moschino": 1.78e-07, - "mothra": 1.78e-07, - "moult": 1.78e-07, - "mourner": 1.78e-07, - "movember": 1.78e-07, - "moylan": 1.78e-07, - "muertos": 1.78e-07, - "muhlenberg": 1.78e-07, - "muk": 1.78e-07, - "mulching": 1.78e-07, - "mulgrew": 1.78e-07, - "murrell": 1.78e-07, - "murry": 1.78e-07, - "muscatine": 1.78e-07, - "muschamp": 1.78e-07, - "muscovy": 1.78e-07, - "mutinous": 1.78e-07, - "mwe": 1.78e-07, - "mwr": 1.78e-07, - "naim": 1.78e-07, - "nakuru": 1.78e-07, - "nappa": 1.78e-07, - "nativist": 1.78e-07, - "necking": 1.78e-07, - "nega": 1.78e-07, - "nellis": 1.78e-07, - "neoplasm": 1.78e-07, - "nephropathy": 1.78e-07, - "nervy": 1.78e-07, - "nesbit": 1.78e-07, - "neurosurgeons": 1.78e-07, - "nicking": 1.78e-07, - "nmd": 1.78e-07, - "noguchi": 1.78e-07, - "norristown": 1.78e-07, - "northants": 1.78e-07, - "nuisances": 1.78e-07, - "nuzzle": 1.78e-07, - "oconner": 1.78e-07, - "oaf": 1.78e-07, - "offi": 1.78e-07, - "offshoring": 1.78e-07, - "okazaki": 1.78e-07, - "okinawan": 1.78e-07, - "olav": 1.78e-07, - "oleh": 1.78e-07, - "omars": 1.78e-07, - "oneonta": 1.78e-07, - "oocyte": 1.78e-07, - "orions": 9.12e-08, - "ornithological": 1.78e-07, - "osamu": 1.78e-07, - "otho": 1.78e-07, - "outbuilding": 1.78e-07, - "outflank": 1.78e-07, - "outwitted": 1.78e-07, - "overexposed": 1.78e-07, - "overqualified": 1.78e-07, - "oxidants": 1.78e-07, - "paediatrician": 1.78e-07, - "pagination": 1.78e-07, - "paintwork": 1.78e-07, - "paleontological": 1.78e-07, - "pantries": 1.78e-07, - "paoli": 1.78e-07, - "pariss": 1.78e-07, - "parishad": 1.78e-07, - "parle": 1.78e-07, - "partiers": 1.78e-07, - "pathfinders": 1.78e-07, - "pdl": 1.78e-07, - "pedometer": 1.78e-07, - "pendle": 1.78e-07, - "penitence": 1.78e-07, - "penumbra": 1.78e-07, - "perspex": 1.78e-07, - "pessimists": 1.78e-07, - "philatelic": 1.78e-07, - "phobos": 1.78e-07, - "phoenicia": 1.78e-07, - "picketed": 1.78e-07, - "pict": 1.78e-07, - "pinnock": 1.78e-07, - "pipa": 1.78e-07, - "pitino": 1.78e-07, - "pkr": 1.78e-07, - "pnas": 1.78e-07, - "polarize": 1.78e-07, - "polysaccharides": 1.78e-07, - "pomfret": 1.78e-07, - "porgy": 1.78e-07, - "portnoy": 1.78e-07, - "postgresql": 1.78e-07, - "potosi": 1.78e-07, - "pranab": 1.78e-07, - "printings": 1.78e-07, - "proj": 1.78e-07, - "pui": 1.78e-07, - "punjabis": 1.78e-07, - "pureed": 1.78e-07, - "purifies": 1.78e-07, - "qadir": 1.78e-07, - "qtr": 1.78e-07, - "quand": 1.78e-07, - "quarrelling": 1.78e-07, - "radiata": 1.78e-07, - "radicalised": 1.78e-07, - "radix": 1.78e-07, - "radu": 1.78e-07, - "raffi": 1.78e-07, - "railroaded": 1.78e-07, - "rajkot": 1.78e-07, - "ramage": 1.78e-07, - "ramzan": 1.78e-07, - "rdr": 1.78e-07, - "realpolitik": 1.78e-07, - "rearmament": 1.78e-07, - "reciprocation": 1.78e-07, - "redbridge": 1.78e-07, - "reducible": 1.78e-07, - "reedus": 1.78e-07, - "refines": 1.78e-07, - "reitman": 1.78e-07, - "remainders": 1.78e-07, - "reminisced": 1.78e-07, - "repack": 1.78e-07, - "repartee": 1.78e-07, - "repercussion": 1.78e-07, - "repro": 1.78e-07, - "requester": 1.78e-07, - "retrained": 1.78e-07, - "revelers": 1.78e-07, - "reynold": 1.78e-07, - "rhinoplasty": 1.78e-07, - "ribeye": 1.78e-07, - "rickards": 1.78e-07, - "rickshaws": 1.78e-07, - "ridder": 1.78e-07, - "rifkin": 1.78e-07, - "rightness": 1.78e-07, - "rivlin": 1.78e-07, - "roja": 1.78e-07, - "rosehill": 1.78e-07, - "rossis": 1.78e-07, - "roughshod": 1.78e-07, - "royer": 1.78e-07, - "rozier": 1.78e-07, - "ruto": 1.78e-07, - "safeco": 1.78e-07, - "sahm": 1.78e-07, - "saner": 1.78e-07, - "sarcoidosis": 1.78e-07, - "satiate": 1.78e-07, - "saviours": 8.13e-08, - "sawant": 1.78e-07, - "schechter": 1.78e-07, - "schnabel": 1.78e-07, - "schreiner": 1.78e-07, - "scythian": 1.78e-07, - "seismicity": 1.78e-07, - "sensex": 1.78e-07, - "servicemembers": 1.78e-07, - "sfp": 1.78e-07, - "sharmila": 1.78e-07, - "shilpa": 1.78e-07, - "shinsuke": 1.78e-07, - "shivani": 1.78e-07, - "shockley": 1.78e-07, - "shoeless": 1.78e-07, - "showin": 1.78e-07, - "silvana": 1.78e-07, - "sinan": 1.78e-07, - "skinners": 8.13e-08, - "skylab": 1.78e-07, - "slanting": 1.78e-07, - "slaters": 5.62e-08, - "sleeker": 1.78e-07, - "slimes": 1.78e-07, - "slippin": 1.78e-07, - "smithsonians": 1.78e-07, - "snips": 1.78e-07, - "snouts": 1.78e-07, - "snowshoes": 1.78e-07, - "snowstorms": 1.78e-07, - "soh": 1.78e-07, - "sorption": 1.78e-07, - "soundbites": 1.78e-07, - "soundsystem": 1.78e-07, - "southwick": 1.78e-07, - "spittle": 1.78e-07, - "sproles": 1.78e-07, - "spyglass": 1.78e-07, - "squeaker": 1.78e-07, - "squinted": 1.78e-07, - "sridevi": 1.78e-07, - "srv": 1.78e-07, - "stalactites": 1.78e-07, - "stannard": 1.78e-07, - "steadying": 1.78e-07, - "steppenwolf": 1.78e-07, - "stickiness": 1.78e-07, - "stirrings": 1.78e-07, - "stoics": 1.78e-07, - "stoltenberg": 1.78e-07, - "stumpf": 1.78e-07, - "styler": 1.78e-07, - "sufjan": 1.78e-07, - "summerfield": 1.78e-07, - "symington": 1.78e-07, - "synesthesia": 1.78e-07, - "talbert": 1.78e-07, - "tanners": 1.35e-07, - "tante": 1.78e-07, - "tari": 1.78e-07, - "tatler": 1.78e-07, - "taxiway": 1.78e-07, - "tedder": 1.78e-07, - "teepee": 1.78e-07, - "tenney": 1.78e-07, - "tesoro": 1.78e-07, - "tetsuo": 1.78e-07, - "tev": 1.78e-07, - "texass": 1.78e-07, - "tge": 1.78e-07, - "thelonious": 1.78e-07, - "theosophy": 1.78e-07, - "therapeutically": 1.78e-07, - "thermite": 1.78e-07, - "thrips": 1.78e-07, - "thur": 1.78e-07, - "timepieces": 1.78e-07, - "tinie": 1.78e-07, - "tipu": 1.78e-07, - "tmj": 1.78e-07, - "toit": 1.78e-07, - "tokamak": 1.78e-07, - "tomahawks": 1.78e-07, - "tonio": 1.78e-07, - "toroidal": 1.78e-07, - "tpi": 1.78e-07, - "transferase": 1.78e-07, - "transgenders": 1.78e-07, - "triathlons": 1.78e-07, - "trib": 1.78e-07, - "triphosphate": 1.78e-07, - "troi": 1.78e-07, - "tsg": 1.78e-07, - "tsipras": 1.78e-07, - "tthe": 1.78e-07, - "turki": 1.78e-07, - "turncoat": 1.78e-07, - "turney": 1.78e-07, - "tush": 1.78e-07, - "twombly": 1.78e-07, - "udinese": 1.78e-07, - "ulama": 1.78e-07, - "ultimatums": 1.78e-07, - "unders": 1.78e-07, - "underwire": 1.78e-07, - "undiminished": 1.78e-07, - "unenthusiastic": 1.78e-07, - "upanishads": 1.78e-07, - "usefull": 1.78e-07, - "usi": 1.78e-07, - "vashem": 1.78e-07, - "vcrs": 1.78e-07, - "vergne": 1.78e-07, - "vernons": 1.78e-07, - "veuve": 1.78e-07, - "viciousness": 1.78e-07, - "vicomte": 1.78e-07, - "vosges": 1.78e-07, - "wahid": 1.78e-07, - "wargame": 1.78e-07, - "watashi": 1.78e-07, - "waypoints": 1.78e-07, - "wdw": 1.78e-07, - "welwyn": 1.78e-07, - "wesen": 1.78e-07, - "wetmore": 1.78e-07, - "whippet": 1.78e-07, - "whois": 1.78e-07, - "whorehouse": 1.78e-07, - "wickes": 1.78e-07, - "wigglesworth": 1.78e-07, - "wilk": 1.78e-07, - "wilmslow": 1.78e-07, - "wisniewski": 1.78e-07, - "wizkid": 1.78e-07, - "wolters": 1.78e-07, - "woodwinds": 1.78e-07, - "wortley": 1.78e-07, - "wsa": 1.78e-07, - "wsw": 1.78e-07, - "wz": 1.78e-07, - "yancy": 1.78e-07, - "yarbrough": 1.78e-07, - "yearlings": 1.78e-07, - "yeomen": 1.78e-07, - "yoshis": 1.78e-07, - "yoshiki": 1.78e-07, - "yuris": 1.78e-07, - "yuriy": 1.78e-07, - "zapping": 1.78e-07, - "zelena": 1.78e-07, - "zhukov": 1.78e-07, - "zipline": 1.78e-07, - "zno": 1.78e-07, - "zoster": 1.78e-07, - "zulfiqar": 1.78e-07, - "abacha": 1.74e-07, - "abaya": 1.74e-07, - "abney": 1.74e-07, - "abruzzo": 1.74e-07, - "adelina": 1.74e-07, - "ady": 1.74e-07, - "aei": 1.74e-07, - "aeons": 1.74e-07, - "aep": 1.74e-07, - "afaik": 1.74e-07, - "affray": 1.74e-07, - "afscme": 1.74e-07, - "agonies": 1.74e-07, - "agronomist": 1.74e-07, - "aif": 1.74e-07, - "ailsa": 1.74e-07, - "albertine": 1.74e-07, - "alfresco": 1.74e-07, - "amana": 1.74e-07, - "amani": 1.74e-07, - "amaral": 1.74e-07, - "ambo": 1.74e-07, - "amersham": 1.74e-07, - "amores": 1.74e-07, - "angelos": 1.32e-07, - "angriest": 1.74e-07, - "antisense": 1.74e-07, - "anza": 1.74e-07, - "appetit": 1.74e-07, - "arai": 1.74e-07, - "arcuate": 1.74e-07, - "aristotles": 1.74e-07, - "armbar": 1.74e-07, - "armidale": 1.74e-07, - "armistead": 1.74e-07, - "arryn": 1.74e-07, - "askari": 1.74e-07, - "astrolabe": 1.74e-07, - "astronomically": 1.74e-07, - "attleboro": 1.74e-07, - "atvs": 5.37e-08, - "augustan": 1.74e-07, - "aurum": 1.74e-07, - "azazel": 1.74e-07, - "backlogs": 1.74e-07, - "badged": 1.74e-07, - "bafana": 1.74e-07, - "balms": 1.74e-07, - "banaras": 1.74e-07, - "bande": 1.74e-07, - "baro": 1.74e-07, - "basalts": 1.74e-07, - "basi": 1.74e-07, - "baucus": 1.74e-07, - "bauers": 1.74e-07, - "baw": 1.74e-07, - "bbn": 1.74e-07, - "bedell": 1.74e-07, - "bedroomed": 1.74e-07, - "beehives": 1.74e-07, - "bellaire": 1.74e-07, - "bellybutton": 1.74e-07, - "bendis": 1.74e-07, - "berndt": 1.74e-07, - "bespectacled": 1.74e-07, - "bez": 1.74e-07, - "bian": 1.74e-07, - "binges": 1.74e-07, - "binnie": 1.74e-07, - "bivalves": 1.74e-07, - "bks": 1.74e-07, - "blackford": 1.74e-07, - "blacksmithing": 1.74e-07, - "blacktop": 1.74e-07, - "blass": 1.74e-07, - "blok": 1.74e-07, - "bnd": 1.74e-07, - "bodley": 1.74e-07, - "bombshells": 1.74e-07, - "bootlegging": 1.74e-07, - "bootloader": 1.74e-07, - "bootstrapping": 1.74e-07, - "boras": 1.74e-07, - "bordello": 1.74e-07, - "borns": 1.74e-07, - "bouche": 1.74e-07, - "boye": 1.74e-07, - "bramley": 1.74e-07, - "branca": 1.74e-07, - "branislav": 1.74e-07, - "brannigan": 1.74e-07, - "brannon": 1.74e-07, - "brassica": 1.74e-07, - "brattleboro": 1.74e-07, - "braverman": 1.74e-07, - "brevis": 1.74e-07, - "brickworks": 1.74e-07, - "bris": 1.74e-07, - "broody": 1.74e-07, - "btcc": 1.74e-07, - "buehler": 1.74e-07, - "bulla": 1.74e-07, - "bullfighter": 1.74e-07, - "bullring": 1.74e-07, - "bulova": 1.74e-07, - "burkett": 1.74e-07, - "busey": 1.74e-07, - "busker": 1.74e-07, - "butadiene": 1.74e-07, - "buttes": 1.74e-07, - "cadences": 1.74e-07, - "cahiers": 1.74e-07, - "callender": 1.74e-07, - "callings": 1.74e-07, - "camelback": 1.74e-07, - "cannonballs": 1.74e-07, - "canute": 1.74e-07, - "capitaine": 1.74e-07, - "cardholder": 1.74e-07, - "carnitine": 1.74e-07, - "carolinians": 1.74e-07, - "cartouche": 1.74e-07, - "carville": 1.74e-07, - "cassian": 1.74e-07, - "cassidys": 1.74e-07, - "cawley": 1.74e-07, - "cbcs": 1.74e-07, - "centerpieces": 1.74e-07, - "cga": 1.74e-07, - "chaldeans": 1.74e-07, - "chambliss": 1.74e-07, - "chappy": 1.74e-07, - "chertsey": 1.74e-07, - "chev": 1.74e-07, - "chicanery": 1.74e-07, - "chippenham": 1.74e-07, - "chitin": 1.74e-07, - "chuy": 1.74e-07, - "cimarron": 1.74e-07, - "cipriani": 1.74e-07, - "cisgender": 1.74e-07, - "clasico": 1.74e-07, - "claypool": 1.74e-07, - "clitheroe": 1.74e-07, - "colangelo": 1.74e-07, - "colonys": 1.74e-07, - "comerica": 1.74e-07, - "commandeer": 1.74e-07, - "commun": 1.74e-07, - "compensator": 1.74e-07, - "comtesse": 1.74e-07, - "conceives": 1.74e-07, - "conjurer": 1.74e-07, - "contextualize": 1.74e-07, - "contralateral": 1.74e-07, - "contusions": 1.74e-07, - "corne": 1.74e-07, - "counteracts": 1.74e-07, - "cous": 1.74e-07, - "crd": 1.74e-07, - "creat": 1.74e-07, - "cromartie": 1.74e-07, - "cros": 1.74e-07, - "cruisin": 1.74e-07, - "curiae": 1.74e-07, - "customizations": 1.74e-07, - "dahls": 1.74e-07, - "dakin": 1.74e-07, - "dalliance": 1.74e-07, - "daltons": 1.2e-07, - "darke": 1.74e-07, - "ddu": 1.74e-07, - "deegan": 1.74e-07, - "defers": 1.74e-07, - "deism": 1.74e-07, - "dej": 1.74e-07, - "demonization": 1.74e-07, - "denigration": 1.74e-07, - "determinedly": 1.74e-07, - "detonations": 1.74e-07, - "dfg": 1.74e-07, - "diam": 1.74e-07, - "dich": 1.74e-07, - "didgeridoo": 1.74e-07, - "dierks": 1.74e-07, - "dii": 1.74e-07, - "dilla": 1.74e-07, - "dimers": 1.74e-07, - "dinning": 1.74e-07, - "disassociated": 1.74e-07, - "dishevelled": 1.74e-07, - "disperses": 1.74e-07, - "displayport": 1.74e-07, - "ditzy": 1.74e-07, - "diu": 1.74e-07, - "dkk": 1.74e-07, - "doggystyle": 1.74e-07, - "donati": 1.74e-07, - "dordogne": 1.74e-07, - "dosimetry": 1.74e-07, - "doughy": 1.74e-07, - "douma": 1.74e-07, - "draghi": 1.74e-07, - "dudgeon": 1.74e-07, - "dunder": 1.74e-07, - "durrant": 1.74e-07, - "dutchmen": 1.74e-07, - "duxbury": 1.74e-07, - "dwarven": 1.74e-07, - "earmark": 1.74e-07, - "edsel": 1.74e-07, - "educ": 1.74e-07, - "efa": 1.74e-07, - "eleni": 1.74e-07, - "elyria": 1.74e-07, - "emplacements": 1.74e-07, - "empted": 1.74e-07, - "engenders": 1.74e-07, - "engi": 1.74e-07, - "engrained": 1.74e-07, - "enso": 1.74e-07, - "erfurt": 1.74e-07, - "erythromycin": 1.74e-07, - "ethier": 1.74e-07, - "ethnological": 1.74e-07, - "eubanks": 1.74e-07, - "eurocopter": 1.74e-07, - "ewok": 1.74e-07, - "exons": 1.74e-07, - "fabricators": 1.74e-07, - "fabricius": 1.74e-07, - "familiars": 1.74e-07, - "fannin": 1.74e-07, - "farrelly": 1.74e-07, - "fdc": 1.74e-07, - "feck": 1.74e-07, - "ferran": 1.74e-07, - "fhm": 1.74e-07, - "filmic": 1.74e-07, - "fishburne": 1.74e-07, - "flinn": 1.74e-07, - "flints": 1.41e-07, - "fogging": 1.74e-07, - "formic": 1.74e-07, - "francisca": 1.74e-07, - "frankford": 1.74e-07, - "frederica": 1.74e-07, - "ftb": 1.74e-07, - "ftd": 1.74e-07, - "fug": 1.74e-07, - "fuzhou": 1.74e-07, - "gabbert": 1.74e-07, - "gainfully": 1.74e-07, - "gansu": 1.74e-07, - "garten": 1.74e-07, - "garwood": 1.74e-07, - "gasser": 1.74e-07, - "gavins": 1.74e-07, - "gaydar": 1.74e-07, - "gelb": 1.74e-07, - "generalizes": 1.74e-07, - "genii": 1.74e-07, - "gentlest": 1.74e-07, - "geodesy": 1.74e-07, - "germinated": 1.74e-07, - "glasser": 1.74e-07, - "glossing": 1.74e-07, - "glycerine": 1.74e-07, - "goebel": 1.74e-07, - "gondwana": 1.74e-07, - "goodspeed": 1.74e-07, - "gowan": 1.74e-07, - "gpi": 1.74e-07, - "grama": 1.74e-07, - "grandi": 1.74e-07, - "granites": 1.74e-07, - "grau": 1.74e-07, - "gravitys": 1.74e-07, - "graysons": 1.74e-07, - "gribble": 1.74e-07, - "grifters": 1.74e-07, - "grindelwald": 1.74e-07, - "gritting": 1.74e-07, - "habitability": 1.74e-07, - "hairstyling": 1.74e-07, - "halfling": 1.74e-07, - "hamblin": 1.74e-07, - "hancocks": 1.74e-07, - "hanne": 1.74e-07, - "hanrahan": 1.74e-07, - "hansons": 1.74e-07, - "haroon": 1.74e-07, - "haydock": 1.74e-07, - "headstart": 1.74e-07, - "hegelian": 1.74e-07, - "hemispheric": 1.74e-07, - "herold": 1.74e-07, - "herrington": 1.74e-07, - "hiltons": 1.74e-07, - "hizb": 1.74e-07, - "holdouts": 1.74e-07, - "holies": 1.74e-07, - "hominids": 1.74e-07, - "hooky": 1.74e-07, - "howrah": 1.74e-07, - "hsiang": 1.74e-07, - "humvees": 1.74e-07, - "husayn": 1.74e-07, - "hybridized": 1.74e-07, - "iana": 1.74e-07, - "iginla": 1.74e-07, - "ignoble": 1.74e-07, - "illingworth": 1.74e-07, - "imbibed": 1.74e-07, - "imperceptibly": 1.74e-07, - "impoverishment": 1.74e-07, - "indecipherable": 1.74e-07, - "infers": 1.74e-07, - "ingratiate": 1.74e-07, - "inguinal": 1.74e-07, - "initio": 1.74e-07, - "inslee": 1.74e-07, - "instrumentality": 1.74e-07, - "insurgencies": 1.74e-07, - "intercalated": 1.74e-07, - "intermolecular": 1.74e-07, - "iowans": 1.74e-07, - "irradiance": 1.74e-07, - "irrawaddy": 1.74e-07, - "isadora": 1.74e-07, - "isley": 1.74e-07, - "isoform": 1.74e-07, - "istvan": 1.74e-07, - "italianate": 1.74e-07, - "jaimie": 1.74e-07, - "jamar": 1.74e-07, - "jarrow": 1.74e-07, - "jaundiced": 1.74e-07, - "jesters": 6.61e-08, - "johanson": 1.74e-07, - "joji": 1.74e-07, - "jotted": 1.74e-07, - "judgeship": 1.74e-07, - "jujitsu": 1.74e-07, - "juxtaposing": 1.74e-07, - "kael": 1.74e-07, - "kahan": 1.74e-07, - "kais": 8.71e-08, - "kaneko": 1.74e-07, - "kapoors": 1.74e-07, - "karloff": 1.74e-07, - "kartik": 1.74e-07, - "ked": 1.74e-07, - "kendalls": 1.74e-07, - "kerman": 1.74e-07, - "keung": 1.74e-07, - "kevorkian": 1.74e-07, - "keyring": 1.74e-07, - "khair": 1.74e-07, - "khosla": 1.74e-07, - "kimbrough": 1.74e-07, - "kir": 1.74e-07, - "kisan": 1.74e-07, - "kla": 1.74e-07, - "knotts": 1.7e-07, - "kozlowski": 1.74e-07, - "kraftwerk": 1.74e-07, - "kristof": 1.74e-07, - "kuru": 1.74e-07, - "kye": 1.74e-07, - "kyler": 1.74e-07, - "laconia": 1.74e-07, - "ladysmith": 1.74e-07, - "lafitte": 1.74e-07, - "lait": 1.74e-07, - "lamm": 1.74e-07, - "larisa": 1.74e-07, - "lascelles": 1.74e-07, - "laypeople": 1.74e-07, - "leduc": 1.74e-07, - "legislations": 1.74e-07, - "leominster": 1.74e-07, - "lesbo": 1.74e-07, - "levys": 1.74e-07, - "leys": 1.74e-07, - "liane": 1.74e-07, - "liebe": 1.74e-07, - "lill": 1.74e-07, - "liminal": 1.74e-07, - "lithic": 1.74e-07, - "livings": 7.24e-08, - "loran": 1.74e-07, - "lorre": 1.74e-07, - "lsus": 1.74e-07, - "lubin": 1.74e-07, - "luckey": 1.74e-07, - "luddite": 1.74e-07, - "lusted": 1.74e-07, - "lymphoblastic": 1.74e-07, - "macnamara": 1.74e-07, - "madara": 1.74e-07, - "madhav": 1.74e-07, - "magik": 1.74e-07, - "magritte": 1.74e-07, - "mamoru": 1.74e-07, - "manali": 1.74e-07, - "manservant": 1.74e-07, - "markos": 1.74e-07, - "markovic": 1.74e-07, - "marra": 1.74e-07, - "marvellously": 1.74e-07, - "mattson": 1.74e-07, - "maxing": 1.74e-07, - "mccalls": 1.74e-07, - "mccarran": 1.74e-07, - "mccook": 1.74e-07, - "mcglynn": 1.74e-07, - "mdd": 1.74e-07, - "mdl": 1.74e-07, - "mealtimes": 1.74e-07, - "megalithic": 1.74e-07, - "meghalaya": 1.74e-07, - "mesolithic": 1.74e-07, - "metairie": 1.74e-07, - "metrorail": 1.74e-07, - "microfluidic": 1.74e-07, - "micrornas": 1.74e-07, - "milgram": 1.74e-07, - "mindedly": 1.74e-07, - "misprint": 1.74e-07, - "misrepresents": 1.74e-07, - "mkhitaryan": 1.74e-07, - "modeler": 1.74e-07, - "modelo": 1.74e-07, - "moderns": 1.74e-07, - "mohawks": 1.74e-07, - "mohit": 1.74e-07, - "moldavia": 1.74e-07, - "mordechai": 1.74e-07, - "mostyn": 1.74e-07, - "moultrie": 1.74e-07, - "muesli": 1.74e-07, - "musicology": 1.74e-07, - "mutagen": 1.74e-07, - "nagata": 1.74e-07, - "nandos": 7.59e-08, - "narain": 1.74e-07, - "naturel": 1.74e-07, - "naxos": 1.74e-07, - "nazarbayev": 1.74e-07, - "nearness": 1.74e-07, - "necro": 1.74e-07, - "needling": 1.74e-07, - "neurophysiology": 1.74e-07, - "neurotoxic": 1.74e-07, - "nevers": 1.74e-07, - "nff": 1.74e-07, - "nicotinic": 1.74e-07, - "nietzsches": 1.74e-07, - "nkvd": 1.74e-07, - "normalizes": 1.74e-07, - "npo": 1.74e-07, - "nrt": 1.74e-07, - "nsl": 1.74e-07, - "nsn": 1.74e-07, - "nti": 1.74e-07, - "nubile": 1.74e-07, - "nucleoside": 1.74e-07, - "nudists": 1.74e-07, - "nvr": 1.74e-07, - "odonovan": 1.74e-07, - "octet": 1.74e-07, - "oes": 1.74e-07, - "ohara": 1.74e-07, - "oid": 1.74e-07, - "omri": 1.74e-07, - "opensource": 1.74e-07, - "orbited": 1.74e-07, - "osd": 1.74e-07, - "osler": 1.74e-07, - "osp": 1.74e-07, - "osteopathy": 1.74e-07, - "otherworld": 1.74e-07, - "overnights": 1.74e-07, - "overpasses": 1.74e-07, - "overrepresented": 1.74e-07, - "overruling": 1.74e-07, - "overrunning": 1.74e-07, - "padme": 1.74e-07, - "padstow": 1.74e-07, - "paise": 1.74e-07, - "palmar": 1.74e-07, - "panza": 1.74e-07, - "paphos": 1.74e-07, - "paps": 1.74e-07, - "paralegals": 1.74e-07, - "parasitology": 1.74e-07, - "parkview": 1.74e-07, - "parsifal": 1.74e-07, - "pasig": 1.74e-07, - "pasok": 1.74e-07, - "patricians": 1.74e-07, - "paytm": 1.74e-07, - "pdo": 1.74e-07, - "permeating": 1.74e-07, - "perps": 1.74e-07, - "perse": 1.74e-07, - "petronius": 1.74e-07, - "pfeifer": 1.74e-07, - "pfp": 1.74e-07, - "phthalate": 1.74e-07, - "pinder": 1.74e-07, - "pippi": 1.74e-07, - "playford": 1.74e-07, - "plumbed": 1.74e-07, - "pluralist": 1.74e-07, - "plutocracy": 1.74e-07, - "pneumococcal": 1.74e-07, - "podcaster": 1.74e-07, - "pola": 1.74e-07, - "politica": 1.74e-07, - "politicize": 1.74e-07, - "polycyclic": 1.74e-07, - "poonam": 1.74e-07, - "poulter": 1.74e-07, - "poulton": 1.74e-07, - "powerade": 1.74e-07, - "powerfull": 1.74e-07, - "preeti": 1.74e-07, - "pristina": 1.74e-07, - "prl": 1.74e-07, - "propitious": 1.74e-07, - "propranolol": 1.74e-07, - "prosocial": 1.74e-07, - "psychotherapists": 1.74e-07, - "publicans": 1.74e-07, - "purl": 1.74e-07, - "pushkar": 1.74e-07, - "qaddafi": 1.74e-07, - "qanon": 1.74e-07, - "qcd": 1.74e-07, - "qubits": 1.74e-07, - "queanbeyan": 1.74e-07, - "quorn": 1.74e-07, - "racoon": 1.74e-07, - "raisa": 1.74e-07, - "rambled": 1.74e-07, - "ramis": 1.74e-07, - "rampal": 1.74e-07, - "rashida": 1.74e-07, - "ratted": 1.74e-07, - "readjustment": 1.74e-07, - "receptionists": 1.74e-07, - "recharges": 1.74e-07, - "recirculation": 1.74e-07, - "recto": 1.74e-07, - "redhill": 1.74e-07, - "reheating": 1.74e-07, - "rehire": 1.74e-07, - "reincarnate": 1.74e-07, - "reith": 1.74e-07, - "rendez": 1.74e-07, - "repellant": 1.74e-07, - "restlessly": 1.74e-07, - "retell": 1.74e-07, - "reverberations": 1.74e-07, - "revitalise": 1.74e-07, - "revoir": 1.74e-07, - "rhd": 1.74e-07, - "ricas": 1.74e-07, - "ripken": 1.74e-07, - "rippon": 1.74e-07, - "rivington": 1.74e-07, - "riyad": 1.74e-07, - "robie": 1.74e-07, - "robusta": 1.74e-07, - "rocketry": 1.74e-07, - "rocko": 1.74e-07, - "romulans": 1.74e-07, - "rtb": 1.74e-07, - "rudys": 1.74e-07, - "ruh": 1.74e-07, - "rumple": 1.74e-07, - "rumpled": 1.74e-07, - "runaround": 1.74e-07, - "ryle": 1.74e-07, - "safa": 1.74e-07, - "saget": 1.74e-07, - "sagittal": 1.74e-07, - "sailfish": 1.74e-07, - "saltiness": 1.74e-07, - "sammys": 1.74e-07, - "samo": 1.74e-07, - "samoans": 1.74e-07, - "sandhya": 1.74e-07, - "sandoz": 1.74e-07, - "sanyo": 1.74e-07, - "sapir": 1.74e-07, - "sarada": 1.74e-07, - "satay": 1.74e-07, - "sayid": 1.74e-07, - "sbp": 1.74e-07, - "scaredy": 1.74e-07, - "schnapps": 1.74e-07, - "schneiderlin": 1.74e-07, - "schwartzman": 1.74e-07, - "screeners": 1.74e-07, - "scrutinise": 1.74e-07, - "seagoing": 1.74e-07, - "sef": 1.74e-07, - "segel": 1.74e-07, - "seifert": 1.74e-07, - "selassie": 1.74e-07, - "selleck": 1.74e-07, - "selznick": 1.74e-07, - "semarang": 1.74e-07, - "semolina": 1.74e-07, - "septimus": 1.74e-07, - "sete": 1.74e-07, - "seto": 1.74e-07, - "severally": 1.74e-07, - "sewol": 1.74e-07, - "sgp": 1.74e-07, - "shadi": 1.74e-07, - "shahi": 1.74e-07, - "shakey": 1.74e-07, - "shanked": 1.74e-07, - "shehu": 1.74e-07, - "sheringham": 1.74e-07, - "shitbag": 1.74e-07, - "shutoff": 1.74e-07, - "siang": 1.74e-07, - "siete": 1.74e-07, - "sira": 1.74e-07, - "sissi": 1.74e-07, - "skagit": 1.74e-07, - "slathered": 1.74e-07, - "slavin": 1.74e-07, - "slobs": 1.74e-07, - "slt": 1.74e-07, - "slumbering": 1.74e-07, - "smallholders": 1.74e-07, - "smarmy": 1.74e-07, - "smutty": 1.74e-07, - "sneed": 1.74e-07, - "sniffling": 1.74e-07, - "sobotka": 1.74e-07, - "speedos": 1.74e-07, - "speedwagon": 1.74e-07, - "speller": 1.74e-07, - "spinks": 1.74e-07, - "spreaders": 1.74e-07, - "sproul": 1.74e-07, - "steptoe": 1.74e-07, - "stol": 1.74e-07, - "straightens": 1.74e-07, - "strenght": 1.74e-07, - "strobel": 1.74e-07, - "sublingual": 1.74e-07, - "subsoil": 1.74e-07, - "succes": 1.74e-07, - "sunbathe": 1.74e-07, - "sunt": 1.74e-07, - "surinam": 1.74e-07, - "swaggy": 1.74e-07, - "sweetening": 1.74e-07, - "swordsmanship": 1.74e-07, - "synthetase": 1.74e-07, - "synthetically": 1.74e-07, - "takada": 1.74e-07, - "taleb": 1.74e-07, - "talkback": 1.74e-07, - "talleyrand": 1.74e-07, - "tamim": 1.74e-07, - "tanf": 1.74e-07, - "tannenbaum": 1.74e-07, - "tashi": 1.74e-07, - "tatami": 1.74e-07, - "tautology": 1.74e-07, - "taxidermist": 1.74e-07, - "tbp": 1.74e-07, - "tco": 1.74e-07, - "teemu": 1.74e-07, - "telemarketer": 1.74e-07, - "teletype": 1.74e-07, - "terpenes": 1.74e-07, - "terraria": 1.74e-07, - "throaty": 1.74e-07, - "thrombocytopenia": 1.74e-07, - "thunderstruck": 1.74e-07, - "timken": 1.74e-07, - "titusville": 1.74e-07, - "toca": 1.74e-07, - "torsos": 1.74e-07, - "tovey": 1.74e-07, - "trak": 1.74e-07, - "transcriptase": 1.74e-07, - "transversal": 1.74e-07, - "traore": 1.74e-07, - "treeline": 1.74e-07, - "trespassed": 1.74e-07, - "trevi": 1.74e-07, - "tria": 1.74e-07, - "trumpers": 1.74e-07, - "truncate": 1.74e-07, - "trw": 1.74e-07, - "tuples": 1.74e-07, - "uca": 1.74e-07, - "ues": 1.74e-07, - "ultramarine": 1.74e-07, - "uncheck": 1.74e-07, - "underling": 1.74e-07, - "unifies": 1.74e-07, - "unimproved": 1.74e-07, - "unita": 1.74e-07, - "univers": 1.74e-07, - "universitas": 1.74e-07, - "unpaired": 1.74e-07, - "unreality": 1.74e-07, - "unseeded": 1.74e-07, - "unsinkable": 1.74e-07, - "untranslated": 1.74e-07, - "utopias": 1.74e-07, - "valerius": 1.74e-07, - "valyrian": 1.74e-07, - "vanessas": 1.74e-07, - "varicella": 1.74e-07, - "verbalize": 1.74e-07, - "verte": 1.74e-07, - "vette": 1.74e-07, - "victimize": 1.74e-07, - "volcker": 1.74e-07, - "voyeuristic": 1.74e-07, - "waheed": 1.74e-07, - "wakeman": 1.74e-07, - "wallenberg": 1.74e-07, - "warded": 1.74e-07, - "waukegan": 1.74e-07, - "weatherproof": 1.74e-07, - "weisman": 1.74e-07, - "whitsunday": 1.74e-07, - "wilkin": 1.74e-07, - "willys": 1.12e-07, - "wnw": 1.74e-07, - "wolfes": 1.74e-07, - "woodhull": 1.74e-07, - "woos": 1.26e-07, - "wordsmith": 1.74e-07, - "writhe": 1.74e-07, - "wsp": 1.74e-07, - "xaviers": 1.74e-07, - "yaa": 1.74e-07, - "yamauchi": 1.74e-07, - "yelich": 1.74e-07, - "yog": 1.74e-07, - "yomi": 1.74e-07, - "yugoslavian": 1.74e-07, - "zahid": 1.74e-07, - "aaaaah": 1.7e-07, - "aarti": 1.7e-07, - "abbreviate": 1.7e-07, - "abid": 1.7e-07, - "abies": 1.7e-07, - "accentuating": 1.7e-07, - "accross": 1.7e-07, - "acro": 1.7e-07, - "acv": 1.7e-07, - "addisons": 1.7e-07, - "adelman": 1.7e-07, - "africana": 1.7e-07, - "afrikaners": 1.7e-07, - "afterburner": 1.7e-07, - "afterparty": 1.7e-07, - "afters": 1.7e-07, - "agathe": 1.7e-07, - "ahm": 1.7e-07, - "airlie": 1.7e-07, - "alamein": 1.7e-07, - "albacore": 1.7e-07, - "aliya": 1.7e-07, - "allium": 1.7e-07, - "amalgamate": 1.7e-07, - "amare": 1.2e-07, - "amn": 1.7e-07, - "amun": 1.7e-07, - "anaemic": 1.7e-07, - "anaesthetist": 1.7e-07, - "anissa": 1.7e-07, - "anr": 1.7e-07, - "antero": 1.7e-07, - "anthropocene": 1.7e-07, - "anticlimactic": 1.7e-07, - "antonis": 1.7e-07, - "anyhoo": 1.7e-07, - "apollonius": 1.7e-07, - "appraising": 1.7e-07, - "arup": 1.7e-07, - "asana": 1.7e-07, - "aseptic": 1.7e-07, - "astrodome": 1.7e-07, - "asuncion": 1.7e-07, - "atman": 1.7e-07, - "attar": 1.7e-07, - "aubert": 1.7e-07, - "aucklands": 1.7e-07, - "augusts": 1.7e-07, - "awan": 1.7e-07, - "ayan": 1.7e-07, - "azeroth": 1.7e-07, - "azim": 1.7e-07, - "azrael": 1.7e-07, - "baader": 1.7e-07, - "backsliding": 1.7e-07, - "badawi": 1.7e-07, - "badshah": 1.7e-07, - "banga": 1.7e-07, - "bankrolling": 1.7e-07, - "baobab": 1.7e-07, - "bareilles": 1.7e-07, - "basha": 1.7e-07, - "basketballs": 1.35e-07, - "batwoman": 1.7e-07, - "baur": 1.7e-07, - "beckers": 1.7e-07, - "beechcraft": 1.7e-07, - "beeped": 1.7e-07, - "befor": 1.7e-07, - "beli": 1.7e-07, - "bellflower": 1.7e-07, - "bensons": 1.7e-07, - "berbatov": 1.7e-07, - "bere": 1.7e-07, - "bernese": 1.7e-07, - "bessel": 1.7e-07, - "bfc": 1.7e-07, - "bhumibol": 1.7e-07, - "billingham": 1.7e-07, - "biomolecular": 1.7e-07, - "blech": 1.7e-07, - "blick": 1.7e-07, - "blizzcon": 1.7e-07, - "blumberg": 1.7e-07, - "bmr": 1.7e-07, - "bns": 1.7e-07, - "bochum": 1.7e-07, - "bokeh": 1.7e-07, - "bolingbroke": 1.7e-07, - "bolivarian": 1.7e-07, - "bollards": 1.7e-07, - "bookbinding": 1.7e-07, - "bpp": 1.7e-07, - "brainwaves": 1.7e-07, - "breanna": 1.7e-07, - "brechin": 1.7e-07, - "breezed": 1.7e-07, - "briefcases": 1.7e-07, - "bronn": 1.7e-07, - "burgundian": 1.7e-07, - "burhan": 1.7e-07, - "burkhart": 1.7e-07, - "bycatch": 1.7e-07, - "byway": 1.7e-07, - "calderwood": 1.7e-07, - "canaanites": 1.7e-07, - "candler": 1.7e-07, - "capsid": 1.7e-07, - "carburetors": 1.7e-07, - "carmaker": 1.7e-07, - "carpooling": 1.7e-07, - "cartoony": 1.7e-07, - "casco": 1.7e-07, - "cassock": 1.7e-07, - "castelli": 1.7e-07, - "castrol": 1.7e-07, - "centring": 1.7e-07, - "chalking": 1.7e-07, - "chapeau": 1.7e-07, - "ches": 1.7e-07, - "chetan": 1.7e-07, - "chirpy": 1.7e-07, - "cholinergic": 1.7e-07, - "choon": 1.7e-07, - "cinematographers": 1.7e-07, - "cinnabar": 1.7e-07, - "cisplatin": 1.7e-07, - "civitas": 1.7e-07, - "clanton": 1.7e-07, - "climaxed": 1.7e-07, - "clunk": 1.7e-07, - "coauthors": 1.7e-07, - "cobains": 1.7e-07, - "cof": 1.7e-07, - "colwell": 1.7e-07, - "combinatorics": 1.7e-07, - "commentate": 1.7e-07, - "communis": 1.7e-07, - "comradeship": 1.7e-07, - "confocal": 1.7e-07, - "congregating": 1.7e-07, - "conjugates": 1.7e-07, - "contd": 8.51e-08, - "coolio": 1.7e-07, - "coppin": 1.7e-07, - "corked": 1.7e-07, - "corneille": 1.7e-07, - "cornhill": 1.7e-07, - "councilmen": 1.7e-07, - "credentialing": 1.7e-07, - "creston": 1.7e-07, - "croup": 1.7e-07, - "crunk": 1.7e-07, - "csk": 1.7e-07, - "cuellar": 1.7e-07, - "cuenca": 1.7e-07, - "culp": 1.7e-07, - "curtailment": 1.7e-07, - "cvr": 1.7e-07, - "daniell": 1.7e-07, - "deanery": 1.7e-07, - "deaton": 1.7e-07, - "debited": 1.7e-07, - "declassify": 1.7e-07, - "declutter": 1.7e-07, - "deland": 1.7e-07, - "delegitimize": 1.7e-07, - "delfino": 1.7e-07, - "deniro": 1.7e-07, - "denpasar": 1.7e-07, - "depletes": 1.7e-07, - "deposing": 1.7e-07, - "dermott": 1.7e-07, - "detests": 1.7e-07, - "devizes": 1.7e-07, - "diffuses": 1.7e-07, - "dilutes": 1.7e-07, - "dimensionally": 1.7e-07, - "dippy": 1.7e-07, - "discogs": 1.7e-07, - "discontinuities": 1.7e-07, - "discoverers": 1.7e-07, - "disproven": 1.7e-07, - "dmytro": 1.7e-07, - "dockyards": 1.7e-07, - "domestics": 1.7e-07, - "dominantly": 1.7e-07, - "domme": 1.7e-07, - "dooby": 1.7e-07, - "dote": 1.7e-07, - "doubtfire": 1.7e-07, - "douro": 1.7e-07, - "dudu": 1.7e-07, - "dungarees": 1.7e-07, - "duong": 1.7e-07, - "dus": 1.7e-07, - "dzhokhar": 1.7e-07, - "eal": 1.7e-07, - "eastwoods": 1.7e-07, - "ebbed": 1.7e-07, - "ebi": 1.7e-07, - "edmontons": 1.7e-07, - "effendi": 1.7e-07, - "egoist": 1.7e-07, - "egrets": 1.7e-07, - "eisenhowers": 1.7e-07, - "eisteddfod": 1.7e-07, - "elaines": 1.7e-07, - "electromagnet": 1.7e-07, - "elster": 1.7e-07, - "emancipate": 1.7e-07, - "endnotes": 1.7e-07, - "endocytosis": 1.7e-07, - "engler": 1.7e-07, - "entrancing": 1.7e-07, - "entreaties": 1.7e-07, - "erisa": 1.7e-07, - "erma": 1.7e-07, - "erythematosus": 1.7e-07, - "erythrocytes": 1.7e-07, - "espanol": 1.7e-07, - "euromaidan": 1.7e-07, - "europol": 1.7e-07, - "everitt": 1.7e-07, - "exhort": 1.7e-07, - "exploiters": 1.7e-07, - "extracurriculars": 1.7e-07, - "extraterritorial": 1.7e-07, - "extroverts": 1.7e-07, - "factbook": 1.7e-07, - "fairport": 1.7e-07, - "faiz": 1.7e-07, - "fama": 1.7e-07, - "familiarise": 1.7e-07, - "fant": 1.7e-07, - "faraj": 1.7e-07, - "farmingdale": 1.7e-07, - "farringdon": 1.7e-07, - "fath": 1.7e-07, - "fatuous": 1.7e-07, - "fdd": 1.7e-07, - "felixstowe": 1.7e-07, - "fellers": 1.7e-07, - "fended": 1.7e-07, - "festschrift": 1.7e-07, - "fili": 1.7e-07, - "fiqh": 1.7e-07, - "fishnets": 1.7e-07, - "fitton": 1.7e-07, - "fiz": 1.7e-07, - "flagships": 1.7e-07, - "fleischmann": 1.7e-07, - "flexors": 1.7e-07, - "fmr": 1.7e-07, - "forgone": 1.7e-07, - "forwarder": 1.7e-07, - "fotos": 1.7e-07, - "fpa": 1.7e-07, - "fraenkel": 1.7e-07, - "frege": 1.7e-07, - "frigidaire": 1.7e-07, - "fritsch": 1.7e-07, - "frond": 1.7e-07, - "fudging": 1.7e-07, - "funicular": 1.7e-07, - "furtively": 1.7e-07, - "fwc": 1.7e-07, - "gaillard": 1.7e-07, - "galadriel": 1.7e-07, - "galliano": 1.7e-07, - "gann": 1.7e-07, - "gatlinburg": 1.7e-07, - "gce": 1.7e-07, - "gci": 1.7e-07, - "geet": 1.7e-07, - "gekko": 1.7e-07, - "generalise": 1.7e-07, - "geraniums": 1.7e-07, - "gerbils": 1.7e-07, - "gerrards": 5.75e-08, - "gethin": 1.7e-07, - "ghazni": 1.7e-07, - "ghc": 1.7e-07, - "gielgud": 1.7e-07, - "giv": 1.7e-07, - "glassed": 1.7e-07, - "goeth": 1.7e-07, - "goldenrod": 1.7e-07, - "gom": 1.7e-07, - "gored": 1.7e-07, - "gou": 1.7e-07, - "graciousness": 1.7e-07, - "gradations": 1.7e-07, - "grantor": 1.7e-07, - "graven": 1.7e-07, - "greystone": 1.7e-07, - "groundskeeper": 1.7e-07, - "guage": 1.7e-07, - "guarani": 1.7e-07, - "guardiolas": 1.7e-07, - "guh": 1.7e-07, - "gulped": 1.7e-07, - "guppies": 1.7e-07, - "gustin": 1.7e-07, - "hadji": 1.7e-07, - "hagerty": 1.7e-07, - "hairston": 1.7e-07, - "hallowell": 1.7e-07, - "hamp": 1.7e-07, - "hanako": 1.7e-07, - "hansa": 1.7e-07, - "harrahs": 1.7e-07, - "harrassment": 1.7e-07, - "hatcheries": 1.7e-07, - "headedness": 1.7e-07, - "headship": 1.7e-07, - "hermano": 1.7e-07, - "heterocyclic": 1.7e-07, - "heyer": 1.7e-07, - "hig": 1.7e-07, - "hijinks": 1.7e-07, - "hijo": 1.7e-07, - "hingham": 1.7e-07, - "hino": 1.7e-07, - "hiroyuki": 1.7e-07, - "histones": 1.7e-07, - "holcombe": 1.7e-07, - "holzer": 1.7e-07, - "homestuck": 1.7e-07, - "homonymous": 1.7e-07, - "honks": 1.7e-07, - "honore": 1.7e-07, - "honourably": 1.7e-07, - "howlin": 1.7e-07, - "hubbys": 1.7e-07, - "hulbert": 1.7e-07, - "humes": 7.59e-08, - "hunkered": 1.7e-07, - "hustles": 1.7e-07, - "hypoglycemic": 1.7e-07, - "iban": 1.7e-07, - "icn": 1.7e-07, - "ifunny": 1.7e-07, - "ignorantly": 1.7e-07, - "iin": 1.7e-07, - "iles": 1.7e-07, - "ilium": 1.7e-07, - "impaling": 1.7e-07, - "impersonators": 1.7e-07, - "imre": 1.7e-07, - "incomparably": 1.7e-07, - "inde": 1.7e-07, - "inefficiently": 1.7e-07, - "inheritances": 1.7e-07, - "inordinately": 1.7e-07, - "interconnects": 1.7e-07, - "interfax": 1.7e-07, - "intermixed": 1.7e-07, - "inti": 1.7e-07, - "intriguingly": 1.7e-07, - "invalidation": 1.7e-07, - "invincibles": 1.7e-07, - "invulnerability": 1.7e-07, - "iovine": 1.7e-07, - "ipoh": 1.7e-07, - "irenaeus": 1.7e-07, - "isabellas": 1.7e-07, - "isleworth": 1.7e-07, - "jacquie": 1.7e-07, - "jaffar": 1.7e-07, - "jailers": 1.7e-07, - "jalil": 1.7e-07, - "jamba": 1.7e-07, - "jamila": 1.7e-07, - "jarret": 1.7e-07, - "javits": 1.7e-07, - "jayalalithaa": 1.7e-07, - "jeg": 1.7e-07, - "jetsons": 1.7e-07, - "jobbing": 1.7e-07, - "jocasta": 1.7e-07, - "jory": 1.7e-07, - "juste": 1.7e-07, - "kadir": 1.7e-07, - "kaizer": 1.7e-07, - "kasabian": 1.7e-07, - "katey": 1.7e-07, - "kavya": 1.7e-07, - "kdb": 1.7e-07, - "keepsakes": 1.7e-07, - "kelis": 1.7e-07, - "kenworthy": 1.7e-07, - "kerns": 6.76e-08, - "kidston": 1.7e-07, - "kingsport": 1.7e-07, - "kinsler": 1.7e-07, - "kirishima": 1.7e-07, - "kirkwall": 1.7e-07, - "klaas": 1.7e-07, - "klinsmann": 1.7e-07, - "knitters": 1.7e-07, - "knolls": 1.7e-07, - "knowable": 1.7e-07, - "knutsford": 1.7e-07, - "kosmos": 1.7e-07, - "kramers": 5.75e-08, - "kyaw": 1.7e-07, - "lamarck": 1.7e-07, - "lanvin": 1.7e-07, - "larose": 1.7e-07, - "lautner": 1.7e-07, - "lave": 1.7e-07, - "lazard": 1.7e-07, - "ldh": 1.7e-07, - "lega": 1.7e-07, - "legendre": 1.7e-07, - "lennart": 1.7e-07, - "lesean": 1.7e-07, - "leventhal": 1.7e-07, - "liger": 1.7e-07, - "lillehammer": 1.7e-07, - "limbed": 1.7e-07, - "lippmann": 1.7e-07, - "lisette": 1.7e-07, - "litterally": 1.7e-07, - "livesey": 1.7e-07, - "liveth": 1.7e-07, - "locarno": 1.7e-07, - "loman": 1.7e-07, - "looky": 1.7e-07, - "loooove": 1.7e-07, - "lowrey": 1.7e-07, - "loz": 1.7e-07, - "lpa": 1.7e-07, - "luba": 1.7e-07, - "lucci": 1.7e-07, - "lud": 1.7e-07, - "lugosi": 1.7e-07, - "lunn": 1.7e-07, - "lynsey": 1.7e-07, - "lysol": 1.7e-07, - "macc": 1.7e-07, - "madrasa": 1.7e-07, - "mahadev": 1.7e-07, - "mallee": 1.7e-07, - "mallets": 1.7e-07, - "mander": 1.7e-07, - "manis": 4.79e-08, - "manorial": 1.7e-07, - "mapes": 1.7e-07, - "marcs": 1.7e-07, - "marchs": 1.7e-07, - "mariinsky": 1.7e-07, - "marmara": 1.7e-07, - "marquees": 1.7e-07, - "matchy": 1.7e-07, - "maypole": 1.7e-07, - "mcclane": 1.7e-07, - "mcguigan": 1.7e-07, - "medeiros": 1.7e-07, - "medevac": 1.7e-07, - "megabyte": 1.7e-07, - "melchior": 1.7e-07, - "menaces": 1.7e-07, - "mentalities": 1.7e-07, - "mephistopheles": 1.7e-07, - "mercosur": 1.7e-07, - "mesas": 1.7e-07, - "metaphoric": 1.7e-07, - "mfm": 1.7e-07, - "mfn": 1.7e-07, - "microclimate": 1.7e-07, - "midden": 1.7e-07, - "middletons": 1.7e-07, - "mildest": 1.7e-07, - "miltons": 1.7e-07, - "misato": 1.7e-07, - "mislabeled": 1.7e-07, - "mistry": 1.7e-07, - "mitchs": 1.7e-07, - "moderna": 1.7e-07, - "moisturizers": 1.7e-07, - "molting": 1.7e-07, - "momoa": 1.7e-07, - "montcalm": 1.7e-07, - "montecito": 1.7e-07, - "moroni": 1.7e-07, - "morphogenesis": 1.7e-07, - "moxley": 1.7e-07, - "moyo": 1.7e-07, - "mti": 1.7e-07, - "muc": 1.7e-07, - "mudra": 1.7e-07, - "muggers": 1.7e-07, - "multivitamins": 1.7e-07, - "munchausen": 1.7e-07, - "mundell": 1.7e-07, - "munichs": 1.7e-07, - "murk": 1.7e-07, - "mutates": 1.7e-07, - "nade": 1.7e-07, - "narrations": 1.7e-07, - "naseem": 1.7e-07, - "navin": 1.7e-07, - "ncb": 1.7e-07, - "nebo": 1.7e-07, - "neckties": 1.7e-07, - "neos": 6.46e-08, - "netaji": 1.7e-07, - "neuroticism": 1.7e-07, - "neverwinter": 1.7e-07, - "nickle": 1.7e-07, - "niemi": 1.7e-07, - "nightingales": 7.59e-08, - "nikkis": 1.7e-07, - "ninian": 1.7e-07, - "ninjago": 1.7e-07, - "nirvanas": 1.7e-07, - "nla": 1.7e-07, - "nnamdi": 1.7e-07, - "nobby": 1.7e-07, - "nonfarm": 1.7e-07, - "nonresident": 1.7e-07, - "nonsteroidal": 1.7e-07, - "norbury": 1.7e-07, - "norovirus": 1.7e-07, - "noyce": 1.7e-07, - "nro": 1.7e-07, - "nsi": 1.7e-07, - "obstinacy": 1.7e-07, - "occultism": 1.7e-07, - "octobers": 1.7e-07, - "oeil": 1.7e-07, - "ofi": 1.7e-07, - "ogata": 1.7e-07, - "omelets": 1.7e-07, - "omnidirectional": 1.7e-07, - "omnivore": 1.7e-07, - "ondemand": 1.7e-07, - "ony": 1.7e-07, - "ooops": 1.7e-07, - "oppresses": 1.7e-07, - "oram": 1.7e-07, - "orpington": 1.7e-07, - "ory": 1.7e-07, - "oswestry": 1.7e-07, - "ote": 1.7e-07, - "otsego": 1.7e-07, - "otway": 1.7e-07, - "outgroup": 1.7e-07, - "overeem": 1.7e-07, - "overexposure": 1.7e-07, - "overspend": 1.7e-07, - "padraig": 1.7e-07, - "pahang": 1.7e-07, - "parthian": 1.7e-07, - "pathak": 1.7e-07, - "patuxent": 1.7e-07, - "pbm": 1.7e-07, - "pentatonic": 1.7e-07, - "perching": 1.7e-07, - "personifies": 1.7e-07, - "perversity": 1.7e-07, - "pervs": 1.7e-07, - "petered": 1.7e-07, - "petworth": 1.7e-07, - "peytons": 1.7e-07, - "pharmacokinetic": 1.7e-07, - "pharmacologic": 1.7e-07, - "philander": 1.7e-07, - "phong": 1.7e-07, - "pidgeon": 1.7e-07, - "piedras": 1.7e-07, - "pilcher": 1.7e-07, - "pillbox": 1.7e-07, - "pinner": 1.7e-07, - "pinpoints": 1.7e-07, - "piquant": 1.7e-07, - "planktonic": 1.7e-07, - "plasterer": 1.7e-07, - "playdate": 1.7e-07, - "playfair": 1.7e-07, - "pleasantville": 1.7e-07, - "politicised": 1.7e-07, - "politicos": 5.62e-08, - "polluter": 1.7e-07, - "pookie": 1.7e-07, - "popularization": 1.7e-07, - "porteous": 1.7e-07, - "postcodes": 1.7e-07, - "poulsen": 1.7e-07, - "pounces": 1.7e-07, - "prac": 1.7e-07, - "preordained": 1.7e-07, - "prepay": 1.7e-07, - "presi": 1.7e-07, - "pressley": 1.7e-07, - "prevost": 1.7e-07, - "pricking": 1.7e-07, - "prions": 1.7e-07, - "pron": 1.7e-07, - "psychoanalysts": 1.7e-07, - "pudge": 1.7e-07, - "pujol": 1.7e-07, - "pulpy": 1.7e-07, - "pulsation": 1.7e-07, - "ql": 1.7e-07, - "quarrelled": 1.7e-07, - "quartering": 1.7e-07, - "quotidian": 1.7e-07, - "rachid": 1.7e-07, - "rachmaninoff": 1.7e-07, - "racquets": 1.7e-07, - "radiologic": 1.7e-07, - "raghavan": 1.7e-07, - "rajasthani": 1.7e-07, - "rakyat": 1.7e-07, - "ramin": 1.7e-07, - "ramrod": 1.7e-07, - "rappel": 1.7e-07, - "rashtriya": 1.7e-07, - "rawr": 1.7e-07, - "reassurances": 1.7e-07, - "recapping": 1.7e-07, - "reclaims": 1.7e-07, - "rectilinear": 1.7e-07, - "recurs": 1.7e-07, - "refinanced": 1.7e-07, - "refocusing": 1.7e-07, - "regressing": 1.7e-07, - "regula": 1.7e-07, - "rehashed": 1.7e-07, - "repackaging": 1.7e-07, - "repetitious": 1.7e-07, - "resi": 1.7e-07, - "respec": 1.7e-07, - "reverently": 1.7e-07, - "rewired": 1.7e-07, - "riboflavin": 1.7e-07, - "rideshare": 1.7e-07, - "riel": 1.7e-07, - "rightward": 1.7e-07, - "ripeness": 1.7e-07, - "ripens": 1.7e-07, - "ritzy": 1.7e-07, - "rives": 1.7e-07, - "robards": 1.7e-07, - "robbin": 1.7e-07, - "rockfish": 1.7e-07, - "roker": 1.7e-07, - "royalton": 1.7e-07, - "ruination": 1.7e-07, - "ruminants": 1.7e-07, - "rutger": 1.7e-07, - "salems": 1.7e-07, - "samford": 1.7e-07, - "sanchezs": 1.7e-07, - "sappers": 1.7e-07, - "satyagraha": 1.7e-07, - "saunter": 1.7e-07, - "saxophones": 1.7e-07, - "scalded": 1.7e-07, - "scapular": 1.7e-07, - "schaffner": 1.7e-07, - "schisms": 1.7e-07, - "schutz": 1.7e-07, - "scintillation": 1.7e-07, - "scn": 1.7e-07, - "sdh": 1.7e-07, - "seaweeds": 1.7e-07, - "servicer": 1.7e-07, - "setae": 1.7e-07, - "shadwell": 1.7e-07, - "shahrukh": 1.7e-07, - "shahzad": 1.7e-07, - "shanghais": 1.7e-07, - "shayna": 1.7e-07, - "sheed": 1.7e-07, - "shinkansen": 1.7e-07, - "shitfaced": 1.7e-07, - "shoplifters": 1.7e-07, - "shreve": 1.7e-07, - "shrift": 1.7e-07, - "sigint": 1.7e-07, - "silversmith": 1.7e-07, - "siskiyou": 1.7e-07, - "sixtus": 1.7e-07, - "skirmishers": 1.7e-07, - "skulking": 1.7e-07, - "slather": 1.7e-07, - "slopestyle": 1.7e-07, - "slurpee": 1.7e-07, - "snapple": 1.7e-07, - "snickering": 1.7e-07, - "socialisation": 1.7e-07, - "soderbergh": 1.7e-07, - "solvay": 1.7e-07, - "somone": 1.7e-07, - "soper": 1.7e-07, - "soundcheck": 1.7e-07, - "southey": 1.7e-07, - "speckle": 1.7e-07, - "spendthrift": 1.7e-07, - "spey": 1.7e-07, - "spie": 1.7e-07, - "squiggly": 1.7e-07, - "statoil": 1.7e-07, - "steelmaking": 1.7e-07, - "stenhouse": 1.7e-07, - "storages": 1.7e-07, - "stormers": 1.7e-07, - "stovetop": 1.7e-07, - "stowage": 1.7e-07, - "streetscape": 1.7e-07, - "subcellular": 1.7e-07, - "substratum": 1.7e-07, - "sunita": 1.7e-07, - "superfly": 1.7e-07, - "susi": 1.7e-07, - "sutta": 1.7e-07, - "suturing": 1.7e-07, - "suzan": 1.7e-07, - "suze": 1.7e-07, - "swaddling": 1.7e-07, - "swifter": 1.7e-07, - "swindlers": 1.7e-07, - "tablelands": 1.7e-07, - "taiko": 1.7e-07, - "taiping": 1.7e-07, - "tams": 1.7e-07, - "tano": 1.7e-07, - "tased": 1.7e-07, - "tassie": 1.7e-07, - "tbl": 1.7e-07, - "tcw": 1.7e-07, - "telenovela": 1.7e-07, - "tench": 1.7e-07, - "tensei": 1.7e-07, - "terrapins": 1.7e-07, - "terrazzo": 1.7e-07, - "tetsuya": 1.7e-07, - "thalassemia": 1.7e-07, - "theresienstadt": 1.7e-07, - "thiers": 1.7e-07, - "thoma": 1.7e-07, - "thornbury": 1.7e-07, - "timberline": 1.7e-07, - "timezones": 1.7e-07, - "tinkers": 6.92e-08, - "tirupati": 1.7e-07, - "tomfoolery": 1.7e-07, - "touhou": 1.7e-07, - "trackage": 1.7e-07, - "trammell": 1.7e-07, - "transdermal": 1.7e-07, - "trefoil": 1.7e-07, - "trichy": 1.7e-07, - "triune": 1.7e-07, - "truong": 1.7e-07, - "truscott": 1.7e-07, - "tto": 1.7e-07, - "tuolumne": 1.7e-07, - "tvc": 1.7e-07, - "tyrese": 1.7e-07, - "uglies": 1.7e-07, - "ultrasonography": 1.7e-07, - "uluru": 1.7e-07, - "unceasing": 1.7e-07, - "uncorrected": 1.7e-07, - "underdevelopment": 1.7e-07, - "underfloor": 1.7e-07, - "underfunding": 1.7e-07, - "unexpired": 1.7e-07, - "unfurl": 1.7e-07, - "uniontown": 1.7e-07, - "unitarians": 1.7e-07, - "unp": 1.7e-07, - "unremitting": 1.7e-07, - "unspent": 1.7e-07, - "unvarnished": 1.7e-07, - "upstaged": 1.7e-07, - "urological": 1.7e-07, - "utr": 1.7e-07, - "uz": 1.7e-07, - "vampirism": 1.7e-07, - "vara": 1.7e-07, - "varia": 1.7e-07, - "vater": 1.7e-07, - "vehemence": 1.7e-07, - "vesa": 1.7e-07, - "vez": 1.7e-07, - "vibrio": 1.7e-07, - "villar": 1.7e-07, - "viscerally": 1.7e-07, - "vitus": 1.7e-07, - "vizio": 1.7e-07, - "vollmer": 1.7e-07, - "vtb": 1.7e-07, - "waltons": 1.62e-07, - "wats": 1.7e-07, - "weigel": 1.7e-07, - "wesleys": 1.7e-07, - "weyl": 1.7e-07, - "whacks": 1.7e-07, - "whitchurch": 1.7e-07, - "whitehurst": 1.7e-07, - "whitesnake": 1.7e-07, - "whitmer": 1.7e-07, - "whodunit": 1.7e-07, - "whooo": 1.7e-07, - "widowhood": 1.7e-07, - "willmott": 1.7e-07, - "wlan": 1.7e-07, - "womanizing": 1.7e-07, - "woodsman": 1.7e-07, - "worrall": 1.7e-07, - "wru": 1.7e-07, - "xk": 1.7e-07, - "yellowfin": 1.7e-07, - "yoshino": 1.7e-07, - "zarif": 1.7e-07, - "zawahiri": 1.7e-07, - "zay": 1.7e-07, - "zug": 1.7e-07, - "abdulrahman": 1.66e-07, - "abg": 1.66e-07, - "abydos": 1.66e-07, - "academie": 1.66e-07, - "acces": 1.66e-07, - "accrues": 1.66e-07, - "adamss": 1.66e-07, - "adh": 1.66e-07, - "adornments": 1.66e-07, - "akademie": 1.66e-07, - "aker": 1.66e-07, - "akerman": 1.66e-07, - "alisons": 1.66e-07, - "altuve": 1.66e-07, - "amazonas": 1.66e-07, - "amell": 1.66e-07, - "amharic": 1.66e-07, - "amzn": 1.66e-07, - "anatomist": 1.66e-07, - "andro": 1.66e-07, - "anent": 1.66e-07, - "antagonized": 1.66e-07, - "anticoagulants": 1.66e-07, - "appartment": 1.66e-07, - "apts": 1.66e-07, - "arce": 1.66e-07, - "archuleta": 1.66e-07, - "arthouse": 1.66e-07, - "ascetics": 1.66e-07, - "atla": 1.66e-07, - "atoned": 1.66e-07, - "austell": 1.66e-07, - "autocomplete": 1.66e-07, - "autosport": 1.66e-07, - "autozone": 1.66e-07, - "avm": 1.66e-07, - "awfulness": 1.66e-07, - "backache": 1.66e-07, - "baikonur": 1.66e-07, - "balch": 1.66e-07, - "baldock": 1.66e-07, - "balthasar": 1.66e-07, - "banu": 1.66e-07, - "baps": 1.66e-07, - "barcas": 1.66e-07, - "bardem": 1.66e-07, - "bartlet": 1.66e-07, - "basting": 1.66e-07, - "bde": 1.66e-07, - "bdp": 1.66e-07, - "bearden": 1.66e-07, - "beautifull": 1.66e-07, - "beautifying": 1.66e-07, - "beeb": 1.66e-07, - "beguiled": 1.66e-07, - "beira": 1.66e-07, - "bejeweled": 1.66e-07, - "benatar": 1.66e-07, - "bep": 1.66e-07, - "bergson": 1.66e-07, - "berke": 1.66e-07, - "bernsteins": 1.66e-07, - "bestbuy": 1.66e-07, - "bethe": 1.66e-07, - "beti": 1.66e-07, - "bezels": 1.66e-07, - "bhatti": 1.66e-07, - "bierce": 1.66e-07, - "binged": 1.66e-07, - "binns": 1.66e-07, - "birrell": 1.66e-07, - "bishopsgate": 1.66e-07, - "bisset": 1.66e-07, - "bleary": 1.66e-07, - "blockhead": 1.66e-07, - "blodgett": 1.66e-07, - "blowup": 1.66e-07, - "bluer": 1.66e-07, - "blyton": 1.66e-07, - "boatswain": 1.66e-07, - "bodrum": 1.66e-07, - "bognor": 1.66e-07, - "bolivias": 1.66e-07, - "bollard": 1.66e-07, - "boomerangs": 1.66e-07, - "booyah": 1.66e-07, - "borger": 1.66e-07, - "bpt": 1.66e-07, - "brenden": 1.66e-07, - "brianne": 1.66e-07, - "brittens": 1.66e-07, - "broyles": 1.66e-07, - "brumby": 1.66e-07, - "brydon": 1.66e-07, - "bskyb": 1.66e-07, - "bso": 1.66e-07, - "bueller": 1.66e-07, - "bugles": 1.66e-07, - "bulli": 1.66e-07, - "bundesbank": 1.66e-07, - "burnell": 1.66e-07, - "burrard": 1.66e-07, - "burrs": 8.71e-08, - "bushmen": 1.66e-07, - "bussing": 1.66e-07, - "buttler": 1.66e-07, - "bwi": 1.66e-07, - "cabaye": 1.66e-07, - "caley": 1.66e-07, - "camerawork": 1.66e-07, - "candyman": 1.66e-07, - "cannondale": 1.66e-07, - "capito": 1.66e-07, - "carcinogenesis": 1.66e-07, - "carib": 1.66e-07, - "carlito": 1.66e-07, - "carltons": 1.66e-07, - "castaneda": 1.66e-07, - "cathleen": 1.66e-07, - "caulking": 1.66e-07, - "cavell": 1.66e-07, - "cce": 1.66e-07, - "cdos": 1.66e-07, - "ceilidh": 1.66e-07, - "centos": 1.66e-07, - "centrifugation": 1.66e-07, - "certs": 1.66e-07, - "chandni": 1.66e-07, - "chasin": 1.66e-07, - "chemin": 1.66e-07, - "chickadee": 1.66e-07, - "chickamauga": 1.66e-07, - "chipman": 1.66e-07, - "chivalric": 1.66e-07, - "chivers": 1.66e-07, - "chopstick": 1.66e-07, - "choreographic": 1.66e-07, - "christiania": 1.66e-07, - "christus": 1.66e-07, - "churchmen": 1.66e-07, - "cillian": 1.66e-07, - "circuited": 1.66e-07, - "circumflex": 1.66e-07, - "clamber": 1.66e-07, - "clanking": 1.66e-07, - "claptrap": 1.66e-07, - "classico": 1.66e-07, - "classiest": 1.66e-07, - "clementi": 1.66e-07, - "cloverfield": 1.66e-07, - "clusterfuck": 1.66e-07, - "codices": 1.66e-07, - "cofactor": 1.66e-07, - "collings": 1.66e-07, - "colostrum": 1.66e-07, - "comedienne": 1.66e-07, - "commision": 1.66e-07, - "confidences": 1.66e-07, - "conquistador": 1.66e-07, - "contortions": 1.66e-07, - "cornhuskers": 1.66e-07, - "coruscant": 1.66e-07, - "counteroffensive": 1.66e-07, - "creche": 1.66e-07, - "crip": 1.66e-07, - "crofters": 1.66e-07, - "crucifixes": 1.66e-07, - "crus": 1.66e-07, - "cucks": 1.66e-07, - "curr": 1.66e-07, - "customisable": 1.66e-07, - "cuttack": 1.66e-07, - "cytology": 1.66e-07, - "cytosine": 1.66e-07, - "daejeon": 1.66e-07, - "damnedest": 1.66e-07, - "dampier": 1.66e-07, - "danke": 1.66e-07, - "daro": 1.66e-07, - "davin": 1.66e-07, - "ddc": 1.66e-07, - "deathless": 1.66e-07, - "debilitated": 1.66e-07, - "delineating": 1.66e-07, - "demetri": 1.66e-07, - "demolishes": 1.66e-07, - "dentin": 1.66e-07, - "despondency": 1.66e-07, - "destabilise": 1.66e-07, - "destructing": 1.66e-07, - "detente": 1.66e-07, - "detracted": 1.66e-07, - "detracting": 1.66e-07, - "devas": 1.66e-07, - "devitt": 1.66e-07, - "diablos": 1.66e-07, - "diatonic": 1.66e-07, - "dicing": 1.66e-07, - "diethyl": 1.66e-07, - "dimpled": 1.66e-07, - "dinnerware": 1.66e-07, - "dirichlet": 1.66e-07, - "disproving": 1.66e-07, - "divvy": 1.66e-07, - "dixieland": 1.66e-07, - "dmf": 1.66e-07, - "dockery": 1.66e-07, - "domitian": 1.66e-07, - "dorinda": 1.66e-07, - "dren": 1.66e-07, - "dtp": 1.66e-07, - "duckett": 1.66e-07, - "dykstra": 1.66e-07, - "eaa": 1.66e-07, - "ebon": 1.66e-07, - "egomaniac": 1.66e-07, - "eharmony": 1.66e-07, - "eibar": 1.66e-07, - "eines": 1.66e-07, - "elbowing": 1.66e-07, - "elc": 1.66e-07, - "electrochemistry": 1.66e-07, - "elementals": 1.66e-07, - "elrond": 1.66e-07, - "elwyn": 1.66e-07, - "embeds": 1.66e-07, - "emersons": 1.66e-07, - "enamels": 1.66e-07, - "englishwoman": 1.66e-07, - "erlich": 1.66e-07, - "ernestine": 1.66e-07, - "erza": 1.66e-07, - "espace": 1.66e-07, - "esparza": 1.66e-07, - "estonias": 1.66e-07, - "ett": 1.66e-07, - "evildoers": 1.66e-07, - "evin": 1.66e-07, - "exorcised": 1.66e-07, - "extensor": 1.66e-07, - "fantasyland": 1.66e-07, - "faversham": 1.66e-07, - "faz": 1.66e-07, - "feist": 1.66e-07, - "fermions": 1.66e-07, - "ferruginous": 1.66e-07, - "ferryman": 1.66e-07, - "fierceness": 1.66e-07, - "finalising": 1.66e-07, - "firemans": 1.66e-07, - "fishtail": 1.66e-07, - "flagella": 1.66e-07, - "flagstone": 1.66e-07, - "flavin": 1.66e-07, - "flavio": 1.66e-07, - "fleshlight": 1.66e-07, - "floodwater": 1.66e-07, - "flouting": 1.66e-07, - "flowy": 1.66e-07, - "flukes": 1.66e-07, - "folkloric": 1.66e-07, - "fonz": 1.66e-07, - "formby": 1.66e-07, - "foxhole": 1.66e-07, - "fractionally": 1.66e-07, - "frameless": 1.66e-07, - "francie": 1.66e-07, - "franking": 1.66e-07, - "freeholder": 1.66e-07, - "freekick": 1.66e-07, - "freon": 1.66e-07, - "friel": 1.66e-07, - "friesland": 1.66e-07, - "fringing": 1.66e-07, - "frisson": 1.66e-07, - "frittata": 1.66e-07, - "fsp": 1.66e-07, - "fusiform": 1.66e-07, - "gabbar": 1.66e-07, - "gani": 1.66e-07, - "gantz": 1.66e-07, - "gastroenterologist": 1.66e-07, - "gatti": 1.66e-07, - "geetha": 1.66e-07, - "geithner": 1.66e-07, - "gelled": 1.66e-07, - "gfe": 1.66e-07, - "gibran": 1.66e-07, - "gilliland": 1.66e-07, - "gird": 1.66e-07, - "girlhood": 1.66e-07, - "glinda": 1.66e-07, - "gluttonous": 1.66e-07, - "gmg": 1.66e-07, - "gobert": 1.66e-07, - "goldsworthy": 1.66e-07, - "golfs": 9.33e-08, - "gonsalves": 1.66e-07, - "gorakhpur": 1.66e-07, - "gorgonzola": 1.66e-07, - "grabbers": 1.66e-07, - "grappa": 1.66e-07, - "grasso": 1.66e-07, - "grenache": 1.66e-07, - "gringos": 1.66e-07, - "gripper": 1.66e-07, - "groban": 1.66e-07, - "grubbs": 1.66e-07, - "guarantors": 1.66e-07, - "gvt": 1.66e-07, - "gwendolen": 1.66e-07, - "hace": 1.66e-07, - "hacky": 1.66e-07, - "haft": 1.66e-07, - "hals": 1.23e-07, - "handbuch": 1.66e-07, - "hanssen": 1.66e-07, - "hasler": 1.66e-07, - "hdfc": 1.66e-07, - "hearths": 1.66e-07, - "hedgerow": 1.66e-07, - "hedy": 1.66e-07, - "hendo": 1.66e-07, - "hernias": 1.66e-07, - "hft": 1.66e-07, - "highsmith": 1.66e-07, - "hinch": 1.66e-07, - "hindrances": 1.66e-07, - "hirohito": 1.66e-07, - "hnd": 1.66e-07, - "hockeys": 1.66e-07, - "hodgins": 1.66e-07, - "holing": 1.66e-07, - "holistically": 1.66e-07, - "homed": 1.66e-07, - "homogenization": 1.66e-07, - "hoppin": 1.66e-07, - "hospitalisation": 1.66e-07, - "hossa": 1.66e-07, - "hostiles": 1.66e-07, - "hotch": 1.66e-07, - "hqs": 5.62e-08, - "humeral": 1.66e-07, - "humorless": 1.66e-07, - "hydrodynamics": 1.66e-07, - "iau": 1.66e-07, - "ibaraki": 1.66e-07, - "ibarra": 1.66e-07, - "idb": 1.66e-07, - "idolizes": 1.66e-07, - "idt": 1.66e-07, - "ifttt": 1.66e-07, - "ignazio": 1.66e-07, - "ilc": 1.66e-07, - "immunofluorescence": 1.66e-07, - "impale": 1.66e-07, - "impoundment": 1.66e-07, - "incisor": 1.66e-07, - "incredulously": 1.66e-07, - "infanta": 1.66e-07, - "inseminated": 1.66e-07, - "insinuates": 1.66e-07, - "integrators": 1.66e-07, - "intendant": 1.66e-07, - "interactively": 1.66e-07, - "interweaving": 1.66e-07, - "intoned": 1.66e-07, - "ipt": 1.66e-07, - "ipv": 1.66e-07, - "ironwork": 1.66e-07, - "isaias": 1.66e-07, - "isee": 1.66e-07, - "itar": 1.66e-07, - "itsy": 1.66e-07, - "ivr": 1.66e-07, - "jacek": 1.66e-07, - "jackpots": 1.66e-07, - "jains": 1.66e-07, - "jaish": 1.66e-07, - "jari": 1.66e-07, - "jaroslav": 1.66e-07, - "jetties": 1.66e-07, - "jiggy": 1.66e-07, - "jil": 1.66e-07, - "jla": 1.66e-07, - "joffreys": 1.66e-07, - "jojoba": 1.66e-07, - "jona": 1.66e-07, - "jonnie": 1.66e-07, - "jostle": 1.66e-07, - "jpm": 1.66e-07, - "judicature": 1.66e-07, - "julys": 1.66e-07, - "justo": 1.66e-07, - "kader": 1.66e-07, - "kail": 1.66e-07, - "kaku": 1.66e-07, - "kamar": 1.66e-07, - "kampuchea": 1.66e-07, - "karmas": 1.17e-07, - "kase": 1.66e-07, - "katha": 1.66e-07, - "keim": 1.66e-07, - "kemps": 5.75e-08, - "ketchikan": 1.66e-07, - "khat": 1.66e-07, - "kiely": 1.66e-07, - "kikuchi": 1.66e-07, - "killen": 1.66e-07, - "kindhearted": 1.66e-07, - "kingstown": 1.66e-07, - "kole": 1.66e-07, - "kow": 1.66e-07, - "kpk": 1.66e-07, - "kripke": 1.66e-07, - "kristie": 1.66e-07, - "krona": 1.66e-07, - "krupa": 1.66e-07, - "krystle": 1.66e-07, - "krzysztof": 1.66e-07, - "kst": 1.66e-07, - "kublai": 1.66e-07, - "kuk": 1.66e-07, - "kuku": 1.66e-07, - "kva": 1.66e-07, - "lackadaisical": 1.66e-07, - "ladybugs": 1.66e-07, - "lambie": 1.66e-07, - "lankford": 1.66e-07, - "lawlor": 1.66e-07, - "laxity": 1.66e-07, - "leftism": 1.66e-07, - "legislatively": 1.66e-07, - "leoni": 1.66e-07, - "leyva": 1.66e-07, - "lfa": 1.66e-07, - "liberians": 1.66e-07, - "lifelines": 1.66e-07, - "lilia": 1.66e-07, - "limiters": 1.66e-07, - "limps": 1.66e-07, - "listerine": 1.66e-07, - "lmp": 1.66e-07, - "loamy": 1.66e-07, - "lofted": 1.66e-07, - "logarithms": 1.66e-07, - "lokis": 1.66e-07, - "lompoc": 1.66e-07, - "longboat": 1.66e-07, - "longbottom": 1.66e-07, - "longines": 1.66e-07, - "lookie": 1.66e-07, - "loughlin": 1.66e-07, - "lti": 1.66e-07, - "luminal": 1.66e-07, - "lumix": 1.66e-07, - "lurching": 1.66e-07, - "lycoming": 1.66e-07, - "maca": 1.66e-07, - "maes": 1.45e-07, - "maginot": 1.66e-07, - "magnanimity": 1.66e-07, - "maior": 1.66e-07, - "makarov": 1.66e-07, - "makassar": 1.66e-07, - "malate": 1.66e-07, - "mandrel": 1.66e-07, - "mansons": 1.66e-07, - "marengo": 1.66e-07, - "markowitz": 1.66e-07, - "maroney": 1.66e-07, - "marshs": 1.66e-07, - "martingale": 1.66e-07, - "marveling": 1.66e-07, - "maupin": 1.66e-07, - "maxfield": 1.66e-07, - "maywood": 1.66e-07, - "mazel": 1.66e-07, - "mbti": 1.66e-07, - "mearns": 1.66e-07, - "megs": 1.58e-07, - "megahertz": 1.66e-07, - "megaman": 1.66e-07, - "meghna": 1.66e-07, - "mellen": 1.66e-07, - "melty": 1.66e-07, - "mendy": 1.66e-07, - "mesoamerica": 1.66e-07, - "mesoamerican": 1.66e-07, - "methylphenidate": 1.66e-07, - "mhd": 1.66e-07, - "micellar": 1.66e-07, - "microscopically": 1.66e-07, - "miguels": 1.66e-07, - "mileys": 1.66e-07, - "militarist": 1.66e-07, - "millburn": 1.66e-07, - "milpitas": 1.66e-07, - "minny": 1.66e-07, - "misspellings": 1.66e-07, - "mizuho": 1.66e-07, - "mmmmmm": 1.66e-07, - "mobbing": 1.66e-07, - "moduli": 1.66e-07, - "mohali": 1.66e-07, - "molle": 1.66e-07, - "monarchists": 1.66e-07, - "moncada": 1.66e-07, - "mongolians": 1.66e-07, - "monosyllabic": 1.66e-07, - "moonbeam": 1.66e-07, - "mormont": 1.66e-07, - "morpeth": 1.66e-07, - "mossberg": 1.66e-07, - "motorcar": 1.66e-07, - "mown": 1.66e-07, - "mpv": 1.66e-07, - "mtx": 1.66e-07, - "mulla": 1.66e-07, - "munday": 1.66e-07, - "muti": 1.66e-07, - "mycology": 1.66e-07, - "nakagawa": 1.66e-07, - "namath": 1.66e-07, - "naoh": 1.66e-07, - "naoko": 1.66e-07, - "narbonne": 1.66e-07, - "nauseam": 1.66e-07, - "neocortex": 1.66e-07, - "newstead": 1.66e-07, - "nilsen": 1.66e-07, - "nimbly": 1.66e-07, - "nld": 1.66e-07, - "nls": 1.66e-07, - "noddy": 1.66e-07, - "noice": 1.66e-07, - "nonchalance": 1.66e-07, - "nooooooo": 1.66e-07, - "nostrand": 1.66e-07, - "nrk": 1.66e-07, - "nucleophilic": 1.66e-07, - "nudie": 1.66e-07, - "nug": 1.66e-07, - "nympho": 1.66e-07, - "nzd": 1.66e-07, - "obstructionist": 1.66e-07, - "odie": 1.66e-07, - "officinalis": 1.66e-07, - "oks": 1.66e-07, - "oligonucleotide": 1.66e-07, - "omegle": 1.66e-07, - "oona": 1.66e-07, - "optimizes": 1.66e-07, - "orth": 1.66e-07, - "oscillates": 1.66e-07, - "ossian": 1.66e-07, - "osteen": 1.66e-07, - "otg": 1.66e-07, - "ous": 5.62e-08, - "outcropping": 1.66e-07, - "outmatched": 1.66e-07, - "overpayments": 1.66e-07, - "pacifics": 1.66e-07, - "pacifying": 1.66e-07, - "palmed": 1.66e-07, - "panik": 1.66e-07, - "paperboard": 1.66e-07, - "patristic": 1.66e-07, - "pavillion": 1.66e-07, - "penicillium": 1.66e-07, - "penna": 1.66e-07, - "personae": 1.66e-07, - "pesci": 1.66e-07, - "petroglyphs": 1.66e-07, - "petry": 1.66e-07, - "pfeffer": 1.66e-07, - "phoebes": 1.66e-07, - "phospholipids": 1.66e-07, - "phosphorescent": 1.66e-07, - "phraseology": 1.66e-07, - "phthalates": 1.66e-07, - "piaf": 1.66e-07, - "platini": 1.66e-07, - "platts": 1.66e-07, - "plattsburgh": 1.66e-07, - "plowman": 1.66e-07, - "plr": 1.66e-07, - "plumlee": 1.66e-07, - "plurals": 1.66e-07, - "plushie": 1.66e-07, - "pna": 1.66e-07, - "pnb": 1.66e-07, - "podge": 1.66e-07, - "polyamorous": 1.66e-07, - "polygamist": 1.66e-07, - "porcupines": 1.66e-07, - "pornos": 1.66e-07, - "portlandia": 1.66e-07, - "postmasters": 1.66e-07, - "powershot": 1.66e-07, - "ppf": 1.66e-07, - "praha": 1.66e-07, - "praveen": 1.66e-07, - "predominated": 1.66e-07, - "prefaces": 1.66e-07, - "pricy": 1.66e-07, - "prophesies": 1.66e-07, - "propos": 1.66e-07, - "prospers": 1.66e-07, - "psgs": 1.66e-07, - "pursuance": 1.66e-07, - "pwg": 1.66e-07, - "qo": 1.66e-07, - "quarrelsome": 1.66e-07, - "quem": 1.66e-07, - "quintanilla": 1.66e-07, - "quintin": 1.66e-07, - "quire": 1.66e-07, - "rafiki": 1.66e-07, - "raha": 1.66e-07, - "raji": 1.66e-07, - "ralphie": 1.66e-07, - "randa": 1.66e-07, - "ransomed": 1.66e-07, - "raphaelite": 1.66e-07, - "rawat": 1.66e-07, - "reassembling": 1.66e-07, - "rebuking": 1.66e-07, - "rebuttals": 1.66e-07, - "recapitulation": 1.66e-07, - "recce": 1.66e-07, - "reclassify": 1.66e-07, - "recreationally": 1.66e-07, - "redoubled": 1.66e-07, - "redskin": 1.66e-07, - "reichert": 1.66e-07, - "rendon": 1.66e-07, - "reorganise": 1.66e-07, - "reorientation": 1.66e-07, - "repr": 1.66e-07, - "restrains": 1.66e-07, - "retentive": 1.66e-07, - "retinitis": 1.66e-07, - "retool": 1.66e-07, - "revokes": 1.66e-07, - "riemannian": 1.66e-07, - "ritu": 1.66e-07, - "rmi": 1.66e-07, - "rosyth": 1.66e-07, - "rrs": 1.66e-07, - "rtz": 1.66e-07, - "rubes": 1.66e-07, - "rumsey": 1.66e-07, - "rushs": 1.66e-07, - "rza": 1.66e-07, - "sacredness": 1.66e-07, - "safehouse": 1.66e-07, - "sagged": 1.66e-07, - "salar": 1.66e-07, - "salat": 1.66e-07, - "samhain": 1.66e-07, - "samui": 1.66e-07, - "sanu": 1.66e-07, - "saru": 1.66e-07, - "savi": 1.66e-07, - "sawyers": 1.58e-07, - "schlong": 1.66e-07, - "schweizer": 1.66e-07, - "sebelius": 1.66e-07, - "secessionists": 1.66e-07, - "senility": 1.66e-07, - "sephiroth": 1.66e-07, - "serco": 1.66e-07, - "sergius": 1.66e-07, - "shalini": 1.66e-07, - "shareable": 1.66e-07, - "shareef": 1.66e-07, - "sheerans": 1.66e-07, - "sherlocks": 1.66e-07, - "sherrie": 1.66e-07, - "shipowner": 1.66e-07, - "shizuoka": 1.66e-07, - "shoegaze": 1.66e-07, - "showboating": 1.66e-07, - "sime": 1.66e-07, - "simo": 1.66e-07, - "slaveholders": 1.66e-07, - "smriti": 1.66e-07, - "snakebite": 1.66e-07, - "snowdrop": 1.66e-07, - "soas": 1.66e-07, - "soco": 1.66e-07, - "sokolov": 1.66e-07, - "sorin": 1.66e-07, - "souness": 1.66e-07, - "southeasterly": 1.66e-07, - "soyinka": 1.66e-07, - "spammy": 1.66e-07, - "sparkler": 1.66e-07, - "sputter": 1.66e-07, - "stacys": 1.66e-07, - "starscream": 1.66e-07, - "starves": 1.66e-07, - "statesmanship": 1.66e-07, - "stephanopoulos": 1.66e-07, - "stevensons": 1.66e-07, - "stiffly": 1.66e-07, - "stigmatize": 1.66e-07, - "stimpson": 1.66e-07, - "stirrer": 1.66e-07, - "stosur": 1.66e-07, - "stovall": 1.66e-07, - "strategizing": 1.66e-07, - "strop": 1.66e-07, - "strutted": 1.66e-07, - "subaltern": 1.66e-07, - "subarachnoid": 1.66e-07, - "subpopulations": 1.66e-07, - "subsisting": 1.66e-07, - "sudhir": 1.66e-07, - "suetonius": 1.66e-07, - "sulley": 1.66e-07, - "supermen": 1.66e-07, - "supplanting": 1.66e-07, - "surfeit": 1.66e-07, - "surfs": 1.2e-07, - "sushma": 1.66e-07, - "svelte": 1.66e-07, - "swanton": 1.66e-07, - "symes": 1.66e-07, - "symon": 1.66e-07, - "syntheses": 1.66e-07, - "tahu": 1.66e-07, - "takeoffs": 1.66e-07, - "tamagotchi": 1.66e-07, - "tarun": 1.66e-07, - "tarver": 1.66e-07, - "tasso": 1.66e-07, - "tasters": 1.66e-07, - "tawa": 1.66e-07, - "tde": 1.66e-07, - "tdk": 1.66e-07, - "teacups": 1.66e-07, - "teasdale": 1.66e-07, - "telecasts": 1.66e-07, - "telemarketers": 1.66e-07, - "televise": 1.66e-07, - "terme": 1.66e-07, - "terminators": 1.66e-07, - "terps": 1.66e-07, - "terrifically": 1.66e-07, - "terroristic": 1.66e-07, - "testbed": 1.66e-07, - "texte": 1.66e-07, - "theists": 1.66e-07, - "theravada": 1.66e-07, - "thia": 1.66e-07, - "thuggish": 1.66e-07, - "thuringia": 1.66e-07, - "thw": 1.66e-07, - "thwarts": 1.66e-07, - "tibi": 1.66e-07, - "tico": 1.66e-07, - "tilled": 1.66e-07, - "timestamps": 1.66e-07, - "timm": 1.66e-07, - "tions": 1.66e-07, - "tiptoes": 1.66e-07, - "tmd": 1.66e-07, - "torry": 1.66e-07, - "tottenhams": 1.66e-07, - "toujours": 1.66e-07, - "toupee": 1.66e-07, - "tourer": 1.66e-07, - "tousled": 1.66e-07, - "townhall": 1.66e-07, - "toxicological": 1.66e-07, - "traduction": 1.66e-07, - "trai": 1.66e-07, - "transgressed": 1.66e-07, - "trilobites": 1.66e-07, - "triumphing": 1.66e-07, - "troughton": 1.66e-07, - "trusteeship": 1.66e-07, - "tsars": 8.71e-08, - "tsubasa": 1.66e-07, - "tulum": 1.66e-07, - "tuts": 8.91e-08, - "tvp": 1.66e-07, - "tymoshenko": 1.66e-07, - "uff": 1.66e-07, - "ughhh": 1.66e-07, - "ulsan": 1.66e-07, - "umesh": 1.66e-07, - "ums": 1.66e-07, - "unbelieving": 1.66e-07, - "underaged": 1.66e-07, - "undigested": 1.66e-07, - "unequalled": 1.66e-07, - "unfavourably": 1.66e-07, - "unsaved": 1.66e-07, - "untaxed": 1.66e-07, - "untruth": 1.66e-07, - "upjohn": 1.66e-07, - "urbino": 1.66e-07, - "vad": 1.66e-07, - "vaporizing": 1.66e-07, - "varnishes": 1.66e-07, - "venizelos": 1.66e-07, - "vetoing": 1.66e-07, - "videoconferencing": 1.66e-07, - "viennas": 1.66e-07, - "vilifying": 1.66e-07, - "vilna": 1.66e-07, - "vintners": 1.66e-07, - "vipassana": 1.66e-07, - "vistula": 1.66e-07, - "vitruvius": 1.66e-07, - "vivant": 1.66e-07, - "vloggers": 1.66e-07, - "vocs": 1.66e-07, - "vogler": 1.66e-07, - "voiceovers": 1.66e-07, - "voltaic": 1.66e-07, - "vrc": 1.66e-07, - "vtol": 1.66e-07, - "waddling": 1.66e-07, - "waltrip": 1.66e-07, - "wans": 8.13e-08, - "warhorse": 1.66e-07, - "wavefront": 1.66e-07, - "wayyyyy": 1.66e-07, - "wegmans": 1.66e-07, - "weh": 1.66e-07, - "wellbutrin": 1.66e-07, - "whic": 1.66e-07, - "whimpers": 1.66e-07, - "whirled": 1.66e-07, - "wih": 1.66e-07, - "willet": 1.66e-07, - "windup": 1.66e-07, - "wohl": 1.66e-07, - "wonton": 1.66e-07, - "woodworth": 1.66e-07, - "workgroup": 1.66e-07, - "wrens": 6.17e-08, - "wsc": 1.66e-07, - "wukong": 1.66e-07, - "wycliffe": 1.66e-07, - "yakov": 1.66e-07, - "yarborough": 1.66e-07, - "yassin": 1.66e-07, - "yasuda": 1.66e-07, - "yeesh": 1.66e-07, - "yellowed": 1.66e-07, - "yellowtail": 1.66e-07, - "yokai": 1.66e-07, - "yona": 1.66e-07, - "yoshiko": 1.66e-07, - "yury": 1.66e-07, - "yzerman": 1.66e-07, - "zags": 1.66e-07, - "zamboni": 1.66e-07, - "zappos": 1.66e-07, - "zec": 1.66e-07, - "zellweger": 1.66e-07, - "zendaya": 1.66e-07, - "ziad": 1.66e-07, - "absconding": 1.62e-07, - "acceptably": 1.62e-07, - "activators": 1.62e-07, - "adversities": 1.62e-07, - "affaire": 1.62e-07, - "afrobeat": 1.62e-07, - "agers": 1.62e-07, - "aglow": 1.62e-07, - "akari": 1.62e-07, - "albertson": 1.62e-07, - "aldosterone": 1.62e-07, - "allayed": 1.62e-07, - "alolan": 1.62e-07, - "alte": 1.62e-07, - "alveoli": 1.62e-07, - "ampere": 1.62e-07, - "amphora": 1.62e-07, - "anagrams": 1.62e-07, - "androgenic": 1.62e-07, - "anthemic": 1.62e-07, - "antidotes": 1.62e-07, - "antigenic": 1.62e-07, - "aphis": 1.62e-07, - "apia": 1.62e-07, - "apoplexy": 1.62e-07, - "aright": 1.62e-07, - "arius": 1.62e-07, - "arkin": 1.62e-07, - "arlette": 1.62e-07, - "aske": 1.62e-07, - "atherosclerotic": 1.62e-07, - "atlantean": 1.62e-07, - "atoning": 1.62e-07, - "aub": 1.62e-07, - "auditoriums": 1.62e-07, - "aurangabad": 1.62e-07, - "avenatti": 1.62e-07, - "aversive": 1.62e-07, - "awardee": 1.62e-07, - "awardees": 1.62e-07, - "awb": 1.62e-07, - "balder": 1.62e-07, - "bando": 1.62e-07, - "bandon": 1.62e-07, - "bannock": 1.62e-07, - "banta": 1.62e-07, - "bantering": 1.62e-07, - "baran": 1.62e-07, - "bascom": 1.62e-07, - "baseband": 1.62e-07, - "basmati": 1.62e-07, - "baymax": 1.62e-07, - "bayshore": 1.62e-07, - "bbqs": 7.76e-08, - "beatification": 1.62e-07, - "bedi": 1.62e-07, - "beersheba": 1.62e-07, - "beggs": 1.62e-07, - "belligerents": 1.62e-07, - "bellis": 1.62e-07, - "berkshires": 1.62e-07, - "beste": 1.62e-07, - "biosynthetic": 1.62e-07, - "blac": 1.62e-07, - "blackcurrant": 1.62e-07, - "blackwall": 1.62e-07, - "blaenau": 1.62e-07, - "bleeping": 1.62e-07, - "blitzing": 1.62e-07, - "blois": 1.62e-07, - "bluey": 1.62e-07, - "boda": 1.62e-07, - "bodacious": 1.62e-07, - "bogue": 1.62e-07, - "boothe": 1.62e-07, - "botton": 1.62e-07, - "bpc": 1.62e-07, - "branchs": 1.62e-07, - "brandes": 1.62e-07, - "bria": 1.62e-07, - "brightons": 1.62e-07, - "broun": 1.62e-07, - "brownstein": 1.62e-07, - "brule": 1.62e-07, - "brynn": 1.62e-07, - "budging": 1.62e-07, - "buggered": 1.62e-07, - "bulimic": 1.62e-07, - "bulked": 1.62e-07, - "bulkier": 1.62e-07, - "bullwinkle": 1.62e-07, - "bunching": 1.62e-07, - "buprenorphine": 1.62e-07, - "byram": 1.62e-07, - "caiman": 1.62e-07, - "caldecott": 1.62e-07, - "calibrations": 1.62e-07, - "camellias": 1.62e-07, - "capitalizes": 1.62e-07, - "carden": 1.62e-07, - "carmina": 1.62e-07, - "carribean": 1.62e-07, - "carty": 1.62e-07, - "catalase": 1.62e-07, - "cattlemen": 1.62e-07, - "celica": 1.62e-07, - "centenarians": 1.62e-07, - "centra": 1.62e-07, - "centripetal": 1.62e-07, - "cfda": 1.62e-07, - "chambermaid": 1.62e-07, - "chambersburg": 1.62e-07, - "chargeback": 1.62e-07, - "charitably": 1.62e-07, - "charl": 1.62e-07, - "chimeras": 1.62e-07, - "chive": 1.62e-07, - "choreo": 1.62e-07, - "choristers": 1.62e-07, - "chugs": 1.62e-07, - "clearness": 1.62e-07, - "clop": 1.62e-07, - "cobs": 1.62e-07, - "comercial": 1.62e-07, - "commiserate": 1.62e-07, - "comorbidity": 1.62e-07, - "complainer": 1.62e-07, - "compulsorily": 1.62e-07, - "computable": 1.62e-07, - "conroe": 1.62e-07, - "conservatorship": 1.62e-07, - "constantino": 1.62e-07, - "contentedly": 1.62e-07, - "continua": 1.62e-07, - "contortionist": 1.62e-07, - "contr": 1.62e-07, - "contravenes": 1.62e-07, - "copepods": 1.62e-07, - "cordy": 1.62e-07, - "cornhole": 1.62e-07, - "cornwalls": 1.62e-07, - "corporals": 1.62e-07, - "corrin": 1.62e-07, - "cortlandt": 1.62e-07, - "cosette": 1.62e-07, - "cosi": 1.62e-07, - "cott": 1.62e-07, - "counterclaim": 1.62e-07, - "countryfile": 1.62e-07, - "courteney": 1.62e-07, - "courtesies": 1.62e-07, - "cowered": 1.62e-07, - "cpas": 1.62e-07, - "creswell": 1.62e-07, - "crisply": 1.62e-07, - "crosswise": 1.62e-07, - "crumlin": 1.62e-07, - "crutchfield": 1.62e-07, - "cullum": 1.62e-07, - "culturing": 1.62e-07, - "curmudgeon": 1.62e-07, - "cyclo": 1.62e-07, - "cynon": 1.62e-07, - "cys": 1.62e-07, - "dacre": 1.62e-07, - "dagmar": 1.62e-07, - "danaher": 1.62e-07, - "dander": 1.62e-07, - "danielles": 1.62e-07, - "deadass": 1.62e-07, - "dehydrating": 1.62e-07, - "deluged": 1.62e-07, - "denuded": 1.62e-07, - "denzil": 1.62e-07, - "depolarization": 1.62e-07, - "depositional": 1.62e-07, - "deregulate": 1.62e-07, - "desiccation": 1.62e-07, - "detains": 1.62e-07, - "deutsches": 1.62e-07, - "dgs": 1.62e-07, - "dict": 1.62e-07, - "diffrent": 1.62e-07, - "diogo": 1.62e-07, - "discriminant": 1.62e-07, - "disick": 1.62e-07, - "dispirited": 1.62e-07, - "disrespectfully": 1.62e-07, - "divining": 1.62e-07, - "djia": 1.62e-07, - "dnipropetrovsk": 1.62e-07, - "doig": 1.62e-07, - "donington": 1.62e-07, - "doorknobs": 1.62e-07, - "downe": 1.62e-07, - "droppin": 1.62e-07, - "drow": 1.62e-07, - "duracell": 1.62e-07, - "durbar": 1.62e-07, - "eakin": 1.62e-07, - "ebm": 1.62e-07, - "ecclesiastic": 1.62e-07, - "ecn": 1.62e-07, - "edda": 1.62e-07, - "edisons": 1.62e-07, - "effin": 1.62e-07, - "effy": 1.62e-07, - "egghead": 1.62e-07, - "eggplants": 1.62e-07, - "eib": 1.62e-07, - "eilat": 1.62e-07, - "ellsbury": 1.62e-07, - "elston": 1.62e-07, - "emer": 1.62e-07, - "emphases": 1.62e-07, - "encapsulating": 1.62e-07, - "ence": 1.62e-07, - "enchanter": 1.62e-07, - "encores": 1.62e-07, - "endoscope": 1.62e-07, - "energia": 1.62e-07, - "ensenada": 1.62e-07, - "eonni": 1.62e-07, - "epicurus": 1.62e-07, - "epidemiologic": 1.62e-07, - "equalising": 1.62e-07, - "erogenous": 1.62e-07, - "escapement": 1.62e-07, - "essai": 1.62e-07, - "ete": 1.62e-07, - "etherington": 1.62e-07, - "eti": 1.62e-07, - "euronext": 1.62e-07, - "evinced": 1.62e-07, - "exhume": 1.62e-07, - "expressways": 1.62e-07, - "exuding": 1.62e-07, - "exum": 1.62e-07, - "fareham": 1.62e-07, - "fds": 1.62e-07, - "felonious": 1.62e-07, - "fenian": 1.62e-07, - "feuer": 1.62e-07, - "fibrin": 1.62e-07, - "fillion": 1.62e-07, - "fingerless": 1.62e-07, - "fitful": 1.62e-07, - "fitzsimons": 1.62e-07, - "fleecing": 1.62e-07, - "focusses": 1.62e-07, - "footie": 1.62e-07, - "footlocker": 1.62e-07, - "foots": 1.2e-07, - "fortuitously": 1.62e-07, - "fragmenting": 1.62e-07, - "freestone": 1.62e-07, - "frenchy": 1.62e-07, - "friesen": 1.62e-07, - "futurists": 1.62e-07, - "gabler": 1.62e-07, - "gago": 1.62e-07, - "gannet": 1.62e-07, - "garnishment": 1.62e-07, - "garson": 1.62e-07, - "gazzetta": 1.62e-07, - "genies": 8.13e-08, - "ggs": 8.51e-08, - "ghazal": 1.62e-07, - "gide": 1.62e-07, - "gintama": 1.62e-07, - "giraud": 1.62e-07, - "glassman": 1.62e-07, - "glbt": 1.62e-07, - "goaltenders": 1.62e-07, - "golgotha": 1.62e-07, - "gordian": 1.62e-07, - "gouges": 1.62e-07, - "grandees": 1.62e-07, - "graveside": 1.62e-07, - "graviton": 1.62e-07, - "grebe": 1.62e-07, - "greenbacks": 1.62e-07, - "grieg": 1.62e-07, - "grigio": 1.62e-07, - "grimacing": 1.62e-07, - "grinded": 1.62e-07, - "growin": 1.62e-07, - "grubhub": 1.62e-07, - "gtc": 1.62e-07, - "gulati": 1.62e-07, - "gules": 1.62e-07, - "guyer": 1.62e-07, - "gynaecological": 1.62e-07, - "haf": 1.62e-07, - "halla": 1.62e-07, - "hanoverian": 1.62e-07, - "haque": 1.62e-07, - "hartsfield": 1.62e-07, - "hattrick": 1.62e-07, - "haupt": 1.62e-07, - "haver": 1.62e-07, - "hazell": 1.62e-07, - "hbk": 1.62e-07, - "headdresses": 1.62e-07, - "hedonic": 1.62e-07, - "heenan": 1.62e-07, - "heffron": 1.62e-07, - "heliport": 1.62e-07, - "helpfulness": 1.62e-07, - "hephaestus": 1.62e-07, - "hesketh": 1.62e-07, - "heydrich": 1.62e-07, - "hildegard": 1.62e-07, - "hipper": 1.62e-07, - "hiroki": 1.62e-07, - "hololens": 1.62e-07, - "honneur": 1.62e-07, - "hosing": 1.62e-07, - "huffy": 1.62e-07, - "hurr": 1.62e-07, - "hydrangeas": 1.62e-07, - "hypno": 1.62e-07, - "icardi": 1.62e-07, - "iden": 1.62e-07, - "idg": 1.62e-07, - "idina": 1.62e-07, - "igs": 7.41e-08, - "ilene": 1.62e-07, - "improprieties": 1.62e-07, - "inapplicable": 1.62e-07, - "incs": 1.62e-07, - "incarcerate": 1.62e-07, - "inder": 1.62e-07, - "indescribably": 1.62e-07, - "inexact": 1.62e-07, - "infidelities": 1.62e-07, - "informality": 1.62e-07, - "inmarsat": 1.62e-07, - "integrin": 1.62e-07, - "interferences": 1.62e-07, - "interregnum": 1.62e-07, - "intimation": 1.62e-07, - "intrudes": 1.62e-07, - "inured": 1.62e-07, - "isds": 1.62e-07, - "ishihara": 1.62e-07, - "isosceles": 1.62e-07, - "itp": 1.62e-07, - "itsuki": 1.62e-07, - "iww": 1.62e-07, - "jame": 1.62e-07, - "jarrell": 1.62e-07, - "javale": 1.62e-07, - "jbs": 7.41e-08, - "jigglypuff": 1.62e-07, - "jobbers": 1.62e-07, - "joblessness": 1.62e-07, - "jocular": 1.62e-07, - "jordanians": 1.62e-07, - "juans": 1.62e-07, - "juggled": 1.62e-07, - "julep": 1.62e-07, - "jupp": 1.62e-07, - "kafkas": 1.62e-07, - "kahlil": 1.62e-07, - "kaia": 1.62e-07, - "kaif": 1.62e-07, - "karimov": 1.62e-07, - "keychains": 1.62e-07, - "khadi": 1.62e-07, - "kickstarted": 1.62e-07, - "kier": 1.62e-07, - "killzone": 1.62e-07, - "kitschy": 1.62e-07, - "kling": 1.62e-07, - "koba": 1.62e-07, - "kolbe": 1.62e-07, - "komarov": 1.62e-07, - "kookaburra": 1.62e-07, - "kopi": 1.62e-07, - "kori": 1.62e-07, - "kosciusko": 1.62e-07, - "krab": 1.62e-07, - "kraemer": 1.62e-07, - "krasnoyarsk": 1.62e-07, - "krispies": 1.62e-07, - "kristofferson": 1.62e-07, - "krum": 1.62e-07, - "krzyzewski": 1.62e-07, - "ktla": 1.62e-07, - "kuno": 1.62e-07, - "kurta": 1.62e-07, - "labyrinths": 1.62e-07, - "laggy": 1.62e-07, - "laika": 1.62e-07, - "lankans": 1.62e-07, - "lasseter": 1.62e-07, - "lawyering": 1.62e-07, - "lazlo": 1.62e-07, - "leahs": 1.62e-07, - "legging": 1.62e-07, - "lettre": 1.62e-07, - "levines": 1.62e-07, - "lexisnexis": 1.62e-07, - "libertadores": 1.62e-07, - "lile": 1.62e-07, - "liliane": 1.62e-07, - "lilt": 1.62e-07, - "lindelof": 1.62e-07, - "lionfish": 1.62e-07, - "llangollen": 1.62e-07, - "loke": 1.62e-07, - "loraine": 1.62e-07, - "lorie": 1.62e-07, - "lorin": 1.62e-07, - "lovelier": 1.62e-07, - "lrs": 1.62e-07, - "luigis": 1.62e-07, - "lundin": 1.62e-07, - "lysa": 1.62e-07, - "mainframes": 1.62e-07, - "maintainable": 1.62e-07, - "mallya": 1.62e-07, - "maltby": 1.62e-07, - "malthus": 1.62e-07, - "mamata": 1.62e-07, - "mandan": 1.62e-07, - "mangal": 1.62e-07, - "mangum": 1.62e-07, - "marga": 1.62e-07, - "margulies": 1.62e-07, - "marinating": 1.62e-07, - "markel": 1.62e-07, - "marling": 1.62e-07, - "masada": 1.62e-07, - "masaya": 1.62e-07, - "mastic": 1.62e-07, - "matsushita": 1.62e-07, - "maule": 1.62e-07, - "mcb": 1.62e-07, - "mcgwire": 1.62e-07, - "mcreynolds": 1.62e-07, - "mcvay": 1.62e-07, - "meares": 1.62e-07, - "megami": 1.62e-07, - "megas": 1.62e-07, - "memorised": 1.62e-07, - "merest": 1.62e-07, - "mertz": 1.62e-07, - "metabolically": 1.62e-07, - "metamorphism": 1.62e-07, - "methuselah": 1.62e-07, - "metrolink": 1.62e-07, - "mhp": 1.62e-07, - "michaelson": 1.62e-07, - "mickle": 1.62e-07, - "miele": 1.62e-07, - "mikayla": 1.62e-07, - "mima": 1.62e-07, - "misbehaved": 1.62e-07, - "misdemeanour": 1.62e-07, - "misunderstands": 1.62e-07, - "mmh": 1.62e-07, - "montmorency": 1.62e-07, - "morg": 1.62e-07, - "motored": 1.62e-07, - "moviepass": 1.62e-07, - "mpl": 1.62e-07, - "multicoloured": 1.62e-07, - "mummification": 1.62e-07, - "muta": 1.62e-07, - "muzzled": 1.62e-07, - "nacelle": 1.62e-07, - "nacogdoches": 1.62e-07, - "nagai": 1.62e-07, - "naija": 1.62e-07, - "namur": 1.62e-07, - "nanyang": 1.62e-07, - "narcisse": 1.62e-07, - "nasional": 1.62e-07, - "natsume": 1.62e-07, - "naturalness": 1.62e-07, - "necromancy": 1.62e-07, - "nectarines": 1.62e-07, - "negri": 1.62e-07, - "newish": 1.62e-07, - "newts": 5.5e-08, - "nicholsons": 1.62e-07, - "nido": 1.62e-07, - "nisar": 1.62e-07, - "nitish": 1.62e-07, - "nomen": 1.62e-07, - "nonna": 1.62e-07, - "norge": 1.62e-07, - "northup": 1.62e-07, - "novaya": 1.62e-07, - "nycfc": 1.62e-07, - "occluded": 1.62e-07, - "oce": 1.62e-07, - "ofer": 1.62e-07, - "ofs": 1.62e-07, - "olam": 1.62e-07, - "olmert": 1.62e-07, - "olusegun": 1.62e-07, - "omarosa": 1.62e-07, - "onthe": 1.62e-07, - "oor": 1.62e-07, - "ordre": 1.62e-07, - "organo": 1.62e-07, - "oru": 1.62e-07, - "outdoorsman": 1.62e-07, - "outscoring": 1.62e-07, - "owt": 1.62e-07, - "palpably": 1.62e-07, - "paperboy": 1.62e-07, - "passos": 1.62e-07, - "pastorate": 1.62e-07, - "pattons": 1.62e-07, - "pdm": 1.62e-07, - "peacefulness": 1.62e-07, - "peay": 1.62e-07, - "pedroia": 1.62e-07, - "pem": 1.62e-07, - "pencilled": 1.62e-07, - "peplum": 1.62e-07, - "pepto": 1.62e-07, - "percents": 1.62e-07, - "periodontitis": 1.62e-07, - "perlite": 1.62e-07, - "personify": 1.62e-07, - "petrarch": 1.62e-07, - "petrel": 1.62e-07, - "philp": 1.62e-07, - "phonon": 1.62e-07, - "photochemical": 1.62e-07, - "pilfering": 1.62e-07, - "plats": 1.62e-07, - "plebeians": 1.62e-07, - "ploys": 1.62e-07, - "pointlessly": 1.62e-07, - "polynesians": 1.62e-07, - "popups": 1.62e-07, - "posix": 1.62e-07, - "pouncing": 1.62e-07, - "pred": 1.62e-07, - "preprint": 1.62e-07, - "prepubescent": 1.62e-07, - "pressler": 1.62e-07, - "prf": 1.62e-07, - "probly": 1.62e-07, - "profanities": 1.62e-07, - "provocateurs": 1.62e-07, - "psalmist": 1.62e-07, - "pssst": 1.62e-07, - "pudong": 1.62e-07, - "punchlines": 1.62e-07, - "punctually": 1.62e-07, - "punditry": 1.62e-07, - "pvs": 1.62e-07, - "pws": 1.62e-07, - "pyridine": 1.62e-07, - "pyrrhus": 1.62e-07, - "quashing": 1.62e-07, - "quickfire": 1.62e-07, - "radiations": 1.62e-07, - "raekwon": 1.62e-07, - "ragdoll": 1.62e-07, - "ragin": 1.62e-07, - "raila": 1.62e-07, - "rainn": 1.62e-07, - "rajinikanth": 1.62e-07, - "rajoy": 1.62e-07, - "ramah": 1.62e-07, - "rasul": 1.62e-07, - "ratzinger": 1.62e-07, - "rawness": 1.62e-07, - "reapplied": 1.62e-07, - "recitations": 1.62e-07, - "recommit": 1.62e-07, - "regine": 1.62e-07, - "regurgitating": 1.62e-07, - "reiser": 1.62e-07, - "renmin": 1.62e-07, - "repetitively": 1.62e-07, - "repossess": 1.62e-07, - "rescission": 1.62e-07, - "resized": 1.62e-07, - "restorers": 1.62e-07, - "restrepo": 1.62e-07, - "retooling": 1.62e-07, - "reva": 1.62e-07, - "revisionists": 1.62e-07, - "rhodri": 1.62e-07, - "rhona": 1.62e-07, - "ricocheted": 1.62e-07, - "riles": 1.62e-07, - "rockhold": 1.62e-07, - "rodeos": 1.62e-07, - "ronnies": 6.76e-08, - "rooke": 1.62e-07, - "rothbard": 1.62e-07, - "rso": 1.62e-07, - "rsp": 1.62e-07, - "ruckman": 1.62e-07, - "rud": 1.62e-07, - "ruffling": 1.62e-07, - "runge": 1.62e-07, - "sabathia": 1.62e-07, - "sachet": 1.62e-07, - "saira": 1.62e-07, - "sakshi": 1.62e-07, - "sali": 1.62e-07, - "saltzman": 1.62e-07, - "samad": 1.62e-07, - "sangam": 1.62e-07, - "savitar": 1.62e-07, - "savoie": 1.62e-07, - "sbt": 1.62e-07, - "scampered": 1.62e-07, - "schramm": 1.62e-07, - "scrapper": 1.62e-07, - "scythians": 1.62e-07, - "sde": 1.62e-07, - "seceding": 1.62e-07, - "seely": 1.62e-07, - "seki": 1.62e-07, - "sela": 1.62e-07, - "selhurst": 1.62e-07, - "sensu": 1.62e-07, - "seperated": 1.62e-07, - "serbo": 1.62e-07, - "sexualised": 1.62e-07, - "sharples": 1.62e-07, - "shekel": 1.62e-07, - "sheree": 1.62e-07, - "shipowners": 1.62e-07, - "shul": 1.62e-07, - "shyamalan": 1.62e-07, - "sicilians": 1.62e-07, - "sidereal": 1.62e-07, - "sidestepped": 1.62e-07, - "sigur": 1.62e-07, - "silverlight": 1.62e-07, - "simples": 1.62e-07, - "singleness": 1.62e-07, - "sinica": 1.62e-07, - "skeletor": 1.62e-07, - "skimmers": 1.62e-07, - "skol": 1.62e-07, - "slenderman": 1.62e-07, - "slims": 1.55e-07, - "slovenly": 1.62e-07, - "smooths": 1.62e-07, - "sniffle": 1.62e-07, - "snipping": 1.62e-07, - "snowmelt": 1.62e-07, - "soccers": 1.62e-07, - "softy": 1.62e-07, - "solarium": 1.62e-07, - "solidworks": 1.62e-07, - "sonogram": 1.62e-07, - "sori": 1.62e-07, - "spall": 1.62e-07, - "splines": 1.62e-07, - "splurging": 1.62e-07, - "squirmed": 1.62e-07, - "sru": 1.62e-07, - "stampa": 1.62e-07, - "stationers": 1.62e-07, - "staycation": 1.62e-07, - "stoma": 1.62e-07, - "stonehouse": 1.62e-07, - "streit": 1.62e-07, - "strikeforce": 1.62e-07, - "subscript": 1.62e-07, - "substituents": 1.62e-07, - "succinate": 1.62e-07, - "suntory": 1.62e-07, - "supercomputing": 1.62e-07, - "suppositories": 1.62e-07, - "surbiton": 1.62e-07, - "surmount": 1.62e-07, - "suse": 1.62e-07, - "suso": 1.62e-07, - "svd": 1.62e-07, - "swanepoel": 1.62e-07, - "swash": 1.62e-07, - "swee": 1.62e-07, - "symbology": 1.62e-07, - "tachometer": 1.62e-07, - "tachyon": 1.62e-07, - "taht": 1.62e-07, - "tamas": 1.74e-08, - "taproom": 1.62e-07, - "tarnation": 1.62e-07, - "tauri": 1.38e-08, - "taya": 1.62e-07, - "tayler": 1.62e-07, - "tehrans": 1.62e-07, - "tello": 1.62e-07, - "telomerase": 1.62e-07, - "texturing": 1.62e-07, - "thana": 1.62e-07, - "thanatos": 1.62e-07, - "theist": 1.62e-07, - "theodoric": 1.62e-07, - "theresas": 1.62e-07, - "thermopylae": 1.62e-07, - "thora": 1.62e-07, - "thorntons": 1.62e-07, - "thumbprint": 1.62e-07, - "timberlakes": 1.62e-07, - "tocopherol": 1.62e-07, - "tojo": 1.62e-07, - "tokai": 1.62e-07, - "toland": 1.62e-07, - "tope": 1.62e-07, - "torii": 1.62e-07, - "torrence": 1.62e-07, - "towie": 1.62e-07, - "towners": 1.62e-07, - "trabajo": 1.62e-07, - "tractable": 1.62e-07, - "trailblazing": 1.62e-07, - "transcanada": 1.62e-07, - "transshipment": 1.62e-07, - "transvestites": 1.62e-07, - "treaters": 1.62e-07, - "triplex": 1.62e-07, - "trippers": 1.62e-07, - "trompe": 1.62e-07, - "troup": 1.62e-07, - "trueman": 1.62e-07, - "trumper": 1.62e-07, - "ttm": 1.62e-07, - "tuneful": 1.62e-07, - "twix": 1.62e-07, - "tyger": 1.62e-07, - "typeset": 1.62e-07, - "uba": 1.62e-07, - "uchida": 1.62e-07, - "uid": 1.62e-07, - "unfollowed": 1.62e-07, - "unicellular": 1.62e-07, - "universitat": 1.62e-07, - "unlabeled": 1.62e-07, - "unlikable": 1.62e-07, - "unrighteousness": 1.62e-07, - "unrolled": 1.62e-07, - "unzips": 1.62e-07, - "valais": 1.62e-07, - "vallee": 1.62e-07, - "valls": 1.62e-07, - "vapes": 1.62e-07, - "vasili": 1.62e-07, - "veitch": 1.62e-07, - "ventrally": 1.62e-07, - "vermeulen": 1.62e-07, - "vib": 1.62e-07, - "victimisation": 1.62e-07, - "vilas": 1.62e-07, - "virginie": 1.62e-07, - "visigoths": 1.62e-07, - "waah": 1.62e-07, - "wafted": 1.62e-07, - "waratah": 1.62e-07, - "wariness": 1.62e-07, - "washingtonian": 1.62e-07, - "wasson": 1.62e-07, - "watchs": 1.62e-07, - "watchmakers": 1.62e-07, - "watchword": 1.62e-07, - "wattpad": 1.62e-07, - "weaklings": 1.62e-07, - "weatherby": 1.62e-07, - "webers": 1.62e-07, - "weiwei": 1.62e-07, - "welly": 1.62e-07, - "weren": 1.62e-07, - "wessels": 1.62e-07, - "weybridge": 1.62e-07, - "wfc": 1.62e-07, - "whee": 1.62e-07, - "wieners": 1.62e-07, - "wimax": 1.62e-07, - "wisher": 1.62e-07, - "womp": 1.62e-07, - "workspaces": 1.62e-07, - "wouldst": 1.62e-07, - "wrack": 1.62e-07, - "wrathful": 1.62e-07, - "wrongdoers": 1.62e-07, - "wurst": 1.62e-07, - "wx": 1.62e-07, - "wyss": 1.62e-07, - "xcom": 1.62e-07, - "xenopus": 1.62e-07, - "xxix": 1.62e-07, - "xylem": 1.62e-07, - "yeates": 1.62e-07, - "yemi": 1.62e-07, - "yik": 1.62e-07, - "youself": 1.62e-07, - "youthfulness": 1.62e-07, - "zabel": 1.62e-07, - "zbigniew": 1.62e-07, - "zhengzhou": 1.62e-07, - "zindagi": 1.62e-07, - "zoopla": 1.62e-07, - "zp": 1.62e-07, - "zygmunt": 1.62e-07, - "zzz": 1.62e-07, - "aaand": 1.58e-07, - "aav": 1.58e-07, - "abductors": 1.58e-07, - "abedin": 1.58e-07, - "abelard": 1.58e-07, - "abnegation": 1.58e-07, - "accc": 1.58e-07, - "adora": 1.58e-07, - "aggarwal": 1.58e-07, - "ahmadis": 1.58e-07, - "airdrops": 1.58e-07, - "aitchison": 1.58e-07, - "akiba": 1.58e-07, - "alai": 1.58e-07, - "alamogordo": 1.58e-07, - "albie": 1.58e-07, - "alcibiades": 1.58e-07, - "alderaan": 1.58e-07, - "alitalia": 1.58e-07, - "allergan": 1.58e-07, - "amery": 1.58e-07, - "amidships": 1.58e-07, - "anat": 1.58e-07, - "anesthesiologists": 1.58e-07, - "anglos": 1.58e-07, - "anitas": 1.58e-07, - "antipodes": 1.58e-07, - "apatite": 1.58e-07, - "apportion": 1.58e-07, - "aprilia": 1.58e-07, - "arad": 1.58e-07, - "armas": 1.58e-07, - "armors": 6.31e-08, - "ataturk": 1.58e-07, - "ater": 1.58e-07, - "austerlitz": 1.58e-07, - "authenticating": 1.58e-07, - "autry": 1.58e-07, - "aver": 1.58e-07, - "avner": 1.58e-07, - "avoidant": 1.58e-07, - "awg": 1.58e-07, - "awlaki": 1.58e-07, - "awn": 1.58e-07, - "axing": 1.58e-07, - "azaria": 1.58e-07, - "azzam": 1.58e-07, - "backbencher": 1.58e-07, - "backpage": 1.58e-07, - "bago": 1.58e-07, - "bailie": 1.58e-07, - "ballplayer": 1.58e-07, - "bandaid": 1.58e-07, - "banjos": 1.58e-07, - "bartels": 1.58e-07, - "bartlesville": 1.58e-07, - "bastrop": 1.58e-07, - "batra": 1.58e-07, - "batum": 1.58e-07, - "bball": 1.58e-07, - "bct": 1.58e-07, - "beatnik": 1.58e-07, - "becerra": 1.58e-07, - "befalls": 1.58e-07, - "belmore": 1.58e-07, - "beltline": 1.58e-07, - "benzyl": 1.58e-07, - "betancourt": 1.58e-07, - "bilinear": 1.58e-07, - "blackpink": 1.58e-07, - "blofeld": 1.58e-07, - "bloodstains": 1.58e-07, - "bluffton": 1.58e-07, - "boccaccio": 1.58e-07, - "boheme": 1.58e-07, - "bolded": 1.58e-07, - "bolsa": 1.58e-07, - "bonaire": 1.58e-07, - "bookman": 1.58e-07, - "boons": 1.58e-07, - "botham": 1.58e-07, - "bottlers": 1.58e-07, - "boyo": 1.58e-07, - "bradfords": 1.58e-07, - "braff": 1.58e-07, - "brandish": 1.58e-07, - "brassard": 1.58e-07, - "brca": 1.58e-07, - "brd": 1.58e-07, - "bringbackourgirls": 1.58e-07, - "brinton": 1.58e-07, - "briny": 1.58e-07, - "broner": 1.58e-07, - "buggery": 1.58e-07, - "buggin": 1.58e-07, - "buon": 1.58e-07, - "burdette": 1.58e-07, - "buuren": 1.58e-07, - "byd": 1.58e-07, - "byelection": 1.58e-07, - "byrons": 1.58e-07, - "caan": 1.58e-07, - "calebs": 1.58e-07, - "calicut": 1.58e-07, - "calorific": 1.58e-07, - "calzone": 1.58e-07, - "camargo": 1.58e-07, - "capacious": 1.58e-07, - "carbuncle": 1.58e-07, - "carefull": 1.58e-07, - "casbah": 1.58e-07, - "cashel": 1.58e-07, - "casus": 1.58e-07, - "catwalks": 1.58e-07, - "cbl": 1.58e-07, - "cboe": 1.58e-07, - "celebritys": 1.58e-07, - "celeron": 1.58e-07, - "cephalopods": 1.58e-07, - "cerritos": 1.58e-07, - "charney": 1.58e-07, - "chastisement": 1.58e-07, - "cheapness": 1.58e-07, - "chemotherapeutic": 1.58e-07, - "cherubim": 1.58e-07, - "chevrons": 1.58e-07, - "chickenshit": 1.58e-07, - "chiesa": 1.58e-07, - "chimeric": 1.58e-07, - "chiselled": 1.58e-07, - "chorlton": 1.58e-07, - "chupacabra": 1.58e-07, - "ciliary": 1.58e-07, - "cinematographic": 1.58e-07, - "clemenceau": 1.58e-07, - "cobden": 1.58e-07, - "cockiness": 1.58e-07, - "collateralized": 1.58e-07, - "colne": 1.58e-07, - "commish": 1.58e-07, - "comorbidities": 1.58e-07, - "complainers": 1.58e-07, - "confederated": 1.58e-07, - "connollys": 1.58e-07, - "consorts": 1.58e-07, - "consultancies": 1.58e-07, - "corgan": 1.58e-07, - "corneas": 1.58e-07, - "coronel": 1.58e-07, - "cosbys": 1.58e-07, - "costumers": 1.58e-07, - "countervailing": 1.58e-07, - "countywide": 1.58e-07, - "coveting": 1.58e-07, - "crackin": 1.58e-07, - "cravens": 6.03e-08, - "cres": 1.58e-07, - "crimping": 1.58e-07, - "croon": 1.58e-07, - "croquettes": 1.58e-07, - "crosley": 1.58e-07, - "csir": 1.58e-07, - "cuando": 1.58e-07, - "cuatro": 1.58e-07, - "cullman": 1.58e-07, - "culls": 1.58e-07, - "curdled": 1.58e-07, - "cusps": 1.58e-07, - "cutlers": 5.37e-08, - "dalles": 1.58e-07, - "dancy": 1.58e-07, - "danko": 1.58e-07, - "darnold": 1.58e-07, - "daughtry": 1.58e-07, - "davi": 1.58e-07, - "davros": 1.58e-07, - "dayna": 1.58e-07, - "dbms": 1.58e-07, - "dearing": 1.58e-07, - "decant": 1.58e-07, - "deepmind": 1.58e-07, - "defiling": 1.58e-07, - "dehumanized": 1.58e-07, - "dein": 1.58e-07, - "deku": 1.58e-07, - "delisting": 1.58e-07, - "demoralize": 1.58e-07, - "denon": 1.58e-07, - "depute": 1.58e-07, - "destructor": 1.58e-07, - "detoxing": 1.58e-07, - "devaney": 1.58e-07, - "deve": 1.58e-07, - "devries": 1.58e-07, - "dham": 1.58e-07, - "diffusers": 1.58e-07, - "disjunction": 1.58e-07, - "dismissively": 1.58e-07, - "displease": 1.58e-07, - "distaff": 1.58e-07, - "divorcees": 1.58e-07, - "dkny": 1.58e-07, - "dois": 1.58e-07, - "doohan": 1.58e-07, - "dreamweaver": 1.58e-07, - "drei": 1.58e-07, - "drumroll": 1.58e-07, - "dta": 1.58e-07, - "duals": 1.58e-07, - "duchovny": 1.58e-07, - "duddy": 1.58e-07, - "dugouts": 1.58e-07, - "dullest": 1.58e-07, - "dunya": 1.58e-07, - "durr": 1.58e-07, - "duvalier": 1.58e-07, - "duvernay": 1.58e-07, - "dvm": 1.58e-07, - "ects": 1.58e-07, - "eed": 1.58e-07, - "efferent": 1.58e-07, - "egoistic": 1.58e-07, - "eit": 1.58e-07, - "elana": 1.58e-07, - "elastomer": 1.58e-07, - "eleonora": 1.58e-07, - "elif": 1.58e-07, - "elke": 1.58e-07, - "ellisons": 1.58e-07, - "emdr": 1.58e-07, - "emv": 1.58e-07, - "energie": 1.58e-07, - "enraging": 1.58e-07, - "entangle": 1.58e-07, - "erez": 1.58e-07, - "esha": 1.58e-07, - "estevez": 1.58e-07, - "etoile": 1.58e-07, - "eugh": 1.58e-07, - "eurofighter": 1.58e-07, - "euthanize": 1.58e-07, - "eviscerate": 1.58e-07, - "facsimiles": 1.58e-07, - "famicom": 1.58e-07, - "fanbases": 1.58e-07, - "farkas": 1.58e-07, - "farrells": 1.58e-07, - "farsighted": 1.58e-07, - "fearon": 1.58e-07, - "feria": 1.58e-07, - "ferretti": 1.58e-07, - "feted": 1.58e-07, - "fibrinogen": 1.58e-07, - "figural": 1.58e-07, - "firebombing": 1.58e-07, - "fixe": 1.58e-07, - "flav": 1.58e-07, - "florissant": 1.58e-07, - "fluidly": 1.58e-07, - "fluoro": 1.58e-07, - "fonds": 1.58e-07, - "fons": 1.58e-07, - "foodbank": 1.58e-07, - "forages": 1.58e-07, - "foro": 1.58e-07, - "freakout": 1.58e-07, - "freakshow": 1.58e-07, - "freeloaders": 1.58e-07, - "freewill": 1.58e-07, - "fsi": 1.58e-07, - "fsn": 1.58e-07, - "funfair": 1.58e-07, - "furstenberg": 1.58e-07, - "furyk": 1.58e-07, - "gaily": 1.58e-07, - "galilei": 1.58e-07, - "gargling": 1.58e-07, - "gca": 1.58e-07, - "gcd": 1.58e-07, - "gdf": 1.58e-07, - "gelder": 1.58e-07, - "geoghegan": 1.58e-07, - "gestural": 1.58e-07, - "gimlet": 1.58e-07, - "gladden": 1.58e-07, - "glasnost": 1.58e-07, - "glendon": 1.58e-07, - "glickman": 1.58e-07, - "globals": 5.01e-08, - "glomerular": 1.58e-07, - "glycolic": 1.58e-07, - "gmm": 1.58e-07, - "goddaughter": 1.58e-07, - "gok": 1.58e-07, - "goldfield": 1.58e-07, - "gorski": 1.58e-07, - "gosnell": 1.58e-07, - "gramsci": 1.58e-07, - "grandin": 1.58e-07, - "granitic": 1.58e-07, - "grantland": 1.58e-07, - "grat": 1.58e-07, - "gravure": 1.58e-07, - "greely": 1.58e-07, - "greencastle": 1.58e-07, - "grovelling": 1.58e-07, - "gryphon": 1.58e-07, - "gss": 1.58e-07, - "gsu": 1.58e-07, - "gtl": 1.58e-07, - "guanajuato": 1.58e-07, - "gunston": 1.58e-07, - "gwa": 1.58e-07, - "haidar": 1.58e-07, - "halim": 1.58e-07, - "halpert": 1.58e-07, - "handi": 1.58e-07, - "haplotype": 1.58e-07, - "hardings": 1.58e-07, - "harpenden": 1.58e-07, - "harpist": 1.58e-07, - "hatha": 1.58e-07, - "heaves": 1.58e-07, - "hecklers": 1.58e-07, - "hellen": 1.58e-07, - "helmeted": 1.58e-07, - "helpings": 1.58e-07, - "herberts": 1.58e-07, - "hillard": 1.58e-07, - "hilltops": 1.58e-07, - "hipped": 1.58e-07, - "hir": 1.58e-07, - "hira": 1.58e-07, - "hirai": 1.58e-07, - "hirschfeld": 1.58e-07, - "hollies": 1.58e-07, - "hollowing": 1.58e-07, - "homocysteine": 1.58e-07, - "honorius": 1.58e-07, - "hopman": 1.58e-07, - "horvat": 1.58e-07, - "hout": 1.58e-07, - "howser": 1.58e-07, - "hrp": 1.58e-07, - "huntin": 1.58e-07, - "iai": 1.58e-07, - "ibp": 1.58e-07, - "icg": 1.58e-07, - "idem": 1.58e-07, - "iftar": 1.58e-07, - "iguodala": 1.58e-07, - "illegitimacy": 1.58e-07, - "imogene": 1.58e-07, - "impracticable": 1.58e-07, - "inaccessibility": 1.58e-07, - "inadvisable": 1.58e-07, - "incongruity": 1.58e-07, - "indubitably": 1.58e-07, - "infuses": 1.58e-07, - "inheritor": 1.58e-07, - "inhouse": 1.58e-07, - "inseam": 1.58e-07, - "instated": 1.58e-07, - "insubordinate": 1.58e-07, - "intemperate": 1.58e-07, - "interspecies": 1.58e-07, - "intubated": 1.58e-07, - "invalidity": 1.58e-07, - "inverts": 1.58e-07, - "iof": 1.58e-07, - "ious": 1.58e-07, - "ipd": 1.58e-07, - "iquique": 1.58e-07, - "irwins": 1.58e-07, - "iskandar": 1.58e-07, - "jackfruit": 1.58e-07, - "jamais": 1.58e-07, - "jct": 1.58e-07, - "jeopardizes": 1.58e-07, - "jeunesse": 1.58e-07, - "jiggly": 1.58e-07, - "jinny": 1.58e-07, - "jordana": 1.58e-07, - "josefina": 1.58e-07, - "joslin": 1.58e-07, - "joslyn": 1.58e-07, - "jrue": 1.58e-07, - "jubal": 1.58e-07, - "jund": 1.58e-07, - "jyn": 1.58e-07, - "kab": 1.58e-07, - "kabhi": 1.58e-07, - "kaden": 1.58e-07, - "kaguya": 1.58e-07, - "kame": 1.58e-07, - "kempe": 1.58e-07, - "keo": 1.58e-07, - "kerstin": 1.58e-07, - "keynotes": 1.58e-07, - "khel": 1.58e-07, - "kickoffs": 1.58e-07, - "kido": 1.58e-07, - "kiis": 1.58e-07, - "killah": 1.58e-07, - "kinabalu": 1.58e-07, - "kinston": 1.58e-07, - "kittel": 1.58e-07, - "kiyoko": 1.58e-07, - "kizer": 1.58e-07, - "knope": 1.58e-07, - "knoweth": 1.58e-07, - "koen": 1.58e-07, - "kosovos": 1.58e-07, - "krist": 1.58e-07, - "kuhl": 1.58e-07, - "kumbaya": 1.58e-07, - "kunta": 1.58e-07, - "kunz": 1.58e-07, - "kuz": 1.58e-07, - "lafontaine": 1.58e-07, - "lali": 1.58e-07, - "lalit": 1.58e-07, - "lalu": 1.58e-07, - "langmuir": 1.58e-07, - "lanolin": 1.58e-07, - "larimer": 1.58e-07, - "larne": 1.58e-07, - "lavar": 1.58e-07, - "lawbreakers": 1.58e-07, - "ldap": 1.58e-07, - "lecithin": 1.58e-07, - "leclair": 1.58e-07, - "leet": 1.58e-07, - "legalism": 1.58e-07, - "leitrim": 1.58e-07, - "lendl": 1.58e-07, - "lerwick": 1.58e-07, - "levar": 1.58e-07, - "lexapro": 1.58e-07, - "libation": 1.58e-07, - "lightnin": 1.58e-07, - "lingus": 1.58e-07, - "lippy": 1.58e-07, - "llano": 1.58e-07, - "lmk": 1.58e-07, - "lobs": 1.58e-07, - "lodgers": 1.58e-07, - "loewe": 1.58e-07, - "loggia": 1.58e-07, - "loughton": 1.58e-07, - "lrb": 1.58e-07, - "lupine": 1.58e-07, - "luria": 1.58e-07, - "mabry": 1.58e-07, - "madeley": 1.58e-07, - "madox": 1.58e-07, - "magellanic": 1.58e-07, - "magoo": 1.58e-07, - "mahony": 1.58e-07, - "maint": 1.58e-07, - "makita": 1.58e-07, - "mandzukic": 1.58e-07, - "manne": 1.58e-07, - "mapa": 1.58e-07, - "marner": 1.58e-07, - "marron": 1.58e-07, - "marsalis": 1.58e-07, - "marth": 1.58e-07, - "masher": 1.58e-07, - "matilde": 1.58e-07, - "matrilineal": 1.58e-07, - "matzo": 1.58e-07, - "maybes": 1.58e-07, - "mccreary": 1.58e-07, - "mcgees": 1.58e-07, - "mcmorris": 1.58e-07, - "mcphail": 1.58e-07, - "mediafire": 1.58e-07, - "meekness": 1.58e-07, - "melcher": 1.58e-07, - "meltwater": 1.58e-07, - "meriwether": 1.58e-07, - "metallicas": 1.58e-07, - "mezcal": 1.58e-07, - "milian": 1.58e-07, - "mineworkers": 1.58e-07, - "minuses": 1.58e-07, - "misanthrope": 1.58e-07, - "misanthropic": 1.58e-07, - "misbehaviour": 1.58e-07, - "misleadingly": 1.58e-07, - "miyake": 1.58e-07, - "miyu": 1.58e-07, - "mkii": 1.58e-07, - "moar": 1.58e-07, - "modoc": 1.58e-07, - "mohandas": 1.58e-07, - "mohs": 1.58e-07, - "monteiro": 1.58e-07, - "mortician": 1.58e-07, - "mosely": 1.58e-07, - "motorhead": 1.58e-07, - "mouthfeel": 1.58e-07, - "msgr": 1.58e-07, - "msk": 1.58e-07, - "mullens": 6.17e-08, - "munna": 1.58e-07, - "muskingum": 1.58e-07, - "mutuals": 5.75e-08, - "naff": 1.58e-07, - "narmada": 1.58e-07, - "necrophilia": 1.58e-07, - "necrotizing": 1.58e-07, - "neurone": 1.58e-07, - "neurotoxicity": 1.58e-07, - "newsreels": 1.58e-07, - "nginx": 1.58e-07, - "nickelodeons": 1.58e-07, - "nini": 1.58e-07, - "nioh": 1.58e-07, - "nismo": 1.58e-07, - "norco": 1.58e-07, - "norland": 1.58e-07, - "northeastward": 1.58e-07, - "northmen": 1.58e-07, - "ntn": 1.58e-07, - "nukem": 1.58e-07, - "nurburgring": 1.58e-07, - "nyack": 1.58e-07, - "nylander": 1.58e-07, - "oau": 1.58e-07, - "oblate": 1.58e-07, - "occlusive": 1.58e-07, - "omnis": 1.58e-07, - "oon": 1.58e-07, - "opcw": 1.58e-07, - "outgoings": 1.58e-07, - "overwintering": 1.58e-07, - "overworld": 1.58e-07, - "oww": 1.58e-07, - "paganini": 1.58e-07, - "pahlavi": 1.58e-07, - "pahs": 1.58e-07, - "palfrey": 1.58e-07, - "palmolive": 1.58e-07, - "panamera": 1.58e-07, - "papillae": 1.58e-07, - "pappa": 1.58e-07, - "paracelsus": 1.58e-07, - "parakeets": 1.58e-07, - "parana": 1.58e-07, - "parham": 1.58e-07, - "pasar": 1.58e-07, - "patra": 1.58e-07, - "paulding": 1.58e-07, - "pawnshop": 1.58e-07, - "payet": 1.58e-07, - "peary": 1.58e-07, - "pelosis": 1.58e-07, - "pembina": 1.58e-07, - "peptic": 1.58e-07, - "perineum": 1.58e-07, - "perle": 1.58e-07, - "perovskite": 1.58e-07, - "perumal": 1.58e-07, - "petaling": 1.58e-07, - "pgm": 1.58e-07, - "phaeton": 1.58e-07, - "phar": 1.58e-07, - "phillippe": 1.58e-07, - "phinney": 1.58e-07, - "photojournalists": 1.58e-07, - "photoreceptor": 1.58e-07, - "pierres": 1.58e-07, - "piezo": 1.58e-07, - "pigeonhole": 1.58e-07, - "pillay": 1.58e-07, - "pimento": 1.58e-07, - "pimpernel": 1.58e-07, - "pitiable": 1.58e-07, - "placebos": 1.58e-07, - "plainer": 1.58e-07, - "pmid": 1.58e-07, - "populi": 1.58e-07, - "pored": 1.58e-07, - "pornographers": 1.58e-07, - "positivist": 1.58e-07, - "posy": 1.58e-07, - "pottermore": 1.58e-07, - "prather": 1.58e-07, - "pravin": 1.58e-07, - "prensa": 1.58e-07, - "princesa": 1.58e-07, - "prithvi": 1.58e-07, - "profligacy": 1.58e-07, - "profundity": 1.58e-07, - "protean": 1.58e-07, - "psas": 1.58e-07, - "publica": 1.58e-07, - "pudsey": 1.58e-07, - "pummeling": 1.58e-07, - "punked": 1.58e-07, - "pursed": 1.58e-07, - "pusan": 1.58e-07, - "puzzler": 1.58e-07, - "quadra": 1.58e-07, - "quesada": 1.58e-07, - "quickstep": 1.58e-07, - "quintile": 1.58e-07, - "radioheads": 1.58e-07, - "radioisotope": 1.58e-07, - "raeburn": 1.58e-07, - "ragweed": 1.58e-07, - "railcar": 1.58e-07, - "rajat": 1.58e-07, - "ramires": 1.58e-07, - "raph": 1.58e-07, - "ravish": 1.58e-07, - "readme": 1.58e-07, - "realest": 1.58e-07, - "reallocate": 1.58e-07, - "reattached": 1.58e-07, - "recalculated": 1.58e-07, - "recrimination": 1.58e-07, - "rect": 1.58e-07, - "refering": 1.58e-07, - "refried": 1.58e-07, - "rehydrate": 1.58e-07, - "rejoinder": 1.58e-07, - "repairer": 1.58e-07, - "repays": 1.58e-07, - "reperfusion": 1.58e-07, - "reprobate": 1.58e-07, - "republication": 1.58e-07, - "resizing": 1.58e-07, - "restating": 1.58e-07, - "retching": 1.58e-07, - "riddim": 1.58e-07, - "riffle": 1.58e-07, - "rigoletto": 1.58e-07, - "rih": 1.58e-07, - "rijksmuseum": 1.58e-07, - "ringgit": 1.58e-07, - "riri": 1.58e-07, - "ritualized": 1.58e-07, - "rockstars": 5.62e-08, - "rosencrantz": 1.58e-07, - "roundups": 1.58e-07, - "ryong": 1.58e-07, - "sadhu": 1.58e-07, - "sadlers": 1.58e-07, - "sagrada": 1.58e-07, - "sahar": 1.58e-07, - "saida": 1.58e-07, - "saku": 1.58e-07, - "salahuddin": 1.58e-07, - "sall": 1.58e-07, - "sandhills": 1.58e-07, - "sandiego": 1.58e-07, - "sapien": 1.58e-07, - "sapna": 1.58e-07, - "sarees": 1.58e-07, - "sarri": 1.58e-07, - "sauntered": 1.58e-07, - "schein": 1.58e-07, - "schmaltz": 1.58e-07, - "scooted": 1.58e-07, - "scoville": 1.58e-07, - "scrums": 1.58e-07, - "seahorses": 1.58e-07, - "seca": 1.58e-07, - "seminarians": 1.58e-07, - "sennett": 1.58e-07, - "sentra": 1.58e-07, - "serbians": 1.58e-07, - "sextus": 1.58e-07, - "shabana": 1.58e-07, - "shamrocks": 1.58e-07, - "shant": 4.27e-08, - "shawcross": 1.58e-07, - "shepherdess": 1.58e-07, - "shg": 1.58e-07, - "shovelling": 1.58e-07, - "sidenote": 1.58e-07, - "siebert": 1.58e-07, - "silliman": 1.58e-07, - "silvestri": 1.58e-07, - "simones": 1.58e-07, - "simonsen": 1.58e-07, - "sisson": 1.58e-07, - "sista": 1.58e-07, - "sittingbourne": 1.58e-07, - "sitwell": 1.58e-07, - "sizzler": 1.58e-07, - "skal": 1.58e-07, - "slidell": 1.58e-07, - "slouchy": 1.58e-07, - "smallmouth": 1.58e-07, - "smirnov": 1.58e-07, - "smokestack": 1.58e-07, - "snubbing": 1.58e-07, - "sociale": 1.58e-07, - "solanum": 1.58e-07, - "solway": 1.58e-07, - "somoza": 1.58e-07, - "soothsayer": 1.58e-07, - "sops": 1.58e-07, - "spasticity": 1.58e-07, - "spearheads": 1.58e-07, - "specular": 1.58e-07, - "spfl": 1.58e-07, - "spironolactone": 1.58e-07, - "splm": 1.58e-07, - "spotlighted": 1.58e-07, - "spotlighting": 1.58e-07, - "squeegee": 1.58e-07, - "stanwyck": 1.58e-07, - "stealers": 1.58e-07, - "steeler": 1.58e-07, - "steinitz": 1.58e-07, - "stenberg": 1.58e-07, - "stengel": 1.58e-07, - "stopes": 1.58e-07, - "stoping": 1.58e-07, - "stour": 1.58e-07, - "stourbridge": 1.58e-07, - "strictness": 1.58e-07, - "stuxnet": 1.58e-07, - "sugarloaf": 1.58e-07, - "sukhoi": 1.58e-07, - "sulfite": 1.58e-07, - "sundaes": 1.58e-07, - "sunnier": 1.58e-07, - "superscript": 1.58e-07, - "suppressant": 1.58e-07, - "svm": 1.58e-07, - "svn": 1.58e-07, - "swales": 1.58e-07, - "swope": 1.58e-07, - "sycophant": 1.58e-07, - "taguchi": 1.58e-07, - "takao": 1.58e-07, - "tanna": 1.58e-07, - "tarde": 1.58e-07, - "tatarstan": 1.58e-07, - "tayo": 1.58e-07, - "teardown": 1.58e-07, - "techy": 1.58e-07, - "telecommuting": 1.58e-07, - "telephonic": 1.58e-07, - "telephoning": 1.58e-07, - "teleporter": 1.58e-07, - "telkom": 1.58e-07, - "tellingly": 1.58e-07, - "tempeh": 1.58e-07, - "tenby": 1.58e-07, - "tensors": 1.58e-07, - "tep": 1.58e-07, - "terahertz": 1.58e-07, - "terroir": 1.58e-07, - "tgi": 1.58e-07, - "thiessen": 1.58e-07, - "thresh": 1.58e-07, - "tika": 1.58e-07, - "timeframes": 1.58e-07, - "tinea": 1.58e-07, - "tirades": 1.58e-07, - "titicaca": 1.58e-07, - "tmg": 1.58e-07, - "toffees": 1.58e-07, - "tolo": 1.58e-07, - "topp": 1.58e-07, - "townie": 1.58e-07, - "toxoplasmosis": 1.58e-07, - "tradespeople": 1.58e-07, - "transboundary": 1.58e-07, - "transcranial": 1.58e-07, - "transpo": 1.58e-07, - "trd": 1.58e-07, - "treasurys": 1.58e-07, - "trickiest": 1.58e-07, - "tripper": 1.58e-07, - "trooping": 1.58e-07, - "truffaut": 1.58e-07, - "tubulin": 1.58e-07, - "tude": 1.58e-07, - "tuohy": 1.58e-07, - "tuscarora": 1.58e-07, - "tyner": 1.58e-07, - "uah": 1.58e-07, - "uhhhhh": 1.58e-07, - "uis": 1.58e-07, - "uncluttered": 1.58e-07, - "uncoated": 1.58e-07, - "underbrush": 1.58e-07, - "underestimation": 1.58e-07, - "uneaten": 1.58e-07, - "unhook": 1.58e-07, - "unjustifiably": 1.58e-07, - "unk": 1.58e-07, - "unravelled": 1.58e-07, - "unrighteous": 1.58e-07, - "unscented": 1.58e-07, - "upstarts": 1.58e-07, - "uptrend": 1.58e-07, - "urinalysis": 1.58e-07, - "usk": 1.58e-07, - "valerio": 1.58e-07, - "vandross": 1.58e-07, - "vasil": 1.58e-07, - "vaya": 1.58e-07, - "vec": 1.58e-07, - "veena": 1.58e-07, - "veronese": 1.58e-07, - "vidic": 1.58e-07, - "volatiles": 1.58e-07, - "vore": 1.58e-07, - "waker": 1.58e-07, - "waltzed": 1.58e-07, - "walz": 1.58e-07, - "warranting": 1.58e-07, - "waterslide": 1.58e-07, - "wbs": 6.17e-08, - "wein": 1.58e-07, - "werther": 1.58e-07, - "whiners": 1.58e-07, - "whitesides": 1.58e-07, - "wightman": 1.58e-07, - "winans": 1.58e-07, - "windus": 1.58e-07, - "wiretapped": 1.58e-07, - "withholds": 1.58e-07, - "wmv": 1.58e-07, - "woodblock": 1.58e-07, - "woodwards": 1.58e-07, - "wresting": 1.58e-07, - "writting": 1.58e-07, - "wts": 1.58e-07, - "wushu": 1.58e-07, - "wyckoff": 1.58e-07, - "xers": 1.58e-07, - "yag": 1.58e-07, - "yaks": 1.58e-07, - "yakubu": 1.58e-07, - "yedlin": 1.58e-07, - "yola": 1.58e-07, - "yorick": 1.58e-07, - "yoshio": 1.58e-07, - "yus": 6.31e-08, - "zambias": 1.58e-07, - "zaps": 1.58e-07, - "zeid": 1.58e-07, - "zoonotic": 1.58e-07, - "aalto": 1.55e-07, - "abella": 1.55e-07, - "abhorrence": 1.55e-07, - "ableism": 1.55e-07, - "abolishes": 1.55e-07, - "abracadabra": 1.55e-07, - "accelerations": 1.55e-07, - "accessorize": 1.55e-07, - "adulting": 1.55e-07, - "advantageously": 1.55e-07, - "aggregations": 1.55e-07, - "aguas": 1.55e-07, - "aik": 1.55e-07, - "akiyama": 1.55e-07, - "albertsons": 1.55e-07, - "alcoves": 1.55e-07, - "aldgate": 1.55e-07, - "alecs": 1.55e-07, - "alexandr": 1.55e-07, - "alighted": 1.55e-07, - "alpina": 1.55e-07, - "alshon": 1.55e-07, - "altidore": 1.55e-07, - "amida": 1.55e-07, - "ammi": 1.55e-07, - "analyser": 1.55e-07, - "anny": 1.55e-07, - "anodes": 1.55e-07, - "arabians": 1.55e-07, - "araneta": 1.55e-07, - "args": 1.55e-07, - "arkwright": 1.55e-07, - "asymmetrically": 1.55e-07, - "atkin": 1.55e-07, - "autoimmunity": 1.55e-07, - "axs": 1.55e-07, - "azo": 1.55e-07, - "babas": 1.55e-07, - "baber": 1.55e-07, - "babysat": 1.55e-07, - "badder": 1.55e-07, - "bairds": 1.55e-07, - "balaam": 1.55e-07, - "baling": 1.55e-07, - "balla": 1.55e-07, - "bamboos": 1.55e-07, - "bandanas": 1.55e-07, - "bannatyne": 1.55e-07, - "barite": 1.55e-07, - "barlows": 1.55e-07, - "baronial": 1.55e-07, - "barreto": 1.55e-07, - "bary": 1.55e-07, - "bcf": 1.55e-07, - "bdd": 1.55e-07, - "beakers": 1.55e-07, - "beasties": 1.55e-07, - "beauvais": 1.55e-07, - "bellucci": 1.55e-07, - "beneficent": 1.55e-07, - "benes": 1.55e-07, - "berbers": 1.55e-07, - "berisha": 1.55e-07, - "bernays": 1.55e-07, - "berns": 1.55e-07, - "besant": 1.55e-07, - "bialik": 1.55e-07, - "bickford": 1.55e-07, - "bielefeld": 1.55e-07, - "biffy": 1.55e-07, - "bila": 1.55e-07, - "bimini": 1.55e-07, - "blom": 1.55e-07, - "bloomsburg": 1.55e-07, - "bohun": 1.55e-07, - "bonin": 1.55e-07, - "bookable": 1.55e-07, - "boorman": 1.55e-07, - "bootleggers": 1.55e-07, - "borgo": 1.55e-07, - "bradlee": 1.55e-07, - "brannan": 1.55e-07, - "braunfels": 1.55e-07, - "breitling": 1.55e-07, - "bridgman": 1.55e-07, - "brigand": 1.55e-07, - "brion": 1.55e-07, - "bristly": 1.55e-07, - "broadleaf": 1.55e-07, - "brugge": 1.55e-07, - "bruns": 1.55e-07, - "brushy": 1.55e-07, - "bulaga": 1.55e-07, - "bullfight": 1.55e-07, - "burglarized": 1.55e-07, - "bursar": 1.55e-07, - "busk": 1.55e-07, - "bustier": 1.55e-07, - "bux": 1.55e-07, - "byob": 1.55e-07, - "byrds": 6.46e-08, - "caesium": 1.55e-07, - "cajole": 1.55e-07, - "cajoled": 1.55e-07, - "candela": 1.55e-07, - "capon": 1.55e-07, - "cardano": 1.55e-07, - "caribe": 1.55e-07, - "carmilla": 1.55e-07, - "carpaccio": 1.55e-07, - "carre": 1.55e-07, - "carvel": 1.55e-07, - "casale": 1.55e-07, - "cbre": 1.55e-07, - "cetacean": 1.55e-07, - "cezanne": 1.55e-07, - "cgl": 1.55e-07, - "champlin": 1.55e-07, - "chandos": 1.55e-07, - "chapbook": 1.55e-07, - "chapple": 1.55e-07, - "chatswood": 1.55e-07, - "chatterbox": 1.55e-07, - "chelan": 1.55e-07, - "chikungunya": 1.55e-07, - "chitosan": 1.55e-07, - "chromite": 1.55e-07, - "chuka": 1.55e-07, - "churlish": 1.55e-07, - "circumnavigation": 1.55e-07, - "clambering": 1.55e-07, - "clampdown": 1.55e-07, - "classs": 1.55e-07, - "cleburne": 1.55e-07, - "cmm": 1.55e-07, - "coady": 1.55e-07, - "coatbridge": 1.55e-07, - "coauthored": 1.55e-07, - "coddington": 1.55e-07, - "coexisted": 1.55e-07, - "coimbra": 1.55e-07, - "coir": 1.55e-07, - "colborne": 1.55e-07, - "collies": 1.55e-07, - "colloid": 1.55e-07, - "columella": 1.55e-07, - "comcasts": 1.55e-07, - "committeeman": 1.55e-07, - "compunction": 1.55e-07, - "comrie": 1.55e-07, - "confectionary": 1.55e-07, - "confounds": 1.55e-07, - "consol": 1.55e-07, - "contemporaneously": 1.55e-07, - "continuations": 1.55e-07, - "convulsive": 1.55e-07, - "corel": 1.55e-07, - "corelli": 1.55e-07, - "corina": 1.55e-07, - "coromandel": 1.55e-07, - "corre": 1.55e-07, - "corruptly": 1.55e-07, - "cosmodrome": 1.55e-07, - "cosmopolitanism": 1.55e-07, - "courgette": 1.55e-07, - "crestwood": 1.55e-07, - "crevasses": 1.55e-07, - "croaked": 1.55e-07, - "crosbie": 1.55e-07, - "crotty": 1.55e-07, - "cullinan": 1.55e-07, - "cultic": 1.55e-07, - "curcumin": 1.55e-07, - "cuticles": 1.55e-07, - "cwd": 1.55e-07, - "cyclically": 1.55e-07, - "cystitis": 1.55e-07, - "czechoslovakian": 1.55e-07, - "daimyo": 1.55e-07, - "daiwa": 1.55e-07, - "dake": 1.55e-07, - "dami": 1.55e-07, - "damocles": 1.55e-07, - "daniil": 1.55e-07, - "daschle": 1.55e-07, - "dbe": 1.55e-07, - "decelerating": 1.55e-07, - "decentralize": 1.55e-07, - "decima": 1.55e-07, - "decorates": 1.55e-07, - "defecating": 1.55e-07, - "degenerating": 1.55e-07, - "dementors": 1.55e-07, - "deplores": 1.55e-07, - "dewatering": 1.55e-07, - "dianes": 1.55e-07, - "diarist": 1.55e-07, - "digitisation": 1.55e-07, - "digne": 1.55e-07, - "dimitrios": 1.55e-07, - "directorates": 1.55e-07, - "disbelievers": 1.55e-07, - "discredits": 1.55e-07, - "dispensable": 1.55e-07, - "divinities": 1.55e-07, - "dmm": 1.55e-07, - "dockets": 1.55e-07, - "dodgson": 1.55e-07, - "dongfeng": 1.55e-07, - "dopant": 1.55e-07, - "doucet": 1.55e-07, - "doughboy": 1.55e-07, - "dramedy": 1.55e-07, - "dreamgirls": 1.55e-07, - "dreamscape": 1.55e-07, - "dropdown": 1.55e-07, - "drusilla": 1.55e-07, - "dtd": 1.55e-07, - "ducey": 1.55e-07, - "duisburg": 1.55e-07, - "dyfed": 1.55e-07, - "dysregulation": 1.55e-07, - "earthling": 1.55e-07, - "ede": 1.55e-07, - "eiko": 1.55e-07, - "ejections": 1.55e-07, - "elantra": 1.55e-07, - "elche": 1.55e-07, - "electrocardiogram": 1.55e-07, - "elgort": 1.55e-07, - "elwell": 1.55e-07, - "elysees": 1.55e-07, - "emb": 1.55e-07, - "embarcadero": 1.55e-07, - "embroider": 1.55e-07, - "emeryville": 1.55e-07, - "enchants": 1.55e-07, - "enjoin": 1.55e-07, - "enshrine": 1.55e-07, - "enunciated": 1.55e-07, - "envies": 1.55e-07, - "epigraph": 1.55e-07, - "epitope": 1.55e-07, - "eragon": 1.55e-07, - "erector": 1.55e-07, - "esco": 1.55e-07, - "essentialism": 1.55e-07, - "estero": 1.55e-07, - "estudios": 1.55e-07, - "euphemistically": 1.55e-07, - "evangelizing": 1.55e-07, - "eventualities": 1.55e-07, - "ews": 1.55e-07, - "exclamations": 1.55e-07, - "exigent": 1.55e-07, - "exim": 1.55e-07, - "expectantly": 1.55e-07, - "extractors": 1.55e-07, - "faas": 1.55e-07, - "faceplate": 1.55e-07, - "fahim": 1.55e-07, - "fanciest": 1.55e-07, - "farwell": 1.55e-07, - "faut": 1.55e-07, - "fgc": 1.55e-07, - "fiefs": 1.55e-07, - "figueres": 1.55e-07, - "fiori": 1.55e-07, - "fixin": 1.55e-07, - "flatware": 1.55e-07, - "florences": 1.55e-07, - "fluor": 1.55e-07, - "fluoxetine": 1.55e-07, - "footlights": 1.55e-07, - "forst": 1.55e-07, - "fortin": 1.55e-07, - "fpi": 1.55e-07, - "fredonia": 1.55e-07, - "freeride": 1.55e-07, - "freshened": 1.55e-07, - "frieden": 1.55e-07, - "froot": 1.55e-07, - "fsf": 1.55e-07, - "fso": 1.55e-07, - "functionalism": 1.55e-07, - "fwa": 1.55e-07, - "fws": 1.55e-07, - "gaborone": 1.55e-07, - "gaijin": 1.55e-07, - "gally": 1.55e-07, - "gamaliel": 1.55e-07, - "gameshow": 1.55e-07, - "gandhian": 1.55e-07, - "gandhiji": 1.55e-07, - "gangplank": 1.55e-07, - "garg": 1.55e-07, - "garo": 1.55e-07, - "garratt": 1.55e-07, - "gascon": 1.55e-07, - "gazpacho": 1.55e-07, - "geass": 1.55e-07, - "gell": 1.55e-07, - "gerards": 1.55e-07, - "gilder": 1.55e-07, - "gim": 1.55e-07, - "giudice": 1.55e-07, - "gleaner": 1.55e-07, - "glimmers": 1.55e-07, - "gni": 1.55e-07, - "gnrh": 1.55e-07, - "goofs": 1.55e-07, - "gothams": 1.55e-07, - "goulash": 1.55e-07, - "gozo": 1.55e-07, - "gracchus": 1.55e-07, - "grameen": 1.55e-07, - "grimaced": 1.55e-07, - "grom": 1.55e-07, - "guernica": 1.55e-07, - "gumby": 1.55e-07, - "gusta": 1.55e-07, - "habibi": 1.55e-07, - "hackles": 1.55e-07, - "haddington": 1.55e-07, - "hahaa": 1.55e-07, - "halleck": 1.55e-07, - "hallucinogen": 1.55e-07, - "hammel": 1.55e-07, - "handmaid": 1.55e-07, - "hannas": 1.55e-07, - "harbingers": 1.55e-07, - "hardstyle": 1.55e-07, - "haren": 1.55e-07, - "harken": 1.55e-07, - "harlingen": 1.55e-07, - "harmonium": 1.55e-07, - "hawt": 1.55e-07, - "hayato": 1.55e-07, - "hearin": 1.55e-07, - "hectors": 1.55e-07, - "hedrick": 1.55e-07, - "helensburgh": 1.55e-07, - "helge": 1.55e-07, - "helmsley": 1.55e-07, - "hemet": 1.55e-07, - "hendersonville": 1.55e-07, - "hermanos": 1.55e-07, - "hesitations": 1.55e-07, - "hiatt": 1.55e-07, - "hildreth": 1.55e-07, - "hiromi": 1.55e-07, - "hirsh": 1.55e-07, - "hoedown": 1.55e-07, - "hoge": 1.55e-07, - "homeboys": 1.55e-07, - "homesteaders": 1.55e-07, - "hoofs": 1.55e-07, - "hopwood": 1.55e-07, - "horney": 1.55e-07, - "hothead": 1.55e-07, - "huai": 1.55e-07, - "huffpo": 1.55e-07, - "humblest": 1.55e-07, - "huntsmen": 1.55e-07, - "husserl": 1.55e-07, - "hydrocortisone": 1.55e-07, - "ibi": 1.55e-07, - "icke": 1.55e-07, - "iic": 1.55e-07, - "iida": 1.55e-07, - "illmatic": 1.55e-07, - "immunosuppression": 1.55e-07, - "impermanent": 1.55e-07, - "impulsiveness": 1.55e-07, - "incommunicado": 1.55e-07, - "indic": 1.55e-07, - "indiscipline": 1.55e-07, - "industria": 1.55e-07, - "inflexibility": 1.55e-07, - "inflorescences": 1.55e-07, - "innervation": 1.55e-07, - "inpatients": 1.55e-07, - "inscribe": 1.55e-07, - "insead": 1.55e-07, - "insomuch": 1.55e-07, - "interchanged": 1.55e-07, - "internalised": 1.55e-07, - "intraoperative": 1.55e-07, - "invalids": 1.55e-07, - "ione": 1.55e-07, - "ishq": 1.55e-07, - "isk": 1.55e-07, - "ison": 1.55e-07, - "itasca": 1.55e-07, - "ity": 1.55e-07, - "jellicoe": 1.55e-07, - "jenifer": 1.55e-07, - "jerkin": 1.55e-07, - "jeux": 1.55e-07, - "jilin": 1.55e-07, - "jintao": 1.55e-07, - "jolting": 1.55e-07, - "jours": 1.55e-07, - "jovian": 1.55e-07, - "juggles": 1.55e-07, - "juns": 1.55e-07, - "junhui": 1.55e-07, - "junks": 1.55e-07, - "juvenal": 1.55e-07, - "kahneman": 1.55e-07, - "kalmar": 1.55e-07, - "kanta": 1.55e-07, - "kapp": 1.55e-07, - "kasem": 1.55e-07, - "kaunas": 1.55e-07, - "kedah": 1.55e-07, - "kelantan": 1.55e-07, - "keng": 1.55e-07, - "keough": 1.55e-07, - "kesh": 1.55e-07, - "khai": 1.55e-07, - "khoo": 1.55e-07, - "kimba": 1.55e-07, - "kinsley": 1.55e-07, - "kirti": 1.55e-07, - "kiryu": 1.55e-07, - "kitano": 1.55e-07, - "kiya": 1.55e-07, - "knifing": 1.55e-07, - "knorr": 1.55e-07, - "koya": 1.55e-07, - "kropotkin": 1.55e-07, - "krsna": 1.55e-07, - "kuba": 1.55e-07, - "kutch": 1.55e-07, - "lado": 1.55e-07, - "lahaina": 1.55e-07, - "laras": 1.55e-07, - "largs": 1.55e-07, - "laters": 1.55e-07, - "lebeau": 1.55e-07, - "leghorn": 1.55e-07, - "lehi": 1.55e-07, - "lengthens": 1.55e-07, - "letterkenny": 1.55e-07, - "levey": 1.55e-07, - "libreoffice": 1.55e-07, - "lieder": 1.55e-07, - "lightnings": 1.15e-07, - "liguria": 1.55e-07, - "lindisfarne": 1.55e-07, - "literals": 1.55e-07, - "lithuanias": 1.55e-07, - "lockbox": 1.55e-07, - "locomotor": 1.55e-07, - "loincloth": 1.55e-07, - "lomb": 1.55e-07, - "lonestar": 1.55e-07, - "looooong": 1.55e-07, - "lopped": 1.55e-07, - "louies": 1.55e-07, - "loverboy": 1.55e-07, - "lowbrow": 1.55e-07, - "lowenthal": 1.55e-07, - "luckless": 1.55e-07, - "lujan": 1.55e-07, - "lulus": 1.55e-07, - "macha": 1.55e-07, - "machel": 1.55e-07, - "macht": 1.55e-07, - "mackinaw": 1.55e-07, - "macmahon": 1.55e-07, - "madina": 1.55e-07, - "mafic": 1.55e-07, - "magisterium": 1.55e-07, - "magni": 1.55e-07, - "majin": 1.55e-07, - "makepeace": 1.55e-07, - "malika": 1.55e-07, - "mallards": 1.55e-07, - "malleability": 1.55e-07, - "malus": 1.55e-07, - "mamo": 1.55e-07, - "manaforts": 1.55e-07, - "mandingo": 1.55e-07, - "manfredi": 1.55e-07, - "marcell": 1.55e-07, - "marchesa": 1.55e-07, - "marginalisation": 1.55e-07, - "marionettes": 1.55e-07, - "mariska": 1.55e-07, - "marrone": 1.55e-07, - "martinezs": 1.55e-07, - "masquerades": 1.55e-07, - "massillon": 1.55e-07, - "matchstick": 1.55e-07, - "mbb": 1.55e-07, - "mcclung": 1.55e-07, - "mcentire": 1.55e-07, - "mdi": 1.55e-07, - "mediatek": 1.55e-07, - "meese": 1.55e-07, - "membranous": 1.55e-07, - "menses": 1.55e-07, - "mesenteric": 1.55e-07, - "mesoderm": 1.55e-07, - "miggy": 1.55e-07, - "milken": 1.55e-07, - "millwork": 1.55e-07, - "mimetic": 1.55e-07, - "minoru": 1.55e-07, - "mirabeau": 1.55e-07, - "misjudge": 1.55e-07, - "mnemonics": 1.55e-07, - "molde": 1.55e-07, - "moncrieff": 1.55e-07, - "mondeo": 1.55e-07, - "monets": 1.55e-07, - "monseigneur": 1.55e-07, - "mooning": 1.55e-07, - "moraines": 1.55e-07, - "msv": 1.55e-07, - "mudge": 1.55e-07, - "mullingar": 1.55e-07, - "munched": 1.55e-07, - "mundus": 1.55e-07, - "musgraves": 1.55e-07, - "mussolinis": 1.55e-07, - "myopathy": 1.55e-07, - "nampa": 1.55e-07, - "narrowness": 1.55e-07, - "nascimento": 1.55e-07, - "ncbi": 1.55e-07, - "nce": 1.55e-07, - "ndf": 1.55e-07, - "ndis": 1.55e-07, - "neatness": 1.55e-07, - "nena": 1.55e-07, - "neros": 1.55e-07, - "newberg": 1.55e-07, - "newegg": 1.55e-07, - "nicolae": 1.55e-07, - "nielsens": 1.55e-07, - "niemeyer": 1.55e-07, - "nihil": 1.55e-07, - "niigata": 1.55e-07, - "niobe": 1.55e-07, - "nirmala": 1.55e-07, - "nma": 1.55e-07, - "noels": 1.55e-07, - "noisier": 1.55e-07, - "normalising": 1.55e-07, - "nosh": 1.55e-07, - "novy": 1.55e-07, - "nras": 1.55e-07, - "nrm": 1.55e-07, - "nrp": 1.55e-07, - "nucky": 1.55e-07, - "nutley": 1.55e-07, - "oac": 1.55e-07, - "obelisks": 1.55e-07, - "obfuscated": 1.55e-07, - "oif": 1.55e-07, - "okayama": 1.55e-07, - "okoye": 1.55e-07, - "oleic": 1.55e-07, - "ols": 1.55e-07, - "omid": 1.55e-07, - "operand": 1.55e-07, - "oporto": 1.55e-07, - "opr": 1.55e-07, - "oscillatory": 1.55e-07, - "overbooked": 1.55e-07, - "overcompensate": 1.55e-07, - "paignton": 1.55e-07, - "panellist": 1.55e-07, - "papered": 1.55e-07, - "paracord": 1.55e-07, - "parang": 1.55e-07, - "pardee": 1.55e-07, - "paroles": 1.55e-07, - "participations": 1.55e-07, - "patagonian": 1.55e-07, - "patroness": 1.55e-07, - "pcf": 1.55e-07, - "peart": 1.55e-07, - "pedalling": 1.55e-07, - "peephole": 1.55e-07, - "pek": 1.55e-07, - "penalizes": 1.55e-07, - "peretz": 1.55e-07, - "petrova": 1.55e-07, - "petula": 1.55e-07, - "phospholipid": 1.55e-07, - "photogrammetry": 1.55e-07, - "pigtail": 1.55e-07, - "pimpin": 1.55e-07, - "pisco": 1.55e-07, - "piu": 1.55e-07, - "pleat": 1.55e-07, - "pmd": 1.55e-07, - "pns": 1.55e-07, - "pock": 1.55e-07, - "podcasters": 1.55e-07, - "podiatry": 1.55e-07, - "pokhara": 1.55e-07, - "policys": 1.55e-07, - "pollak": 1.55e-07, - "polytheistic": 1.55e-07, - "portes": 1.55e-07, - "postmodernist": 1.55e-07, - "potentiality": 1.55e-07, - "powerup": 1.55e-07, - "prato": 1.55e-07, - "presage": 1.55e-07, - "prinz": 1.55e-07, - "projectionist": 1.55e-07, - "projet": 1.55e-07, - "proscenium": 1.55e-07, - "pseudoephedrine": 1.55e-07, - "pukes": 1.55e-07, - "pulver": 1.55e-07, - "pursing": 1.55e-07, - "putrajaya": 1.55e-07, - "puzzlement": 1.55e-07, - "quien": 1.55e-07, - "quinones": 1.55e-07, - "quirke": 1.55e-07, - "ramzi": 1.55e-07, - "randell": 1.55e-07, - "ratchets": 1.55e-07, - "rathore": 1.55e-07, - "raver": 1.55e-07, - "ravings": 1.55e-07, - "recitative": 1.55e-07, - "reconstructs": 1.55e-07, - "rectus": 1.55e-07, - "reevaluated": 1.55e-07, - "refitting": 1.55e-07, - "reformat": 1.55e-07, - "rehabbing": 1.55e-07, - "rehashing": 1.55e-07, - "reichenbach": 1.55e-07, - "repents": 1.55e-07, - "repressor": 1.55e-07, - "repub": 1.55e-07, - "resorption": 1.55e-07, - "retested": 1.55e-07, - "retouch": 1.55e-07, - "retroviruses": 1.55e-07, - "revellers": 1.55e-07, - "righ": 1.55e-07, - "riverbanks": 1.55e-07, - "riya": 1.55e-07, - "romanticizing": 1.55e-07, - "rookery": 1.55e-07, - "roomate": 1.55e-07, - "rootstock": 1.55e-07, - "rostral": 1.55e-07, - "rotatable": 1.55e-07, - "rtw": 1.55e-07, - "ruta": 1.55e-07, - "rutile": 1.55e-07, - "ryota": 1.55e-07, - "saakashvili": 1.55e-07, - "sabr": 1.55e-07, - "sachi": 1.55e-07, - "sadhana": 1.55e-07, - "salesmanship": 1.55e-07, - "salish": 1.55e-07, - "samajwadi": 1.55e-07, - "samanthas": 1.55e-07, - "samia": 1.55e-07, - "samsons": 1.55e-07, - "sanctus": 1.55e-07, - "sandersons": 1.55e-07, - "sandton": 1.55e-07, - "sarmiento": 1.55e-07, - "scampering": 1.55e-07, - "schrute": 1.55e-07, - "scioto": 1.55e-07, - "scooting": 1.55e-07, - "scrounging": 1.55e-07, - "scv": 1.55e-07, - "sedalia": 1.55e-07, - "sedaris": 1.55e-07, - "sehwag": 1.55e-07, - "selva": 1.55e-07, - "senora": 1.55e-07, - "serio": 1.55e-07, - "servos": 1.55e-07, - "sewall": 1.55e-07, - "sexualization": 1.55e-07, - "sey": 1.55e-07, - "sfu": 1.55e-07, - "sgr": 1.55e-07, - "shallowness": 1.55e-07, - "sharecroppers": 1.55e-07, - "shayla": 1.55e-07, - "sheedy": 1.55e-07, - "sheffields": 1.55e-07, - "shikoku": 1.55e-07, - "shiller": 1.55e-07, - "shingo": 1.55e-07, - "shinier": 1.55e-07, - "shir": 1.55e-07, - "shittier": 1.55e-07, - "showgrounds": 1.55e-07, - "sidmouth": 1.55e-07, - "sightedness": 1.55e-07, - "signore": 1.55e-07, - "silberman": 1.55e-07, - "simla": 1.55e-07, - "sisal": 1.55e-07, - "slavish": 1.55e-07, - "sloshed": 1.55e-07, - "slowdowns": 1.55e-07, - "smee": 1.55e-07, - "snapback": 1.55e-07, - "snippy": 1.55e-07, - "soberly": 1.55e-07, - "socceroos": 1.55e-07, - "somersaults": 1.55e-07, - "sonali": 1.55e-07, - "sonnys": 1.55e-07, - "sood": 1.55e-07, - "spader": 1.55e-07, - "spitsbergen": 1.55e-07, - "splenda": 1.55e-07, - "sprayers": 1.55e-07, - "staci": 1.55e-07, - "stepchild": 1.55e-07, - "stodgy": 1.55e-07, - "strabane": 1.55e-07, - "stretford": 1.55e-07, - "subsidising": 1.55e-07, - "subsidizes": 1.55e-07, - "subtractive": 1.55e-07, - "suckin": 1.55e-07, - "sveta": 1.55e-07, - "swaddle": 1.55e-07, - "swathed": 1.55e-07, - "sweeting": 1.55e-07, - "swingman": 1.55e-07, - "sympathizes": 1.55e-07, - "syndicalist": 1.55e-07, - "tabriz": 1.55e-07, - "taels": 1.55e-07, - "tanglewood": 1.55e-07, - "tapeworms": 1.55e-07, - "targetted": 1.55e-07, - "tatty": 1.55e-07, - "tcas": 1.55e-07, - "teamster": 1.55e-07, - "technicals": 1.55e-07, - "tejada": 1.55e-07, - "televisa": 1.55e-07, - "tena": 1.55e-07, - "tenaciously": 1.55e-07, - "tengu": 1.55e-07, - "tenon": 1.55e-07, - "tewksbury": 1.55e-07, - "thacher": 1.55e-07, - "thame": 1.55e-07, - "thaws": 1.55e-07, - "thq": 1.55e-07, - "thrifting": 1.55e-07, - "tilde": 1.55e-07, - "timpani": 1.55e-07, - "toastmasters": 1.55e-07, - "touchscreens": 1.55e-07, - "townsends": 1.55e-07, - "tplf": 1.55e-07, - "tpr": 1.55e-07, - "tracksuits": 1.55e-07, - "transmute": 1.55e-07, - "tricycles": 1.55e-07, - "trou": 1.55e-07, - "trumans": 1.55e-07, - "trumpeted": 1.55e-07, - "trussed": 1.55e-07, - "tubercle": 1.55e-07, - "tuberous": 1.55e-07, - "turbot": 1.55e-07, - "tutt": 1.55e-07, - "twirled": 1.55e-07, - "twosome": 1.55e-07, - "ultrathin": 1.55e-07, - "unamerican": 1.55e-07, - "uncultivated": 1.55e-07, - "underachieving": 1.55e-07, - "underarms": 1.55e-07, - "underreported": 1.55e-07, - "undescribed": 1.55e-07, - "unfortunates": 1.55e-07, - "unfreeze": 1.55e-07, - "unfriended": 1.55e-07, - "unido": 1.55e-07, - "univariate": 1.55e-07, - "unsworth": 1.55e-07, - "upd": 1.55e-07, - "upr": 1.55e-07, - "utp": 1.55e-07, - "uvf": 1.55e-07, - "uwa": 1.55e-07, - "valar": 1.55e-07, - "valente": 1.55e-07, - "valla": 1.55e-07, - "valueless": 1.55e-07, - "vandalize": 1.55e-07, - "vanier": 1.55e-07, - "vasopressin": 1.55e-07, - "vegetated": 1.55e-07, - "vika": 1.55e-07, - "villette": 1.55e-07, - "vodkas": 1.55e-07, - "volterra": 1.55e-07, - "wabc": 1.55e-07, - "warmongers": 1.55e-07, - "wasa": 1.55e-07, - "watney": 1.55e-07, - "weiners": 5.37e-08, - "weinstock": 1.55e-07, - "welshpool": 1.55e-07, - "wendover": 1.55e-07, - "weyland": 1.55e-07, - "whiles": 1.55e-07, - "whitened": 1.55e-07, - "widodo": 1.55e-07, - "widowmaker": 1.55e-07, - "wildling": 1.55e-07, - "wolfowitz": 1.55e-07, - "wonderfull": 1.55e-07, - "woodshed": 1.55e-07, - "woodworkers": 1.55e-07, - "woonsocket": 1.55e-07, - "workmanlike": 1.55e-07, - "worthlessness": 1.55e-07, - "wotan": 1.55e-07, - "woy": 1.55e-07, - "wq": 1.55e-07, - "wyllie": 1.55e-07, - "xbl": 1.55e-07, - "yagami": 1.55e-07, - "youporn": 1.55e-07, - "yuichi": 1.55e-07, - "zambrano": 1.55e-07, - "zao": 1.55e-07, - "zapper": 1.55e-07, - "zarqawi": 1.55e-07, - "zea": 1.55e-07, - "zelaya": 1.55e-07, - "zerg": 1.55e-07, - "ziff": 1.55e-07, - "zijn": 1.55e-07, - "zink": 1.55e-07, - "zobrist": 1.55e-07, - "zouma": 1.55e-07, - "zverev": 1.55e-07, - "abdur": 1.51e-07, - "acceptors": 1.51e-07, - "acetaldehyde": 1.51e-07, - "actualized": 1.51e-07, - "adachi": 1.51e-07, - "adaptors": 1.51e-07, - "adjoined": 1.51e-07, - "agholor": 1.51e-07, - "ahca": 1.51e-07, - "ahistorical": 1.51e-07, - "aiello": 1.51e-07, - "aizawa": 1.51e-07, - "akihabara": 1.51e-07, - "alaina": 1.51e-07, - "alcide": 1.51e-07, - "alliterative": 1.51e-07, - "alll": 1.51e-07, - "alonsos": 1.51e-07, - "altamira": 1.51e-07, - "amityville": 1.51e-07, - "anaya": 1.51e-07, - "annemarie": 1.51e-07, - "anodyne": 1.51e-07, - "anthro": 1.51e-07, - "apologetically": 1.51e-07, - "appian": 1.51e-07, - "appy": 1.51e-07, - "arapaho": 1.51e-07, - "araujo": 1.51e-07, - "arcata": 1.51e-07, - "arica": 1.51e-07, - "armless": 1.51e-07, - "arra": 1.51e-07, - "artesia": 1.51e-07, - "arthroplasty": 1.51e-07, - "articulations": 1.51e-07, - "assignee": 1.51e-07, - "assis": 1.51e-07, - "astounds": 1.51e-07, - "atma": 1.51e-07, - "auxin": 1.51e-07, - "avb": 1.51e-07, - "avoca": 1.51e-07, - "baar": 1.51e-07, - "babadook": 1.51e-07, - "backspace": 1.51e-07, - "bacteriophage": 1.51e-07, - "baga": 1.51e-07, - "baie": 1.51e-07, - "baile": 1.51e-07, - "bakunin": 1.51e-07, - "balakrishnan": 1.51e-07, - "banditry": 1.51e-07, - "barbaro": 1.51e-07, - "bartz": 1.51e-07, - "bbt": 1.51e-07, - "bdnf": 1.51e-07, - "beamish": 1.51e-07, - "bearcat": 1.51e-07, - "beatbox": 1.51e-07, - "beatboxing": 1.51e-07, - "behooves": 1.51e-07, - "beiber": 1.51e-07, - "belford": 1.51e-07, - "benighted": 1.51e-07, - "bettors": 1.51e-07, - "bij": 1.51e-07, - "billeted": 1.51e-07, - "bivalve": 1.51e-07, - "blagojevich": 1.51e-07, - "blairite": 1.51e-07, - "blevins": 1.51e-07, - "bluebeard": 1.51e-07, - "bluejays": 1.51e-07, - "bluest": 1.51e-07, - "bnt": 1.51e-07, - "boatmen": 1.51e-07, - "boeuf": 1.51e-07, - "bohannon": 1.51e-07, - "bomberman": 1.51e-07, - "bottega": 1.51e-07, - "boxster": 1.51e-07, - "brawlers": 1.51e-07, - "braying": 1.51e-07, - "breakpoints": 1.51e-07, - "brewhouse": 1.51e-07, - "brigantine": 1.51e-07, - "brockway": 1.51e-07, - "brod": 1.51e-07, - "bromsgrove": 1.51e-07, - "bryon": 1.51e-07, - "bude": 1.51e-07, - "bugbear": 1.51e-07, - "bunton": 1.51e-07, - "burd": 1.51e-07, - "burdon": 1.51e-07, - "buttonhole": 1.51e-07, - "bvi": 1.51e-07, - "cadherin": 1.51e-07, - "caird": 1.51e-07, - "caking": 1.51e-07, - "caltex": 1.51e-07, - "caned": 1.51e-07, - "canova": 1.51e-07, - "canvassers": 1.51e-07, - "caramelised": 1.51e-07, - "carlene": 1.51e-07, - "carpentier": 1.51e-07, - "cartooning": 1.51e-07, - "casablancas": 1.51e-07, - "casca": 1.51e-07, - "casella": 1.51e-07, - "cauldrons": 1.51e-07, - "cerebrum": 1.51e-07, - "certifiable": 1.51e-07, - "ceu": 1.51e-07, - "chawla": 1.51e-07, - "cheapen": 1.51e-07, - "cheesed": 1.51e-07, - "chide": 1.51e-07, - "childishly": 1.51e-07, - "chillax": 1.51e-07, - "chinn": 1.51e-07, - "christof": 1.51e-07, - "chrom": 1.51e-07, - "churro": 1.51e-07, - "cinemax": 1.51e-07, - "cinna": 1.51e-07, - "citadels": 1.51e-07, - "classism": 1.51e-07, - "cleves": 1.51e-07, - "cliffords": 1.51e-07, - "clk": 1.51e-07, - "cloven": 1.51e-07, - "clownfish": 1.51e-07, - "cobbs": 1.51e-07, - "codons": 1.51e-07, - "coffer": 1.51e-07, - "collectivity": 1.51e-07, - "collyer": 1.51e-07, - "comandante": 1.51e-07, - "commissars": 1.51e-07, - "communally": 1.51e-07, - "condescendingly": 1.51e-07, - "confectioners": 5.13e-08, - "congealed": 1.51e-07, - "conran": 1.51e-07, - "contravening": 1.51e-07, - "contrive": 1.51e-07, - "coombe": 1.51e-07, - "copulate": 1.51e-07, - "cornfields": 1.51e-07, - "corsage": 1.51e-07, - "cosmetically": 1.51e-07, - "cosplays": 1.51e-07, - "costellos": 1.51e-07, - "counterexample": 1.51e-07, - "cpf": 1.51e-07, - "crated": 1.51e-07, - "creepily": 1.51e-07, - "croaking": 1.51e-07, - "croatians": 1.51e-07, - "cronus": 1.51e-07, - "cruciform": 1.51e-07, - "cruse": 1.51e-07, - "crutcher": 1.51e-07, - "cushings": 1.51e-07, - "cuthbertson": 1.51e-07, - "dadi": 1.51e-07, - "dahomey": 1.51e-07, - "daimon": 1.51e-07, - "daltrey": 1.51e-07, - "datasheet": 1.51e-07, - "dats": 7.94e-08, - "deadlifts": 1.51e-07, - "debenture": 1.51e-07, - "decadal": 1.51e-07, - "decamp": 1.51e-07, - "decoders": 1.51e-07, - "decommission": 1.51e-07, - "deedee": 1.51e-07, - "deeside": 1.51e-07, - "deformable": 1.51e-07, - "delaunay": 1.51e-07, - "delco": 1.51e-07, - "demagoguery": 1.51e-07, - "deni": 1.51e-07, - "depay": 1.51e-07, - "devan": 1.51e-07, - "develope": 1.51e-07, - "devendra": 1.51e-07, - "dfo": 1.51e-07, - "dhar": 1.51e-07, - "dhu": 1.51e-07, - "diatomaceous": 1.51e-07, - "dickensian": 1.51e-07, - "dini": 1.51e-07, - "dinkins": 1.51e-07, - "dippers": 1.51e-07, - "discolor": 1.51e-07, - "discontents": 1.51e-07, - "disdained": 1.51e-07, - "disproves": 1.51e-07, - "dissections": 1.51e-07, - "dmi": 1.51e-07, - "dobrev": 1.51e-07, - "dohc": 1.51e-07, - "doit": 1.51e-07, - "dollies": 1.51e-07, - "dorota": 1.51e-07, - "doulton": 1.51e-07, - "downtrend": 1.51e-07, - "dres": 8.51e-08, - "drl": 1.51e-07, - "drools": 1.51e-07, - "drubbing": 1.51e-07, - "duchies": 1.51e-07, - "dumbstruck": 1.51e-07, - "dumper": 1.51e-07, - "dupre": 1.51e-07, - "dut": 1.51e-07, - "earwax": 1.51e-07, - "eastham": 1.51e-07, - "ebr": 1.51e-07, - "ecce": 1.51e-07, - "eclair": 1.51e-07, - "egr": 1.51e-07, - "ehrenberg": 1.51e-07, - "eightfold": 1.51e-07, - "elden": 1.51e-07, - "emanation": 1.51e-07, - "embarrassments": 1.51e-07, - "embryogenesis": 1.51e-07, - "emm": 1.51e-07, - "encumbrance": 1.51e-07, - "energise": 1.51e-07, - "engelmann": 1.51e-07, - "ensuite": 1.51e-07, - "ente": 1.51e-07, - "epically": 1.51e-07, - "equalisation": 1.51e-07, - "erlangen": 1.51e-07, - "esri": 1.51e-07, - "esthetics": 1.51e-07, - "etruscans": 1.51e-07, - "euphonium": 1.51e-07, - "evangelista": 1.51e-07, - "existences": 1.51e-07, - "fatma": 1.51e-07, - "fawns": 1.51e-07, - "fbc": 1.51e-07, - "felted": 1.51e-07, - "fenchurch": 1.51e-07, - "ferdinando": 1.51e-07, - "fived": 1.51e-07, - "flournoy": 1.51e-07, - "flouted": 1.51e-07, - "forklifts": 1.51e-07, - "fowls": 1.51e-07, - "freightliner": 1.51e-07, - "freinds": 1.51e-07, - "frg": 1.51e-07, - "frisked": 1.51e-07, - "fsg": 1.51e-07, - "fudged": 1.51e-07, - "func": 1.51e-07, - "gaffigan": 1.51e-07, - "gallacher": 1.51e-07, - "gangly": 1.51e-07, - "garrix": 1.51e-07, - "gavan": 1.51e-07, - "gcu": 1.51e-07, - "genentech": 1.51e-07, - "gerri": 1.51e-07, - "gertrud": 1.51e-07, - "geum": 1.51e-07, - "gfx": 1.51e-07, - "gianfranco": 1.51e-07, - "gigawatts": 1.51e-07, - "gilani": 1.51e-07, - "girling": 1.51e-07, - "gladiolus": 1.51e-07, - "gleaning": 1.51e-07, - "glovers": 5.62e-08, - "gnd": 1.51e-07, - "godley": 1.51e-07, - "gogglebox": 1.51e-07, - "gonorrhoea": 1.51e-07, - "goren": 1.51e-07, - "gotze": 1.51e-07, - "grabby": 1.51e-07, - "grandee": 1.51e-07, - "grassi": 1.51e-07, - "grete": 1.51e-07, - "gridley": 1.51e-07, - "grm": 1.51e-07, - "groening": 1.51e-07, - "gue": 1.51e-07, - "guerlain": 1.51e-07, - "gunfights": 1.51e-07, - "gurdwara": 1.51e-07, - "guruji": 1.51e-07, - "gwadar": 1.51e-07, - "hairpins": 1.51e-07, - "harewood": 1.51e-07, - "harlots": 1.51e-07, - "harrold": 1.51e-07, - "haruna": 1.51e-07, - "hashemi": 1.51e-07, - "hassans": 1.51e-07, - "hathor": 1.51e-07, - "hati": 1.51e-07, - "haugen": 1.51e-07, - "hemorrhages": 1.51e-07, - "henryk": 1.51e-07, - "herculaneum": 1.51e-07, - "heritages": 1.51e-07, - "hermeneutic": 1.51e-07, - "hideyoshi": 1.51e-07, - "highpoint": 1.51e-07, - "hijacks": 1.51e-07, - "hinman": 1.51e-07, - "hirano": 1.51e-07, - "hitchhike": 1.51e-07, - "hoddle": 1.51e-07, - "hoffer": 1.51e-07, - "hollinger": 1.51e-07, - "holodomor": 1.51e-07, - "homotopy": 1.51e-07, - "hoovering": 1.51e-07, - "hopin": 1.51e-07, - "hormuz": 1.51e-07, - "hosking": 1.51e-07, - "hotcakes": 1.51e-07, - "houma": 1.51e-07, - "hspa": 1.51e-07, - "htp": 1.51e-07, - "huggers": 1.51e-07, - "humph": 1.51e-07, - "hyslop": 1.51e-07, - "iarc": 1.51e-07, - "icbc": 1.51e-07, - "igniter": 1.51e-07, - "improbability": 1.51e-07, - "imtiaz": 1.51e-07, - "inactivate": 1.51e-07, - "indecisiveness": 1.51e-07, - "indwelling": 1.51e-07, - "ingame": 1.51e-07, - "initiations": 1.51e-07, - "inj": 1.51e-07, - "inspo": 1.51e-07, - "instagrams": 1.26e-07, - "intercooler": 1.51e-07, - "intercostal": 1.51e-07, - "interjections": 1.51e-07, - "interscholastic": 1.51e-07, - "intestate": 1.51e-07, - "intravascular": 1.51e-07, - "intron": 1.51e-07, - "iquitos": 1.51e-07, - "ird": 1.51e-07, - "iteratively": 1.51e-07, - "jacobites": 1.51e-07, - "jacquelyn": 1.51e-07, - "jaspers": 1.12e-07, - "jerker": 1.51e-07, - "jernigan": 1.51e-07, - "jetlag": 1.51e-07, - "jewelery": 1.51e-07, - "jingoism": 1.51e-07, - "jingoistic": 1.51e-07, - "junge": 1.51e-07, - "kagome": 1.51e-07, - "kahuna": 1.51e-07, - "kairos": 1.51e-07, - "kasai": 1.51e-07, - "kaushal": 1.51e-07, - "kazakhs": 1.51e-07, - "kazi": 1.51e-07, - "kbc": 1.51e-07, - "keenness": 1.51e-07, - "kennet": 1.51e-07, - "kennewick": 1.51e-07, - "khattab": 1.51e-07, - "kimonos": 1.51e-07, - "kingsville": 1.51e-07, - "kirito": 1.51e-07, - "klonopin": 1.51e-07, - "klopps": 1.51e-07, - "knucklehead": 1.51e-07, - "koma": 1.51e-07, - "korda": 1.51e-07, - "korps": 1.51e-07, - "kossuth": 1.51e-07, - "kranz": 1.51e-07, - "kravis": 1.51e-07, - "kura": 1.51e-07, - "kuzma": 1.51e-07, - "lancia": 1.51e-07, - "landward": 1.51e-07, - "lansky": 1.51e-07, - "laparoscopy": 1.51e-07, - "lasker": 1.51e-07, - "lawford": 1.51e-07, - "leveon": 1.51e-07, - "lede": 1.51e-07, - "ledoux": 1.51e-07, - "leftward": 1.51e-07, - "legalising": 1.51e-07, - "legionnaire": 1.51e-07, - "leishmaniasis": 1.51e-07, - "lennard": 1.51e-07, - "leonardos": 1.51e-07, - "leotards": 1.51e-07, - "lepore": 1.51e-07, - "leur": 1.51e-07, - "levesque": 1.51e-07, - "lief": 1.51e-07, - "liggett": 1.51e-07, - "lindemann": 1.51e-07, - "linguine": 1.51e-07, - "liquefy": 1.51e-07, - "lmaoooo": 1.51e-07, - "localizing": 1.51e-07, - "loic": 1.51e-07, - "lookbook": 1.51e-07, - "loompa": 1.51e-07, - "loona": 1.51e-07, - "lovelorn": 1.51e-07, - "lucks": 8.71e-08, - "lumbered": 1.51e-07, - "lydias": 1.51e-07, - "macbooks": 1.51e-07, - "mackenzies": 1.51e-07, - "maharishi": 1.51e-07, - "majeed": 1.51e-07, - "makarova": 1.51e-07, - "malena": 1.51e-07, - "malvinas": 1.51e-07, - "mamiya": 1.51e-07, - "manion": 1.51e-07, - "markie": 1.51e-07, - "mcgurk": 1.51e-07, - "mcleish": 1.51e-07, - "mco": 1.51e-07, - "mechatronics": 1.51e-07, - "medullary": 1.51e-07, - "melds": 1.51e-07, - "mendicant": 1.51e-07, - "mendota": 1.51e-07, - "merengue": 1.51e-07, - "microenvironment": 1.51e-07, - "microglia": 1.51e-07, - "milepost": 1.51e-07, - "milliliters": 1.51e-07, - "minori": 1.51e-07, - "miscarry": 1.51e-07, - "mischievously": 1.51e-07, - "misperceptions": 1.51e-07, - "misrata": 1.51e-07, - "molitor": 1.51e-07, - "monetarily": 1.51e-07, - "moneylenders": 1.51e-07, - "mongrels": 1.51e-07, - "monopolizing": 1.51e-07, - "mooresville": 1.51e-07, - "moralist": 1.51e-07, - "morneau": 1.51e-07, - "mosey": 1.51e-07, - "mousa": 1.51e-07, - "mowat": 1.51e-07, - "moxon": 1.51e-07, - "mrf": 1.51e-07, - "msh": 1.51e-07, - "muffs": 1.51e-07, - "mugabes": 1.51e-07, - "mugen": 1.51e-07, - "mulk": 1.51e-07, - "multistage": 1.51e-07, - "murica": 1.51e-07, - "mutch": 1.51e-07, - "myocardium": 1.51e-07, - "nakayama": 1.51e-07, - "nanites": 1.51e-07, - "nanoseconds": 1.51e-07, - "nargis": 1.51e-07, - "naso": 1.51e-07, - "navarra": 1.51e-07, - "nazim": 1.51e-07, - "netgear": 1.51e-07, - "netter": 1.51e-07, - "neurobiological": 1.51e-07, - "neutrally": 1.51e-07, - "newsagent": 1.51e-07, - "ninh": 1.51e-07, - "nonbelievers": 1.51e-07, - "noncommittal": 1.51e-07, - "nordics": 1.51e-07, - "northbridge": 1.51e-07, - "nove": 1.51e-07, - "nsdap": 1.51e-07, - "nyman": 1.51e-07, - "offerman": 1.51e-07, - "ofthis": 1.51e-07, - "oho": 1.51e-07, - "oilman": 1.51e-07, - "okita": 1.51e-07, - "oleander": 1.51e-07, - "oligarchic": 1.51e-07, - "omnivores": 1.51e-07, - "oncogenic": 1.51e-07, - "operant": 1.51e-07, - "ornithologists": 1.51e-07, - "osasuna": 1.51e-07, - "oshima": 1.51e-07, - "osho": 1.51e-07, - "ouest": 1.51e-07, - "overcook": 1.51e-07, - "overdid": 1.51e-07, - "overdramatic": 1.51e-07, - "overdressed": 1.51e-07, - "overthrows": 1.51e-07, - "pae": 1.51e-07, - "palantir": 1.51e-07, - "palaver": 1.51e-07, - "paling": 1.51e-07, - "panamas": 1.51e-07, - "parallelogram": 1.51e-07, - "parroting": 1.51e-07, - "parsimonious": 1.51e-07, - "participative": 1.51e-07, - "partridges": 1.51e-07, - "pasolini": 1.51e-07, - "pathe": 1.51e-07, - "pco": 1.51e-07, - "pdas": 1.51e-07, - "peavy": 1.51e-07, - "penman": 1.51e-07, - "perchlorate": 1.51e-07, - "perihelion": 1.51e-07, - "peripherally": 1.51e-07, - "perrault": 1.51e-07, - "personalisation": 1.51e-07, - "petre": 1.51e-07, - "phalanges": 1.51e-07, - "photometry": 1.51e-07, - "phrenology": 1.51e-07, - "phrygian": 1.51e-07, - "picea": 1.51e-07, - "pietermaritzburg": 1.51e-07, - "pinal": 1.51e-07, - "pirouette": 1.51e-07, - "pissarro": 1.51e-07, - "piz": 1.51e-07, - "pkc": 1.51e-07, - "plater": 1.51e-07, - "pleasingly": 1.51e-07, - "plt": 1.51e-07, - "plutos": 1.51e-07, - "poconos": 1.51e-07, - "polisher": 1.51e-07, - "polska": 1.51e-07, - "polymath": 1.51e-07, - "pontifex": 1.51e-07, - "porterfield": 1.51e-07, - "poultice": 1.51e-07, - "prattle": 1.51e-07, - "propublica": 1.51e-07, - "psyches": 1.51e-07, - "puccinis": 1.51e-07, - "puk": 1.51e-07, - "purine": 1.51e-07, - "putters": 1.51e-07, - "puy": 1.51e-07, - "pwa": 1.51e-07, - "quizzical": 1.51e-07, - "qutb": 1.51e-07, - "railcars": 1.51e-07, - "rainstorms": 1.51e-07, - "ramachandran": 1.51e-07, - "rappelling": 1.51e-07, - "rationalizations": 1.51e-07, - "rbf": 1.51e-07, - "readymade": 1.51e-07, - "reappointment": 1.51e-07, - "recordkeeping": 1.51e-07, - "rectitude": 1.51e-07, - "redeveloping": 1.51e-07, - "reeducation": 1.51e-07, - "regex": 1.51e-07, - "reginas": 1.51e-07, - "rell": 1.51e-07, - "remunerated": 1.51e-07, - "renegotiating": 1.51e-07, - "renny": 1.51e-07, - "reorient": 1.51e-07, - "repl": 1.51e-07, - "replicant": 1.51e-07, - "resemblances": 1.51e-07, - "retaliates": 1.51e-07, - "retractor": 1.51e-07, - "revivalist": 1.51e-07, - "reynaldo": 1.51e-07, - "ribera": 1.51e-07, - "ribose": 1.51e-07, - "ried": 1.51e-07, - "rigours": 1.51e-07, - "ringgold": 1.51e-07, - "rishikesh": 1.51e-07, - "rnr": 1.51e-07, - "roane": 1.51e-07, - "rodrick": 1.51e-07, - "roop": 1.51e-07, - "rosalia": 1.51e-07, - "rosamond": 1.51e-07, - "rosecrans": 1.51e-07, - "roselle": 1.51e-07, - "roundness": 1.51e-07, - "rous": 1.51e-07, - "rowman": 1.51e-07, - "rtv": 1.51e-07, - "rubidium": 1.51e-07, - "ruk": 1.51e-07, - "rukia": 1.51e-07, - "runneth": 1.51e-07, - "sabu": 1.51e-07, - "sainted": 1.51e-07, - "salvini": 1.51e-07, - "sandhill": 1.51e-07, - "sandwell": 1.51e-07, - "scada": 1.51e-07, - "schemed": 1.51e-07, - "scherzo": 1.51e-07, - "schooldays": 1.51e-07, - "scleroderma": 1.51e-07, - "scottsboro": 1.51e-07, - "scuderia": 1.51e-07, - "scullery": 1.51e-07, - "seethe": 1.51e-07, - "segregationist": 1.51e-07, - "sews": 1.51e-07, - "shal": 1.51e-07, - "shara": 1.51e-07, - "sheahan": 1.51e-07, - "shiatsu": 1.51e-07, - "shue": 1.51e-07, - "sibs": 1.51e-07, - "sieur": 1.51e-07, - "sigs": 1.51e-07, - "silesian": 1.51e-07, - "silicates": 1.51e-07, - "siltstone": 1.51e-07, - "sipp": 1.51e-07, - "skrtel": 1.51e-07, - "slants": 1.51e-07, - "slavishly": 1.51e-07, - "sld": 1.51e-07, - "sleepwalker": 1.51e-07, - "sleuths": 1.51e-07, - "slobbering": 1.51e-07, - "slu": 1.51e-07, - "smallness": 1.51e-07, - "smf": 1.51e-07, - "soaker": 1.51e-07, - "socom": 1.51e-07, - "solarcity": 1.51e-07, - "solidification": 1.51e-07, - "somatosensory": 1.51e-07, - "soooooooo": 1.51e-07, - "sota": 1.51e-07, - "southpark": 1.51e-07, - "spadina": 1.51e-07, - "spicing": 1.51e-07, - "splices": 1.51e-07, - "splurged": 1.51e-07, - "sportsbook": 1.51e-07, - "spurting": 1.51e-07, - "squalls": 1.51e-07, - "stably": 1.51e-07, - "stammered": 1.51e-07, - "stampeders": 1.51e-07, - "stander": 1.51e-07, - "stantons": 1.51e-07, - "stealin": 1.51e-07, - "stirlingshire": 1.51e-07, - "stitcher": 1.51e-07, - "stoopid": 1.51e-07, - "storehouses": 1.51e-07, - "stormer": 1.51e-07, - "stoudemire": 1.51e-07, - "strayer": 1.51e-07, - "stromboli": 1.51e-07, - "stroudsburg": 1.51e-07, - "stx": 1.51e-07, - "sundress": 1.51e-07, - "superglue": 1.51e-07, - "surer": 1.51e-07, - "sze": 1.51e-07, - "tallmadge": 1.51e-07, - "tamarack": 1.51e-07, - "tanka": 1.51e-07, - "tant": 1.51e-07, - "tapings": 1.51e-07, - "targetting": 1.51e-07, - "tattersall": 1.51e-07, - "tavon": 1.51e-07, - "tazewell": 1.51e-07, - "tdr": 1.51e-07, - "teapots": 1.51e-07, - "telenor": 1.51e-07, - "temasek": 1.51e-07, - "tensing": 1.51e-07, - "tethers": 1.51e-07, - "tgif": 1.51e-07, - "thameslink": 1.51e-07, - "thb": 1.51e-07, - "thereve": 1.51e-07, - "thiele": 1.51e-07, - "thirsk": 1.51e-07, - "thiss": 1.51e-07, - "thrushes": 1.51e-07, - "thst": 1.51e-07, - "thunderball": 1.51e-07, - "tiburon": 1.51e-07, - "tiddies": 1.51e-07, - "tilson": 1.51e-07, - "tlr": 1.51e-07, - "todas": 1.51e-07, - "tollywood": 1.51e-07, - "tomic": 1.51e-07, - "tomy": 1.51e-07, - "tonally": 1.51e-07, - "topham": 1.51e-07, - "topsail": 1.51e-07, - "tortorella": 1.51e-07, - "tothe": 1.51e-07, - "traipsing": 1.51e-07, - "tranches": 1.51e-07, - "transexual": 1.51e-07, - "transworld": 1.51e-07, - "treeless": 1.51e-07, - "tripwire": 1.51e-07, - "trow": 1.51e-07, - "trubisky": 1.51e-07, - "trypsin": 1.51e-07, - "turnbulls": 1.51e-07, - "tutsis": 1.51e-07, - "udf": 1.51e-07, - "ughh": 1.51e-07, - "uhl": 1.51e-07, - "ulceration": 1.51e-07, - "umpqua": 1.51e-07, - "underclassmen": 1.51e-07, - "unexciting": 1.51e-07, - "unhooked": 1.51e-07, - "unlovable": 1.51e-07, - "unquote": 1.51e-07, - "untalented": 1.51e-07, - "untangling": 1.51e-07, - "unwelcoming": 1.51e-07, - "uthman": 1.51e-07, - "uzbeks": 1.51e-07, - "valk": 1.51e-07, - "vande": 1.51e-07, - "vang": 1.51e-07, - "velveteen": 1.51e-07, - "verano": 1.51e-07, - "verisimilitude": 1.51e-07, - "vetch": 1.51e-07, - "victoire": 1.51e-07, - "vikes": 1.51e-07, - "virion": 1.51e-07, - "vlogging": 1.51e-07, - "vonn": 1.51e-07, - "vvv": 1.51e-07, - "wael": 1.51e-07, - "walruses": 1.51e-07, - "waterless": 1.51e-07, - "waylaid": 1.51e-07, - "weal": 1.51e-07, - "webkit": 1.51e-07, - "wedderburn": 1.51e-07, - "wegner": 1.51e-07, - "weidenfeld": 1.51e-07, - "weiler": 1.51e-07, - "whaddya": 1.51e-07, - "wheatland": 1.51e-07, - "whiteboards": 1.51e-07, - "whitson": 1.51e-07, - "wittman": 1.51e-07, - "wolverton": 1.51e-07, - "woodworker": 1.51e-07, - "wooh": 1.51e-07, - "wooley": 1.51e-07, - "worshiper": 1.51e-07, - "woul": 1.51e-07, - "xhtml": 1.51e-07, - "yayoi": 1.51e-07, - "ygritte": 1.51e-07, - "yos": 9.12e-08, - "yukiko": 1.51e-07, - "yulin": 1.51e-07, - "zebulon": 1.51e-07, - "zeolite": 1.51e-07, - "zep": 1.51e-07, - "zk": 1.51e-07, - "zoidberg": 1.51e-07, - "zt": 1.51e-07, - "abcnews": 1.48e-07, - "abhay": 1.48e-07, - "absa": 1.48e-07, - "absolving": 1.48e-07, - "accessions": 1.48e-07, - "ackley": 1.48e-07, - "acquisitive": 1.48e-07, - "adamantium": 1.48e-07, - "adoptable": 1.48e-07, - "adware": 1.48e-07, - "aerie": 1.48e-07, - "aerobatic": 1.48e-07, - "afg": 1.48e-07, - "ahmeds": 1.48e-07, - "aiadmk": 1.48e-07, - "alcan": 1.48e-07, - "alco": 1.48e-07, - "aldeburgh": 1.48e-07, - "aleck": 1.48e-07, - "alessi": 1.48e-07, - "algebraically": 1.48e-07, - "alj": 1.48e-07, - "alouettes": 1.48e-07, - "alys": 1.48e-07, - "amaretto": 1.48e-07, - "amberley": 1.48e-07, - "americanization": 1.48e-07, - "amerindian": 1.48e-07, - "ameritrade": 1.48e-07, - "amrit": 1.48e-07, - "anabaptists": 1.48e-07, - "anarkali": 1.48e-07, - "aneurism": 1.48e-07, - "angeli": 1.48e-07, - "angularjs": 1.48e-07, - "animas": 1.48e-07, - "anklets": 1.48e-07, - "annihilator": 1.48e-07, - "antar": 1.48e-07, - "anticoagulation": 1.48e-07, - "anythin": 1.48e-07, - "anzio": 1.48e-07, - "apha": 1.48e-07, - "apostolate": 1.48e-07, - "arequipa": 1.48e-07, - "arfa": 1.48e-07, - "arguement": 1.48e-07, - "armorial": 1.48e-07, - "arounds": 1.48e-07, - "arsen": 1.48e-07, - "arwen": 1.48e-07, - "asce": 1.48e-07, - "asgardian": 1.48e-07, - "astrakhan": 1.48e-07, - "atlee": 1.48e-07, - "aubin": 1.48e-07, - "aul": 1.48e-07, - "automatons": 1.48e-07, - "bnai": 1.48e-07, - "babak": 1.48e-07, - "backdated": 1.48e-07, - "backfill": 1.48e-07, - "badi": 1.48e-07, - "ballrooms": 1.48e-07, - "ballston": 1.48e-07, - "bankrupting": 1.48e-07, - "banton": 1.48e-07, - "barkin": 1.48e-07, - "barras": 1.48e-08, - "barroom": 1.48e-07, - "bayh": 1.48e-07, - "baylors": 1.48e-07, - "bda": 1.48e-07, - "beatport": 1.48e-07, - "beaucoup": 1.48e-07, - "bedbug": 1.48e-07, - "behan": 1.48e-07, - "bellamys": 1.48e-07, - "bercow": 1.48e-07, - "bethan": 1.48e-07, - "bhagwan": 1.48e-07, - "biafran": 1.48e-07, - "bicolor": 1.48e-07, - "bie": 1.48e-07, - "bilson": 1.48e-07, - "biosafety": 1.48e-07, - "bitchs": 1.48e-07, - "biters": 1.48e-07, - "blackthorn": 1.48e-07, - "blanketing": 1.48e-07, - "blotchy": 1.48e-07, - "bobbins": 1.48e-07, - "boneyard": 1.48e-07, - "boog": 1.48e-07, - "boondoggle": 1.48e-07, - "boosh": 1.48e-07, - "bosnians": 1.48e-07, - "bostonian": 1.48e-07, - "bostwick": 1.48e-07, - "boulanger": 1.48e-07, - "bph": 1.48e-07, - "bramwell": 1.48e-07, - "briand": 1.48e-07, - "brickman": 1.48e-07, - "briers": 1.48e-07, - "brodys": 1.48e-07, - "bromberg": 1.48e-07, - "btb": 1.48e-07, - "bucko": 1.48e-07, - "budged": 1.48e-07, - "buffoonery": 1.48e-07, - "bulgari": 1.48e-07, - "buncombe": 1.48e-07, - "bunge": 1.48e-07, - "burbage": 1.48e-07, - "bureaux": 1.48e-07, - "burghs": 1.48e-07, - "bussiness": 1.48e-07, - "cadman": 1.48e-07, - "calloused": 1.48e-07, - "cambogia": 1.48e-07, - "camilleri": 1.48e-07, - "canavan": 1.48e-07, - "canoga": 1.48e-07, - "captivates": 1.48e-07, - "carberry": 1.48e-07, - "carboxyl": 1.48e-07, - "carex": 1.48e-07, - "carnaby": 1.48e-07, - "carnelian": 1.48e-07, - "catenin": 1.48e-07, - "cayce": 1.48e-07, - "cayley": 1.48e-07, - "cellos": 1.48e-07, - "celso": 1.48e-07, - "centroid": 1.48e-07, - "cerium": 1.48e-07, - "chak": 1.48e-07, - "charlevoix": 1.48e-07, - "chaves": 1.48e-07, - "chekhovs": 1.48e-07, - "chelation": 1.48e-07, - "chemise": 1.48e-07, - "chiarelli": 1.48e-07, - "chiellini": 1.48e-07, - "chimie": 1.48e-07, - "choreographing": 1.48e-07, - "christabel": 1.48e-07, - "chur": 1.48e-07, - "cilicia": 1.48e-07, - "cineplex": 1.48e-07, - "cinq": 1.48e-07, - "cityscapes": 1.48e-07, - "clarisse": 1.48e-07, - "classicist": 1.48e-07, - "clattered": 1.48e-07, - "clausewitz": 1.48e-07, - "cleef": 1.48e-07, - "cliffside": 1.48e-07, - "cogeneration": 1.48e-07, - "colchicine": 1.48e-07, - "colorways": 1.48e-07, - "colouration": 1.48e-07, - "combinator": 1.48e-07, - "communing": 1.48e-07, - "concocting": 1.48e-07, - "concordat": 1.48e-07, - "concussive": 1.48e-07, - "confluent": 1.48e-07, - "coniston": 1.48e-07, - "contin": 1.48e-07, - "coppice": 1.48e-07, - "copyist": 1.48e-07, - "coreys": 1.48e-07, - "cornette": 1.48e-07, - "corpo": 1.48e-07, - "corsairs": 1.48e-07, - "cortege": 1.48e-07, - "corys": 1.48e-07, - "cosh": 1.48e-07, - "counteracted": 1.48e-07, - "covariant": 1.48e-07, - "coverdale": 1.48e-07, - "crackled": 1.48e-07, - "craftspeople": 1.48e-07, - "cranbourne": 1.48e-07, - "creo": 1.48e-07, - "crisco": 1.48e-07, - "criterium": 1.48e-07, - "crue": 1.48e-07, - "crystallizes": 1.48e-07, - "custis": 1.48e-07, - "cyanogen": 1.48e-07, - "danza": 1.48e-07, - "darr": 1.48e-07, - "dawe": 1.48e-07, - "daye": 1.48e-07, - "dbd": 1.48e-07, - "debbies": 1.48e-07, - "decisiveness": 1.48e-07, - "defaulters": 1.48e-07, - "defensor": 1.48e-07, - "defibrillators": 1.48e-07, - "deleon": 1.48e-07, - "deliriously": 1.48e-07, - "demeaned": 1.48e-07, - "demoralised": 1.48e-07, - "dennehy": 1.48e-07, - "devry": 1.48e-07, - "dhea": 1.48e-07, - "diatribes": 1.48e-07, - "dichotomies": 1.48e-07, - "diehards": 1.48e-07, - "differentiator": 1.48e-07, - "dillingham": 1.48e-07, - "dimwitted": 1.48e-07, - "dingoes": 1.48e-07, - "dirks": 8.91e-08, - "disassembling": 1.48e-07, - "disburse": 1.48e-07, - "dislocate": 1.48e-07, - "disobeys": 1.48e-07, - "disseminates": 1.48e-07, - "dito": 1.48e-07, - "dizzee": 1.48e-07, - "dlf": 1.48e-07, - "dominika": 1.48e-07, - "dorito": 1.48e-07, - "dorrit": 1.48e-07, - "doted": 1.48e-07, - "doy": 1.48e-07, - "dramatised": 1.48e-07, - "dramatizes": 1.48e-07, - "drapers": 1.38e-07, - "drippings": 1.48e-07, - "driveshaft": 1.48e-07, - "dually": 1.48e-07, - "dubey": 1.48e-07, - "duolingo": 1.48e-07, - "duras": 1.48e-07, - "dyn": 1.48e-07, - "dysphagia": 1.48e-07, - "earlobes": 1.48e-07, - "earmuffs": 1.48e-07, - "ebullient": 1.48e-07, - "ech": 1.48e-07, - "eef": 1.48e-07, - "eerdmans": 1.48e-07, - "ega": 1.48e-07, - "egregiously": 1.48e-07, - "ehealth": 1.48e-07, - "eidolon": 1.48e-07, - "eldred": 1.48e-07, - "elixirs": 1.48e-07, - "emden": 1.48e-07, - "emerg": 1.48e-07, - "emptier": 1.48e-07, - "emption": 1.48e-07, - "enb": 1.48e-07, - "enes": 1.48e-07, - "enforceability": 1.48e-07, - "englanders": 1.48e-07, - "enlargements": 1.48e-07, - "enunciate": 1.48e-07, - "environ": 1.48e-07, - "ephron": 1.48e-07, - "epigram": 1.48e-07, - "epitopes": 1.48e-07, - "esch": 1.48e-07, - "escuela": 1.48e-07, - "espada": 1.48e-07, - "estar": 1.48e-07, - "estimable": 1.48e-07, - "etisalat": 1.48e-07, - "ettore": 1.48e-07, - "excommunicate": 1.48e-07, - "eyelet": 1.48e-07, - "ezras": 1.48e-07, - "fabienne": 1.48e-07, - "fakery": 1.48e-07, - "fakir": 1.48e-07, - "familiarized": 1.48e-07, - "fanatically": 1.48e-07, - "fastback": 1.48e-07, - "fauntleroy": 1.48e-07, - "fdrs": 1.48e-07, - "feasibly": 1.48e-07, - "fect": 1.48e-07, - "fermin": 1.48e-07, - "fescue": 1.48e-07, - "fif": 1.48e-07, - "filbert": 1.48e-07, - "fing": 1.48e-07, - "firelight": 1.48e-07, - "fisker": 1.48e-07, - "flirtations": 1.48e-07, - "floes": 1.48e-07, - "flub": 1.48e-07, - "flunk": 1.48e-07, - "foligno": 1.48e-07, - "forewing": 1.48e-07, - "foshan": 1.48e-07, - "foust": 1.48e-07, - "franciss": 1.48e-07, - "frederico": 1.48e-07, - "frontrunners": 1.48e-07, - "fud": 1.48e-07, - "fungible": 1.48e-07, - "gainz": 1.48e-07, - "galifianakis": 1.48e-07, - "galindo": 1.48e-07, - "gallego": 1.48e-07, - "gallia": 1.48e-07, - "galvez": 1.48e-07, - "garay": 1.48e-07, - "garcetti": 1.48e-07, - "gbh": 1.48e-07, - "gehrigs": 1.48e-07, - "geneseo": 1.48e-07, - "genny": 1.48e-07, - "germline": 1.48e-07, - "giamatti": 1.48e-07, - "gie": 1.48e-07, - "glinting": 1.48e-07, - "glitched": 1.48e-07, - "globalised": 1.48e-07, - "glottal": 1.48e-07, - "glynne": 1.48e-07, - "godfathers": 1.48e-07, - "goins": 1.48e-07, - "goodenough": 1.48e-07, - "goog": 1.48e-07, - "gooseberries": 1.48e-07, - "gorged": 1.48e-07, - "goryeo": 1.48e-07, - "gotland": 1.48e-07, - "gottschalk": 1.48e-07, - "granaries": 1.48e-07, - "granit": 1.48e-07, - "groomers": 1.48e-07, - "grounders": 1.48e-07, - "gsx": 1.48e-07, - "guccifer": 1.48e-07, - "guildenstern": 1.48e-07, - "gwendoline": 1.48e-07, - "gymnasiums": 1.48e-07, - "gyre": 1.48e-07, - "haiyan": 1.48e-07, - "halladay": 1.48e-07, - "halston": 1.48e-07, - "hanyang": 1.48e-07, - "hapsburg": 1.48e-07, - "harbison": 1.48e-07, - "hardinge": 1.48e-07, - "hartung": 1.48e-07, - "hasselbeck": 1.48e-07, - "hatchling": 1.48e-07, - "hayride": 1.48e-07, - "hazelton": 1.48e-07, - "hbp": 1.48e-07, - "hcr": 1.48e-07, - "hdb": 1.48e-07, - "headmasters": 1.02e-07, - "heartedness": 1.48e-07, - "heartlands": 1.48e-07, - "hedman": 1.48e-07, - "heep": 1.48e-07, - "hegemon": 1.48e-07, - "heian": 1.48e-07, - "heigl": 1.48e-07, - "heilongjiang": 1.48e-07, - "heliocentric": 1.48e-07, - "hennig": 1.48e-07, - "hepa": 1.48e-07, - "hexes": 1.48e-07, - "hierarchically": 1.48e-07, - "hieronymus": 1.48e-07, - "hillingdon": 1.48e-07, - "hirsi": 1.48e-07, - "hisself": 1.48e-07, - "holography": 1.48e-07, - "homemakers": 1.48e-07, - "homescreen": 1.48e-07, - "honan": 1.48e-07, - "hoovers": 7.59e-08, - "horsing": 1.48e-07, - "hoylake": 1.48e-07, - "hrithik": 1.48e-07, - "huaweis": 1.48e-07, - "hulse": 1.48e-07, - "humors": 1.48e-07, - "hussy": 1.48e-07, - "hypermarket": 1.48e-07, - "hyphens": 1.48e-07, - "hypochlorite": 1.48e-07, - "iaas": 1.48e-07, - "ieyasu": 1.48e-07, - "igi": 1.48e-07, - "ihsa": 1.48e-07, - "illyria": 1.48e-07, - "imap": 1.48e-07, - "imitative": 1.48e-07, - "imitator": 1.48e-07, - "incapacitation": 1.48e-07, - "incompressible": 1.48e-07, - "inculcated": 1.48e-07, - "infiltrator": 1.48e-07, - "ingroup": 1.48e-07, - "inimical": 1.48e-07, - "inka": 1.48e-07, - "instills": 1.48e-07, - "interdepartmental": 1.48e-07, - "interdimensional": 1.48e-07, - "interposed": 1.48e-07, - "iridescence": 1.48e-07, - "ize": 1.48e-07, - "jaa": 1.48e-07, - "jaap": 1.48e-07, - "jaber": 1.48e-07, - "jacaranda": 1.48e-07, - "jalapenos": 1.48e-07, - "jammeh": 1.48e-07, - "jeffersonville": 1.48e-07, - "jerri": 1.48e-07, - "jetstar": 1.48e-07, - "jhansi": 1.48e-07, - "josette": 1.48e-07, - "joysticks": 1.48e-07, - "kaczynski": 1.48e-07, - "kaki": 1.48e-07, - "kassim": 1.48e-07, - "kazuya": 1.48e-07, - "kbr": 1.48e-07, - "keefer": 1.48e-07, - "keiser": 1.48e-07, - "kenn": 1.48e-07, - "kezia": 1.48e-07, - "khatami": 1.48e-07, - "khushi": 1.48e-07, - "kitana": 1.48e-07, - "kneaded": 1.48e-07, - "knifes": 9.77e-08, - "knowed": 1.48e-07, - "krissy": 1.48e-07, - "ksh": 1.48e-07, - "kts": 1.48e-07, - "kuchar": 1.48e-07, - "lacquers": 1.48e-07, - "lamer": 1.48e-07, - "lampooned": 1.48e-07, - "landover": 1.48e-07, - "laneway": 1.48e-07, - "lansdale": 1.48e-07, - "lanzhou": 1.48e-07, - "larchmont": 1.48e-07, - "larnaca": 1.48e-07, - "lates": 1.48e-07, - "lausd": 1.48e-07, - "lawfulness": 1.48e-07, - "lawndale": 1.48e-07, - "lazing": 1.48e-07, - "lcds": 1.48e-07, - "leached": 1.48e-07, - "leakey": 1.48e-07, - "lef": 1.48e-07, - "leftmost": 1.48e-07, - "leis": 1.48e-07, - "lemar": 1.48e-07, - "lestat": 1.48e-07, - "ligo": 1.48e-07, - "lindquist": 1.48e-07, - "lipschitz": 1.48e-07, - "livestreams": 1.48e-07, - "livorno": 1.48e-07, - "lix": 1.48e-07, - "locators": 1.48e-07, - "lockscreen": 1.48e-07, - "loggerhead": 1.48e-07, - "longleat": 1.48e-07, - "lookalikes": 1.48e-07, - "loretto": 1.48e-07, - "lounger": 1.48e-07, - "loveday": 1.48e-07, - "loya": 1.48e-07, - "lsm": 1.48e-07, - "lss": 1.48e-07, - "luckys": 1.48e-07, - "lurker": 1.48e-07, - "lyudmila": 1.48e-07, - "maccallum": 1.48e-07, - "maddalena": 1.48e-07, - "maggio": 1.48e-07, - "magistracy": 1.48e-07, - "magnetron": 1.48e-07, - "malak": 1.48e-07, - "maldini": 1.48e-07, - "maldivian": 1.48e-07, - "manbij": 1.48e-07, - "mandurah": 1.48e-07, - "manju": 1.48e-07, - "mannitol": 1.48e-07, - "mannys": 1.48e-07, - "marbling": 1.48e-07, - "marceline": 1.48e-07, - "marcelle": 1.48e-07, - "marihuana": 1.48e-07, - "marini": 1.48e-07, - "marita": 1.48e-07, - "marthe": 1.48e-07, - "martinus": 1.48e-07, - "martius": 1.48e-07, - "marya": 1.48e-07, - "materializes": 1.48e-07, - "mayra": 1.48e-07, - "mazarin": 1.48e-07, - "mccurry": 1.48e-07, - "mce": 1.48e-07, - "mcgehee": 1.48e-07, - "mckays": 1.48e-07, - "mcmichael": 1.48e-07, - "mcmullin": 1.48e-07, - "meas": 1.48e-07, - "melanesia": 1.48e-07, - "melanomas": 1.48e-07, - "mercers": 1.2e-07, - "mero": 1.48e-07, - "messiness": 1.48e-07, - "metastasized": 1.48e-07, - "methicillin": 1.48e-07, - "microcephaly": 1.48e-07, - "microsecond": 1.48e-07, - "millais": 1.48e-07, - "misrule": 1.48e-07, - "mmg": 1.48e-07, - "mncs": 1.48e-07, - "mobb": 1.48e-07, - "mojitos": 1.48e-07, - "moncler": 1.48e-07, - "monotherapy": 1.48e-07, - "montel": 1.48e-07, - "mony": 1.48e-07, - "morrisville": 1.48e-07, - "mosca": 1.48e-07, - "motd": 1.48e-07, - "mountjoy": 1.48e-07, - "msb": 1.48e-07, - "mufflers": 1.48e-07, - "mumm": 1.48e-07, - "murdo": 1.48e-07, - "musume": 1.48e-07, - "nagi": 1.48e-07, - "namo": 1.48e-07, - "nanami": 1.48e-07, - "nannys": 1.48e-07, - "naoto": 1.48e-07, - "nasim": 1.48e-07, - "nbr": 1.48e-07, - "nees": 1.48e-07, - "neustadt": 1.48e-07, - "newsagents": 1.48e-07, - "nfu": 1.48e-07, - "nishida": 1.48e-07, - "nolen": 1.48e-07, - "nonlethal": 1.48e-07, - "novas": 1.26e-07, - "novick": 1.48e-07, - "nrf": 1.48e-07, - "nsaid": 1.48e-07, - "nsclc": 1.48e-07, - "nuclides": 1.48e-07, - "nwsl": 1.48e-07, - "oakmont": 1.48e-07, - "objectivism": 1.48e-07, - "obliterates": 1.48e-07, - "officiant": 1.48e-07, - "okavango": 1.48e-07, - "oklahoman": 1.48e-07, - "olb": 1.48e-07, - "oline": 1.48e-07, - "ontop": 1.48e-07, - "oopsie": 1.48e-07, - "operculum": 1.48e-07, - "orbiters": 1.48e-07, - "orginal": 1.48e-07, - "orientals": 1.48e-07, - "orpheum": 1.48e-07, - "outnumbering": 1.48e-07, - "overstock": 1.48e-07, - "overstreet": 1.48e-07, - "oxbow": 1.48e-07, - "paleocene": 1.48e-07, - "palindrome": 1.48e-07, - "paltz": 1.48e-07, - "papillary": 1.48e-07, - "paralyzes": 1.48e-07, - "paramagnetic": 1.48e-07, - "pares": 1.48e-07, - "parisien": 1.48e-07, - "parolees": 1.48e-07, - "partials": 1.48e-07, - "pasteurization": 1.48e-07, - "patnaik": 1.48e-07, - "patronise": 1.48e-07, - "payless": 1.48e-07, - "pbk": 1.48e-07, - "pcv": 1.48e-07, - "peepers": 1.48e-07, - "pema": 1.48e-07, - "percolation": 1.48e-07, - "perpendicularly": 1.48e-07, - "perris": 1.48e-07, - "persecutors": 1.48e-07, - "pervade": 1.48e-07, - "petits": 1.48e-07, - "petrino": 1.48e-07, - "petros": 1.48e-07, - "peu": 1.48e-07, - "peut": 1.48e-07, - "phagocytosis": 1.48e-07, - "photoreceptors": 1.48e-07, - "phx": 1.48e-07, - "physiques": 1.48e-07, - "pigmentosa": 1.48e-07, - "pilaf": 1.48e-07, - "pils": 1.48e-07, - "pinnate": 1.48e-07, - "pitter": 1.48e-07, - "platitude": 1.48e-07, - "pliant": 1.48e-07, - "plushies": 1.48e-07, - "pois": 1.48e-07, - "polley": 1.48e-07, - "pollutes": 1.48e-07, - "polysilicon": 1.48e-07, - "polytechnique": 1.48e-07, - "pongo": 1.48e-07, - "pott": 1.48e-07, - "powerboat": 1.48e-07, - "powerpc": 1.48e-07, - "precluding": 1.48e-07, - "preece": 1.48e-07, - "prepositional": 1.48e-07, - "presaged": 1.48e-07, - "pressings": 1.48e-07, - "priceline": 1.48e-07, - "printf": 1.48e-07, - "professorships": 1.48e-07, - "proserpine": 1.48e-07, - "prurient": 1.48e-07, - "psychodynamic": 1.48e-07, - "ptb": 1.48e-07, - "pushchair": 1.48e-07, - "quadrangular": 1.48e-07, - "quae": 1.48e-07, - "quantifies": 1.48e-07, - "qubit": 1.48e-07, - "quivers": 1.48e-07, - "rabaul": 1.48e-07, - "rado": 1.48e-07, - "ramana": 1.48e-07, - "ramat": 1.48e-07, - "rbg": 1.48e-07, - "recurved": 1.48e-07, - "reda": 1.48e-07, - "redzone": 1.48e-07, - "reenacting": 1.48e-07, - "refurbishments": 1.48e-07, - "regicide": 1.48e-07, - "regolith": 1.48e-07, - "reloads": 1.48e-07, - "relocates": 1.48e-07, - "renminbi": 1.48e-07, - "rennet": 1.48e-07, - "reproaches": 1.48e-07, - "requisitions": 1.48e-07, - "resurrects": 1.48e-07, - "retardants": 1.48e-07, - "rfra": 1.48e-07, - "risley": 1.48e-07, - "rito": 1.48e-07, - "rmp": 1.48e-07, - "rolands": 1.48e-07, - "rooker": 1.48e-07, - "rootless": 1.48e-07, - "rosaries": 1.48e-07, - "rto": 1.48e-07, - "rudin": 1.48e-07, - "rueful": 1.48e-07, - "rumah": 1.48e-07, - "ruminate": 1.48e-07, - "runnings": 1.48e-07, - "rustin": 1.48e-07, - "sabato": 1.48e-07, - "sackett": 1.48e-07, - "sadists": 1.48e-07, - "sahab": 1.48e-07, - "samaras": 1.48e-07, - "samosas": 1.48e-07, - "sanrio": 1.48e-07, - "sanz": 1.48e-07, - "satterfield": 1.48e-07, - "savannas": 1.48e-07, - "scald": 1.48e-07, - "scampi": 1.48e-07, - "scarecrows": 1.48e-07, - "schematically": 1.48e-07, - "schirmer": 1.48e-07, - "schumachers": 1.48e-07, - "schwimmer": 1.48e-07, - "sclerotic": 1.48e-07, - "secaucus": 1.48e-07, - "senza": 1.48e-07, - "shafi": 1.48e-07, - "shamu": 1.48e-07, - "shiitake": 1.48e-07, - "shino": 1.48e-07, - "shoemakers": 5.13e-08, - "shouty": 1.48e-07, - "shroff": 1.48e-07, - "shuai": 1.48e-07, - "shuichi": 1.48e-07, - "shuman": 1.48e-07, - "shuri": 1.48e-07, - "sicilia": 1.48e-07, - "silvestre": 1.48e-07, - "sinestro": 1.48e-07, - "slaved": 1.48e-07, - "slayton": 1.48e-07, - "sledges": 1.48e-07, - "slobber": 1.48e-07, - "sloppiness": 1.48e-07, - "smartness": 1.48e-07, - "smn": 1.48e-07, - "snapchats": 1e-07, - "snowbird": 1.48e-07, - "snowmobiling": 1.48e-07, - "sokol": 1.48e-07, - "sower": 1.48e-07, - "spanos": 1.48e-07, - "specialism": 1.48e-07, - "speirs": 1.48e-07, - "speke": 1.48e-07, - "speyer": 1.48e-07, - "splenic": 1.48e-07, - "spon": 1.48e-07, - "stabiliser": 1.48e-07, - "stallman": 1.48e-07, - "stapling": 1.48e-07, - "starkville": 1.48e-07, - "starrs": 5.5e-08, - "statuesque": 1.48e-07, - "stefania": 1.48e-07, - "stenciled": 1.48e-07, - "steyer": 1.48e-07, - "stippling": 1.48e-07, - "stowaways": 1.48e-07, - "strapon": 1.48e-07, - "subcontracting": 1.48e-07, - "subfamilies": 1.48e-07, - "subtilis": 1.48e-07, - "sug": 1.48e-07, - "sugarman": 1.48e-07, - "sunglass": 1.48e-07, - "supersymmetry": 1.48e-07, - "suspender": 1.48e-07, - "sut": 1.48e-07, - "suzanna": 1.48e-07, - "swarthy": 1.48e-07, - "swati": 1.48e-07, - "swerves": 1.48e-07, - "switchback": 1.48e-07, - "swooned": 1.48e-07, - "sycophantic": 1.48e-07, - "symbolising": 1.48e-07, - "symposiums": 1.48e-07, - "systematized": 1.48e-07, - "systemd": 1.48e-07, - "tabla": 1.48e-07, - "tammi": 1.48e-07, - "tannic": 1.48e-07, - "tansy": 1.48e-07, - "tearoom": 1.48e-07, - "teena": 1.48e-07, - "teil": 1.48e-07, - "tendai": 1.48e-07, - "tetley": 1.48e-07, - "thawne": 1.48e-07, - "theming": 1.48e-07, - "thew": 1.48e-07, - "thorson": 1.48e-07, - "thre": 1.48e-07, - "throughly": 1.48e-07, - "thuggery": 1.48e-07, - "thyssen": 1.48e-07, - "tidwell": 1.48e-07, - "tiene": 1.48e-07, - "tiffani": 1.48e-07, - "timmys": 1.48e-07, - "tipi": 1.48e-07, - "tipp": 1.48e-07, - "tippers": 1.48e-07, - "tira": 1.48e-07, - "titleist": 1.48e-07, - "tnm": 1.48e-07, - "toff": 1.48e-07, - "toko": 1.48e-07, - "tolle": 1.48e-07, - "tomei": 1.48e-07, - "tortellini": 1.48e-07, - "totemic": 1.48e-07, - "tottering": 1.48e-07, - "tracheotomy": 1.48e-07, - "transceivers": 1.48e-07, - "transfection": 1.48e-07, - "trattoria": 1.48e-07, - "treetop": 1.48e-07, - "trento": 1.48e-07, - "trestles": 1.48e-07, - "triangulate": 1.48e-07, - "trichomes": 1.48e-07, - "tricksters": 1.48e-07, - "tristar": 1.48e-07, - "trivedi": 1.48e-07, - "trulia": 1.48e-07, - "tupou": 1.48e-07, - "tws": 1.48e-07, - "tyagi": 1.48e-07, - "tyrod": 1.48e-07, - "uel": 1.48e-07, - "uffizi": 1.48e-07, - "ultimates": 1.48e-07, - "unaids": 1.48e-07, - "uncannily": 1.48e-07, - "uncounted": 1.48e-07, - "unelectable": 1.48e-07, - "unequaled": 1.48e-07, - "unglued": 1.48e-07, - "unheralded": 1.48e-07, - "unibody": 1.48e-07, - "universalis": 1.48e-07, - "unrecognisable": 1.48e-07, - "untersuchungen": 1.48e-07, - "upvote": 1.48e-07, - "ursus": 1.48e-07, - "usama": 1.48e-07, - "uwp": 1.48e-07, - "vaillant": 1.48e-07, - "valedictory": 1.48e-07, - "veronique": 1.48e-07, - "verratti": 1.48e-07, - "vicks": 1.07e-07, - "vijaya": 1.48e-07, - "villareal": 1.48e-07, - "vincente": 1.48e-07, - "virtuosic": 1.48e-07, - "vives": 1.58e-08, - "vns": 1.48e-07, - "vulkan": 1.48e-07, - "waffling": 1.48e-07, - "warminster": 1.48e-07, - "warszawa": 1.48e-07, - "watchmaking": 1.48e-07, - "waveguides": 1.48e-07, - "wca": 1.48e-07, - "wdm": 1.48e-07, - "whiner": 1.48e-07, - "whitespace": 1.48e-07, - "wht": 1.48e-07, - "wiebe": 1.48e-07, - "winnipegs": 1.48e-07, - "withal": 1.48e-07, - "wmu": 1.48e-07, - "woocommerce": 1.48e-07, - "woofer": 1.48e-07, - "worrier": 1.48e-07, - "wss": 1.48e-07, - "wyck": 1.48e-07, - "xcel": 1.48e-07, - "xlix": 1.48e-07, - "xn": 1.48e-07, - "xxxvi": 1.48e-07, - "yaga": 1.48e-07, - "yales": 1.48e-07, - "yannis": 1.48e-07, - "yearnings": 1.48e-07, - "yesssss": 1.48e-07, - "yoel": 1.48e-07, - "yoichi": 1.48e-07, - "yuta": 1.48e-07, - "zaw": 1.48e-07, - "zemin": 1.48e-07, - "zena": 1.48e-07, - "zinfandel": 1.48e-07, - "zog": 1.48e-07, - "zook": 1.48e-07, - "zuniga": 1.48e-07, - "zvi": 1.48e-07, - "aag": 1.45e-07, - "aberdare": 1.45e-07, - "abided": 1.45e-07, - "absorbable": 1.45e-07, - "accademia": 1.45e-07, - "accor": 1.45e-07, - "accumbens": 1.45e-07, - "acg": 1.45e-07, - "acth": 1.45e-07, - "actualy": 1.45e-07, - "acyclic": 1.45e-07, - "adichie": 1.45e-07, - "adjudicating": 1.45e-07, - "adulteration": 1.45e-07, - "advaita": 1.45e-07, - "adweek": 1.45e-07, - "agb": 1.45e-07, - "aggrandizement": 1.45e-07, - "agroforestry": 1.45e-07, - "agung": 1.45e-07, - "ahd": 1.45e-07, - "ahr": 1.45e-07, - "ahram": 1.45e-07, - "airbrushing": 1.45e-07, - "akechi": 1.45e-07, - "akeem": 1.45e-07, - "aldine": 1.45e-07, - "aldon": 1.45e-07, - "alen": 1.45e-07, - "alesha": 1.45e-07, - "algoma": 1.45e-07, - "alluvium": 1.45e-07, - "almagro": 1.45e-07, - "amesbury": 1.45e-07, - "amperage": 1.45e-07, - "amx": 1.45e-07, - "anasazi": 1.45e-07, - "angiosperms": 1.45e-07, - "anglicanism": 1.45e-07, - "anish": 1.45e-07, - "annabella": 1.45e-07, - "annabeth": 1.45e-07, - "annealed": 1.45e-07, - "ansa": 1.45e-07, - "antacids": 1.45e-07, - "antechamber": 1.45e-07, - "applebaum": 1.45e-07, - "appling": 1.45e-07, - "appropriates": 1.45e-07, - "aqap": 1.45e-07, - "archons": 1.45e-07, - "archy": 1.45e-07, - "argonaut": 1.45e-07, - "armoire": 1.45e-07, - "arvada": 1.45e-07, - "ascendance": 1.45e-07, - "attainder": 1.45e-07, - "atu": 1.45e-07, - "auberge": 1.45e-07, - "authenticator": 1.45e-07, - "authoritarians": 1.45e-07, - "autocar": 1.45e-07, - "avebury": 1.45e-07, - "azt": 1.45e-07, - "baas": 1.45e-07, - "babby": 1.45e-07, - "baftas": 1.45e-07, - "bahrains": 1.45e-07, - "bamboozle": 1.45e-07, - "bandura": 1.45e-07, - "bangkoks": 1.45e-07, - "baseboard": 1.45e-07, - "battaglia": 1.45e-07, - "bavarians": 1.45e-07, - "baytown": 1.45e-07, - "bedecked": 1.45e-07, - "beeches": 1.45e-07, - "behaviorism": 1.45e-07, - "believability": 1.45e-07, - "bellerophon": 1.45e-07, - "benda": 1.45e-07, - "berge": 1.45e-07, - "bester": 1.45e-07, - "beswick": 1.45e-07, - "bettis": 1.45e-07, - "betweens": 1.45e-07, - "bfr": 1.45e-07, - "bickley": 1.45e-07, - "billa": 1.45e-07, - "biosensors": 1.45e-07, - "bitfinex": 1.45e-07, - "bizzare": 1.45e-07, - "blackstar": 1.45e-07, - "blase": 1.45e-07, - "blaspheme": 1.45e-07, - "blest": 1.45e-07, - "blonds": 1.45e-07, - "blubbering": 1.45e-07, - "bluegill": 1.45e-07, - "bof": 1.45e-07, - "bops": 1.45e-07, - "bottler": 1.45e-07, - "bottomley": 1.45e-07, - "bourget": 1.45e-07, - "bourn": 1.45e-07, - "brachiopods": 1.45e-07, - "brann": 1.45e-07, - "branning": 1.45e-07, - "braque": 1.45e-07, - "brents": 1.45e-07, - "brewpub": 1.45e-07, - "bridie": 1.45e-07, - "briefer": 1.45e-07, - "brierley": 1.45e-07, - "brims": 1.45e-07, - "brittan": 1.45e-07, - "brontosaurus": 1.45e-07, - "broomsticks": 1.45e-07, - "brouhaha": 1.45e-07, - "brrr": 1.45e-07, - "brulee": 1.45e-07, - "buffys": 1.45e-07, - "bullcrap": 1.45e-07, - "buskers": 1.45e-07, - "calabrian": 1.45e-07, - "calkins": 1.45e-07, - "calmest": 1.45e-07, - "calvinistic": 1.45e-07, - "cama": 1.45e-07, - "cameroun": 1.45e-07, - "cappy": 1.45e-07, - "carafe": 1.45e-07, - "carburettor": 1.45e-07, - "cardassian": 1.45e-07, - "carn": 1.45e-07, - "carpathians": 1.45e-07, - "cathal": 1.45e-07, - "catton": 1.45e-07, - "catullus": 1.45e-07, - "cebuano": 1.45e-07, - "celadon": 1.45e-07, - "centcom": 1.45e-07, - "cerrone": 1.45e-07, - "chamorro": 1.45e-07, - "charbonneau": 1.45e-07, - "chaya": 1.45e-07, - "cheatin": 1.45e-07, - "chicas": 1.45e-07, - "chicka": 1.45e-07, - "chidi": 1.45e-07, - "chook": 1.45e-07, - "circulator": 1.45e-07, - "classwork": 1.45e-07, - "clemsons": 1.45e-07, - "cloaca": 1.45e-07, - "closeups": 1.45e-07, - "cloverdale": 1.45e-07, - "cmf": 1.45e-07, - "codfish": 1.45e-07, - "colegio": 1.45e-07, - "colons": 1.45e-07, - "complexions": 1.45e-07, - "connivance": 1.45e-07, - "conrail": 1.45e-07, - "contralto": 1.45e-07, - "conundrums": 1.45e-07, - "convalescing": 1.45e-07, - "coquette": 1.45e-07, - "correlative": 1.45e-07, - "corzine": 1.45e-07, - "coxswain": 1.45e-07, - "cran": 1.45e-07, - "crestfallen": 1.45e-07, - "crv": 1.45e-07, - "culottes": 1.45e-07, - "curtly": 1.45e-07, - "cyc": 1.45e-07, - "cyclocross": 1.45e-07, - "dacca": 1.45e-07, - "dalal": 1.45e-07, - "damnable": 1.45e-07, - "danceable": 1.45e-07, - "darcys": 1.45e-07, - "daub": 1.45e-07, - "dawley": 1.45e-07, - "dde": 1.45e-07, - "deadening": 1.45e-07, - "dealin": 1.45e-07, - "deers": 1.07e-07, - "deet": 1.45e-07, - "defencemen": 1.45e-07, - "defrosting": 1.45e-07, - "denuclearization": 1.45e-07, - "deodorants": 1.45e-07, - "deplorables": 1.45e-07, - "derecho": 1.45e-07, - "dermatological": 1.45e-07, - "derriere": 1.45e-07, - "devalues": 1.45e-07, - "diabolic": 1.45e-07, - "diasporic": 1.45e-07, - "dinghies": 1.45e-07, - "dione": 1.45e-07, - "dioramas": 1.45e-07, - "dirigible": 1.45e-07, - "disbandment": 1.45e-07, - "discomforts": 1.45e-07, - "discoverable": 1.45e-07, - "disestablishment": 1.45e-07, - "disparagement": 1.45e-07, - "dissects": 1.45e-07, - "distally": 1.45e-07, - "dooms": 1.41e-07, - "doorstop": 1.45e-07, - "dopa": 1.45e-07, - "douce": 1.45e-07, - "dousing": 1.45e-07, - "dovetails": 1.45e-07, - "dowels": 1.45e-07, - "downfalls": 1.45e-07, - "dpo": 1.45e-07, - "dreamhack": 1.45e-07, - "drizzly": 1.45e-07, - "dtf": 1.45e-07, - "duchesne": 1.45e-07, - "ducting": 1.45e-07, - "duis": 1.45e-07, - "dumbledores": 1.45e-07, - "duplexes": 1.45e-07, - "dyadic": 1.45e-07, - "dyspnea": 1.45e-07, - "eakins": 1.45e-07, - "earworm": 1.45e-07, - "ebit": 1.45e-07, - "eckersley": 1.45e-07, - "egf": 1.45e-07, - "ehhhh": 1.45e-07, - "electable": 1.45e-07, - "elkton": 1.45e-07, - "ellsberg": 1.45e-07, - "elmos": 1.45e-07, - "embodiments": 1.45e-07, - "entitling": 1.45e-07, - "entwicklung": 1.45e-07, - "enuff": 1.45e-07, - "enver": 1.45e-07, - "enviro": 1.45e-07, - "equipe": 1.45e-07, - "erle": 1.45e-07, - "estrange": 1.45e-07, - "ethicists": 1.45e-07, - "eutrophication": 1.45e-07, - "evey": 1.45e-07, - "evol": 1.45e-07, - "excitations": 1.45e-07, - "expounding": 1.45e-07, - "expresso": 1.45e-07, - "exterminators": 1.45e-07, - "exultant": 1.45e-07, - "facings": 1.45e-07, - "fahy": 1.45e-07, - "familiarly": 1.45e-07, - "fasb": 1.45e-07, - "fauquier": 1.45e-07, - "fcm": 1.45e-07, - "fcp": 1.45e-07, - "feets": 1.45e-07, - "fictive": 1.45e-07, - "fiddlers": 7.08e-08, - "filipinas": 1.45e-07, - "fionas": 1.45e-07, - "flamengo": 1.45e-07, - "fobs": 1.45e-07, - "fod": 1.45e-07, - "folktale": 1.45e-07, - "fomented": 1.45e-07, - "fondation": 1.45e-07, - "fone": 1.45e-07, - "fordyce": 1.45e-07, - "foreseeing": 1.45e-07, - "formalization": 1.45e-07, - "fortier": 1.45e-07, - "fptp": 1.45e-07, - "fraiche": 1.45e-07, - "frenchs": 1.45e-07, - "fresheners": 1.45e-07, - "frontcourt": 1.45e-07, - "fudd": 1.45e-07, - "galatea": 1.45e-07, - "gambhir": 1.45e-07, - "gamertag": 1.45e-07, - "gams": 1.45e-07, - "gari": 1.45e-07, - "gauzy": 1.45e-07, - "gbe": 1.45e-07, - "genk": 1.45e-07, - "gero": 1.45e-07, - "getzlaf": 1.45e-07, - "ghose": 1.45e-07, - "ght": 1.45e-07, - "giada": 1.45e-07, - "gili": 1.45e-07, - "giraldo": 1.45e-07, - "gleneagles": 1.45e-07, - "gluon": 1.45e-07, - "gluteus": 1.45e-07, - "goldust": 1.45e-07, - "gooders": 1.45e-07, - "gordan": 1.45e-07, - "goreng": 1.45e-07, - "gotch": 1.45e-07, - "gourmand": 1.45e-07, - "granth": 1.45e-07, - "grappler": 1.45e-07, - "gretsch": 1.45e-07, - "grimaces": 1.45e-07, - "grittier": 1.45e-07, - "gsl": 1.45e-07, - "guapo": 1.45e-07, - "guillain": 1.45e-07, - "gummer": 1.45e-07, - "guntur": 1.45e-07, - "guzzle": 1.45e-07, - "gwar": 1.45e-07, - "habituated": 1.45e-07, - "habituation": 1.45e-07, - "hagia": 1.45e-07, - "hailstones": 1.45e-07, - "hajji": 1.45e-07, - "halpin": 1.45e-07, - "hamann": 1.45e-07, - "haplogroup": 1.45e-07, - "harpies": 1.45e-07, - "harsha": 1.45e-07, - "hasselblad": 1.45e-07, - "hassling": 1.45e-07, - "havas": 1.45e-07, - "hawthorns": 5.25e-08, - "hayabusa": 1.45e-07, - "hayakawa": 1.45e-07, - "haydens": 1.45e-07, - "hazaras": 1.45e-07, - "hds": 1.45e-07, - "hedberg": 1.45e-07, - "hemodynamic": 1.45e-07, - "henne": 1.45e-07, - "hermans": 6.92e-08, - "hermaphrodites": 1.45e-07, - "herren": 1.45e-07, - "hevc": 1.45e-07, - "highwaymen": 1.45e-07, - "hippolytus": 1.45e-07, - "hirsute": 1.45e-07, - "hispano": 1.45e-07, - "hitt": 1.45e-07, - "hoban": 1.45e-07, - "hodgman": 1.45e-07, - "holby": 1.45e-07, - "holmgren": 1.45e-07, - "holroyd": 1.45e-07, - "homestand": 1.45e-07, - "horning": 1.45e-07, - "htt": 1.45e-07, - "hubcaps": 1.45e-07, - "huddling": 1.45e-07, - "huffs": 1.45e-07, - "humanitarians": 1.45e-07, - "humored": 1.45e-07, - "hypotenuse": 1.45e-07, - "iconographic": 1.45e-07, - "iie": 1.45e-07, - "imperishable": 1.45e-07, - "impinging": 1.45e-07, - "imr": 1.45e-07, - "inaugurates": 1.45e-07, - "incognita": 1.45e-07, - "incompatibilities": 1.45e-07, - "incompetency": 1.45e-07, - "indefinable": 1.45e-07, - "indemnified": 1.45e-07, - "inductions": 1.45e-07, - "ineos": 1.45e-07, - "inferiors": 1.45e-07, - "infinitesimally": 1.45e-07, - "interfaced": 1.45e-07, - "interjection": 1.45e-07, - "interlopers": 1.45e-07, - "inverclyde": 1.45e-07, - "ipsum": 1.45e-07, - "irrigating": 1.45e-07, - "iterating": 1.45e-07, - "ites": 1.45e-07, - "iuds": 1.45e-07, - "iwi": 1.45e-07, - "iwm": 1.45e-07, - "iwobi": 1.45e-07, - "jabalpur": 1.45e-07, - "jackmans": 1.45e-07, - "jacobins": 1.45e-07, - "jans": 7.76e-08, - "jasmines": 1.45e-07, - "jenelle": 1.45e-07, - "joffe": 1.45e-07, - "jokic": 1.45e-07, - "jota": 1.45e-07, - "juergen": 1.45e-07, - "jx": 1.45e-07, - "kaisers": 1.45e-07, - "kamiya": 1.45e-07, - "kanga": 1.45e-07, - "kapital": 1.45e-07, - "karamazov": 1.45e-07, - "kasia": 1.45e-07, - "kavita": 1.45e-07, - "kayser": 1.45e-07, - "keeneland": 1.45e-07, - "kernan": 1.45e-07, - "khadr": 1.45e-07, - "kibaki": 1.45e-07, - "kix": 1.45e-07, - "knossos": 1.45e-07, - "knowest": 1.45e-07, - "knowin": 1.45e-07, - "knutson": 1.45e-07, - "kojo": 1.45e-07, - "kooning": 1.45e-07, - "koppel": 1.45e-07, - "kowtow": 1.45e-07, - "kpis": 1.45e-07, - "kratz": 1.45e-07, - "kunduz": 1.45e-07, - "kwun": 1.45e-07, - "laff": 1.45e-07, - "lakeville": 1.45e-07, - "lamu": 1.45e-07, - "lande": 1.45e-07, - "lastest": 1.45e-07, - "lavage": 1.45e-07, - "laze": 1.45e-07, - "lbd": 1.45e-07, - "lectureship": 1.45e-07, - "lemaire": 1.45e-07, - "leonhard": 1.45e-07, - "letang": 1.45e-07, - "levert": 1.45e-07, - "lexy": 1.45e-07, - "lgm": 1.45e-07, - "likeminded": 1.45e-07, - "lingfield": 1.45e-07, - "linh": 1.45e-07, - "lipinski": 1.45e-07, - "locative": 1.45e-07, - "lombards": 1.45e-07, - "longinus": 1.45e-07, - "lovat": 1.45e-07, - "lowing": 1.45e-07, - "ltm": 1.45e-07, - "luan": 1.45e-07, - "lucite": 1.45e-07, - "ludogorets": 1.45e-07, - "lumpkin": 1.45e-07, - "lyricists": 1.45e-07, - "macula": 1.45e-07, - "mahajan": 1.45e-07, - "maigret": 1.45e-07, - "mailroom": 1.45e-07, - "makino": 1.45e-07, - "malam": 1.45e-07, - "mannering": 1.45e-07, - "maracaibo": 1.45e-07, - "masi": 1.45e-07, - "massless": 1.45e-07, - "masuk": 1.45e-07, - "matsu": 1.45e-07, - "matuidi": 1.45e-07, - "mayu": 1.45e-07, - "mccafferty": 1.45e-07, - "meenakshi": 1.45e-07, - "megha": 1.45e-07, - "meles": 1.45e-07, - "mendelian": 1.45e-07, - "meritocratic": 1.45e-07, - "metallurgist": 1.45e-07, - "metastable": 1.45e-07, - "methacrylate": 1.45e-07, - "mgo": 1.45e-07, - "micha": 1.45e-07, - "milch": 1.45e-07, - "mirabella": 1.45e-07, - "misleads": 1.45e-07, - "mixup": 1.45e-07, - "miyazakis": 1.45e-07, - "mjolnir": 1.45e-07, - "mmi": 1.45e-07, - "modulations": 1.45e-07, - "mohammeds": 1.45e-07, - "moise": 1.45e-07, - "moksha": 1.45e-07, - "moltke": 1.45e-07, - "monocular": 1.45e-07, - "monolayer": 1.45e-07, - "monotonic": 1.45e-07, - "montenegrin": 1.45e-07, - "moraes": 1.45e-07, - "mortise": 1.45e-07, - "mtor": 1.45e-07, - "mullets": 1.07e-08, - "multimeter": 1.45e-07, - "multiplatform": 1.45e-07, - "mutha": 1.45e-07, - "mutilations": 1.45e-07, - "nametag": 1.45e-07, - "nanotech": 1.45e-07, - "naproxen": 1.45e-07, - "narayanan": 1.45e-07, - "nashik": 1.45e-07, - "nawal": 1.45e-07, - "necronomicon": 1.45e-07, - "netizen": 1.45e-07, - "neuf": 1.45e-07, - "neutrogena": 1.45e-07, - "neutropenia": 1.45e-07, - "newnham": 1.45e-07, - "newsmagazine": 1.45e-07, - "nhi": 1.45e-07, - "nicaea": 1.45e-07, - "niemann": 1.45e-07, - "nightwish": 1.45e-07, - "nitrocellulose": 1.45e-07, - "nnw": 1.45e-07, - "noches": 1.45e-07, - "nonconformity": 1.45e-07, - "nonexistence": 1.45e-07, - "nootropics": 1.45e-07, - "nouvel": 1.45e-07, - "nouvelles": 1.45e-07, - "nyberg": 1.45e-07, - "nyerere": 1.45e-07, - "okane": 1.45e-07, - "objectivist": 1.45e-07, - "occidentalis": 1.45e-07, - "occurence": 1.45e-07, - "octogenarian": 1.45e-07, - "odb": 1.45e-07, - "odum": 1.45e-07, - "oedema": 1.45e-07, - "officeholders": 1.45e-07, - "oficial": 1.45e-07, - "olefin": 1.45e-07, - "olicity": 1.45e-07, - "olivetti": 1.45e-07, - "olya": 1.45e-07, - "omran": 1.45e-07, - "omsk": 1.45e-07, - "openbsd": 1.45e-07, - "opossums": 1.45e-07, - "ordway": 1.45e-07, - "organa": 1.45e-07, - "orl": 1.45e-07, - "osterman": 1.45e-07, - "otitis": 1.45e-07, - "ottumwa": 1.45e-07, - "ouyang": 1.45e-07, - "oversights": 1.45e-07, - "ovulate": 1.45e-07, - "ozuna": 1.45e-07, - "paclitaxel": 1.45e-07, - "pagani": 1.45e-07, - "pallor": 1.45e-07, - "palp": 1.45e-07, - "pangea": 1.45e-07, - "paperwhite": 1.45e-07, - "paquin": 1.45e-07, - "paradigmatic": 1.45e-07, - "parapsychology": 1.45e-07, - "parolee": 1.45e-07, - "parsecs": 1.45e-07, - "parva": 1.45e-07, - "patellar": 1.45e-07, - "patentable": 1.45e-07, - "patroclus": 1.45e-07, - "patronus": 1.45e-07, - "pavlo": 1.45e-07, - "peekskill": 1.45e-07, - "peloponnese": 1.45e-07, - "pendergast": 1.45e-07, - "pendlebury": 1.45e-07, - "pentameter": 1.45e-07, - "pentobarbital": 1.45e-07, - "percentiles": 1.45e-07, - "personalise": 1.45e-07, - "phaneuf": 1.45e-07, - "photorealistic": 1.45e-07, - "piledriver": 1.45e-07, - "pilings": 1.45e-07, - "pinchot": 1.45e-07, - "pincushion": 1.45e-07, - "plaice": 1.45e-07, - "platted": 1.45e-07, - "polypeptides": 1.45e-07, - "polythene": 1.45e-07, - "pomerania": 1.45e-07, - "ponca": 1.45e-07, - "pone": 1.45e-07, - "poorhouse": 1.45e-07, - "popham": 1.45e-07, - "portcullis": 1.45e-07, - "portis": 1.45e-07, - "preble": 1.45e-07, - "preen": 1.45e-07, - "presupposition": 1.45e-07, - "previn": 1.45e-07, - "primogeniture": 1.45e-07, - "princeps": 1.45e-07, - "priti": 1.45e-07, - "privation": 1.45e-07, - "prokaryotes": 1.45e-07, - "prompter": 1.45e-07, - "propounded": 1.45e-07, - "proquest": 1.45e-07, - "prudhoe": 1.45e-07, - "pseudonymous": 1.45e-07, - "psx": 1.45e-07, - "pujara": 1.45e-07, - "putra": 1.45e-07, - "pwi": 1.45e-07, - "quadro": 1.45e-07, - "qualia": 1.45e-07, - "quam": 1.45e-07, - "quavo": 1.45e-07, - "quirkiness": 1.45e-07, - "ragu": 1.45e-07, - "rahi": 1.45e-07, - "raimondo": 1.45e-07, - "rakim": 1.45e-07, - "rameses": 1.45e-07, - "ranga": 1.45e-07, - "ransacking": 1.45e-07, - "raptures": 1.45e-07, - "rattlers": 1.45e-07, - "ravenhill": 1.45e-07, - "reaffirmation": 1.45e-07, - "reassessing": 1.45e-07, - "reawakening": 1.45e-07, - "recalculate": 1.45e-07, - "reco": 1.45e-07, - "recommenced": 1.45e-07, - "recurrences": 1.45e-07, - "recyclables": 1.45e-07, - "redcoats": 1.45e-07, - "redoubtable": 1.45e-07, - "reformulation": 1.45e-07, - "reidy": 1.45e-07, - "reimbursing": 1.45e-07, - "reinvesting": 1.45e-07, - "reitz": 1.45e-07, - "relict": 1.45e-07, - "renaldo": 1.45e-07, - "renate": 1.45e-07, - "reproached": 1.45e-07, - "reserva": 1.45e-07, - "resinous": 1.45e-07, - "retd": 1.45e-07, - "rethought": 1.45e-07, - "revie": 1.45e-07, - "revitalised": 1.45e-07, - "rfd": 1.45e-07, - "rizwan": 1.45e-07, - "rohrer": 1.45e-07, - "romping": 1.45e-07, - "roofers": 1.45e-07, - "rosemount": 1.45e-07, - "rosens": 1.45e-07, - "rostock": 1.45e-07, - "roughriders": 1.45e-07, - "rozelle": 1.45e-07, - "rpe": 1.45e-07, - "ruislip": 1.45e-07, - "rumer": 1.45e-07, - "ruminations": 1.45e-07, - "rustenburg": 1.45e-07, - "ruthenium": 1.45e-07, - "ryders": 5.89e-08, - "sachiko": 1.45e-07, - "salieri": 1.45e-07, - "sallow": 1.45e-07, - "salvos": 1.45e-07, - "samiti": 1.45e-07, - "sapienza": 1.45e-07, - "scaife": 1.45e-07, - "schwarzer": 1.45e-07, - "scrims": 1.45e-07, - "seascapes": 1.45e-07, - "secondment": 1.45e-07, - "sedin": 1.45e-07, - "sere": 1.45e-07, - "serenades": 1.45e-07, - "setu": 1.45e-07, - "setzer": 1.45e-07, - "sexo": 1.45e-07, - "sheff": 1.45e-07, - "shiga": 1.45e-07, - "shillong": 1.45e-07, - "shinning": 1.45e-07, - "shitpost": 1.45e-07, - "shriners": 1.45e-07, - "shuttering": 1.45e-07, - "silber": 1.45e-07, - "sisley": 1.45e-07, - "skechers": 1.45e-07, - "sketchbooks": 1.45e-07, - "slm": 1.45e-07, - "sloss": 1.45e-07, - "sneha": 1.45e-07, - "snowdrops": 1.45e-07, - "snowfalls": 1.45e-07, - "snowplow": 1.45e-07, - "sociolinguistics": 1.45e-07, - "solders": 1.45e-07, - "solutes": 1.45e-07, - "sonntag": 1.45e-07, - "souring": 1.45e-07, - "sparred": 1.45e-07, - "spocks": 1.45e-07, - "sponging": 1.45e-07, - "sportspeople": 1.45e-07, - "spv": 1.45e-07, - "srk": 1.45e-07, - "stashes": 1.45e-07, - "staters": 1.45e-07, - "statism": 1.45e-07, - "stillbirths": 1.45e-07, - "stimulatory": 1.45e-07, - "stoichiometric": 1.45e-07, - "stoped": 1.45e-07, - "straighteners": 1.45e-07, - "streptomyces": 1.45e-07, - "strozzi": 1.45e-07, - "stymie": 1.45e-07, - "subparagraph": 1.45e-07, - "suchet": 1.45e-07, - "suggestively": 1.45e-07, - "sulzer": 1.45e-07, - "summonses": 1.45e-07, - "suomi": 1.45e-07, - "superbad": 1.45e-07, - "superbugs": 1.45e-07, - "superficiality": 1.45e-07, - "surfin": 1.45e-07, - "surrealists": 1.45e-07, - "surtees": 1.45e-07, - "swale": 1.45e-07, - "swart": 1.45e-07, - "swordplay": 1.45e-07, - "syco": 1.45e-07, - "syst": 1.45e-07, - "tacloban": 1.45e-07, - "takayama": 1.45e-07, - "tanz": 1.45e-07, - "tanzanias": 1.45e-07, - "taormina": 1.45e-07, - "tapu": 1.45e-07, - "tauber": 1.45e-07, - "taye": 1.45e-07, - "tefl": 1.45e-07, - "tejas": 1.45e-07, - "teledyne": 1.45e-07, - "tellurium": 1.45e-07, - "terrorising": 1.45e-07, - "tessie": 1.45e-07, - "tetsu": 1.45e-07, - "thd": 1.45e-07, - "theban": 1.45e-07, - "themis": 1.45e-07, - "thermocouple": 1.45e-07, - "thurso": 1.45e-07, - "thz": 1.45e-07, - "tiga": 1.45e-07, - "tillamook": 1.45e-07, - "tisha": 1.45e-07, - "toggles": 1.45e-07, - "toils": 1.45e-07, - "tola": 1.45e-07, - "tommen": 1.45e-07, - "torvalds": 1.45e-07, - "tovar": 1.45e-07, - "trackside": 1.45e-07, - "tractatus": 1.45e-07, - "transfected": 1.45e-07, - "transylvanian": 1.45e-07, - "trashes": 1.45e-07, - "treves": 1.45e-07, - "triangulated": 1.45e-07, - "triplett": 1.45e-07, - "trisomy": 1.45e-07, - "troglodytes": 1.45e-07, - "troubadours": 1.45e-07, - "tsuki": 1.45e-07, - "tsushima": 1.45e-07, - "ttr": 1.45e-07, - "turbid": 1.45e-07, - "uea": 1.45e-07, - "ullah": 1.45e-07, - "underwoods": 5.62e-08, - "unfccc": 1.45e-07, - "unfpa": 1.45e-07, - "unmanaged": 1.45e-07, - "unsourced": 1.45e-07, - "unsuspected": 1.45e-07, - "upfield": 1.45e-07, - "uru": 1.45e-07, - "valtteri": 1.45e-07, - "vapers": 1.45e-07, - "vay": 1.45e-07, - "veh": 1.45e-07, - "veneta": 1.45e-07, - "viiis": 1.45e-07, - "vimy": 1.45e-07, - "vinh": 1.45e-07, - "vinicius": 1.45e-07, - "virologist": 1.45e-07, - "vogues": 1.45e-07, - "voto": 1.45e-07, - "waimea": 1.45e-07, - "walkover": 1.45e-07, - "waqar": 1.45e-07, - "weddell": 1.45e-07, - "welchs": 1.45e-07, - "wenceslas": 1.45e-07, - "wenham": 1.45e-07, - "wheaties": 1.45e-07, - "whoopee": 1.45e-07, - "willowbrook": 1.45e-07, - "windom": 1.45e-07, - "winstanley": 1.45e-07, - "wint": 1.45e-07, - "witchery": 1.45e-07, - "wonderin": 1.45e-07, - "woolies": 1.45e-07, - "workmates": 1.45e-07, - "wri": 1.45e-07, - "wun": 1.45e-07, - "xchange": 1.45e-07, - "xfl": 1.45e-07, - "xmen": 1.45e-07, - "xxxtentacion": 1.45e-07, - "yachty": 1.45e-07, - "yala": 1.45e-07, - "yaounde": 1.45e-07, - "yeahhh": 1.45e-07, - "yoh": 1.45e-07, - "yout": 1.45e-07, - "zeppelins": 1.38e-07, - "zis": 1.45e-07, - "zm": 1.45e-07, - "zoologists": 1.45e-07, - "abbasid": 1.41e-07, - "accts": 1.41e-07, - "achingly": 1.41e-07, - "adoptee": 1.41e-07, - "affronted": 1.41e-07, - "afls": 1.41e-07, - "africanus": 1.41e-07, - "ahe": 1.41e-07, - "akhenaten": 1.41e-07, - "aksel": 1.41e-07, - "alamitos": 1.41e-07, - "alawite": 1.41e-07, - "alcala": 1.41e-07, - "alleyne": 1.41e-07, - "alllll": 1.41e-07, - "alola": 1.41e-07, - "amalie": 1.41e-07, - "ambergris": 1.41e-07, - "amelias": 1.41e-07, - "ampersand": 1.41e-07, - "amsa": 1.41e-07, - "amstel": 1.41e-07, - "anan": 1.41e-07, - "andreu": 1.41e-07, - "angier": 1.41e-07, - "ania": 1.41e-07, - "anim": 1.41e-07, - "anschluss": 1.41e-07, - "antes": 1.41e-07, - "aoife": 1.41e-07, - "aotearoa": 1.41e-07, - "arakan": 1.41e-07, - "aransas": 1.41e-07, - "archbold": 1.41e-07, - "archenemy": 1.41e-07, - "argentinians": 1.41e-07, - "ariels": 1.41e-07, - "armrests": 1.41e-07, - "arri": 1.41e-07, - "asari": 1.41e-07, - "ashbury": 1.41e-07, - "ashi": 1.41e-07, - "asik": 1.41e-07, - "assiduous": 1.41e-07, - "assize": 1.41e-07, - "astragalus": 1.41e-07, - "astrophysicists": 1.41e-07, - "atsushi": 1.41e-07, - "augmentations": 1.41e-07, - "augustana": 1.41e-07, - "automates": 1.41e-07, - "avaliable": 1.41e-07, - "awwwww": 1.41e-07, - "backstreets": 1.41e-07, - "bailee": 1.41e-07, - "bailiwick": 1.41e-07, - "baleful": 1.41e-07, - "ballas": 1.41e-07, - "barque": 1.41e-07, - "bayo": 1.41e-07, - "beata": 1.41e-07, - "beaune": 1.41e-07, - "bechdel": 1.41e-07, - "beens": 1.41e-07, - "beery": 1.41e-07, - "beeson": 1.41e-07, - "behn": 1.41e-07, - "belasco": 1.41e-07, - "beltsville": 1.41e-07, - "bentinck": 1.41e-07, - "berglund": 1.41e-07, - "berliners": 1.41e-07, - "berthed": 1.41e-07, - "betances": 1.41e-07, - "bewick": 1.41e-07, - "bick": 1.41e-07, - "biggins": 1.41e-07, - "bimodal": 1.41e-07, - "bioluminescent": 1.41e-07, - "birney": 1.41e-07, - "bisphenol": 1.41e-07, - "blastoise": 1.41e-07, - "blimps": 1.41e-07, - "blo": 1.41e-07, - "bloodstock": 1.41e-07, - "blued": 1.41e-07, - "boardrooms": 1.41e-07, - "bocelli": 1.41e-07, - "bolles": 1.41e-07, - "boma": 1.41e-07, - "bonbon": 1.41e-07, - "bonino": 1.41e-07, - "bootlegger": 1.41e-07, - "bootsy": 1.41e-07, - "bopping": 1.41e-07, - "boromir": 1.41e-07, - "bostonians": 1.41e-07, - "botanicals": 1.41e-07, - "boutros": 1.41e-07, - "bowsers": 1.41e-07, - "boxs": 1.41e-07, - "brahmana": 1.41e-07, - "brahmaputra": 1.41e-07, - "bratz": 1.41e-07, - "brazing": 1.41e-07, - "breadwinners": 1.41e-07, - "breathlessness": 1.41e-07, - "briles": 1.41e-07, - "brinkman": 1.41e-07, - "brl": 1.41e-07, - "broadhurst": 1.41e-07, - "brr": 1.41e-07, - "buenas": 1.41e-07, - "bulldozing": 1.41e-07, - "bullhead": 1.41e-07, - "bullingdon": 1.41e-07, - "bundt": 1.41e-07, - "bunty": 1.41e-07, - "cabinetry": 1.41e-07, - "cabrillo": 1.41e-07, - "cadastral": 1.41e-07, - "callao": 1.41e-07, - "calvados": 1.41e-07, - "camcorders": 1.41e-07, - "canmore": 1.41e-07, - "canvasses": 1.41e-07, - "capybara": 1.41e-07, - "cardona": 1.41e-07, - "carlsons": 1.41e-07, - "carrigan": 1.41e-07, - "carwyn": 1.41e-07, - "cassies": 1.41e-07, - "catalano": 1.41e-07, - "cavallo": 1.41e-07, - "cavour": 1.41e-07, - "cco": 1.41e-07, - "cdb": 1.41e-07, - "cero": 1.41e-07, - "chacon": 1.41e-07, - "cheesecloth": 1.41e-07, - "chesty": 1.41e-07, - "chex": 1.41e-07, - "chiao": 1.41e-07, - "chiaroscuro": 1.41e-07, - "chitra": 1.41e-07, - "chlorination": 1.41e-07, - "chron": 1.41e-07, - "churchgoers": 1.41e-07, - "chvrches": 1.41e-07, - "cinemascore": 1.41e-07, - "cinnabon": 1.41e-07, - "circassians": 1.41e-07, - "circumpolar": 1.41e-07, - "clannad": 1.41e-07, - "clapboard": 1.41e-07, - "classe": 1.41e-07, - "coalescence": 1.41e-07, - "coccyx": 1.41e-07, - "cockrell": 1.41e-07, - "cocksucking": 1.41e-07, - "cognates": 1.41e-07, - "cogswell": 1.41e-07, - "coldplays": 1.41e-07, - "colfer": 1.41e-07, - "colonizer": 1.41e-07, - "colophon": 1.41e-07, - "comedown": 1.41e-07, - "comeon": 1.41e-07, - "compa": 1.41e-07, - "compleat": 1.41e-07, - "compositor": 1.41e-07, - "contextualized": 1.41e-07, - "coogee": 1.41e-07, - "copiers": 1.41e-07, - "copra": 1.41e-07, - "cornelis": 1.41e-07, - "cornells": 1.41e-07, - "cornflower": 1.41e-07, - "corniche": 1.41e-07, - "coro": 1.41e-07, - "corruptible": 1.41e-07, - "cotes": 1.41e-07, - "cottontail": 1.41e-07, - "coulsons": 1.41e-07, - "counterbalanced": 1.41e-07, - "cowhide": 1.41e-07, - "creaks": 1.41e-07, - "crescents": 1.41e-07, - "crewmember": 1.41e-07, - "crn": 1.41e-07, - "cromarty": 1.41e-07, - "crosswind": 1.41e-07, - "crucifying": 1.41e-07, - "cryptically": 1.41e-07, - "ctm": 1.41e-07, - "curragh": 1.41e-07, - "dacha": 1.41e-07, - "dalam": 1.41e-07, - "daman": 1.41e-07, - "datura": 1.41e-07, - "davila": 1.41e-07, - "debo": 1.41e-07, - "deeps": 1.41e-07, - "deez": 1.41e-07, - "deff": 1.41e-07, - "dehumanize": 1.41e-07, - "dejection": 1.41e-07, - "delineates": 1.41e-07, - "delt": 1.41e-07, - "demobilized": 1.41e-07, - "democratizing": 1.41e-07, - "demystify": 1.41e-07, - "denialism": 1.41e-07, - "denizen": 1.41e-07, - "designator": 1.41e-07, - "deu": 1.41e-07, - "developement": 1.41e-07, - "dhanush": 1.41e-07, - "dharwad": 1.41e-07, - "dialer": 1.41e-07, - "dialogs": 1.41e-07, - "diggings": 1.41e-07, - "dinsmore": 1.41e-07, - "diop": 1.41e-07, - "directionality": 1.41e-07, - "dirhams": 1.41e-07, - "disarms": 1.41e-07, - "dislodging": 1.41e-07, - "disposables": 1.41e-07, - "dlt": 1.41e-07, - "dnieper": 1.41e-07, - "doktor": 1.41e-07, - "drafter": 1.41e-07, - "drang": 1.41e-07, - "dreadnoughts": 1.41e-07, - "drooled": 1.41e-07, - "druggist": 1.41e-07, - "dslrs": 1.41e-07, - "duchesse": 1.41e-07, - "dwarfing": 1.41e-07, - "edamame": 1.41e-07, - "effectors": 1.41e-07, - "efg": 1.41e-07, - "eggy": 1.41e-07, - "eitc": 1.41e-07, - "ejects": 1.41e-07, - "eland": 1.41e-07, - "elegies": 1.41e-07, - "eloping": 1.41e-07, - "elphinstone": 1.41e-07, - "emeli": 1.41e-07, - "encoders": 1.41e-07, - "energetics": 1.41e-07, - "engr": 1.41e-07, - "enticement": 1.41e-07, - "entices": 1.41e-07, - "eol": 1.41e-07, - "epirus": 1.41e-07, - "ericas": 1.41e-07, - "ethnocentric": 1.41e-07, - "etsu": 1.41e-07, - "euphorbia": 1.41e-07, - "evanescent": 1.41e-07, - "exacerbations": 1.41e-07, - "explication": 1.41e-07, - "factoid": 1.41e-07, - "fallibility": 1.41e-07, - "farscape": 1.41e-07, - "fastballs": 1.41e-07, - "fatwas": 1.41e-07, - "fcf": 1.41e-07, - "fenimore": 1.41e-07, - "fettuccine": 1.41e-07, - "filles": 1.41e-07, - "finchs": 1.41e-07, - "fizzing": 1.41e-07, - "flanged": 1.41e-07, - "flintlock": 1.41e-07, - "floe": 1.41e-07, - "florent": 1.41e-07, - "floris": 1.41e-07, - "fluidized": 1.41e-07, - "flw": 1.41e-07, - "footfalls": 1.41e-07, - "forgers": 1.41e-07, - "formalin": 1.41e-07, - "frankl": 1.41e-07, - "fuckwit": 1.41e-07, - "fujimoto": 1.41e-07, - "fulsome": 1.41e-07, - "functor": 1.41e-07, - "fusilier": 1.41e-07, - "futuro": 1.41e-07, - "gadd": 1.41e-07, - "gaetz": 1.41e-07, - "galois": 1.41e-07, - "gaskin": 1.41e-07, - "gastropods": 1.41e-07, - "gasworks": 1.41e-07, - "gauchos": 1.41e-07, - "gcm": 1.41e-07, - "gef": 1.41e-07, - "gigafactory": 1.41e-07, - "ginas": 1.41e-07, - "glazers": 1.41e-07, - "goc": 1.41e-07, - "gojira": 1.41e-07, - "gonadotropin": 1.41e-07, - "gotchu": 1.41e-07, - "gouverneur": 1.41e-07, - "graben": 1.41e-07, - "grado": 1.41e-07, - "grisha": 1.41e-07, - "gulags": 1.41e-07, - "gynaecologists": 1.41e-07, - "gynecomastia": 1.41e-07, - "gyroscopic": 1.41e-07, - "haddonfield": 1.41e-07, - "haircare": 1.41e-07, - "halas": 1.41e-07, - "halleys": 1.41e-07, - "hanseatic": 1.41e-07, - "harari": 1.41e-07, - "harb": 1.41e-07, - "hardwork": 1.41e-07, - "harriett": 1.41e-07, - "haruko": 1.41e-07, - "hauer": 1.41e-07, - "hauntings": 1.41e-07, - "hbcu": 1.41e-07, - "hdx": 1.41e-07, - "headin": 1.41e-07, - "heaths": 1.23e-07, - "hecker": 1.41e-07, - "henin": 1.41e-07, - "henriksen": 1.41e-07, - "heraclitus": 1.41e-07, - "herniation": 1.41e-07, - "herriot": 1.41e-07, - "hewes": 1.41e-07, - "higashi": 1.41e-07, - "hijackings": 1.41e-07, - "hinson": 1.41e-07, - "histologic": 1.41e-07, - "hoag": 1.41e-07, - "hockenheim": 1.41e-07, - "hoda": 1.41e-07, - "holtzman": 1.41e-07, - "homebuyer": 1.41e-07, - "homeware": 1.41e-07, - "honoka": 1.41e-07, - "hooley": 1.41e-07, - "hooping": 1.41e-07, - "hopkinton": 1.41e-07, - "horcrux": 1.41e-07, - "housecleaning": 1.41e-07, - "houseplants": 1.41e-07, - "howley": 1.41e-07, - "humbleness": 1.41e-07, - "humoured": 1.41e-07, - "hund": 1.41e-07, - "hungrily": 1.41e-07, - "hxh": 1.41e-07, - "hypervisor": 1.41e-07, - "hypotheticals": 1.41e-07, - "hythe": 1.41e-07, - "ibb": 1.41e-07, - "iconoclast": 1.41e-07, - "idolatrous": 1.41e-07, - "ihg": 1.41e-07, - "iiia": 1.41e-07, - "illicitly": 1.41e-07, - "impaler": 1.41e-07, - "impish": 1.41e-07, - "implodes": 1.41e-07, - "imsa": 1.41e-07, - "incentivise": 1.41e-07, - "incidentals": 1.41e-07, - "indifferently": 1.41e-07, - "inec": 1.41e-07, - "infesting": 1.41e-07, - "inkwell": 1.41e-07, - "insole": 1.41e-07, - "instrumented": 1.41e-07, - "intercellular": 1.41e-07, - "intermingling": 1.41e-07, - "internationalisation": 1.41e-07, - "intervertebral": 1.41e-07, - "invariable": 1.41e-07, - "inventoried": 1.41e-07, - "iori": 1.41e-07, - "ipecac": 1.41e-07, - "isang": 1.41e-07, - "isbell": 1.41e-07, - "ishant": 1.41e-07, - "isos": 1.41e-07, - "itb": 1.41e-07, - "itr": 1.41e-07, - "ivc": 1.41e-07, - "izz": 1.41e-07, - "jackdaw": 1.41e-07, - "janne": 1.41e-07, - "janvier": 1.41e-07, - "jehu": 1.41e-07, - "jms": 1.41e-07, - "joab": 1.41e-07, - "jobsite": 1.41e-07, - "joburg": 5.62e-08, - "jonze": 1.41e-07, - "jorgenson": 1.41e-07, - "joris": 1.41e-07, - "juxtapose": 1.41e-07, - "kadyrov": 1.41e-07, - "kageyama": 1.41e-07, - "kagoshima": 1.41e-07, - "kampung": 1.41e-07, - "karelia": 1.41e-07, - "kegel": 1.41e-07, - "kellett": 1.41e-07, - "khon": 1.41e-07, - "kilmore": 1.41e-07, - "kindergartners": 1.41e-07, - "kisumu": 1.41e-07, - "kleist": 1.41e-07, - "kluber": 1.41e-07, - "knievel": 1.41e-07, - "kobach": 1.41e-07, - "kof": 1.41e-07, - "kolarov": 1.41e-07, - "kraven": 1.41e-07, - "kremlins": 1.41e-07, - "krull": 1.41e-07, - "kubica": 1.41e-07, - "kumamoto": 1.41e-07, - "kumi": 1.41e-07, - "kumiko": 1.41e-07, - "lacombe": 1.41e-07, - "lactase": 1.41e-07, - "lacustrine": 1.41e-07, - "lairs": 1.41e-07, - "lancasters": 8.91e-08, - "lancing": 1.41e-07, - "landi": 1.41e-07, - "lardner": 1.41e-07, - "lath": 1.41e-07, - "lawmen": 1.41e-07, - "leatherman": 1.41e-07, - "lector": 1.41e-07, - "lemke": 1.41e-07, - "levantine": 1.41e-07, - "lfo": 1.41e-07, - "lianne": 1.41e-07, - "liberalize": 1.41e-07, - "lidded": 1.41e-07, - "liew": 1.41e-07, - "liman": 1.41e-07, - "linares": 1.41e-07, - "liquified": 1.41e-07, - "lirr": 1.41e-07, - "litle": 1.41e-07, - "lme": 1.41e-07, - "lofoten": 1.41e-07, - "looseness": 1.41e-07, - "lovecrafts": 1.41e-07, - "lowen": 1.41e-07, - "lucho": 1.41e-07, - "lurgan": 1.41e-07, - "lxx": 1.41e-07, - "lynden": 1.41e-07, - "lynnwood": 1.41e-07, - "magnon": 1.41e-07, - "makan": 1.41e-07, - "maltas": 1.41e-07, - "malwarebytes": 1.41e-07, - "managment": 1.41e-07, - "maraschino": 1.41e-07, - "marchi": 1.41e-07, - "margaritaville": 1.41e-07, - "marginalizing": 1.41e-07, - "marit": 1.41e-07, - "maritza": 1.41e-07, - "maronite": 1.41e-07, - "maryhill": 1.41e-07, - "matamoros": 1.41e-07, - "maung": 1.41e-07, - "mauritian": 1.41e-07, - "mavic": 1.41e-07, - "mccallister": 1.41e-07, - "mcdiarmid": 1.41e-07, - "mckibben": 1.41e-07, - "mde": 1.41e-07, - "meddlesome": 1.41e-07, - "medes": 1.41e-07, - "megaupload": 1.41e-07, - "megazord": 1.41e-07, - "meikle": 1.41e-07, - "melnyk": 1.41e-07, - "mercantilism": 1.41e-07, - "meself": 1.41e-07, - "michoacan": 1.41e-07, - "microvascular": 1.41e-07, - "midbrain": 1.41e-07, - "mik": 1.41e-07, - "millbank": 1.41e-07, - "milliliter": 1.41e-07, - "millward": 1.41e-07, - "miraflores": 1.41e-07, - "miscreant": 1.41e-07, - "miyako": 1.41e-07, - "mizrahi": 1.41e-07, - "mld": 1.41e-07, - "mnt": 1.41e-07, - "moka": 1.41e-07, - "mollusc": 1.41e-07, - "moneygram": 1.41e-07, - "mourne": 1.41e-07, - "mtd": 1.41e-07, - "multidrug": 1.41e-07, - "muncy": 1.41e-07, - "murr": 1.41e-07, - "murugan": 1.41e-07, - "mutagenic": 1.41e-07, - "nadeau": 1.41e-07, - "nagas": 1.41e-07, - "narasimha": 1.41e-07, - "naru": 1.41e-07, - "natch": 1.41e-07, - "nawa": 1.41e-07, - "nber": 1.41e-07, - "ncl": 1.41e-07, - "nder": 1.41e-07, - "ndsu": 1.41e-07, - "neave": 1.41e-07, - "negara": 1.41e-07, - "nelsen": 1.41e-07, - "nestlings": 1.41e-07, - "neues": 1.41e-07, - "nian": 1.41e-07, - "nickleby": 1.41e-07, - "nightlight": 1.41e-07, - "nodular": 1.41e-07, - "nof": 1.41e-07, - "noonday": 1.41e-07, - "northumbrian": 1.41e-07, - "nosleep": 1.41e-07, - "novelization": 1.41e-07, - "nst": 1.41e-07, - "nullifies": 1.41e-07, - "nunc": 1.41e-07, - "nyo": 1.41e-07, - "obra": 1.41e-07, - "oci": 1.41e-07, - "offenbach": 1.41e-07, - "oge": 1.41e-07, - "ohioans": 1.41e-07, - "okanogan": 1.41e-07, - "olay": 1.41e-07, - "olympiacos": 1.41e-07, - "omc": 1.41e-07, - "ongc": 1.41e-07, - "onomatopoeia": 1.41e-07, - "onr": 1.41e-07, - "ontarians": 1.41e-07, - "opd": 1.41e-07, - "oped": 1.41e-07, - "opposable": 1.41e-07, - "optoelectronic": 1.41e-07, - "orden": 1.41e-07, - "organists": 1.41e-07, - "oriente": 1.41e-07, - "orn": 1.41e-07, - "ostracised": 1.41e-07, - "otley": 1.41e-07, - "outgrowing": 1.41e-07, - "outputting": 1.41e-07, - "outshines": 1.41e-07, - "outsides": 1.41e-07, - "oversubscribed": 1.41e-07, - "paes": 1.41e-07, - "pails": 1.41e-07, - "panky": 1.41e-07, - "pano": 1.41e-07, - "parenthetical": 1.41e-07, - "parkrun": 1.41e-07, - "patels": 1.41e-07, - "pearsall": 1.41e-07, - "pelo": 1.41e-07, - "pemex": 1.41e-07, - "pences": 1.41e-07, - "pendulums": 1.41e-07, - "penetrations": 1.41e-07, - "percolate": 1.41e-07, - "perishables": 1.41e-07, - "pesach": 1.41e-07, - "petyr": 1.41e-07, - "pewds": 1.41e-07, - "pfd": 1.41e-07, - "phasers": 1.41e-07, - "phytophthora": 1.41e-07, - "pili": 1.41e-07, - "pilsen": 1.41e-07, - "pisgah": 1.41e-07, - "piven": 1.41e-07, - "placeholders": 1.41e-07, - "plateaued": 1.41e-07, - "plonk": 1.41e-07, - "pnd": 1.41e-07, - "pokeballs": 1.41e-07, - "pokestop": 1.41e-07, - "polit": 1.41e-07, - "poplars": 1.41e-07, - "portishead": 1.41e-07, - "potd": 1.41e-07, - "poulin": 1.41e-07, - "pouliot": 1.41e-07, - "predispositions": 1.41e-07, - "premed": 1.41e-07, - "premonitions": 1.41e-07, - "preparers": 1.41e-07, - "presss": 1.41e-07, - "presynaptic": 1.41e-07, - "pretences": 1.41e-07, - "prettily": 1.41e-07, - "probert": 1.41e-07, - "prophetess": 1.41e-07, - "propionate": 1.41e-07, - "prostatectomy": 1.41e-07, - "protec": 1.41e-07, - "proterozoic": 1.41e-07, - "psoe": 1.41e-07, - "puede": 1.41e-07, - "pulpits": 1.41e-07, - "pupal": 1.41e-07, - "pyaar": 1.41e-07, - "quadrupole": 1.41e-07, - "quarantines": 1.41e-07, - "quibbling": 1.41e-07, - "quickens": 1.41e-07, - "raad": 1.41e-07, - "radhakrishnan": 1.41e-07, - "raghav": 1.41e-07, - "rajon": 1.41e-07, - "ramesses": 1.41e-07, - "rampages": 1.41e-07, - "rancour": 1.41e-07, - "rawdon": 1.41e-07, - "rdm": 1.41e-07, - "readjusting": 1.41e-07, - "redbook": 1.41e-07, - "redtube": 1.41e-07, - "reenactments": 1.41e-07, - "reentered": 1.41e-07, - "refrigerants": 1.41e-07, - "rega": 1.41e-07, - "regt": 1.41e-07, - "replicators": 1.41e-07, - "reprises": 1.41e-07, - "retrospectives": 1.41e-07, - "rhyolite": 1.41e-07, - "ricker": 1.41e-07, - "riis": 1.41e-07, - "ritchies": 1.41e-07, - "riza": 1.41e-07, - "rondon": 1.41e-07, - "roomies": 1.41e-07, - "roon": 1.41e-07, - "rosner": 1.41e-07, - "rotter": 1.41e-07, - "rouble": 1.41e-07, - "rudderless": 1.41e-07, - "rudimental": 1.41e-07, - "rutten": 1.41e-07, - "saada": 1.41e-07, - "salafist": 1.41e-07, - "salwar": 1.41e-07, - "sambal": 1.41e-07, - "samsonite": 1.41e-07, - "sango": 1.41e-07, - "santiagos": 1.41e-07, - "sarina": 1.41e-07, - "satirizing": 1.41e-07, - "satomi": 1.41e-07, - "saugus": 1.41e-07, - "schall": 1.41e-07, - "schaller": 1.41e-07, - "schlock": 1.41e-07, - "scid": 1.41e-07, - "scituate": 1.41e-07, - "seaforth": 1.41e-07, - "seagram": 1.41e-07, - "seamed": 1.41e-07, - "sebum": 1.41e-07, - "secularized": 1.41e-07, - "seismological": 1.41e-07, - "selectman": 1.41e-07, - "sendoff": 1.41e-07, - "sengupta": 1.41e-07, - "shadowrun": 1.41e-07, - "shakily": 1.41e-07, - "sharad": 1.41e-07, - "shaul": 1.41e-07, - "shinde": 1.41e-07, - "shinin": 1.41e-07, - "shintaro": 1.41e-07, - "shion": 1.41e-07, - "shirleys": 1.41e-07, - "shoehorn": 1.41e-07, - "shrove": 1.41e-07, - "shrubby": 1.41e-07, - "shubert": 1.41e-07, - "sida": 1.41e-07, - "signifiers": 1.41e-07, - "silicones": 1.41e-07, - "silversmiths": 1.41e-07, - "simmers": 1.41e-07, - "sinews": 1.41e-07, - "sixtieth": 1.41e-07, - "smashwords": 1.41e-07, - "snapdeal": 1.41e-07, - "sneers": 1.41e-07, - "snowshoeing": 1.41e-07, - "sophistry": 1.41e-07, - "southamptons": 1.41e-07, - "sparrowhawk": 1.41e-07, - "speckles": 1.41e-07, - "sperms": 1.41e-07, - "spiers": 1.41e-07, - "splattering": 1.41e-07, - "springvale": 1.41e-07, - "spurlock": 1.41e-07, - "spys": 1.41e-07, - "sqn": 1.41e-07, - "starnes": 1.41e-07, - "staterooms": 1.41e-07, - "stephenie": 1.41e-07, - "steric": 1.41e-07, - "stilled": 1.41e-07, - "stoichiometry": 1.41e-07, - "stowing": 1.41e-07, - "stricker": 1.41e-07, - "strongs": 1.41e-07, - "structuralist": 1.41e-07, - "stuffer": 1.41e-07, - "subfield": 1.41e-07, - "subgenres": 1.41e-07, - "sublimated": 1.41e-07, - "succor": 1.41e-07, - "sudetenland": 1.41e-07, - "sumerians": 1.41e-07, - "summ": 1.41e-07, - "sunderlands": 1.41e-07, - "sundries": 1.41e-07, - "supernumerary": 1.41e-07, - "supersize": 1.41e-07, - "surrealistic": 1.41e-07, - "susu": 1.41e-07, - "switchgear": 1.41e-07, - "swivels": 1.41e-07, - "sylhet": 1.41e-07, - "synchronously": 1.41e-07, - "syncretism": 1.41e-07, - "syntactically": 1.41e-07, - "synthesizes": 1.41e-07, - "tabb": 1.41e-07, - "tamron": 1.41e-07, - "targa": 1.41e-07, - "tarragona": 1.41e-07, - "taubman": 1.41e-07, - "taupo": 1.41e-07, - "tct": 1.41e-07, - "tda": 1.41e-07, - "tellus": 1.41e-07, - "tempah": 1.41e-07, - "terrorised": 1.41e-07, - "terrorizes": 1.41e-07, - "tevin": 1.41e-07, - "thaliana": 1.41e-07, - "thoughtlessly": 1.41e-07, - "throckmorton": 1.41e-07, - "tifa": 1.41e-07, - "timelessness": 1.41e-07, - "timi": 1.41e-07, - "tolstoys": 1.41e-07, - "tonia": 1.41e-07, - "toolkits": 1.41e-07, - "totter": 1.41e-07, - "trea": 1.41e-07, - "trejo": 1.41e-07, - "trex": 1.41e-07, - "trialling": 1.41e-07, - "trilogies": 1.41e-07, - "trumpeters": 1.41e-07, - "tsao": 1.41e-07, - "tsun": 1.41e-07, - "tsundere": 1.41e-07, - "tule": 1.41e-07, - "tunneled": 1.41e-07, - "tura": 1.41e-07, - "turris": 1.41e-07, - "tutto": 1.41e-07, - "tweaker": 1.41e-07, - "tweeps": 1.41e-07, - "twirls": 1.41e-07, - "tyke": 1.41e-07, - "tyrus": 1.41e-07, - "ual": 1.41e-07, - "uefi": 1.41e-07, - "ulema": 1.41e-07, - "ulrike": 1.41e-07, - "umts": 1.41e-07, - "unbutton": 1.41e-07, - "uncharitable": 1.41e-07, - "uncoupled": 1.41e-07, - "unfrozen": 1.41e-07, - "unhurried": 1.41e-07, - "unipolar": 1.41e-07, - "unluckily": 1.41e-07, - "unpopulated": 1.41e-07, - "uris": 1.41e-07, - "uttermost": 1.41e-07, - "vals": 1.02e-07, - "varmint": 1.41e-07, - "vars": 1.41e-07, - "vca": 1.41e-07, - "vectoring": 1.41e-07, - "veera": 1.41e-07, - "verdasco": 1.41e-07, - "vereen": 1.41e-07, - "vernier": 1.41e-07, - "vici": 1.41e-07, - "violeta": 1.41e-07, - "vitis": 1.41e-07, - "vmi": 1.41e-07, - "voz": 1.41e-07, - "vreeland": 1.41e-07, - "waterworld": 1.41e-07, - "weaponize": 1.41e-07, - "wearied": 1.41e-07, - "webgl": 1.41e-07, - "wendigo": 1.41e-07, - "westernization": 1.41e-07, - "westerville": 1.41e-07, - "westphal": 1.41e-07, - "weta": 1.41e-07, - "whatcom": 1.41e-07, - "wheelies": 1.41e-07, - "whiney": 1.41e-07, - "whizzed": 1.41e-07, - "whoopie": 1.41e-07, - "whoppers": 1.41e-07, - "wmata": 1.41e-07, - "wokingham": 1.41e-07, - "woodsy": 1.41e-07, - "woong": 1.41e-07, - "workforces": 1.41e-07, - "wpi": 1.41e-07, - "wynton": 1.41e-07, - "yagi": 1.41e-07, - "yamagata": 1.41e-07, - "yanni": 1.41e-07, - "yips": 1.41e-07, - "yodeling": 1.41e-07, - "yoi": 1.41e-07, - "yuga": 1.41e-07, - "yugi": 1.41e-07, - "yz": 1.41e-07, - "zenfone": 1.41e-07, - "zenon": 1.41e-07, - "zetterberg": 1.41e-07, - "zeynep": 1.41e-07, - "zinke": 1.41e-07, - "ziplock": 1.41e-07, - "aaahhh": 1.38e-07, - "aalborg": 1.38e-07, - "aami": 1.38e-07, - "accumulators": 1.38e-07, - "activ": 1.38e-07, - "adjectival": 1.38e-07, - "adobo": 1.38e-07, - "aegypti": 1.38e-07, - "agonize": 1.38e-07, - "agw": 1.38e-07, - "ahrens": 1.38e-07, - "ahu": 1.38e-07, - "aine": 1.38e-07, - "aisling": 1.38e-07, - "ajs": 7.94e-08, - "aji": 1.38e-07, - "akamai": 1.38e-07, - "akhil": 1.38e-07, - "aladdins": 1.38e-07, - "alcazar": 1.38e-07, - "alfaro": 1.38e-07, - "alfonse": 1.38e-07, - "alif": 1.38e-07, - "allendale": 1.38e-07, - "almanack": 1.38e-07, - "alongs": 1.38e-07, - "altus": 1.38e-07, - "amaryllis": 1.38e-07, - "amash": 1.38e-07, - "americanus": 1.38e-07, - "anadarko": 1.38e-07, - "ananias": 1.38e-07, - "anastomosis": 1.38e-07, - "andheri": 1.38e-07, - "angiogram": 1.38e-07, - "animism": 1.38e-07, - "anjem": 1.38e-07, - "ankit": 1.38e-07, - "antihypertensive": 1.38e-07, - "antimicrobials": 1.38e-07, - "antone": 1.38e-07, - "apus": 2.69e-08, - "aras": 1.38e-07, - "arecibo": 1.38e-07, - "arion": 1.38e-07, - "armadillos": 1.38e-07, - "armories": 1.38e-07, - "arnica": 1.38e-07, - "ashington": 1.38e-07, - "ashur": 1.38e-07, - "assemblywoman": 1.38e-07, - "assignable": 1.38e-07, - "asti": 1.38e-07, - "astrophotography": 1.38e-07, - "atavistic": 1.38e-07, - "atcc": 1.38e-07, - "atd": 1.38e-07, - "augurs": 1.38e-07, - "autocorrelation": 1.38e-07, - "autumns": 8.91e-08, - "avas": 1.38e-07, - "avinash": 1.38e-07, - "avl": 1.38e-07, - "ayako": 1.38e-07, - "backman": 1.38e-07, - "backstories": 1.38e-07, - "balham": 1.38e-07, - "ballplayers": 1.38e-07, - "banna": 1.38e-07, - "bannu": 1.38e-07, - "bano": 1.38e-07, - "barefaced": 1.38e-07, - "barwick": 1.38e-07, - "basemen": 1.38e-07, - "baser": 1.38e-07, - "basse": 1.38e-07, - "bastien": 1.38e-07, - "batiste": 1.38e-07, - "beatable": 1.38e-07, - "beauteous": 1.38e-07, - "bedminster": 1.38e-07, - "beeper": 1.38e-07, - "benjie": 1.38e-07, - "benner": 1.38e-07, - "berezovsky": 1.38e-07, - "bergh": 1.38e-07, - "berhad": 1.38e-07, - "berrien": 1.38e-07, - "betamax": 1.38e-07, - "bhawan": 1.38e-07, - "biancas": 1.38e-07, - "bimbos": 1.38e-07, - "birgit": 1.38e-07, - "blacklight": 1.38e-07, - "blackmailer": 1.38e-07, - "blackmun": 1.38e-07, - "blaire": 1.38e-07, - "blakeley": 1.38e-07, - "blalock": 1.38e-07, - "blockheads": 1.38e-07, - "blueline": 1.38e-07, - "boehringer": 1.38e-07, - "boks": 1.38e-07, - "bonucci": 1.38e-07, - "borrego": 1.38e-07, - "botnets": 1.38e-07, - "bozak": 1.38e-07, - "bradycardia": 1.38e-07, - "braggart": 1.38e-07, - "branchlets": 1.38e-07, - "breakdancing": 1.38e-07, - "breccia": 1.38e-07, - "brekkie": 1.38e-07, - "breville": 1.38e-07, - "brookville": 1.38e-07, - "brotherhoods": 1.32e-07, - "bruschetta": 1.38e-07, - "btl": 1.38e-07, - "bucher": 1.38e-07, - "buen": 1.38e-07, - "bupa": 1.38e-07, - "burchell": 1.38e-07, - "burmas": 1.38e-07, - "byword": 1.38e-07, - "cabelas": 1.38e-07, - "cackled": 1.38e-07, - "caffrey": 1.38e-07, - "caisson": 1.38e-07, - "callander": 1.38e-07, - "callously": 1.38e-07, - "camas": 1.38e-07, - "camillus": 1.38e-07, - "campanella": 1.38e-07, - "candelaria": 1.38e-07, - "canongate": 1.38e-07, - "canseco": 1.38e-07, - "cardiffs": 1.38e-07, - "carhartt": 1.38e-07, - "caris": 1.38e-07, - "carlingford": 1.38e-07, - "carola": 1.38e-07, - "carousing": 1.38e-07, - "carwash": 1.38e-07, - "casterly": 1.38e-07, - "catchup": 1.38e-07, - "catkins": 1.38e-07, - "cauvery": 1.38e-07, - "cavorting": 1.38e-07, - "celebrants": 1.38e-07, - "cgmp": 1.38e-07, - "chandi": 1.38e-07, - "chandu": 1.38e-07, - "characterising": 1.38e-07, - "cheviot": 1.38e-07, - "chios": 1.38e-07, - "chiyo": 1.38e-07, - "chlorides": 1.38e-07, - "chocolatier": 1.38e-07, - "choicest": 1.38e-07, - "chopins": 1.38e-07, - "chota": 1.38e-07, - "chryslers": 1.38e-07, - "cleantech": 1.38e-07, - "clearview": 1.38e-07, - "cliffhangers": 1.38e-07, - "clucking": 1.38e-07, - "clymer": 1.38e-07, - "cockatoos": 1.38e-07, - "cockerell": 1.38e-07, - "codependent": 1.38e-07, - "cohomology": 1.38e-07, - "commandery": 1.38e-07, - "communalism": 1.38e-07, - "communi": 1.38e-07, - "commutator": 1.38e-07, - "compactly": 1.38e-07, - "comscore": 1.38e-07, - "condensers": 1.38e-07, - "congratz": 1.38e-07, - "congressionally": 1.38e-07, - "conidia": 1.38e-07, - "conlin": 1.38e-07, - "conny": 1.38e-07, - "contractile": 1.38e-07, - "convulsion": 1.38e-07, - "copernican": 1.38e-07, - "cordes": 1.38e-07, - "corin": 1.38e-07, - "corpulent": 1.38e-07, - "corralled": 1.38e-07, - "corrals": 1.38e-07, - "cph": 1.38e-07, - "crawlspace": 1.38e-07, - "criminologists": 1.38e-07, - "crispness": 1.38e-07, - "crysis": 1.38e-07, - "cutch": 1.38e-07, - "cutlet": 1.38e-07, - "dania": 1.38e-07, - "daoud": 1.38e-07, - "darussalam": 1.38e-07, - "darwish": 1.38e-07, - "deadbolt": 1.38e-07, - "deary": 1.38e-07, - "deboer": 1.38e-07, - "debora": 1.38e-07, - "deckers": 8.32e-08, - "defeatism": 1.38e-07, - "deforming": 1.38e-07, - "defrosted": 1.38e-07, - "demain": 1.38e-07, - "demoralising": 1.38e-07, - "denominators": 1.38e-07, - "deriding": 1.38e-07, - "determinative": 1.38e-07, - "determiner": 1.38e-07, - "dgaf": 1.38e-07, - "diavolo": 1.38e-07, - "dicker": 1.38e-07, - "digressions": 1.38e-07, - "dineen": 1.38e-07, - "dions": 1.38e-07, - "diouf": 1.38e-07, - "directionless": 1.38e-07, - "directorships": 1.38e-07, - "discoloured": 1.38e-07, - "dishonoured": 1.38e-07, - "disp": 1.38e-07, - "dissents": 1.38e-07, - "dojs": 1.38e-07, - "dolittle": 1.38e-07, - "doner": 1.38e-07, - "donte": 1.38e-07, - "douchey": 1.38e-07, - "doxorubicin": 1.38e-07, - "drownings": 1.38e-07, - "drumline": 1.38e-07, - "drunker": 1.38e-07, - "duodenal": 1.38e-07, - "duping": 1.38e-07, - "dupuy": 1.38e-07, - "dural": 1.38e-07, - "duryea": 1.38e-07, - "dynastys": 1.38e-07, - "earache": 1.38e-07, - "echinacea": 1.38e-07, - "echl": 1.38e-07, - "econo": 1.38e-07, - "edgars": 8.71e-08, - "edoardo": 1.38e-07, - "egm": 1.38e-07, - "egyptology": 1.38e-07, - "eiger": 1.38e-07, - "elastin": 1.38e-07, - "emanations": 1.38e-07, - "emerick": 1.38e-07, - "emporio": 1.38e-07, - "encasing": 1.38e-07, - "endometrium": 1.38e-07, - "engelbert": 1.38e-07, - "enriquez": 1.38e-07, - "enum": 1.38e-07, - "eran": 1.38e-07, - "erdman": 1.38e-07, - "erste": 1.38e-07, - "escobars": 1.38e-07, - "esma": 1.38e-07, - "esthers": 1.38e-07, - "eugenic": 1.38e-07, - "exh": 1.38e-07, - "explosiveness": 1.38e-07, - "extirpated": 1.38e-07, - "eying": 1.38e-07, - "fabolous": 1.38e-07, - "fairbank": 1.38e-07, - "fairhaven": 1.38e-07, - "fangirls": 1.38e-07, - "farmiga": 1.38e-07, - "fatso": 1.38e-07, - "fdg": 1.38e-07, - "fede": 1.38e-07, - "feebly": 1.38e-07, - "ferdinands": 1.38e-07, - "fernie": 1.38e-07, - "ferrera": 1.38e-07, - "ffi": 1.38e-07, - "fhe": 1.38e-07, - "figuration": 1.38e-07, - "finkle": 1.38e-07, - "fitzmaurice": 1.38e-07, - "fivethirtyeight": 1.38e-07, - "foist": 1.38e-07, - "foliar": 1.38e-07, - "forrests": 1.38e-07, - "forrestal": 1.38e-07, - "fowle": 1.38e-07, - "franked": 1.38e-07, - "freeborn": 1.38e-07, - "frente": 1.38e-07, - "frio": 1.38e-07, - "frites": 1.38e-07, - "fromage": 1.38e-07, - "furosemide": 1.38e-07, - "furst": 1.38e-07, - "gabled": 1.38e-07, - "gak": 1.38e-07, - "gammy": 1.38e-07, - "gannets": 1.38e-07, - "ganon": 1.38e-07, - "garfields": 1.38e-07, - "gaster": 1.38e-07, - "gentian": 1.38e-07, - "gerhart": 1.38e-07, - "germplasm": 1.38e-07, - "gerrymandered": 1.38e-07, - "geta": 1.38e-07, - "giannini": 1.38e-07, - "giardia": 1.38e-07, - "gideons": 1.38e-07, - "gilford": 1.38e-07, - "gillum": 1.38e-07, - "gits": 1.38e-07, - "gladbach": 1.38e-07, - "gld": 1.38e-07, - "glencore": 1.38e-07, - "glendora": 1.38e-07, - "governorships": 1.38e-07, - "grandy": 1.38e-07, - "granlund": 1.38e-07, - "gravels": 1.38e-07, - "greatful": 1.38e-07, - "grigsby": 1.38e-07, - "groveling": 1.38e-07, - "gstaad": 1.38e-07, - "gurgle": 1.38e-07, - "habsburgs": 1.38e-07, - "hafner": 1.38e-07, - "hailsham": 1.38e-07, - "halak": 1.38e-07, - "hallucinated": 1.38e-07, - "hame": 1.38e-07, - "hammurabi": 1.38e-07, - "hapa": 1.38e-07, - "harasser": 1.38e-07, - "hardwell": 1.38e-07, - "harmonys": 1.38e-07, - "haro": 1.38e-07, - "hatchets": 1.38e-07, - "hatem": 1.38e-07, - "hazleton": 1.38e-07, - "hba": 1.38e-07, - "headcanon": 1.38e-07, - "hedland": 1.38e-07, - "heide": 1.38e-07, - "hempel": 1.38e-07, - "henn": 1.38e-07, - "hereabouts": 1.38e-07, - "hexane": 1.38e-07, - "hilla": 1.38e-07, - "hiroko": 1.38e-07, - "histrionics": 1.38e-07, - "hmi": 1.38e-07, - "hoardings": 1.38e-07, - "homebody": 1.38e-07, - "homekit": 1.38e-07, - "homeostatic": 1.38e-07, - "hornsey": 1.38e-07, - "horsehair": 1.38e-07, - "howitt": 1.38e-07, - "hsia": 1.38e-07, - "hsn": 1.38e-07, - "hubspot": 1.38e-07, - "hunny": 1.38e-07, - "hussar": 1.38e-07, - "iast": 1.38e-07, - "ibt": 1.38e-07, - "iconoclasm": 1.38e-07, - "idolizing": 1.38e-07, - "ier": 1.38e-07, - "iiii": 1.38e-07, - "ilhan": 1.38e-07, - "ilkley": 1.38e-07, - "ilsa": 1.38e-07, - "indah": 1.38e-07, - "indicting": 1.38e-07, - "indignantly": 1.38e-07, - "inductors": 1.38e-07, - "inflammable": 1.38e-07, - "infosec": 1.38e-07, - "inhomogeneous": 1.38e-07, - "insaf": 1.38e-07, - "instanced": 1.38e-07, - "institutionalize": 1.38e-07, - "insurrections": 1.38e-07, - "intermarried": 1.38e-07, - "intramolecular": 1.38e-07, - "ionospheric": 1.38e-07, - "isadore": 1.38e-07, - "ising": 1.38e-07, - "jabhat": 1.38e-07, - "jagdish": 1.38e-07, - "jaggery": 1.38e-07, - "jalandhar": 1.38e-07, - "jayanti": 1.38e-07, - "jedburgh": 1.38e-07, - "jeer": 1.38e-07, - "jep": 1.38e-07, - "jibes": 1.38e-07, - "judgy": 1.38e-07, - "juntas": 1.15e-07, - "kafr": 1.38e-07, - "kalpana": 1.38e-07, - "kanal": 1.38e-07, - "kants": 1.38e-07, - "karman": 1.38e-07, - "kartel": 1.38e-07, - "kaun": 1.38e-07, - "kayden": 1.38e-07, - "kennelly": 1.38e-07, - "kif": 1.38e-07, - "killswitch": 1.38e-07, - "knuckleheads": 1.38e-07, - "krabi": 1.38e-07, - "krall": 1.38e-07, - "kur": 1.38e-07, - "laffer": 1.38e-07, - "lagan": 1.38e-07, - "lalita": 1.38e-07, - "lalor": 1.38e-07, - "laminating": 1.38e-07, - "landrieu": 1.38e-07, - "langevin": 1.38e-07, - "lanyards": 1.38e-07, - "latoya": 1.38e-07, - "lauries": 1.38e-07, - "ldf": 1.38e-07, - "legionaries": 1.38e-07, - "legitimise": 1.38e-07, - "lermontov": 1.38e-07, - "letizia": 1.38e-07, - "lhd": 1.38e-07, - "liek": 1.38e-07, - "lightbox": 1.38e-07, - "linx": 1.38e-07, - "livingroom": 1.38e-07, - "lnc": 1.38e-07, - "lndian": 1.38e-07, - "lockdowns": 1.38e-07, - "loewen": 1.38e-07, - "loews": 5.5e-08, - "logar": 1.38e-07, - "logout": 1.38e-07, - "longlist": 1.38e-07, - "longshore": 1.38e-07, - "lonny": 1.38e-07, - "lorenzos": 1.38e-07, - "lorton": 1.38e-07, - "ltl": 1.38e-07, - "ludgate": 1.38e-07, - "luh": 1.38e-07, - "lut": 1.38e-07, - "lvmh": 1.38e-07, - "macauley": 1.38e-07, - "macaws": 1.38e-07, - "madura": 1.38e-07, - "malic": 1.38e-07, - "mannose": 1.38e-07, - "manoeuvred": 1.38e-07, - "mansplaining": 1.38e-07, - "mantles": 1.38e-07, - "marcelino": 1.38e-07, - "marchese": 1.38e-07, - "mariette": 1.38e-07, - "markups": 1.38e-07, - "marmion": 1.38e-07, - "masaru": 1.38e-07, - "masted": 1.38e-07, - "masterstroke": 1.38e-07, - "masuda": 1.38e-07, - "maturely": 1.38e-07, - "mcburney": 1.38e-07, - "mcn": 1.38e-07, - "mcvie": 1.38e-07, - "mechanicsburg": 1.38e-07, - "meditates": 1.38e-07, - "megalomania": 1.38e-07, - "mendacity": 1.38e-07, - "merce": 1.38e-07, - "merk": 1.38e-07, - "merwin": 1.38e-07, - "meson": 1.38e-07, - "metacarpal": 1.38e-07, - "mexicali": 1.38e-07, - "michels": 9.55e-08, - "millville": 1.38e-07, - "mirabilis": 1.38e-07, - "mirnas": 1.38e-07, - "miscavige": 1.38e-07, - "misperception": 1.38e-07, - "mocs": 1.38e-07, - "moj": 1.38e-07, - "mommsen": 1.38e-07, - "monckton": 1.38e-07, - "monomeric": 1.38e-07, - "mononuclear": 1.38e-07, - "monopole": 1.38e-07, - "monounsaturated": 1.38e-07, - "monroeville": 1.38e-07, - "morphe": 1.38e-07, - "mosfets": 1.38e-07, - "multivariable": 1.38e-07, - "murch": 1.38e-07, - "mycenae": 1.38e-07, - "mycoplasma": 1.38e-07, - "myerson": 1.38e-07, - "natter": 1.38e-07, - "ncd": 1.38e-07, - "nclb": 1.38e-07, - "ndaa": 1.38e-07, - "nefertiti": 1.38e-07, - "neoplasia": 1.38e-07, - "neotropical": 1.38e-07, - "nephritis": 1.38e-07, - "netapp": 1.38e-07, - "neurodegeneration": 1.38e-07, - "neurofibromatosis": 1.38e-07, - "nigam": 1.38e-07, - "nitpicking": 1.38e-07, - "nitwit": 1.38e-07, - "nodejs": 1.38e-07, - "noirs": 1.38e-07, - "nonparametric": 1.38e-07, - "npn": 1.38e-07, - "nrdc": 1.38e-07, - "nuzzling": 1.38e-07, - "nvme": 1.38e-07, - "nyg": 1.38e-07, - "nzs": 5.37e-08, - "obsequious": 1.38e-07, - "ochreous": 1.38e-07, - "oedipal": 1.38e-07, - "ogier": 1.38e-07, - "ohhhhhh": 1.38e-07, - "ohr": 1.38e-07, - "ohv": 1.38e-07, - "oilseed": 1.38e-07, - "oise": 1.38e-07, - "olean": 1.38e-07, - "ollies": 1.38e-07, - "omd": 1.38e-07, - "onerepublic": 1.38e-07, - "oulu": 1.38e-07, - "overcoats": 1.38e-07, - "overstretched": 1.38e-07, - "owler": 1.38e-07, - "pacioretty": 1.38e-07, - "palliser": 1.38e-07, - "pangolins": 1.38e-07, - "pantheism": 1.38e-07, - "pantomimes": 1.38e-07, - "parcells": 1.38e-07, - "parenchyma": 1.38e-07, - "parkas": 1.38e-07, - "pascagoula": 1.38e-07, - "pecorino": 1.38e-07, - "penticton": 1.38e-07, - "perezs": 1.38e-07, - "pericardial": 1.38e-07, - "permittivity": 1.38e-07, - "perplexity": 1.38e-07, - "pervasiveness": 1.38e-07, - "photocopier": 1.38e-07, - "phuong": 1.38e-07, - "pigeonholed": 1.38e-07, - "pigott": 1.38e-07, - "pikmin": 1.38e-07, - "pipework": 1.38e-07, - "placated": 1.38e-07, - "plumper": 1.38e-07, - "plunket": 1.38e-07, - "polarising": 1.38e-07, - "poliovirus": 1.38e-07, - "polyamide": 1.38e-07, - "portend": 1.38e-07, - "portentous": 1.38e-07, - "porth": 1.38e-07, - "postmen": 1.38e-07, - "potentiometer": 1.38e-07, - "praline": 1.38e-07, - "predicaments": 1.38e-07, - "prematurity": 1.38e-07, - "prettiness": 1.38e-07, - "privat": 1.38e-07, - "proconsul": 1.38e-07, - "proofreader": 1.38e-07, - "propositioned": 1.38e-07, - "prosecutes": 1.38e-07, - "proudhon": 1.38e-07, - "pugnacious": 1.38e-07, - "pyrophosphate": 1.38e-07, - "qn": 1.38e-07, - "queensway": 1.38e-07, - "queerness": 1.38e-07, - "quintuple": 1.38e-07, - "racketeer": 1.38e-07, - "rade": 1.38e-07, - "radioisotopes": 1.38e-07, - "raku": 1.38e-07, - "rans": 5.37e-08, - "rapa": 1.38e-07, - "razz": 1.38e-07, - "readjusted": 1.38e-07, - "rearm": 1.38e-07, - "reburied": 1.38e-07, - "recalibration": 1.38e-07, - "recency": 1.38e-07, - "recoils": 1.38e-07, - "recusal": 1.38e-07, - "redblacks": 1.38e-07, - "regaled": 1.38e-07, - "regius": 1.38e-07, - "rehearing": 1.38e-07, - "rehoming": 1.38e-07, - "relaunching": 1.38e-07, - "renae": 1.38e-07, - "repressions": 1.38e-07, - "resend": 1.38e-07, - "resoundingly": 1.38e-07, - "resubmitted": 1.38e-07, - "reverberates": 1.38e-07, - "reverential": 1.38e-07, - "rga": 1.38e-07, - "rhi": 1.38e-07, - "rhythmical": 1.38e-07, - "richt": 1.38e-07, - "rigel": 1.38e-07, - "rightists": 1.38e-07, - "rightmost": 1.38e-07, - "rivendell": 1.38e-07, - "rmr": 1.38e-07, - "rnai": 1.38e-07, - "rockdale": 1.38e-07, - "rollerblading": 1.38e-07, - "romeos": 8.13e-08, - "romi": 1.38e-07, - "rowdies": 1.38e-07, - "rubi": 1.38e-07, - "rudders": 1.38e-07, - "rudge": 1.38e-07, - "ruggedness": 1.38e-07, - "ruprecht": 1.38e-07, - "rutting": 1.38e-07, - "safford": 1.38e-07, - "safra": 1.38e-07, - "sain": 1.38e-07, - "salvadorans": 1.38e-07, - "sandbanks": 1.38e-07, - "sangamon": 1.38e-07, - "sansom": 1.38e-07, - "santayana": 1.38e-07, - "saoirse": 1.38e-07, - "sarum": 1.38e-07, - "satisfyingly": 1.38e-07, - "sawgrass": 1.38e-07, - "saxby": 1.38e-07, - "scapes": 1.38e-07, - "scarcer": 1.38e-07, - "schiavo": 1.38e-07, - "schoolcraft": 1.38e-07, - "scissorhands": 1.38e-07, - "sclc": 1.38e-07, - "scu": 1.38e-07, - "scythes": 1.38e-07, - "sdm": 1.38e-07, - "sebastiano": 1.38e-07, - "seinen": 1.38e-07, - "seiya": 1.38e-07, - "seouls": 1.38e-07, - "septicaemia": 1.38e-07, - "seria": 1.38e-07, - "sertraline": 1.38e-07, - "servi": 1.38e-07, - "sfn": 1.38e-07, - "shaina": 1.38e-07, - "shankly": 1.38e-07, - "sharmas": 1.38e-07, - "shd": 1.38e-07, - "shepperton": 1.38e-07, - "shifa": 1.38e-07, - "shinawatra": 1.38e-07, - "shittin": 1.38e-07, - "shorebirds": 1.38e-07, - "showtimes": 1.35e-07, - "shraddha": 1.38e-07, - "shuffleboard": 1.38e-07, - "shuler": 1.38e-07, - "sidestepping": 1.38e-07, - "sidewalls": 1.38e-07, - "sihanouk": 1.38e-07, - "silvano": 1.38e-07, - "similes": 1.38e-07, - "simpkins": 1.38e-07, - "sinfonia": 1.38e-07, - "sintered": 1.38e-07, - "skee": 1.38e-07, - "skink": 1.38e-07, - "slashdot": 1.38e-07, - "slaven": 1.38e-07, - "slimmest": 1.38e-07, - "sloot": 1.38e-07, - "sluggishness": 1.38e-07, - "smithville": 1.38e-07, - "sociolinguistic": 1.38e-07, - "somerton": 1.38e-07, - "spic": 1.38e-07, - "spinelli": 1.38e-07, - "spondylitis": 1.38e-07, - "spooned": 1.38e-07, - "spotsylvania": 1.38e-07, - "spratly": 1.38e-07, - "springwood": 1.38e-07, - "ssf": 1.38e-07, - "starck": 1.38e-07, - "stardew": 1.38e-07, - "starman": 1.38e-07, - "starrett": 1.38e-07, - "statesboro": 1.38e-07, - "steeds": 1.38e-07, - "stegen": 1.38e-07, - "steno": 1.38e-07, - "stephano": 1.38e-07, - "stickman": 1.38e-07, - "stieglitz": 1.38e-07, - "storch": 1.38e-07, - "stortford": 1.38e-07, - "strathfield": 1.38e-07, - "striae": 1.38e-07, - "stupefied": 1.38e-07, - "subclinical": 1.38e-07, - "suboxone": 1.38e-07, - "substantiation": 1.38e-07, - "sucka": 1.38e-07, - "suleman": 1.38e-07, - "summerhouse": 1.38e-07, - "superchargers": 1.38e-07, - "sushil": 1.38e-07, - "svend": 1.38e-07, - "sympathiser": 1.38e-07, - "tadeusz": 1.38e-07, - "tagger": 1.38e-07, - "taichung": 1.38e-07, - "talktalk": 1.38e-07, - "tangos": 1.38e-07, - "tanjung": 1.38e-07, - "tapi": 1.38e-07, - "tarawa": 1.38e-07, - "teabag": 1.38e-07, - "teehee": 1.38e-07, - "tegra": 1.38e-07, - "teleological": 1.38e-07, - "tenanted": 1.38e-07, - "tesol": 1.38e-07, - "theologies": 1.38e-07, - "throttles": 1.38e-07, - "tickler": 1.38e-07, - "tipo": 1.38e-07, - "tippecanoe": 1.38e-07, - "titted": 1.38e-07, - "tlp": 1.38e-07, - "toady": 1.38e-07, - "todt": 1.38e-07, - "tollway": 1.38e-07, - "toolset": 1.38e-07, - "toriyama": 1.38e-07, - "touraine": 1.38e-07, - "toxics": 1.38e-07, - "trane": 1.38e-07, - "transkei": 1.38e-07, - "travelodge": 1.38e-07, - "trinh": 1.38e-07, - "trinitys": 1.38e-07, - "trost": 1.38e-07, - "troth": 1.38e-07, - "tsukuba": 1.38e-07, - "tta": 1.38e-07, - "tunings": 1.38e-07, - "turbotax": 1.38e-07, - "turnarounds": 1.38e-07, - "twe": 1.38e-07, - "twu": 1.38e-07, - "typhon": 1.38e-07, - "ucsc": 1.38e-07, - "uighurs": 1.38e-07, - "ukr": 1.38e-07, - "umayyad": 1.38e-07, - "umg": 1.38e-07, - "umpteen": 1.38e-07, - "unctad": 1.38e-07, - "unfree": 1.38e-07, - "unfurnished": 1.38e-07, - "unluckiest": 1.38e-07, - "unwholesome": 1.38e-07, - "updraft": 1.38e-07, - "upmost": 1.38e-07, - "ustream": 1.38e-07, - "vandalia": 1.38e-07, - "vcc": 1.38e-07, - "vedra": 1.38e-07, - "velveeta": 1.38e-07, - "venkat": 1.38e-07, - "venta": 1.38e-07, - "viewport": 1.38e-07, - "virago": 1.38e-07, - "volcanos": 1.2e-07, - "vts": 1.38e-07, - "wachovia": 1.38e-07, - "wafa": 1.38e-07, - "wallys": 1.38e-07, - "wanyama": 1.38e-07, - "watsonville": 1.38e-07, - "wbz": 1.38e-07, - "weatherly": 1.38e-07, - "websphere": 1.38e-07, - "wellhead": 1.38e-07, - "westbrooks": 5.01e-08, - "whaaat": 1.38e-07, - "wheelbarrows": 1.38e-07, - "wheezy": 1.38e-07, - "wilkinsons": 1.38e-07, - "wimmer": 1.38e-07, - "wirtz": 1.38e-07, - "wistar": 1.38e-07, - "woden": 1.38e-07, - "wole": 1.38e-07, - "woodridge": 1.38e-07, - "wookie": 1.38e-07, - "wos": 1.38e-07, - "wristwatches": 1.38e-07, - "wrongness": 1.38e-07, - "wunder": 1.38e-07, - "wwiii": 1.38e-07, - "xbmc": 1.38e-07, - "xxxii": 1.38e-07, - "xxxv": 1.38e-07, - "yaman": 1.38e-07, - "yandere": 1.38e-07, - "yegor": 1.38e-07, - "yello": 1.38e-07, - "yelping": 1.38e-07, - "yolande": 1.38e-07, - "yoshimura": 1.38e-07, - "younique": 1.38e-07, - "yttrium": 1.38e-07, - "zana": 1.38e-07, - "zebedee": 1.38e-07, - "zenobia": 1.38e-07, - "zululand": 1.38e-07, - "abattoirs": 1.35e-07, - "abdo": 1.35e-07, - "abels": 5.37e-08, - "abril": 1.35e-07, - "abstruse": 1.35e-07, - "acland": 1.35e-07, - "adaline": 1.35e-07, - "adenoma": 1.35e-07, - "adobes": 1.35e-07, - "adverbial": 1.35e-07, - "aftra": 1.35e-07, - "agriculturally": 1.35e-07, - "aileron": 1.35e-07, - "airey": 1.35e-07, - "akiva": 1.35e-07, - "alachua": 1.35e-07, - "albi": 1.35e-07, - "albo": 1.35e-07, - "alderney": 1.35e-07, - "aldus": 1.35e-07, - "aleksey": 1.35e-07, - "alicias": 1.35e-07, - "alinsky": 1.35e-07, - "almshouses": 1.35e-07, - "aloofness": 1.35e-07, - "alpe": 1.35e-07, - "alpena": 1.35e-07, - "amala": 1.35e-07, - "amanita": 1.35e-07, - "ambling": 1.35e-07, - "ambrosius": 1.35e-07, - "ameliorated": 1.35e-07, - "anaesthetics": 1.35e-07, - "angelico": 1.35e-07, - "annis": 1.35e-07, - "anstruther": 1.35e-07, - "anticipations": 1.35e-07, - "aop": 1.35e-07, - "apollon": 1.35e-07, - "aptitudes": 1.35e-07, - "apy": 1.35e-07, - "arabiya": 1.35e-07, - "arachidonic": 1.35e-07, - "arbitrariness": 1.35e-07, - "arezzo": 1.35e-07, - "argosy": 1.35e-07, - "arod": 1.35e-07, - "arsenide": 1.35e-07, - "asamoah": 1.35e-07, - "asan": 1.35e-07, - "ashbourne": 1.35e-07, - "assaf": 1.35e-07, - "asswipe": 1.35e-07, - "astutely": 1.35e-07, - "atheneum": 1.35e-07, - "atmospherics": 1.35e-07, - "atomized": 1.35e-07, - "auer": 1.35e-07, - "ayam": 1.35e-07, - "backlund": 1.35e-07, - "backsides": 1.35e-07, - "badasses": 1.35e-07, - "bahru": 1.35e-07, - "bairns": 1.35e-07, - "bajo": 1.35e-07, - "baldini": 1.35e-07, - "ballards": 1.35e-07, - "ballparks": 1.35e-07, - "barringer": 1.35e-07, - "barro": 1.35e-07, - "basho": 1.35e-07, - "basils": 1.35e-07, - "basile": 1.35e-07, - "bassists": 1.35e-07, - "bayelsa": 1.35e-07, - "beas": 1.07e-07, - "bedraggled": 1.35e-07, - "begonia": 1.35e-07, - "benchers": 1.35e-07, - "benq": 1.35e-07, - "berardi": 1.35e-07, - "bermudez": 1.35e-07, - "berto": 1.35e-07, - "berwyn": 1.35e-07, - "besar": 1.35e-07, - "bga": 1.35e-07, - "bilinguals": 1.35e-07, - "billups": 1.35e-07, - "bingeing": 1.35e-07, - "biogeochemical": 1.35e-07, - "bioluminescence": 1.35e-07, - "blais": 1.35e-07, - "blathering": 1.35e-07, - "blurbs": 1.35e-07, - "bni": 1.35e-07, - "boatyard": 1.35e-07, - "bodin": 1.35e-07, - "bookend": 1.35e-07, - "bookers": 1.17e-07, - "boones": 1.35e-07, - "bossman": 1.35e-07, - "bowmans": 1.35e-07, - "bramall": 1.35e-07, - "bratt": 1.35e-07, - "bricker": 1.35e-07, - "brome": 1.35e-07, - "bronstein": 1.35e-07, - "brushwork": 1.35e-07, - "bubby": 1.35e-07, - "buc": 1.35e-07, - "burdock": 1.35e-07, - "burgher": 1.35e-07, - "bursitis": 1.35e-07, - "bushmaster": 1.35e-07, - "busines": 1.35e-07, - "busybody": 1.35e-07, - "butlins": 1.35e-07, - "butyrate": 1.35e-07, - "buzzcocks": 1.35e-07, - "cackles": 1.35e-07, - "cada": 1.35e-07, - "caiaphas": 1.35e-07, - "cajuns": 1.35e-07, - "campana": 1.35e-07, - "cand": 1.35e-07, - "capably": 1.35e-07, - "carnatic": 1.35e-07, - "carolinian": 1.35e-07, - "carradine": 1.35e-07, - "casi": 1.35e-07, - "catsuit": 1.35e-07, - "cbrn": 1.35e-07, - "cch": 1.35e-07, - "ceasar": 1.35e-07, - "cedarville": 1.35e-07, - "cellino": 1.35e-07, - "ceremoniously": 1.35e-07, - "chainmail": 1.35e-07, - "chalks": 1.35e-07, - "chamfered": 1.35e-07, - "chardon": 1.35e-07, - "chateaubriand": 1.35e-07, - "chateaux": 1.35e-07, - "chieh": 1.35e-07, - "clarkston": 1.35e-07, - "clindamycin": 1.35e-07, - "coffe": 1.35e-07, - "coffeemaker": 1.35e-07, - "cometary": 1.35e-07, - "concomitantly": 1.35e-07, - "conformations": 1.35e-07, - "constantia": 1.35e-07, - "consulship": 1.35e-07, - "contemptuously": 1.35e-07, - "contrapuntal": 1.35e-07, - "corbis": 1.35e-07, - "cornrows": 1.35e-07, - "cosponsor": 1.35e-07, - "costin": 1.35e-07, - "courteously": 1.35e-07, - "cremer": 1.35e-07, - "croom": 1.35e-07, - "crowdfund": 1.35e-07, - "curnow": 1.35e-07, - "cybercriminals": 1.35e-07, - "czarist": 1.35e-07, - "damas": 1.35e-07, - "dannie": 1.35e-07, - "darrens": 1.35e-07, - "dashiell": 1.35e-07, - "databank": 1.35e-07, - "davidoff": 1.35e-07, - "deanne": 1.35e-07, - "decapitating": 1.35e-07, - "decouple": 1.35e-07, - "dek": 1.35e-07, - "deltoid": 1.35e-07, - "democratize": 1.35e-07, - "demonology": 1.35e-07, - "depositor": 1.35e-07, - "dervishes": 1.35e-07, - "detoxify": 1.35e-07, - "deyoung": 1.35e-07, - "dharam": 1.35e-07, - "diaby": 1.35e-07, - "dickenss": 1.35e-07, - "dictionnaire": 1.35e-07, - "dimbleby": 1.35e-07, - "disfigure": 1.35e-07, - "disowning": 1.35e-07, - "dmb": 1.35e-07, - "doggone": 1.35e-07, - "donat": 1.35e-07, - "dorner": 1.35e-07, - "drabble": 1.35e-07, - "drafty": 1.35e-07, - "dratini": 1.35e-07, - "dressmaking": 1.35e-07, - "dujardin": 1.35e-07, - "dunker": 1.35e-07, - "dutertes": 1.35e-07, - "dyche": 1.35e-07, - "earnt": 1.35e-07, - "ebrahim": 1.35e-07, - "ebrd": 1.35e-07, - "ecclesial": 1.35e-07, - "ecd": 1.35e-07, - "edens": 1.32e-07, - "eintracht": 1.35e-07, - "elderberry": 1.35e-07, - "embargoed": 1.35e-07, - "embolization": 1.35e-07, - "enfranchised": 1.35e-07, - "engelhardt": 1.35e-07, - "engg": 1.35e-07, - "entrenchment": 1.35e-07, - "epiphanies": 1.35e-07, - "epochal": 1.35e-07, - "equis": 1.35e-07, - "esrb": 1.35e-07, - "essien": 1.35e-07, - "evaders": 1.35e-07, - "everclear": 1.35e-07, - "eveyone": 1.35e-07, - "ewoks": 1.35e-07, - "facultative": 1.35e-07, - "fairlie": 1.35e-07, - "fajardo": 1.35e-07, - "faxing": 1.35e-07, - "fci": 1.35e-07, - "fels": 1.35e-07, - "fermilab": 1.35e-07, - "ferranti": 1.35e-07, - "festivus": 1.35e-07, - "ffg": 1.35e-07, - "fhwa": 1.35e-07, - "figureheads": 1.35e-07, - "filho": 1.35e-07, - "filmy": 1.35e-07, - "fio": 1.35e-07, - "flapjack": 1.35e-07, - "fledging": 1.35e-07, - "flore": 1.35e-07, - "flotus": 1.35e-07, - "flr": 1.35e-07, - "flyknit": 1.35e-07, - "fogle": 1.35e-07, - "fonzie": 1.35e-07, - "forreal": 1.35e-07, - "foursomes": 1.35e-07, - "framerate": 1.35e-07, - "freest": 1.35e-07, - "freeza": 1.35e-07, - "frenchwoman": 1.35e-07, - "fribourg": 1.35e-07, - "frink": 1.35e-07, - "fru": 1.35e-07, - "fto": 1.35e-07, - "futaba": 1.35e-07, - "gallimard": 1.35e-07, - "gambon": 1.35e-07, - "gametime": 1.35e-07, - "gane": 1.35e-07, - "garang": 1.35e-07, - "gatewood": 1.35e-07, - "gaw": 1.35e-07, - "generalists": 1.35e-07, - "georgiou": 1.35e-07, - "gershom": 1.35e-07, - "ghq": 1.35e-07, - "girdles": 1.35e-07, - "girlies": 1.35e-07, - "giulianis": 1.35e-07, - "gleams": 1.35e-07, - "gnostics": 1.35e-07, - "goji": 1.35e-07, - "golson": 1.35e-07, - "gorey": 1.35e-07, - "gover": 1.35e-07, - "gpas": 1.35e-07, - "gpp": 1.35e-07, - "granulation": 1.35e-07, - "grapevines": 1.35e-07, - "gratefulness": 1.35e-07, - "gravitationally": 1.35e-07, - "greyson": 1.35e-07, - "guesthouses": 1.35e-07, - "guptill": 1.35e-07, - "gussie": 1.35e-07, - "guttering": 1.35e-07, - "gwens": 1.35e-07, - "gye": 1.35e-07, - "hangmans": 1.35e-07, - "hanh": 1.35e-07, - "hanke": 1.35e-07, - "hannaford": 1.35e-07, - "haps": 1.35e-07, - "harr": 1.35e-07, - "hastie": 1.35e-07, - "hatchbacks": 1.35e-07, - "haugh": 1.35e-07, - "haunches": 1.35e-07, - "hawkings": 1.35e-07, - "hayleys": 1.35e-07, - "hebden": 1.35e-07, - "hebridean": 1.35e-07, - "hek": 1.35e-07, - "helenas": 1.35e-07, - "hendrixs": 1.35e-07, - "hepatology": 1.35e-07, - "hetfield": 1.35e-07, - "highball": 1.35e-07, - "hindquarters": 1.35e-07, - "historicism": 1.35e-07, - "holdfast": 1.35e-07, - "holey": 1.35e-07, - "holgate": 1.35e-07, - "homewares": 1.35e-07, - "hootie": 1.35e-07, - "horrify": 1.35e-07, - "hoshino": 1.35e-07, - "hovey": 1.35e-07, - "hpi": 1.35e-07, - "hsd": 1.35e-07, - "hsg": 1.35e-07, - "huf": 1.35e-07, - "hunterdon": 1.35e-07, - "iar": 1.35e-07, - "ibuki": 1.35e-07, - "ical": 1.35e-07, - "iht": 1.35e-07, - "ilyas": 1.35e-07, - "imai": 1.35e-07, - "imbibing": 1.35e-07, - "imprisons": 1.35e-07, - "inestimable": 1.35e-07, - "inferential": 1.35e-07, - "ingenue": 1.35e-07, - "inhofe": 1.35e-07, - "inis": 1.35e-07, - "inno": 1.35e-07, - "instantiated": 1.35e-07, - "intellects": 1.35e-07, - "internees": 1.35e-07, - "introns": 1.35e-07, - "ioan": 1.35e-07, - "ipsec": 1.35e-07, - "ital": 1.35e-07, - "izu": 1.35e-07, - "jacksonian": 1.35e-07, - "jagan": 1.35e-07, - "jaisalmer": 1.35e-07, - "jao": 1.35e-07, - "jaxon": 1.35e-07, - "jeane": 1.35e-07, - "jolies": 1.35e-07, - "jony": 1.35e-07, - "judaea": 1.35e-07, - "juiciest": 1.35e-07, - "kae": 1.35e-07, - "kahns": 1.35e-07, - "kaling": 1.35e-07, - "kalispell": 1.35e-07, - "kamo": 1.35e-07, - "kanaan": 1.35e-07, - "kaput": 1.35e-07, - "karuna": 1.35e-07, - "kawa": 1.35e-07, - "kefir": 1.35e-07, - "keisuke": 1.35e-07, - "kelty": 1.35e-07, - "kembla": 1.35e-07, - "kentuckians": 1.35e-07, - "keown": 1.35e-07, - "kerensky": 1.35e-07, - "kinesthetic": 1.35e-07, - "kinoshita": 1.35e-07, - "kiro": 1.35e-07, - "kitab": 1.35e-07, - "knitter": 1.35e-07, - "koku": 1.35e-07, - "konica": 1.35e-07, - "koon": 1.35e-07, - "kosh": 1.35e-07, - "kotler": 1.35e-07, - "krabby": 1.35e-07, - "kreis": 1.35e-07, - "krish": 1.35e-07, - "kro": 1.35e-07, - "kudu": 1.35e-07, - "kudzu": 1.35e-07, - "kultur": 1.35e-07, - "kunkel": 1.35e-07, - "kupchak": 1.35e-07, - "lackland": 1.35e-07, - "lacrimal": 1.35e-07, - "lancome": 1.35e-07, - "lantz": 1.35e-07, - "lapeer": 1.35e-07, - "laterite": 1.35e-07, - "learnin": 1.35e-07, - "leatherface": 1.35e-07, - "lebrun": 1.35e-07, - "leff": 1.35e-07, - "lefroy": 1.35e-07, - "legalese": 1.35e-07, - "lengthier": 1.35e-07, - "lessig": 1.35e-07, - "lethally": 1.35e-07, - "leva": 1.35e-07, - "levitated": 1.35e-07, - "liberias": 1.35e-07, - "liebherr": 1.35e-07, - "liev": 1.35e-07, - "lightman": 1.35e-07, - "lilongwe": 1.35e-07, - "limey": 1.35e-07, - "linga": 1.35e-07, - "lipitor": 1.35e-07, - "litho": 1.35e-07, - "loanwords": 1.35e-07, - "logician": 1.35e-07, - "lohmann": 1.35e-07, - "lolling": 1.35e-07, - "longa": 1.35e-07, - "longus": 1.35e-07, - "lorax": 1.35e-07, - "lout": 1.35e-07, - "lugged": 1.35e-07, - "luncheons": 1.35e-07, - "lunenburg": 1.35e-07, - "lupa": 1.35e-07, - "lymphedema": 1.35e-07, - "mahe": 1.35e-07, - "mahlers": 1.35e-07, - "mahwah": 1.35e-07, - "maintainability": 1.35e-07, - "majoras": 1.35e-07, - "maleness": 1.35e-07, - "malinga": 1.35e-07, - "manistee": 1.35e-07, - "maoism": 1.35e-07, - "marcuse": 1.35e-07, - "marikana": 1.35e-07, - "marikina": 1.35e-07, - "marjoram": 1.35e-07, - "marland": 1.35e-07, - "marrero": 1.35e-07, - "marriner": 1.35e-07, - "maruyama": 1.35e-07, - "matas": 7.76e-08, - "matinees": 1.35e-07, - "maupassant": 1.35e-07, - "maxon": 1.35e-07, - "maysville": 1.35e-07, - "mayweathers": 1.35e-07, - "mazatlan": 1.35e-07, - "mcandrew": 1.35e-07, - "mcbeal": 1.35e-07, - "mccreery": 1.35e-07, - "mccue": 1.35e-07, - "mcduffie": 1.35e-07, - "mcintire": 1.35e-07, - "mckechnie": 1.35e-07, - "mckeever": 1.35e-07, - "mcmillen": 1.35e-07, - "meaninglessness": 1.35e-07, - "megalopolis": 1.35e-07, - "megrahi": 1.35e-07, - "melchizedek": 1.35e-07, - "menschen": 1.35e-07, - "merrifield": 1.35e-07, - "mesmeric": 1.35e-07, - "metronidazole": 1.35e-07, - "meunier": 1.35e-07, - "mey": 1.35e-07, - "mfer": 1.35e-07, - "michio": 1.35e-07, - "micra": 1.35e-07, - "micronutrient": 1.35e-07, - "middles": 1.35e-07, - "midian": 1.35e-07, - "mightnt": 1.35e-07, - "mineta": 1.35e-07, - "minks": 1.35e-07, - "minsky": 1.35e-07, - "mirotic": 1.35e-07, - "mispronounced": 1.35e-07, - "moberly": 1.35e-07, - "mobilizes": 1.35e-07, - "modish": 1.35e-07, - "moebius": 1.35e-07, - "mohenjo": 1.35e-07, - "molnar": 1.35e-07, - "monae": 1.35e-07, - "moneymaking": 1.35e-07, - "moorhouse": 1.35e-07, - "morans": 1.35e-07, - "morphy": 1.35e-07, - "mostar": 1.35e-07, - "mountie": 1.35e-07, - "moustafa": 1.35e-07, - "moyen": 1.35e-07, - "mpo": 1.35e-07, - "mres": 1.35e-07, - "mucked": 1.35e-07, - "muddling": 1.35e-07, - "multiplexes": 1.35e-07, - "multipoint": 1.35e-07, - "mushtaq": 1.35e-07, - "muth": 1.35e-07, - "mutuality": 1.35e-07, - "myasthenia": 1.35e-07, - "nadals": 1.35e-07, - "naftali": 1.35e-07, - "nahuatl": 1.35e-07, - "naltrexone": 1.35e-07, - "nant": 1.35e-07, - "naphtha": 1.35e-07, - "neenah": 1.35e-07, - "neoconservatives": 1.35e-07, - "nerfed": 1.35e-07, - "nesters": 1.35e-07, - "neurologically": 1.35e-07, - "newsgroup": 1.35e-07, - "newtownards": 1.35e-07, - "nitpick": 1.35e-07, - "nlm": 1.35e-07, - "noaas": 1.35e-07, - "nonpayment": 1.35e-07, - "noontime": 1.35e-07, - "northwestward": 1.35e-07, - "novitiate": 1.35e-07, - "nunu": 1.35e-07, - "nutted": 1.35e-07, - "obed": 1.35e-07, - "obr": 1.35e-07, - "obsesses": 1.35e-07, - "occident": 1.35e-07, - "octal": 1.35e-07, - "odu": 1.35e-07, - "oesophageal": 1.35e-07, - "offed": 1.35e-07, - "okubo": 1.35e-07, - "olle": 1.35e-07, - "onofrio": 1.35e-07, - "opps": 1.35e-07, - "orations": 1.35e-07, - "oratorical": 1.35e-07, - "orfeo": 1.35e-07, - "organelle": 1.35e-07, - "origine": 1.35e-07, - "ossified": 1.35e-07, - "ostentatiously": 1.35e-07, - "osteomyelitis": 1.35e-07, - "oti": 1.35e-07, - "otsuka": 1.35e-07, - "oude": 1.35e-07, - "outsell": 1.35e-07, - "outselling": 1.35e-07, - "overlong": 1.35e-07, - "overstay": 1.35e-07, - "oviduct": 1.35e-07, - "owa": 1.35e-07, - "oxidizes": 1.35e-07, - "oxtail": 1.35e-07, - "pablos": 1.35e-07, - "paca": 1.35e-07, - "packin": 1.35e-07, - "padlocked": 1.35e-07, - "padova": 1.35e-07, - "paiute": 1.35e-07, - "paix": 1.35e-07, - "palanquin": 1.35e-07, - "palu": 1.35e-07, - "palumbo": 1.35e-07, - "pandavas": 1.35e-07, - "panhandling": 1.35e-07, - "pantene": 1.35e-07, - "parsippany": 1.35e-07, - "passin": 1.35e-07, - "paternoster": 1.35e-07, - "pathankot": 1.35e-07, - "peavey": 1.35e-07, - "pedant": 1.35e-07, - "pedicels": 1.35e-07, - "penitential": 1.35e-07, - "perfections": 1.35e-07, - "perineal": 1.35e-07, - "peritoneum": 1.35e-07, - "persimmons": 1.35e-07, - "phablet": 1.35e-07, - "pharos": 1.35e-07, - "phb": 1.35e-07, - "phillys": 1.35e-07, - "phosphors": 1.35e-07, - "physicochemical": 1.35e-07, - "piller": 1.35e-07, - "pisano": 1.35e-07, - "pitchford": 1.35e-07, - "placido": 1.35e-07, - "plaits": 1.35e-07, - "plutocrats": 1.35e-07, - "politik": 1.35e-07, - "pollan": 1.35e-07, - "pontchartrain": 1.35e-07, - "pontificating": 1.35e-07, - "poofy": 1.35e-07, - "poppys": 1.35e-07, - "portents": 1.35e-07, - "portrush": 1.35e-07, - "postmates": 1.35e-07, - "prednisolone": 1.35e-07, - "preschooler": 1.35e-07, - "pretorius": 1.35e-07, - "prins": 1.35e-07, - "prm": 1.35e-07, - "progestin": 1.35e-07, - "protectorates": 1.35e-07, - "protruded": 1.35e-07, - "prudhomme": 1.35e-07, - "publique": 1.35e-07, - "pugsley": 1.35e-07, - "pumbaa": 1.35e-07, - "punchbowl": 1.35e-07, - "purley": 1.35e-07, - "pusey": 1.35e-07, - "quelques": 1.35e-07, - "quieting": 1.35e-07, - "quilty": 1.35e-07, - "raconteur": 1.35e-07, - "radi": 1.35e-07, - "radionuclide": 1.35e-07, - "raghuram": 1.35e-07, - "raheel": 1.35e-07, - "rahway": 1.35e-07, - "ramadhan": 1.35e-07, - "rast": 1.35e-07, - "raters": 1.35e-07, - "rawley": 1.35e-07, - "razr": 1.35e-07, - "reamed": 1.35e-07, - "rebuffs": 1.35e-07, - "reccomend": 1.35e-07, - "reck": 1.35e-07, - "recode": 1.35e-07, - "rectors": 1.35e-07, - "recut": 1.35e-07, - "reddened": 1.35e-07, - "reddington": 1.35e-07, - "reflexology": 1.35e-07, - "reforma": 1.35e-07, - "rehn": 1.35e-07, - "religio": 1.35e-07, - "remitting": 1.35e-07, - "repellents": 1.35e-07, - "republish": 1.35e-07, - "resta": 1.35e-07, - "reticular": 1.35e-07, - "reynaud": 1.35e-07, - "rhenish": 1.35e-07, - "rimmel": 1.35e-07, - "rion": 1.35e-07, - "riskiest": 1.35e-07, - "riverina": 1.35e-07, - "robey": 1.35e-07, - "rockwall": 1.35e-07, - "roddenberry": 1.35e-07, - "roguish": 1.35e-07, - "roid": 1.35e-07, - "roiling": 1.35e-07, - "roisin": 1.35e-07, - "romanization": 1.35e-07, - "roosts": 1.35e-07, - "rosenzweig": 1.35e-07, - "rsr": 1.35e-07, - "rubik": 1.35e-07, - "ruder": 1.35e-07, - "russos": 1.35e-07, - "rva": 1.35e-07, - "ryukyu": 1.35e-07, - "sabe": 1.35e-07, - "sables": 1.35e-07, - "saddling": 1.35e-07, - "sakharov": 1.35e-07, - "salubrious": 1.35e-07, - "samosa": 1.35e-07, - "samu": 1.35e-07, - "sangakkara": 1.35e-07, - "sarfraz": 1.35e-07, - "sbd": 1.35e-07, - "scheherazade": 1.35e-07, - "schizo": 1.35e-07, - "scientifique": 1.35e-07, - "scipione": 1.35e-07, - "scullys": 1.35e-07, - "seabury": 1.35e-07, - "secy": 1.35e-07, - "segunda": 1.35e-07, - "sewa": 1.35e-07, - "shak": 1.35e-07, - "shanley": 1.35e-07, - "sharifs": 1.35e-07, - "sharpies": 1.35e-07, - "sheard": 1.35e-07, - "shirazi": 1.35e-07, - "shm": 1.35e-07, - "shon": 1.35e-07, - "shoud": 1.35e-07, - "shumway": 1.35e-07, - "sias": 6.76e-08, - "sialkot": 1.35e-07, - "sicknesses": 1.35e-07, - "sidelights": 1.35e-07, - "sige": 1.35e-07, - "sillier": 1.35e-07, - "simplifications": 1.35e-07, - "simulacrum": 1.35e-07, - "sinema": 1.35e-07, - "sinfield": 1.35e-07, - "siraj": 1.35e-07, - "skeins": 1.35e-07, - "sledging": 1.35e-07, - "slimane": 1.35e-07, - "slumbers": 1.35e-07, - "smarten": 1.35e-07, - "smiler": 1.35e-07, - "sniveling": 1.35e-07, - "sociales": 1.35e-07, - "soliman": 1.35e-07, - "somnath": 1.35e-07, - "southworth": 1.35e-07, - "speci": 1.35e-07, - "speedball": 1.35e-07, - "speedup": 1.35e-07, - "spermatozoa": 1.35e-07, - "spielman": 1.35e-07, - "spor": 1.35e-07, - "spork": 1.35e-07, - "spymaster": 1.35e-07, - "ssrs": 1.35e-07, - "stablemate": 1.35e-07, - "stackpole": 1.35e-07, - "stadio": 1.35e-07, - "stas": 1.35e-07, - "statesville": 1.35e-07, - "stefans": 1.35e-07, - "stendhal": 1.35e-07, - "stennis": 1.35e-07, - "stoically": 1.35e-07, - "stolz": 1.35e-07, - "stonington": 1.35e-07, - "straker": 1.35e-07, - "strongmen": 1.35e-07, - "strzok": 1.35e-07, - "stubblefield": 1.35e-07, - "studia": 1.35e-07, - "sturtevant": 1.35e-07, - "subletting": 1.35e-07, - "subliminally": 1.35e-07, - "submersion": 1.35e-07, - "sugarland": 1.35e-07, - "sugg": 1.35e-07, - "sugiyama": 1.35e-07, - "sulfides": 1.35e-07, - "sunbeams": 1.35e-07, - "sunbelt": 1.35e-07, - "supernatant": 1.35e-07, - "superset": 1.35e-07, - "suvarnabhumi": 1.35e-07, - "sweetcorn": 1.35e-07, - "swi": 1.35e-07, - "swilling": 1.35e-07, - "switchbacks": 1.35e-07, - "symbolist": 1.35e-07, - "synopses": 1.35e-07, - "tarquin": 1.35e-07, - "taverna": 1.35e-07, - "teenie": 1.35e-07, - "telemachus": 1.35e-07, - "tensioned": 1.35e-07, - "tepe": 1.35e-07, - "terrane": 1.35e-07, - "tescos": 5.89e-08, - "tharoor": 1.35e-07, - "tharp": 1.35e-07, - "thnx": 1.35e-07, - "thompkins": 1.35e-07, - "thrashers": 1.35e-07, - "throbs": 1.35e-07, - "tientsin": 1.35e-07, - "tirpitz": 1.35e-07, - "tjs": 7.59e-08, - "tnr": 1.35e-07, - "toohey": 1.35e-07, - "toolbars": 1.35e-07, - "tooley": 1.35e-07, - "toorak": 1.35e-07, - "toque": 1.35e-07, - "tors": 1.35e-07, - "toshiro": 1.35e-07, - "toty": 1.35e-07, - "tpe": 1.35e-07, - "transience": 1.35e-07, - "transubstantiation": 1.35e-07, - "tremain": 1.35e-07, - "trg": 1.35e-07, - "trivium": 1.35e-07, - "trousseau": 1.35e-07, - "trudi": 1.35e-07, - "trung": 1.35e-07, - "ttg": 1.35e-07, - "tunde": 1.35e-07, - "tvt": 1.35e-07, - "twaddle": 1.35e-07, - "twilights": 6.17e-08, - "tympanum": 1.35e-07, - "typewritten": 1.35e-07, - "uche": 1.35e-07, - "udine": 1.35e-07, - "ullmann": 1.35e-07, - "unabomber": 1.35e-07, - "unbleached": 1.35e-07, - "uneconomical": 1.35e-07, - "unlikeable": 1.35e-07, - "unmoving": 1.35e-07, - "unsociable": 1.35e-07, - "unu": 1.35e-07, - "upcycled": 1.35e-07, - "usurpers": 1.35e-07, - "utan": 1.35e-07, - "valdivia": 1.35e-07, - "valentia": 1.35e-07, - "valuer": 1.35e-07, - "vaulter": 1.35e-07, - "vcd": 1.35e-07, - "veen": 1.35e-07, - "vendettas": 1.35e-07, - "vermicelli": 1.35e-07, - "verney": 1.35e-07, - "vhp": 1.35e-07, - "villard": 1.35e-07, - "vining": 1.35e-07, - "violas": 6.31e-08, - "virgilio": 1.35e-07, - "virtualized": 1.35e-07, - "vizag": 1.35e-07, - "vocalizing": 1.35e-07, - "vodacom": 1.35e-07, - "voronezh": 1.35e-07, - "vouching": 1.35e-07, - "walliams": 1.35e-07, - "watan": 1.35e-07, - "webtoon": 1.35e-07, - "weeny": 1.35e-07, - "welford": 1.35e-07, - "wenner": 1.35e-07, - "whacky": 1.35e-07, - "whatley": 1.35e-07, - "whittemore": 1.35e-07, - "wia": 1.35e-07, - "wigner": 1.35e-07, - "willesden": 1.35e-07, - "winer": 1.35e-07, - "winnetka": 1.35e-07, - "wizz": 1.35e-07, - "wlw": 1.35e-07, - "worksop": 1.35e-07, - "wormed": 1.35e-07, - "wpm": 1.35e-07, - "wsm": 1.35e-07, - "wyclef": 1.35e-07, - "wyomings": 1.35e-07, - "xlvii": 1.35e-07, - "xxxiii": 1.35e-07, - "yavapai": 1.35e-07, - "yekaterinburg": 1.35e-07, - "yerkes": 1.35e-07, - "yogurts": 1.35e-07, - "yokoyama": 1.35e-07, - "yomiuri": 1.35e-07, - "yutaka": 1.35e-07, - "zahara": 1.35e-07, - "zale": 1.35e-07, - "zant": 1.35e-07, - "zeigler": 1.35e-07, - "zephaniah": 1.35e-07, - "zippered": 1.35e-07, - "zondervan": 1.35e-07, - "zyl": 1.35e-07, - "ablett": 1.32e-07, - "absolutly": 1.32e-07, - "absolves": 1.32e-07, - "academe": 1.32e-07, - "accelerant": 1.32e-07, - "accredit": 1.32e-07, - "accuweather": 1.32e-07, - "acqua": 1.32e-07, - "adducts": 1.32e-07, - "aerojet": 1.32e-07, - "agon": 1.32e-07, - "agric": 1.32e-07, - "agronomic": 1.32e-07, - "aharon": 1.32e-07, - "ahuja": 1.32e-07, - "aisi": 1.32e-07, - "aleksandra": 1.32e-07, - "alginate": 1.32e-07, - "allready": 1.32e-07, - "amiright": 1.32e-07, - "ammann": 1.32e-07, - "amv": 1.32e-07, - "anamorphic": 1.32e-07, - "andersonville": 1.32e-07, - "andthe": 1.32e-07, - "animo": 1.32e-07, - "ansible": 1.32e-07, - "anta": 1.32e-07, - "antacid": 1.32e-07, - "antimalarial": 1.32e-07, - "antitumor": 1.32e-07, - "apothecaries": 1.32e-07, - "appellations": 1.32e-07, - "appelle": 1.32e-07, - "appending": 1.32e-07, - "applecare": 1.32e-07, - "aranda": 1.32e-07, - "armie": 1.32e-07, - "aromatase": 1.32e-07, - "aroostook": 1.32e-07, - "aryeh": 1.32e-07, - "ashrae": 1.32e-07, - "ashurst": 1.32e-07, - "assessee": 1.32e-07, - "asymmetries": 1.32e-07, - "atholl": 1.32e-07, - "auster": 1.32e-07, - "avro": 1.32e-07, - "avx": 1.32e-07, - "ayutthaya": 1.32e-07, - "baat": 1.32e-07, - "backhaul": 1.32e-07, - "backwash": 1.32e-07, - "bagot": 1.32e-07, - "bakke": 1.32e-07, - "balin": 1.32e-07, - "baluch": 1.32e-07, - "banes": 6.92e-08, - "banishes": 1.32e-07, - "bantams": 1.32e-07, - "barabbas": 1.32e-07, - "barbecuing": 1.32e-07, - "basinger": 1.32e-07, - "bathory": 1.32e-07, - "baze": 1.32e-07, - "bbg": 1.32e-07, - "beatiful": 1.32e-07, - "becasue": 1.32e-07, - "beeman": 1.32e-07, - "behaviorally": 1.32e-07, - "bellarmine": 1.32e-07, - "belligerence": 1.32e-07, - "belmar": 1.32e-07, - "bergdorf": 1.32e-07, - "berri": 1.32e-07, - "bestival": 1.32e-07, - "bibliophile": 1.32e-07, - "bicentenary": 1.32e-07, - "bielsa": 1.32e-07, - "billow": 1.32e-07, - "binet": 1.32e-07, - "binyamin": 1.32e-07, - "bipartite": 1.32e-07, - "birgitte": 1.32e-07, - "blabbering": 1.32e-07, - "blackfeet": 1.32e-07, - "blacklists": 1.32e-07, - "blackstock": 1.32e-07, - "blakemore": 1.32e-07, - "blart": 1.32e-07, - "bleat": 1.32e-07, - "bleeker": 1.32e-07, - "blinkered": 1.32e-07, - "bloodhounds": 1.32e-07, - "bloodstone": 1.32e-07, - "bluefield": 1.32e-07, - "bluefish": 1.32e-07, - "bnl": 1.32e-07, - "boardgame": 1.32e-07, - "bochy": 1.32e-07, - "bonnies": 5.13e-08, - "boor": 1.32e-07, - "borini": 1.32e-07, - "bornstein": 1.32e-07, - "bostick": 1.32e-07, - "boule": 1.32e-07, - "boxcars": 1.32e-07, - "bozos": 1.32e-07, - "brakeman": 1.32e-07, - "brander": 1.32e-07, - "brasileiro": 1.32e-07, - "brgy": 1.32e-07, - "briquettes": 1.32e-07, - "brixham": 1.32e-07, - "broadwell": 1.32e-07, - "brooklands": 1.32e-07, - "brundle": 1.32e-07, - "brune": 1.32e-07, - "bullshitter": 1.32e-07, - "bumpkin": 1.32e-07, - "butterflys": 1.32e-07, - "cabanas": 1.32e-07, - "cadell": 1.32e-07, - "caden": 1.32e-07, - "cairngorms": 1.32e-07, - "cakey": 1.32e-07, - "calton": 1.32e-07, - "cambio": 1.32e-07, - "caprica": 1.32e-07, - "capsizing": 1.32e-07, - "carlys": 1.32e-07, - "carmax": 1.32e-07, - "carper": 1.32e-07, - "casson": 1.32e-07, - "catalyzing": 1.32e-07, - "catfight": 1.32e-07, - "catz": 1.32e-07, - "caus": 1.32e-07, - "cellulitis": 1.32e-07, - "cenk": 1.32e-07, - "cephalic": 1.32e-07, - "charleroi": 1.32e-07, - "chauffeured": 1.32e-07, - "chay": 1.32e-07, - "cheatham": 1.32e-07, - "chel": 1.32e-07, - "chenango": 1.32e-07, - "chis": 9.77e-08, - "chn": 1.32e-07, - "choirmaster": 1.32e-07, - "chok": 1.32e-07, - "cici": 1.32e-07, - "circulations": 1.32e-07, - "civet": 1.32e-07, - "civilizing": 1.32e-07, - "claudias": 1.32e-07, - "clemence": 1.32e-07, - "clic": 1.32e-07, - "closeout": 1.32e-07, - "clydes": 1.32e-07, - "cmyk": 1.32e-07, - "coahuila": 1.32e-07, - "comex": 1.32e-07, - "compacting": 1.32e-07, - "compassionately": 1.32e-07, - "consolidations": 1.32e-07, - "consorting": 1.32e-07, - "coring": 1.32e-07, - "cosponsored": 1.32e-07, - "counterparties": 1.32e-07, - "crapper": 1.32e-07, - "crasher": 1.32e-07, - "crawlies": 1.32e-07, - "creepypasta": 1.32e-07, - "cremate": 1.32e-07, - "crestview": 1.32e-07, - "crom": 1.32e-07, - "crossman": 1.32e-07, - "culebra": 1.32e-07, - "cumbia": 1.32e-07, - "cyrenaica": 1.32e-07, - "cyrene": 1.32e-07, - "dace": 1.32e-07, - "dalzell": 1.32e-07, - "dampens": 1.32e-07, - "daoist": 1.32e-07, - "darlinghurst": 1.32e-07, - "daron": 1.32e-07, - "dbu": 1.32e-07, - "deadhead": 1.32e-07, - "deforest": 1.32e-07, - "deist": 1.32e-07, - "demilitarization": 1.32e-07, - "depardieu": 1.32e-07, - "depersonalization": 1.32e-07, - "dest": 1.32e-07, - "devant": 1.32e-07, - "devante": 1.32e-07, - "devers": 1.32e-07, - "dewine": 1.32e-07, - "dhan": 1.32e-07, - "dhc": 1.32e-07, - "diazs": 1.32e-07, - "diebold": 1.32e-07, - "dilatation": 1.32e-07, - "dismantles": 1.32e-07, - "dispassionately": 1.32e-07, - "displeasing": 1.32e-07, - "divot": 1.32e-07, - "doch": 1.32e-07, - "docomo": 1.32e-07, - "documentarian": 1.32e-07, - "dortmunds": 1.32e-07, - "dovetailed": 1.32e-07, - "dowsing": 1.32e-07, - "doylestown": 1.32e-07, - "dreier": 1.32e-07, - "drippy": 1.32e-07, - "dryad": 1.32e-07, - "dtr": 1.32e-07, - "duffer": 1.32e-07, - "dulcimer": 1.32e-07, - "dulls": 1.32e-07, - "dunhams": 1.32e-07, - "dunwich": 1.32e-07, - "durhams": 1.32e-07, - "durkheim": 1.32e-07, - "efcc": 1.32e-07, - "efs": 1.32e-07, - "eglin": 1.32e-07, - "ehsan": 1.32e-07, - "eigenvectors": 1.32e-07, - "eliott": 1.32e-07, - "elmendorf": 1.32e-07, - "emad": 1.32e-07, - "encarnacion": 1.32e-07, - "encinitas": 1.32e-07, - "endorsers": 1.32e-07, - "englund": 1.32e-07, - "entrenching": 1.32e-07, - "enumerates": 1.32e-07, - "ept": 1.32e-07, - "equinoxes": 1.32e-07, - "erastus": 1.32e-07, - "erdmann": 1.32e-07, - "erhard": 1.32e-07, - "erne": 1.32e-07, - "etymologically": 1.32e-07, - "evelina": 1.32e-07, - "everquest": 1.32e-07, - "exigencies": 1.32e-07, - "farmhand": 1.32e-07, - "farnum": 1.32e-07, - "fdm": 1.32e-07, - "feedstocks": 1.32e-07, - "feldstein": 1.32e-07, - "feltham": 1.32e-07, - "fenerbahce": 1.32e-07, - "fermat": 1.32e-07, - "ffm": 1.32e-07, - "fgf": 1.32e-07, - "filibustering": 1.32e-07, - "finasteride": 1.32e-07, - "finca": 1.32e-07, - "finial": 1.32e-07, - "finucane": 1.32e-07, - "fisch": 1.32e-07, - "fleischman": 1.32e-07, - "floodlight": 1.32e-07, - "floorboard": 1.32e-07, - "foden": 1.32e-07, - "fodor": 1.32e-07, - "fois": 1.32e-07, - "footmen": 1.32e-07, - "footsie": 1.32e-07, - "forebrain": 1.32e-07, - "formalizing": 1.32e-07, - "fractionated": 1.32e-07, - "framer": 1.32e-07, - "fransisco": 1.32e-07, - "frap": 1.32e-07, - "frelimo": 1.32e-07, - "frolics": 1.32e-07, - "fsd": 1.32e-07, - "fucktard": 1.32e-07, - "fuhrman": 1.32e-07, - "gaddis": 1.32e-07, - "gadfly": 1.32e-07, - "galan": 1.32e-07, - "garba": 1.32e-07, - "gardai": 1.32e-07, - "garlick": 1.32e-07, - "gastonia": 1.32e-07, - "gath": 1.32e-07, - "gaudreau": 1.32e-07, - "geosynchronous": 1.32e-07, - "gervase": 1.32e-07, - "gesticulating": 1.32e-07, - "ghd": 1.32e-07, - "gigas": 1.32e-07, - "glaucous": 1.32e-07, - "glia": 1.32e-07, - "glidden": 1.32e-07, - "glossop": 1.32e-07, - "glowy": 1.32e-07, - "goby": 1.32e-07, - "godden": 1.32e-07, - "gohmert": 1.32e-07, - "goldblatt": 1.32e-07, - "goldenberg": 1.32e-07, - "gortat": 1.32e-07, - "gose": 1.32e-07, - "goulds": 1.32e-07, - "gowanus": 1.32e-07, - "graber": 1.32e-07, - "grails": 1.32e-07, - "grandis": 1.32e-07, - "grazer": 1.32e-07, - "greaser": 1.32e-07, - "griz": 1.32e-07, - "grn": 1.32e-07, - "guilfoyle": 1.32e-07, - "guillen": 1.32e-07, - "gullibility": 1.32e-07, - "gumshoe": 1.32e-07, - "guv": 1.32e-07, - "gyrating": 1.32e-07, - "hadar": 1.32e-07, - "hadn": 1.32e-07, - "haemophilia": 1.32e-07, - "haemorrhagic": 1.32e-07, - "haier": 1.32e-07, - "hakusho": 1.32e-07, - "haliburton": 1.32e-07, - "halp": 1.32e-07, - "handprints": 1.32e-07, - "hankins": 1.32e-07, - "hardt": 1.32e-07, - "harmonia": 1.32e-07, - "hassell": 1.32e-07, - "hata": 1.32e-07, - "hatsune": 1.32e-07, - "haverfordwest": 1.32e-07, - "hayfield": 1.32e-07, - "hebe": 1.32e-07, - "helpin": 1.32e-07, - "hesperia": 1.32e-07, - "heteronormative": 1.32e-07, - "hibachi": 1.32e-07, - "histopathology": 1.32e-07, - "hitchhiked": 1.32e-07, - "hix": 1.32e-07, - "hmos": 1.32e-07, - "hoagie": 1.32e-07, - "hollingworth": 1.32e-07, - "holomorphic": 1.32e-07, - "holter": 1.32e-07, - "homburg": 1.32e-07, - "honeycutt": 1.32e-07, - "hosseini": 1.32e-07, - "humoral": 1.32e-07, - "hup": 1.32e-07, - "hurdling": 1.32e-07, - "icty": 1.32e-07, - "ifp": 1.32e-07, - "ilp": 1.32e-07, - "impersonates": 1.32e-07, - "impious": 1.32e-07, - "imus": 1.32e-07, - "inbounds": 1.32e-07, - "indianola": 1.32e-07, - "inducer": 1.32e-07, - "inelegant": 1.32e-07, - "infirmities": 1.32e-07, - "ingo": 1.32e-07, - "inkster": 1.32e-07, - "inoculations": 1.32e-07, - "instep": 1.32e-07, - "interrogates": 1.32e-07, - "isham": 1.32e-07, - "isreal": 1.32e-07, - "isthmian": 1.32e-07, - "istria": 1.32e-07, - "itza": 1.32e-07, - "iui": 1.32e-07, - "izvestia": 1.32e-07, - "jarry": 1.32e-07, - "jayme": 1.32e-07, - "jealousies": 1.32e-07, - "jedward": 1.32e-07, - "jeebies": 1.32e-07, - "jermyn": 1.32e-07, - "jeromes": 1.32e-07, - "jessen": 1.32e-07, - "jiminy": 1.32e-07, - "jobcentre": 1.32e-07, - "jockstrap": 1.32e-07, - "joppa": 1.32e-07, - "jotting": 1.32e-07, - "jrotc": 1.32e-07, - "judoka": 1.32e-07, - "juliets": 1.32e-07, - "juniata": 1.32e-07, - "juxtaposes": 1.32e-07, - "jynx": 1.32e-07, - "kabc": 1.32e-07, - "kahne": 1.32e-07, - "kalil": 1.32e-07, - "karras": 1.32e-07, - "kathys": 1.32e-07, - "kaufmans": 1.32e-07, - "kayfabe": 1.32e-07, - "kep": 1.32e-07, - "kerberos": 1.32e-07, - "kerchief": 1.32e-07, - "kersten": 1.32e-07, - "kili": 1.32e-07, - "kilian": 1.32e-07, - "killjoys": 1.32e-07, - "kimiko": 1.32e-07, - "kingfish": 1.32e-07, - "kingwood": 1.32e-07, - "kinsale": 1.32e-07, - "kirschner": 1.32e-07, - "kitchin": 1.32e-07, - "klink": 1.32e-07, - "klutz": 1.32e-07, - "knobby": 1.32e-07, - "knockoffs": 1.32e-07, - "knotting": 1.32e-07, - "kod": 1.29e-07, - "koke": 1.32e-07, - "korey": 1.32e-07, - "kra": 1.32e-07, - "kungfu": 1.32e-07, - "kushners": 1.32e-07, - "kwanzaa": 1.32e-07, - "laertes": 1.32e-07, - "lakin": 1.32e-07, - "lamotte": 1.32e-07, - "larkspur": 1.32e-07, - "lassa": 1.32e-07, - "leafing": 1.32e-07, - "lectionary": 1.32e-07, - "legalizes": 1.32e-07, - "lemond": 1.32e-07, - "lenora": 1.32e-07, - "lento": 1.32e-07, - "libbys": 1.32e-07, - "liberalizing": 1.32e-07, - "liesl": 1.32e-07, - "likelier": 1.32e-07, - "lindon": 1.32e-07, - "linnean": 1.32e-07, - "linnet": 1.32e-07, - "linsey": 1.32e-07, - "lipgloss": 1.32e-07, - "lipoproteins": 1.32e-07, - "locklear": 1.32e-07, - "loeffler": 1.32e-07, - "looe": 1.32e-07, - "lordly": 1.32e-07, - "loth": 1.32e-07, - "louw": 1.32e-07, - "lowball": 1.32e-07, - "lowrys": 1.32e-07, - "lub": 1.32e-07, - "ludendorff": 1.32e-07, - "lutheranism": 1.32e-07, - "lynde": 1.32e-07, - "macworld": 1.32e-07, - "magyars": 1.32e-07, - "majoritys": 1.32e-07, - "maks": 1.32e-07, - "maladjusted": 1.32e-07, - "marinus": 1.32e-07, - "markt": 1.32e-07, - "marquesas": 1.32e-07, - "masamune": 1.32e-07, - "masayoshi": 1.32e-07, - "maser": 1.32e-07, - "masoud": 1.32e-07, - "matera": 1.32e-07, - "maybank": 1.32e-07, - "maynooth": 1.32e-07, - "maza": 1.32e-07, - "mazza": 1.32e-07, - "mccaffery": 1.32e-07, - "mcminnville": 1.32e-07, - "mcneese": 1.32e-07, - "mcnutt": 1.32e-07, - "mcsally": 1.32e-07, - "mdg": 1.32e-07, - "mdx": 1.32e-07, - "meadville": 1.32e-07, - "mechanicals": 1.32e-07, - "meda": 1.32e-07, - "megabus": 1.32e-07, - "megalodon": 1.32e-07, - "meis": 1.1e-07, - "meisner": 1.32e-07, - "meno": 1.32e-07, - "menos": 1.32e-07, - "merchandiser": 1.32e-07, - "metzler": 1.32e-07, - "midgard": 1.32e-07, - "millican": 1.32e-07, - "mingles": 1.32e-07, - "minuets": 1.32e-07, - "misfired": 1.32e-07, - "misting": 1.32e-07, - "mitsuru": 1.32e-07, - "mize": 1.32e-07, - "moeen": 1.32e-07, - "mohammadi": 1.32e-07, - "molesworth": 1.32e-07, - "monkfish": 1.32e-07, - "mononoke": 1.32e-07, - "montblanc": 1.32e-07, - "monteverdi": 1.32e-07, - "moonshot": 1.32e-07, - "morant": 1.32e-07, - "morricone": 1.32e-07, - "moulder": 1.32e-07, - "mountaintops": 1.32e-07, - "mountford": 1.32e-07, - "mous": 1.32e-07, - "mouthfuls": 1.32e-07, - "mpm": 1.32e-07, - "mpx": 1.32e-07, - "mths": 1.32e-07, - "multilingualism": 1.32e-07, - "muniz": 1.32e-07, - "musi": 1.32e-07, - "mys": 1.32e-07, - "nabbing": 1.32e-07, - "nadja": 1.32e-07, - "namor": 1.32e-07, - "nans": 6.46e-08, - "nanoscience": 1.32e-07, - "nares": 1.32e-07, - "nasu": 1.32e-07, - "naughtiness": 1.32e-07, - "navidad": 1.32e-07, - "nederlands": 1.32e-07, - "neer": 1.32e-07, - "negi": 1.32e-07, - "neighbourly": 1.32e-07, - "nerv": 1.32e-07, - "newbridge": 1.32e-07, - "newsgroups": 1.32e-07, - "nicolo": 1.32e-07, - "nidhi": 1.32e-07, - "nieman": 1.32e-07, - "nien": 1.32e-07, - "nikolaus": 1.32e-07, - "nonono": 1.32e-07, - "nonplussed": 1.32e-07, - "nootka": 1.32e-07, - "nto": 1.32e-07, - "nucleon": 1.32e-07, - "numismatics": 1.32e-07, - "nung": 1.32e-07, - "nym": 1.32e-07, - "omahony": 1.32e-07, - "oakeshott": 1.32e-07, - "obamacares": 1.32e-07, - "obgyn": 1.32e-07, - "occams": 1.32e-07, - "ocha": 1.32e-07, - "ofelia": 1.32e-07, - "offsides": 1.32e-07, - "ogc": 1.32e-07, - "ogi": 1.32e-07, - "oha": 1.32e-07, - "oligonucleotides": 1.32e-07, - "olu": 1.32e-07, - "omm": 1.32e-07, - "ondrej": 1.32e-07, - "onze": 1.32e-07, - "ooooooh": 1.32e-07, - "opencast": 1.32e-07, - "optimality": 1.32e-07, - "orel": 1.32e-07, - "orta": 1.32e-07, - "ostentation": 1.32e-07, - "otb": 1.32e-07, - "otherside": 1.32e-07, - "outcall": 1.32e-07, - "outfitter": 1.32e-07, - "overhears": 1.32e-07, - "overy": 1.32e-07, - "paar": 1.32e-07, - "paddlers": 1.32e-07, - "palladian": 1.32e-07, - "pandits": 1.32e-07, - "papandreou": 1.32e-07, - "papermaking": 1.32e-07, - "paraphrases": 1.32e-07, - "parfitt": 1.32e-07, - "pariahs": 1.32e-07, - "parlement": 1.32e-07, - "particularities": 1.32e-07, - "passchendaele": 1.32e-07, - "passmore": 1.32e-07, - "patrilineal": 1.32e-07, - "pcso": 1.32e-07, - "peeters": 1.32e-07, - "penarth": 1.32e-07, - "pend": 1.32e-07, - "pentathlon": 1.32e-07, - "pentecostals": 1.32e-07, - "perfectionists": 1.32e-07, - "perfumer": 1.32e-07, - "perryville": 1.32e-07, - "petites": 1.32e-07, - "petrology": 1.32e-07, - "pharmacopoeia": 1.32e-07, - "phila": 1.32e-07, - "philanthropies": 1.32e-07, - "phillis": 1.32e-07, - "phonebook": 1.32e-07, - "physiographic": 1.32e-07, - "pickpocketing": 1.32e-07, - "piecewise": 1.32e-07, - "pilfered": 1.32e-07, - "pillion": 1.32e-07, - "pillory": 1.32e-07, - "placerville": 1.32e-07, - "plage": 1.32e-07, - "poch": 1.32e-07, - "poinsettia": 1.32e-07, - "pokemons": 1.32e-07, - "poling": 1.32e-07, - "polyhedral": 1.32e-07, - "pooches": 1.32e-07, - "porco": 1.32e-07, - "porthos": 1.32e-07, - "portugese": 1.32e-07, - "potheads": 1.32e-07, - "pottinger": 1.32e-07, - "prajapati": 1.32e-07, - "pran": 1.32e-07, - "precognition": 1.32e-07, - "preeminence": 1.32e-07, - "prg": 1.32e-07, - "prodigiously": 1.32e-07, - "proteasome": 1.32e-07, - "pulps": 1.32e-07, - "pulteney": 1.32e-07, - "pulverize": 1.32e-07, - "punkd": 1.32e-07, - "pvd": 1.32e-07, - "pwn": 1.32e-07, - "qassam": 1.32e-07, - "qinghai": 1.32e-07, - "quetzalcoatl": 1.32e-07, - "quibbles": 1.32e-07, - "rabelais": 1.32e-07, - "radian": 1.32e-07, - "rafs": 1.32e-07, - "ragland": 1.32e-07, - "railgun": 1.32e-07, - "rangeland": 1.32e-07, - "rapey": 1.32e-07, - "rastafari": 1.32e-07, - "rattus": 1.32e-07, - "ratu": 1.32e-07, - "rayyan": 1.32e-07, - "rcts": 1.32e-07, - "readouts": 1.32e-07, - "reanimation": 1.32e-07, - "rebutting": 1.32e-07, - "recomend": 1.32e-07, - "recycler": 1.32e-07, - "redland": 1.32e-07, - "reevaluating": 1.32e-07, - "reichs": 6.46e-08, - "reparative": 1.32e-07, - "reshuffled": 1.32e-07, - "respectably": 1.32e-07, - "revelstoke": 1.32e-07, - "rhombus": 1.32e-07, - "ringwald": 1.32e-07, - "rinna": 1.32e-07, - "rinses": 1.32e-07, - "rivalling": 1.32e-07, - "rivkin": 1.32e-07, - "rize": 1.32e-07, - "rohingyas": 1.32e-07, - "rolodex": 1.32e-07, - "romas": 1.32e-07, - "roofline": 1.32e-07, - "rost": 1.32e-07, - "routh": 1.32e-07, - "royces": 6.92e-08, - "rtt": 1.32e-07, - "rustam": 1.32e-07, - "rwandas": 1.32e-07, - "rwc": 1.32e-07, - "sachets": 1.32e-07, - "saenz": 1.32e-07, - "safflower": 1.32e-07, - "saguaro": 1.32e-07, - "sait": 1.32e-07, - "salivate": 1.32e-07, - "salta": 1.32e-07, - "sandras": 1.32e-07, - "saro": 1.32e-07, - "sassuolo": 1.32e-07, - "savchenko": 1.32e-07, - "sbe": 1.32e-07, - "schacht": 1.32e-07, - "schlafly": 1.32e-07, - "schoharie": 1.32e-07, - "scoutmaster": 1.32e-07, - "scraggly": 1.32e-07, - "scrotal": 1.32e-07, - "scuffling": 1.32e-07, - "sdb": 1.32e-07, - "seasickness": 1.32e-07, - "seconding": 1.32e-07, - "sehr": 1.32e-07, - "sempre": 1.32e-07, - "sensationalized": 1.32e-07, - "sensorimotor": 1.32e-07, - "serenading": 1.32e-07, - "servicers": 1.32e-07, - "shaadi": 1.32e-07, - "sheiks": 6.61e-08, - "sheridans": 1.32e-07, - "shevardnadze": 1.32e-07, - "shiel": 1.32e-07, - "shiels": 1.32e-07, - "shik": 1.32e-07, - "shoeing": 1.32e-07, - "shrestha": 1.32e-07, - "shutup": 1.32e-07, - "siddons": 1.32e-07, - "siders": 1.32e-07, - "siempre": 1.32e-07, - "signification": 1.32e-07, - "siphons": 1.32e-07, - "sirna": 1.32e-07, - "sitewide": 1.32e-07, - "sjc": 1.32e-07, - "sloops": 1.32e-07, - "sncc": 1.32e-07, - "snmp": 1.32e-07, - "snog": 1.32e-07, - "sodding": 1.32e-07, - "sodomized": 1.32e-07, - "sols": 8.13e-08, - "sould": 1.32e-07, - "speedsters": 1.32e-07, - "splatters": 1.32e-07, - "spn": 1.32e-07, - "springville": 1.32e-07, - "sprouse": 1.32e-07, - "stabilisers": 1.32e-07, - "stace": 1.32e-07, - "stanger": 1.32e-07, - "stansbury": 1.32e-07, - "stauffenberg": 1.32e-07, - "staunchest": 1.32e-07, - "stegosaurus": 1.32e-07, - "stk": 1.32e-07, - "stokely": 1.32e-07, - "stonemason": 1.32e-07, - "strategical": 1.32e-07, - "striven": 1.32e-07, - "stroganoff": 1.32e-07, - "stroh": 1.32e-07, - "substituent": 1.32e-07, - "suitland": 1.32e-07, - "suleyman": 1.32e-07, - "summative": 1.32e-07, - "sund": 1.32e-07, - "sunnydale": 1.32e-07, - "sunstroke": 1.32e-07, - "supervillains": 1.32e-07, - "suriya": 1.32e-07, - "sweeneys": 1.32e-07, - "switchers": 1.32e-07, - "syllogism": 1.32e-07, - "sysadmin": 1.32e-07, - "taba": 1.32e-07, - "tabernacles": 1.32e-07, - "tainting": 1.32e-07, - "takis": 1.32e-07, - "tamika": 1.32e-07, - "tangiers": 1.32e-07, - "tannen": 1.32e-07, - "tapa": 1.32e-07, - "tarkovsky": 1.32e-07, - "tatsu": 1.32e-07, - "taxicabs": 1.32e-07, - "telepath": 1.32e-07, - "temperley": 1.32e-07, - "tendonitis": 1.32e-07, - "teotihuacan": 1.32e-07, - "terrorise": 1.32e-07, - "testator": 1.32e-07, - "testi": 1.32e-07, - "throwed": 1.32e-07, - "thudding": 1.32e-07, - "tilghman": 1.32e-07, - "tini": 1.32e-07, - "tive": 1.32e-07, - "tlw": 1.32e-07, - "toler": 1.32e-07, - "toners": 1.32e-07, - "tonopah": 1.32e-07, - "transiently": 1.32e-07, - "transmuted": 1.32e-07, - "transpiration": 1.32e-07, - "transposing": 1.32e-07, - "trb": 1.32e-07, - "tretinoin": 1.32e-07, - "tricyclic": 1.32e-07, - "triforce": 1.32e-07, - "triste": 1.32e-07, - "tuchel": 1.32e-07, - "tuh": 1.32e-07, - "turlock": 1.32e-07, - "tutte": 1.32e-07, - "twiddle": 1.32e-07, - "twomey": 1.32e-07, - "udders": 1.32e-07, - "unblocking": 1.32e-07, - "undirected": 1.32e-07, - "unfurling": 1.32e-07, - "unisa": 1.32e-07, - "unitedhealth": 1.32e-07, - "unpardonable": 1.32e-07, - "unpromising": 1.32e-07, - "unscrewed": 1.32e-07, - "unspectacular": 1.32e-07, - "uplifts": 1.32e-07, - "upson": 1.32e-07, - "usar": 1.32e-07, - "ushuaia": 1.32e-07, - "valen": 1.32e-07, - "vani": 1.32e-07, - "vaqueros": 1.32e-07, - "vasoconstriction": 1.32e-07, - "velde": 1.32e-07, - "verger": 1.32e-07, - "versioning": 1.32e-07, - "volkoff": 1.32e-07, - "vtec": 1.32e-07, - "wagnerian": 1.32e-07, - "waley": 1.32e-07, - "wallachia": 1.32e-07, - "walloon": 1.32e-07, - "wallstreet": 1.32e-07, - "warde": 1.32e-07, - "warri": 1.32e-07, - "warringah": 1.32e-07, - "wazoo": 1.32e-07, - "weee": 1.32e-07, - "welty": 1.32e-07, - "wemyss": 1.32e-07, - "wend": 1.32e-07, - "wheal": 1.32e-07, - "wheatstone": 1.32e-07, - "whipper": 1.32e-07, - "whitetail": 1.32e-07, - "whooshing": 1.32e-07, - "wickersham": 1.32e-07, - "wike": 1.32e-07, - "wille": 1.32e-07, - "willems": 1.32e-07, - "windu": 1.32e-07, - "wingtip": 1.32e-07, - "wintered": 1.32e-07, - "winterthur": 1.32e-07, - "wintery": 1.32e-07, - "wipro": 1.32e-07, - "witha": 1.32e-07, - "woodcutter": 1.32e-07, - "woodie": 1.32e-07, - "worrell": 1.32e-07, - "wreathed": 1.32e-07, - "wriggled": 1.32e-07, - "writin": 1.32e-07, - "wwa": 1.32e-07, - "wynter": 1.32e-07, - "xli": 1.32e-07, - "xxxiv": 1.32e-07, - "yare": 1.32e-07, - "yeahs": 1.32e-07, - "younes": 1.32e-07, - "yushchenko": 1.32e-07, - "yvon": 1.32e-07, - "yw": 1.32e-07, - "zama": 1.32e-07, - "zelig": 1.32e-07, - "zumas": 1.32e-07, - "zuri": 1.32e-07, - "ablution": 1.29e-07, - "aborigine": 1.29e-07, - "abovementioned": 1.29e-07, - "accu": 1.29e-07, - "activex": 1.29e-07, - "affordably": 1.29e-07, - "agadir": 1.29e-07, - "agog": 1.29e-07, - "agreeably": 1.29e-07, - "aguinaldo": 1.29e-07, - "aichi": 1.29e-07, - "alawites": 1.29e-07, - "alberton": 1.29e-07, - "albu": 1.29e-07, - "alcalde": 1.29e-07, - "alcides": 1.29e-07, - "algerias": 1.29e-07, - "aljazeera": 1.29e-07, - "allergist": 1.29e-07, - "aloo": 1.29e-07, - "alvis": 1.29e-07, - "alyn": 1.29e-07, - "amba": 1.29e-07, - "ambala": 1.29e-07, - "amm": 1.29e-07, - "andersens": 1.29e-07, - "andras": 1.29e-07, - "andresen": 1.29e-07, - "angulo": 1.29e-07, - "animaniacs": 1.29e-07, - "anju": 1.29e-07, - "annus": 1.29e-07, - "anthropoid": 1.29e-07, - "antislavery": 1.29e-07, - "aou": 1.29e-07, - "apeshit": 1.29e-07, - "apna": 1.29e-07, - "appleyard": 1.29e-07, - "arcanum": 1.29e-07, - "armagnac": 1.29e-07, - "arslan": 1.29e-07, - "asanas": 1.29e-07, - "assail": 1.29e-07, - "assented": 1.29e-07, - "atomics": 1.29e-07, - "attitudinal": 1.29e-07, - "audie": 1.29e-07, - "audiophiles": 1.29e-07, - "audreys": 1.29e-07, - "authorises": 1.29e-07, - "autoantibodies": 1.29e-07, - "autochthonous": 1.29e-07, - "autocrats": 1.29e-07, - "avni": 1.29e-07, - "aylward": 1.29e-07, - "baath": 1.29e-07, - "bachelet": 1.29e-07, - "backbreaking": 1.29e-07, - "backscatter": 1.29e-07, - "badman": 1.29e-07, - "badrinath": 1.29e-07, - "bakugou": 1.29e-07, - "balon": 1.29e-07, - "balrog": 1.29e-07, - "bambang": 1.29e-07, - "banh": 1.29e-07, - "bankable": 1.29e-07, - "bann": 1.29e-07, - "barbiturate": 1.29e-07, - "barboza": 1.29e-07, - "barco": 1.29e-07, - "barefooted": 1.29e-07, - "barfield": 1.29e-07, - "barnstorming": 1.29e-07, - "barranquilla": 1.29e-07, - "beadwork": 1.29e-07, - "becouse": 1.29e-07, - "beim": 1.29e-07, - "beka": 1.29e-07, - "bellend": 1.29e-07, - "benedikt": 1.29e-07, - "benefices": 1.29e-07, - "berchtesgaden": 1.29e-07, - "bete": 1.29e-07, - "biba": 1.29e-07, - "biennially": 1.29e-07, - "blackberrys": 7.59e-08, - "blaisdell": 1.29e-07, - "blowhole": 1.29e-07, - "boardgames": 1.29e-07, - "bods": 1.29e-07, - "bolas": 1.29e-07, - "bolasie": 1.29e-07, - "bootable": 1.29e-07, - "borghese": 1.29e-07, - "borodin": 1.29e-07, - "bost": 1.29e-07, - "bothell": 1.29e-07, - "bougainvillea": 1.29e-07, - "boughton": 1.29e-07, - "bourdon": 1.29e-07, - "bowens": 1.29e-07, - "bracketing": 1.29e-07, - "braniff": 1.29e-07, - "brashear": 1.29e-07, - "brauns": 1.29e-07, - "breedlove": 1.29e-07, - "breve": 1.29e-07, - "brewerys": 1.29e-07, - "brightman": 1.29e-07, - "buenaventura": 1.29e-07, - "buganda": 1.29e-07, - "bukhara": 1.29e-07, - "bulmer": 1.29e-07, - "bunion": 1.29e-07, - "bunions": 1.29e-07, - "burling": 1.29e-07, - "burros": 1.29e-07, - "burstein": 1.29e-07, - "bused": 1.29e-07, - "businessperson": 1.29e-07, - "buuuut": 1.29e-07, - "cabrini": 1.29e-07, - "cajoling": 1.29e-07, - "calma": 1.29e-07, - "caltrain": 1.29e-07, - "campeche": 1.29e-07, - "canticle": 1.29e-07, - "cappuccinos": 1.29e-07, - "caramels": 1.29e-07, - "carillion": 1.29e-07, - "carob": 1.29e-07, - "carolla": 1.29e-07, - "cartographers": 1.29e-07, - "catan": 1.29e-07, - "catfishing": 1.29e-07, - "celebes": 1.29e-07, - "ceremonially": 1.29e-07, - "chale": 1.29e-07, - "charioteer": 1.29e-07, - "chartier": 1.29e-07, - "chavs": 1.29e-07, - "cheerily": 1.29e-07, - "chell": 1.29e-07, - "chiding": 1.29e-07, - "chirped": 1.29e-07, - "chortle": 1.29e-07, - "chowing": 1.29e-07, - "chuen": 1.29e-07, - "chukchi": 1.29e-07, - "clairmont": 1.29e-07, - "cliftonville": 1.29e-07, - "clipart": 1.29e-07, - "cloche": 1.29e-07, - "cockfighting": 1.29e-07, - "codifying": 1.29e-07, - "coh": 1.29e-07, - "coit": 1.29e-07, - "colloids": 1.29e-07, - "comber": 1.29e-07, - "comercio": 1.29e-07, - "comforters": 1.29e-07, - "comity": 1.29e-07, - "commerzbank": 1.29e-07, - "comport": 1.29e-07, - "comprehends": 1.29e-07, - "concessionary": 1.29e-07, - "confectioner": 1.29e-07, - "contaminates": 1.29e-07, - "continuities": 1.29e-07, - "convexity": 1.29e-07, - "cooktown": 1.29e-07, - "coppell": 1.29e-07, - "coppolas": 1.29e-07, - "counsell": 1.29e-07, - "coupland": 1.29e-07, - "covenanters": 1.29e-07, - "covetous": 1.29e-07, - "cratered": 1.29e-07, - "creon": 1.29e-07, - "crisscrossing": 1.29e-07, - "crosslinking": 1.29e-07, - "cvp": 1.29e-07, - "cyclase": 1.29e-07, - "cyp": 1.29e-07, - "dalkeith": 1.29e-07, - "danae": 1.29e-07, - "dappy": 1.29e-07, - "darmian": 1.29e-07, - "dbc": 1.29e-07, - "debutantes": 1.29e-07, - "decease": 1.29e-07, - "decisionmaking": 1.29e-07, - "decluttering": 1.29e-07, - "defacto": 1.29e-07, - "definitly": 1.29e-07, - "delis": 1.29e-07, - "dellinger": 1.29e-07, - "demba": 1.29e-07, - "demers": 1.29e-07, - "demonetisation": 1.29e-07, - "dempseys": 1.29e-07, - "deportes": 1.29e-07, - "depps": 1.29e-07, - "detaches": 1.29e-07, - "devastates": 1.29e-07, - "dever": 1.29e-07, - "devons": 1.29e-07, - "dewayne": 1.29e-07, - "dhoom": 1.29e-07, - "dickinsons": 1.29e-07, - "dictaphone": 1.29e-07, - "diphosphate": 1.29e-07, - "direc": 1.29e-07, - "discotheque": 1.29e-07, - "discourteous": 1.29e-07, - "dither": 1.29e-07, - "doff": 1.29e-07, - "dogmatism": 1.29e-07, - "doily": 1.29e-07, - "dokkan": 1.29e-07, - "dramatizing": 1.29e-07, - "draven": 1.29e-07, - "drb": 1.29e-07, - "drea": 1.29e-07, - "dremel": 1.29e-07, - "drovers": 1.29e-07, - "dsu": 1.29e-07, - "duckie": 1.29e-07, - "ductal": 1.29e-07, - "dungy": 1.29e-07, - "duplications": 1.29e-07, - "dyne": 1.29e-07, - "dys": 1.29e-07, - "eave": 1.29e-07, - "edberg": 1.29e-07, - "edler": 1.29e-07, - "eider": 1.29e-07, - "ejecta": 1.29e-07, - "electrophysiological": 1.29e-07, - "emba": 1.29e-07, - "embroideries": 1.29e-07, - "emulsifier": 1.29e-07, - "encouragingly": 1.29e-07, - "enought": 1.29e-07, - "enunciation": 1.29e-07, - "erol": 1.29e-07, - "essayists": 1.29e-07, - "estrogenic": 1.29e-07, - "eternals": 1.29e-07, - "etheric": 1.29e-07, - "etv": 1.29e-07, - "eugenes": 1.29e-07, - "eveline": 1.29e-07, - "eventide": 1.29e-07, - "exonerating": 1.29e-07, - "exoskeletons": 1.29e-07, - "expiation": 1.29e-07, - "exynos": 1.29e-07, - "factsheet": 1.29e-07, - "fairclough": 1.29e-07, - "fantasizes": 1.29e-07, - "fargos": 1.29e-07, - "fearnley": 1.29e-07, - "feeler": 1.29e-07, - "felis": 1.29e-07, - "ferrers": 1.29e-07, - "ferriss": 1.29e-07, - "fessenden": 1.29e-07, - "fhd": 1.29e-07, - "filibusters": 1.29e-07, - "finke": 1.29e-07, - "firebomb": 1.29e-07, - "firefights": 1.29e-07, - "flagellum": 1.29e-07, - "fleetingly": 1.29e-07, - "flory": 1.29e-07, - "fmf": 1.29e-07, - "foraminifera": 1.29e-07, - "foxglove": 1.29e-07, - "franko": 1.29e-07, - "frid": 1.29e-07, - "froch": 1.29e-07, - "froyo": 1.29e-07, - "fruitvale": 1.29e-07, - "ftir": 1.29e-07, - "functionalist": 1.29e-07, - "funereal": 1.29e-07, - "fxx": 1.29e-07, - "fye": 1.29e-07, - "gaimans": 1.29e-07, - "gangbusters": 1.29e-07, - "garoppolo": 1.29e-07, - "garrow": 1.29e-07, - "garrulous": 1.29e-07, - "gatiss": 1.29e-07, - "gatton": 1.29e-07, - "gaudi": 1.29e-07, - "gcn": 1.29e-07, - "gdm": 1.29e-07, - "genderless": 1.29e-07, - "geophysicist": 1.29e-07, - "germanicus": 1.29e-07, - "gherkin": 1.29e-07, - "gigante": 1.29e-07, - "giovani": 1.29e-07, - "glaciated": 1.29e-07, - "glaswegian": 1.29e-07, - "glaxo": 1.29e-07, - "gle": 1.29e-07, - "globulin": 1.29e-07, - "gns": 1.29e-07, - "goggins": 1.29e-07, - "goleta": 1.29e-07, - "goodale": 1.29e-07, - "goodwins": 1.29e-07, - "gotye": 1.29e-07, - "gpd": 1.29e-07, - "grable": 1.29e-07, - "grammarian": 1.29e-07, - "grampians": 1.29e-07, - "grazes": 1.29e-07, - "greenough": 1.29e-07, - "grep": 1.29e-07, - "griner": 1.29e-07, - "groat": 1.29e-07, - "guardrails": 1.29e-07, - "gugu": 1.29e-07, - "gusher": 1.29e-07, - "gva": 1.29e-07, - "haberdashery": 1.29e-07, - "hadleigh": 1.29e-07, - "hage": 1.29e-07, - "hamzah": 1.29e-07, - "handprint": 1.29e-07, - "handwashing": 1.29e-07, - "handwork": 1.29e-07, - "hanno": 1.29e-07, - "haplotypes": 1.29e-07, - "hardboiled": 1.29e-07, - "hardee": 1.29e-07, - "hardison": 1.29e-07, - "harith": 1.29e-07, - "harmonically": 1.29e-07, - "hartleys": 1.29e-07, - "hct": 1.29e-07, - "headscarves": 1.29e-07, - "heedless": 1.29e-07, - "heflin": 1.29e-07, - "helicobacter": 1.29e-07, - "hellos": 1.29e-07, - "hematologic": 1.29e-07, - "hendy": 1.29e-07, - "herby": 1.29e-07, - "herdsman": 1.29e-07, - "heredia": 1.29e-07, - "hestia": 1.29e-07, - "heymann": 1.29e-07, - "hgs": 1.29e-07, - "highfield": 1.29e-07, - "hilson": 1.29e-07, - "hilversum": 1.29e-07, - "hixon": 1.29e-07, - "hochschule": 1.29e-07, - "holywell": 1.29e-07, - "homebuilding": 1.29e-07, - "hoochie": 1.29e-07, - "hoofed": 1.29e-07, - "hooman": 1.29e-07, - "hoorah": 1.29e-07, - "horcruxes": 1.29e-07, - "hosokawa": 1.29e-07, - "hotwire": 1.29e-07, - "hsl": 1.29e-07, - "hubbards": 1.29e-07, - "hungama": 1.29e-07, - "hydrogels": 1.29e-07, - "idealization": 1.29e-07, - "igc": 1.29e-07, - "ihave": 1.29e-07, - "iihs": 1.29e-07, - "ilfracombe": 1.29e-07, - "illumina": 1.29e-07, - "immunohistochemical": 1.29e-07, - "immunohistochemistry": 1.29e-07, - "impactor": 1.29e-07, - "impugn": 1.29e-07, - "inconveniently": 1.29e-07, - "indexer": 1.29e-07, - "individualised": 1.29e-07, - "inflaming": 1.29e-07, - "inhg": 1.29e-07, - "insigne": 1.29e-07, - "interglacial": 1.29e-07, - "interrelationships": 1.29e-07, - "intrust": 1.29e-07, - "invitee": 1.29e-07, - "ironical": 1.29e-07, - "isb": 1.29e-07, - "ivica": 1.29e-07, - "iza": 1.29e-07, - "jahrbuch": 1.29e-07, - "javert": 1.29e-07, - "jenin": 1.29e-07, - "jepson": 1.29e-07, - "jigger": 1.29e-07, - "jirga": 1.29e-07, - "jmp": 1.29e-07, - "jocko": 1.29e-07, - "johnsen": 1.29e-07, - "jolson": 1.29e-07, - "juggalos": 1.29e-07, - "kac": 1.29e-07, - "kagami": 1.29e-07, - "kaisa": 1.29e-07, - "kaplans": 1.29e-07, - "karunanidhi": 1.29e-07, - "kazumi": 1.29e-07, - "kcc": 1.29e-07, - "kcs": 6.92e-08, - "keatons": 1.29e-07, - "keenest": 1.29e-07, - "keeney": 1.29e-07, - "keiji": 1.29e-07, - "keine": 1.29e-07, - "kellan": 1.29e-07, - "kerrie": 1.29e-07, - "kerwin": 1.29e-07, - "ketoacidosis": 1.29e-07, - "khalaf": 1.29e-07, - "khurshid": 1.29e-07, - "kiba": 1.29e-07, - "kickboxer": 1.29e-07, - "kilotons": 1.29e-07, - "kimmels": 1.29e-07, - "kine": 1.29e-07, - "kingsguard": 1.29e-07, - "kislyak": 1.29e-07, - "kiting": 1.29e-07, - "kmc": 1.29e-07, - "knowl": 1.29e-07, - "koller": 1.29e-07, - "koryo": 1.29e-07, - "koskinen": 1.29e-07, - "krasnaya": 1.29e-07, - "krell": 1.29e-07, - "kru": 1.29e-07, - "krul": 1.29e-07, - "kuban": 1.29e-07, - "kuwaits": 1.29e-07, - "kyodo": 1.29e-07, - "laetitia": 1.29e-07, - "lalla": 1.29e-07, - "lampedusa": 1.29e-07, - "lamson": 1.29e-07, - "lancastrian": 1.29e-07, - "langa": 1.29e-07, - "lapp": 1.29e-07, - "laterals": 1.29e-07, - "laudatory": 1.29e-07, - "laughingly": 1.29e-07, - "lavoisier": 1.29e-07, - "leaderships": 1.23e-07, - "leashed": 1.29e-07, - "leilani": 1.29e-07, - "leonean": 1.29e-07, - "lessees": 1.29e-07, - "leverett": 1.29e-07, - "lewa": 1.29e-07, - "lewdness": 1.29e-07, - "lgbtqia": 1.29e-07, - "lias": 3.8e-08, - "lieb": 1.29e-07, - "lilliput": 1.29e-07, - "linq": 1.29e-07, - "literatur": 1.29e-07, - "litvinenko": 1.29e-07, - "locksmiths": 1.29e-07, - "logicians": 1.29e-07, - "longhouse": 1.29e-07, - "looove": 1.29e-07, - "loquacious": 1.29e-07, - "lothario": 1.29e-07, - "lotz": 1.29e-07, - "lpo": 1.29e-07, - "lpr": 1.29e-07, - "lsb": 1.29e-07, - "lumi": 1.29e-07, - "lynwood": 1.29e-07, - "macaron": 1.29e-07, - "maccoll": 1.29e-07, - "macd": 1.29e-07, - "mahers": 1.29e-07, - "maina": 1.29e-07, - "mainstreet": 1.29e-07, - "majora": 1.29e-07, - "malaika": 1.29e-07, - "malting": 1.29e-07, - "malu": 1.29e-07, - "mandelbaum": 1.29e-07, - "manhandling": 1.29e-07, - "manningham": 1.29e-07, - "manzoni": 1.29e-07, - "maracas": 1.29e-07, - "marleau": 1.29e-07, - "matsuri": 1.29e-07, - "mausoleums": 1.29e-07, - "mcdade": 1.29e-07, - "medially": 1.29e-07, - "medicina": 1.29e-07, - "medicinally": 1.29e-07, - "mef": 1.29e-07, - "mehmed": 1.29e-07, - "melayu": 1.29e-07, - "melisandre": 1.29e-07, - "menai": 1.29e-07, - "menorca": 1.29e-07, - "menudo": 1.29e-07, - "mercutio": 1.29e-07, - "merriweather": 1.29e-07, - "mervin": 1.29e-07, - "merz": 1.29e-07, - "metabolizing": 1.29e-07, - "metamaterials": 1.29e-07, - "metropolises": 1.29e-07, - "mexicano": 1.29e-07, - "mft": 1.29e-07, - "mhmm": 1.29e-07, - "miah": 1.29e-07, - "michail": 1.29e-07, - "mikan": 1.29e-07, - "mimis": 5.13e-08, - "misspent": 1.29e-07, - "mke": 1.29e-07, - "mockups": 1.29e-07, - "mois": 1.29e-07, - "monism": 1.29e-07, - "monoclinic": 1.29e-07, - "monsta": 1.29e-07, - "moodle": 1.29e-07, - "moonraker": 1.29e-07, - "morphologies": 1.29e-07, - "moscone": 1.29e-07, - "mossman": 1.29e-07, - "mouser": 1.29e-07, - "mpt": 1.29e-07, - "msds": 1.29e-07, - "mucha": 1.29e-07, - "mujica": 1.29e-07, - "mult": 1.29e-07, - "multigenerational": 1.29e-07, - "naar": 1.29e-07, - "nahyan": 1.29e-07, - "naipaul": 1.29e-07, - "nairo": 1.29e-07, - "nameplates": 1.29e-07, - "nandita": 1.29e-07, - "nantwich": 1.29e-07, - "natacha": 1.29e-07, - "neediness": 1.29e-07, - "neeraj": 1.29e-07, - "netsuite": 1.29e-07, - "nettleton": 1.29e-07, - "newson": 1.29e-07, - "nfb": 1.29e-07, - "niebuhr": 1.29e-07, - "nietzschean": 1.29e-07, - "nightwear": 1.29e-07, - "nims": 1.29e-07, - "nonrefundable": 1.29e-07, - "northwoods": 1.29e-07, - "nostalgically": 1.29e-07, - "novena": 1.29e-07, - "nuria": 1.29e-07, - "nxp": 1.29e-07, - "nyi": 1.29e-07, - "nypds": 1.29e-07, - "oflaherty": 1.29e-07, - "oap": 1.29e-07, - "observables": 1.29e-07, - "obviate": 1.29e-07, - "oglesby": 1.29e-07, - "oligomers": 1.29e-07, - "operands": 1.29e-07, - "opprobrium": 1.29e-07, - "oregonians": 1.29e-07, - "organza": 1.29e-07, - "oris": 1.29e-07, - "osei": 1.29e-07, - "oses": 1.29e-07, - "osteosarcoma": 1.29e-07, - "oudh": 1.29e-07, - "ouroboros": 1.29e-07, - "outflanked": 1.29e-07, - "outhouses": 1.29e-07, - "overachiever": 1.29e-07, - "overbite": 1.29e-07, - "overcapacity": 1.29e-07, - "overwriting": 1.29e-07, - "paak": 1.29e-07, - "palaeontologist": 1.29e-07, - "palouse": 1.29e-07, - "panopticon": 1.29e-07, - "panton": 1.29e-07, - "paparazzo": 1.29e-07, - "papp": 1.29e-07, - "paraglider": 1.29e-07, - "parameterized": 1.29e-07, - "parasols": 1.29e-07, - "parsimony": 1.29e-07, - "participles": 1.29e-07, - "parveen": 1.29e-07, - "patmos": 1.29e-07, - "pearland": 1.29e-07, - "pedagogic": 1.29e-07, - "pedis": 1.29e-07, - "penalise": 1.29e-07, - "penfold": 1.29e-07, - "peppering": 1.29e-07, - "perdido": 1.29e-07, - "perishes": 1.29e-07, - "perspiring": 1.29e-07, - "pfff": 1.29e-07, - "pgc": 1.29e-07, - "phages": 1.29e-07, - "phloem": 1.29e-07, - "phot": 1.29e-07, - "photog": 1.29e-07, - "physik": 1.29e-07, - "pib": 1.29e-07, - "pinafore": 1.29e-07, - "placating": 1.29e-07, - "plaited": 1.29e-07, - "plasmon": 1.29e-07, - "playas": 1.29e-07, - "plumed": 1.29e-07, - "plunk": 1.29e-07, - "pnl": 1.29e-07, - "polito": 1.29e-07, - "poshmark": 1.29e-07, - "poston": 1.29e-07, - "potentialities": 1.29e-07, - "poundland": 1.29e-07, - "powerplants": 1.29e-07, - "preconception": 1.29e-07, - "preggers": 1.29e-07, - "prehensile": 1.29e-07, - "preservationists": 1.29e-07, - "printmaker": 1.29e-07, - "profil": 1.29e-07, - "promenades": 1.29e-07, - "prostaglandins": 1.29e-07, - "pryde": 1.29e-07, - "ptl": 1.29e-07, - "puli": 1.29e-07, - "puno": 1.29e-07, - "puranas": 1.29e-07, - "purkinje": 1.29e-07, - "pussycats": 1.29e-07, - "pustules": 1.29e-07, - "qts": 1.29e-07, - "questa": 1.29e-07, - "questo": 1.29e-07, - "ramazan": 1.29e-07, - "randstad": 1.29e-07, - "ratcliff": 1.29e-07, - "rathbun": 1.29e-07, - "realestate": 1.29e-07, - "realigning": 1.29e-07, - "reanalysis": 1.29e-07, - "rebeca": 1.29e-07, - "receptivity": 1.29e-07, - "reconfigurable": 1.29e-07, - "recurve": 1.29e-07, - "redpath": 1.29e-07, - "reema": 1.29e-07, - "religionists": 1.29e-07, - "remediate": 1.29e-07, - "remini": 1.29e-07, - "reneging": 1.29e-07, - "renfro": 1.29e-07, - "repsol": 1.29e-07, - "reptilians": 1.29e-07, - "reseda": 1.29e-07, - "resettling": 1.29e-07, - "reshma": 1.29e-07, - "retinoic": 1.29e-07, - "retread": 1.29e-07, - "rgs": 1.29e-07, - "rhinelander": 1.29e-07, - "rhoa": 1.29e-07, - "riggers": 1.29e-07, - "rivoli": 1.29e-07, - "rogaine": 1.29e-07, - "rosco": 1.29e-07, - "roseburg": 1.29e-07, - "rothesay": 1.29e-07, - "rpr": 1.29e-07, - "rudds": 1.29e-07, - "ruddock": 1.29e-07, - "rums": 1.29e-07, - "ruperts": 1.29e-07, - "russellville": 1.29e-07, - "rutherglen": 1.29e-07, - "rydberg": 1.29e-07, - "rydell": 1.29e-07, - "ryoma": 1.29e-07, - "sackcloth": 1.29e-07, - "safar": 1.29e-07, - "salvadors": 1.29e-07, - "samburu": 1.29e-07, - "saml": 1.29e-07, - "sandinistas": 1.29e-07, - "sandlot": 1.29e-07, - "sarang": 1.29e-07, - "sarcophagi": 1.29e-07, - "sarsaparilla": 1.29e-07, - "satirists": 1.29e-07, - "satirized": 1.29e-07, - "satori": 1.29e-07, - "satyrs": 1.29e-07, - "savants": 1.29e-07, - "schiaparelli": 1.29e-07, - "schiele": 1.29e-07, - "schlosser": 1.29e-07, - "schmucks": 1.29e-07, - "schwarzkopf": 1.29e-07, - "scola": 1.29e-07, - "scoreboards": 1.29e-07, - "scours": 1.29e-07, - "screamo": 1.29e-07, - "sctv": 1.29e-07, - "seamer": 1.29e-07, - "seamstresses": 1.29e-07, - "seductress": 1.29e-07, - "sefer": 1.29e-07, - "sehgal": 1.29e-07, - "seiler": 1.29e-07, - "seldon": 1.29e-07, - "sellouts": 1.29e-07, - "senhor": 1.29e-07, - "shadowhunters": 1.29e-07, - "shakib": 1.29e-07, - "shalit": 1.29e-07, - "shallowly": 1.29e-07, - "shearling": 1.29e-07, - "sheetz": 1.29e-07, - "sheldons": 1.29e-07, - "shenmue": 1.29e-07, - "shepherded": 1.29e-07, - "shero": 1.29e-07, - "sherriff": 1.29e-07, - "shoko": 1.29e-07, - "shored": 1.29e-07, - "showery": 1.29e-07, - "showoff": 1.29e-07, - "siler": 1.29e-07, - "silty": 1.29e-07, - "sinfulness": 1.29e-07, - "siouxsie": 1.29e-07, - "sitc": 1.29e-07, - "sitch": 1.29e-07, - "skf": 1.29e-07, - "slacked": 1.29e-07, - "slimani": 1.29e-07, - "slimline": 1.29e-07, - "smeaton": 1.29e-07, - "sng": 1.29e-07, - "sny": 1.29e-07, - "sobers": 1.29e-07, - "sobriquet": 1.29e-07, - "solipsism": 1.29e-07, - "sonal": 1.29e-07, - "sonnen": 1.29e-07, - "sorrentino": 1.29e-07, - "soundless": 1.29e-07, - "souther": 1.29e-07, - "spectrums": 5.75e-08, - "splashdown": 1.29e-07, - "spluttering": 1.29e-07, - "stagecraft": 1.29e-07, - "stela": 1.29e-07, - "stephon": 1.29e-07, - "stewardesses": 1.29e-07, - "stickney": 1.29e-07, - "stimpy": 1.29e-07, - "stonewalled": 1.29e-07, - "strabismus": 1.29e-07, - "struve": 1.29e-07, - "subarctic": 1.29e-07, - "subhas": 1.29e-07, - "submarginal": 1.29e-07, - "subramaniam": 1.29e-07, - "suess": 1.29e-07, - "suffocates": 1.29e-07, - "suna": 1.29e-07, - "sunniest": 1.29e-07, - "supernaturally": 1.29e-07, - "surveil": 1.29e-07, - "swapo": 1.29e-07, - "sweeny": 1.29e-07, - "sza": 1.29e-07, - "tach": 1.29e-07, - "taliaferro": 1.29e-07, - "taliesin": 1.29e-07, - "taranto": 1.29e-07, - "taters": 1.29e-07, - "tatted": 1.29e-07, - "tavi": 1.29e-07, - "taylormade": 1.29e-07, - "teabags": 1.29e-07, - "tensioning": 1.29e-07, - "thereunder": 1.29e-07, - "thess": 1.29e-07, - "thessalonica": 1.29e-07, - "thrombin": 1.29e-07, - "thrombus": 1.29e-07, - "thune": 1.29e-07, - "thuy": 1.29e-07, - "tiesto": 1.29e-07, - "tilney": 1.29e-07, - "timespan": 1.29e-07, - "tipoff": 1.29e-07, - "tlx": 1.29e-07, - "toller": 1.29e-07, - "tomasi": 1.29e-07, - "topix": 1.29e-07, - "torte": 1.29e-07, - "tounge": 1.29e-07, - "traeger": 1.29e-07, - "transparencies": 1.29e-07, - "travelin": 1.29e-07, - "treacherously": 1.29e-07, - "tremayne": 1.29e-07, - "tribesman": 1.29e-07, - "trifled": 1.29e-07, - "troponin": 1.29e-07, - "trumpism": 1.29e-07, - "tsvangirai": 1.29e-07, - "tte": 1.29e-07, - "tuchman": 1.29e-07, - "tuffy": 1.29e-07, - "tumbleweeds": 1.29e-07, - "turbojet": 1.29e-07, - "turgenev": 1.29e-07, - "tutus": 1.29e-07, - "twerp": 1.29e-07, - "twh": 1.29e-07, - "tyreke": 1.29e-07, - "ube": 1.29e-07, - "uehara": 1.29e-07, - "unbending": 1.29e-07, - "unburdened": 1.29e-07, - "underrate": 1.29e-07, - "understeer": 1.29e-07, - "unexpressed": 1.29e-07, - "universidade": 1.29e-07, - "unnoticeable": 1.29e-07, - "unrecoverable": 1.29e-07, - "uomo": 1.29e-07, - "usdas": 1.29e-07, - "usfs": 1.29e-07, - "vacationed": 1.29e-07, - "vagal": 1.29e-07, - "valenciennes": 1.29e-07, - "vallecano": 1.29e-07, - "vanishingly": 1.29e-07, - "veiling": 1.29e-07, - "verbier": 1.29e-07, - "verboten": 1.29e-07, - "verena": 1.29e-07, - "vesicular": 1.29e-07, - "vezina": 1.29e-07, - "vibing": 1.29e-07, - "villalobos": 1.29e-07, - "vindicates": 1.29e-07, - "visio": 1.29e-07, - "voit": 1.29e-07, - "voom": 1.29e-07, - "waid": 1.29e-07, - "waitressing": 1.29e-07, - "walkley": 1.29e-07, - "wantin": 1.29e-07, - "warpaint": 1.29e-07, - "watermarked": 1.29e-07, - "waterson": 1.29e-07, - "wattles": 1.29e-07, - "weet": 1.29e-07, - "wellingborough": 1.29e-07, - "whitestone": 1.29e-07, - "wideman": 1.29e-07, - "wiesenthal": 1.29e-07, - "wilburn": 1.29e-07, - "wilden": 1.29e-07, - "wildrose": 1.29e-07, - "wilko": 1.29e-07, - "willam": 1.29e-07, - "windrush": 1.29e-07, - "winship": 1.29e-07, - "winstead": 1.29e-07, - "wisbech": 1.29e-07, - "withe": 1.29e-07, - "wizened": 1.29e-07, - "wll": 1.29e-07, - "wnbl": 1.29e-07, - "wrappings": 1.29e-07, - "wyse": 1.29e-07, - "xhamster": 1.29e-07, - "xscape": 1.29e-07, - "yachtsman": 1.29e-07, - "yaqui": 1.29e-07, - "yeller": 1.29e-07, - "yeomans": 1.29e-07, - "yhe": 1.29e-07, - "yigal": 1.29e-07, - "yk": 1.29e-07, - "ysgol": 1.29e-07, - "zigzagging": 1.29e-07, - "zigzags": 1.29e-07, - "zita": 1.29e-07, - "aaaaaand": 1.26e-07, - "aahh": 1.26e-07, - "abarth": 1.26e-07, - "abdelaziz": 1.26e-07, - "abeokuta": 1.26e-07, - "abigails": 1.26e-07, - "acco": 1.26e-07, - "acrostic": 1.26e-07, - "actuate": 1.26e-07, - "adamu": 1.26e-07, - "adas": 9.77e-08, - "adie": 1.26e-07, - "aerodynamically": 1.26e-07, - "afforestation": 1.26e-07, - "agrippina": 1.26e-07, - "ahimsa": 1.26e-07, - "ailey": 1.26e-07, - "akins": 1.26e-07, - "akufo": 1.26e-07, - "alaikum": 1.26e-07, - "alprazolam": 1.26e-07, - "alucard": 1.26e-07, - "amarna": 1.26e-07, - "anabel": 1.26e-07, - "anachronisms": 1.26e-07, - "analogously": 1.26e-07, - "ananya": 1.26e-07, - "angostura": 1.26e-07, - "anos": 1.26e-07, - "anticonvulsant": 1.26e-07, - "aoba": 1.26e-07, - "apennines": 1.26e-07, - "aph": 1.26e-07, - "arbutus": 1.26e-07, - "archi": 1.26e-07, - "arcturus": 1.26e-07, - "arithmetical": 1.26e-07, - "arminian": 1.26e-07, - "asco": 1.26e-07, - "askance": 1.26e-07, - "asmara": 1.26e-07, - "aspirate": 1.26e-07, - "athelstan": 1.26e-07, - "atn": 1.26e-07, - "atreus": 1.26e-07, - "atte": 1.26e-07, - "aydin": 1.26e-07, - "bacha": 1.26e-07, - "bacolod": 1.26e-07, - "bacteriologist": 1.26e-07, - "baekje": 1.26e-07, - "bagchi": 1.26e-07, - "baio": 1.26e-07, - "balcombe": 1.26e-07, - "baleen": 1.26e-07, - "balti": 1.26e-07, - "bandido": 1.26e-07, - "banos": 1.26e-07, - "barnier": 1.26e-07, - "baulk": 1.26e-07, - "bazillion": 1.26e-07, - "beachwood": 1.26e-07, - "beate": 1.26e-07, - "begbie": 1.26e-07, - "beholding": 1.26e-07, - "belittles": 1.26e-07, - "bellona": 1.26e-07, - "belvidere": 1.26e-07, - "benaud": 1.26e-07, - "benicio": 1.26e-07, - "benj": 1.26e-07, - "beri": 1.26e-07, - "bernat": 1.26e-07, - "bevis": 1.26e-07, - "bhalla": 1.26e-07, - "biao": 1.26e-07, - "biller": 1.26e-07, - "binny": 1.26e-07, - "biogenic": 1.26e-07, - "bionics": 1.26e-07, - "bioreactor": 1.26e-07, - "bioremediation": 1.26e-07, - "birchwood": 1.26e-07, - "birders": 1.26e-07, - "birr": 1.26e-07, - "bismark": 1.26e-07, - "blared": 1.26e-07, - "blindspot": 1.26e-07, - "blithering": 1.26e-07, - "blunderbuss": 1.26e-07, - "bobbitt": 1.26e-07, - "boddy": 1.26e-07, - "bodkin": 1.26e-07, - "bonzo": 1.26e-07, - "boonies": 1.26e-07, - "borman": 1.26e-07, - "borstal": 1.26e-07, - "bowring": 1.26e-07, - "bridgegate": 1.26e-07, - "britannic": 1.26e-07, - "broder": 1.26e-07, - "brookdale": 1.26e-07, - "browed": 1.26e-07, - "brubeck": 1.26e-07, - "bryden": 1.26e-07, - "bullsh": 1.26e-07, - "burnishing": 1.26e-07, - "burnouts": 1.26e-07, - "butz": 1.26e-07, - "byng": 1.26e-07, - "caca": 1.26e-07, - "caillou": 1.26e-07, - "calligrapher": 1.26e-07, - "cambrai": 1.26e-07, - "cannibalize": 1.26e-07, - "cantors": 1.26e-07, - "capela": 1.26e-07, - "carin": 1.26e-07, - "carine": 1.26e-07, - "carjacked": 1.26e-07, - "carlsson": 1.26e-07, - "carrow": 1.26e-07, - "cartes": 1.26e-07, - "caryn": 1.26e-07, - "cassady": 1.26e-07, - "castiglione": 1.26e-07, - "catched": 1.26e-07, - "catterick": 1.26e-07, - "caul": 1.26e-07, - "ccn": 1.26e-07, - "cella": 1.26e-07, - "cemetary": 1.26e-07, - "cfg": 1.26e-07, - "chairpersons": 1.26e-07, - "chalices": 1.26e-07, - "chaminade": 1.26e-07, - "chandrasekhar": 1.26e-07, - "charmian": 1.26e-07, - "chattels": 1.26e-07, - "chaudhuri": 1.26e-07, - "chavo": 1.26e-07, - "cheapo": 1.26e-07, - "cheon": 1.26e-07, - "chewable": 1.26e-07, - "chicana": 1.26e-07, - "chillers": 1.26e-07, - "chimamanda": 1.26e-07, - "chode": 1.26e-07, - "choudhary": 1.26e-07, - "chukka": 1.26e-07, - "chuo": 1.26e-07, - "cienega": 1.26e-07, - "ciprofloxacin": 1.26e-07, - "claytons": 1.26e-07, - "clegane": 1.26e-07, - "clooneys": 1.26e-07, - "cloudiness": 1.26e-07, - "coladas": 1.26e-07, - "commercializing": 1.26e-07, - "compartmentalize": 1.26e-07, - "comptia": 1.26e-07, - "condorcet": 1.26e-07, - "congreve": 1.26e-07, - "constantius": 1.26e-07, - "continence": 1.26e-07, - "converses": 1.26e-07, - "convolutional": 1.26e-07, - "coppery": 1.26e-07, - "cotillion": 1.26e-07, - "cottonmouth": 1.26e-07, - "courbet": 1.26e-07, - "couse": 1.26e-07, - "creds": 1.26e-07, - "cresting": 1.26e-07, - "crh": 1.26e-07, - "cringes": 1.26e-07, - "cromwells": 1.26e-07, - "crookes": 1.26e-07, - "crouches": 1.26e-07, - "crumpet": 1.26e-07, - "crybabies": 1.26e-07, - "cueing": 1.26e-07, - "cvn": 1.26e-07, - "cyclades": 1.26e-07, - "cyclosporine": 1.26e-07, - "czars": 1.26e-07, - "daguerreotype": 1.26e-07, - "dahan": 1.26e-07, - "dairying": 1.26e-07, - "dallin": 1.26e-07, - "damascene": 1.26e-07, - "damiano": 1.26e-07, - "danang": 1.26e-07, - "danone": 1.26e-07, - "darl": 1.26e-07, - "darragh": 1.26e-07, - "daventry": 1.26e-07, - "dawlish": 1.26e-07, - "dcl": 1.26e-07, - "ddl": 1.26e-07, - "deakins": 1.26e-07, - "debase": 1.26e-07, - "decoction": 1.26e-07, - "decontaminated": 1.26e-07, - "deflectors": 1.26e-07, - "derailleur": 1.26e-07, - "destabilising": 1.26e-07, - "destructively": 1.26e-07, - "desultory": 1.26e-07, - "deval": 1.26e-07, - "dewa": 1.26e-07, - "dhe": 1.26e-07, - "diagon": 1.26e-07, - "diatom": 1.26e-07, - "diffident": 1.26e-07, - "diggy": 1.26e-07, - "dilating": 1.26e-07, - "dillons": 1.26e-07, - "dimond": 1.26e-07, - "disequilibrium": 1.26e-07, - "disgracefully": 1.26e-07, - "dislocating": 1.26e-07, - "dismally": 1.26e-07, - "diverticulitis": 1.26e-07, - "divisors": 1.26e-07, - "doke": 1.26e-07, - "doles": 1.26e-07, - "dominics": 1.26e-07, - "donegan": 1.26e-07, - "dopes": 1.26e-07, - "doppelgangers": 1.26e-07, - "dorf": 1.26e-07, - "doro": 1.26e-07, - "dressler": 1.26e-07, - "dtt": 1.26e-07, - "dulling": 1.26e-07, - "dyce": 1.26e-07, - "dysart": 1.26e-07, - "easa": 1.26e-07, - "eastport": 1.26e-07, - "eddard": 1.26e-07, - "edel": 1.26e-07, - "edg": 1.26e-07, - "effervescence": 1.26e-07, - "effete": 1.26e-07, - "eigen": 1.26e-07, - "elastomeric": 1.26e-07, - "elastomers": 1.26e-07, - "elfman": 1.26e-07, - "elijahs": 1.26e-07, - "eloi": 1.26e-07, - "embassys": 1.26e-07, - "emme": 1.26e-07, - "emptor": 1.26e-07, - "ennio": 1.26e-07, - "enrages": 1.26e-07, - "enviroment": 1.26e-07, - "epg": 1.26e-07, - "erina": 1.26e-07, - "erlanger": 1.26e-07, - "erythrocyte": 1.26e-07, - "espirito": 1.26e-07, - "esser": 1.26e-07, - "estas": 1.26e-07, - "estoy": 1.26e-07, - "etruria": 1.26e-07, - "eurythmics": 1.26e-07, - "eventuate": 1.26e-07, - "exa": 1.26e-07, - "excoriated": 1.26e-07, - "expe": 1.26e-07, - "expounds": 1.26e-07, - "expropriate": 1.26e-07, - "extensibility": 1.26e-07, - "extensional": 1.26e-07, - "falla": 1.26e-07, - "farge": 1.26e-07, - "fatiguing": 1.26e-07, - "fatt": 1.26e-07, - "faubourg": 1.26e-07, - "faulkners": 1.26e-07, - "fbo": 1.26e-07, - "fearne": 1.26e-07, - "femtosecond": 1.26e-07, - "ferments": 1.26e-07, - "fernald": 1.26e-07, - "fetter": 1.26e-07, - "fictionalised": 1.26e-07, - "fidelis": 1.26e-07, - "fidler": 1.26e-07, - "figgins": 1.26e-07, - "finaly": 1.26e-07, - "firmin": 1.26e-07, - "flashs": 1.26e-07, - "flatt": 1.26e-07, - "flipboard": 1.26e-07, - "flippantly": 1.26e-07, - "flutist": 1.26e-07, - "fnl": 1.26e-07, - "fof": 1.26e-07, - "folkways": 1.26e-07, - "followin": 1.26e-07, - "foremans": 1.26e-07, - "formalist": 1.26e-07, - "fortes": 1.26e-07, - "foxe": 1.26e-07, - "fpm": 1.26e-07, - "frederickson": 1.26e-07, - "freind": 1.26e-07, - "frenchies": 1.26e-07, - "frugally": 1.26e-07, - "fruitlessly": 1.26e-07, - "fsr": 1.26e-07, - "fti": 1.26e-07, - "ftv": 1.26e-07, - "functionalized": 1.26e-07, - "furth": 1.26e-07, - "fylde": 1.26e-07, - "gadolinium": 1.26e-07, - "gamedev": 1.26e-07, - "garbutt": 1.26e-07, - "garrys": 1.26e-07, - "gashes": 1.26e-07, - "gatekeeping": 1.26e-07, - "gazans": 1.26e-07, - "gbps": 1.26e-07, - "gcr": 1.26e-07, - "geb": 1.26e-07, - "geena": 1.26e-07, - "geezers": 1.26e-07, - "geld": 1.26e-07, - "genderqueer": 1.26e-07, - "gener": 1.26e-07, - "germano": 1.26e-07, - "germinating": 1.26e-07, - "gilbertson": 1.26e-07, - "gillie": 1.26e-07, - "gillon": 1.26e-07, - "gimenez": 1.26e-07, - "gleb": 1.26e-07, - "glocks": 1.26e-07, - "glorias": 1.26e-07, - "gnabry": 1.26e-07, - "gobbles": 1.26e-07, - "goshawk": 1.26e-07, - "gosse": 1.26e-07, - "gotg": 1.26e-07, - "goulet": 1.26e-07, - "granta": 1.26e-07, - "gravimetric": 1.26e-07, - "grazers": 1.26e-07, - "grb": 1.26e-07, - "greases": 1.26e-07, - "greenlee": 1.26e-07, - "greve": 1.26e-07, - "grimmer": 1.26e-07, - "grommet": 1.26e-07, - "gtb": 1.26e-07, - "guardhouse": 1.26e-07, - "gulab": 1.26e-07, - "gwp": 1.26e-07, - "gyno": 1.26e-07, - "haberman": 1.26e-07, - "hahahahah": 1.26e-07, - "hahahahahahaha": 1.26e-07, - "hailee": 1.26e-07, - "hairpiece": 1.26e-07, - "hakka": 1.26e-07, - "haleigh": 1.26e-07, - "halfs": 6.76e-08, - "halitosis": 1.26e-07, - "halverson": 1.26e-07, - "hammersley": 1.26e-07, - "haridwar": 1.26e-07, - "hathaways": 1.26e-07, - "haystacks": 1.26e-07, - "haytham": 1.26e-07, - "hazare": 1.26e-07, - "hazeltine": 1.26e-07, - "heartiest": 1.26e-07, - "heheh": 1.26e-07, - "heliopolis": 1.26e-07, - "hellers": 1.26e-07, - "helly": 1.26e-07, - "helmuth": 1.26e-07, - "heloise": 1.26e-07, - "hemsley": 1.26e-07, - "herath": 1.26e-07, - "herrin": 1.26e-07, - "hezbollahs": 1.26e-07, - "hider": 1.26e-07, - "higuchi": 1.26e-07, - "hildebrandt": 1.26e-07, - "hinde": 1.26e-07, - "hinojosa": 1.26e-07, - "hisoka": 1.26e-07, - "historiographical": 1.26e-07, - "historique": 1.26e-07, - "hizbullah": 1.26e-07, - "hocks": 1.26e-07, - "holbrooke": 1.26e-07, - "holdovers": 1.26e-07, - "holywood": 1.26e-07, - "homebush": 1.26e-07, - "homemaking": 1.26e-07, - "hormel": 1.26e-07, - "hota": 1.26e-07, - "huberman": 1.26e-07, - "humidor": 1.26e-07, - "hutus": 1.26e-07, - "hyperpigmentation": 1.26e-07, - "ickes": 1.26e-07, - "ielts": 1.26e-07, - "ifsc": 1.26e-07, - "iglesia": 1.26e-07, - "ilb": 1.26e-07, - "illiterates": 1.26e-07, - "illya": 1.26e-07, - "ilocos": 1.26e-07, - "ilyich": 1.26e-07, - "immer": 1.26e-07, - "impost": 1.26e-07, - "impugned": 1.26e-07, - "inari": 1.26e-07, - "incivility": 1.26e-07, - "indigestible": 1.26e-07, - "inescapably": 1.26e-07, - "ingratiating": 1.26e-07, - "insensible": 1.26e-07, - "interlacing": 1.26e-07, - "intermingle": 1.26e-07, - "interreligious": 1.26e-07, - "invisalign": 1.26e-07, - "ioa": 1.26e-07, - "isas": 5.25e-08, - "issy": 1.26e-07, - "iya": 1.26e-07, - "jacki": 1.26e-07, - "jaromir": 1.26e-07, - "jaron": 1.26e-07, - "jerkoff": 1.26e-07, - "jetski": 1.26e-07, - "jibril": 1.26e-07, - "jiggs": 1.26e-07, - "jobseeker": 1.26e-07, - "jokowi": 1.26e-07, - "joondalup": 1.26e-07, - "jordie": 1.26e-07, - "jordyn": 1.26e-07, - "jorgen": 1.26e-07, - "juggalo": 1.26e-07, - "juvie": 1.26e-07, - "kaneki": 1.26e-07, - "kani": 1.26e-07, - "karishma": 1.26e-07, - "kasten": 1.26e-07, - "kayaker": 1.26e-07, - "kherson": 1.26e-07, - "kief": 1.26e-07, - "kieffer": 1.26e-07, - "kieren": 1.26e-07, - "kinfolk": 1.26e-07, - "kingpins": 1.26e-07, - "kirchhoff": 1.26e-07, - "kitamura": 1.26e-07, - "komo": 1.26e-07, - "kopitar": 1.26e-07, - "kort": 1.26e-07, - "kras": 1.26e-07, - "krishan": 1.26e-07, - "kuei": 1.26e-07, - "kurtzman": 1.26e-07, - "kweli": 1.26e-07, - "kwesi": 1.26e-07, - "lade": 1.26e-07, - "lahood": 1.26e-07, - "larkins": 1.2e-07, - "larsons": 1.26e-07, - "latvias": 1.26e-07, - "lavoie": 1.26e-07, - "lawal": 1.26e-07, - "lawnmowers": 1.26e-07, - "laycock": 1.26e-07, - "leagueoflegends": 1.26e-07, - "learjet": 1.26e-07, - "leeching": 1.26e-07, - "lehr": 1.26e-07, - "lehtinen": 1.26e-07, - "leibovitz": 1.26e-07, - "lene": 1.26e-07, - "lfg": 1.26e-07, - "liebig": 1.26e-07, - "likeliest": 1.26e-07, - "lindor": 1.26e-07, - "lippe": 1.26e-07, - "lippert": 1.26e-07, - "lockable": 1.26e-07, - "longline": 1.26e-07, - "lool": 1.26e-07, - "lota": 1.26e-07, - "lowden": 1.26e-07, - "ltda": 1.26e-07, - "lucretius": 1.26e-07, - "lukin": 1.26e-07, - "lungu": 1.26e-07, - "luthier": 1.26e-07, - "mable": 1.26e-07, - "maclin": 1.26e-07, - "maidana": 1.26e-07, - "makerere": 1.26e-07, - "malabsorption": 1.26e-07, - "malcontents": 1.26e-07, - "mangy": 1.26e-07, - "manilas": 1.26e-07, - "manoeuvrability": 1.26e-07, - "mantri": 1.26e-07, - "mardy": 1.26e-07, - "marfan": 1.26e-07, - "margit": 1.26e-07, - "maribel": 1.26e-07, - "marriageable": 1.26e-07, - "masako": 1.26e-07, - "maybelle": 1.26e-07, - "mayville": 1.26e-07, - "mazzini": 1.26e-07, - "mccarter": 1.26e-07, - "mcgoldrick": 1.26e-07, - "mckernan": 1.26e-07, - "mcquade": 1.26e-07, - "meb": 1.26e-07, - "megabits": 1.26e-07, - "megara": 1.26e-07, - "meiotic": 1.26e-07, - "mejor": 1.26e-07, - "melb": 1.26e-07, - "mellie": 1.26e-07, - "mends": 1.26e-07, - "mercys": 1.26e-07, - "messieurs": 1.26e-07, - "microbrewery": 1.26e-07, - "microchipped": 1.26e-07, - "micromanaging": 1.26e-07, - "microspheres": 1.26e-07, - "miers": 1.26e-07, - "mija": 1.26e-07, - "mikoto": 1.26e-07, - "militar": 1.26e-07, - "minders": 1.26e-07, - "minifigures": 1.26e-07, - "minimisation": 1.26e-07, - "minimises": 1.26e-07, - "mirada": 1.26e-07, - "mirages": 1.26e-07, - "mistrusted": 1.26e-07, - "mithras": 1.26e-07, - "mjs": 1.26e-07, - "mlr": 1.26e-07, - "mmu": 1.26e-07, - "mochizuki": 1.26e-07, - "mofos": 1.26e-07, - "mohicans": 1.26e-07, - "mohini": 1.26e-07, - "mousavi": 1.26e-07, - "muggings": 1.26e-07, - "multifarious": 1.26e-07, - "multiphase": 1.26e-07, - "munshi": 1.26e-07, - "mushrooming": 1.26e-07, - "mutational": 1.26e-07, - "nabeel": 1.26e-07, - "napper": 1.26e-07, - "narciso": 1.26e-07, - "nativism": 1.26e-07, - "natsumi": 1.26e-07, - "naveed": 1.26e-07, - "nays": 1.26e-07, - "neatest": 1.26e-07, - "neca": 1.26e-07, - "negroni": 1.26e-07, - "nibali": 1.26e-07, - "nicos": 8.13e-08, - "nicolet": 1.26e-07, - "nippers": 1.26e-07, - "noblesville": 1.26e-07, - "nonfunctional": 1.26e-07, - "nonlinearity": 1.26e-07, - "nul": 1.26e-07, - "nunzio": 1.26e-07, - "nygaard": 1.26e-07, - "nyquil": 1.26e-07, - "odea": 1.26e-07, - "oakridge": 1.26e-07, - "oam": 1.26e-07, - "obafemi": 1.26e-07, - "obeisance": 1.26e-07, - "obrador": 1.26e-07, - "obstructionism": 1.26e-07, - "oddballs": 1.26e-07, - "odder": 1.26e-07, - "odense": 1.26e-07, - "olcott": 1.26e-07, - "omnipresence": 1.26e-07, - "omv": 1.26e-07, - "onee": 1.26e-07, - "operon": 1.26e-07, - "opo": 1.26e-07, - "opti": 1.26e-07, - "orchestrator": 1.26e-07, - "orono": 1.26e-07, - "osteopath": 1.26e-07, - "oswaldo": 1.26e-07, - "outstrips": 1.26e-07, - "paderborn": 1.26e-07, - "pangasinan": 1.26e-07, - "papel": 1.26e-07, - "paramounts": 1.26e-07, - "pathogenicity": 1.26e-07, - "patrolmen": 1.26e-07, - "paule": 1.26e-07, - "pavlovian": 1.26e-07, - "pendulous": 1.26e-07, - "pepito": 1.26e-07, - "pericardium": 1.26e-07, - "pertwee": 1.26e-07, - "petrovic": 1.26e-07, - "physiognomy": 1.26e-07, - "pictou": 1.26e-07, - "pif": 1.26e-07, - "pinna": 1.26e-07, - "piquet": 1.26e-07, - "plagiarize": 1.26e-07, - "platonism": 1.26e-07, - "platteville": 1.26e-07, - "plumped": 1.26e-07, - "pocketbooks": 1.26e-07, - "poeple": 1.26e-07, - "polytechnics": 1.26e-07, - "poore": 1.26e-07, - "popp": 1.26e-07, - "portables": 1.26e-07, - "pouted": 1.26e-07, - "poynton": 1.26e-07, - "prang": 1.26e-07, - "precis": 1.26e-07, - "preferment": 1.26e-07, - "preinstalled": 1.26e-07, - "prescience": 1.26e-07, - "preternatural": 1.26e-07, - "protozoan": 1.26e-07, - "provincials": 1.26e-07, - "psus": 1.26e-07, - "psychogenic": 1.26e-07, - "puddin": 1.26e-07, - "puppeteers": 1.26e-07, - "purpura": 1.26e-07, - "pushpa": 1.26e-07, - "pyar": 1.26e-07, - "quacking": 1.26e-07, - "quadrillion": 1.26e-07, - "queiroz": 1.26e-07, - "quilter": 1.26e-07, - "rafsanjani": 1.26e-07, - "rahat": 1.26e-07, - "rajas": 8.51e-08, - "rajkumar": 1.26e-07, - "rajputs": 1.26e-07, - "ramakrishnan": 1.26e-07, - "rane": 1.26e-07, - "rantings": 1.26e-07, - "rapaport": 1.26e-07, - "raphaels": 1.26e-07, - "rasool": 1.26e-07, - "ratifies": 1.26e-07, - "rbl": 1.26e-07, - "reactance": 1.26e-07, - "reactivating": 1.26e-07, - "reapportionment": 1.26e-07, - "reasonings": 1.26e-07, - "recieving": 1.26e-07, - "recollected": 1.26e-07, - "reconfirmed": 1.26e-07, - "redhat": 1.26e-07, - "redistributive": 1.26e-07, - "redlining": 1.26e-07, - "reductionism": 1.26e-07, - "reentering": 1.26e-07, - "reestablishment": 1.26e-07, - "reformatted": 1.26e-07, - "refracting": 1.26e-07, - "regio": 1.26e-07, - "reinvents": 1.26e-07, - "rens": 8.71e-08, - "renames": 1.26e-07, - "renaults": 1.26e-07, - "renu": 1.26e-07, - "repairers": 1.26e-07, - "reshuffling": 1.26e-07, - "retributive": 1.26e-07, - "reu": 1.26e-07, - "revelled": 1.26e-07, - "revelling": 1.26e-07, - "reviewable": 1.26e-07, - "ril": 1.26e-07, - "rimsky": 1.26e-07, - "rist": 1.26e-07, - "riverrun": 1.26e-07, - "rmx": 1.26e-07, - "rnase": 1.26e-07, - "rodolphe": 1.26e-07, - "rof": 1.26e-07, - "roguelike": 1.26e-07, - "romanized": 1.26e-07, - "romilly": 1.26e-07, - "roquefort": 1.26e-07, - "rosella": 1.26e-07, - "rotorcraft": 1.26e-07, - "rovere": 1.26e-07, - "roya": 1.26e-07, - "rudiger": 1.26e-07, - "ruffed": 1.26e-07, - "rummaged": 1.26e-07, - "runnymede": 1.26e-07, - "rwa": 1.26e-07, - "rylands": 1.26e-07, - "sackler": 1.26e-07, - "saddlebags": 1.26e-07, - "saltpeter": 1.26e-07, - "sandilands": 1.26e-07, - "santamaria": 1.26e-07, - "sapient": 1.26e-07, - "sates": 1.26e-07, - "saudia": 1.26e-07, - "saurons": 1.26e-07, - "savouring": 1.26e-07, - "scalias": 1.26e-07, - "schultze": 1.26e-07, - "scobie": 1.26e-07, - "scotto": 1.26e-07, - "scudamore": 1.26e-07, - "seatac": 1.26e-07, - "secord": 1.26e-07, - "sectioning": 1.26e-07, - "sedges": 1.26e-07, - "seedings": 1.26e-07, - "selloff": 1.26e-07, - "semiannual": 1.26e-07, - "senanayake": 1.26e-07, - "senorita": 1.26e-07, - "sepoy": 1.26e-07, - "seren": 1.26e-07, - "sert": 1.26e-07, - "sfg": 1.26e-07, - "shabu": 1.26e-07, - "shampooing": 1.26e-07, - "shareholdings": 1.26e-07, - "shc": 1.26e-07, - "shirou": 1.26e-07, - "shiseido": 1.26e-07, - "shivas": 1.26e-07, - "shoprite": 1.26e-07, - "shuriken": 1.26e-07, - "siad": 1.26e-07, - "sightseers": 1.26e-07, - "sike": 1.26e-07, - "silkscreen": 1.26e-07, - "sirleaf": 1.26e-07, - "sjp": 1.26e-07, - "skanky": 1.26e-07, - "skeptically": 1.26e-07, - "skims": 1.26e-07, - "skywalk": 1.26e-07, - "slosh": 1.26e-07, - "smal": 1.26e-07, - "smits": 1.26e-07, - "snus": 1.26e-07, - "solskjaer": 1.26e-07, - "somebodies": 1.26e-07, - "soporific": 1.26e-07, - "sorokin": 1.26e-07, - "soundproofing": 1.26e-07, - "spanks": 1.26e-07, - "sparkman": 1.26e-07, - "speedrun": 1.26e-07, - "spiritualists": 1.26e-07, - "spiros": 1.26e-07, - "spoor": 1.26e-07, - "sportsperson": 1.26e-07, - "springhill": 1.26e-07, - "spruced": 1.26e-07, - "srh": 1.26e-07, - "ssid": 1.26e-07, - "staffords": 1.26e-07, - "standardise": 1.26e-07, - "stanmore": 1.26e-07, - "starsky": 1.26e-07, - "steeled": 1.26e-07, - "stephs": 1.26e-07, - "stiftung": 1.26e-07, - "stockists": 1.26e-07, - "stockroom": 1.26e-07, - "stokers": 7.94e-08, - "stoneham": 1.26e-07, - "strausss": 1.26e-07, - "strawman": 1.26e-07, - "streptomycin": 1.26e-07, - "stringfellow": 1.26e-07, - "sturgeons": 1.26e-07, - "subtitling": 1.26e-07, - "subtracts": 1.26e-07, - "subversives": 1.26e-07, - "sundowns": 1.26e-07, - "superfine": 1.26e-07, - "superimpose": 1.26e-07, - "surratt": 1.26e-07, - "sutters": 1.26e-07, - "sverige": 1.26e-07, - "sveriges": 1.26e-07, - "svs": 1.26e-07, - "swaddled": 1.26e-07, - "swamiji": 1.26e-07, - "swanston": 1.26e-07, - "sylvanus": 1.26e-07, - "synched": 1.26e-07, - "syndergaard": 1.26e-07, - "synge": 1.26e-07, - "tailbone": 1.26e-07, - "taksim": 1.26e-07, - "talbots": 7.24e-08, - "tameside": 1.26e-07, - "tanahashi": 1.26e-07, - "tawney": 1.26e-07, - "technik": 1.26e-07, - "teeing": 1.26e-07, - "terabyte": 1.26e-07, - "tereza": 1.26e-07, - "theatricals": 1.26e-07, - "therrien": 1.26e-07, - "thibs": 1.26e-07, - "thiol": 1.26e-07, - "thm": 1.26e-07, - "ticino": 1.26e-07, - "tinashe": 1.26e-07, - "tolson": 1.26e-07, - "toyoda": 1.26e-07, - "tradeable": 1.26e-07, - "transmittance": 1.26e-07, - "traumatize": 1.26e-07, - "tredegar": 1.26e-07, - "trents": 1.26e-07, - "trivialize": 1.26e-07, - "trotskyist": 1.26e-07, - "truncheon": 1.26e-07, - "tudo": 1.26e-07, - "tunisians": 1.26e-07, - "turco": 1.26e-07, - "twigg": 1.26e-07, - "twitpic": 1.26e-07, - "tybalt": 1.26e-07, - "tympanic": 1.26e-07, - "tyrian": 1.26e-07, - "tyrwhitt": 1.26e-07, - "uil": 1.26e-07, - "uman": 1.26e-07, - "umaru": 1.26e-07, - "umatilla": 1.26e-07, - "umbc": 1.26e-07, - "unadjusted": 1.26e-07, - "uncharged": 1.26e-07, - "unconsolidated": 1.26e-07, - "uncontaminated": 1.26e-07, - "uncorrelated": 1.26e-07, - "undermanned": 1.26e-07, - "undulations": 1.26e-07, - "unearths": 1.26e-07, - "unmixed": 1.26e-07, - "unswerving": 1.26e-07, - "upsell": 1.26e-07, - "uruguays": 1.26e-07, - "usopp": 1.26e-07, - "usui": 1.26e-07, - "vainglory": 1.26e-07, - "valderrama": 1.26e-07, - "vanderpump": 1.26e-07, - "vaud": 1.26e-07, - "vbs": 1.26e-07, - "venkatesh": 1.26e-07, - "venoms": 1.26e-07, - "verein": 1.26e-07, - "verlaine": 1.26e-07, - "vettels": 1.26e-07, - "vettori": 1.26e-07, - "visualised": 1.26e-07, - "viswanathan": 1.26e-07, - "vitrified": 1.26e-07, - "voldemorts": 1.26e-07, - "voraciously": 1.26e-07, - "waddled": 1.26e-07, - "wainscoting": 1.26e-07, - "walkies": 1.26e-07, - "wampum": 1.26e-07, - "wann": 1.26e-07, - "warders": 1.26e-07, - "warg": 1.26e-07, - "waterboy": 1.26e-07, - "watkinson": 1.26e-07, - "wau": 1.26e-07, - "wavell": 1.26e-07, - "weblogs": 1.26e-07, - "weenies": 1.26e-07, - "wesker": 1.26e-07, - "westen": 1.26e-07, - "westmeath": 1.26e-07, - "wetted": 1.26e-07, - "whitton": 1.26e-07, - "wholesomeness": 1.26e-07, - "whyalla": 1.26e-07, - "willits": 1.26e-07, - "winamp": 1.26e-07, - "wingsuit": 1.26e-07, - "winklevoss": 1.26e-07, - "winterbourne": 1.26e-07, - "wld": 1.26e-07, - "wookiee": 1.26e-07, - "worthies": 1.26e-07, - "wpf": 1.26e-07, - "wroth": 1.26e-07, - "wtb": 1.26e-07, - "wunderkind": 1.26e-07, - "wunderlich": 1.26e-07, - "wuppertal": 1.26e-07, - "wwc": 1.26e-07, - "wysiwyg": 1.26e-07, - "yani": 1.26e-07, - "yearwood": 1.26e-07, - "yella": 1.26e-07, - "yester": 1.26e-07, - "yiannopoulos": 1.26e-07, - "ynez": 1.26e-07, - "yorkshires": 1.26e-07, - "zanetti": 1.26e-07, - "zemo": 1.26e-07, - "zolpidem": 1.26e-07, - "zon": 1.26e-07, - "zubair": 1.26e-07, - "zumwalt": 1.26e-07, - "abdurrahman": 1.23e-07, - "abq": 1.23e-07, - "abstinent": 1.23e-07, - "abysmally": 1.23e-07, - "acclimation": 1.23e-07, - "accommodative": 1.23e-07, - "activewear": 1.23e-07, - "adda": 1.23e-07, - "adderley": 1.23e-07, - "adit": 1.23e-07, - "adjunctive": 1.23e-07, - "admonishes": 1.23e-07, - "admonitions": 1.23e-07, - "aera": 1.23e-07, - "afe": 1.23e-07, - "afonso": 1.23e-07, - "akhbar": 1.23e-07, - "akhilesh": 1.23e-07, - "albinos": 1.23e-07, - "alighting": 1.23e-07, - "allee": 1.23e-07, - "allergenic": 1.23e-07, - "allyl": 1.23e-07, - "alphaville": 1.23e-07, - "altadena": 1.23e-07, - "alvi": 1.23e-07, - "amisom": 1.23e-07, - "amours": 1.23e-07, - "anabaptist": 1.23e-07, - "andreessen": 1.23e-07, - "andropov": 1.23e-07, - "anibal": 1.23e-07, - "animosities": 1.23e-07, - "ankylosing": 1.23e-07, - "annihilates": 1.23e-07, - "anoka": 1.23e-07, - "antananarivo": 1.23e-07, - "antara": 1.23e-07, - "antonella": 1.23e-07, - "anvils": 1.23e-07, - "aping": 1.23e-07, - "apoc": 1.23e-07, - "arata": 1.23e-07, - "araya": 1.23e-07, - "archways": 1.23e-07, - "aric": 1.23e-07, - "arisa": 1.23e-07, - "arnab": 1.23e-07, - "arnon": 1.23e-07, - "arq": 1.23e-07, - "ascites": 1.23e-07, - "asoka": 1.23e-07, - "asphyxiated": 1.23e-07, - "aspic": 1.23e-07, - "asvab": 1.23e-07, - "aurea": 1.23e-07, - "avaya": 1.23e-07, - "avedon": 1.23e-07, - "avicenna": 1.23e-07, - "ayat": 1.23e-07, - "ayew": 1.23e-07, - "azuma": 1.23e-07, - "babydoll": 1.23e-07, - "badgered": 1.23e-07, - "balak": 1.23e-07, - "balks": 1.23e-07, - "baltistan": 1.23e-07, - "bandgap": 1.23e-07, - "barbe": 1.23e-07, - "barger": 1.23e-07, - "barolo": 1.23e-07, - "barrette": 1.23e-07, - "bartleby": 1.23e-07, - "barto": 1.23e-07, - "batam": 1.23e-07, - "bbfc": 1.23e-07, - "bcuz": 1.23e-07, - "bechuanaland": 1.23e-07, - "beene": 1.23e-07, - "behoove": 1.23e-07, - "belding": 1.23e-07, - "belloc": 1.23e-07, - "beltre": 1.23e-07, - "beppe": 1.23e-07, - "bertolt": 1.23e-07, - "bhandari": 1.23e-07, - "bharata": 1.23e-07, - "biodynamic": 1.23e-07, - "bissett": 1.23e-07, - "bist": 1.23e-07, - "bittern": 1.23e-07, - "blackening": 1.23e-07, - "blackhead": 1.23e-07, - "bleakness": 1.23e-07, - "bleeder": 1.23e-07, - "blights": 1.23e-07, - "blockhouse": 1.23e-07, - "boater": 1.23e-07, - "bodegas": 1.23e-07, - "boonville": 1.23e-07, - "bopper": 1.23e-07, - "borosilicate": 1.23e-07, - "bosporus": 1.23e-07, - "bote": 1.23e-07, - "bourgogne": 1.23e-07, - "braemar": 1.23e-07, - "brailsford": 1.23e-07, - "braless": 1.23e-07, - "branko": 1.23e-07, - "braz": 1.23e-07, - "breading": 1.23e-07, - "brendas": 1.23e-07, - "bridport": 1.23e-07, - "brindley": 1.23e-07, - "britishness": 1.23e-07, - "broiling": 1.23e-07, - "bronies": 1.23e-07, - "brookwood": 1.23e-07, - "brownes": 1.23e-07, - "bua": 1.23e-07, - "buckminster": 1.23e-07, - "bundeswehr": 1.23e-07, - "bungo": 1.23e-07, - "burchard": 1.23e-07, - "caging": 1.23e-07, - "caledon": 1.23e-07, - "calli": 1.23e-07, - "calligraphic": 1.23e-07, - "campanile": 1.23e-07, - "campinas": 1.23e-07, - "caos": 6.17e-08, - "capi": 1.23e-07, - "capitalising": 1.23e-07, - "captiva": 1.23e-07, - "capuano": 1.23e-07, - "carbonite": 1.23e-07, - "careerbuilder": 1.23e-07, - "caren": 1.23e-07, - "carlie": 1.23e-07, - "carmens": 1.23e-07, - "cashin": 1.23e-07, - "castrating": 1.23e-07, - "castres": 1.23e-07, - "cathie": 1.23e-07, - "cavalryman": 1.23e-07, - "ceausescu": 1.23e-07, - "cedes": 1.23e-07, - "celle": 1.23e-07, - "celsus": 1.23e-07, - "cfos": 1.23e-07, - "chadli": 1.23e-07, - "chaebol": 1.23e-07, - "chaitanya": 1.23e-07, - "chanels": 5.01e-08, - "charmers": 1.23e-07, - "chasse": 1.23e-07, - "cheesecakes": 1.23e-07, - "chenille": 1.23e-07, - "chichen": 1.23e-07, - "chides": 1.23e-07, - "chm": 1.23e-07, - "chokers": 1.23e-07, - "chretien": 1.23e-07, - "cilic": 1.23e-07, - "cindys": 1.23e-07, - "cishet": 1.23e-07, - "ciu": 1.23e-07, - "climatologists": 1.23e-07, - "clonazepam": 1.23e-07, - "coif": 1.23e-07, - "coital": 1.23e-07, - "colonnades": 1.23e-07, - "comission": 1.23e-07, - "compartmentalization": 1.23e-07, - "computerworld": 1.23e-07, - "conditionals": 1.23e-07, - "confessors": 1.23e-07, - "connies": 1.23e-07, - "conocophillips": 1.23e-07, - "consolations": 1.23e-07, - "copp": 1.23e-07, - "cotillard": 1.23e-07, - "covariates": 1.23e-07, - "criminalizes": 1.23e-07, - "croaker": 1.23e-07, - "crosser": 1.23e-07, - "crossers": 1.23e-07, - "cua": 1.23e-07, - "cuffing": 1.23e-07, - "cuisinart": 1.23e-07, - "culex": 1.23e-07, - "cultist": 1.23e-07, - "cyclamen": 1.23e-07, - "cyn": 1.23e-07, - "dacs": 1.23e-07, - "dahlberg": 1.23e-07, - "dala": 1.23e-07, - "damion": 1.23e-07, - "danis": 8.51e-08, - "davido": 1.23e-07, - "deadbeats": 1.23e-07, - "deceivers": 1.23e-07, - "decennial": 1.23e-07, - "declarer": 1.23e-07, - "deducing": 1.23e-07, - "deffo": 1.23e-07, - "deimos": 1.23e-07, - "delawares": 1.23e-07, - "demaryius": 1.23e-07, - "denn": 1.23e-07, - "deportment": 1.23e-07, - "derringer": 1.23e-07, - "desertions": 1.23e-07, - "detrick": 1.23e-07, - "dettori": 1.23e-07, - "diab": 1.23e-07, - "didion": 1.23e-07, - "diene": 1.23e-07, - "digitalization": 1.23e-07, - "dihedral": 1.23e-07, - "diluent": 1.23e-07, - "dioxins": 1.23e-07, - "diphthong": 1.23e-07, - "disbelieved": 1.23e-07, - "discontinuance": 1.23e-07, - "dismembering": 1.23e-07, - "disorientated": 1.23e-07, - "disparagingly": 1.23e-07, - "dle": 1.23e-07, - "dogfighting": 1.23e-07, - "dombrowski": 1.23e-07, - "domenic": 1.23e-07, - "domesticate": 1.23e-07, - "doop": 1.23e-07, - "doubtlessly": 1.23e-07, - "dougan": 1.23e-07, - "downtempo": 1.23e-07, - "dromore": 1.23e-07, - "druitt": 1.23e-07, - "drydock": 1.23e-07, - "dsw": 1.23e-07, - "dubiously": 1.23e-07, - "ductility": 1.23e-07, - "duffs": 1.23e-07, - "dukedom": 1.23e-07, - "dulcet": 1.23e-07, - "dunston": 1.23e-07, - "durie": 1.23e-07, - "dwindles": 1.23e-07, - "eae": 1.23e-07, - "ebays": 1.23e-07, - "ecumenism": 1.23e-07, - "eglise": 1.23e-07, - "ellman": 1.23e-07, - "ellyn": 1.23e-07, - "elution": 1.23e-07, - "emeka": 1.23e-07, - "emmie": 1.23e-07, - "emollient": 1.23e-07, - "emptively": 1.23e-07, - "encase": 1.23e-07, - "encrypts": 1.23e-07, - "endovascular": 1.23e-07, - "enfranchisement": 1.23e-07, - "engram": 1.23e-07, - "ensigns": 1.23e-07, - "entailing": 1.23e-07, - "eosinophilic": 1.23e-07, - "eqt": 1.23e-07, - "ereader": 1.23e-07, - "ergot": 1.23e-07, - "escutcheon": 1.23e-07, - "ethnocentrism": 1.23e-07, - "euch": 1.23e-07, - "eui": 1.23e-07, - "exemple": 1.23e-07, - "exhorts": 1.23e-07, - "fairey": 1.23e-07, - "falchion": 1.23e-07, - "fallows": 1.23e-07, - "falmer": 1.23e-07, - "farquharson": 1.23e-07, - "faruk": 1.23e-07, - "fastlane": 1.23e-07, - "fcpa": 1.23e-07, - "feckin": 1.23e-07, - "feild": 1.23e-07, - "fenugreek": 1.23e-07, - "ferber": 1.23e-07, - "filthiest": 1.23e-07, - "fister": 1.23e-07, - "fiv": 1.23e-07, - "flammability": 1.23e-07, - "flanigan": 1.23e-07, - "flappers": 1.23e-07, - "flatland": 1.23e-07, - "flounders": 1.23e-07, - "fogo": 1.23e-07, - "forefoot": 1.23e-07, - "foremen": 1.23e-07, - "foretaste": 1.23e-07, - "formwork": 1.23e-07, - "frelinghuysen": 1.23e-07, - "friedmann": 1.23e-07, - "fritos": 1.23e-07, - "fruited": 1.23e-07, - "fuca": 1.23e-07, - "fugees": 1.23e-07, - "fuh": 1.23e-07, - "fumigated": 1.23e-07, - "funes": 1.23e-07, - "furby": 1.23e-07, - "furloughs": 1.23e-07, - "gabel": 1.23e-07, - "galileos": 1.23e-07, - "gamesmanship": 1.23e-07, - "gamey": 1.23e-07, - "gamings": 1.23e-07, - "gano": 1.23e-07, - "garageband": 1.23e-07, - "garnets": 2.63e-08, - "gatefold": 1.23e-07, - "gaur": 1.23e-07, - "gayes": 1.23e-07, - "gaziantep": 1.23e-07, - "gcp": 1.23e-07, - "geddy": 1.23e-07, - "gfr": 1.23e-07, - "giger": 1.23e-07, - "gimmie": 1.23e-07, - "globetrotter": 1.23e-07, - "gloster": 1.23e-07, - "glucan": 1.23e-07, - "glutamic": 1.23e-07, - "glycosides": 1.23e-07, - "gmac": 1.23e-07, - "goodes": 1.23e-07, - "goodhue": 1.23e-07, - "goole": 1.23e-07, - "gopalakrishnan": 1.23e-07, - "granma": 1.23e-07, - "greenbaum": 1.23e-07, - "greenhalgh": 1.23e-07, - "greenhorn": 1.23e-07, - "grigori": 1.23e-07, - "grint": 1.23e-07, - "grossi": 1.23e-07, - "grouting": 1.23e-07, - "gso": 1.23e-07, - "guatemalas": 1.23e-07, - "guglielmo": 1.23e-07, - "guilherme": 1.23e-07, - "guiness": 1.23e-07, - "gunz": 1.23e-07, - "guth": 1.23e-07, - "habitations": 1.23e-07, - "hagiography": 1.23e-07, - "halima": 1.23e-07, - "hamlyn": 1.23e-07, - "hangry": 1.23e-07, - "hannibals": 1.23e-07, - "hansson": 1.23e-07, - "hanwell": 1.23e-07, - "harborough": 1.23e-07, - "harems": 1.23e-07, - "harnett": 1.23e-07, - "harrassed": 1.23e-07, - "havering": 1.23e-07, - "headbutting": 1.23e-07, - "headteachers": 1.23e-07, - "healings": 1.23e-07, - "hearer": 1.23e-07, - "heike": 1.23e-07, - "heimdall": 1.23e-07, - "hellion": 1.23e-07, - "helpmann": 1.23e-07, - "hendra": 1.23e-07, - "hermitian": 1.23e-07, - "hfa": 1.23e-07, - "hif": 1.23e-07, - "hln": 1.23e-07, - "homages": 1.23e-07, - "homegirl": 1.23e-07, - "honecker": 1.23e-07, - "houck": 1.23e-07, - "hubli": 1.23e-07, - "hudak": 1.23e-07, - "huevos": 1.23e-07, - "huggies": 1.23e-07, - "hughess": 1.23e-07, - "hulton": 1.23e-07, - "hunnam": 1.23e-07, - "hyang": 1.23e-07, - "hypes": 1.23e-07, - "hypocritically": 1.23e-07, - "hypotensive": 1.23e-07, - "idealize": 1.23e-07, - "idled": 1.23e-07, - "idolaters": 1.23e-07, - "ifb": 1.23e-07, - "igcse": 1.23e-07, - "ignace": 1.23e-07, - "iki": 1.23e-07, - "ilex": 1.23e-07, - "immobilised": 1.23e-07, - "indecently": 1.23e-07, - "ineligibility": 1.23e-07, - "ingres": 1.23e-07, - "insidiously": 1.23e-07, - "insulates": 1.23e-07, - "invidious": 1.23e-07, - "isamu": 1.23e-07, - "isao": 1.23e-07, - "ishares": 1.23e-07, - "istanbuls": 1.23e-07, - "iwill": 1.23e-07, - "jagannath": 1.23e-07, - "jaimes": 1.23e-07, - "janel": 1.23e-07, - "janina": 1.23e-07, - "javan": 1.23e-07, - "jaycee": 1.23e-07, - "jellybeans": 1.23e-07, - "jhelum": 1.23e-07, - "jhs": 1.23e-07, - "jif": 1.23e-07, - "jkr": 1.23e-07, - "jll": 1.23e-07, - "joby": 1.23e-07, - "jonty": 1.23e-07, - "jowls": 1.23e-07, - "judaica": 1.23e-07, - "jungkook": 1.23e-07, - "juxtapositions": 1.23e-07, - "kaba": 1.23e-07, - "kalinga": 1.23e-07, - "kalla": 1.23e-07, - "kameez": 1.23e-07, - "karimi": 1.23e-07, - "katsura": 1.23e-07, - "kaunda": 1.23e-07, - "kayode": 1.23e-07, - "keble": 1.23e-07, - "kerch": 1.23e-07, - "kerley": 1.23e-07, - "kerrang": 1.23e-07, - "kher": 1.23e-07, - "kiku": 1.23e-07, - "kirkbride": 1.23e-07, - "klansmen": 1.23e-07, - "klezmer": 1.23e-07, - "komsomol": 1.23e-07, - "kotori": 1.23e-07, - "kpc": 1.23e-07, - "kpi": 1.23e-07, - "kq": 1.23e-07, - "kristensen": 1.23e-07, - "kristoffer": 1.23e-07, - "krk": 1.23e-07, - "kusama": 1.23e-07, - "kwak": 1.23e-07, - "laci": 1.23e-07, - "lakshman": 1.23e-07, - "lames": 1.23e-07, - "lampe": 1.23e-07, - "lamport": 1.23e-07, - "lanchester": 1.23e-07, - "lantana": 1.23e-07, - "laudrup": 1.23e-07, - "laugher": 1.23e-07, - "leakages": 1.23e-07, - "ledecky": 1.23e-07, - "lederhosen": 1.23e-07, - "leishman": 1.23e-07, - "lenas": 1.23e-07, - "lenard": 1.23e-07, - "lesh": 1.23e-07, - "leveller": 1.23e-07, - "lexmark": 1.23e-07, - "lfp": 1.23e-07, - "liat": 1.23e-07, - "licencing": 1.23e-07, - "liebman": 1.23e-07, - "lightweights": 1.23e-07, - "lincecum": 1.23e-07, - "liveliest": 1.23e-07, - "livestreaming": 1.23e-07, - "lmt": 1.23e-07, - "lond": 1.23e-07, - "lonelier": 1.23e-07, - "lookers": 1.23e-07, - "loui": 1.23e-07, - "luhrmann": 1.23e-07, - "luise": 1.23e-07, - "lumberyard": 1.23e-07, - "luxembourgs": 1.23e-07, - "luxuriate": 1.23e-07, - "lycopene": 1.23e-07, - "lydian": 1.23e-07, - "lysenko": 1.23e-07, - "macartney": 1.23e-07, - "macias": 1.23e-07, - "maclachlan": 1.23e-07, - "macleans": 5.5e-08, - "magmas": 1.23e-07, - "maitreya": 1.23e-07, - "maler": 1.23e-07, - "malini": 1.23e-07, - "manik": 1.23e-07, - "mannish": 1.23e-07, - "mansa": 1.23e-07, - "mansi": 1.23e-07, - "mapk": 1.23e-07, - "maras": 8.51e-08, - "maran": 1.23e-07, - "marant": 1.23e-07, - "marathoner": 1.23e-07, - "mariella": 1.23e-07, - "markit": 1.23e-07, - "marrickville": 1.23e-07, - "marshaling": 1.23e-07, - "marshalltown": 1.23e-07, - "marshmello": 1.23e-07, - "matar": 1.23e-07, - "matrons": 1.23e-07, - "maxey": 1.23e-07, - "mcalester": 1.23e-07, - "mccleary": 1.23e-07, - "mccombs": 1.23e-07, - "mcfall": 1.23e-07, - "mcv": 1.23e-07, - "mcx": 1.23e-07, - "meanies": 1.23e-07, - "meisel": 1.23e-07, - "mene": 1.23e-07, - "mentee": 1.23e-07, - "meringues": 1.23e-07, - "merkle": 1.23e-07, - "merson": 1.23e-07, - "messerschmitt": 1.23e-07, - "metrosexual": 1.23e-07, - "michiel": 1.23e-07, - "micr": 1.23e-07, - "micromax": 1.23e-07, - "midgley": 1.23e-07, - "mikami": 1.23e-07, - "milam": 1.23e-07, - "milroy": 1.23e-07, - "misanthropy": 1.23e-07, - "misfires": 1.23e-07, - "moche": 1.23e-07, - "modelers": 1.23e-07, - "mohinder": 1.23e-07, - "moisturising": 1.23e-07, - "moley": 1.23e-07, - "monacos": 1.23e-07, - "moncrief": 1.23e-07, - "moneybags": 1.23e-07, - "monstercat": 1.23e-07, - "moorpark": 1.23e-07, - "mord": 1.23e-07, - "morenos": 1.23e-07, - "morimoto": 1.23e-07, - "motioning": 1.23e-07, - "motorolas": 1.23e-07, - "moustakas": 1.23e-07, - "msus": 1.23e-07, - "multifocal": 1.23e-07, - "mumma": 1.23e-07, - "munchen": 1.23e-07, - "muntz": 1.23e-07, - "musicologist": 1.23e-07, - "mvd": 1.23e-07, - "myint": 1.23e-07, - "mylo": 1.23e-07, - "naas": 1.23e-07, - "nadella": 1.23e-07, - "nagarjuna": 1.23e-07, - "nakai": 1.23e-07, - "namib": 1.23e-07, - "nanobots": 1.23e-07, - "nantz": 1.23e-07, - "narcan": 1.23e-07, - "narcissa": 1.23e-07, - "natchitoches": 1.23e-07, - "navier": 1.23e-07, - "ndebele": 1.23e-07, - "negeri": 1.23e-07, - "nemtsov": 1.23e-07, - "nerva": 1.23e-07, - "neuroplasticity": 1.23e-07, - "neuville": 1.23e-07, - "newhart": 1.23e-07, - "newsboys": 1.23e-07, - "newsmen": 1.23e-07, - "newswatch": 1.23e-07, - "nightie": 1.23e-07, - "nirmal": 1.23e-07, - "nisei": 1.23e-07, - "nitrites": 1.23e-07, - "nomos": 1.23e-07, - "nonreligious": 1.23e-07, - "normies": 1.23e-07, - "norquist": 1.23e-07, - "norske": 1.23e-07, - "novotel": 1.23e-07, - "nowe": 1.23e-07, - "nspcc": 1.23e-07, - "nue": 1.23e-07, - "numbs": 1.23e-07, - "nyah": 1.23e-07, - "obvi": 1.23e-07, - "octahedron": 1.23e-07, - "ojeda": 1.23e-07, - "okabe": 1.23e-07, - "olsens": 1.23e-07, - "ond": 1.23e-07, - "onodera": 1.23e-07, - "onstar": 1.23e-07, - "orga": 1.23e-07, - "osbert": 1.23e-07, - "osr": 1.23e-07, - "ossification": 1.23e-07, - "otten": 1.23e-07, - "outran": 1.23e-07, - "overconsumption": 1.23e-07, - "overgrazing": 1.23e-07, - "overmatched": 1.23e-07, - "overworking": 1.23e-07, - "ozu": 1.23e-07, - "pacifiers": 1.23e-07, - "paks": 5.37e-08, - "palembang": 1.23e-07, - "panniers": 1.23e-07, - "pantanal": 1.23e-07, - "papilloma": 1.23e-07, - "paragons": 1.23e-07, - "paralyse": 1.23e-07, - "paraplegia": 1.23e-07, - "parkwood": 1.23e-07, - "parthians": 1.23e-07, - "patmore": 1.23e-07, - "patri": 1.23e-07, - "patt": 1.23e-07, - "pcg": 1.23e-07, - "pennsylvanians": 1.23e-07, - "penton": 1.23e-07, - "penury": 1.23e-07, - "perdita": 1.23e-07, - "perfidious": 1.23e-07, - "perianth": 1.23e-07, - "pern": 1.23e-07, - "phillipines": 1.23e-07, - "philologist": 1.23e-07, - "phir": 1.23e-07, - "phonecall": 1.23e-07, - "photosphere": 1.23e-07, - "picaresque": 1.23e-07, - "pieters": 1.23e-07, - "pilger": 1.23e-07, - "pintura": 1.23e-07, - "pipped": 1.23e-07, - "playbill": 1.23e-07, - "plovers": 1.23e-07, - "plumping": 1.23e-07, - "polarizer": 1.23e-07, - "pomo": 1.23e-07, - "ponton": 1.23e-07, - "portends": 1.23e-07, - "portofino": 1.23e-07, - "prams": 1.23e-07, - "precancerous": 1.23e-07, - "predisposing": 1.23e-07, - "presuppose": 1.23e-07, - "pripyat": 1.23e-07, - "promethean": 1.23e-07, - "prostration": 1.23e-07, - "providential": 1.23e-07, - "provincially": 1.23e-07, - "psoriatic": 1.23e-07, - "psychopharmacology": 1.23e-07, - "psychosexual": 1.23e-07, - "puh": 1.23e-07, - "punxsutawney": 1.23e-07, - "pushcart": 1.23e-07, - "quadrupling": 1.23e-07, - "quitman": 1.23e-07, - "rabobank": 1.23e-07, - "racemes": 1.23e-07, - "radicalize": 1.23e-07, - "radiometer": 1.23e-07, - "rafinha": 1.23e-07, - "ramus": 1.23e-07, - "rastafarian": 1.23e-07, - "rattray": 1.23e-07, - "ravers": 1.23e-07, - "ravished": 1.23e-07, - "reabsorbed": 1.23e-07, - "reacquainted": 1.23e-07, - "reanimate": 1.23e-07, - "reavers": 1.23e-07, - "reawakened": 1.23e-07, - "recht": 1.23e-07, - "reinterpreting": 1.23e-07, - "relat": 1.23e-07, - "rembrandts": 6.61e-08, - "renin": 1.23e-07, - "repertoires": 1.23e-07, - "replicable": 1.23e-07, - "reprieved": 1.23e-07, - "researchs": 1.23e-07, - "resected": 1.23e-07, - "reshoot": 1.23e-07, - "reto": 1.23e-07, - "retried": 1.23e-07, - "reupload": 1.23e-07, - "rexroth": 1.23e-07, - "riband": 1.23e-07, - "rigo": 1.23e-07, - "rizzi": 1.23e-07, - "rlly": 1.23e-07, - "robi": 1.23e-07, - "rockn": 1.23e-07, - "romsey": 1.23e-07, - "roskilde": 1.23e-07, - "rossendale": 1.23e-07, - "rottweilers": 1.23e-07, - "routs": 1.23e-07, - "rrc": 1.23e-07, - "rsfsr": 1.23e-07, - "ruminant": 1.23e-07, - "rushworth": 1.23e-07, - "russa": 1.23e-07, - "rvd": 1.23e-07, - "rws": 1.23e-07, - "ryker": 1.23e-07, - "saal": 1.23e-07, - "saavedra": 1.23e-07, - "sabotages": 1.23e-07, - "sabrinas": 1.23e-07, - "sach": 1.23e-07, - "sachem": 1.23e-07, - "samwell": 1.23e-07, - "sanctorum": 1.23e-07, - "sanogo": 1.23e-07, - "saori": 1.23e-07, - "satchels": 1.23e-07, - "savino": 1.23e-07, - "scad": 1.23e-07, - "scheffer": 1.23e-07, - "schimmel": 1.23e-07, - "schismatic": 1.23e-07, - "schistosomiasis": 1.23e-07, - "schuberts": 1.23e-07, - "scientism": 1.23e-07, - "scrubland": 1.23e-07, - "searles": 1.23e-07, - "segall": 1.23e-07, - "selfs": 7.41e-08, - "semifinalist": 1.23e-07, - "seminyak": 1.23e-07, - "serviceability": 1.23e-07, - "sevigny": 1.23e-07, - "sexualize": 1.23e-07, - "shambling": 1.23e-07, - "shanker": 1.23e-07, - "shelagh": 1.23e-07, - "sherm": 1.23e-07, - "shipton": 1.23e-07, - "shitposting": 1.23e-07, - "shl": 1.23e-07, - "shopaholic": 1.23e-07, - "shoplift": 1.23e-07, - "shreya": 1.23e-07, - "sideman": 1.23e-07, - "sii": 1.23e-07, - "sika": 1.23e-07, - "silkworms": 1.23e-07, - "sines": 1.23e-07, - "singtel": 1.23e-07, - "skintight": 1.23e-07, - "skyscanner": 1.23e-07, - "slades": 1.23e-07, - "sleepwalk": 1.23e-07, - "slg": 1.23e-07, - "slipway": 1.23e-07, - "sniped": 1.23e-07, - "sodexo": 1.23e-07, - "soham": 1.23e-07, - "solicitous": 1.23e-07, - "solow": 1.23e-07, - "sonnenberg": 1.23e-07, - "sonofabitch": 1.23e-07, - "sopping": 1.23e-07, - "soundscan": 1.23e-07, - "southeastward": 1.23e-07, - "soz": 1.23e-07, - "spasmodic": 1.23e-07, - "speach": 1.23e-07, - "speeders": 1.23e-07, - "spezza": 1.23e-07, - "spittin": 1.23e-07, - "splay": 1.23e-07, - "sproule": 1.23e-07, - "squiggle": 1.23e-07, - "staats": 1.23e-07, - "standoffish": 1.23e-07, - "stapp": 1.23e-07, - "statutorily": 1.23e-07, - "steeples": 1.23e-07, - "steepness": 1.23e-07, - "stitt": 1.23e-07, - "stoltz": 1.23e-07, - "stomachache": 1.23e-07, - "stratagems": 1.23e-07, - "subalpine": 1.23e-07, - "subclavian": 1.23e-07, - "sublease": 1.23e-07, - "sublimely": 1.23e-07, - "subluxation": 1.23e-07, - "subnational": 1.23e-07, - "suma": 1.23e-07, - "summerlin": 1.23e-07, - "sumpter": 1.23e-07, - "sunna": 1.23e-07, - "supercharging": 1.23e-07, - "surmounting": 1.23e-07, - "suzerainty": 1.23e-07, - "svendsen": 1.23e-07, - "swabbed": 1.23e-07, - "sylvias": 1.23e-07, - "sympathised": 1.23e-07, - "synthesise": 1.23e-07, - "tagus": 1.23e-07, - "taints": 1.23e-07, - "taiwo": 1.23e-07, - "talibans": 1.23e-07, - "talwar": 1.23e-07, - "tamerlane": 1.23e-07, - "tancredi": 1.23e-07, - "tane": 1.23e-07, - "tantalus": 1.23e-07, - "tarin": 1.23e-07, - "tartu": 1.23e-07, - "tatsuo": 1.23e-07, - "tavenner": 1.23e-07, - "tayside": 1.23e-07, - "teaneck": 1.23e-07, - "tempests": 1.23e-07, - "tfp": 1.23e-07, - "thousandths": 1.23e-07, - "thundercats": 1.23e-07, - "tighty": 1.23e-07, - "tinier": 1.23e-07, - "tinkler": 1.23e-07, - "toft": 1.23e-07, - "togolese": 1.23e-07, - "tonsillectomy": 1.23e-07, - "tooltip": 1.23e-07, - "toombs": 1.23e-07, - "torp": 1.23e-07, - "toscanini": 1.23e-07, - "toscano": 1.23e-07, - "tpo": 1.23e-07, - "transmigration": 1.23e-07, - "treyarch": 1.23e-07, - "trumping": 1.23e-07, - "tsmc": 1.23e-07, - "tsukasa": 1.23e-07, - "typological": 1.23e-07, - "uck": 1.23e-07, - "ueber": 1.23e-07, - "uhura": 1.23e-07, - "ukiah": 1.23e-07, - "umrah": 1.23e-07, - "unalienable": 1.23e-07, - "unasked": 1.23e-07, - "unblinking": 1.23e-07, - "uncivilised": 1.23e-07, - "uncompensated": 1.23e-07, - "unconquered": 1.23e-07, - "undemanding": 1.23e-07, - "underinsured": 1.23e-07, - "undersides": 1.23e-07, - "unissued": 1.23e-07, - "unisys": 1.23e-07, - "unl": 1.23e-07, - "unlearning": 1.23e-07, - "unmanly": 1.23e-07, - "unquiet": 1.23e-07, - "unspecific": 1.23e-07, - "untiring": 1.23e-07, - "untreatable": 1.23e-07, - "usted": 1.23e-07, - "vaccaro": 1.23e-07, - "vam": 1.23e-07, - "vania": 1.23e-07, - "vaporizes": 1.23e-07, - "varden": 1.23e-07, - "venda": 1.23e-07, - "veras": 1.23e-07, - "verifier": 1.23e-07, - "verry": 1.23e-07, - "vetiver": 1.23e-07, - "vgc": 1.23e-07, - "viaducts": 1.23e-07, - "villian": 1.23e-07, - "viney": 1.23e-07, - "virgen": 1.23e-07, - "virions": 1.23e-07, - "virulently": 1.23e-07, - "vividness": 1.23e-07, - "vliet": 1.23e-07, - "volkswagens": 5.75e-08, - "voyaging": 1.23e-07, - "vulpes": 1.23e-07, - "wacha": 1.23e-07, - "wagged": 1.23e-07, - "waggon": 1.23e-07, - "waitangi": 1.23e-07, - "waked": 1.23e-07, - "walang": 1.23e-07, - "wallsend": 1.23e-07, - "wangaratta": 1.23e-07, - "watauga": 1.23e-07, - "wavefunction": 1.23e-07, - "wcbs": 1.23e-07, - "wechsler": 1.23e-07, - "wertheim": 1.23e-07, - "wertheimer": 1.23e-07, - "westbourne": 1.23e-07, - "weyerhaeuser": 1.23e-07, - "whan": 1.23e-07, - "wheats": 1.23e-07, - "whistlers": 5.62e-08, - "whitt": 1.23e-07, - "whittlesey": 1.23e-07, - "wholemeal": 1.23e-07, - "windchill": 1.23e-07, - "woa": 1.23e-07, - "womenfolk": 1.23e-07, - "wonderboy": 1.23e-07, - "wonga": 1.23e-07, - "writhed": 1.23e-07, - "xlv": 1.23e-07, - "yeehaw": 1.23e-07, - "yoho": 1.23e-07, - "yuya": 1.23e-07, - "yuzuru": 1.23e-07, - "zadok": 1.23e-07, - "zang": 1.23e-07, - "zanuck": 1.23e-07, - "zc": 1.23e-07, - "zhe": 1.23e-07, - "zille": 1.23e-07, - "zl": 1.23e-07, - "zoroaster": 1.23e-07, - "aao": 1.2e-07, - "abrogate": 1.2e-07, - "acanthus": 1.2e-07, - "acheron": 1.2e-07, - "acog": 1.2e-07, - "acrylate": 1.2e-07, - "adders": 1.2e-07, - "adulyadej": 1.2e-07, - "afew": 1.2e-07, - "affixing": 1.2e-07, - "agoura": 1.2e-07, - "aion": 1.2e-07, - "akimbo": 1.2e-07, - "albanias": 1.2e-07, - "albano": 1.2e-07, - "aldis": 7.76e-08, - "alexandros": 1.2e-07, - "alkenes": 1.2e-07, - "alten": 1.2e-07, - "amadeo": 1.2e-07, - "amartya": 1.2e-07, - "ambi": 1.2e-07, - "ambled": 1.2e-07, - "amhara": 1.2e-07, - "amitriptyline": 1.2e-07, - "amparo": 1.2e-07, - "analytes": 1.2e-07, - "aniseed": 1.2e-07, - "anjelica": 1.2e-07, - "antediluvian": 1.2e-07, - "antetokounmpo": 1.2e-07, - "anticorruption": 1.2e-07, - "antifascist": 1.2e-07, - "anupam": 1.2e-07, - "anxiolytic": 1.2e-07, - "aosta": 1.2e-07, - "apollonia": 1.2e-07, - "appr": 1.2e-07, - "arcelormittal": 1.2e-07, - "aronofsky": 1.2e-07, - "arpeggio": 1.2e-07, - "arroz": 1.2e-07, - "arvn": 1.2e-07, - "arx": 1.2e-07, - "ashmolean": 1.2e-07, - "asiana": 1.2e-07, - "asker": 1.2e-07, - "athan": 1.2e-07, - "atonal": 1.2e-07, - "attainments": 1.2e-07, - "aurore": 1.2e-07, - "awc": 1.2e-07, - "axils": 1.2e-07, - "azeem": 1.2e-07, - "backslash": 1.2e-07, - "bagong": 1.2e-07, - "balustrades": 1.2e-07, - "bampton": 1.2e-07, - "bandhan": 1.2e-07, - "banting": 1.2e-07, - "barajas": 1.2e-07, - "barnetts": 1.2e-07, - "bashers": 1.2e-07, - "basked": 1.2e-07, - "batwing": 1.2e-07, - "baume": 1.2e-07, - "baylis": 1.2e-07, - "bcn": 1.2e-07, - "beacuse": 1.2e-07, - "bearskin": 1.2e-07, - "beatitudes": 1.2e-07, - "becher": 1.2e-07, - "bedsheet": 1.2e-07, - "belanger": 1.2e-07, - "bemoans": 1.2e-07, - "benedick": 1.2e-07, - "beneficially": 1.2e-07, - "beter": 1.2e-07, - "beyblade": 1.2e-07, - "bhargava": 1.2e-07, - "bicknell": 1.2e-07, - "biggles": 1.2e-07, - "bikaner": 1.2e-07, - "binational": 1.2e-07, - "bintang": 1.2e-07, - "biopharma": 1.2e-07, - "birkett": 1.2e-07, - "bismillah": 1.2e-07, - "blighty": 1.2e-07, - "blindfolds": 1.2e-07, - "bln": 1.2e-07, - "blud": 1.2e-07, - "bodhisattvas": 1.2e-07, - "boldt": 1.2e-07, - "bolivians": 1.2e-07, - "borja": 1.2e-07, - "brane": 1.2e-07, - "broglie": 1.2e-07, - "bruegel": 1.2e-07, - "brung": 1.2e-07, - "bsr": 1.2e-07, - "bto": 1.2e-07, - "bubbler": 1.2e-07, - "buckthorn": 1.2e-07, - "buhl": 1.2e-07, - "burak": 1.2e-07, - "burpee": 1.2e-07, - "bushehr": 1.2e-07, - "bushell": 1.2e-07, - "bushrangers": 1.2e-07, - "buzzers": 1.2e-07, - "byo": 1.2e-07, - "cabe": 1.2e-07, - "cadenza": 1.2e-07, - "callosum": 1.2e-07, - "camberley": 1.2e-07, - "camisole": 1.2e-07, - "candys": 2.45e-08, - "capones": 1.2e-07, - "caput": 1.2e-07, - "carmakers": 1.2e-07, - "carnell": 1.2e-07, - "carrickfergus": 1.2e-07, - "casilla": 1.2e-07, - "cassavetes": 1.2e-07, - "castroneves": 1.2e-07, - "catamarans": 1.2e-07, - "cathryn": 1.2e-07, - "cck": 1.2e-07, - "cele": 1.2e-07, - "centrifuged": 1.2e-07, - "cephalopod": 1.2e-07, - "cerise": 1.2e-07, - "chahal": 1.2e-07, - "chalcedon": 1.2e-07, - "chalcedony": 1.2e-07, - "chancellorsville": 1.2e-07, - "changchun": 1.2e-07, - "chardin": 1.2e-07, - "chasms": 1.2e-07, - "cheapside": 1.2e-07, - "checkmark": 1.2e-07, - "chelating": 1.2e-07, - "chemokine": 1.2e-07, - "chicopee": 1.2e-07, - "chisinau": 1.2e-07, - "chloro": 1.2e-07, - "christianitys": 1.2e-07, - "christmassy": 1.2e-07, - "chromatographic": 1.2e-07, - "chromes": 1.2e-07, - "chrystal": 1.2e-07, - "cinched": 1.2e-07, - "classist": 1.2e-07, - "claudes": 1.2e-07, - "cleanups": 1.2e-07, - "cleon": 1.2e-07, - "cleopatras": 1.2e-07, - "climaxing": 1.2e-07, - "clomid": 1.2e-07, - "clonidine": 1.2e-07, - "cno": 1.2e-07, - "coagulated": 1.2e-07, - "colgan": 1.2e-07, - "colonising": 1.2e-07, - "comix": 1.2e-07, - "commandeering": 1.2e-07, - "compellingly": 1.2e-07, - "complet": 1.2e-07, - "condensates": 1.2e-07, - "congos": 1.2e-07, - "conjugations": 1.2e-07, - "corday": 1.2e-07, - "cordons": 1.2e-07, - "cornetto": 1.2e-07, - "coul": 1.2e-07, - "counterrevolutionary": 1.2e-07, - "countin": 1.2e-07, - "covets": 1.2e-07, - "coyly": 1.2e-07, - "craigavon": 1.2e-07, - "createspace": 1.2e-07, - "creepin": 1.2e-07, - "crespi": 1.2e-07, - "cribbage": 1.2e-07, - "crinkled": 1.2e-07, - "critchley": 1.2e-07, - "crna": 1.2e-07, - "crosscountry": 1.2e-07, - "ctx": 1.2e-07, - "cty": 1.2e-07, - "cullens": 6.31e-08, - "cyclophosphamide": 1.2e-07, - "danks": 1.2e-07, - "dazs": 1.2e-07, - "deactivates": 1.2e-07, - "debasement": 1.2e-07, - "decameron": 1.2e-07, - "decamped": 1.2e-07, - "decriminalizing": 1.2e-07, - "deduces": 1.2e-07, - "demeans": 1.2e-07, - "denard": 1.2e-07, - "deneuve": 1.2e-07, - "dennings": 1.2e-07, - "derailments": 1.2e-07, - "derbys": 6.61e-08, - "derma": 1.2e-07, - "detent": 1.2e-07, - "dfm": 1.2e-07, - "dicaprios": 1.2e-07, - "dichroic": 1.2e-07, - "dimorphic": 1.2e-07, - "dinks": 1.2e-07, - "disassociation": 1.2e-07, - "discal": 1.2e-07, - "disconsolate": 1.2e-07, - "discords": 1.2e-07, - "disputation": 1.2e-07, - "dodie": 1.2e-07, - "doest": 8.32e-08, - "dogfights": 1.2e-07, - "doof": 1.2e-07, - "dorris": 1.2e-07, - "douala": 1.2e-07, - "doubletree": 1.2e-07, - "dubliners": 1.2e-07, - "duelist": 1.2e-07, - "dumoulin": 1.2e-07, - "durum": 1.2e-07, - "dwr": 1.2e-07, - "dxd": 1.2e-07, - "eady": 1.2e-07, - "ebu": 1.2e-07, - "ecmo": 1.2e-07, - "edginess": 1.2e-07, - "eero": 1.2e-07, - "effed": 1.2e-07, - "egs": 1.2e-07, - "ehe": 1.2e-07, - "eich": 1.2e-07, - "elbridge": 1.2e-07, - "engendering": 1.2e-07, - "enigmas": 1.2e-07, - "enumerating": 1.2e-07, - "envying": 1.2e-07, - "ephemeris": 1.2e-07, - "epitomised": 1.2e-07, - "eretz": 1.2e-07, - "eru": 1.2e-07, - "escambia": 1.2e-07, - "estab": 1.2e-07, - "estefan": 1.2e-07, - "estela": 1.2e-07, - "evry": 8.71e-08, - "evergrande": 1.2e-07, - "exelon": 1.2e-07, - "externality": 1.2e-07, - "exton": 1.2e-07, - "eyepatch": 1.2e-07, - "faberge": 1.2e-07, - "fabinho": 1.2e-07, - "familiarizing": 1.2e-07, - "fancying": 1.2e-07, - "fanduel": 1.2e-07, - "fatman": 1.2e-07, - "faustina": 1.2e-07, - "federers": 1.2e-07, - "fedoras": 1.2e-07, - "felts": 1.2e-07, - "fencers": 1.2e-07, - "ferroelectric": 1.2e-07, - "fetes": 1.2e-07, - "filenames": 1.2e-07, - "fingal": 1.2e-07, - "firetruck": 1.2e-07, - "firman": 1.2e-07, - "flashmob": 1.2e-07, - "flintoff": 1.2e-07, - "floodlit": 1.2e-07, - "flummoxed": 1.2e-07, - "foaled": 1.2e-07, - "folie": 1.2e-07, - "fortunato": 1.2e-07, - "fothergill": 1.2e-07, - "fourthly": 1.2e-07, - "francophones": 1.2e-07, - "friedkin": 1.2e-07, - "friezes": 1.2e-07, - "frontside": 1.2e-07, - "fuckboy": 1.2e-07, - "fugazi": 1.2e-07, - "fumio": 1.2e-07, - "futher": 1.2e-07, - "gais": 1.2e-07, - "gapes": 1.2e-07, - "gapped": 1.2e-07, - "gardasil": 1.2e-07, - "gastrectomy": 1.2e-07, - "gastroesophageal": 1.2e-07, - "gattis": 1.2e-07, - "glenmore": 1.2e-07, - "glenville": 1.2e-07, - "glug": 1.2e-07, - "glute": 1.2e-07, - "gly": 1.2e-07, - "goodchild": 1.2e-07, - "goslings": 7.24e-08, - "gotv": 1.2e-07, - "gourley": 1.2e-07, - "gracey": 1.2e-07, - "grangemouth": 1.2e-07, - "greenstein": 1.2e-07, - "grenadine": 1.2e-07, - "grippy": 1.2e-07, - "guilin": 1.2e-07, - "gujranwala": 1.2e-07, - "gumbel": 1.2e-07, - "gunung": 1.2e-07, - "guten": 1.2e-07, - "hachi": 1.2e-07, - "haeckel": 1.2e-07, - "halbert": 1.2e-07, - "hanafi": 1.2e-07, - "handicapper": 1.2e-07, - "hanse": 1.2e-07, - "harassers": 1.2e-07, - "harrod": 1.2e-07, - "hase": 1.2e-07, - "hassler": 1.2e-07, - "hatted": 1.2e-07, - "hauck": 1.2e-07, - "hawken": 1.2e-07, - "hayfever": 1.2e-07, - "headhunting": 1.2e-07, - "heatwaves": 1.2e-07, - "heffer": 1.2e-07, - "heintz": 1.2e-07, - "hering": 1.2e-07, - "hexa": 1.2e-07, - "hibbing": 1.2e-07, - "hibernia": 1.2e-07, - "hibiki": 1.2e-07, - "hickam": 1.2e-07, - "highnesses": 1.2e-07, - "himawari": 1.2e-07, - "hinchcliffe": 1.2e-07, - "hitmaker": 1.2e-07, - "hojo": 1.2e-07, - "holston": 1.2e-07, - "homebuilders": 1.2e-07, - "homophones": 1.2e-07, - "hote": 1.2e-07, - "hotpot": 1.2e-07, - "houseplant": 1.2e-07, - "huet": 1.2e-07, - "huhne": 1.2e-07, - "hydrography": 1.2e-07, - "hynde": 1.2e-07, - "hypogonadism": 1.2e-07, - "ichikawa": 1.2e-07, - "ilbo": 1.2e-07, - "incharge": 1.2e-07, - "incompetents": 1.2e-07, - "incongruent": 1.2e-07, - "indochinese": 1.2e-07, - "indolence": 1.2e-07, - "infantino": 1.2e-07, - "ingeborg": 1.2e-07, - "innisfree": 1.2e-07, - "instate": 1.2e-07, - "instore": 1.2e-07, - "instrumentally": 1.2e-07, - "intaglio": 1.2e-07, - "interceded": 1.2e-07, - "interchanging": 1.2e-07, - "iod": 1.2e-07, - "iphoto": 1.2e-07, - "ischia": 1.2e-07, - "issaquah": 1.2e-07, - "iterator": 1.2e-07, - "itil": 1.2e-07, - "ivermectin": 1.2e-07, - "izaak": 1.2e-07, - "jambo": 1.2e-07, - "jawbreaker": 1.2e-07, - "jaworski": 1.2e-07, - "jeannine": 1.2e-07, - "jerrod": 1.2e-07, - "jetsam": 1.2e-07, - "jonahs": 1.2e-07, - "jonge": 1.2e-07, - "jossey": 1.2e-07, - "jourdain": 1.2e-07, - "jowett": 1.2e-07, - "jozy": 1.2e-07, - "juche": 1.2e-07, - "jugg": 1.2e-07, - "kantar": 1.2e-07, - "kasbah": 1.2e-07, - "kathi": 1.2e-07, - "katra": 1.2e-07, - "kawakami": 1.2e-07, - "kazama": 1.2e-07, - "kcna": 1.2e-07, - "keratinocytes": 1.2e-07, - "kester": 1.2e-07, - "ketcham": 1.2e-07, - "keylor": 1.2e-07, - "kijiji": 1.2e-07, - "kindergarteners": 1.2e-07, - "kinloch": 1.2e-07, - "kio": 1.2e-07, - "kipnis": 1.2e-07, - "kippers": 1.2e-07, - "klaxon": 1.2e-07, - "kleptocracy": 1.2e-07, - "klub": 1.2e-07, - "koirala": 1.2e-07, - "kolchak": 1.2e-07, - "kolmogorov": 1.2e-07, - "kotlin": 1.2e-07, - "krakatoa": 1.2e-07, - "kuh": 1.2e-07, - "kwiatkowski": 1.2e-07, - "laboratoire": 1.2e-07, - "ladner": 1.2e-07, - "laf": 1.2e-07, - "lainey": 1.2e-07, - "lambasting": 1.2e-07, - "lamellar": 1.2e-07, - "lamin": 1.2e-07, - "landsman": 1.2e-07, - "leanna": 1.2e-07, - "leconte": 1.2e-07, - "lectin": 1.2e-07, - "leeuw": 1.2e-07, - "lemoine": 1.2e-07, - "lenihan": 1.2e-07, - "levins": 6.17e-08, - "lhr": 1.2e-07, - "licentiate": 1.2e-07, - "lindell": 1.2e-07, - "lobelia": 1.2e-07, - "lodgepole": 1.2e-07, - "lofgren": 1.2e-07, - "lofton": 1.2e-07, - "londres": 1.2e-07, - "loots": 1.2e-07, - "lorient": 1.2e-07, - "lorillard": 1.2e-07, - "lrp": 1.2e-07, - "lutely": 1.2e-07, - "lvt": 1.2e-07, - "lyonnais": 1.2e-07, - "lyse": 1.2e-07, - "maam": 1.2e-07, - "macca": 1.2e-07, - "macleish": 1.2e-07, - "mader": 1.2e-07, - "maggy": 1.2e-07, - "maghrib": 1.2e-07, - "maidservant": 1.2e-07, - "majumdar": 1.2e-07, - "makar": 1.2e-07, - "malm": 1.2e-07, - "malty": 1.2e-07, - "mamacita": 1.2e-07, - "manchukuo": 1.2e-07, - "manchus": 1.2e-07, - "margiela": 1.2e-07, - "marler": 1.2e-07, - "marquand": 1.2e-07, - "marri": 1.2e-07, - "masturbator": 1.2e-07, - "mayotte": 1.2e-07, - "mbar": 1.2e-07, - "mbl": 1.2e-07, - "mccully": 1.2e-07, - "mctavish": 1.2e-07, - "medfield": 1.2e-07, - "medicis": 1.2e-07, - "megafauna": 1.2e-07, - "megane": 1.2e-07, - "mellifluous": 1.2e-07, - "mellish": 1.2e-07, - "memorializing": 1.2e-07, - "mercato": 1.2e-07, - "merchantmen": 1.2e-07, - "mgb": 1.2e-07, - "mikulski": 1.2e-07, - "mineralogist": 1.2e-07, - "minicab": 1.2e-07, - "ministership": 1.2e-07, - "misr": 1.2e-07, - "missives": 1.2e-07, - "missourians": 1.2e-07, - "misuses": 1.2e-07, - "mlt": 1.2e-07, - "moin": 1.2e-07, - "moko": 1.2e-07, - "momenta": 1.2e-07, - "monoplane": 1.2e-07, - "mooching": 1.2e-07, - "mopey": 1.2e-07, - "morticia": 1.2e-07, - "movingly": 1.2e-07, - "moyle": 1.2e-07, - "mozgov": 1.2e-07, - "mpas": 1.2e-07, - "mphil": 1.2e-07, - "muji": 1.2e-07, - "mulgrave": 1.2e-07, - "multiplexer": 1.2e-07, - "murtaza": 1.2e-07, - "muscarinic": 1.2e-07, - "musick": 1.2e-07, - "muzaffarnagar": 1.2e-07, - "mwa": 1.2e-07, - "myriam": 1.2e-07, - "nace": 1.2e-07, - "nack": 1.2e-07, - "najjar": 1.2e-07, - "nanite": 1.2e-07, - "naresh": 1.2e-07, - "narvik": 1.2e-07, - "nassim": 1.2e-07, - "nationalizing": 1.2e-07, - "naturalisation": 1.2e-07, - "naturopathic": 1.2e-07, - "nealon": 1.2e-07, - "nectarine": 1.2e-07, - "neela": 1.2e-07, - "nellore": 1.2e-07, - "nerc": 1.2e-07, - "neurocognitive": 1.2e-07, - "neurogenic": 1.2e-07, - "newsboy": 1.2e-07, - "niamey": 1.2e-07, - "niti": 1.2e-07, - "niya": 1.2e-07, - "nizhny": 1.2e-07, - "nlds": 1.2e-07, - "nnpc": 1.2e-07, - "nonpareil": 1.2e-07, - "norther": 1.2e-07, - "nowra": 1.2e-07, - "nph": 1.2e-07, - "nris": 1.2e-07, - "ntl": 1.2e-07, - "nurul": 1.2e-07, - "oflynn": 1.2e-07, - "omalleys": 1.2e-07, - "obviousness": 1.2e-07, - "occasioning": 1.2e-07, - "occlusal": 1.2e-07, - "odp": 1.2e-07, - "ofdm": 1.2e-07, - "officious": 1.2e-07, - "oga": 1.2e-07, - "oglala": 1.2e-07, - "olajuwon": 1.2e-07, - "olmec": 1.2e-07, - "olmos": 1.2e-07, - "oml": 1.2e-07, - "opencl": 1.2e-07, - "oppositely": 1.2e-07, - "orch": 1.2e-07, - "oricon": 1.2e-07, - "orogeny": 1.2e-07, - "orthostatic": 1.2e-07, - "osl": 1.2e-07, - "outscore": 1.2e-07, - "outshone": 1.2e-07, - "overestimates": 1.2e-07, - "pada": 1.2e-07, - "pageviews": 1.2e-07, - "pamuk": 1.2e-07, - "paquette": 1.2e-07, - "parapets": 1.2e-07, - "parlayed": 1.2e-07, - "partygoers": 1.2e-07, - "passivation": 1.2e-07, - "payal": 1.2e-07, - "paynter": 1.2e-07, - "peddles": 1.2e-07, - "pedicel": 1.2e-07, - "pentagonal": 1.2e-07, - "pentonville": 1.2e-07, - "peremptory": 1.2e-07, - "perms": 1.2e-07, - "personalfinance": 1.2e-07, - "peto": 1.2e-07, - "petulance": 1.2e-07, - "pfaff": 1.2e-07, - "pgr": 1.2e-07, - "phl": 1.2e-07, - "phonies": 1.2e-07, - "pinay": 1.2e-07, - "pira": 1.2e-07, - "piv": 1.2e-07, - "plaine": 1.2e-07, - "plame": 1.2e-07, - "plautus": 1.2e-07, - "playfield": 1.2e-07, - "plympton": 1.2e-07, - "pnm": 1.2e-07, - "poder": 1.2e-07, - "polonius": 1.2e-07, - "polson": 1.2e-07, - "polyclonal": 1.2e-07, - "pomeranz": 1.2e-07, - "popolo": 1.2e-07, - "porphyria": 1.2e-07, - "portos": 1.2e-07, - "prb": 1.2e-07, - "preggo": 1.2e-07, - "preliminarily": 1.2e-07, - "presbyter": 1.2e-07, - "prescotts": 1.2e-07, - "prestressed": 1.2e-07, - "pretties": 1.2e-07, - "princip": 1.2e-07, - "prk": 1.2e-07, - "prolife": 1.2e-07, - "prostituted": 1.2e-07, - "provably": 1.2e-07, - "pskov": 1.2e-07, - "pssh": 1.2e-07, - "publicis": 1.2e-07, - "pulsations": 1.2e-07, - "pvv": 1.2e-07, - "qamar": 1.2e-07, - "quantifiers": 1.2e-07, - "queensferry": 1.2e-07, - "quoth": 1.2e-07, - "radials": 1.2e-07, - "raed": 1.2e-07, - "raffia": 1.2e-07, - "raiola": 1.2e-07, - "ramanujan": 1.2e-07, - "ransoms": 1.2e-07, - "rationalists": 1.2e-07, - "raymundo": 1.2e-07, - "reais": 1.2e-07, - "realdonaldtrump": 1.2e-07, - "reall": 1.2e-07, - "recognizably": 1.2e-07, - "recordable": 1.2e-07, - "rediculous": 1.2e-07, - "refrigerating": 1.2e-07, - "reisman": 1.2e-07, - "rekt": 1.2e-07, - "remastering": 1.2e-07, - "renormalization": 1.2e-07, - "repairmen": 1.2e-07, - "reprocessed": 1.2e-07, - "reso": 1.2e-07, - "reuther": 1.2e-07, - "reword": 1.2e-07, - "rheology": 1.2e-07, - "rheumatologist": 1.2e-07, - "rhian": 1.2e-07, - "rhianna": 1.2e-07, - "rhum": 1.2e-07, - "ribald": 1.2e-07, - "rickenbacker": 1.2e-07, - "rioter": 1.2e-07, - "riverbend": 1.2e-07, - "riveter": 1.2e-07, - "roadrunners": 1.2e-07, - "robina": 1.2e-07, - "robocalls": 1.2e-07, - "rubra": 1.2e-07, - "rustom": 1.2e-07, - "rya": 1.2e-07, - "rylan": 1.2e-07, - "sabri": 1.2e-07, - "sadako": 1.2e-07, - "sako": 1.2e-07, - "sambar": 1.2e-07, - "sampaoli": 1.2e-07, - "samy": 1.2e-07, - "sandcastles": 1.2e-07, - "sandie": 1.2e-07, - "sanibel": 1.2e-07, - "sanne": 1.2e-07, - "satcom": 1.2e-07, - "sathya": 1.2e-07, - "satirize": 1.2e-07, - "scandalously": 1.2e-07, - "schachter": 1.2e-07, - "schapiro": 1.2e-07, - "schenker": 1.2e-07, - "schlossberg": 1.2e-07, - "schneiders": 1.2e-07, - "schwann": 1.2e-07, - "screencaps": 1.2e-07, - "scuse": 1.2e-07, - "semifinalists": 1.2e-07, - "senedd": 1.2e-07, - "senn": 1.2e-07, - "sepoys": 1.2e-07, - "seurat": 1.2e-07, - "shapeshifters": 1.2e-07, - "shawty": 1.2e-07, - "shazia": 1.2e-07, - "shehzad": 1.2e-07, - "sheldrake": 1.2e-07, - "shims": 1.2e-07, - "shingeki": 1.2e-07, - "shizuka": 1.2e-07, - "shrivelled": 1.2e-07, - "sibi": 1.2e-07, - "siddique": 1.2e-07, - "sieves": 1.2e-07, - "siggy": 1.2e-07, - "sigi": 1.2e-07, - "simpletons": 1.2e-07, - "singletons": 1.2e-07, - "siskel": 1.2e-07, - "skinnies": 1.2e-07, - "skullcap": 1.2e-07, - "slac": 1.2e-07, - "slugfest": 1.2e-07, - "slumming": 1.2e-07, - "smelted": 1.2e-07, - "smk": 1.2e-07, - "smudging": 1.2e-07, - "smw": 1.2e-07, - "sniggering": 1.2e-07, - "snoops": 6.92e-08, - "snowboards": 1.2e-07, - "sory": 1.2e-07, - "speyside": 1.2e-07, - "spira": 1.2e-07, - "spirally": 1.2e-07, - "spirulina": 1.2e-07, - "splotches": 1.2e-07, - "sportsmans": 1.2e-07, - "springfields": 1.2e-07, - "spurr": 1.2e-07, - "sqa": 1.2e-07, - "squiggles": 1.2e-07, - "squinty": 1.2e-07, - "sree": 1.2e-07, - "sriram": 1.2e-07, - "ssdi": 1.2e-07, - "stagflation": 1.2e-07, - "stal": 1.2e-07, - "stanly": 1.2e-07, - "starbase": 1.2e-07, - "stater": 1.2e-07, - "staub": 1.2e-07, - "steamrolled": 1.2e-07, - "stell": 1.2e-07, - "stellate": 1.2e-07, - "stempel": 1.2e-07, - "stickin": 1.2e-07, - "stomper": 1.2e-07, - "ston": 1.2e-07, - "straightest": 1.2e-07, - "subacute": 1.2e-07, - "subang": 1.2e-07, - "subdomain": 1.2e-07, - "suda": 1.2e-07, - "sule": 1.2e-07, - "sumit": 1.2e-07, - "sungai": 1.2e-07, - "sunrisers": 1.2e-07, - "sunstone": 1.2e-07, - "supercup": 1.2e-07, - "superstorm": 1.2e-07, - "suwon": 1.2e-07, - "suzukis": 1.2e-07, - "sva": 1.2e-07, - "swalwell": 1.2e-07, - "swashbuckler": 1.2e-07, - "switchover": 1.2e-07, - "sybase": 1.2e-07, - "sylmar": 1.2e-07, - "sylva": 1.2e-07, - "symbiont": 1.2e-07, - "synchronise": 1.2e-07, - "tabard": 1.2e-07, - "taeyeon": 1.2e-07, - "taiz": 1.2e-07, - "takara": 1.2e-07, - "taluka": 1.2e-07, - "tanneries": 1.2e-07, - "tanu": 1.2e-07, - "tarasenko": 1.2e-07, - "tartrate": 1.2e-07, - "tarzana": 1.2e-07, - "teasingly": 1.2e-07, - "tebbit": 1.2e-07, - "technocracy": 1.2e-07, - "technocrat": 1.2e-07, - "teel": 1.2e-07, - "tehachapi": 1.2e-07, - "teja": 1.2e-07, - "tenenbaum": 1.2e-07, - "tensorflow": 1.2e-07, - "terracing": 1.2e-07, - "tey": 1.2e-07, - "thal": 1.2e-07, - "thich": 1.2e-07, - "thingie": 1.2e-07, - "thrawn": 1.2e-07, - "tibbetts": 1.2e-07, - "ticky": 1.2e-07, - "tikal": 1.2e-07, - "tilikum": 1.2e-07, - "tks": 1.2e-07, - "tni": 1.2e-07, - "toiletry": 1.2e-07, - "tolland": 1.2e-07, - "topples": 1.2e-07, - "tortious": 1.2e-07, - "tosa": 1.2e-07, - "totaly": 1.2e-07, - "toxicities": 1.2e-07, - "trager": 1.2e-07, - "transamerica": 1.2e-07, - "transfigured": 1.2e-07, - "transliterated": 1.2e-07, - "tras": 1.2e-07, - "trebles": 1.2e-07, - "tribble": 1.2e-07, - "trotz": 1.2e-07, - "tshwane": 1.2e-07, - "ttd": 1.2e-07, - "tuitions": 1.2e-07, - "turings": 1.2e-07, - "turpitude": 1.2e-07, - "tuzla": 1.2e-07, - "tvxq": 1.2e-07, - "twixt": 1.2e-07, - "tybee": 1.2e-07, - "ubaldo": 1.2e-07, - "ujjain": 1.2e-07, - "ultrabook": 1.2e-07, - "unbundling": 1.2e-07, - "unburied": 1.2e-07, - "unburned": 1.2e-07, - "uncertainly": 1.2e-07, - "underperformance": 1.2e-07, - "ungulates": 1.2e-07, - "unitas": 1.2e-07, - "unromantic": 1.2e-07, - "unruffled": 1.2e-07, - "unseating": 1.2e-07, - "unsubsidized": 1.2e-07, - "untrusted": 1.2e-07, - "unverifiable": 1.2e-07, - "upm": 1.2e-07, - "upregulation": 1.2e-07, - "upvotes": 1.2e-07, - "urbanites": 1.2e-07, - "urm": 1.2e-07, - "usfws": 1.2e-07, - "uzumaki": 1.2e-07, - "vajra": 1.2e-07, - "valdemar": 1.2e-07, - "valles": 1.2e-07, - "vandyke": 1.2e-07, - "vauban": 1.2e-07, - "vav": 1.2e-07, - "vch": 1.2e-07, - "veiny": 1.2e-07, - "verandas": 1.2e-07, - "verhoeven": 1.2e-07, - "vermeil": 1.2e-07, - "vertonghen": 1.2e-07, - "villers": 1.2e-07, - "vindicator": 1.2e-07, - "virtanen": 1.2e-07, - "virtualbox": 1.2e-07, - "vivax": 1.2e-07, - "vorster": 1.2e-07, - "vsc": 1.2e-07, - "wak": 1.2e-07, - "wallander": 1.2e-07, - "wallington": 1.2e-07, - "warble": 1.2e-07, - "wardlaw": 1.2e-07, - "warplane": 1.2e-07, - "warty": 1.2e-07, - "wasser": 1.2e-07, - "wastebasket": 1.2e-07, - "wataru": 1.2e-07, - "watchtowers": 1.2e-07, - "weisberg": 1.2e-07, - "westphalian": 1.2e-07, - "wethersfield": 1.2e-07, - "wetsuits": 1.2e-07, - "whc": 1.2e-07, - "wheezes": 1.2e-07, - "whidbey": 1.2e-07, - "whisperers": 1.2e-07, - "whut": 1.2e-07, - "wiccans": 1.2e-07, - "widebody": 1.2e-07, - "wilmette": 1.2e-07, - "wishaw": 1.2e-07, - "wmf": 1.2e-07, - "wog": 1.2e-07, - "workmans": 1.2e-07, - "worl": 1.2e-07, - "woth": 1.2e-07, - "woud": 1.2e-07, - "wsh": 1.2e-07, - "wurm": 1.2e-07, - "xlii": 1.2e-07, - "yelps": 1.2e-07, - "yeni": 1.2e-07, - "yid": 1.2e-07, - "yondu": 1.2e-07, - "yonhap": 1.2e-07, - "yoongi": 1.2e-07, - "youngman": 1.2e-07, - "ysidro": 1.2e-07, - "zdnet": 1.2e-07, - "zener": 1.2e-07, - "zhongshan": 1.2e-07, - "zima": 1.2e-07, - "zool": 1.2e-07, - "zygomatic": 1.2e-07, - "abang": 1.17e-07, - "abhimanyu": 1.17e-07, - "aborts": 1.17e-07, - "abramowitz": 1.17e-07, - "abscond": 1.17e-07, - "acas": 7.94e-08, - "achim": 1.17e-07, - "adem": 1.17e-07, - "aeron": 1.17e-07, - "afrojack": 1.17e-07, - "ageist": 1.17e-07, - "agitations": 1.17e-07, - "agricultures": 1.17e-07, - "airconditioning": 1.17e-07, - "ajo": 1.17e-07, - "alastor": 1.17e-07, - "aln": 1.17e-07, - "ambleside": 1.17e-07, - "ambroses": 1.17e-07, - "aminotransferase": 1.17e-07, - "ancs": 1.17e-07, - "aneurin": 1.17e-07, - "angelous": 1.17e-07, - "anouk": 1.17e-07, - "antin": 1.17e-07, - "antitoxin": 1.17e-07, - "antonelli": 1.17e-07, - "apalachicola": 1.17e-07, - "apolo": 1.17e-07, - "apres": 1.17e-07, - "aquaponics": 1.17e-07, - "archrival": 1.17e-07, - "arclight": 1.17e-07, - "arcos": 1.17e-07, - "arirang": 1.17e-07, - "aristides": 1.7e-08, - "arris": 1.17e-07, - "arvid": 1.17e-07, - "askreddit": 1.17e-07, - "assa": 1.17e-07, - "assignation": 1.17e-07, - "assuaged": 1.17e-07, - "astroworld": 1.17e-07, - "atiku": 1.17e-07, - "ation": 1.17e-07, - "attenuator": 1.17e-07, - "atwoods": 1.17e-07, - "auric": 1.17e-07, - "autor": 1.17e-07, - "avoir": 1.17e-07, - "backbones": 1.17e-07, - "baki": 1.17e-07, - "balad": 1.17e-07, - "baltar": 1.17e-07, - "bangtan": 1.17e-07, - "bannons": 1.17e-07, - "baphomet": 1.17e-07, - "bardsley": 1.17e-07, - "bartholomews": 1.17e-07, - "bartletts": 1.17e-07, - "basham": 1.17e-07, - "bastia": 1.17e-07, - "bayleigh": 1.17e-07, - "bazin": 1.17e-07, - "beardless": 1.17e-07, - "beautified": 1.17e-07, - "beefsteak": 1.17e-07, - "befit": 1.17e-07, - "bendable": 1.17e-07, - "benford": 1.17e-07, - "berthier": 1.17e-07, - "bessy": 1.17e-07, - "bestfriend": 1.17e-07, - "bhanu": 1.17e-07, - "bickel": 1.17e-07, - "biddeford": 1.17e-07, - "bidi": 1.17e-07, - "bigge": 1.17e-07, - "bilk": 1.17e-07, - "biodegradation": 1.17e-07, - "bipod": 1.17e-07, - "birdseye": 1.17e-07, - "birger": 1.17e-07, - "bisects": 1.17e-07, - "bishoprics": 1.17e-07, - "bitterest": 1.17e-07, - "blacc": 1.17e-07, - "blackballed": 1.17e-07, - "blackburns": 1.17e-07, - "blag": 1.17e-07, - "blasphemer": 1.17e-07, - "blurts": 1.17e-07, - "boothroyd": 1.17e-07, - "boros": 1.17e-07, - "bors": 1.17e-07, - "botting": 1.17e-07, - "bourdieu": 1.17e-07, - "braai": 1.17e-07, - "brasher": 1.17e-07, - "brentano": 1.17e-07, - "bretons": 1.17e-07, - "brinks": 1.17e-07, - "brockville": 1.17e-07, - "bruckheimer": 1.17e-07, - "buffeting": 1.17e-07, - "buna": 1.17e-07, - "bundys": 1.17e-07, - "buri": 1.17e-07, - "burkhalter": 1.17e-07, - "burqas": 1.17e-07, - "bwa": 1.17e-07, - "byrom": 1.17e-07, - "bytecode": 1.17e-07, - "cabarets": 1.17e-07, - "caja": 1.17e-07, - "calorimetry": 1.17e-07, - "calpers": 1.17e-07, - "carbonized": 1.17e-07, - "carboxylate": 1.17e-07, - "carrell": 1.17e-07, - "caseloads": 1.17e-07, - "caseworkers": 1.17e-07, - "catacomb": 1.17e-07, - "cef": 1.17e-07, - "centralism": 1.17e-07, - "centrism": 1.17e-07, - "cereus": 1.17e-07, - "chambray": 1.17e-07, - "chania": 1.17e-07, - "chanukah": 1.17e-07, - "chaperon": 1.17e-07, - "chekov": 1.17e-07, - "chemung": 1.17e-07, - "chery": 1.17e-07, - "chesley": 1.17e-07, - "chetty": 1.17e-07, - "chibnall": 1.17e-07, - "chinua": 1.17e-07, - "chirality": 1.17e-07, - "chitwood": 1.17e-07, - "chloroquine": 1.17e-07, - "choong": 1.17e-07, - "chows": 7.41e-08, - "cineworld": 1.17e-07, - "civilizational": 1.17e-07, - "cleanings": 1.17e-07, - "cleavers": 2.51e-08, - "clemmons": 1.17e-07, - "clubman": 1.17e-07, - "cmhc": 1.17e-07, - "coadjutor": 1.17e-07, - "cocksuckers": 1.17e-07, - "coffeeshop": 1.17e-07, - "coghill": 1.17e-07, - "coheed": 1.17e-07, - "cojones": 1.17e-07, - "colorfully": 1.17e-07, - "colquitt": 1.17e-07, - "columbuss": 1.17e-07, - "composted": 1.17e-07, - "conchords": 1.17e-07, - "congdon": 1.17e-07, - "consigliere": 1.17e-07, - "consigning": 1.17e-07, - "consonance": 1.17e-07, - "constitutionalist": 1.17e-07, - "contes": 1.05e-07, - "coolies": 1.17e-07, - "coronas": 1.17e-07, - "corot": 1.17e-07, - "corroding": 1.17e-07, - "cosco": 1.17e-07, - "cottagers": 1.17e-07, - "cpj": 1.17e-07, - "cryopreservation": 1.17e-07, - "cubano": 1.17e-07, - "cubit": 1.17e-07, - "cubitt": 1.17e-07, - "cujo": 1.17e-07, - "culberson": 1.17e-07, - "cully": 1.17e-07, - "cvg": 1.17e-07, - "cyclopedia": 1.17e-07, - "daigle": 1.17e-07, - "dalvin": 1.17e-07, - "damo": 1.17e-07, - "dard": 1.17e-07, - "dati": 1.17e-07, - "datin": 1.17e-07, - "datong": 1.17e-07, - "ddb": 1.17e-07, - "deathcore": 1.17e-07, - "deathtrap": 1.17e-07, - "debridement": 1.17e-07, - "decarboxylase": 1.17e-07, - "decriminalisation": 1.17e-07, - "defilement": 1.17e-07, - "delinquencies": 1.17e-07, - "delly": 1.17e-07, - "delphic": 1.17e-07, - "demiurge": 1.17e-07, - "derren": 1.17e-07, - "desa": 1.17e-07, - "deselect": 1.17e-07, - "deshmukh": 1.17e-07, - "desmonds": 1.17e-07, - "destructed": 1.17e-07, - "dgb": 1.17e-07, - "dhhs": 1.17e-07, - "dialectal": 1.17e-07, - "diamine": 1.17e-07, - "diddley": 1.17e-07, - "didsbury": 1.17e-07, - "digicel": 1.17e-07, - "dijkstra": 1.17e-07, - "dilley": 1.17e-07, - "disbarment": 1.17e-07, - "discombobulated": 1.17e-07, - "disfavor": 1.17e-07, - "disinvestment": 1.17e-07, - "dissembling": 1.17e-07, - "distresses": 1.17e-07, - "doerr": 1.17e-07, - "domingue": 1.17e-07, - "doncic": 1.17e-07, - "dorsalis": 1.17e-07, - "doubter": 1.17e-07, - "dowson": 1.17e-07, - "drac": 1.17e-07, - "drafthouse": 1.17e-07, - "drams": 1.17e-07, - "drian": 1.17e-07, - "dubinsky": 1.17e-07, - "dudleys": 1.17e-07, - "dunton": 1.17e-07, - "duplicative": 1.17e-07, - "dusan": 1.17e-07, - "dyspepsia": 1.17e-07, - "earwig": 1.17e-07, - "ectoplasm": 1.17e-07, - "ector": 1.17e-07, - "egremont": 1.17e-07, - "ehrman": 1.17e-07, - "eisley": 1.17e-07, - "eklund": 1.17e-07, - "elr": 1.17e-07, - "elrod": 1.17e-07, - "elwin": 1.17e-07, - "embo": 1.17e-07, - "emplaced": 1.17e-07, - "emulsified": 1.17e-07, - "enc": 1.17e-07, - "enquires": 1.17e-07, - "eritreans": 1.17e-07, - "ertz": 1.17e-07, - "esas": 8.32e-08, - "escargot": 1.17e-07, - "ethology": 1.17e-07, - "evelyns": 1.17e-07, - "evenin": 1.17e-07, - "eveything": 1.17e-07, - "evga": 1.17e-07, - "evolutionists": 1.17e-07, - "exorcists": 1.17e-07, - "exper": 1.17e-07, - "fajita": 1.17e-07, - "falkner": 1.17e-07, - "fanciers": 1.17e-07, - "farages": 1.17e-07, - "farces": 1.17e-07, - "fatca": 1.17e-07, - "faustian": 1.17e-07, - "fcr": 1.17e-07, - "feo": 1.17e-07, - "fergal": 1.17e-07, - "ferritin": 1.17e-07, - "fibroid": 1.17e-07, - "fibronectin": 1.17e-07, - "fidelio": 1.17e-07, - "fii": 1.17e-07, - "filmer": 1.17e-07, - "finalization": 1.17e-07, - "fitment": 1.17e-07, - "fizzles": 1.17e-07, - "fleeces": 1.17e-07, - "fluffing": 1.17e-07, - "fmcg": 1.17e-07, - "focaccia": 1.17e-07, - "fondo": 1.17e-07, - "foreland": 1.17e-07, - "forelegs": 1.17e-07, - "fpgas": 1.17e-07, - "fredrickson": 1.17e-07, - "frou": 1.17e-07, - "fst": 1.17e-07, - "ftth": 1.17e-07, - "fubuki": 1.17e-07, - "fus": 6.03e-08, - "gagner": 1.17e-07, - "gainst": 1.17e-07, - "ganassi": 1.17e-07, - "gandhinagar": 1.17e-07, - "ganna": 1.17e-07, - "gatland": 1.17e-07, - "gavaskar": 1.17e-07, - "gaviria": 1.17e-07, - "gda": 1.17e-07, - "gelfand": 1.17e-07, - "gentrifying": 1.17e-07, - "geralds": 1.17e-07, - "geting": 1.17e-07, - "ghazali": 1.17e-07, - "giambattista": 1.17e-07, - "gidget": 1.17e-07, - "gidley": 1.17e-07, - "glados": 1.17e-07, - "gmd": 1.17e-07, - "gmod": 1.17e-07, - "gobbler": 1.17e-07, - "godoy": 1.17e-07, - "goli": 1.17e-07, - "goodrem": 1.17e-07, - "gossett": 1.17e-07, - "goyim": 1.17e-07, - "graeco": 1.17e-07, - "grigson": 1.17e-07, - "gripen": 1.17e-07, - "grosz": 1.17e-07, - "gullivers": 1.17e-07, - "gunslingers": 1.17e-07, - "gurren": 1.17e-07, - "gusset": 1.17e-07, - "guttman": 1.17e-07, - "gwr": 1.17e-07, - "gyal": 1.17e-07, - "gyroscopes": 1.17e-07, - "hagelin": 1.17e-07, - "hairball": 1.17e-07, - "halil": 1.17e-07, - "halogens": 1.17e-07, - "harangue": 1.17e-07, - "hardees": 1.17e-07, - "haribo": 1.17e-07, - "harking": 1.17e-07, - "harks": 1.17e-07, - "hazels": 1.17e-07, - "heartworm": 1.17e-07, - "heebie": 1.17e-07, - "heskey": 1.17e-07, - "hijra": 1.17e-07, - "himes": 1.17e-07, - "himmel": 1.17e-07, - "hirose": 1.17e-07, - "hispania": 1.17e-07, - "histograms": 1.17e-07, - "hkd": 1.17e-07, - "hmt": 1.17e-07, - "holmberg": 1.17e-07, - "hoole": 1.17e-07, - "hooter": 1.17e-07, - "hootsuite": 1.17e-07, - "hostetler": 1.17e-07, - "hotfix": 1.17e-07, - "hotstar": 1.17e-07, - "hoult": 1.17e-07, - "houndstooth": 1.17e-07, - "housebound": 1.17e-07, - "housley": 1.17e-07, - "housman": 1.17e-07, - "howse": 1.17e-07, - "hox": 1.17e-07, - "hta": 1.17e-07, - "htcs": 1.17e-07, - "htv": 1.17e-07, - "humours": 1.17e-07, - "hydrofluoric": 1.17e-07, - "hygroscopic": 1.17e-07, - "hypoplasia": 1.17e-07, - "idlewild": 1.17e-07, - "ifbb": 1.17e-07, - "iha": 1.17e-07, - "improver": 1.17e-07, - "incirlik": 1.17e-07, - "incriminated": 1.17e-07, - "infinities": 1.17e-07, - "inhabitable": 1.17e-07, - "initializing": 1.17e-07, - "injun": 1.17e-07, - "innervated": 1.17e-07, - "insincerity": 1.17e-07, - "internationalists": 1.17e-07, - "intoxicants": 1.17e-07, - "inundate": 1.17e-07, - "invercargill": 1.17e-07, - "ipe": 1.17e-07, - "iphigenia": 1.17e-07, - "ipsy": 1.17e-07, - "ithink": 1.17e-07, - "jablonski": 1.17e-07, - "jadhav": 1.17e-07, - "jaha": 1.17e-07, - "jankowski": 1.17e-07, - "janky": 1.17e-07, - "jebb": 1.17e-07, - "jemison": 1.17e-07, - "jerald": 1.17e-07, - "jetliner": 1.17e-07, - "jinja": 1.17e-07, - "jira": 1.17e-07, - "jitterbug": 1.17e-07, - "jizzed": 1.17e-07, - "jowl": 1.17e-07, - "joya": 1.17e-07, - "juanito": 1.17e-07, - "juda": 1.17e-07, - "juden": 1.17e-07, - "justa": 1.17e-07, - "kairi": 1.17e-07, - "kaizen": 1.17e-07, - "kallis": 1.17e-07, - "kalu": 1.17e-07, - "kalyani": 1.17e-07, - "karev": 1.17e-07, - "karis": 1.17e-07, - "karius": 1.17e-07, - "karta": 1.17e-07, - "kasdan": 1.17e-07, - "kassandra": 1.17e-07, - "kerem": 1.17e-07, - "kero": 1.17e-07, - "kers": 1.17e-07, - "keshi": 1.17e-07, - "kham": 1.17e-07, - "khamis": 1.17e-07, - "kho": 1.17e-07, - "khris": 1.17e-07, - "kickapoo": 1.17e-07, - "kii": 1.17e-07, - "kimberlite": 1.17e-07, - "kincardine": 1.17e-07, - "kins": 1.17e-07, - "kintyre": 1.17e-07, - "kirklees": 1.17e-07, - "knower": 1.17e-07, - "knute": 1.17e-07, - "kobold": 1.17e-07, - "kodachrome": 1.17e-07, - "kolhapur": 1.17e-07, - "konan": 1.17e-07, - "koopa": 1.17e-07, - "krishnas": 1.17e-07, - "kristal": 1.17e-07, - "kroc": 1.17e-07, - "ksenia": 1.17e-07, - "kunar": 1.17e-07, - "kure": 1.17e-07, - "kusanagi": 1.17e-07, - "kuttner": 1.17e-07, - "lagu": 1.17e-07, - "landsberg": 1.17e-07, - "lapham": 1.17e-07, - "lassies": 1.17e-07, - "laverty": 1.17e-07, - "ldn": 1.17e-07, - "leddy": 1.17e-07, - "legitimizes": 1.17e-07, - "leiva": 1.17e-07, - "lettie": 1.17e-07, - "levison": 1.17e-07, - "lha": 1.17e-07, - "libdems": 1.17e-07, - "licentious": 1.17e-07, - "lika": 1.17e-07, - "lilah": 1.17e-07, - "liotta": 1.17e-07, - "lipsky": 1.17e-07, - "liriano": 1.17e-07, - "llandaff": 1.17e-07, - "loadout": 1.17e-07, - "loder": 1.17e-07, - "loge": 1.17e-07, - "logjam": 1.17e-07, - "longitudes": 1.17e-07, - "loool": 1.17e-07, - "lores": 1.17e-07, - "ltds": 1.17e-07, - "lus": 8.13e-08, - "lubed": 1.17e-07, - "lucias": 1.17e-07, - "lucilla": 1.17e-07, - "ludington": 1.17e-07, - "lumineers": 1.17e-07, - "macdougal": 1.17e-07, - "maclay": 1.17e-07, - "maddies": 1.17e-07, - "madrigals": 1.17e-07, - "mafias": 1.07e-07, - "magnetics": 1.17e-07, - "maiko": 1.17e-07, - "maillot": 1.17e-07, - "makerspace": 1.17e-07, - "malar": 1.17e-07, - "malthouse": 1.17e-07, - "malvo": 1.17e-07, - "mangas": 7.08e-08, - "mangling": 1.17e-07, - "manholes": 1.17e-07, - "marcion": 1.17e-07, - "marilyns": 1.17e-07, - "marring": 1.17e-07, - "martinet": 1.17e-07, - "masayuki": 1.17e-07, - "masta": 1.17e-07, - "matsunaga": 1.17e-07, - "mattison": 1.17e-07, - "maybin": 1.17e-07, - "mbd": 1.17e-07, - "mckeen": 1.17e-07, - "mckelvey": 1.17e-07, - "mckenney": 1.17e-07, - "mclaurin": 1.17e-07, - "mcleans": 1.17e-07, - "mclendon": 1.17e-07, - "mcmuffin": 1.17e-07, - "mcroberts": 1.17e-07, - "meadowlark": 1.17e-07, - "mechanisation": 1.17e-07, - "megiddo": 1.17e-07, - "mehndi": 1.17e-07, - "melnick": 1.17e-07, - "melodically": 1.17e-07, - "menken": 1.17e-07, - "meowth": 1.17e-07, - "mfb": 1.17e-07, - "mgk": 1.17e-07, - "mgp": 1.17e-07, - "microarrays": 1.17e-07, - "micromanagement": 1.17e-07, - "microwaving": 1.17e-07, - "mifune": 1.17e-07, - "milledgeville": 1.17e-07, - "miniskirts": 1.17e-07, - "mintage": 1.17e-07, - "mirador": 1.17e-07, - "mircea": 1.17e-07, - "miscalculations": 1.17e-07, - "miscast": 1.17e-07, - "misdirect": 1.17e-07, - "misericordia": 1.17e-07, - "mishawaka": 1.17e-07, - "misinterpretations": 1.17e-07, - "mitsuko": 1.17e-07, - "mitte": 1.17e-07, - "miwa": 1.17e-07, - "mkay": 8.13e-08, - "mmhmm": 1.17e-07, - "mmos": 1.17e-07, - "moai": 1.17e-07, - "mohican": 1.17e-07, - "molton": 1.17e-07, - "monbiot": 1.17e-07, - "monocyte": 1.17e-07, - "montville": 1.17e-07, - "moscato": 1.17e-07, - "motrin": 1.17e-07, - "mottram": 1.17e-07, - "mourad": 1.17e-07, - "moyles": 1.17e-07, - "muguruza": 1.17e-07, - "multis": 1.17e-07, - "nacelles": 1.17e-07, - "nagin": 1.17e-07, - "naha": 1.17e-07, - "nahh": 1.17e-07, - "nahin": 1.17e-07, - "nakba": 1.17e-07, - "nangarhar": 1.17e-07, - "naphthalene": 1.17e-07, - "nard": 1.17e-07, - "naumann": 1.17e-07, - "nematic": 1.17e-07, - "neosho": 1.17e-07, - "nerdist": 1.17e-07, - "neta": 1.17e-07, - "nevil": 1.17e-07, - "nihal": 1.17e-07, - "nimby": 1.17e-07, - "ninjutsu": 1.17e-07, - "nitrogenous": 1.17e-07, - "nmm": 1.17e-07, - "nondestructive": 1.17e-07, - "norsemen": 1.17e-07, - "northcott": 1.17e-07, - "notated": 1.17e-07, - "notionally": 1.17e-07, - "npi": 1.17e-07, - "nuala": 1.17e-07, - "nutri": 1.17e-07, - "nvda": 1.17e-07, - "nwr": 1.17e-07, - "nyborg": 1.17e-07, - "nystagmus": 1.17e-07, - "ofallon": 1.17e-07, - "oakhurst": 1.17e-07, - "obd": 1.17e-07, - "obstetrical": 1.17e-07, - "odenkirk": 1.17e-07, - "oilseeds": 1.17e-07, - "olivo": 1.17e-07, - "oncogenes": 1.17e-07, - "onitsha": 1.17e-07, - "opeth": 1.17e-07, - "opining": 1.17e-07, - "opto": 1.17e-07, - "oranje": 1.17e-07, - "oriana": 1.17e-07, - "orkut": 1.17e-07, - "ostrander": 1.17e-07, - "ostrovsky": 1.17e-07, - "ouattara": 1.17e-07, - "outplay": 1.17e-07, - "outvoted": 1.17e-07, - "overman": 1.17e-07, - "overripe": 1.17e-07, - "owsley": 1.17e-07, - "packham": 1.17e-07, - "palladio": 1.17e-07, - "panay": 1.17e-07, - "pangaea": 1.17e-07, - "paralysing": 1.17e-07, - "partington": 1.17e-07, - "pash": 1.17e-07, - "passphrase": 1.17e-07, - "passu": 1.17e-07, - "paxson": 1.17e-07, - "pdk": 1.17e-07, - "peatlands": 1.17e-07, - "peats": 1.17e-07, - "pendent": 1.17e-07, - "peninsulas": 9.33e-08, - "perforating": 1.17e-07, - "perpetua": 1.17e-07, - "perrie": 1.17e-07, - "pex": 1.17e-07, - "pharmacologically": 1.17e-07, - "phenobarbital": 1.17e-07, - "phenytoin": 1.17e-07, - "phlegmatic": 1.17e-07, - "photobomb": 1.17e-07, - "piatt": 1.17e-07, - "pickerel": 1.17e-07, - "pickler": 1.17e-07, - "pinecone": 1.17e-07, - "pineville": 1.17e-07, - "pirro": 1.17e-07, - "pisani": 1.17e-07, - "pismo": 1.17e-07, - "planta": 1.17e-07, - "plasterboard": 1.17e-07, - "plu": 1.17e-07, - "pme": 1.17e-07, - "pneumonic": 1.17e-07, - "poldi": 1.17e-07, - "pontypool": 1.17e-07, - "poos": 1.17e-07, - "popish": 1.17e-07, - "popularise": 1.17e-07, - "porcello": 1.17e-07, - "portholes": 1.17e-07, - "posible": 1.17e-07, - "pottstown": 1.17e-07, - "ppk": 1.17e-07, - "prabang": 1.17e-07, - "pragmatists": 1.17e-07, - "preflight": 1.17e-07, - "premenstrual": 1.17e-07, - "pressurize": 1.17e-07, - "pretexts": 1.17e-07, - "primitivism": 1.17e-07, - "princesse": 1.17e-07, - "pring": 1.17e-07, - "privatising": 1.17e-07, - "privileging": 1.17e-07, - "proces": 1.17e-07, - "procrastinated": 1.17e-07, - "procrastinator": 1.17e-07, - "pronominal": 1.17e-07, - "proprioception": 1.17e-07, - "psychodrama": 1.17e-07, - "psyop": 1.17e-07, - "puckering": 1.17e-07, - "pugilist": 1.17e-07, - "pullup": 1.17e-07, - "punny": 1.17e-07, - "pyramus": 1.17e-07, - "queef": 1.17e-07, - "queensberry": 1.17e-07, - "querrey": 1.17e-07, - "quizlet": 1.17e-07, - "quoc": 1.17e-07, - "qwest": 1.17e-07, - "radin": 1.17e-07, - "raees": 1.17e-07, - "raiment": 1.17e-07, - "ransack": 1.17e-07, - "rbd": 1.17e-07, - "rci": 1.17e-07, - "readmissions": 1.17e-07, - "reauthorize": 1.17e-07, - "recapitalization": 1.17e-07, - "recirculating": 1.17e-07, - "recollects": 1.17e-07, - "recombine": 1.17e-07, - "redditor": 1.17e-07, - "redfish": 1.17e-07, - "refered": 1.17e-07, - "refinishing": 1.17e-07, - "refueled": 1.17e-07, - "reggies": 1.17e-07, - "reh": 1.17e-07, - "relearning": 1.17e-07, - "relives": 1.17e-07, - "rencontres": 1.17e-07, - "reordered": 1.17e-07, - "represses": 1.17e-07, - "reprimanding": 1.17e-07, - "revamps": 1.17e-07, - "reversibly": 1.17e-07, - "revit": 1.17e-07, - "revitalisation": 1.17e-07, - "rewound": 1.17e-07, - "rials": 1.17e-07, - "rickles": 1.17e-07, - "ricocheting": 1.17e-07, - "ridleys": 1.17e-07, - "rienzi": 1.17e-07, - "rlm": 1.17e-07, - "robinho": 1.17e-07, - "roches": 6.03e-08, - "rocketeer": 1.17e-07, - "rodneys": 1.17e-07, - "roeder": 1.17e-07, - "rohe": 1.17e-07, - "rohini": 1.17e-07, - "rois": 1.17e-07, - "rone": 1.17e-07, - "rosalina": 1.17e-07, - "rubbermaid": 1.17e-07, - "rulership": 1.17e-07, - "runciman": 1.17e-07, - "rwe": 1.17e-07, - "ryobi": 1.17e-07, - "sahi": 1.17e-07, - "salonika": 1.17e-07, - "sanctifying": 1.17e-07, - "sandbank": 1.17e-07, - "sanh": 1.17e-07, - "sanson": 1.17e-07, - "saroyan": 1.17e-07, - "sashay": 1.17e-07, - "sasso": 1.17e-07, - "satiation": 1.17e-07, - "savitri": 1.17e-07, - "sconces": 1.17e-07, - "scopolamine": 1.17e-07, - "scorchers": 1.17e-07, - "scriptwriters": 1.17e-07, - "sdhc": 1.17e-07, - "sdo": 1.17e-07, - "seafarer": 1.17e-07, - "sealand": 1.17e-07, - "seda": 1.17e-07, - "sedley": 1.17e-07, - "seel": 1.17e-07, - "segues": 1.17e-07, - "semin": 1.17e-07, - "sensationally": 1.17e-07, - "sensitize": 1.17e-07, - "sessional": 1.17e-07, - "shapeshift": 1.17e-07, - "shearman": 1.17e-07, - "shenton": 1.17e-07, - "sheol": 1.17e-07, - "sherds": 1.17e-07, - "shinsengumi": 1.17e-07, - "shkreli": 1.17e-07, - "shofar": 1.17e-07, - "shola": 1.17e-07, - "shoul": 1.17e-07, - "shoutouts": 1.17e-07, - "shox": 1.17e-07, - "sht": 1.17e-07, - "sickos": 1.17e-07, - "sidra": 1.17e-07, - "sildenafil": 1.17e-07, - "silencio": 1.17e-07, - "silverfish": 1.17e-07, - "sinewy": 1.17e-07, - "singhal": 1.17e-07, - "sippin": 1.17e-07, - "sisk": 1.17e-07, - "skeffington": 1.17e-07, - "skene": 1.17e-07, - "skyping": 1.17e-07, - "skyrockets": 1.17e-07, - "slayings": 1.17e-07, - "slingers": 1.17e-07, - "sloe": 1.17e-07, - "sloppily": 1.17e-07, - "slyke": 1.17e-07, - "smileys": 7.41e-08, - "snowballing": 1.17e-07, - "snu": 1.17e-07, - "solaire": 1.17e-07, - "solari": 1.17e-07, - "sophomoric": 1.17e-07, - "sorbitol": 1.17e-07, - "souled": 1.17e-07, - "sourceforge": 1.17e-07, - "southwold": 1.17e-07, - "spacial": 1.17e-07, - "speakin": 1.17e-07, - "spen": 1.17e-07, - "spheroid": 1.17e-07, - "sphinxes": 1.17e-07, - "spicier": 1.17e-07, - "sportster": 1.17e-07, - "sprucing": 1.17e-07, - "srikanth": 1.17e-07, - "stampeding": 1.17e-07, - "steller": 1.17e-07, - "stepladder": 1.17e-07, - "sterol": 1.17e-07, - "stomata": 1.17e-07, - "strafe": 1.17e-07, - "strathcona": 1.17e-07, - "strickler": 1.17e-07, - "stritch": 1.17e-07, - "strummer": 1.17e-07, - "subjugating": 1.17e-07, - "submersibles": 1.17e-07, - "subspaces": 1.17e-07, - "sumlin": 1.17e-07, - "sunburns": 1.17e-07, - "supernovas": 1.17e-07, - "svo": 1.17e-07, - "swett": 1.17e-07, - "swindell": 1.17e-07, - "switchable": 1.17e-07, - "sylla": 1.17e-07, - "tachi": 1.17e-07, - "taika": 1.17e-07, - "talkshow": 1.17e-07, - "tames": 1.17e-07, - "tanah": 1.17e-07, - "tanger": 1.17e-07, - "tards": 1.17e-07, - "tarring": 1.17e-07, - "tarsal": 1.17e-07, - "teamviewer": 1.17e-07, - "teddies": 1.17e-07, - "teem": 1.17e-07, - "televangelist": 1.17e-07, - "tethys": 1.17e-07, - "themistocles": 1.17e-07, - "thenceforth": 1.17e-07, - "theorised": 1.17e-07, - "thetis": 1.17e-07, - "thien": 1.17e-07, - "tilburg": 1.17e-07, - "tillotson": 1.17e-07, - "tizen": 1.17e-07, - "tods": 5.37e-08, - "topcoat": 1.17e-07, - "topman": 1.17e-07, - "topos": 1.17e-07, - "torys": 1.17e-07, - "toughening": 1.17e-07, - "toute": 1.17e-07, - "traktor": 1.17e-07, - "tramples": 1.17e-07, - "transferee": 1.17e-07, - "transhumanism": 1.17e-07, - "transpersonal": 1.17e-07, - "trebuchet": 1.17e-07, - "triana": 1.17e-07, - "trie": 1.17e-07, - "troye": 1.17e-07, - "troyer": 1.17e-07, - "truax": 1.17e-07, - "tsubaki": 1.17e-07, - "tubule": 1.17e-07, - "tufa": 1.17e-07, - "tup": 1.17e-07, - "tweeds": 1.17e-07, - "typists": 1.17e-07, - "tyus": 1.17e-07, - "ulrik": 1.17e-07, - "unai": 1.17e-07, - "unam": 1.17e-07, - "unbeknown": 1.17e-07, - "unbidden": 1.17e-07, - "unboxed": 1.17e-07, - "unclos": 1.17e-07, - "understating": 1.17e-07, - "unevenness": 1.17e-07, - "unflappable": 1.17e-07, - "unflinchingly": 1.17e-07, - "ungar": 1.17e-07, - "unordered": 1.17e-07, - "unsentimental": 1.17e-07, - "unsparing": 1.17e-07, - "unsupportive": 1.17e-07, - "unzipping": 1.17e-07, - "upregulated": 1.17e-07, - "urf": 1.17e-07, - "urologists": 1.17e-07, - "ursuline": 1.17e-07, - "uws": 5.62e-08, - "vacay": 1.17e-07, - "vacillating": 1.17e-07, - "vaguest": 1.17e-07, - "valmont": 1.17e-07, - "vaporizers": 1.17e-07, - "vash": 1.17e-07, - "vashti": 1.17e-07, - "vaucluse": 1.17e-07, - "veblen": 1.17e-07, - "velvets": 5.01e-08, - "veolia": 1.17e-07, - "verdugo": 1.17e-07, - "vespucci": 1.17e-07, - "vienne": 1.17e-07, - "villani": 1.17e-07, - "violoncello": 1.17e-07, - "virgils": 1.17e-07, - "virgina": 1.17e-07, - "vulcanized": 1.17e-07, - "wadding": 1.17e-07, - "wafts": 1.17e-07, - "waggle": 1.17e-07, - "waistcoats": 1.17e-07, - "wallen": 1.17e-07, - "wayy": 1.17e-07, - "wch": 1.17e-07, - "weinsteins": 1.17e-07, - "wenches": 1.17e-07, - "whis": 1.17e-07, - "whm": 1.17e-07, - "wieder": 1.17e-07, - "windies": 1.17e-07, - "wino": 1.17e-07, - "withington": 1.17e-07, - "withrow": 1.17e-07, - "withstands": 1.17e-07, - "wku": 1.17e-07, - "womankind": 1.17e-07, - "woodcraft": 1.17e-07, - "wooooo": 1.17e-07, - "xlvi": 1.17e-07, - "yaba": 1.17e-07, - "yeoh": 1.17e-07, - "yevhen": 1.17e-07, - "yokes": 1.17e-07, - "yosuke": 1.17e-07, - "ypu": 1.17e-07, - "yuriko": 1.17e-07, - "zaibatsu": 1.17e-07, - "zdf": 1.17e-07, - "zhuge": 1.17e-07, - "zingers": 1.17e-07, - "zuid": 1.17e-07, - "abdelkader": 1.15e-07, - "accustom": 1.15e-07, - "achtung": 1.15e-07, - "actualize": 1.15e-07, - "adat": 1.15e-07, - "agarose": 1.15e-07, - "agnelli": 1.15e-07, - "aguayo": 1.15e-07, - "ahearn": 1.15e-07, - "ailerons": 1.15e-07, - "aimer": 1.15e-07, - "aisa": 1.15e-07, - "akkad": 1.15e-07, - "alarmists": 1.15e-07, - "albertville": 1.15e-07, - "albuterol": 1.15e-07, - "alimentary": 1.15e-07, - "almanacs": 1.15e-07, - "altright": 1.15e-07, - "amanpour": 1.15e-07, - "amaterasu": 1.15e-07, - "amelioration": 1.15e-07, - "ammunitions": 1.15e-07, - "amoy": 1.15e-07, - "andries": 1.15e-07, - "anglicized": 1.15e-07, - "anorak": 1.15e-07, - "anthocyanins": 1.15e-07, - "anticompetitive": 1.15e-07, - "antigonus": 1.15e-07, - "aom": 1.15e-07, - "applewhite": 1.15e-07, - "aquarian": 1.15e-07, - "arbitrations": 1.15e-07, - "arby": 1.15e-07, - "areva": 1.15e-07, - "arminius": 1.15e-07, - "armond": 1.15e-07, - "arnot": 1.15e-07, - "arrowsmith": 1.15e-07, - "artform": 1.15e-07, - "arundhati": 1.15e-07, - "assen": 1.15e-07, - "aten": 1.15e-07, - "audiotape": 1.15e-07, - "auroral": 1.15e-07, - "australopithecus": 1.15e-07, - "avada": 1.15e-07, - "avenir": 1.15e-07, - "ayotte": 1.15e-07, - "azealia": 1.15e-07, - "azide": 1.15e-07, - "azula": 1.15e-07, - "azura": 1.15e-07, - "baan": 1.15e-07, - "babangida": 1.15e-07, - "backroads": 1.15e-07, - "backswing": 1.15e-07, - "badmouth": 1.15e-07, - "bagman": 1.15e-07, - "bahaha": 1.15e-07, - "bahu": 1.15e-07, - "bajan": 1.15e-07, - "baptista": 1.15e-07, - "bareilly": 1.15e-07, - "barenaked": 1.15e-07, - "barrell": 1.15e-07, - "barretto": 1.15e-07, - "bartsch": 1.15e-07, - "baryshnikov": 1.15e-07, - "bassano": 1.15e-07, - "basslines": 1.15e-07, - "battlecruiser": 1.15e-07, - "beckenbauer": 1.15e-07, - "becton": 1.15e-07, - "belizean": 1.15e-07, - "benchmarked": 1.15e-07, - "benno": 1.15e-07, - "benoist": 1.15e-07, - "berlinale": 1.15e-07, - "berts": 1.15e-07, - "berthe": 1.15e-07, - "betaine": 1.15e-07, - "betide": 1.15e-07, - "bettor": 1.15e-07, - "beurre": 1.15e-07, - "beys": 1.15e-07, - "bfm": 1.15e-07, - "bhim": 1.15e-07, - "biermann": 1.15e-07, - "bijan": 1.15e-07, - "bikeway": 1.15e-07, - "billericay": 1.15e-07, - "biron": 1.15e-07, - "bittner": 1.15e-07, - "blabbing": 1.15e-07, - "bleedin": 1.15e-07, - "blemished": 1.15e-07, - "bli": 1.15e-07, - "blustering": 1.15e-07, - "bnf": 1.15e-07, - "bofors": 1.15e-07, - "bonnard": 1.15e-07, - "bopp": 1.15e-07, - "borate": 1.15e-07, - "borgen": 1.15e-07, - "botelho": 1.15e-07, - "bothy": 1.15e-07, - "boudin": 1.15e-07, - "bourguignon": 1.15e-07, - "bouton": 1.15e-07, - "braham": 1.15e-07, - "brathwaite": 1.15e-07, - "breadcrumb": 1.15e-07, - "breds": 1.15e-07, - "bridgets": 1.15e-07, - "brillo": 1.15e-07, - "brinker": 1.15e-07, - "briony": 1.15e-07, - "britneys": 1.15e-07, - "brolly": 1.15e-07, - "brucellosis": 1.15e-07, - "brunches": 1.15e-07, - "btk": 1.15e-07, - "buellers": 1.15e-07, - "buildin": 1.15e-07, - "bula": 1.15e-07, - "burra": 1.15e-07, - "burridge": 1.15e-07, - "busyness": 1.15e-07, - "butkus": 1.15e-07, - "caballeros": 1.15e-07, - "cadburys": 1.15e-07, - "cagle": 1.15e-07, - "callsign": 1.15e-07, - "calvino": 1.15e-07, - "canberras": 1.15e-07, - "candidiasis": 1.15e-07, - "canted": 1.15e-07, - "capris": 1.15e-07, - "capsizes": 1.15e-07, - "capsular": 1.15e-07, - "caracalla": 1.15e-07, - "cargos": 1.15e-07, - "carotenoid": 1.15e-07, - "carphone": 1.15e-07, - "carpio": 1.15e-07, - "carron": 1.15e-07, - "catalysed": 1.15e-07, - "cavers": 1.15e-07, - "cayo": 1.15e-07, - "centenarian": 1.15e-07, - "ceramide": 1.15e-07, - "certitude": 1.15e-07, - "chappaqua": 1.15e-07, - "chavan": 1.15e-07, - "chavezs": 1.15e-07, - "cheesing": 1.15e-07, - "chemnitz": 1.15e-07, - "chesham": 1.15e-07, - "chiari": 1.15e-07, - "chicha": 1.15e-07, - "chikara": 1.15e-07, - "chillout": 1.15e-07, - "chocked": 1.15e-07, - "cholla": 1.15e-07, - "chromed": 1.15e-07, - "cina": 1.15e-07, - "circularly": 1.15e-07, - "civilize": 1.15e-07, - "clansmen": 1.15e-07, - "cleethorpes": 1.15e-07, - "clickers": 1.15e-07, - "clicquot": 1.15e-07, - "climatologist": 1.15e-07, - "clow": 1.15e-07, - "clubhouses": 1.15e-07, - "clytemnestra": 1.15e-07, - "cnts": 1.15e-07, - "cocke": 1.15e-07, - "cockerill": 1.15e-07, - "coinsurance": 1.15e-07, - "collinsworth": 1.15e-07, - "communistic": 1.15e-07, - "compere": 1.15e-07, - "concessionaire": 1.15e-07, - "conditionality": 1.15e-07, - "conta": 1.15e-07, - "cookes": 1.15e-07, - "corregidor": 1.15e-07, - "cotterill": 1.15e-07, - "cottesloe": 1.15e-07, - "countercultural": 1.15e-07, - "counterpoints": 1.15e-07, - "couponing": 1.15e-07, - "cozying": 1.15e-07, - "crabbing": 1.15e-07, - "creepiness": 1.15e-07, - "crematory": 1.15e-07, - "crissy": 1.15e-07, - "croesus": 1.15e-07, - "crotches": 1.15e-07, - "crowdsource": 1.15e-07, - "crowes": 9.55e-08, - "cumshots": 1.15e-07, - "daringly": 1.15e-07, - "darks": 1.15e-07, - "dasa": 1.15e-07, - "daviess": 7.94e-08, - "dbacks": 1.15e-07, - "deaver": 1.15e-07, - "debuchy": 1.15e-07, - "decaffeinated": 1.15e-07, - "deci": 1.15e-07, - "decrypting": 1.15e-07, - "defi": 1.15e-07, - "deification": 1.15e-07, - "deigned": 1.15e-07, - "demian": 1.15e-07, - "demoed": 1.15e-07, - "demographers": 1.15e-07, - "demonise": 1.15e-07, - "deputized": 1.15e-07, - "derogation": 1.15e-07, - "dessie": 1.15e-07, - "destructiveness": 1.15e-07, - "dhillon": 1.15e-07, - "dhow": 1.15e-07, - "dicta": 1.15e-07, - "dieback": 1.15e-07, - "dignities": 1.15e-07, - "dilworth": 1.15e-07, - "dingley": 1.15e-07, - "diphenhydramine": 1.15e-07, - "diphthongs": 1.15e-07, - "dipshits": 1.15e-07, - "dirtbags": 1.15e-07, - "discolouration": 1.15e-07, - "disengages": 1.15e-07, - "disincentives": 1.15e-07, - "disneyworld": 1.15e-07, - "dissociating": 1.15e-07, - "donnan": 1.15e-07, - "doogie": 1.15e-07, - "doorkeeper": 1.15e-07, - "dorje": 1.15e-07, - "dowie": 1.15e-07, - "drainages": 1.15e-07, - "dreamtime": 1.15e-07, - "dredges": 1.15e-07, - "dromedary": 1.15e-07, - "ductwork": 1.15e-07, - "duvets": 1.15e-07, - "dvrs": 1.15e-07, - "dyers": 1.12e-07, - "ecstacy": 1.15e-07, - "edgewise": 1.15e-07, - "edinson": 1.15e-07, - "effluents": 1.15e-07, - "egmond": 1.15e-07, - "electricals": 1.15e-07, - "electromagnets": 1.15e-07, - "elliss": 1.15e-07, - "enablement": 1.15e-07, - "encyclopaedic": 1.15e-07, - "entitys": 1.15e-07, - "epitaphs": 1.15e-07, - "epoque": 1.15e-07, - "errs": 1.15e-07, - "erv": 1.15e-07, - "erythropoietin": 1.15e-07, - "ette": 1.15e-07, - "eua": 1.15e-07, - "eurogamer": 1.15e-07, - "evacuates": 1.15e-07, - "evilly": 1.15e-07, - "evilness": 1.15e-07, - "exotica": 1.15e-07, - "exoticism": 1.15e-07, - "externals": 1.15e-07, - "extricated": 1.15e-07, - "famas": 1.15e-07, - "fani": 1.15e-07, - "fanshawe": 1.15e-07, - "faramir": 1.15e-07, - "fasti": 1.15e-07, - "fcking": 1.15e-07, - "fers": 1.15e-07, - "fetishist": 1.15e-07, - "fev": 1.15e-07, - "fierro": 1.15e-07, - "fira": 1.15e-07, - "firebug": 1.15e-07, - "fisc": 1.15e-07, - "fishbone": 1.15e-07, - "fishmongers": 1.15e-07, - "fixating": 1.15e-07, - "flails": 1.15e-07, - "flakey": 1.15e-07, - "flashcard": 1.15e-07, - "flc": 1.15e-07, - "flix": 1.15e-07, - "fluoridated": 1.15e-07, - "fna": 1.15e-07, - "foretells": 1.15e-07, - "formate": 1.15e-07, - "forsters": 1.15e-07, - "fourty": 1.15e-07, - "fowles": 1.15e-07, - "freeloading": 1.15e-07, - "frenemies": 1.15e-07, - "fresenius": 1.15e-07, - "fricative": 1.15e-07, - "frogger": 1.15e-07, - "frutti": 1.15e-07, - "ftt": 1.15e-07, - "fuddy": 1.15e-07, - "fukin": 1.15e-07, - "fukui": 1.15e-07, - "fuld": 1.15e-07, - "fuq": 1.15e-07, - "fuuuuck": 1.15e-07, - "gages": 1.15e-07, - "gailey": 1.15e-07, - "garces": 1.15e-07, - "garman": 1.15e-07, - "garou": 1.15e-07, - "gast": 1.15e-07, - "gehenna": 1.15e-07, - "geisel": 1.15e-07, - "geneve": 1.15e-07, - "geode": 1.15e-07, - "gerrymander": 1.15e-07, - "gies": 1.15e-07, - "giessen": 1.15e-07, - "giftedness": 1.15e-07, - "gion": 1.15e-07, - "glamis": 1.15e-07, - "gleamed": 1.15e-07, - "glenlivet": 1.15e-07, - "glenrothes": 1.15e-07, - "gluconeogenesis": 1.15e-07, - "glucoside": 1.15e-07, - "godalming": 1.15e-07, - "goddamit": 1.15e-07, - "godwins": 1.15e-07, - "godzillas": 1.15e-07, - "goiter": 1.15e-07, - "gomis": 1.15e-07, - "gopnik": 1.15e-07, - "gort": 1.15e-07, - "govts": 5.89e-08, - "gowda": 1.15e-07, - "grats": 1.15e-07, - "gruyere": 1.15e-07, - "guatemalans": 1.15e-07, - "gude": 1.15e-07, - "gulden": 1.15e-07, - "gwh": 1.15e-07, - "gyles": 1.15e-07, - "hahnemann": 1.15e-07, - "hames": 1.15e-07, - "hanscom": 1.15e-07, - "harlech": 1.15e-07, - "harringtons": 1.15e-07, - "hartwig": 1.15e-07, - "haughey": 1.15e-07, - "hayama": 1.15e-07, - "hazed": 1.15e-07, - "hdc": 1.15e-07, - "headbanging": 1.15e-07, - "hedlund": 1.15e-07, - "henke": 1.15e-07, - "hibbs": 1.15e-07, - "hield": 1.15e-07, - "highlife": 1.15e-07, - "hippolyte": 1.15e-07, - "histologically": 1.15e-07, - "hitz": 1.15e-07, - "hlf": 1.15e-07, - "hobhouse": 1.15e-07, - "hok": 1.15e-07, - "holderness": 1.15e-07, - "homolog": 1.15e-07, - "honiara": 1.15e-07, - "honorarium": 1.15e-07, - "hopf": 1.15e-07, - "horas": 1.15e-07, - "horseplay": 1.15e-07, - "hotbeds": 1.15e-07, - "howlers": 1.15e-07, - "hugest": 1.15e-07, - "hydrofoil": 1.15e-07, - "hypatia": 1.15e-07, - "hyperventilation": 1.15e-07, - "hyponatremia": 1.15e-07, - "hysteric": 1.15e-07, - "iag": 1.15e-07, - "ibr": 1.15e-07, - "icom": 1.15e-07, - "idee": 1.15e-07, - "ifrit": 1.15e-07, - "igh": 1.15e-07, - "iir": 1.15e-07, - "ikaw": 1.15e-07, - "iku": 1.15e-07, - "imlay": 1.15e-07, - "immortalize": 1.15e-07, - "immunize": 1.15e-07, - "incall": 1.15e-07, - "incentivizing": 1.15e-07, - "inchoate": 1.15e-07, - "inconsiderable": 1.15e-07, - "inconstant": 1.15e-07, - "incorporeal": 1.15e-07, - "inextricable": 1.15e-07, - "infarct": 1.15e-07, - "inflectional": 1.15e-07, - "instacart": 1.15e-07, - "interlaken": 1.15e-07, - "intermediation": 1.15e-07, - "interspecific": 1.15e-07, - "intresting": 1.15e-07, - "involution": 1.15e-07, - "iolaus": 1.15e-07, - "irobot": 1.15e-07, - "iselin": 1.15e-07, - "isiss": 1.15e-07, - "isolator": 1.15e-07, - "jacobian": 1.15e-07, - "jailor": 1.15e-07, - "jair": 1.15e-07, - "jairus": 1.15e-07, - "janu": 1.15e-07, - "jayant": 1.15e-07, - "jeffress": 1.15e-07, - "jihadism": 1.15e-07, - "joad": 1.15e-07, - "jre": 1.15e-07, - "jtbc": 1.15e-07, - "jui": 1.15e-07, - "kalo": 1.15e-07, - "kalos": 1.15e-07, - "kamau": 1.15e-07, - "kampong": 1.15e-07, - "kangs": 1.15e-07, - "kashima": 1.15e-07, - "kashmirs": 1.15e-07, - "katys": 1.15e-07, - "kaushik": 1.15e-07, - "keeton": 1.15e-07, - "keon": 1.15e-07, - "khama": 1.15e-07, - "khurana": 1.15e-07, - "kilby": 1.15e-07, - "klug": 1.15e-07, - "knotweed": 1.15e-07, - "knowle": 1.15e-07, - "knuckled": 1.15e-07, - "knuth": 1.15e-07, - "koan": 1.15e-07, - "koc": 1.15e-07, - "koenigsegg": 1.15e-07, - "kojak": 1.15e-07, - "komal": 1.15e-07, - "koroma": 1.15e-07, - "koval": 1.15e-07, - "kovalchuk": 1.15e-07, - "kozhikode": 1.15e-07, - "kozlov": 1.15e-07, - "ksl": 1.15e-07, - "ksp": 1.15e-07, - "kuznetsova": 1.15e-07, - "labile": 1.15e-07, - "ladles": 1.15e-07, - "lari": 1.15e-07, - "leafless": 1.15e-07, - "leatherback": 1.15e-07, - "lederman": 1.15e-07, - "leen": 1.15e-07, - "lenovos": 1.15e-07, - "leonore": 1.15e-07, - "lettuces": 1.15e-07, - "librettist": 1.15e-07, - "lichtenberg": 1.15e-07, - "lickin": 1.15e-07, - "likability": 1.15e-07, - "lings": 9.12e-08, - "lish": 1.15e-07, - "littlehampton": 1.15e-07, - "liveleak": 1.15e-07, - "lna": 1.15e-07, - "loanee": 1.15e-07, - "lohengrin": 1.15e-07, - "lookit": 1.15e-07, - "loonie": 1.15e-07, - "loungers": 1.15e-07, - "louts": 1.15e-07, - "loveridge": 1.15e-07, - "lpm": 1.15e-07, - "lulling": 1.15e-07, - "lundquist": 1.15e-07, - "lutea": 1.15e-07, - "lvn": 1.15e-07, - "lvov": 1.15e-07, - "lyapunov": 1.15e-07, - "lyrica": 1.15e-07, - "macbride": 1.15e-07, - "macedo": 1.15e-07, - "macmillans": 1.15e-07, - "magnificat": 1.15e-07, - "mago": 1.15e-07, - "maillard": 1.15e-07, - "mailonline": 1.15e-07, - "majuro": 1.15e-07, - "makerbot": 1.15e-07, - "malachy": 1.15e-07, - "mallika": 1.15e-07, - "malpas": 1.15e-07, - "malthusian": 1.15e-07, - "mandla": 1.15e-07, - "manzano": 1.15e-07, - "marah": 1.15e-07, - "marcio": 1.15e-07, - "marginalia": 1.15e-07, - "margrave": 1.15e-07, - "marions": 1.15e-07, - "marotta": 1.15e-07, - "martinson": 1.15e-07, - "matip": 1.15e-07, - "mattei": 1.15e-07, - "matteson": 1.15e-07, - "mavi": 1.15e-07, - "maximalist": 1.15e-07, - "mcconville": 1.15e-07, - "mcds": 7.59e-08, - "mcelwain": 1.15e-07, - "mcgahn": 1.15e-07, - "meaghan": 1.15e-07, - "meinhof": 1.15e-07, - "melodramas": 1.15e-07, - "memnon": 1.15e-07, - "mendacious": 1.15e-07, - "menfolk": 1.15e-07, - "mentos": 1.15e-07, - "merivale": 1.15e-07, - "merkur": 1.15e-07, - "merryweather": 1.15e-07, - "mestre": 1.15e-07, - "microalgae": 1.15e-07, - "microcomputers": 1.15e-07, - "microeconomic": 1.15e-07, - "microfiche": 1.15e-07, - "microsatellite": 1.15e-07, - "midnite": 1.15e-07, - "milibands": 1.15e-07, - "mindfuck": 1.15e-07, - "mironov": 1.15e-07, - "misapprehension": 1.15e-07, - "misfiring": 1.15e-07, - "missoni": 1.15e-07, - "misstatements": 1.15e-07, - "mixology": 1.15e-07, - "monas": 4.37e-08, - "monied": 1.15e-07, - "moonless": 1.15e-07, - "mortgagee": 1.15e-07, - "mosse": 1.15e-07, - "mtgox": 1.15e-07, - "muang": 1.15e-07, - "mumia": 1.15e-07, - "munda": 1.15e-07, - "mushroomed": 1.15e-07, - "mutinied": 1.15e-07, - "muzak": 1.15e-07, - "muzzles": 1.15e-07, - "myeong": 1.15e-07, - "naics": 1.15e-07, - "naidoo": 1.15e-07, - "namah": 1.15e-07, - "nanocrystals": 1.15e-07, - "naptime": 1.15e-07, - "naqvi": 1.15e-07, - "narratively": 1.15e-07, - "navajos": 1.15e-07, - "nbi": 1.15e-07, - "neato": 1.15e-07, - "networth": 1.15e-07, - "neufeld": 1.15e-07, - "nidal": 1.15e-07, - "nigels": 1.15e-07, - "nilson": 1.15e-07, - "nimr": 1.15e-07, - "noblewoman": 1.15e-07, - "noho": 1.15e-07, - "nonsmokers": 1.15e-07, - "normale": 1.15e-07, - "norn": 1.15e-07, - "northshore": 1.15e-07, - "novato": 1.15e-07, - "ntpc": 1.15e-07, - "nugs": 1.15e-07, - "nuk": 1.15e-07, - "nureyev": 1.15e-07, - "nwc": 1.15e-07, - "nyus": 1.15e-07, - "odonnells": 1.15e-07, - "oberhausen": 1.15e-07, - "occultation": 1.15e-07, - "ofhis": 1.15e-07, - "oia": 1.15e-07, - "oishi": 1.15e-07, - "oldtown": 1.15e-07, - "omnichannel": 1.15e-07, - "opportunistically": 1.15e-07, - "orazio": 1.15e-07, - "overplay": 1.15e-07, - "overshooting": 1.15e-07, - "oyu": 1.15e-07, - "paintballs": 1.15e-07, - "panem": 1.15e-07, - "pantaloons": 1.15e-07, - "papery": 1.15e-07, - "papoose": 1.15e-07, - "parkdale": 1.15e-07, - "pasay": 1.15e-07, - "passant": 1.15e-07, - "passbook": 1.15e-07, - "pastured": 1.15e-07, - "pataki": 1.15e-07, - "patricias": 1.15e-07, - "paver": 1.15e-07, - "pawpaw": 1.15e-07, - "peanutbutter": 1.15e-07, - "pedicle": 1.15e-07, - "peltz": 1.15e-07, - "pemba": 1.15e-07, - "pepes": 9.77e-08, - "percenters": 1.15e-07, - "peretti": 1.15e-07, - "permanency": 1.15e-07, - "petoskey": 1.15e-07, - "petrovna": 1.15e-07, - "petunias": 1.15e-07, - "pharaonic": 1.15e-07, - "philately": 1.15e-07, - "phosphodiesterase": 1.15e-07, - "photoelectron": 1.15e-07, - "physico": 1.15e-07, - "pilfer": 1.15e-07, - "pinta": 1.15e-07, - "plagioclase": 1.15e-07, - "plasticine": 1.15e-07, - "platon": 1.15e-07, - "pmb": 1.15e-07, - "pmf": 1.15e-07, - "pmma": 1.15e-07, - "pollitt": 1.15e-07, - "polyhedra": 1.15e-07, - "polyhedron": 1.15e-07, - "poot": 1.15e-07, - "positano": 1.15e-07, - "postponements": 1.15e-07, - "potatoe": 1.15e-07, - "pouts": 1.15e-07, - "pramod": 1.15e-07, - "prebendary": 1.15e-07, - "precure": 1.15e-07, - "predisposes": 1.15e-07, - "preemie": 1.15e-07, - "preproduction": 1.15e-07, - "preprogrammed": 1.15e-07, - "presentational": 1.15e-07, - "prideaux": 1.15e-07, - "prioress": 1.15e-07, - "profesional": 1.15e-07, - "profumo": 1.15e-07, - "proteas": 1.15e-07, - "protractor": 1.15e-07, - "prr": 1.15e-07, - "psat": 1.15e-07, - "psychomotor": 1.15e-07, - "pterosaurs": 1.15e-07, - "purchasable": 1.15e-07, - "purdah": 1.15e-07, - "purpurea": 1.15e-07, - "pushup": 1.15e-07, - "qotd": 1.15e-07, - "quadrille": 1.15e-07, - "quebecers": 1.15e-07, - "quiff": 1.15e-07, - "quintal": 1.15e-07, - "quitted": 1.15e-07, - "rahn": 1.15e-07, - "rall": 1.15e-07, - "ramapo": 1.15e-07, - "ranma": 1.15e-07, - "rato": 1.15e-07, - "rch": 1.15e-07, - "reassembly": 1.15e-07, - "recalibrated": 1.15e-07, - "recertification": 1.15e-07, - "recommence": 1.15e-07, - "reconciliations": 1.15e-07, - "reconquest": 1.15e-07, - "recyclers": 1.15e-07, - "reet": 1.15e-07, - "reimburses": 1.15e-07, - "reinstates": 1.15e-07, - "reintegrated": 1.15e-07, - "remount": 1.15e-07, - "renn": 1.15e-07, - "restrictor": 1.15e-07, - "returnee": 1.15e-07, - "reusability": 1.15e-07, - "reveries": 1.15e-07, - "rgiii": 1.15e-07, - "robotnik": 1.15e-07, - "rockefellers": 1.1e-07, - "roehampton": 1.15e-07, - "rogoff": 1.15e-07, - "rollerball": 1.15e-07, - "rolph": 1.15e-07, - "roppongi": 1.15e-07, - "rosado": 1.15e-07, - "rosebank": 1.15e-07, - "rosicky": 1.15e-07, - "rostered": 1.15e-07, - "roughnecks": 1.15e-07, - "rouses": 1.15e-07, - "rse": 1.15e-07, - "rudnick": 1.15e-07, - "rusts": 1.15e-07, - "rybak": 1.15e-07, - "sabans": 1.15e-07, - "sabot": 1.15e-07, - "salable": 1.15e-07, - "salafism": 1.15e-07, - "sando": 1.15e-07, - "sanitizers": 1.15e-07, - "sanjana": 1.15e-07, - "sargasso": 1.15e-07, - "sarkeesian": 1.15e-07, - "sater": 1.15e-07, - "satnav": 1.15e-07, - "satyam": 1.15e-07, - "savonarola": 1.15e-07, - "saybrook": 1.15e-07, - "sayeed": 1.15e-07, - "sayle": 1.15e-07, - "sayo": 1.15e-07, - "sayuri": 1.15e-07, - "schaaf": 1.15e-07, - "schecter": 1.15e-07, - "schneier": 1.15e-07, - "schwartzs": 1.15e-07, - "scintilla": 1.15e-07, - "scor": 1.15e-07, - "scotti": 1.15e-07, - "scrabbling": 1.15e-07, - "scripta": 1.15e-07, - "scuffles": 1.15e-07, - "sculpts": 1.15e-07, - "seidman": 1.15e-07, - "seismically": 1.15e-07, - "sekou": 1.15e-07, - "selenas": 1.15e-07, - "selly": 1.15e-07, - "seol": 1.15e-07, - "severest": 1.15e-07, - "shap": 1.15e-07, - "shapewear": 1.15e-07, - "shapiros": 1.15e-07, - "sharer": 1.15e-07, - "sheerness": 1.15e-07, - "sherburne": 1.15e-07, - "sherrington": 1.15e-07, - "shilton": 1.15e-07, - "shiori": 1.15e-07, - "shipmate": 1.15e-07, - "shorthair": 1.15e-07, - "shortlived": 1.15e-07, - "sikander": 1.15e-07, - "silmarillion": 1.15e-07, - "sils": 1.15e-07, - "silvered": 1.15e-07, - "simm": 1.15e-07, - "simson": 1.15e-07, - "skagway": 1.15e-07, - "skanks": 1.15e-07, - "skrull": 1.15e-07, - "skydivers": 1.15e-07, - "slammin": 1.15e-07, - "slideshows": 1.15e-07, - "smdh": 1.15e-07, - "smokestacks": 1.15e-07, - "smsf": 1.15e-07, - "snicket": 1.15e-07, - "snoqualmie": 1.15e-07, - "soley": 1.15e-07, - "sophy": 1.15e-07, - "soso": 1.15e-07, - "southington": 1.15e-07, - "spacecrafts": 5.37e-08, - "spanglish": 1.15e-07, - "spankings": 1.15e-07, - "spatio": 1.15e-07, - "specificities": 1.15e-07, - "spermatogenesis": 1.15e-07, - "spikey": 1.15e-07, - "splish": 1.15e-07, - "spooking": 1.15e-07, - "sqrt": 1.15e-07, - "srd": 1.15e-07, - "stahp": 1.15e-07, - "stanwood": 1.15e-07, - "stephensons": 1.15e-07, - "stich": 1.15e-07, - "stripy": 1.15e-07, - "sturgess": 1.15e-07, - "subcutaneously": 1.15e-07, - "sukuk": 1.15e-07, - "suncoast": 1.15e-07, - "sunway": 1.15e-07, - "supercross": 1.15e-07, - "supersized": 1.15e-07, - "supplications": 1.15e-07, - "suppositions": 1.15e-07, - "surmises": 1.15e-07, - "sustainer": 1.15e-07, - "swazi": 1.15e-07, - "switcheroo": 1.15e-07, - "syncopation": 1.15e-07, - "syngenta": 1.15e-07, - "synthpop": 1.15e-07, - "systemwide": 1.15e-07, - "szczesny": 1.15e-07, - "tarbell": 1.15e-07, - "tav": 1.15e-07, - "technetium": 1.15e-07, - "tecmo": 1.15e-07, - "teg": 1.15e-07, - "tegel": 1.15e-07, - "telepresence": 1.15e-07, - "televising": 1.15e-07, - "terje": 1.15e-07, - "terrine": 1.15e-07, - "tetrad": 1.15e-07, - "tff": 1.15e-07, - "thermostatic": 1.15e-07, - "thickener": 1.15e-07, - "thinktank": 1.15e-07, - "thwack": 1.15e-07, - "tiddy": 1.15e-07, - "timberlands": 1.15e-07, - "tiv": 1.15e-07, - "tokenism": 1.15e-07, - "tolerability": 1.15e-07, - "tollbooth": 1.15e-07, - "tomoya": 1.15e-07, - "tomsk": 1.15e-07, - "tono": 1.15e-07, - "touma": 1.15e-07, - "tpn": 1.15e-07, - "tractive": 1.15e-07, - "tralee": 1.15e-07, - "transpacific": 1.15e-07, - "tranter": 1.15e-07, - "trekker": 1.15e-07, - "trenchard": 1.15e-07, - "trentino": 1.15e-07, - "trilingual": 1.15e-07, - "trolleybus": 1.15e-07, - "trombonist": 1.15e-07, - "tromp": 1.15e-07, - "trouncing": 1.15e-07, - "trussell": 1.15e-07, - "tsl": 1.15e-07, - "tunas": 1.15e-07, - "tunisias": 1.15e-07, - "tuv": 1.15e-07, - "tweek": 1.15e-07, - "tys": 1.15e-07, - "tynemouth": 1.15e-07, - "tyreese": 1.15e-07, - "tyt": 1.15e-07, - "uemura": 1.15e-07, - "ulric": 1.15e-07, - "ulu": 1.15e-07, - "unalterable": 1.15e-07, - "uncirculated": 1.15e-07, - "undelivered": 1.15e-07, - "undercoat": 1.15e-07, - "underplayed": 1.15e-07, - "undisguised": 1.15e-07, - "unenlightened": 1.15e-07, - "unhrc": 1.15e-07, - "unobtrusively": 1.15e-07, - "unproblematic": 1.15e-07, - "unquestioningly": 1.15e-07, - "uoc": 1.15e-07, - "uproarious": 1.15e-07, - "upwork": 1.15e-07, - "urlacher": 1.15e-07, - "uwi": 1.15e-07, - "vales": 9.12e-08, - "valter": 1.15e-07, - "valuers": 1.15e-07, - "vaporwave": 1.15e-07, - "varghese": 1.15e-07, - "vaso": 1.15e-07, - "vasu": 1.15e-07, - "vdi": 1.15e-07, - "venices": 1.15e-07, - "vidi": 1.15e-07, - "vilest": 1.15e-07, - "vindicating": 1.15e-07, - "vinland": 1.15e-07, - "virender": 1.15e-07, - "visite": 1.15e-07, - "vla": 1.15e-07, - "vocalize": 1.15e-07, - "vorticity": 1.15e-07, - "vsa": 1.15e-07, - "vsi": 1.15e-07, - "vtr": 1.15e-07, - "walkouts": 1.15e-07, - "wanganui": 1.15e-07, - "wao": 1.15e-07, - "warfighter": 1.15e-07, - "warton": 1.15e-07, - "wastin": 1.15e-07, - "watkin": 1.15e-07, - "wavelets": 1.15e-07, - "weah": 1.15e-07, - "webcasts": 1.15e-07, - "wensleydale": 1.15e-07, - "werdum": 1.15e-07, - "wescott": 1.15e-07, - "whaaaat": 1.15e-07, - "whimpered": 1.15e-07, - "whirlpools": 1.15e-07, - "whisks": 1.15e-07, - "wholes": 1.15e-07, - "wildfowl": 1.15e-07, - "willkie": 1.15e-07, - "winterton": 1.15e-07, - "wisecracks": 1.15e-07, - "wittle": 1.15e-07, - "worldcom": 1.15e-07, - "wowing": 1.15e-07, - "wrasse": 1.15e-07, - "wtt": 1.15e-07, - "wyld": 1.15e-07, - "xxxvii": 1.15e-07, - "yey": 1.15e-07, - "yod": 1.15e-07, - "yokota": 1.15e-07, - "yorba": 1.15e-07, - "yoru": 1.15e-07, - "zal": 1.15e-07, - "zat": 1.15e-07, - "zb": 1.15e-07, - "zg": 1.15e-07, - "zimmers": 1.15e-07, - "zwingli": 1.15e-07, - "aaronson": 1.12e-07, - "aave": 1.12e-07, - "abdicating": 1.12e-07, - "abductees": 1.12e-07, - "abducts": 1.12e-07, - "abend": 1.12e-07, - "abiola": 1.12e-07, - "absentmindedly": 1.12e-07, - "actinides": 1.12e-07, - "activites": 1.12e-07, - "adaptions": 1.12e-07, - "adarsh": 1.12e-07, - "adcs": 1.12e-07, - "adduced": 1.12e-07, - "adenomas": 1.12e-07, - "admiringly": 1.12e-07, - "adroitly": 1.12e-07, - "aerobatics": 1.12e-07, - "afo": 1.12e-07, - "aggrandizing": 1.12e-07, - "agitprop": 1.12e-07, - "agonizingly": 1.12e-07, - "ahahah": 1.12e-07, - "airframes": 1.12e-07, - "aladin": 1.12e-07, - "albumen": 1.12e-07, - "algol": 1.12e-07, - "alikes": 1.12e-07, - "alkmaar": 1.12e-07, - "alliant": 1.12e-07, - "allogeneic": 1.12e-07, - "allograft": 1.12e-07, - "allopathic": 1.12e-07, - "almshouse": 1.12e-07, - "alper": 1.12e-07, - "alyce": 1.12e-07, - "amalgamating": 1.12e-07, - "amaru": 1.12e-07, - "amh": 1.12e-07, - "amuck": 1.12e-07, - "anata": 1.12e-07, - "annotating": 1.12e-07, - "apopka": 1.12e-07, - "appelbaum": 1.12e-07, - "apposite": 1.12e-07, - "apulia": 1.12e-07, - "arbors": 1.12e-07, - "armstead": 1.12e-07, - "arrangers": 1.12e-07, - "arround": 1.12e-07, - "arthroscopy": 1.12e-07, - "asexuality": 1.12e-07, - "asimovs": 1.12e-07, - "askmen": 1.12e-07, - "asse": 1.12e-07, - "asser": 1.12e-07, - "assiniboine": 1.12e-07, - "astbury": 1.12e-07, - "aude": 1.12e-07, - "aujourdhui": 1.12e-07, - "aussi": 1.12e-07, - "aventis": 1.12e-07, - "avia": 1.12e-07, - "ayaan": 1.12e-07, - "ayoub": 1.12e-07, - "backburner": 1.12e-07, - "backplane": 1.12e-07, - "bandaging": 1.12e-07, - "barberton": 1.12e-07, - "bardic": 1.12e-07, - "barwon": 1.12e-07, - "basswood": 1.12e-07, - "batching": 1.12e-07, - "bateau": 1.12e-07, - "bathhouses": 1.12e-07, - "battlers": 1.12e-07, - "bawa": 1.12e-07, - "bdr": 1.12e-07, - "beastmaster": 1.12e-07, - "beatified": 1.12e-07, - "beckerman": 1.12e-07, - "beecroft": 1.12e-07, - "begonias": 1.12e-07, - "begovic": 1.12e-07, - "believin": 1.12e-07, - "benita": 1.12e-07, - "benvenuto": 1.12e-07, - "berrigan": 1.12e-07, - "betelgeuse": 1.12e-07, - "betula": 1.12e-07, - "bfp": 1.12e-07, - "bhk": 1.12e-07, - "bice": 1.12e-07, - "bichon": 1.12e-07, - "bicol": 1.12e-07, - "bideford": 1.12e-07, - "bigwig": 1.12e-07, - "bildt": 1.12e-07, - "biochemists": 1.12e-07, - "biosensor": 1.12e-07, - "biotechnological": 1.12e-07, - "birchall": 1.12e-07, - "biss": 1.12e-07, - "bitte": 1.12e-07, - "blandly": 1.12e-07, - "blavatsky": 1.12e-07, - "blitzes": 1.12e-07, - "blurting": 1.12e-07, - "bogaerts": 1.12e-07, - "bomer": 1.12e-07, - "bort": 1.12e-07, - "bosman": 1.12e-07, - "boudreaux": 1.12e-07, - "boyega": 1.12e-07, - "boyko": 1.12e-07, - "brach": 1.12e-07, - "brachytherapy": 1.12e-07, - "breakaways": 1.12e-07, - "breviary": 1.12e-07, - "brielle": 1.12e-07, - "brindisi": 1.12e-07, - "broadstairs": 1.12e-07, - "brockovich": 1.12e-07, - "brok": 1.12e-07, - "broly": 1.12e-07, - "brossard": 1.12e-07, - "brutalities": 1.12e-07, - "btm": 1.12e-07, - "buchman": 1.12e-07, - "buildable": 1.12e-07, - "busied": 1.12e-07, - "calorimeter": 1.12e-07, - "capitalisms": 1.12e-07, - "caprices": 1.12e-07, - "capulet": 1.12e-07, - "carabiner": 1.12e-07, - "cariboo": 1.12e-07, - "carnoustie": 1.12e-07, - "carrel": 1.12e-07, - "cartersville": 1.12e-07, - "cassano": 1.12e-07, - "catabolism": 1.12e-07, - "catesby": 1.12e-07, - "cauley": 1.12e-07, - "cavett": 1.12e-07, - "cbus": 1.12e-07, - "celeriac": 1.12e-07, - "cerezo": 1.12e-07, - "chakrabarty": 1.12e-07, - "challah": 1.12e-07, - "chappelles": 1.12e-07, - "characterful": 1.12e-07, - "charleys": 1.12e-07, - "charmin": 1.12e-07, - "charnel": 1.12e-07, - "charring": 1.12e-07, - "chatillon": 1.12e-07, - "childline": 1.12e-07, - "chillingly": 1.12e-07, - "chlorate": 1.12e-07, - "chondroitin": 1.12e-07, - "chorionic": 1.12e-07, - "choux": 1.12e-07, - "christianized": 1.12e-07, - "christiano": 1.12e-07, - "chungking": 1.12e-07, - "ciba": 1.12e-07, - "cinerea": 1.12e-07, - "circumcise": 1.12e-07, - "cisse": 1.12e-07, - "cks": 1.12e-07, - "clacking": 1.12e-07, - "clades": 1.12e-07, - "clyburn": 1.12e-07, - "cobbett": 1.12e-07, - "cogito": 1.12e-07, - "coherency": 1.12e-07, - "cohle": 1.12e-07, - "coloureds": 1.12e-07, - "combated": 1.12e-07, - "comeau": 1.12e-07, - "commercialised": 1.12e-07, - "comon": 1.12e-07, - "compl": 1.12e-07, - "compuserve": 1.12e-07, - "conaway": 1.12e-07, - "confiscations": 1.12e-07, - "copiously": 1.12e-07, - "coprocessor": 1.12e-07, - "coquelin": 1.12e-07, - "corbet": 1.12e-07, - "corson": 1.12e-07, - "courgettes": 1.12e-07, - "crains": 1.12e-07, - "crosland": 1.12e-07, - "crossbreed": 1.12e-07, - "crossdresser": 1.12e-07, - "crossland": 1.12e-07, - "crotchety": 1.12e-07, - "cruddy": 1.12e-07, - "cryogenics": 1.12e-07, - "cubical": 1.12e-07, - "cudahy": 1.12e-07, - "cursus": 1.12e-07, - "curtsy": 1.12e-07, - "curveballs": 1.12e-07, - "dachshunds": 1.12e-07, - "dagens": 1.12e-07, - "daikon": 1.12e-07, - "dantonio": 1.12e-07, - "deeley": 1.12e-07, - "deferrals": 1.12e-07, - "defunded": 1.12e-07, - "delamination": 1.12e-07, - "delius": 1.12e-07, - "democracys": 1.12e-07, - "deripaska": 1.12e-07, - "derwin": 1.12e-07, - "deshpande": 1.12e-07, - "despairs": 1.12e-07, - "dess": 1.02e-08, - "devdas": 1.12e-07, - "diaghilev": 1.12e-07, - "diasporas": 1.12e-07, - "diaw": 1.12e-07, - "diemen": 1.12e-07, - "dilutions": 1.12e-07, - "dimanche": 1.12e-07, - "diol": 1.12e-07, - "disqualifications": 1.12e-07, - "disses": 1.12e-07, - "distros": 1.12e-07, - "distrusts": 1.12e-07, - "donaldsons": 1.12e-07, - "doormen": 1.12e-07, - "doujin": 1.12e-07, - "dowler": 1.12e-07, - "downdraft": 1.12e-07, - "downwardly": 1.12e-07, - "dreamily": 1.12e-07, - "ducasse": 1.12e-07, - "dunia": 1.12e-07, - "durning": 1.12e-07, - "dysmorphic": 1.12e-07, - "ecclesiology": 1.12e-07, - "elderflower": 1.12e-07, - "electorally": 1.12e-07, - "elmers": 1.12e-07, - "elmont": 1.12e-07, - "eln": 1.12e-07, - "elwes": 1.12e-07, - "emploi": 1.12e-07, - "endothermic": 1.12e-07, - "energising": 1.12e-07, - "energizes": 1.12e-07, - "enthusiasms": 1.12e-07, - "entrained": 1.12e-07, - "entropic": 1.12e-07, - "epfl": 1.12e-07, - "espanola": 1.12e-07, - "esport": 1.12e-07, - "ethicist": 1.12e-07, - "euphemistic": 1.12e-07, - "evelyne": 1.12e-07, - "exif": 1.12e-07, - "facially": 1.12e-07, - "factoids": 1.12e-07, - "fadi": 1.12e-07, - "falken": 1.12e-07, - "farben": 1.12e-07, - "fastness": 1.12e-07, - "fedorov": 1.12e-07, - "feeny": 1.12e-07, - "feig": 1.12e-07, - "feigns": 1.12e-07, - "feis": 5.01e-08, - "fems": 1.12e-07, - "fera": 1.12e-07, - "fermion": 1.12e-07, - "feuerbach": 1.12e-07, - "fiances": 1.12e-07, - "figgis": 1.12e-07, - "firebombed": 1.12e-07, - "fitzherbert": 1.12e-07, - "fitzy": 1.12e-07, - "flatlands": 1.12e-07, - "flavourings": 1.12e-07, - "florey": 1.12e-07, - "flossie": 1.12e-07, - "flv": 1.12e-07, - "flyovers": 1.12e-07, - "flytrap": 1.12e-07, - "fmt": 1.12e-07, - "foreach": 1.12e-07, - "foundering": 1.12e-07, - "fouquet": 1.12e-07, - "fouts": 1.12e-07, - "fq": 1.12e-07, - "freeloader": 1.12e-07, - "freighted": 1.12e-07, - "frescos": 1.12e-07, - "frilled": 1.12e-07, - "friz": 1.12e-07, - "frostburg": 1.12e-07, - "fum": 1.12e-07, - "fursuit": 1.12e-07, - "futur": 1.12e-07, - "fxs": 1.12e-07, - "gaan": 1.12e-07, - "gadgetry": 1.12e-07, - "gagan": 1.12e-07, - "gaiters": 1.12e-07, - "garlicky": 1.12e-07, - "garonne": 1.12e-07, - "garver": 1.12e-07, - "gattuso": 1.12e-07, - "gentlewoman": 1.12e-07, - "geste": 1.12e-07, - "gfi": 1.12e-07, - "giantess": 1.12e-07, - "gifu": 1.12e-07, - "ginette": 1.12e-07, - "giz": 1.12e-07, - "glennie": 1.12e-07, - "gluteal": 1.12e-07, - "gmr": 1.12e-07, - "gokhale": 1.12e-07, - "goold": 1.12e-07, - "goos": 1.12e-07, - "gourlay": 1.12e-07, - "governesses": 1.12e-07, - "gowen": 1.12e-07, - "gpr": 1.12e-07, - "grahamstown": 1.12e-07, - "grandiosity": 1.12e-07, - "gren": 1.12e-07, - "greying": 1.12e-07, - "griefs": 1.12e-07, - "groundout": 1.12e-07, - "gulley": 1.12e-07, - "gundlach": 1.12e-07, - "guus": 1.12e-07, - "guyot": 1.12e-07, - "guyton": 1.12e-07, - "haagen": 1.12e-07, - "hakone": 1.12e-07, - "halberd": 1.12e-07, - "halfords": 1.12e-07, - "hammerheads": 1.12e-07, - "handcuffing": 1.12e-07, - "handstands": 1.12e-07, - "handsy": 1.12e-07, - "hapoel": 1.12e-07, - "hardcopy": 1.12e-07, - "hardesty": 1.12e-07, - "haredi": 1.12e-07, - "harty": 1.12e-07, - "hatt": 1.12e-07, - "havisham": 1.12e-07, - "haywards": 1.02e-07, - "hbcus": 1.12e-07, - "headey": 1.12e-07, - "heartwood": 1.12e-07, - "hef": 1.12e-07, - "heineman": 1.12e-07, - "heis": 1.12e-07, - "hemiptera": 1.12e-07, - "hench": 1.12e-07, - "hensel": 1.12e-07, - "hensons": 1.12e-07, - "herakles": 1.12e-07, - "heu": 1.12e-07, - "hilts": 1.12e-07, - "hindman": 1.12e-07, - "hoagland": 1.12e-07, - "hobsbawm": 1.12e-07, - "hohenzollern": 1.12e-07, - "hollers": 1.12e-07, - "hols": 1.12e-07, - "hominin": 1.12e-07, - "honiton": 1.12e-07, - "hootenanny": 1.12e-07, - "hopsin": 1.12e-07, - "hornaday": 1.12e-07, - "hostname": 1.12e-07, - "hozier": 1.12e-07, - "hucknall": 1.12e-07, - "hullo": 1.12e-07, - "humpbacks": 1.12e-07, - "hurtled": 1.12e-07, - "hyndman": 1.12e-07, - "idl": 1.12e-07, - "ifo": 1.12e-07, - "iihf": 1.12e-07, - "iits": 1.12e-07, - "ilorin": 1.12e-07, - "imbues": 1.12e-07, - "imfs": 1.12e-07, - "impounding": 1.12e-07, - "indyref": 1.12e-07, - "infineon": 1.12e-07, - "inglourious": 1.12e-07, - "interdenominational": 1.12e-07, - "interregional": 1.12e-07, - "irak": 1.12e-07, - "irregardless": 1.12e-07, - "isna": 1.12e-07, - "iupui": 1.12e-07, - "ivories": 1.12e-07, - "janta": 1.12e-07, - "januarys": 1.12e-07, - "jardim": 1.12e-07, - "jauregui": 1.12e-07, - "jayce": 1.12e-07, - "jeevan": 1.12e-07, - "jeh": 1.12e-07, - "jeopardised": 1.12e-07, - "jessel": 1.12e-07, - "jetson": 1.12e-07, - "jho": 1.12e-07, - "jse": 1.12e-07, - "kahl": 1.12e-07, - "kakadu": 1.12e-07, - "kannan": 1.12e-07, - "karlsen": 1.12e-07, - "karyotype": 1.12e-07, - "katrinas": 1.12e-07, - "katzenberg": 1.12e-07, - "kaveri": 1.12e-07, - "kazakhstani": 1.12e-07, - "kearse": 1.12e-07, - "kelman": 1.12e-07, - "kerrville": 1.12e-07, - "khost": 1.12e-07, - "kingdon": 1.12e-07, - "kiplings": 1.12e-07, - "kishida": 1.12e-07, - "kittle": 1.12e-07, - "kjell": 1.12e-07, - "klassen": 1.12e-07, - "klebsiella": 1.12e-07, - "kocher": 1.12e-07, - "konya": 1.12e-07, - "kootenai": 1.12e-07, - "kresge": 1.12e-07, - "kugel": 1.12e-07, - "kundan": 1.12e-07, - "kuntz": 1.12e-07, - "kynaston": 1.12e-07, - "labradors": 1.12e-07, - "landrum": 1.12e-07, - "lanthanum": 1.12e-07, - "lapu": 1.12e-07, - "lateef": 1.12e-07, - "lauro": 1.12e-07, - "leber": 1.12e-07, - "ledbury": 1.12e-07, - "lestrade": 1.12e-07, - "letos": 1.12e-07, - "letourneau": 1.12e-07, - "levitan": 1.12e-07, - "libros": 1.12e-07, - "licious": 1.12e-07, - "lieve": 1.12e-07, - "ligase": 1.12e-07, - "limas": 1.12e-07, - "lincs": 1.12e-07, - "lipophilic": 1.12e-07, - "liq": 1.12e-07, - "litte": 1.12e-07, - "livability": 1.12e-07, - "livi": 1.12e-07, - "llewyn": 1.12e-07, - "lmr": 1.12e-07, - "lmu": 1.12e-07, - "loftier": 1.12e-07, - "lona": 1.12e-07, - "longe": 1.12e-07, - "loofah": 1.12e-07, - "loria": 1.12e-07, - "loupe": 1.12e-07, - "lovecraftian": 1.12e-07, - "ludlam": 1.12e-07, - "luella": 1.12e-07, - "lunched": 1.12e-07, - "lurkers": 1.12e-07, - "lxi": 1.12e-07, - "macaroon": 1.12e-07, - "macdonnell": 1.12e-07, - "mackin": 1.12e-07, - "maclellan": 1.12e-07, - "macromedia": 1.12e-07, - "madding": 1.12e-07, - "mado": 1.12e-07, - "maggs": 1.12e-07, - "magnums": 1.12e-07, - "mahabharat": 1.12e-07, - "mailbag": 1.12e-07, - "mainichi": 1.12e-07, - "malcontent": 1.12e-07, - "malka": 1.12e-07, - "malling": 1.12e-07, - "maltose": 1.12e-07, - "malum": 1.12e-07, - "manado": 1.12e-07, - "manan": 1.12e-07, - "manana": 1.12e-07, - "manfully": 1.12e-07, - "manioc": 1.12e-07, - "manzanita": 1.12e-07, - "marathas": 1.12e-07, - "margolin": 1.12e-07, - "markson": 1.12e-07, - "marlee": 1.12e-07, - "marmoset": 1.12e-07, - "marquetry": 1.12e-07, - "marwood": 1.12e-07, - "mashhad": 1.12e-07, - "matriarchy": 1.12e-07, - "matsuoka": 1.12e-07, - "mauch": 1.12e-07, - "maxson": 1.12e-07, - "mccrary": 1.12e-07, - "mccullers": 1.12e-07, - "mcgrew": 1.12e-07, - "mclntyre": 1.12e-07, - "mcmahons": 1.12e-07, - "medlock": 1.12e-07, - "megatons": 1.12e-07, - "meissen": 1.12e-07, - "melancon": 1.12e-07, - "melanocytes": 1.12e-07, - "memorys": 1.12e-07, - "mentone": 1.12e-07, - "merkley": 1.12e-07, - "metas": 1.12e-07, - "mff": 1.12e-07, - "microplastics": 1.12e-07, - "midrib": 1.12e-07, - "mikal": 1.12e-07, - "millay": 1.12e-07, - "millies": 1.12e-07, - "mimesis": 1.12e-07, - "mings": 6.31e-08, - "minha": 1.12e-07, - "minimus": 1.12e-07, - "minnies": 1.12e-07, - "misapplied": 1.12e-07, - "misdemeanours": 1.12e-07, - "mistranslation": 1.12e-07, - "mistrustful": 1.12e-07, - "mnangagwa": 1.12e-07, - "moco": 1.12e-07, - "molineux": 1.12e-07, - "mondragon": 1.12e-07, - "moneylender": 1.12e-07, - "montour": 1.12e-07, - "moonee": 1.12e-07, - "morbius": 1.12e-07, - "morra": 1.12e-07, - "mostert": 1.12e-07, - "mousepad": 1.12e-07, - "mrd": 1.12e-07, - "mtsu": 1.12e-07, - "mukti": 1.12e-07, - "multicore": 1.12e-07, - "mundial": 1.12e-07, - "musicale": 1.12e-07, - "musso": 1.12e-07, - "myx": 1.12e-07, - "nabs": 1.78e-08, - "nain": 1.12e-07, - "nanowrimo": 1.12e-07, - "nasik": 1.12e-07, - "natascha": 1.12e-07, - "ndps": 1.12e-07, - "ndrangheta": 1.12e-07, - "nearsighted": 1.12e-07, - "nemeth": 1.12e-07, - "neogene": 1.12e-07, - "nestorius": 1.12e-07, - "netto": 1.12e-07, - "netware": 1.12e-07, - "neurotrophic": 1.12e-07, - "ngan": 1.12e-07, - "nias": 5.01e-08, - "nicolle": 1.12e-07, - "noisiest": 1.12e-07, - "nolo": 1.12e-07, - "nonalcoholic": 1.12e-07, - "noncombatants": 1.12e-07, - "noncommissioned": 1.12e-07, - "nordberg": 1.12e-07, - "norml": 1.12e-07, - "norwell": 1.12e-07, - "novela": 1.12e-07, - "novum": 1.12e-07, - "nsd": 1.12e-07, - "nswrl": 1.12e-07, - "numberless": 1.12e-07, - "nusrat": 1.12e-07, - "nypl": 1.12e-07, - "oaky": 1.12e-07, - "obits": 1.12e-07, - "objets": 1.12e-07, - "oddie": 1.12e-07, - "ohi": 1.12e-07, - "oie": 1.12e-07, - "olivares": 1.12e-07, - "olt": 1.12e-07, - "opensuse": 1.12e-07, - "opn": 1.12e-07, - "orangemen": 1.12e-07, - "orangey": 1.12e-07, - "orillia": 1.12e-07, - "ormonde": 1.12e-07, - "orne": 1.12e-07, - "oropharyngeal": 1.12e-07, - "orthotics": 1.12e-07, - "osmium": 1.12e-07, - "ouray": 1.12e-07, - "outfall": 1.12e-07, - "outsize": 1.12e-07, - "ovc": 1.12e-07, - "overacting": 1.12e-07, - "overcompensating": 1.12e-07, - "oxalic": 1.12e-07, - "paik": 1.12e-07, - "palahniuk": 1.12e-07, - "palimpsest": 1.12e-07, - "palpation": 1.12e-07, - "panettiere": 1.12e-07, - "panjab": 1.12e-07, - "pantai": 1.12e-07, - "panzers": 1.12e-07, - "papist": 1.12e-07, - "paraiso": 1.12e-07, - "parkways": 1.12e-07, - "parler": 1.12e-07, - "parotid": 1.12e-07, - "parses": 1.12e-07, - "passionfruit": 1.12e-07, - "patras": 1.12e-07, - "patrizia": 1.12e-07, - "payables": 1.12e-07, - "paymasters": 1.12e-07, - "pbe": 1.12e-07, - "pbp": 1.12e-07, - "pdd": 1.12e-07, - "pectoralis": 1.12e-07, - "pelley": 1.12e-07, - "pennyworth": 1.12e-07, - "pentru": 1.12e-07, - "permeation": 1.12e-07, - "perreault": 1.12e-07, - "perrot": 1.12e-07, - "perryman": 1.12e-07, - "personalizing": 1.12e-07, - "pettibone": 1.12e-07, - "pettitte": 1.12e-07, - "phon": 1.12e-07, - "phr": 1.12e-07, - "picatinny": 1.12e-07, - "picc": 1.12e-07, - "piedra": 1.12e-07, - "piggybacking": 1.12e-07, - "pila": 1.12e-07, - "pinche": 1.12e-07, - "pinheiro": 1.12e-07, - "pinko": 1.12e-07, - "pion": 1.12e-07, - "piscina": 1.12e-07, - "piti": 1.12e-07, - "pitti": 1.12e-07, - "piyush": 1.12e-07, - "plantarum": 1.12e-07, - "pleasance": 1.12e-07, - "pleurisy": 1.12e-07, - "polisario": 1.12e-07, - "pomodoro": 1.12e-07, - "portas": 1.12e-07, - "porterhouse": 1.12e-07, - "portola": 1.12e-07, - "positrons": 1.12e-07, - "possessiveness": 1.12e-07, - "postgrad": 1.12e-07, - "potlatch": 1.12e-07, - "potties": 1.12e-07, - "pouncey": 1.12e-07, - "pourquoi": 1.12e-07, - "poway": 1.12e-07, - "powerlines": 1.12e-07, - "prejudge": 1.12e-07, - "preprocessing": 1.12e-07, - "preprocessor": 1.12e-07, - "prestatyn": 1.12e-07, - "preteens": 1.12e-07, - "princetons": 1.12e-07, - "probative": 1.12e-07, - "produc": 1.12e-07, - "programm": 1.12e-07, - "prolapsed": 1.12e-07, - "pronotum": 1.12e-07, - "proteome": 1.12e-07, - "ptarmigan": 1.12e-07, - "publick": 1.12e-07, - "pugin": 1.12e-07, - "puntland": 1.12e-07, - "purposeless": 1.12e-07, - "purty": 1.12e-07, - "purves": 1.12e-07, - "qrs": 1.12e-07, - "quantifier": 1.12e-07, - "quarantining": 1.12e-07, - "quiets": 1.12e-07, - "raby": 1.12e-07, - "radcliff": 1.12e-07, - "ragini": 1.12e-07, - "rainfalls": 1.12e-07, - "ravan": 1.12e-07, - "reales": 1.12e-07, - "realme": 1.12e-07, - "recouping": 1.12e-07, - "redactions": 1.12e-07, - "reddits": 1.12e-07, - "reemergence": 1.12e-07, - "reenacted": 1.12e-07, - "rehome": 1.12e-07, - "reiteration": 1.12e-07, - "reorganizations": 1.12e-07, - "replications": 1.12e-07, - "republika": 1.12e-07, - "repudiating": 1.12e-07, - "resales": 1.12e-07, - "ressler": 1.12e-07, - "rett": 1.12e-07, - "reunified": 1.12e-07, - "rhcp": 1.12e-07, - "richa": 1.12e-07, - "rifkind": 1.12e-07, - "rimfire": 1.12e-07, - "rippers": 1.12e-07, - "roadwork": 1.12e-07, - "roids": 1.12e-07, - "rollercoasters": 1.12e-07, - "romine": 1.12e-07, - "rosea": 1.12e-07, - "roundish": 1.12e-07, - "rowse": 1.12e-07, - "ruber": 1.12e-07, - "rubins": 1.12e-07, - "ruggedly": 1.12e-07, - "ruy": 1.12e-07, - "ryoko": 1.12e-07, - "saat": 1.12e-07, - "sacher": 1.12e-07, - "sadies": 1.12e-07, - "sagamore": 1.12e-07, - "sahaba": 1.12e-07, - "saiyans": 1.12e-07, - "salama": 1.12e-07, - "saltier": 1.12e-07, - "samuelsson": 1.12e-07, - "sarris": 1.12e-07, - "sather": 1.12e-07, - "saturnalia": 1.12e-07, - "scallion": 1.12e-07, - "scarpa": 1.12e-07, - "scher": 1.12e-07, - "schiano": 1.12e-07, - "schild": 1.12e-07, - "schlitz": 1.12e-07, - "schreck": 1.12e-07, - "scotsmen": 1.12e-07, - "scourges": 1.12e-07, - "screenshotted": 1.12e-07, - "scribd": 1.12e-07, - "seaplanes": 1.12e-07, - "secundum": 1.12e-07, - "seige": 1.12e-07, - "selwood": 1.12e-07, - "semiconducting": 1.12e-07, - "semigroup": 1.12e-07, - "sene": 1.12e-07, - "senselessly": 1.12e-07, - "seperately": 1.12e-07, - "sereno": 1.12e-07, - "serling": 1.12e-07, - "serna": 1.12e-07, - "serotype": 1.12e-07, - "serpico": 1.12e-07, - "sette": 1.12e-07, - "shahin": 1.12e-07, - "sharky": 1.12e-07, - "shearers": 5.37e-08, - "shelia": 1.12e-07, - "shilo": 1.12e-07, - "shinhwa": 1.12e-07, - "shiz": 1.12e-07, - "shobha": 1.12e-07, - "shoshana": 1.12e-07, - "shredders": 1.12e-07, - "shwe": 1.12e-07, - "sidharth": 1.12e-07, - "signee": 1.12e-07, - "sintra": 1.12e-07, - "sixer": 1.12e-07, - "sketchup": 1.12e-07, - "skippered": 1.12e-07, - "skittle": 1.12e-07, - "slickers": 1.12e-07, - "slingshots": 1.12e-07, - "slovenias": 1.12e-07, - "smiting": 1.12e-07, - "sml": 1.12e-07, - "smok": 1.12e-07, - "sneddon": 1.12e-07, - "snogging": 1.12e-07, - "sodastream": 1.12e-07, - "soleimani": 1.12e-07, - "soll": 1.12e-07, - "sommerville": 1.12e-07, - "sonias": 1.12e-07, - "soos": 9.55e-08, - "sourness": 1.12e-07, - "southwestward": 1.12e-07, - "spann": 1.12e-07, - "spectrophotometer": 1.12e-07, - "speculatively": 1.12e-07, - "spinsters": 1.12e-07, - "spiralled": 1.12e-07, - "sportier": 1.12e-07, - "sprache": 1.12e-07, - "sprue": 1.12e-07, - "sqlite": 1.12e-07, - "stabling": 1.12e-07, - "staceys": 1.12e-07, - "stakeout": 1.12e-07, - "starin": 1.12e-07, - "startles": 1.12e-07, - "stawell": 1.12e-07, - "steffens": 1.12e-07, - "stereochemistry": 1.12e-07, - "stereotactic": 1.12e-07, - "sternal": 1.12e-07, - "stigmatised": 1.12e-07, - "stra": 1.12e-07, - "stripling": 1.12e-07, - "subcortical": 1.12e-07, - "suborder": 1.12e-07, - "substantia": 1.12e-07, - "suburbanites": 1.12e-07, - "successions": 1.12e-07, - "sucralose": 1.12e-07, - "suddenness": 1.12e-07, - "summerland": 1.12e-07, - "sunbed": 1.12e-07, - "sunland": 1.12e-07, - "sunnies": 1.12e-07, - "sunnys": 1.12e-07, - "surv": 1.12e-07, - "surveilled": 1.12e-07, - "surveilling": 1.12e-07, - "suspiria": 1.12e-07, - "susumu": 1.12e-07, - "suzumiya": 1.12e-07, - "svengali": 1.12e-07, - "takano": 1.12e-07, - "talky": 1.12e-07, - "tallman": 1.12e-07, - "tanakas": 1.12e-07, - "tanuki": 1.12e-07, - "targum": 1.12e-07, - "tarly": 1.12e-07, - "tatoo": 1.12e-07, - "tef": 1.12e-07, - "tela": 1.12e-07, - "tenzing": 1.12e-07, - "terming": 1.12e-07, - "terrebonne": 1.12e-07, - "tez": 1.12e-07, - "tgp": 1.12e-07, - "thallus": 1.12e-07, - "thapar": 1.12e-07, - "theotokos": 1.12e-07, - "thoracotomy": 1.12e-07, - "tigh": 1.12e-07, - "timebomb": 1.12e-07, - "titers": 1.12e-07, - "tiwa": 1.12e-07, - "tlcs": 1.12e-07, - "tno": 1.12e-07, - "todorov": 1.12e-07, - "toodles": 1.12e-07, - "toontown": 1.12e-07, - "tpt": 1.12e-07, - "transcriber": 1.12e-07, - "trant": 1.12e-07, - "trello": 1.12e-07, - "trenching": 1.12e-07, - "trf": 1.12e-07, - "tricuspid": 1.12e-07, - "triviality": 1.12e-07, - "trustful": 1.12e-07, - "truther": 1.12e-07, - "trys": 5.62e-08, - "twitterverse": 1.12e-07, - "twrp": 1.12e-07, - "tynecastle": 1.12e-07, - "ubisofts": 1.12e-07, - "ulrika": 1.12e-07, - "unb": 1.12e-07, - "unclothed": 1.12e-07, - "unconquerable": 1.12e-07, - "underachievers": 1.12e-07, - "unexceptional": 1.12e-07, - "unfixed": 1.12e-07, - "universiti": 1.12e-07, - "unnie": 1.12e-07, - "unorganised": 1.12e-07, - "unprompted": 1.12e-07, - "unruh": 1.12e-07, - "unscramble": 1.12e-07, - "untying": 1.12e-07, - "upsilon": 1.12e-07, - "ussf": 1.12e-07, - "utena": 1.12e-07, - "utis": 1.12e-07, - "vacaville": 1.12e-07, - "valine": 1.12e-07, - "valorous": 1.12e-07, - "vds": 1.12e-07, - "veidt": 1.12e-07, - "veloso": 1.12e-07, - "veni": 1.12e-07, - "ventana": 1.12e-07, - "verifications": 1.12e-07, - "vibranium": 1.12e-07, - "victorino": 1.12e-07, - "videographers": 1.12e-07, - "vindictiveness": 1.12e-07, - "visualising": 1.12e-07, - "vixx": 1.12e-07, - "volcanics": 1.12e-07, - "vong": 1.12e-07, - "vot": 1.12e-07, - "vws": 1.12e-07, - "waititi": 1.12e-07, - "wallenstein": 1.12e-07, - "waseda": 1.12e-07, - "wate": 1.12e-07, - "webrtc": 1.12e-07, - "weetabix": 1.12e-07, - "wegman": 1.12e-07, - "wenlock": 1.12e-07, - "westford": 1.12e-07, - "whatta": 1.12e-07, - "wijnaldum": 1.12e-07, - "wilby": 1.12e-07, - "wined": 1.12e-07, - "wingback": 1.12e-07, - "wisley": 1.12e-07, - "witnesss": 1.12e-07, - "wolford": 1.12e-07, - "woll": 1.12e-07, - "workington": 1.12e-07, - "worktop": 1.12e-07, - "worming": 1.12e-07, - "wynyard": 1.12e-07, - "xls": 1.12e-07, - "yalu": 1.12e-07, - "yehudi": 1.12e-07, - "yersinia": 1.12e-07, - "yoshioka": 1.12e-07, - "yukawa": 1.12e-07, - "yuli": 1.12e-07, - "zabaleta": 1.12e-07, - "zacatecas": 1.12e-07, - "zaitsev": 1.12e-07, - "zajac": 1.12e-07, - "zend": 1.12e-07, - "zloty": 1.12e-07, - "zodiacal": 1.12e-07, - "zouk": 1.12e-07, - "zuo": 1.12e-07, - "aaaaa": 1.1e-07, - "aaahh": 1.1e-07, - "abdu": 1.1e-07, - "abf": 1.1e-07, - "abraxas": 1.1e-07, - "acq": 1.1e-07, - "actes": 1.1e-07, - "acuna": 1.1e-07, - "acyclovir": 1.1e-07, - "adar": 1.1e-07, - "adebayo": 1.1e-07, - "adjudicators": 1.1e-07, - "adra": 1.1e-07, - "adulteress": 1.1e-07, - "airstrips": 1.1e-07, - "akbari": 1.1e-07, - "akm": 1.1e-07, - "alabang": 1.1e-07, - "alcon": 1.1e-07, - "aldwych": 1.1e-07, - "alii": 1.1e-07, - "alkylation": 1.1e-07, - "almas": 9.12e-08, - "alyosha": 1.1e-07, - "amalgamations": 1.1e-07, - "amateurism": 1.1e-07, - "amazeballs": 1.1e-07, - "ambridge": 1.1e-07, - "ampoule": 1.1e-07, - "anatomists": 1.1e-07, - "anesthetist": 1.1e-07, - "angelis": 1.1e-07, - "anglin": 1.1e-07, - "anhalt": 1.1e-07, - "anscombe": 1.1e-07, - "ansley": 1.1e-07, - "anteaters": 1.1e-07, - "anticlimax": 1.1e-07, - "antiphon": 1.1e-07, - "antivirals": 1.1e-07, - "aoun": 1.1e-07, - "apgar": 1.1e-07, - "arbeit": 1.1e-07, - "arcgis": 1.1e-07, - "arish": 1.1e-07, - "arliss": 1.1e-07, - "armee": 1.1e-07, - "asiago": 1.1e-07, - "assem": 1.1e-07, - "astarte": 1.1e-07, - "astonishes": 1.1e-07, - "astrobiology": 1.1e-07, - "asya": 1.1e-07, - "athenas": 1.1e-07, - "atresia": 1.1e-07, - "augh": 1.1e-07, - "avaricious": 1.1e-07, - "averell": 1.1e-07, - "awal": 1.1e-07, - "awf": 1.1e-07, - "babatunde": 1.1e-07, - "babin": 1.1e-07, - "babri": 1.1e-07, - "backlink": 1.1e-07, - "baf": 1.1e-07, - "bagatelle": 1.1e-07, - "bairn": 1.1e-07, - "baldurs": 1.1e-07, - "baltasar": 1.1e-07, - "banbridge": 1.1e-07, - "bape": 1.1e-07, - "barometers": 1.1e-07, - "bartle": 1.1e-07, - "bassnectar": 1.1e-07, - "baster": 1.1e-07, - "battier": 1.1e-07, - "bayly": 1.1e-07, - "beatific": 1.1e-07, - "beaverbrook": 1.1e-07, - "becalmed": 1.1e-07, - "beda": 1.1e-07, - "beeching": 1.1e-07, - "beguile": 1.1e-07, - "beller": 1.1e-07, - "benbow": 1.1e-07, - "benedictus": 1.1e-07, - "bermudas": 1.1e-07, - "bernalillo": 1.1e-07, - "bertelsmann": 1.1e-07, - "berti": 1.1e-07, - "betjeman": 1.1e-07, - "bhajan": 1.1e-07, - "bhardwaj": 1.1e-07, - "bho": 1.1e-07, - "biatch": 1.1e-07, - "bilaspur": 1.1e-07, - "billerica": 1.1e-07, - "bilton": 1.1e-07, - "bima": 1.1e-07, - "biosystems": 1.1e-07, - "birthmarks": 1.1e-07, - "blancos": 1.1e-07, - "blankie": 1.1e-07, - "blucher": 1.1e-07, - "bogans": 1.1e-07, - "bogdanov": 1.1e-07, - "boingo": 1.1e-07, - "bombards": 1.1e-07, - "booboo": 1.1e-07, - "booke": 1.1e-07, - "bosniaks": 1.1e-07, - "bowerman": 1.1e-07, - "bowness": 1.1e-07, - "breadboard": 1.1e-07, - "brewin": 1.1e-07, - "bridgnorth": 1.1e-07, - "broaching": 1.1e-07, - "brogues": 1.1e-07, - "bronc": 1.1e-07, - "brundage": 1.1e-07, - "brunello": 1.1e-07, - "bsm": 1.1e-07, - "bulged": 1.1e-07, - "bulle": 1.1e-07, - "bupropion": 1.1e-07, - "burges": 1.1e-07, - "burnetts": 1.1e-07, - "burnish": 1.1e-07, - "burped": 1.1e-07, - "burried": 1.1e-07, - "butterball": 1.1e-07, - "buttering": 1.1e-07, - "bwv": 1.1e-07, - "bylsma": 1.1e-07, - "caddyshack": 1.1e-07, - "cagliostro": 1.1e-07, - "cahokia": 1.1e-07, - "caloundra": 1.1e-07, - "calvi": 1.1e-07, - "camomile": 1.1e-07, - "canapes": 1.1e-07, - "candyland": 1.1e-07, - "cantatas": 1.1e-07, - "cantt": 1.1e-07, - "cardassians": 1.1e-07, - "carloads": 1.1e-07, - "carm": 1.1e-07, - "carmi": 1.1e-07, - "carnitas": 1.1e-07, - "carryout": 1.1e-07, - "carvin": 1.1e-07, - "castellan": 1.1e-07, - "catalonian": 1.1e-07, - "catcalls": 1.1e-07, - "catena": 1.1e-07, - "cattaraugus": 1.1e-07, - "cauterize": 1.1e-07, - "cavil": 1.1e-07, - "cawdor": 1.1e-07, - "champagnes": 1.1e-07, - "chanter": 1.1e-07, - "chaperoned": 1.1e-07, - "chari": 1.1e-07, - "charis": 1.1e-07, - "charybdis": 1.1e-07, - "chatman": 1.1e-07, - "chaturvedi": 1.1e-07, - "chazelle": 1.1e-07, - "cheeseman": 1.1e-07, - "chernov": 1.1e-07, - "chicagoan": 1.1e-07, - "chicharito": 1.1e-07, - "chinamen": 1.1e-07, - "choa": 1.1e-07, - "chobani": 1.1e-07, - "chocobo": 1.1e-07, - "chorister": 1.1e-07, - "chumash": 1.1e-07, - "cienfuegos": 1.1e-07, - "cipriano": 1.1e-07, - "cita": 1.1e-07, - "citta": 1.1e-07, - "cked": 1.1e-07, - "clackmannanshire": 1.1e-07, - "claymores": 1.1e-07, - "cleavages": 1.1e-07, - "cobo": 1.1e-07, - "cointelpro": 1.1e-07, - "columbiana": 1.1e-07, - "colusa": 1.1e-07, - "combusted": 1.1e-07, - "comicon": 1.1e-07, - "commiting": 1.1e-07, - "comptes": 1.1e-07, - "concertmaster": 1.1e-07, - "concho": 1.1e-07, - "congee": 1.1e-07, - "containerized": 1.1e-07, - "contrastive": 1.1e-07, - "coren": 1.1e-07, - "cosas": 1.1e-07, - "cosatu": 1.1e-07, - "cosmologists": 1.1e-07, - "coss": 1.1e-07, - "counterexamples": 1.1e-07, - "courtauld": 1.1e-07, - "cracknell": 1.1e-07, - "crampons": 1.1e-07, - "creaked": 1.1e-07, - "creutzfeldt": 1.1e-07, - "crimestoppers": 1.1e-07, - "crippen": 1.1e-07, - "crofting": 1.1e-07, - "crothers": 1.1e-07, - "csos": 1.1e-07, - "curtius": 1.1e-07, - "curwen": 1.1e-07, - "cusa": 1.1e-07, - "cytomegalovirus": 1.1e-07, - "dagan": 1.1e-07, - "darent": 1.1e-07, - "darter": 1.1e-07, - "dashi": 1.1e-07, - "daunt": 1.1e-07, - "dawah": 1.1e-07, - "daylong": 1.1e-07, - "deano": 1.1e-07, - "debutants": 1.1e-07, - "degen": 1.1e-07, - "degradable": 1.1e-07, - "dejesus": 1.1e-07, - "demarcate": 1.1e-07, - "demonetization": 1.1e-07, - "demystifying": 1.1e-07, - "denarii": 1.1e-07, - "denholm": 1.1e-07, - "deok": 1.1e-07, - "depew": 1.1e-07, - "depuis": 1.1e-07, - "derna": 1.1e-07, - "derricks": 6.46e-08, - "descript": 1.1e-07, - "desiccant": 1.1e-07, - "despacito": 1.1e-07, - "dessau": 1.1e-07, - "dickies": 1.1e-07, - "digester": 1.1e-07, - "dillards": 1.1e-07, - "dimm": 1.1e-07, - "dinsdale": 1.1e-07, - "dipoles": 1.1e-07, - "disaggregated": 1.1e-07, - "discoverys": 1.1e-07, - "dishonorably": 1.1e-07, - "distil": 1.1e-07, - "distrusting": 1.1e-07, - "divs": 1.1e-07, - "diyala": 1.1e-07, - "dobell": 1.1e-07, - "doheny": 1.1e-07, - "dornoch": 1.1e-07, - "doron": 1.1e-07, - "doublespeak": 1.1e-07, - "downrange": 1.1e-07, - "downtowns": 9.55e-08, - "dph": 1.1e-07, - "draftkings": 1.1e-07, - "dragster": 1.1e-07, - "drainpipe": 1.1e-07, - "drivable": 1.1e-07, - "drogon": 1.1e-07, - "dubin": 1.1e-07, - "dudek": 1.1e-07, - "duell": 1.1e-07, - "dummett": 1.1e-07, - "durfee": 1.1e-07, - "dvs": 1.1e-07, - "dwain": 1.1e-07, - "eartha": 1.1e-07, - "eberhardt": 1.1e-07, - "eby": 1.1e-07, - "ecig": 1.1e-07, - "eelam": 1.1e-07, - "egger": 1.1e-07, - "eked": 1.1e-07, - "electroconvulsive": 1.1e-07, - "eley": 1.1e-07, - "eliasson": 1.1e-07, - "elodie": 1.1e-07, - "emerton": 1.1e-07, - "emmylou": 1.1e-07, - "enshrines": 1.1e-07, - "entendres": 1.1e-07, - "enteral": 1.1e-07, - "entrusts": 1.1e-07, - "eom": 1.1e-07, - "epitomize": 1.1e-07, - "epos": 1.1e-07, - "erdem": 1.1e-07, - "eriks": 1.1e-07, - "erl": 1.1e-07, - "ernakulam": 1.1e-07, - "erosive": 1.1e-07, - "estancia": 1.1e-07, - "esxi": 1.1e-07, - "ethnics": 1.1e-07, - "euc": 1.1e-07, - "eulogized": 1.1e-07, - "evanss": 1.1e-07, - "evensong": 1.1e-07, - "exacts": 1.1e-07, - "exalting": 1.1e-07, - "executables": 1.1e-07, - "existentially": 1.1e-07, - "extols": 1.1e-07, - "extraversion": 1.1e-07, - "ezine": 1.1e-07, - "faience": 1.1e-07, - "failover": 1.1e-07, - "fanged": 1.1e-07, - "farida": 1.1e-07, - "farman": 1.1e-07, - "fascistic": 1.1e-07, - "favorited": 1.1e-07, - "fearmongering": 1.1e-07, - "federici": 1.1e-07, - "fibs": 1.1e-07, - "fiefdoms": 1.1e-07, - "fionn": 1.1e-07, - "firestarter": 1.1e-07, - "fiume": 1.1e-07, - "flatlining": 1.1e-07, - "flatscreen": 1.1e-07, - "fmg": 1.1e-07, - "fmln": 1.1e-07, - "foon": 1.1e-07, - "forager": 1.1e-07, - "forsook": 1.1e-07, - "francona": 1.1e-07, - "frannie": 1.1e-07, - "freie": 1.1e-07, - "frenchmans": 1.1e-07, - "friedan": 1.1e-07, - "friggen": 1.1e-07, - "fuerteventura": 1.1e-07, - "fuzzies": 1.1e-07, - "fuzziness": 1.1e-07, - "fyne": 1.1e-07, - "galeria": 1.1e-07, - "galeries": 1.1e-07, - "gamely": 1.1e-07, - "garfinkel": 1.1e-07, - "garside": 1.1e-07, - "gaughan": 1.1e-07, - "gavrilo": 1.1e-07, - "gbagbo": 1.1e-07, - "gbf": 1.1e-07, - "geir": 1.1e-07, - "geoffroy": 1.1e-07, - "gera": 1.1e-07, - "gha": 1.1e-07, - "ghostwriters": 1.1e-07, - "giacometti": 1.1e-07, - "giffard": 1.1e-07, - "gloriana": 1.1e-07, - "gnss": 1.1e-07, - "gobind": 1.1e-07, - "golkar": 1.1e-07, - "gollancz": 1.1e-07, - "gonadal": 1.1e-07, - "gondii": 1.1e-07, - "graciela": 1.1e-07, - "graig": 1.1e-07, - "granados": 1.1e-07, - "gratiot": 1.1e-07, - "greengrocer": 1.1e-07, - "greenies": 1.1e-07, - "greenlands": 1.1e-07, - "greyfriars": 1.1e-07, - "grindcore": 1.1e-07, - "groce": 1.1e-07, - "guay": 1.1e-07, - "guida": 1.1e-07, - "guidry": 1.1e-07, - "guis": 1.1e-07, - "gurdy": 1.1e-07, - "gute": 1.1e-07, - "guyz": 1.1e-07, - "haaa": 1.1e-07, - "haakon": 1.1e-07, - "hachiman": 1.1e-07, - "hade": 1.1e-07, - "haematology": 1.1e-07, - "halden": 1.1e-07, - "hance": 1.1e-07, - "handpainted": 1.1e-07, - "hansford": 1.1e-07, - "hardier": 1.1e-07, - "hargitay": 1.1e-07, - "harmondsworth": 1.1e-07, - "hastens": 1.1e-07, - "hawkgirl": 1.1e-07, - "haws": 1.1e-07, - "hayate": 1.1e-07, - "hdds": 1.1e-07, - "heared": 1.1e-07, - "heatley": 1.1e-07, - "hedonist": 1.1e-07, - "heitkamp": 1.1e-07, - "hele": 1.1e-07, - "hellsing": 1.1e-07, - "hemolysis": 1.1e-07, - "henhouse": 1.1e-07, - "hepatocyte": 1.1e-07, - "hicksville": 1.1e-07, - "hilarys": 1.1e-07, - "hipp": 1.1e-07, - "hirata": 1.1e-07, - "hitless": 1.1e-07, - "hoek": 1.1e-07, - "hofman": 1.1e-07, - "hokusai": 1.1e-07, - "holladay": 1.1e-07, - "homi": 1.1e-07, - "hookworm": 1.1e-07, - "hotham": 1.1e-07, - "hoyas": 1.1e-07, - "hre": 1.1e-07, - "hsus": 1.1e-07, - "humm": 1.1e-07, - "huon": 1.1e-07, - "huracan": 1.1e-07, - "hurtle": 1.1e-07, - "husqvarna": 1.1e-07, - "hutto": 1.1e-07, - "hyperventilate": 1.1e-07, - "hypothermic": 1.1e-07, - "ibrahims": 1.1e-07, - "icona": 1.1e-07, - "idriss": 1.1e-07, - "igloos": 1.1e-07, - "ihn": 1.1e-07, - "ikeas": 1.1e-07, - "impels": 1.1e-07, - "impr": 1.1e-07, - "inchon": 1.1e-07, - "inco": 1.1e-07, - "inconveniencing": 1.1e-07, - "incremented": 1.1e-07, - "individuation": 1.1e-07, - "infielders": 1.1e-07, - "infuriatingly": 1.1e-07, - "insolation": 1.1e-07, - "interlace": 1.1e-07, - "internationales": 1.1e-07, - "interrelationship": 1.1e-07, - "invertible": 1.1e-07, - "invisibles": 1.1e-07, - "ipi": 1.1e-07, - "iqaluit": 1.1e-07, - "irby": 1.1e-07, - "isac": 1.1e-07, - "isan": 1.1e-07, - "isengard": 1.1e-07, - "ishiguro": 1.1e-07, - "jaffrey": 1.1e-07, - "jeepney": 1.1e-07, - "jeronimo": 1.1e-07, - "jigging": 1.1e-07, - "jizya": 1.1e-07, - "jnu": 1.1e-07, - "jrr": 1.1e-07, - "juliano": 1.1e-07, - "julieta": 1.1e-07, - "kaftan": 1.1e-07, - "kalani": 1.1e-07, - "kalanick": 1.1e-07, - "kalina": 1.1e-07, - "kamini": 1.1e-07, - "kanaka": 1.1e-07, - "kanban": 1.1e-07, - "kanya": 1.1e-07, - "karnes": 1.1e-07, - "karon": 1.1e-07, - "kasuga": 1.1e-07, - "katzs": 1.1e-07, - "kazuki": 1.1e-07, - "keatings": 1.1e-07, - "keio": 1.1e-07, - "keneally": 1.1e-07, - "khas": 1.1e-07, - "kibosh": 1.1e-07, - "kida": 1.1e-07, - "kikis": 1.1e-07, - "killington": 1.1e-07, - "kiswahili": 1.1e-07, - "kitto": 1.1e-07, - "kluge": 1.1e-07, - "knowsley": 1.1e-07, - "knudson": 1.1e-07, - "koblenz": 1.1e-07, - "kordofan": 1.1e-07, - "korner": 1.1e-07, - "kpn": 1.1e-07, - "krasner": 1.1e-07, - "kull": 1.1e-07, - "kyl": 1.1e-07, - "lactam": 1.1e-07, - "ladyboys": 1.1e-07, - "lampshades": 1.1e-07, - "landrys": 1.1e-07, - "languidly": 1.1e-07, - "lansley": 1.1e-07, - "laois": 1.1e-07, - "laparotomy": 1.1e-07, - "lapidary": 1.1e-07, - "lapidus": 1.1e-07, - "lathered": 1.1e-07, - "laurance": 1.1e-07, - "lazo": 1.1e-07, - "lbl": 1.1e-07, - "lbo": 1.1e-07, - "lck": 1.1e-07, - "leavening": 1.1e-07, - "lege": 1.1e-07, - "legionary": 1.1e-07, - "legitimation": 1.1e-07, - "leitmotif": 1.1e-07, - "lemaitre": 1.1e-07, - "lemos": 1.1e-07, - "lenape": 1.1e-07, - "letta": 1.1e-07, - "lewistown": 1.1e-07, - "limpid": 1.1e-07, - "lipopolysaccharide": 1.1e-07, - "liposomes": 1.1e-07, - "lithology": 1.1e-07, - "liye": 1.1e-07, - "llosa": 1.1e-07, - "lohans": 1.1e-07, - "lookups": 1.1e-07, - "loreal": 1.1e-07, - "louvers": 1.1e-07, - "lowcountry": 1.1e-07, - "lowy": 1.1e-07, - "lucario": 1.1e-07, - "lunsford": 1.1e-07, - "lve": 1.1e-07, - "lynd": 1.1e-07, - "lytic": 1.1e-07, - "maccas": 1.1e-07, - "macdiarmid": 1.1e-07, - "machineguns": 1.1e-07, - "maci": 1.1e-07, - "madani": 1.1e-07, - "maddock": 1.1e-07, - "maestros": 5.37e-08, - "maho": 1.1e-07, - "makeups": 1.1e-07, - "malevich": 1.1e-07, - "malheur": 1.1e-07, - "malky": 1.1e-07, - "malle": 1.1e-07, - "mandelbrot": 1.1e-07, - "mantegna": 1.1e-07, - "manuels": 1.1e-07, - "maplestory": 1.1e-07, - "mapleton": 1.1e-07, - "marcum": 1.1e-07, - "maroni": 1.1e-07, - "marshlands": 1.1e-07, - "maskell": 1.1e-07, - "masterminding": 1.1e-07, - "matins": 1.1e-07, - "matthiessen": 1.1e-07, - "mccanns": 6.92e-08, - "mccausland": 1.1e-07, - "meadowbank": 1.1e-07, - "medicals": 1.1e-07, - "megachurch": 1.1e-07, - "meiers": 1.1e-07, - "meli": 1.1e-07, - "memon": 1.1e-07, - "ments": 1.1e-07, - "mesoscale": 1.1e-07, - "metin": 1.1e-07, - "meza": 1.1e-07, - "micheles": 1.1e-07, - "michu": 1.1e-07, - "mico": 1.1e-07, - "microbeads": 1.1e-07, - "microblogging": 1.1e-07, - "middlebrook": 1.1e-07, - "middlemarch": 1.1e-07, - "midvale": 1.1e-07, - "miletus": 1.1e-07, - "milord": 1.1e-07, - "mineshaft": 1.1e-07, - "minya": 1.1e-07, - "miquelon": 1.1e-07, - "misconstrue": 1.1e-07, - "mitzvahs": 1.1e-07, - "mizzen": 1.1e-07, - "mollify": 1.1e-07, - "monadnock": 1.1e-07, - "monohydrate": 1.1e-07, - "monophosphate": 1.1e-07, - "monteverde": 1.1e-07, - "morrowind": 1.1e-07, - "motha": 1.1e-07, - "mulaney": 1.1e-07, - "multimode": 1.1e-07, - "mutualism": 1.1e-07, - "myocarditis": 1.1e-07, - "nams": 1.1e-07, - "namespaces": 1.1e-07, - "namm": 1.1e-07, - "nardo": 1.1e-07, - "natashas": 1.1e-07, - "nationalise": 1.1e-07, - "nautica": 1.1e-07, - "needa": 1.1e-07, - "neeley": 1.1e-07, - "neuilly": 1.1e-07, - "neuroanatomy": 1.1e-07, - "neurophysiological": 1.1e-07, - "neuroprotective": 1.1e-07, - "newey": 1.1e-07, - "newfield": 1.1e-07, - "newnan": 1.1e-07, - "newports": 1.1e-07, - "newsline": 1.1e-07, - "neyland": 1.1e-07, - "ngr": 1.1e-07, - "nige": 1.1e-07, - "niggle": 1.1e-07, - "nobs": 1.1e-07, - "nobuo": 1.1e-07, - "northville": 1.1e-07, - "novotny": 1.1e-07, - "npb": 1.1e-07, - "nrsv": 1.1e-07, - "nueces": 1.1e-07, - "nuka": 1.1e-07, - "nunchucks": 1.1e-07, - "nyanza": 1.1e-07, - "obyrne": 1.1e-07, - "ocarroll": 1.1e-07, - "oblongata": 1.1e-07, - "obstinately": 1.1e-07, - "ocher": 1.1e-07, - "oit": 1.1e-07, - "ojibwe": 1.1e-07, - "okun": 1.1e-07, - "olenna": 1.1e-07, - "oll": 1.1e-07, - "olla": 1.1e-07, - "olympique": 1.1e-07, - "omans": 1.1e-07, - "oooooo": 1.1e-07, - "oos": 1.1e-07, - "optoelectronics": 1.1e-07, - "optometric": 1.1e-07, - "orientalis": 1.1e-07, - "ornately": 1.1e-07, - "oscillated": 1.1e-07, - "osteogenesis": 1.1e-07, - "ostrava": 1.1e-07, - "otw": 1.1e-07, - "oun": 1.1e-07, - "outmaneuvered": 1.1e-07, - "ouya": 1.1e-07, - "oversell": 1.1e-07, - "oxidised": 1.1e-07, - "paavo": 1.1e-07, - "pacifico": 1.1e-07, - "packwood": 1.1e-07, - "panicles": 1.1e-07, - "panjabi": 1.1e-07, - "parachutists": 1.1e-07, - "parekh": 1.1e-07, - "parmenides": 1.1e-07, - "partakes": 1.1e-07, - "pasir": 1.1e-07, - "passy": 1.1e-07, - "patinkin": 1.1e-07, - "pawning": 1.1e-07, - "pdvsa": 1.1e-07, - "peder": 1.1e-07, - "pemberley": 1.1e-07, - "perforce": 1.1e-07, - "peroxidation": 1.1e-07, - "petersham": 1.1e-07, - "pettersen": 1.1e-07, - "pfm": 1.1e-07, - "pharmacotherapy": 1.1e-07, - "phillipsburg": 1.1e-07, - "phos": 1.1e-07, - "photobooth": 1.1e-07, - "photographically": 1.1e-07, - "phyla": 1.1e-07, - "picardy": 1.1e-07, - "pierogi": 1.1e-07, - "piketty": 1.1e-07, - "pined": 1.1e-07, - "plac": 1.1e-07, - "placentia": 1.1e-07, - "plasminogen": 1.1e-07, - "pli": 1.1e-07, - "pokestops": 1.1e-07, - "polamalu": 1.1e-07, - "polyphemus": 1.1e-07, - "pomposity": 1.1e-07, - "ponyville": 1.1e-07, - "poulenc": 1.1e-07, - "powerlifter": 1.1e-07, - "poy": 1.1e-07, - "predawn": 1.1e-07, - "preordering": 1.1e-07, - "preplanned": 1.1e-07, - "prewitt": 1.1e-07, - "printemps": 1.1e-07, - "privations": 1.1e-07, - "programmatically": 1.1e-07, - "pruritus": 1.1e-07, - "psychoanalytical": 1.1e-07, - "pullers": 1.1e-07, - "pulliam": 1.1e-07, - "puter": 1.1e-07, - "putman": 1.1e-07, - "putrefaction": 1.1e-07, - "qatif": 1.1e-07, - "qazi": 1.1e-07, - "quis": 1.1e-07, - "quotients": 1.1e-07, - "rackspace": 1.1e-07, - "randomizer": 1.1e-07, - "rango": 1.1e-07, - "rasch": 1.1e-07, - "raskolnikov": 1.1e-07, - "rationalised": 1.1e-07, - "ratko": 1.1e-07, - "rausch": 1.1e-07, - "rauschenberg": 1.1e-07, - "raynes": 1.1e-07, - "rdi": 1.1e-07, - "reacquired": 1.1e-07, - "reale": 1.1e-07, - "reas": 1.1e-07, - "reciprocally": 1.1e-07, - "reconnects": 1.1e-07, - "recuperated": 1.1e-07, - "redruth": 1.1e-07, - "regularized": 1.1e-07, - "rehearses": 1.1e-07, - "reillys": 1.1e-07, - "relinquishes": 1.1e-07, - "rember": 1.1e-07, - "rensburg": 1.1e-07, - "reshoots": 1.1e-07, - "retch": 1.1e-07, - "rete": 1.1e-07, - "retellings": 1.1e-07, - "revenged": 1.1e-07, - "rheingold": 1.1e-07, - "rheinmetall": 1.1e-07, - "ridgely": 1.1e-07, - "ritesh": 1.1e-07, - "ritsu": 1.1e-07, - "roache": 1.1e-07, - "rochefoucauld": 1.1e-07, - "rockwells": 1.1e-07, - "roseman": 1.1e-07, - "rouleau": 1.1e-07, - "rubick": 1.1e-07, - "rueda": 1.1e-07, - "ruel": 1.1e-07, - "rufc": 1.1e-07, - "ruggiero": 1.1e-07, - "rumpelstiltskin": 1.1e-07, - "rutted": 1.1e-07, - "saccharin": 1.1e-07, - "sadden": 1.1e-07, - "sadducees": 1.1e-07, - "saguenay": 1.1e-07, - "saker": 1.1e-07, - "sals": 1.1e-07, - "salafis": 1.1e-07, - "sallah": 1.1e-07, - "sambora": 1.1e-07, - "sambuca": 1.1e-07, - "sanga": 1.1e-07, - "sarcomas": 1.1e-07, - "sarma": 1.1e-07, - "sasser": 1.1e-07, - "saturates": 1.1e-07, - "savoured": 1.1e-07, - "sawada": 1.1e-07, - "scalper": 1.1e-07, - "scamander": 1.1e-07, - "scapa": 1.1e-07, - "scarletts": 1.1e-07, - "scb": 1.1e-07, - "schauer": 1.1e-07, - "schering": 1.1e-07, - "schermerhorn": 1.1e-07, - "schoolhouses": 1.1e-07, - "schriften": 1.1e-07, - "sclera": 1.1e-07, - "scratchers": 1.1e-07, - "scribal": 1.1e-07, - "scuffs": 1.1e-07, - "scullion": 1.1e-07, - "seabiscuit": 1.1e-07, - "seafoods": 1.1e-07, - "secker": 1.1e-07, - "secours": 1.1e-07, - "secunderabad": 1.1e-07, - "seemly": 1.1e-07, - "seiner": 1.1e-07, - "sellafield": 1.1e-07, - "selman": 1.1e-07, - "sequestering": 1.1e-07, - "seroquel": 1.1e-07, - "serrations": 1.1e-07, - "serval": 1.1e-07, - "servlet": 1.1e-07, - "setlists": 1.1e-07, - "sexologist": 1.1e-07, - "shadowlands": 1.1e-07, - "shakir": 1.1e-07, - "shama": 1.1e-07, - "shannen": 1.1e-07, - "shapps": 1.1e-07, - "sharers": 1.1e-07, - "sharron": 1.1e-07, - "shashank": 1.1e-07, - "shays": 7.24e-08, - "sheepshead": 1.1e-07, - "shinya": 1.1e-07, - "shippensburg": 1.1e-07, - "shirai": 1.1e-07, - "shish": 1.1e-07, - "sholom": 1.1e-07, - "sidious": 1.1e-07, - "sifu": 1.1e-07, - "siggraph": 1.1e-07, - "sigmoid": 1.1e-07, - "signboard": 1.1e-07, - "sjs": 1.1e-07, - "skipjack": 1.1e-07, - "slaine": 1.1e-07, - "slaty": 1.1e-07, - "slinking": 1.1e-07, - "slouched": 1.1e-07, - "smale": 1.1e-07, - "smbs": 1.1e-07, - "smet": 1.1e-07, - "smooching": 1.1e-07, - "soane": 1.1e-07, - "sobolev": 1.1e-07, - "sotu": 1.1e-07, - "spacesuits": 1.1e-07, - "spassky": 1.1e-07, - "specters": 1.1e-07, - "spiciness": 1.1e-07, - "spiderweb": 1.1e-07, - "splanchnic": 1.1e-07, - "spoleto": 1.1e-07, - "squee": 1.1e-07, - "staar": 1.1e-07, - "stackoverflow": 1.1e-07, - "stalagmites": 1.1e-07, - "stanky": 1.1e-07, - "stanning": 1.1e-07, - "stap": 1.1e-07, - "starker": 1.1e-07, - "stata": 1.1e-07, - "stiffs": 1.1e-07, - "stoat": 1.1e-07, - "stobart": 1.1e-07, - "stockhausen": 1.1e-07, - "stonemasons": 1.1e-07, - "stoppin": 1.1e-07, - "strassburg": 1.1e-07, - "stringently": 1.1e-07, - "strother": 1.1e-07, - "stw": 1.1e-07, - "stygian": 1.1e-07, - "submergence": 1.1e-07, - "subpart": 1.1e-07, - "subpopulation": 1.1e-07, - "subregions": 1.1e-07, - "suffragists": 1.1e-07, - "summarization": 1.1e-07, - "sumptuously": 1.1e-07, - "sunoco": 1.1e-07, - "sunroom": 1.1e-07, - "supe": 1.1e-07, - "sutil": 1.1e-07, - "sutured": 1.1e-07, - "svein": 1.1e-07, - "swanage": 1.1e-07, - "swellings": 1.1e-07, - "swiftest": 1.1e-07, - "switchs": 1.1e-07, - "swtor": 1.1e-07, - "syphon": 1.1e-07, - "syro": 1.1e-07, - "sysco": 1.1e-07, - "taal": 1.1e-07, - "tabulating": 1.1e-07, - "tainan": 1.1e-07, - "takuya": 1.1e-07, - "tamina": 1.1e-07, - "tamping": 1.1e-07, - "tawhid": 1.1e-07, - "tengah": 1.1e-07, - "thaad": 1.1e-07, - "thomaston": 1.1e-07, - "throu": 1.1e-07, - "thyroxine": 1.1e-07, - "tinley": 1.1e-07, - "tisa": 1.1e-07, - "tlingit": 1.1e-07, - "tmb": 1.1e-07, - "tme": 1.1e-07, - "tolerably": 1.1e-07, - "torta": 1.1e-07, - "townsite": 1.1e-07, - "toye": 1.1e-07, - "toymaker": 1.1e-07, - "tpl": 1.1e-07, - "traineeship": 1.1e-07, - "travaux": 1.1e-07, - "trestman": 1.1e-07, - "trilobite": 1.1e-07, - "trioxide": 1.1e-07, - "tripos": 1.1e-07, - "trong": 1.1e-07, - "tropico": 1.1e-07, - "tropospheric": 1.1e-07, - "tryed": 1.1e-07, - "tsavo": 1.1e-07, - "tsim": 1.1e-07, - "tumorigenesis": 1.1e-07, - "tuppence": 1.1e-07, - "twizzlers": 1.1e-07, - "uinta": 1.1e-07, - "ulaanbaatar": 1.1e-07, - "ulises": 1.1e-07, - "uly": 1.1e-07, - "umlaut": 1.1e-07, - "unappreciative": 1.1e-07, - "unconverted": 1.1e-07, - "uncorked": 1.1e-07, - "uncorrupted": 1.1e-07, - "undecideds": 1.1e-07, - "undergarment": 1.1e-07, - "unexposed": 1.1e-07, - "ungrounded": 1.1e-07, - "unicredit": 1.1e-07, - "unready": 1.1e-07, - "unsurprised": 1.1e-07, - "unweighted": 1.1e-07, - "upliftment": 1.1e-07, - "uveitis": 1.1e-07, - "valentinian": 1.1e-07, - "vanquishing": 1.1e-07, - "vasodilation": 1.1e-07, - "vaughns": 1.1e-07, - "vermiculite": 1.1e-07, - "vian": 1.1e-07, - "viburnum": 1.1e-07, - "vidalia": 1.1e-07, - "virg": 1.1e-07, - "viridian": 1.1e-07, - "vlans": 1.1e-07, - "vnc": 1.1e-07, - "voluble": 1.1e-07, - "vta": 1.1e-07, - "wallonia": 1.1e-07, - "walser": 1.1e-07, - "warby": 1.1e-07, - "watermarking": 1.1e-07, - "watership": 1.1e-07, - "waza": 1.1e-07, - "wcvb": 1.1e-07, - "weale": 1.1e-07, - "webseries": 1.1e-07, - "webstore": 1.1e-07, - "wees": 9.55e-08, - "westons": 1.1e-07, - "whir": 1.1e-07, - "wideout": 1.1e-07, - "wilbraham": 1.1e-07, - "windowpane": 1.1e-07, - "wisner": 1.1e-07, - "wodonga": 1.1e-07, - "workfare": 1.1e-07, - "workhouses": 1.1e-07, - "worldliness": 1.1e-07, - "wud": 1.1e-07, - "xenos": 1.1e-07, - "yakovlev": 1.1e-07, - "yammer": 1.1e-07, - "yashin": 1.1e-07, - "yawl": 1.1e-07, - "yekaterina": 1.1e-07, - "yelped": 1.1e-07, - "yis": 8.32e-08, - "yiff": 1.1e-07, - "yilmaz": 1.1e-07, - "ymir": 1.1e-07, - "yooo": 1.1e-07, - "zadar": 1.1e-07, - "zarina": 1.1e-07, - "zazzle": 1.1e-07, - "zemeckis": 1.1e-07, - "zfs": 1.1e-07, - "zhuhai": 1.1e-07, - "ziggurat": 1.1e-07, - "zombieland": 1.1e-07, - "zuck": 1.1e-07, - "zvezda": 1.1e-07, - "aand": 1.07e-07, - "abbr": 1.07e-07, - "abodes": 1.07e-07, - "abolitionism": 1.07e-07, - "abruzzi": 1.07e-07, - "acacias": 1.07e-07, - "ackman": 1.07e-07, - "acma": 1.07e-07, - "acto": 1.07e-07, - "acupressure": 1.07e-07, - "admixtures": 1.07e-07, - "afra": 1.07e-07, - "agreeableness": 1.07e-07, - "ahed": 1.07e-07, - "ahmar": 1.07e-07, - "aiaa": 1.07e-07, - "aiba": 1.07e-07, - "ajanta": 1.07e-07, - "alderweireld": 1.07e-07, - "allam": 1.07e-07, - "alloying": 1.07e-07, - "almora": 1.07e-07, - "alpa": 1.07e-07, - "alphabetized": 1.07e-07, - "alsina": 1.07e-07, - "altria": 1.07e-07, - "alvord": 1.07e-07, - "ambitiously": 1.07e-07, - "amendatory": 1.07e-07, - "amyl": 1.07e-07, - "anant": 1.07e-07, - "anca": 1.07e-07, - "andujar": 1.07e-07, - "anelka": 1.07e-07, - "anglaise": 1.07e-07, - "angra": 1.07e-07, - "ankeny": 1.07e-07, - "anthropometric": 1.07e-07, - "anthropomorphism": 1.07e-07, - "antisemite": 1.07e-07, - "anto": 1.07e-07, - "antonyms": 1.07e-07, - "appetising": 1.07e-07, - "applets": 1.07e-07, - "apx": 1.07e-07, - "araby": 1.07e-07, - "aragonite": 1.07e-07, - "armbruster": 1.07e-07, - "armen": 1.07e-07, - "armisen": 1.07e-07, - "arredondo": 1.07e-07, - "artbook": 1.07e-07, - "atlantics": 1.07e-07, - "atthe": 1.07e-07, - "aucoin": 1.07e-07, - "audiologist": 1.07e-07, - "aun": 1.07e-07, - "auteurs": 1.07e-07, - "avesta": 1.07e-07, - "awaking": 1.07e-07, - "ayana": 1.07e-07, - "ayumi": 1.07e-07, - "azithromycin": 1.07e-07, - "backstab": 1.07e-07, - "badgley": 1.07e-07, - "bagnall": 1.07e-07, - "balaban": 1.07e-07, - "bancshares": 1.07e-07, - "barcroft": 1.07e-07, - "barings": 1.07e-07, - "barthel": 1.07e-07, - "basa": 1.07e-07, - "basketry": 1.07e-07, - "bassi": 1.07e-07, - "batesville": 1.07e-07, - "bathymetric": 1.07e-07, - "battens": 1.07e-07, - "battersby": 1.07e-07, - "baumgarten": 1.07e-07, - "bdg": 1.07e-07, - "bdi": 1.07e-07, - "beaman": 1.07e-07, - "beaus": 5.37e-08, - "beheads": 1.07e-07, - "belin": 1.07e-07, - "belisarius": 1.07e-07, - "bellerive": 1.07e-07, - "bencher": 1.07e-07, - "benoni": 1.07e-07, - "berms": 1.07e-07, - "beslan": 1.07e-07, - "bgr": 1.07e-07, - "bhabha": 1.07e-07, - "biggin": 1.07e-07, - "bilious": 1.07e-07, - "blackguard": 1.07e-07, - "blazin": 1.07e-07, - "bleek": 1.07e-07, - "bleeps": 1.07e-07, - "bloodier": 1.07e-07, - "blunting": 1.07e-07, - "blusher": 1.07e-07, - "boatloads": 1.07e-07, - "boies": 1.07e-07, - "boileau": 1.07e-07, - "bondo": 1.07e-07, - "bonhams": 1.07e-07, - "bonheur": 1.07e-07, - "bookbinder": 1.07e-07, - "bosse": 1.07e-07, - "bov": 1.07e-07, - "bove": 1.07e-07, - "bowmen": 1.07e-07, - "braddon": 1.07e-07, - "brillant": 1.07e-07, - "brogdon": 1.07e-07, - "buber": 1.07e-07, - "buccleuch": 1.07e-07, - "buchanans": 1.07e-07, - "buka": 1.07e-07, - "bunter": 1.07e-07, - "burkas": 1.07e-07, - "busboy": 1.07e-07, - "bushcraft": 1.07e-07, - "byfuglien": 1.07e-07, - "cadena": 1.07e-07, - "caduceus": 1.07e-07, - "caenorhabditis": 1.07e-07, - "calatrava": 1.07e-07, - "calles": 1.07e-07, - "campagna": 1.07e-07, - "camperdown": 1.07e-07, - "capstan": 1.07e-07, - "caras": 8.71e-08, - "carboxy": 1.07e-07, - "caretaking": 1.07e-07, - "carousels": 1.07e-07, - "casemiro": 1.07e-07, - "casse": 1.07e-07, - "cathodes": 1.07e-07, - "censer": 1.07e-07, - "cesspit": 1.07e-07, - "chachi": 1.07e-07, - "charpentier": 1.07e-07, - "chartwell": 1.07e-07, - "cheapened": 1.07e-07, - "cheetham": 1.07e-07, - "chers": 1.07e-07, - "chessington": 1.07e-07, - "chiro": 1.07e-07, - "chisora": 1.07e-07, - "chos": 6.61e-08, - "christin": 1.07e-07, - "chulalongkorn": 1.07e-07, - "cichlids": 1.07e-07, - "cinemark": 1.07e-07, - "ciphertext": 1.07e-07, - "classing": 1.07e-07, - "clevedon": 1.07e-07, - "clotilde": 1.07e-07, - "clubbers": 1.07e-07, - "clutterbuck": 1.07e-07, - "coagulant": 1.07e-07, - "cobblepot": 1.07e-07, - "coliform": 1.07e-07, - "collinss": 1.07e-07, - "comitatus": 1.07e-07, - "commodified": 1.07e-07, - "communitarian": 1.07e-07, - "conker": 1.07e-07, - "conolly": 1.07e-07, - "consumptive": 1.07e-07, - "contort": 1.07e-07, - "conveyer": 1.07e-07, - "cooed": 1.07e-07, - "copps": 1.07e-07, - "coquettish": 1.07e-07, - "corder": 1.07e-07, - "cordite": 1.07e-07, - "countdowns": 1.07e-07, - "cpn": 1.07e-07, - "cpv": 1.07e-07, - "crackerjack": 1.07e-07, - "crawfordsville": 1.07e-07, - "cremations": 1.07e-07, - "crewmates": 1.07e-07, - "criminalisation": 1.07e-07, - "crookston": 1.07e-07, - "crts": 1.07e-07, - "csun": 1.07e-07, - "cun": 1.07e-07, - "cyphers": 1.07e-07, - "cytogenetic": 1.07e-07, - "cytoskeletal": 1.07e-07, - "dabbles": 1.07e-07, - "darkling": 1.07e-07, - "dassey": 1.07e-07, - "dbh": 1.07e-07, - "deafened": 1.07e-07, - "decile": 1.07e-07, - "deeney": 1.07e-07, - "deforested": 1.07e-07, - "delgada": 1.07e-07, - "delmarva": 1.07e-07, - "demis": 5.01e-08, - "demogorgon": 1.07e-07, - "denaturation": 1.07e-07, - "deputys": 1.07e-07, - "derpy": 1.07e-07, - "detoured": 1.07e-07, - "devourer": 1.07e-07, - "dgp": 1.07e-07, - "dharamsala": 1.07e-07, - "dialogic": 1.07e-07, - "diarmuid": 1.07e-07, - "diese": 1.07e-07, - "disconcerted": 1.07e-07, - "diskette": 1.07e-07, - "dismounting": 1.07e-07, - "ditties": 1.07e-07, - "dncs": 1.07e-07, - "dobbie": 1.07e-07, - "doce": 1.07e-07, - "doctorow": 1.07e-07, - "dollywood": 1.07e-07, - "domhnall": 1.07e-07, - "donnies": 1.07e-07, - "doorframe": 1.07e-07, - "dotes": 1.07e-07, - "doubler": 1.07e-07, - "doujinshi": 1.07e-07, - "dowries": 1.07e-07, - "dpg": 1.07e-07, - "draupadi": 1.07e-07, - "dredger": 1.07e-07, - "drennan": 1.07e-07, - "droitwich": 1.07e-07, - "dropoff": 1.07e-07, - "drp": 1.07e-07, - "druggies": 1.07e-07, - "dse": 1.07e-07, - "dubose": 1.07e-07, - "dunkeld": 1.07e-07, - "dunkley": 1.07e-07, - "dursley": 1.07e-07, - "earthing": 1.07e-07, - "ecstatically": 1.07e-07, - "ecto": 1.07e-07, - "edgecombe": 1.07e-07, - "edgefield": 1.07e-07, - "egor": 1.07e-07, - "egyptologist": 1.07e-07, - "ehrenreich": 1.07e-07, - "elapse": 1.07e-07, - "eliade": 1.07e-07, - "elizas": 1.07e-07, - "ellipsoidal": 1.07e-07, - "emelia": 1.07e-07, - "endive": 1.07e-07, - "englishness": 1.07e-07, - "enna": 1.07e-07, - "entranceway": 1.07e-07, - "erf": 1.07e-07, - "escalations": 1.07e-07, - "espnu": 1.07e-07, - "essentialist": 1.07e-07, - "evisceration": 1.07e-07, - "extention": 1.07e-07, - "extinguishment": 1.07e-07, - "eyeless": 1.07e-07, - "eyelets": 1.07e-07, - "faery": 1.07e-07, - "faired": 1.07e-07, - "faller": 1.07e-07, - "familie": 1.07e-07, - "farro": 1.07e-07, - "feh": 1.07e-07, - "feminisms": 5.13e-08, - "fennec": 1.07e-07, - "ferrys": 1.07e-07, - "ffmpeg": 1.07e-07, - "fgo": 1.07e-07, - "fibrotic": 1.07e-07, - "fiendishly": 1.07e-07, - "filson": 1.07e-07, - "finessed": 1.07e-07, - "finials": 1.07e-07, - "fishies": 1.07e-07, - "fixations": 1.07e-07, - "flamin": 1.07e-07, - "flatlined": 1.07e-07, - "flaying": 1.07e-07, - "fleek": 1.07e-07, - "flocka": 1.07e-07, - "floorplan": 1.07e-07, - "fluence": 1.07e-07, - "fluorescein": 1.07e-07, - "flywheels": 1.07e-07, - "foer": 1.07e-07, - "fogerty": 1.07e-07, - "foltz": 1.07e-07, - "fome": 1.07e-07, - "foretelling": 1.07e-07, - "forewarning": 1.07e-07, - "fortnum": 1.07e-07, - "forwarders": 1.07e-07, - "foxwoods": 1.07e-07, - "frae": 1.07e-07, - "franchitti": 1.07e-07, - "frater": 1.07e-07, - "friedberg": 1.07e-07, - "friended": 1.07e-07, - "fring": 1.07e-07, - "frisbees": 1.07e-07, - "frisby": 1.07e-07, - "friuli": 1.07e-07, - "fruitfulness": 1.07e-07, - "fui": 1.07e-07, - "fulness": 1.07e-07, - "furukawa": 1.07e-07, - "galante": 1.07e-07, - "galba": 1.07e-07, - "galea": 1.07e-07, - "gali": 1.07e-07, - "gallas": 1.07e-07, - "gamechanger": 1.07e-07, - "gamefaqs": 1.07e-07, - "gamelan": 1.07e-07, - "gandolfini": 1.07e-07, - "gaped": 1.07e-07, - "garand": 1.07e-07, - "gargantua": 1.07e-07, - "garn": 1.07e-07, - "gars": 1.07e-07, - "garton": 1.07e-07, - "gayporn": 1.07e-07, - "gazan": 1.07e-07, - "gcf": 1.07e-07, - "gein": 1.07e-07, - "gentamicin": 1.07e-07, - "gerund": 1.07e-07, - "gest": 1.07e-07, - "gesta": 1.07e-07, - "gestion": 1.07e-07, - "ghrelin": 1.07e-07, - "gibbering": 1.07e-07, - "gillam": 1.07e-07, - "glamourous": 1.07e-07, - "glan": 1.07e-07, - "globalizing": 1.07e-07, - "gme": 1.07e-07, - "gnash": 1.07e-07, - "goauld": 1.07e-07, - "golub": 1.07e-07, - "grasmere": 1.07e-07, - "grottoes": 1.07e-07, - "guillotined": 1.07e-07, - "guinan": 1.07e-07, - "guthries": 1.07e-07, - "gwang": 1.07e-07, - "gwu": 1.07e-07, - "gyp": 1.07e-07, - "habakkuk": 1.07e-07, - "habla": 1.07e-07, - "habra": 1.07e-07, - "hajar": 1.07e-07, - "halligan": 1.07e-07, - "hallock": 1.07e-07, - "handhelds": 1.07e-07, - "hansom": 1.07e-07, - "hardscrabble": 1.07e-07, - "harter": 1.07e-07, - "haveing": 1.07e-07, - "headbutted": 1.07e-07, - "heartbreakingly": 1.07e-07, - "heigh": 1.07e-07, - "heiner": 1.07e-07, - "herstory": 1.07e-07, - "hib": 1.07e-07, - "hihi": 1.07e-07, - "hinging": 1.07e-07, - "histopathological": 1.07e-07, - "hoekstra": 1.07e-07, - "hokum": 1.07e-07, - "homomorphism": 1.07e-07, - "hooo": 1.07e-07, - "horticulturists": 1.07e-07, - "hott": 1.07e-07, - "huckster": 1.07e-07, - "hugues": 1.07e-07, - "humourous": 1.07e-07, - "hungers": 1.07e-07, - "hurleys": 1.07e-07, - "husseini": 1.07e-07, - "hyperbola": 1.07e-07, - "hypermarkets": 1.07e-07, - "icar": 1.07e-07, - "icmp": 1.07e-07, - "icw": 1.07e-07, - "ien": 1.07e-07, - "ignatieff": 1.07e-07, - "iif": 1.07e-07, - "immunologic": 1.07e-07, - "imola": 1.07e-07, - "incinerating": 1.07e-07, - "incomprehension": 1.07e-07, - "inebriation": 1.07e-07, - "inflatables": 1.07e-07, - "ingelheim": 1.07e-07, - "interferometric": 1.07e-07, - "interneurons": 1.07e-07, - "interweb": 1.07e-07, - "intimations": 1.07e-07, - "intrested": 1.07e-07, - "invision": 1.07e-07, - "iowan": 1.07e-07, - "ismay": 1.07e-07, - "itami": 1.07e-07, - "jacobo": 1.07e-07, - "jacq": 1.07e-07, - "jadeite": 1.07e-07, - "jaffray": 1.07e-07, - "janae": 1.07e-07, - "jaramillo": 1.07e-07, - "jarretts": 1.07e-07, - "jazmine": 1.07e-07, - "jel": 1.07e-07, - "jeppe": 1.07e-07, - "jmc": 1.07e-07, - "jmu": 1.07e-07, - "jollies": 1.07e-07, - "jolyon": 1.07e-07, - "jrc": 1.07e-07, - "jrpg": 1.07e-07, - "juhu": 1.07e-07, - "juliens": 1.07e-07, - "junked": 1.07e-07, - "justgiving": 1.07e-07, - "kaan": 1.07e-07, - "kadi": 1.07e-07, - "kahane": 1.07e-07, - "kaja": 1.07e-07, - "kameron": 1.07e-07, - "kamina": 1.07e-07, - "kanon": 1.07e-07, - "kanyakumari": 1.07e-07, - "kapa": 1.07e-07, - "karlin": 1.07e-07, - "kaskade": 1.07e-07, - "kathrin": 1.07e-07, - "kaycee": 1.07e-07, - "keeble": 1.07e-07, - "keemstar": 1.07e-07, - "keiichi": 1.07e-07, - "keillor": 1.07e-07, - "kempinski": 1.07e-07, - "kenedy": 1.07e-07, - "kenrick": 1.07e-07, - "kenworth": 1.07e-07, - "kepa": 1.07e-07, - "keqiang": 1.07e-07, - "khwaja": 1.07e-07, - "kic": 1.07e-07, - "kidds": 1.07e-07, - "kie": 1.07e-07, - "klansman": 1.07e-07, - "klas": 1.07e-07, - "kobi": 1.07e-07, - "koivu": 1.07e-07, - "konoha": 1.07e-07, - "koresh": 1.07e-07, - "korman": 1.07e-07, - "krane": 1.07e-07, - "kristopher": 1.07e-07, - "kudrow": 1.07e-07, - "kuroko": 1.07e-07, - "kuyt": 1.07e-07, - "kys": 1.07e-07, - "labradoodle": 1.07e-07, - "lacunae": 1.07e-07, - "laga": 1.07e-07, - "lakas": 1.07e-07, - "lambe": 1.07e-07, - "lambskin": 1.07e-07, - "lampposts": 1.07e-07, - "lancel": 1.07e-07, - "landform": 1.07e-07, - "lanna": 1.07e-07, - "lapa": 1.07e-07, - "laserjet": 1.07e-07, - "lasing": 1.07e-07, - "lavon": 1.07e-07, - "lbm": 1.07e-07, - "lbr": 1.07e-07, - "lci": 1.07e-07, - "leeroy": 1.07e-07, - "leeza": 1.07e-07, - "legates": 1.07e-07, - "lely": 1.07e-07, - "lenght": 1.07e-07, - "lethe": 1.07e-07, - "lettermans": 1.07e-07, - "levittown": 1.07e-07, - "lickers": 1.07e-07, - "ligurian": 1.07e-07, - "likert": 1.07e-07, - "limericks": 1.07e-07, - "linnea": 1.07e-07, - "linney": 1.07e-07, - "lintels": 1.07e-07, - "llyn": 1.07e-07, - "lobb": 1.07e-07, - "lobbys": 1.07e-07, - "locksley": 1.07e-07, - "looter": 1.07e-07, - "lording": 1.07e-07, - "lory": 1.07e-07, - "lsland": 1.07e-07, - "ltg": 1.07e-07, - "lucasarts": 1.07e-07, - "lucida": 1.07e-07, - "lucullus": 1.07e-07, - "lukoil": 1.07e-07, - "lumberton": 1.07e-07, - "lyke": 1.07e-07, - "maciel": 1.07e-07, - "macri": 1.07e-07, - "maddeningly": 1.07e-07, - "madlib": 1.07e-07, - "madwoman": 1.07e-07, - "makeout": 1.07e-07, - "mallaig": 1.07e-07, - "manisha": 1.07e-07, - "marano": 1.07e-07, - "margrethe": 1.07e-07, - "marketeers": 1.07e-07, - "masaryk": 1.07e-07, - "masques": 1.07e-07, - "masry": 1.07e-07, - "massenet": 1.07e-07, - "masterton": 1.07e-07, - "materializing": 1.07e-07, - "mathematic": 1.07e-07, - "mattering": 1.07e-07, - "maudsley": 1.07e-07, - "mauls": 1.07e-07, - "mayfly": 1.07e-07, - "meaux": 1.07e-07, - "meilleur": 1.07e-07, - "menton": 1.07e-07, - "mercurio": 1.07e-07, - "meriam": 1.07e-07, - "merovingian": 1.07e-07, - "mesons": 1.07e-07, - "messiahs": 1.07e-07, - "mestizos": 1.07e-07, - "metaphysically": 1.07e-07, - "methodologically": 1.07e-07, - "mexicanos": 1.07e-07, - "middleclass": 1.07e-07, - "mikeys": 1.07e-07, - "mindfully": 1.07e-07, - "mindoro": 1.07e-07, - "ministerio": 1.07e-07, - "minka": 1.07e-07, - "minutos": 1.07e-07, - "misidentification": 1.07e-07, - "misplacing": 1.07e-07, - "mithridates": 1.07e-07, - "mmorpgs": 1.07e-07, - "mng": 1.07e-07, - "modeller": 1.07e-07, - "molehill": 1.07e-07, - "moleskine": 1.07e-07, - "monads": 1.07e-07, - "mongolias": 1.07e-07, - "monikers": 1.07e-07, - "moodiness": 1.07e-07, - "moorehead": 1.07e-07, - "mortenson": 1.07e-07, - "motorboats": 1.07e-07, - "motorcars": 1.07e-07, - "mrm": 1.07e-07, - "mrr": 1.07e-07, - "mscs": 1.07e-07, - "mucin": 1.07e-07, - "mulhouse": 1.07e-07, - "mullaney": 1.07e-07, - "multiscale": 1.07e-07, - "multithreading": 1.07e-07, - "nabors": 1.07e-07, - "nage": 1.07e-07, - "nakedly": 1.07e-07, - "nakhon": 1.07e-07, - "naku": 1.07e-07, - "naser": 1.07e-07, - "nason": 1.07e-07, - "natu": 1.07e-07, - "naturalize": 1.07e-07, - "nbt": 1.07e-07, - "necklines": 1.07e-07, - "necropsy": 1.07e-07, - "neelam": 1.07e-07, - "neisseria": 1.07e-07, - "neophytes": 1.07e-07, - "nester": 1.07e-07, - "newlyn": 1.07e-07, - "newmont": 1.07e-07, - "nial": 1.07e-07, - "nicotinamide": 1.07e-07, - "nill": 1.07e-07, - "nito": 1.07e-07, - "nizar": 1.07e-07, - "nns": 1.07e-07, - "noiseless": 1.07e-07, - "noite": 1.07e-07, - "noize": 1.07e-07, - "nookie": 1.07e-07, - "noreaster": 1.07e-07, - "norvell": 1.07e-07, - "noughties": 1.07e-07, - "novae": 1.07e-07, - "nre": 1.07e-07, - "nudism": 1.07e-07, - "nullity": 1.07e-07, - "nursemaid": 1.07e-07, - "nyet": 1.07e-07, - "objet": 1.07e-07, - "obl": 1.07e-07, - "octopussy": 1.07e-07, - "officiel": 1.07e-07, - "ofr": 1.07e-07, - "omnes": 1.07e-07, - "onegin": 1.07e-07, - "onofre": 1.07e-07, - "ooi": 1.07e-07, - "orogenic": 1.07e-07, - "osment": 1.07e-07, - "ossining": 1.07e-07, - "osweiler": 1.07e-07, - "otoh": 1.07e-07, - "ousmane": 1.07e-07, - "outstripping": 1.07e-07, - "ovaltine": 1.07e-07, - "overclocked": 1.07e-07, - "overlies": 1.07e-07, - "overplaying": 1.07e-07, - "overpressure": 1.07e-07, - "overtired": 1.07e-07, - "ozaki": 1.07e-07, - "paedo": 1.07e-07, - "pangu": 1.07e-07, - "parbat": 1.07e-07, - "parcs": 1.07e-07, - "parikh": 1.07e-07, - "parklife": 1.07e-07, - "paroxysmal": 1.07e-07, - "partons": 1.07e-07, - "parvez": 1.07e-07, - "paulista": 1.07e-07, - "paya": 1.07e-07, - "pboc": 1.07e-07, - "pcgs": 1.07e-07, - "pearces": 1.07e-07, - "peerages": 1.07e-07, - "perdu": 1.07e-07, - "peripheries": 1.07e-07, - "perna": 1.07e-07, - "phonons": 1.07e-07, - "phrasal": 1.07e-07, - "pichai": 1.07e-07, - "pictographs": 1.07e-07, - "pidge": 1.07e-07, - "pku": 1.07e-07, - "plainville": 1.07e-07, - "plastique": 1.07e-07, - "pleasants": 1.07e-07, - "plotinus": 1.07e-07, - "plumas": 1.07e-07, - "podunk": 1.07e-07, - "potentiation": 1.07e-07, - "powerbook": 1.07e-07, - "prayin": 1.07e-07, - "preforming": 1.07e-07, - "premolars": 1.07e-07, - "preowned": 1.07e-07, - "pressers": 1.07e-07, - "preventer": 1.07e-07, - "primula": 1.07e-07, - "prinsloo": 1.07e-07, - "prio": 1.07e-07, - "procurements": 1.07e-07, - "profaned": 1.07e-07, - "professionalization": 1.07e-07, - "programed": 1.07e-07, - "proletarians": 1.07e-07, - "prolifically": 1.07e-07, - "promulgating": 1.07e-07, - "proposer": 1.07e-07, - "proselytize": 1.07e-07, - "proteinuria": 1.07e-07, - "proulx": 1.07e-07, - "pseudoscientific": 1.07e-07, - "pstn": 1.07e-07, - "psychotics": 1.07e-07, - "publicising": 1.07e-07, - "pulverizing": 1.07e-07, - "punctuating": 1.07e-07, - "quade": 1.07e-07, - "quadruplets": 1.07e-07, - "quatrain": 1.07e-07, - "queda": 1.07e-07, - "questionably": 1.07e-07, - "questlove": 1.07e-07, - "racemic": 1.07e-07, - "radiotelephone": 1.07e-07, - "raes": 1.07e-07, - "rafik": 1.07e-07, - "ragsdale": 1.07e-07, - "rajavi": 1.07e-07, - "rallys": 1.07e-07, - "rangi": 1.07e-07, - "rannoch": 1.07e-07, - "ranunculus": 1.07e-07, - "rapha": 1.07e-07, - "ravenscroft": 1.07e-07, - "rbcs": 1.07e-07, - "rdna": 1.07e-07, - "recueil": 1.07e-07, - "redbubble": 1.07e-07, - "redfin": 1.07e-07, - "reexamination": 1.07e-07, - "reexamined": 1.07e-07, - "refinished": 1.07e-07, - "rehm": 1.07e-07, - "reinaldo": 1.07e-07, - "removers": 1.07e-07, - "repens": 1.07e-07, - "rerelease": 1.07e-07, - "retitled": 1.07e-07, - "retractions": 1.07e-07, - "retrofits": 1.07e-07, - "rewinds": 1.07e-07, - "reworks": 1.07e-07, - "rfl": 1.07e-07, - "rhaegar": 1.07e-07, - "rhinebeck": 1.07e-07, - "rhodey": 1.07e-07, - "ribavirin": 1.07e-07, - "riccio": 1.07e-07, - "rickert": 1.07e-07, - "ringos": 1.07e-07, - "ritch": 1.07e-07, - "rmg": 1.07e-07, - "rola": 1.07e-07, - "roldan": 1.07e-07, - "romos": 1.07e-07, - "rootkit": 1.07e-07, - "rooty": 1.07e-07, - "rowen": 1.07e-07, - "rsf": 1.07e-07, - "ruleset": 1.07e-07, - "rummel": 1.07e-07, - "rustler": 1.07e-07, - "rylance": 1.07e-07, - "sabbat": 1.07e-07, - "sacramentos": 1.07e-07, - "safetys": 1.07e-07, - "sagacity": 1.07e-07, - "sagans": 1.07e-07, - "saidi": 1.07e-07, - "salcedo": 1.07e-07, - "salicylate": 1.07e-07, - "salida": 1.07e-07, - "salmo": 1.07e-07, - "salmons": 5.5e-08, - "salto": 1.07e-07, - "samphire": 1.07e-07, - "sanches": 1.07e-07, - "sandlers": 1.07e-07, - "sandpit": 1.07e-07, - "sangeet": 1.07e-07, - "sapphic": 1.07e-07, - "sare": 1.07e-07, - "sasol": 1.07e-07, - "satb": 1.07e-07, - "sauced": 1.07e-07, - "schalk": 1.07e-07, - "schoolbooks": 1.07e-07, - "schultzs": 1.07e-07, - "sconce": 1.07e-07, - "sculls": 1.07e-07, - "sderot": 1.07e-07, - "sedating": 1.07e-07, - "sedna": 1.07e-07, - "selamat": 1.07e-07, - "senseis": 1.07e-07, - "sero": 1.07e-07, - "serological": 1.07e-07, - "sese": 1.07e-07, - "severa": 1.07e-07, - "sgx": 1.07e-07, - "shaukat": 1.07e-07, - "shearwater": 1.07e-07, - "sheetrock": 1.07e-07, - "shema": 1.07e-07, - "shiksha": 1.07e-07, - "shindo": 1.07e-07, - "shoeshine": 1.07e-07, - "shooed": 1.07e-07, - "shotwell": 1.07e-07, - "showerhead": 1.07e-07, - "shtf": 1.07e-07, - "shucking": 1.07e-07, - "shug": 1.07e-07, - "shweta": 1.07e-07, - "sickeningly": 1.07e-07, - "sidemen": 1.07e-07, - "sido": 1.07e-07, - "siebel": 1.07e-07, - "signalman": 1.07e-07, - "silico": 1.07e-07, - "silting": 1.07e-07, - "silvan": 1.07e-07, - "singlets": 1.07e-07, - "sirisena": 1.07e-07, - "sixx": 1.07e-07, - "skitter": 1.07e-07, - "snb": 1.07e-07, - "snored": 1.07e-07, - "snowbound": 1.07e-07, - "snuffing": 1.07e-07, - "softeners": 1.07e-07, - "solheim": 1.07e-07, - "someting": 1.07e-07, - "somo": 1.07e-07, - "soult": 1.07e-07, - "southlake": 1.07e-07, - "spaceballs": 1.07e-07, - "spb": 1.07e-07, - "spellcheck": 1.07e-07, - "spetsnaz": 1.07e-07, - "spinosaurus": 1.07e-07, - "sprit": 1.07e-07, - "ssx": 1.07e-07, - "stamm": 1.07e-07, - "stammers": 1.07e-07, - "steinbecks": 1.07e-07, - "stevo": 1.07e-07, - "steyr": 1.07e-07, - "stinkers": 1.07e-07, - "storerooms": 1.07e-07, - "storie": 1.07e-07, - "stovepipe": 1.07e-07, - "straitened": 1.07e-07, - "stridently": 1.07e-07, - "stunners": 1.07e-07, - "submariners": 1.07e-07, - "subsidiarity": 1.07e-07, - "subsisted": 1.07e-07, - "suchlike": 1.07e-07, - "sugimoto": 1.07e-07, - "sunbeds": 1.07e-07, - "supertramp": 1.07e-07, - "surfside": 1.07e-07, - "suru": 1.07e-07, - "sushant": 1.07e-07, - "sutherlands": 1.07e-07, - "svensk": 1.07e-07, - "swallowtail": 1.07e-07, - "tache": 1.07e-07, - "taguig": 1.07e-07, - "tajiks": 1.07e-07, - "tanabe": 1.07e-07, - "tangibly": 1.07e-07, - "tcd": 1.07e-07, - "telegraphing": 1.07e-07, - "tendril": 1.07e-07, - "tepee": 1.07e-07, - "territorially": 1.07e-07, - "tessier": 1.07e-07, - "testamentary": 1.07e-07, - "tezuka": 1.07e-07, - "tfm": 1.07e-07, - "thapa": 1.07e-07, - "theodicy": 1.07e-07, - "theoretician": 1.07e-07, - "theyr": 1.07e-07, - "thinkprogress": 1.07e-07, - "thorney": 1.07e-07, - "thornley": 1.07e-07, - "thorstein": 1.07e-07, - "threepenny": 1.07e-07, - "tiaa": 1.07e-07, - "tigres": 1.07e-07, - "tilman": 1.07e-07, - "timothys": 1.07e-07, - "tinderbox": 1.07e-07, - "tippin": 1.07e-07, - "tiptoed": 1.07e-07, - "tnk": 1.07e-07, - "tobacconist": 1.07e-07, - "toblerone": 1.07e-07, - "tomislav": 1.07e-07, - "topologically": 1.07e-07, - "torben": 1.07e-07, - "tork": 1.07e-07, - "touchstones": 1.07e-07, - "townhomes": 1.07e-07, - "toxicologist": 1.07e-07, - "trainable": 1.07e-07, - "transmedia": 1.07e-07, - "traum": 1.07e-07, - "trendsetters": 1.07e-07, - "tric": 1.07e-07, - "trist": 1.07e-07, - "trunking": 1.07e-07, - "tth": 1.07e-07, - "tufnell": 1.07e-07, - "tussock": 1.07e-07, - "tweetdeck": 1.07e-07, - "uiuc": 1.07e-07, - "ultraviolence": 1.07e-07, - "umps": 1.07e-07, - "unalloyed": 1.07e-07, - "unctuous": 1.07e-07, - "undine": 1.07e-07, - "unformed": 1.07e-07, - "unicameral": 1.07e-07, - "unicom": 1.07e-07, - "universiteit": 1.07e-07, - "unmistakeable": 1.07e-07, - "unseal": 1.07e-07, - "unseasoned": 1.07e-07, - "untangled": 1.07e-07, - "uol": 1.07e-07, - "uran": 1.07e-07, - "urologic": 1.07e-07, - "uygur": 1.07e-07, - "vaginally": 1.07e-07, - "valbuena": 1.07e-07, - "valencian": 1.07e-07, - "valvular": 1.07e-07, - "varick": 1.07e-07, - "varietals": 1.07e-07, - "varroa": 1.07e-07, - "vendome": 1.07e-07, - "victimizing": 1.07e-07, - "victorinox": 1.07e-07, - "victoriously": 1.07e-07, - "vigna": 1.07e-07, - "villi": 1.07e-07, - "vintner": 1.07e-07, - "viridis": 1.07e-07, - "viterbo": 1.07e-07, - "viviana": 1.07e-07, - "volo": 1.07e-07, - "volvos": 8.71e-08, - "vq": 1.07e-07, - "vram": 1.07e-07, - "vse": 1.07e-07, - "wais": 1.07e-07, - "wakeboarding": 1.07e-07, - "walkthroughs": 1.07e-07, - "wallers": 1.07e-07, - "wallflowers": 1.07e-07, - "wallops": 1.07e-07, - "wantage": 1.07e-07, - "waqf": 1.07e-07, - "waterboarded": 1.07e-07, - "waterston": 1.07e-07, - "wayman": 1.07e-07, - "weehawken": 1.07e-07, - "wetherell": 1.07e-07, - "whirls": 1.07e-07, - "whodunnit": 1.07e-07, - "widmer": 1.07e-07, - "willetts": 1.07e-07, - "willin": 1.07e-07, - "winces": 1.07e-07, - "wingtips": 1.07e-07, - "wisecracking": 1.07e-07, - "withing": 1.07e-07, - "withthe": 1.07e-07, - "wme": 1.07e-07, - "woolfs": 1.07e-07, - "wordlessly": 1.07e-07, - "workaday": 1.07e-07, - "wormy": 1.07e-07, - "wtp": 1.07e-07, - "wurlitzer": 1.07e-07, - "wynnum": 1.07e-07, - "wyong": 1.07e-07, - "wythenshawe": 1.07e-07, - "xilinx": 1.07e-07, - "xkcd": 1.07e-07, - "xss": 1.07e-07, - "xtc": 1.07e-07, - "yasukuni": 1.07e-07, - "yazid": 1.07e-07, - "yok": 1.07e-07, - "yokosuka": 1.07e-07, - "yueh": 1.07e-07, - "yvan": 1.07e-07, - "yyyy": 1.07e-07, - "zanotti": 1.07e-07, - "zarate": 1.07e-07, - "zari": 1.07e-07, - "zatanna": 1.07e-07, - "zein": 1.07e-07, - "ablutions": 1.05e-07, - "accs": 8.51e-08, - "accreditations": 1.05e-07, - "accuseds": 1.05e-07, - "acing": 1.05e-07, - "addenda": 1.05e-07, - "adduct": 1.05e-07, - "ades": 1.05e-07, - "adlington": 1.05e-07, - "afterbirth": 1.05e-07, - "agf": 1.05e-07, - "agoraphobic": 1.05e-07, - "ahahahaha": 1.05e-07, - "ahriman": 1.05e-07, - "airedale": 1.05e-07, - "ajaccio": 1.05e-07, - "akg": 1.05e-07, - "aland": 1.05e-07, - "alarcon": 1.05e-07, - "albatrosses": 1.05e-07, - "albertus": 1.05e-07, - "albions": 1.05e-07, - "aliso": 1.05e-07, - "alita": 1.05e-07, - "alleghany": 1.05e-07, - "allelic": 1.05e-07, - "allll": 1.05e-07, - "allosteric": 1.05e-07, - "alloway": 1.05e-07, - "allusive": 1.05e-07, - "alternations": 1.05e-07, - "alvey": 1.05e-07, - "ambassadorship": 1.05e-07, - "amiably": 1.05e-07, - "amidala": 1.05e-07, - "amiodarone": 1.05e-07, - "amoco": 1.05e-07, - "anarchistic": 1.05e-07, - "angleterre": 1.05e-07, - "ansonia": 1.05e-07, - "antiterrorism": 1.05e-07, - "antman": 1.05e-07, - "apel": 1.05e-07, - "apj": 1.05e-07, - "arbogast": 1.05e-07, - "arche": 1.05e-07, - "archean": 1.05e-07, - "arks": 7.59e-08, - "arpanet": 1.05e-07, - "artaxerxes": 1.05e-07, - "articled": 1.05e-07, - "artless": 1.05e-07, - "asaf": 1.05e-07, - "asakura": 1.05e-07, - "aspartic": 1.05e-07, - "aspx": 1.05e-07, - "atterbury": 1.05e-07, - "axios": 1.05e-07, - "axolotl": 1.05e-07, - "ayaz": 1.05e-07, - "azpilicueta": 1.05e-07, - "babied": 1.05e-07, - "backlogged": 1.05e-07, - "bacteriological": 1.05e-07, - "badakhshan": 1.05e-07, - "baggers": 1.05e-07, - "bahais": 1.05e-07, - "bajrangi": 1.05e-07, - "ballista": 1.05e-07, - "banns": 1.05e-07, - "baryon": 1.05e-07, - "bator": 1.05e-07, - "battelle": 1.05e-07, - "beccas": 1.05e-07, - "bednar": 1.05e-07, - "beesley": 1.05e-07, - "belge": 1.05e-07, - "belling": 1.05e-07, - "beneficence": 1.05e-07, - "benihana": 1.05e-07, - "berlusconis": 1.05e-07, - "berrios": 1.05e-07, - "bertin": 1.05e-07, - "biblia": 1.05e-07, - "biebs": 1.05e-07, - "bif": 1.05e-07, - "biffle": 1.05e-07, - "biggies": 1.05e-07, - "birkenstocks": 1.05e-07, - "biv": 1.05e-07, - "blackley": 1.05e-07, - "blackmagic": 1.05e-07, - "blandness": 1.05e-07, - "blf": 1.05e-07, - "boal": 1.05e-07, - "bobrovsky": 1.05e-07, - "bolzano": 1.05e-07, - "bonet": 1.05e-07, - "bookworms": 1.05e-07, - "boothby": 1.05e-07, - "borah": 1.05e-07, - "boulez": 1.05e-07, - "brackley": 1.05e-07, - "branham": 1.05e-07, - "breadbasket": 1.05e-07, - "brembo": 1.05e-07, - "bricking": 1.05e-07, - "brideshead": 1.05e-07, - "bridled": 1.05e-07, - "broch": 1.05e-07, - "brotherton": 1.05e-07, - "bruck": 1.05e-07, - "brutalism": 1.05e-07, - "brz": 1.05e-07, - "bugaboo": 1.05e-07, - "bulgakov": 1.05e-07, - "burdwan": 1.05e-07, - "burnss": 1.05e-07, - "burnsville": 1.05e-07, - "bussey": 1.05e-07, - "cabochon": 1.05e-07, - "caisse": 1.05e-07, - "caissons": 1.05e-07, - "calfskin": 1.05e-07, - "campa": 1.05e-07, - "canales": 1.05e-07, - "cannibalized": 1.05e-07, - "capernaum": 1.05e-07, - "carabao": 1.05e-07, - "carioca": 1.05e-07, - "caroling": 1.05e-07, - "carondelet": 1.05e-07, - "carpi": 1.05e-07, - "carping": 1.05e-07, - "castleman": 1.05e-07, - "catchall": 1.05e-07, - "cbsa": 1.05e-07, - "centeredness": 1.05e-07, - "ceyhan": 1.05e-07, - "channa": 1.05e-07, - "charleville": 1.05e-07, - "chastises": 1.05e-07, - "cheekily": 1.05e-07, - "chegg": 1.05e-07, - "chelsey": 1.05e-07, - "cherrys": 1.05e-07, - "chicos": 5.37e-08, - "chima": 1.05e-07, - "chintz": 1.05e-07, - "chiyoda": 1.05e-07, - "chloramphenicol": 1.05e-07, - "choosen": 1.05e-07, - "chungs": 1.05e-07, - "ciencias": 1.05e-07, - "ciera": 1.05e-07, - "cinematics": 1.05e-07, - "circlet": 1.05e-07, - "circuiting": 1.05e-07, - "citgo": 1.05e-07, - "clamored": 1.05e-07, - "clarinetist": 1.05e-07, - "claudel": 1.05e-07, - "clb": 1.05e-07, - "cld": 1.05e-07, - "clovelly": 1.05e-07, - "cloverleaf": 1.05e-07, - "clyro": 1.05e-07, - "cnp": 1.05e-07, - "cochrans": 1.05e-07, - "codependency": 1.05e-07, - "cofactors": 1.05e-07, - "cohost": 1.05e-07, - "collocation": 1.05e-07, - "colloquialism": 1.05e-07, - "colmar": 1.05e-07, - "commensal": 1.05e-07, - "commu": 1.05e-07, - "conagra": 1.05e-07, - "concatenated": 1.05e-07, - "conciliar": 1.05e-07, - "conformists": 1.05e-07, - "conjectural": 1.05e-07, - "contrivances": 1.05e-07, - "coosa": 1.05e-07, - "cout": 1.05e-07, - "covetousness": 1.05e-07, - "cozier": 1.05e-07, - "cradock": 1.05e-07, - "cribbing": 1.05e-07, - "croll": 1.05e-07, - "crossbreeding": 1.05e-07, - "crys": 1.05e-07, - "csw": 1.05e-07, - "cuboid": 1.05e-07, - "cuc": 1.05e-07, - "cultish": 1.05e-07, - "curdle": 1.05e-07, - "cybersex": 1.05e-07, - "cyberwarfare": 1.05e-07, - "cyclization": 1.05e-07, - "dagbladet": 1.05e-07, - "dahi": 1.05e-07, - "dansby": 1.05e-07, - "daphnia": 1.05e-07, - "darndest": 1.05e-07, - "darwen": 1.05e-07, - "daun": 1.05e-07, - "dcd": 1.05e-07, - "ddi": 1.05e-07, - "dearden": 1.05e-07, - "decalogue": 1.05e-07, - "deckhand": 1.05e-07, - "deepsea": 1.05e-07, - "deforms": 1.05e-07, - "delimit": 1.05e-07, - "democritus": 1.05e-07, - "demotic": 1.05e-07, - "dennard": 1.05e-07, - "desegregated": 1.05e-07, - "dices": 1.05e-07, - "dickon": 1.05e-07, - "diener": 1.05e-07, - "dirham": 1.05e-07, - "disclaimed": 1.05e-07, - "distin": 1.05e-07, - "distributable": 1.05e-07, - "divestitures": 1.05e-07, - "dmo": 1.05e-07, - "dobro": 1.05e-07, - "docudrama": 1.05e-07, - "doeth": 1.05e-07, - "dolezal": 1.05e-07, - "dolman": 1.05e-07, - "dormammu": 1.05e-07, - "dott": 1.05e-07, - "drachma": 1.05e-07, - "drachmas": 1.05e-07, - "dreamboat": 1.05e-07, - "dsn": 1.05e-07, - "dtg": 1.05e-07, - "dubya": 1.05e-07, - "dugald": 1.05e-07, - "dunoon": 1.05e-07, - "dwg": 1.05e-07, - "dyskinesia": 1.05e-07, - "dzogchen": 1.05e-07, - "earpieces": 1.05e-07, - "echinoderms": 1.05e-07, - "echocardiogram": 1.05e-07, - "edb": 1.05e-07, - "ediths": 1.05e-07, - "eer": 1.05e-07, - "eisa": 1.05e-07, - "eitan": 1.05e-07, - "eliana": 1.05e-07, - "elstree": 1.05e-07, - "emigre": 1.05e-07, - "enl": 1.05e-07, - "enslaves": 1.05e-07, - "entangling": 1.05e-07, - "enzymology": 1.05e-07, - "epe": 1.05e-07, - "epitaxial": 1.05e-07, - "epitomises": 1.05e-07, - "erat": 1.05e-07, - "eron": 1.05e-07, - "esca": 1.05e-07, - "ethnographer": 1.05e-07, - "etn": 1.05e-07, - "etowah": 1.05e-07, - "etr": 1.05e-07, - "etymologies": 1.05e-07, - "evapotranspiration": 1.05e-07, - "eventbrite": 1.05e-07, - "evidencing": 1.05e-07, - "excimer": 1.05e-07, - "extrusions": 1.05e-07, - "eyez": 1.05e-07, - "fabri": 1.05e-07, - "fadeaway": 1.05e-07, - "fairleigh": 1.05e-07, - "faldo": 1.05e-07, - "fallbrook": 1.05e-07, - "familiarization": 1.05e-07, - "fatimah": 1.05e-07, - "feisal": 1.05e-07, - "ferland": 1.05e-07, - "ferme": 1.05e-07, - "fermor": 1.05e-07, - "ferrie": 1.05e-07, - "ferrigno": 1.05e-07, - "ferryboat": 1.05e-07, - "ffb": 1.05e-07, - "fiers": 1.05e-07, - "finnerty": 1.05e-07, - "flambeau": 1.05e-07, - "flavonoid": 1.05e-07, - "fledglings": 1.05e-07, - "flinty": 1.05e-07, - "flippy": 1.05e-07, - "folklife": 1.05e-07, - "forensically": 1.05e-07, - "fovea": 1.05e-07, - "franson": 1.05e-07, - "freestyles": 1.05e-07, - "freyja": 1.05e-07, - "friable": 1.05e-07, - "frn": 1.05e-07, - "frommer": 1.05e-07, - "fundus": 1.05e-07, - "fursona": 1.05e-07, - "galpin": 1.05e-07, - "galvan": 1.05e-07, - "garak": 1.05e-07, - "garin": 1.05e-07, - "garnishes": 1.05e-07, - "geeking": 1.05e-07, - "generali": 1.05e-07, - "genisys": 1.05e-07, - "genitourinary": 1.05e-07, - "genotyping": 1.05e-07, - "germanwings": 1.05e-07, - "ghassan": 1.05e-07, - "giang": 1.05e-07, - "gils": 1.05e-07, - "ginzburg": 1.05e-07, - "gipson": 1.05e-07, - "giscard": 1.05e-07, - "gladwin": 1.05e-07, - "glaucus": 1.05e-07, - "glenbrook": 1.05e-07, - "gluons": 1.05e-07, - "goble": 1.05e-07, - "godrej": 1.05e-07, - "gof": 1.05e-07, - "goldring": 1.05e-07, - "goliaths": 1.05e-07, - "golightly": 1.05e-07, - "goood": 1.05e-07, - "gorg": 1.05e-07, - "goucher": 1.05e-07, - "goyer": 1.05e-07, - "graceless": 1.05e-07, - "greeny": 1.05e-07, - "gridlocked": 1.05e-07, - "grilli": 1.05e-07, - "grindhouse": 1.05e-07, - "grotius": 1.05e-07, - "gruner": 1.05e-07, - "gsn": 1.05e-07, - "guilder": 1.05e-07, - "guildies": 1.05e-07, - "gullit": 1.05e-07, - "gyo": 1.05e-07, - "hadad": 1.05e-07, - "haematoma": 1.05e-07, - "haganah": 1.05e-07, - "harbhajan": 1.05e-07, - "harmons": 1.05e-07, - "harri": 1.05e-07, - "heartbreaks": 1.05e-07, - "helder": 1.05e-07, - "hematological": 1.05e-07, - "hemostasis": 1.05e-07, - "herdman": 1.05e-07, - "hersch": 1.05e-07, - "herzberg": 1.05e-07, - "hesh": 1.05e-07, - "hessler": 1.05e-07, - "hickox": 1.05e-07, - "hillarious": 1.05e-07, - "historie": 1.05e-07, - "hmso": 1.05e-07, - "hodgsons": 1.05e-07, - "hollings": 1.05e-07, - "holloways": 1.05e-07, - "holmess": 1.05e-07, - "holstered": 1.05e-07, - "homologs": 1.05e-07, - "hoopers": 5.62e-08, - "horrifyingly": 1.05e-07, - "hospitalist": 1.05e-07, - "hotaru": 1.05e-07, - "hubbs": 1.05e-07, - "hublot": 1.05e-07, - "hunley": 1.05e-07, - "hybridisation": 1.05e-07, - "hypothesised": 1.05e-07, - "ihor": 1.05e-07, - "ijust": 1.05e-07, - "imhotep": 1.05e-07, - "immunologist": 1.05e-07, - "imrt": 1.05e-07, - "inara": 1.05e-07, - "includ": 1.05e-07, - "indeterminacy": 1.05e-07, - "indoctrinating": 1.05e-07, - "inexpressible": 1.05e-07, - "infuser": 1.05e-07, - "ingen": 1.05e-07, - "iniquitous": 1.05e-07, - "inklings": 1.05e-07, - "inmost": 1.05e-07, - "innervate": 1.05e-07, - "innisfail": 1.05e-07, - "inoculum": 1.05e-07, - "inquisitorial": 1.05e-07, - "insignias": 1.05e-07, - "insularity": 1.05e-07, - "insurable": 1.05e-07, - "interlibrary": 1.05e-07, - "interpolations": 1.05e-07, - "iove": 1.05e-07, - "ipsc": 1.05e-07, - "ipsilateral": 1.05e-07, - "irp": 1.05e-07, - "isotonic": 1.05e-07, - "itzhak": 1.05e-07, - "jadakiss": 1.05e-07, - "jael": 1.05e-07, - "jahre": 1.05e-07, - "jarrad": 1.05e-07, - "javy": 1.05e-07, - "jeffry": 1.05e-07, - "jeni": 1.05e-07, - "jip": 1.05e-07, - "jlo": 1.05e-07, - "jogi": 1.05e-07, - "jokester": 1.05e-07, - "jolley": 1.05e-07, - "jq": 1.05e-07, - "juco": 1.05e-07, - "kadar": 1.05e-07, - "kallen": 1.05e-07, - "kamm": 1.05e-07, - "kasha": 1.05e-07, - "kattegat": 1.05e-07, - "katyn": 1.05e-07, - "kcp": 1.05e-07, - "kedar": 1.05e-07, - "keds": 1.05e-07, - "kelce": 1.05e-07, - "kelleys": 1.05e-07, - "keplers": 1.05e-07, - "kesey": 1.05e-07, - "khalili": 1.05e-07, - "khuda": 1.05e-07, - "killy": 1.05e-07, - "kingslayer": 1.05e-07, - "kinski": 1.05e-07, - "kirilenko": 1.05e-07, - "knecht": 1.05e-07, - "kneejerk": 1.05e-07, - "knighthoods": 1.05e-07, - "koestler": 1.05e-07, - "kokoda": 1.05e-07, - "konig": 1.05e-07, - "kotoko": 1.05e-07, - "kowtowing": 1.05e-07, - "kroeger": 1.05e-07, - "krogh": 1.05e-07, - "kumara": 1.05e-07, - "kurama": 1.05e-07, - "kurapika": 1.05e-07, - "kurumi": 1.05e-07, - "kyojin": 1.05e-07, - "lahr": 1.05e-07, - "lampooning": 1.05e-07, - "langlands": 1.05e-07, - "lansdown": 1.05e-07, - "lary": 1.05e-07, - "lathan": 1.05e-07, - "lavey": 1.05e-07, - "lbf": 1.05e-07, - "lecce": 1.05e-07, - "lefkowitz": 1.05e-07, - "lemire": 1.05e-07, - "leurs": 1.05e-07, - "levinas": 1.05e-07, - "levite": 1.05e-07, - "libellous": 1.05e-07, - "liii": 1.05e-07, - "lineout": 1.05e-07, - "linville": 1.05e-07, - "literalism": 1.05e-07, - "lleyton": 1.05e-07, - "localhost": 1.05e-07, - "lof": 1.05e-07, - "lohr": 1.05e-07, - "longacre": 1.05e-07, - "longform": 1.05e-07, - "looooove": 1.05e-07, - "lorac": 1.05e-07, - "louden": 1.05e-07, - "lucre": 1.05e-07, - "lugubrious": 1.05e-07, - "lumb": 1.05e-07, - "luoyang": 1.05e-07, - "lykke": 1.05e-07, - "lyndsay": 1.05e-07, - "mabey": 1.05e-07, - "macomber": 1.05e-07, - "maddest": 1.05e-07, - "madoc": 1.05e-07, - "maffei": 1.05e-07, - "maguires": 1.05e-07, - "majolica": 1.05e-07, - "majoritarian": 1.05e-07, - "maladministration": 1.05e-07, - "malraux": 1.05e-07, - "manacles": 1.05e-07, - "manami": 1.05e-07, - "mandalas": 1.05e-07, - "mandinka": 1.05e-07, - "manipal": 1.05e-07, - "manni": 1.05e-07, - "marja": 1.05e-07, - "marois": 1.05e-07, - "maryknoll": 1.05e-07, - "masia": 1.05e-07, - "matai": 1.05e-07, - "matsuo": 1.05e-07, - "maundy": 1.05e-07, - "mcbrides": 1.05e-07, - "mccaul": 1.05e-07, - "mcclanahan": 1.05e-07, - "mckinlay": 1.05e-07, - "mcrib": 1.05e-07, - "meaningfulness": 1.05e-07, - "mediumship": 1.05e-07, - "meen": 1.05e-07, - "mehmood": 1.05e-07, - "meka": 1.05e-07, - "melanchthon": 1.05e-07, - "melanies": 1.05e-07, - "melisa": 1.05e-07, - "memorising": 1.05e-07, - "menin": 1.05e-07, - "mery": 1.05e-07, - "metalworkers": 1.05e-07, - "microbiologists": 1.05e-07, - "microcredit": 1.05e-07, - "microelectronic": 1.05e-07, - "micronesian": 1.05e-07, - "microstructures": 1.05e-07, - "mifsud": 1.05e-07, - "millenial": 1.05e-07, - "millersville": 1.05e-07, - "millikin": 1.05e-07, - "millstones": 1.05e-07, - "minifigure": 1.05e-07, - "minimax": 1.05e-07, - "minutia": 1.05e-07, - "misconceived": 1.05e-07, - "misquote": 1.05e-07, - "mithra": 1.05e-07, - "mitsuki": 1.05e-07, - "miui": 1.05e-07, - "modernistic": 1.05e-07, - "moke": 1.05e-07, - "mommie": 1.05e-07, - "mononucleosis": 1.05e-07, - "moonbase": 1.05e-07, - "moorman": 1.05e-07, - "mornay": 1.05e-07, - "mortgaging": 1.05e-07, - "msdn": 1.05e-07, - "muddying": 1.05e-07, - "mudflats": 1.05e-07, - "mudgee": 1.05e-07, - "muffed": 1.05e-07, - "mukul": 1.05e-07, - "mulders": 1.05e-07, - "multifactorial": 1.05e-07, - "multilateralism": 1.05e-07, - "multiprocessor": 1.05e-07, - "mutinies": 1.05e-07, - "mwf": 1.05e-07, - "mycareer": 1.05e-07, - "mycotoxins": 1.05e-07, - "nachman": 1.05e-07, - "nadiya": 1.05e-07, - "nads": 1.05e-07, - "neera": 1.05e-07, - "neutralising": 1.05e-07, - "newsies": 1.05e-07, - "newspeak": 1.05e-07, - "nfr": 1.05e-07, - "nfv": 1.05e-07, - "ngf": 1.05e-07, - "ngoc": 1.05e-07, - "nieuwe": 1.05e-07, - "nightjar": 1.05e-07, - "nightshift": 1.05e-07, - "nijinsky": 1.05e-07, - "nikitin": 1.05e-07, - "nikolaos": 1.05e-07, - "ningxia": 1.05e-07, - "ninoy": 1.05e-07, - "niobrara": 1.05e-07, - "nlb": 1.05e-07, - "nmb": 1.05e-07, - "nmol": 1.05e-07, - "nonnegative": 1.05e-07, - "nonwhites": 1.05e-07, - "noooooooo": 1.05e-07, - "northwich": 1.05e-07, - "norval": 1.05e-07, - "notability": 1.05e-07, - "novaks": 1.05e-07, - "nozaki": 1.05e-07, - "numbingly": 1.05e-07, - "nyr": 1.05e-07, - "obsolescent": 1.05e-07, - "occassion": 1.05e-07, - "ocelli": 1.05e-07, - "oded": 1.05e-07, - "ohp": 1.05e-07, - "oohh": 1.05e-07, - "oppressions": 1.05e-07, - "orellana": 1.05e-07, - "organizationally": 1.05e-07, - "orks": 1.05e-07, - "ormerod": 1.05e-07, - "orthorhombic": 1.05e-07, - "ortons": 1.05e-07, - "ostomy": 1.05e-07, - "otay": 1.05e-07, - "otm": 1.05e-07, - "outrank": 1.05e-07, - "outshot": 1.05e-07, - "ovas": 1.05e-07, - "overbought": 1.05e-07, - "oversensitive": 1.05e-07, - "owi": 1.05e-07, - "ozs": 1.05e-07, - "paan": 1.05e-07, - "paiva": 1.05e-07, - "palenque": 1.05e-07, - "palestrina": 1.05e-07, - "palming": 1.05e-07, - "pande": 1.05e-07, - "panders": 1.05e-07, - "panmure": 1.05e-07, - "parkhead": 1.05e-07, - "parl": 1.05e-07, - "parp": 1.05e-07, - "partha": 1.05e-07, - "paunch": 1.05e-07, - "pavan": 1.05e-07, - "paxil": 1.05e-07, - "pebbled": 1.05e-07, - "peckish": 1.05e-07, - "pedagogue": 1.05e-07, - "pelagius": 1.05e-07, - "penetrator": 1.05e-07, - "penknife": 1.05e-07, - "peop": 1.05e-07, - "perfidy": 1.05e-07, - "perforate": 1.05e-07, - "perisic": 1.05e-07, - "permalink": 1.05e-07, - "perso": 1.05e-07, - "pessoa": 1.05e-07, - "pestis": 1.05e-07, - "pettine": 1.05e-07, - "phenology": 1.05e-07, - "philae": 1.05e-07, - "philosophizing": 1.05e-07, - "philpot": 1.05e-07, - "phosphine": 1.05e-07, - "photoresist": 1.05e-07, - "phrygia": 1.05e-07, - "phytochemicals": 1.05e-07, - "piccoli": 1.05e-07, - "piedmontese": 1.05e-07, - "pigalle": 1.05e-07, - "pilloried": 1.05e-07, - "pinkies": 1.05e-07, - "pizzicato": 1.05e-07, - "pking": 1.05e-07, - "plagiarised": 1.05e-07, - "plana": 1.05e-07, - "pldt": 1.05e-07, - "plops": 1.05e-07, - "pluribus": 1.05e-07, - "plutonic": 1.05e-07, - "pmg": 1.05e-07, - "pneuma": 1.05e-07, - "pocketful": 1.05e-07, - "pocky": 1.05e-07, - "poliomyelitis": 1.05e-07, - "politi": 1.05e-07, - "pono": 1.05e-07, - "pornographer": 1.05e-07, - "porterville": 1.05e-07, - "powe": 1.05e-07, - "powerbomb": 1.05e-07, - "prabhakar": 1.05e-07, - "preg": 1.05e-07, - "preminger": 1.05e-07, - "premixed": 1.05e-07, - "prescriber": 1.05e-07, - "profiteer": 1.05e-07, - "programa": 1.05e-07, - "prosodic": 1.05e-07, - "prostituting": 1.05e-07, - "prynne": 1.05e-07, - "psk": 1.05e-07, - "psvr": 1.05e-07, - "psychotherapeutic": 1.05e-07, - "pube": 1.05e-07, - "pulverised": 1.05e-07, - "punning": 1.05e-07, - "qom": 1.05e-07, - "queenslander": 1.05e-07, - "quiznos": 1.05e-07, - "qx": 1.05e-07, - "rabidly": 1.05e-07, - "rahuls": 1.05e-07, - "raki": 1.05e-07, - "rammer": 1.05e-07, - "ramy": 1.05e-07, - "raney": 1.05e-07, - "rankled": 1.05e-07, - "raus": 1.05e-07, - "rbb": 1.05e-07, - "reabsorption": 1.05e-07, - "reallly": 1.05e-07, - "rearranges": 1.05e-07, - "rectifiers": 1.05e-07, - "redact": 1.05e-07, - "reding": 1.05e-07, - "reduplication": 1.05e-07, - "reemerged": 1.05e-07, - "reformulate": 1.05e-07, - "regattas": 1.05e-07, - "relaxer": 1.05e-07, - "rema": 1.05e-07, - "reman": 1.05e-07, - "remanufactured": 1.05e-07, - "remedying": 1.05e-07, - "resa": 1.05e-07, - "retells": 1.05e-07, - "returners": 1.05e-07, - "reuses": 1.05e-07, - "rhombic": 1.05e-07, - "riau": 1.05e-07, - "rijeka": 1.05e-07, - "ristorante": 1.05e-07, - "riverdance": 1.05e-07, - "roadbed": 1.05e-07, - "rocklin": 1.05e-07, - "roco": 1.05e-07, - "rohtak": 1.05e-07, - "rollerblades": 1.05e-07, - "roro": 1.05e-07, - "roshni": 1.05e-07, - "rossiya": 1.05e-07, - "roza": 1.05e-07, - "rubino": 1.05e-07, - "rubus": 1.05e-07, - "rues": 1.05e-07, - "runoffs": 1.05e-07, - "rurik": 1.05e-07, - "ryn": 1.05e-07, - "saanich": 1.05e-07, - "sabatini": 1.05e-07, - "saburo": 1.05e-07, - "sacro": 1.05e-07, - "sadomasochism": 1.05e-07, - "sadomasochistic": 1.05e-07, - "safavid": 1.05e-07, - "salander": 1.05e-07, - "sanda": 1.05e-07, - "sandstorms": 1.05e-07, - "sarno": 1.05e-07, - "saurabh": 1.05e-07, - "savard": 1.05e-07, - "scabby": 1.05e-07, - "scalzi": 1.05e-07, - "scheldt": 1.05e-07, - "scheuer": 1.05e-07, - "schmoozing": 1.05e-07, - "schwarzeneggers": 1.05e-07, - "scolari": 1.05e-07, - "scowled": 1.05e-07, - "scuffing": 1.05e-07, - "seabass": 1.05e-07, - "seay": 1.05e-07, - "secunda": 1.05e-07, - "selous": 1.05e-07, - "senescent": 1.05e-07, - "sequelae": 1.05e-07, - "serafina": 1.05e-07, - "serp": 1.05e-07, - "setsuna": 1.05e-07, - "shaked": 1.05e-07, - "shakespearian": 1.05e-07, - "sharlene": 1.05e-07, - "shellie": 1.05e-07, - "sheppards": 1.05e-07, - "sheth": 1.05e-07, - "shinny": 1.05e-07, - "shivam": 1.05e-07, - "shortchanged": 1.05e-07, - "shorties": 1.05e-07, - "shounen": 1.05e-07, - "shud": 1.05e-07, - "sibilant": 1.05e-07, - "sidelining": 1.05e-07, - "siebold": 1.05e-07, - "sightlines": 1.05e-07, - "signoria": 1.05e-07, - "silverberg": 1.05e-07, - "simpering": 1.05e-07, - "skepta": 1.05e-07, - "skittering": 1.05e-07, - "skydome": 1.05e-07, - "slappy": 1.05e-07, - "slee": 1.05e-07, - "sloans": 1.05e-07, - "slovenes": 1.05e-07, - "smrt": 1.05e-07, - "snigger": 1.05e-07, - "sociality": 1.05e-07, - "soderberg": 1.05e-07, - "solidus": 1.05e-07, - "somedays": 1.05e-07, - "sonography": 1.05e-07, - "sophist": 1.05e-07, - "sopra": 1.05e-07, - "southbridge": 1.05e-07, - "speakership": 1.05e-07, - "speaketh": 1.05e-07, - "spillane": 1.05e-07, - "spillovers": 1.05e-07, - "spindler": 1.05e-07, - "spiritualized": 1.05e-07, - "squarespace": 1.05e-07, - "squibs": 1.05e-07, - "stabber": 1.05e-07, - "staffan": 1.05e-07, - "staton": 1.05e-07, - "staving": 1.05e-07, - "steemit": 1.05e-07, - "steerable": 1.05e-07, - "steinbach": 1.05e-07, - "stelle": 1.05e-07, - "stepfathers": 1.05e-07, - "stomatal": 1.05e-07, - "stonyhurst": 1.05e-07, - "storybooks": 1.05e-07, - "strafed": 1.05e-07, - "streaker": 1.05e-07, - "stricture": 1.05e-07, - "strums": 1.05e-07, - "stt": 1.05e-07, - "studentship": 1.05e-07, - "stussy": 1.05e-07, - "sucess": 1.05e-07, - "sunningdale": 1.05e-07, - "sunray": 1.05e-07, - "superintending": 1.05e-07, - "superstardom": 1.05e-07, - "supes": 1.05e-07, - "suwannee": 1.05e-07, - "swagbucks": 1.05e-07, - "swara": 1.05e-07, - "swats": 1.05e-07, - "swedenborg": 1.05e-07, - "syncretic": 1.05e-07, - "synonymously": 1.05e-07, - "tagg": 1.05e-07, - "talavera": 1.05e-07, - "taniguchi": 1.05e-07, - "taree": 1.05e-07, - "taussig": 1.05e-07, - "tautological": 1.05e-07, - "tavernier": 1.05e-07, - "tdsb": 1.05e-07, - "tearjerker": 1.05e-07, - "technion": 1.05e-07, - "telework": 1.05e-07, - "temporality": 1.05e-07, - "temporomandibular": 1.05e-07, - "tennent": 1.05e-07, - "tercentenary": 1.05e-07, - "thanksgivings": 1.05e-07, - "thant": 1.05e-07, - "thema": 1.05e-07, - "theoreticians": 1.05e-07, - "theorising": 1.05e-07, - "theorizes": 1.05e-07, - "thermodynamically": 1.05e-07, - "tias": 7.08e-08, - "timesheets": 1.05e-07, - "tippet": 1.05e-07, - "tli": 1.05e-07, - "tonge": 1.05e-07, - "topnotch": 1.05e-07, - "torques": 1.05e-07, - "toscana": 1.05e-07, - "towa": 1.05e-07, - "trackless": 1.05e-07, - "tradecraft": 1.05e-07, - "tral": 1.05e-07, - "transcoding": 1.05e-07, - "transmittal": 1.05e-07, - "transvaginal": 1.05e-07, - "traylor": 1.05e-07, - "trelawney": 1.05e-07, - "tremulous": 1.05e-07, - "trenchcoat": 1.05e-07, - "trentham": 1.05e-07, - "trianon": 1.05e-07, - "trivialities": 1.05e-07, - "troubleshooter": 1.05e-07, - "trounce": 1.05e-07, - "ttf": 1.05e-07, - "tubeless": 1.05e-07, - "tugboats": 1.05e-07, - "turnberry": 1.05e-07, - "turrell": 1.05e-07, - "tuukka": 1.05e-07, - "tyburn": 1.05e-07, - "ufw": 1.05e-07, - "uia": 1.05e-07, - "ullrich": 1.05e-07, - "ultramafic": 1.05e-07, - "undergrounds": 1.05e-07, - "underlain": 1.05e-07, - "underparts": 1.05e-07, - "unescorted": 1.05e-07, - "unfulfilling": 1.05e-07, - "unico": 1.05e-07, - "universalists": 1.05e-07, - "unodc": 1.05e-07, - "unos": 1.05e-07, - "unpowered": 1.05e-07, - "unsecure": 1.05e-07, - "unsubscribed": 1.05e-07, - "urbano": 1.05e-07, - "valu": 1.05e-07, - "vario": 1.05e-07, - "vass": 1.05e-07, - "vco": 1.05e-07, - "vem": 1.05e-07, - "ventriloquism": 1.05e-07, - "verdad": 1.05e-07, - "vertiginous": 1.05e-07, - "vertu": 1.05e-07, - "veruca": 1.05e-07, - "vieja": 1.05e-07, - "vira": 1.05e-07, - "vires": 1.05e-07, - "vitaliy": 1.05e-07, - "vitter": 1.05e-07, - "voo": 1.05e-07, - "vte": 1.05e-07, - "vvs": 1.05e-07, - "waaaaaay": 1.05e-07, - "wace": 1.05e-07, - "wae": 1.05e-07, - "waf": 1.05e-07, - "wagtail": 1.05e-07, - "waldeck": 1.05e-07, - "walshe": 1.05e-07, - "warfighting": 1.05e-07, - "waterskiing": 1.05e-07, - "weedon": 1.05e-07, - "weeklys": 1.05e-07, - "welshmen": 1.05e-07, - "whare": 1.05e-07, - "whatve": 1.05e-07, - "whedons": 1.05e-07, - "whincup": 1.05e-07, - "whish": 1.05e-07, - "whiston": 1.05e-07, - "whitebeard": 1.05e-07, - "whiteford": 1.05e-07, - "wiggum": 1.05e-07, - "windfalls": 1.05e-07, - "windscreens": 1.05e-07, - "wingo": 1.05e-07, - "winnowing": 1.05e-07, - "workrate": 1.05e-07, - "worldbuilding": 1.05e-07, - "wowza": 1.05e-07, - "wra": 1.05e-07, - "wrld": 1.05e-07, - "xlt": 1.05e-07, - "xxxix": 1.05e-07, - "xxxviii": 1.05e-07, - "xylene": 1.05e-07, - "yasha": 1.05e-07, - "yeldon": 1.05e-07, - "yojimbo": 1.05e-07, - "yorkshireman": 1.05e-07, - "yoshikawa": 1.05e-07, - "zedekiah": 1.05e-07, - "zegna": 1.05e-07, - "zellner": 1.05e-07, - "zeo": 1.05e-07, - "zinnia": 1.05e-07, - "zofia": 1.05e-07, - "zorba": 1.05e-07, - "zwolle": 1.05e-07, - "abdullahs": 1.02e-07, - "abrahamson": 1.02e-07, - "abseiling": 1.02e-07, - "acclimatization": 1.02e-07, - "achaemenid": 1.02e-07, - "acrylamide": 1.02e-07, - "acrylonitrile": 1.02e-07, - "acti": 1.02e-07, - "acupuncturist": 1.02e-07, - "administrated": 1.02e-07, - "admonishment": 1.02e-07, - "agis": 1.02e-07, - "agnus": 1.02e-07, - "ahp": 1.02e-07, - "aidans": 1.02e-07, - "ajman": 1.02e-07, - "albay": 1.02e-07, - "aldebaran": 1.02e-07, - "alexas": 2.14e-08, - "alie": 1.02e-07, - "alighieri": 1.02e-07, - "alkanes": 1.02e-07, - "allllll": 1.02e-07, - "allover": 1.02e-07, - "alongwith": 1.02e-07, - "alor": 1.02e-07, - "alvar": 1.02e-07, - "amagi": 1.02e-07, - "amedeo": 1.02e-07, - "americus": 1.02e-07, - "amerigo": 1.02e-07, - "ammons": 1.02e-07, - "anciently": 1.02e-07, - "andri": 1.02e-07, - "anthill": 1.02e-07, - "antivenom": 1.02e-07, - "apiary": 1.02e-07, - "apolipoprotein": 1.02e-07, - "arakawa": 1.02e-07, - "arber": 1.02e-07, - "arborist": 1.02e-07, - "arbus": 1.02e-07, - "ardern": 1.02e-07, - "arla": 1.02e-07, - "armaan": 1.02e-07, - "armonk": 1.02e-07, - "arrowverse": 1.02e-07, - "asexually": 1.02e-07, - "asthmatics": 1.02e-07, - "aubergines": 1.02e-07, - "audre": 1.02e-07, - "aveda": 1.02e-07, - "avium": 1.02e-07, - "ayaka": 1.02e-07, - "ayatollahs": 1.02e-07, - "azz": 1.02e-07, - "backhouse": 1.02e-07, - "bactericidal": 1.02e-07, - "badajoz": 1.02e-07, - "bagby": 1.02e-07, - "bahari": 1.02e-07, - "bahl": 1.02e-07, - "bainimarama": 1.02e-07, - "baldacci": 1.02e-07, - "balis": 1.02e-07, - "balle": 1.02e-07, - "balli": 1.02e-07, - "bandh": 1.02e-07, - "banksia": 1.02e-07, - "bankside": 1.02e-07, - "banky": 1.02e-07, - "bannermen": 1.02e-07, - "banquo": 1.02e-07, - "banville": 1.02e-07, - "barbells": 1.02e-07, - "bardon": 1.02e-07, - "barea": 1.02e-07, - "barebones": 1.02e-07, - "barfi": 1.02e-07, - "barkleys": 1.02e-07, - "bartomeu": 1.02e-07, - "battleborn": 1.02e-07, - "beardy": 1.02e-07, - "becaus": 1.02e-07, - "bedoya": 1.02e-07, - "bekele": 1.02e-07, - "belfasts": 1.02e-07, - "benavides": 1.02e-07, - "berenstain": 1.02e-07, - "bergs": 7.08e-08, - "beria": 1.02e-07, - "bernadotte": 1.02e-07, - "besiegers": 1.02e-07, - "bethea": 1.02e-07, - "bew": 1.02e-07, - "bewitch": 1.02e-07, - "bgn": 1.02e-07, - "bhagavan": 1.02e-07, - "bilder": 1.02e-07, - "biped": 1.02e-07, - "birchbox": 1.02e-07, - "birthrates": 1.02e-07, - "bisecting": 1.02e-07, - "bisons": 1.02e-07, - "bivariate": 1.02e-07, - "blastocyst": 1.02e-07, - "bles": 1.02e-07, - "blinn": 1.02e-07, - "bloodwork": 1.02e-07, - "bny": 1.02e-07, - "bocas": 1.02e-07, - "bodysuits": 1.02e-07, - "boffin": 1.02e-07, - "bookkeepers": 1.02e-07, - "bookselling": 1.02e-07, - "boomin": 1.02e-07, - "booo": 1.02e-07, - "borgata": 1.02e-07, - "botrytis": 1.02e-07, - "bowlby": 1.02e-07, - "braes": 1.02e-07, - "braganza": 1.02e-07, - "braise": 1.02e-07, - "brandies": 1.02e-07, - "bransons": 1.02e-07, - "brewsters": 1.02e-07, - "briarcliff": 1.02e-07, - "bricklaying": 1.02e-07, - "brissett": 1.02e-07, - "brockport": 1.02e-07, - "bronwen": 1.02e-07, - "brookland": 1.02e-07, - "bubbas": 1.02e-07, - "buchwald": 1.02e-07, - "burckhardt": 1.02e-07, - "buress": 1.02e-07, - "burgin": 1.02e-07, - "burgle": 1.02e-07, - "bussell": 1.02e-07, - "bwh": 1.02e-07, - "cairos": 1.02e-07, - "calendula": 1.02e-07, - "callouts": 1.02e-07, - "calman": 1.02e-07, - "campden": 1.02e-07, - "candidacies": 1.02e-07, - "cannabidiol": 1.02e-07, - "canyonlands": 1.02e-07, - "carbamazepine": 1.02e-07, - "carlino": 1.02e-07, - "cassowary": 1.02e-07, - "castanets": 1.02e-07, - "catonsville": 1.02e-07, - "cattell": 1.02e-07, - "caulker": 1.02e-07, - "cayetano": 1.02e-07, - "cdw": 1.02e-07, - "cerrado": 1.02e-07, - "cetus": 1.02e-07, - "cge": 1.02e-07, - "chala": 1.02e-07, - "channon": 1.02e-07, - "chanteuse": 1.02e-07, - "chaw": 1.02e-07, - "chelle": 1.02e-07, - "chemistries": 1.02e-07, - "chinchillas": 1.02e-07, - "chirag": 1.02e-07, - "chizuru": 1.02e-07, - "chlorella": 1.02e-07, - "chois": 1.02e-07, - "chrisman": 1.02e-07, - "ciabatta": 1.02e-07, - "ciampa": 1.02e-07, - "cichlid": 1.02e-07, - "cindi": 1.02e-07, - "circumvents": 1.02e-07, - "citrusy": 1.02e-07, - "cjd": 1.02e-07, - "clappers": 1.02e-07, - "clarets": 1.02e-07, - "clarins": 1.02e-07, - "clerc": 1.02e-07, - "climatological": 1.02e-07, - "clouseau": 1.02e-07, - "cnbcs": 1.02e-07, - "cods": 5.25e-08, - "coiffure": 1.02e-07, - "colorings": 1.02e-07, - "columbians": 1.02e-07, - "comdr": 1.02e-07, - "comped": 1.02e-07, - "complexs": 1.02e-07, - "compressibility": 1.02e-07, - "conflates": 1.02e-07, - "continous": 1.02e-07, - "contortion": 1.02e-07, - "corti": 1.02e-07, - "cortices": 1.02e-07, - "coshocton": 1.02e-07, - "costars": 1.02e-07, - "coste": 1.02e-07, - "cotten": 1.02e-07, - "counterpunch": 1.02e-07, - "counterstrike": 1.02e-07, - "craik": 1.02e-07, - "crating": 1.02e-07, - "cricinfo": 1.02e-07, - "criminalise": 1.02e-07, - "crispus": 1.02e-07, - "crumpling": 1.02e-07, - "cryptology": 1.02e-07, - "ctg": 1.02e-07, - "cuneo": 1.02e-07, - "cupp": 1.02e-07, - "curtice": 1.02e-07, - "cyclings": 1.02e-07, - "cyd": 1.02e-07, - "cymbeline": 1.02e-07, - "damson": 1.02e-07, - "dangit": 1.02e-07, - "dangly": 1.02e-07, - "danie": 1.02e-07, - "daryls": 1.02e-07, - "datacenters": 1.02e-07, - "dazzlingly": 1.02e-07, - "deasy": 1.02e-07, - "debye": 1.02e-07, - "deconstructs": 1.02e-07, - "decontaminate": 1.02e-07, - "dedicatory": 1.02e-07, - "deducts": 1.02e-07, - "deferens": 1.02e-07, - "demir": 1.02e-07, - "dendrite": 1.02e-07, - "dentsu": 1.02e-07, - "deoxy": 1.02e-07, - "derring": 1.02e-07, - "desarrollo": 1.02e-07, - "deshawn": 1.02e-07, - "deweys": 1.02e-07, - "diefenbaker": 1.02e-07, - "diferent": 1.02e-07, - "dinna": 1.02e-07, - "disabuse": 1.02e-07, - "discriminative": 1.02e-07, - "disgracing": 1.02e-07, - "diyarbakir": 1.02e-07, - "dli": 1.02e-07, - "dmu": 1.02e-07, - "doco": 1.02e-07, - "dolans": 1.02e-07, - "donmar": 1.02e-07, - "dooney": 1.02e-07, - "doordash": 1.02e-07, - "dorling": 1.02e-07, - "doterra": 1.02e-07, - "doto": 1.02e-07, - "downswing": 1.02e-07, - "draggin": 1.02e-07, - "drazen": 1.02e-07, - "dsk": 1.02e-07, - "duca": 1.02e-07, - "duquette": 1.02e-07, - "durkan": 1.02e-07, - "durrani": 1.02e-07, - "eastgate": 1.02e-07, - "ebbsfleet": 1.02e-07, - "ecclesiae": 1.02e-07, - "ecigs": 1.02e-07, - "effectually": 1.02e-07, - "eiu": 1.02e-07, - "ekta": 1.02e-07, - "electrophilic": 1.02e-07, - "electrophoretic": 1.02e-07, - "elian": 1.02e-07, - "eliseo": 1.02e-07, - "elles": 8.13e-08, - "embezzle": 1.02e-07, - "embroidering": 1.02e-07, - "emcees": 1.02e-07, - "emeril": 1.02e-07, - "emotionality": 1.02e-07, - "employments": 1.02e-07, - "endowing": 1.02e-07, - "engelberg": 1.02e-07, - "enthronement": 1.02e-07, - "epoxide": 1.02e-07, - "eqs": 1.02e-07, - "equatoria": 1.02e-07, - "erling": 1.02e-07, - "esn": 1.02e-07, - "estrus": 1.02e-07, - "europcar": 1.02e-07, - "everlast": 1.02e-07, - "evoque": 1.02e-07, - "excreta": 1.02e-07, - "extemporaneous": 1.02e-07, - "exuberantly": 1.02e-07, - "fado": 1.02e-07, - "faneuil": 1.02e-07, - "fano": 1.02e-07, - "fanpage": 1.02e-07, - "fantasist": 1.02e-07, - "faribault": 1.02e-07, - "faried": 1.02e-07, - "faroese": 1.02e-07, - "fastenings": 1.02e-07, - "fastens": 1.02e-07, - "fathi": 1.02e-07, - "faxon": 1.02e-07, - "fazl": 1.02e-07, - "feuded": 1.02e-07, - "fied": 1.02e-07, - "fieldstone": 1.02e-07, - "finnick": 1.02e-07, - "fitts": 1.02e-07, - "flagon": 1.02e-07, - "flamboyance": 1.02e-07, - "flashdance": 1.02e-07, - "fleisher": 1.02e-07, - "flits": 1.02e-07, - "fluorinated": 1.02e-07, - "fluxus": 1.02e-07, - "fmp": 1.02e-07, - "footholds": 1.02e-07, - "forbear": 1.02e-07, - "forefather": 1.02e-07, - "forres": 1.02e-07, - "frenemy": 1.02e-07, - "frenzel": 1.02e-07, - "fresca": 1.02e-07, - "frew": 1.02e-07, - "frontiersman": 1.02e-07, - "ftf": 1.02e-07, - "fuehrer": 1.02e-07, - "fulda": 1.02e-07, - "funkadelic": 1.02e-07, - "gabaldon": 1.02e-07, - "garofalo": 1.02e-07, - "gascony": 1.02e-07, - "gatsbys": 1.02e-07, - "gbi": 1.02e-07, - "gbu": 1.02e-07, - "geisler": 1.02e-07, - "gendering": 1.02e-07, - "gentility": 1.02e-07, - "geordi": 1.02e-07, - "gergen": 1.02e-07, - "gerstein": 1.02e-07, - "gett": 1.02e-07, - "ghali": 1.02e-07, - "ghislaine": 1.02e-07, - "giblets": 1.02e-07, - "giddiness": 1.02e-07, - "gladio": 1.02e-07, - "glenfiddich": 1.02e-07, - "globose": 1.02e-07, - "globules": 1.02e-07, - "glonass": 1.02e-07, - "glos": 1.02e-07, - "glowering": 1.02e-07, - "goda": 1.02e-07, - "godman": 1.02e-07, - "golde": 1.02e-07, - "gorbachevs": 1.02e-07, - "gorn": 1.02e-07, - "gorod": 1.02e-07, - "goten": 1.02e-07, - "graaff": 1.02e-07, - "granuloma": 1.02e-07, - "greenbank": 1.02e-07, - "greengrass": 1.02e-07, - "greenwell": 1.02e-07, - "groats": 1.02e-07, - "grotty": 1.02e-07, - "gruffalo": 1.02e-07, - "guffaw": 1.02e-07, - "gummed": 1.02e-07, - "gundersen": 1.02e-07, - "gunpla": 1.02e-07, - "guttenberg": 1.02e-07, - "guzzler": 1.02e-07, - "gyarados": 1.02e-07, - "gyeong": 1.02e-07, - "gygax": 1.02e-07, - "habilitation": 1.02e-07, - "hagler": 1.02e-07, - "hairdos": 1.02e-07, - "halloumi": 1.02e-07, - "handcraft": 1.02e-07, - "hande": 1.02e-07, - "hardik": 1.02e-07, - "harkens": 1.02e-07, - "harmonizes": 1.02e-07, - "hasson": 1.02e-07, - "headwater": 1.02e-07, - "hellblazer": 1.02e-07, - "henle": 1.02e-07, - "henman": 1.02e-07, - "hermia": 1.02e-07, - "herreras": 1.02e-07, - "himmlers": 1.02e-07, - "hmmmmmm": 1.02e-07, - "hooda": 1.02e-07, - "hooped": 1.02e-07, - "hoose": 1.02e-07, - "hopps": 1.02e-07, - "housatonic": 1.02e-07, - "housebreaking": 1.02e-07, - "houseful": 1.02e-07, - "howsoever": 1.02e-07, - "hubbles": 1.02e-07, - "huggy": 1.02e-07, - "hulkenberg": 1.02e-07, - "humankinds": 1.02e-07, - "humbucker": 1.02e-07, - "hummers": 1.02e-07, - "humphrys": 1.02e-07, - "hux": 1.02e-07, - "hwi": 1.02e-07, - "hydes": 1.02e-07, - "hyeong": 1.02e-07, - "hyogo": 1.02e-07, - "hypercube": 1.02e-07, - "hypnotherapist": 1.02e-07, - "iat": 1.02e-07, - "ibbotson": 1.02e-07, - "icb": 1.02e-07, - "idles": 1.02e-07, - "iike": 1.02e-07, - "ild": 1.02e-07, - "immediatly": 1.02e-07, - "immunoassay": 1.02e-07, - "immunogenicity": 1.02e-07, - "incarcerating": 1.02e-07, - "indents": 1.02e-07, - "indicia": 1.02e-07, - "infectivity": 1.02e-07, - "infringer": 1.02e-07, - "ingolstadt": 1.02e-07, - "intermezzo": 1.02e-07, - "intermissions": 1.02e-07, - "interprovincial": 1.02e-07, - "intex": 1.02e-07, - "ioe": 1.02e-07, - "iola": 1.02e-07, - "irian": 1.02e-07, - "irm": 1.02e-07, - "ironton": 1.02e-07, - "isg": 1.02e-07, - "iskander": 1.02e-07, - "iste": 1.02e-07, - "itchiness": 1.02e-07, - "itx": 1.02e-07, - "iweala": 1.02e-07, - "ized": 1.02e-07, - "izombie": 1.02e-07, - "jabberwocky": 1.02e-07, - "jacinda": 1.02e-07, - "jahr": 1.02e-07, - "jailbreaking": 1.02e-07, - "jala": 1.02e-07, - "jamals": 1.02e-07, - "jamarcus": 1.02e-07, - "jamin": 1.02e-07, - "jati": 1.02e-07, - "jesss": 1.02e-07, - "jiggles": 1.02e-07, - "jiraiya": 1.02e-07, - "jobson": 1.02e-07, - "josefa": 1.02e-07, - "jowell": 1.02e-07, - "jsoc": 1.02e-07, - "junji": 1.02e-07, - "jwh": 1.02e-07, - "jwt": 1.02e-07, - "kait": 1.02e-07, - "kalamata": 1.02e-07, - "katoomba": 1.02e-07, - "kdf": 1.02e-07, - "kercher": 1.02e-07, - "keystones": 1.02e-07, - "khalids": 1.02e-07, - "kilobytes": 1.02e-07, - "kingstons": 1.02e-07, - "kirche": 1.02e-07, - "kitesurfing": 1.02e-07, - "kitimat": 1.02e-07, - "kiyo": 1.02e-07, - "knysna": 1.02e-07, - "kob": 1.02e-07, - "koolhaas": 1.02e-07, - "kringle": 1.02e-07, - "kristens": 1.02e-07, - "kuda": 1.02e-07, - "kulaks": 1.02e-07, - "kutty": 1.02e-07, - "kuya": 1.02e-07, - "kzn": 1.02e-07, - "labuan": 1.02e-07, - "lachman": 1.02e-07, - "ladino": 1.02e-07, - "laevis": 1.02e-07, - "lalonde": 1.02e-07, - "lamborghinis": 6.46e-08, - "lampoons": 9.77e-08, - "landscapers": 1.02e-07, - "laplacian": 1.02e-07, - "lasered": 1.02e-07, - "lateralis": 1.02e-07, - "laundress": 1.02e-07, - "lavalle": 1.02e-07, - "lawry": 1.02e-07, - "lazenby": 1.02e-07, - "leb": 1.02e-07, - "leeuwen": 1.02e-07, - "legon": 1.02e-07, - "levodopa": 1.02e-07, - "liberalised": 1.02e-07, - "liebling": 1.02e-07, - "lindau": 1.02e-07, - "lindseys": 1.02e-07, - "linesmen": 1.02e-07, - "linford": 1.02e-07, - "lingam": 1.02e-07, - "linkup": 1.02e-07, - "lipson": 1.02e-07, - "lipsync": 1.02e-07, - "lir": 1.02e-07, - "lista": 1.02e-07, - "listenable": 1.02e-07, - "lld": 1.02e-07, - "loblaw": 1.02e-07, - "locational": 1.02e-07, - "loja": 1.02e-07, - "lokpal": 1.02e-07, - "lossiemouth": 1.02e-07, - "louisburg": 1.02e-07, - "loveth": 1.02e-07, - "lpt": 1.02e-07, - "lucey": 1.02e-07, - "luciferase": 1.02e-07, - "luddites": 1.02e-07, - "lularoe": 1.02e-07, - "luntz": 1.02e-07, - "lutes": 1.02e-07, - "lynam": 1.02e-07, - "maces": 1.02e-07, - "macgillivray": 1.02e-07, - "maduros": 1.02e-07, - "magazin": 1.02e-07, - "mahila": 1.02e-07, - "malis": 1.02e-07, - "malwa": 1.02e-07, - "mandamus": 1.02e-07, - "manteca": 1.02e-07, - "mapplethorpe": 1.02e-07, - "marcotte": 1.02e-07, - "marechal": 1.02e-07, - "marginals": 1.02e-07, - "marshaled": 1.02e-07, - "marvelling": 1.02e-07, - "masato": 1.02e-07, - "maslany": 1.02e-07, - "mataram": 1.02e-07, - "matchbook": 1.02e-07, - "maximised": 1.02e-07, - "maybury": 1.02e-07, - "mbk": 1.02e-07, - "mbo": 1.02e-07, - "mccarrick": 1.02e-07, - "mcgills": 1.02e-07, - "mcminn": 1.02e-07, - "mcmurtry": 1.02e-07, - "mcnaught": 1.02e-07, - "mcquarrie": 1.02e-07, - "mctaggart": 1.02e-07, - "meadowbrook": 1.02e-07, - "mealworms": 1.02e-07, - "meccano": 1.02e-07, - "mechanicsville": 1.02e-07, - "megamind": 1.02e-07, - "meighan": 1.02e-07, - "melfi": 1.02e-07, - "merkin": 1.02e-07, - "merlo": 1.02e-07, - "metallics": 1.02e-07, - "metastasize": 1.02e-07, - "methoxy": 1.02e-07, - "metrocard": 1.02e-07, - "mez": 1.02e-07, - "mhealth": 1.02e-07, - "micd": 1.02e-07, - "microbreweries": 1.02e-07, - "microtransactions": 1.02e-07, - "midsized": 1.02e-07, - "militantly": 1.02e-07, - "millikan": 1.02e-07, - "milltown": 1.02e-07, - "millwright": 1.02e-07, - "minogues": 1.02e-07, - "mirabel": 1.02e-07, - "misstated": 1.02e-07, - "mistreats": 1.02e-07, - "mixologist": 1.02e-07, - "moffats": 1.02e-07, - "monograms": 1.02e-07, - "moonlights": 1.02e-07, - "mousy": 1.02e-07, - "mouvement": 1.02e-07, - "mows": 1.02e-07, - "mpb": 1.02e-07, - "mpe": 1.02e-07, - "msq": 1.02e-07, - "muffet": 1.02e-07, - "multipolar": 1.02e-07, - "muro": 1.02e-07, - "museu": 1.02e-07, - "musser": 1.02e-07, - "musters": 1.02e-07, - "muthafucka": 1.02e-07, - "mux": 1.02e-07, - "myrcella": 1.02e-07, - "myriads": 1.02e-07, - "nadim": 1.02e-07, - "nandy": 1.02e-07, - "nanga": 1.02e-07, - "napo": 1.02e-07, - "nariman": 1.02e-07, - "narine": 1.02e-07, - "narrowband": 1.02e-07, - "nasally": 1.02e-07, - "nasd": 1.02e-07, - "naugatuck": 1.02e-07, - "nazaire": 1.02e-07, - "ncsu": 1.02e-07, - "nebulizer": 1.02e-07, - "necessaries": 1.02e-07, - "nedbank": 1.02e-07, - "neologism": 1.02e-07, - "neologisms": 1.02e-07, - "nesmith": 1.02e-07, - "neubauer": 1.02e-07, - "neuen": 1.02e-07, - "neuropeptide": 1.02e-07, - "nevsky": 1.02e-07, - "newlin": 1.02e-07, - "niaid": 1.02e-07, - "nickie": 1.02e-07, - "nickleback": 1.02e-07, - "nicollet": 1.02e-07, - "nissa": 1.02e-07, - "nna": 1.02e-07, - "noncommutative": 1.02e-07, - "noot": 1.02e-07, - "norges": 1.02e-07, - "norrell": 1.02e-07, - "nossa": 1.02e-07, - "nostromo": 1.02e-07, - "notepads": 1.02e-07, - "noura": 1.02e-07, - "ntb": 1.02e-07, - "nuestro": 1.02e-07, - "nulla": 1.02e-07, - "nuttin": 1.02e-07, - "nyfw": 1.02e-07, - "oaklawn": 1.02e-07, - "obdurate": 1.02e-07, - "obst": 1.02e-07, - "okd": 1.02e-07, - "okonjo": 1.02e-07, - "olio": 1.02e-07, - "ology": 1.02e-07, - "openshaw": 1.02e-07, - "oq": 1.02e-07, - "orchestrations": 1.02e-07, - "oribe": 1.02e-07, - "orpik": 1.02e-07, - "orthonormal": 1.02e-07, - "orval": 1.02e-07, - "osf": 1.02e-07, - "osmo": 1.02e-07, - "otranto": 1.02e-07, - "ouellette": 1.02e-07, - "outcroppings": 1.02e-07, - "outdoing": 1.02e-07, - "outrunning": 1.02e-07, - "overawed": 1.02e-07, - "oversimplify": 1.02e-07, - "owers": 1.02e-07, - "pagliacci": 1.02e-07, - "palestines": 1.02e-07, - "pallister": 1.02e-07, - "palmeiras": 1.02e-07, - "pandan": 1.02e-07, - "pandu": 1.02e-07, - "panhellenic": 1.02e-07, - "panjang": 1.02e-07, - "panko": 1.02e-07, - "parada": 1.02e-07, - "parisienne": 1.02e-07, - "parrotfish": 1.02e-07, - "parsers": 1.02e-07, - "patta": 1.02e-07, - "pegboard": 1.02e-07, - "pelini": 1.02e-07, - "pendejo": 1.02e-07, - "peps": 9.77e-08, - "pepi": 1.02e-07, - "perine": 1.02e-07, - "periodization": 1.02e-07, - "perseveres": 1.02e-07, - "peston": 1.02e-07, - "philanderer": 1.02e-07, - "philipps": 1.02e-07, - "pictionary": 1.02e-07, - "piercy": 1.02e-07, - "pieta": 1.02e-07, - "pillared": 1.02e-07, - "pinson": 1.02e-07, - "pjanic": 1.02e-07, - "pleasers": 1.02e-07, - "pleasured": 1.02e-07, - "ples": 1.02e-07, - "plunked": 1.02e-07, - "pluton": 1.02e-07, - "podiatric": 1.02e-07, - "poetess": 1.02e-07, - "polecat": 1.02e-07, - "polski": 1.02e-07, - "ponti": 1.02e-07, - "popa": 1.02e-07, - "porfirio": 1.02e-07, - "posies": 1.02e-07, - "pree": 1.02e-07, - "presbyterianism": 1.02e-07, - "presente": 1.02e-07, - "prest": 1.02e-07, - "presti": 1.02e-07, - "prestwich": 1.02e-07, - "pretest": 1.02e-07, - "promethazine": 1.02e-07, - "propagandistic": 1.02e-07, - "provencal": 1.02e-07, - "provera": 1.02e-07, - "ptm": 1.02e-07, - "puncheon": 1.02e-07, - "pvdf": 1.02e-07, - "pyrimidine": 1.02e-07, - "quadruped": 1.02e-07, - "quarterdeck": 1.02e-07, - "quetzal": 1.02e-07, - "quieten": 1.02e-07, - "quisling": 1.02e-07, - "qw": 1.02e-07, - "rachis": 1.02e-07, - "rahu": 1.02e-07, - "raichu": 1.02e-07, - "rajnath": 1.02e-07, - "rakish": 1.02e-07, - "ramblin": 1.02e-07, - "rameau": 1.02e-07, - "rappin": 1.02e-07, - "ratepayer": 1.02e-07, - "ravin": 1.02e-07, - "raws": 6.46e-08, - "rebook": 1.02e-07, - "reddening": 1.02e-07, - "reddys": 1.02e-07, - "redlegs": 1.02e-07, - "redressed": 1.02e-07, - "redrew": 1.02e-07, - "reductio": 1.02e-07, - "redwing": 1.02e-07, - "reframed": 1.02e-07, - "remapping": 1.02e-07, - "rencontre": 1.02e-07, - "renz": 1.02e-07, - "reorganising": 1.02e-07, - "republique": 1.02e-07, - "repurchases": 1.02e-07, - "resounded": 1.02e-07, - "retargeting": 1.02e-07, - "retinoid": 1.02e-07, - "retinoids": 1.02e-07, - "revenants": 1.02e-07, - "reversibility": 1.02e-07, - "righter": 1.02e-07, - "rigueur": 1.02e-07, - "ringlets": 1.02e-07, - "rmd": 1.02e-07, - "robux": 1.02e-07, - "rochesters": 1.02e-07, - "rolleston": 1.02e-07, - "romanticised": 1.02e-07, - "roney": 1.02e-07, - "roomier": 1.02e-07, - "rooter": 1.02e-07, - "rotenberg": 1.02e-07, - "royall": 1.02e-07, - "rul": 1.02e-07, - "rustles": 1.02e-07, - "sahin": 1.02e-07, - "saiga": 1.02e-07, - "salop": 1.02e-07, - "saman": 1.02e-07, - "samp": 1.02e-07, - "sanae": 1.02e-07, - "sanam": 1.02e-07, - "saratov": 1.02e-07, - "saric": 1.02e-07, - "satisfactions": 1.02e-07, - "saurus": 1.02e-07, - "savannahs": 9.55e-08, - "savita": 1.02e-07, - "savy": 1.02e-07, - "scapegoated": 1.02e-07, - "scarabs": 1.02e-07, - "scarlatti": 1.02e-07, - "schlemmer": 1.02e-07, - "scholasticism": 1.02e-07, - "schumers": 1.02e-07, - "schurz": 1.02e-07, - "seele": 1.02e-07, - "segmenting": 1.02e-07, - "seme": 1.02e-07, - "semiarid": 1.02e-07, - "sergent": 1.02e-07, - "serialised": 1.02e-07, - "serverless": 1.02e-07, - "settin": 1.02e-07, - "sfpd": 1.02e-07, - "sgh": 1.02e-07, - "shannan": 1.02e-07, - "sheeted": 1.02e-07, - "sheltons": 1.02e-07, - "shinohara": 1.02e-07, - "shitted": 1.02e-07, - "shoup": 1.02e-07, - "shunts": 1.02e-07, - "sidesteps": 1.02e-07, - "siglo": 1.02e-07, - "sinnott": 1.02e-07, - "sirena": 1.02e-07, - "sisco": 1.02e-07, - "situating": 1.02e-07, - "skc": 1.02e-07, - "skimping": 1.02e-07, - "slake": 1.02e-07, - "sleaford": 1.02e-07, - "sleepily": 1.02e-07, - "sluggers": 1.02e-07, - "smashbox": 1.02e-07, - "smolder": 1.02e-07, - "snowbirds": 1.02e-07, - "solveig": 1.02e-07, - "spacebar": 1.02e-07, - "spanier": 1.02e-07, - "spano": 1.02e-07, - "spatiotemporal": 1.02e-07, - "spaying": 1.02e-07, - "speedboats": 1.02e-07, - "spitter": 1.02e-07, - "spongiform": 1.02e-07, - "spriggs": 1.02e-07, - "srpska": 1.02e-07, - "stagnates": 1.02e-07, - "standpoints": 1.02e-07, - "starlin": 1.02e-07, - "stastny": 1.02e-07, - "steppers": 1.02e-07, - "stirner": 1.02e-07, - "stolid": 1.02e-07, - "streptococcal": 1.02e-07, - "studer": 1.02e-07, - "stuf": 1.02e-07, - "stupefying": 1.02e-07, - "stuy": 1.02e-07, - "subcarrier": 1.02e-07, - "subdistrict": 1.02e-07, - "subfields": 1.02e-07, - "subglacial": 1.02e-07, - "sujata": 1.02e-07, - "sulfonate": 1.02e-07, - "sulphurous": 1.02e-07, - "summerfest": 1.02e-07, - "superbug": 1.02e-07, - "supercenter": 1.02e-07, - "superdrug": 1.02e-07, - "superpowered": 1.02e-07, - "survivals": 1.02e-07, - "swampland": 1.02e-07, - "swanwick": 1.02e-07, - "swifty": 1.02e-07, - "symplectic": 1.02e-07, - "tafsir": 1.02e-07, - "tages": 1.02e-07, - "taher": 1.02e-07, - "taiyuan": 1.02e-07, - "tamera": 1.02e-07, - "tanana": 1.02e-07, - "taq": 1.02e-07, - "taqueria": 1.02e-07, - "tastemakers": 1.02e-07, - "tbn": 1.02e-07, - "teagan": 1.02e-07, - "tediously": 1.02e-07, - "teignmouth": 1.02e-07, - "temperamentally": 1.02e-07, - "terminologies": 1.02e-07, - "territoriality": 1.02e-07, - "tetrahydrocannabinol": 1.02e-07, - "tetralogy": 1.02e-07, - "tfsa": 1.02e-07, - "thakkar": 1.02e-07, - "thornburg": 1.02e-07, - "thornes": 1.02e-07, - "thymine": 1.02e-07, - "tillers": 1.02e-07, - "tintoretto": 1.02e-07, - "tiro": 1.02e-07, - "tirol": 1.02e-07, - "titillation": 1.02e-07, - "tobit": 1.02e-07, - "togashi": 1.02e-07, - "toggling": 1.02e-07, - "tomodachi": 1.02e-07, - "toogood": 1.02e-07, - "tooo": 1.02e-07, - "topline": 1.02e-07, - "topographically": 1.02e-07, - "tortola": 1.02e-07, - "townies": 1.02e-07, - "toxoplasma": 1.02e-07, - "tracheostomy": 1.02e-07, - "traffics": 1.02e-07, - "translocated": 1.02e-07, - "translocations": 1.02e-07, - "transunion": 1.02e-07, - "trendiest": 1.02e-07, - "triggs": 1.02e-07, - "truculent": 1.02e-07, - "tubed": 1.02e-07, - "tuke": 1.02e-07, - "tunein": 1.02e-07, - "turbofan": 1.02e-07, - "turnbuckle": 1.02e-07, - "turturro": 1.02e-07, - "tuvok": 1.02e-07, - "tvnz": 1.02e-07, - "tykes": 1.02e-07, - "typify": 1.02e-07, - "tyrolean": 1.02e-07, - "uco": 1.02e-07, - "ucu": 1.02e-07, - "uefas": 1.02e-07, - "uhr": 1.02e-07, - "umaga": 1.02e-07, - "unbox": 1.02e-07, - "unction": 1.02e-07, - "undeliverable": 1.02e-07, - "understudied": 1.02e-07, - "unfastened": 1.02e-07, - "unframed": 1.02e-07, - "unloving": 1.02e-07, - "unmentionable": 1.02e-07, - "unpasteurized": 1.02e-07, - "unrewarded": 1.02e-07, - "updo": 1.02e-07, - "upshaw": 1.02e-07, - "uptons": 1.02e-07, - "urbanised": 1.02e-07, - "ureter": 1.02e-07, - "usdt": 1.02e-07, - "usnm": 1.02e-07, - "uswnt": 1.02e-07, - "valeant": 1.02e-07, - "valencias": 1.02e-07, - "valise": 1.02e-07, - "vandana": 1.02e-07, - "vassily": 1.02e-07, - "veliko": 1.02e-07, - "vfd": 1.02e-07, - "vha": 1.02e-07, - "vibrantly": 1.02e-07, - "vier": 1.02e-07, - "virunga": 1.02e-07, - "visualizes": 1.02e-07, - "vivir": 1.02e-07, - "vocalized": 1.02e-07, - "vokes": 1.02e-07, - "voltmeter": 1.02e-07, - "voxels": 1.02e-07, - "vsd": 1.02e-07, - "vtc": 1.02e-07, - "waay": 1.02e-07, - "wadia": 1.02e-07, - "waldheim": 1.02e-07, - "waterton": 1.02e-07, - "wayfarers": 1.02e-07, - "webmasters": 1.02e-07, - "weddle": 1.02e-07, - "weightlifters": 1.02e-07, - "wellbore": 1.02e-07, - "wellstone": 1.02e-07, - "westmore": 1.02e-07, - "wgs": 1.02e-07, - "whately": 1.02e-07, - "whirr": 1.02e-07, - "whitsun": 1.02e-07, - "widdle": 1.02e-07, - "wigans": 1.02e-07, - "wiggs": 1.02e-07, - "wilke": 1.02e-07, - "windage": 1.02e-07, - "windlass": 1.02e-07, - "wingnut": 1.02e-07, - "wised": 1.02e-07, - "wissenschaft": 1.02e-07, - "witold": 1.02e-07, - "woakes": 1.02e-07, - "wolde": 1.02e-07, - "wools": 1.02e-07, - "wpg": 1.02e-07, - "wre": 1.02e-07, - "wrightsville": 1.02e-07, - "wyre": 1.02e-07, - "xh": 1.02e-07, - "xherdan": 1.02e-07, - "xliii": 1.02e-07, - "xylose": 1.02e-07, - "yadi": 1.02e-07, - "yager": 1.02e-07, - "yayo": 1.02e-07, - "yordan": 1.02e-07, - "youngish": 1.02e-07, - "yuans": 1.02e-07, - "yudhoyono": 1.02e-07, - "yur": 1.02e-07, - "zapatista": 1.02e-07, - "zillions": 1.02e-07, - "zipcar": 1.02e-07, - "zither": 1.02e-07, - "zj": 1.02e-07, - "zoomer": 1.02e-07, - "zy": 1.02e-07, - "abbs": 1e-07, - "abellio": 1e-07, - "absurdum": 1e-07, - "adamantine": 1e-07, - "adic": 1e-07, - "adjourns": 1e-07, - "adjuvants": 1e-07, - "adsorbent": 1e-07, - "aee": 1e-07, - "aem": 1e-07, - "aerodromes": 1e-07, - "aftab": 1e-07, - "agostini": 1e-07, - "ahc": 1e-07, - "ahly": 1e-07, - "aiff": 1e-07, - "akihito": 1e-07, - "akil": 1e-07, - "akrotiri": 1e-07, - "akward": 1e-07, - "alakazam": 1e-07, - "aleutians": 1e-07, - "alfies": 1e-07, - "alianza": 1e-07, - "allans": 1e-07, - "allegan": 1e-07, - "allgood": 1e-07, - "alloyed": 1e-07, - "amenhotep": 1e-07, - "amphibia": 1e-07, - "analogical": 1e-07, - "ance": 1e-07, - "anchorages": 1e-07, - "andere": 1e-07, - "andree": 1e-07, - "andris": 1e-07, - "animist": 1e-07, - "anirudh": 1e-07, - "anning": 1e-07, - "anticholinergic": 1e-07, - "antioquia": 1e-07, - "apf": 1e-07, - "aplastic": 1e-07, - "aqours": 1e-07, - "aramark": 1e-07, - "archaeopteryx": 1e-07, - "artha": 1e-07, - "artificiality": 1e-07, - "ascendency": 1e-07, - "ascorbate": 1e-07, - "ashbrook": 1e-07, - "ashlyn": 1e-07, - "ashman": 1e-07, - "asmodeus": 1e-07, - "assertively": 1e-07, - "asshats": 1e-07, - "atkinsons": 1e-07, - "auston": 1e-07, - "austronesian": 1e-07, - "avowedly": 1e-07, - "ayano": 1e-07, - "ayling": 1e-07, - "azizi": 1e-07, - "azmi": 1e-07, - "bacca": 1e-07, - "bacchanal": 1e-07, - "backstabber": 1e-07, - "bacteriophages": 1e-07, - "badd": 1e-07, - "baggio": 1e-07, - "baldur": 1e-07, - "balfe": 1e-07, - "ballsack": 1e-07, - "balogun": 1e-07, - "banksters": 1e-07, - "bardstown": 1e-07, - "baris": 1.15e-08, - "barkeep": 1e-07, - "basest": 1e-07, - "basheer": 1e-07, - "basilar": 1e-07, - "batang": 1e-07, - "bather": 1e-07, - "baudrillard": 1e-07, - "bayfront": 1e-07, - "beachwear": 1e-07, - "beattys": 1e-07, - "bedingfield": 1e-07, - "beemer": 1e-07, - "bekker": 1e-07, - "belfield": 1e-07, - "belmonte": 1e-07, - "belugas": 1e-07, - "bemba": 1e-07, - "bening": 1e-07, - "bera": 1e-07, - "bergers": 1e-07, - "bermudian": 1e-07, - "besmirch": 1e-07, - "bhagwati": 1e-07, - "bhavani": 1e-07, - "bhima": 1e-07, - "bhm": 1e-07, - "bickle": 1e-07, - "bigass": 1e-07, - "biggy": 1e-07, - "biloba": 1e-07, - "biotite": 1e-07, - "bismol": 1e-07, - "bivens": 1e-07, - "bjelke": 1e-07, - "blabber": 1e-07, - "blackhole": 1e-07, - "blackmails": 1e-07, - "blading": 1e-07, - "blaines": 1e-07, - "blancs": 5.75e-08, - "blazon": 1e-07, - "bleaches": 1e-07, - "bledisloe": 1e-07, - "bloodsuckers": 1e-07, - "bobbleheads": 1e-07, - "bobsledder": 1e-07, - "boff": 1e-07, - "boilermaker": 1e-07, - "borderers": 1e-07, - "borelli": 1e-07, - "borst": 1e-07, - "bostic": 1e-07, - "bown": 1e-07, - "boyars": 1e-07, - "brahimi": 1e-07, - "braising": 1e-07, - "brak": 1e-07, - "brassiere": 1e-07, - "brearley": 1e-07, - "breese": 1e-07, - "brennen": 1e-07, - "brexiters": 1e-07, - "brittanys": 1e-07, - "broadhead": 1e-07, - "bronchi": 1e-07, - "bronzing": 1e-07, - "brutalize": 1e-07, - "bth": 1e-07, - "bugti": 1e-07, - "bulgur": 1e-07, - "bullys": 1e-07, - "bumpin": 1e-07, - "buttercups": 1e-07, - "caballo": 1e-07, - "caboolture": 1e-07, - "caesarian": 1e-07, - "caetano": 1e-07, - "cahills": 1e-07, - "cajamarca": 1e-07, - "calcio": 1e-07, - "calmodulin": 1e-07, - "campagne": 1e-07, - "campesinos": 1e-07, - "camryn": 1e-07, - "caney": 1e-07, - "canisius": 1e-07, - "canner": 1e-07, - "capitulating": 1e-07, - "carder": 1e-07, - "caribbeans": 6.76e-08, - "carlas": 1e-07, - "carpathia": 1e-07, - "carrack": 1e-07, - "casagrande": 1e-07, - "castelo": 1e-07, - "cattleman": 1e-07, - "caufield": 1e-07, - "cays": 1e-07, - "ceelo": 1e-07, - "celestials": 1e-07, - "cere": 1e-07, - "ceti": 1e-07, - "chancey": 1e-07, - "chancing": 1e-07, - "chartist": 1e-07, - "chazz": 1e-07, - "chicanos": 1e-07, - "chickadees": 1e-07, - "chingford": 1e-07, - "chita": 1e-07, - "christenings": 1e-07, - "christianson": 1e-07, - "chubs": 1e-07, - "chunking": 1e-07, - "chup": 1e-07, - "citalopram": 1e-07, - "citv": 1e-07, - "clerestory": 1e-07, - "clods": 1e-07, - "cloke": 1e-07, - "cmas": 5.13e-08, - "coan": 1e-07, - "coble": 1e-07, - "cocooned": 1e-07, - "cofe": 1e-07, - "cols": 1e-07, - "combes": 1e-07, - "combiner": 1e-07, - "comi": 1e-07, - "comicbook": 1e-07, - "comox": 1e-07, - "compostable": 1e-07, - "computerization": 1e-07, - "concordant": 1e-07, - "confessionals": 1e-07, - "congenitally": 1e-07, - "connex": 1e-07, - "conviviality": 1e-07, - "cookstown": 1e-07, - "coolpix": 1e-07, - "cooma": 1e-07, - "copay": 1e-07, - "copenhagens": 1e-07, - "copulating": 1e-07, - "coras": 1e-07, - "corydon": 1e-07, - "cosign": 1e-07, - "courser": 1e-07, - "cowichan": 1e-07, - "coxe": 1e-07, - "crapo": 1e-07, - "crematoria": 1e-07, - "crewneck": 1e-07, - "crinkly": 1e-07, - "crocuses": 1e-07, - "crosscheck": 1e-07, - "crossdressers": 1e-07, - "crpf": 1e-07, - "cryogenically": 1e-07, - "cryptosporidium": 1e-07, - "ctb": 1e-07, - "cuckolded": 1e-07, - "cultivable": 1e-07, - "cupar": 1e-07, - "curiousity": 1e-07, - "cvm": 1e-07, - "cwmbran": 1e-07, - "cynthias": 1e-07, - "daal": 1e-07, - "damns": 1e-07, - "damodar": 1e-07, - "danna": 1e-07, - "dannii": 1e-07, - "darton": 1e-07, - "daubed": 1e-07, - "dazzler": 1e-07, - "dealey": 1e-07, - "deana": 1e-07, - "debasing": 1e-07, - "decelerated": 1e-07, - "decembers": 1e-07, - "decrement": 1e-07, - "definitional": 1e-07, - "dehumanising": 1e-07, - "delmas": 1e-07, - "demoting": 1e-07, - "denki": 1e-07, - "denney": 1e-07, - "denson": 1e-07, - "denting": 1e-07, - "deputed": 1e-07, - "derk": 1e-07, - "dermatologic": 1e-07, - "derr": 1e-07, - "dethroning": 1e-07, - "devens": 1e-07, - "dhanbad": 1e-07, - "dhoti": 1e-07, - "dhruv": 1e-07, - "diag": 1e-07, - "diaphragms": 1e-07, - "diffusivity": 1e-07, - "dimerization": 1e-07, - "dimmable": 1e-07, - "dinan": 1e-07, - "dionysian": 1e-07, - "disavowing": 1e-07, - "discours": 1e-07, - "disha": 1e-07, - "dispersions": 1e-07, - "dispiriting": 1e-07, - "disputable": 1e-07, - "dissociates": 1e-07, - "dng": 1e-07, - "doctrinaire": 1e-07, - "doddle": 1e-07, - "dodi": 1e-07, - "dods": 9.12e-08, - "doggos": 1e-07, - "dogmatically": 1e-07, - "doilies": 1e-07, - "donno": 1e-07, - "dors": 1e-07, - "dows": 6.03e-08, - "dreher": 1e-07, - "driveline": 1e-07, - "drona": 1e-07, - "dubnyk": 1e-07, - "dubz": 1e-07, - "dul": 1e-07, - "dulcie": 1e-07, - "dumfriesshire": 1e-07, - "duna": 1e-07, - "durex": 1e-07, - "dvc": 1e-07, - "earthsea": 1e-07, - "eban": 1e-07, - "ebates": 1e-07, - "ebbw": 1e-07, - "ecker": 1e-07, - "economize": 1e-07, - "edgartown": 1e-07, - "edr": 1e-07, - "edtech": 1e-07, - "edulis": 1e-07, - "edw": 1e-07, - "edy": 1e-07, - "eeh": 1e-07, - "efsa": 1e-07, - "eif": 1e-07, - "ejaculating": 1e-07, - "elkington": 1e-07, - "ellice": 1e-07, - "embarassment": 1e-07, - "embarrasing": 1e-07, - "emetic": 1e-07, - "emmer": 1e-07, - "empresa": 1e-07, - "emrys": 1e-07, - "enlightens": 1e-07, - "enneagram": 1e-07, - "entertainingly": 1e-07, - "ephrata": 1e-07, - "epm": 1e-07, - "equiv": 1e-07, - "erotically": 1e-07, - "etter": 1e-07, - "euv": 1e-07, - "evar": 1e-07, - "evasions": 1e-07, - "evatt": 1e-07, - "evm": 1e-07, - "excell": 1e-07, - "experi": 1e-07, - "fairburn": 1e-07, - "famu": 1e-07, - "fapping": 1e-07, - "farrel": 1e-07, - "faustino": 1e-07, - "favres": 1e-07, - "fazal": 1e-07, - "fecking": 1e-07, - "feedlot": 1e-07, - "fends": 1e-07, - "ferd": 1e-07, - "ffr": 1e-07, - "fiberboard": 1e-07, - "fiero": 1e-07, - "finks": 1e-07, - "fiorello": 1e-07, - "flavorless": 1e-07, - "flexural": 1e-07, - "flied": 1e-07, - "flitted": 1e-07, - "floatation": 1e-07, - "floodgate": 1e-07, - "fors": 1e-07, - "fowey": 1e-07, - "freeplay": 1e-07, - "fricke": 1e-07, - "fse": 1e-07, - "fumarate": 1e-07, - "funner": 1e-07, - "furr": 1e-07, - "furze": 1e-07, - "futebol": 1e-07, - "galatia": 1e-07, - "galil": 1e-07, - "gascoyne": 1e-07, - "gasper": 1e-07, - "gastropod": 1e-07, - "gazi": 1e-07, - "gdb": 1e-07, - "gdl": 1e-07, - "gearshift": 1e-07, - "geeze": 1e-07, - "gegen": 1e-07, - "gemara": 1e-07, - "gemmas": 1e-07, - "genovia": 1e-07, - "gerrys": 1e-07, - "gibbet": 1e-07, - "ginter": 1e-07, - "girish": 1e-07, - "girvan": 1e-07, - "gks": 1e-07, - "gmelin": 1e-07, - "golems": 1e-07, - "goodland": 1e-07, - "goodmorning": 1e-07, - "gooood": 1e-07, - "govs": 1e-07, - "grea": 1e-07, - "greenness": 1e-07, - "grewal": 1e-07, - "greyscale": 1e-07, - "gropes": 1e-07, - "grossness": 1e-07, - "gtn": 1e-07, - "guerreros": 7.59e-08, - "guesstimate": 1e-07, - "guesting": 1e-07, - "guillory": 1e-07, - "guiltless": 1e-07, - "guro": 1e-07, - "guzan": 1e-07, - "gymkhana": 1e-07, - "haarp": 1e-07, - "haloperidol": 1e-07, - "halsall": 1e-07, - "hamra": 1e-07, - "hamsa": 1e-07, - "hardheaded": 1e-07, - "harf": 1e-07, - "harlin": 1e-07, - "harriets": 1e-07, - "hasse": 1e-07, - "haug": 1e-07, - "hausdorff": 1e-07, - "haussmann": 1e-07, - "hautes": 1e-07, - "healthiness": 1e-07, - "heathland": 1e-07, - "heckman": 1e-07, - "heins": 1e-07, - "helman": 1e-07, - "herriman": 1e-07, - "hertel": 1e-07, - "hessen": 1e-07, - "hewitts": 1e-07, - "hila": 1e-07, - "hillyard": 1e-07, - "himiko": 1e-07, - "hinrich": 1e-07, - "hma": 1e-07, - "hoarsely": 1e-07, - "hollenbeck": 1e-07, - "holz": 1e-07, - "homestretch": 1e-07, - "homewrecker": 1e-07, - "hopson": 1e-07, - "hornchurch": 1e-07, - "housemaids": 1e-07, - "hrv": 1e-07, - "hsiu": 1e-07, - "hth": 1e-07, - "huddles": 1e-07, - "humbler": 1e-07, - "hurdy": 1e-07, - "husted": 1e-07, - "hvar": 1e-07, - "hve": 1e-07, - "hyacinths": 1e-07, - "hydrophone": 1e-07, - "hydroquinone": 1e-07, - "hyuga": 1e-07, - "ianto": 1e-07, - "icehouse": 1e-07, - "idiocracy": 1e-07, - "ifip": 1e-07, - "iftikhar": 1e-07, - "iheartmedia": 1e-07, - "ihl": 1e-07, - "ikari": 1e-07, - "ilf": 1e-07, - "illusionary": 1e-07, - "immutability": 1e-07, - "impor": 1e-07, - "impossibilities": 1e-07, - "inan": 1e-07, - "indicts": 1e-07, - "indispensible": 1e-07, - "individualists": 1e-07, - "instal": 1e-07, - "instantiation": 1e-07, - "instigates": 1e-07, - "interpolate": 1e-07, - "intimacies": 1e-07, - "invalided": 1e-07, - "ionisation": 1e-07, - "iredell": 1e-07, - "ireton": 1e-07, - "irretrievable": 1e-07, - "irsay": 1e-07, - "irvines": 1e-07, - "isenberg": 1e-07, - "islamisation": 1e-07, - "isra": 1e-07, - "ivins": 1e-07, - "izzat": 1e-07, - "jabbering": 1e-07, - "jamshedpur": 1e-07, - "jannah": 1e-07, - "janzen": 1e-07, - "japheth": 1e-07, - "jats": 1e-07, - "jbj": 1e-07, - "jeeze": 1e-07, - "jetstream": 1e-07, - "jey": 1e-07, - "joannas": 1e-07, - "jokin": 1e-07, - "jum": 1e-07, - "junot": 1e-07, - "kaiserslautern": 1e-07, - "kajol": 1e-07, - "karajan": 1e-07, - "karak": 1e-07, - "kentwood": 1e-07, - "keven": 1e-07, - "khedive": 1e-07, - "kibera": 1e-07, - "kidwell": 1e-07, - "kimpton": 1e-07, - "kinkaid": 1e-07, - "kinley": 1e-07, - "kirtan": 1e-07, - "kissel": 1e-07, - "kist": 1e-07, - "kitch": 1e-07, - "klout": 1e-07, - "kmh": 1e-07, - "kobane": 1e-07, - "kodama": 1e-07, - "kolar": 1e-07, - "kothari": 1e-07, - "krw": 1e-07, - "kua": 1e-07, - "kuldeep": 1e-07, - "kurosaki": 1e-07, - "kutta": 1e-07, - "labradorite": 1e-07, - "lammers": 1e-07, - "landowning": 1e-07, - "lanzmann": 1e-07, - "lapin": 1e-07, - "laski": 1e-07, - "lassi": 1e-07, - "latencies": 1e-07, - "laye": 1e-07, - "lcbo": 1e-07, - "leacock": 1e-07, - "leatherette": 1e-07, - "lebel": 1e-07, - "ledyard": 1e-07, - "leeann": 1e-07, - "lemont": 1e-07, - "leonov": 1e-07, - "lepidus": 1e-07, - "leptospirosis": 1e-07, - "lette": 1e-07, - "levan": 1e-07, - "libris": 1e-07, - "lifeform": 1e-07, - "ligon": 1e-07, - "lilienthal": 1e-07, - "limpets": 1e-07, - "linksys": 1e-07, - "lke": 1e-07, - "lodestar": 1e-07, - "lolololol": 1e-07, - "lomo": 1e-07, - "longhand": 1e-07, - "lorn": 1e-07, - "lothrop": 1e-07, - "ludmila": 1e-07, - "luthors": 1e-07, - "lynchpin": 1e-07, - "lysosomes": 1e-07, - "macaskill": 1e-07, - "maceo": 1e-07, - "machynlleth": 1e-07, - "macky": 1e-07, - "macphail": 1e-07, - "macrame": 1e-07, - "mady": 1e-07, - "magnifique": 1e-07, - "mahar": 1e-07, - "mahomet": 1e-07, - "makai": 1e-07, - "malatesta": 1e-07, - "malekith": 1e-07, - "malnourishment": 1e-07, - "mangers": 1e-07, - "manhandle": 1e-07, - "marilla": 1e-07, - "markiplier": 1e-07, - "mascaras": 1e-07, - "masculinities": 1e-07, - "matadors": 1e-07, - "mateus": 1e-07, - "mayumi": 1e-07, - "mbi": 1e-07, - "mcaleese": 1e-07, - "mccusker": 1e-07, - "mcsorley": 1e-07, - "medtech": 1e-07, - "meizu": 1e-07, - "melander": 1e-07, - "melling": 1e-07, - "mellows": 1e-07, - "memorandums": 1e-07, - "mendeleev": 1e-07, - "merril": 1e-07, - "merrimac": 1e-07, - "meteora": 1e-07, - "mettler": 1e-07, - "mfd": 1e-07, - "mhi": 1e-07, - "micelles": 1e-07, - "microscale": 1e-07, - "microsurgery": 1e-07, - "mihai": 1e-07, - "mihail": 1e-07, - "mikki": 1e-07, - "milion": 1e-07, - "milkmaid": 1e-07, - "milstein": 1e-07, - "minnehaha": 1e-07, - "miquel": 1e-07, - "mirena": 1e-07, - "misbehaves": 1e-07, - "mithril": 1e-07, - "mitogen": 1e-07, - "modder": 1e-07, - "molluscan": 1e-07, - "monetise": 1e-07, - "moone": 1e-07, - "moravians": 1e-07, - "moringa": 1e-07, - "mortier": 1e-07, - "mothballs": 1e-07, - "motherfuck": 1e-07, - "mottos": 1e-07, - "mouthguard": 1e-07, - "moxy": 1e-07, - "mpla": 1e-07, - "mrap": 1e-07, - "muckle": 1e-07, - "mudstones": 1e-07, - "multipath": 1e-07, - "munsey": 1e-07, - "mustaine": 1e-07, - "muzzy": 1e-07, - "mylene": 1e-07, - "namibias": 1e-07, - "nandu": 1e-07, - "narada": 1e-07, - "nasb": 1e-07, - "natan": 1e-07, - "naturale": 1e-07, - "naughtiest": 1e-07, - "navicular": 1e-07, - "nclex": 1e-07, - "neft": 1e-07, - "negredo": 1e-07, - "nestles": 1e-07, - "neurotoxins": 1e-07, - "newss": 1e-07, - "newsreaders": 1e-07, - "nexium": 1e-07, - "nexon": 1e-07, - "nicaraguas": 1e-07, - "nighy": 1e-07, - "niguel": 1e-07, - "nkosi": 1e-07, - "nlf": 1e-07, - "nole": 1e-07, - "nomar": 1e-07, - "novation": 1e-07, - "nsr": 1e-07, - "nuclease": 1e-07, - "numinous": 1e-07, - "nursultan": 1e-07, - "nuthatch": 1e-07, - "nzl": 1e-07, - "oag": 1e-07, - "obovate": 1e-07, - "odio": 1e-07, - "odium": 1e-07, - "oin": 1e-07, - "oitnb": 1e-07, - "okhotsk": 1e-07, - "olc": 1e-07, - "omeprazole": 1e-07, - "onde": 1e-07, - "onix": 1e-07, - "ooohhh": 1e-07, - "openstreetmap": 1e-07, - "operability": 1e-07, - "orchestrates": 1e-07, - "originations": 1e-07, - "ospf": 1e-07, - "otas": 1e-07, - "ottavio": 1e-07, - "otterbox": 1e-07, - "overclock": 1e-07, - "overestimation": 1e-07, - "overexpressed": 1e-07, - "owerri": 1e-07, - "oyama": 1e-07, - "pachuca": 1e-07, - "pakka": 1e-07, - "palustris": 1e-07, - "panchayati": 1e-07, - "pandered": 1e-07, - "panegyric": 1e-07, - "pannier": 1e-07, - "papuans": 1e-07, - "parachutist": 1e-07, - "parodic": 1e-07, - "paros": 1e-07, - "particulary": 1e-07, - "pashmina": 1e-07, - "passi": 1e-07, - "patsey": 1e-07, - "paulin": 1e-07, - "pavelski": 1e-07, - "paxtons": 1e-07, - "payette": 1e-07, - "pbb": 1e-07, - "peepee": 1e-07, - "pef": 1e-07, - "pendergrass": 1e-07, - "pennie": 1e-07, - "pepperidge": 1e-07, - "pequot": 1e-07, - "perceivable": 1e-07, - "perino": 1e-07, - "peris": 1e-07, - "perret": 1e-07, - "persecutor": 1e-07, - "personne": 1e-07, - "perspire": 1e-07, - "petrenko": 1e-07, - "phentermine": 1e-07, - "pheonix": 1e-07, - "phospholipase": 1e-07, - "picador": 1e-07, - "pidgey": 1e-07, - "pikeville": 1e-07, - "pini": 1e-07, - "pinsent": 1e-07, - "platen": 1e-07, - "playland": 1e-07, - "playstore": 1e-07, - "plopping": 1e-07, - "plotkin": 1e-07, - "pmu": 1e-07, - "pne": 1e-07, - "pneumatics": 1e-07, - "polestar": 1e-07, - "politiques": 1e-07, - "pollok": 1e-07, - "popova": 1e-07, - "popovic": 1e-07, - "populaire": 1e-07, - "porcini": 1e-07, - "posta": 1e-07, - "postproduction": 1e-07, - "postulating": 1e-07, - "potbelly": 1e-07, - "poulson": 1e-07, - "powerlifters": 1e-07, - "prebend": 1e-07, - "predilections": 1e-07, - "prema": 1e-07, - "preto": 1e-07, - "prizefighter": 1e-07, - "proclaimers": 1e-07, - "prohibitionist": 1e-07, - "pronghorn": 1e-07, - "prophesying": 1e-07, - "propoganda": 1e-07, - "protectively": 1e-07, - "proteolysis": 1e-07, - "protonated": 1e-07, - "provincia": 1e-07, - "prox": 1e-07, - "puducherry": 1e-07, - "pupillary": 1e-07, - "purloined": 1e-07, - "purp": 1e-07, - "puth": 1e-07, - "putted": 1e-07, - "quas": 1e-07, - "quim": 1e-07, - "qut": 1e-07, - "rahmans": 1e-07, - "raikes": 1e-07, - "rainie": 1e-07, - "ramstein": 1e-07, - "rapamycin": 1e-07, - "rapide": 1e-07, - "rati": 1e-07, - "rattata": 1e-07, - "reassigning": 1e-07, - "reaver": 1e-07, - "rebelliousness": 1e-07, - "recoiling": 1e-07, - "redi": 1e-07, - "redoubts": 1e-07, - "redressing": 1e-07, - "refi": 1e-07, - "renamo": 1e-07, - "renji": 1e-07, - "reoffending": 1e-07, - "repayable": 1e-07, - "rephrased": 1e-07, - "replicants": 1e-07, - "resolver": 1e-07, - "reubens": 6.17e-08, - "rezoned": 1e-07, - "riegel": 1e-07, - "riffles": 1e-07, - "rifting": 1e-07, - "rikishi": 1e-07, - "ripp": 1e-07, - "rituximab": 1e-07, - "roarke": 1e-07, - "rocio": 1e-07, - "roebling": 1e-07, - "rohm": 1e-07, - "rollovers": 1e-07, - "rookwood": 1e-07, - "rosebuds": 1e-07, - "rosehip": 1e-07, - "roshe": 1e-07, - "rother": 1e-07, - "rothrock": 1e-07, - "roundtables": 1e-07, - "rping": 1e-07, - "rpl": 1e-07, - "rra": 1e-07, - "rumania": 1e-07, - "rumpole": 1e-07, - "rutte": 1e-07, - "sabian": 1e-07, - "sadio": 1e-07, - "salesian": 1e-07, - "salis": 1e-07, - "saltonstall": 1e-07, - "sangiovese": 1e-07, - "santanas": 1e-07, - "santeria": 1e-07, - "saperstein": 1e-07, - "sashi": 1e-07, - "satie": 1e-07, - "satirically": 1e-07, - "saye": 1e-07, - "schefter": 1e-07, - "schizoaffective": 1e-07, - "schwarzschild": 1e-07, - "schweppes": 1e-07, - "scorns": 1e-07, - "sdd": 1e-07, - "sedum": 1e-07, - "seedorf": 1e-07, - "seleucid": 1e-07, - "selmer": 1e-07, - "sendak": 1e-07, - "sennacherib": 1e-07, - "sensenbrenner": 1e-07, - "sensually": 1e-07, - "serotonergic": 1e-07, - "sers": 1e-07, - "sesquicentennial": 1e-07, - "seventieth": 1e-07, - "shafter": 1e-07, - "shakiras": 1e-07, - "shattenkirk": 1e-07, - "sheilas": 1e-07, - "sheppey": 1e-07, - "shibboleth": 1e-07, - "shingled": 1e-07, - "shohei": 1e-07, - "shotton": 1e-07, - "sicario": 1e-07, - "sidcup": 1e-07, - "sidearms": 1e-07, - "sidle": 1e-07, - "sieving": 1e-07, - "sigler": 1e-07, - "silke": 1e-07, - "sinon": 1e-07, - "sisa": 1e-07, - "situs": 1e-07, - "sixfold": 1e-07, - "skillsets": 1e-07, - "slacken": 1e-07, - "slapdash": 1e-07, - "sluices": 1e-07, - "smethwick": 1e-07, - "smokie": 1e-07, - "snm": 1e-07, - "snowe": 1e-07, - "sobibor": 1e-07, - "softshell": 1e-07, - "soldiered": 1e-07, - "songkran": 1e-07, - "soundbar": 1e-07, - "southam": 1e-07, - "southwood": 1e-07, - "speier": 1e-07, - "spiegelman": 1e-07, - "spohr": 1e-07, - "sportswriters": 1e-07, - "sprawls": 1e-07, - "stabenow": 1e-07, - "stallard": 1e-07, - "stamen": 1e-07, - "stargazers": 1e-07, - "staved": 1e-07, - "stelter": 1e-07, - "stenhousemuir": 1e-07, - "stenting": 1e-07, - "stepsisters": 1e-07, - "stevies": 1e-07, - "stimulators": 1e-07, - "stockholms": 1e-07, - "stowmarket": 1e-07, - "stradbroke": 1e-07, - "straggling": 1e-07, - "stratfor": 1e-07, - "stripey": 1e-07, - "strobes": 1e-07, - "strongbow": 1e-07, - "strugglers": 1e-07, - "stutz": 1e-07, - "suarezs": 1e-07, - "sublimate": 1e-07, - "successfull": 1e-07, - "sudeikis": 1e-07, - "suncor": 1e-07, - "sunstein": 1e-07, - "superfluid": 1e-07, - "supergrass": 1e-07, - "superhot": 1e-07, - "superhumans": 1e-07, - "supramolecular": 1e-07, - "sussed": 1e-07, - "swabbing": 1e-07, - "swayne": 1e-07, - "synecdoche": 1e-07, - "syntactical": 1e-07, - "tablature": 1e-07, - "taconic": 1e-07, - "tailgates": 1e-07, - "takuma": 1e-07, - "tallon": 1e-07, - "tamang": 1e-07, - "tampas": 1e-07, - "tancred": 1e-07, - "tanjore": 1e-07, - "tannoy": 1e-07, - "tantalizingly": 1e-07, - "tarth": 1e-07, - "tatsumi": 1e-07, - "taxonomies": 1e-07, - "tcb": 1e-07, - "tdy": 1e-07, - "teale": 1e-07, - "teamspeak": 1e-07, - "teems": 1e-07, - "telemovie": 1e-07, - "telepaths": 1e-07, - "telesales": 1e-07, - "terai": 1e-07, - "tetrachloride": 1e-07, - "theranos": 1e-07, - "therm": 1e-07, - "thermoplastics": 1e-07, - "thespians": 1e-07, - "thomond": 1e-07, - "threateningly": 1e-07, - "thrombotic": 1e-07, - "thyroiditis": 1e-07, - "tickers": 1e-07, - "tippi": 1e-07, - "titer": 1e-07, - "tke": 1e-07, - "tnn": 1e-07, - "toccata": 1e-07, - "togs": 1e-07, - "tolley": 1e-07, - "torrez": 1e-07, - "toutes": 1e-07, - "trabzonspor": 1e-07, - "trampolining": 1e-07, - "translatable": 1e-07, - "trapani": 1e-07, - "trawls": 1e-07, - "trekkie": 1e-07, - "trem": 1e-07, - "trew": 1e-07, - "trumpian": 1e-07, - "tsutomu": 1e-07, - "tsuyoshi": 1e-07, - "tsw": 1e-07, - "tuneup": 1e-07, - "tunguska": 1e-07, - "turbochargers": 1e-07, - "typologies": 1e-07, - "tyrions": 1e-07, - "uaa": 1e-07, - "uchi": 1e-07, - "ucmj": 1e-07, - "ude": 1e-07, - "uggla": 1e-07, - "ults": 1e-07, - "unambitious": 1e-07, - "unappetizing": 1e-07, - "unas": 1e-07, - "unchristian": 1e-07, - "unconditioned": 1e-07, - "underachiever": 1e-07, - "underpayment": 1e-07, - "ungrammatical": 1e-07, - "unibrow": 1e-07, - "uninviting": 1e-07, - "unr": 1e-07, - "upcountry": 1e-07, - "usace": 1e-07, - "userid": 1e-07, - "ustad": 1e-07, - "ustinov": 1e-07, - "utama": 1e-07, - "util": 1e-07, - "utz": 1e-07, - "vacuoles": 1e-07, - "vallance": 1e-07, - "varuna": 1e-07, - "vct": 1e-07, - "vea": 1e-07, - "vend": 1e-07, - "venusaur": 1e-07, - "vfa": 1e-07, - "vickys": 1e-07, - "victuals": 1e-07, - "vilhelm": 1e-07, - "vindaloo": 1e-07, - "vinifera": 1e-07, - "vinyasa": 1e-07, - "viscoelastic": 1e-07, - "vlade": 1e-07, - "voile": 1e-07, - "voyageurs": 1e-07, - "vudu": 1e-07, - "vyas": 1e-07, - "wackos": 1e-07, - "wakayama": 1e-07, - "wallah": 1e-07, - "waseem": 1e-07, - "wasilla": 1e-07, - "wauwatosa": 1e-07, - "wcg": 1e-07, - "webhosting": 1e-07, - "webos": 1e-07, - "wernher": 1e-07, - "westman": 1e-07, - "whetted": 1e-07, - "whimsically": 1e-07, - "whitelock": 1e-07, - "whoso": 1e-07, - "wilmar": 1e-07, - "winwood": 1e-07, - "wittily": 1e-07, - "workability": 1e-07, - "wretchedness": 1e-07, - "xamarin": 1e-07, - "xylitol": 1e-07, - "xzibit": 1e-07, - "yarnell": 1e-07, - "ybarra": 1e-07, - "ybor": 1e-07, - "yeahhhh": 1e-07, - "yoan": 1e-07, - "yourre": 1e-07, - "yurts": 1e-07, - "zala": 1e-07, - "zampa": 1e-07, - "zepp": 1e-07, - "zira": 1e-07, - "zomg": 1e-07, - "aadhar": 9.77e-08, - "abbado": 9.77e-08, - "achromatic": 9.77e-08, - "acquittals": 9.77e-08, - "acte": 9.77e-08, - "actuating": 9.77e-08, - "adamo": 9.77e-08, - "adelle": 9.77e-08, - "adri": 9.77e-08, - "adventureland": 9.77e-08, - "aeronautic": 9.77e-08, - "aflac": 9.77e-08, - "afn": 9.77e-08, - "agfa": 9.77e-08, - "agios": 9.77e-08, - "agriculturalists": 9.77e-08, - "ahad": 9.77e-08, - "ahhhhhhh": 9.77e-08, - "ahri": 9.77e-08, - "aicc": 9.77e-08, - "aicpa": 9.77e-08, - "alannah": 9.77e-08, - "albrighton": 9.77e-08, - "alfonzo": 9.77e-08, - "algonquian": 9.77e-08, - "alisson": 9.77e-08, - "altmans": 9.77e-08, - "aluko": 9.77e-08, - "amature": 9.77e-08, - "amides": 9.77e-08, - "amiel": 9.77e-08, - "amita": 9.77e-08, - "amitabha": 9.77e-08, - "ancaster": 9.77e-08, - "antagonise": 9.77e-08, - "antica": 9.77e-08, - "anticline": 9.77e-08, - "anticommunist": 9.77e-08, - "antons": 9.77e-08, - "antonys": 9.77e-08, - "anzu": 9.77e-08, - "aomori": 9.77e-08, - "arianne": 9.77e-08, - "arrl": 9.77e-08, - "arry": 9.77e-08, - "artista": 9.77e-08, - "artium": 9.77e-08, - "arw": 9.77e-08, - "asclepius": 9.77e-08, - "asocial": 9.77e-08, - "aspas": 9.77e-08, - "asso": 9.77e-08, - "ateliers": 9.77e-08, - "ather": 9.77e-08, - "atomically": 9.77e-08, - "atrazine": 9.77e-08, - "atrociously": 9.77e-08, - "auggie": 9.77e-08, - "aurelian": 9.77e-08, - "automat": 9.77e-08, - "avin": 9.77e-08, - "awm": 9.77e-08, - "awolowo": 9.77e-08, - "ayacucho": 9.77e-08, - "ayden": 9.77e-08, - "azzurri": 9.77e-08, - "bacilli": 9.77e-08, - "backbeat": 9.77e-08, - "backbiting": 9.77e-08, - "backrow": 9.77e-08, - "baldi": 9.77e-08, - "barbarella": 9.77e-08, - "barilla": 9.77e-08, - "basij": 9.77e-08, - "bathrobes": 9.77e-08, - "bato": 9.77e-08, - "bbi": 9.77e-08, - "bcb": 9.77e-08, - "bcom": 9.77e-08, - "beary": 9.77e-08, - "beatlemania": 9.77e-08, - "beerus": 9.77e-08, - "behrend": 9.77e-08, - "behringer": 9.77e-08, - "bellboy": 9.77e-08, - "benedictines": 9.77e-08, - "beno": 9.77e-08, - "berube": 9.77e-08, - "bevelled": 9.77e-08, - "bhagwat": 9.77e-08, - "bharath": 9.77e-08, - "bink": 9.77e-08, - "bino": 9.77e-08, - "blatchford": 9.77e-08, - "blaylock": 9.77e-08, - "bleus": 9.77e-08, - "blobby": 9.77e-08, - "blowpipe": 9.77e-08, - "boardwalks": 9.77e-08, - "bobbies": 9.77e-08, - "bodyline": 9.77e-08, - "bolte": 9.77e-08, - "bonanno": 9.77e-08, - "borin": 9.77e-08, - "botts": 9.77e-08, - "bourges": 9.77e-08, - "bowland": 9.77e-08, - "braavos": 9.77e-08, - "braf": 9.77e-08, - "brahm": 9.77e-08, - "brasileira": 9.77e-08, - "brazillian": 9.77e-08, - "brillante": 9.77e-08, - "brinson": 9.77e-08, - "britishers": 9.77e-08, - "brookss": 9.77e-08, - "brot": 9.77e-08, - "brutalizing": 9.77e-08, - "bruyn": 9.77e-08, - "brynner": 9.77e-08, - "btg": 9.77e-08, - "bti": 9.77e-08, - "btp": 9.77e-08, - "buckfast": 9.77e-08, - "buckhorn": 9.77e-08, - "buhay": 9.77e-08, - "buisson": 9.77e-08, - "bulks": 9.77e-08, - "bulloch": 9.77e-08, - "busse": 9.77e-08, - "buttholes": 9.77e-08, - "butty": 9.77e-08, - "buuut": 9.77e-08, - "bysshe": 9.77e-08, - "caci": 9.77e-08, - "cacique": 9.77e-08, - "callister": 9.77e-08, - "camra": 9.77e-08, - "cancellara": 9.77e-08, - "cantaloupes": 9.77e-08, - "capoue": 9.77e-08, - "caracal": 9.77e-08, - "carcinoid": 9.77e-08, - "carinae": 9.77e-08, - "carinthia": 9.77e-08, - "carload": 9.77e-08, - "carlota": 9.77e-08, - "carmelita": 9.77e-08, - "carpetbagger": 9.77e-08, - "carruth": 9.77e-08, - "cason": 9.77e-08, - "castlemaine": 9.77e-08, - "catalyse": 9.77e-08, - "catapulting": 9.77e-08, - "catechetical": 9.77e-08, - "catrin": 9.77e-08, - "caudate": 9.77e-08, - "cavalrymen": 9.77e-08, - "caws": 9.77e-08, - "cex": 9.77e-08, - "challange": 9.77e-08, - "chanelle": 9.77e-08, - "changan": 9.77e-08, - "chargebacks": 9.77e-08, - "chemokines": 9.77e-08, - "chg": 9.77e-08, - "chines": 9.77e-08, - "chlo": 9.77e-08, - "chomskys": 9.77e-08, - "christiaan": 9.77e-08, - "cinematograph": 9.77e-08, - "cips": 9.77e-08, - "citic": 9.77e-08, - "cjc": 9.77e-08, - "clenbuterol": 9.77e-08, - "clinger": 9.77e-08, - "clownish": 9.77e-08, - "clozapine": 9.77e-08, - "clunker": 9.77e-08, - "coaling": 9.77e-08, - "coas": 9.77e-08, - "cobby": 9.77e-08, - "cochineal": 9.77e-08, - "cocksure": 9.77e-08, - "coconino": 9.77e-08, - "cohere": 9.77e-08, - "colebrook": 9.77e-08, - "colla": 9.77e-08, - "collegiality": 9.77e-08, - "colli": 9.77e-08, - "commitee": 9.77e-08, - "coningsby": 9.77e-08, - "continously": 9.77e-08, - "contracture": 9.77e-08, - "contrarily": 9.77e-08, - "conurbation": 9.77e-08, - "cooperman": 9.77e-08, - "corus": 9.77e-08, - "coryell": 9.77e-08, - "coterminous": 9.77e-08, - "coto": 9.77e-08, - "cottonseed": 9.77e-08, - "couper": 9.77e-08, - "cowdrey": 9.77e-08, - "cpk": 9.77e-08, - "craighead": 9.77e-08, - "crawly": 9.77e-08, - "crazes": 9.77e-08, - "creekside": 9.77e-08, - "cruden": 9.77e-08, - "ctw": 9.77e-08, - "cuckolding": 9.77e-08, - "culley": 9.77e-08, - "cvi": 9.77e-08, - "cyberman": 9.77e-08, - "dacron": 9.77e-08, - "daihatsu": 9.77e-08, - "daintree": 9.77e-08, - "dalloway": 9.77e-08, - "dalys": 9.77e-08, - "dandies": 9.77e-08, - "danmark": 9.77e-08, - "darkies": 9.77e-08, - "darul": 9.77e-08, - "dary": 9.77e-08, - "dawdling": 9.77e-08, - "deader": 9.77e-08, - "deadlocks": 9.77e-08, - "decanted": 9.77e-08, - "decodes": 9.77e-08, - "deferments": 9.77e-08, - "definetely": 9.77e-08, - "deflates": 9.77e-08, - "defrocked": 9.77e-08, - "dehaan": 9.77e-08, - "delafield": 9.77e-08, - "delillo": 9.77e-08, - "demarest": 9.77e-08, - "denarius": 9.77e-08, - "denso": 9.77e-08, - "deven": 9.77e-08, - "diaphragmatic": 9.77e-08, - "diarra": 9.77e-08, - "dickman": 9.77e-08, - "dieng": 9.77e-08, - "dilaurentis": 9.77e-08, - "dillion": 9.77e-08, - "dilshan": 9.77e-08, - "directionally": 9.77e-08, - "disallows": 9.77e-08, - "dissidence": 9.77e-08, - "dollys": 9.77e-08, - "dolo": 9.77e-08, - "domestica": 9.77e-08, - "donizetti": 9.77e-08, - "donnybrook": 9.77e-08, - "donohoe": 9.77e-08, - "doodled": 9.77e-08, - "doorbells": 9.77e-08, - "dopest": 9.77e-08, - "doubloons": 9.77e-08, - "dozy": 9.77e-08, - "dramaturgy": 9.77e-08, - "dreamz": 9.77e-08, - "driggs": 9.77e-08, - "drogue": 9.77e-08, - "duch": 9.77e-08, - "ealy": 9.77e-08, - "earthers": 9.77e-08, - "earthmoving": 9.77e-08, - "eber": 9.77e-08, - "ebo": 9.77e-08, - "efraim": 9.77e-08, - "eger": 9.77e-08, - "electrum": 9.77e-08, - "elephantine": 9.77e-08, - "emasculate": 9.77e-08, - "emasculation": 9.77e-08, - "encumbrances": 9.77e-08, - "endotoxin": 9.77e-08, - "engstrom": 9.77e-08, - "eog": 9.77e-08, - "eosinophils": 9.77e-08, - "epik": 9.77e-08, - "eprom": 9.77e-08, - "escobedo": 9.77e-08, - "esmail": 9.77e-08, - "estaing": 9.77e-08, - "ethelbert": 9.77e-08, - "eul": 9.77e-08, - "eunji": 9.77e-08, - "everbody": 9.77e-08, - "everhart": 9.77e-08, - "exactness": 9.77e-08, - "exciter": 9.77e-08, - "execrable": 9.77e-08, - "extinguishes": 9.77e-08, - "extramural": 9.77e-08, - "fabiola": 9.77e-08, - "fantasise": 9.77e-08, - "farlow": 9.77e-08, - "farnell": 9.77e-08, - "fascinatingly": 9.77e-08, - "fawaz": 9.77e-08, - "fcw": 9.77e-08, - "fdn": 9.77e-08, - "femina": 9.77e-08, - "femurs": 9.77e-08, - "fenrir": 9.77e-08, - "festoon": 9.77e-08, - "fifer": 9.77e-08, - "fillip": 9.77e-08, - "fincham": 9.77e-08, - "finnair": 9.77e-08, - "firehose": 9.77e-08, - "flailed": 9.77e-08, - "flapjacks": 9.77e-08, - "flashers": 9.77e-08, - "flatulent": 9.77e-08, - "flyaway": 9.77e-08, - "fmd": 9.77e-08, - "foetuses": 9.77e-08, - "folha": 9.77e-08, - "fontane": 9.77e-08, - "fow": 9.77e-08, - "foxholes": 9.77e-08, - "frappe": 9.77e-08, - "frazee": 9.77e-08, - "fredy": 9.77e-08, - "frits": 9.77e-08, - "fucky": 9.77e-08, - "fuckyou": 9.77e-08, - "fulcher": 9.77e-08, - "fyre": 9.77e-08, - "gabo": 9.77e-08, - "gails": 9.77e-08, - "gainey": 9.77e-08, - "galera": 9.77e-08, - "galette": 9.77e-08, - "gangrenous": 9.77e-08, - "gangstas": 5.13e-08, - "gargan": 9.77e-08, - "gastropub": 9.77e-08, - "gattaca": 9.77e-08, - "gavroche": 9.77e-08, - "gbl": 9.77e-08, - "gebhardt": 9.77e-08, - "genx": 9.77e-08, - "geol": 9.77e-08, - "ghia": 9.77e-08, - "gilf": 9.77e-08, - "ginos": 9.77e-08, - "gkn": 9.77e-08, - "glossier": 9.77e-08, - "goddards": 9.77e-08, - "golconda": 9.77e-08, - "gompers": 9.77e-08, - "gossiped": 9.77e-08, - "goulart": 9.77e-08, - "gpg": 9.77e-08, - "grana": 9.77e-08, - "grandmasters": 9.77e-08, - "gregorius": 9.77e-08, - "gropius": 9.77e-08, - "guilbert": 9.77e-08, - "guyon": 9.77e-08, - "gza": 9.77e-08, - "hackable": 9.77e-08, - "haga": 9.77e-08, - "halftone": 9.77e-08, - "halong": 9.77e-08, - "halyard": 9.77e-08, - "hamburgs": 9.77e-08, - "hamby": 9.77e-08, - "hany": 9.77e-08, - "haroun": 9.77e-08, - "hawkman": 9.77e-08, - "hayle": 9.77e-08, - "haymaker": 9.77e-08, - "hej": 9.77e-08, - "helbig": 9.77e-08, - "hellenism": 9.77e-08, - "hemant": 9.77e-08, - "henge": 9.77e-08, - "hennings": 9.77e-08, - "herbalism": 9.77e-08, - "hetman": 9.77e-08, - "heure": 9.77e-08, - "heuvel": 9.77e-08, - "heydon": 9.77e-08, - "heyes": 9.77e-08, - "hippest": 9.77e-08, - "hitoshi": 9.77e-08, - "hominy": 9.77e-08, - "homologue": 9.77e-08, - "homologues": 9.77e-08, - "horrifies": 9.77e-08, - "houseboats": 9.77e-08, - "houzz": 9.77e-08, - "huangs": 9.77e-08, - "huebner": 9.77e-08, - "huger": 9.77e-08, - "huk": 9.77e-08, - "hurler": 9.77e-08, - "hurly": 9.77e-08, - "hyd": 9.77e-08, - "hypercholesterolemia": 9.77e-08, - "iah": 9.77e-08, - "iberville": 9.77e-08, - "ibook": 9.77e-08, - "ihm": 9.77e-08, - "ilr": 9.77e-08, - "ilyushin": 9.77e-08, - "immunoglobulins": 9.77e-08, - "improvers": 9.77e-08, - "incel": 9.77e-08, - "inerrancy": 9.77e-08, - "infrasound": 9.77e-08, - "ingushetia": 9.77e-08, - "inkigayo": 9.77e-08, - "instantiate": 9.77e-08, - "intermix": 9.77e-08, - "interna": 9.77e-08, - "interpols": 9.77e-08, - "intimating": 9.77e-08, - "inundating": 9.77e-08, - "inviolability": 9.77e-08, - "irredeemably": 9.77e-08, - "isabels": 9.77e-08, - "iscsi": 9.77e-08, - "ivi": 9.77e-08, - "jailbird": 9.77e-08, - "jamel": 9.77e-08, - "janner": 9.77e-08, - "jetzt": 9.77e-08, - "jillette": 9.77e-08, - "jlr": 9.77e-08, - "jod": 9.77e-08, - "joye": 9.77e-08, - "jss": 9.77e-08, - "jts": 8.51e-08, - "juicier": 9.77e-08, - "jujutsu": 9.77e-08, - "junctures": 9.77e-08, - "kadam": 9.77e-08, - "kadima": 9.77e-08, - "kahani": 9.77e-08, - "kandel": 9.77e-08, - "kangana": 9.77e-08, - "kawada": 9.77e-08, - "kawashima": 9.77e-08, - "kef": 9.77e-08, - "kenmare": 9.77e-08, - "kerbs": 9.77e-08, - "khor": 9.77e-08, - "khumalo": 9.77e-08, - "khurram": 9.77e-08, - "kiang": 9.77e-08, - "kielbasa": 9.77e-08, - "kindof": 9.77e-08, - "kinnaird": 9.77e-08, - "kiras": 9.77e-08, - "kirstin": 9.77e-08, - "kittery": 9.77e-08, - "kleinfeld": 9.77e-08, - "klipsch": 9.77e-08, - "knaves": 9.77e-08, - "knebworth": 9.77e-08, - "knifepoint": 9.77e-08, - "kotak": 9.77e-08, - "kotter": 9.77e-08, - "kreuzberg": 9.77e-08, - "krohn": 9.77e-08, - "kuantan": 9.77e-08, - "kurnool": 9.77e-08, - "kus": 9.77e-08, - "kyon": 9.77e-08, - "lable": 9.77e-08, - "lachey": 9.77e-08, - "ladybirds": 9.77e-08, - "lalique": 9.77e-08, - "laminin": 9.77e-08, - "lamothe": 9.77e-08, - "landholdings": 9.77e-08, - "landman": 9.77e-08, - "laoghaire": 9.77e-08, - "lapsing": 9.77e-08, - "laserdisc": 9.77e-08, - "lebensraum": 9.77e-08, - "lebesgue": 9.77e-08, - "lebo": 9.77e-08, - "leese": 9.77e-08, - "lefferts": 9.77e-08, - "legitimised": 9.77e-08, - "lesseps": 9.77e-08, - "levered": 9.77e-08, - "leyen": 9.77e-08, - "liban": 9.77e-08, - "lilla": 9.77e-08, - "linolenic": 9.77e-08, - "lithia": 9.77e-08, - "liya": 9.77e-08, - "lmi": 9.77e-08, - "loka": 9.77e-08, - "longleaf": 9.77e-08, - "loulou": 9.77e-08, - "lowlifes": 9.77e-08, - "lowrider": 9.77e-08, - "loxley": 9.77e-08, - "lpd": 9.77e-08, - "luda": 9.77e-08, - "macmurray": 9.77e-08, - "macnab": 9.77e-08, - "madrassa": 9.77e-08, - "mahr": 9.77e-08, - "maken": 9.77e-08, - "maley": 9.77e-08, - "mallam": 9.77e-08, - "maloof": 9.77e-08, - "mals": 6.61e-08, - "malzahn": 9.77e-08, - "mamta": 9.77e-08, - "mankiewicz": 9.77e-08, - "manto": 9.77e-08, - "manulife": 9.77e-08, - "manumission": 9.77e-08, - "maranatha": 9.77e-08, - "marchisio": 9.77e-08, - "mariani": 9.77e-08, - "maribyrnong": 9.77e-08, - "marija": 9.77e-08, - "masefield": 9.77e-08, - "mashes": 9.77e-08, - "maslows": 9.77e-08, - "masten": 9.77e-08, - "matanzas": 9.77e-08, - "maughan": 9.77e-08, - "mauri": 9.77e-08, - "maurya": 9.77e-08, - "mazing": 9.77e-08, - "mckie": 9.77e-08, - "mckittrick": 9.77e-08, - "mcmanaman": 9.77e-08, - "mcneely": 9.77e-08, - "mcwhorter": 9.77e-08, - "medgar": 9.77e-08, - "megastore": 9.77e-08, - "menahem": 9.77e-08, - "menino": 9.77e-08, - "merchandisers": 9.77e-08, - "metacognition": 9.77e-08, - "metallo": 9.77e-08, - "methyltransferase": 9.77e-08, - "mhl": 9.77e-08, - "micaela": 9.77e-08, - "micki": 9.77e-08, - "microcode": 9.77e-08, - "mij": 9.77e-08, - "minim": 9.77e-08, - "minkoff": 9.77e-08, - "minoxidil": 9.77e-08, - "mirchi": 9.77e-08, - "misstatement": 9.77e-08, - "mitrovica": 9.77e-08, - "mobilizations": 9.77e-08, - "modders": 9.77e-08, - "mohler": 9.77e-08, - "moire": 9.77e-08, - "momoko": 9.77e-08, - "monge": 9.77e-08, - "monnet": 9.77e-08, - "montford": 9.77e-08, - "montt": 9.77e-08, - "moorgate": 9.77e-08, - "morea": 9.77e-08, - "morels": 9.77e-08, - "morpho": 9.77e-08, - "morwell": 9.77e-08, - "motilal": 9.77e-08, - "motorman": 9.77e-08, - "moulting": 9.77e-08, - "mugler": 9.77e-08, - "multispectral": 9.77e-08, - "mumsnet": 9.77e-08, - "munchs": 9.77e-08, - "myoglobin": 9.77e-08, - "naah": 9.77e-08, - "naco": 9.77e-08, - "najeeb": 9.77e-08, - "nakanishi": 9.77e-08, - "nakata": 9.77e-08, - "nannie": 9.77e-08, - "naseer": 9.77e-08, - "naturae": 9.77e-08, - "naturism": 9.77e-08, - "nayar": 9.77e-08, - "ncic": 9.77e-08, - "ncw": 9.77e-08, - "nearshore": 9.77e-08, - "neccessary": 9.77e-08, - "nelspruit": 9.77e-08, - "neurochemical": 9.77e-08, - "neurovascular": 9.77e-08, - "neuve": 9.77e-08, - "nicaraguans": 9.77e-08, - "nimes": 9.77e-08, - "nkt": 9.77e-08, - "nmi": 9.77e-08, - "noemi": 9.77e-08, - "noname": 9.77e-08, - "nondenominational": 9.77e-08, - "nonunion": 9.77e-08, - "noord": 9.77e-08, - "normanton": 9.77e-08, - "norseman": 9.77e-08, - "nouveaux": 9.77e-08, - "nowdays": 9.77e-08, - "nsb": 9.77e-08, - "nsk": 9.77e-08, - "nurmagomedov": 9.77e-08, - "nystrom": 9.77e-08, - "odoherty": 9.77e-08, - "oakton": 9.77e-08, - "oarsmen": 9.77e-08, - "obligates": 9.77e-08, - "odeh": 9.77e-08, - "ohanian": 9.77e-08, - "ohn": 9.77e-08, - "oikos": 9.77e-08, - "ojibwa": 9.77e-08, - "oku": 9.77e-08, - "olan": 9.77e-08, - "oligosaccharides": 9.77e-08, - "onam": 9.77e-08, - "opelika": 9.77e-08, - "oratorios": 9.77e-08, - "ordaining": 9.77e-08, - "orrery": 9.77e-08, - "orvis": 9.77e-08, - "osmund": 9.77e-08, - "osten": 9.77e-08, - "otani": 9.77e-08, - "outloud": 9.77e-08, - "outweighing": 9.77e-08, - "overstaying": 9.77e-08, - "overusing": 9.77e-08, - "overwinter": 9.77e-08, - "oviposition": 9.77e-08, - "paining": 9.77e-08, - "paire": 9.77e-08, - "parasailing": 9.77e-08, - "paratransit": 9.77e-08, - "parsis": 9.77e-08, - "parthenogenesis": 9.77e-08, - "parvovirus": 9.77e-08, - "patentee": 9.77e-08, - "patronymic": 9.77e-08, - "pawed": 9.77e-08, - "payola": 9.77e-08, - "paypals": 9.77e-08, - "pbi": 9.77e-08, - "pdu": 9.77e-08, - "pentecostalism": 9.77e-08, - "percolator": 9.77e-08, - "perro": 9.77e-08, - "pflp": 9.77e-08, - "pharah": 9.77e-08, - "phillipa": 9.77e-08, - "photoshops": 9.77e-08, - "piacenza": 9.77e-08, - "pictish": 9.77e-08, - "pinprick": 9.77e-08, - "piqua": 9.77e-08, - "plasterers": 9.77e-08, - "playgirl": 9.77e-08, - "plumstead": 9.77e-08, - "poesie": 9.77e-08, - "polkinghorne": 9.77e-08, - "polychlorinated": 9.77e-08, - "polyclinic": 9.77e-08, - "polygyny": 9.77e-08, - "ponyo": 9.77e-08, - "popescu": 9.77e-08, - "portioned": 9.77e-08, - "possi": 9.77e-08, - "postdocs": 9.77e-08, - "prasanna": 9.77e-08, - "pratchetts": 9.77e-08, - "predominating": 9.77e-08, - "pretentiousness": 9.77e-08, - "prieta": 9.77e-08, - "problemo": 9.77e-08, - "procrastinators": 9.77e-08, - "progeria": 9.77e-08, - "propagator": 9.77e-08, - "propyl": 9.77e-08, - "prydz": 9.77e-08, - "pten": 9.77e-08, - "pumpin": 9.77e-08, - "putatively": 9.77e-08, - "putumayo": 9.77e-08, - "qassim": 9.77e-08, - "racal": 9.77e-08, - "ragamuffin": 9.77e-08, - "ragusa": 9.77e-08, - "rahab": 9.77e-08, - "rancheria": 9.77e-08, - "rashard": 9.77e-08, - "rattigan": 9.77e-08, - "rcaf": 9.77e-08, - "rdj": 9.77e-08, - "reciprocates": 9.77e-08, - "redbone": 9.77e-08, - "reducers": 9.77e-08, - "refugio": 9.77e-08, - "regularities": 9.77e-08, - "relaxants": 9.77e-08, - "remasters": 9.77e-08, - "repast": 9.77e-08, - "repton": 9.77e-08, - "restructurings": 9.77e-08, - "retford": 9.77e-08, - "revolutionising": 9.77e-08, - "rew": 9.77e-08, - "reynosa": 9.77e-08, - "rhod": 9.77e-08, - "richthofen": 9.77e-08, - "rideout": 9.77e-08, - "rimless": 9.77e-08, - "rinos": 9.77e-08, - "rivulet": 9.77e-08, - "rmn": 9.77e-08, - "roda": 9.77e-08, - "rodriquez": 9.77e-08, - "rohn": 9.77e-08, - "romps": 9.77e-08, - "roofless": 9.77e-08, - "roseanna": 9.77e-08, - "rosenbloom": 9.77e-08, - "rossellini": 9.77e-08, - "rotax": 9.77e-08, - "rottnest": 9.77e-08, - "rpd": 9.77e-08, - "rudolphs": 9.77e-08, - "runyan": 9.77e-08, - "rusi": 9.77e-08, - "ryegrass": 9.77e-08, - "ryley": 9.77e-08, - "saarinen": 9.77e-08, - "sabor": 9.77e-08, - "sadik": 9.77e-08, - "saiki": 9.77e-08, - "saliba": 9.77e-08, - "saltillo": 9.77e-08, - "sameera": 9.77e-08, - "sandbach": 9.77e-08, - "sauter": 9.77e-08, - "sbm": 9.77e-08, - "schemers": 9.77e-08, - "schoo": 9.77e-08, - "schoolkids": 9.77e-08, - "scio": 9.77e-08, - "scow": 9.77e-08, - "scrimp": 9.77e-08, - "scrutinising": 9.77e-08, - "scuola": 9.77e-08, - "scupper": 9.77e-08, - "sdram": 9.77e-08, - "seaters": 9.77e-08, - "seba": 9.77e-08, - "sele": 9.77e-08, - "sellable": 9.77e-08, - "semtex": 9.77e-08, - "seni": 9.77e-08, - "sequoyah": 9.77e-08, - "servius": 9.77e-08, - "sewanee": 9.77e-08, - "sfl": 9.77e-08, - "shadrach": 9.77e-08, - "shafting": 9.77e-08, - "shags": 9.77e-08, - "shankill": 9.77e-08, - "shanklin": 9.77e-08, - "sharpay": 9.77e-08, - "shb": 9.77e-08, - "sheil": 9.77e-08, - "shinedown": 9.77e-08, - "shrewdness": 9.77e-08, - "sibel": 9.77e-08, - "sifter": 9.77e-08, - "silverlake": 9.77e-08, - "sinterklaas": 9.77e-08, - "siwa": 9.77e-08, - "skeen": 9.77e-08, - "skulduggery": 9.77e-08, - "skylake": 9.77e-08, - "slimeball": 9.77e-08, - "slithers": 9.77e-08, - "slovakias": 9.77e-08, - "smil": 9.77e-08, - "smithtown": 9.77e-08, - "sogo": 9.77e-08, - "solenoids": 9.77e-08, - "soliton": 9.77e-08, - "solitons": 9.77e-08, - "somerhalder": 9.77e-08, - "sooraj": 9.77e-08, - "soules": 9.77e-08, - "spacemen": 9.77e-08, - "spacewalks": 9.77e-08, - "spaciousness": 9.77e-08, - "speciale": 9.77e-08, - "spelunking": 9.77e-08, - "spinney": 9.77e-08, - "sportswoman": 9.77e-08, - "spotswood": 9.77e-08, - "spottiswoode": 9.77e-08, - "squirms": 9.77e-08, - "steelbook": 9.77e-08, - "steinman": 9.77e-08, - "stelios": 9.77e-08, - "stephenville": 9.77e-08, - "steuart": 9.77e-08, - "stier": 9.77e-08, - "stihl": 9.77e-08, - "stonehill": 9.77e-08, - "stopovers": 9.77e-08, - "stotts": 9.77e-08, - "stouts": 9.77e-08, - "streamflow": 9.77e-08, - "striper": 9.77e-08, - "strome": 9.77e-08, - "strunk": 9.77e-08, - "subdividing": 9.77e-08, - "subdomains": 9.77e-08, - "subseries": 9.77e-08, - "sundaram": 9.77e-08, - "superheros": 5.5e-08, - "supersymmetric": 9.77e-08, - "suzaku": 9.77e-08, - "swadeshi": 9.77e-08, - "swainson": 9.77e-08, - "swansons": 9.77e-08, - "swb": 9.77e-08, - "sweatin": 9.77e-08, - "swinson": 9.77e-08, - "sydow": 9.77e-08, - "symphonia": 9.77e-08, - "tableland": 9.77e-08, - "tako": 9.77e-08, - "talaq": 9.77e-08, - "tammie": 9.77e-08, - "tampines": 9.77e-08, - "tarpaulins": 9.77e-08, - "tattooist": 9.77e-08, - "tatums": 9.77e-08, - "tdma": 9.77e-08, - "tealc": 9.77e-08, - "teeters": 9.77e-08, - "tejano": 9.77e-08, - "telecommute": 9.77e-08, - "temer": 9.77e-08, - "tendo": 9.77e-08, - "tenens": 9.77e-08, - "tenga": 9.77e-08, - "terephthalate": 9.77e-08, - "teres": 9.77e-08, - "terraform": 9.77e-08, - "tessellation": 9.77e-08, - "tetons": 9.77e-08, - "theremin": 9.77e-08, - "thermistor": 9.77e-08, - "thiam": 9.77e-08, - "thuds": 9.77e-08, - "tiebreakers": 9.77e-08, - "tignes": 9.77e-08, - "tirith": 9.77e-08, - "tlm": 9.77e-08, - "toastmaster": 9.77e-08, - "tobermory": 9.77e-08, - "tole": 9.77e-08, - "topspin": 9.77e-08, - "torey": 9.77e-08, - "tosi": 9.77e-08, - "tossers": 9.77e-08, - "towcester": 9.77e-08, - "townsman": 9.77e-08, - "townsmen": 9.77e-08, - "trabecular": 9.77e-08, - "transcriptome": 9.77e-08, - "transgene": 9.77e-08, - "transgressors": 9.77e-08, - "traub": 9.77e-08, - "tremblant": 9.77e-08, - "trigonal": 9.77e-08, - "trivalent": 9.77e-08, - "truelove": 9.77e-08, - "tsuji": 9.77e-08, - "tsum": 9.77e-08, - "tul": 9.77e-08, - "turgeon": 9.77e-08, - "turnt": 9.77e-08, - "turtlenecks": 9.77e-08, - "tvb": 9.77e-08, - "twentynine": 9.77e-08, - "twitchell": 9.77e-08, - "uap": 9.77e-08, - "ubiquitously": 9.77e-08, - "unbuttoning": 9.77e-08, - "unceasingly": 9.77e-08, - "underreporting": 9.77e-08, - "undervaluing": 9.77e-08, - "unglazed": 9.77e-08, - "ungraded": 9.77e-08, - "unicron": 9.77e-08, - "unkindly": 9.77e-08, - "unn": 9.77e-08, - "unobservable": 9.77e-08, - "unselfishly": 9.77e-08, - "unsexy": 9.77e-08, - "unsheathed": 9.77e-08, - "upcycling": 9.77e-08, - "upn": 9.77e-08, - "usborne": 9.77e-08, - "usmle": 9.77e-08, - "ussrs": 9.77e-08, - "uth": 9.77e-08, - "vallon": 9.77e-08, - "vangelis": 9.77e-08, - "vanni": 9.77e-08, - "vaporeon": 9.77e-08, - "varvara": 9.77e-08, - "vasant": 9.77e-08, - "veb": 9.77e-08, - "ventnor": 9.77e-08, - "venu": 9.77e-08, - "vernor": 9.77e-08, - "veron": 9.77e-08, - "viel": 9.77e-08, - "vinaya": 9.77e-08, - "vint": 9.77e-08, - "vireo": 9.77e-08, - "vlt": 9.77e-08, - "vna": 9.77e-08, - "vnd": 9.77e-08, - "voix": 9.77e-08, - "voronoi": 9.77e-08, - "voyeurs": 9.77e-08, - "vronsky": 9.77e-08, - "vsp": 9.77e-08, - "vtech": 9.77e-08, - "waht": 9.77e-08, - "walzer": 9.77e-08, - "wambach": 9.77e-08, - "wanaka": 9.77e-08, - "warsaws": 9.77e-08, - "wasco": 9.77e-08, - "wedging": 9.77e-08, - "weinheim": 9.77e-08, - "westie": 9.77e-08, - "westlands": 9.77e-08, - "wfaa": 9.77e-08, - "whaa": 9.77e-08, - "whiffs": 9.77e-08, - "whiteface": 9.77e-08, - "whitely": 9.77e-08, - "whoopsie": 9.77e-08, - "wigley": 9.77e-08, - "wireframe": 9.77e-08, - "wisden": 9.77e-08, - "wolfhound": 9.77e-08, - "worldcup": 9.77e-08, - "wotc": 9.77e-08, - "xxxl": 9.77e-08, - "yamanaka": 9.77e-08, - "ylang": 9.77e-08, - "yoona": 9.77e-08, - "yoweri": 9.77e-08, - "yumiko": 9.77e-08, - "zapruder": 9.77e-08, - "zeebrugge": 9.77e-08, - "zeldas": 9.77e-08, - "zeph": 9.77e-08, - "zhuo": 9.77e-08, - "zigbee": 9.77e-08, - "zio": 9.77e-08, - "ziti": 9.77e-08, - "zizek": 9.77e-08, - "zohra": 9.77e-08, - "zoroastrians": 9.77e-08, - "zydeco": 9.77e-08, - "abboud": 9.55e-08, - "acceding": 9.55e-08, - "accumulative": 9.55e-08, - "acdc": 9.55e-08, - "acetylcholinesterase": 9.55e-08, - "adesanya": 9.55e-08, - "advocaat": 9.55e-08, - "adx": 9.55e-08, - "aecom": 9.55e-08, - "afdb": 9.55e-08, - "afer": 9.55e-08, - "aflatoxin": 9.55e-08, - "agama": 9.55e-08, - "agriculturist": 9.55e-08, - "akemi": 9.55e-08, - "alde": 9.55e-08, - "allport": 9.55e-08, - "allsopp": 9.55e-08, - "almonte": 9.55e-08, - "alphonsus": 9.55e-08, - "amey": 9.55e-08, - "amperes": 9.55e-08, - "anaesthetists": 9.55e-08, - "andr": 9.55e-08, - "anons": 9.55e-08, - "anquan": 9.55e-08, - "aparna": 9.55e-08, - "appletv": 9.55e-08, - "appreciations": 9.55e-08, - "archana": 9.55e-08, - "archetypical": 9.55e-08, - "arenal": 9.55e-08, - "aristo": 9.55e-08, - "armful": 9.55e-08, - "artaud": 9.55e-08, - "asci": 9.55e-08, - "asds": 9.55e-08, - "ashlar": 9.55e-08, - "asriel": 9.55e-08, - "astronautical": 9.55e-08, - "audrina": 9.55e-08, - "auricular": 9.55e-08, - "azan": 9.55e-08, - "azerbaijanis": 9.55e-08, - "bagheera": 9.55e-08, - "ballys": 9.55e-08, - "bamm": 9.55e-08, - "bandeau": 9.55e-08, - "bandpass": 9.55e-08, - "bandwidths": 9.55e-08, - "barbee": 9.55e-08, - "barbel": 9.55e-08, - "barristan": 9.55e-08, - "basecamp": 9.55e-08, - "basilio": 9.55e-08, - "batistas": 9.55e-08, - "bayous": 9.55e-08, - "beachcomber": 9.55e-08, - "bellhop": 9.55e-08, - "belov": 9.55e-08, - "bergoglio": 9.55e-08, - "bessarabia": 9.55e-08, - "bethpage": 9.55e-08, - "bhel": 9.55e-08, - "billingsgate": 9.55e-08, - "biogen": 9.55e-08, - "biomimetic": 9.55e-08, - "biot": 9.55e-08, - "birdsall": 9.55e-08, - "birdwatchers": 9.55e-08, - "bizet": 9.55e-08, - "bizzy": 9.55e-08, - "blackbox": 9.55e-08, - "blackheart": 9.55e-08, - "blahnik": 9.55e-08, - "blares": 9.55e-08, - "blunden": 9.55e-08, - "bmps": 9.55e-08, - "bnei": 9.55e-08, - "bodi": 9.55e-08, - "bolen": 9.55e-08, - "borda": 9.55e-08, - "borgias": 9.55e-08, - "boscombe": 9.55e-08, - "bpr": 9.55e-08, - "bramhall": 9.55e-08, - "brax": 9.55e-08, - "breakages": 9.55e-08, - "breakdance": 9.55e-08, - "breaky": 9.55e-08, - "brickhouse": 9.55e-08, - "brid": 9.55e-08, - "brighouse": 9.55e-08, - "bringeth": 9.55e-08, - "brooking": 9.55e-08, - "brunetti": 9.55e-08, - "bte": 9.55e-08, - "budi": 9.55e-08, - "bufo": 9.55e-08, - "bugis": 9.55e-08, - "bukharin": 9.55e-08, - "bullfights": 9.55e-08, - "bunking": 9.55e-08, - "burnette": 9.55e-08, - "butera": 9.55e-08, - "butland": 9.55e-08, - "butterfingers": 9.55e-08, - "buz": 9.55e-08, - "buzzfeeds": 9.55e-08, - "byam": 9.55e-08, - "bythe": 9.55e-08, - "caitlins": 9.55e-08, - "calculi": 9.55e-08, - "caldwells": 9.55e-08, - "camming": 9.55e-08, - "camouflaging": 9.55e-08, - "candia": 9.55e-08, - "candu": 9.55e-08, - "cardstock": 9.55e-08, - "cardy": 9.55e-08, - "careened": 9.55e-08, - "carillo": 9.55e-08, - "carra": 9.55e-08, - "caruana": 9.55e-08, - "cassy": 9.55e-08, - "castors": 9.55e-08, - "catford": 9.55e-08, - "cdk": 9.55e-08, - "celebi": 9.55e-08, - "cenas": 9.55e-08, - "centum": 9.55e-08, - "cephas": 9.55e-08, - "cerny": 9.55e-08, - "chait": 9.55e-08, - "chandrashekhar": 9.55e-08, - "charisse": 9.55e-08, - "chavis": 9.55e-08, - "chela": 9.55e-08, - "cheyney": 9.55e-08, - "chievo": 9.55e-08, - "chifley": 9.55e-08, - "chiranjeevi": 9.55e-08, - "chiricahua": 9.55e-08, - "chitral": 9.55e-08, - "cica": 9.55e-08, - "citizenships": 9.55e-08, - "clavier": 9.55e-08, - "claymation": 9.55e-08, - "clopidogrel": 9.55e-08, - "clumpy": 9.55e-08, - "coffeehouses": 9.55e-08, - "cofounded": 9.55e-08, - "cohabit": 9.55e-08, - "coincidently": 9.55e-08, - "colima": 9.55e-08, - "colorism": 9.55e-08, - "compan": 9.55e-08, - "compte": 9.55e-08, - "conceits": 9.55e-08, - "conceptualised": 9.55e-08, - "congregationalists": 9.55e-08, - "consanguinity": 9.55e-08, - "consistant": 9.55e-08, - "controllability": 9.55e-08, - "convair": 9.55e-08, - "cookeville": 9.55e-08, - "cookouts": 9.55e-08, - "cootie": 9.55e-08, - "cornball": 9.55e-08, - "corollas": 9.55e-08, - "correctable": 9.55e-08, - "corrodes": 9.55e-08, - "corunna": 9.55e-08, - "counterweights": 9.55e-08, - "cowbells": 9.55e-08, - "cowden": 9.55e-08, - "cowgill": 9.55e-08, - "cowshed": 9.55e-08, - "cozens": 9.55e-08, - "crosss": 9.55e-08, - "currey": 9.55e-08, - "curtained": 9.55e-08, - "cyrille": 9.55e-08, - "czechia": 9.55e-08, - "damar": 9.55e-08, - "dameron": 9.55e-08, - "dasani": 9.55e-08, - "dasilva": 9.55e-08, - "dater": 9.55e-08, - "daycares": 9.55e-08, - "deas": 9.33e-08, - "decorous": 9.55e-08, - "dedi": 9.55e-08, - "deej": 9.55e-08, - "defibrillation": 9.55e-08, - "defiles": 9.55e-08, - "defranco": 9.55e-08, - "defs": 9.55e-08, - "dehydrator": 9.55e-08, - "delamere": 9.55e-08, - "demographer": 9.55e-08, - "denniston": 9.55e-08, - "depreciates": 9.55e-08, - "detoxifying": 9.55e-08, - "devane": 9.55e-08, - "devilman": 9.55e-08, - "devonte": 9.55e-08, - "dews": 9.55e-08, - "dida": 9.55e-08, - "diels": 9.55e-08, - "dieser": 9.55e-08, - "digestibility": 9.55e-08, - "dimensioned": 9.55e-08, - "dimitry": 9.55e-08, - "dionysos": 9.55e-08, - "disconcertingly": 9.55e-08, - "disembarkation": 9.55e-08, - "dismutase": 9.55e-08, - "dissipative": 9.55e-08, - "dissuading": 9.55e-08, - "distressingly": 9.55e-08, - "dmn": 9.55e-08, - "doolan": 9.55e-08, - "dooming": 9.55e-08, - "dormouse": 9.55e-08, - "dpw": 9.55e-08, - "draftee": 9.55e-08, - "drat": 9.55e-08, - "dreamless": 9.55e-08, - "drina": 9.55e-08, - "dropsy": 9.55e-08, - "dugong": 9.55e-08, - "dukat": 9.55e-08, - "dulcinea": 9.55e-08, - "dumaguete": 9.55e-08, - "duplo": 9.55e-08, - "dury": 9.55e-08, - "dwane": 9.55e-08, - "dweebs": 9.55e-08, - "dysons": 9.55e-08, - "earlham": 9.55e-08, - "earwigs": 9.55e-08, - "easterbrook": 9.55e-08, - "eaux": 9.55e-08, - "ebel": 9.55e-08, - "ecologies": 9.55e-08, - "edessa": 9.55e-08, - "edmonson": 9.55e-08, - "edsall": 9.55e-08, - "eem": 9.55e-08, - "effi": 9.55e-08, - "egift": 9.55e-08, - "egil": 9.55e-08, - "egotistic": 9.55e-08, - "eisler": 9.55e-08, - "ejaculates": 9.55e-08, - "electrocuting": 9.55e-08, - "electromagnetics": 9.55e-08, - "elen": 9.55e-08, - "ellingson": 9.55e-08, - "elora": 9.55e-08, - "empyrean": 9.55e-08, - "encaustic": 9.55e-08, - "endearingly": 9.55e-08, - "endonuclease": 9.55e-08, - "endows": 9.55e-08, - "enjoyably": 9.55e-08, - "enschede": 9.55e-08, - "epd": 9.55e-08, - "ephedra": 9.55e-08, - "erd": 9.55e-08, - "estep": 9.55e-08, - "estoril": 9.55e-08, - "ethnologist": 9.55e-08, - "etsi": 9.55e-08, - "evince": 9.55e-08, - "ewers": 9.55e-08, - "excitingly": 9.55e-08, - "exfoliated": 9.55e-08, - "exorcising": 9.55e-08, - "explicable": 9.55e-08, - "extragalactic": 9.55e-08, - "extrude": 9.55e-08, - "fabs": 9.55e-08, - "faff": 9.55e-08, - "fagot": 9.55e-08, - "fahmy": 9.55e-08, - "fais": 9.55e-08, - "fanfest": 9.55e-08, - "farmworker": 9.55e-08, - "faysal": 9.55e-08, - "feints": 9.55e-08, - "feldt": 9.55e-08, - "fettle": 9.55e-08, - "fichte": 9.55e-08, - "filleted": 9.55e-08, - "firstenergy": 9.55e-08, - "fishbein": 9.55e-08, - "fishkill": 9.55e-08, - "fitfully": 9.55e-08, - "fixit": 9.55e-08, - "flannigan": 9.55e-08, - "flashier": 9.55e-08, - "fledge": 9.55e-08, - "flin": 9.55e-08, - "fll": 9.55e-08, - "flowerpot": 9.55e-08, - "fnd": 9.55e-08, - "fondazione": 9.55e-08, - "fording": 9.55e-08, - "forewings": 9.55e-08, - "fost": 9.55e-08, - "foucaults": 9.55e-08, - "fourie": 9.55e-08, - "foxtail": 9.55e-08, - "fraulein": 9.55e-08, - "freiberg": 9.55e-08, - "fretless": 9.55e-08, - "fsl": 9.55e-08, - "fullerene": 9.55e-08, - "funchal": 9.55e-08, - "gabes": 9.55e-08, - "galashiels": 9.55e-08, - "galchenyuk": 9.55e-08, - "gamecock": 9.55e-08, - "gamemaker": 9.55e-08, - "gamete": 9.55e-08, - "geh": 9.55e-08, - "generico": 9.55e-08, - "gentium": 9.55e-08, - "geon": 9.55e-08, - "gesso": 9.55e-08, - "gfw": 9.55e-08, - "ginnie": 9.55e-08, - "giorgos": 9.55e-08, - "gloated": 9.55e-08, - "glorys": 9.55e-08, - "gloryhole": 9.55e-08, - "glossaries": 9.55e-08, - "gokus": 9.55e-08, - "goldberger": 9.55e-08, - "gonne": 9.55e-08, - "goodhart": 9.55e-08, - "gooseneck": 9.55e-08, - "gosden": 9.55e-08, - "graaf": 9.55e-08, - "grebes": 9.55e-08, - "greenie": 9.55e-08, - "gridded": 9.55e-08, - "groundhogs": 9.55e-08, - "groundsman": 9.55e-08, - "guarana": 9.55e-08, - "gulfs": 6.17e-08, - "gunsmoke": 9.55e-08, - "hagley": 9.55e-08, - "hagman": 9.55e-08, - "haise": 9.55e-08, - "harmattan": 9.55e-08, - "harmonising": 9.55e-08, - "harum": 9.55e-08, - "hashemite": 9.55e-08, - "hashi": 9.55e-08, - "hauppauge": 9.55e-08, - "hax": 9.55e-08, - "hefei": 9.55e-08, - "heideggers": 9.55e-08, - "helfrich": 9.55e-08, - "heraklion": 9.55e-08, - "hermiones": 9.55e-08, - "hern": 9.55e-08, - "herpesvirus": 9.55e-08, - "hertzberg": 9.55e-08, - "heterotrophic": 9.55e-08, - "hettie": 9.55e-08, - "hiddink": 9.55e-08, - "hieroglyph": 9.55e-08, - "higdon": 9.55e-08, - "hinshaw": 9.55e-08, - "hirono": 9.55e-08, - "hirt": 9.55e-08, - "hjalmar": 9.55e-08, - "hoeven": 9.55e-08, - "hordern": 9.55e-08, - "hotheaded": 9.55e-08, - "housebuilding": 9.55e-08, - "huis": 5.01e-08, - "hul": 9.55e-08, - "hundredfold": 9.55e-08, - "huni": 9.55e-08, - "hurstville": 9.55e-08, - "huxleys": 9.55e-08, - "hydrogeology": 9.55e-08, - "hydrolase": 9.55e-08, - "hydromorphone": 9.55e-08, - "hyp": 9.55e-08, - "hyperspectral": 9.55e-08, - "hypocrisies": 9.55e-08, - "ichiban": 9.55e-08, - "icsi": 9.55e-08, - "ideo": 9.55e-08, - "ifm": 9.55e-08, - "iheart": 9.55e-08, - "improviser": 9.55e-08, - "incendiaries": 9.55e-08, - "inducting": 9.55e-08, - "ingrate": 9.55e-08, - "innkeepers": 9.55e-08, - "inova": 9.55e-08, - "insecticidal": 9.55e-08, - "insufferably": 9.55e-08, - "interbreed": 9.55e-08, - "interlocutory": 9.55e-08, - "intranasal": 9.55e-08, - "invasiveness": 9.55e-08, - "irf": 9.55e-08, - "irradiating": 9.55e-08, - "ishi": 9.55e-08, - "iskra": 9.55e-08, - "itz": 9.55e-08, - "jaafar": 9.55e-08, - "jaegers": 9.55e-08, - "jakey": 9.55e-08, - "jamesons": 9.55e-08, - "jano": 9.55e-08, - "janowski": 9.55e-08, - "japa": 9.55e-08, - "jarryd": 9.55e-08, - "jaume": 9.55e-08, - "jbc": 9.55e-08, - "jci": 9.55e-08, - "jea": 9.55e-08, - "jered": 9.55e-08, - "jeremiahs": 9.55e-08, - "jeremias": 9.55e-08, - "jessamine": 9.55e-08, - "jetpacks": 9.55e-08, - "jettisoning": 9.55e-08, - "jingo": 9.55e-08, - "joffre": 9.55e-08, - "jone": 9.55e-08, - "jubilees": 9.55e-08, - "juggernauts": 9.55e-08, - "jur": 9.55e-08, - "justicia": 9.55e-08, - "kaddish": 9.55e-08, - "kafkaesque": 9.55e-08, - "kaila": 9.55e-08, - "kalish": 9.55e-08, - "kaneohe": 9.55e-08, - "katona": 9.55e-08, - "kawamura": 9.55e-08, - "kcr": 9.55e-08, - "kds": 9.12e-08, - "kdot": 9.55e-08, - "kellaway": 9.55e-08, - "kena": 9.55e-08, - "keylogger": 9.55e-08, - "kgo": 9.55e-08, - "khalif": 9.55e-08, - "khayyam": 9.55e-08, - "kias": 9.55e-08, - "kiama": 9.55e-08, - "kiloton": 9.55e-08, - "kindergartner": 9.55e-08, - "kircher": 9.55e-08, - "kiser": 9.55e-08, - "kitagawa": 9.55e-08, - "kmph": 9.55e-08, - "kohut": 9.55e-08, - "koln": 9.55e-08, - "korsakov": 9.55e-08, - "kovach": 9.55e-08, - "kovacic": 9.55e-08, - "kuen": 9.55e-08, - "kutner": 9.55e-08, - "kuwaitis": 9.55e-08, - "kwasi": 9.55e-08, - "kyong": 9.55e-08, - "lachapelle": 9.55e-08, - "lamellae": 9.55e-08, - "lamine": 9.55e-08, - "lancey": 9.55e-08, - "langerhans": 9.55e-08, - "lanta": 9.55e-08, - "lanyon": 9.55e-08, - "lasix": 9.55e-08, - "lasorda": 9.55e-08, - "lato": 9.55e-08, - "launderers": 9.55e-08, - "laurentiis": 9.55e-08, - "lautenberg": 9.55e-08, - "lavezzi": 9.55e-08, - "lawgiver": 9.55e-08, - "lba": 9.55e-08, - "lct": 9.55e-08, - "leachate": 9.55e-08, - "leaseback": 9.55e-08, - "leaseholders": 9.55e-08, - "lepton": 9.55e-08, - "leutnant": 9.55e-08, - "liaquat": 9.55e-08, - "libidinous": 9.55e-08, - "libitum": 9.55e-08, - "licinius": 9.55e-08, - "liles": 9.55e-08, - "linderman": 9.55e-08, - "literacies": 9.55e-08, - "lith": 9.55e-08, - "litten": 9.55e-08, - "llcs": 5.5e-08, - "lodestone": 9.55e-08, - "lohse": 9.55e-08, - "lold": 9.55e-08, - "lowlights": 9.55e-08, - "lpi": 9.55e-08, - "ltt": 9.55e-08, - "ludlum": 9.55e-08, - "macaca": 9.55e-08, - "macedonias": 9.55e-08, - "maceration": 9.55e-08, - "maco": 9.55e-08, - "madisonville": 9.55e-08, - "magmatism": 9.55e-08, - "makhachkala": 9.55e-08, - "malleus": 9.55e-08, - "malmaison": 9.55e-08, - "maltreated": 9.55e-08, - "mamelodi": 9.55e-08, - "mamluks": 9.55e-08, - "manar": 9.55e-08, - "manav": 9.55e-08, - "mandys": 9.55e-08, - "manoel": 9.55e-08, - "mantled": 9.55e-08, - "marinos": 8.91e-08, - "mariya": 9.55e-08, - "markell": 9.55e-08, - "martz": 9.55e-08, - "marussia": 9.55e-08, - "marwa": 9.55e-08, - "marylanders": 9.55e-08, - "materialists": 9.55e-08, - "matildas": 9.33e-08, - "mauboy": 9.55e-08, - "mauis": 9.55e-08, - "maximillian": 9.55e-08, - "mbh": 9.55e-08, - "mcchrystal": 9.55e-08, - "mcconnel": 9.55e-08, - "mcinnis": 9.55e-08, - "mckeesport": 9.55e-08, - "mcsweeney": 9.55e-08, - "medusas": 9.55e-08, - "mees": 9.55e-08, - "megacity": 9.55e-08, - "meiko": 9.55e-08, - "meller": 9.55e-08, - "mencius": 9.55e-08, - "mercian": 9.55e-08, - "merl": 9.55e-08, - "merrills": 9.55e-08, - "metheny": 9.55e-08, - "meting": 9.55e-08, - "meus": 9.55e-08, - "meyrick": 9.55e-08, - "mfl": 9.55e-08, - "microfluidics": 9.55e-08, - "midoriya": 9.55e-08, - "mikhailov": 9.55e-08, - "millis": 9.55e-08, - "millon": 9.55e-08, - "milnes": 6.31e-08, - "milward": 9.55e-08, - "mimed": 9.55e-08, - "minehead": 9.55e-08, - "minora": 9.55e-08, - "mirin": 9.55e-08, - "miscues": 9.55e-08, - "mishkin": 9.55e-08, - "mismo": 9.55e-08, - "missi": 9.55e-08, - "mnr": 9.55e-08, - "monaro": 9.55e-08, - "moneypenny": 9.55e-08, - "moraga": 9.55e-08, - "morlock": 9.55e-08, - "mrazek": 9.55e-08, - "mubaraks": 9.55e-08, - "mulhall": 9.55e-08, - "murderess": 9.55e-08, - "murnau": 9.55e-08, - "murrah": 9.55e-08, - "musab": 9.55e-08, - "muscling": 9.55e-08, - "muscovites": 9.55e-08, - "mutterings": 9.55e-08, - "mystically": 9.55e-08, - "naji": 9.55e-08, - "nalini": 9.55e-08, - "nanos": 9.55e-08, - "nanowire": 9.55e-08, - "nanu": 9.55e-08, - "naral": 9.55e-08, - "nasarawa": 9.55e-08, - "nauka": 9.55e-08, - "neonicotinoids": 9.55e-08, - "nestorian": 9.55e-08, - "neuwirth": 9.55e-08, - "newsmakers": 9.55e-08, - "niese": 9.55e-08, - "nightdress": 9.55e-08, - "nihilists": 9.55e-08, - "nipsey": 9.55e-08, - "nisan": 9.55e-08, - "niskanen": 9.55e-08, - "nll": 9.55e-08, - "nmp": 9.55e-08, - "nobbs": 9.55e-08, - "nobile": 9.55e-08, - "noboru": 9.55e-08, - "nofx": 9.55e-08, - "noli": 9.55e-08, - "noodling": 9.55e-08, - "noradrenaline": 9.55e-08, - "noticable": 9.55e-08, - "nowa": 9.55e-08, - "nuking": 9.55e-08, - "nuru": 9.55e-08, - "nyts": 9.55e-08, - "ogara": 9.55e-08, - "obelix": 9.55e-08, - "obligingly": 9.55e-08, - "offaly": 9.55e-08, - "oficina": 9.55e-08, - "ojos": 9.55e-08, - "olesen": 9.55e-08, - "oncorhynchus": 9.55e-08, - "opalescent": 9.55e-08, - "openvpn": 9.55e-08, - "ords": 9.55e-08, - "oriya": 9.55e-08, - "ormskirk": 9.55e-08, - "orthopedist": 9.55e-08, - "orvieto": 9.55e-08, - "osteoblasts": 9.55e-08, - "ostrom": 9.55e-08, - "otello": 9.55e-08, - "othering": 9.55e-08, - "otomo": 9.55e-08, - "ouran": 9.55e-08, - "outpaces": 9.55e-08, - "outspent": 9.55e-08, - "overfed": 9.55e-08, - "oversteer": 9.55e-08, - "overtaxed": 9.55e-08, - "pacesetter": 9.55e-08, - "pagerank": 9.55e-08, - "pakis": 9.55e-08, - "palladino": 9.55e-08, - "palmitate": 9.55e-08, - "palooza": 9.55e-08, - "pamir": 9.55e-08, - "panadol": 9.55e-08, - "panicum": 9.55e-08, - "papen": 9.55e-08, - "papules": 9.55e-08, - "parmigiano": 9.55e-08, - "paroxetine": 9.55e-08, - "partakers": 9.55e-08, - "parthia": 9.55e-08, - "pascua": 9.55e-08, - "passim": 9.55e-08, - "pastis": 9.55e-08, - "patchett": 9.55e-08, - "paulos": 9.55e-08, - "pdq": 9.55e-08, - "pedes": 9.55e-08, - "penge": 9.55e-08, - "penrod": 9.55e-08, - "pense": 9.55e-08, - "perfomance": 9.55e-08, - "pernille": 9.55e-08, - "pescara": 9.55e-08, - "petard": 9.55e-08, - "petrels": 9.55e-08, - "petya": 9.55e-08, - "phaedrus": 9.55e-08, - "phonographic": 9.55e-08, - "photobucket": 9.55e-08, - "piel": 9.55e-08, - "pims": 9.55e-08, - "pinchas": 9.55e-08, - "piques": 9.55e-08, - "plur": 9.55e-08, - "pocs": 9.55e-08, - "poisoner": 9.55e-08, - "pollocks": 9.55e-08, - "polokwane": 9.55e-08, - "polyandry": 9.55e-08, - "polymerized": 9.55e-08, - "polymorph": 9.55e-08, - "pompe": 9.55e-08, - "porton": 9.55e-08, - "portside": 9.55e-08, - "potchefstroom": 9.55e-08, - "ppps": 9.55e-08, - "prerelease": 9.55e-08, - "primero": 9.55e-08, - "propensities": 9.55e-08, - "proscription": 9.55e-08, - "prothero": 9.55e-08, - "provi": 9.55e-08, - "pshh": 9.55e-08, - "pufferfish": 9.55e-08, - "purnima": 9.55e-08, - "qh": 9.55e-08, - "queenslanders": 9.55e-08, - "quercetin": 9.55e-08, - "quigg": 9.55e-08, - "quintuplets": 9.55e-08, - "rabbah": 9.55e-08, - "rabbani": 9.55e-08, - "radiograph": 9.55e-08, - "raisman": 9.55e-08, - "rapido": 9.55e-08, - "rateable": 9.55e-08, - "ravis": 9.55e-08, - "reasserting": 9.55e-08, - "reawaken": 9.55e-08, - "rechecked": 9.55e-08, - "reconsiders": 9.55e-08, - "redis": 9.55e-08, - "redraft": 9.55e-08, - "rehan": 9.55e-08, - "reise": 9.55e-08, - "relents": 9.55e-08, - "reli": 9.55e-08, - "relight": 9.55e-08, - "reoriented": 9.55e-08, - "repped": 9.55e-08, - "reproof": 9.55e-08, - "republishing": 9.55e-08, - "revile": 9.55e-08, - "rhel": 9.55e-08, - "rijn": 9.55e-08, - "riling": 9.55e-08, - "rippin": 9.55e-08, - "rizk": 9.55e-08, - "roff": 9.55e-08, - "rogge": 9.55e-08, - "rollup": 9.55e-08, - "rompers": 9.55e-08, - "ronen": 9.55e-08, - "ronni": 9.55e-08, - "rosenwald": 9.55e-08, - "rotman": 9.55e-08, - "rowans": 9.55e-08, - "roybal": 9.55e-08, - "rugbys": 9.55e-08, - "ruiner": 9.55e-08, - "runnels": 9.55e-08, - "ruppert": 9.55e-08, - "russes": 9.55e-08, - "sacroiliac": 9.55e-08, - "sakuma": 9.55e-08, - "salvator": 9.55e-08, - "salvi": 9.55e-08, - "saskatchewans": 9.55e-08, - "savarkar": 9.55e-08, - "sayeth": 9.55e-08, - "sayn": 9.55e-08, - "sbn": 9.55e-08, - "sccm": 9.55e-08, - "schiavone": 9.55e-08, - "schoenfeld": 9.55e-08, - "schorr": 9.55e-08, - "schurrle": 9.55e-08, - "scientologys": 9.55e-08, - "scotian": 9.55e-08, - "scottys": 9.55e-08, - "sdu": 9.55e-08, - "secon": 9.55e-08, - "seersucker": 9.55e-08, - "selborne": 9.55e-08, - "shantytown": 9.55e-08, - "shapley": 9.55e-08, - "sheung": 9.55e-08, - "shigella": 9.55e-08, - "shingen": 9.55e-08, - "showbox": 9.55e-08, - "showdowns": 9.55e-08, - "shucked": 9.55e-08, - "siloam": 9.55e-08, - "simvastatin": 9.55e-08, - "sinc": 9.55e-08, - "singsong": 9.55e-08, - "sisu": 9.55e-08, - "slauson": 9.55e-08, - "slideshare": 9.55e-08, - "smartcard": 9.55e-08, - "smoltz": 9.55e-08, - "snapes": 9.55e-08, - "sne": 9.55e-08, - "snickered": 9.55e-08, - "sobeys": 9.55e-08, - "somer": 9.55e-08, - "somes": 9.55e-08, - "sophos": 9.55e-08, - "sotho": 9.55e-08, - "sphynx": 9.55e-08, - "spode": 9.55e-08, - "sprat": 9.55e-08, - "springwatch": 9.55e-08, - "spurns": 9.55e-08, - "sridhar": 9.55e-08, - "stabled": 9.55e-08, - "stai": 9.55e-08, - "standoffs": 9.55e-08, - "stauskas": 9.55e-08, - "steffan": 9.55e-08, - "stefon": 9.55e-08, - "stossel": 9.55e-08, - "stoutly": 9.55e-08, - "strummed": 9.55e-08, - "studie": 9.55e-08, - "studley": 9.55e-08, - "stuntmen": 9.55e-08, - "stylesheet": 9.55e-08, - "styria": 9.55e-08, - "subframe": 9.55e-08, - "subspecialty": 9.55e-08, - "subwoofers": 9.55e-08, - "succesfully": 9.55e-08, - "sucha": 9.55e-08, - "sukkot": 9.55e-08, - "sulked": 9.55e-08, - "sulks": 9.55e-08, - "sungs": 9.55e-08, - "sunn": 9.55e-08, - "sunshade": 9.55e-08, - "superfans": 9.55e-08, - "sutro": 9.55e-08, - "swags": 9.55e-08, - "swaine": 9.55e-08, - "swayamsevak": 9.55e-08, - "sweepstake": 9.55e-08, - "swimmin": 9.55e-08, - "swiveling": 9.55e-08, - "sylph": 9.55e-08, - "taraji": 9.55e-08, - "tarim": 9.55e-08, - "tarnovo": 9.55e-08, - "taxpaying": 9.55e-08, - "tcdd": 9.55e-08, - "tehsil": 9.55e-08, - "tendentious": 9.55e-08, - "tenochtitlan": 9.55e-08, - "tephra": 9.55e-08, - "theophrastus": 9.55e-08, - "thies": 9.55e-08, - "thp": 9.55e-08, - "thymidine": 9.55e-08, - "thyssenkrupp": 9.55e-08, - "tibets": 9.55e-08, - "tiong": 9.55e-08, - "toadstool": 9.55e-08, - "tolu": 9.55e-08, - "tomlinsons": 9.55e-08, - "toothpastes": 9.55e-08, - "topi": 9.55e-08, - "tosu": 9.55e-08, - "touchingly": 9.55e-08, - "touro": 9.55e-08, - "tova": 9.55e-08, - "trachtenberg": 9.55e-08, - "tractate": 9.55e-08, - "tragus": 9.55e-08, - "tranq": 9.55e-08, - "transdisciplinary": 9.55e-08, - "transgressing": 9.55e-08, - "transwomen": 9.55e-08, - "traver": 9.55e-08, - "treasonable": 9.55e-08, - "trias": 9.55e-08, - "trickett": 9.55e-08, - "triclosan": 9.55e-08, - "trotta": 9.55e-08, - "truett": 9.55e-08, - "trully": 9.55e-08, - "ttb": 9.55e-08, - "tylor": 9.55e-08, - "uconns": 9.55e-08, - "uhmm": 9.55e-08, - "umph": 9.55e-08, - "unburden": 9.55e-08, - "underfed": 9.55e-08, - "unethically": 9.55e-08, - "univac": 9.55e-08, - "unredacted": 9.55e-08, - "unscrewing": 9.55e-08, - "untouchability": 9.55e-08, - "unworn": 9.55e-08, - "uob": 9.55e-08, - "updater": 9.55e-08, - "upgradable": 9.55e-08, - "urbain": 9.55e-08, - "usac": 9.55e-08, - "uvula": 9.55e-08, - "vaughans": 9.55e-08, - "vause": 9.55e-08, - "verbosity": 9.55e-08, - "verdon": 9.55e-08, - "verrazano": 9.55e-08, - "vexation": 9.55e-08, - "viasat": 9.55e-08, - "vilanova": 9.55e-08, - "violist": 9.55e-08, - "viru": 9.55e-08, - "visualizer": 9.55e-08, - "vitti": 9.55e-08, - "vivica": 9.55e-08, - "vls": 9.55e-08, - "vmax": 9.55e-08, - "vonda": 9.55e-08, - "vuk": 9.55e-08, - "wab": 9.55e-08, - "waddles": 9.55e-08, - "walkerville": 9.55e-08, - "wallasey": 9.55e-08, - "wandas": 9.55e-08, - "warhawk": 9.55e-08, - "warriner": 9.55e-08, - "watchos": 9.55e-08, - "waterspout": 9.55e-08, - "waynesville": 9.55e-08, - "wearisome": 9.55e-08, - "weebly": 9.55e-08, - "weezy": 9.55e-08, - "welk": 9.55e-08, - "wellsville": 9.55e-08, - "wenders": 9.55e-08, - "westerman": 9.55e-08, - "wetherill": 9.55e-08, - "wework": 9.55e-08, - "whangarei": 9.55e-08, - "whatchu": 9.55e-08, - "whitmire": 9.55e-08, - "whitty": 9.55e-08, - "wickens": 9.55e-08, - "wides": 9.55e-08, - "wimborne": 9.55e-08, - "windblown": 9.55e-08, - "wingard": 9.55e-08, - "wjc": 9.55e-08, - "wlc": 9.55e-08, - "wmt": 9.55e-08, - "wolbachia": 9.55e-08, - "woodhaven": 9.55e-08, - "wral": 9.55e-08, - "wrangled": 9.55e-08, - "xda": 9.55e-08, - "yaki": 9.55e-08, - "yantra": 9.55e-08, - "yuno": 9.55e-08, - "zadie": 9.55e-08, - "zamalek": 9.55e-08, - "zante": 9.55e-08, - "zhenya": 9.55e-08, - "ziv": 9.55e-08, - "aaaaaah": 9.33e-08, - "aacta": 9.33e-08, - "aaw": 9.33e-08, - "abbvie": 9.33e-08, - "abhinav": 9.33e-08, - "absorptive": 9.33e-08, - "aclus": 9.33e-08, - "acquits": 9.33e-08, - "actionscript": 9.33e-08, - "actus": 9.33e-08, - "adah": 9.33e-08, - "addario": 9.33e-08, - "adeyemi": 9.33e-08, - "adjoin": 9.33e-08, - "adjourning": 9.33e-08, - "adlers": 9.33e-08, - "administrating": 9.33e-08, - "aeropostale": 9.33e-08, - "afcon": 9.33e-08, - "afia": 9.33e-08, - "africanism": 9.33e-08, - "agathon": 9.33e-08, - "aigoo": 9.33e-08, - "aisne": 9.33e-08, - "alamance": 9.33e-08, - "alejo": 9.33e-08, - "alfieri": 9.33e-08, - "algerie": 9.33e-08, - "alhamdulillah": 9.33e-08, - "alipay": 9.33e-08, - "allsop": 9.33e-08, - "americanos": 9.33e-08, - "americium": 9.33e-08, - "amnon": 9.33e-08, - "anet": 9.33e-08, - "angelino": 9.33e-08, - "angioedema": 9.33e-08, - "angstrom": 9.33e-08, - "animorphs": 9.33e-08, - "annnnd": 9.33e-08, - "anor": 9.33e-08, - "ansan": 9.33e-08, - "anschutz": 9.33e-08, - "ansett": 9.33e-08, - "antipas": 9.33e-08, - "aplin": 9.33e-08, - "apollinaire": 9.33e-08, - "appx": 9.33e-08, - "ardrossan": 9.33e-08, - "arenado": 9.33e-08, - "aridity": 9.33e-08, - "aros": 9.33e-08, - "arps": 9.33e-08, - "asakusa": 9.33e-08, - "asbo": 9.33e-08, - "ascher": 9.33e-08, - "asea": 9.33e-08, - "asem": 9.33e-08, - "aspinwall": 9.33e-08, - "assemblymen": 9.33e-08, - "astralis": 9.33e-08, - "attenuates": 9.33e-08, - "attune": 9.33e-08, - "aube": 9.33e-08, - "aubyn": 9.33e-08, - "awi": 9.33e-08, - "bacc": 9.33e-08, - "backflow": 9.33e-08, - "backplate": 9.33e-08, - "backslide": 9.33e-08, - "backsplash": 9.33e-08, - "bactrian": 9.33e-08, - "badenoch": 9.33e-08, - "badham": 9.33e-08, - "baia": 9.33e-08, - "baldrick": 9.33e-08, - "balkh": 9.33e-08, - "ballack": 9.33e-08, - "balvin": 9.33e-08, - "barbora": 9.33e-08, - "barenboim": 9.33e-08, - "barraclough": 9.33e-08, - "basch": 9.33e-08, - "baumeister": 9.33e-08, - "bayle": 9.33e-08, - "bdm": 9.33e-08, - "begot": 9.33e-08, - "beignets": 9.33e-08, - "beliebers": 9.33e-08, - "belper": 9.33e-08, - "beneficiation": 9.33e-08, - "benicia": 9.33e-08, - "benzoic": 9.33e-08, - "beseeching": 9.33e-08, - "bht": 9.33e-08, - "bhu": 9.33e-08, - "bich": 9.33e-08, - "bida": 9.33e-08, - "bigsby": 9.33e-08, - "bingen": 9.33e-08, - "biochemically": 9.33e-08, - "birkdale": 9.33e-08, - "bleeped": 9.33e-08, - "blitzen": 9.33e-08, - "bloodsucking": 9.33e-08, - "blore": 9.33e-08, - "blotched": 9.33e-08, - "bloxham": 9.33e-08, - "boardinghouse": 9.33e-08, - "boatwright": 9.33e-08, - "bobtail": 9.33e-08, - "bohan": 9.33e-08, - "boli": 9.33e-08, - "bonos": 9.33e-08, - "boobed": 9.33e-08, - "bookmobile": 9.33e-08, - "borage": 9.33e-08, - "borohydride": 9.33e-08, - "botanica": 9.33e-08, - "botching": 9.33e-08, - "botti": 9.33e-08, - "bournes": 9.33e-08, - "bowstring": 9.33e-08, - "boxings": 9.33e-08, - "breakwaters": 9.33e-08, - "brede": 9.33e-08, - "breezing": 9.33e-08, - "brer": 9.33e-08, - "brewmaster": 9.33e-08, - "bridles": 9.33e-08, - "briefe": 9.33e-08, - "britian": 9.33e-08, - "bromfield": 9.33e-08, - "bronner": 9.33e-08, - "broths": 9.33e-08, - "broz": 9.33e-08, - "buckie": 9.33e-08, - "burchill": 9.33e-08, - "burson": 9.33e-08, - "busload": 9.33e-08, - "busselton": 9.33e-08, - "bustard": 9.33e-08, - "bwana": 9.33e-08, - "bwc": 9.33e-08, - "byford": 9.33e-08, - "calley": 9.33e-08, - "calo": 9.33e-08, - "calumny": 9.33e-08, - "cammie": 9.33e-08, - "campbeltown": 9.33e-08, - "carny": 9.33e-08, - "carom": 9.33e-08, - "carrer": 9.33e-08, - "casals": 9.33e-08, - "cassandras": 9.33e-08, - "castlebar": 9.33e-08, - "catabolic": 9.33e-08, - "catchiest": 9.33e-08, - "catenary": 9.33e-08, - "catfished": 9.33e-08, - "cathodic": 9.33e-08, - "cattermole": 9.33e-08, - "ceilinged": 9.33e-08, - "cellmates": 9.33e-08, - "cemal": 9.33e-08, - "chael": 9.33e-08, - "chalfont": 9.33e-08, - "chamblee": 9.33e-08, - "chancy": 9.33e-08, - "chandon": 9.33e-08, - "chariton": 9.33e-08, - "charlestons": 9.33e-08, - "charnley": 9.33e-08, - "chaturthi": 9.33e-08, - "chauvet": 9.33e-08, - "cheif": 9.33e-08, - "cherche": 9.33e-08, - "chey": 9.33e-08, - "chinensis": 9.33e-08, - "chooks": 9.33e-08, - "choroid": 9.33e-08, - "christenson": 9.33e-08, - "christer": 9.33e-08, - "christlike": 9.33e-08, - "christman": 9.33e-08, - "chus": 9.33e-08, - "chucho": 9.33e-08, - "cingular": 9.33e-08, - "classique": 9.33e-08, - "cleeve": 9.33e-08, - "clerked": 9.33e-08, - "clontarf": 9.33e-08, - "cointreau": 9.33e-08, - "colney": 9.33e-08, - "colocation": 9.33e-08, - "coloma": 9.33e-08, - "colorimetric": 9.33e-08, - "colourist": 9.33e-08, - "committment": 9.33e-08, - "comprehensiveness": 9.33e-08, - "confab": 9.33e-08, - "confortable": 9.33e-08, - "confraternity": 9.33e-08, - "conjunctive": 9.33e-08, - "connote": 9.33e-08, - "conors": 9.33e-08, - "constitutively": 9.33e-08, - "contactor": 9.33e-08, - "contrails": 9.33e-08, - "contraire": 9.33e-08, - "coolangatta": 9.33e-08, - "cornflour": 9.33e-08, - "corpuscles": 9.33e-08, - "correll": 9.33e-08, - "cotterell": 9.33e-08, - "courseware": 9.33e-08, - "cpec": 9.33e-08, - "craniotomy": 9.33e-08, - "creagh": 9.33e-08, - "cregan": 9.33e-08, - "cresson": 9.33e-08, - "crossan": 9.33e-08, - "crowdstrike": 9.33e-08, - "cryotherapy": 9.33e-08, - "cryptos": 9.33e-08, - "cunty": 9.33e-08, - "cwl": 9.33e-08, - "cyanogenmod": 9.33e-08, - "cygnet": 9.33e-08, - "dacey": 9.33e-08, - "dago": 9.33e-08, - "dair": 9.33e-08, - "damit": 9.33e-08, - "dango": 9.33e-08, - "dartboard": 9.33e-08, - "daru": 9.33e-08, - "davon": 9.33e-08, - "dawdle": 9.33e-08, - "dawid": 9.33e-08, - "dbp": 9.33e-08, - "decanters": 9.33e-08, - "decoupage": 9.33e-08, - "deighton": 9.33e-08, - "delaneys": 9.33e-08, - "delorme": 9.33e-08, - "delroy": 9.33e-08, - "dement": 9.33e-08, - "dementias": 9.33e-08, - "democratized": 9.33e-08, - "demonising": 9.33e-08, - "denker": 9.33e-08, - "denniss": 9.33e-08, - "deraa": 9.33e-08, - "dernier": 9.33e-08, - "destructions": 9.33e-08, - "deulofeu": 9.33e-08, - "deveraux": 9.33e-08, - "dextran": 9.33e-08, - "dhani": 9.33e-08, - "diable": 9.33e-08, - "diacetyl": 9.33e-08, - "diaphanous": 9.33e-08, - "diarrheal": 9.33e-08, - "diclofenac": 9.33e-08, - "difficultly": 9.33e-08, - "diggins": 9.33e-08, - "diliman": 9.33e-08, - "dingbat": 9.33e-08, - "dingers": 9.33e-08, - "discomforting": 9.33e-08, - "disjunctive": 9.33e-08, - "divo": 9.33e-08, - "dld": 9.33e-08, - "dlo": 9.33e-08, - "donnelley": 9.33e-08, - "downregulation": 9.33e-08, - "downshift": 9.33e-08, - "drdo": 9.33e-08, - "drily": 9.33e-08, - "droppers": 9.33e-08, - "drusus": 9.33e-08, - "duffie": 9.33e-08, - "dundonald": 9.33e-08, - "dupin": 9.33e-08, - "durk": 9.33e-08, - "dynamometer": 9.33e-08, - "easiness": 9.33e-08, - "eastwick": 9.33e-08, - "ebf": 9.33e-08, - "ebonics": 9.33e-08, - "ectoderm": 9.33e-08, - "efren": 9.33e-08, - "ege": 9.33e-08, - "ehrlichman": 9.33e-08, - "ejuice": 9.33e-08, - "eldoret": 9.33e-08, - "eles": 9.33e-08, - "ellensburg": 9.33e-08, - "eluting": 9.33e-08, - "emasculating": 9.33e-08, - "emerys": 9.33e-08, - "emh": 9.33e-08, - "emos": 9.33e-08, - "empiricist": 9.33e-08, - "enderby": 9.33e-08, - "endosperm": 9.33e-08, - "energon": 9.33e-08, - "enfeebled": 9.33e-08, - "enlai": 9.33e-08, - "enn": 9.33e-08, - "enterovirus": 9.33e-08, - "epf": 9.33e-08, - "ephrem": 9.33e-08, - "equi": 9.33e-08, - "erlbaum": 9.33e-08, - "escola": 9.33e-08, - "espen": 9.33e-08, - "esrc": 9.33e-08, - "esrd": 9.33e-08, - "essar": 9.33e-08, - "etp": 9.33e-08, - "etu": 9.33e-08, - "europium": 9.33e-08, - "ewr": 9.33e-08, - "excellencies": 9.33e-08, - "exciton": 9.33e-08, - "excretory": 9.33e-08, - "exiling": 9.33e-08, - "exploiter": 9.33e-08, - "extrasensory": 9.33e-08, - "eyeful": 9.33e-08, - "fabia": 9.33e-08, - "facetiously": 9.33e-08, - "fack": 9.33e-08, - "faders": 9.33e-08, - "fairlane": 9.33e-08, - "fales": 9.33e-08, - "farhadi": 9.33e-08, - "fastnet": 9.33e-08, - "faunas": 9.33e-08, - "fawzi": 9.33e-08, - "fecund": 9.33e-08, - "felicitys": 9.33e-08, - "fernandina": 9.33e-08, - "feroz": 9.33e-08, - "ferrule": 9.33e-08, - "fiddlesticks": 9.33e-08, - "filch": 9.33e-08, - "filius": 9.33e-08, - "finan": 9.33e-08, - "finny": 9.33e-08, - "flamboyantly": 9.33e-08, - "flatley": 9.33e-08, - "flautist": 9.33e-08, - "flds": 9.33e-08, - "flicka": 9.33e-08, - "floaties": 9.33e-08, - "flybe": 9.33e-08, - "forestville": 9.33e-08, - "forfeitures": 9.33e-08, - "forgings": 9.33e-08, - "fozzie": 9.33e-08, - "fraggle": 9.33e-08, - "fraley": 9.33e-08, - "fratricide": 9.33e-08, - "freethinkers": 9.33e-08, - "frias": 9.33e-08, - "fripp": 9.33e-08, - "frivolously": 9.33e-08, - "froman": 9.33e-08, - "ftas": 9.33e-08, - "fusible": 9.33e-08, - "fuuuuuck": 9.33e-08, - "gaals": 9.33e-08, - "gabaergic": 9.33e-08, - "galla": 9.33e-08, - "gaos": 9.33e-08, - "gardiners": 9.33e-08, - "garr": 9.33e-08, - "gdt": 9.33e-08, - "gedo": 9.33e-08, - "geely": 9.33e-08, - "gellhorn": 9.33e-08, - "generalship": 9.33e-08, - "genna": 9.33e-08, - "gibe": 9.33e-08, - "gildas": 9.33e-08, - "gilmartin": 9.33e-08, - "gilmores": 9.33e-08, - "gip": 9.33e-08, - "girded": 9.33e-08, - "gissing": 9.33e-08, - "gladius": 9.33e-08, - "glibly": 9.33e-08, - "gliomas": 9.33e-08, - "gloaming": 9.33e-08, - "gluconate": 9.33e-08, - "goalkicker": 9.33e-08, - "goderich": 9.33e-08, - "gola": 9.33e-08, - "golder": 9.33e-08, - "goodlatte": 9.33e-08, - "gorden": 9.33e-08, - "gowers": 9.33e-08, - "grandison": 9.33e-08, - "greyed": 9.33e-08, - "grrrl": 9.33e-08, - "gulbis": 9.33e-08, - "gundogan": 9.33e-08, - "gurls": 9.33e-08, - "gurukul": 9.33e-08, - "guss": 6.31e-08, - "gustatory": 9.33e-08, - "gylfi": 9.33e-08, - "gyrations": 9.33e-08, - "haaland": 9.33e-08, - "haasan": 9.33e-08, - "haccp": 9.33e-08, - "hackathons": 9.33e-08, - "haikyuu": 9.33e-08, - "halogenated": 9.33e-08, - "halvorsen": 9.33e-08, - "hammadi": 9.33e-08, - "hamtramck": 9.33e-08, - "handsworth": 9.33e-08, - "hanker": 9.33e-08, - "harangued": 9.33e-08, - "harddrive": 9.33e-08, - "harlems": 9.33e-08, - "harrah": 9.33e-08, - "harrap": 9.33e-08, - "hartfield": 9.33e-08, - "haslem": 9.33e-08, - "hattersley": 9.33e-08, - "hawai": 9.33e-08, - "heavyset": 9.33e-08, - "heidis": 9.33e-08, - "heifetz": 9.33e-08, - "heinze": 9.33e-08, - "heliotrope": 9.33e-08, - "hellenes": 9.33e-08, - "henrie": 9.33e-08, - "higurashi": 9.33e-08, - "hiko": 9.33e-08, - "hildesheim": 9.33e-08, - "histocompatibility": 9.33e-08, - "hiw": 9.33e-08, - "hks": 9.33e-08, - "hobbie": 9.33e-08, - "hodes": 9.33e-08, - "hoed": 9.33e-08, - "hofmeister": 9.33e-08, - "honoria": 9.33e-08, - "hopefulness": 9.33e-08, - "horseless": 9.33e-08, - "hpm": 9.33e-08, - "hukou": 9.33e-08, - "humperdinck": 9.33e-08, - "huynh": 9.33e-08, - "hypochondria": 9.33e-08, - "hypoglycaemia": 9.33e-08, - "hyssop": 9.33e-08, - "hyundais": 9.33e-08, - "iblis": 9.33e-08, - "icse": 9.33e-08, - "igarashi": 9.33e-08, - "iiib": 9.33e-08, - "ikke": 9.33e-08, - "ilaria": 9.33e-08, - "imacs": 9.33e-08, - "impedances": 9.33e-08, - "imposible": 9.33e-08, - "inas": 9.33e-08, - "incentivised": 9.33e-08, - "inconspicuously": 9.33e-08, - "incontestable": 9.33e-08, - "inda": 9.33e-08, - "industri": 9.33e-08, - "industrialize": 9.33e-08, - "ineffectively": 9.33e-08, - "infallibly": 9.33e-08, - "inflames": 9.33e-08, - "infotech": 9.33e-08, - "ingvar": 9.33e-08, - "inheritable": 9.33e-08, - "inlaws": 9.33e-08, - "inquisitions": 9.33e-08, - "insectivorous": 9.33e-08, - "intensifier": 9.33e-08, - "interlink": 9.33e-08, - "investec": 9.33e-08, - "ioannis": 9.33e-08, - "irrelevancy": 9.33e-08, - "irritatingly": 9.33e-08, - "islas": 9.33e-08, - "isoniazid": 9.33e-08, - "isotherm": 9.33e-08, - "itg": 9.33e-08, - "izumo": 9.33e-08, - "jairo": 9.33e-08, - "jaja": 9.33e-08, - "janda": 9.33e-08, - "jangly": 9.33e-08, - "jaunts": 9.33e-08, - "jayawardene": 9.33e-08, - "jeeva": 9.33e-08, - "jeggings": 9.33e-08, - "jemaine": 9.33e-08, - "jesmond": 9.33e-08, - "jewess": 9.33e-08, - "jhonny": 9.33e-08, - "jiabao": 9.33e-08, - "jimmer": 9.33e-08, - "jjj": 9.33e-08, - "jlt": 9.33e-08, - "joinville": 9.33e-08, - "jonesing": 9.33e-08, - "jorg": 9.33e-08, - "jorts": 9.33e-08, - "jpegs": 9.33e-08, - "jtf": 9.33e-08, - "jungfrau": 9.33e-08, - "kabbalistic": 9.33e-08, - "kadesh": 9.33e-08, - "kaen": 9.33e-08, - "kahler": 9.33e-08, - "karima": 9.33e-08, - "kastner": 9.33e-08, - "kawaguchi": 9.33e-08, - "kazooie": 9.33e-08, - "kazu": 9.33e-08, - "keanes": 9.33e-08, - "keiran": 9.33e-08, - "kejriwals": 9.33e-08, - "kentuckian": 9.33e-08, - "kerby": 9.33e-08, - "keter": 9.33e-08, - "ketu": 9.33e-08, - "keweenaw": 9.33e-08, - "khabarovsk": 9.33e-08, - "kharagpur": 9.33e-08, - "khi": 9.33e-08, - "khin": 9.33e-08, - "khou": 9.33e-08, - "kimmie": 9.33e-08, - "kimmo": 9.33e-08, - "kingsmill": 9.33e-08, - "kiril": 9.33e-08, - "kiska": 9.33e-08, - "kiwifruit": 9.33e-08, - "kml": 9.33e-08, - "koby": 9.33e-08, - "kohei": 9.33e-08, - "koike": 9.33e-08, - "konishi": 9.33e-08, - "koos": 9.33e-08, - "kost": 9.33e-08, - "kostya": 9.33e-08, - "krejci": 9.33e-08, - "krishnamurti": 9.33e-08, - "kristaps": 9.33e-08, - "kshatriya": 9.33e-08, - "kuchma": 9.33e-08, - "kudlow": 9.33e-08, - "kurti": 9.33e-08, - "lacto": 9.33e-08, - "lactone": 9.33e-08, - "ladin": 9.33e-08, - "laggard": 9.33e-08, - "laksa": 9.33e-08, - "lamba": 9.33e-08, - "lammy": 9.33e-08, - "lampreys": 9.33e-08, - "landor": 9.33e-08, - "langone": 9.33e-08, - "lank": 9.33e-08, - "lapid": 9.33e-08, - "larouche": 9.33e-08, - "lastpass": 9.33e-08, - "laue": 9.33e-08, - "lawrenceburg": 9.33e-08, - "layard": 9.33e-08, - "ldpe": 9.33e-08, - "leib": 9.33e-08, - "leitner": 9.33e-08, - "lemoyne": 9.33e-08, - "lexicographer": 9.33e-08, - "lge": 9.33e-08, - "liberality": 9.33e-08, - "librairie": 9.33e-08, - "lieing": 9.33e-08, - "lifton": 9.33e-08, - "lightwave": 9.33e-08, - "limavady": 9.33e-08, - "lindh": 9.33e-08, - "linkedins": 9.33e-08, - "lipper": 9.33e-08, - "listserv": 9.33e-08, - "litigators": 9.33e-08, - "livestreamed": 9.33e-08, - "livius": 9.33e-08, - "lizzies": 9.33e-08, - "lla": 9.33e-08, - "lmd": 9.33e-08, - "loewenstein": 9.33e-08, - "logansport": 9.33e-08, - "loooooong": 9.33e-08, - "lougheed": 9.33e-08, - "lounged": 9.33e-08, - "loveyou": 9.33e-08, - "lowman": 9.33e-08, - "lsr": 9.33e-08, - "lubes": 9.33e-08, - "ludvig": 9.33e-08, - "lugansk": 9.33e-08, - "lunchboxes": 9.33e-08, - "luzern": 9.33e-08, - "lwr": 9.33e-08, - "lync": 9.33e-08, - "macgowan": 9.33e-08, - "machias": 9.33e-08, - "maheshwari": 9.33e-08, - "maisy": 9.33e-08, - "malingering": 9.33e-08, - "malla": 9.33e-08, - "mallinckrodt": 9.33e-08, - "mammalia": 9.33e-08, - "mancunian": 9.33e-08, - "manically": 9.33e-08, - "manicurist": 9.33e-08, - "mannie": 9.33e-08, - "manya": 9.33e-08, - "marana": 9.33e-08, - "marriot": 9.33e-08, - "marrs": 5.37e-08, - "marsters": 9.33e-08, - "martialled": 9.33e-08, - "masonite": 9.33e-08, - "matsumura": 9.33e-08, - "mauldin": 9.33e-08, - "maunder": 9.33e-08, - "maur": 9.33e-08, - "mcduff": 9.33e-08, - "mcgavin": 9.33e-08, - "mcglinchey": 9.33e-08, - "mcmurry": 9.33e-08, - "mcnary": 9.33e-08, - "mcnish": 9.33e-08, - "mcq": 9.33e-08, - "meeee": 9.33e-08, - "menander": 9.33e-08, - "mendon": 9.33e-08, - "meninges": 9.33e-08, - "merrion": 9.33e-08, - "mesmerize": 9.33e-08, - "messa": 9.33e-08, - "messiaen": 9.33e-08, - "metall": 9.33e-08, - "meudon": 9.33e-08, - "michela": 9.33e-08, - "microflora": 9.33e-08, - "microform": 9.33e-08, - "microstructural": 9.33e-08, - "mikaelson": 9.33e-08, - "miklos": 9.33e-08, - "millipedes": 9.33e-08, - "minar": 9.33e-08, - "mirallas": 9.33e-08, - "misclassification": 9.33e-08, - "mitrovic": 9.33e-08, - "mno": 9.33e-08, - "mohalla": 9.33e-08, - "mohanty": 9.33e-08, - "mokhtar": 9.33e-08, - "mondiale": 9.33e-08, - "monosodium": 9.33e-08, - "monts": 9.33e-08, - "moorlands": 9.33e-08, - "morelia": 9.33e-08, - "morrisseys": 9.33e-08, - "motets": 9.33e-08, - "mothman": 9.33e-08, - "mountainsides": 9.33e-08, - "msas": 9.33e-08, - "muerta": 9.33e-08, - "multistate": 9.33e-08, - "munros": 6.17e-08, - "muons": 9.33e-08, - "murtaugh": 9.33e-08, - "musselman": 9.33e-08, - "mutharika": 9.33e-08, - "mutombo": 9.33e-08, - "naguib": 9.33e-08, - "naif": 9.33e-08, - "nainital": 9.33e-08, - "namu": 9.33e-08, - "nanostructured": 9.33e-08, - "nasals": 9.33e-08, - "nasopharyngeal": 9.33e-08, - "natarajan": 9.33e-08, - "navid": 9.33e-08, - "necromancers": 9.33e-08, - "neediest": 9.33e-08, - "nello": 9.33e-08, - "neonate": 9.33e-08, - "nerlens": 9.33e-08, - "neurochemistry": 9.33e-08, - "neurotransmission": 9.33e-08, - "nfi": 9.33e-08, - "nickys": 9.33e-08, - "nigro": 9.33e-08, - "niklaus": 9.33e-08, - "nitroglycerine": 9.33e-08, - "njit": 9.33e-08, - "noisey": 9.33e-08, - "northcliffe": 9.33e-08, - "novikov": 9.33e-08, - "nsm": 9.33e-08, - "ntd": 9.33e-08, - "nutsack": 9.33e-08, - "oakham": 9.33e-08, - "obeid": 9.33e-08, - "oblation": 9.33e-08, - "obscurely": 9.33e-08, - "oco": 9.33e-08, - "odbc": 9.33e-08, - "odf": 9.33e-08, - "oec": 9.33e-08, - "offish": 9.33e-08, - "ogura": 9.33e-08, - "okayed": 9.33e-08, - "olena": 9.33e-08, - "oleo": 9.33e-08, - "olivera": 9.33e-08, - "omx": 9.33e-08, - "onu": 9.33e-08, - "oosthuizen": 9.33e-08, - "oppressively": 9.33e-08, - "orangery": 9.33e-08, - "orbitz": 9.33e-08, - "ornl": 9.33e-08, - "otro": 9.33e-08, - "outmaneuver": 9.33e-08, - "overrules": 9.33e-08, - "oversharing": 9.33e-08, - "overstates": 9.33e-08, - "overvalue": 9.33e-08, - "ovules": 9.33e-08, - "palak": 9.33e-08, - "palest": 9.33e-08, - "palpi": 9.33e-08, - "palps": 9.33e-08, - "panter": 9.33e-08, - "panthera": 9.33e-08, - "paralympians": 9.33e-08, - "parkins": 9.33e-08, - "parmar": 9.33e-08, - "partes": 9.33e-08, - "partier": 9.33e-08, - "patchogue": 9.33e-08, - "pazzi": 9.33e-08, - "pcn": 9.33e-08, - "peachey": 9.33e-08, - "pedaled": 9.33e-08, - "pederasty": 9.33e-08, - "peiris": 9.33e-08, - "pelikan": 9.33e-08, - "pennetta": 9.33e-08, - "perfective": 9.33e-08, - "performa": 9.33e-08, - "perpetration": 9.33e-08, - "pervious": 9.33e-08, - "peuple": 9.33e-08, - "pgd": 9.33e-08, - "pharmacodynamics": 9.33e-08, - "pharr": 9.33e-08, - "phin": 9.33e-08, - "phonic": 9.33e-08, - "phospho": 9.33e-08, - "photochemistry": 9.33e-08, - "phylogenetically": 9.33e-08, - "piggly": 9.33e-08, - "pinochets": 9.33e-08, - "pistes": 9.33e-08, - "plasmonic": 9.33e-08, - "playsets": 9.33e-08, - "plessy": 9.33e-08, - "plouffe": 9.33e-08, - "plungers": 9.33e-08, - "poggio": 9.33e-08, - "pokedex": 9.33e-08, - "polanyi": 9.33e-08, - "polizei": 9.33e-08, - "polycarp": 9.33e-08, - "pompoms": 9.33e-08, - "poots": 9.33e-08, - "posteriori": 9.33e-08, - "pozzo": 9.33e-08, - "preah": 9.33e-08, - "preciousness": 9.33e-08, - "preheating": 9.33e-08, - "presbyteries": 9.33e-08, - "prestashop": 9.33e-08, - "pretreated": 9.33e-08, - "prickles": 9.33e-08, - "procreative": 9.33e-08, - "proctors": 6.46e-08, - "prokhorov": 9.33e-08, - "prophetically": 9.33e-08, - "proteinase": 9.33e-08, - "protoss": 9.33e-08, - "proudfoot": 9.33e-08, - "prowled": 9.33e-08, - "psychologie": 9.33e-08, - "ptah": 9.33e-08, - "ptu": 9.33e-08, - "publishable": 9.33e-08, - "puce": 9.33e-08, - "purbeck": 9.33e-08, - "purposive": 9.33e-08, - "pvcs": 9.33e-08, - "pythias": 9.33e-08, - "qasr": 9.33e-08, - "qrt": 9.33e-08, - "quahog": 9.33e-08, - "queensbury": 9.33e-08, - "quesnel": 9.33e-08, - "quist": 9.33e-08, - "radia": 9.33e-08, - "raftery": 9.33e-08, - "rajini": 9.33e-08, - "rame": 9.33e-08, - "rampton": 9.33e-08, - "ranker": 9.33e-08, - "ranson": 9.33e-08, - "rarotonga": 9.33e-08, - "ravelry": 9.33e-08, - "reacquire": 9.33e-08, - "reaming": 9.33e-08, - "reasoner": 9.33e-08, - "reauthorized": 9.33e-08, - "reburial": 9.33e-08, - "recension": 9.33e-08, - "reckitt": 9.33e-08, - "recombined": 9.33e-08, - "redwall": 9.33e-08, - "reengineering": 9.33e-08, - "regenerator": 9.33e-08, - "rehomed": 9.33e-08, - "reimbursable": 9.33e-08, - "remys": 9.33e-08, - "replenishes": 9.33e-08, - "republik": 9.33e-08, - "respon": 9.33e-08, - "retarding": 9.33e-08, - "retinoblastoma": 9.33e-08, - "reveres": 9.33e-08, - "rheological": 9.33e-08, - "rickon": 9.33e-08, - "ridgemont": 9.33e-08, - "rielly": 9.33e-08, - "rigsby": 9.33e-08, - "risperidone": 9.33e-08, - "risto": 9.33e-08, - "ritson": 9.33e-08, - "rivulets": 9.33e-08, - "robyns": 9.33e-08, - "rockall": 9.33e-08, - "rocketdyne": 9.33e-08, - "roseau": 9.33e-08, - "rosi": 9.33e-08, - "roussillon": 9.33e-08, - "rovio": 9.33e-08, - "rowes": 9.33e-08, - "rowett": 9.33e-08, - "ruched": 9.33e-08, - "rucksacks": 9.33e-08, - "rueben": 9.33e-08, - "sacc": 9.33e-08, - "sadd": 9.33e-08, - "sagal": 9.33e-08, - "sajjad": 9.33e-08, - "salameh": 9.33e-08, - "salonica": 9.33e-08, - "salwa": 9.33e-08, - "sandwhich": 9.33e-08, - "saraki": 9.33e-08, - "sarto": 9.33e-08, - "savona": 9.33e-08, - "scalpels": 9.33e-08, - "scandi": 9.33e-08, - "schock": 9.33e-08, - "schomberg": 9.33e-08, - "schumpeter": 9.33e-08, - "schwerin": 9.33e-08, - "scrapings": 9.33e-08, - "scroungers": 9.33e-08, - "seamaster": 9.33e-08, - "searchin": 9.33e-08, - "segun": 9.33e-08, - "seminarian": 9.33e-08, - "seneschal": 9.33e-08, - "senkaku": 9.33e-08, - "sennas": 9.33e-08, - "sensi": 9.33e-08, - "sensitizing": 9.33e-08, - "separateness": 9.33e-08, - "septem": 9.33e-08, - "septimius": 9.33e-08, - "sequencers": 9.33e-08, - "sexology": 9.33e-08, - "seyyed": 9.33e-08, - "shado": 9.33e-08, - "sharan": 9.33e-08, - "sherwoods": 9.33e-08, - "shii": 6.61e-08, - "shikai": 9.33e-08, - "shipwright": 9.33e-08, - "shooing": 9.33e-08, - "sideband": 9.33e-08, - "simonton": 9.33e-08, - "simpkin": 9.33e-08, - "sione": 9.33e-08, - "situates": 9.33e-08, - "sixpack": 9.33e-08, - "sizwe": 9.33e-08, - "sjsu": 9.33e-08, - "skiffs": 9.33e-08, - "skl": 9.33e-08, - "skolnick": 9.33e-08, - "skyes": 9.33e-08, - "slavoj": 9.33e-08, - "slunk": 9.33e-08, - "smallholding": 9.33e-08, - "smithies": 9.33e-08, - "smithing": 9.33e-08, - "snoke": 9.33e-08, - "soci": 9.33e-08, - "sodomites": 9.33e-08, - "sofer": 9.33e-08, - "soirees": 9.33e-08, - "soissons": 9.33e-08, - "soja": 9.33e-08, - "sokal": 9.33e-08, - "soloway": 9.33e-08, - "sonority": 9.33e-08, - "souq": 9.33e-08, - "spectating": 9.33e-08, - "spherically": 9.33e-08, - "sporangia": 9.33e-08, - "squab": 9.33e-08, - "stabby": 9.33e-08, - "standley": 9.33e-08, - "stara": 9.33e-08, - "steffy": 9.33e-08, - "steiners": 9.33e-08, - "stian": 9.33e-08, - "stilling": 9.33e-08, - "stivers": 9.33e-08, - "stora": 9.33e-08, - "storify": 9.33e-08, - "storr": 9.33e-08, - "straightedge": 9.33e-08, - "straightness": 9.33e-08, - "strawn": 9.33e-08, - "streptococci": 9.33e-08, - "stretchered": 9.33e-08, - "stubbing": 9.33e-08, - "sublimity": 9.33e-08, - "subsector": 9.33e-08, - "subsume": 9.33e-08, - "sudha": 9.33e-08, - "summerhill": 9.33e-08, - "sunnybrook": 9.33e-08, - "supercapacitors": 9.33e-08, - "superstores": 9.33e-08, - "susteren": 9.33e-08, - "sverdrup": 9.33e-08, - "swanseas": 9.33e-08, - "symmes": 9.33e-08, - "synergistically": 9.33e-08, - "takeru": 9.33e-08, - "tanisha": 9.33e-08, - "tanith": 9.33e-08, - "taquitos": 9.33e-08, - "tatu": 9.33e-08, - "tavis": 9.33e-08, - "taxied": 9.33e-08, - "tbis": 9.33e-08, - "technologie": 9.33e-08, - "teleconferencing": 9.33e-08, - "tensioner": 9.33e-08, - "terrie": 9.33e-08, - "teru": 9.33e-08, - "teterboro": 9.33e-08, - "thatve": 9.33e-08, - "theanine": 9.33e-08, - "theodosia": 9.33e-08, - "therethrough": 9.33e-08, - "thieme": 9.33e-08, - "thiopental": 9.33e-08, - "thomasson": 9.33e-08, - "thrum": 9.33e-08, - "thyristor": 9.33e-08, - "tibialis": 9.33e-08, - "tillich": 9.33e-08, - "timaru": 9.33e-08, - "titchmarsh": 9.33e-08, - "tlv": 9.33e-08, - "tobaccos": 9.33e-08, - "tomita": 9.33e-08, - "tootie": 9.33e-08, - "topknot": 9.33e-08, - "tortugas": 9.33e-08, - "totty": 9.33e-08, - "towanda": 9.33e-08, - "trackball": 9.33e-08, - "transfused": 9.33e-08, - "trappe": 9.33e-08, - "traviss": 9.33e-08, - "treloar": 9.33e-08, - "trifolium": 9.33e-08, - "trincomalee": 9.33e-08, - "trion": 9.33e-08, - "trooped": 9.33e-08, - "troppo": 9.33e-08, - "trueblood": 9.33e-08, - "trus": 9.33e-08, - "truthers": 9.33e-08, - "tsuchiya": 9.33e-08, - "tulisa": 9.33e-08, - "tumulus": 9.33e-08, - "turok": 9.33e-08, - "tvr": 9.33e-08, - "tweedle": 9.33e-08, - "twista": 9.33e-08, - "twitty": 9.33e-08, - "ugarte": 9.33e-08, - "ughhhh": 9.33e-08, - "unallocated": 9.33e-08, - "unbuilt": 9.33e-08, - "unfertilized": 9.33e-08, - "unifier": 9.33e-08, - "unionville": 9.33e-08, - "universelle": 9.33e-08, - "unrewarding": 9.33e-08, - "unshielded": 9.33e-08, - "unsubtle": 9.33e-08, - "upanishad": 9.33e-08, - "upgradeable": 9.33e-08, - "uracil": 9.33e-08, - "urb": 9.33e-08, - "urkel": 9.33e-08, - "urogenital": 9.33e-08, - "ush": 9.33e-08, - "usw": 9.33e-08, - "uttam": 9.33e-08, - "vaccinium": 9.33e-08, - "vadis": 9.33e-08, - "varietys": 9.33e-08, - "vasudeva": 9.33e-08, - "venusian": 9.33e-08, - "verdigris": 9.33e-08, - "vermette": 9.33e-08, - "videoed": 9.33e-08, - "vijays": 9.33e-08, - "villars": 9.33e-08, - "vinatieri": 9.33e-08, - "vini": 9.33e-08, - "vocoder": 9.33e-08, - "voisin": 9.33e-08, - "volitional": 9.33e-08, - "vpd": 9.33e-08, - "vre": 9.33e-08, - "vulgare": 9.33e-08, - "waifs": 9.33e-08, - "walkaway": 9.33e-08, - "wallows": 9.33e-08, - "warrensburg": 9.33e-08, - "warthogs": 9.33e-08, - "waterbed": 9.33e-08, - "webapp": 9.33e-08, - "webserver": 9.33e-08, - "westall": 9.33e-08, - "westville": 9.33e-08, - "wetherspoons": 9.33e-08, - "wexner": 9.33e-08, - "whereever": 9.33e-08, - "whinny": 9.33e-08, - "whitacre": 9.33e-08, - "whitakers": 9.33e-08, - "whitehill": 9.33e-08, - "whr": 9.33e-08, - "wiegand": 9.33e-08, - "wiffle": 9.33e-08, - "winfred": 9.33e-08, - "wlr": 9.33e-08, - "woj": 9.33e-08, - "wolk": 9.33e-08, - "workhorses": 9.33e-08, - "wriggles": 9.33e-08, - "wwd": 9.33e-08, - "wyd": 9.33e-08, - "xenophobes": 9.33e-08, - "xenoverse": 9.33e-08, - "xliv": 9.33e-08, - "yaah": 9.33e-08, - "yakult": 9.33e-08, - "yakutsk": 9.33e-08, - "yeses": 9.33e-08, - "yonsei": 9.33e-08, - "zab": 9.33e-08, - "zazen": 9.33e-08, - "zd": 9.33e-08, - "zealotry": 9.33e-08, - "zekes": 9.33e-08, - "zel": 9.33e-08, - "ziyad": 9.33e-08, - "zombified": 9.33e-08, - "zowie": 9.33e-08, - "aage": 9.12e-08, - "abdoulaye": 9.12e-08, - "abramoff": 9.12e-08, - "accost": 9.12e-08, - "adipocytes": 9.12e-08, - "adnani": 9.12e-08, - "adventitious": 9.12e-08, - "aetiology": 9.12e-08, - "agard": 9.12e-08, - "agilent": 9.12e-08, - "agusta": 9.12e-08, - "ahluwalia": 9.12e-08, - "ahmads": 9.12e-08, - "aiga": 9.12e-08, - "akademi": 9.12e-08, - "albas": 9.12e-08, - "alegria": 9.12e-08, - "alehouse": 9.12e-08, - "aleut": 9.12e-08, - "alexandras": 9.12e-08, - "alexandrias": 9.12e-08, - "alfano": 9.12e-08, - "alfons": 9.12e-08, - "alida": 9.12e-08, - "alors": 9.12e-08, - "amaz": 9.12e-08, - "amel": 9.12e-08, - "amontillado": 9.12e-08, - "amputating": 9.12e-08, - "amri": 9.12e-08, - "andalus": 9.12e-08, - "ande": 9.12e-08, - "andress": 9.12e-08, - "anonymized": 9.12e-08, - "anoxia": 9.12e-08, - "antagonisms": 9.12e-08, - "antigonish": 9.12e-08, - "antiseptics": 9.12e-08, - "anuj": 9.12e-08, - "anzhi": 9.12e-08, - "aols": 9.12e-08, - "apoe": 9.12e-08, - "arabe": 9.12e-08, - "archaeologically": 9.12e-08, - "archmage": 9.12e-08, - "arimathea": 9.12e-08, - "arnis": 9.12e-08, - "arrhenius": 9.12e-08, - "arteriosclerosis": 9.12e-08, - "asensio": 9.12e-08, - "ashmead": 9.12e-08, - "assing": 9.12e-08, - "astle": 9.12e-08, - "aswad": 9.12e-08, - "attac": 9.12e-08, - "averroes": 9.12e-08, - "ayush": 9.12e-08, - "brith": 6.61e-08, - "babur": 9.12e-08, - "badmouthing": 9.12e-08, - "bahman": 9.12e-08, - "bailar": 9.12e-08, - "bais": 3.8e-08, - "bajoran": 9.12e-08, - "balint": 9.12e-08, - "ballasts": 9.12e-08, - "baraboo": 9.12e-08, - "barclaycard": 9.12e-08, - "baskett": 9.12e-08, - "bastar": 9.12e-08, - "basted": 9.12e-08, - "bbdo": 9.12e-08, - "bcbs": 9.12e-08, - "beachbody": 9.12e-08, - "beartooth": 9.12e-08, - "beatitude": 9.12e-08, - "beith": 9.12e-08, - "bejesus": 9.12e-08, - "berar": 9.12e-08, - "bernina": 9.12e-08, - "bernthal": 9.12e-08, - "berridge": 9.12e-08, - "berserkers": 9.12e-08, - "bettany": 9.12e-08, - "bfd": 9.12e-08, - "bfv": 9.12e-08, - "bharara": 9.12e-08, - "bhatnagar": 9.12e-08, - "bik": 9.12e-08, - "bilbos": 9.12e-08, - "binoche": 9.12e-08, - "biocompatible": 9.12e-08, - "bisi": 9.12e-08, - "bitterroot": 9.12e-08, - "bkk": 9.12e-08, - "blacklivesmatter": 9.12e-08, - "blanchet": 9.12e-08, - "blaspheming": 9.12e-08, - "blazblue": 9.12e-08, - "blc": 9.12e-08, - "bleaker": 9.12e-08, - "blub": 9.12e-08, - "bnr": 9.12e-08, - "boethius": 9.12e-08, - "boffins": 9.12e-08, - "bogardus": 9.12e-08, - "borde": 9.12e-08, - "boronia": 9.12e-08, - "borromeo": 9.12e-08, - "bosniak": 9.12e-08, - "bostrom": 9.12e-08, - "bour": 9.12e-08, - "bradburys": 9.12e-08, - "bradwell": 9.12e-08, - "breathin": 9.12e-08, - "bridewell": 9.12e-08, - "brigadoon": 9.12e-08, - "brockett": 9.12e-08, - "broilers": 9.12e-08, - "bruhl": 9.12e-08, - "bryces": 9.12e-08, - "bulan": 9.12e-08, - "burren": 9.12e-08, - "burundian": 9.12e-08, - "byard": 9.12e-08, - "cailin": 9.12e-08, - "calamine": 9.12e-08, - "calderdale": 9.12e-08, - "calve": 9.12e-08, - "cani": 9.12e-08, - "caprese": 9.12e-08, - "caprio": 9.12e-08, - "capuchins": 9.12e-08, - "carhart": 9.12e-08, - "carpentaria": 9.12e-08, - "caskey": 9.12e-08, - "cassatt": 9.12e-08, - "casuarina": 9.12e-08, - "catalonias": 9.12e-08, - "catharina": 9.12e-08, - "cathedra": 9.12e-08, - "catie": 9.12e-08, - "cauterized": 9.12e-08, - "caye": 9.12e-08, - "cecils": 2.24e-08, - "cedi": 9.12e-08, - "celerity": 9.12e-08, - "cerci": 9.12e-08, - "chansons": 9.12e-08, - "chater": 9.12e-08, - "chaucers": 9.12e-08, - "cheam": 9.12e-08, - "chebyshev": 9.12e-08, - "chenin": 9.12e-08, - "chequebook": 9.12e-08, - "chilcot": 9.12e-08, - "chinstrap": 9.12e-08, - "chiptune": 9.12e-08, - "chloral": 9.12e-08, - "cholula": 9.12e-08, - "chronologies": 9.12e-08, - "chukwu": 9.12e-08, - "circularity": 9.12e-08, - "cist": 9.12e-08, - "claddagh": 9.12e-08, - "classis": 9.12e-08, - "clementina": 9.12e-08, - "clenches": 9.12e-08, - "cliffe": 9.12e-08, - "clunkers": 9.12e-08, - "codeshare": 9.12e-08, - "coeds": 9.12e-08, - "coffered": 9.12e-08, - "coggins": 9.12e-08, - "collinear": 9.12e-08, - "collingwoods": 9.12e-08, - "collisional": 9.12e-08, - "coloratura": 9.12e-08, - "congr": 9.12e-08, - "conjunctiva": 9.12e-08, - "conmen": 9.12e-08, - "constantines": 9.12e-08, - "cooly": 9.12e-08, - "coords": 9.12e-08, - "cors": 9.12e-08, - "counterargument": 9.12e-08, - "counterfeited": 9.12e-08, - "crabapple": 9.12e-08, - "crackpots": 9.12e-08, - "cragg": 9.12e-08, - "crake": 9.12e-08, - "criminalised": 9.12e-08, - "crinkles": 9.12e-08, - "cristi": 9.12e-08, - "cruciferous": 9.12e-08, - "crustacea": 9.12e-08, - "cspan": 9.12e-08, - "csrs": 9.12e-08, - "cubana": 9.12e-08, - "cultus": 9.12e-08, - "curiouser": 9.12e-08, - "curtsey": 9.12e-08, - "cutt": 9.12e-08, - "cybele": 9.12e-08, - "cyclohexane": 9.12e-08, - "cypresses": 9.12e-08, - "dabi": 9.12e-08, - "dahlin": 9.12e-08, - "daiya": 9.12e-08, - "daleys": 9.12e-08, - "dampener": 9.12e-08, - "dangal": 9.12e-08, - "dangote": 9.12e-08, - "daoism": 9.12e-08, - "darci": 9.12e-08, - "daters": 9.12e-08, - "dawud": 9.12e-08, - "debar": 9.12e-08, - "deescalate": 9.12e-08, - "degraw": 9.12e-08, - "deionized": 9.12e-08, - "demps": 9.12e-08, - "denises": 9.12e-08, - "denna": 9.12e-08, - "denticles": 9.12e-08, - "dentro": 9.12e-08, - "depauw": 9.12e-08, - "deprivations": 9.12e-08, - "destructible": 9.12e-08, - "dfi": 9.12e-08, - "dialup": 9.12e-08, - "diatomic": 9.12e-08, - "dickwad": 9.12e-08, - "dilator": 9.12e-08, - "dilli": 9.12e-08, - "diplomate": 9.12e-08, - "disapprovingly": 9.12e-08, - "disempowered": 9.12e-08, - "disrobe": 9.12e-08, - "disunited": 9.12e-08, - "diversities": 9.12e-08, - "divx": 9.12e-08, - "dobkin": 9.12e-08, - "doen": 9.12e-08, - "doggs": 9.12e-08, - "dominators": 9.12e-08, - "doob": 9.12e-08, - "doordarshan": 9.12e-08, - "doosan": 9.12e-08, - "doras": 9.12e-08, - "dorney": 9.12e-08, - "dragonstone": 9.12e-08, - "driscolls": 9.12e-08, - "droits": 9.12e-08, - "drt": 9.12e-08, - "druggy": 9.12e-08, - "ducat": 9.12e-08, - "dunbars": 9.12e-08, - "dunces": 9.12e-08, - "duncombe": 9.12e-08, - "easthampton": 9.12e-08, - "eavesdropped": 9.12e-08, - "edify": 9.12e-08, - "effexor": 9.12e-08, - "egans": 9.12e-08, - "eidetic": 9.12e-08, - "elca": 9.12e-08, - "elliman": 9.12e-08, - "elusiveness": 9.12e-08, - "emlyn": 9.12e-08, - "encodings": 9.12e-08, - "endemol": 9.12e-08, - "energi": 9.12e-08, - "engie": 9.12e-08, - "enriques": 9.12e-08, - "enshrining": 9.12e-08, - "entergy": 9.12e-08, - "eof": 9.12e-08, - "eratosthenes": 9.12e-08, - "erhardt": 9.12e-08, - "erith": 9.12e-08, - "errani": 9.12e-08, - "escudero": 9.12e-08, - "estudio": 9.12e-08, - "ethnomusicology": 9.12e-08, - "eurgh": 9.12e-08, - "evangel": 9.12e-08, - "everetts": 9.12e-08, - "everythin": 9.12e-08, - "evn": 9.12e-08, - "examinees": 9.12e-08, - "exley": 9.12e-08, - "expends": 9.12e-08, - "expl": 9.12e-08, - "externalizing": 9.12e-08, - "extrapolations": 9.12e-08, - "fada": 9.12e-08, - "faison": 9.12e-08, - "farallon": 9.12e-08, - "faroes": 9.12e-08, - "fasc": 9.12e-08, - "felting": 9.12e-08, - "fenris": 9.12e-08, - "fethullah": 9.12e-08, - "fetishizing": 9.12e-08, - "fetty": 9.12e-08, - "fiancees": 9.12e-08, - "fiel": 9.12e-08, - "figg": 9.12e-08, - "fishel": 9.12e-08, - "flashpoints": 9.12e-08, - "flavourful": 9.12e-08, - "flaxen": 9.12e-08, - "fleabag": 9.12e-08, - "fleshly": 9.12e-08, - "flunky": 9.12e-08, - "fluorides": 9.12e-08, - "flyway": 9.12e-08, - "foolery": 9.12e-08, - "footages": 9.12e-08, - "fornicate": 9.12e-08, - "fortwo": 9.12e-08, - "fostoria": 9.12e-08, - "foulest": 9.12e-08, - "foyers": 9.12e-08, - "fpp": 9.12e-08, - "francescas": 9.12e-08, - "franziska": 9.12e-08, - "freakonomics": 9.12e-08, - "freescale": 9.12e-08, - "freewheel": 9.12e-08, - "freida": 9.12e-08, - "freitag": 9.12e-08, - "frend": 9.12e-08, - "fretful": 9.12e-08, - "friary": 9.12e-08, - "friesian": 9.12e-08, - "friis": 9.12e-08, - "frontally": 9.12e-08, - "fukunaga": 9.12e-08, - "functionals": 9.12e-08, - "funda": 9.12e-08, - "gairdner": 9.12e-08, - "gand": 9.12e-08, - "garbanzo": 9.12e-08, - "gashed": 9.12e-08, - "gaskins": 9.12e-08, - "gavi": 9.12e-08, - "gazer": 9.12e-08, - "genious": 9.12e-08, - "geoffreys": 9.12e-08, - "gestating": 9.12e-08, - "gey": 9.12e-08, - "gibbins": 9.12e-08, - "gigawatt": 9.12e-08, - "giorgia": 9.12e-08, - "giovannis": 9.12e-08, - "glauca": 9.12e-08, - "glycosylated": 9.12e-08, - "gnasher": 9.12e-08, - "gnt": 9.12e-08, - "gobbledygook": 9.12e-08, - "goldsborough": 9.12e-08, - "grandsire": 9.12e-08, - "grapefruits": 9.12e-08, - "graphed": 9.12e-08, - "graphitic": 9.12e-08, - "grazier": 9.12e-08, - "graziers": 9.12e-08, - "greenslade": 9.12e-08, - "greers": 9.12e-08, - "grossmann": 9.12e-08, - "grundlagen": 9.12e-08, - "gtg": 9.12e-08, - "guanabara": 9.12e-08, - "guffaws": 9.12e-08, - "gunnarsson": 9.12e-08, - "gushy": 9.12e-08, - "haemorrhaging": 9.12e-08, - "hagedorn": 9.12e-08, - "haire": 9.12e-08, - "hallmarked": 9.12e-08, - "hallyu": 9.12e-08, - "hamil": 9.12e-08, - "handmaidens": 9.12e-08, - "haras": 9.12e-08, - "harissa": 9.12e-08, - "harrop": 9.12e-08, - "hassel": 9.12e-08, - "havant": 9.12e-08, - "hazan": 9.12e-08, - "hazem": 9.12e-08, - "heatedly": 9.12e-08, - "hecuba": 9.12e-08, - "hedi": 9.12e-08, - "heeds": 9.12e-08, - "heeler": 9.12e-08, - "heinie": 9.12e-08, - "hercegovina": 9.12e-08, - "higa": 9.12e-08, - "hillocks": 9.12e-08, - "hiscock": 9.12e-08, - "hito": 9.12e-08, - "hna": 9.12e-08, - "hobb": 9.12e-08, - "hobsons": 9.12e-08, - "hodel": 9.12e-08, - "holloman": 9.12e-08, - "homebrewing": 9.12e-08, - "homeruns": 9.12e-08, - "homoeopathic": 9.12e-08, - "homonyms": 9.12e-08, - "honig": 9.12e-08, - "hoodwink": 9.12e-08, - "hooghly": 9.12e-08, - "hookahs": 9.12e-08, - "hotpoint": 9.12e-08, - "houle": 9.12e-08, - "hoverboards": 9.12e-08, - "howth": 9.12e-08, - "hpp": 9.12e-08, - "hucksters": 9.12e-08, - "hueneme": 9.12e-08, - "huggable": 9.12e-08, - "hult": 9.12e-08, - "hunton": 9.12e-08, - "hydrides": 9.12e-08, - "hydroelectricity": 9.12e-08, - "ibushi": 9.12e-08, - "icq": 9.12e-08, - "idas": 9.12e-08, - "idec": 9.12e-08, - "idlers": 9.12e-08, - "ifit": 9.12e-08, - "ifthe": 9.12e-08, - "iid": 9.12e-08, - "ikeja": 9.12e-08, - "ileum": 9.12e-08, - "immerses": 9.12e-08, - "inactivating": 9.12e-08, - "inappropriateness": 9.12e-08, - "incongruously": 9.12e-08, - "increas": 9.12e-08, - "inh": 9.12e-08, - "inlaw": 9.12e-08, - "insomniacs": 9.12e-08, - "interchangeability": 9.12e-08, - "interrupter": 9.12e-08, - "intrepidity": 9.12e-08, - "introducer": 9.12e-08, - "ipg": 9.12e-08, - "irst": 9.12e-08, - "ischaemic": 9.12e-08, - "isils": 9.12e-08, - "iversen": 9.12e-08, - "iwf": 9.12e-08, - "jaleel": 9.12e-08, - "jayde": 9.12e-08, - "jazeeras": 9.12e-08, - "jazmin": 9.12e-08, - "jazzs": 9.12e-08, - "jdk": 9.12e-08, - "jellied": 9.12e-08, - "jeroboam": 9.12e-08, - "jhon": 9.12e-08, - "jiva": 9.12e-08, - "johnathon": 9.12e-08, - "jokinen": 9.12e-08, - "junichi": 9.12e-08, - "junipero": 9.12e-08, - "junkrat": 9.12e-08, - "kabat": 9.12e-08, - "kafirs": 9.12e-08, - "kahle": 9.12e-08, - "kaira": 9.12e-08, - "karakoram": 9.12e-08, - "karli": 9.12e-08, - "kazim": 9.12e-08, - "kelseys": 9.12e-08, - "kershaws": 9.12e-08, - "ketoconazole": 9.12e-08, - "kettlebells": 9.12e-08, - "keycard": 9.12e-08, - "khalistan": 9.12e-08, - "khana": 9.12e-08, - "killam": 9.12e-08, - "kimani": 9.12e-08, - "kimbra": 9.12e-08, - "kimo": 9.12e-08, - "kini": 9.12e-08, - "kipps": 9.12e-08, - "klaw": 9.12e-08, - "kleber": 9.12e-08, - "kluger": 9.12e-08, - "kneller": 9.12e-08, - "knickknacks": 9.12e-08, - "komm": 9.12e-08, - "konstantinos": 9.12e-08, - "kotzebue": 9.12e-08, - "kpix": 9.12e-08, - "kps": 5.13e-08, - "kryptonians": 9.12e-08, - "kuffar": 9.12e-08, - "kuipers": 9.12e-08, - "kurth": 9.12e-08, - "kusa": 9.12e-08, - "kwinana": 9.12e-08, - "kws": 9.12e-08, - "labview": 9.12e-08, - "laclede": 9.12e-08, - "lafourche": 9.12e-08, - "lahti": 9.12e-08, - "laith": 9.12e-08, - "lamond": 9.12e-08, - "landholder": 9.12e-08, - "langtry": 9.12e-08, - "larg": 9.12e-08, - "latecomers": 9.12e-08, - "latitudinal": 9.12e-08, - "laxton": 9.12e-08, - "lce": 9.12e-08, - "lch": 9.12e-08, - "lcms": 9.12e-08, - "leadenhall": 9.12e-08, - "leat": 9.12e-08, - "lebaron": 9.12e-08, - "legere": 9.12e-08, - "lehane": 9.12e-08, - "lehmans": 9.12e-08, - "leidy": 9.12e-08, - "leite": 9.12e-08, - "levering": 9.12e-08, - "leviathans": 9.12e-08, - "leytonstone": 9.12e-08, - "liesel": 9.12e-08, - "lifesize": 9.12e-08, - "liguori": 9.12e-08, - "lijiang": 9.12e-08, - "limousin": 9.12e-08, - "litigations": 9.12e-08, - "litvinov": 9.12e-08, - "llvm": 9.12e-08, - "lohman": 9.12e-08, - "lolla": 9.12e-08, - "lomonosov": 9.12e-08, - "longhair": 9.12e-08, - "longreach": 9.12e-08, - "longshoreman": 9.12e-08, - "loral": 9.12e-08, - "lovatos": 9.12e-08, - "lovestruck": 9.12e-08, - "lukey": 9.12e-08, - "lurches": 9.12e-08, - "lycanthropy": 9.12e-08, - "lyng": 9.12e-08, - "macronutrients": 9.12e-08, - "madalena": 9.12e-08, - "madama": 9.12e-08, - "mahou": 9.12e-08, - "mainspring": 9.12e-08, - "maisel": 9.12e-08, - "malouf": 9.12e-08, - "mamluk": 9.12e-08, - "manukau": 9.12e-08, - "marielle": 9.12e-08, - "marinelli": 9.12e-08, - "maritima": 9.12e-08, - "marriotts": 9.12e-08, - "masashi": 9.12e-08, - "maschine": 9.12e-08, - "masterman": 9.12e-08, - "mayawati": 9.12e-08, - "maynards": 9.12e-08, - "mayoress": 9.12e-08, - "mayuri": 9.12e-08, - "mazer": 9.12e-08, - "mazumdar": 9.12e-08, - "mcchesney": 9.12e-08, - "mccorkle": 9.12e-08, - "mcgarvey": 9.12e-08, - "mckennas": 9.12e-08, - "mckenzies": 9.12e-08, - "mckillop": 9.12e-08, - "mdb": 9.12e-08, - "meck": 9.12e-08, - "mediaset": 9.12e-08, - "medicus": 9.12e-08, - "medigap": 9.12e-08, - "megaphones": 9.12e-08, - "melvilles": 9.12e-08, - "memorie": 9.12e-08, - "menno": 9.12e-08, - "mesic": 9.12e-08, - "messinger": 9.12e-08, - "metalhead": 9.12e-08, - "metuchen": 9.12e-08, - "meydan": 9.12e-08, - "meyerson": 9.12e-08, - "mhra": 9.12e-08, - "miaa": 9.12e-08, - "michaux": 9.12e-08, - "mih": 9.12e-08, - "millage": 9.12e-08, - "millwood": 9.12e-08, - "mincer": 9.12e-08, - "minge": 9.12e-08, - "mirandola": 9.12e-08, - "miron": 9.12e-08, - "misbegotten": 9.12e-08, - "misinterprets": 9.12e-08, - "mistranslated": 9.12e-08, - "miyazawa": 9.12e-08, - "mizoguchi": 9.12e-08, - "moishe": 9.12e-08, - "moluccas": 9.12e-08, - "mondelez": 9.12e-08, - "monetisation": 9.12e-08, - "monocytogenes": 9.12e-08, - "monopolist": 9.12e-08, - "montagna": 9.12e-08, - "moonbeams": 9.12e-08, - "morgues": 9.12e-08, - "morrisey": 9.12e-08, - "mortlake": 9.12e-08, - "mosier": 9.12e-08, - "motet": 9.12e-08, - "mottling": 9.12e-08, - "mournfully": 9.12e-08, - "mrl": 9.12e-08, - "mukden": 9.12e-08, - "mullett": 9.12e-08, - "murgatroyd": 9.12e-08, - "mursi": 9.12e-08, - "mushi": 9.12e-08, - "musial": 9.12e-08, - "mycological": 9.12e-08, - "nachi": 9.12e-08, - "nadel": 9.12e-08, - "nadp": 9.12e-08, - "nakashima": 9.12e-08, - "nally": 9.12e-08, - "namjoon": 9.12e-08, - "nanchang": 9.12e-08, - "naturopathy": 9.12e-08, - "nauseum": 9.12e-08, - "negril": 9.12e-08, - "nesn": 9.12e-08, - "netease": 9.12e-08, - "networker": 9.12e-08, - "neuropsychologist": 9.12e-08, - "newsmax": 9.12e-08, - "nickolas": 9.12e-08, - "niekerk": 9.12e-08, - "nigg": 9.12e-08, - "niggaz": 9.12e-08, - "nightwatch": 9.12e-08, - "nistelrooy": 9.12e-08, - "nlr": 9.12e-08, - "nonbinding": 9.12e-08, - "noncompliant": 9.12e-08, - "nonconformists": 9.12e-08, - "nonempty": 9.12e-08, - "nonionic": 9.12e-08, - "nonsectarian": 9.12e-08, - "nonsurgical": 9.12e-08, - "norbu": 9.12e-08, - "northwesterns": 9.12e-08, - "nourse": 9.12e-08, - "novelette": 9.12e-08, - "nubs": 9.12e-08, - "nuchal": 9.12e-08, - "nucleated": 9.12e-08, - "nuzzled": 9.12e-08, - "oriordan": 9.12e-08, - "oao": 9.12e-08, - "occitane": 9.12e-08, - "odorous": 9.12e-08, - "odourless": 9.12e-08, - "ofac": 9.12e-08, - "ofthese": 9.12e-08, - "ogletree": 9.12e-08, - "oikawa": 9.12e-08, - "okami": 9.12e-08, - "oklahomans": 9.12e-08, - "olafur": 9.12e-08, - "olfaction": 9.12e-08, - "openoffice": 9.12e-08, - "opv": 9.12e-08, - "ornette": 9.12e-08, - "orochimaru": 9.12e-08, - "osram": 9.12e-08, - "osts": 9.12e-08, - "oulton": 9.12e-08, - "outranks": 9.12e-08, - "ouzo": 9.12e-08, - "overrate": 9.12e-08, - "pahrump": 9.12e-08, - "panch": 9.12e-08, - "paned": 9.12e-08, - "papelbon": 9.12e-08, - "paperclips": 9.12e-08, - "papilla": 9.12e-08, - "paramedical": 9.12e-08, - "paratha": 9.12e-08, - "parce": 9.12e-08, - "pard": 9.12e-08, - "parrying": 9.12e-08, - "parsa": 9.12e-08, - "partaken": 9.12e-08, - "parth": 9.12e-08, - "passives": 9.12e-08, - "paston": 9.12e-08, - "paulies": 9.12e-08, - "paulino": 9.12e-08, - "pavey": 9.12e-08, - "peco": 9.12e-08, - "pegi": 9.12e-08, - "penitents": 9.12e-08, - "pentatonix": 9.12e-08, - "perlin": 9.12e-08, - "personifications": 9.12e-08, - "petas": 9.12e-08, - "petrucci": 9.12e-08, - "pettus": 9.12e-08, - "pfe": 9.12e-08, - "pfr": 9.12e-08, - "pgt": 9.12e-08, - "phev": 9.12e-08, - "philharmonia": 9.12e-08, - "phlebotomy": 9.12e-08, - "phosphatidylinositol": 9.12e-08, - "pianissimo": 9.12e-08, - "picards": 9.12e-08, - "pice": 9.12e-08, - "pictet": 9.12e-08, - "pinney": 9.12e-08, - "pinsky": 9.12e-08, - "pjm": 9.12e-08, - "planche": 9.12e-08, - "playhouses": 9.12e-08, - "pockmarked": 9.12e-08, - "podestas": 9.12e-08, - "poitou": 9.12e-08, - "possibles": 9.12e-08, - "possiblity": 9.12e-08, - "postgres": 9.12e-08, - "potawatomi": 9.12e-08, - "pote": 9.12e-08, - "poudre": 9.12e-08, - "powis": 9.12e-08, - "poz": 9.12e-08, - "pratique": 9.12e-08, - "preamplifier": 9.12e-08, - "prekindergarten": 9.12e-08, - "preshow": 9.12e-08, - "previa": 9.12e-08, - "proinflammatory": 9.12e-08, - "prolegomena": 9.12e-08, - "promis": 9.12e-08, - "propolis": 9.12e-08, - "prorogation": 9.12e-08, - "prospectuses": 9.12e-08, - "prouty": 9.12e-08, - "puffiness": 9.12e-08, - "puls": 9.12e-08, - "purch": 9.12e-08, - "putih": 9.12e-08, - "pyromaniac": 9.12e-08, - "qashqai": 9.12e-08, - "quadrupeds": 9.12e-08, - "qualcomms": 9.12e-08, - "quickies": 9.12e-08, - "quijano": 9.12e-08, - "quins": 9.12e-08, - "quiroga": 9.12e-08, - "quivered": 9.12e-08, - "quonset": 9.12e-08, - "radicalizing": 9.12e-08, - "ramachandra": 9.12e-08, - "ratifications": 9.12e-08, - "raylan": 9.12e-08, - "rce": 9.12e-08, - "redbird": 9.12e-08, - "redecoration": 9.12e-08, - "reflexivity": 9.12e-08, - "reiji": 9.12e-08, - "relaxin": 9.12e-08, - "repatriating": 9.12e-08, - "revascularization": 9.12e-08, - "revitalising": 9.12e-08, - "revivalism": 9.12e-08, - "revote": 9.12e-08, - "ribes": 9.12e-08, - "ricochets": 9.12e-08, - "ridgecrest": 9.12e-08, - "riken": 9.12e-08, - "risch": 9.12e-08, - "rivaldo": 9.12e-08, - "rivka": 9.12e-08, - "roadhog": 9.12e-08, - "robinette": 9.12e-08, - "rockbridge": 9.12e-08, - "roderic": 9.12e-08, - "roget": 9.12e-08, - "rollbacks": 9.12e-08, - "romanced": 9.12e-08, - "rorty": 9.12e-08, - "rosell": 9.12e-08, - "rosicrucian": 9.12e-08, - "rossman": 9.12e-08, - "rouges": 5.37e-08, - "roughs": 9.12e-08, - "rowlett": 9.12e-08, - "rpw": 9.12e-08, - "rubel": 9.12e-08, - "runing": 9.12e-08, - "rwandans": 9.12e-08, - "smore": 2.63e-08, - "saami": 9.12e-08, - "saarland": 9.12e-08, - "sabbaths": 6.31e-08, - "sagely": 9.12e-08, - "sahir": 9.12e-08, - "sahitya": 9.12e-08, - "sahu": 9.12e-08, - "sakti": 9.12e-08, - "salone": 9.12e-08, - "saltmarsh": 9.12e-08, - "sampaio": 9.12e-08, - "sancta": 9.12e-08, - "sandip": 9.12e-08, - "sangeeta": 9.12e-08, - "sants": 9.12e-08, - "sarasvati": 9.12e-08, - "sarkisian": 9.12e-08, - "sarnoff": 9.12e-08, - "satirizes": 9.12e-08, - "satsang": 9.12e-08, - "saurashtra": 9.12e-08, - "sbk": 9.12e-08, - "sbl": 9.12e-08, - "scalars": 9.12e-08, - "scarfe": 9.12e-08, - "scarification": 9.12e-08, - "schmooze": 9.12e-08, - "schrodinger": 9.12e-08, - "scientia": 9.12e-08, - "scoresby": 9.12e-08, - "scrimshaw": 9.12e-08, - "scump": 9.12e-08, - "sealift": 9.12e-08, - "sedgewick": 9.12e-08, - "seguro": 9.12e-08, - "seko": 9.12e-08, - "selfhood": 9.12e-08, - "semicolons": 9.12e-08, - "septicemia": 9.12e-08, - "sepulcher": 9.12e-08, - "sepulchral": 9.12e-08, - "serato": 9.12e-08, - "setia": 9.12e-08, - "shackleford": 9.12e-08, - "shamanistic": 9.12e-08, - "sharking": 9.12e-08, - "shart": 9.12e-08, - "shechem": 9.12e-08, - "sheepdogs": 9.12e-08, - "shies": 9.12e-08, - "shimura": 9.12e-08, - "shoehorned": 9.12e-08, - "shogi": 9.12e-08, - "shoki": 9.12e-08, - "showplace": 9.12e-08, - "shur": 9.12e-08, - "shushing": 9.12e-08, - "shuttlecock": 9.12e-08, - "sidetrack": 9.12e-08, - "siemian": 9.12e-08, - "siew": 9.12e-08, - "signa": 9.12e-08, - "siliguri": 9.12e-08, - "sindy": 9.12e-08, - "sinter": 9.12e-08, - "sipc": 9.12e-08, - "sithole": 9.12e-08, - "sito": 9.12e-08, - "skus": 9.12e-08, - "slating": 9.12e-08, - "slatted": 9.12e-08, - "sleater": 9.12e-08, - "sleepyhead": 9.12e-08, - "snaffle": 9.12e-08, - "snooped": 9.12e-08, - "snowpiercer": 9.12e-08, - "softies": 9.12e-08, - "soke": 9.12e-08, - "solara": 9.12e-08, - "soldiery": 9.12e-08, - "somersets": 9.12e-08, - "sommerfeld": 9.12e-08, - "spanners": 9.12e-08, - "spearfish": 9.12e-08, - "specsavers": 9.12e-08, - "spellers": 9.12e-08, - "spes": 9.12e-08, - "spiker": 9.12e-08, - "spined": 9.12e-08, - "splunk": 9.12e-08, - "sponged": 9.12e-08, - "squishes": 9.12e-08, - "starkweather": 9.12e-08, - "statesmanlike": 9.12e-08, - "steadicam": 9.12e-08, - "steelseries": 9.12e-08, - "steinmeier": 9.12e-08, - "sterols": 9.12e-08, - "stirrers": 9.12e-08, - "straggler": 9.12e-08, - "stravinskys": 9.12e-08, - "stree": 9.12e-08, - "stroop": 9.12e-08, - "stylo": 9.12e-08, - "subterminal": 9.12e-08, - "sunkist": 9.12e-08, - "superdry": 9.12e-08, - "superimposing": 9.12e-08, - "supermoon": 9.12e-08, - "supportable": 9.12e-08, - "suprisingly": 9.12e-08, - "suwa": 9.12e-08, - "swamping": 9.12e-08, - "sycamores": 9.12e-08, - "szymanski": 9.12e-08, - "taglines": 9.12e-08, - "tamora": 9.12e-08, - "tamponade": 9.12e-08, - "tancredo": 9.12e-08, - "tangs": 8.51e-08, - "tappers": 9.12e-08, - "tarnishes": 9.12e-08, - "tartans": 9.12e-08, - "teambuilding": 9.12e-08, - "templating": 9.12e-08, - "tenma": 9.12e-08, - "tenterden": 9.12e-08, - "thain": 9.12e-08, - "thatcherism": 9.12e-08, - "themeforest": 9.12e-08, - "thermography": 9.12e-08, - "thole": 9.12e-08, - "throating": 9.12e-08, - "thromboembolism": 9.12e-08, - "thymic": 9.12e-08, - "tietjens": 9.12e-08, - "tilford": 9.12e-08, - "timaeus": 9.12e-08, - "timecode": 9.12e-08, - "timpson": 9.12e-08, - "tiu": 9.12e-08, - "tne": 9.12e-08, - "tomographic": 9.12e-08, - "tonino": 9.12e-08, - "toshiko": 9.12e-08, - "tossup": 9.12e-08, - "touchback": 9.12e-08, - "towle": 9.12e-08, - "townhome": 9.12e-08, - "transaxle": 9.12e-08, - "transjordan": 9.12e-08, - "transocean": 9.12e-08, - "trelawny": 9.12e-08, - "tremlett": 9.12e-08, - "trivialized": 9.12e-08, - "troglodyte": 9.12e-08, - "troves": 9.12e-08, - "trypanosoma": 9.12e-08, - "tswana": 9.12e-08, - "tuns": 9.12e-08, - "turvey": 9.12e-08, - "tutelary": 9.12e-08, - "tvm": 9.12e-08, - "twyla": 9.12e-08, - "umbro": 9.12e-08, - "unbanked": 9.12e-08, - "uncompromisingly": 9.12e-08, - "unconformity": 9.12e-08, - "unconventionally": 9.12e-08, - "underbody": 9.12e-08, - "unhampered": 9.12e-08, - "unifil": 9.12e-08, - "untucked": 9.12e-08, - "unwinds": 9.12e-08, - "usatf": 9.12e-08, - "validator": 9.12e-08, - "valiente": 9.12e-08, - "vana": 9.12e-08, - "vanzetti": 9.12e-08, - "varadkar": 9.12e-08, - "vasectomies": 9.12e-08, - "veja": 9.12e-08, - "veli": 9.12e-08, - "verkhovna": 9.12e-08, - "vernet": 9.12e-08, - "versicolor": 9.12e-08, - "verticality": 9.12e-08, - "verts": 9.12e-08, - "vhdl": 9.12e-08, - "viceroys": 9.12e-08, - "vidyalaya": 9.12e-08, - "viens": 9.12e-08, - "villon": 9.12e-08, - "vingt": 9.12e-08, - "virginiana": 9.12e-08, - "viscountess": 9.12e-08, - "vitamix": 9.12e-08, - "vlf": 9.12e-08, - "vmc": 9.12e-08, - "voces": 9.12e-08, - "vso": 9.12e-08, - "vti": 9.12e-08, - "waaah": 9.12e-08, - "waar": 9.12e-08, - "wabi": 9.12e-08, - "wachtel": 9.12e-08, - "wahhabis": 9.12e-08, - "wahrheit": 9.12e-08, - "walgreen": 9.12e-08, - "wanta": 9.12e-08, - "warangal": 9.12e-08, - "wartburg": 9.12e-08, - "webbe": 9.12e-08, - "weser": 9.12e-08, - "westborough": 9.12e-08, - "westheimer": 9.12e-08, - "whities": 9.12e-08, - "wib": 9.12e-08, - "willd": 9.12e-08, - "willl": 9.12e-08, - "windowing": 9.12e-08, - "winkie": 9.12e-08, - "wisdoms": 9.12e-08, - "wissenschaften": 9.12e-08, - "wittering": 9.12e-08, - "wnd": 9.12e-08, - "wonks": 9.12e-08, - "wordperfect": 9.12e-08, - "worser": 9.12e-08, - "wyke": 9.12e-08, - "wynwood": 9.12e-08, - "xslt": 9.12e-08, - "yamahas": 9.12e-08, - "yamasaki": 9.12e-08, - "yaron": 9.12e-08, - "yasuko": 9.12e-08, - "yeahh": 9.12e-08, - "yeboah": 9.12e-08, - "yeux": 9.12e-08, - "yob": 9.12e-08, - "younge": 9.12e-08, - "yuto": 9.12e-08, - "zcash": 9.12e-08, - "zil": 9.12e-08, - "zoar": 9.12e-08, - "zodiacs": 9.12e-08, - "zorin": 9.12e-08, - "aacsb": 8.91e-08, - "aaryn": 8.91e-08, - "abdomens": 8.91e-08, - "abridge": 8.91e-08, - "abridging": 8.91e-08, - "abus": 8.91e-08, - "accies": 8.91e-08, - "achi": 8.91e-08, - "ackles": 8.91e-08, - "acw": 8.91e-08, - "adac": 8.91e-08, - "administrate": 8.91e-08, - "adrianople": 8.91e-08, - "ael": 8.91e-08, - "aerogel": 8.91e-08, - "aesops": 8.91e-08, - "aesthete": 8.91e-08, - "afrikan": 8.91e-08, - "afsc": 8.91e-08, - "afterburners": 8.91e-08, - "agonistic": 8.91e-08, - "agustawestland": 8.91e-08, - "ahk": 8.91e-08, - "aircrews": 8.91e-08, - "aizen": 8.91e-08, - "akaka": 8.91e-08, - "aking": 8.91e-08, - "alar": 8.91e-08, - "alberni": 8.91e-08, - "alcuin": 8.91e-08, - "alireza": 8.91e-08, - "allura": 8.91e-08, - "althusser": 8.91e-08, - "altiplano": 8.91e-08, - "alvarezs": 8.91e-08, - "alyx": 8.91e-08, - "amada": 8.91e-08, - "amia": 8.91e-08, - "amini": 8.91e-08, - "amorites": 8.91e-08, - "amphipolis": 8.91e-08, - "anacortes": 8.91e-08, - "anatoli": 8.91e-08, - "angara": 8.91e-08, - "angelfish": 8.91e-08, - "angiogenic": 8.91e-08, - "anglophile": 8.91e-08, - "anglophones": 8.91e-08, - "angolas": 8.91e-08, - "anki": 8.91e-08, - "annexations": 8.91e-08, - "annu": 8.91e-08, - "anthocyanin": 8.91e-08, - "anticlockwise": 8.91e-08, - "antiepileptic": 8.91e-08, - "antonioni": 8.91e-08, - "antonym": 8.91e-08, - "anxiousness": 8.91e-08, - "aorist": 8.91e-08, - "apte": 8.91e-08, - "aqib": 8.91e-08, - "aravind": 8.91e-08, - "arba": 8.91e-08, - "archbishopric": 8.91e-08, - "arcot": 8.91e-08, - "arendelle": 8.91e-08, - "arjan": 8.91e-08, - "armorer": 8.91e-08, - "artest": 8.91e-08, - "artifical": 8.91e-08, - "ashwell": 8.91e-08, - "aspin": 8.91e-08, - "asps": 8.91e-08, - "assortments": 8.91e-08, - "asymptote": 8.91e-08, - "atomization": 8.91e-08, - "atra": 8.91e-08, - "atreides": 8.91e-08, - "attenuating": 8.91e-08, - "austenitic": 8.91e-08, - "axminster": 8.91e-08, - "aynsley": 8.91e-08, - "azaz": 8.91e-08, - "babbled": 8.91e-08, - "babushka": 8.91e-08, - "backstretch": 8.91e-08, - "badging": 8.91e-08, - "bajrang": 8.91e-08, - "balart": 8.91e-08, - "ballyhoo": 8.91e-08, - "ballymoney": 8.91e-08, - "balogh": 8.91e-08, - "bamberger": 8.91e-08, - "bandini": 8.91e-08, - "barfing": 8.91e-08, - "barmouth": 8.91e-08, - "barricading": 8.91e-08, - "barua": 8.91e-08, - "barwell": 8.91e-08, - "basanti": 8.91e-08, - "baseplate": 8.91e-08, - "bastide": 8.91e-08, - "bedwetting": 8.91e-08, - "beggining": 8.91e-08, - "behati": 8.91e-08, - "belorussian": 8.91e-08, - "bence": 8.91e-08, - "bengtsson": 8.91e-08, - "benignly": 8.91e-08, - "bennis": 8.91e-08, - "benth": 8.91e-08, - "beo": 8.91e-08, - "berita": 8.91e-08, - "berlitz": 8.91e-08, - "berna": 8.91e-08, - "berwickshire": 8.91e-08, - "beso": 8.91e-08, - "bgt": 8.91e-08, - "biederman": 8.91e-08, - "bifrost": 8.91e-08, - "biggers": 8.91e-08, - "bilby": 8.91e-08, - "bings": 8.91e-08, - "biochar": 8.91e-08, - "biosimilar": 8.91e-08, - "birdied": 8.91e-08, - "biu": 8.91e-08, - "bladen": 8.91e-08, - "bladensburg": 8.91e-08, - "blessedly": 8.91e-08, - "blomberg": 8.91e-08, - "blueish": 8.91e-08, - "blumenfeld": 8.91e-08, - "boke": 8.91e-08, - "bolingbrook": 8.91e-08, - "bonnell": 8.91e-08, - "bonomi": 8.91e-08, - "bookplate": 8.91e-08, - "bootlegged": 8.91e-08, - "boreham": 8.91e-08, - "bori": 8.91e-08, - "boxoffice": 8.91e-08, - "boyzone": 8.91e-08, - "brahe": 8.91e-08, - "brandin": 8.91e-08, - "brasses": 8.91e-08, - "brigs": 8.91e-08, - "brimley": 8.91e-08, - "brines": 8.91e-08, - "broadbeach": 8.91e-08, - "brodhead": 8.91e-08, - "brooksville": 8.91e-08, - "bruch": 8.91e-08, - "buckmaster": 8.91e-08, - "bucyrus": 8.91e-08, - "buddhahood": 8.91e-08, - "buffington": 8.91e-08, - "bukan": 8.91e-08, - "bulleted": 8.91e-08, - "burgomaster": 8.91e-08, - "burrill": 8.91e-08, - "buttoning": 8.91e-08, - "buzzsaw": 8.91e-08, - "cabby": 8.91e-08, - "cabinetmaker": 8.91e-08, - "calrissian": 8.91e-08, - "calzones": 8.91e-08, - "canterburys": 8.91e-08, - "canty": 8.91e-08, - "capgemini": 8.91e-08, - "caplin": 8.91e-08, - "carmelites": 8.91e-08, - "carnie": 8.91e-08, - "caroll": 8.91e-08, - "carolus": 8.91e-08, - "carraway": 8.91e-08, - "carseat": 8.91e-08, - "cassar": 8.91e-08, - "catatonia": 8.91e-08, - "causeways": 8.91e-08, - "caylee": 8.91e-08, - "cecilie": 8.91e-08, - "ceh": 8.91e-08, - "cela": 8.91e-08, - "celler": 8.91e-08, - "celly": 8.91e-08, - "centavos": 8.91e-08, - "centimes": 8.91e-08, - "cgp": 8.91e-08, - "chadron": 8.91e-08, - "chagrined": 8.91e-08, - "chansey": 8.91e-08, - "chaotically": 8.91e-08, - "chappel": 8.91e-08, - "charo": 8.91e-08, - "chastening": 8.91e-08, - "cheesman": 8.91e-08, - "chern": 8.91e-08, - "chilterns": 8.91e-08, - "chippewas": 8.91e-08, - "chirico": 8.91e-08, - "chocks": 8.91e-08, - "choos": 8.91e-08, - "chopard": 8.91e-08, - "choreographies": 8.91e-08, - "cide": 8.91e-08, - "civile": 8.91e-08, - "ckin": 8.91e-08, - "clarksdale": 8.91e-08, - "clevenger": 8.91e-08, - "clf": 8.91e-08, - "cmh": 8.91e-08, - "cni": 8.91e-08, - "cobourg": 8.91e-08, - "codd": 8.91e-08, - "colet": 8.91e-08, - "colledge": 8.91e-08, - "colloquialisms": 8.91e-08, - "collymore": 8.91e-08, - "colognes": 8.91e-08, - "comenius": 8.91e-08, - "commodious": 8.91e-08, - "compadre": 8.91e-08, - "conca": 8.91e-08, - "concentrators": 8.91e-08, - "conejo": 8.91e-08, - "congleton": 8.91e-08, - "conjointly": 8.91e-08, - "conoco": 8.91e-08, - "consciousnesses": 8.91e-08, - "consequentially": 8.91e-08, - "constitutionalists": 8.91e-08, - "continentals": 8.91e-08, - "contrib": 8.91e-08, - "coogler": 8.91e-08, - "cornejo": 8.91e-08, - "cornu": 8.91e-08, - "cosgrave": 8.91e-08, - "costanzo": 8.91e-08, - "cosworth": 8.91e-08, - "cotabato": 8.91e-08, - "coumadin": 8.91e-08, - "coupla": 8.91e-08, - "creb": 8.91e-08, - "crescendos": 8.91e-08, - "cressy": 8.91e-08, - "crichtons": 8.91e-08, - "cripes": 8.91e-08, - "crista": 8.91e-08, - "crosswinds": 8.91e-08, - "crushingly": 8.91e-08, - "csh": 8.91e-08, - "cucina": 8.91e-08, - "cumnock": 8.91e-08, - "cuna": 8.91e-08, - "cupe": 8.91e-08, - "curti": 8.91e-08, - "daichi": 8.91e-08, - "daines": 8.91e-08, - "dallying": 8.91e-08, - "daphnes": 8.91e-08, - "darabont": 8.91e-08, - "darkwing": 8.91e-08, - "dbx": 8.91e-08, - "decolonisation": 8.91e-08, - "deflowered": 8.91e-08, - "delisle": 8.91e-08, - "deman": 8.91e-08, - "demetrios": 8.91e-08, - "demountable": 8.91e-08, - "deregulating": 8.91e-08, - "dese": 8.91e-08, - "desegregate": 8.91e-08, - "desig": 8.91e-08, - "destabilizes": 8.91e-08, - "destino": 8.91e-08, - "diacritics": 8.91e-08, - "dickin": 8.91e-08, - "didt": 8.91e-08, - "dikshit": 8.91e-08, - "diptych": 8.91e-08, - "disgaea": 8.91e-08, - "disgraces": 8.91e-08, - "dispositional": 8.91e-08, - "disproportionally": 8.91e-08, - "dml": 8.91e-08, - "dno": 8.91e-08, - "dnv": 8.91e-08, - "docsis": 8.91e-08, - "dodecahedron": 8.91e-08, - "dogger": 8.91e-08, - "dogon": 8.91e-08, - "doink": 8.91e-08, - "dollard": 8.91e-08, - "donee": 8.91e-08, - "dorgan": 8.91e-08, - "dorsolateral": 8.91e-08, - "dotage": 8.91e-08, - "dowden": 8.91e-08, - "downpatrick": 8.91e-08, - "dpf": 8.91e-08, - "drin": 8.91e-08, - "droned": 8.91e-08, - "dror": 8.91e-08, - "dtla": 8.91e-08, - "dullard": 8.91e-08, - "dumbshit": 8.91e-08, - "dysmorphia": 8.91e-08, - "ebba": 8.91e-08, - "economia": 8.91e-08, - "edh": 8.91e-08, - "educationist": 8.91e-08, - "effusions": 8.91e-08, - "eggheads": 8.91e-08, - "eichler": 8.91e-08, - "eidos": 8.91e-08, - "eins": 8.91e-08, - "ejiofor": 8.91e-08, - "ellerbe": 8.91e-08, - "elva": 8.91e-08, - "emboldens": 8.91e-08, - "emmert": 8.91e-08, - "endotracheal": 8.91e-08, - "englert": 8.91e-08, - "epiphytic": 8.91e-08, - "eppes": 8.91e-08, - "escarpments": 8.91e-08, - "ethnographers": 8.91e-08, - "eum": 8.91e-08, - "eurodance": 8.91e-08, - "evangelos": 8.91e-08, - "evy": 8.91e-08, - "exactitude": 8.91e-08, - "exorbitantly": 8.91e-08, - "expressively": 8.91e-08, - "fabricio": 8.91e-08, - "facist": 8.91e-08, - "fames": 8.91e-08, - "fard": 8.91e-08, - "fce": 8.91e-08, - "featurettes": 8.91e-08, - "federalization": 8.91e-08, - "fermentable": 8.91e-08, - "fernandos": 8.91e-08, - "fettes": 8.91e-08, - "fidei": 8.91e-08, - "figments": 8.91e-08, - "filesystems": 8.91e-08, - "filmore": 8.91e-08, - "finning": 8.91e-08, - "fkin": 8.91e-08, - "flavoursome": 8.91e-08, - "flem": 8.91e-08, - "florentines": 8.91e-08, - "floristic": 8.91e-08, - "flowerbeds": 8.91e-08, - "flp": 8.91e-08, - "fluminense": 8.91e-08, - "fluoroscopy": 8.91e-08, - "fognini": 8.91e-08, - "folies": 8.91e-08, - "folke": 8.91e-08, - "folklorist": 8.91e-08, - "folky": 8.91e-08, - "footlong": 8.91e-08, - "forcefield": 8.91e-08, - "forschung": 8.91e-08, - "forsythia": 8.91e-08, - "freddo": 8.91e-08, - "fredi": 8.91e-08, - "frigg": 8.91e-08, - "frights": 8.91e-08, - "frise": 8.91e-08, - "frisking": 8.91e-08, - "frit": 8.91e-08, - "fronto": 8.91e-08, - "frowny": 8.91e-08, - "fsus": 8.91e-08, - "fsx": 8.91e-08, - "fuc": 8.91e-08, - "fudan": 8.91e-08, - "fufu": 8.91e-08, - "fugues": 8.91e-08, - "fulling": 8.91e-08, - "funtime": 8.91e-08, - "gaara": 8.91e-08, - "galant": 8.91e-08, - "gangbanged": 8.91e-08, - "gangbangers": 8.91e-08, - "garen": 8.91e-08, - "garissa": 8.91e-08, - "gaullist": 8.91e-08, - "gela": 8.91e-08, - "geos": 8.91e-08, - "gerold": 8.91e-08, - "gfriend": 8.91e-08, - "giftcard": 8.91e-08, - "gigahertz": 8.91e-08, - "girt": 8.91e-08, - "giulietta": 8.91e-08, - "glenna": 8.91e-08, - "gnaws": 8.91e-08, - "goofballs": 8.91e-08, - "gowon": 8.91e-08, - "grandiflora": 8.91e-08, - "grannie": 8.91e-08, - "gravid": 8.91e-08, - "grayer": 8.91e-08, - "greenham": 8.91e-08, - "gretta": 8.91e-08, - "gses": 8.91e-08, - "guenter": 8.91e-08, - "gueye": 8.91e-08, - "guillem": 8.91e-08, - "gurugram": 8.91e-08, - "haba": 8.91e-08, - "halflings": 8.91e-08, - "halwa": 8.91e-08, - "hamam": 8.91e-08, - "handwoven": 8.91e-08, - "hannam": 8.91e-08, - "harbord": 8.91e-08, - "hardrock": 8.91e-08, - "harga": 8.91e-08, - "harmonix": 8.91e-08, - "hartshorne": 8.91e-08, - "harumi": 8.91e-08, - "hasbros": 8.91e-08, - "hasidim": 8.91e-08, - "hassett": 8.91e-08, - "hatshepsut": 8.91e-08, - "hauschka": 8.91e-08, - "haveli": 8.91e-08, - "hayloft": 8.91e-08, - "hdv": 8.91e-08, - "healdsburg": 8.91e-08, - "heba": 8.91e-08, - "heere": 8.91e-08, - "heid": 8.91e-08, - "helicon": 8.91e-08, - "helier": 8.91e-08, - "hellhound": 8.91e-08, - "hematocrit": 8.91e-08, - "hendrie": 8.91e-08, - "henrich": 8.91e-08, - "herbalists": 8.91e-08, - "herlihy": 8.91e-08, - "herods": 8.91e-08, - "heteronormativity": 8.91e-08, - "heth": 8.91e-08, - "hexagram": 8.91e-08, - "hhm": 8.91e-08, - "hillery": 8.91e-08, - "hillyer": 8.91e-08, - "hmb": 8.91e-08, - "hokkien": 8.91e-08, - "hollowness": 8.91e-08, - "homura": 8.91e-08, - "honeymoons": 8.91e-08, - "hooton": 8.91e-08, - "horeb": 8.91e-08, - "hoti": 8.91e-08, - "howve": 8.91e-08, - "hubie": 8.91e-08, - "hurrell": 8.91e-08, - "hybridity": 8.91e-08, - "hydroplane": 8.91e-08, - "hyperlipidemia": 8.91e-08, - "iacocca": 8.91e-08, - "icefall": 8.91e-08, - "idiosyncrasy": 8.91e-08, - "iframe": 8.91e-08, - "igad": 8.91e-08, - "ihrer": 8.91e-08, - "iinet": 8.91e-08, - "ikhwan": 8.91e-08, - "ikki": 8.91e-08, - "ilie": 8.91e-08, - "illegitimately": 8.91e-08, - "imbuing": 8.91e-08, - "immobilizing": 8.91e-08, - "immolated": 8.91e-08, - "imperio": 8.91e-08, - "inanity": 8.91e-08, - "inanna": 8.91e-08, - "indemnities": 8.91e-08, - "independance": 8.91e-08, - "indiscernible": 8.91e-08, - "indys": 8.91e-08, - "infinitives": 8.91e-08, - "inflammations": 8.91e-08, - "informatica": 8.91e-08, - "inseparably": 8.91e-08, - "instars": 8.91e-08, - "intercut": 8.91e-08, - "interphase": 8.91e-08, - "iroh": 8.91e-08, - "ironsides": 8.91e-08, - "issey": 8.91e-08, - "isso": 8.91e-08, - "izod": 8.91e-08, - "jafari": 8.91e-08, - "jaga": 8.91e-08, - "jamiroquai": 8.91e-08, - "janissaries": 8.91e-08, - "jarmusch": 8.91e-08, - "javas": 8.91e-08, - "jenko": 8.91e-08, - "jfl": 8.91e-08, - "jitendra": 8.91e-08, - "johnsbury": 8.91e-08, - "johnsonville": 8.91e-08, - "jok": 8.91e-08, - "jonghyun": 8.91e-08, - "jorn": 8.91e-08, - "journ": 8.91e-08, - "jra": 8.91e-08, - "juin": 8.91e-08, - "kaci": 8.91e-08, - "kahlua": 8.91e-08, - "kaiba": 8.91e-08, - "kaisha": 8.91e-08, - "kamasutra": 8.91e-08, - "kamin": 8.91e-08, - "kanin": 8.91e-08, - "kansans": 8.91e-08, - "kanzaki": 8.91e-08, - "karlos": 8.91e-08, - "karri": 8.91e-08, - "kaskaskia": 8.91e-08, - "katsumi": 8.91e-08, - "kav": 8.91e-08, - "kaylas": 8.91e-08, - "keh": 8.91e-08, - "kein": 8.91e-08, - "kenora": 8.91e-08, - "khaleda": 8.91e-08, - "kien": 8.91e-08, - "kilohertz": 8.91e-08, - "knowns": 8.91e-08, - "koester": 8.91e-08, - "konkan": 8.91e-08, - "koz": 8.91e-08, - "krillin": 8.91e-08, - "kristiansen": 8.91e-08, - "kronstadt": 8.91e-08, - "krush": 8.91e-08, - "kuechly": 8.91e-08, - "kurland": 8.91e-08, - "kutuzov": 8.91e-08, - "kyal": 8.91e-08, - "lahat": 8.91e-08, - "lajos": 8.91e-08, - "laki": 8.91e-08, - "lamartine": 8.91e-08, - "lampson": 8.91e-08, - "landmasses": 8.91e-08, - "lanie": 8.91e-08, - "laplante": 8.91e-08, - "larousse": 8.91e-08, - "latics": 8.91e-08, - "laurin": 8.91e-08, - "leaches": 8.91e-08, - "leavy": 8.91e-08, - "legault": 8.91e-08, - "lessors": 8.91e-08, - "leta": 8.91e-08, - "lexicography": 8.91e-08, - "liming": 8.91e-08, - "limply": 8.91e-08, - "lome": 8.91e-08, - "longstocking": 8.91e-08, - "loosest": 8.91e-08, - "lorcan": 8.91e-08, - "louboutins": 8.91e-08, - "lovel": 8.91e-08, - "lowliest": 8.91e-08, - "lsf": 8.91e-08, - "lsl": 8.91e-08, - "luteal": 8.91e-08, - "lvs": 8.91e-08, - "lysergic": 8.91e-08, - "madrasas": 8.91e-08, - "maestri": 8.91e-08, - "mairead": 8.91e-08, - "maisonette": 8.91e-08, - "malayali": 8.91e-08, - "mallinson": 8.91e-08, - "mandaluyong": 8.91e-08, - "mangano": 8.91e-08, - "manliest": 8.91e-08, - "mantas": 8.91e-08, - "manz": 8.91e-08, - "marantz": 8.91e-08, - "marcher": 8.91e-08, - "marcuss": 8.91e-08, - "marney": 8.91e-08, - "marnier": 8.91e-08, - "massapequa": 8.91e-08, - "mastodons": 8.91e-08, - "masur": 8.91e-08, - "mattoon": 8.91e-08, - "maxes": 8.91e-08, - "mayest": 8.91e-08, - "mbm": 8.91e-08, - "mccaughey": 8.91e-08, - "mcdormand": 8.91e-08, - "mcdowells": 8.91e-08, - "mcgeorge": 8.91e-08, - "mcgloin": 8.91e-08, - "mcquillan": 8.91e-08, - "meetinghouse": 8.91e-08, - "memeing": 8.91e-08, - "menuhin": 8.91e-08, - "merrett": 8.91e-08, - "merrie": 8.91e-08, - "meteoroid": 8.91e-08, - "miga": 8.91e-08, - "mihi": 8.91e-08, - "minard": 8.91e-08, - "minored": 8.91e-08, - "mirkwood": 8.91e-08, - "misao": 8.91e-08, - "misappropriating": 8.91e-08, - "misawa": 8.91e-08, - "misjudgment": 8.91e-08, - "misprints": 8.91e-08, - "mispronouncing": 8.91e-08, - "misspelt": 8.91e-08, - "mne": 8.91e-08, - "mnemosyne": 8.91e-08, - "moas": 8.91e-08, - "mody": 8.91e-08, - "moins": 8.91e-08, - "molinaro": 8.91e-08, - "monofilament": 8.91e-08, - "montalvo": 8.91e-08, - "montreuil": 8.91e-08, - "moorcroft": 8.91e-08, - "moralists": 8.91e-08, - "moros": 8.91e-08, - "morpurgo": 8.91e-08, - "mothe": 8.91e-08, - "mozillas": 8.91e-08, - "muchas": 8.91e-08, - "mudslinging": 8.91e-08, - "mullers": 8.91e-08, - "multiforme": 8.91e-08, - "multisensory": 8.91e-08, - "multithreaded": 8.91e-08, - "mure": 8.91e-08, - "murong": 8.91e-08, - "musts": 8.91e-08, - "mvno": 8.91e-08, - "nago": 8.91e-08, - "naivasha": 8.91e-08, - "nalu": 8.91e-08, - "nanocomposites": 8.91e-08, - "naturopath": 8.91e-08, - "nausicaa": 8.91e-08, - "neddy": 8.91e-08, - "nellys": 8.91e-08, - "nessus": 8.91e-08, - "netbooks": 8.91e-08, - "newline": 8.91e-08, - "nieve": 8.91e-08, - "niggles": 8.91e-08, - "nighthawks": 8.91e-08, - "nipissing": 8.91e-08, - "niwa": 8.91e-08, - "noncompetitive": 8.91e-08, - "nonfatal": 8.91e-08, - "nonnative": 8.91e-08, - "nonresidential": 8.91e-08, - "novara": 8.91e-08, - "npe": 8.91e-08, - "npg": 8.91e-08, - "nthe": 8.91e-08, - "ntm": 8.91e-08, - "nvc": 8.91e-08, - "nwp": 8.91e-08, - "nycc": 8.91e-08, - "nyk": 8.91e-08, - "nymex": 8.91e-08, - "obiang": 8.91e-08, - "occitan": 8.91e-08, - "oceanographers": 8.91e-08, - "oddness": 8.91e-08, - "odia": 8.91e-08, - "offsprings": 6.61e-08, - "ofw": 8.91e-08, - "ohta": 8.91e-08, - "ojha": 8.91e-08, - "oldboy": 8.91e-08, - "oligosaccharide": 8.91e-08, - "olmo": 8.91e-08, - "olynyk": 8.91e-08, - "omdurman": 8.91e-08, - "onan": 8.91e-08, - "onii": 8.91e-08, - "onlines": 8.91e-08, - "opex": 8.91e-08, - "opg": 8.91e-08, - "oppurtunity": 8.91e-08, - "ordinations": 8.91e-08, - "organophosphate": 8.91e-08, - "ormiston": 8.91e-08, - "orp": 8.91e-08, - "osus": 8.91e-08, - "outpourings": 8.91e-08, - "outsmarting": 8.91e-08, - "outstation": 8.91e-08, - "overreached": 8.91e-08, - "oversimplifying": 8.91e-08, - "pacoima": 8.91e-08, - "pacu": 8.91e-08, - "pacy": 8.91e-08, - "paintbrushes": 8.91e-08, - "papists": 8.91e-08, - "parsec": 8.91e-08, - "pastoralism": 8.91e-08, - "pastureland": 8.91e-08, - "pathophysiological": 8.91e-08, - "patrizio": 8.91e-08, - "pawlenty": 8.91e-08, - "paycheque": 8.91e-08, - "paydays": 8.91e-08, - "pebbly": 8.91e-08, - "pedants": 8.91e-08, - "pennock": 8.91e-08, - "percussionists": 8.91e-08, - "peroni": 8.91e-08, - "pfl": 8.91e-08, - "pharrells": 8.91e-08, - "phebe": 8.91e-08, - "philadelphians": 8.91e-08, - "photoluminescence": 8.91e-08, - "phylloxera": 8.91e-08, - "pian": 8.91e-08, - "pickaxes": 8.91e-08, - "pigging": 8.91e-08, - "pinar": 8.91e-08, - "pinkham": 8.91e-08, - "pinos": 8.91e-08, - "piratical": 8.91e-08, - "piton": 8.91e-08, - "pitot": 8.91e-08, - "platformers": 8.91e-08, - "playstyle": 8.91e-08, - "plcs": 8.91e-08, - "plonker": 8.91e-08, - "pogues": 8.91e-08, - "policymaker": 8.91e-08, - "pollys": 8.91e-08, - "poltava": 8.91e-08, - "polyana": 8.91e-08, - "pomerantz": 8.91e-08, - "pontiffs": 8.91e-08, - "portales": 8.91e-08, - "posco": 8.91e-08, - "possessors": 8.91e-08, - "postgraduates": 8.91e-08, - "potshots": 8.91e-08, - "poulet": 8.91e-08, - "praecox": 8.91e-08, - "premio": 8.91e-08, - "pressurizing": 8.91e-08, - "priapism": 8.91e-08, - "prioritisation": 8.91e-08, - "pritam": 8.91e-08, - "procopius": 8.91e-08, - "profes": 8.91e-08, - "professionalized": 8.91e-08, - "pronation": 8.91e-08, - "proteges": 8.91e-08, - "prowlers": 8.91e-08, - "proximally": 8.91e-08, - "pslv": 8.91e-08, - "psylocke": 8.91e-08, - "ptg": 8.91e-08, - "pupation": 8.91e-08, - "putri": 8.91e-08, - "pyrrole": 8.91e-08, - "quero": 8.91e-08, - "quiksilver": 8.91e-08, - "quintiles": 8.91e-08, - "quinze": 8.91e-08, - "rafas": 8.91e-08, - "ragi": 8.91e-08, - "raiffeisen": 8.91e-08, - "railwaymen": 8.91e-08, - "rainsford": 8.91e-08, - "rajs": 8.91e-08, - "rajputana": 8.91e-08, - "ramsbottom": 8.91e-08, - "ranko": 8.91e-08, - "ratajkowski": 8.91e-08, - "ratcheted": 8.91e-08, - "realitys": 8.91e-08, - "reat": 8.91e-08, - "rebalanced": 8.91e-08, - "reconfirm": 8.91e-08, - "reconnoiter": 8.91e-08, - "rediff": 8.91e-08, - "redington": 8.91e-08, - "reignites": 8.91e-08, - "reincarnations": 8.91e-08, - "reinsurers": 8.91e-08, - "reinvigorating": 8.91e-08, - "remarries": 8.91e-08, - "rems": 8.91e-08, - "remsen": 8.91e-08, - "rereleased": 8.91e-08, - "restyled": 8.91e-08, - "retrievable": 8.91e-08, - "rhabdomyolysis": 8.91e-08, - "rhus": 8.91e-08, - "rigaud": 8.91e-08, - "riper": 8.91e-08, - "rishta": 8.91e-08, - "riverwood": 8.91e-08, - "roadmaster": 8.91e-08, - "rocketship": 8.91e-08, - "rodale": 8.91e-08, - "rohypnol": 8.91e-08, - "rollouts": 8.91e-08, - "romanus": 8.91e-08, - "romberg": 8.91e-08, - "rosaline": 8.91e-08, - "roscosmos": 8.91e-08, - "rosenfield": 8.91e-08, - "royster": 8.91e-08, - "rsx": 8.91e-08, - "rudisha": 8.91e-08, - "runup": 8.91e-08, - "russert": 8.91e-08, - "rythm": 8.91e-08, - "ryus": 8.91e-08, - "sabino": 8.91e-08, - "sadar": 8.91e-08, - "safed": 8.91e-08, - "sagaing": 8.91e-08, - "sailer": 8.91e-08, - "salado": 8.91e-08, - "saltines": 8.91e-08, - "salves": 8.91e-08, - "salzman": 8.91e-08, - "sanderss": 8.91e-08, - "sandpipers": 8.91e-08, - "sangin": 8.91e-08, - "sardonically": 8.91e-08, - "sary": 8.91e-08, - "saucier": 8.91e-08, - "sauntering": 8.91e-08, - "savill": 8.91e-08, - "savo": 8.91e-08, - "sayyed": 8.91e-08, - "scannell": 8.91e-08, - "scattershot": 8.91e-08, - "schieffer": 8.91e-08, - "schillings": 8.91e-08, - "schip": 8.91e-08, - "schlep": 8.91e-08, - "schule": 8.91e-08, - "scooper": 8.91e-08, - "scrimmages": 8.91e-08, - "scrunchie": 8.91e-08, - "sculley": 8.91e-08, - "scuttlebutt": 8.91e-08, - "segas": 8.91e-08, - "seljuk": 8.91e-08, - "sergeyev": 8.91e-08, - "serology": 8.91e-08, - "sexists": 8.91e-08, - "seymours": 8.91e-08, - "shahada": 8.91e-08, - "shamelessness": 8.91e-08, - "shannara": 8.91e-08, - "sharpless": 8.91e-08, - "shera": 8.91e-08, - "shewed": 8.91e-08, - "shiftless": 8.91e-08, - "shikhar": 8.91e-08, - "shinoda": 8.91e-08, - "shravan": 8.91e-08, - "shrm": 8.91e-08, - "shroom": 8.91e-08, - "shuji": 8.91e-08, - "sidebars": 8.91e-08, - "sidebottom": 8.91e-08, - "sideswipe": 8.91e-08, - "sidonia": 8.91e-08, - "siento": 8.91e-08, - "siliceous": 8.91e-08, - "simultaneity": 8.91e-08, - "sini": 8.91e-08, - "sinise": 8.91e-08, - "sirhan": 8.91e-08, - "sirocco": 8.91e-08, - "skrill": 8.91e-08, - "skywest": 8.91e-08, - "slapshot": 8.91e-08, - "slevin": 8.91e-08, - "slimed": 8.91e-08, - "smoove": 8.91e-08, - "smush": 8.91e-08, - "snowmaking": 8.91e-08, - "snowmass": 8.91e-08, - "soko": 8.91e-08, - "solanke": 8.91e-08, - "solvang": 8.91e-08, - "sooke": 8.91e-08, - "southard": 8.91e-08, - "sparkes": 8.91e-08, - "specialness": 8.91e-08, - "speers": 8.91e-08, - "spens": 8.91e-08, - "spezia": 8.91e-08, - "spheroidal": 8.91e-08, - "spidery": 8.91e-08, - "spikelets": 8.91e-08, - "spoelstra": 8.91e-08, - "stad": 8.91e-08, - "staind": 8.91e-08, - "staplers": 8.91e-08, - "statelessness": 8.91e-08, - "stationmaster": 8.91e-08, - "steeling": 8.91e-08, - "steelworker": 8.91e-08, - "stephanus": 8.91e-08, - "stickier": 8.91e-08, - "stipendiary": 8.91e-08, - "stomatitis": 8.91e-08, - "stompin": 8.91e-08, - "stormfront": 8.91e-08, - "stranges": 8.91e-08, - "strangford": 8.91e-08, - "striatal": 8.91e-08, - "stupas": 8.91e-08, - "stylistics": 8.91e-08, - "subducting": 8.91e-08, - "subgraph": 8.91e-08, - "submittal": 8.91e-08, - "subreddits": 8.91e-08, - "substantiating": 8.91e-08, - "subtree": 8.91e-08, - "sudarshan": 8.91e-08, - "suffield": 8.91e-08, - "suicidality": 8.91e-08, - "suka": 8.91e-08, - "sullinger": 8.91e-08, - "sultanas": 8.91e-08, - "supplicant": 8.91e-08, - "suribachi": 8.91e-08, - "swappable": 8.91e-08, - "swm": 8.91e-08, - "sylvestris": 8.91e-08, - "symbionts": 8.91e-08, - "symphysis": 8.91e-08, - "syphilitic": 8.91e-08, - "taino": 8.91e-08, - "talat": 8.91e-08, - "tallaght": 8.91e-08, - "tamers": 8.91e-08, - "tangerang": 8.91e-08, - "tansey": 8.91e-08, - "taron": 8.91e-08, - "tatton": 8.91e-08, - "tbk": 8.91e-08, - "tbqh": 8.91e-08, - "techradar": 8.91e-08, - "telefonica": 8.91e-08, - "temblor": 8.91e-08, - "terpene": 8.91e-08, - "tfi": 8.91e-08, - "thatta": 8.91e-08, - "thermoregulation": 8.91e-08, - "thrashes": 8.91e-08, - "tinkerer": 8.91e-08, - "tinplate": 8.91e-08, - "toadies": 8.91e-08, - "tofino": 8.91e-08, - "toggled": 8.91e-08, - "tokelau": 8.91e-08, - "tolly": 8.91e-08, - "tondo": 8.91e-08, - "tooele": 8.91e-08, - "torontonians": 8.91e-08, - "totw": 8.91e-08, - "trammel": 8.91e-08, - "trances": 8.91e-08, - "transcultural": 8.91e-08, - "transferrin": 8.91e-08, - "transonic": 8.91e-08, - "transpiring": 8.91e-08, - "trialed": 8.91e-08, - "trikes": 8.91e-08, - "trimesters": 8.91e-08, - "tristate": 8.91e-08, - "trn": 8.91e-08, - "truitt": 8.91e-08, - "trutv": 8.91e-08, - "tti": 8.91e-08, - "ttu": 8.91e-08, - "turnings": 8.91e-08, - "tvd": 8.91e-08, - "twayne": 8.91e-08, - "tyl": 8.91e-08, - "tyreek": 8.91e-08, - "uji": 8.91e-08, - "unbranched": 8.91e-08, - "unburnt": 8.91e-08, - "uncs": 8.91e-08, - "uncorroborated": 8.91e-08, - "underpaying": 8.91e-08, - "unfaithfulness": 8.91e-08, - "unprecedentedly": 8.91e-08, - "unrevealed": 8.91e-08, - "uop": 8.91e-08, - "upending": 8.91e-08, - "upf": 8.91e-08, - "upshur": 8.91e-08, - "urumqi": 8.91e-08, - "utopianism": 8.91e-08, - "vah": 8.91e-08, - "valent": 8.91e-08, - "valorem": 8.91e-08, - "vances": 8.91e-08, - "varda": 8.91e-08, - "varina": 8.91e-08, - "vellore": 8.91e-08, - "veneered": 8.91e-08, - "ventre": 8.91e-08, - "verapamil": 8.91e-08, - "verbeek": 8.91e-08, - "veri": 8.91e-08, - "vermonters": 8.91e-08, - "verwoerd": 8.91e-08, - "vesna": 8.91e-08, - "videocassette": 8.91e-08, - "vigilantly": 8.91e-08, - "vilsack": 8.91e-08, - "vins": 8.91e-08, - "virtua": 8.91e-08, - "visto": 8.91e-08, - "vouches": 8.91e-08, - "vsphere": 8.91e-08, - "wacked": 8.91e-08, - "waitstaff": 8.91e-08, - "wako": 8.91e-08, - "walkability": 8.91e-08, - "wallaroo": 8.91e-08, - "waluigi": 8.91e-08, - "washings": 8.91e-08, - "watto": 8.91e-08, - "watton": 8.91e-08, - "waxwork": 8.91e-08, - "waycross": 8.91e-08, - "waymo": 8.91e-08, - "wdf": 8.91e-08, - "wearhouse": 8.91e-08, - "weathertech": 8.91e-08, - "webley": 8.91e-08, - "wedgewood": 8.91e-08, - "weel": 8.91e-08, - "weightier": 8.91e-08, - "weightings": 8.91e-08, - "westlaw": 8.91e-08, - "westmount": 8.91e-08, - "wheatsheaf": 8.91e-08, - "wherry": 8.91e-08, - "whomsoever": 8.91e-08, - "whp": 8.91e-08, - "wickliffe": 8.91e-08, - "wiedemann": 8.91e-08, - "wikihow": 8.91e-08, - "wilcock": 8.91e-08, - "windfarm": 8.91e-08, - "winrar": 8.91e-08, - "wiseau": 8.91e-08, - "wnyc": 8.91e-08, - "woodfield": 8.91e-08, - "workmate": 8.91e-08, - "wpt": 8.91e-08, - "wtih": 8.91e-08, - "wub": 8.91e-08, - "wyk": 8.91e-08, - "wynd": 8.91e-08, - "xxxxxx": 8.91e-08, - "yasu": 8.91e-08, - "yippie": 8.91e-08, - "yoshimi": 8.91e-08, - "youu": 8.91e-08, - "yugoslavs": 8.91e-08, - "zammit": 8.91e-08, - "zanes": 8.91e-08, - "zech": 8.91e-08, - "zer": 8.91e-08, - "zoella": 8.91e-08, - "aamc": 8.71e-08, - "aashto": 8.71e-08, - "aban": 8.71e-08, - "abortionist": 8.71e-08, - "abridgement": 8.71e-08, - "abstains": 8.71e-08, - "acab": 8.71e-08, - "acadians": 8.71e-08, - "acquirers": 8.71e-08, - "actos": 8.71e-08, - "acworth": 8.71e-08, - "adal": 8.71e-08, - "adg": 8.71e-08, - "adventurism": 8.71e-08, - "advowson": 8.71e-08, - "affiliating": 8.71e-08, - "affinis": 8.71e-08, - "affordances": 8.71e-08, - "agglomerations": 8.71e-08, - "ahmadu": 8.71e-08, - "aider": 8.71e-08, - "airgun": 8.71e-08, - "akashic": 8.71e-08, - "akko": 8.71e-08, - "alexanderplatz": 8.71e-08, - "aliquot": 8.71e-08, - "allama": 8.71e-08, - "aloy": 8.71e-08, - "amirs": 8.71e-08, - "ampa": 8.71e-08, - "amuro": 8.71e-08, - "anam": 8.71e-08, - "anaphase": 8.71e-08, - "anbu": 8.71e-08, - "ancora": 8.71e-08, - "anette": 8.71e-08, - "anji": 8.71e-08, - "anneliese": 8.71e-08, - "anomie": 8.71e-08, - "antisubmarine": 8.71e-08, - "apollodorus": 8.71e-08, - "apraxia": 8.71e-08, - "arachne": 8.71e-08, - "arachnophobia": 8.71e-08, - "areata": 8.71e-08, - "argot": 8.71e-08, - "arianism": 8.71e-08, - "arnaldo": 8.71e-08, - "arrestees": 8.71e-08, - "arth": 8.71e-08, - "asam": 8.71e-08, - "aslo": 8.71e-08, - "assy": 8.71e-08, - "atas": 8.71e-08, - "aubusson": 8.71e-08, - "aula": 8.71e-08, - "autocorrected": 8.71e-08, - "auxerre": 8.71e-08, - "awu": 8.71e-08, - "azurite": 8.71e-08, - "backtracks": 8.71e-08, - "bahahaha": 8.71e-08, - "bailes": 8.71e-08, - "bakehouse": 8.71e-08, - "balaklava": 8.71e-08, - "balam": 8.71e-08, - "balderdash": 8.71e-08, - "ballade": 8.71e-08, - "balusters": 8.71e-08, - "bankston": 8.71e-08, - "barbershops": 8.71e-08, - "barfed": 8.71e-08, - "barish": 8.71e-08, - "bartolome": 8.71e-08, - "baseboards": 8.71e-08, - "baskervilles": 8.71e-08, - "basler": 8.71e-08, - "batchelder": 8.71e-08, - "battletech": 8.71e-08, - "bazemore": 8.71e-08, - "bbk": 8.71e-08, - "bedelia": 8.71e-08, - "bedpost": 8.71e-08, - "beeton": 8.71e-08, - "beke": 8.71e-08, - "bellwood": 8.71e-08, - "bensalem": 8.71e-08, - "benyon": 8.71e-08, - "bequeathing": 8.71e-08, - "bergevin": 8.71e-08, - "beringer": 8.71e-08, - "bernardin": 8.71e-08, - "bertuzzi": 8.71e-08, - "bge": 8.71e-08, - "bhc": 8.71e-08, - "bhola": 8.71e-08, - "bibis": 8.71e-08, - "bifocals": 8.71e-08, - "bigness": 8.71e-08, - "billowed": 8.71e-08, - "bilt": 8.71e-08, - "bindery": 8.71e-08, - "binford": 8.71e-08, - "birgitta": 8.71e-08, - "bisa": 8.71e-08, - "bitstamp": 8.71e-08, - "bjd": 8.71e-08, - "bka": 8.71e-08, - "blanka": 8.71e-08, - "blat": 8.71e-08, - "blessington": 8.71e-08, - "blewett": 8.71e-08, - "blunkett": 8.71e-08, - "bmf": 8.71e-08, - "bodycon": 8.71e-08, - "boice": 8.71e-08, - "boling": 8.71e-08, - "bonbons": 8.71e-08, - "borrelia": 8.71e-08, - "bosanquet": 8.71e-08, - "botanically": 8.71e-08, - "bowsprit": 8.71e-08, - "bracebridge": 8.71e-08, - "braggadocio": 8.71e-08, - "brangelina": 8.71e-08, - "breakbeat": 8.71e-08, - "breeland": 8.71e-08, - "bremerhaven": 8.71e-08, - "bremmer": 8.71e-08, - "brined": 8.71e-08, - "brownwood": 8.71e-08, - "brucie": 8.71e-08, - "brunnen": 8.71e-08, - "brust": 8.71e-08, - "bucci": 8.71e-08, - "builtin": 8.71e-08, - "burkitt": 8.71e-08, - "burmeister": 8.71e-08, - "bushey": 8.71e-08, - "buswell": 8.71e-08, - "byul": 8.71e-08, - "bywater": 8.71e-08, - "cacophonous": 8.71e-08, - "caftan": 8.71e-08, - "caillat": 8.71e-08, - "caldicott": 8.71e-08, - "calor": 8.71e-08, - "camborne": 8.71e-08, - "camelia": 8.71e-08, - "canadien": 8.71e-08, - "canta": 8.71e-08, - "cantabile": 8.71e-08, - "capcoms": 8.71e-08, - "capm": 8.71e-08, - "carbolic": 8.71e-08, - "cardiorespiratory": 8.71e-08, - "cardo": 8.71e-08, - "carriageways": 8.71e-08, - "carrousel": 8.71e-08, - "castella": 8.71e-08, - "cbgb": 8.71e-08, - "censorious": 8.71e-08, - "censures": 8.71e-08, - "centerpoint": 8.71e-08, - "ceremonys": 8.71e-08, - "cerseis": 8.71e-08, - "cessnock": 8.71e-08, - "cgy": 8.71e-08, - "chakotay": 8.71e-08, - "chancellorship": 8.71e-08, - "changelings": 8.71e-08, - "chani": 8.71e-08, - "charron": 8.71e-08, - "chatterley": 8.71e-08, - "cheapening": 8.71e-08, - "chels": 8.71e-08, - "chemotaxis": 8.71e-08, - "chiasson": 8.71e-08, - "chilwell": 8.71e-08, - "chlorhexidine": 8.71e-08, - "cholmondeley": 8.71e-08, - "chora": 8.71e-08, - "chordal": 8.71e-08, - "chromophore": 8.71e-08, - "cibola": 8.71e-08, - "cirillo": 8.71e-08, - "clairvaux": 8.71e-08, - "clearcut": 8.71e-08, - "clefts": 8.71e-08, - "clime": 8.71e-08, - "clipboards": 8.71e-08, - "clives": 8.71e-08, - "clube": 8.71e-08, - "cnas": 8.71e-08, - "coachmen": 8.71e-08, - "coagulate": 8.71e-08, - "coatesville": 8.71e-08, - "cocoanut": 8.71e-08, - "cognitions": 8.71e-08, - "colbie": 8.71e-08, - "collimated": 8.71e-08, - "colonie": 8.71e-08, - "coloradans": 8.71e-08, - "commentated": 8.71e-08, - "committe": 8.71e-08, - "condyle": 8.71e-08, - "connellsville": 8.71e-08, - "contractility": 8.71e-08, - "copyrightable": 8.71e-08, - "cordage": 8.71e-08, - "cose": 8.71e-08, - "cottingham": 8.71e-08, - "counterclaims": 8.71e-08, - "cowdery": 8.71e-08, - "crapshoot": 8.71e-08, - "cras": 8.71e-08, - "cratering": 8.71e-08, - "creativeness": 8.71e-08, - "cribb": 8.71e-08, - "criminological": 8.71e-08, - "cronos": 8.71e-08, - "crossbred": 8.71e-08, - "crosscut": 8.71e-08, - "crouton": 8.71e-08, - "crufts": 8.71e-08, - "cruncher": 8.71e-08, - "crystallise": 8.71e-08, - "cscs": 8.71e-08, - "curare": 8.71e-08, - "dagobah": 8.71e-08, - "dahir": 8.71e-08, - "darning": 8.71e-08, - "darrah": 8.71e-08, - "datable": 8.71e-08, - "dbase": 8.71e-08, - "dcb": 8.71e-08, - "dddd": 8.71e-08, - "deathwish": 8.71e-08, - "debriefed": 8.71e-08, - "deeks": 8.71e-08, - "deerskin": 8.71e-08, - "defecated": 8.71e-08, - "deists": 8.71e-08, - "deloittes": 8.71e-08, - "delphinium": 8.71e-08, - "demonised": 8.71e-08, - "denisov": 8.71e-08, - "deol": 8.71e-08, - "dereham": 8.71e-08, - "determiners": 8.71e-08, - "deutch": 8.71e-08, - "deventer": 8.71e-08, - "devgn": 8.71e-08, - "devotedly": 8.71e-08, - "dewberry": 8.71e-08, - "dianetics": 8.71e-08, - "dimms": 8.71e-08, - "diors": 8.71e-08, - "directeur": 8.71e-08, - "disconnections": 8.71e-08, - "disodium": 8.71e-08, - "disorient": 8.71e-08, - "dispossess": 8.71e-08, - "dissapear": 8.71e-08, - "distension": 8.71e-08, - "dlls": 8.71e-08, - "domingos": 8.71e-08, - "doni": 8.71e-08, - "dook": 8.71e-08, - "doormats": 8.71e-08, - "dorit": 8.71e-08, - "dragomir": 8.71e-08, - "dramatisation": 8.71e-08, - "drouet": 8.71e-08, - "droz": 8.71e-08, - "druce": 8.71e-08, - "drumhead": 8.71e-08, - "duas": 8.71e-08, - "duchesses": 8.71e-08, - "dueled": 8.71e-08, - "dugin": 8.71e-08, - "duguid": 8.71e-08, - "dumbness": 8.71e-08, - "duplicator": 8.71e-08, - "durance": 8.71e-08, - "durward": 8.71e-08, - "dweck": 8.71e-08, - "dysphoric": 8.71e-08, - "ebner": 8.71e-08, - "ecbs": 8.71e-08, - "eclairs": 8.71e-08, - "editorialized": 8.71e-08, - "edric": 8.71e-08, - "effrontery": 8.71e-08, - "eggert": 8.71e-08, - "egotist": 8.71e-08, - "egyptologists": 8.71e-08, - "eide": 8.71e-08, - "eigenvector": 8.71e-08, - "eightieth": 8.71e-08, - "eking": 8.71e-08, - "elastics": 8.71e-08, - "electronegativity": 8.71e-08, - "ellard": 8.71e-08, - "embouchure": 8.71e-08, - "emerita": 8.71e-08, - "emmit": 8.71e-08, - "emy": 8.71e-08, - "endnote": 8.71e-08, - "englishs": 8.71e-08, - "ensley": 8.71e-08, - "eor": 8.71e-08, - "equestrians": 8.71e-08, - "equivalences": 8.71e-08, - "ercole": 8.71e-08, - "erects": 8.71e-08, - "errington": 8.71e-08, - "espiritu": 8.71e-08, - "estabrook": 8.71e-08, - "estados": 8.71e-08, - "esthetician": 8.71e-08, - "etan": 8.71e-08, - "eucalypt": 8.71e-08, - "eveleigh": 8.71e-08, - "evenness": 8.71e-08, - "evolutionist": 8.71e-08, - "evos": 8.71e-08, - "excelent": 8.71e-08, - "exome": 8.71e-08, - "expr": 8.71e-08, - "extern": 8.71e-08, - "extracorporeal": 8.71e-08, - "fafnir": 8.71e-08, - "faggy": 8.71e-08, - "fami": 8.71e-08, - "fantine": 8.71e-08, - "farthings": 8.71e-08, - "fassbinder": 8.71e-08, - "ferdie": 8.71e-08, - "ferdy": 8.71e-08, - "fernandezs": 8.71e-08, - "festered": 8.71e-08, - "fincen": 8.71e-08, - "fingerstyle": 8.71e-08, - "finnegans": 6.46e-08, - "fiora": 8.71e-08, - "flaco": 8.71e-08, - "flanagans": 8.71e-08, - "floof": 8.71e-08, - "flounce": 8.71e-08, - "flowcharts": 8.71e-08, - "fnma": 8.71e-08, - "foreclosing": 8.71e-08, - "forestalled": 8.71e-08, - "foreveralone": 8.71e-08, - "fortissimo": 8.71e-08, - "francesa": 8.71e-08, - "frankens": 8.71e-08, - "fraserburgh": 8.71e-08, - "frears": 8.71e-08, - "freediving": 8.71e-08, - "friberg": 8.71e-08, - "frogman": 8.71e-08, - "frontbench": 8.71e-08, - "fugate": 8.71e-08, - "fujiko": 8.71e-08, - "functors": 8.71e-08, - "funnelled": 8.71e-08, - "fyffe": 8.71e-08, - "gadsby": 8.71e-08, - "galeano": 8.71e-08, - "gambetta": 8.71e-08, - "gameloft": 8.71e-08, - "gaulish": 8.71e-08, - "geils": 8.71e-08, - "gencon": 8.71e-08, - "generalizable": 8.71e-08, - "gengar": 8.71e-08, - "gensler": 8.71e-08, - "geomorphological": 8.71e-08, - "geophysicists": 8.71e-08, - "geppetto": 8.71e-08, - "gezi": 8.71e-08, - "ghostbuster": 8.71e-08, - "ghostwriting": 8.71e-08, - "giggity": 8.71e-08, - "gigis": 8.71e-08, - "giron": 8.71e-08, - "gironde": 8.71e-08, - "giverny": 8.71e-08, - "glaive": 8.71e-08, - "glenside": 8.71e-08, - "glistens": 8.71e-08, - "globemaster": 8.71e-08, - "glovebox": 8.71e-08, - "godhood": 8.71e-08, - "goliad": 8.71e-08, - "goot": 8.71e-08, - "gorgeousness": 8.71e-08, - "gost": 8.71e-08, - "goty": 8.71e-08, - "governorates": 8.71e-08, - "grabner": 8.71e-08, - "gracies": 8.71e-08, - "gravitates": 8.71e-08, - "grijalva": 8.71e-08, - "grimlock": 8.71e-08, - "groote": 8.71e-08, - "guestrooms": 8.71e-08, - "guileless": 8.71e-08, - "gund": 8.71e-08, - "gustavsson": 8.71e-08, - "gwg": 8.71e-08, - "hagerman": 8.71e-08, - "haggai": 8.71e-08, - "haggar": 8.71e-08, - "haki": 8.71e-08, - "halfhearted": 8.71e-08, - "hanbok": 8.71e-08, - "hanmer": 8.71e-08, - "hanneman": 8.71e-08, - "harappan": 8.71e-08, - "harbourside": 8.71e-08, - "hartog": 8.71e-08, - "harz": 8.71e-08, - "haskells": 8.71e-08, - "hdt": 8.71e-08, - "headrests": 8.71e-08, - "heatherton": 8.71e-08, - "heihachi": 8.71e-08, - "hellcats": 8.71e-08, - "herodias": 8.71e-08, - "herre": 8.71e-08, - "hetch": 8.71e-08, - "hinault": 8.71e-08, - "hitech": 8.71e-08, - "hkt": 8.71e-08, - "hlaing": 8.71e-08, - "hogmanay": 8.71e-08, - "hoho": 8.71e-08, - "hollaback": 8.71e-08, - "homestay": 8.71e-08, - "homesteader": 8.71e-08, - "horatius": 8.71e-08, - "horikoshi": 8.71e-08, - "hornes": 8.71e-08, - "hrothgar": 8.71e-08, - "hughton": 8.71e-08, - "humanness": 8.71e-08, - "iatrogenic": 8.71e-08, - "ibew": 8.71e-08, - "icsid": 8.71e-08, - "idolised": 8.71e-08, - "ifor": 8.71e-08, - "imbroglio": 8.71e-08, - "impatiens": 8.71e-08, - "impey": 8.71e-08, - "impiety": 8.71e-08, - "implacably": 8.71e-08, - "impotency": 8.71e-08, - "ingemar": 8.71e-08, - "ingrams": 5.62e-08, - "inp": 8.71e-08, - "inta": 8.71e-08, - "intell": 8.71e-08, - "interjects": 8.71e-08, - "interleaving": 8.71e-08, - "internationalized": 8.71e-08, - "interpretable": 8.71e-08, - "interspaces": 8.71e-08, - "intoxicate": 8.71e-08, - "intraperitoneal": 8.71e-08, - "irradiate": 8.71e-08, - "isolationists": 8.71e-08, - "izard": 8.71e-08, - "jacka": 8.71e-08, - "jacklin": 8.71e-08, - "jackrabbits": 8.71e-08, - "janssens": 8.71e-08, - "jass": 8.71e-08, - "jayhawk": 8.71e-08, - "jaynes": 8.71e-08, - "jdc": 8.71e-08, - "jehoshaphat": 8.71e-08, - "jemmy": 8.71e-08, - "jeremih": 8.71e-08, - "jerichos": 8.71e-08, - "jezreel": 8.71e-08, - "jimmi": 8.71e-08, - "jimmies": 8.71e-08, - "jinxing": 8.71e-08, - "jitney": 8.71e-08, - "jolo": 8.71e-08, - "joons": 8.71e-08, - "jovovich": 8.71e-08, - "jukeboxes": 8.71e-08, - "jz": 8.71e-08, - "kabobs": 8.71e-08, - "kamay": 8.71e-08, - "kanako": 8.71e-08, - "kander": 8.71e-08, - "kaneda": 8.71e-08, - "kannur": 8.71e-08, - "kansan": 8.71e-08, - "kapamilya": 8.71e-08, - "kassem": 8.71e-08, - "kast": 8.71e-08, - "kauri": 8.71e-08, - "kazimierz": 8.71e-08, - "keebler": 8.71e-08, - "keister": 8.71e-08, - "kela": 8.71e-08, - "kelpie": 8.71e-08, - "kelvingrove": 8.71e-08, - "kennebunkport": 8.71e-08, - "keratosis": 8.71e-08, - "kerridge": 8.71e-08, - "kersh": 8.71e-08, - "keshas": 8.71e-08, - "kewl": 8.71e-08, - "khrushchevs": 8.71e-08, - "kiana": 8.71e-08, - "kies": 8.71e-08, - "kievan": 8.71e-08, - "kilbourne": 8.71e-08, - "kinberg": 8.71e-08, - "kindler": 8.71e-08, - "kindnesses": 8.71e-08, - "kitching": 8.71e-08, - "klemm": 8.71e-08, - "korah": 8.71e-08, - "kord": 8.71e-08, - "kosciuszko": 8.71e-08, - "kosi": 8.71e-08, - "kotaro": 8.71e-08, - "kpd": 8.71e-08, - "kriti": 8.71e-08, - "ksm": 8.71e-08, - "ksr": 8.71e-08, - "ktv": 8.71e-08, - "kubler": 8.71e-08, - "kurgan": 8.71e-08, - "kurokawa": 8.71e-08, - "kyd": 8.71e-08, - "kygo": 8.71e-08, - "lacie": 8.71e-08, - "lagann": 8.71e-08, - "laggards": 8.71e-08, - "lamplight": 8.71e-08, - "lantos": 8.71e-08, - "lapwing": 8.71e-08, - "latium": 8.71e-08, - "laut": 8.71e-08, - "layovers": 8.71e-08, - "leakes": 8.71e-08, - "leav": 8.71e-08, - "legenda": 8.71e-08, - "lehtonen": 8.71e-08, - "lelo": 8.71e-08, - "lenka": 8.71e-08, - "letcher": 8.71e-08, - "lhota": 8.71e-08, - "libbed": 8.71e-08, - "libdem": 8.71e-08, - "libres": 8.71e-08, - "licit": 8.71e-08, - "liebermann": 8.71e-08, - "lifehacker": 8.71e-08, - "lightship": 8.71e-08, - "limewire": 8.71e-08, - "lindblom": 8.71e-08, - "lindeman": 8.71e-08, - "linds": 8.71e-08, - "lior": 8.71e-08, - "liwa": 8.71e-08, - "lizbeth": 8.71e-08, - "llanos": 8.71e-08, - "lockie": 8.71e-08, - "lockridge": 8.71e-08, - "locs": 8.71e-08, - "lorenzen": 8.71e-08, - "louella": 8.71e-08, - "lowermost": 8.71e-08, - "lucozade": 8.71e-08, - "lukens": 8.71e-08, - "lumpectomy": 8.71e-08, - "luol": 8.71e-08, - "lyase": 8.71e-08, - "maad": 8.71e-08, - "macqueen": 8.71e-08, - "magne": 8.71e-08, - "magnesite": 8.71e-08, - "magno": 8.71e-08, - "malawis": 8.71e-08, - "mamamoo": 8.71e-08, - "manag": 8.71e-08, - "maned": 8.71e-08, - "manhasset": 8.71e-08, - "manlius": 8.71e-08, - "manquillo": 8.71e-08, - "mantell": 8.71e-08, - "marathoners": 8.71e-08, - "mariela": 8.71e-08, - "marigny": 8.71e-08, - "marineland": 8.71e-08, - "markakis": 8.71e-08, - "marmosets": 8.71e-08, - "martello": 8.71e-08, - "marzano": 8.71e-08, - "massaro": 8.71e-08, - "masturbatory": 8.71e-08, - "matchs": 8.71e-08, - "matchmakers": 8.71e-08, - "matheus": 8.71e-08, - "matsushima": 8.71e-08, - "mauthausen": 8.71e-08, - "mazie": 8.71e-08, - "mcbean": 8.71e-08, - "mccourty": 8.71e-08, - "mcgough": 8.71e-08, - "mcgruder": 8.71e-08, - "mcguiness": 8.71e-08, - "mcguinty": 8.71e-08, - "mcguirk": 8.71e-08, - "mcmahan": 8.71e-08, - "mcwilliam": 8.71e-08, - "meakin": 8.71e-08, - "melaleuca": 8.71e-08, - "melas": 8.71e-08, - "melksham": 8.71e-08, - "mellifera": 8.71e-08, - "melodie": 8.71e-08, - "melter": 8.71e-08, - "melwood": 8.71e-08, - "mendis": 8.71e-08, - "mendozas": 8.71e-08, - "merde": 8.71e-08, - "merleau": 8.71e-08, - "metabolisms": 8.71e-08, - "metellus": 8.71e-08, - "methodius": 8.71e-08, - "microdermabrasion": 8.71e-08, - "midlevel": 8.71e-08, - "mido": 8.71e-08, - "mildenhall": 8.71e-08, - "minicamp": 8.71e-08, - "mirpur": 8.71e-08, - "misclassified": 8.71e-08, - "mollis": 8.71e-08, - "momen": 8.71e-08, - "monkton": 8.71e-08, - "monocoque": 8.71e-08, - "monopolised": 8.71e-08, - "moorabbin": 8.71e-08, - "morais": 8.71e-08, - "moroz": 8.71e-08, - "motherlode": 8.71e-08, - "movimiento": 8.71e-08, - "mpw": 8.71e-08, - "mrn": 8.71e-08, - "mudding": 8.71e-08, - "muenster": 8.71e-08, - "muirs": 8.71e-08, - "multiplications": 8.71e-08, - "multitrack": 8.71e-08, - "mulvihill": 8.71e-08, - "muralitharan": 8.71e-08, - "murda": 8.71e-08, - "murtha": 8.71e-08, - "mychal": 8.71e-08, - "myke": 8.71e-08, - "nachrichten": 8.71e-08, - "nall": 8.71e-08, - "narang": 8.71e-08, - "narcs": 8.71e-08, - "ncert": 8.71e-08, - "neelix": 8.71e-08, - "neighing": 8.71e-08, - "neopets": 8.71e-08, - "nevus": 8.71e-08, - "nibiru": 8.71e-08, - "nichiren": 8.71e-08, - "nicolay": 8.71e-08, - "nihilo": 8.71e-08, - "nitschke": 8.71e-08, - "nkandla": 8.71e-08, - "nonesuch": 8.71e-08, - "nonmembers": 8.71e-08, - "nonsmoking": 8.71e-08, - "nooses": 8.71e-08, - "nootropic": 8.71e-08, - "nort": 8.71e-08, - "noster": 8.71e-08, - "nostri": 8.71e-08, - "nottinghams": 8.71e-08, - "novelistic": 8.71e-08, - "npf": 8.71e-08, - "npower": 8.71e-08, - "nuba": 8.71e-08, - "nubians": 8.71e-08, - "nuits": 8.71e-08, - "nyeri": 8.71e-08, - "nyheter": 8.71e-08, - "ocasey": 8.71e-08, - "oconor": 8.71e-08, - "oriley": 8.71e-08, - "oaken": 8.71e-08, - "oboes": 8.71e-08, - "ocado": 8.71e-08, - "occultists": 8.71e-08, - "ockham": 8.71e-08, - "ocm": 8.71e-08, - "ohmygod": 8.71e-08, - "omahas": 8.71e-08, - "omron": 8.71e-08, - "onos": 8.71e-08, - "orientate": 8.71e-08, - "orloff": 8.71e-08, - "osgoode": 8.71e-08, - "otamendi": 8.71e-08, - "outliving": 8.71e-08, - "overfeeding": 8.71e-08, - "overheats": 8.71e-08, - "oversleep": 8.71e-08, - "paden": 8.71e-08, - "palaeontologists": 8.71e-08, - "pallone": 8.71e-08, - "papayas": 8.71e-08, - "papworth": 8.71e-08, - "parasitoid": 8.71e-08, - "patersons": 8.71e-08, - "patrimonial": 8.71e-08, - "patters": 8.71e-08, - "pavlovs": 8.71e-08, - "pawl": 8.71e-08, - "pegu": 8.71e-08, - "peni": 8.71e-08, - "percs": 8.71e-08, - "pesaro": 8.71e-08, - "petkovic": 8.71e-08, - "phantasmagoria": 8.71e-08, - "philco": 8.71e-08, - "pickguard": 8.71e-08, - "pieper": 8.71e-08, - "piggie": 8.71e-08, - "pilotage": 8.71e-08, - "pingu": 8.71e-08, - "pinyon": 8.71e-08, - "pipettes": 8.71e-08, - "pipo": 8.71e-08, - "pittsford": 8.71e-08, - "pittston": 8.71e-08, - "pizzerias": 8.71e-08, - "plasticizers": 8.71e-08, - "plateaux": 8.71e-08, - "pleather": 8.71e-08, - "polyacrylamide": 8.71e-08, - "polyakov": 8.71e-08, - "pompeius": 8.71e-08, - "pontine": 8.71e-08, - "poplin": 8.71e-08, - "popstars": 8.71e-08, - "porygon": 8.71e-08, - "pospisil": 8.71e-08, - "postie": 8.71e-08, - "postion": 8.71e-08, - "postive": 8.71e-08, - "postprandial": 8.71e-08, - "potentate": 8.71e-08, - "poussey": 8.71e-08, - "prediabetes": 8.71e-08, - "prehospital": 8.71e-08, - "presentment": 8.71e-08, - "preservers": 8.71e-08, - "preterite": 8.71e-08, - "principes": 8.71e-08, - "procures": 8.71e-08, - "productiveness": 8.71e-08, - "prokop": 8.71e-08, - "protagoras": 8.71e-08, - "pterosaur": 8.71e-08, - "purdues": 8.71e-08, - "qam": 8.71e-08, - "qbr": 8.71e-08, - "quaaludes": 8.71e-08, - "quadrate": 8.71e-08, - "quanto": 8.71e-08, - "quatermass": 8.71e-08, - "quietus": 8.71e-08, - "quilters": 8.71e-08, - "quinces": 8.71e-08, - "radiographer": 8.71e-08, - "raif": 8.71e-08, - "rajshahi": 8.71e-08, - "ramification": 8.71e-08, - "rancorous": 8.71e-08, - "rarified": 8.71e-08, - "rathod": 8.71e-08, - "ravenel": 8.71e-08, - "rdbms": 8.71e-08, - "realizable": 8.71e-08, - "rearrested": 8.71e-08, - "recaptures": 8.71e-08, - "recessionary": 8.71e-08, - "recommender": 8.71e-08, - "redback": 8.71e-08, - "redhawks": 8.71e-08, - "redwings": 8.71e-08, - "reif": 8.71e-08, - "remap": 8.71e-08, - "remarrying": 8.71e-08, - "remem": 8.71e-08, - "remissions": 8.71e-08, - "rept": 8.71e-08, - "resturant": 8.71e-08, - "rhyno": 8.71e-08, - "righthand": 8.71e-08, - "rir": 8.71e-08, - "rishis": 8.71e-08, - "risible": 8.71e-08, - "ritchey": 8.71e-08, - "rjr": 8.71e-08, - "robbs": 8.71e-08, - "robotically": 8.71e-08, - "rochambeau": 8.71e-08, - "rockettes": 8.71e-08, - "rodas": 8.71e-08, - "rodrik": 8.71e-08, - "roundworms": 8.71e-08, - "rouser": 8.71e-08, - "roxette": 8.71e-08, - "rsn": 8.71e-08, - "rtk": 8.71e-08, - "runout": 8.71e-08, - "ryall": 8.71e-08, - "spose": 6.17e-08, - "saam": 8.71e-08, - "sabella": 8.71e-08, - "salazars": 8.71e-08, - "samurais": 5.89e-08, - "sandbagging": 8.71e-08, - "sandblasting": 8.71e-08, - "sasi": 8.71e-08, - "satis": 8.71e-08, - "schaff": 8.71e-08, - "schedulers": 8.71e-08, - "scoots": 8.71e-08, - "scribbler": 8.71e-08, - "sculpin": 8.71e-08, - "scums": 8.71e-08, - "scythia": 8.71e-08, - "seenu": 8.71e-08, - "seidler": 8.71e-08, - "seing": 8.71e-08, - "seismograph": 8.71e-08, - "seismologists": 8.71e-08, - "semiramis": 8.71e-08, - "seperation": 8.71e-08, - "serre": 8.71e-08, - "sexe": 8.71e-08, - "shackelford": 8.71e-08, - "shahidi": 8.71e-08, - "shantae": 8.71e-08, - "sharecropper": 8.71e-08, - "shauns": 8.71e-08, - "shaz": 8.71e-08, - "sheas": 8.71e-08, - "shein": 8.71e-08, - "shellys": 8.71e-08, - "shemesh": 8.71e-08, - "shinra": 8.71e-08, - "shizzle": 8.71e-08, - "shuja": 8.71e-08, - "shushed": 8.71e-08, - "sidgwick": 8.71e-08, - "siegels": 8.71e-08, - "sigue": 8.71e-08, - "simic": 8.71e-08, - "sitdown": 8.71e-08, - "sitton": 8.71e-08, - "sizer": 8.71e-08, - "slipshod": 8.71e-08, - "slocombe": 8.71e-08, - "sluggishly": 8.71e-08, - "slurps": 8.71e-08, - "slushie": 8.71e-08, - "smpte": 8.71e-08, - "snoot": 8.71e-08, - "snuffy": 8.71e-08, - "sobek": 8.71e-08, - "sociologically": 8.71e-08, - "soffit": 8.71e-08, - "soit": 8.71e-08, - "solanki": 8.71e-08, - "sommeliers": 8.71e-08, - "sondheims": 8.71e-08, - "southerland": 8.71e-08, - "souvlaki": 8.71e-08, - "spacings": 8.71e-08, - "spectors": 8.71e-08, - "speicher": 8.71e-08, - "speights": 8.71e-08, - "sprach": 8.71e-08, - "sprenger": 8.71e-08, - "squeezy": 8.71e-08, - "squelching": 8.71e-08, - "stadion": 8.71e-08, - "stainer": 8.71e-08, - "stanwell": 8.71e-08, - "starless": 8.71e-08, - "stearn": 8.71e-08, - "stegner": 8.71e-08, - "steinhardt": 8.71e-08, - "stereophonic": 8.71e-08, - "stevenss": 8.71e-08, - "stieg": 8.71e-08, - "stifel": 8.71e-08, - "storyboarding": 8.71e-08, - "stranglers": 8.71e-08, - "strood": 8.71e-08, - "stubb": 8.71e-08, - "stucky": 8.71e-08, - "stuffers": 8.71e-08, - "subnets": 8.71e-08, - "suckled": 8.71e-08, - "sune": 8.71e-08, - "supercilious": 8.71e-08, - "supergiant": 8.71e-08, - "supersonics": 8.71e-08, - "supervalu": 8.71e-08, - "supriya": 8.71e-08, - "swabian": 8.71e-08, - "swatter": 8.71e-08, - "tabulate": 8.71e-08, - "taemin": 8.71e-08, - "tamely": 8.71e-08, - "tamerlan": 8.71e-08, - "tammys": 8.71e-08, - "tanakh": 8.71e-08, - "tann": 8.71e-08, - "tarkin": 8.71e-08, - "tarlac": 8.71e-08, - "telecasting": 8.71e-08, - "templeman": 8.71e-08, - "terrans": 8.71e-08, - "tersely": 8.71e-08, - "tetragonal": 8.71e-08, - "thermophilic": 8.71e-08, - "thero": 8.71e-08, - "thielen": 8.71e-08, - "thirsts": 8.71e-08, - "timbo": 8.71e-08, - "timbres": 8.71e-08, - "tinseltown": 8.71e-08, - "tomboyish": 8.71e-08, - "tomie": 8.71e-08, - "tonsure": 8.71e-08, - "toric": 8.71e-08, - "torquemada": 8.71e-08, - "transaminase": 8.71e-08, - "transect": 8.71e-08, - "transportations": 8.71e-08, - "treadway": 8.71e-08, - "trevorrow": 8.71e-08, - "tricep": 8.71e-08, - "tricksy": 8.71e-08, - "trocadero": 8.71e-08, - "trouts": 6.31e-08, - "troutman": 8.71e-08, - "tsarina": 8.71e-08, - "tsunade": 8.71e-08, - "ttv": 8.71e-08, - "tuckerman": 8.71e-08, - "tulley": 8.71e-08, - "tumbledown": 8.71e-08, - "turfed": 8.71e-08, - "turreted": 8.71e-08, - "twr": 8.71e-08, - "ufs": 8.71e-08, - "uht": 8.71e-08, - "ukelele": 8.71e-08, - "umbral": 8.71e-08, - "unaligned": 8.71e-08, - "unbothered": 8.71e-08, - "uncertified": 8.71e-08, - "uncrowned": 8.71e-08, - "underpasses": 8.71e-08, - "unitarianism": 8.71e-08, - "unpronounceable": 8.71e-08, - "unrolling": 8.71e-08, - "unsubscribing": 8.71e-08, - "upenn": 8.71e-08, - "uppercuts": 8.71e-08, - "upu": 8.71e-08, - "uto": 8.71e-08, - "uvm": 8.71e-08, - "vab": 8.71e-08, - "vachon": 8.71e-08, - "vacuole": 8.71e-08, - "vaidya": 8.71e-08, - "valeriy": 8.71e-08, - "vanilli": 8.71e-08, - "vap": 8.71e-08, - "varese": 8.71e-08, - "varg": 8.71e-08, - "vasconcelos": 8.71e-08, - "vasile": 8.71e-08, - "vaw": 8.71e-08, - "vawa": 8.71e-08, - "vectra": 8.71e-08, - "verre": 8.71e-08, - "victrola": 8.71e-08, - "vidals": 8.71e-08, - "vij": 8.71e-08, - "visco": 8.71e-08, - "vitas": 6.03e-08, - "viterbi": 8.71e-08, - "vlads": 8.71e-08, - "vldl": 8.71e-08, - "vorm": 8.71e-08, - "vpl": 8.71e-08, - "vulvar": 8.71e-08, - "vuvuzela": 8.71e-08, - "vyvyan": 8.71e-08, - "wabbit": 8.71e-08, - "wadham": 8.71e-08, - "wakeful": 8.71e-08, - "wallerstein": 8.71e-08, - "warred": 8.71e-08, - "watteau": 8.71e-08, - "waxahachie": 8.71e-08, - "weathermen": 8.71e-08, - "webmail": 8.71e-08, - "welf": 8.71e-08, - "westmead": 8.71e-08, - "whirlwinds": 8.71e-08, - "whishaw": 8.71e-08, - "whitener": 8.71e-08, - "willets": 8.71e-08, - "winkel": 8.71e-08, - "witticisms": 8.71e-08, - "wivenhoe": 8.71e-08, - "wolds": 8.71e-08, - "womaniser": 8.71e-08, - "woodcarving": 8.71e-08, - "woodgate": 8.71e-08, - "woolrich": 8.71e-08, - "xbone": 8.71e-08, - "xenomorph": 8.71e-08, - "yal": 8.71e-08, - "yalla": 8.71e-08, - "yaniv": 8.71e-08, - "yasmeen": 8.71e-08, - "yeasty": 8.71e-08, - "yukimura": 8.71e-08, - "yunis": 8.71e-08, - "zafer": 8.71e-08, - "zapatistas": 8.71e-08, - "zarb": 8.71e-08, - "zaya": 8.71e-08, - "zeolites": 8.71e-08, - "zhous": 8.71e-08, - "zuber": 8.71e-08, - "aacr": 8.51e-08, - "abdalla": 8.51e-08, - "aberdeens": 8.51e-08, - "abx": 8.51e-08, - "activisions": 8.51e-08, - "adaptively": 8.51e-08, - "addr": 8.51e-08, - "ader": 8.51e-08, - "adige": 8.51e-08, - "adrenals": 8.51e-08, - "adrs": 8.51e-08, - "aforethought": 8.51e-08, - "agronomists": 8.51e-08, - "agustina": 8.51e-08, - "ahura": 8.51e-08, - "ahwaz": 8.51e-08, - "alderley": 8.51e-08, - "alecia": 8.51e-08, - "aleem": 8.51e-08, - "alexandrine": 8.51e-08, - "alexius": 8.51e-08, - "algeciras": 8.51e-08, - "algorithmically": 8.51e-08, - "alpheus": 8.51e-08, - "althorp": 8.51e-08, - "ameliorating": 8.51e-08, - "aminobutyric": 8.51e-08, - "amravati": 8.51e-08, - "amtraks": 8.51e-08, - "angelinas": 8.51e-08, - "angewandte": 8.51e-08, - "anglicised": 8.51e-08, - "anhedonia": 8.51e-08, - "anke": 8.51e-08, - "ankur": 8.51e-08, - "anonymised": 8.51e-08, - "ansah": 8.51e-08, - "anthropic": 8.51e-08, - "antiperspirant": 8.51e-08, - "antonino": 8.51e-08, - "antwan": 8.51e-08, - "apnoea": 8.51e-08, - "appaloosa": 8.51e-08, - "appreciatively": 8.51e-08, - "apsa": 8.51e-08, - "arana": 8.51e-08, - "archdeaconry": 8.51e-08, - "architrave": 8.51e-08, - "areca": 8.51e-08, - "asbestosis": 8.51e-08, - "ashtanga": 8.51e-08, - "asla": 8.51e-08, - "asmussen": 8.51e-08, - "asparagine": 8.51e-08, - "asters": 8.51e-08, - "asynchronously": 8.51e-08, - "athleta": 8.51e-08, - "atorvastatin": 8.51e-08, - "attendings": 8.51e-08, - "attractors": 8.51e-08, - "auba": 8.51e-08, - "auchinleck": 8.51e-08, - "automorphism": 8.51e-08, - "avalos": 8.51e-08, - "aveeno": 8.51e-08, - "avianca": 8.51e-08, - "aviles": 8.51e-08, - "avion": 8.51e-08, - "axion": 8.51e-08, - "babbles": 8.51e-08, - "backlighting": 8.51e-08, - "backlot": 8.51e-08, - "backrest": 8.51e-08, - "badan": 8.51e-08, - "baig": 8.51e-08, - "bankai": 8.51e-08, - "banksys": 8.51e-08, - "bant": 8.51e-08, - "baptistery": 8.51e-08, - "barford": 8.51e-08, - "barnesville": 8.51e-08, - "barries": 8.51e-08, - "bashi": 8.51e-08, - "bathymetry": 8.51e-08, - "baughman": 8.51e-08, - "bayar": 8.51e-08, - "bdb": 8.51e-08, - "beare": 8.51e-08, - "behrman": 8.51e-08, - "beitrag": 8.51e-08, - "bekaa": 8.51e-08, - "bekir": 8.51e-08, - "belson": 8.51e-08, - "belters": 8.51e-08, - "benchley": 8.51e-08, - "benguet": 8.51e-08, - "beutler": 8.51e-08, - "bft": 8.51e-08, - "bienvenue": 8.51e-08, - "bigbang": 8.51e-08, - "bilic": 8.51e-08, - "billies": 5.37e-08, - "bioavailable": 8.51e-08, - "biocompatibility": 8.51e-08, - "biplanes": 8.51e-08, - "birdshot": 8.51e-08, - "blasphemies": 8.51e-08, - "bld": 8.51e-08, - "blighting": 8.51e-08, - "blonder": 8.51e-08, - "bloodstain": 8.51e-08, - "bluesman": 8.51e-08, - "bogard": 8.51e-08, - "bombe": 8.51e-08, - "boneheaded": 8.51e-08, - "boppers": 8.51e-08, - "boreas": 8.51e-08, - "botero": 8.51e-08, - "bracco": 8.51e-08, - "breastbone": 8.51e-08, - "brimmer": 8.51e-08, - "brooded": 8.51e-08, - "brownings": 8.51e-08, - "broxton": 8.51e-08, - "bullis": 8.51e-08, - "bulwarks": 8.51e-08, - "bunds": 8.51e-08, - "bunkering": 8.51e-08, - "bunnell": 8.51e-08, - "burda": 8.51e-08, - "burgundians": 8.51e-08, - "burress": 8.51e-08, - "burthen": 8.51e-08, - "bushmeat": 8.51e-08, - "bushmills": 8.51e-08, - "buta": 8.51e-08, - "byblos": 8.51e-08, - "byer": 8.51e-08, - "cachexia": 8.51e-08, - "caddis": 8.51e-08, - "cadel": 8.51e-08, - "cadwalader": 8.51e-08, - "caixa": 8.51e-08, - "calexico": 8.51e-08, - "calleja": 8.51e-08, - "canford": 8.51e-08, - "canvey": 8.51e-08, - "capilano": 8.51e-08, - "capriciously": 8.51e-08, - "cardew": 8.51e-08, - "carreras": 8.51e-08, - "carshalton": 8.51e-08, - "casal": 8.51e-08, - "castries": 8.51e-08, - "catarrh": 8.51e-08, - "catechesis": 8.51e-08, - "catholique": 8.51e-08, - "catron": 8.51e-08, - "cattleya": 8.51e-08, - "cauda": 8.51e-08, - "cavalieri": 8.51e-08, - "cdrom": 8.51e-08, - "certifiably": 8.51e-08, - "cerveza": 8.51e-08, - "cesspools": 8.51e-08, - "cfls": 6.61e-08, - "cfnm": 8.51e-08, - "cftr": 8.51e-08, - "cgd": 8.51e-08, - "chabert": 8.51e-08, - "chadha": 8.51e-08, - "chasen": 8.51e-08, - "chatroulette": 8.51e-08, - "cheema": 8.51e-08, - "chenault": 8.51e-08, - "chevys": 6.31e-08, - "chilcott": 8.51e-08, - "chincoteague": 8.51e-08, - "chiseling": 8.51e-08, - "chouteau": 8.51e-08, - "christological": 8.51e-08, - "chutneys": 8.51e-08, - "cics": 8.51e-08, - "cik": 8.51e-08, - "cinemascope": 8.51e-08, - "clarithromycin": 8.51e-08, - "claritin": 8.51e-08, - "clints": 8.51e-08, - "clocktower": 8.51e-08, - "clothiers": 8.51e-08, - "coarseness": 8.51e-08, - "cocina": 8.51e-08, - "codicil": 8.51e-08, - "coggeshall": 8.51e-08, - "colicky": 8.51e-08, - "colonisers": 8.51e-08, - "colyer": 8.51e-08, - "comparators": 8.51e-08, - "conans": 8.51e-08, - "concannon": 8.51e-08, - "concealers": 8.51e-08, - "concious": 8.51e-08, - "congeners": 8.51e-08, - "congregationalist": 8.51e-08, - "conjoint": 8.51e-08, - "conkling": 8.51e-08, - "contestation": 8.51e-08, - "contextualizing": 8.51e-08, - "cookman": 8.51e-08, - "cooktop": 8.51e-08, - "cooky": 8.51e-08, - "coorg": 8.51e-08, - "cordate": 8.51e-08, - "cordiality": 8.51e-08, - "cosentino": 8.51e-08, - "costain": 8.51e-08, - "coulton": 8.51e-08, - "crandon": 8.51e-08, - "craton": 8.51e-08, - "crieff": 8.51e-08, - "crimmins": 8.51e-08, - "crocks": 8.51e-08, - "crosshair": 8.51e-08, - "cruder": 8.51e-08, - "crystallizing": 8.51e-08, - "ctt": 8.51e-08, - "cuirass": 8.51e-08, - "cupolas": 8.51e-08, - "cwu": 8.51e-08, - "daario": 8.51e-08, - "daeng": 8.51e-08, - "dalgety": 8.51e-08, - "dallass": 8.51e-08, - "damaris": 8.51e-08, - "danlos": 8.51e-08, - "danubian": 8.51e-08, - "dargis": 8.51e-08, - "darron": 8.51e-08, - "daylesford": 8.51e-08, - "dcis": 8.51e-08, - "degreaser": 8.51e-08, - "dehli": 8.51e-08, - "demoing": 8.51e-08, - "depuy": 8.51e-08, - "devyn": 8.51e-08, - "dgm": 8.51e-08, - "digged": 8.51e-08, - "diii": 8.51e-08, - "dimarco": 8.51e-08, - "dimwits": 8.51e-08, - "dinkum": 8.51e-08, - "diorite": 8.51e-08, - "dirtied": 8.51e-08, - "discretization": 8.51e-08, - "disenfranchising": 8.51e-08, - "dismantlement": 8.51e-08, - "dissimilarity": 8.51e-08, - "dkt": 8.51e-08, - "documenta": 8.51e-08, - "dogan": 8.51e-08, - "dogen": 8.51e-08, - "doges": 8.51e-08, - "dolorosa": 8.51e-08, - "doshi": 8.51e-08, - "dosnt": 8.51e-08, - "doughboys": 8.51e-08, - "dragonair": 8.51e-08, - "draughty": 8.51e-08, - "drood": 8.51e-08, - "druidic": 8.51e-08, - "drumm": 8.51e-08, - "drv": 8.51e-08, - "duffin": 8.51e-08, - "dunga": 8.51e-08, - "earpods": 8.51e-08, - "earthiness": 8.51e-08, - "eberhart": 8.51e-08, - "ebp": 8.51e-08, - "ecosoc": 8.51e-08, - "ecuadorean": 8.51e-08, - "eddys": 8.51e-08, - "editio": 8.51e-08, - "egp": 8.51e-08, - "elbit": 8.51e-08, - "electroacoustic": 8.51e-08, - "eleusis": 8.51e-08, - "elucidates": 8.51e-08, - "emigres": 8.51e-08, - "emirs": 6.76e-08, - "emulsifiers": 8.51e-08, - "entrenchments": 8.51e-08, - "eot": 8.51e-08, - "epiphanius": 8.51e-08, - "eset": 8.51e-08, - "esquivel": 8.51e-08, - "eufaula": 8.51e-08, - "eugenius": 8.51e-08, - "euphemia": 8.51e-08, - "evacuee": 8.51e-08, - "eventuated": 8.51e-08, - "everypony": 8.51e-08, - "exco": 8.51e-08, - "experimentalists": 8.51e-08, - "exploitive": 8.51e-08, - "extortionist": 8.51e-08, - "exultation": 8.51e-08, - "eyepieces": 8.51e-08, - "eyestrain": 8.51e-08, - "facey": 8.51e-08, - "falsies": 8.51e-08, - "famagusta": 8.51e-08, - "fanmade": 8.51e-08, - "faraz": 8.51e-08, - "farmsteads": 8.51e-08, - "feelz": 8.51e-08, - "feinsteins": 8.51e-08, - "feldmann": 8.51e-08, - "fenster": 8.51e-08, - "fertilise": 8.51e-08, - "ffh": 8.51e-08, - "ffo": 8.51e-08, - "filey": 8.51e-08, - "finalizes": 8.51e-08, - "firebombs": 8.51e-08, - "fistfights": 8.51e-08, - "flatbreads": 8.51e-08, - "flic": 8.51e-08, - "flightaware": 8.51e-08, - "flom": 8.51e-08, - "floriana": 8.51e-08, - "florrie": 8.51e-08, - "fluconazole": 8.51e-08, - "fluidic": 8.51e-08, - "flyleaf": 8.51e-08, - "fodmap": 8.51e-08, - "fontes": 8.51e-08, - "foos": 8.51e-08, - "formalise": 8.51e-08, - "foun": 8.51e-08, - "fraga": 8.51e-08, - "frakes": 8.51e-08, - "freeboard": 8.51e-08, - "freeh": 8.51e-08, - "freestyling": 8.51e-08, - "freys": 8.51e-08, - "fricker": 8.51e-08, - "friending": 8.51e-08, - "fulvous": 8.51e-08, - "furnitures": 8.51e-08, - "gade": 8.51e-08, - "gair": 8.51e-08, - "galaxie": 8.51e-08, - "galsworthy": 8.51e-08, - "garnishing": 8.51e-08, - "gaslamp": 8.51e-08, - "gately": 8.51e-08, - "gaudens": 8.51e-08, - "gaurd": 8.51e-08, - "gavriel": 8.51e-08, - "geldings": 8.51e-08, - "gertz": 8.51e-08, - "gfci": 8.51e-08, - "gfk": 8.51e-08, - "gheorghe": 8.51e-08, - "gibraltars": 8.51e-08, - "giese": 8.51e-08, - "glencairn": 8.51e-08, - "gmu": 8.51e-08, - "godards": 8.51e-08, - "golders": 8.51e-08, - "golic": 8.51e-08, - "goofiness": 8.51e-08, - "goosey": 8.51e-08, - "gounod": 8.51e-08, - "grabowski": 8.51e-08, - "graeber": 8.51e-08, - "grammatik": 8.51e-08, - "granollers": 8.51e-08, - "grapheme": 8.51e-08, - "greenford": 8.51e-08, - "greenlandic": 8.51e-08, - "greenman": 8.51e-08, - "greenup": 8.51e-08, - "grippers": 8.51e-08, - "groen": 8.51e-08, - "groomsman": 8.51e-08, - "grou": 8.51e-08, - "grue": 8.51e-08, - "gtm": 8.51e-08, - "guideway": 8.51e-08, - "gurr": 8.51e-08, - "guyanas": 8.51e-08, - "guzzi": 8.51e-08, - "gwilym": 8.51e-08, - "habitus": 8.51e-08, - "hacketts": 8.51e-08, - "hadleys": 8.51e-08, - "haemophilus": 8.51e-08, - "hafta": 8.51e-08, - "hagi": 8.51e-08, - "halbach": 8.51e-08, - "haldimand": 8.51e-08, - "halper": 8.51e-08, - "handbills": 8.51e-08, - "hardiman": 8.51e-08, - "harrassing": 8.51e-08, - "hashimotos": 8.51e-08, - "hatay": 8.51e-08, - "hatchett": 8.51e-08, - "hausmann": 8.51e-08, - "hawala": 8.51e-08, - "haymakers": 8.51e-08, - "haymon": 8.51e-08, - "hecs": 8.51e-08, - "hehehehe": 8.51e-08, - "hematuria": 8.51e-08, - "hendley": 8.51e-08, - "herzogs": 8.51e-08, - "hesters": 8.51e-08, - "hhc": 8.51e-08, - "hierro": 8.51e-08, - "hild": 8.51e-08, - "hildegarde": 8.51e-08, - "hirayama": 8.51e-08, - "hiver": 8.51e-08, - "hizballah": 8.51e-08, - "hochschild": 8.51e-08, - "hogged": 8.51e-08, - "holdall": 8.51e-08, - "hollar": 8.51e-08, - "hollen": 8.51e-08, - "hondurans": 8.51e-08, - "honorifics": 8.51e-08, - "hopkinsville": 8.51e-08, - "hornier": 8.51e-08, - "horovitz": 8.51e-08, - "hosier": 8.51e-08, - "hotkey": 8.51e-08, - "hotting": 8.51e-08, - "hpl": 8.51e-08, - "hsiung": 8.51e-08, - "hudl": 8.51e-08, - "huguette": 8.51e-08, - "humira": 8.51e-08, - "hunstanton": 8.51e-08, - "hutter": 8.51e-08, - "hydroxyapatite": 8.51e-08, - "hymnals": 8.51e-08, - "hypebeast": 8.51e-08, - "hypermedia": 8.51e-08, - "icam": 8.51e-08, - "icymi": 8.51e-08, - "iggys": 8.51e-08, - "illyrian": 8.51e-08, - "imhoff": 8.51e-08, - "impassively": 8.51e-08, - "impoverish": 8.51e-08, - "imrie": 8.51e-08, - "inclusively": 8.51e-08, - "incomprehensibly": 8.51e-08, - "industrializing": 8.51e-08, - "ingests": 8.51e-08, - "interac": 8.51e-08, - "interdependencies": 8.51e-08, - "interdicted": 8.51e-08, - "interethnic": 8.51e-08, - "interferometers": 8.51e-08, - "interlocks": 8.51e-08, - "inviolate": 8.51e-08, - "inzaghi": 8.51e-08, - "irgun": 8.51e-08, - "ishaan": 8.51e-08, - "isoleucine": 8.51e-08, - "itched": 8.51e-08, - "iupac": 8.51e-08, - "iwork": 8.51e-08, - "jackknife": 8.51e-08, - "jacquet": 8.51e-08, - "jaes": 8.51e-08, - "jaffer": 8.51e-08, - "jambs": 8.51e-08, - "jantar": 8.51e-08, - "japon": 8.51e-08, - "jesting": 8.51e-08, - "jev": 8.51e-08, - "jlp": 8.51e-08, - "jogo": 8.51e-08, - "johanne": 8.51e-08, - "jonbenet": 8.51e-08, - "josies": 8.51e-08, - "josue": 8.51e-08, - "jub": 8.51e-08, - "juggs": 8.51e-08, - "julliard": 8.51e-08, - "junger": 8.51e-08, - "jusuf": 8.51e-08, - "jvp": 8.51e-08, - "kaepernicks": 8.51e-08, - "kake": 8.51e-08, - "kalki": 8.51e-08, - "kamath": 8.51e-08, - "kameda": 8.51e-08, - "kamila": 8.51e-08, - "kapadia": 8.51e-08, - "kariya": 8.51e-08, - "karnal": 8.51e-08, - "kavi": 8.51e-08, - "kazak": 8.51e-08, - "kca": 8.51e-08, - "kennebunk": 8.51e-08, - "kerim": 8.51e-08, - "kfor": 8.51e-08, - "khara": 8.51e-08, - "kilner": 8.51e-08, - "kimbo": 8.51e-08, - "kingdome": 8.51e-08, - "kips": 8.51e-08, - "kisco": 8.51e-08, - "kisha": 8.51e-08, - "kiso": 8.51e-08, - "kleiman": 8.51e-08, - "klim": 8.51e-08, - "knockdowns": 8.51e-08, - "knowledges": 8.51e-08, - "koerner": 8.51e-08, - "koranic": 8.51e-08, - "kraal": 8.51e-08, - "krang": 8.51e-08, - "krautrock": 8.51e-08, - "krays": 8.51e-08, - "kruk": 8.51e-08, - "kulak": 8.51e-08, - "kyou": 8.51e-08, - "laboratorys": 8.51e-08, - "labrinth": 8.51e-08, - "lais": 8.51e-08, - "lamontagne": 8.51e-08, - "lampeter": 8.51e-08, - "langan": 8.51e-08, - "lares": 8.51e-08, - "larping": 8.51e-08, - "lasher": 8.51e-08, - "lastname": 8.51e-08, - "lattimer": 8.51e-08, - "launderette": 8.51e-08, - "lbgt": 8.51e-08, - "leadeth": 8.51e-08, - "leeman": 8.51e-08, - "leffler": 8.51e-08, - "lehrman": 8.51e-08, - "lein": 8.51e-08, - "lemans": 8.51e-08, - "leme": 8.51e-08, - "lenk": 8.51e-08, - "lepanto": 8.51e-08, - "lestrange": 8.51e-08, - "levellers": 8.51e-08, - "levski": 8.51e-08, - "lih": 8.51e-08, - "lisbons": 8.51e-08, - "lodha": 8.51e-08, - "loesch": 8.51e-08, - "longmeadow": 8.51e-08, - "longshoremen": 8.51e-08, - "loping": 8.51e-08, - "lopping": 8.51e-08, - "loughran": 8.51e-08, - "lovering": 8.51e-08, - "luckett": 8.51e-08, - "ludus": 8.51e-08, - "luiza": 8.51e-08, - "lumos": 8.51e-08, - "lungi": 8.51e-08, - "lyssa": 8.51e-08, - "mabels": 8.51e-08, - "macinnes": 8.51e-08, - "madhavan": 8.51e-08, - "madrassas": 8.51e-08, - "magnifico": 8.51e-08, - "mailchimp": 8.51e-08, - "mainstreamed": 8.51e-08, - "maju": 8.51e-08, - "malamud": 8.51e-08, - "malpractices": 8.51e-08, - "maltz": 8.51e-08, - "malvina": 8.51e-08, - "mamaroneck": 8.51e-08, - "manchild": 8.51e-08, - "mandar": 8.51e-08, - "manganiello": 8.51e-08, - "manolas": 8.51e-08, - "manston": 8.51e-08, - "manzo": 8.51e-08, - "marcial": 8.51e-08, - "mardan": 8.51e-08, - "margined": 8.51e-08, - "marj": 8.51e-08, - "marmaris": 8.51e-08, - "marybeth": 8.51e-08, - "masterbate": 8.51e-08, - "matchsticks": 8.51e-08, - "matriculate": 8.51e-08, - "mattox": 8.51e-08, - "maun": 8.51e-08, - "mauresmo": 8.51e-08, - "mauretania": 8.51e-08, - "mawkish": 8.51e-08, - "mediawiki": 8.51e-08, - "medill": 8.51e-08, - "meed": 8.51e-08, - "melzer": 8.51e-08, - "mensheviks": 8.51e-08, - "mentha": 8.51e-08, - "merican": 8.51e-08, - "meridional": 8.51e-08, - "metrodome": 8.51e-08, - "microaggressions": 8.51e-08, - "middlefield": 8.51e-08, - "milagros": 8.51e-08, - "militaire": 8.51e-08, - "millets": 8.51e-08, - "minimis": 8.51e-08, - "miriams": 8.51e-08, - "missle": 8.51e-08, - "mmx": 8.51e-08, - "moder": 8.51e-08, - "mohamud": 8.51e-08, - "mohanlal": 8.51e-08, - "mohun": 8.51e-08, - "moldavian": 8.51e-08, - "moliere": 8.51e-08, - "monkeying": 8.51e-08, - "monopolization": 8.51e-08, - "moonie": 8.51e-08, - "moorfields": 8.51e-08, - "morkel": 8.51e-08, - "morphogenetic": 8.51e-08, - "mothafucka": 8.51e-08, - "mounir": 8.51e-08, - "mouthparts": 8.51e-08, - "moveon": 8.51e-08, - "moyne": 8.51e-08, - "mpf": 8.51e-08, - "mrw": 8.51e-08, - "muaythai": 8.51e-08, - "mujhe": 8.51e-08, - "mulford": 8.51e-08, - "multitudinous": 8.51e-08, - "muma": 8.51e-08, - "murai": 8.51e-08, - "murdoc": 8.51e-08, - "murty": 8.51e-08, - "mutability": 8.51e-08, - "nahr": 8.51e-08, - "napolis": 8.51e-08, - "nauk": 8.51e-08, - "ndr": 8.51e-08, - "neets": 8.51e-08, - "neng": 8.51e-08, - "neti": 8.51e-08, - "neuroma": 8.51e-08, - "newco": 8.51e-08, - "newcomen": 8.51e-08, - "newscasters": 8.51e-08, - "nicotiana": 8.51e-08, - "nightwatchman": 8.51e-08, - "nikah": 8.51e-08, - "ninny": 8.51e-08, - "njoku": 8.51e-08, - "nmos": 8.51e-08, - "nmt": 8.51e-08, - "nociceptive": 8.51e-08, - "nokes": 8.51e-08, - "nolasco": 8.51e-08, - "noncoding": 8.51e-08, - "noora": 8.51e-08, - "nopd": 8.51e-08, - "normed": 8.51e-08, - "northanger": 8.51e-08, - "northcutt": 8.51e-08, - "notarial": 8.51e-08, - "nutz": 8.51e-08, - "oboyle": 8.51e-08, - "okelly": 8.51e-08, - "oquinn": 8.51e-08, - "obliques": 8.51e-08, - "oggy": 8.51e-08, - "oher": 8.51e-08, - "ohk": 8.51e-08, - "okonkwo": 8.51e-08, - "olanzapine": 8.51e-08, - "oracular": 8.51e-08, - "oreille": 8.51e-08, - "origines": 8.51e-08, - "orignal": 8.51e-08, - "oriol": 8.51e-08, - "orkin": 8.51e-08, - "otcqb": 8.51e-08, - "otd": 8.51e-08, - "outgassing": 8.51e-08, - "outranked": 8.51e-08, - "ovale": 8.51e-08, - "overflight": 8.51e-08, - "overtimes": 8.51e-08, - "oxus": 8.51e-08, - "paarl": 8.51e-08, - "paci": 8.51e-08, - "pajero": 8.51e-08, - "pallette": 8.51e-08, - "panamanians": 8.51e-08, - "pando": 8.51e-08, - "panted": 8.51e-08, - "paraclete": 8.51e-08, - "paradises": 8.51e-08, - "parented": 8.51e-08, - "paten": 8.51e-08, - "paulinus": 8.51e-08, - "paull": 8.51e-08, - "pavlovich": 8.51e-08, - "pearling": 8.51e-08, - "peatland": 8.51e-08, - "pegula": 8.51e-08, - "pejoratively": 8.51e-08, - "pendency": 8.51e-08, - "pendennis": 8.51e-08, - "pensioned": 8.51e-08, - "pentacle": 8.51e-08, - "pepita": 8.51e-08, - "peppino": 8.51e-08, - "percenter": 8.51e-08, - "percolated": 8.51e-08, - "perls": 8.51e-08, - "permanganate": 8.51e-08, - "perrett": 8.51e-08, - "personifying": 8.51e-08, - "perturbative": 8.51e-08, - "pesce": 8.51e-08, - "petch": 8.51e-08, - "pettys": 8.51e-08, - "phen": 8.51e-08, - "phial": 8.51e-08, - "phosphide": 8.51e-08, - "photodiode": 8.51e-08, - "piccard": 8.51e-08, - "pilatus": 8.51e-08, - "pineau": 8.51e-08, - "pinholes": 8.51e-08, - "pinkston": 8.51e-08, - "pirandello": 8.51e-08, - "plaids": 8.51e-08, - "plantes": 8.51e-08, - "plowshares": 8.51e-08, - "plumer": 8.51e-08, - "pocketknife": 8.51e-08, - "podgorica": 8.51e-08, - "pointlessness": 8.51e-08, - "polloi": 8.51e-08, - "pontianak": 8.51e-08, - "ponto": 8.51e-08, - "poro": 8.51e-08, - "porsha": 8.51e-08, - "pph": 8.51e-08, - "prebiotic": 8.51e-08, - "premenopausal": 8.51e-08, - "prescribers": 8.51e-08, - "presupposed": 8.51e-08, - "printables": 8.51e-08, - "prithviraj": 8.51e-08, - "promptness": 8.51e-08, - "prowls": 8.51e-08, - "pruitts": 8.51e-08, - "prunella": 8.51e-08, - "psycholinguistics": 8.51e-08, - "puissance": 8.51e-08, - "punjabs": 8.51e-08, - "purulent": 8.51e-08, - "puso": 8.51e-08, - "pyong": 8.51e-08, - "pyrgos": 8.51e-08, - "qas": 8.51e-08, - "questioners": 8.51e-08, - "quicklime": 8.51e-08, - "raat": 8.51e-08, - "rabban": 8.51e-08, - "radke": 8.51e-08, - "rahe": 8.51e-08, - "rainham": 8.51e-08, - "raley": 8.51e-08, - "ramdev": 8.51e-08, - "rancic": 8.51e-08, - "rapinoe": 8.51e-08, - "ravichandran": 8.51e-08, - "raylene": 8.51e-08, - "rdd": 8.51e-08, - "reconquer": 8.51e-08, - "reconquista": 8.51e-08, - "redbirds": 8.51e-08, - "reformism": 8.51e-08, - "refract": 8.51e-08, - "refutations": 8.51e-08, - "rehydrated": 8.51e-08, - "relaxers": 8.51e-08, - "remodels": 8.51e-08, - "rentable": 8.51e-08, - "rentier": 8.51e-08, - "reptilia": 8.51e-08, - "resounds": 8.51e-08, - "retesting": 8.51e-08, - "retin": 8.51e-08, - "reunify": 8.51e-08, - "revelator": 8.51e-08, - "reworded": 8.51e-08, - "rgv": 8.51e-08, - "rhizosphere": 8.51e-08, - "righto": 8.51e-08, - "rigmarole": 8.51e-08, - "ripcord": 8.51e-08, - "riu": 8.51e-08, - "rme": 8.51e-08, - "rommels": 8.51e-08, - "roseate": 8.51e-08, - "rosenborg": 8.51e-08, - "rsvps": 8.51e-08, - "rubina": 8.51e-08, - "rucks": 8.51e-08, - "rudan": 8.51e-08, - "rugeley": 8.51e-08, - "runa": 8.51e-08, - "rup": 8.51e-08, - "ryosuke": 8.51e-08, - "ryuk": 8.51e-08, - "saddlebag": 8.51e-08, - "sadi": 8.51e-08, - "saez": 8.51e-08, - "sahni": 8.51e-08, - "sair": 8.51e-08, - "sakata": 8.51e-08, - "salcombe": 8.51e-08, - "sammich": 8.51e-08, - "sandeman": 8.51e-08, - "sangat": 8.51e-08, - "saphir": 8.51e-08, - "sarek": 8.51e-08, - "saunderson": 8.51e-08, - "saur": 8.51e-08, - "savills": 8.51e-08, - "saz": 8.51e-08, - "sbf": 8.51e-08, - "scaler": 8.51e-08, - "scathingly": 8.51e-08, - "schade": 8.51e-08, - "schaffhausen": 8.51e-08, - "scheck": 8.51e-08, - "schenn": 8.51e-08, - "schottky": 8.51e-08, - "scouser": 8.51e-08, - "scousers": 8.51e-08, - "scrappers": 8.51e-08, - "scriptura": 8.51e-08, - "scrounger": 8.51e-08, - "seaborn": 8.51e-08, - "sebald": 8.51e-08, - "seeman": 8.51e-08, - "segued": 8.51e-08, - "semitone": 8.51e-08, - "semmes": 8.51e-08, - "sendin": 8.51e-08, - "senhora": 8.51e-08, - "serres": 8.51e-08, - "seungri": 8.51e-08, - "seyed": 8.51e-08, - "sfb": 8.51e-08, - "sgm": 8.51e-08, - "sgml": 8.51e-08, - "shakopee": 8.51e-08, - "sheela": 8.51e-08, - "shenhua": 8.51e-08, - "sherrin": 8.51e-08, - "shhhhhh": 8.51e-08, - "shijiazhuang": 8.51e-08, - "shikamaru": 8.51e-08, - "shinagawa": 8.51e-08, - "shirakawa": 8.51e-08, - "shirked": 8.51e-08, - "shirted": 8.51e-08, - "shizuku": 8.51e-08, - "shull": 8.51e-08, - "sideboards": 8.51e-08, - "sidhe": 8.51e-08, - "siegmund": 8.51e-08, - "sievers": 8.51e-08, - "sightless": 8.51e-08, - "signalized": 8.51e-08, - "simenon": 8.51e-08, - "singha": 8.51e-08, - "sisulu": 8.51e-08, - "sitaram": 8.51e-08, - "sixths": 8.51e-08, - "skewering": 8.51e-08, - "slashers": 8.51e-08, - "slimey": 8.51e-08, - "slogged": 8.51e-08, - "smac": 8.51e-08, - "smosh": 8.51e-08, - "smuggles": 8.51e-08, - "smurfing": 8.51e-08, - "snart": 8.51e-08, - "sni": 8.51e-08, - "sobieski": 8.51e-08, - "solipsistic": 8.51e-08, - "southee": 8.51e-08, - "spargo": 8.51e-08, - "spectacled": 8.51e-08, - "spirito": 8.51e-08, - "springbrook": 8.51e-08, - "spygate": 8.51e-08, - "ssgt": 8.51e-08, - "stagehand": 8.51e-08, - "stagehands": 8.51e-08, - "stampeded": 8.51e-08, - "stanch": 8.51e-08, - "staubach": 8.51e-08, - "stayer": 8.51e-08, - "stena": 8.51e-08, - "stenger": 8.51e-08, - "stiffy": 8.51e-08, - "stockyard": 8.51e-08, - "stoffel": 8.51e-08, - "stowers": 8.51e-08, - "strainers": 8.51e-08, - "strath": 8.51e-08, - "stripers": 8.51e-08, - "stroker": 8.51e-08, - "stroppy": 8.51e-08, - "stross": 8.51e-08, - "styron": 8.51e-08, - "subfloor": 8.51e-08, - "submissiveness": 8.51e-08, - "subrogation": 8.51e-08, - "subtractions": 8.51e-08, - "sucessful": 8.51e-08, - "suffragist": 8.51e-08, - "sulfa": 8.51e-08, - "sumida": 8.51e-08, - "suni": 8.51e-08, - "sunshiny": 8.51e-08, - "superleague": 8.51e-08, - "sureties": 8.51e-08, - "survivalists": 8.51e-08, - "swarbrick": 8.51e-08, - "sward": 8.51e-08, - "syllabuses": 8.51e-08, - "symbiotes": 8.51e-08, - "sympathising": 8.51e-08, - "taji": 8.51e-08, - "tamba": 8.51e-08, - "tanager": 8.51e-08, - "tanenbaum": 8.51e-08, - "tanta": 8.51e-08, - "tappin": 8.51e-08, - "taraba": 8.51e-08, - "tatra": 8.51e-08, - "teletext": 8.51e-08, - "telles": 8.51e-08, - "tennants": 8.51e-08, - "terada": 8.51e-08, - "terengganu": 8.51e-08, - "terranes": 8.51e-08, - "tetrarch": 8.51e-08, - "texel": 8.51e-08, - "texters": 8.51e-08, - "theif": 8.51e-08, - "thg": 8.51e-08, - "thise": 8.51e-08, - "thrombolysis": 8.51e-08, - "thwaite": 8.51e-08, - "tidiness": 8.51e-08, - "tinian": 8.51e-08, - "tiresias": 8.51e-08, - "titleholder": 8.51e-08, - "tjx": 8.51e-08, - "tnts": 8.51e-08, - "toehold": 8.51e-08, - "tolentino": 8.51e-08, - "tongass": 8.51e-08, - "tongo": 8.51e-08, - "tonguing": 8.51e-08, - "torvald": 8.51e-08, - "towler": 8.51e-08, - "tqm": 8.51e-08, - "traipse": 8.51e-08, - "transferrable": 8.51e-08, - "translucency": 8.51e-08, - "trastevere": 8.51e-08, - "trastuzumab": 8.51e-08, - "triadic": 8.51e-08, - "triffids": 8.51e-08, - "trivago": 8.51e-08, - "trivializing": 8.51e-08, - "trm": 8.51e-08, - "tronic": 8.51e-08, - "trotman": 8.51e-08, - "trysts": 8.51e-08, - "tubercular": 8.51e-08, - "tulio": 8.51e-08, - "turndown": 8.51e-08, - "twinkly": 8.51e-08, - "twittersphere": 8.51e-08, - "ubu": 8.51e-08, - "uec": 8.51e-08, - "ufcw": 8.51e-08, - "ultrafine": 8.51e-08, - "ultramodern": 8.51e-08, - "unary": 8.51e-08, - "uncreated": 8.51e-08, - "underprepared": 8.51e-08, - "unflagging": 8.51e-08, - "unimpaired": 8.51e-08, - "unionizing": 8.51e-08, - "universo": 8.51e-08, - "unlinked": 8.51e-08, - "unmapped": 8.51e-08, - "unreformed": 8.51e-08, - "unseasonable": 8.51e-08, - "unsorted": 8.51e-08, - "untagged": 8.51e-08, - "untended": 8.51e-08, - "unworthiness": 8.51e-08, - "uou": 8.51e-08, - "uro": 8.51e-08, - "ussher": 8.51e-08, - "vaas": 8.51e-08, - "vaquero": 8.51e-08, - "vassili": 8.51e-08, - "venner": 8.51e-08, - "ventus": 8.51e-08, - "verbum": 8.51e-08, - "vias": 8.51e-08, - "viator": 8.51e-08, - "videoing": 8.51e-08, - "vieques": 8.51e-08, - "virtu": 8.51e-08, - "visi": 8.51e-08, - "viti": 8.51e-08, - "viviparous": 8.51e-08, - "vizcaya": 8.51e-08, - "vladimirovich": 8.51e-08, - "vpc": 8.51e-08, - "vtt": 8.51e-08, - "vult": 8.51e-08, - "wachter": 8.51e-08, - "walesa": 8.51e-08, - "wanita": 8.51e-08, - "warman": 8.51e-08, - "washcloths": 8.51e-08, - "wastefulness": 8.51e-08, - "watcha": 8.51e-08, - "waz": 8.51e-08, - "wdr": 8.51e-08, - "wellfleet": 8.51e-08, - "westernised": 8.51e-08, - "wever": 8.51e-08, - "whalebone": 8.51e-08, - "whitgift": 8.51e-08, - "wilfredo": 8.51e-08, - "willowy": 8.51e-08, - "wilms": 8.51e-08, - "wilner": 8.51e-08, - "wireimage": 8.51e-08, - "witchhunt": 8.51e-08, - "wittiest": 8.51e-08, - "wittig": 8.51e-08, - "wolffs": 8.51e-08, - "wolter": 8.51e-08, - "wonsan": 8.51e-08, - "woodberry": 8.51e-08, - "woollahra": 8.51e-08, - "worldcon": 8.51e-08, - "wortham": 8.51e-08, - "worthen": 8.51e-08, - "wpb": 8.51e-08, - "wrongdoer": 8.51e-08, - "wsf": 8.51e-08, - "wsi": 8.51e-08, - "xddd": 8.51e-08, - "xrays": 8.51e-08, - "yadier": 8.51e-08, - "yae": 8.51e-08, - "yamal": 8.51e-08, - "yeun": 8.51e-08, - "yivo": 8.51e-08, - "yogas": 5.37e-08, - "yoooo": 8.51e-08, - "youl": 5.13e-08, - "zagora": 8.51e-08, - "zbrush": 8.51e-08, - "zeitlin": 8.51e-08, - "zeon": 8.51e-08, - "zhongguo": 8.51e-08, - "zinoviev": 8.51e-08, - "zircons": 8.51e-08, - "zlotys": 8.51e-08, - "zonda": 8.51e-08, - "zuk": 8.51e-08, - "zwick": 8.51e-08, - "zyklon": 8.51e-08, - "abelson": 8.32e-08, - "abhiyan": 8.32e-08, - "abridgment": 8.32e-08, - "absently": 8.32e-08, - "accordions": 8.32e-08, - "accuracies": 8.32e-08, - "acuminate": 8.32e-08, - "adecco": 8.32e-08, - "adhoc": 8.32e-08, - "adjudicatory": 8.32e-08, - "adminstration": 8.32e-08, - "advection": 8.32e-08, - "aeds": 8.32e-08, - "aek": 8.32e-08, - "agartala": 8.32e-08, - "aila": 8.32e-08, - "airheads": 8.32e-08, - "akasha": 8.32e-08, - "alamy": 8.32e-08, - "albon": 8.32e-08, - "alea": 8.32e-08, - "aleve": 8.32e-08, - "aliyu": 8.32e-08, - "alkylating": 8.32e-08, - "allingham": 8.32e-08, - "aloneness": 8.32e-08, - "amaechi": 8.32e-08, - "amasa": 8.32e-08, - "amed": 8.32e-08, - "amniocentesis": 8.32e-08, - "amortisation": 8.32e-08, - "amphotericin": 8.32e-08, - "amping": 8.32e-08, - "anadromous": 8.32e-08, - "anatol": 8.32e-08, - "andria": 8.32e-08, - "anthropocentric": 8.32e-08, - "antipater": 8.32e-08, - "antiqua": 8.32e-08, - "anzacs": 8.32e-08, - "applewood": 8.32e-08, - "appurtenances": 8.32e-08, - "arbonne": 8.32e-08, - "archambault": 8.32e-08, - "arctica": 8.32e-08, - "arete": 8.32e-08, - "armalite": 8.32e-08, - "armfield": 8.32e-08, - "arnautovic": 8.32e-08, - "arrowroot": 8.32e-08, - "arrr": 8.32e-08, - "artnews": 8.32e-08, - "assimilates": 8.32e-08, - "atlassian": 8.32e-08, - "aton": 8.32e-08, - "attainted": 8.32e-08, - "attr": 8.32e-08, - "aughts": 8.32e-08, - "avent": 8.32e-08, - "avett": 8.32e-08, - "awt": 8.32e-08, - "axton": 8.32e-08, - "ayia": 8.32e-08, - "azn": 8.32e-08, - "azor": 8.32e-08, - "azra": 8.32e-08, - "btselem": 8.32e-08, - "baiter": 8.32e-08, - "bajirao": 8.32e-08, - "bajor": 8.32e-08, - "balaclavas": 8.32e-08, - "balt": 8.32e-08, - "bantry": 8.32e-08, - "baptise": 8.32e-08, - "barby": 8.32e-08, - "bardi": 8.32e-08, - "bariloche": 8.32e-08, - "barna": 8.32e-08, - "barnegat": 8.32e-08, - "barnette": 8.32e-08, - "barnhill": 8.32e-08, - "barrhead": 8.32e-08, - "bassa": 8.32e-08, - "bassin": 8.32e-08, - "bassy": 8.32e-08, - "baston": 8.32e-08, - "battlecruisers": 8.32e-08, - "beavercreek": 8.32e-08, - "bedard": 8.32e-08, - "bedspreads": 8.32e-08, - "bedtimes": 8.32e-08, - "beilein": 8.32e-08, - "bennell": 8.32e-08, - "berat": 8.32e-08, - "bevacizumab": 8.32e-08, - "bever": 8.32e-08, - "bhaijaan": 8.32e-08, - "bicultural": 8.32e-08, - "bidets": 8.32e-08, - "bighead": 8.32e-08, - "bine": 8.32e-08, - "birkhoff": 8.32e-08, - "bitey": 8.32e-08, - "bitpay": 8.32e-08, - "bkn": 8.32e-08, - "blackpools": 8.32e-08, - "blanching": 8.32e-08, - "bobbles": 8.32e-08, - "bogging": 8.32e-08, - "bootylicious": 8.32e-08, - "borobudur": 8.32e-08, - "botches": 8.32e-08, - "botsford": 8.32e-08, - "boules": 8.32e-08, - "bourassa": 8.32e-08, - "bowne": 8.32e-08, - "bracewell": 8.32e-08, - "bracey": 8.32e-08, - "brazoria": 8.32e-08, - "brehm": 8.32e-08, - "brendel": 8.32e-08, - "brewdog": 8.32e-08, - "briarwood": 8.32e-08, - "bridgit": 8.32e-08, - "brigg": 8.32e-08, - "brinkmann": 8.32e-08, - "briquette": 8.32e-08, - "browbeat": 8.32e-08, - "brownfields": 8.32e-08, - "bruder": 8.32e-08, - "bruisers": 8.32e-08, - "bsod": 8.32e-08, - "buharis": 8.32e-08, - "bunts": 8.32e-08, - "burrough": 8.32e-08, - "burstyn": 8.32e-08, - "busway": 8.32e-08, - "butanol": 8.32e-08, - "bws": 8.32e-08, - "cabg": 8.32e-08, - "cadwallader": 8.32e-08, - "caerleon": 8.32e-08, - "calogero": 8.32e-08, - "camron": 8.32e-08, - "canela": 8.32e-08, - "canneries": 8.32e-08, - "cannibalizing": 8.32e-08, - "canonisation": 8.32e-08, - "canopied": 8.32e-08, - "canticles": 8.32e-08, - "capitoline": 8.32e-08, - "cardone": 8.32e-08, - "carlaw": 8.32e-08, - "carlins": 8.32e-08, - "carlucci": 8.32e-08, - "carnegies": 8.32e-08, - "castigate": 8.32e-08, - "catanzaro": 8.32e-08, - "cdd": 8.32e-08, - "cedaw": 8.32e-08, - "cerys": 8.32e-08, - "chalupa": 8.32e-08, - "chanakya": 8.32e-08, - "chandan": 8.32e-08, - "chapultepec": 8.32e-08, - "charlo": 8.32e-08, - "charu": 8.32e-08, - "chch": 8.32e-08, - "cheesesteaks": 8.32e-08, - "chehalis": 8.32e-08, - "chertoff": 8.32e-08, - "cheuk": 8.32e-08, - "chillest": 8.32e-08, - "cimb": 8.32e-08, - "citronella": 8.32e-08, - "clarisonic": 8.32e-08, - "classen": 8.32e-08, - "clodius": 8.32e-08, - "clunking": 8.32e-08, - "cnut": 8.32e-08, - "collum": 8.32e-08, - "comed": 8.32e-08, - "comixology": 8.32e-08, - "complementation": 8.32e-08, - "consejo": 8.32e-08, - "conshohocken": 8.32e-08, - "conspecific": 8.32e-08, - "constricts": 8.32e-08, - "constructional": 8.32e-08, - "contextualization": 8.32e-08, - "contini": 8.32e-08, - "convertibility": 8.32e-08, - "conveyances": 8.32e-08, - "copperheads": 8.32e-08, - "cording": 8.32e-08, - "cordis": 8.32e-08, - "corpsmen": 8.32e-08, - "corto": 8.32e-08, - "couleur": 8.32e-08, - "coxon": 8.32e-08, - "craned": 8.32e-08, - "craning": 8.32e-08, - "creaminess": 8.32e-08, - "cresta": 8.32e-08, - "cricut": 8.32e-08, - "crinoids": 8.32e-08, - "crinoline": 8.32e-08, - "critica": 8.32e-08, - "crooke": 8.32e-08, - "crossbench": 8.32e-08, - "crossfield": 8.32e-08, - "ctn": 8.32e-08, - "cubase": 8.32e-08, - "cukor": 8.32e-08, - "currying": 8.32e-08, - "curvatures": 8.32e-08, - "cusick": 8.32e-08, - "dacosta": 8.32e-08, - "dadar": 8.32e-08, - "dagen": 8.32e-08, - "daka": 8.32e-08, - "dalle": 8.32e-08, - "daveys": 8.32e-08, - "daydreamer": 8.32e-08, - "dbi": 8.32e-08, - "dcms": 8.32e-08, - "deathwatch": 8.32e-08, - "debbi": 8.32e-08, - "decoherence": 8.32e-08, - "decorah": 8.32e-08, - "deepdale": 8.32e-08, - "definatly": 8.32e-08, - "dellarte": 8.32e-08, - "demodulation": 8.32e-08, - "denk": 8.32e-08, - "dentine": 8.32e-08, - "depressurization": 8.32e-08, - "derg": 8.32e-08, - "devika": 8.32e-08, - "dhol": 8.32e-08, - "dhr": 8.32e-08, - "diagnosable": 8.32e-08, - "diao": 8.32e-08, - "diffusive": 8.32e-08, - "dihydrogen": 8.32e-08, - "dilfer": 8.32e-08, - "dingdong": 8.32e-08, - "diplodocus": 8.32e-08, - "disbursing": 8.32e-08, - "disdains": 8.32e-08, - "disinherit": 8.32e-08, - "dispensations": 8.32e-08, - "displeases": 8.32e-08, - "disproportion": 8.32e-08, - "diviners": 8.32e-08, - "dlcs": 8.32e-08, - "dlm": 8.32e-08, - "dne": 8.32e-08, - "dogtown": 8.32e-08, - "dola": 8.32e-08, - "donot": 8.32e-08, - "dormers": 8.32e-08, - "downhearted": 8.32e-08, - "downslope": 8.32e-08, - "drainer": 8.32e-08, - "drewry": 8.32e-08, - "drys": 8.32e-08, - "duckduckgo": 8.32e-08, - "dulux": 8.32e-08, - "dunster": 8.32e-08, - "duthie": 8.32e-08, - "echuca": 8.32e-08, - "educa": 8.32e-08, - "eeee": 8.32e-08, - "eeprom": 8.32e-08, - "efm": 8.32e-08, - "eilean": 8.32e-08, - "eisenman": 8.32e-08, - "ekko": 8.32e-08, - "electrotechnical": 8.32e-08, - "elicitation": 8.32e-08, - "elision": 8.32e-08, - "elman": 8.32e-08, - "emissivity": 8.32e-08, - "encephalomyelitis": 8.32e-08, - "endian": 8.32e-08, - "enews": 8.32e-08, - "enkidu": 8.32e-08, - "enlarger": 8.32e-08, - "enlivening": 8.32e-08, - "entablature": 8.32e-08, - "enthuse": 8.32e-08, - "entreated": 8.32e-08, - "envisaging": 8.32e-08, - "equalizes": 8.32e-08, - "equilibration": 8.32e-08, - "escanaba": 8.32e-08, - "espressos": 8.32e-08, - "esses": 8.32e-08, - "esty": 8.32e-08, - "ettinger": 8.32e-08, - "eulalia": 8.32e-08, - "eurobond": 8.32e-08, - "eurogroup": 8.32e-08, - "evocations": 8.32e-08, - "ewer": 8.32e-08, - "ewert": 8.32e-08, - "ewg": 8.32e-08, - "exercisable": 8.32e-08, - "existant": 8.32e-08, - "exomars": 8.32e-08, - "expressionistic": 8.32e-08, - "extravaganzas": 8.32e-08, - "extroversion": 8.32e-08, - "eyedrops": 8.32e-08, - "ezzor": 8.32e-08, - "fabricates": 8.32e-08, - "falke": 8.32e-08, - "familar": 8.32e-08, - "farrago": 8.32e-08, - "farrand": 8.32e-08, - "fatf": 8.32e-08, - "fazer": 8.32e-08, - "federalized": 8.32e-08, - "ferrar": 8.32e-08, - "fetishistic": 8.32e-08, - "fingerling": 8.32e-08, - "finno": 8.32e-08, - "fizzling": 8.32e-08, - "flamborough": 8.32e-08, - "flattop": 8.32e-08, - "flintridge": 8.32e-08, - "floppies": 8.32e-08, - "foix": 8.32e-08, - "foner": 8.32e-08, - "fonterra": 8.32e-08, - "forseeable": 8.32e-08, - "fourcade": 8.32e-08, - "foz": 8.32e-08, - "frags": 8.32e-08, - "fraternization": 8.32e-08, - "fraziers": 8.32e-08, - "frb": 8.32e-08, - "frcp": 8.32e-08, - "frittered": 8.32e-08, - "frl": 8.32e-08, - "frostbitten": 8.32e-08, - "frr": 8.32e-08, - "fucktards": 8.32e-08, - "fugu": 8.32e-08, - "fuking": 8.32e-08, - "fussell": 8.32e-08, - "gameofthrones": 8.32e-08, - "gapping": 8.32e-08, - "garrote": 8.32e-08, - "gcl": 8.32e-08, - "gdynia": 8.32e-08, - "geeked": 8.32e-08, - "geen": 8.32e-08, - "gelsenkirchen": 8.32e-08, - "generalising": 8.32e-08, - "geochronology": 8.32e-08, - "gephardt": 8.32e-08, - "ghidorah": 8.32e-08, - "giambi": 8.32e-08, - "gijon": 8.32e-08, - "gilley": 8.32e-08, - "glentoran": 8.32e-08, - "globetrotting": 8.32e-08, - "glycolytic": 8.32e-08, - "glycoside": 8.32e-08, - "gobshite": 8.32e-08, - "godown": 8.32e-08, - "goffman": 8.32e-08, - "goldrush": 8.32e-08, - "gome": 8.32e-08, - "gompertz": 8.32e-08, - "goooood": 8.32e-08, - "gopinath": 8.32e-08, - "gorki": 8.32e-08, - "granulomatous": 8.32e-08, - "greate": 8.32e-08, - "greensand": 8.32e-08, - "greif": 8.32e-08, - "grolier": 8.32e-08, - "gsma": 8.32e-08, - "guarino": 8.32e-08, - "gubbins": 8.32e-08, - "guccis": 8.32e-08, - "gudgeon": 8.32e-08, - "guestlist": 8.32e-08, - "gula": 8.32e-08, - "gunga": 8.32e-08, - "gwin": 8.32e-08, - "gyoza": 8.32e-08, - "hadrons": 8.32e-08, - "halberstam": 8.32e-08, - "halder": 8.32e-08, - "halesowen": 8.32e-08, - "halfbacks": 8.32e-08, - "halles": 8.32e-08, - "halseys": 8.32e-08, - "hambro": 8.32e-08, - "hammill": 8.32e-08, - "handicappers": 8.32e-08, - "haranguing": 8.32e-08, - "hartington": 8.32e-08, - "hartree": 8.32e-08, - "hasa": 8.32e-08, - "havard": 8.32e-08, - "hbd": 8.32e-08, - "healthday": 8.32e-08, - "hearties": 8.32e-08, - "heathfield": 8.32e-08, - "heiko": 8.32e-08, - "hemolymph": 8.32e-08, - "hermeneutical": 8.32e-08, - "herpetological": 8.32e-08, - "herter": 8.32e-08, - "hertzog": 8.32e-08, - "heute": 8.32e-08, - "hexafluoride": 8.32e-08, - "heyyy": 8.32e-08, - "hibberd": 8.32e-08, - "hien": 8.32e-08, - "highgarden": 8.32e-08, - "highspeed": 8.32e-08, - "hijikata": 8.32e-08, - "hildas": 8.32e-08, - "himanshu": 8.32e-08, - "hisd": 8.32e-08, - "hnc": 8.32e-08, - "hoiberg": 8.32e-08, - "homebuilder": 8.32e-08, - "homonym": 8.32e-08, - "hongs": 8.32e-08, - "hoovered": 8.32e-08, - "hoplites": 8.32e-08, - "hornbeam": 8.32e-08, - "hornbill": 8.32e-08, - "hovis": 8.32e-08, - "howey": 8.32e-08, - "hoxha": 8.32e-08, - "hurons": 8.32e-08, - "hussle": 8.32e-08, - "hutchence": 8.32e-08, - "hws": 8.32e-08, - "hydrochlorothiazide": 8.32e-08, - "hyperplane": 8.32e-08, - "hyphenate": 8.32e-08, - "hyrum": 8.32e-08, - "hyuna": 8.32e-08, - "iconoclasts": 8.32e-08, - "iip": 8.32e-08, - "illusionists": 8.32e-08, - "imb": 8.32e-08, - "immanence": 8.32e-08, - "impaction": 8.32e-08, - "imperfecta": 8.32e-08, - "impute": 8.32e-08, - "inbreds": 8.32e-08, - "indelicate": 8.32e-08, - "inflammatories": 8.32e-08, - "inflator": 8.32e-08, - "ingenuous": 8.32e-08, - "ingrosso": 8.32e-08, - "inhumanly": 8.32e-08, - "insee": 8.32e-08, - "insite": 8.32e-08, - "insultingly": 8.32e-08, - "interconnectivity": 8.32e-08, - "interpolating": 8.32e-08, - "interprofessional": 8.32e-08, - "interspace": 8.32e-08, - "intolerably": 8.32e-08, - "intolerances": 8.32e-08, - "iodized": 8.32e-08, - "ionize": 8.32e-08, - "ipn": 8.32e-08, - "isin": 8.32e-08, - "itk": 8.32e-08, - "ivano": 8.32e-08, - "iyo": 8.32e-08, - "izzys": 8.32e-08, - "jank": 8.32e-08, - "jaybird": 8.32e-08, - "jeremie": 8.32e-08, - "jesup": 8.32e-08, - "jeunes": 8.32e-08, - "jina": 8.32e-08, - "jinder": 8.32e-08, - "johore": 8.32e-08, - "jorginho": 8.32e-08, - "joshing": 8.32e-08, - "josi": 8.32e-08, - "judds": 8.32e-08, - "judiths": 8.32e-08, - "juha": 8.32e-08, - "juninho": 8.32e-08, - "kaal": 8.32e-08, - "kady": 8.32e-08, - "kaesong": 8.32e-08, - "kaidan": 8.32e-08, - "kalpa": 8.32e-08, - "kamu": 8.32e-08, - "kaname": 8.32e-08, - "kanti": 8.32e-08, - "karly": 8.32e-08, - "karsh": 8.32e-08, - "kasab": 8.32e-08, - "katamari": 8.32e-08, - "kazmir": 8.32e-08, - "kcbs": 8.32e-08, - "kdka": 8.32e-08, - "keening": 8.32e-08, - "kefalonia": 8.32e-08, - "kelmscott": 8.32e-08, - "kepner": 8.32e-08, - "keppler": 8.32e-08, - "keratitis": 8.32e-08, - "kerslake": 8.32e-08, - "kesslers": 8.32e-08, - "keun": 8.32e-08, - "kgaa": 8.32e-08, - "khasi": 8.32e-08, - "khattak": 8.32e-08, - "khumbu": 8.32e-08, - "kima": 8.32e-08, - "kinch": 8.32e-08, - "kingussie": 8.32e-08, - "kirch": 8.32e-08, - "kirkcudbright": 8.32e-08, - "kiruna": 8.32e-08, - "kissable": 8.32e-08, - "kissers": 8.32e-08, - "klausner": 8.32e-08, - "kliff": 8.32e-08, - "knowlege": 8.32e-08, - "knud": 8.32e-08, - "kolya": 8.32e-08, - "kongers": 8.32e-08, - "kongsberg": 8.32e-08, - "kote": 8.32e-08, - "kotov": 8.32e-08, - "koyama": 8.32e-08, - "krafft": 8.32e-08, - "krai": 8.32e-08, - "krakauer": 8.32e-08, - "krewe": 8.32e-08, - "kroeber": 8.32e-08, - "kronk": 8.32e-08, - "kurukshetra": 8.32e-08, - "kushal": 8.32e-08, - "laborde": 8.32e-08, - "laceys": 8.32e-08, - "ladbroke": 8.32e-08, - "lakatos": 8.32e-08, - "lalas": 8.32e-08, - "lamanites": 8.32e-08, - "lami": 8.32e-08, - "lamo": 8.32e-08, - "languor": 8.32e-08, - "laodicea": 8.32e-08, - "lawyered": 8.32e-08, - "leandra": 8.32e-08, - "lecrae": 8.32e-08, - "leftfield": 8.32e-08, - "leishmania": 8.32e-08, - "lengua": 8.32e-08, - "leniently": 8.32e-08, - "lenos": 8.32e-08, - "leroi": 8.32e-08, - "letterheads": 8.32e-08, - "lexs": 8.32e-08, - "liason": 8.32e-08, - "libbey": 8.32e-08, - "lightheadedness": 8.32e-08, - "lilium": 8.32e-08, - "limbaughs": 8.32e-08, - "lipp": 8.32e-08, - "lisieux": 8.32e-08, - "lochner": 8.32e-08, - "longsword": 8.32e-08, - "loreen": 8.32e-08, - "lote": 8.32e-08, - "luana": 8.32e-08, - "luanne": 8.32e-08, - "luchador": 8.32e-08, - "lucidly": 8.32e-08, - "lucis": 8.32e-08, - "lucroy": 8.32e-08, - "ludwigs": 8.32e-08, - "lukasz": 8.32e-08, - "lully": 8.32e-08, - "lumbini": 8.32e-08, - "luminaires": 8.32e-08, - "lumo": 8.32e-08, - "lutein": 8.32e-08, - "mackays": 8.32e-08, - "maddens": 5.75e-08, - "madoffs": 8.32e-08, - "mafiosi": 8.32e-08, - "magadha": 8.32e-08, - "magdala": 8.32e-08, - "magid": 8.32e-08, - "mahir": 8.32e-08, - "malamute": 8.32e-08, - "maldi": 8.32e-08, - "malinda": 8.32e-08, - "mallu": 8.32e-08, - "maly": 8.32e-08, - "manalo": 8.32e-08, - "manoeuvrable": 8.32e-08, - "manpads": 8.32e-08, - "mantels": 8.32e-08, - "mantises": 8.32e-08, - "maranello": 8.32e-08, - "maret": 8.32e-08, - "maric": 8.32e-08, - "marischal": 8.32e-08, - "markdowns": 8.32e-08, - "martelli": 8.32e-08, - "marva": 8.32e-08, - "masoretic": 8.32e-08, - "mastership": 8.32e-08, - "masti": 8.32e-08, - "mastroianni": 8.32e-08, - "maternally": 8.32e-08, - "maters": 8.32e-08, - "matthey": 8.32e-08, - "maximilien": 8.32e-08, - "maximises": 8.32e-08, - "maxton": 8.32e-08, - "mayen": 8.32e-08, - "mayflies": 8.32e-08, - "mayim": 8.32e-08, - "mazdas": 8.32e-08, - "mcbryde": 8.32e-08, - "mccabes": 8.32e-08, - "mccomas": 8.32e-08, - "mcfaul": 8.32e-08, - "mcgary": 8.32e-08, - "mcgraths": 8.32e-08, - "mcivor": 8.32e-08, - "mckendrick": 8.32e-08, - "mclintock": 8.32e-08, - "mcmann": 8.32e-08, - "mcmullan": 8.32e-08, - "meatier": 8.32e-08, - "mede": 8.32e-08, - "medel": 8.32e-08, - "mediations": 8.32e-08, - "meditators": 8.32e-08, - "megacities": 8.32e-08, - "megamix": 8.32e-08, - "meggie": 8.32e-08, - "melos": 5.5e-08, - "mendip": 8.32e-08, - "merckx": 8.32e-08, - "mescal": 8.32e-08, - "metabolizes": 8.32e-08, - "metathesis": 8.32e-08, - "mewing": 8.32e-08, - "microsite": 8.32e-08, - "middelburg": 8.32e-08, - "mihir": 8.32e-08, - "millhouse": 8.32e-08, - "milliband": 8.32e-08, - "minamoto": 8.32e-08, - "minicomputer": 8.32e-08, - "ministrations": 8.32e-08, - "minnesotan": 8.32e-08, - "misandry": 8.32e-08, - "misnamed": 8.32e-08, - "misoprostol": 8.32e-08, - "misreporting": 8.32e-08, - "missis": 8.32e-08, - "misted": 8.32e-08, - "misters": 8.32e-08, - "mistimed": 8.32e-08, - "mitochondrion": 8.32e-08, - "mitsu": 8.32e-08, - "molino": 8.32e-08, - "moroder": 8.32e-08, - "mosel": 8.32e-08, - "moshpit": 8.32e-08, - "mosleys": 8.32e-08, - "mountable": 8.32e-08, - "muckraking": 8.32e-08, - "mulayam": 8.32e-08, - "mulkey": 8.32e-08, - "musculus": 8.32e-08, - "mushu": 8.32e-08, - "myler": 8.32e-08, - "myositis": 8.32e-08, - "mystify": 8.32e-08, - "naja": 8.32e-08, - "nardi": 8.32e-08, - "nastya": 8.32e-08, - "nattie": 8.32e-08, - "navan": 8.32e-08, - "nbp": 8.32e-08, - "ncf": 8.32e-08, - "neoliberals": 8.32e-08, - "neuraminidase": 8.32e-08, - "newsy": 8.32e-08, - "ngn": 8.32e-08, - "nitwits": 8.32e-08, - "nobilis": 8.32e-08, - "noctua": 8.32e-08, - "nonnegotiable": 8.32e-08, - "norwest": 8.32e-08, - "nosotros": 8.32e-08, - "notifiable": 8.32e-08, - "noumea": 8.32e-08, - "novia": 8.32e-08, - "nowruz": 8.32e-08, - "nucleons": 8.32e-08, - "nuffin": 8.32e-08, - "numpty": 8.32e-08, - "nutjobs": 8.32e-08, - "nyla": 8.32e-08, - "oconnells": 8.32e-08, - "oatley": 8.32e-08, - "observatorys": 8.32e-08, - "ohtani": 8.32e-08, - "oilsands": 8.32e-08, - "oir": 8.32e-08, - "olap": 8.32e-08, - "oleds": 8.32e-08, - "olefins": 8.32e-08, - "olwen": 8.32e-08, - "olyphant": 8.32e-08, - "ontogeny": 8.32e-08, - "ootd": 8.32e-08, - "opere": 8.32e-08, - "ornithine": 8.32e-08, - "orthoptera": 8.32e-08, - "osbournes": 8.32e-08, - "osrs": 8.32e-08, - "otte": 8.32e-08, - "otv": 8.32e-08, - "outram": 8.32e-08, - "overachieving": 8.32e-08, - "overages": 8.32e-08, - "overprint": 8.32e-08, - "owatonna": 8.32e-08, - "pannell": 8.32e-08, - "panth": 8.32e-08, - "pany": 8.32e-08, - "papeete": 8.32e-08, - "parabens": 8.32e-08, - "parganas": 8.32e-08, - "parrett": 8.32e-08, - "passthrough": 8.32e-08, - "patan": 8.32e-08, - "patentability": 8.32e-08, - "patris": 8.32e-08, - "pbj": 8.32e-08, - "pcu": 8.32e-08, - "pdms": 8.32e-08, - "pedestrianised": 8.32e-08, - "peeples": 8.32e-08, - "pela": 8.32e-08, - "peleliu": 8.32e-08, - "penndot": 8.32e-08, - "pensionable": 8.32e-08, - "pericarditis": 8.32e-08, - "perignon": 8.32e-08, - "permethrin": 8.32e-08, - "personel": 8.32e-08, - "pertinently": 8.32e-08, - "pey": 8.32e-08, - "phasor": 8.32e-08, - "philologists": 8.32e-08, - "picketts": 8.32e-08, - "pierrepont": 8.32e-08, - "pieterse": 8.32e-08, - "pigsty": 8.32e-08, - "pilon": 8.32e-08, - "pinelands": 8.32e-08, - "pipi": 8.32e-08, - "piru": 8.32e-08, - "piscine": 8.32e-08, - "pissin": 8.32e-08, - "pities": 8.32e-08, - "pitzer": 8.32e-08, - "pizzo": 8.32e-08, - "plaisir": 8.32e-08, - "plasterwork": 8.32e-08, - "plasti": 8.32e-08, - "plenitude": 8.32e-08, - "pleura": 8.32e-08, - "plzen": 8.32e-08, - "polanskis": 8.32e-08, - "polymerases": 8.32e-08, - "pomme": 8.32e-08, - "popkin": 8.32e-08, - "porkchop": 8.32e-08, - "porthcawl": 8.32e-08, - "potently": 8.32e-08, - "potrero": 8.32e-08, - "povetkin": 8.32e-08, - "powertrains": 8.32e-08, - "pozo": 8.32e-08, - "ppu": 8.32e-08, - "pragues": 8.32e-08, - "prattling": 8.32e-08, - "prefigured": 8.32e-08, - "prentis": 8.32e-08, - "presages": 8.32e-08, - "preuss": 8.32e-08, - "prickle": 8.32e-08, - "prine": 8.32e-08, - "prithee": 8.32e-08, - "proba": 8.32e-08, - "probleme": 8.32e-08, - "progreso": 8.32e-08, - "progressiveness": 8.32e-08, - "prostatitis": 8.32e-08, - "protea": 8.32e-08, - "pubertal": 8.32e-08, - "puneet": 8.32e-08, - "purslane": 8.32e-08, - "puting": 8.32e-08, - "puttering": 8.32e-08, - "pyatt": 8.32e-08, - "pyr": 8.32e-08, - "pyroxene": 8.32e-08, - "qibla": 8.32e-08, - "quackenbush": 8.32e-08, - "quartier": 8.32e-08, - "quaternions": 8.32e-08, - "qube": 8.32e-08, - "queretaro": 8.32e-08, - "quraysh": 8.32e-08, - "racecars": 8.32e-08, - "racialist": 8.32e-08, - "raita": 8.32e-08, - "ramjet": 8.32e-08, - "rancheros": 8.32e-08, - "ranji": 8.32e-08, - "rashomon": 8.32e-08, - "ravels": 8.32e-08, - "rawal": 8.32e-08, - "rdo": 8.32e-08, - "reavis": 8.32e-08, - "rebadged": 8.32e-08, - "recliners": 8.32e-08, - "reconstituting": 8.32e-08, - "redditors": 8.32e-08, - "redistributes": 8.32e-08, - "referents": 8.32e-08, - "reformatting": 8.32e-08, - "reger": 8.32e-08, - "regnault": 8.32e-08, - "regnum": 8.32e-08, - "rek": 8.32e-08, - "relatedly": 8.32e-08, - "relenting": 8.32e-08, - "renfield": 8.32e-08, - "renomination": 8.32e-08, - "renouf": 8.32e-08, - "renteria": 8.32e-08, - "renumbering": 8.32e-08, - "reponse": 8.32e-08, - "reposed": 8.32e-08, - "resnais": 8.32e-08, - "restructures": 8.32e-08, - "retcon": 8.32e-08, - "retconned": 8.32e-08, - "revivalists": 8.32e-08, - "ribas": 8.32e-08, - "ricco": 8.32e-08, - "rieger": 8.32e-08, - "riss": 8.32e-08, - "rizzuto": 8.32e-08, - "rockhill": 8.32e-08, - "roderigo": 8.32e-08, - "roes": 8.32e-08, - "romanovs": 8.32e-08, - "ropey": 8.32e-08, - "rossdale": 8.32e-08, - "rountree": 8.32e-08, - "rrt": 8.32e-08, - "rurouni": 8.32e-08, - "rushville": 8.32e-08, - "ruthin": 8.32e-08, - "rydal": 8.32e-08, - "ryno": 8.32e-08, - "sabmiller": 8.32e-08, - "safaricom": 8.32e-08, - "safdar": 8.32e-08, - "salonen": 8.32e-08, - "samarium": 8.32e-08, - "sammamish": 8.32e-08, - "sandell": 8.32e-08, - "sankt": 8.32e-08, - "santis": 8.32e-08, - "saragossa": 8.32e-08, - "sarath": 8.32e-08, - "sarfaraz": 8.32e-08, - "sarr": 8.32e-08, - "satara": 8.32e-08, - "scca": 8.32e-08, - "schnee": 8.32e-08, - "scho": 8.32e-08, - "schuette": 8.32e-08, - "scirocco": 8.32e-08, - "scoble": 8.32e-08, - "scornfully": 8.32e-08, - "scotches": 8.32e-08, - "scotties": 8.32e-08, - "scra": 8.32e-08, - "scuppered": 8.32e-08, - "seaming": 8.32e-08, - "seamount": 8.32e-08, - "secu": 8.32e-08, - "secundus": 8.32e-08, - "sedgefield": 8.32e-08, - "seethed": 8.32e-08, - "seether": 8.32e-08, - "segarra": 8.32e-08, - "seismologist": 8.32e-08, - "selenite": 8.32e-08, - "semenov": 8.32e-08, - "sensorial": 8.32e-08, - "sequoias": 8.32e-08, - "seuil": 8.32e-08, - "severson": 8.32e-08, - "sfe": 8.32e-08, - "shadowhunter": 8.32e-08, - "shanice": 8.32e-08, - "sharealike": 8.32e-08, - "shariff": 8.32e-08, - "shekau": 8.32e-08, - "shepton": 8.32e-08, - "shippen": 8.32e-08, - "shoplifted": 8.32e-08, - "shtetl": 8.32e-08, - "shuga": 8.32e-08, - "siciliano": 8.32e-08, - "siddha": 8.32e-08, - "sidelight": 8.32e-08, - "sidneys": 8.32e-08, - "silvanus": 8.32e-08, - "simd": 8.32e-08, - "simony": 8.32e-08, - "simulacra": 8.32e-08, - "singhania": 8.32e-08, - "sitio": 8.32e-08, - "sizzled": 8.32e-08, - "skrulls": 8.32e-08, - "slackened": 8.32e-08, - "slanging": 8.32e-08, - "sledgehammers": 8.32e-08, - "slrs": 8.32e-08, - "smulders": 8.32e-08, - "smx": 8.32e-08, - "snedeker": 8.32e-08, - "sociobiology": 8.32e-08, - "sohrab": 8.32e-08, - "sojourns": 8.32e-08, - "sonder": 8.32e-08, - "sones": 8.32e-08, - "sooooooooo": 8.32e-08, - "sophists": 8.32e-08, - "sopot": 8.32e-08, - "sopwith": 8.32e-08, - "souks": 8.32e-08, - "soundproofed": 8.32e-08, - "specifier": 8.32e-08, - "spick": 8.32e-08, - "spong": 8.32e-08, - "stallworth": 8.32e-08, - "stane": 8.32e-08, - "staveley": 8.32e-08, - "stavropol": 8.32e-08, - "steakhouses": 8.32e-08, - "sterilizer": 8.32e-08, - "stettin": 8.32e-08, - "stickley": 8.32e-08, - "stiffens": 8.32e-08, - "stilicho": 8.32e-08, - "stille": 8.32e-08, - "stith": 8.32e-08, - "stokke": 8.32e-08, - "stong": 8.32e-08, - "storeyed": 8.32e-08, - "stradivari": 8.32e-08, - "stri": 8.32e-08, - "strick": 8.32e-08, - "subj": 8.32e-08, - "subsequence": 8.32e-08, - "suger": 8.32e-08, - "suid": 8.32e-08, - "sukhumvit": 8.32e-08, - "sundarbans": 8.32e-08, - "superintendence": 8.32e-08, - "superstructures": 8.32e-08, - "suppleness": 8.32e-08, - "suprising": 8.32e-08, - "surendra": 8.32e-08, - "surigao": 8.32e-08, - "susies": 8.32e-08, - "svcs": 8.32e-08, - "svea": 8.32e-08, - "swachh": 8.32e-08, - "sweetbreads": 8.32e-08, - "swg": 8.32e-08, - "swoons": 8.32e-08, - "tadic": 8.32e-08, - "taiba": 8.32e-08, - "taibbi": 8.32e-08, - "talen": 8.32e-08, - "tamari": 8.32e-08, - "tangshan": 8.32e-08, - "taproot": 8.32e-08, - "tapscott": 8.32e-08, - "tartt": 8.32e-08, - "taschen": 8.32e-08, - "tatham": 8.32e-08, - "tatt": 8.32e-08, - "tazed": 8.32e-08, - "tehama": 8.32e-08, - "tektronix": 8.32e-08, - "telmo": 8.32e-08, - "temping": 8.32e-08, - "tempora": 8.32e-08, - "temur": 8.32e-08, - "tenting": 8.32e-08, - "tetrapods": 8.32e-08, - "tevye": 8.32e-08, - "thanjavur": 8.32e-08, - "thel": 8.32e-08, - "thermidor": 8.32e-08, - "thimphu": 8.32e-08, - "thn": 8.32e-08, - "threeway": 8.32e-08, - "thunberg": 8.32e-08, - "thundercat": 8.32e-08, - "tidier": 8.32e-08, - "tilings": 8.32e-08, - "timmerman": 8.32e-08, - "tindal": 8.32e-08, - "tiree": 8.32e-08, - "tissier": 8.32e-08, - "tkachuk": 8.32e-08, - "tlb": 8.32e-08, - "tohru": 8.32e-08, - "topol": 8.32e-08, - "torin": 8.32e-08, - "torrenting": 8.32e-08, - "torrie": 8.32e-08, - "tracee": 8.32e-08, - "tragicomedy": 8.32e-08, - "transcendentalism": 8.32e-08, - "transgenderism": 8.32e-08, - "transposable": 8.32e-08, - "trazodone": 8.32e-08, - "treed": 8.32e-08, - "tribbles": 8.32e-08, - "tros": 8.32e-08, - "trossachs": 8.32e-08, - "trouper": 8.32e-08, - "truk": 8.32e-08, - "tsering": 8.32e-08, - "tsingtao": 8.32e-08, - "tulowitzki": 8.32e-08, - "turlington": 8.32e-08, - "tushar": 8.32e-08, - "tve": 8.32e-08, - "twt": 8.32e-08, - "tyrannies": 8.32e-08, - "tyrannosaur": 8.32e-08, - "tzatziki": 8.32e-08, - "uaf": 8.32e-08, - "uhlmann": 8.32e-08, - "uim": 8.32e-08, - "ulis": 8.32e-08, - "umbrian": 8.32e-08, - "underpriced": 8.32e-08, - "underrepresentation": 8.32e-08, - "univer": 8.32e-08, - "unprovable": 8.32e-08, - "unseaworthy": 8.32e-08, - "unsere": 8.32e-08, - "upl": 8.32e-08, - "uzbekistans": 8.32e-08, - "vacca": 8.32e-08, - "vainglorious": 8.32e-08, - "vargo": 8.32e-08, - "venango": 8.32e-08, - "vfc": 8.32e-08, - "vgs": 8.32e-08, - "viale": 8.32e-08, - "videoclip": 8.32e-08, - "videoconference": 8.32e-08, - "vidor": 8.32e-08, - "villainess": 8.32e-08, - "vinca": 8.32e-08, - "viren": 8.32e-08, - "vishwa": 8.32e-08, - "viu": 8.32e-08, - "voluntarism": 8.32e-08, - "vpr": 8.32e-08, - "waca": 8.32e-08, - "wacken": 8.32e-08, - "waddy": 8.32e-08, - "wadley": 8.32e-08, - "waris": 8.32e-08, - "watermill": 8.32e-08, - "webisode": 8.32e-08, - "weer": 8.32e-08, - "welll": 8.32e-08, - "wess": 8.32e-08, - "westcliff": 8.32e-08, - "westminsters": 8.32e-08, - "wfan": 8.32e-08, - "whartons": 8.32e-08, - "whorf": 8.32e-08, - "widdecombe": 8.32e-08, - "wiggy": 8.32e-08, - "wilkens": 8.32e-08, - "willmar": 8.32e-08, - "wolman": 8.32e-08, - "wreckless": 8.32e-08, - "wrestlings": 8.32e-08, - "wristlet": 8.32e-08, - "wuh": 8.32e-08, - "wussy": 8.32e-08, - "xanthan": 8.32e-08, - "xdd": 8.32e-08, - "xnxx": 8.32e-08, - "yabu": 8.32e-08, - "yac": 8.32e-08, - "yago": 8.32e-08, - "yammering": 8.32e-08, - "yanis": 8.32e-08, - "yardbirds": 8.32e-08, - "yaroslav": 8.32e-08, - "yaroslavl": 8.32e-08, - "yellowcard": 8.32e-08, - "yerself": 8.32e-08, - "yoram": 8.32e-08, - "yoshihiro": 8.32e-08, - "yount": 8.32e-08, - "yukino": 8.32e-08, - "zambians": 8.32e-08, - "zaras": 8.32e-08, - "zeena": 8.32e-08, - "zepeda": 8.32e-08, - "zha": 8.32e-08, - "zhirinovsky": 8.32e-08, - "zielinski": 8.32e-08, - "aakash": 8.13e-08, - "abjectly": 8.13e-08, - "absolutley": 8.13e-08, - "acetonitrile": 8.13e-08, - "actinide": 8.13e-08, - "adena": 8.13e-08, - "aftonbladet": 8.13e-08, - "agbonlahor": 8.13e-08, - "agrochemicals": 8.13e-08, - "airworthy": 8.13e-08, - "alembert": 8.13e-08, - "alenia": 8.13e-08, - "alh": 8.13e-08, - "alibabas": 8.13e-08, - "alkene": 8.13e-08, - "allons": 8.13e-08, - "almaz": 8.13e-08, - "altavista": 8.13e-08, - "amann": 8.13e-08, - "amboise": 8.13e-08, - "amol": 8.13e-08, - "ampoules": 8.13e-08, - "anabelle": 8.13e-08, - "anaplastic": 8.13e-08, - "andaz": 8.13e-08, - "anik": 8.13e-08, - "anl": 8.13e-08, - "annalisa": 8.13e-08, - "anteroom": 8.13e-08, - "antiserum": 8.13e-08, - "antwoord": 8.13e-08, - "aow": 8.13e-08, - "apophis": 8.13e-08, - "appin": 8.13e-08, - "apportioning": 8.13e-08, - "aprile": 8.13e-08, - "apta": 8.13e-08, - "aquatint": 8.13e-08, - "arago": 8.13e-08, - "arbeloa": 8.13e-08, - "arced": 8.13e-08, - "argentino": 8.13e-08, - "arh": 8.13e-08, - "arley": 8.13e-08, - "arme": 8.13e-08, - "ashers": 8.13e-08, - "athleisure": 8.13e-08, - "atmel": 8.13e-08, - "aulus": 8.13e-08, - "ausa": 8.13e-08, - "avantgarde": 8.13e-08, - "aversions": 8.13e-08, - "aviemore": 8.13e-08, - "avocation": 8.13e-08, - "axford": 8.13e-08, - "axwell": 8.13e-08, - "bachao": 8.13e-08, - "bahamut": 8.13e-08, - "baji": 8.13e-08, - "bakhtin": 8.13e-08, - "balb": 8.13e-08, - "baranski": 8.13e-08, - "barri": 8.13e-08, - "bartra": 8.13e-08, - "baryons": 8.13e-08, - "baseload": 8.13e-08, - "batali": 8.13e-08, - "battuta": 8.13e-08, - "bava": 8.13e-08, - "bawden": 8.13e-08, - "baxley": 8.13e-08, - "bayon": 8.13e-08, - "bdt": 8.13e-08, - "beaching": 8.13e-08, - "beaumarchais": 8.13e-08, - "beaumaris": 8.13e-08, - "becuz": 8.13e-08, - "bedsit": 8.13e-08, - "begrudging": 8.13e-08, - "beirne": 8.13e-08, - "belgrano": 8.13e-08, - "belhaven": 8.13e-08, - "bellary": 8.13e-08, - "benfield": 8.13e-08, - "bensonhurst": 8.13e-08, - "bentz": 8.13e-08, - "beps": 8.13e-08, - "bernheim": 8.13e-08, - "berni": 8.13e-08, - "berthelot": 8.13e-08, - "bertone": 8.13e-08, - "besmirched": 8.13e-08, - "betrayers": 8.13e-08, - "bharuch": 8.13e-08, - "bhau": 8.13e-08, - "bheem": 8.13e-08, - "biber": 8.13e-08, - "bibl": 8.13e-08, - "bibliothek": 8.13e-08, - "bighit": 8.13e-08, - "bijapur": 8.13e-08, - "bili": 8.13e-08, - "billowy": 8.13e-08, - "binay": 8.13e-08, - "biographic": 8.13e-08, - "bion": 8.13e-08, - "bionicle": 8.13e-08, - "biosimilars": 8.13e-08, - "biphasic": 8.13e-08, - "biphenyls": 8.13e-08, - "birkenstock": 8.13e-08, - "bisect": 8.13e-08, - "bkb": 8.13e-08, - "blackhat": 8.13e-08, - "blairgowrie": 8.13e-08, - "blakeslee": 8.13e-08, - "blasphemed": 8.13e-08, - "blaxland": 8.13e-08, - "bluebonnet": 8.13e-08, - "boch": 8.13e-08, - "bogdanovich": 8.13e-08, - "bollywoods": 8.13e-08, - "bols": 8.13e-08, - "bondurant": 8.13e-08, - "bont": 8.13e-08, - "boodle": 8.13e-08, - "boops": 8.13e-08, - "bootcamps": 8.13e-08, - "boringly": 8.13e-08, - "boscawen": 8.13e-08, - "botswanas": 8.13e-08, - "boveri": 8.13e-08, - "boyar": 8.13e-08, - "braidwood": 8.13e-08, - "brandys": 8.13e-08, - "brannen": 8.13e-08, - "branstad": 8.13e-08, - "breeden": 8.13e-08, - "breguet": 8.13e-08, - "brf": 8.13e-08, - "briere": 8.13e-08, - "brisco": 8.13e-08, - "brittleness": 8.13e-08, - "brogden": 8.13e-08, - "btob": 8.13e-08, - "bucco": 8.13e-08, - "buehrle": 8.13e-08, - "bulbul": 8.13e-08, - "bullfighters": 8.13e-08, - "bunche": 8.13e-08, - "bundchen": 8.13e-08, - "bungay": 8.13e-08, - "bunnymen": 8.13e-08, - "bursted": 8.13e-08, - "bushra": 8.13e-08, - "bustos": 8.13e-08, - "butina": 8.13e-08, - "butterfinger": 8.13e-08, - "bwr": 8.13e-08, - "byeong": 8.13e-08, - "caber": 8.13e-08, - "caco": 8.13e-08, - "calarts": 8.13e-08, - "calcined": 8.13e-08, - "calfs": 8.13e-08, - "calibur": 8.13e-08, - "californica": 8.13e-08, - "calzaghe": 8.13e-08, - "cambium": 8.13e-08, - "canara": 8.13e-08, - "canting": 8.13e-08, - "cardoza": 8.13e-08, - "careen": 8.13e-08, - "caret": 8.13e-08, - "caricaturist": 8.13e-08, - "carnac": 8.13e-08, - "carpetbaggers": 8.13e-08, - "carys": 5.25e-08, - "catecholamines": 8.13e-08, - "cathepsin": 8.13e-08, - "cauca": 8.13e-08, - "cayden": 8.13e-08, - "cemex": 8.13e-08, - "chaffey": 8.13e-08, - "chalke": 8.13e-08, - "chalo": 8.13e-08, - "chanute": 8.13e-08, - "chapati": 8.13e-08, - "chapbooks": 8.13e-08, - "charr": 8.13e-08, - "chelios": 8.13e-08, - "chengs": 8.13e-08, - "chervil": 8.13e-08, - "chh": 8.13e-08, - "chiangmai": 8.13e-08, - "chipperfield": 8.13e-08, - "chmerkovskiy": 8.13e-08, - "chole": 8.13e-08, - "ciliated": 8.13e-08, - "cinderblock": 8.13e-08, - "cira": 8.13e-08, - "circumnavigated": 8.13e-08, - "ciri": 8.13e-08, - "civvies": 8.13e-08, - "clayey": 8.13e-08, - "clockmaker": 8.13e-08, - "cluelessness": 8.13e-08, - "cmbs": 8.13e-08, - "cnh": 8.13e-08, - "codifies": 8.13e-08, - "collegeville": 8.13e-08, - "colloquy": 8.13e-08, - "coltons": 8.13e-08, - "comminuted": 8.13e-08, - "communions": 8.13e-08, - "comput": 8.13e-08, - "concourses": 8.13e-08, - "confiscates": 8.13e-08, - "conkers": 2.63e-08, - "conquistadores": 8.13e-08, - "consequentialist": 8.13e-08, - "conservatorium": 8.13e-08, - "conveyancer": 8.13e-08, - "copperas": 8.13e-08, - "coralie": 8.13e-08, - "corbels": 8.13e-08, - "corbetts": 8.13e-08, - "corfe": 8.13e-08, - "correggio": 8.13e-08, - "correspondance": 8.13e-08, - "corsicana": 8.13e-08, - "coton": 8.13e-08, - "cotonou": 8.13e-08, - "couching": 8.13e-08, - "cowells": 8.13e-08, - "cowlitz": 8.13e-08, - "cowra": 8.13e-08, - "coys": 8.13e-08, - "coziness": 8.13e-08, - "cppcc": 8.13e-08, - "credenza": 8.13e-08, - "crj": 8.13e-08, - "crooned": 8.13e-08, - "cuckolds": 8.13e-08, - "cueva": 8.13e-08, - "culo": 8.13e-08, - "cuyler": 8.13e-08, - "cwg": 8.13e-08, - "cyanosis": 8.13e-08, - "cytogenetics": 8.13e-08, - "dailymail": 8.13e-08, - "damir": 8.13e-08, - "dapp": 8.13e-08, - "dataflow": 8.13e-08, - "datagram": 8.13e-08, - "daytons": 8.13e-08, - "decanting": 8.13e-08, - "decedents": 8.13e-08, - "decius": 8.13e-08, - "decongestant": 8.13e-08, - "deflategate": 8.13e-08, - "dega": 8.13e-08, - "degassing": 8.13e-08, - "delors": 8.13e-08, - "demonetized": 8.13e-08, - "demoralization": 8.13e-08, - "demotivated": 8.13e-08, - "demy": 8.13e-08, - "deploring": 8.13e-08, - "deri": 8.13e-08, - "desir": 8.13e-08, - "devere": 8.13e-08, - "deviancy": 8.13e-08, - "dextromethorphan": 8.13e-08, - "diachronic": 8.13e-08, - "dieticians": 8.13e-08, - "dioecious": 8.13e-08, - "diomedes": 8.13e-08, - "distills": 8.13e-08, - "distributorship": 8.13e-08, - "dmitriy": 8.13e-08, - "domenech": 8.13e-08, - "domiciliary": 8.13e-08, - "dontcha": 8.13e-08, - "dorion": 8.13e-08, - "downham": 8.13e-08, - "downhole": 8.13e-08, - "downstage": 8.13e-08, - "dragonforce": 8.13e-08, - "dribbler": 8.13e-08, - "drooped": 8.13e-08, - "duffey": 8.13e-08, - "dulaney": 8.13e-08, - "duniya": 8.13e-08, - "duplessis": 8.13e-08, - "dupri": 8.13e-08, - "dwelleth": 8.13e-08, - "dwm": 8.13e-08, - "dyan": 8.13e-08, - "ebonyi": 8.13e-08, - "ebury": 8.13e-08, - "eddi": 8.13e-08, - "edger": 8.13e-08, - "educationalists": 8.13e-08, - "effaced": 8.13e-08, - "efrain": 8.13e-08, - "egomaniacal": 8.13e-08, - "eichner": 8.13e-08, - "eip": 8.13e-08, - "eisenstadt": 8.13e-08, - "elongating": 8.13e-08, - "emancipatory": 8.13e-08, - "emarketer": 8.13e-08, - "emet": 8.13e-08, - "encroaches": 8.13e-08, - "endocrinologists": 8.13e-08, - "endoderm": 8.13e-08, - "enlistments": 8.13e-08, - "enmities": 8.13e-08, - "entreprise": 8.13e-08, - "entwine": 8.13e-08, - "enu": 8.13e-08, - "epaulettes": 8.13e-08, - "epigraphic": 8.13e-08, - "ericka": 8.13e-08, - "ernies": 8.13e-08, - "esol": 8.13e-08, - "esop": 8.13e-08, - "ethelred": 8.13e-08, - "etten": 8.13e-08, - "etty": 8.13e-08, - "etzion": 8.13e-08, - "eucalypts": 8.13e-08, - "europ": 8.13e-08, - "evarts": 8.13e-08, - "ewood": 8.13e-08, - "examen": 8.13e-08, - "exi": 8.13e-08, - "exide": 8.13e-08, - "exonerates": 8.13e-08, - "extralegal": 8.13e-08, - "extrasolar": 8.13e-08, - "extrication": 8.13e-08, - "ezell": 8.13e-08, - "facelifts": 8.13e-08, - "fappening": 8.13e-08, - "faslane": 8.13e-08, - "federative": 8.13e-08, - "fefe": 8.13e-08, - "ferre": 8.13e-08, - "fetishists": 8.13e-08, - "ffestiniog": 8.13e-08, - "fhs": 8.13e-08, - "fiduciaries": 8.13e-08, - "filibustered": 8.13e-08, - "fineman": 8.13e-08, - "fireproofing": 8.13e-08, - "fitt": 8.13e-08, - "flagbearer": 8.13e-08, - "flagstones": 8.13e-08, - "fli": 8.13e-08, - "florescent": 8.13e-08, - "flubbed": 8.13e-08, - "fmi": 8.13e-08, - "fontenot": 8.13e-08, - "foreleg": 8.13e-08, - "fpo": 8.13e-08, - "frats": 8.13e-08, - "freundlich": 8.13e-08, - "frontiersmen": 8.13e-08, - "fsis": 8.13e-08, - "furey": 8.13e-08, - "fuuuck": 8.13e-08, - "fux": 8.13e-08, - "gabrielles": 8.13e-08, - "gagosian": 8.13e-08, - "gakkai": 8.13e-08, - "galactosidase": 8.13e-08, - "ganj": 8.13e-08, - "garhwal": 8.13e-08, - "gaucher": 8.13e-08, - "gauld": 8.13e-08, - "gawky": 8.13e-08, - "gelber": 8.13e-08, - "genbank": 8.13e-08, - "geocities": 8.13e-08, - "ghalib": 8.13e-08, - "giardino": 8.13e-08, - "gillespies": 8.13e-08, - "ginga": 8.13e-08, - "gintoki": 8.13e-08, - "ginuwine": 8.13e-08, - "glabra": 8.13e-08, - "glantz": 8.13e-08, - "glarus": 8.13e-08, - "glasshouses": 8.13e-08, - "glavine": 8.13e-08, - "gledhill": 8.13e-08, - "glendenning": 8.13e-08, - "glenfield": 8.13e-08, - "globs": 8.13e-08, - "glockenspiel": 8.13e-08, - "gloop": 8.13e-08, - "goads": 8.13e-08, - "goanna": 8.13e-08, - "godawful": 8.13e-08, - "godefroy": 8.13e-08, - "gossage": 8.13e-08, - "gowrie": 8.13e-08, - "gpe": 8.13e-08, - "grandads": 8.13e-08, - "grandbaby": 8.13e-08, - "grandmama": 8.13e-08, - "grassroot": 8.13e-08, - "grayed": 8.13e-08, - "greyer": 8.13e-08, - "grosset": 8.13e-08, - "grossmans": 8.13e-08, - "groveland": 8.13e-08, - "gruffydd": 8.13e-08, - "guarda": 8.13e-08, - "guice": 8.13e-08, - "guldan": 8.13e-08, - "gulshan": 8.13e-08, - "guptas": 7.41e-08, - "gurgles": 8.13e-08, - "gutmann": 8.13e-08, - "gwaii": 8.13e-08, - "gwas": 8.13e-08, - "gyi": 8.13e-08, - "habilis": 8.13e-08, - "hacktivist": 8.13e-08, - "haff": 8.13e-08, - "hakata": 8.13e-08, - "hakluyt": 8.13e-08, - "haleakala": 8.13e-08, - "hally": 8.13e-08, - "halon": 8.13e-08, - "hanabi": 8.13e-08, - "happyness": 8.13e-08, - "harmonie": 8.13e-08, - "hawarden": 8.13e-08, - "haydns": 8.13e-08, - "hcn": 8.13e-08, - "headbangers": 8.13e-08, - "healys": 8.13e-08, - "hearns": 8.13e-08, - "heartrending": 8.13e-08, - "hecla": 8.13e-08, - "heda": 8.13e-08, - "helvetia": 8.13e-08, - "hemline": 8.13e-08, - "henty": 8.13e-08, - "heon": 8.13e-08, - "hepburns": 8.13e-08, - "herzen": 8.13e-08, - "hesitance": 8.13e-08, - "heures": 8.13e-08, - "hewer": 8.13e-08, - "hextall": 8.13e-08, - "hhi": 8.13e-08, - "hidin": 8.13e-08, - "highborn": 8.13e-08, - "highmore": 8.13e-08, - "hilar": 8.13e-08, - "hims": 8.13e-08, - "hisashi": 8.13e-08, - "hixson": 8.13e-08, - "holford": 8.13e-08, - "holzman": 8.13e-08, - "homeopaths": 8.13e-08, - "homeschoolers": 8.13e-08, - "hooah": 8.13e-08, - "hopp": 8.13e-08, - "horchata": 8.13e-08, - "horie": 8.13e-08, - "horley": 8.13e-08, - "horo": 8.13e-08, - "horsfall": 8.13e-08, - "horthy": 8.13e-08, - "horwath": 8.13e-08, - "hotty": 8.13e-08, - "howick": 8.13e-08, - "hoxie": 8.13e-08, - "hpt": 8.13e-08, - "hsun": 8.13e-08, - "hughson": 8.13e-08, - "humint": 8.13e-08, - "humourless": 8.13e-08, - "huna": 8.13e-08, - "hussains": 8.13e-08, - "hvdc": 8.13e-08, - "hypertonic": 8.13e-08, - "hypostasis": 8.13e-08, - "hypothesizes": 8.13e-08, - "ibero": 8.13e-08, - "idealizing": 8.13e-08, - "idrc": 8.13e-08, - "ieuan": 8.13e-08, - "ignaz": 8.13e-08, - "ikat": 8.13e-08, - "illum": 8.13e-08, - "immunogenic": 8.13e-08, - "immunosuppressant": 8.13e-08, - "imprecision": 8.13e-08, - "incurably": 8.13e-08, - "infringers": 8.13e-08, - "insensibly": 8.13e-08, - "insets": 8.13e-08, - "intan": 8.13e-08, - "integrins": 8.13e-08, - "internat": 8.13e-08, - "interstices": 8.13e-08, - "intervarsity": 8.13e-08, - "intime": 8.13e-08, - "intonations": 8.13e-08, - "intramedullary": 8.13e-08, - "irreproachable": 8.13e-08, - "ismaili": 8.13e-08, - "italie": 8.13e-08, - "iwasaki": 8.13e-08, - "iyad": 8.13e-08, - "jaggi": 8.13e-08, - "jamon": 8.13e-08, - "jardines": 8.13e-08, - "jarome": 8.13e-08, - "jasa": 8.13e-08, - "jawing": 8.13e-08, - "jaxa": 8.13e-08, - "jelinek": 8.13e-08, - "jemez": 8.13e-08, - "jeopardising": 8.13e-08, - "jeters": 8.13e-08, - "jex": 8.13e-08, - "jobbik": 8.13e-08, - "jodorowsky": 8.13e-08, - "jornada": 8.13e-08, - "joshy": 8.13e-08, - "jovanovic": 8.13e-08, - "juanes": 8.13e-08, - "jumpman": 8.13e-08, - "jumpshot": 8.13e-08, - "junpei": 8.13e-08, - "kabel": 8.13e-08, - "kaiden": 8.13e-08, - "kalia": 8.13e-08, - "kangra": 8.13e-08, - "karachis": 8.13e-08, - "kardon": 8.13e-08, - "karmapa": 8.13e-08, - "kassam": 8.13e-08, - "kassian": 8.13e-08, - "katheryn": 8.13e-08, - "kci": 8.13e-08, - "keem": 8.13e-08, - "kefauver": 8.13e-08, - "keli": 8.13e-08, - "kempf": 8.13e-08, - "keshav": 8.13e-08, - "kett": 8.13e-08, - "khatri": 8.13e-08, - "khazar": 8.13e-08, - "khazars": 8.13e-08, - "khulna": 8.13e-08, - "killie": 8.13e-08, - "kistler": 8.13e-08, - "kiu": 8.13e-08, - "klepto": 8.13e-08, - "knopfler": 8.13e-08, - "kollywood": 8.13e-08, - "kommersant": 8.13e-08, - "komorowski": 8.13e-08, - "konta": 8.13e-08, - "korma": 8.13e-08, - "kosinski": 8.13e-08, - "kottayam": 8.13e-08, - "koy": 8.13e-08, - "krew": 8.13e-08, - "krol": 8.13e-08, - "kucherov": 8.13e-08, - "kuehn": 8.13e-08, - "kuki": 8.13e-08, - "kummer": 8.13e-08, - "kurdi": 8.13e-08, - "kutztown": 8.13e-08, - "kuvira": 8.13e-08, - "kyanite": 8.13e-08, - "labonte": 8.13e-08, - "lach": 8.13e-08, - "lactamase": 8.13e-08, - "laferrari": 8.13e-08, - "lagunitas": 8.13e-08, - "lamoureux": 8.13e-08, - "languishes": 8.13e-08, - "largess": 8.13e-08, - "laur": 8.13e-08, - "lavalin": 8.13e-08, - "leboeuf": 8.13e-08, - "ledley": 8.13e-08, - "lefthand": 8.13e-08, - "legitimization": 8.13e-08, - "leiber": 8.13e-08, - "lelia": 8.13e-08, - "leonardi": 8.13e-08, - "leonhardt": 8.13e-08, - "levu": 8.13e-08, - "licentiousness": 8.13e-08, - "limonene": 8.13e-08, - "lindros": 8.13e-08, - "linearized": 8.13e-08, - "linkers": 8.13e-08, - "linthicum": 8.13e-08, - "liskeard": 8.13e-08, - "litem": 8.13e-08, - "livered": 8.13e-08, - "livestrong": 8.13e-08, - "lnr": 8.13e-08, - "lnt": 8.13e-08, - "lnternational": 8.13e-08, - "lockley": 8.13e-08, - "locsin": 8.13e-08, - "logi": 8.13e-08, - "lorrain": 8.13e-08, - "losey": 8.13e-08, - "lozada": 8.13e-08, - "luangwa": 8.13e-08, - "luciani": 8.13e-08, - "lucienne": 8.13e-08, - "lupone": 8.13e-08, - "luscombe": 8.13e-08, - "luth": 8.13e-08, - "luu": 8.13e-08, - "lwin": 8.13e-08, - "lyanna": 8.13e-08, - "lycett": 8.13e-08, - "lycia": 8.13e-08, - "lycurgus": 8.13e-08, - "lyf": 8.13e-08, - "lysosome": 8.13e-08, - "mabuse": 8.13e-08, - "macfarland": 8.13e-08, - "macguffin": 8.13e-08, - "maciej": 8.13e-08, - "macleay": 8.13e-08, - "madagascars": 8.13e-08, - "maddi": 8.13e-08, - "maestra": 8.13e-08, - "maharani": 8.13e-08, - "maile": 8.13e-08, - "maite": 8.13e-08, - "malli": 8.13e-08, - "manch": 8.13e-08, - "manche": 8.13e-08, - "mant": 8.13e-08, - "manzoor": 8.13e-08, - "marinades": 8.13e-08, - "markland": 8.13e-08, - "marlboros": 8.13e-08, - "marmots": 8.13e-08, - "marylin": 8.13e-08, - "marzo": 8.13e-08, - "maseru": 8.13e-08, - "masud": 8.13e-08, - "matei": 8.13e-08, - "maudie": 8.13e-08, - "mauritz": 8.13e-08, - "mayakovsky": 8.13e-08, - "mck": 8.13e-08, - "mckinstry": 8.13e-08, - "mcmartin": 8.13e-08, - "mcnerney": 8.13e-08, - "mcpartland": 8.13e-08, - "meaney": 8.13e-08, - "mebane": 8.13e-08, - "meee": 8.13e-08, - "melek": 8.13e-08, - "memetic": 8.13e-08, - "meningeal": 8.13e-08, - "menke": 8.13e-08, - "mersin": 8.13e-08, - "metallicity": 8.13e-08, - "metamaterial": 8.13e-08, - "metamorphose": 8.13e-08, - "methamphetamines": 8.13e-08, - "methode": 8.13e-08, - "metrobus": 8.13e-08, - "michelet": 8.13e-08, - "microlight": 8.13e-08, - "midmorning": 8.13e-08, - "midnights": 5.25e-08, - "mielke": 8.13e-08, - "miike": 8.13e-08, - "millenniums": 8.13e-08, - "milquetoast": 8.13e-08, - "mineo": 8.13e-08, - "minesweepers": 8.13e-08, - "minette": 8.13e-08, - "minnick": 8.13e-08, - "minstrelsy": 8.13e-08, - "miran": 8.13e-08, - "misano": 8.13e-08, - "misapplication": 8.13e-08, - "misdeed": 8.13e-08, - "misgendering": 8.13e-08, - "misjudging": 8.13e-08, - "mississippians": 8.13e-08, - "mll": 8.13e-08, - "mlse": 8.13e-08, - "mmk": 8.13e-08, - "mogherini": 8.13e-08, - "mogo": 8.13e-08, - "mohmand": 8.13e-08, - "molo": 8.13e-08, - "mondial": 8.13e-08, - "monkhouse": 8.13e-08, - "monod": 8.13e-08, - "monroy": 8.13e-08, - "montgomeryshire": 8.13e-08, - "moosa": 8.13e-08, - "moralism": 8.13e-08, - "morganton": 8.13e-08, - "motoko": 8.13e-08, - "mousey": 8.13e-08, - "msx": 8.13e-08, - "mup": 8.13e-08, - "murasaki": 8.13e-08, - "muscly": 8.13e-08, - "muswell": 8.13e-08, - "muybridge": 8.13e-08, - "mvm": 8.13e-08, - "myocytes": 8.13e-08, - "naep": 8.13e-08, - "nahal": 8.13e-08, - "naic": 8.13e-08, - "naing": 8.13e-08, - "najafi": 8.13e-08, - "nakama": 8.13e-08, - "nako": 8.13e-08, - "napoca": 8.13e-08, - "narutos": 8.13e-08, - "natali": 8.13e-08, - "navratri": 8.13e-08, - "neilsen": 8.13e-08, - "neith": 8.13e-08, - "nera": 8.13e-08, - "nerissa": 8.13e-08, - "nervo": 8.13e-08, - "neuropathology": 8.13e-08, - "neutralizer": 8.13e-08, - "newall": 8.13e-08, - "newburg": 8.13e-08, - "newnes": 8.13e-08, - "ngk": 8.13e-08, - "ngugi": 8.13e-08, - "nickell": 8.13e-08, - "nickles": 8.13e-08, - "nincompoop": 8.13e-08, - "nira": 8.13e-08, - "nogi": 8.13e-08, - "nogueira": 8.13e-08, - "noncitizens": 8.13e-08, - "nonexclusive": 8.13e-08, - "norc": 8.13e-08, - "norrington": 8.13e-08, - "noway": 8.13e-08, - "numpy": 8.13e-08, - "nutraceutical": 8.13e-08, - "nutso": 8.13e-08, - "nxivm": 8.13e-08, - "okeefes": 8.13e-08, - "obfuscating": 8.13e-08, - "oblak": 8.13e-08, - "obsessional": 8.13e-08, - "ocon": 8.13e-08, - "ocracoke": 8.13e-08, - "octopi": 8.13e-08, - "oef": 8.13e-08, - "offic": 8.13e-08, - "ofm": 8.13e-08, - "ofori": 8.13e-08, - "ogallala": 8.13e-08, - "ohmic": 8.13e-08, - "oktober": 8.13e-08, - "omegas": 6.92e-08, - "oob": 8.13e-08, - "oogie": 8.13e-08, - "openwork": 8.13e-08, - "opuntia": 8.13e-08, - "orderliness": 8.13e-08, - "orients": 8.13e-08, - "osteogenic": 8.13e-08, - "osteotomy": 8.13e-08, - "otsu": 8.13e-08, - "outre": 8.13e-08, - "outriders": 8.13e-08, - "outwork": 8.13e-08, - "oversaturated": 8.13e-08, - "overspent": 8.13e-08, - "overstocked": 8.13e-08, - "overtraining": 8.13e-08, - "owcp": 8.13e-08, - "owusu": 8.13e-08, - "ozils": 8.13e-08, - "palabras": 8.13e-08, - "palaeozoic": 8.13e-08, - "paleogene": 8.13e-08, - "panathinaikos": 8.13e-08, - "panmunjom": 8.13e-08, - "pannonia": 8.13e-08, - "papering": 8.13e-08, - "parchments": 8.13e-08, - "parishs": 8.13e-08, - "passau": 8.13e-08, - "passo": 8.13e-08, - "pdes": 8.13e-08, - "peabodys": 8.13e-08, - "peau": 8.13e-08, - "peevish": 8.13e-08, - "peh": 8.13e-08, - "pelayo": 8.13e-08, - "pene": 8.13e-08, - "perfused": 8.13e-08, - "perjure": 8.13e-08, - "permissiveness": 8.13e-08, - "pernell": 8.13e-08, - "persuader": 8.13e-08, - "peshwa": 8.13e-08, - "peterkin": 8.13e-08, - "petruchio": 8.13e-08, - "pgce": 8.13e-08, - "phillimore": 8.13e-08, - "phlebotomist": 8.13e-08, - "phosgene": 8.13e-08, - "phryne": 8.13e-08, - "physicalism": 8.13e-08, - "piaa": 8.13e-08, - "pictograms": 8.13e-08, - "piebald": 8.13e-08, - "piffle": 8.13e-08, - "piggery": 8.13e-08, - "pinecrest": 8.13e-08, - "pinters": 8.13e-08, - "pipkin": 8.13e-08, - "pirouettes": 8.13e-08, - "pista": 8.13e-08, - "pistil": 8.13e-08, - "pkd": 8.13e-08, - "planetoid": 8.13e-08, - "planked": 8.13e-08, - "pliskova": 8.13e-08, - "plutocratic": 8.13e-08, - "podiatrists": 8.13e-08, - "pogbas": 8.13e-08, - "pollards": 8.13e-08, - "polonaise": 8.13e-08, - "pontotoc": 8.13e-08, - "pook": 8.13e-08, - "poppycock": 8.13e-08, - "potatos": 8.13e-08, - "powerpoints": 8.13e-08, - "pranayama": 8.13e-08, - "prata": 8.13e-08, - "precooked": 8.13e-08, - "precum": 8.13e-08, - "preez": 8.13e-08, - "preis": 8.13e-08, - "premodern": 8.13e-08, - "premolar": 8.13e-08, - "pressly": 8.13e-08, - "priddy": 8.13e-08, - "primum": 8.13e-08, - "privateering": 8.13e-08, - "proficiencies": 8.13e-08, - "prokofievs": 8.13e-08, - "prope": 8.13e-08, - "pseudocode": 8.13e-08, - "psoas": 8.13e-08, - "psyllium": 8.13e-08, - "puddy": 8.13e-08, - "pukka": 8.13e-08, - "pumpers": 8.13e-08, - "pwned": 8.13e-08, - "pythian": 8.13e-08, - "qg": 8.13e-08, - "qso": 8.13e-08, - "quenneville": 8.13e-08, - "quiescence": 8.13e-08, - "radcliffes": 8.13e-08, - "radiantly": 8.13e-08, - "radiosurgery": 8.13e-08, - "rahal": 8.13e-08, - "railcard": 8.13e-08, - "raintree": 8.13e-08, - "rajaratnam": 8.13e-08, - "rambouillet": 8.13e-08, - "ranchero": 8.13e-08, - "rangy": 8.13e-08, - "ranulph": 8.13e-08, - "raos": 8.13e-08, - "rasha": 8.13e-08, - "rbr": 8.13e-08, - "realclearpolitics": 8.13e-08, - "reamer": 8.13e-08, - "rearming": 8.13e-08, - "rebelo": 8.13e-08, - "rechristened": 8.13e-08, - "recomended": 8.13e-08, - "recrystallization": 8.13e-08, - "reelect": 8.13e-08, - "reflow": 8.13e-08, - "regni": 8.13e-08, - "rehabs": 8.13e-08, - "reines": 8.13e-08, - "relevent": 8.13e-08, - "relinquishment": 8.13e-08, - "rephrasing": 8.13e-08, - "resister": 8.13e-08, - "ressources": 8.13e-08, - "reta": 8.13e-08, - "retiro": 8.13e-08, - "retrenched": 8.13e-08, - "revolutionist": 8.13e-08, - "rexall": 8.13e-08, - "rexha": 8.13e-08, - "rhetorician": 8.13e-08, - "rhinoceroses": 8.13e-08, - "rhomboid": 8.13e-08, - "rigoberto": 8.13e-08, - "risings": 8.13e-08, - "ritsuko": 8.13e-08, - "riverstone": 8.13e-08, - "rizzos": 8.13e-08, - "roadless": 8.13e-08, - "roccos": 8.13e-08, - "romped": 8.13e-08, - "ronchi": 8.13e-08, - "rondeau": 8.13e-08, - "ropa": 8.13e-08, - "rosalee": 8.13e-08, - "rosati": 8.13e-08, - "rosenbergs": 6.31e-08, - "rotherhithe": 8.13e-08, - "rott": 8.13e-08, - "roughage": 8.13e-08, - "rtgs": 8.13e-08, - "ruhl": 8.13e-08, - "ruka": 8.13e-08, - "rumanian": 8.13e-08, - "rwb": 8.13e-08, - "ryden": 8.13e-08, - "saath": 8.13e-08, - "sabatino": 8.13e-08, - "saeng": 8.13e-08, - "safire": 8.13e-08, - "saia": 8.13e-08, - "salivation": 8.13e-08, - "salm": 8.13e-08, - "saluda": 8.13e-08, - "samcro": 8.13e-08, - "samra": 8.13e-08, - "sandgate": 8.13e-08, - "sandpoint": 8.13e-08, - "sandwiching": 8.13e-08, - "sapo": 8.13e-08, - "sarc": 8.13e-08, - "sargsyan": 8.13e-08, - "sarl": 8.13e-08, - "sastri": 8.13e-08, - "saucepans": 8.13e-08, - "sauropod": 8.13e-08, - "sberbank": 8.13e-08, - "sbg": 8.13e-08, - "sbw": 8.13e-08, - "scabrous": 8.13e-08, - "scal": 8.13e-08, - "scaramucci": 8.13e-08, - "scatological": 8.13e-08, - "schwarzman": 8.13e-08, - "scowcroft": 8.13e-08, - "scriptwriting": 8.13e-08, - "scyther": 8.13e-08, - "sekolah": 8.13e-08, - "selfsame": 8.13e-08, - "sephardi": 8.13e-08, - "serapis": 8.13e-08, - "shaan": 8.13e-08, - "shamil": 8.13e-08, - "sharpsburg": 8.13e-08, - "sharyn": 8.13e-08, - "sheaffer": 8.13e-08, - "sheetal": 8.13e-08, - "shermer": 8.13e-08, - "shibe": 8.13e-08, - "showmen": 8.13e-08, - "shrouding": 8.13e-08, - "shulgin": 8.13e-08, - "sibert": 8.13e-08, - "sibiu": 8.13e-08, - "siddiqi": 8.13e-08, - "sideswiped": 8.13e-08, - "sile": 8.13e-08, - "siltation": 8.13e-08, - "simca": 8.13e-08, - "simplicius": 8.13e-08, - "simsbury": 8.13e-08, - "sirah": 8.13e-08, - "sixt": 8.13e-08, - "slane": 8.13e-08, - "sll": 8.13e-08, - "slothful": 8.13e-08, - "slott": 8.13e-08, - "sloughs": 8.13e-08, - "smashers": 8.13e-08, - "soekarno": 8.13e-08, - "solan": 8.13e-08, - "solicitude": 8.13e-08, - "soliloquies": 8.13e-08, - "sorento": 8.13e-08, - "souci": 8.13e-08, - "sourav": 8.13e-08, - "soxs": 8.13e-08, - "spearfishing": 8.13e-08, - "speedwell": 8.13e-08, - "spero": 8.13e-08, - "spikers": 8.13e-08, - "spurning": 8.13e-08, - "staden": 8.13e-08, - "starlit": 8.13e-08, - "stearic": 8.13e-08, - "steger": 8.13e-08, - "sterilise": 8.13e-08, - "stipules": 8.13e-08, - "stirlings": 8.13e-08, - "streetfighter": 8.13e-08, - "streisands": 8.13e-08, - "strongarm": 8.13e-08, - "stultifying": 8.13e-08, - "subducted": 8.13e-08, - "subheading": 8.13e-08, - "sucht": 8.13e-08, - "suen": 8.13e-08, - "suerte": 8.13e-08, - "summat": 8.13e-08, - "supercontinent": 8.13e-08, - "superspeed": 8.13e-08, - "surreys": 8.13e-08, - "sverdlovsk": 8.13e-08, - "swaminathan": 8.13e-08, - "synthesiser": 8.13e-08, - "systema": 8.13e-08, - "taeyang": 8.13e-08, - "tahan": 8.13e-08, - "taipan": 8.13e-08, - "taira": 8.13e-08, - "talisker": 8.13e-08, - "tambourines": 8.13e-08, - "tanqueray": 8.13e-08, - "tartuffe": 8.13e-08, - "tashas": 8.13e-08, - "tasmanians": 8.13e-08, - "tatchell": 8.13e-08, - "tattersalls": 8.13e-08, - "tecate": 8.13e-08, - "tecno": 8.13e-08, - "teles": 8.13e-08, - "tempel": 8.13e-08, - "tempi": 8.13e-08, - "tenderfoot": 8.13e-08, - "teneriffe": 8.13e-08, - "tennison": 8.13e-08, - "tenno": 8.13e-08, - "texter": 8.13e-08, - "tfg": 8.13e-08, - "thali": 8.13e-08, - "thermionic": 8.13e-08, - "thir": 8.13e-08, - "thirlwall": 8.13e-08, - "thorogood": 8.13e-08, - "thracians": 8.13e-08, - "thrifted": 8.13e-08, - "thrissur": 8.13e-08, - "throbbed": 8.13e-08, - "throug": 8.13e-08, - "tiler": 8.13e-08, - "timbs": 8.13e-08, - "tinubu": 8.13e-08, - "tmx": 8.13e-08, - "tnx": 8.13e-08, - "toffs": 8.13e-08, - "tomer": 8.13e-08, - "tommies": 8.13e-08, - "torchbearer": 8.13e-08, - "torfaen": 8.13e-08, - "tradeshow": 8.13e-08, - "transferees": 8.13e-08, - "trimethoprim": 8.13e-08, - "tripple": 8.13e-08, - "tromso": 8.13e-08, - "tsien": 8.13e-08, - "tuas": 8.13e-08, - "turandot": 8.13e-08, - "turi": 8.13e-08, - "tusker": 8.13e-08, - "tutting": 8.13e-08, - "tweener": 8.13e-08, - "twinkles": 8.13e-08, - "twyford": 8.13e-08, - "tyc": 8.13e-08, - "tytler": 8.13e-08, - "ubm": 8.13e-08, - "uce": 8.13e-08, - "unami": 8.13e-08, - "unattributed": 8.13e-08, - "uncaged": 8.13e-08, - "uncas": 8.13e-08, - "uncleanness": 8.13e-08, - "undersold": 8.13e-08, - "undesignated": 8.13e-08, - "unnerve": 8.13e-08, - "unpolluted": 8.13e-08, - "unsocial": 8.13e-08, - "untarnished": 8.13e-08, - "uplay": 8.13e-08, - "upmanship": 8.13e-08, - "uruguayans": 8.13e-08, - "valgus": 8.13e-08, - "vant": 8.13e-08, - "vanillin": 8.13e-08, - "vectored": 8.13e-08, - "vege": 8.13e-08, - "veldt": 8.13e-08, - "vendee": 8.13e-08, - "vente": 8.13e-08, - "ventimiglia": 8.13e-08, - "verga": 8.13e-08, - "vergennes": 8.13e-08, - "verrill": 8.13e-08, - "vesalius": 8.13e-08, - "vestas": 1.66e-08, - "viana": 8.13e-08, - "vikander": 8.13e-08, - "vishwanath": 8.13e-08, - "visioning": 8.13e-08, - "vlasic": 8.13e-08, - "vogels": 8.13e-08, - "vojvodina": 8.13e-08, - "volcanology": 8.13e-08, - "volstead": 8.13e-08, - "vygotsky": 8.13e-08, - "vyvanse": 8.13e-08, - "wacc": 8.13e-08, - "wanstead": 8.13e-08, - "wardour": 8.13e-08, - "warhawks": 8.13e-08, - "warshaw": 8.13e-08, - "warwicks": 8.13e-08, - "wassily": 8.13e-08, - "waterproofs": 8.13e-08, - "wearying": 8.13e-08, - "weatherill": 8.13e-08, - "weatherization": 8.13e-08, - "wedgies": 8.13e-08, - "weidmann": 8.13e-08, - "wels": 8.13e-08, - "westerlies": 8.13e-08, - "westmont": 8.13e-08, - "whata": 8.13e-08, - "whith": 8.13e-08, - "wicomico": 8.13e-08, - "windproof": 8.13e-08, - "witsel": 8.13e-08, - "womble": 8.13e-08, - "woodshop": 8.13e-08, - "woodyard": 8.13e-08, - "wordly": 8.13e-08, - "workpieces": 8.13e-08, - "worldstar": 8.13e-08, - "wst": 8.13e-08, - "wyverns": 8.13e-08, - "xenophobe": 8.13e-08, - "xw": 8.13e-08, - "yacoub": 8.13e-08, - "yameen": 8.13e-08, - "yangzhou": 8.13e-08, - "yelawolf": 8.13e-08, - "yoenis": 8.13e-08, - "yokel": 8.13e-08, - "yol": 8.13e-08, - "youzhny": 8.13e-08, - "zadeh": 8.13e-08, - "zamir": 8.13e-08, - "zatoichi": 8.13e-08, - "zazu": 8.13e-08, - "zeds": 5.75e-08, - "zentrum": 8.13e-08, - "zidanes": 8.13e-08, - "ziyang": 8.13e-08, - "zookeepers": 8.13e-08, - "zosia": 8.13e-08, - "zpass": 8.13e-08, - "zw": 8.13e-08, - "aae": 7.94e-08, - "aaps": 7.94e-08, - "abaco": 7.94e-08, - "abin": 7.94e-08, - "accreted": 7.94e-08, - "achmed": 7.94e-08, - "acos": 7.94e-08, - "acquiescing": 7.94e-08, - "adcc": 7.94e-08, - "adenoids": 7.94e-08, - "adham": 7.94e-08, - "admi": 7.94e-08, - "aerate": 7.94e-08, - "aetius": 7.94e-08, - "affectations": 7.94e-08, - "africaine": 7.94e-08, - "afte": 7.94e-08, - "aie": 7.94e-08, - "airbnbs": 7.94e-08, - "airings": 7.94e-08, - "aitkin": 7.94e-08, - "aitor": 7.94e-08, - "aje": 7.94e-08, - "aken": 7.94e-08, - "akure": 7.94e-08, - "alber": 7.94e-08, - "algy": 7.94e-08, - "alltime": 7.94e-08, - "aloes": 7.94e-08, - "alternet": 7.94e-08, - "amblyopia": 7.94e-08, - "ambos": 7.94e-08, - "amerindians": 7.94e-08, - "analects": 7.94e-08, - "anansi": 7.94e-08, - "anaphora": 7.94e-08, - "andolan": 7.94e-08, - "angas": 7.94e-08, - "animistic": 7.94e-08, - "anjo": 7.94e-08, - "annam": 7.94e-08, - "antagonizes": 7.94e-08, - "antarcticas": 7.94e-08, - "anticonvulsants": 7.94e-08, - "antigovernment": 7.94e-08, - "antigravity": 7.94e-08, - "antipoverty": 7.94e-08, - "antonina": 7.94e-08, - "aof": 7.94e-08, - "aphrodisiacs": 7.94e-08, - "apoel": 7.94e-08, - "apparantly": 7.94e-08, - "apprise": 7.94e-08, - "arbitrated": 7.94e-08, - "aroha": 7.94e-08, - "arrester": 7.94e-08, - "arsenault": 7.94e-08, - "asas": 7.59e-08, - "asaba": 7.94e-08, - "asuras": 7.94e-08, - "atchafalaya": 7.94e-08, - "atlanteans": 7.94e-08, - "atlantica": 7.94e-08, - "atsu": 7.94e-08, - "attachable": 7.94e-08, - "aua": 7.94e-08, - "audiencia": 7.94e-08, - "audioslave": 7.94e-08, - "augury": 7.94e-08, - "autocross": 7.94e-08, - "awesomest": 7.94e-08, - "azeris": 7.94e-08, - "backround": 7.94e-08, - "baffert": 7.94e-08, - "bagehot": 7.94e-08, - "baghdads": 7.94e-08, - "bagus": 7.94e-08, - "baiji": 7.94e-08, - "bajillion": 7.94e-08, - "bakula": 7.94e-08, - "ballycastle": 7.94e-08, - "baluchi": 7.94e-08, - "banisters": 7.94e-08, - "banka": 7.94e-08, - "banneker": 7.94e-08, - "barao": 7.94e-08, - "barberini": 7.94e-08, - "bardolph": 7.94e-08, - "bardwell": 7.94e-08, - "barkly": 7.94e-08, - "barmen": 7.94e-08, - "basit": 7.94e-08, - "batholith": 7.94e-08, - "beanbags": 7.94e-08, - "beav": 7.94e-08, - "bech": 7.94e-08, - "bedclothes": 7.94e-08, - "beem": 7.94e-08, - "belgaum": 7.94e-08, - "belgorod": 7.94e-08, - "bellefonte": 7.94e-08, - "belligerently": 7.94e-08, - "bellville": 7.94e-08, - "beograd": 7.94e-08, - "beom": 7.94e-08, - "berggren": 7.94e-08, - "bersih": 7.94e-08, - "bestia": 7.94e-08, - "bethell": 7.94e-08, - "beuys": 7.94e-08, - "bhar": 7.94e-08, - "bhb": 7.94e-08, - "bigamist": 7.94e-08, - "billon": 7.94e-08, - "bingbing": 7.94e-08, - "biocontrol": 7.94e-08, - "birefringence": 7.94e-08, - "birthers": 7.94e-08, - "blackbeards": 7.94e-08, - "blacklock": 7.94e-08, - "blackwoods": 7.94e-08, - "blanding": 7.94e-08, - "blaxploitation": 7.94e-08, - "bloodsport": 7.94e-08, - "boac": 7.94e-08, - "bodnar": 7.94e-08, - "boehners": 7.94e-08, - "boggled": 7.94e-08, - "boii": 7.94e-08, - "bonaventura": 7.94e-08, - "boschs": 7.94e-08, - "bottomline": 7.94e-08, - "bovada": 7.94e-08, - "bowhead": 7.94e-08, - "bradshaws": 7.94e-08, - "braley": 7.94e-08, - "brande": 7.94e-08, - "branwell": 7.94e-08, - "brattle": 7.94e-08, - "bravia": 7.94e-08, - "brij": 7.94e-08, - "brinley": 7.94e-08, - "bromides": 7.94e-08, - "bruhn": 7.94e-08, - "brunelleschi": 7.94e-08, - "brushwood": 7.94e-08, - "bsh": 7.94e-08, - "buhler": 7.94e-08, - "bullough": 7.94e-08, - "bullpens": 7.94e-08, - "bulstrode": 7.94e-08, - "burnleys": 7.94e-08, - "buschs": 7.94e-08, - "busybodies": 7.94e-08, - "buttonholes": 7.94e-08, - "caio": 7.94e-08, - "cajal": 7.94e-08, - "calamus": 7.94e-08, - "callies": 7.94e-08, - "cameroonians": 7.94e-08, - "camillas": 7.94e-08, - "campestris": 7.94e-08, - "campout": 7.94e-08, - "camshafts": 7.94e-08, - "canas": 7.94e-08, - "cannavaro": 7.94e-08, - "capell": 7.94e-08, - "cardale": 7.94e-08, - "carnevale": 7.94e-08, - "carneys": 7.94e-08, - "carnivora": 7.94e-08, - "carothers": 7.94e-08, - "cartmans": 7.94e-08, - "carus": 7.94e-08, - "cassoulet": 7.94e-08, - "catdog": 7.94e-08, - "catrina": 7.94e-08, - "cawood": 7.94e-08, - "caymans": 7.94e-08, - "celcius": 7.94e-08, - "cemeterys": 7.94e-08, - "centerfield": 7.94e-08, - "ceqa": 7.94e-08, - "cernan": 7.94e-08, - "cernovich": 7.94e-08, - "chadwicks": 7.94e-08, - "chaplet": 7.94e-08, - "charnock": 7.94e-08, - "chaska": 7.94e-08, - "chatwin": 7.94e-08, - "chaumont": 7.94e-08, - "chelate": 7.94e-08, - "chesnut": 7.94e-08, - "chlorite": 7.94e-08, - "chooser": 7.94e-08, - "chopras": 7.94e-08, - "chouinard": 7.94e-08, - "chronometers": 7.94e-08, - "chut": 7.94e-08, - "cjs": 7.94e-08, - "clastic": 7.94e-08, - "claudian": 7.94e-08, - "clijsters": 7.94e-08, - "clonmel": 7.94e-08, - "clute": 7.94e-08, - "clutha": 7.94e-08, - "cnes": 7.94e-08, - "cockatiel": 7.94e-08, - "coffeyville": 7.94e-08, - "colenso": 7.94e-08, - "collarbones": 7.94e-08, - "colonoscopies": 7.94e-08, - "columned": 7.94e-08, - "comal": 7.94e-08, - "comique": 7.94e-08, - "commerces": 7.94e-08, - "complexation": 7.94e-08, - "complexed": 7.94e-08, - "composited": 7.94e-08, - "concensus": 7.94e-08, - "concreting": 7.94e-08, - "conformable": 7.94e-08, - "connaughton": 7.94e-08, - "consonantal": 7.94e-08, - "constanza": 7.94e-08, - "controled": 7.94e-08, - "convulse": 7.94e-08, - "conwell": 7.94e-08, - "copan": 7.94e-08, - "copepod": 7.94e-08, - "coplanar": 7.94e-08, - "copywriters": 7.94e-08, - "corbins": 7.94e-08, - "corda": 7.94e-08, - "cordier": 7.94e-08, - "cordray": 7.94e-08, - "corporately": 7.94e-08, - "corrales": 7.94e-08, - "cortona": 7.94e-08, - "corundum": 7.94e-08, - "cosmically": 7.94e-08, - "cosmologist": 7.94e-08, - "costings": 7.94e-08, - "couto": 7.94e-08, - "coveney": 7.94e-08, - "crac": 7.94e-08, - "creamier": 7.94e-08, - "crewing": 7.94e-08, - "cribbs": 7.94e-08, - "crossways": 7.94e-08, - "croupier": 7.94e-08, - "cuccinelli": 7.94e-08, - "cuernavaca": 7.94e-08, - "curacy": 7.94e-08, - "curiam": 7.94e-08, - "custers": 7.94e-08, - "cuv": 7.94e-08, - "cuvee": 7.94e-08, - "cyberwar": 7.94e-08, - "cyrils": 7.94e-08, - "dach": 7.94e-08, - "dags": 7.94e-08, - "darbys": 7.94e-08, - "dauber": 7.94e-08, - "daylighting": 7.94e-08, - "ddo": 7.94e-08, - "deaden": 7.94e-08, - "debrecen": 7.94e-08, - "decarboxylation": 7.94e-08, - "decreeing": 7.94e-08, - "deejays": 7.94e-08, - "deek": 7.94e-08, - "deira": 7.94e-08, - "dejong": 7.94e-08, - "delacorte": 7.94e-08, - "delimiter": 7.94e-08, - "demetriou": 7.94e-08, - "denaturing": 7.94e-08, - "dengan": 7.94e-08, - "denitrification": 7.94e-08, - "denotation": 7.94e-08, - "densification": 7.94e-08, - "derechos": 7.94e-08, - "derides": 7.94e-08, - "deselected": 7.94e-08, - "dessa": 7.94e-08, - "deta": 7.94e-08, - "detainer": 7.94e-08, - "dickins": 7.94e-08, - "dickless": 7.94e-08, - "dipietro": 7.94e-08, - "dipolar": 7.94e-08, - "disaggregation": 7.94e-08, - "disavows": 7.94e-08, - "disemboweled": 7.94e-08, - "disentangling": 7.94e-08, - "disowns": 7.94e-08, - "dissapointing": 7.94e-08, - "divisibility": 7.94e-08, - "dnepropetrovsk": 7.94e-08, - "docuseries": 7.94e-08, - "doleful": 7.94e-08, - "dolley": 7.94e-08, - "dorsetshire": 7.94e-08, - "dovizioso": 7.94e-08, - "doz": 7.94e-08, - "dramamine": 7.94e-08, - "dreck": 7.94e-08, - "dualist": 7.94e-08, - "dugard": 7.94e-08, - "dunc": 7.94e-08, - "duncanville": 7.94e-08, - "dustpan": 7.94e-08, - "dvp": 7.94e-08, - "dyslexics": 7.94e-08, - "earthed": 7.94e-08, - "eberts": 7.94e-08, - "edam": 7.94e-08, - "eftpos": 7.94e-08, - "egham": 7.94e-08, - "ehi": 7.94e-08, - "eichhorn": 7.94e-08, - "eith": 7.94e-08, - "ejb": 7.94e-08, - "ekaterinburg": 7.94e-08, - "eldora": 7.94e-08, - "electropop": 7.94e-08, - "elizondo": 7.94e-08, - "ellingham": 7.94e-08, - "elliston": 7.94e-08, - "empanada": 7.94e-08, - "enantiomers": 7.94e-08, - "engagingly": 7.94e-08, - "engen": 7.94e-08, - "englisch": 7.94e-08, - "enim": 7.94e-08, - "envelopment": 7.94e-08, - "enviously": 7.94e-08, - "epb": 7.94e-08, - "episiotomy": 7.94e-08, - "equalizers": 7.94e-08, - "erasable": 7.94e-08, - "espoo": 7.94e-08, - "essaouira": 7.94e-08, - "essenes": 7.94e-08, - "eure": 7.94e-08, - "eurobarometer": 7.94e-08, - "eustachian": 7.94e-08, - "ewtn": 7.94e-08, - "ewwww": 7.94e-08, - "exasperate": 7.94e-08, - "exerciser": 7.94e-08, - "exocrine": 7.94e-08, - "expanders": 7.94e-08, - "expectedly": 7.94e-08, - "expiratory": 7.94e-08, - "externalized": 7.94e-08, - "extruding": 7.94e-08, - "fabiana": 7.94e-08, - "fabiano": 7.94e-08, - "faizal": 7.94e-08, - "falloff": 7.94e-08, - "fasano": 7.94e-08, - "fass": 7.94e-08, - "fastbreak": 7.94e-08, - "fatou": 7.94e-08, - "faul": 7.94e-08, - "fbg": 7.94e-08, - "fcu": 7.94e-08, - "feedwater": 7.94e-08, - "felsic": 7.94e-08, - "fenland": 7.94e-08, - "ferrin": 7.94e-08, - "ferrum": 7.94e-08, - "fets": 7.94e-08, - "fibbing": 7.94e-08, - "fieldings": 7.94e-08, - "fifita": 7.94e-08, - "figura": 7.94e-08, - "filets": 7.94e-08, - "finessing": 7.94e-08, - "fior": 7.94e-08, - "fishguard": 7.94e-08, - "fixative": 7.94e-08, - "flashover": 7.94e-08, - "flavian": 7.94e-08, - "fleer": 7.94e-08, - "flinches": 7.94e-08, - "floras": 6.46e-08, - "flowerbed": 7.94e-08, - "flutie": 7.94e-08, - "fnm": 7.94e-08, - "forsworn": 7.94e-08, - "foxcroft": 7.94e-08, - "francke": 7.94e-08, - "fredette": 7.94e-08, - "freel": 7.94e-08, - "fremen": 7.94e-08, - "freyberg": 7.94e-08, - "friendster": 7.94e-08, - "frizzle": 7.94e-08, - "frontwoman": 7.94e-08, - "fuerte": 7.94e-08, - "fulk": 7.94e-08, - "fundament": 7.94e-08, - "funday": 7.94e-08, - "fuselages": 7.94e-08, - "gaeilge": 7.94e-08, - "gaitskell": 7.94e-08, - "galax": 7.94e-08, - "gamblin": 7.94e-08, - "gamera": 7.94e-08, - "gank": 7.94e-08, - "garlanded": 7.94e-08, - "garni": 7.94e-08, - "garon": 7.94e-08, - "geis": 7.94e-08, - "genaro": 7.94e-08, - "gendry": 7.94e-08, - "geog": 7.94e-08, - "gerome": 7.94e-08, - "gessner": 7.94e-08, - "ghomeshi": 7.94e-08, - "ghosn": 7.94e-08, - "giclee": 7.94e-08, - "giff": 7.94e-08, - "gii": 7.94e-08, - "gilet": 7.94e-08, - "girlz": 7.94e-08, - "glasss": 7.94e-08, - "glasson": 7.94e-08, - "glenny": 7.94e-08, - "gluttons": 7.94e-08, - "goobers": 7.94e-08, - "granda": 7.94e-08, - "grd": 7.94e-08, - "greenside": 7.94e-08, - "greylock": 7.94e-08, - "gringotts": 7.94e-08, - "groundlings": 7.94e-08, - "groundnuts": 7.94e-08, - "grubber": 7.94e-08, - "grzegorz": 7.94e-08, - "guiltily": 7.94e-08, - "gujarats": 7.94e-08, - "gulick": 7.94e-08, - "gunnell": 7.94e-08, - "hackenberg": 7.94e-08, - "hafnium": 7.94e-08, - "hahahahahahahaha": 7.94e-08, - "hais": 7.94e-08, - "hallet": 7.94e-08, - "haltingly": 7.94e-08, - "handsfree": 7.94e-08, - "handspring": 7.94e-08, - "hardbound": 7.94e-08, - "harnack": 7.94e-08, - "hartline": 7.94e-08, - "hasakah": 7.94e-08, - "hasbrouck": 7.94e-08, - "hasek": 7.94e-08, - "hashimi": 7.94e-08, - "headington": 7.94e-08, - "hegels": 7.94e-08, - "heiresses": 7.94e-08, - "hellscape": 7.94e-08, - "helming": 7.94e-08, - "heloc": 7.94e-08, - "helston": 7.94e-08, - "hemagglutinin": 7.94e-08, - "heman": 7.94e-08, - "hemiplegia": 7.94e-08, - "hereward": 7.94e-08, - "hermaphroditic": 7.94e-08, - "heschel": 7.94e-08, - "hewed": 7.94e-08, - "hexavalent": 7.94e-08, - "heynckes": 7.94e-08, - "hiei": 7.94e-08, - "hija": 7.94e-08, - "hindwing": 7.94e-08, - "hinrichs": 7.94e-08, - "hirer": 7.94e-08, - "hirshhorn": 7.94e-08, - "hoberman": 7.94e-08, - "hobgoblins": 7.94e-08, - "hochberg": 7.94e-08, - "hollyhock": 7.94e-08, - "holmwood": 7.94e-08, - "homoeopathy": 7.94e-08, - "honeyman": 7.94e-08, - "hormonally": 7.94e-08, - "hornung": 7.94e-08, - "hoskin": 7.94e-08, - "hostgator": 7.94e-08, - "hova": 7.94e-08, - "hristo": 7.94e-08, - "hsinchu": 7.94e-08, - "humoring": 7.94e-08, - "hungering": 7.94e-08, - "hunnicutt": 7.94e-08, - "huq": 7.94e-08, - "hydras": 7.94e-08, - "hydrologist": 7.94e-08, - "hydrometer": 7.94e-08, - "hyksos": 7.94e-08, - "hypergeometric": 7.94e-08, - "ibsens": 7.94e-08, - "iccs": 7.94e-08, - "idubbbz": 7.94e-08, - "ify": 7.94e-08, - "ijebu": 7.94e-08, - "ilha": 7.94e-08, - "ilmenite": 7.94e-08, - "ilu": 7.94e-08, - "impassible": 7.94e-08, - "imperturbable": 7.94e-08, - "implementers": 7.94e-08, - "importante": 7.94e-08, - "impregnates": 7.94e-08, - "improvisers": 7.94e-08, - "imprudence": 7.94e-08, - "inclining": 7.94e-08, - "indicus": 7.94e-08, - "indomethacin": 7.94e-08, - "ineptness": 7.94e-08, - "infp": 7.94e-08, - "inglot": 7.94e-08, - "ingold": 7.94e-08, - "inkscape": 7.94e-08, - "insuperable": 7.94e-08, - "insureds": 7.94e-08, - "intercalation": 7.94e-08, - "interleague": 7.94e-08, - "interventionists": 7.94e-08, - "interweave": 7.94e-08, - "intraspecific": 7.94e-08, - "inure": 7.94e-08, - "invesco": 7.94e-08, - "ionising": 7.94e-08, - "irom": 7.94e-08, - "irri": 7.94e-08, - "ishita": 7.94e-08, - "ismailia": 7.94e-08, - "isocyanate": 7.94e-08, - "isom": 7.94e-08, - "isostatic": 7.94e-08, - "ivers": 7.94e-08, - "jamuna": 7.94e-08, - "jatin": 7.94e-08, - "jdbc": 7.94e-08, - "jeannes": 7.94e-08, - "jehangir": 7.94e-08, - "jemhadar": 7.94e-08, - "jeonbuk": 7.94e-08, - "jeph": 7.94e-08, - "jette": 7.94e-08, - "jhb": 7.94e-08, - "jma": 7.94e-08, - "joannes": 6.92e-08, - "joba": 7.94e-08, - "jodrell": 7.94e-08, - "jollibee": 7.94e-08, - "juss": 7.94e-08, - "jussie": 7.94e-08, - "justi": 7.94e-08, - "justise": 7.94e-08, - "kaali": 7.94e-08, - "kalat": 7.94e-08, - "kaldor": 7.94e-08, - "kangas": 7.94e-08, - "karcher": 7.94e-08, - "karger": 7.94e-08, - "kasama": 7.94e-08, - "kazuko": 7.94e-08, - "kear": 7.94e-08, - "kebbi": 7.94e-08, - "keegans": 7.94e-08, - "keloid": 7.94e-08, - "kera": 7.94e-08, - "keralas": 7.94e-08, - "khanh": 7.94e-08, - "kinghorn": 7.94e-08, - "kirton": 7.94e-08, - "kodo": 7.94e-08, - "koine": 7.94e-08, - "konnichiwa": 7.94e-08, - "krrish": 7.94e-08, - "krugers": 7.94e-08, - "kuper": 7.94e-08, - "labatt": 7.94e-08, - "lakenheath": 7.94e-08, - "lall": 7.94e-08, - "languorous": 7.94e-08, - "lapds": 7.94e-08, - "larges": 7.94e-08, - "latimore": 7.94e-08, - "launderer": 7.94e-08, - "lauzon": 7.94e-08, - "lavazza": 7.94e-08, - "leeming": 7.94e-08, - "leopardstown": 7.94e-08, - "leprous": 7.94e-08, - "lerma": 7.94e-08, - "leth": 7.94e-08, - "leveler": 7.94e-08, - "lexicographers": 7.94e-08, - "lexx": 7.94e-08, - "lifshitz": 7.94e-08, - "lillies": 7.94e-08, - "limiteds": 7.94e-08, - "lippo": 7.94e-08, - "littell": 7.94e-08, - "livs": 7.94e-08, - "liveblog": 7.94e-08, - "livio": 7.94e-08, - "loker": 7.94e-08, - "lokomotiv": 7.94e-08, - "longlisted": 7.94e-08, - "lothians": 7.94e-08, - "loto": 7.94e-08, - "lovechild": 7.94e-08, - "lucena": 7.94e-08, - "luks": 7.94e-08, - "luminaire": 7.94e-08, - "lupi": 7.94e-08, - "luteinizing": 7.94e-08, - "maaan": 7.94e-08, - "maat": 7.94e-08, - "mabs": 7.94e-08, - "macchio": 7.94e-08, - "maciver": 7.94e-08, - "macrocosm": 7.94e-08, - "madelaine": 7.94e-08, - "magen": 7.94e-08, - "magpul": 7.94e-08, - "mahmut": 7.94e-08, - "mandalore": 7.94e-08, - "manikin": 7.94e-08, - "manitobas": 7.94e-08, - "manowar": 7.94e-08, - "mansel": 7.94e-08, - "manzanillo": 7.94e-08, - "margarete": 7.94e-08, - "marketshare": 7.94e-08, - "maroubra": 7.94e-08, - "mashallah": 7.94e-08, - "mastiffs": 7.94e-08, - "mastoid": 7.94e-08, - "mastro": 7.94e-08, - "matagorda": 7.94e-08, - "matronly": 7.94e-08, - "matzah": 7.94e-08, - "maurices": 7.94e-08, - "mayaguez": 7.94e-08, - "mayock": 7.94e-08, - "mcgarrigle": 7.94e-08, - "mcgillivray": 7.94e-08, - "mcguires": 7.94e-08, - "mcleods": 7.94e-08, - "mcmath": 7.94e-08, - "meghans": 7.94e-08, - "melita": 7.94e-08, - "melvins": 5.13e-08, - "memoires": 7.94e-08, - "metahuman": 7.94e-08, - "metalheads": 7.94e-08, - "methylmercury": 7.94e-08, - "mgd": 7.94e-08, - "miff": 7.94e-08, - "mikhailovich": 7.94e-08, - "mildmay": 7.94e-08, - "milka": 7.94e-08, - "mineralisation": 7.94e-08, - "minicomputers": 7.94e-08, - "minne": 7.94e-08, - "minorca": 7.94e-08, - "mirabelle": 7.94e-08, - "miscellanea": 7.94e-08, - "miseducation": 7.94e-08, - "mishka": 7.94e-08, - "misophonia": 7.94e-08, - "mistery": 7.94e-08, - "mitsuo": 7.94e-08, - "mkultra": 7.94e-08, - "mogens": 7.94e-08, - "moher": 7.94e-08, - "mohn": 7.94e-08, - "mollified": 7.94e-08, - "monolayers": 7.94e-08, - "monongalia": 7.94e-08, - "montell": 7.94e-08, - "morgoth": 7.94e-08, - "morphisms": 7.94e-08, - "moshing": 7.94e-08, - "mugu": 7.94e-08, - "muhsin": 7.94e-08, - "mujahedin": 7.94e-08, - "mummers": 7.94e-08, - "muri": 7.94e-08, - "musicares": 7.94e-08, - "mustachioed": 7.94e-08, - "mutua": 7.94e-08, - "mutv": 7.94e-08, - "mvt": 7.94e-08, - "mysterium": 7.94e-08, - "nabokovs": 7.94e-08, - "nadines": 7.94e-08, - "nais": 7.94e-08, - "nanofibers": 7.94e-08, - "nanotechnologies": 7.94e-08, - "narcosis": 7.94e-08, - "narvaez": 7.94e-08, - "naturalis": 7.94e-08, - "neosporin": 7.94e-08, - "nephrotic": 7.94e-08, - "neuropeptides": 7.94e-08, - "ngong": 7.94e-08, - "ngt": 7.94e-08, - "nhu": 7.94e-08, - "nichola": 7.94e-08, - "nickis": 7.94e-08, - "nightgowns": 7.94e-08, - "ninos": 5.25e-08, - "nipa": 7.94e-08, - "noles": 7.94e-08, - "nomina": 7.94e-08, - "nonjudgmental": 7.94e-08, - "norville": 7.94e-08, - "notecards": 7.94e-08, - "novocaine": 7.94e-08, - "nuclide": 7.94e-08, - "nuj": 7.94e-08, - "nux": 7.94e-08, - "nuzzles": 7.94e-08, - "nygma": 7.94e-08, - "nyj": 7.94e-08, - "oakey": 7.94e-08, - "oberg": 7.94e-08, - "obturator": 7.94e-08, - "odorant": 7.94e-08, - "offensiveness": 7.94e-08, - "ofgem": 7.94e-08, - "ofit": 7.94e-08, - "ohc": 7.94e-08, - "oireachtas": 7.94e-08, - "oney": 7.94e-08, - "onoda": 7.94e-08, - "ontologically": 7.94e-08, - "oohs": 7.94e-08, - "ooohh": 7.94e-08, - "opperman": 7.94e-08, - "orientale": 7.94e-08, - "ossuary": 7.94e-08, - "ostwald": 7.94e-08, - "ough": 7.94e-08, - "overweening": 7.94e-08, - "packable": 7.94e-08, - "paines": 7.94e-08, - "pallidus": 7.94e-08, - "pamlico": 7.94e-08, - "parel": 7.94e-08, - "paresh": 7.94e-08, - "passa": 7.94e-08, - "pastrana": 7.94e-08, - "pawnbrokers": 7.94e-08, - "pedagogies": 7.94e-08, - "peoplesoft": 7.94e-08, - "peopling": 7.94e-08, - "perea": 7.94e-08, - "perlis": 7.94e-08, - "peroxides": 7.94e-08, - "perturb": 7.94e-08, - "petersfield": 7.94e-08, - "petrifying": 7.94e-08, - "petrillo": 7.94e-08, - "pgh": 7.94e-08, - "pharmacologist": 7.94e-08, - "photolithography": 7.94e-08, - "phototherapy": 7.94e-08, - "physica": 7.94e-08, - "piercer": 7.94e-08, - "pih": 7.94e-08, - "pinscher": 7.94e-08, - "pipestone": 7.94e-08, - "pire": 7.94e-08, - "plaistow": 7.94e-08, - "platten": 7.94e-08, - "playtest": 7.94e-08, - "plinths": 7.94e-08, - "pohang": 7.94e-08, - "poitras": 7.94e-08, - "politicisation": 7.94e-08, - "pollens": 7.94e-08, - "polyesters": 7.94e-08, - "polyether": 7.94e-08, - "polyimide": 7.94e-08, - "polytheists": 7.94e-08, - "pompom": 7.94e-08, - "porphyrin": 7.94e-08, - "postbox": 7.94e-08, - "potgieter": 7.94e-08, - "pottering": 7.94e-08, - "poyet": 7.94e-08, - "prefacing": 7.94e-08, - "prevarication": 7.94e-08, - "prig": 7.94e-08, - "primroses": 7.94e-08, - "prioritises": 7.94e-08, - "proclus": 7.94e-08, - "prognoses": 7.94e-08, - "progr": 7.94e-08, - "proliant": 7.94e-08, - "prologues": 7.94e-08, - "proprioceptive": 7.94e-08, - "protectiveness": 7.94e-08, - "protuberance": 7.94e-08, - "provid": 7.94e-08, - "puedo": 7.94e-08, - "pulido": 7.94e-08, - "pullovers": 7.94e-08, - "pulped": 7.94e-08, - "pulping": 7.94e-08, - "purcells": 7.94e-08, - "purposing": 7.94e-08, - "putback": 7.94e-08, - "putti": 7.94e-08, - "pyrenean": 7.94e-08, - "qca": 7.94e-08, - "qhd": 7.94e-08, - "qualls": 7.94e-08, - "queensboro": 7.94e-08, - "quinone": 7.94e-08, - "quneitra": 7.94e-08, - "racecourses": 7.94e-08, - "rael": 7.94e-08, - "ralls": 7.94e-08, - "ramaswamy": 7.94e-08, - "ramya": 7.94e-08, - "ranaut": 7.94e-08, - "randomize": 7.94e-08, - "rashed": 7.94e-08, - "raum": 7.94e-08, - "ravitch": 7.94e-08, - "rawa": 7.94e-08, - "rawle": 7.94e-08, - "rax": 7.94e-08, - "razi": 7.94e-08, - "rdio": 7.94e-08, - "reachability": 7.94e-08, - "realisations": 7.94e-08, - "reallllly": 7.94e-08, - "recasts": 7.94e-08, - "relativist": 7.94e-08, - "relegates": 7.94e-08, - "remortgage": 7.94e-08, - "researchgate": 7.94e-08, - "responsiblity": 7.94e-08, - "revalued": 7.94e-08, - "revues": 7.94e-08, - "rewa": 7.94e-08, - "rhenium": 7.94e-08, - "rhetorics": 7.94e-08, - "riefenstahl": 7.94e-08, - "riess": 7.94e-08, - "righties": 7.94e-08, - "rins": 6.46e-08, - "risperdal": 7.94e-08, - "riverland": 7.94e-08, - "roadmaps": 7.94e-08, - "roberti": 7.94e-08, - "robitaille": 7.94e-08, - "robotech": 7.94e-08, - "rond": 7.94e-08, - "rosalinda": 7.94e-08, - "rosse": 7.94e-08, - "roundel": 7.94e-08, - "rozen": 7.94e-08, - "rtos": 7.94e-08, - "ruo": 7.94e-08, - "rutabaga": 7.94e-08, - "rymer": 7.94e-08, - "sabarimala": 7.94e-08, - "sabatier": 7.94e-08, - "sabir": 7.94e-08, - "sachsenhausen": 7.94e-08, - "saddleworth": 7.94e-08, - "saima": 7.94e-08, - "sajak": 7.94e-08, - "sakic": 7.94e-08, - "sakina": 7.94e-08, - "sakuras": 7.94e-08, - "sakuya": 7.94e-08, - "salamat": 7.94e-08, - "saltine": 7.94e-08, - "salus": 7.94e-08, - "samer": 7.94e-08, - "sammons": 7.94e-08, - "samwise": 7.94e-08, - "sandbars": 7.94e-08, - "sankaran": 7.94e-08, - "sansone": 7.94e-08, - "satoshis": 7.94e-08, - "savan": 7.94e-08, - "saverio": 7.94e-08, - "sbss": 7.94e-08, - "sby": 7.94e-08, - "scargill": 7.94e-08, - "schellenberg": 7.94e-08, - "schemata": 7.94e-08, - "schouler": 7.94e-08, - "screwup": 7.94e-08, - "seabee": 7.94e-08, - "secondo": 7.94e-08, - "seductions": 7.94e-08, - "selecta": 7.94e-08, - "seleucus": 7.94e-08, - "selke": 7.94e-08, - "selo": 7.94e-08, - "sentimentally": 7.94e-08, - "sequent": 7.94e-08, - "serotypes": 7.94e-08, - "sgu": 7.94e-08, - "shallowest": 7.94e-08, - "shatterproof": 7.94e-08, - "sherbert": 7.94e-08, - "shiina": 7.94e-08, - "shirdi": 7.94e-08, - "showbusiness": 7.94e-08, - "sibal": 7.94e-08, - "silted": 7.94e-08, - "silveira": 7.94e-08, - "silvertone": 7.94e-08, - "simplistically": 7.94e-08, - "sinfully": 7.94e-08, - "singleplayer": 7.94e-08, - "sinh": 7.94e-08, - "sist": 7.94e-08, - "skeeters": 7.94e-08, - "sketchers": 7.94e-08, - "skil": 7.94e-08, - "skillets": 7.94e-08, - "skywalkers": 7.94e-08, - "slughorn": 7.94e-08, - "smalltown": 7.94e-08, - "smeg": 7.94e-08, - "smfh": 7.94e-08, - "smoosh": 7.94e-08, - "snowbank": 7.94e-08, - "snowdrift": 7.94e-08, - "sofar": 7.94e-08, - "soka": 7.94e-08, - "soloed": 7.94e-08, - "solstices": 7.94e-08, - "sombreros": 7.94e-08, - "southie": 7.94e-08, - "spag": 7.94e-08, - "spamalot": 7.94e-08, - "spattering": 7.94e-08, - "spatulas": 7.94e-08, - "specht": 7.94e-08, - "spiracles": 7.94e-08, - "spk": 7.94e-08, - "splicer": 7.94e-08, - "sportsmanlike": 7.94e-08, - "spreadable": 7.94e-08, - "squawks": 7.94e-08, - "staat": 7.94e-08, - "stac": 7.94e-08, - "stager": 7.94e-08, - "stalinists": 7.94e-08, - "stanchion": 7.94e-08, - "stanchions": 7.94e-08, - "starboy": 7.94e-08, - "starfield": 7.94e-08, - "starfighters": 7.94e-08, - "starliner": 7.94e-08, - "steamroll": 7.94e-08, - "steelwork": 7.94e-08, - "steere": 7.94e-08, - "stitchers": 7.94e-08, - "stoute": 7.94e-08, - "streeps": 7.94e-08, - "streetview": 7.94e-08, - "subarus": 7.94e-08, - "subd": 7.94e-08, - "subdues": 7.94e-08, - "subsists": 7.94e-08, - "succinic": 7.94e-08, - "suche": 7.94e-08, - "sugaring": 7.94e-08, - "sundered": 7.94e-08, - "sundin": 7.94e-08, - "superannuated": 7.94e-08, - "superclass": 7.94e-08, - "susilo": 7.94e-08, - "susskind": 7.94e-08, - "suzannes": 7.94e-08, - "swanns": 7.94e-08, - "swansong": 7.94e-08, - "swissair": 7.94e-08, - "swizzle": 7.94e-08, - "sympatric": 7.94e-08, - "tabak": 7.94e-08, - "taconite": 7.94e-08, - "tailpiece": 7.94e-08, - "takanashi": 7.94e-08, - "talha": 7.94e-08, - "tallent": 7.94e-08, - "tamiami": 7.94e-08, - "tamiflu": 7.94e-08, - "tamm": 7.94e-08, - "taplin": 7.94e-08, - "tares": 7.94e-08, - "tauriel": 7.94e-08, - "tauro": 7.94e-08, - "taze": 7.94e-08, - "tdcs": 7.94e-08, - "tedd": 7.94e-08, - "teetered": 7.94e-08, - "tefillin": 7.94e-08, - "teilhard": 7.94e-08, - "tekno": 7.94e-08, - "teleology": 7.94e-08, - "tener": 7.94e-08, - "tgc": 7.94e-08, - "theropod": 7.94e-08, - "thimerosal": 7.94e-08, - "thorndyke": 7.94e-08, - "thorold": 7.94e-08, - "thralls": 7.94e-08, - "threadneedle": 7.94e-08, - "thunderer": 7.94e-08, - "tianhe": 7.94e-08, - "tidally": 7.94e-08, - "timeslots": 7.94e-08, - "titanate": 7.94e-08, - "titillate": 7.94e-08, - "titre": 7.94e-08, - "tmm": 7.94e-08, - "tncs": 7.94e-08, - "tnd": 7.94e-08, - "tomba": 7.94e-08, - "tomball": 7.94e-08, - "tonneau": 7.94e-08, - "toooo": 7.94e-08, - "toowong": 7.94e-08, - "topoisomerase": 7.94e-08, - "topsham": 7.94e-08, - "touareg": 7.94e-08, - "trabzon": 7.94e-08, - "trach": 7.94e-08, - "transcribes": 7.94e-08, - "transitivity": 7.94e-08, - "transpositions": 7.94e-08, - "trh": 7.94e-08, - "tristans": 7.94e-08, - "tritons": 5.5e-08, - "trivet": 7.94e-08, - "trocar": 7.94e-08, - "trochanter": 7.94e-08, - "trotskys": 7.94e-08, - "trumpy": 7.94e-08, - "tuks": 7.94e-08, - "tulo": 7.94e-08, - "uar": 7.94e-08, - "uberx": 7.94e-08, - "ugl": 7.94e-08, - "umb": 7.94e-08, - "umunna": 7.94e-08, - "umw": 7.94e-08, - "unaired": 7.94e-08, - "unawareness": 7.94e-08, - "unbowed": 7.94e-08, - "unbuckled": 7.94e-08, - "uncouple": 7.94e-08, - "underachievement": 7.94e-08, - "undersell": 7.94e-08, - "understudies": 7.94e-08, - "undeservedly": 7.94e-08, - "undresses": 7.94e-08, - "undrinkable": 7.94e-08, - "unendurable": 7.94e-08, - "unforseen": 7.94e-08, - "universitaires": 7.94e-08, - "unpleasing": 7.94e-08, - "unselfishness": 7.94e-08, - "upcycle": 7.94e-08, - "upscaling": 7.94e-08, - "urania": 7.94e-08, - "userbase": 7.94e-08, - "uttoxeter": 7.94e-08, - "vacillated": 7.94e-08, - "vajrayana": 7.94e-08, - "valmiki": 7.94e-08, - "valproate": 7.94e-08, - "vandalising": 7.94e-08, - "vanguardia": 7.94e-08, - "vanitas": 7.94e-08, - "variola": 7.94e-08, - "vasey": 7.94e-08, - "vasodilator": 7.94e-08, - "vato": 7.94e-08, - "venation": 7.94e-08, - "vence": 7.94e-08, - "venial": 7.94e-08, - "verbalized": 7.94e-08, - "verilog": 7.94e-08, - "viceroyalty": 7.94e-08, - "victualling": 7.94e-08, - "vihara": 7.94e-08, - "viognier": 7.94e-08, - "volante": 7.94e-08, - "volney": 7.94e-08, - "vortigern": 7.94e-08, - "vought": 7.94e-08, - "vrm": 7.94e-08, - "vybz": 7.94e-08, - "wach": 7.94e-08, - "wahabi": 7.94e-08, - "waites": 7.94e-08, - "wakened": 7.94e-08, - "walcotts": 7.94e-08, - "waldau": 7.94e-08, - "walkoff": 7.94e-08, - "wanless": 7.94e-08, - "wardroom": 7.94e-08, - "waterfield": 7.94e-08, - "waterproofed": 7.94e-08, - "waterwheel": 7.94e-08, - "wath": 7.94e-08, - "waxworks": 7.94e-08, - "wcb": 7.94e-08, - "webpack": 7.94e-08, - "weebs": 7.94e-08, - "weisse": 7.94e-08, - "wella": 7.94e-08, - "wem": 7.94e-08, - "wensley": 7.94e-08, - "wertz": 7.94e-08, - "westcoast": 7.94e-08, - "wheelset": 7.94e-08, - "whelk": 7.94e-08, - "whiskered": 7.94e-08, - "whitewood": 7.94e-08, - "whitlow": 7.94e-08, - "wiens": 7.94e-08, - "wifely": 7.94e-08, - "wiling": 7.94e-08, - "wimpey": 7.94e-08, - "wishin": 7.94e-08, - "wmi": 7.94e-08, - "wnc": 7.94e-08, - "woolfe": 7.94e-08, - "woooooo": 7.94e-08, - "wordings": 7.94e-08, - "worthier": 7.94e-08, - "wrangell": 7.94e-08, - "wso": 7.94e-08, - "wwfs": 7.94e-08, - "xfce": 7.94e-08, - "xiaomis": 7.94e-08, - "yachtsmen": 7.94e-08, - "yadkin": 7.94e-08, - "yakub": 7.94e-08, - "yamhill": 7.94e-08, - "yarmulke": 7.94e-08, - "yglesias": 7.94e-08, - "yixing": 7.94e-08, - "ynet": 7.94e-08, - "yogananda": 7.94e-08, - "youm": 7.94e-08, - "youngins": 7.94e-08, - "younglings": 7.94e-08, - "ypf": 7.94e-08, - "zagging": 7.94e-08, - "zambales": 7.94e-08, - "zamindars": 7.94e-08, - "zelman": 7.94e-08, - "zoll": 7.94e-08, - "aahhh": 7.76e-08, - "ablest": 7.76e-08, - "abominably": 7.76e-08, - "abseil": 7.76e-08, - "accentuation": 7.76e-08, - "accessorized": 7.76e-08, - "accruals": 7.76e-08, - "ackland": 7.76e-08, - "aconcagua": 7.76e-08, - "actio": 7.76e-08, - "acuteness": 7.76e-08, - "adiposity": 7.76e-08, - "adriaan": 7.76e-08, - "aeb": 7.76e-08, - "aerator": 7.76e-08, - "aerys": 7.76e-08, - "affraid": 7.76e-08, - "afv": 7.76e-08, - "agglutination": 7.76e-08, - "agitates": 7.76e-08, - "agression": 7.76e-08, - "aguiar": 7.76e-08, - "aherne": 7.76e-08, - "akal": 7.76e-08, - "alamosa": 7.76e-08, - "albertan": 7.76e-08, - "alders": 7.76e-08, - "aldred": 7.76e-08, - "aletta": 7.76e-08, - "alexie": 7.76e-08, - "alfredsson": 7.76e-08, - "allon": 7.76e-08, - "allopurinol": 7.76e-08, - "allt": 7.76e-08, - "altan": 7.76e-08, - "alterman": 7.76e-08, - "alterna": 7.76e-08, - "altro": 7.76e-08, - "amalekites": 7.76e-08, - "ambroise": 7.76e-08, - "ancienne": 7.76e-08, - "andreotti": 7.76e-08, - "animatedly": 7.76e-08, - "ank": 7.76e-08, - "ankita": 7.76e-08, - "antiplatelet": 7.76e-08, - "antipodean": 7.76e-08, - "antiquarians": 7.76e-08, - "anup": 7.76e-08, - "aquinos": 7.76e-08, - "archdiocesan": 7.76e-08, - "aretz": 7.76e-08, - "arghh": 7.76e-08, - "arizonans": 7.76e-08, - "arkell": 7.76e-08, - "arrant": 7.76e-08, - "arsons": 7.76e-08, - "artemisinin": 7.76e-08, - "artyom": 7.76e-08, - "ascospores": 7.76e-08, - "ashburnham": 7.76e-08, - "ashly": 7.76e-08, - "asprey": 7.76e-08, - "assessable": 7.76e-08, - "assistantship": 7.76e-08, - "assur": 7.76e-08, - "ates": 7.76e-08, - "atreyu": 7.76e-08, - "attu": 7.76e-08, - "atypically": 7.76e-08, - "aurelie": 7.76e-08, - "auriemma": 7.76e-08, - "ausmus": 7.76e-08, - "azariah": 7.76e-08, - "babying": 7.76e-08, - "backspin": 7.76e-08, - "baclofen": 7.76e-08, - "bacteremia": 7.76e-08, - "badia": 7.76e-08, - "baggs": 7.76e-08, - "bagshot": 7.76e-08, - "bahay": 7.76e-08, - "balalaika": 7.76e-08, - "baltazar": 7.76e-08, - "bambara": 7.76e-08, - "bamenda": 7.76e-08, - "bandito": 7.76e-08, - "barda": 7.76e-08, - "bardet": 7.76e-08, - "barramundi": 7.76e-08, - "bassanio": 7.76e-08, - "bassem": 7.76e-08, - "basten": 7.76e-08, - "batak": 7.76e-08, - "batemans": 7.76e-08, - "bayram": 7.76e-08, - "bazookas": 7.76e-08, - "beaner": 7.76e-08, - "beefeater": 7.76e-08, - "beis": 7.76e-08, - "bekasi": 7.76e-08, - "belches": 7.76e-08, - "believably": 7.76e-08, - "benelli": 7.76e-08, - "bennets": 7.76e-08, - "berit": 7.76e-08, - "besetting": 7.76e-08, - "bewley": 7.76e-08, - "bhattacharjee": 7.76e-08, - "biathlete": 7.76e-08, - "bibliographer": 7.76e-08, - "bilawal": 7.76e-08, - "billi": 7.76e-08, - "bimetallic": 7.76e-08, - "bindu": 7.76e-08, - "bini": 7.76e-08, - "biola": 7.76e-08, - "biologicals": 7.76e-08, - "bioreactors": 7.76e-08, - "birdseed": 7.76e-08, - "birthweight": 7.76e-08, - "bistros": 7.76e-08, - "bitchiness": 7.76e-08, - "bithynia": 7.76e-08, - "bittrex": 7.76e-08, - "blackball": 7.76e-08, - "blackshear": 7.76e-08, - "blessedness": 7.76e-08, - "blix": 7.76e-08, - "blondel": 7.76e-08, - "blondies": 5.89e-08, - "bloo": 7.76e-08, - "bluestar": 7.76e-08, - "bobber": 7.76e-08, - "bolshoy": 7.76e-08, - "booga": 7.76e-08, - "boooo": 7.76e-08, - "borch": 7.76e-08, - "bosun": 7.76e-08, - "bouillabaisse": 7.76e-08, - "bourguiba": 7.76e-08, - "boxall": 7.76e-08, - "boxtrolls": 7.76e-08, - "brahmi": 7.76e-08, - "braine": 7.76e-08, - "brar": 7.76e-08, - "breezeway": 7.76e-08, - "broadmeadows": 7.76e-08, - "broncs": 7.76e-08, - "bronislaw": 7.76e-08, - "bruk": 7.76e-08, - "brumfield": 7.76e-08, - "bulkeley": 7.76e-08, - "bullfrogs": 7.76e-08, - "burbidge": 7.76e-08, - "buthelezi": 7.76e-08, - "buzzin": 7.76e-08, - "byelorussian": 7.76e-08, - "cack": 7.76e-08, - "calistoga": 7.76e-08, - "callahans": 7.76e-08, - "camm": 7.76e-08, - "cantilevers": 7.76e-08, - "capaldis": 7.76e-08, - "carlitos": 7.76e-08, - "carrizo": 7.76e-08, - "carro": 7.76e-08, - "cassin": 7.76e-08, - "castells": 7.76e-08, - "catfishes": 7.76e-08, - "catlett": 7.76e-08, - "catv": 7.76e-08, - "causalities": 7.76e-08, - "ccaa": 7.76e-08, - "cdh": 7.76e-08, - "ceftriaxone": 7.76e-08, - "certo": 7.76e-08, - "chadd": 7.76e-08, - "chaffing": 7.76e-08, - "chandrika": 7.76e-08, - "chanticleer": 7.76e-08, - "chb": 7.76e-08, - "cheops": 7.76e-08, - "cherwell": 7.76e-08, - "chian": 7.76e-08, - "childrearing": 7.76e-08, - "chinatowns": 7.76e-08, - "choirboy": 7.76e-08, - "christianization": 7.76e-08, - "cht": 7.76e-08, - "churchyards": 7.76e-08, - "circo": 7.76e-08, - "cja": 7.76e-08, - "claremore": 7.76e-08, - "clarinda": 7.76e-08, - "clavell": 7.76e-08, - "clemenza": 7.76e-08, - "clerking": 7.76e-08, - "cley": 7.76e-08, - "clm": 7.76e-08, - "clonic": 7.76e-08, - "cluff": 7.76e-08, - "clydesdales": 7.76e-08, - "cobie": 7.76e-08, - "cockeyed": 7.76e-08, - "codenames": 7.76e-08, - "cognisant": 7.76e-08, - "coindesk": 7.76e-08, - "coltan": 7.76e-08, - "commiserations": 7.76e-08, - "complacently": 7.76e-08, - "comus": 7.76e-08, - "concreted": 7.76e-08, - "concretions": 7.76e-08, - "congres": 7.76e-08, - "coni": 7.76e-08, - "conk": 7.76e-08, - "conneaut": 7.76e-08, - "contemplations": 7.76e-08, - "contigo": 7.76e-08, - "contrail": 7.76e-08, - "contraindication": 7.76e-08, - "conventual": 7.76e-08, - "conversationally": 7.76e-08, - "cornett": 7.76e-08, - "corney": 7.76e-08, - "corvinus": 7.76e-08, - "cosme": 7.76e-08, - "cosmetologist": 7.76e-08, - "coud": 7.76e-08, - "courchevel": 7.76e-08, - "cozart": 7.76e-08, - "cpcs": 7.76e-08, - "crabmeat": 7.76e-08, - "crail": 7.76e-08, - "cranwell": 7.76e-08, - "crisped": 7.76e-08, - "croods": 7.76e-08, - "cryptographer": 7.76e-08, - "ctia": 7.76e-08, - "cursors": 7.76e-08, - "cvo": 7.76e-08, - "cwp": 7.76e-08, - "dabba": 7.76e-08, - "dalgleish": 7.76e-08, - "dammam": 7.76e-08, - "danika": 7.76e-08, - "danon": 7.76e-08, - "darlow": 7.76e-08, - "davit": 7.76e-08, - "dbr": 7.76e-08, - "dco": 7.76e-08, - "debord": 7.76e-08, - "decentralizing": 7.76e-08, - "declamation": 7.76e-08, - "deeping": 7.76e-08, - "definiteness": 7.76e-08, - "delavan": 7.76e-08, - "deleo": 7.76e-08, - "delonge": 7.76e-08, - "demobilisation": 7.76e-08, - "departamento": 7.76e-08, - "departement": 7.76e-08, - "deren": 7.76e-08, - "derivational": 7.76e-08, - "derosa": 7.76e-08, - "desy": 7.76e-08, - "diddling": 7.76e-08, - "diffusely": 7.76e-08, - "digitalized": 7.76e-08, - "digraph": 7.76e-08, - "dilithium": 7.76e-08, - "dionisio": 7.76e-08, - "disablement": 7.76e-08, - "dishwater": 7.76e-08, - "disparages": 7.76e-08, - "dissapoint": 7.76e-08, - "ditton": 7.76e-08, - "divino": 7.76e-08, - "divison": 7.76e-08, - "dniester": 7.76e-08, - "dobermans": 7.76e-08, - "dolts": 7.76e-08, - "donahoe": 7.76e-08, - "donnys": 7.76e-08, - "doos": 7.76e-08, - "dorie": 7.76e-08, - "dornier": 7.76e-08, - "dosbox": 7.76e-08, - "douay": 7.76e-08, - "doughs": 7.76e-08, - "doux": 7.76e-08, - "doxing": 7.76e-08, - "dreidel": 7.76e-08, - "drewe": 7.76e-08, - "ducker": 7.76e-08, - "duggars": 7.76e-08, - "dummer": 7.76e-08, - "dustbins": 7.76e-08, - "dwa": 7.76e-08, - "dyncorp": 7.76e-08, - "eardley": 7.76e-08, - "ebbets": 7.76e-08, - "ebeling": 7.76e-08, - "eckart": 7.76e-08, - "edinboro": 7.76e-08, - "edis": 7.76e-08, - "effectuate": 7.76e-08, - "efter": 7.76e-08, - "egl": 7.76e-08, - "eilidh": 7.76e-08, - "eirik": 7.76e-08, - "elaborations": 7.76e-08, - "elas": 7.76e-08, - "eleague": 7.76e-08, - "electromyography": 7.76e-08, - "elevens": 5.25e-08, - "elling": 7.76e-08, - "elmar": 7.76e-08, - "elviss": 7.76e-08, - "embarrased": 7.76e-08, - "emesis": 7.76e-08, - "endodontic": 7.76e-08, - "enduringly": 7.76e-08, - "engelhard": 7.76e-08, - "engrams": 7.76e-08, - "ensor": 7.76e-08, - "environnement": 7.76e-08, - "epiglottis": 7.76e-08, - "epperson": 7.76e-08, - "erosional": 7.76e-08, - "esdras": 7.76e-08, - "espadrilles": 7.76e-08, - "essam": 7.76e-08, - "essentia": 7.76e-08, - "etb": 7.76e-08, - "eutectic": 7.76e-08, - "exergy": 7.76e-08, - "expecially": 7.76e-08, - "expedience": 7.76e-08, - "expressionists": 7.76e-08, - "expungement": 7.76e-08, - "extirpation": 7.76e-08, - "extremadura": 7.76e-08, - "fabi": 7.76e-08, - "fabiani": 7.76e-08, - "fairford": 7.76e-08, - "fana": 7.76e-08, - "fancher": 7.76e-08, - "fannys": 7.76e-08, - "farleys": 7.76e-08, - "faron": 7.76e-08, - "fastpass": 7.76e-08, - "fastpitch": 7.76e-08, - "fatto": 7.76e-08, - "feedly": 7.76e-08, - "fenestration": 7.76e-08, - "figueiredo": 7.76e-08, - "fingerings": 7.76e-08, - "fireeye": 7.76e-08, - "firepit": 7.76e-08, - "firey": 7.76e-08, - "fixie": 7.76e-08, - "flashiest": 7.76e-08, - "flatfish": 7.76e-08, - "flexure": 7.76e-08, - "flocculation": 7.76e-08, - "flockhart": 7.76e-08, - "flodden": 7.76e-08, - "flopper": 7.76e-08, - "fluffier": 7.76e-08, - "flunkies": 7.76e-08, - "flycatchers": 7.76e-08, - "fmn": 7.76e-08, - "foggiest": 7.76e-08, - "folau": 7.76e-08, - "forel": 7.76e-08, - "forints": 7.76e-08, - "formes": 7.76e-08, - "fornicating": 7.76e-08, - "forshaw": 7.76e-08, - "fortner": 7.76e-08, - "fossey": 7.76e-08, - "foye": 7.76e-08, - "fpu": 7.76e-08, - "frie": 7.76e-08, - "froggatt": 7.76e-08, - "frontages": 7.76e-08, - "froude": 7.76e-08, - "furniss": 7.76e-08, - "furrier": 7.76e-08, - "fushimi": 7.76e-08, - "futurology": 7.76e-08, - "gabbro": 7.76e-08, - "gabbys": 7.76e-08, - "gaeltacht": 7.76e-08, - "gagliano": 7.76e-08, - "gallivanting": 7.76e-08, - "galston": 7.76e-08, - "gammas": 7.76e-08, - "gandalfs": 7.76e-08, - "gangetic": 7.76e-08, - "garvan": 7.76e-08, - "gauhati": 7.76e-08, - "gema": 7.76e-08, - "geoffs": 7.76e-08, - "geom": 7.76e-08, - "gesserit": 7.76e-08, - "gfy": 7.76e-08, - "gherkins": 7.76e-08, - "gigantism": 7.76e-08, - "gildan": 7.76e-08, - "giller": 7.76e-08, - "gimpy": 7.76e-08, - "glabella": 7.76e-08, - "glatt": 7.76e-08, - "glistened": 7.76e-08, - "godmothers": 7.76e-08, - "godsmack": 7.76e-08, - "goemon": 7.76e-08, - "goldfrapp": 7.76e-08, - "goldstar": 7.76e-08, - "golfo": 7.76e-08, - "goncourt": 7.76e-08, - "goodby": 7.76e-08, - "goooo": 7.76e-08, - "gorbals": 7.76e-08, - "grandfathering": 7.76e-08, - "granholm": 7.76e-08, - "granulosa": 7.76e-08, - "greedo": 7.76e-08, - "greenbergs": 7.76e-08, - "greenspace": 7.76e-08, - "groh": 7.76e-08, - "grot": 7.76e-08, - "grrrrr": 7.76e-08, - "gtpase": 7.76e-08, - "guanacaste": 7.76e-08, - "guillemots": 7.76e-08, - "guillotines": 7.76e-08, - "guinn": 7.76e-08, - "gusev": 7.76e-08, - "gyeongju": 7.76e-08, - "haart": 7.76e-08, - "haciendas": 7.76e-08, - "hackberry": 7.76e-08, - "hackle": 7.76e-08, - "haileys": 7.76e-08, - "halifaxs": 7.76e-08, - "hallman": 7.76e-08, - "hallstatt": 7.76e-08, - "halvorson": 7.76e-08, - "hamrick": 7.76e-08, - "handbill": 7.76e-08, - "handcart": 7.76e-08, - "handcrafts": 7.76e-08, - "hane": 7.76e-08, - "hange": 7.76e-08, - "hape": 7.76e-08, - "hapgood": 7.76e-08, - "harling": 7.76e-08, - "harrisville": 7.76e-08, - "hartson": 7.76e-08, - "haslett": 7.76e-08, - "hassall": 7.76e-08, - "hatty": 7.76e-08, - "headbutts": 7.76e-08, - "heckles": 7.76e-08, - "hees": 6.03e-08, - "heeling": 7.76e-08, - "heiden": 7.76e-08, - "helianthus": 7.76e-08, - "hellions": 7.76e-08, - "hepatotoxicity": 7.76e-08, - "hermosillo": 7.76e-08, - "herridge": 7.76e-08, - "herro": 7.76e-08, - "hidey": 7.76e-08, - "higley": 7.76e-08, - "hijrah": 7.76e-08, - "hille": 7.76e-08, - "hippa": 7.76e-08, - "hippolyta": 7.76e-08, - "hirota": 7.76e-08, - "hisao": 7.76e-08, - "hisense": 7.76e-08, - "hmcs": 7.76e-08, - "hoarseness": 7.76e-08, - "hobbiton": 7.76e-08, - "hoechst": 7.76e-08, - "hogshead": 7.76e-08, - "holism": 7.76e-08, - "holness": 7.76e-08, - "hominins": 7.76e-08, - "hongbin": 7.76e-08, - "hoplite": 7.76e-08, - "horsetail": 7.76e-08, - "hotpants": 7.76e-08, - "hotwife": 7.76e-08, - "houlton": 7.76e-08, - "huard": 7.76e-08, - "humanizes": 7.76e-08, - "humorists": 7.76e-08, - "huntingdonshire": 7.76e-08, - "hurghada": 7.76e-08, - "hustlin": 7.76e-08, - "huu": 7.76e-08, - "hyams": 7.76e-08, - "hydroxylation": 7.76e-08, - "hypericum": 7.76e-08, - "icecube": 7.76e-08, - "idiotically": 7.76e-08, - "idylls": 7.76e-08, - "ignominiously": 7.76e-08, - "ikebukuro": 7.76e-08, - "immunoprecipitation": 7.76e-08, - "impositions": 7.76e-08, - "inclusionary": 7.76e-08, - "incr": 7.76e-08, - "indigenes": 7.76e-08, - "indigenously": 7.76e-08, - "inducers": 7.76e-08, - "infests": 7.76e-08, - "infj": 7.76e-08, - "ingleside": 7.76e-08, - "initialed": 7.76e-08, - "inm": 7.76e-08, - "insel": 7.76e-08, - "institutet": 7.76e-08, - "institutionalizing": 7.76e-08, - "interamerican": 7.76e-08, - "intercessor": 7.76e-08, - "interjecting": 7.76e-08, - "interrelation": 7.76e-08, - "intersting": 7.76e-08, - "invalides": 7.76e-08, - "inverurie": 7.76e-08, - "iosco": 7.76e-08, - "ipx": 7.76e-08, - "irna": 7.76e-08, - "ironclads": 7.76e-08, - "ironmen": 7.76e-08, - "isambard": 7.76e-08, - "isomerization": 7.76e-08, - "isthe": 7.76e-08, - "isto": 7.76e-08, - "itoh": 7.76e-08, - "iwb": 7.76e-08, - "iwgp": 7.76e-08, - "jabbas": 7.76e-08, - "jalopy": 7.76e-08, - "jarre": 7.76e-08, - "javon": 7.76e-08, - "jawan": 7.76e-08, - "jetliners": 7.76e-08, - "jgr": 7.76e-08, - "johnnies": 7.76e-08, - "jointing": 7.76e-08, - "joop": 7.76e-08, - "joos": 5.5e-08, - "jotham": 7.76e-08, - "jumbos": 7.76e-08, - "jurek": 7.76e-08, - "kalen": 7.76e-08, - "karelian": 7.76e-08, - "karun": 7.76e-08, - "katina": 7.76e-08, - "katmai": 7.76e-08, - "katmandu": 7.76e-08, - "katty": 7.76e-08, - "kayes": 7.76e-08, - "kbb": 7.76e-08, - "kcrw": 7.76e-08, - "keach": 7.76e-08, - "keifer": 7.76e-08, - "kevon": 7.76e-08, - "khaldun": 7.76e-08, - "khufu": 7.76e-08, - "kika": 7.76e-08, - "kinesis": 7.76e-08, - "kingery": 7.76e-08, - "kirksville": 7.76e-08, - "kittanning": 7.76e-08, - "klick": 7.76e-08, - "knc": 7.76e-08, - "kobani": 7.76e-08, - "kohlis": 7.76e-08, - "korb": 7.76e-08, - "kosygin": 7.76e-08, - "krafts": 7.76e-08, - "kravchuk": 7.76e-08, - "kreutzer": 7.76e-08, - "kreuzer": 7.76e-08, - "kroes": 7.76e-08, - "krylov": 7.76e-08, - "kse": 7.76e-08, - "kss": 7.76e-08, - "kub": 7.76e-08, - "kumite": 7.76e-08, - "kumo": 7.76e-08, - "kundera": 7.76e-08, - "kuri": 7.76e-08, - "kuroki": 7.76e-08, - "kuster": 7.76e-08, - "kvitova": 7.76e-08, - "kwabena": 7.76e-08, - "lacanian": 7.76e-08, - "lachine": 7.76e-08, - "laemmle": 7.76e-08, - "lakhan": 7.76e-08, - "lamely": 7.76e-08, - "landauer": 7.76e-08, - "landen": 7.76e-08, - "landholding": 7.76e-08, - "lanigan": 7.76e-08, - "laning": 7.76e-08, - "lanthanide": 7.76e-08, - "lanz": 7.76e-08, - "lapras": 7.76e-08, - "latifolia": 7.76e-08, - "lauriston": 7.76e-08, - "lavishing": 7.76e-08, - "lavoro": 7.76e-08, - "lawl": 7.76e-08, - "leadbeater": 7.76e-08, - "lebowitz": 7.76e-08, - "leder": 7.76e-08, - "leftwich": 7.76e-08, - "lekki": 7.76e-08, - "lemberg": 7.76e-08, - "lese": 7.76e-08, - "lettice": 7.76e-08, - "libbing": 7.76e-08, - "libertyville": 7.76e-08, - "liebowitz": 7.76e-08, - "lightwood": 7.76e-08, - "likeability": 7.76e-08, - "limnology": 7.76e-08, - "lindahl": 7.76e-08, - "lindsley": 7.76e-08, - "liniment": 7.76e-08, - "linnell": 7.76e-08, - "lisk": 7.76e-08, - "literatura": 7.76e-08, - "loblolly": 7.76e-08, - "lochhead": 7.76e-08, - "logit": 7.76e-08, - "lolli": 7.76e-08, - "lomachenko": 7.76e-08, - "looool": 7.76e-08, - "ludmilla": 7.76e-08, - "luray": 7.76e-08, - "lustily": 7.76e-08, - "maazel": 7.76e-08, - "macarthurs": 7.76e-08, - "macgill": 7.76e-08, - "machakos": 7.76e-08, - "mackenna": 7.76e-08, - "macmanus": 7.76e-08, - "macrons": 7.76e-08, - "madams": 7.76e-08, - "maddened": 7.76e-08, - "maddocks": 7.76e-08, - "madeon": 7.76e-08, - "magali": 7.76e-08, - "magnetizing": 7.76e-08, - "mahabad": 7.76e-08, - "mainers": 7.76e-08, - "maistre": 7.76e-08, - "malas": 7.76e-08, - "malet": 7.76e-08, - "malicks": 7.76e-08, - "malloch": 7.76e-08, - "manawatu": 7.76e-08, - "manky": 7.76e-08, - "manresa": 7.76e-08, - "marchal": 7.76e-08, - "mareeba": 7.76e-08, - "markin": 7.76e-08, - "marquinhos": 7.76e-08, - "marzio": 7.76e-08, - "massi": 7.76e-08, - "matan": 7.76e-08, - "materialization": 7.76e-08, - "mattocks": 7.76e-08, - "mazen": 7.76e-08, - "mazzy": 7.76e-08, - "mcclary": 7.76e-08, - "mcclurg": 7.76e-08, - "mcdermid": 7.76e-08, - "mcintyres": 7.76e-08, - "mcstuffins": 7.76e-08, - "meddler": 7.76e-08, - "medius": 7.76e-08, - "meireles": 7.76e-08, - "melamed": 7.76e-08, - "memb": 7.76e-08, - "mementoes": 7.76e-08, - "memoire": 7.76e-08, - "mentalism": 7.76e-08, - "mente": 7.76e-08, - "menz": 7.76e-08, - "methylamine": 7.76e-08, - "metropolitans": 7.76e-08, - "michaelangelo": 7.76e-08, - "microcrystalline": 7.76e-08, - "microwaveable": 7.76e-08, - "militiaman": 7.76e-08, - "milverton": 7.76e-08, - "minestrone": 7.76e-08, - "miramichi": 7.76e-08, - "miserere": 7.76e-08, - "mispronounce": 7.76e-08, - "mispronunciation": 7.76e-08, - "missandei": 7.76e-08, - "miti": 7.76e-08, - "mnp": 7.76e-08, - "modellers": 7.76e-08, - "mogi": 7.76e-08, - "moho": 7.76e-08, - "moisturise": 7.76e-08, - "molla": 7.76e-08, - "momsen": 7.76e-08, - "monographic": 7.76e-08, - "montalcino": 7.76e-08, - "moondance": 7.76e-08, - "morphism": 7.76e-08, - "morrice": 7.76e-08, - "mortuaries": 7.76e-08, - "mossadegh": 7.76e-08, - "mowatt": 7.76e-08, - "mulberries": 7.76e-08, - "mullally": 7.76e-08, - "muncher": 7.76e-08, - "murti": 7.76e-08, - "mutuel": 7.76e-08, - "nahhh": 7.76e-08, - "najee": 7.76e-08, - "nakazawa": 7.76e-08, - "namen": 7.76e-08, - "nanterre": 7.76e-08, - "navarone": 7.76e-08, - "ndb": 7.76e-08, - "neena": 7.76e-08, - "negligee": 7.76e-08, - "nephites": 7.76e-08, - "nescafe": 7.76e-08, - "netta": 7.76e-08, - "neuhaus": 7.76e-08, - "neuritis": 7.76e-08, - "neuschwanstein": 7.76e-08, - "newells": 7.76e-08, - "newspapermen": 7.76e-08, - "newstart": 7.76e-08, - "nexis": 7.76e-08, - "nfo": 7.76e-08, - "ngu": 7.76e-08, - "nikolaev": 7.76e-08, - "nikolaevich": 7.76e-08, - "nonpolar": 7.76e-08, - "nonsexual": 7.76e-08, - "nordstroms": 7.76e-08, - "novelli": 7.76e-08, - "novembre": 7.76e-08, - "nucleolar": 7.76e-08, - "nullarbor": 7.76e-08, - "nuttiness": 7.76e-08, - "nuzlocke": 7.76e-08, - "obito": 7.76e-08, - "ochi": 7.76e-08, - "odebrecht": 7.76e-08, - "offeror": 7.76e-08, - "offertory": 7.76e-08, - "oldbury": 7.76e-08, - "olufsen": 7.76e-08, - "olver": 7.76e-08, - "ombudsmen": 7.76e-08, - "omori": 7.76e-08, - "omr": 7.76e-08, - "orbigny": 7.76e-08, - "orci": 7.76e-08, - "orcutt": 7.76e-08, - "ordonez": 7.76e-08, - "orenburg": 7.76e-08, - "oromia": 7.76e-08, - "oros": 7.76e-08, - "orry": 7.76e-08, - "ossa": 7.76e-08, - "otu": 7.76e-08, - "outclass": 7.76e-08, - "outriggers": 7.76e-08, - "overindulgence": 7.76e-08, - "ovipositor": 7.76e-08, - "oyl": 7.76e-08, - "paintballing": 7.76e-08, - "pakatan": 7.76e-08, - "panasonics": 7.76e-08, - "panipat": 7.76e-08, - "paolini": 7.76e-08, - "parenti": 7.76e-08, - "parkinsonism": 7.76e-08, - "parvin": 7.76e-08, - "pastoralist": 7.76e-08, - "pawson": 7.76e-08, - "payphones": 7.76e-08, - "pealing": 7.76e-08, - "pedlar": 7.76e-08, - "peets": 7.76e-08, - "perham": 7.76e-08, - "peristome": 7.76e-08, - "perrysburg": 7.76e-08, - "pershore": 7.76e-08, - "peskov": 7.76e-08, - "pestilent": 7.76e-08, - "pfalz": 7.76e-08, - "philippes": 7.76e-08, - "photodynamic": 7.76e-08, - "pichu": 7.76e-08, - "piemonte": 7.76e-08, - "pikemen": 7.76e-08, - "pilipino": 7.76e-08, - "pilton": 7.76e-08, - "pimco": 7.76e-08, - "pimm": 7.76e-08, - "pimply": 7.76e-08, - "pinatubo": 7.76e-08, - "piously": 7.76e-08, - "piro": 7.76e-08, - "plasticizer": 7.76e-08, - "platers": 7.76e-08, - "pneumonitis": 7.76e-08, - "podrick": 7.76e-08, - "poky": 7.76e-08, - "polonia": 7.76e-08, - "ponyboy": 7.76e-08, - "poofs": 7.76e-08, - "pouvoir": 7.76e-08, - "poyser": 7.76e-08, - "prabowo": 7.76e-08, - "praetorius": 7.76e-08, - "precariousness": 7.76e-08, - "predicative": 7.76e-08, - "preller": 7.76e-08, - "presario": 7.76e-08, - "priciest": 7.76e-08, - "printmakers": 7.76e-08, - "prinze": 7.76e-08, - "prodi": 7.76e-08, - "profilers": 7.76e-08, - "proles": 7.76e-08, - "propitiation": 7.76e-08, - "proprio": 7.76e-08, - "prorogued": 7.76e-08, - "provan": 7.76e-08, - "publishings": 7.76e-08, - "pumpernickel": 7.76e-08, - "pupate": 7.76e-08, - "purohit": 7.76e-08, - "pushbutton": 7.76e-08, - "puskas": 7.76e-08, - "pussys": 7.76e-08, - "qaradawi": 7.76e-08, - "qatada": 7.76e-08, - "qualm": 7.76e-08, - "quaresma": 7.76e-08, - "quested": 7.76e-08, - "quiches": 7.76e-08, - "racketeers": 7.76e-08, - "radner": 7.76e-08, - "radwan": 7.76e-08, - "rafaels": 7.76e-08, - "raimondi": 7.76e-08, - "rajapakse": 7.76e-08, - "rajni": 7.76e-08, - "ramas": 7.76e-08, - "rass": 7.76e-08, - "raut": 7.76e-08, - "rava": 7.76e-08, - "ravager": 7.76e-08, - "rawest": 7.76e-08, - "rbt": 7.76e-08, - "rdg": 7.76e-08, - "reali": 7.76e-08, - "reber": 7.76e-08, - "reblog": 7.76e-08, - "recirculated": 7.76e-08, - "reclines": 7.76e-08, - "recoded": 7.76e-08, - "recommitted": 7.76e-08, - "redbrick": 7.76e-08, - "redfearn": 7.76e-08, - "rediscovers": 7.76e-08, - "redrafted": 7.76e-08, - "reemerge": 7.76e-08, - "refinish": 7.76e-08, - "regaling": 7.76e-08, - "regans": 7.76e-08, - "reintroduces": 7.76e-08, - "reisner": 7.76e-08, - "reissuing": 7.76e-08, - "relaid": 7.76e-08, - "relegations": 7.76e-08, - "remonstrated": 7.76e-08, - "reniform": 7.76e-08, - "repacking": 7.76e-08, - "repetitiveness": 7.76e-08, - "repopulation": 7.76e-08, - "repurchasing": 7.76e-08, - "reqs": 7.76e-08, - "resampling": 7.76e-08, - "reseal": 7.76e-08, - "resit": 7.76e-08, - "restates": 7.76e-08, - "rewilding": 7.76e-08, - "rgd": 7.76e-08, - "richters": 7.76e-08, - "ridgeville": 7.76e-08, - "ridic": 7.76e-08, - "rids": 7.76e-08, - "rill": 7.76e-08, - "rimpac": 7.76e-08, - "rimshot": 7.76e-08, - "roadsters": 7.76e-08, - "robertss": 7.76e-08, - "rodes": 7.76e-08, - "rodrigue": 7.76e-08, - "rolston": 7.76e-08, - "romanes": 7.76e-08, - "romulo": 7.76e-08, - "rooibos": 7.76e-08, - "rootin": 7.76e-08, - "roundworm": 7.76e-08, - "rousseaus": 7.76e-08, - "rtn": 7.76e-08, - "ruess": 7.76e-08, - "rugg": 7.76e-08, - "rundschau": 7.76e-08, - "sachsen": 7.76e-08, - "saeki": 7.76e-08, - "saff": 7.76e-08, - "safia": 7.76e-08, - "salonga": 7.76e-08, - "samini": 7.76e-08, - "sandvik": 7.76e-08, - "sanfrecce": 7.76e-08, - "sarsour": 7.76e-08, - "satrap": 7.76e-08, - "satriani": 7.76e-08, - "scarry": 7.76e-08, - "scheffler": 7.76e-08, - "schley": 7.76e-08, - "schoop": 7.76e-08, - "schram": 7.76e-08, - "scowls": 7.76e-08, - "scriven": 7.76e-08, - "scruple": 7.76e-08, - "seafoam": 7.76e-08, - "seanad": 7.76e-08, - "seavey": 7.76e-08, - "secor": 7.76e-08, - "secur": 7.76e-08, - "sede": 7.76e-08, - "seite": 7.76e-08, - "sejong": 7.76e-08, - "sellar": 7.76e-08, - "semiclassical": 7.76e-08, - "semigroups": 7.76e-08, - "septon": 7.76e-08, - "seraphina": 7.76e-08, - "shabbily": 7.76e-08, - "shadowban": 7.76e-08, - "shaik": 7.76e-08, - "shaqs": 7.76e-08, - "shimmered": 7.76e-08, - "shipwrights": 7.76e-08, - "shiraishi": 7.76e-08, - "shojo": 7.76e-08, - "shotted": 7.76e-08, - "showjumping": 7.76e-08, - "sibu": 7.76e-08, - "siddiq": 7.76e-08, - "sieber": 7.76e-08, - "silang": 7.76e-08, - "silverdale": 7.76e-08, - "silverwood": 7.76e-08, - "simard": 7.76e-08, - "sirsa": 7.76e-08, - "skulk": 7.76e-08, - "sleepwalkers": 7.76e-08, - "sloat": 7.76e-08, - "smashbros": 7.76e-08, - "smillie": 7.76e-08, - "snorkels": 7.76e-08, - "snorri": 7.76e-08, - "solars": 7.76e-08, - "someth": 7.76e-08, - "sorley": 7.76e-08, - "sorters": 7.76e-08, - "souleymane": 7.76e-08, - "soumya": 7.76e-08, - "sourcebooks": 7.76e-08, - "southdown": 7.76e-08, - "sowers": 7.76e-08, - "spacek": 7.76e-08, - "spada": 7.76e-08, - "specialisms": 7.76e-08, - "spedding": 7.76e-08, - "sputters": 7.76e-08, - "srna": 7.76e-08, - "srx": 7.76e-08, - "standart": 7.76e-08, - "standpipe": 7.76e-08, - "stel": 7.76e-08, - "stelae": 7.76e-08, - "stellan": 7.76e-08, - "stevedore": 7.76e-08, - "stiffest": 7.76e-08, - "stigler": 7.76e-08, - "stimulations": 7.76e-08, - "stipple": 7.76e-08, - "strangeways": 7.76e-08, - "strangways": 7.76e-08, - "strasberg": 7.76e-08, - "strathspey": 7.76e-08, - "stretchable": 7.76e-08, - "striate": 7.76e-08, - "studium": 7.76e-08, - "stuka": 7.76e-08, - "stull": 7.76e-08, - "sturgill": 7.76e-08, - "stylin": 7.76e-08, - "subordinating": 7.76e-08, - "subscale": 7.76e-08, - "subsidization": 7.76e-08, - "sugawara": 7.76e-08, - "suikoden": 7.76e-08, - "suisun": 7.76e-08, - "sukumaran": 7.76e-08, - "sulfoxide": 7.76e-08, - "summitt": 7.76e-08, - "sundowner": 7.76e-08, - "sunfire": 7.76e-08, - "sunpower": 7.76e-08, - "superba": 7.76e-08, - "supermicro": 7.76e-08, - "susman": 7.76e-08, - "suzu": 7.76e-08, - "swiftkey": 7.76e-08, - "swished": 7.76e-08, - "synthwave": 7.76e-08, - "tacklers": 7.76e-08, - "tagliatelle": 7.76e-08, - "tahlequah": 7.76e-08, - "tajima": 7.76e-08, - "tamako": 7.76e-08, - "taner": 7.76e-08, - "tanzanite": 7.76e-08, - "tapirs": 7.76e-08, - "taranis": 7.76e-08, - "tarter": 7.76e-08, - "tato": 7.76e-08, - "tattletale": 7.76e-08, - "taverner": 7.76e-08, - "teac": 7.76e-08, - "teachout": 7.76e-08, - "tearaway": 7.76e-08, - "technol": 7.76e-08, - "teddie": 7.76e-08, - "teetotal": 7.76e-08, - "tenuously": 7.76e-08, - "terf": 7.76e-08, - "terris": 5.01e-08, - "testino": 7.76e-08, - "thalamic": 7.76e-08, - "thas": 7.76e-08, - "theirselves": 7.76e-08, - "theorise": 7.76e-08, - "thermosetting": 7.76e-08, - "thorpes": 7.76e-08, - "thorsen": 7.76e-08, - "tigard": 7.76e-08, - "tihar": 7.76e-08, - "tillinghast": 7.76e-08, - "tillys": 7.76e-08, - "timoshenko": 7.76e-08, - "tiptop": 7.76e-08, - "tirunelveli": 7.76e-08, - "toddle": 7.76e-08, - "tokay": 7.76e-08, - "toliver": 7.76e-08, - "tommorrow": 7.76e-08, - "tonis": 7.76e-08, - "torstein": 7.76e-08, - "touchwiz": 7.76e-08, - "tourny": 7.76e-08, - "trachoma": 7.76e-08, - "trackable": 7.76e-08, - "transcatheter": 7.76e-08, - "transepts": 7.76e-08, - "transferability": 7.76e-08, - "transfering": 7.76e-08, - "trapezius": 7.76e-08, - "treadle": 7.76e-08, - "treanor": 7.76e-08, - "trinamool": 7.76e-08, - "truces": 7.76e-08, - "trud": 7.76e-08, - "trudie": 7.76e-08, - "trundled": 7.76e-08, - "tsd": 7.76e-08, - "tsukamoto": 7.76e-08, - "tualatin": 7.76e-08, - "tuckahoe": 7.76e-08, - "turnpikes": 7.76e-08, - "tweep": 7.76e-08, - "twere": 7.76e-08, - "typesetter": 7.76e-08, - "tyrells": 7.76e-08, - "tyvm": 7.76e-08, - "udacity": 7.76e-08, - "uds": 1.95e-08, - "ugs": 7.76e-08, - "uhtred": 7.76e-08, - "ullswater": 7.76e-08, - "umtiti": 7.76e-08, - "unbind": 7.76e-08, - "unceremonious": 7.76e-08, - "unchartered": 7.76e-08, - "uncreative": 7.76e-08, - "undecorated": 7.76e-08, - "underboss": 7.76e-08, - "understates": 7.76e-08, - "underwrote": 7.76e-08, - "unerringly": 7.76e-08, - "unfruitful": 7.76e-08, - "ungenerous": 7.76e-08, - "unglamorous": 7.76e-08, - "unhesitatingly": 7.76e-08, - "unicast": 7.76e-08, - "uninformative": 7.76e-08, - "unkindness": 7.76e-08, - "unladylike": 7.76e-08, - "unmaking": 7.76e-08, - "unmerited": 7.76e-08, - "unmounted": 7.76e-08, - "unshaken": 7.76e-08, - "unsteadily": 7.76e-08, - "unthinkingly": 7.76e-08, - "upholsterer": 7.76e-08, - "uprated": 7.76e-08, - "uprightness": 7.76e-08, - "urbina": 7.76e-08, - "urich": 7.76e-08, - "ushi": 7.76e-08, - "vaishali": 7.76e-08, - "valeries": 7.76e-08, - "vardhan": 7.76e-08, - "varlamov": 7.76e-08, - "vasyl": 7.76e-08, - "vegalta": 7.76e-08, - "vestnik": 7.76e-08, - "vfb": 7.76e-08, - "vibraphone": 7.76e-08, - "victorys": 7.76e-08, - "vishwas": 7.76e-08, - "vlado": 7.76e-08, - "vld": 7.76e-08, - "volz": 7.76e-08, - "voyageur": 7.76e-08, - "waas": 7.76e-08, - "wagah": 7.76e-08, - "walkup": 7.76e-08, - "waziri": 7.76e-08, - "webshop": 7.76e-08, - "wgm": 7.76e-08, - "whay": 7.76e-08, - "whelmed": 7.76e-08, - "whereon": 7.76e-08, - "whippy": 7.76e-08, - "whitwell": 7.76e-08, - "wiis": 7.76e-08, - "willock": 7.76e-08, - "wilsonville": 7.76e-08, - "withings": 7.76e-08, - "wny": 7.76e-08, - "wolfsbane": 7.76e-08, - "wons": 7.76e-08, - "woofers": 7.76e-08, - "wouter": 7.76e-08, - "wowee": 7.76e-08, - "wrenn": 7.76e-08, - "writhes": 7.76e-08, - "xiomara": 7.76e-08, - "yanez": 7.76e-08, - "yei": 7.76e-08, - "yellowcake": 7.76e-08, - "yessssss": 7.76e-08, - "yogendra": 7.76e-08, - "yoma": 7.76e-08, - "yuengling": 7.76e-08, - "zabriskie": 7.76e-08, - "zaphod": 7.76e-08, - "zayd": 7.76e-08, - "zolas": 7.76e-08, - "zunino": 7.76e-08, - "aadi": 7.59e-08, - "absorbency": 7.59e-08, - "acclimatized": 7.59e-08, - "accomodations": 7.59e-08, - "accosting": 7.59e-08, - "actinic": 7.59e-08, - "actresss": 7.59e-08, - "aeolus": 7.59e-08, - "aeris": 7.59e-08, - "afghanis": 7.59e-08, - "africanist": 7.59e-08, - "africanized": 7.59e-08, - "afterwords": 7.59e-08, - "agit": 7.59e-08, - "agouti": 7.59e-08, - "aguila": 7.59e-08, - "aht": 7.59e-08, - "aikens": 7.59e-08, - "aino": 7.59e-08, - "airdropped": 7.59e-08, - "airside": 7.59e-08, - "akasaka": 7.59e-08, - "akihiko": 7.59e-08, - "aktiengesellschaft": 7.59e-08, - "alara": 7.59e-08, - "albani": 7.59e-08, - "albina": 7.59e-08, - "albini": 7.59e-08, - "alcaraz": 7.59e-08, - "aleichem": 7.59e-08, - "alexandru": 7.59e-08, - "alin": 7.59e-08, - "aliza": 7.59e-08, - "allegorically": 7.59e-08, - "altec": 7.59e-08, - "altieri": 7.59e-08, - "alya": 7.59e-08, - "amazingness": 7.59e-08, - "amoroso": 7.59e-08, - "amphipods": 7.59e-08, - "anakins": 7.59e-08, - "ancap": 7.59e-08, - "andal": 7.59e-08, - "anglesea": 7.59e-08, - "angleton": 7.59e-08, - "anodizing": 7.59e-08, - "anomalously": 7.59e-08, - "anri": 7.59e-08, - "anterograde": 7.59e-08, - "anth": 7.59e-08, - "antonine": 7.59e-08, - "antwerpen": 7.59e-08, - "arabesques": 7.59e-08, - "araw": 7.59e-08, - "arcanine": 7.59e-08, - "arceus": 7.59e-08, - "arigato": 7.59e-08, - "aristarchus": 7.59e-08, - "arlie": 7.59e-08, - "arminianism": 7.59e-08, - "arrian": 7.59e-08, - "arterioles": 7.59e-08, - "asai": 7.59e-08, - "asar": 7.59e-08, - "ashfaq": 7.59e-08, - "ashwood": 7.59e-08, - "asper": 7.59e-08, - "astronomic": 7.59e-08, - "atid": 7.59e-08, - "ating": 7.59e-08, - "atrophic": 7.59e-08, - "attenboroughs": 7.59e-08, - "attleborough": 7.59e-08, - "avails": 7.59e-08, - "awang": 7.59e-08, - "ayyub": 7.59e-08, - "azimuthal": 7.59e-08, - "babita": 7.59e-08, - "backpedaling": 7.59e-08, - "bactria": 7.59e-08, - "bahubali": 7.59e-08, - "balazs": 7.59e-08, - "ballo": 7.59e-08, - "balo": 7.59e-08, - "bamf": 7.59e-08, - "bamiyan": 7.59e-08, - "bams": 5.25e-08, - "banat": 7.59e-08, - "bandwagons": 7.59e-08, - "banjul": 7.59e-08, - "bankss": 7.59e-08, - "bannan": 7.59e-08, - "barbering": 7.59e-08, - "barner": 7.59e-08, - "barrichello": 7.59e-08, - "baserunner": 7.59e-08, - "baserunning": 7.59e-08, - "basks": 7.59e-08, - "basutoland": 7.59e-08, - "battenberg": 7.59e-08, - "battleaxe": 7.59e-08, - "bayda": 7.59e-08, - "bayers": 7.59e-08, - "bdl": 7.59e-08, - "beanpole": 7.59e-08, - "beatson": 7.59e-08, - "beenie": 7.59e-08, - "bekah": 7.59e-08, - "belconnen": 7.59e-08, - "belleau": 7.59e-08, - "bendel": 7.59e-08, - "benevento": 7.59e-08, - "bentons": 7.59e-08, - "bentsen": 7.59e-08, - "bhagya": 7.59e-08, - "bhutans": 7.59e-08, - "biaggi": 7.59e-08, - "biblio": 7.59e-08, - "bibliographie": 7.59e-08, - "bickerton": 7.59e-08, - "biddulph": 7.59e-08, - "bierman": 7.59e-08, - "bifold": 7.59e-08, - "bilston": 7.59e-08, - "biograph": 7.59e-08, - "biopharmaceuticals": 7.59e-08, - "biopics": 7.59e-08, - "birtwistle": 7.59e-08, - "bitwise": 7.59e-08, - "blak": 7.59e-08, - "blankfein": 7.59e-08, - "blasco": 7.59e-08, - "blenkinsop": 7.59e-08, - "blr": 7.59e-08, - "bnw": 7.59e-08, - "bobb": 7.59e-08, - "bobbs": 7.59e-08, - "boeotia": 7.59e-08, - "bondarenko": 7.59e-08, - "bondy": 7.59e-08, - "bopped": 7.59e-08, - "bothe": 7.59e-08, - "bounteous": 7.59e-08, - "bowley": 7.59e-08, - "braehead": 7.59e-08, - "brahim": 7.59e-08, - "brandts": 7.59e-08, - "brault": 7.59e-08, - "bravehearts": 7.59e-08, - "brazed": 7.59e-08, - "brisson": 7.59e-08, - "broadsheets": 7.59e-08, - "brookvale": 7.59e-08, - "brummie": 7.59e-08, - "bsw": 7.59e-08, - "budo": 7.59e-08, - "buli": 7.59e-08, - "bullwhip": 7.59e-08, - "burrata": 7.59e-08, - "buttle": 7.59e-08, - "cadastre": 7.59e-08, - "cais": 7.59e-08, - "calcitonin": 7.59e-08, - "camargue": 7.59e-08, - "campi": 7.59e-08, - "camrose": 7.59e-08, - "canadienne": 7.59e-08, - "canaletto": 7.59e-08, - "cannell": 7.59e-08, - "canoeists": 7.59e-08, - "canonised": 7.59e-08, - "cantering": 7.59e-08, - "capitols": 6.92e-08, - "carbonization": 7.59e-08, - "carcinogenicity": 7.59e-08, - "carlisles": 7.59e-08, - "caruthers": 7.59e-08, - "carvery": 7.59e-08, - "cascada": 7.59e-08, - "cascais": 7.59e-08, - "cassels": 7.59e-08, - "catalpa": 7.59e-08, - "catbird": 7.59e-08, - "causey": 7.59e-08, - "cbg": 7.59e-08, - "ccss": 7.59e-08, - "cdot": 7.59e-08, - "ceiba": 7.59e-08, - "celestron": 7.59e-08, - "cels": 7.59e-08, - "centaurus": 7.59e-08, - "centralist": 7.59e-08, - "cephalosporins": 7.59e-08, - "cerner": 7.59e-08, - "cff": 7.59e-08, - "cgpa": 7.59e-08, - "chaldea": 7.59e-08, - "charnwood": 7.59e-08, - "chauncy": 7.59e-08, - "cheapens": 7.59e-08, - "cheikh": 7.59e-08, - "chicky": 7.59e-08, - "chillier": 7.59e-08, - "chisolm": 7.59e-08, - "chk": 7.59e-08, - "chlorpromazine": 7.59e-08, - "chlorpyrifos": 7.59e-08, - "choiseul": 7.59e-08, - "chondrites": 7.59e-08, - "chud": 7.59e-08, - "chunder": 7.59e-08, - "ciaa": 7.59e-08, - "citylink": 7.59e-08, - "clansman": 7.59e-08, - "claydon": 7.59e-08, - "cleanness": 7.59e-08, - "cleggs": 7.59e-08, - "cleghorn": 7.59e-08, - "clementines": 7.59e-08, - "clicky": 7.59e-08, - "clitic": 7.59e-08, - "clobbering": 7.59e-08, - "cloutier": 7.59e-08, - "clubber": 7.59e-08, - "clune": 7.59e-08, - "cnnmoney": 7.59e-08, - "coalinga": 7.59e-08, - "coba": 7.59e-08, - "cobbling": 7.59e-08, - "cockermouth": 7.59e-08, - "codman": 7.59e-08, - "coens": 7.59e-08, - "colbys": 7.59e-08, - "colden": 7.59e-08, - "coleus": 7.59e-08, - "collodion": 7.59e-08, - "colores": 7.59e-08, - "colossally": 7.59e-08, - "comfrey": 7.59e-08, - "commissaries": 7.59e-08, - "comyn": 7.59e-08, - "conforto": 7.59e-08, - "consensually": 7.59e-08, - "consequentialism": 7.59e-08, - "constrictive": 7.59e-08, - "cooksey": 7.59e-08, - "copic": 7.59e-08, - "coppinger": 7.59e-08, - "corrientes": 7.59e-08, - "corrs": 7.59e-08, - "corvair": 7.59e-08, - "coulters": 7.59e-08, - "counteroffer": 7.59e-08, - "covens": 7.59e-08, - "crabgrass": 7.59e-08, - "crary": 7.59e-08, - "creedmoor": 7.59e-08, - "crees": 7.59e-08, - "crg": 7.59e-08, - "cribbed": 7.59e-08, - "crossbars": 7.59e-08, - "crosslinked": 7.59e-08, - "crowbars": 7.59e-08, - "cumber": 7.59e-08, - "cuore": 7.59e-08, - "cutaways": 7.59e-08, - "cwe": 7.59e-08, - "cwi": 7.59e-08, - "dagny": 7.59e-08, - "daher": 7.59e-08, - "dailys": 7.59e-08, - "daphnis": 7.59e-08, - "darbar": 7.59e-08, - "datatype": 7.59e-08, - "deceits": 7.59e-08, - "decemberists": 7.59e-08, - "decriminalised": 7.59e-08, - "deller": 7.59e-08, - "demonizes": 7.59e-08, - "demyelination": 7.59e-08, - "deontay": 7.59e-08, - "deontological": 7.59e-08, - "deprecate": 7.59e-08, - "descriptively": 7.59e-08, - "dete": 7.59e-08, - "determinable": 7.59e-08, - "detweiler": 7.59e-08, - "devastator": 7.59e-08, - "devonta": 7.59e-08, - "dfd": 7.59e-08, - "dhb": 7.59e-08, - "dibiase": 7.59e-08, - "diddys": 7.59e-08, - "didymus": 7.59e-08, - "dielectrics": 7.59e-08, - "diggory": 7.59e-08, - "digitals": 6.03e-08, - "dilaudid": 7.59e-08, - "diphenyl": 7.59e-08, - "directo": 7.59e-08, - "disarmingly": 7.59e-08, - "discriminations": 7.59e-08, - "dishonoring": 7.59e-08, - "disingenuously": 7.59e-08, - "dispersants": 7.59e-08, - "disrupter": 7.59e-08, - "distillates": 7.59e-08, - "divots": 7.59e-08, - "docter": 7.59e-08, - "docteur": 7.59e-08, - "dogo": 7.59e-08, - "dokey": 7.59e-08, - "doona": 7.59e-08, - "doonesbury": 7.59e-08, - "dosimeter": 7.59e-08, - "dotd": 7.59e-08, - "doune": 7.59e-08, - "downeys": 7.59e-08, - "downline": 7.59e-08, - "dowse": 7.59e-08, - "doxy": 7.59e-08, - "dozers": 7.59e-08, - "dreiser": 7.59e-08, - "dryas": 7.59e-08, - "dtl": 7.59e-08, - "dumbfuck": 7.59e-08, - "dunkel": 7.59e-08, - "dutchmans": 7.59e-08, - "dvdrip": 7.59e-08, - "dwc": 7.59e-08, - "eades": 7.59e-08, - "eales": 7.59e-08, - "eatons": 7.59e-08, - "edexcel": 7.59e-08, - "ednas": 7.59e-08, - "edwardss": 7.59e-08, - "edwyn": 7.59e-08, - "efx": 7.59e-08, - "eig": 7.59e-08, - "eigg": 7.59e-08, - "electroencephalogram": 7.59e-08, - "elided": 7.59e-08, - "eloisa": 7.59e-08, - "eluted": 7.59e-08, - "embalmer": 7.59e-08, - "emine": 7.59e-08, - "enca": 7.59e-08, - "engelbrecht": 7.59e-08, - "engrish": 7.59e-08, - "equiped": 7.59e-08, - "eretria": 7.59e-08, - "erno": 7.59e-08, - "erroll": 7.59e-08, - "ertl": 7.59e-08, - "espagne": 7.59e-08, - "estrin": 7.59e-08, - "etcher": 7.59e-08, - "eurodollar": 7.59e-08, - "evora": 7.59e-08, - "ewings": 6.31e-08, - "excreting": 7.59e-08, - "exos": 6.61e-08, - "expansively": 7.59e-08, - "expensed": 7.59e-08, - "exudate": 7.59e-08, - "facundo": 7.59e-08, - "fadl": 7.59e-08, - "fakenham": 7.59e-08, - "falaise": 7.59e-08, - "famiglia": 7.59e-08, - "famitsu": 7.59e-08, - "fantasising": 7.59e-08, - "fantastico": 7.59e-08, - "fascial": 7.59e-08, - "fastfood": 7.59e-08, - "fatehpur": 7.59e-08, - "fawned": 7.59e-08, - "fcra": 7.59e-08, - "fdl": 7.59e-08, - "feburary": 7.59e-08, - "fep": 7.59e-08, - "fergies": 7.59e-08, - "festers": 7.59e-08, - "festiva": 7.59e-08, - "fibber": 7.59e-08, - "filtrate": 7.59e-08, - "financings": 7.59e-08, - "firefall": 7.59e-08, - "fistulas": 7.59e-08, - "flagellate": 7.59e-08, - "flattest": 7.59e-08, - "flues": 7.59e-08, - "folgers": 7.59e-08, - "foodbanks": 7.59e-08, - "foremast": 7.59e-08, - "forti": 7.59e-08, - "fourche": 7.59e-08, - "fpd": 7.59e-08, - "fragilis": 7.59e-08, - "fraid": 7.59e-08, - "frangipani": 7.59e-08, - "freesia": 7.59e-08, - "freetime": 7.59e-08, - "fruitcakes": 7.59e-08, - "fruitfully": 7.59e-08, - "frusciante": 7.59e-08, - "fsk": 7.59e-08, - "fucka": 7.59e-08, - "fumiko": 7.59e-08, - "fuschia": 7.59e-08, - "futilely": 7.59e-08, - "gadkari": 7.59e-08, - "gaits": 7.59e-08, - "gallaher": 7.59e-08, - "gallants": 7.59e-08, - "gallerist": 7.59e-08, - "galloways": 7.59e-08, - "galvatron": 7.59e-08, - "gameiro": 7.59e-08, - "gastroparesis": 7.59e-08, - "gateau": 7.59e-08, - "gaven": 7.59e-08, - "gaveston": 7.59e-08, - "gcpd": 7.59e-08, - "geht": 7.59e-08, - "geiss": 7.59e-08, - "gentil": 7.59e-08, - "geopolitically": 7.59e-08, - "geostrategic": 7.59e-08, - "gerasimov": 7.59e-08, - "geth": 7.59e-08, - "ghi": 7.59e-08, - "giffen": 7.59e-08, - "ginning": 7.59e-08, - "glacially": 7.59e-08, - "glauber": 7.59e-08, - "glm": 7.59e-08, - "gloversville": 7.59e-08, - "glumly": 7.59e-08, - "gobain": 7.59e-08, - "godspell": 7.59e-08, - "gohar": 7.59e-08, - "goldsteins": 7.59e-08, - "gonad": 7.59e-08, - "gondar": 7.59e-08, - "goodjob": 7.59e-08, - "goopy": 7.59e-08, - "goosen": 7.59e-08, - "grandaddy": 7.59e-08, - "grapeshot": 7.59e-08, - "gratian": 7.59e-08, - "greasers": 7.59e-08, - "greediness": 7.59e-08, - "greenbriar": 7.59e-08, - "grell": 7.59e-08, - "gries": 7.59e-08, - "grok": 7.59e-08, - "grommets": 7.59e-08, - "groper": 7.59e-08, - "gry": 7.59e-08, - "gunge": 7.59e-08, - "gup": 7.59e-08, - "guttmacher": 7.59e-08, - "gwt": 7.59e-08, - "gyr": 7.59e-08, - "haberdasher": 7.59e-08, - "habersham": 7.59e-08, - "haemorrhoids": 7.59e-08, - "haidt": 7.59e-08, - "halfwit": 7.59e-08, - "hallandale": 7.59e-08, - "hamline": 7.59e-08, - "hanas": 7.59e-08, - "hansi": 7.59e-08, - "hardboard": 7.59e-08, - "hardeman": 7.59e-08, - "hardliner": 7.59e-08, - "harebrained": 7.59e-08, - "harrenhal": 7.59e-08, - "haruo": 7.59e-08, - "hauge": 7.59e-08, - "havemeyer": 7.59e-08, - "hawthornes": 7.59e-08, - "headmen": 7.59e-08, - "hemochromatosis": 7.59e-08, - "hendriks": 7.59e-08, - "heraclius": 7.59e-08, - "herp": 7.59e-08, - "hessians": 7.59e-08, - "hetchy": 7.59e-08, - "heterochromatin": 7.59e-08, - "heterocycles": 7.59e-08, - "heysham": 7.59e-08, - "hilario": 7.59e-08, - "historica": 7.59e-08, - "hitam": 7.59e-08, - "hobi": 7.59e-08, - "hohenlohe": 7.59e-08, - "hollerin": 7.59e-08, - "hollowell": 7.59e-08, - "homem": 7.59e-08, - "homepod": 7.59e-08, - "homerton": 7.59e-08, - "honeymooning": 7.59e-08, - "hoos": 7.59e-08, - "hopton": 7.59e-08, - "horncastle": 7.59e-08, - "hottentot": 7.59e-08, - "hotz": 7.59e-08, - "hsh": 7.59e-08, - "humaine": 7.59e-08, - "hunkering": 7.59e-08, - "hybridize": 7.59e-08, - "hymie": 7.59e-08, - "hyperhidrosis": 7.59e-08, - "hyperparathyroidism": 7.59e-08, - "hypothesizing": 7.59e-08, - "ibeacon": 7.59e-08, - "icer": 7.59e-08, - "ified": 7.59e-08, - "igd": 7.59e-08, - "ihnen": 7.59e-08, - "illuminators": 7.59e-08, - "imes": 7.59e-08, - "inculcating": 7.59e-08, - "indaba": 7.59e-08, - "inglenook": 7.59e-08, - "inglese": 7.59e-08, - "inhalant": 7.59e-08, - "inl": 7.59e-08, - "inoculating": 7.59e-08, - "inputted": 7.59e-08, - "insa": 7.59e-08, - "insecta": 7.59e-08, - "interbedded": 7.59e-08, - "intercompany": 7.59e-08, - "interposition": 7.59e-08, - "inverses": 7.59e-08, - "ironmonger": 7.59e-08, - "ironworkers": 7.59e-08, - "isai": 7.59e-08, - "italien": 7.59e-08, - "iterates": 7.59e-08, - "ivp": 7.59e-08, - "jaar": 7.59e-08, - "jakartas": 7.59e-08, - "jaro": 7.59e-08, - "jasna": 7.59e-08, - "jedis": 5.75e-08, - "jedinak": 7.59e-08, - "jennette": 7.59e-08, - "jerod": 7.59e-08, - "jese": 7.59e-08, - "jihan": 7.59e-08, - "jinpings": 7.59e-08, - "johnsson": 7.59e-08, - "jord": 7.59e-08, - "jordaan": 7.59e-08, - "jumla": 7.59e-08, - "junco": 7.59e-08, - "junichiro": 7.59e-08, - "junipers": 7.59e-08, - "junto": 7.59e-08, - "jurgens": 7.59e-08, - "jutta": 7.59e-08, - "jux": 7.59e-08, - "kabob": 7.59e-08, - "kachina": 7.59e-08, - "kaf": 7.59e-08, - "kaiji": 7.59e-08, - "kaikoura": 7.59e-08, - "kamino": 7.59e-08, - "kampen": 7.59e-08, - "karlstad": 7.59e-08, - "kasa": 7.59e-08, - "katahdin": 7.59e-08, - "katan": 7.59e-08, - "kathryns": 7.59e-08, - "kaylie": 7.59e-08, - "keizer": 7.59e-08, - "keygen": 7.59e-08, - "khaimah": 7.59e-08, - "khodorkovsky": 7.59e-08, - "khomeinis": 7.59e-08, - "kilmartin": 7.59e-08, - "kinki": 7.59e-08, - "kinzie": 7.59e-08, - "kirra": 7.59e-08, - "kittie": 7.59e-08, - "klebold": 7.59e-08, - "klia": 7.59e-08, - "klinghoffer": 7.59e-08, - "knaresborough": 7.59e-08, - "knaus": 7.59e-08, - "knobbly": 7.59e-08, - "knt": 7.59e-08, - "knuckleball": 7.59e-08, - "koharu": 7.59e-08, - "koki": 7.59e-08, - "kombi": 7.59e-08, - "kommen": 7.59e-08, - "korolev": 7.59e-08, - "kournikova": 7.59e-08, - "kowalczyk": 7.59e-08, - "krim": 7.59e-08, - "krit": 7.59e-08, - "kriya": 7.59e-08, - "kroq": 7.59e-08, - "ktvu": 7.59e-08, - "kufr": 7.59e-08, - "kugler": 7.59e-08, - "kuka": 7.59e-08, - "kumaon": 7.59e-08, - "kumble": 7.59e-08, - "kyries": 7.59e-08, - "laat": 7.59e-08, - "lachance": 7.59e-08, - "lafd": 7.59e-08, - "lalala": 7.59e-08, - "landgraf": 7.59e-08, - "laner": 7.59e-08, - "latrell": 7.59e-08, - "laub": 7.59e-08, - "leatherneck": 7.59e-08, - "leesville": 7.59e-08, - "legibly": 7.59e-08, - "lengthways": 7.59e-08, - "lensed": 7.59e-08, - "leontes": 7.59e-08, - "leptons": 7.59e-08, - "lesage": 7.59e-08, - "lescott": 7.59e-08, - "letras": 7.59e-08, - "lexikon": 7.59e-08, - "lgbtqi": 7.59e-08, - "lgr": 7.59e-08, - "libreville": 7.59e-08, - "lifehouse": 7.59e-08, - "lilliputian": 7.59e-08, - "lizette": 7.59e-08, - "ljungberg": 7.59e-08, - "lmaooooo": 7.59e-08, - "lobotomized": 7.59e-08, - "localizations": 7.59e-08, - "localizes": 7.59e-08, - "longarm": 7.59e-08, - "lorenzi": 7.59e-08, - "lotuses": 7.59e-08, - "lubitsch": 7.59e-08, - "lugger": 7.59e-08, - "lumbago": 7.59e-08, - "lume": 7.59e-08, - "lvi": 7.59e-08, - "lynas": 7.59e-08, - "lynley": 7.59e-08, - "lynskey": 7.59e-08, - "lyophilized": 7.59e-08, - "maaaan": 7.59e-08, - "maadi": 7.59e-08, - "madeleines": 7.59e-08, - "mahalia": 7.59e-08, - "mahavira": 7.59e-08, - "mahut": 7.59e-08, - "maintenant": 7.59e-08, - "maji": 7.59e-08, - "malefic": 7.59e-08, - "malinois": 7.59e-08, - "malte": 7.59e-08, - "maluku": 7.59e-08, - "mande": 7.59e-08, - "mangaka": 7.59e-08, - "mantar": 7.59e-08, - "maqbool": 7.59e-08, - "maqsood": 7.59e-08, - "marea": 7.59e-08, - "marstons": 7.59e-08, - "martijn": 7.59e-08, - "masami": 7.59e-08, - "matchplay": 7.59e-08, - "matryoshka": 7.59e-08, - "maurie": 7.59e-08, - "mcbee": 7.59e-08, - "mccawley": 7.59e-08, - "mccullagh": 7.59e-08, - "mcgivern": 7.59e-08, - "mcphersons": 7.59e-08, - "mcwhirter": 7.59e-08, - "meconium": 7.59e-08, - "mediastinal": 7.59e-08, - "mehran": 7.59e-08, - "merchantman": 7.59e-08, - "mesdames": 7.59e-08, - "meshuggah": 7.59e-08, - "mest": 7.59e-08, - "metaphase": 7.59e-08, - "metropcs": 7.59e-08, - "meursault": 7.59e-08, - "meyerbeer": 7.59e-08, - "mgc": 7.59e-08, - "michelob": 7.59e-08, - "microfilms": 7.59e-08, - "militarised": 7.59e-08, - "millipede": 7.59e-08, - "milners": 7.59e-08, - "mindshare": 7.59e-08, - "minifig": 7.59e-08, - "miru": 7.59e-08, - "mismanaging": 7.59e-08, - "moji": 7.59e-08, - "monck": 7.59e-08, - "monotonically": 7.59e-08, - "montalbano": 7.59e-08, - "mooks": 7.59e-08, - "moonstruck": 7.59e-08, - "moroney": 7.59e-08, - "morry": 7.59e-08, - "mortalities": 7.59e-08, - "mothercare": 7.59e-08, - "moussaoui": 7.59e-08, - "mpu": 7.59e-08, - "muddles": 7.59e-08, - "muffy": 7.59e-08, - "mullion": 7.59e-08, - "multinomial": 7.59e-08, - "multiuser": 7.59e-08, - "mummery": 7.59e-08, - "munford": 7.59e-08, - "municipalitys": 7.59e-08, - "murayama": 7.59e-08, - "murex": 7.59e-08, - "murmurings": 7.59e-08, - "murnaghan": 7.59e-08, - "mutism": 7.59e-08, - "nahan": 7.59e-08, - "nambour": 7.59e-08, - "namin": 7.59e-08, - "naphtali": 7.59e-08, - "nashe": 7.59e-08, - "nbome": 7.59e-08, - "nch": 7.59e-08, - "ndu": 7.59e-08, - "nederlandse": 7.59e-08, - "neice": 7.59e-08, - "nejm": 7.59e-08, - "nenad": 7.59e-08, - "neptunia": 7.59e-08, - "nerang": 7.59e-08, - "nevi": 7.59e-08, - "newel": 7.59e-08, - "newstalk": 7.59e-08, - "newtownabbey": 7.59e-08, - "nextera": 7.59e-08, - "ngurah": 7.59e-08, - "nixie": 7.59e-08, - "nle": 7.59e-08, - "nly": 7.59e-08, - "nml": 7.59e-08, - "nocturnes": 7.59e-08, - "nonimmigrant": 7.59e-08, - "noro": 7.59e-08, - "nosocomial": 7.59e-08, - "nostro": 7.59e-08, - "nozick": 7.59e-08, - "nutcases": 7.59e-08, - "nutrisystem": 7.59e-08, - "obryan": 7.59e-08, - "oauth": 7.59e-08, - "oberman": 7.59e-08, - "oboro": 7.59e-08, - "obras": 7.59e-08, - "obregon": 7.59e-08, - "ochsner": 7.59e-08, - "ocn": 7.59e-08, - "odot": 7.59e-08, - "offen": 7.59e-08, - "ogled": 7.59e-08, - "okamura": 7.59e-08, - "oken": 7.59e-08, - "okuda": 7.59e-08, - "oleracea": 7.59e-08, - "olimpico": 7.59e-08, - "onder": 7.59e-08, - "onizuka": 7.59e-08, - "ooof": 7.59e-08, - "orbicular": 7.59e-08, - "orbitofrontal": 7.59e-08, - "orientalists": 7.59e-08, - "ornamentals": 7.59e-08, - "orthodontists": 7.59e-08, - "oryzae": 7.59e-08, - "osseous": 7.59e-08, - "ossetian": 7.59e-08, - "osteria": 7.59e-08, - "oum": 7.59e-08, - "outlasting": 7.59e-08, - "outraging": 7.59e-08, - "outwitting": 7.59e-08, - "outworld": 7.59e-08, - "overal": 7.59e-08, - "overbroad": 7.59e-08, - "overdeveloped": 7.59e-08, - "overeager": 7.59e-08, - "overspill": 7.59e-08, - "overtop": 7.59e-08, - "oxygenate": 7.59e-08, - "padmavati": 7.59e-08, - "padraic": 7.59e-08, - "paka": 7.59e-08, - "palat": 7.59e-08, - "pallavi": 7.59e-08, - "panicle": 7.59e-08, - "panisse": 7.59e-08, - "panofsky": 7.59e-08, - "papercut": 7.59e-08, - "papo": 7.59e-08, - "paramaribo": 7.59e-08, - "parcc": 7.59e-08, - "pardi": 7.59e-08, - "parochialism": 7.59e-08, - "parrikar": 7.59e-08, - "patootie": 7.59e-08, - "pattering": 7.59e-08, - "paulist": 7.59e-08, - "payg": 7.59e-08, - "pectoris": 7.59e-08, - "peden": 7.59e-08, - "peeper": 7.59e-08, - "penghu": 7.59e-08, - "penryn": 7.59e-08, - "pepperell": 7.59e-08, - "peristalsis": 7.59e-08, - "permed": 7.59e-08, - "peronist": 7.59e-08, - "perplex": 7.59e-08, - "petras": 6.61e-08, - "phaidon": 7.59e-08, - "philibert": 7.59e-08, - "phosphorescence": 7.59e-08, - "photobooks": 7.59e-08, - "physiol": 7.59e-08, - "picasa": 7.59e-08, - "piddling": 7.59e-08, - "pilchard": 7.59e-08, - "pingpong": 7.59e-08, - "pinon": 7.59e-08, - "pipedream": 7.59e-08, - "pippo": 7.59e-08, - "placentas": 7.59e-08, - "placers": 7.59e-08, - "plannin": 7.59e-08, - "playdates": 7.59e-08, - "plebe": 7.59e-08, - "plf": 7.59e-08, - "plights": 7.59e-08, - "plodded": 7.59e-08, - "ploughshares": 7.59e-08, - "poca": 7.59e-08, - "policewomen": 7.59e-08, - "pollies": 7.59e-08, - "pommes": 7.59e-08, - "postoperatively": 7.59e-08, - "potentiate": 7.59e-08, - "pouf": 7.59e-08, - "prabhas": 7.59e-08, - "preclearance": 7.59e-08, - "preity": 7.59e-08, - "premia": 7.59e-08, - "prescot": 7.59e-08, - "prive": 7.59e-08, - "prothrombin": 7.59e-08, - "prudes": 7.59e-08, - "pruett": 7.59e-08, - "psychoses": 7.59e-08, - "ptas": 7.59e-08, - "publi": 7.59e-08, - "pugliese": 7.59e-08, - "pulldown": 7.59e-08, - "pumphrey": 7.59e-08, - "punchers": 7.59e-08, - "purines": 7.59e-08, - "pvi": 7.59e-08, - "pycelle": 7.59e-08, - "qala": 7.59e-08, - "qqq": 7.59e-08, - "quadri": 7.59e-08, - "quagga": 7.59e-08, - "quakerism": 7.59e-08, - "quandaries": 7.59e-08, - "queenston": 7.59e-08, - "quen": 7.59e-08, - "quent": 7.59e-08, - "quer": 7.59e-08, - "quijote": 7.59e-08, - "quoque": 7.59e-08, - "raanta": 7.59e-08, - "rabbinate": 7.59e-08, - "radiographers": 7.59e-08, - "ragga": 7.59e-08, - "raker": 7.59e-08, - "rallycross": 7.59e-08, - "rationalising": 7.59e-08, - "razgrad": 7.59e-08, - "rcl": 7.59e-08, - "reaganomics": 7.59e-08, - "realllly": 7.59e-08, - "reapplying": 7.59e-08, - "recapitulate": 7.59e-08, - "rece": 7.59e-08, - "recoding": 7.59e-08, - "recog": 7.59e-08, - "recollecting": 7.59e-08, - "reddest": 7.59e-08, - "redmen": 7.59e-08, - "refactor": 7.59e-08, - "refn": 7.59e-08, - "refuelled": 7.59e-08, - "reggiano": 7.59e-08, - "reimann": 7.59e-08, - "rekindles": 7.59e-08, - "remunerative": 7.59e-08, - "reoccur": 7.59e-08, - "requesters": 7.59e-08, - "requisitioning": 7.59e-08, - "resupplied": 7.59e-08, - "retype": 7.59e-08, - "revan": 7.59e-08, - "rexford": 7.59e-08, - "richy": 7.59e-08, - "rietveld": 7.59e-08, - "rifampicin": 7.59e-08, - "riffraff": 7.59e-08, - "riskin": 7.59e-08, - "rivard": 7.59e-08, - "rmm": 7.59e-08, - "rnp": 7.59e-08, - "rober": 7.59e-08, - "roentgen": 7.59e-08, - "romina": 7.59e-08, - "rosetti": 7.59e-08, - "rossignol": 7.59e-08, - "rossy": 7.59e-08, - "rubberband": 7.59e-08, - "ruch": 7.59e-08, - "rufino": 7.59e-08, - "rustys": 7.59e-08, - "rutherfords": 7.59e-08, - "sabertooth": 7.59e-08, - "sabonis": 7.59e-08, - "sabretooth": 7.59e-08, - "sacristan": 7.59e-08, - "saigo": 7.59e-08, - "saini": 7.59e-08, - "salvages": 7.59e-08, - "samhsa": 7.59e-08, - "samovar": 7.59e-08, - "samoyed": 7.59e-08, - "sanatan": 7.59e-08, - "sandbagged": 7.59e-08, - "sanitised": 7.59e-08, - "sanur": 7.59e-08, - "sanyal": 7.59e-08, - "saucony": 7.59e-08, - "scads": 7.59e-08, - "scharnhorst": 7.59e-08, - "scherrer": 7.59e-08, - "schoonmaker": 7.59e-08, - "schuh": 7.59e-08, - "schwabe": 7.59e-08, - "scintillator": 7.59e-08, - "scissoring": 7.59e-08, - "scmp": 7.59e-08, - "scoob": 7.59e-08, - "scourged": 7.59e-08, - "scrying": 7.59e-08, - "seabees": 7.59e-08, - "sead": 7.59e-08, - "sealey": 7.59e-08, - "securitized": 7.59e-08, - "seebohm": 7.59e-08, - "segregationists": 7.59e-08, - "seiyuu": 7.59e-08, - "selatan": 7.59e-08, - "senex": 7.59e-08, - "sensationalistic": 7.59e-08, - "sentral": 7.59e-08, - "serj": 7.59e-08, - "serpentinite": 7.59e-08, - "servian": 7.59e-08, - "servitor": 7.59e-08, - "seyi": 7.59e-08, - "sft": 7.59e-08, - "sgl": 7.59e-08, - "shahar": 7.59e-08, - "shaitan": 7.59e-08, - "shakespear": 7.59e-08, - "sharecropping": 7.59e-08, - "sharingan": 7.59e-08, - "sheens": 7.59e-08, - "sheers": 7.59e-08, - "sholto": 7.59e-08, - "shortland": 7.59e-08, - "shulk": 7.59e-08, - "sial": 7.59e-08, - "sideshows": 7.59e-08, - "sigils": 7.59e-08, - "sikandar": 7.59e-08, - "sikka": 7.59e-08, - "silane": 7.59e-08, - "simbas": 7.59e-08, - "sinden": 7.59e-08, - "sinecure": 7.59e-08, - "sixsmith": 7.59e-08, - "slackware": 7.59e-08, - "slaveholding": 7.59e-08, - "sloughing": 7.59e-08, - "smap": 7.59e-08, - "snowblower": 7.59e-08, - "sociopathy": 7.59e-08, - "softail": 7.59e-08, - "sojourners": 7.59e-08, - "soliders": 7.59e-08, - "solovyov": 7.59e-08, - "soltan": 7.59e-08, - "somi": 7.59e-08, - "sonakshi": 7.59e-08, - "sorbo": 7.59e-08, - "sorn": 7.59e-08, - "soroka": 7.59e-08, - "soudan": 7.59e-08, - "sparknotes": 7.59e-08, - "speakman": 7.59e-08, - "spofford": 7.59e-08, - "spooling": 7.59e-08, - "sprott": 7.59e-08, - "squalene": 7.59e-08, - "squeezer": 7.59e-08, - "squelched": 7.59e-08, - "srinivasa": 7.59e-08, - "stav": 7.59e-08, - "stayers": 7.59e-08, - "steadies": 7.59e-08, - "stellaris": 7.59e-08, - "sterilizations": 7.59e-08, - "streicher": 7.59e-08, - "struan": 7.59e-08, - "stumptown": 7.59e-08, - "substantiates": 7.59e-08, - "suf": 7.59e-08, - "suffragan": 7.59e-08, - "sugita": 7.59e-08, - "suliman": 7.59e-08, - "sulpice": 7.59e-08, - "summerside": 7.59e-08, - "sunde": 7.59e-08, - "supercooled": 7.59e-08, - "superstate": 7.59e-08, - "sups": 7.59e-08, - "surgerys": 7.59e-08, - "sutlej": 7.59e-08, - "syngas": 7.59e-08, - "syracuses": 7.59e-08, - "systematize": 7.59e-08, - "tablo": 7.59e-08, - "taddeo": 7.59e-08, - "taipans": 7.59e-08, - "takayuki": 7.59e-08, - "talmage": 7.59e-08, - "tamasha": 7.59e-08, - "tanyas": 7.59e-08, - "tanzanians": 7.59e-08, - "taoists": 7.59e-08, - "tapout": 7.59e-08, - "tarak": 7.59e-08, - "tarski": 7.59e-08, - "tatas": 5.01e-08, - "tazer": 7.59e-08, - "telenovelas": 7.59e-08, - "telstar": 7.59e-08, - "tennille": 7.59e-08, - "tenterhooks": 7.59e-08, - "tetrahedra": 7.59e-08, - "thala": 7.59e-08, - "thalberg": 7.59e-08, - "theil": 7.59e-08, - "theologie": 7.59e-08, - "thigpen": 7.59e-08, - "thisbe": 7.59e-08, - "thrillingly": 7.59e-08, - "thrumming": 7.59e-08, - "thumbtack": 7.59e-08, - "tiering": 7.59e-08, - "tiffs": 7.59e-08, - "timofey": 7.59e-08, - "tintagel": 7.59e-08, - "tipsters": 7.59e-08, - "titanics": 7.59e-08, - "tity": 7.59e-08, - "tlou": 7.59e-08, - "tobie": 7.59e-08, - "tolhurst": 7.59e-08, - "tomkinson": 7.59e-08, - "toreador": 7.59e-08, - "torx": 7.59e-08, - "tourbillon": 7.59e-08, - "tourneur": 7.59e-08, - "transistorized": 7.59e-08, - "transoceanic": 7.59e-08, - "trawled": 7.59e-08, - "tsukiji": 7.59e-08, - "tsukishima": 7.59e-08, - "tuilagi": 7.59e-08, - "tukey": 7.59e-08, - "tunisie": 7.59e-08, - "turbodiesel": 7.59e-08, - "tuxes": 7.59e-08, - "tweakers": 7.59e-08, - "tyers": 7.59e-08, - "tym": 7.59e-08, - "ubereats": 7.59e-08, - "uka": 7.59e-08, - "ulam": 7.59e-08, - "ulmus": 7.59e-08, - "ultrahigh": 7.59e-08, - "ultranationalist": 7.59e-08, - "unaccountably": 7.59e-08, - "unconstitutionality": 7.59e-08, - "underdressed": 7.59e-08, - "unexcused": 7.59e-08, - "unfeminine": 7.59e-08, - "uniaxial": 7.59e-08, - "unpatched": 7.59e-08, - "unprivileged": 7.59e-08, - "unrealised": 7.59e-08, - "unshackled": 7.59e-08, - "untraditional": 7.59e-08, - "untranslatable": 7.59e-08, - "upnp": 7.59e-08, - "upperclassman": 7.59e-08, - "urbans": 7.59e-08, - "uridine": 7.59e-08, - "usis": 7.59e-08, - "utilitys": 7.59e-08, - "utorrent": 7.59e-08, - "vacates": 7.59e-08, - "vaginosis": 7.59e-08, - "vandoorne": 7.59e-08, - "vassalage": 7.59e-08, - "vayu": 7.59e-08, - "vdot": 7.59e-08, - "vedran": 7.59e-08, - "veit": 7.59e-08, - "venturebeat": 7.59e-08, - "verdana": 7.59e-08, - "verite": 7.59e-08, - "versteeg": 7.59e-08, - "verus": 7.59e-08, - "virchow": 7.59e-08, - "visegrad": 7.59e-08, - "vizsla": 7.59e-08, - "vocative": 7.59e-08, - "vrai": 7.59e-08, - "wackiest": 7.59e-08, - "wainwrights": 7.59e-08, - "wakefields": 7.59e-08, - "walston": 7.59e-08, - "warbird": 7.59e-08, - "wardak": 7.59e-08, - "warez": 7.59e-08, - "washingtonians": 7.59e-08, - "waterlogging": 7.59e-08, - "watfords": 7.59e-08, - "waughs": 7.59e-08, - "wavey": 7.59e-08, - "wayang": 7.59e-08, - "wazowski": 7.59e-08, - "weaponizing": 7.59e-08, - "webchat": 7.59e-08, - "weidner": 7.59e-08, - "weightman": 7.59e-08, - "whippings": 7.59e-08, - "wholegrain": 7.59e-08, - "wibbly": 7.59e-08, - "wielders": 7.59e-08, - "wimpole": 7.59e-08, - "windsors": 5.75e-08, - "wingmen": 7.59e-08, - "winne": 7.59e-08, - "winnemucca": 7.59e-08, - "winnow": 7.59e-08, - "wireshark": 7.59e-08, - "wises": 7.59e-08, - "wister": 7.59e-08, - "withholdings": 7.59e-08, - "wiwa": 7.59e-08, - "wolfy": 7.59e-08, - "wonkas": 7.59e-08, - "worths": 7.24e-08, - "wrekin": 7.59e-08, - "wrightson": 7.59e-08, - "wuv": 7.59e-08, - "wycherley": 7.59e-08, - "ximena": 7.59e-08, - "yans": 7.59e-08, - "yanukovich": 7.59e-08, - "yari": 7.59e-08, - "yasuhiro": 7.59e-08, - "yesallwomen": 7.59e-08, - "yezidi": 7.59e-08, - "yishun": 7.59e-08, - "yogesh": 7.59e-08, - "youku": 7.59e-08, - "yousif": 7.59e-08, - "yug": 7.59e-08, - "yukata": 7.59e-08, - "yukos": 7.59e-08, - "yuwen": 7.59e-08, - "zakharova": 7.59e-08, - "zeki": 7.59e-08, - "zephyrs": 7.59e-08, - "zeroth": 7.59e-08, - "zions": 6.92e-08, - "zubin": 7.59e-08, - "zumiez": 7.59e-08, - "acclimatisation": 7.41e-08, - "acostas": 7.41e-08, - "adw": 7.41e-08, - "aereo": 7.41e-08, - "agenesis": 7.41e-08, - "aiguille": 7.41e-08, - "akl": 7.41e-08, - "alavi": 7.41e-08, - "albanys": 7.41e-08, - "alesia": 7.41e-08, - "alfreton": 7.41e-08, - "alick": 7.41e-08, - "allain": 7.41e-08, - "allocator": 7.41e-08, - "altitudinal": 7.41e-08, - "alyssas": 7.41e-08, - "amazigh": 7.41e-08, - "amoebas": 7.41e-08, - "amphorae": 7.41e-08, - "ampk": 7.41e-08, - "amul": 7.41e-08, - "andrewes": 7.41e-08, - "andromache": 7.41e-08, - "anemometer": 7.41e-08, - "angelenos": 7.41e-08, - "angharad": 7.41e-08, - "annexure": 7.41e-08, - "antikythera": 7.41e-08, - "antm": 7.41e-08, - "apapa": 7.41e-08, - "apne": 7.41e-08, - "appealingly": 7.41e-08, - "apposed": 7.41e-08, - "aprox": 7.41e-08, - "aquatica": 7.41e-08, - "aquire": 7.41e-08, - "arcee": 7.41e-08, - "arcus": 7.41e-08, - "arens": 7.41e-08, - "arleigh": 7.41e-08, - "arlong": 7.41e-08, - "arnim": 7.41e-08, - "arteriovenous": 7.41e-08, - "asahina": 7.41e-08, - "aspens": 7.41e-08, - "aspley": 7.41e-08, - "asra": 7.41e-08, - "athletico": 7.41e-08, - "atilla": 7.41e-08, - "attires": 7.41e-08, - "audaciously": 7.41e-08, - "aue": 7.41e-08, - "auv": 7.41e-08, - "avco": 7.41e-08, - "avers": 7.41e-08, - "averts": 7.41e-08, - "badcock": 7.41e-08, - "baedeker": 7.41e-08, - "baj": 7.41e-08, - "bako": 7.41e-08, - "balayage": 7.41e-08, - "baldly": 7.41e-08, - "balme": 7.41e-08, - "bandaids": 7.41e-08, - "bandi": 7.41e-08, - "bango": 7.41e-08, - "barbacoa": 7.41e-08, - "bargnani": 7.41e-08, - "barthelemy": 7.41e-08, - "basicly": 7.41e-08, - "batsuit": 7.41e-08, - "battened": 7.41e-08, - "baumbach": 7.41e-08, - "baumer": 7.41e-08, - "beamline": 7.41e-08, - "bedeviled": 7.41e-08, - "beed": 7.41e-08, - "belarusians": 7.41e-08, - "belsize": 7.41e-08, - "benguela": 7.41e-08, - "berchtold": 7.41e-08, - "berenger": 7.41e-08, - "bergmans": 7.41e-08, - "berkey": 7.41e-08, - "berkhamsted": 7.41e-08, - "bernadino": 7.41e-08, - "bertil": 7.41e-08, - "bertolucci": 7.41e-08, - "berzerk": 7.41e-08, - "bethanys": 7.41e-08, - "bettendorf": 7.41e-08, - "bextor": 7.41e-08, - "beynon": 7.41e-08, - "bgsu": 7.41e-08, - "bhagalpur": 7.41e-08, - "bhikkhu": 7.41e-08, - "bhishma": 7.41e-08, - "bickell": 7.41e-08, - "bickerstaff": 7.41e-08, - "biddies": 7.41e-08, - "bielema": 7.41e-08, - "bienville": 7.41e-08, - "bilberry": 7.41e-08, - "bildungsroman": 7.41e-08, - "bilzerian": 7.41e-08, - "biogeochemistry": 7.41e-08, - "biogeographic": 7.41e-08, - "birdwood": 7.41e-08, - "bissonnette": 7.41e-08, - "bixler": 7.41e-08, - "blackboards": 7.41e-08, - "blackshirts": 7.41e-08, - "blg": 7.41e-08, - "blin": 7.41e-08, - "blomfield": 7.41e-08, - "bloodworth": 7.41e-08, - "bogdanovic": 7.41e-08, - "bohlen": 7.41e-08, - "bonnyrigg": 7.41e-08, - "boogey": 7.41e-08, - "bookended": 7.41e-08, - "boosie": 7.41e-08, - "borers": 7.41e-08, - "borge": 7.41e-08, - "bornholm": 7.41e-08, - "bota": 7.41e-08, - "botafogo": 7.41e-08, - "bottomland": 7.41e-08, - "boubacar": 7.41e-08, - "boulet": 7.41e-08, - "bouma": 7.41e-08, - "boutta": 7.41e-08, - "bouvet": 7.41e-08, - "bowties": 7.41e-08, - "boze": 7.41e-08, - "brackenridge": 7.41e-08, - "braggs": 7.41e-08, - "brainstormed": 7.41e-08, - "brasiliensis": 7.41e-08, - "braswell": 7.41e-08, - "brexiteer": 7.41e-08, - "briars": 7.41e-08, - "bridezilla": 7.41e-08, - "brigitta": 7.41e-08, - "broadus": 7.41e-08, - "brockhampton": 7.41e-08, - "bronxville": 7.41e-08, - "brookman": 7.41e-08, - "brownstones": 7.41e-08, - "bruneau": 7.41e-08, - "brus": 7.41e-08, - "budgies": 7.41e-08, - "bulgogi": 7.41e-08, - "bulkley": 7.41e-08, - "bungies": 7.41e-08, - "bunning": 7.41e-08, - "buntings": 7.41e-08, - "burna": 7.41e-08, - "burrowes": 7.41e-08, - "businessmans": 7.41e-08, - "bustles": 7.41e-08, - "butlin": 7.41e-08, - "bwf": 7.41e-08, - "byus": 7.41e-08, - "cabi": 7.41e-08, - "calandra": 7.41e-08, - "camaros": 7.41e-08, - "campanian": 7.41e-08, - "campbellsville": 7.41e-08, - "canale": 7.41e-08, - "cantus": 1.07e-08, - "capensis": 7.41e-08, - "capos": 7.41e-08, - "capron": 7.41e-08, - "careerist": 7.41e-08, - "carloss": 7.41e-08, - "carrageenan": 7.41e-08, - "catechist": 7.41e-08, - "cathar": 7.41e-08, - "caversham": 7.41e-08, - "cayla": 7.41e-08, - "cazenovia": 7.41e-08, - "cbu": 7.41e-08, - "ccps": 6.31e-08, - "celestina": 7.41e-08, - "cephalosporin": 7.41e-08, - "chaat": 7.41e-08, - "chakravarty": 7.41e-08, - "chamba": 7.41e-08, - "chato": 7.41e-08, - "chava": 7.41e-08, - "checkboxes": 7.41e-08, - "chenab": 7.41e-08, - "cherno": 7.41e-08, - "chevrolets": 7.41e-08, - "chickasha": 7.41e-08, - "chickering": 7.41e-08, - "chiefdom": 7.41e-08, - "childlessness": 7.41e-08, - "chocolaty": 7.41e-08, - "christensens": 7.41e-08, - "christys": 7.41e-08, - "cinci": 7.41e-08, - "cinematically": 7.41e-08, - "circum": 7.41e-08, - "cisa": 7.41e-08, - "clamorous": 7.41e-08, - "clifftop": 7.41e-08, - "clingfilm": 7.41e-08, - "clipse": 7.41e-08, - "clowned": 7.41e-08, - "cmn": 7.41e-08, - "coase": 7.41e-08, - "codebook": 7.41e-08, - "codebreaker": 7.41e-08, - "codemasters": 7.41e-08, - "coiffed": 7.41e-08, - "colab": 7.41e-08, - "coldfusion": 7.41e-08, - "coligny": 7.41e-08, - "collazo": 7.41e-08, - "commandants": 5.75e-08, - "concessionaires": 7.41e-08, - "conda": 7.41e-08, - "consistencies": 7.41e-08, - "consuela": 7.41e-08, - "contorting": 7.41e-08, - "coolants": 7.41e-08, - "copperplate": 7.41e-08, - "corba": 7.41e-08, - "cornus": 7.41e-08, - "correlational": 7.41e-08, - "counterfeiter": 7.41e-08, - "crafton": 7.41e-08, - "crassa": 7.41e-08, - "crepuscular": 7.41e-08, - "cretans": 7.41e-08, - "criminalising": 7.41e-08, - "criollo": 7.41e-08, - "cristinas": 7.41e-08, - "cristy": 7.41e-08, - "crossin": 7.41e-08, - "crotchless": 7.41e-08, - "crr": 7.41e-08, - "cryptanalysis": 7.41e-08, - "curle": 7.41e-08, - "curmudgeonly": 7.41e-08, - "cwb": 7.41e-08, - "cyanotic": 7.41e-08, - "cyclopaedia": 7.41e-08, - "czerny": 7.41e-08, - "daddario": 7.41e-08, - "damiens": 7.41e-08, - "dapple": 7.41e-08, - "daps": 7.41e-08, - "dargah": 7.41e-08, - "dcfs": 7.41e-08, - "deangelis": 7.41e-08, - "decs": 5.01e-08, - "decompositions": 7.41e-08, - "defacement": 7.41e-08, - "deine": 7.41e-08, - "deka": 7.41e-08, - "delias": 7.41e-08, - "delist": 7.41e-08, - "deliveryman": 7.41e-08, - "dema": 7.41e-08, - "demersal": 7.41e-08, - "demme": 7.41e-08, - "demodulator": 7.41e-08, - "demystified": 7.41e-08, - "denims": 7.41e-08, - "densmore": 7.41e-08, - "detailer": 7.41e-08, - "detractor": 7.41e-08, - "detuned": 7.41e-08, - "dfes": 7.41e-08, - "dfp": 7.41e-08, - "dharmendra": 7.41e-08, - "diagrammatic": 7.41e-08, - "diapause": 7.41e-08, - "dicken": 7.41e-08, - "dihydroxy": 7.41e-08, - "dilates": 7.41e-08, - "diminishment": 7.41e-08, - "dinahs": 7.41e-08, - "dinny": 7.41e-08, - "dinucleotide": 7.41e-08, - "dipa": 7.41e-08, - "disapointed": 7.41e-08, - "discerns": 7.41e-08, - "discounters": 7.41e-08, - "disinterred": 7.41e-08, - "dispersant": 7.41e-08, - "ditko": 7.41e-08, - "dks": 5.13e-08, - "doby": 7.41e-08, - "docetaxel": 7.41e-08, - "dockworkers": 7.41e-08, - "dokie": 7.41e-08, - "doku": 7.41e-08, - "doman": 7.41e-08, - "domiciles": 7.41e-08, - "dopants": 7.41e-08, - "dorrance": 7.41e-08, - "douai": 7.41e-08, - "dovish": 7.41e-08, - "dpj": 7.41e-08, - "drakensberg": 7.41e-08, - "dugger": 7.41e-08, - "dully": 7.41e-08, - "dungey": 7.41e-08, - "dustys": 7.41e-08, - "dymond": 7.41e-08, - "dyspraxia": 7.41e-08, - "eachothers": 7.41e-08, - "earmarking": 7.41e-08, - "easels": 7.41e-08, - "ectodermal": 7.41e-08, - "edgington": 7.41e-08, - "eichelberger": 7.41e-08, - "eifel": 7.41e-08, - "elderberries": 7.41e-08, - "eldin": 7.41e-08, - "electroweak": 7.41e-08, - "ellum": 7.41e-08, - "emis": 5.89e-08, - "emmott": 7.41e-08, - "empathizing": 7.41e-08, - "empedocles": 7.41e-08, - "empoli": 7.41e-08, - "enf": 7.41e-08, - "enfold": 7.41e-08, - "enga": 7.41e-08, - "enki": 7.41e-08, - "enrollee": 7.41e-08, - "enshrinement": 7.41e-08, - "ensnaring": 7.41e-08, - "entrada": 7.41e-08, - "entreaty": 7.41e-08, - "envi": 7.41e-08, - "erbium": 7.41e-08, - "erster": 7.41e-08, - "espejo": 7.41e-08, - "ethiopic": 7.41e-08, - "ethnical": 7.41e-08, - "eurasians": 7.41e-08, - "eurobeat": 7.41e-08, - "eurotunnel": 7.41e-08, - "euthanised": 7.41e-08, - "excitements": 7.41e-08, - "exploder": 7.41e-08, - "expositor": 7.41e-08, - "ezek": 7.41e-08, - "fabrik": 7.41e-08, - "fadel": 7.41e-08, - "faffing": 7.41e-08, - "fairys": 7.41e-08, - "fanzines": 7.41e-08, - "farias": 7.41e-08, - "farmhands": 7.41e-08, - "faulks": 7.41e-08, - "feedforward": 7.41e-08, - "feelsbadman": 7.41e-08, - "feit": 7.41e-08, - "felicitations": 7.41e-08, - "ferny": 7.41e-08, - "ferrel": 7.41e-08, - "fice": 7.41e-08, - "fifpro": 7.41e-08, - "finchers": 7.41e-08, - "fiord": 7.41e-08, - "fiorentino": 7.41e-08, - "fireteam": 7.41e-08, - "firmest": 7.41e-08, - "firstname": 7.41e-08, - "firstpost": 7.41e-08, - "fishhook": 7.41e-08, - "fissured": 7.41e-08, - "fitzs": 7.41e-08, - "fitzgibbons": 7.41e-08, - "fixedly": 7.41e-08, - "flagpoles": 7.41e-08, - "flavus": 7.41e-08, - "flexner": 7.41e-08, - "fluffs": 7.41e-08, - "folksongs": 7.41e-08, - "foramina": 7.41e-08, - "forebear": 7.41e-08, - "forestier": 7.41e-08, - "forgoes": 7.41e-08, - "formentera": 7.41e-08, - "forsure": 7.41e-08, - "forsyte": 7.41e-08, - "francophile": 7.41e-08, - "frascati": 7.41e-08, - "fratricidal": 7.41e-08, - "freebird": 7.41e-08, - "frens": 7.41e-08, - "fretwork": 7.41e-08, - "frontotemporal": 7.41e-08, - "fsw": 7.41e-08, - "fultons": 7.41e-08, - "fumi": 7.41e-08, - "fumigate": 7.41e-08, - "futuna": 7.41e-08, - "gabonese": 7.41e-08, - "gahan": 7.41e-08, - "gamekeepers": 7.41e-08, - "gangtok": 7.41e-08, - "garneau": 7.41e-08, - "gastown": 7.41e-08, - "gbit": 7.41e-08, - "gct": 7.41e-08, - "geier": 7.41e-08, - "gelded": 7.41e-08, - "gemmill": 7.41e-08, - "geni": 7.41e-08, - "gerontological": 7.41e-08, - "gerty": 7.41e-08, - "gervinho": 7.41e-08, - "gerwig": 7.41e-08, - "gesell": 7.41e-08, - "gga": 7.41e-08, - "gibbous": 7.41e-08, - "gigantea": 7.41e-08, - "gigli": 7.41e-08, - "giovinco": 7.41e-08, - "glassworks": 7.41e-08, - "glowingly": 7.41e-08, - "glucosidase": 7.41e-08, - "glynis": 7.41e-08, - "gode": 7.41e-08, - "godhra": 7.41e-08, - "goenka": 7.41e-08, - "gorgias": 7.41e-08, - "gormless": 7.41e-08, - "gostkowski": 7.41e-08, - "grammes": 7.41e-08, - "greitens": 7.41e-08, - "grovers": 7.41e-08, - "grube": 7.41e-08, - "guattari": 7.41e-08, - "gues": 7.41e-08, - "gulu": 7.41e-08, - "gumming": 7.41e-08, - "gunmans": 7.41e-08, - "gwinn": 7.41e-08, - "hadids": 7.41e-08, - "hadj": 7.41e-08, - "haftar": 7.41e-08, - "haikus": 7.41e-08, - "haken": 7.41e-08, - "halfa": 7.41e-08, - "hamass": 7.41e-08, - "hammerschmidt": 7.41e-08, - "hanns": 7.41e-08, - "hardiest": 7.41e-08, - "harrer": 7.41e-08, - "hartsville": 7.41e-08, - "hause": 7.41e-08, - "hawked": 7.41e-08, - "haylie": 7.41e-08, - "hdcp": 7.41e-08, - "heera": 7.41e-08, - "helicarrier": 7.41e-08, - "hellebore": 7.41e-08, - "hellespont": 7.41e-08, - "hellyer": 7.41e-08, - "heterodyne": 7.41e-08, - "hexed": 7.41e-08, - "hha": 7.41e-08, - "hieratic": 7.41e-08, - "higbee": 7.41e-08, - "higson": 7.41e-08, - "hima": 7.41e-08, - "hindemith": 7.41e-08, - "hippity": 7.41e-08, - "hns": 7.41e-08, - "hobs": 7.41e-08, - "hodkinson": 7.41e-08, - "hogsmeade": 7.41e-08, - "homophone": 7.41e-08, - "honeycombs": 7.41e-08, - "horkheimer": 7.41e-08, - "horsewoman": 7.41e-08, - "hostelry": 7.41e-08, - "hotplate": 7.41e-08, - "hrcs": 7.41e-08, - "huelva": 7.41e-08, - "huertas": 7.41e-08, - "hurn": 7.41e-08, - "husson": 7.41e-08, - "hva": 7.41e-08, - "hydrolyze": 7.41e-08, - "hygrometer": 7.41e-08, - "hynix": 7.41e-08, - "hypermobility": 7.41e-08, - "hyperx": 7.41e-08, - "hypothyroid": 7.41e-08, - "iannone": 7.41e-08, - "iaw": 7.41e-08, - "ibig": 7.41e-08, - "ibps": 7.41e-08, - "idu": 7.41e-08, - "ifas": 7.41e-08, - "ifixit": 7.41e-08, - "ihi": 7.41e-08, - "ikey": 7.41e-08, - "imidazole": 7.41e-08, - "immunosuppressants": 7.41e-08, - "impa": 7.41e-08, - "inconceivably": 7.41e-08, - "indentures": 7.41e-08, - "indirection": 7.41e-08, - "individualization": 7.41e-08, - "individualize": 7.41e-08, - "indulgently": 7.41e-08, - "injective": 7.41e-08, - "inscribing": 7.41e-08, - "inten": 7.41e-08, - "interlayer": 7.41e-08, - "interscience": 7.41e-08, - "intj": 7.41e-08, - "introspect": 7.41e-08, - "investigaciones": 7.41e-08, - "iommi": 7.41e-08, - "irwindale": 7.41e-08, - "isakson": 7.41e-08, - "iseult": 7.41e-08, - "ishak": 7.41e-08, - "iskcon": 7.41e-08, - "isolators": 7.41e-08, - "isotype": 7.41e-08, - "iup": 7.41e-08, - "jacksonvilles": 7.41e-08, - "jais": 7.41e-08, - "jamnagar": 7.41e-08, - "jankovic": 7.41e-08, - "jaycees": 7.41e-08, - "jcw": 7.41e-08, - "jebs": 7.41e-08, - "jephthah": 7.41e-08, - "jests": 7.41e-08, - "jezza": 7.41e-08, - "jiff": 7.41e-08, - "jih": 7.41e-08, - "jnk": 7.41e-08, - "joli": 7.41e-08, - "jonker": 7.41e-08, - "jorden": 7.41e-08, - "jovis": 7.41e-08, - "jpa": 7.41e-08, - "jsr": 7.41e-08, - "jumia": 7.41e-08, - "juniperus": 7.41e-08, - "juwan": 7.41e-08, - "kaby": 7.41e-08, - "kadena": 7.41e-08, - "kaela": 7.41e-08, - "kahului": 7.41e-08, - "kalama": 7.41e-08, - "kalas": 7.41e-08, - "kanai": 7.41e-08, - "kapo": 7.41e-08, - "kariba": 7.41e-08, - "karte": 7.41e-08, - "kelsi": 7.41e-08, - "keohane": 7.41e-08, - "kestrels": 7.41e-08, - "khaleds": 7.41e-08, - "khanate": 7.41e-08, - "khilafat": 7.41e-08, - "kickflip": 7.41e-08, - "killary": 7.41e-08, - "killcam": 7.41e-08, - "kindergarden": 7.41e-08, - "kindersley": 7.41e-08, - "kipping": 7.41e-08, - "klingberg": 7.41e-08, - "kobra": 7.41e-08, - "koepka": 7.41e-08, - "kogarah": 7.41e-08, - "konstantinov": 7.41e-08, - "konstanz": 7.41e-08, - "kontakt": 7.41e-08, - "kopf": 7.41e-08, - "koth": 7.41e-08, - "kraig": 7.41e-08, - "kreps": 7.41e-08, - "kreutz": 7.41e-08, - "krumm": 7.41e-08, - "krystyna": 7.41e-08, - "kupfer": 7.41e-08, - "kyoshi": 7.41e-08, - "laba": 7.41e-08, - "lacerating": 7.41e-08, - "ladue": 7.41e-08, - "lajoie": 7.41e-08, - "lakoff": 7.41e-08, - "lamotrigine": 7.41e-08, - "lanced": 7.41e-08, - "landeskog": 7.41e-08, - "landslip": 7.41e-08, - "langes": 7.41e-08, - "lappin": 7.41e-08, - "larc": 7.41e-08, - "larned": 7.41e-08, - "latifa": 7.41e-08, - "latine": 7.41e-08, - "latkes": 7.41e-08, - "laverton": 7.41e-08, - "lavi": 7.41e-08, - "lazada": 7.41e-08, - "leeper": 7.41e-08, - "leggo": 7.41e-08, - "lehrbuch": 7.41e-08, - "leitz": 7.41e-08, - "lemnos": 7.41e-08, - "lennys": 7.41e-08, - "leukotriene": 7.41e-08, - "lft": 7.41e-08, - "lgd": 7.41e-08, - "lichtman": 7.41e-08, - "lightyears": 7.41e-08, - "lims": 7.24e-08, - "linguini": 7.41e-08, - "liquidations": 7.41e-08, - "llnl": 7.41e-08, - "llr": 7.41e-08, - "llywelyn": 7.41e-08, - "lobel": 7.41e-08, - "lokesh": 7.41e-08, - "lomu": 7.41e-08, - "longhurst": 7.41e-08, - "lsv": 7.41e-08, - "lucado": 7.41e-08, - "lupul": 7.41e-08, - "lxii": 7.41e-08, - "lynbrook": 7.41e-08, - "lyubov": 7.41e-08, - "mlord": 7.41e-08, - "mabe": 7.41e-08, - "macapagal": 7.41e-08, - "macfadyen": 7.41e-08, - "maclagan": 7.41e-08, - "maclaurin": 7.41e-08, - "macrobiotic": 7.41e-08, - "madewell": 7.41e-08, - "magners": 7.41e-08, - "magnetos": 7.41e-08, - "magnetometers": 7.41e-08, - "majka": 7.41e-08, - "maligning": 7.41e-08, - "manabu": 7.41e-08, - "manc": 7.41e-08, - "margareta": 7.41e-08, - "markelle": 7.41e-08, - "marls": 7.41e-08, - "martti": 7.41e-08, - "masham": 7.41e-08, - "maso": 7.41e-08, - "matija": 7.41e-08, - "matsubara": 7.41e-08, - "mayfields": 7.41e-08, - "mayon": 7.41e-08, - "mccay": 7.41e-08, - "mcchord": 7.41e-08, - "mcgrory": 7.41e-08, - "mclarty": 7.41e-08, - "megawati": 7.41e-08, - "melodys": 7.41e-08, - "menger": 7.41e-08, - "menomonee": 7.41e-08, - "menstruate": 7.41e-08, - "mentees": 7.41e-08, - "mif": 7.41e-08, - "mikheil": 7.41e-08, - "milik": 7.41e-08, - "minera": 7.41e-08, - "mizushima": 7.41e-08, - "mladenovic": 7.41e-08, - "mogollon": 7.41e-08, - "moja": 7.41e-08, - "mokpo": 7.41e-08, - "molecularly": 7.41e-08, - "momos": 7.41e-08, - "mondavi": 7.41e-08, - "monona": 7.41e-08, - "monsoonal": 7.41e-08, - "moola": 7.41e-08, - "moonchild": 7.41e-08, - "moorestown": 7.41e-08, - "morbidities": 7.41e-08, - "moriartys": 7.41e-08, - "mossop": 7.41e-08, - "mothered": 7.41e-08, - "moule": 7.41e-08, - "moussaka": 7.41e-08, - "muah": 7.41e-08, - "muerto": 7.41e-08, - "muga": 7.41e-08, - "mugello": 7.41e-08, - "multicam": 7.41e-08, - "munches": 7.41e-08, - "mundine": 7.41e-08, - "murkier": 7.41e-08, - "murli": 7.41e-08, - "musketry": 7.41e-08, - "mustards": 7.41e-08, - "mustique": 7.41e-08, - "mutans": 7.41e-08, - "mutti": 7.41e-08, - "muzaffarpur": 7.41e-08, - "mwp": 7.41e-08, - "myelodysplastic": 7.41e-08, - "mzansi": 7.41e-08, - "nacc": 7.41e-08, - "nahb": 7.41e-08, - "namby": 7.41e-08, - "namesakes": 7.41e-08, - "naniwa": 7.41e-08, - "nanocomposite": 7.41e-08, - "nanomedicine": 7.41e-08, - "naplan": 7.41e-08, - "narva": 7.41e-08, - "narwhals": 7.41e-08, - "nataly": 7.41e-08, - "natanz": 7.41e-08, - "nayyar": 7.41e-08, - "ncds": 7.41e-08, - "ncm": 7.41e-08, - "ncua": 7.41e-08, - "nehrus": 7.41e-08, - "neots": 7.41e-08, - "nepalis": 7.41e-08, - "neuropsychiatry": 7.41e-08, - "ngata": 7.41e-08, - "nichts": 7.41e-08, - "nicoletta": 7.41e-08, - "nightshirt": 7.41e-08, - "nigiri": 7.41e-08, - "nissim": 7.41e-08, - "nitze": 7.41e-08, - "njcaa": 7.41e-08, - "nonis": 7.41e-08, - "noranda": 7.41e-08, - "norberg": 7.41e-08, - "normativity": 7.41e-08, - "notas": 7.41e-08, - "npas": 7.41e-08, - "nrcs": 7.41e-08, - "nrel": 7.41e-08, - "nrj": 7.41e-08, - "nua": 7.41e-08, - "nulls": 7.41e-08, - "nurnberg": 7.41e-08, - "oad": 7.41e-08, - "odham": 7.41e-08, - "ogasawara": 7.41e-08, - "ohlsson": 7.41e-08, - "ohrid": 7.41e-08, - "olympias": 7.41e-08, - "omt": 7.41e-08, - "opentable": 7.41e-08, - "orangeville": 7.41e-08, - "orbach": 7.41e-08, - "orchestre": 7.41e-08, - "orcus": 7.41e-08, - "ordinariness": 7.41e-08, - "orihime": 7.41e-08, - "oriskany": 7.41e-08, - "orrs": 7.41e-08, - "orthotic": 7.41e-08, - "ortizs": 7.41e-08, - "oscilloscopes": 7.41e-08, - "osher": 7.41e-08, - "otoko": 7.41e-08, - "otus": 7.41e-08, - "oul": 7.41e-08, - "outcries": 7.41e-08, - "outlands": 7.41e-08, - "outspokenness": 7.41e-08, - "overachievers": 7.41e-08, - "owie": 7.41e-08, - "oyelowo": 7.41e-08, - "ozma": 7.41e-08, - "pacem": 7.41e-08, - "pacquiaos": 7.41e-08, - "paglia": 7.41e-08, - "palaeontological": 7.41e-08, - "pallbearer": 7.41e-08, - "pallida": 7.41e-08, - "pamelas": 7.41e-08, - "pandanus": 7.41e-08, - "paracel": 7.41e-08, - "parameterization": 7.41e-08, - "paraplegics": 7.41e-08, - "parasitoids": 7.41e-08, - "parenthoods": 7.41e-08, - "parivar": 7.41e-08, - "parkhill": 7.41e-08, - "parrilla": 7.41e-08, - "parvo": 7.41e-08, - "passel": 7.41e-08, - "patapsco": 7.41e-08, - "patriotically": 7.41e-08, - "peals": 7.41e-08, - "pedalboard": 7.41e-08, - "peniel": 7.41e-08, - "penitentiaries": 7.41e-08, - "pennzoil": 7.41e-08, - "penrhyn": 7.41e-08, - "perceptually": 7.41e-08, - "perley": 7.41e-08, - "perseid": 7.41e-08, - "petrovsky": 7.41e-08, - "phalaenopsis": 7.41e-08, - "phillipps": 7.41e-08, - "photocall": 7.41e-08, - "photocatalytic": 7.41e-08, - "photosensitivity": 7.41e-08, - "picosecond": 7.41e-08, - "picu": 7.41e-08, - "piguet": 7.41e-08, - "pillboxes": 7.41e-08, - "pince": 7.41e-08, - "pinfall": 7.41e-08, - "pinilla": 7.41e-08, - "pinkberry": 7.41e-08, - "pinnae": 7.41e-08, - "pipit": 7.41e-08, - "pitchy": 7.41e-08, - "pitlane": 7.41e-08, - "pitlochry": 7.41e-08, - "pittodrie": 7.41e-08, - "plagiarist": 7.41e-08, - "plantinga": 7.41e-08, - "plastid": 7.41e-08, - "playtech": 7.41e-08, - "pleasantness": 7.41e-08, - "plectrum": 7.41e-08, - "pledis": 7.41e-08, - "plena": 7.41e-08, - "plumpton": 7.41e-08, - "polygamists": 7.41e-08, - "polyolefin": 7.41e-08, - "ponys": 7.41e-08, - "popery": 7.41e-08, - "porkys": 7.41e-08, - "portmans": 7.41e-08, - "pota": 7.41e-08, - "potentiometers": 7.41e-08, - "prayerfully": 7.41e-08, - "preindustrial": 7.41e-08, - "pricetag": 7.41e-08, - "probationers": 7.41e-08, - "pronger": 7.41e-08, - "prostrated": 7.41e-08, - "puer": 7.41e-08, - "pusa": 7.41e-08, - "pushovers": 7.41e-08, - "puttnam": 7.41e-08, - "pyrene": 7.41e-08, - "qais": 7.41e-08, - "quaintly": 7.41e-08, - "quantile": 7.41e-08, - "quantitation": 7.41e-08, - "quanzhou": 7.41e-08, - "quapaw": 7.41e-08, - "quatrains": 7.41e-08, - "quietude": 7.41e-08, - "quiting": 7.41e-08, - "quizzically": 7.41e-08, - "radioman": 7.41e-08, - "railhead": 7.41e-08, - "rainbird": 7.41e-08, - "raleighs": 7.41e-08, - "ramdas": 7.41e-08, - "ratt": 7.41e-08, - "ravello": 7.41e-08, - "rcv": 7.41e-08, - "realignments": 7.41e-08, - "reallocating": 7.41e-08, - "rebuts": 7.41e-08, - "recalibrating": 7.41e-08, - "redrum": 7.41e-08, - "redshifts": 7.41e-08, - "reelin": 7.41e-08, - "refashioned": 7.41e-08, - "reichardt": 7.41e-08, - "reification": 7.41e-08, - "reimagines": 7.41e-08, - "reinserted": 7.41e-08, - "reisen": 7.41e-08, - "relaxations": 7.41e-08, - "relevantly": 7.41e-08, - "remsburg": 7.41e-08, - "renfroe": 7.41e-08, - "renko": 7.41e-08, - "repin": 7.41e-08, - "repugnance": 7.41e-08, - "responsibilty": 7.41e-08, - "rethinks": 7.41e-08, - "reticulata": 7.41e-08, - "reticulate": 7.41e-08, - "retour": 7.41e-08, - "rff": 7.41e-08, - "rhodopsin": 7.41e-08, - "rieu": 7.41e-08, - "rifat": 7.41e-08, - "rini": 7.41e-08, - "rinko": 7.41e-08, - "rivista": 7.41e-08, - "rjd": 7.41e-08, - "rne": 7.41e-08, - "roadworthy": 7.41e-08, - "rockfall": 7.41e-08, - "rogans": 7.41e-08, - "rohmer": 7.41e-08, - "romario": 7.41e-08, - "rony": 7.41e-08, - "roofies": 7.41e-08, - "rosalba": 7.41e-08, - "rouhanis": 7.41e-08, - "rowles": 7.41e-08, - "rpp": 7.41e-08, - "rsync": 7.41e-08, - "rubrum": 7.41e-08, - "ruhollah": 7.41e-08, - "rumney": 7.41e-08, - "rumplestiltskin": 7.41e-08, - "rupe": 7.41e-08, - "rusal": 7.41e-08, - "rustica": 7.41e-08, - "ryokan": 7.41e-08, - "saan": 7.41e-08, - "sabbaticals": 7.41e-08, - "sadhus": 7.41e-08, - "saket": 7.41e-08, - "salutatorian": 7.41e-08, - "sampan": 7.41e-08, - "sarat": 7.41e-08, - "sasanian": 7.41e-08, - "satou": 7.41e-08, - "satterthwaite": 7.41e-08, - "savana": 7.41e-08, - "sawai": 7.41e-08, - "sayreville": 7.41e-08, - "sazerac": 7.41e-08, - "scahill": 7.41e-08, - "scheff": 7.41e-08, - "schleck": 7.41e-08, - "scholtz": 7.41e-08, - "schwalbe": 7.41e-08, - "scindia": 7.41e-08, - "scratchings": 7.41e-08, - "scrope": 7.41e-08, - "seamounts": 7.41e-08, - "secr": 7.41e-08, - "sedar": 7.41e-08, - "seid": 7.41e-08, - "seles": 7.41e-08, - "selvedge": 7.41e-08, - "senderos": 7.41e-08, - "senegals": 7.41e-08, - "serratus": 7.41e-08, - "setpoint": 7.41e-08, - "shabba": 7.41e-08, - "shacking": 7.41e-08, - "shanthi": 7.41e-08, - "sharpeners": 7.41e-08, - "shas": 7.41e-08, - "shaye": 7.41e-08, - "shiho": 7.41e-08, - "shikari": 7.41e-08, - "shiners": 7.41e-08, - "shinkai": 7.41e-08, - "shockproof": 7.41e-08, - "shortridge": 7.41e-08, - "shotty": 7.41e-08, - "showstoppers": 7.41e-08, - "shuang": 7.41e-08, - "shunsuke": 7.41e-08, - "shurtleff": 7.41e-08, - "siachen": 7.41e-08, - "sickbed": 7.41e-08, - "sidibe": 7.41e-08, - "sigal": 7.41e-08, - "silex": 7.41e-08, - "sitrep": 7.41e-08, - "sket": 7.41e-08, - "skiba": 7.41e-08, - "skydrive": 7.41e-08, - "skyped": 7.41e-08, - "skyview": 7.41e-08, - "slapp": 7.41e-08, - "slaton": 7.41e-08, - "slf": 7.41e-08, - "slickest": 7.41e-08, - "slipcase": 7.41e-08, - "slk": 7.41e-08, - "sloper": 7.41e-08, - "slouches": 7.41e-08, - "slovo": 7.41e-08, - "sniffers": 7.41e-08, - "snowdrifts": 7.41e-08, - "sodo": 7.41e-08, - "sofya": 7.41e-08, - "sorte": 7.41e-08, - "spac": 7.41e-08, - "spaceplane": 7.41e-08, - "spambots": 7.41e-08, - "sparty": 7.41e-08, - "spearmen": 7.41e-08, - "speedmaster": 7.41e-08, - "speranza": 7.41e-08, - "spinosa": 7.41e-08, - "sportswomen": 7.41e-08, - "spu": 7.41e-08, - "spyros": 1.74e-08, - "squanders": 7.41e-08, - "squarish": 7.41e-08, - "squirter": 7.41e-08, - "srgb": 7.41e-08, - "stabile": 7.41e-08, - "stackers": 7.41e-08, - "starchild": 7.41e-08, - "starvin": 7.41e-08, - "stary": 7.41e-08, - "statistik": 7.41e-08, - "statistique": 7.41e-08, - "stickies": 7.41e-08, - "sticklers": 7.41e-08, - "stimulative": 7.41e-08, - "stip": 7.41e-08, - "stormzy": 7.41e-08, - "straightforwardness": 7.41e-08, - "sturdiness": 7.41e-08, - "subnormal": 7.41e-08, - "substring": 7.41e-08, - "suburbanization": 7.41e-08, - "sueur": 7.41e-08, - "sugarplum": 7.41e-08, - "suggestible": 7.41e-08, - "sugi": 7.41e-08, - "sumitra": 7.41e-08, - "sununu": 7.41e-08, - "superdelegates": 7.41e-08, - "superheavy": 7.41e-08, - "superposed": 7.41e-08, - "surman": 7.41e-08, - "surplice": 7.41e-08, - "surtax": 7.41e-08, - "suwanee": 7.41e-08, - "suzerain": 7.41e-08, - "suzys": 7.41e-08, - "swearingen": 7.41e-08, - "swiffer": 7.41e-08, - "swv": 7.41e-08, - "taga": 7.41e-08, - "tais": 6.61e-08, - "takahiro": 7.41e-08, - "tamarisk": 7.41e-08, - "tamblyn": 7.41e-08, - "tamped": 7.41e-08, - "tanda": 7.41e-08, - "tandems": 7.41e-08, - "tangi": 7.41e-08, - "tanjong": 7.41e-08, - "taoyuan": 7.41e-08, - "tapley": 7.41e-08, - "tareq": 7.41e-08, - "tarka": 7.41e-08, - "tartaric": 7.41e-08, - "taveras": 7.41e-08, - "taylorsville": 7.41e-08, - "temujin": 7.41e-08, - "tennesseans": 7.41e-08, - "tentacled": 7.41e-08, - "tequilas": 7.41e-08, - "terranova": 7.41e-08, - "textbox": 7.41e-08, - "tfeu": 7.41e-08, - "themba": 7.41e-08, - "theworld": 7.41e-08, - "thoms": 7.41e-08, - "thorton": 7.41e-08, - "thumbelina": 7.41e-08, - "tianshan": 7.41e-08, - "tifton": 7.41e-08, - "tiguan": 7.41e-08, - "timmermans": 7.41e-08, - "tiss": 7.41e-08, - "titmouse": 7.41e-08, - "tml": 7.41e-08, - "tobogganing": 7.41e-08, - "toledano": 7.41e-08, - "toltec": 7.41e-08, - "tomos": 7.41e-08, - "tonner": 7.41e-08, - "tormund": 7.41e-08, - "torpedoing": 7.41e-08, - "torricelli": 7.41e-08, - "toulmin": 7.41e-08, - "tourniquets": 7.41e-08, - "townland": 7.41e-08, - "toyotomi": 7.41e-08, - "tracklisting": 7.41e-08, - "trafic": 7.41e-08, - "transgressor": 7.41e-08, - "transposon": 7.41e-08, - "traumatising": 7.41e-08, - "trimer": 7.41e-08, - "tsuda": 7.41e-08, - "turcotte": 7.41e-08, - "turenne": 7.41e-08, - "turfgrass": 7.41e-08, - "twangy": 7.41e-08, - "tweezer": 7.41e-08, - "tyrannus": 7.41e-08, - "uhuh": 7.41e-08, - "ukuleles": 7.41e-08, - "ulcerated": 7.41e-08, - "uls": 7.41e-08, - "ultramarathon": 7.41e-08, - "ultrashort": 7.41e-08, - "unani": 7.41e-08, - "unarguably": 7.41e-08, - "unbanned": 7.41e-08, - "unbundled": 7.41e-08, - "uncommunicative": 7.41e-08, - "underdone": 7.41e-08, - "ungracious": 7.41e-08, - "ungulate": 7.41e-08, - "univeristy": 7.41e-08, - "unlivable": 7.41e-08, - "unmake": 7.41e-08, - "unmediated": 7.41e-08, - "unmonitored": 7.41e-08, - "unpacks": 7.41e-08, - "unselected": 7.41e-08, - "untuk": 7.41e-08, - "unvoiced": 7.41e-08, - "unworldly": 7.41e-08, - "urias": 7.41e-08, - "urinates": 7.41e-08, - "ury": 7.41e-08, - "utt": 7.41e-08, - "valse": 7.41e-08, - "vanguards": 7.24e-08, - "varoufakis": 7.41e-08, - "vasc": 7.41e-08, - "vasiliev": 7.41e-08, - "vaxxers": 7.41e-08, - "vecchia": 7.41e-08, - "verba": 7.41e-08, - "verisign": 7.41e-08, - "vernes": 7.41e-08, - "veux": 7.41e-08, - "vidar": 7.41e-08, - "vigneault": 7.41e-08, - "viktors": 7.41e-08, - "vimal": 7.41e-08, - "vinita": 7.41e-08, - "vitellius": 7.41e-08, - "vitra": 7.41e-08, - "vitrification": 7.41e-08, - "vlasov": 7.41e-08, - "vsat": 7.41e-08, - "vucevic": 7.41e-08, - "wallboard": 7.41e-08, - "wallowa": 7.41e-08, - "wanks": 7.41e-08, - "washbasin": 7.41e-08, - "washita": 7.41e-08, - "waterholes": 7.41e-08, - "watusi": 7.41e-08, - "wcco": 7.41e-08, - "wehner": 7.41e-08, - "westend": 7.41e-08, - "westfalen": 7.41e-08, - "wfm": 7.41e-08, - "whaaa": 7.41e-08, - "whaaaaat": 7.41e-08, - "whacker": 7.41e-08, - "wheatbelt": 7.41e-08, - "whoi": 7.41e-08, - "whomp": 7.41e-08, - "whoooo": 7.41e-08, - "wickford": 7.41e-08, - "wildstar": 7.41e-08, - "willan": 7.41e-08, - "williamsville": 7.41e-08, - "windbag": 7.41e-08, - "windle": 7.41e-08, - "wiseguy": 7.41e-08, - "woad": 7.41e-08, - "wolof": 7.41e-08, - "wolstenholme": 7.41e-08, - "womad": 7.41e-08, - "woodchucks": 7.41e-08, - "woodham": 7.41e-08, - "woodinville": 7.41e-08, - "woodroffe": 7.41e-08, - "wrentham": 7.41e-08, - "wrongheaded": 7.41e-08, - "wynns": 7.41e-08, - "xiaobo": 7.41e-08, - "xinhai": 7.41e-08, - "xna": 7.41e-08, - "xpath": 7.41e-08, - "yamashiro": 7.41e-08, - "yate": 7.41e-08, - "yellowjacket": 7.41e-08, - "yem": 7.41e-08, - "yetis": 7.41e-08, - "yiwu": 7.41e-08, - "ymmv": 7.41e-08, - "yoshizawa": 7.41e-08, - "yuo": 7.41e-08, - "zacs": 7.41e-08, - "zagat": 7.41e-08, - "zantac": 7.41e-08, - "zebre": 7.41e-08, - "zeeman": 7.41e-08, - "zocalo": 7.41e-08, - "zomato": 7.41e-08, - "zomba": 7.41e-08, - "zul": 7.41e-08, - "zwarte": 7.41e-08, - "aaya": 7.24e-08, - "abdicates": 7.24e-08, - "abla": 7.24e-08, - "abortionists": 7.24e-08, - "accom": 7.24e-08, - "accredits": 7.24e-08, - "acetylated": 7.24e-08, - "acoma": 7.24e-08, - "actavis": 7.24e-08, - "actuall": 7.24e-08, - "acx": 7.24e-08, - "adivasis": 7.24e-08, - "adorbs": 7.24e-08, - "ados": 7.24e-08, - "adsorb": 7.24e-08, - "aerosolized": 7.24e-08, - "afflalo": 7.24e-08, - "aflutter": 7.24e-08, - "agnese": 7.24e-08, - "agonised": 7.24e-08, - "ahli": 7.24e-08, - "ahve": 7.24e-08, - "aira": 7.24e-08, - "airbases": 7.24e-08, - "airfix": 7.24e-08, - "airi": 7.24e-08, - "aise": 7.24e-08, - "ajr": 7.24e-08, - "akela": 7.24e-08, - "alamut": 7.24e-08, - "alarmism": 7.24e-08, - "albian": 7.24e-08, - "aleman": 7.24e-08, - "alesso": 7.24e-08, - "aliona": 7.24e-08, - "allegretto": 7.24e-08, - "allotting": 7.24e-08, - "alph": 7.24e-08, - "altra": 7.24e-08, - "alwar": 7.24e-08, - "ambon": 7.24e-08, - "amenorrhea": 7.24e-08, - "amoebae": 7.24e-08, - "amphoteric": 7.24e-08, - "amram": 7.24e-08, - "anastasio": 7.24e-08, - "anastasius": 7.24e-08, - "anisimov": 7.24e-08, - "anthropomorphized": 7.24e-08, - "antico": 7.24e-08, - "antineoplastic": 7.24e-08, - "antisemites": 7.24e-08, - "appearence": 7.24e-08, - "appro": 7.24e-08, - "aquired": 7.24e-08, - "arabist": 7.24e-08, - "aramid": 7.24e-08, - "archimedean": 7.24e-08, - "archipelagos": 7.24e-08, - "arcola": 7.24e-08, - "arinc": 7.24e-08, - "arpad": 7.24e-08, - "arterton": 7.24e-08, - "articulatory": 7.24e-08, - "asado": 7.24e-08, - "asal": 7.24e-08, - "asansol": 7.24e-08, - "asheboro": 7.24e-08, - "atgm": 7.24e-08, - "attilio": 7.24e-08, - "authorisations": 7.24e-08, - "autogenous": 7.24e-08, - "aventine": 7.24e-08, - "avons": 7.24e-08, - "avt": 7.24e-08, - "axeman": 7.24e-08, - "ayyyy": 7.24e-08, - "aziza": 7.24e-08, - "backheel": 7.24e-08, - "badar": 7.24e-08, - "bagi": 7.24e-08, - "bagshaw": 7.24e-08, - "bakari": 7.24e-08, - "bakugo": 7.24e-08, - "balking": 7.24e-08, - "bananarama": 7.24e-08, - "bangsamoro": 7.24e-08, - "bantz": 7.24e-08, - "banyak": 7.24e-08, - "barad": 7.24e-08, - "barcoding": 7.24e-08, - "barghouti": 7.24e-08, - "basia": 7.24e-08, - "basilan": 7.24e-08, - "bassoons": 7.24e-08, - "bastardized": 7.24e-08, - "batey": 7.24e-08, - "bcaa": 7.24e-08, - "beacham": 7.24e-08, - "beantown": 7.24e-08, - "beastiality": 7.24e-08, - "beatniks": 7.24e-08, - "becki": 7.24e-08, - "beddoes": 7.24e-08, - "bedeutung": 7.24e-08, - "beenleigh": 7.24e-08, - "befo": 7.24e-08, - "beinn": 7.24e-08, - "belmond": 7.24e-08, - "bemusement": 7.24e-08, - "benalla": 7.24e-08, - "benard": 7.24e-08, - "benficas": 7.24e-08, - "bently": 7.24e-08, - "beren": 7.24e-08, - "berenberg": 7.24e-08, - "bermans": 7.24e-08, - "berryessa": 7.24e-08, - "besh": 7.24e-08, - "betsys": 7.24e-08, - "bfl": 7.24e-08, - "bhattacharyya": 7.24e-08, - "biggio": 7.24e-08, - "bilayers": 7.24e-08, - "billfold": 7.24e-08, - "bioengineered": 7.24e-08, - "birthplaces": 7.24e-08, - "bishan": 7.24e-08, - "bitstream": 7.24e-08, - "blackjacks": 7.24e-08, - "blackmailers": 7.24e-08, - "blacky": 7.24e-08, - "blasios": 7.24e-08, - "blasphemers": 7.24e-08, - "bobi": 7.24e-08, - "boker": 7.24e-08, - "bolding": 7.24e-08, - "boldon": 7.24e-08, - "bomp": 7.24e-08, - "bonefish": 7.24e-08, - "boole": 7.24e-08, - "bordentown": 7.24e-08, - "boruc": 7.24e-08, - "bovey": 7.24e-08, - "bowral": 7.24e-08, - "brahmans": 7.24e-08, - "bralette": 7.24e-08, - "brandos": 7.24e-08, - "branston": 7.24e-08, - "breh": 7.24e-08, - "broady": 7.24e-08, - "brookstone": 7.24e-08, - "broski": 7.24e-08, - "brucker": 7.24e-08, - "bruun": 7.24e-08, - "btech": 7.24e-08, - "bubb": 7.24e-08, - "bubo": 7.24e-08, - "bucuresti": 7.24e-08, - "budde": 7.24e-08, - "budokan": 7.24e-08, - "buil": 7.24e-08, - "bujumbura": 7.24e-08, - "bulgar": 7.24e-08, - "bulling": 7.24e-08, - "buongiorno": 7.24e-08, - "burin": 7.24e-08, - "burkhard": 7.24e-08, - "buru": 7.24e-08, - "busboys": 7.24e-08, - "bushveld": 7.24e-08, - "bya": 7.24e-08, - "byars": 7.24e-08, - "byles": 7.24e-08, - "byz": 7.24e-08, - "cmere": 7.24e-08, - "cactuses": 7.24e-08, - "cadd": 7.24e-08, - "caecum": 7.24e-08, - "caff": 7.24e-08, - "camgirl": 7.24e-08, - "camogie": 7.24e-08, - "campsie": 7.24e-08, - "candlemas": 7.24e-08, - "carneiro": 7.24e-08, - "carolers": 7.24e-08, - "carpel": 7.24e-08, - "carpinteria": 7.24e-08, - "caserta": 7.24e-08, - "cassi": 7.24e-08, - "casta": 7.24e-08, - "castigating": 7.24e-08, - "catchpole": 7.24e-08, - "categorising": 7.24e-08, - "categorizations": 7.24e-08, - "catsup": 7.24e-08, - "catto": 7.24e-08, - "caudill": 7.24e-08, - "ceil": 7.24e-08, - "centralise": 7.24e-08, - "cepa": 7.24e-08, - "cephalon": 7.24e-08, - "cercle": 7.24e-08, - "cev": 7.24e-08, - "ceylan": 7.24e-08, - "cgn": 7.24e-08, - "chandran": 7.24e-08, - "chante": 7.24e-08, - "chaput": 7.24e-08, - "characterless": 7.24e-08, - "charest": 7.24e-08, - "charleton": 7.24e-08, - "chenery": 7.24e-08, - "childfree": 7.24e-08, - "chillis": 7.24e-08, - "chinna": 7.24e-08, - "chinon": 7.24e-08, - "chinooks": 7.24e-08, - "chipboard": 7.24e-08, - "chits": 7.24e-08, - "christopherson": 7.24e-08, - "chromate": 7.24e-08, - "chromatograph": 7.24e-08, - "cibber": 7.24e-08, - "cinchona": 7.24e-08, - "cini": 7.24e-08, - "circumcisions": 7.24e-08, - "cism": 7.24e-08, - "cleanroom": 7.24e-08, - "cliffy": 7.24e-08, - "clits": 7.24e-08, - "cloquet": 7.24e-08, - "cnv": 7.24e-08, - "cobar": 7.24e-08, - "codrington": 7.24e-08, - "collusive": 7.24e-08, - "colossi": 7.24e-08, - "comedys": 7.24e-08, - "commiseration": 7.24e-08, - "commo": 7.24e-08, - "commonweal": 7.24e-08, - "compas": 7.24e-08, - "comple": 7.24e-08, - "complutense": 7.24e-08, - "concords": 7.24e-08, - "condescended": 7.24e-08, - "congreso": 7.24e-08, - "conmebol": 7.24e-08, - "conrado": 7.24e-08, - "contestable": 7.24e-08, - "continu": 7.24e-08, - "convoked": 7.24e-08, - "convolutions": 7.24e-08, - "coolmore": 7.24e-08, - "cooperage": 7.24e-08, - "couloir": 7.24e-08, - "courcy": 7.24e-08, - "cpanel": 7.24e-08, - "cranbury": 7.24e-08, - "craster": 7.24e-08, - "crider": 7.24e-08, - "crps": 7.24e-08, - "cumulonimbus": 7.24e-08, - "cutely": 7.24e-08, - "cvv": 7.24e-08, - "dadaab": 7.24e-08, - "dadaist": 7.24e-08, - "dadu": 7.24e-08, - "dafne": 7.24e-08, - "dalyell": 7.24e-08, - "damietta": 7.24e-08, - "dashs": 7.24e-08, - "davidians": 7.24e-08, - "ddf": 7.24e-08, - "decarlo": 7.24e-08, - "decimus": 7.24e-08, - "deeb": 7.24e-08, - "defazio": 7.24e-08, - "deitch": 7.24e-08, - "demerol": 7.24e-08, - "demetrio": 7.24e-08, - "demint": 7.24e-08, - "deneen": 7.24e-08, - "deniable": 7.24e-08, - "denigrates": 7.24e-08, - "desna": 7.24e-08, - "despawn": 7.24e-08, - "deth": 7.24e-08, - "dethklok": 7.24e-08, - "detroiters": 7.24e-08, - "dhi": 7.24e-08, - "dhonis": 7.24e-08, - "diamant": 7.24e-08, - "diame": 7.24e-08, - "diktat": 7.24e-08, - "dinas": 7.24e-08, - "dippin": 7.24e-08, - "disjunct": 7.24e-08, - "dissapointment": 7.24e-08, - "dissemble": 7.24e-08, - "divis": 7.24e-08, - "dohertys": 7.24e-08, - "doina": 7.24e-08, - "dokdo": 7.24e-08, - "dominants": 7.24e-08, - "dominum": 7.24e-08, - "doone": 7.24e-08, - "dornish": 7.24e-08, - "doxxing": 7.24e-08, - "draenor": 7.24e-08, - "draughtsmen": 7.24e-08, - "dring": 7.24e-08, - "drr": 7.24e-08, - "dsh": 7.24e-08, - "dtn": 7.24e-08, - "dukkha": 7.24e-08, - "dumdum": 7.24e-08, - "duplass": 7.24e-08, - "duri": 7.24e-08, - "durocher": 7.24e-08, - "dutchy": 7.24e-08, - "dwd": 7.24e-08, - "dyar": 7.24e-08, - "dynamited": 7.24e-08, - "dyscalculia": 7.24e-08, - "earther": 7.24e-08, - "easterling": 7.24e-08, - "ebor": 7.24e-08, - "eccentrically": 7.24e-08, - "edgehill": 7.24e-08, - "ediciones": 7.24e-08, - "edmiston": 7.24e-08, - "ehrhardt": 7.24e-08, - "elaina": 7.24e-08, - "electroplated": 7.24e-08, - "elek": 7.24e-08, - "eliyahu": 7.24e-08, - "elst": 7.24e-08, - "elsworth": 7.24e-08, - "eltons": 7.24e-08, - "elysee": 7.24e-08, - "emeline": 7.24e-08, - "eml": 7.24e-08, - "emoting": 7.24e-08, - "endura": 7.24e-08, - "enforcements": 7.08e-08, - "englishmans": 7.24e-08, - "enka": 7.24e-08, - "enlil": 7.24e-08, - "enochian": 7.24e-08, - "enr": 7.24e-08, - "entombment": 7.24e-08, - "entorhinal": 7.24e-08, - "enzymatically": 7.24e-08, - "eoghan": 7.24e-08, - "eosin": 7.24e-08, - "epaulets": 7.24e-08, - "epitaxy": 7.24e-08, - "equerry": 7.24e-08, - "equitation": 7.24e-08, - "erso": 7.24e-08, - "escoffier": 7.24e-08, - "estamos": 7.24e-08, - "esti": 7.24e-08, - "estill": 7.24e-08, - "eterna": 7.24e-08, - "ettrick": 7.24e-08, - "euchre": 7.24e-08, - "euromonitor": 7.24e-08, - "euron": 7.24e-08, - "evah": 7.24e-08, - "evinces": 7.24e-08, - "eviscerating": 7.24e-08, - "ewca": 7.24e-08, - "exarch": 7.24e-08, - "exfoliator": 7.24e-08, - "exocytosis": 7.24e-08, - "extravagances": 7.24e-08, - "extrema": 7.24e-08, - "faceoffs": 7.24e-08, - "factotum": 7.24e-08, - "fagg": 7.24e-08, - "faiza": 7.24e-08, - "fale": 7.24e-08, - "faradays": 7.24e-08, - "fark": 7.24e-08, - "fascicle": 7.24e-08, - "favell": 7.24e-08, - "fechner": 7.24e-08, - "felicitous": 7.24e-08, - "fetishization": 7.24e-08, - "fetishize": 7.24e-08, - "fetzer": 7.24e-08, - "ffv": 7.24e-08, - "fga": 7.24e-08, - "filleting": 7.24e-08, - "fingleton": 7.24e-08, - "firas": 7.24e-08, - "fivb": 7.24e-08, - "flashbulb": 7.24e-08, - "flunking": 7.24e-08, - "flybys": 7.24e-08, - "flypast": 7.24e-08, - "fobbed": 7.24e-08, - "folia": 7.24e-08, - "folklorists": 7.24e-08, - "follo": 7.24e-08, - "fookin": 7.24e-08, - "forestland": 7.24e-08, - "forlornly": 7.24e-08, - "fosdick": 7.24e-08, - "foulness": 7.24e-08, - "franchi": 7.24e-08, - "franta": 7.24e-08, - "fratelli": 7.24e-08, - "frd": 7.24e-08, - "freek": 7.24e-08, - "freesat": 7.24e-08, - "freethinker": 7.24e-08, - "freiheit": 7.24e-08, - "frescoed": 7.24e-08, - "frimley": 7.24e-08, - "fujairah": 7.24e-08, - "fujioka": 7.24e-08, - "furball": 7.24e-08, - "furia": 7.24e-08, - "furioso": 7.24e-08, - "gadhafi": 7.24e-08, - "gaea": 7.24e-08, - "gakuin": 7.24e-08, - "galata": 7.24e-08, - "gallstone": 7.24e-08, - "gambits": 7.24e-08, - "gamez": 7.24e-08, - "gansevoort": 7.24e-08, - "garbed": 7.24e-08, - "garey": 7.24e-08, - "gauloises": 7.24e-08, - "gearhart": 7.24e-08, - "gether": 7.24e-08, - "ghan": 7.24e-08, - "ghostwritten": 7.24e-08, - "giorgione": 7.24e-08, - "gipsies": 7.24e-08, - "gitlab": 7.24e-08, - "glendinning": 7.24e-08, - "globin": 7.24e-08, - "gml": 7.24e-08, - "gnar": 7.24e-08, - "goatskin": 7.24e-08, - "gobo": 7.24e-08, - "goed": 7.24e-08, - "goetze": 7.24e-08, - "goldmann": 7.24e-08, - "goldson": 7.24e-08, - "gonorrhoeae": 7.24e-08, - "goodridge": 7.24e-08, - "gosforth": 7.24e-08, - "gosha": 7.24e-08, - "gpx": 7.24e-08, - "gravatt": 7.24e-08, - "grealish": 7.24e-08, - "greensleeves": 7.24e-08, - "greenways": 7.24e-08, - "greeters": 7.24e-08, - "gringa": 7.24e-08, - "grise": 7.24e-08, - "grk": 7.24e-08, - "grosseto": 7.24e-08, - "grotesques": 7.24e-08, - "gruesomely": 7.24e-08, - "gsg": 7.24e-08, - "guanosine": 7.24e-08, - "guber": 7.24e-08, - "guedes": 7.24e-08, - "guestbook": 7.24e-08, - "haddam": 7.24e-08, - "haggadah": 7.24e-08, - "hahahha": 7.24e-08, - "hainault": 7.24e-08, - "hamar": 7.24e-08, - "handguard": 7.24e-08, - "handhold": 7.24e-08, - "handsomeness": 7.24e-08, - "hansbrough": 7.24e-08, - "haplogroups": 7.24e-08, - "hardcovers": 7.24e-08, - "harpe": 7.24e-08, - "harrass": 7.24e-08, - "haslemere": 7.24e-08, - "hathitrust": 7.24e-08, - "hatley": 7.24e-08, - "hausman": 7.24e-08, - "havanas": 7.24e-08, - "havelange": 7.24e-08, - "hawksley": 7.24e-08, - "hbf": 7.24e-08, - "heathy": 7.24e-08, - "heikki": 7.24e-08, - "heise": 7.24e-08, - "heiss": 7.24e-08, - "heligoland": 7.24e-08, - "hemenway": 7.24e-08, - "herbivory": 7.24e-08, - "heterogenous": 7.24e-08, - "hiba": 7.24e-08, - "hildy": 7.24e-08, - "hillenbrand": 7.24e-08, - "hisar": 7.24e-08, - "historicist": 7.24e-08, - "hme": 7.24e-08, - "hmx": 7.24e-08, - "hoeness": 7.24e-08, - "hokuto": 7.24e-08, - "homestyle": 7.24e-08, - "hommage": 7.24e-08, - "honoris": 7.24e-08, - "hrg": 7.24e-08, - "huac": 7.24e-08, - "huangpu": 7.24e-08, - "huarache": 7.24e-08, - "huell": 7.24e-08, - "huez": 7.24e-08, - "humidifiers": 7.24e-08, - "hundredweight": 7.24e-08, - "huseyin": 7.24e-08, - "hyperkalemia": 7.24e-08, - "hyperlocal": 7.24e-08, - "iasb": 7.24e-08, - "ibogaine": 7.24e-08, - "icosahedron": 7.24e-08, - "idek": 7.24e-08, - "idfs": 7.24e-08, - "iee": 7.24e-08, - "ifhe": 7.24e-08, - "igns": 7.24e-08, - "iguazu": 7.24e-08, - "ijaz": 7.24e-08, - "ikebana": 7.24e-08, - "ilias": 7.24e-08, - "ilitch": 7.24e-08, - "ilkeston": 7.24e-08, - "impales": 7.24e-08, - "impinges": 7.24e-08, - "impl": 7.24e-08, - "incompletion": 7.24e-08, - "incorrectness": 7.24e-08, - "indenting": 7.24e-08, - "inet": 7.24e-08, - "intermarry": 7.24e-08, - "interne": 7.24e-08, - "interop": 7.24e-08, - "interrelations": 7.24e-08, - "interruptus": 7.24e-08, - "intracerebral": 7.24e-08, - "intrathecal": 7.24e-08, - "invitingly": 7.24e-08, - "ipu": 7.24e-08, - "irin": 7.24e-08, - "ironborn": 7.24e-08, - "isda": 7.24e-08, - "islah": 7.24e-08, - "isoelectric": 7.24e-08, - "issuances": 7.24e-08, - "ists": 7.24e-08, - "iveco": 7.24e-08, - "ivies": 7.24e-08, - "ivig": 7.24e-08, - "iwate": 7.24e-08, - "iwd": 7.24e-08, - "jacen": 7.24e-08, - "jagielka": 7.24e-08, - "jakku": 7.24e-08, - "jalgaon": 7.24e-08, - "jamz": 7.24e-08, - "janeane": 7.24e-08, - "jannie": 7.24e-08, - "jarecki": 7.24e-08, - "jaren": 7.24e-08, - "jaxs": 7.24e-08, - "jcr": 7.24e-08, - "jeou": 7.24e-08, - "jevons": 7.24e-08, - "jic": 7.24e-08, - "jiving": 7.24e-08, - "jiya": 7.24e-08, - "jollity": 7.24e-08, - "jom": 7.24e-08, - "josuke": 7.24e-08, - "judkins": 7.24e-08, - "junctional": 7.24e-08, - "justyna": 7.24e-08, - "kanhaiya": 7.24e-08, - "karisma": 7.24e-08, - "kcb": 7.24e-08, - "kehlani": 7.24e-08, - "kempsey": 7.24e-08, - "kenshi": 7.24e-08, - "keuchel": 7.24e-08, - "keynesianism": 7.24e-08, - "keyshia": 7.24e-08, - "khar": 7.24e-08, - "kib": 7.24e-08, - "kibbutzim": 7.24e-08, - "kibo": 7.24e-08, - "kidron": 7.24e-08, - "kimora": 7.24e-08, - "kinderhook": 7.24e-08, - "kinkade": 7.24e-08, - "kiper": 7.24e-08, - "kiryat": 7.24e-08, - "klavan": 7.24e-08, - "klemmer": 7.24e-08, - "koffi": 7.24e-08, - "kogyo": 7.24e-08, - "kolkhoz": 7.24e-08, - "koni": 7.24e-08, - "konkani": 7.24e-08, - "kosovar": 7.24e-08, - "krishnamurthy": 7.24e-08, - "kumquat": 7.24e-08, - "kuns": 7.24e-08, - "kwajalein": 7.24e-08, - "kyosuke": 7.24e-08, - "laflamme": 7.24e-08, - "lale": 7.24e-08, - "lamarque": 7.24e-08, - "laming": 7.24e-08, - "laminitis": 7.24e-08, - "laon": 7.24e-08, - "laputa": 7.24e-08, - "larboard": 7.24e-08, - "larsens": 7.24e-08, - "latecomer": 7.24e-08, - "lbi": 7.24e-08, - "leadsom": 7.24e-08, - "lecompte": 7.24e-08, - "lectins": 7.24e-08, - "leffingwell": 7.24e-08, - "legaspi": 7.24e-08, - "legis": 7.24e-08, - "lemoore": 7.24e-08, - "lenna": 7.24e-08, - "lente": 7.24e-08, - "leonel": 7.24e-08, - "leorio": 7.24e-08, - "lesa": 7.24e-08, - "lesher": 7.24e-08, - "lete": 7.24e-08, - "levonorgestrel": 7.24e-08, - "lewisohn": 7.24e-08, - "lfe": 7.24e-08, - "lfw": 7.24e-08, - "libertas": 7.24e-08, - "lifejacket": 7.24e-08, - "ligated": 7.24e-08, - "lilydale": 7.24e-08, - "lisicki": 7.24e-08, - "litera": 7.24e-08, - "literaly": 7.24e-08, - "litteraly": 7.24e-08, - "littlebigplanet": 7.24e-08, - "livni": 7.24e-08, - "lofting": 7.24e-08, - "logbooks": 7.24e-08, - "longstaff": 7.24e-08, - "lpp": 7.24e-08, - "lrr": 7.24e-08, - "ltalian": 7.24e-08, - "lumberman": 7.24e-08, - "luts": 7.24e-08, - "lwa": 7.24e-08, - "lwb": 7.24e-08, - "lysistrata": 7.24e-08, - "lysozyme": 7.24e-08, - "maathai": 7.24e-08, - "macaus": 7.24e-08, - "maced": 7.24e-08, - "machan": 7.24e-08, - "machineries": 7.24e-08, - "mactavish": 7.24e-08, - "madhubala": 7.24e-08, - "mael": 7.24e-08, - "mager": 7.24e-08, - "magnetize": 7.24e-08, - "mahavir": 7.24e-08, - "mainboard": 7.24e-08, - "mainmast": 7.24e-08, - "maio": 7.24e-08, - "mairi": 7.24e-08, - "maisonneuve": 7.24e-08, - "malad": 7.24e-08, - "manhwa": 7.24e-08, - "maoris": 7.24e-08, - "mapo": 7.24e-08, - "mard": 7.24e-08, - "marder": 7.24e-08, - "mariahs": 7.24e-08, - "markley": 7.24e-08, - "marlowes": 7.24e-08, - "marshak": 7.24e-08, - "masvidal": 7.24e-08, - "matej": 7.24e-08, - "mateusz": 7.24e-08, - "maty": 7.24e-08, - "mayhap": 7.24e-08, - "mcateer": 7.24e-08, - "mccoist": 7.24e-08, - "mcguinn": 7.24e-08, - "mchales": 7.24e-08, - "mclovin": 7.24e-08, - "mcmillian": 7.24e-08, - "mcnamaras": 7.24e-08, - "mdna": 7.24e-08, - "mellowing": 7.24e-08, - "menarche": 7.24e-08, - "menelik": 7.24e-08, - "mercantilist": 7.24e-08, - "merlino": 7.24e-08, - "mesoporous": 7.24e-08, - "messick": 7.24e-08, - "mester": 7.24e-08, - "metrically": 7.24e-08, - "mewling": 7.24e-08, - "mexica": 7.24e-08, - "mezzotint": 7.24e-08, - "mgms": 7.24e-08, - "microstrategy": 7.24e-08, - "middens": 7.24e-08, - "migo": 7.24e-08, - "militaria": 7.24e-08, - "millilitres": 7.24e-08, - "minims": 7.24e-08, - "mirka": 7.24e-08, - "mishna": 7.24e-08, - "misquoting": 7.24e-08, - "misreported": 7.24e-08, - "missional": 7.24e-08, - "mixin": 7.24e-08, - "mlf": 7.24e-08, - "mmb": 7.24e-08, - "mml": 7.24e-08, - "mmmmmmm": 7.24e-08, - "mnlf": 7.24e-08, - "moghul": 7.24e-08, - "moister": 7.24e-08, - "molex": 7.24e-08, - "monazite": 7.24e-08, - "monocultures": 7.24e-08, - "monophonic": 7.24e-08, - "monopod": 7.24e-08, - "moonsault": 7.24e-08, - "moralising": 7.24e-08, - "morphologic": 7.24e-08, - "mosa": 7.24e-08, - "moveset": 7.24e-08, - "moviemaking": 7.24e-08, - "movil": 7.24e-08, - "mukhopadhyay": 7.24e-08, - "mulsanne": 7.24e-08, - "muqtada": 7.24e-08, - "murakamis": 7.24e-08, - "murree": 7.24e-08, - "muskrats": 7.24e-08, - "musset": 7.24e-08, - "mustached": 7.24e-08, - "mutu": 7.24e-08, - "myki": 7.24e-08, - "mystification": 7.24e-08, - "myteam": 7.24e-08, - "nahar": 7.24e-08, - "nanning": 7.24e-08, - "naturedly": 7.24e-08, - "nauman": 7.24e-08, - "navigations": 7.24e-08, - "neco": 7.24e-08, - "negrito": 7.24e-08, - "negroid": 7.24e-08, - "negroponte": 7.24e-08, - "nemos": 7.24e-08, - "nese": 7.24e-08, - "netbeans": 7.24e-08, - "neurotypical": 7.24e-08, - "neuse": 7.24e-08, - "ngayon": 7.24e-08, - "nhlpa": 7.24e-08, - "niedermayer": 7.24e-08, - "nijhoff": 7.24e-08, - "nikka": 7.24e-08, - "nishikawa": 7.24e-08, - "nith": 7.24e-08, - "nitti": 7.24e-08, - "nooooooooo": 7.24e-08, - "norberto": 7.24e-08, - "noten": 7.24e-08, - "noughts": 7.24e-08, - "novalis": 7.24e-08, - "nuketown": 7.24e-08, - "nutmegs": 7.24e-08, - "nwe": 7.24e-08, - "nyon": 7.24e-08, - "ocaml": 7.24e-08, - "ocbc": 7.24e-08, - "occassionally": 7.24e-08, - "offutt": 7.24e-08, - "oisin": 7.24e-08, - "ojt": 7.24e-08, - "ojukwu": 7.24e-08, - "okw": 7.24e-08, - "olgas": 7.24e-08, - "olsons": 7.24e-08, - "ondine": 7.24e-08, - "onigiri": 7.24e-08, - "onyango": 7.24e-08, - "ool": 7.24e-08, - "opcode": 7.24e-08, - "ordinators": 7.24e-08, - "orenstein": 7.24e-08, - "orphic": 7.24e-08, - "orsi": 7.24e-08, - "orthodoxies": 7.24e-08, - "orthogonally": 7.24e-08, - "osbourn": 7.24e-08, - "osric": 7.24e-08, - "otic": 7.24e-08, - "oughtnt": 7.24e-08, - "outros": 7.24e-08, - "overflights": 7.24e-08, - "overstimulation": 7.24e-08, - "overwater": 7.24e-08, - "ovis": 7.24e-08, - "ovs": 7.24e-08, - "ownerships": 7.24e-08, - "pagi": 7.24e-08, - "pakeha": 7.24e-08, - "panaji": 7.24e-08, - "paperweights": 7.24e-08, - "papilio": 7.24e-08, - "paquita": 7.24e-08, - "parag": 7.24e-08, - "parallelization": 7.24e-08, - "paratroops": 7.24e-08, - "partita": 7.24e-08, - "pasi": 7.24e-08, - "patsys": 7.24e-08, - "patz": 7.24e-08, - "pavlik": 7.24e-08, - "pegram": 7.24e-08, - "peja": 7.24e-08, - "pekingese": 7.24e-08, - "peleg": 7.24e-08, - "pellerin": 7.24e-08, - "penistone": 7.24e-08, - "pennebaker": 7.24e-08, - "penneys": 7.24e-08, - "performant": 7.24e-08, - "perfumers": 7.24e-08, - "periscopes": 7.24e-08, - "perking": 7.24e-08, - "peroxisome": 7.24e-08, - "petabytes": 7.24e-08, - "pgl": 7.24e-08, - "phang": 7.24e-08, - "phet": 7.24e-08, - "philia": 7.24e-08, - "philipsburg": 7.24e-08, - "physios": 7.24e-08, - "piana": 7.24e-08, - "piao": 7.24e-08, - "piazzas": 7.24e-08, - "pigpen": 7.24e-08, - "pinstriped": 7.24e-08, - "pintail": 7.24e-08, - "pixi": 7.24e-08, - "pixiv": 7.24e-08, - "plastids": 7.24e-08, - "playbooks": 7.24e-08, - "pletcher": 7.24e-08, - "pmcs": 7.24e-08, - "pneumatically": 7.24e-08, - "pobre": 7.24e-08, - "pogs": 7.24e-08, - "polack": 7.24e-08, - "poleward": 7.24e-08, - "polychromatic": 7.24e-08, - "polydor": 7.24e-08, - "polygraphs": 7.24e-08, - "pompei": 7.24e-08, - "pontic": 7.24e-08, - "pooler": 7.24e-08, - "popsugar": 7.24e-08, - "poseidons": 7.24e-08, - "possesion": 7.24e-08, - "potencies": 7.24e-08, - "powel": 7.24e-08, - "poxy": 7.24e-08, - "preconditioning": 7.24e-08, - "prefatory": 7.24e-08, - "preforms": 7.24e-08, - "prejean": 7.24e-08, - "premi": 7.24e-08, - "prepa": 7.24e-08, - "prepon": 7.24e-08, - "presales": 7.24e-08, - "preworkout": 7.24e-08, - "priviledge": 7.24e-08, - "problematical": 7.24e-08, - "prophethood": 7.24e-08, - "proposers": 7.24e-08, - "protonation": 7.24e-08, - "pryors": 7.24e-08, - "ptosis": 7.24e-08, - "ptx": 7.24e-08, - "puch": 7.24e-08, - "pugilistic": 7.24e-08, - "puka": 7.24e-08, - "pyres": 7.24e-08, - "qat": 7.24e-08, - "qaumi": 7.24e-08, - "qds": 7.24e-08, - "quarrymen": 7.24e-08, - "quavers": 7.24e-08, - "quia": 7.24e-08, - "quids": 7.24e-08, - "quieres": 7.24e-08, - "quinceanera": 7.24e-08, - "rachmaninov": 7.24e-08, - "raddatz": 7.24e-08, - "raffaello": 7.24e-08, - "rafique": 7.24e-08, - "ragas": 7.24e-08, - "ragout": 7.24e-08, - "raimundo": 7.24e-08, - "raindance": 7.24e-08, - "rainin": 7.24e-08, - "ramanathan": 7.24e-08, - "ramekins": 7.24e-08, - "ranganathan": 7.24e-08, - "ranvir": 7.24e-08, - "raybould": 7.24e-08, - "raziel": 7.24e-08, - "rebreather": 7.24e-08, - "reconstructionist": 7.24e-08, - "redownload": 7.24e-08, - "reffing": 7.24e-08, - "refile": 7.24e-08, - "reflektor": 7.24e-08, - "registrable": 7.24e-08, - "regnal": 7.24e-08, - "rehabbed": 7.24e-08, - "reiff": 7.24e-08, - "reigniting": 7.24e-08, - "reindeers": 7.24e-08, - "releasable": 7.24e-08, - "remer": 7.24e-08, - "remora": 7.24e-08, - "renda": 7.24e-08, - "renees": 7.24e-08, - "renos": 6.03e-08, - "reoccupied": 7.24e-08, - "repacked": 7.24e-08, - "resistence": 7.24e-08, - "revelle": 7.24e-08, - "rhapsodic": 7.24e-08, - "ribena": 7.24e-08, - "richelle": 7.24e-08, - "ridgeback": 7.24e-08, - "ridout": 7.24e-08, - "rigatoni": 7.24e-08, - "riina": 7.24e-08, - "rishabh": 7.24e-08, - "rnn": 7.24e-08, - "rodi": 7.24e-08, - "roenick": 7.24e-08, - "roig": 7.24e-08, - "rojos": 7.24e-08, - "romesh": 7.24e-08, - "roofied": 7.24e-08, - "rosendale": 7.24e-08, - "roughened": 7.24e-08, - "rowson": 7.24e-08, - "rucka": 7.24e-08, - "rudo": 7.24e-08, - "rufo": 7.24e-08, - "ruscha": 7.24e-08, - "ryuko": 7.24e-08, - "saddlers": 7.24e-08, - "saddlery": 7.24e-08, - "sadistically": 7.24e-08, - "safet": 7.24e-08, - "saharanpur": 7.24e-08, - "salvadorian": 7.24e-08, - "samardzija": 7.24e-08, - "samrat": 7.24e-08, - "sanctuarys": 7.24e-08, - "santangelo": 7.24e-08, - "sartori": 7.24e-08, - "sasson": 7.24e-08, - "satyajit": 7.24e-08, - "savva": 7.24e-08, - "scandium": 7.24e-08, - "scarfing": 7.24e-08, - "schama": 7.24e-08, - "scheifele": 7.24e-08, - "schliemann": 7.24e-08, - "schnitzler": 7.24e-08, - "schwa": 7.24e-08, - "scioscia": 7.24e-08, - "scoria": 7.24e-08, - "screengrab": 7.24e-08, - "scruton": 7.24e-08, - "scuderi": 7.24e-08, - "seagrave": 7.24e-08, - "sealion": 7.24e-08, - "secant": 7.24e-08, - "seconde": 7.24e-08, - "selin": 7.24e-08, - "senecio": 7.24e-08, - "senghor": 7.24e-08, - "sensorineural": 7.24e-08, - "sensus": 7.24e-08, - "sephardim": 7.24e-08, - "serendipitously": 7.24e-08, - "servic": 7.24e-08, - "servicio": 7.24e-08, - "severable": 7.24e-08, - "sexily": 7.24e-08, - "sexta": 7.24e-08, - "shaar": 7.24e-08, - "shakeel": 7.24e-08, - "shamim": 7.24e-08, - "shampooed": 7.24e-08, - "shanghainese": 7.24e-08, - "shifu": 7.24e-08, - "shimomura": 7.24e-08, - "shinola": 7.24e-08, - "shively": 7.24e-08, - "shortlists": 7.24e-08, - "shrimpton": 7.24e-08, - "shyster": 7.24e-08, - "siddeley": 7.24e-08, - "sienkiewicz": 7.24e-08, - "sikeston": 7.24e-08, - "simps": 7.24e-08, - "sinopec": 7.24e-08, - "sipe": 7.24e-08, - "siz": 7.24e-08, - "slaney": 7.24e-08, - "slathering": 7.24e-08, - "slaveholder": 7.24e-08, - "sleeman": 7.24e-08, - "slieve": 7.24e-08, - "slops": 7.24e-08, - "smartthings": 7.24e-08, - "smetana": 7.24e-08, - "snakehead": 7.24e-08, - "snellen": 7.24e-08, - "sodomite": 7.24e-08, - "sollecito": 7.24e-08, - "solvation": 7.24e-08, - "sorvino": 7.24e-08, - "sparsity": 7.24e-08, - "spawners": 7.24e-08, - "spazio": 7.24e-08, - "spicejet": 7.24e-08, - "spluttered": 7.24e-08, - "spritzer": 7.24e-08, - "ssk": 7.24e-08, - "stange": 7.24e-08, - "statius": 7.24e-08, - "steinar": 7.24e-08, - "stelvio": 7.24e-08, - "stencilled": 7.24e-08, - "stevedores": 7.24e-08, - "stok": 7.24e-08, - "stonestreet": 7.24e-08, - "stupendously": 7.24e-08, - "stylization": 7.24e-08, - "subheadings": 7.24e-08, - "submillimeter": 7.24e-08, - "suhr": 7.24e-08, - "summe": 7.24e-08, - "surficial": 7.24e-08, - "surinder": 7.24e-08, - "susanville": 7.24e-08, - "swindles": 7.24e-08, - "swiper": 7.24e-08, - "swl": 7.24e-08, - "synchronic": 7.24e-08, - "syndicalists": 7.24e-08, - "szczecin": 7.24e-08, - "talaga": 7.24e-08, - "talismanic": 7.24e-08, - "tameka": 7.24e-08, - "tamia": 7.24e-08, - "tartness": 7.24e-08, - "tayla": 7.24e-08, - "tbb": 7.24e-08, - "tbo": 7.24e-08, - "teamer": 7.24e-08, - "teb": 7.24e-08, - "teet": 7.24e-08, - "teetotaler": 7.24e-08, - "tehuantepec": 7.24e-08, - "tempter": 7.24e-08, - "tenge": 7.24e-08, - "terras": 7.24e-08, - "teste": 7.24e-08, - "tgr": 7.24e-08, - "thermochemical": 7.24e-08, - "thermogenesis": 7.24e-08, - "thika": 7.24e-08, - "tibco": 7.24e-08, - "tiggy": 7.24e-08, - "tikhonov": 7.24e-08, - "tikki": 7.24e-08, - "tingley": 7.24e-08, - "tinh": 7.24e-08, - "tinney": 7.24e-08, - "titter": 7.24e-08, - "toile": 7.24e-08, - "toman": 7.24e-08, - "tommo": 7.24e-08, - "torun": 7.24e-08, - "townend": 7.24e-08, - "tozzi": 7.24e-08, - "transat": 7.24e-08, - "transhumanist": 7.24e-08, - "trautman": 7.24e-08, - "travelogues": 7.24e-08, - "travesties": 7.24e-08, - "trekkies": 7.24e-08, - "trel": 7.24e-08, - "trexler": 7.24e-08, - "trippier": 7.24e-08, - "tristen": 7.24e-08, - "trotskyists": 7.24e-08, - "troutdale": 7.24e-08, - "truecrypt": 7.24e-08, - "truncating": 7.24e-08, - "tshabalala": 7.24e-08, - "tsv": 7.24e-08, - "tunny": 7.24e-08, - "tureen": 7.24e-08, - "turtledove": 7.24e-08, - "tuva": 7.24e-08, - "twiss": 7.24e-08, - "txdot": 7.24e-08, - "tympani": 7.24e-08, - "tyrrhenian": 7.24e-08, - "uart": 7.24e-08, - "ucm": 7.24e-08, - "uhp": 7.24e-08, - "uintah": 7.24e-08, - "ujiri": 7.24e-08, - "unaccredited": 7.24e-08, - "unbaptized": 7.24e-08, - "unco": 7.24e-08, - "underexposed": 7.24e-08, - "unfathomably": 7.24e-08, - "unfurls": 7.24e-08, - "unifi": 7.24e-08, - "uninsurable": 7.24e-08, - "uninterruptible": 7.24e-08, - "uniter": 7.24e-08, - "universitaire": 7.24e-08, - "unmeasured": 7.24e-08, - "unna": 7.24e-08, - "unpick": 7.24e-08, - "unrelentingly": 7.24e-08, - "unsmiling": 7.24e-08, - "untv": 7.24e-08, - "upperclass": 7.24e-08, - "uproariously": 7.24e-08, - "uranyl": 7.24e-08, - "urus": 7.24e-08, - "ushakov": 7.24e-08, - "ustr": 7.24e-08, - "usurps": 7.24e-08, - "uvalde": 7.24e-08, - "vado": 7.24e-08, - "vanstone": 7.24e-08, - "vardon": 7.24e-08, - "vcf": 7.24e-08, - "vender": 7.24e-08, - "venlafaxine": 7.24e-08, - "ventress": 7.24e-08, - "venturers": 7.24e-08, - "vermeers": 7.24e-08, - "vermes": 7.24e-08, - "verum": 7.24e-08, - "vibram": 7.24e-08, - "vijayan": 7.24e-08, - "villaraigosa": 7.24e-08, - "virtuosos": 7.24e-08, - "viruss": 7.24e-08, - "vitalis": 7.24e-08, - "vizzini": 7.24e-08, - "volleyed": 7.24e-08, - "vons": 7.24e-08, - "vpi": 7.24e-08, - "vrij": 7.24e-08, - "vrindavan": 7.24e-08, - "vrt": 7.24e-08, - "wabasha": 7.24e-08, - "waistlines": 7.24e-08, - "wakeboard": 7.24e-08, - "walle": 7.24e-08, - "walloped": 7.24e-08, - "wamu": 7.24e-08, - "wara": 7.24e-08, - "warehoused": 7.24e-08, - "wari": 7.24e-08, - "warley": 7.24e-08, - "waterlow": 7.24e-08, - "weatherboard": 7.24e-08, - "weider": 7.24e-08, - "weimer": 7.24e-08, - "weisss": 7.24e-08, - "wens": 7.24e-08, - "wends": 7.24e-08, - "westminister": 7.24e-08, - "wfa": 7.24e-08, - "whizzes": 7.24e-08, - "whorish": 7.24e-08, - "whoville": 7.24e-08, - "wieser": 7.24e-08, - "wigram": 7.24e-08, - "windbreak": 7.24e-08, - "wipp": 7.24e-08, - "wips": 7.24e-08, - "wolpe": 7.24e-08, - "woosh": 7.24e-08, - "wooton": 7.24e-08, - "wowie": 7.24e-08, - "wtop": 7.24e-08, - "xboxone": 7.24e-08, - "ximenes": 7.24e-08, - "xmr": 7.24e-08, - "yahaya": 7.24e-08, - "yanina": 7.24e-08, - "yappy": 7.24e-08, - "yarde": 7.24e-08, - "yees": 3.47e-08, - "yinka": 7.24e-08, - "yoast": 7.24e-08, - "yokels": 7.24e-08, - "yowza": 7.24e-08, - "zakharov": 7.24e-08, - "zeev": 7.24e-08, - "zoller": 7.24e-08, - "zun": 7.24e-08, - "aare": 7.08e-08, - "abelardo": 7.08e-08, - "abidal": 7.08e-08, - "abitibi": 7.08e-08, - "abnett": 7.08e-08, - "abwehr": 7.08e-08, - "acclimating": 7.08e-08, - "achaeans": 7.08e-08, - "acidified": 7.08e-08, - "actuals": 7.08e-08, - "acy": 7.08e-08, - "adami": 7.08e-08, - "adey": 7.08e-08, - "advair": 7.08e-08, - "aef": 7.08e-08, - "aemon": 7.08e-08, - "aeo": 7.08e-08, - "aeromedical": 7.08e-08, - "afge": 7.08e-08, - "afri": 7.08e-08, - "afrocentric": 7.08e-08, - "afu": 7.08e-08, - "agai": 7.08e-08, - "agueros": 7.08e-08, - "ahok": 7.08e-08, - "aika": 7.08e-08, - "aikawa": 7.08e-08, - "aircel": 7.08e-08, - "airdate": 7.08e-08, - "airwolf": 7.08e-08, - "ajami": 7.08e-08, - "alderton": 7.08e-08, - "alexandrovich": 7.08e-08, - "alexandrovna": 7.08e-08, - "alik": 7.08e-08, - "allosaurus": 7.08e-08, - "almaden": 7.08e-08, - "alsa": 7.08e-08, - "alwin": 7.08e-08, - "amarnath": 7.08e-08, - "amata": 7.08e-08, - "ambar": 7.08e-08, - "amboseli": 7.08e-08, - "anacondas": 7.08e-08, - "anche": 7.08e-08, - "anderen": 7.08e-08, - "anderssen": 7.08e-08, - "angad": 7.08e-08, - "annnd": 7.08e-08, - "answerphone": 7.08e-08, - "ansys": 7.08e-08, - "antonoff": 7.08e-08, - "anuradha": 7.08e-08, - "anx": 7.08e-08, - "apostolos": 7.08e-08, - "apud": 7.08e-08, - "apush": 7.08e-08, - "arango": 7.08e-08, - "archivo": 7.08e-08, - "ardis": 7.08e-08, - "arnault": 7.08e-08, - "arosa": 7.08e-08, - "arter": 7.08e-08, - "artnet": 7.08e-08, - "ashgrove": 7.08e-08, - "ashwini": 7.08e-08, - "askar": 7.08e-08, - "asq": 7.08e-08, - "assailing": 7.08e-08, - "atomistic": 7.08e-08, - "atomizers": 7.08e-08, - "atrioventricular": 7.08e-08, - "atw": 7.08e-08, - "aurel": 7.08e-08, - "aurier": 7.08e-08, - "auro": 7.08e-08, - "austerities": 7.08e-08, - "autopsied": 7.08e-08, - "avan": 7.08e-08, - "avulsion": 7.08e-08, - "axi": 7.08e-08, - "ayoade": 7.08e-08, - "azathioprine": 7.08e-08, - "baathist": 7.08e-08, - "bagua": 7.08e-08, - "bailable": 7.08e-08, - "bandsaw": 7.08e-08, - "banja": 7.08e-08, - "bankes": 7.08e-08, - "banstead": 7.08e-08, - "barberry": 7.08e-08, - "barfly": 7.08e-08, - "barisan": 7.08e-08, - "barling": 7.08e-08, - "bartosz": 7.08e-08, - "barun": 7.08e-08, - "bati": 7.08e-08, - "battleford": 7.08e-08, - "baudouin": 7.08e-08, - "beacause": 7.08e-08, - "beachgoers": 7.08e-08, - "beaudry": 7.08e-08, - "beccles": 7.08e-08, - "bechamel": 7.08e-08, - "begich": 7.08e-08, - "belem": 7.08e-08, - "bena": 7.08e-08, - "benatia": 7.08e-08, - "berahino": 7.08e-08, - "berryville": 7.08e-08, - "bertinelli": 7.08e-08, - "bessey": 7.08e-08, - "betw": 7.08e-08, - "bhaiya": 7.08e-08, - "bhaji": 7.08e-08, - "bibimbap": 7.08e-08, - "bieksa": 7.08e-08, - "biennials": 7.08e-08, - "bii": 7.08e-08, - "bindra": 7.08e-08, - "bioaccumulation": 7.08e-08, - "biopolymers": 7.08e-08, - "biotechnologies": 7.08e-08, - "blaikie": 7.08e-08, - "blouin": 7.08e-08, - "blp": 7.08e-08, - "bluffed": 7.08e-08, - "boche": 7.08e-08, - "boeheim": 7.08e-08, - "bolly": 7.08e-08, - "boman": 7.08e-08, - "bood": 4.07e-08, - "boosey": 7.08e-08, - "boru": 7.08e-08, - "bosc": 7.08e-08, - "bowline": 7.08e-08, - "bpf": 7.08e-08, - "brabazon": 7.08e-08, - "bracy": 7.08e-08, - "bradt": 7.08e-08, - "brasov": 7.08e-08, - "brays": 6.17e-08, - "brenham": 7.08e-08, - "bretherton": 7.08e-08, - "brey": 7.08e-08, - "britax": 7.08e-08, - "brize": 7.08e-08, - "broc": 7.08e-08, - "brockie": 7.08e-08, - "brownson": 7.08e-08, - "browses": 7.08e-08, - "bruxism": 7.08e-08, - "btt": 7.08e-08, - "buckethead": 7.08e-08, - "buddah": 7.08e-08, - "buddhi": 7.08e-08, - "bullpup": 7.08e-08, - "butyric": 7.08e-08, - "buuuuut": 7.08e-08, - "cabals": 7.08e-08, - "cadi": 7.08e-08, - "calders": 7.08e-08, - "calderone": 7.08e-08, - "caldo": 7.08e-08, - "camero": 7.08e-08, - "campesino": 7.08e-08, - "canonize": 7.08e-08, - "cantab": 7.08e-08, - "capehart": 7.08e-08, - "capiz": 7.08e-08, - "capshaw": 7.08e-08, - "cardle": 7.08e-08, - "carjacker": 7.08e-08, - "carless": 7.08e-08, - "carps": 7.08e-08, - "carryall": 7.08e-08, - "carstens": 7.08e-08, - "catahoula": 7.08e-08, - "catcalled": 7.08e-08, - "cattery": 7.08e-08, - "celie": 7.08e-08, - "cellulase": 7.08e-08, - "cenote": 7.08e-08, - "centenario": 7.08e-08, - "cfds": 7.08e-08, - "champing": 7.08e-08, - "chander": 7.08e-08, - "chandragupta": 7.08e-08, - "chano": 7.08e-08, - "chantix": 7.08e-08, - "charltons": 7.08e-08, - "chartists": 7.08e-08, - "chauvin": 7.08e-08, - "cheboygan": 7.08e-08, - "cheesiest": 7.08e-08, - "cheh": 7.08e-08, - "cheick": 7.08e-08, - "cheka": 7.08e-08, - "cheo": 7.08e-08, - "chere": 7.08e-08, - "chinoiserie": 7.08e-08, - "chitwan": 7.08e-08, - "chokeslam": 7.08e-08, - "chomped": 7.08e-08, - "chompers": 7.08e-08, - "chri": 7.08e-08, - "chromeo": 7.08e-08, - "churchgoing": 7.08e-08, - "churchy": 7.08e-08, - "cidade": 7.08e-08, - "ciencia": 7.08e-08, - "cimino": 7.08e-08, - "cipro": 7.08e-08, - "cjeu": 7.08e-08, - "claptons": 7.08e-08, - "clar": 7.08e-08, - "clarus": 7.08e-08, - "clery": 7.08e-08, - "clew": 7.08e-08, - "cmll": 7.08e-08, - "coexists": 7.08e-08, - "collards": 7.08e-08, - "colletti": 7.08e-08, - "coloreds": 7.08e-08, - "comfiest": 7.08e-08, - "comhairle": 7.08e-08, - "commingled": 7.08e-08, - "concavity": 7.08e-08, - "congas": 7.08e-08, - "conjugating": 7.08e-08, - "conjuration": 7.08e-08, - "connexions": 7.08e-08, - "consecrating": 7.08e-08, - "consortiums": 6.92e-08, - "constrictions": 7.08e-08, - "constrictors": 7.08e-08, - "construing": 7.08e-08, - "cooh": 7.08e-08, - "copia": 7.08e-08, - "copperbelt": 7.08e-08, - "copulatory": 7.08e-08, - "corking": 7.08e-08, - "corlett": 7.08e-08, - "corncob": 7.08e-08, - "corum": 7.08e-08, - "cosell": 7.08e-08, - "cottam": 7.08e-08, - "coulsdon": 7.08e-08, - "coumarin": 7.08e-08, - "counterrevolution": 7.08e-08, - "coutinhos": 7.08e-08, - "cova": 7.08e-08, - "cowans": 7.08e-08, - "cramond": 7.08e-08, - "crayford": 7.08e-08, - "crinkling": 7.08e-08, - "cronut": 7.08e-08, - "crostini": 7.08e-08, - "croy": 7.08e-08, - "crudest": 7.08e-08, - "crx": 7.08e-08, - "culty": 7.08e-08, - "cundiff": 7.08e-08, - "curiel": 7.08e-08, - "currituck": 7.08e-08, - "curva": 7.08e-08, - "cutthroats": 7.08e-08, - "cycleway": 7.08e-08, - "cydney": 7.08e-08, - "daad": 7.08e-08, - "dack": 7.08e-08, - "daintily": 7.08e-08, - "damansara": 7.08e-08, - "darion": 7.08e-08, - "darrington": 7.08e-08, - "darwinist": 7.08e-08, - "datu": 7.08e-08, - "daugther": 7.08e-08, - "daxter": 7.08e-08, - "deak": 7.08e-08, - "dealbreaker": 7.08e-08, - "deceitfully": 7.08e-08, - "decompressed": 7.08e-08, - "decon": 7.08e-08, - "deepness": 7.08e-08, - "defenestration": 7.08e-08, - "delectation": 7.08e-08, - "dementor": 7.08e-08, - "demilitarised": 7.08e-08, - "demyelinating": 7.08e-08, - "dephosphorylation": 7.08e-08, - "dering": 7.08e-08, - "desolated": 7.08e-08, - "detrital": 7.08e-08, - "dharamshala": 7.08e-08, - "dharavi": 7.08e-08, - "diagramming": 7.08e-08, - "dibley": 7.08e-08, - "dietmar": 7.08e-08, - "dihydrate": 7.08e-08, - "dimi": 7.08e-08, - "dimmers": 7.08e-08, - "dinging": 7.08e-08, - "dinoflagellates": 7.08e-08, - "dipbrow": 7.08e-08, - "disavowal": 7.08e-08, - "dispositive": 7.08e-08, - "disrupters": 7.08e-08, - "disunion": 7.08e-08, - "divulges": 7.08e-08, - "djokovics": 7.08e-08, - "dka": 7.08e-08, - "doctrinally": 7.08e-08, - "dogra": 7.08e-08, - "dolmen": 7.08e-08, - "donavan": 7.08e-08, - "donnellan": 7.08e-08, - "donnellys": 7.08e-08, - "doodoo": 7.08e-08, - "doomfist": 7.08e-08, - "doper": 7.08e-08, - "dorrell": 7.08e-08, - "dotard": 7.08e-08, - "doubleclick": 7.08e-08, - "dragonslayer": 7.08e-08, - "driss": 7.08e-08, - "dropshipping": 7.08e-08, - "drose": 7.08e-08, - "dtu": 7.08e-08, - "dualities": 7.08e-08, - "duckface": 7.08e-08, - "ductus": 7.08e-08, - "dugas": 7.08e-08, - "duking": 7.08e-08, - "dundees": 7.08e-08, - "dunny": 7.08e-08, - "durarara": 7.08e-08, - "duren": 7.08e-08, - "duttons": 7.08e-08, - "dyas": 7.08e-08, - "earing": 7.08e-08, - "eart": 7.08e-08, - "ebsco": 7.08e-08, - "ecom": 7.08e-08, - "ecuadorians": 7.08e-08, - "edlund": 7.08e-08, - "edmundson": 7.08e-08, - "efendi": 7.08e-08, - "eguchi": 7.08e-08, - "eht": 7.08e-08, - "eicher": 7.08e-08, - "eireann": 7.08e-08, - "ejaculations": 7.08e-08, - "ejaculatory": 7.08e-08, - "elastically": 7.08e-08, - "electrospray": 7.08e-08, - "eliane": 7.08e-08, - "ellingtons": 7.08e-08, - "ellroy": 7.08e-08, - "emanuels": 7.08e-08, - "emboldening": 7.08e-08, - "embrittlement": 7.08e-08, - "emiko": 7.08e-08, - "emotionalism": 7.08e-08, - "empiric": 7.08e-08, - "emulsifying": 7.08e-08, - "enactors": 7.08e-08, - "engadine": 7.08e-08, - "enjoining": 7.08e-08, - "enterococcus": 7.08e-08, - "epithelia": 7.08e-08, - "epsrc": 7.08e-08, - "equines": 7.08e-08, - "erde": 7.08e-08, - "ergonomically": 7.08e-08, - "erland": 7.08e-08, - "ersan": 7.08e-08, - "esky": 7.08e-08, - "esquimalt": 7.08e-08, - "estevan": 7.08e-08, - "estrone": 7.08e-08, - "etonians": 7.08e-08, - "euromoney": 7.08e-08, - "eurusd": 7.08e-08, - "everday": 7.08e-08, - "exfoliant": 7.08e-08, - "exosomes": 7.08e-08, - "experiance": 7.08e-08, - "explaination": 7.08e-08, - "exudates": 7.08e-08, - "fabbri": 7.08e-08, - "fallowfield": 7.08e-08, - "falsifiable": 7.08e-08, - "falta": 7.08e-08, - "fantail": 7.08e-08, - "fati": 7.08e-08, - "faulconer": 7.08e-08, - "fcd": 7.08e-08, - "fedde": 7.08e-08, - "feigenbaum": 7.08e-08, - "feldmans": 7.08e-08, - "feminazi": 7.08e-08, - "fengs": 7.08e-08, - "fermenter": 7.08e-08, - "ferreting": 7.08e-08, - "fiddy": 7.08e-08, - "fih": 7.08e-08, - "filoni": 7.08e-08, - "finster": 7.08e-08, - "firtash": 7.08e-08, - "fizzes": 7.08e-08, - "flashman": 7.08e-08, - "flatterer": 7.08e-08, - "florham": 7.08e-08, - "fluorosis": 7.08e-08, - "fnp": 7.08e-08, - "foor": 7.08e-08, - "foord": 7.08e-08, - "fotheringham": 7.08e-08, - "foxworthy": 7.08e-08, - "fozzy": 7.08e-08, - "fres": 7.08e-08, - "fricatives": 7.08e-08, - "frobenius": 7.08e-08, - "frode": 7.08e-08, - "frodos": 7.08e-08, - "froid": 7.08e-08, - "fulkerson": 7.08e-08, - "fulminating": 7.08e-08, - "fupa": 7.08e-08, - "furio": 7.08e-08, - "fusillade": 7.08e-08, - "gadaffi": 7.08e-08, - "galia": 7.08e-08, - "galliani": 7.08e-08, - "galliard": 7.08e-08, - "gamasutra": 7.08e-08, - "ganger": 7.08e-08, - "ganpati": 7.08e-08, - "garamond": 7.08e-08, - "gaud": 7.08e-08, - "gcms": 7.08e-08, - "geauga": 7.08e-08, - "geelongs": 7.08e-08, - "gellman": 7.08e-08, - "genesys": 7.08e-08, - "gery": 7.08e-08, - "ghoshal": 7.08e-08, - "gillet": 7.08e-08, - "gilliams": 7.08e-08, - "glaciology": 7.08e-08, - "glaziers": 7.08e-08, - "glenys": 7.08e-08, - "gloats": 7.08e-08, - "gmtv": 7.08e-08, - "gnb": 7.08e-08, - "gobierno": 7.08e-08, - "goch": 7.08e-08, - "godunov": 7.08e-08, - "goethals": 7.08e-08, - "goethes": 7.08e-08, - "golani": 7.08e-08, - "goncalves": 7.08e-08, - "gordimer": 7.08e-08, - "gottesman": 7.08e-08, - "gpcr": 7.08e-08, - "granblue": 7.08e-08, - "grandville": 7.08e-08, - "gravediggers": 7.08e-08, - "greektown": 7.08e-08, - "greenacre": 7.08e-08, - "greenburg": 7.08e-08, - "greenbush": 7.08e-08, - "grimble": 7.08e-08, - "grimley": 7.08e-08, - "grund": 7.08e-08, - "grunewald": 7.08e-08, - "gsb": 7.08e-08, - "gtv": 7.08e-08, - "guanxi": 7.08e-08, - "guideposts": 7.08e-08, - "haditha": 7.08e-08, - "halevi": 7.08e-08, - "hallux": 7.08e-08, - "hampi": 7.08e-08, - "hanni": 7.08e-08, - "harbaughs": 7.08e-08, - "harve": 7.08e-08, - "hasans": 7.08e-08, - "hashbrowns": 7.08e-08, - "hbm": 7.08e-08, - "heartsick": 7.08e-08, - "heffner": 7.08e-08, - "hegde": 7.08e-08, - "heiberg": 7.08e-08, - "heilman": 7.08e-08, - "heisler": 7.08e-08, - "helicase": 7.08e-08, - "hellmuth": 7.08e-08, - "helplines": 7.08e-08, - "hemings": 7.08e-08, - "hessel": 7.08e-08, - "heterologous": 7.08e-08, - "hever": 7.08e-08, - "hfe": 7.08e-08, - "hfr": 7.08e-08, - "hgc": 7.08e-08, - "hideaki": 7.08e-08, - "highwood": 7.08e-08, - "hinze": 7.08e-08, - "hippel": 7.08e-08, - "hisako": 7.08e-08, - "histo": 7.08e-08, - "hobbles": 7.08e-08, - "hoggs": 7.08e-08, - "holli": 7.08e-08, - "homeworks": 7.08e-08, - "honchos": 7.08e-08, - "hopalong": 7.08e-08, - "hotbox": 7.08e-08, - "houk": 7.08e-08, - "housemaster": 7.08e-08, - "hsas": 7.08e-08, - "hubcap": 7.08e-08, - "hubertus": 7.08e-08, - "hudgins": 7.08e-08, - "humanae": 7.08e-08, - "hunching": 7.08e-08, - "hungered": 7.08e-08, - "huong": 7.08e-08, - "hurlers": 7.08e-08, - "husein": 7.08e-08, - "huuuge": 7.08e-08, - "hydroid": 7.08e-08, - "hydrolytic": 7.08e-08, - "hydroxides": 7.08e-08, - "hygge": 7.08e-08, - "icebound": 7.08e-08, - "icey": 7.08e-08, - "ictr": 7.08e-08, - "idyllwild": 7.08e-08, - "ifans": 7.08e-08, - "iframes": 7.08e-08, - "ikan": 7.08e-08, - "illogically": 7.08e-08, - "imaginarium": 7.08e-08, - "iml": 7.08e-08, - "impinged": 7.08e-08, - "implausibly": 7.08e-08, - "inarguably": 7.08e-08, - "incapability": 7.08e-08, - "indiewire": 7.08e-08, - "influenzae": 7.08e-08, - "insolvencies": 7.08e-08, - "instax": 7.08e-08, - "instillation": 7.08e-08, - "intension": 7.08e-08, - "inters": 5.13e-08, - "intercolonial": 7.08e-08, - "interdigital": 7.08e-08, - "internation": 7.08e-08, - "intesa": 7.08e-08, - "intouch": 7.08e-08, - "intrest": 7.08e-08, - "ionised": 7.08e-08, - "ippo": 7.08e-08, - "irrefutably": 7.08e-08, - "itanium": 7.08e-08, - "itraconazole": 7.08e-08, - "jabir": 7.08e-08, - "jackin": 7.08e-08, - "jaggers": 6.76e-08, - "jahrhundert": 7.08e-08, - "janek": 7.08e-08, - "jangs": 7.08e-08, - "janjaweed": 7.08e-08, - "jape": 7.08e-08, - "jardins": 7.08e-08, - "jarndyce": 7.08e-08, - "jassim": 7.08e-08, - "jasta": 7.08e-08, - "jeana": 7.08e-08, - "jfs": 7.08e-08, - "johannsen": 7.08e-08, - "johanssons": 7.08e-08, - "jonnys": 7.08e-08, - "jow": 7.08e-08, - "judaeo": 7.08e-08, - "jujube": 7.08e-08, - "junagadh": 7.08e-08, - "junebug": 7.08e-08, - "junio": 7.08e-08, - "kacy": 7.08e-08, - "kafe": 7.08e-08, - "kahu": 7.08e-08, - "kaibab": 7.08e-08, - "kakaotalk": 7.08e-08, - "kako": 7.08e-08, - "kalinin": 7.08e-08, - "kanner": 7.08e-08, - "kantha": 7.08e-08, - "kapitan": 7.08e-08, - "karena": 7.08e-08, - "karmel": 7.08e-08, - "kasam": 7.08e-08, - "katayama": 7.08e-08, - "katsuragi": 7.08e-08, - "katzman": 7.08e-08, - "kautsky": 7.08e-08, - "kayal": 7.08e-08, - "kehl": 7.08e-08, - "keilor": 7.08e-08, - "kelby": 7.08e-08, - "kellam": 7.08e-08, - "kentaro": 7.08e-08, - "kering": 7.08e-08, - "kexp": 7.08e-08, - "keyrings": 7.08e-08, - "kgf": 7.08e-08, - "khouri": 7.08e-08, - "khs": 7.08e-08, - "kiehls": 7.08e-08, - "kihei": 7.08e-08, - "kila": 7.08e-08, - "kile": 7.08e-08, - "kilgour": 7.08e-08, - "kilgrave": 7.08e-08, - "kirkyard": 7.08e-08, - "kisaragi": 7.08e-08, - "kjetil": 7.08e-08, - "klimov": 7.08e-08, - "kma": 7.08e-08, - "kodaks": 7.08e-08, - "kodansha": 7.08e-08, - "koei": 7.08e-08, - "kohinoor": 7.08e-08, - "kouyate": 7.08e-08, - "krait": 7.08e-08, - "krefeld": 7.08e-08, - "kristo": 7.08e-08, - "kryten": 7.08e-08, - "kujo": 7.08e-08, - "kune": 7.08e-08, - "kustom": 7.08e-08, - "kyte": 7.08e-08, - "lafite": 7.08e-08, - "laka": 7.08e-08, - "lamaze": 7.08e-08, - "lambic": 7.08e-08, - "lamentably": 7.08e-08, - "lamido": 7.08e-08, - "lamington": 7.08e-08, - "lamon": 7.08e-08, - "lamour": 7.08e-08, - "langleys": 7.08e-08, - "lantau": 7.08e-08, - "larbi": 7.08e-08, - "latticework": 7.08e-08, - "laus": 6.61e-08, - "leapfrogging": 7.08e-08, - "leclaire": 7.08e-08, - "leeuwin": 7.08e-08, - "legatus": 7.08e-08, - "lenton": 7.08e-08, - "leszek": 7.08e-08, - "levett": 7.08e-08, - "lexically": 7.08e-08, - "lfb": 7.08e-08, - "libi": 7.08e-08, - "ligeti": 7.08e-08, - "lightner": 7.08e-08, - "ligonier": 7.08e-08, - "lillis": 7.08e-08, - "limoncello": 7.08e-08, - "linearization": 7.08e-08, - "lisping": 7.08e-08, - "listowel": 7.08e-08, - "lly": 7.08e-08, - "lodgement": 7.08e-08, - "loewy": 7.08e-08, - "lollar": 7.08e-08, - "longueville": 7.08e-08, - "loopers": 7.08e-08, - "lovitz": 7.08e-08, - "lubricates": 7.08e-08, - "lucrecia": 7.08e-08, - "luverne": 7.08e-08, - "lvad": 7.08e-08, - "lycee": 7.08e-08, - "lygon": 7.08e-08, - "lyr": 7.08e-08, - "lyttle": 7.08e-08, - "macdonell": 7.08e-08, - "macerated": 7.08e-08, - "mackaye": 7.08e-08, - "macleods": 7.08e-08, - "magnavox": 7.08e-08, - "mahfouz": 7.08e-08, - "mahira": 7.08e-08, - "maicon": 7.08e-08, - "mallorys": 7.08e-08, - "manang": 7.08e-08, - "manby": 7.08e-08, - "manchego": 7.08e-08, - "manders": 7.08e-08, - "mankiw": 7.08e-08, - "maois": 7.08e-08, - "marae": 7.08e-08, - "margaretta": 7.08e-08, - "margi": 7.08e-08, - "marlton": 7.08e-08, - "maronites": 7.08e-08, - "marq": 7.08e-08, - "marson": 7.08e-08, - "marz": 7.08e-08, - "massasoit": 7.08e-08, - "mastication": 7.08e-08, - "mauler": 7.08e-08, - "mayank": 7.08e-08, - "maymay": 7.08e-08, - "mazy": 7.08e-08, - "mbf": 7.08e-08, - "mcaleer": 7.08e-08, - "mediacom": 7.08e-08, - "medibank": 7.08e-08, - "medicares": 7.08e-08, - "medivh": 7.08e-08, - "mehrotra": 7.08e-08, - "melky": 7.08e-08, - "melman": 7.08e-08, - "memel": 7.08e-08, - "menninger": 7.08e-08, - "meq": 7.08e-08, - "merchantability": 7.08e-08, - "meristem": 7.08e-08, - "mesmerism": 7.08e-08, - "messily": 7.08e-08, - "meynell": 7.08e-08, - "microparticles": 7.08e-08, - "middlesborough": 7.08e-08, - "midship": 7.08e-08, - "milagro": 7.08e-08, - "milkmen": 7.08e-08, - "millenarian": 7.08e-08, - "milman": 7.08e-08, - "milorad": 7.08e-08, - "milwaukie": 7.08e-08, - "minky": 7.08e-08, - "misfolded": 7.08e-08, - "misgender": 7.08e-08, - "mixs": 7.08e-08, - "miyoshi": 7.08e-08, - "mnl": 7.08e-08, - "mnm": 7.08e-08, - "moff": 7.08e-08, - "moldovas": 7.08e-08, - "monoid": 7.08e-08, - "monovalent": 7.08e-08, - "montecristo": 7.08e-08, - "monteleone": 7.08e-08, - "moocher": 7.08e-08, - "moriyama": 7.08e-08, - "morphett": 7.08e-08, - "mosss": 7.08e-08, - "mozzie": 7.08e-08, - "muezzin": 7.08e-08, - "mukerji": 7.08e-08, - "muli": 7.08e-08, - "multicomponent": 7.08e-08, - "multimillionaires": 7.08e-08, - "multistory": 7.08e-08, - "munchie": 7.08e-08, - "mund": 7.08e-08, - "munis": 7.08e-08, - "munsell": 7.08e-08, - "muralist": 7.08e-08, - "musil": 7.08e-08, - "mussa": 7.08e-08, - "muthu": 7.08e-08, - "muzaffar": 7.08e-08, - "mws": 7.08e-08, - "mycobacteria": 7.08e-08, - "myofascial": 7.08e-08, - "myotis": 7.08e-08, - "nabu": 7.08e-08, - "nacer": 7.08e-08, - "nadias": 7.08e-08, - "nagara": 7.08e-08, - "naima": 7.08e-08, - "nairne": 7.08e-08, - "najam": 7.08e-08, - "nalanda": 7.08e-08, - "nanako": 7.08e-08, - "nandan": 7.08e-08, - "nanoha": 7.08e-08, - "nanticoke": 7.08e-08, - "naranjo": 7.08e-08, - "nasreen": 7.08e-08, - "nasrin": 7.08e-08, - "nationalisms": 7.08e-08, - "natus": 7.08e-08, - "naves": 7.08e-08, - "nayan": 7.08e-08, - "nazarian": 7.08e-08, - "nazario": 7.08e-08, - "ncap": 7.08e-08, - "ncar": 7.08e-08, - "ncte": 7.08e-08, - "neapolitans": 7.08e-08, - "neches": 7.08e-08, - "neckerchief": 7.08e-08, - "nedra": 7.08e-08, - "neoadjuvant": 7.08e-08, - "neuromancer": 7.08e-08, - "newb": 7.08e-08, - "newgrounds": 7.08e-08, - "nflx": 7.08e-08, - "niente": 7.08e-08, - "nigrum": 7.08e-08, - "nitto": 7.08e-08, - "nmsu": 7.08e-08, - "nocera": 7.08e-08, - "nonferrous": 7.08e-08, - "nonwoven": 7.08e-08, - "noori": 7.08e-08, - "norfolks": 7.08e-08, - "normanby": 7.08e-08, - "northen": 7.08e-08, - "nullah": 7.08e-08, - "numbnuts": 7.08e-08, - "nuremburg": 7.08e-08, - "nutini": 7.08e-08, - "nutr": 7.08e-08, - "olearys": 7.08e-08, - "oarfish": 7.08e-08, - "occluding": 7.08e-08, - "oceanus": 7.08e-08, - "ocoee": 7.08e-08, - "odc": 7.08e-08, - "officemax": 7.08e-08, - "ogaden": 7.08e-08, - "ogee": 7.08e-08, - "ohhhhhhh": 7.08e-08, - "okapi": 7.08e-08, - "okuma": 7.08e-08, - "okura": 7.08e-08, - "olduvai": 7.08e-08, - "olf": 7.08e-08, - "olha": 7.08e-08, - "olim": 7.08e-08, - "olinda": 7.08e-08, - "omarion": 7.08e-08, - "oneshot": 7.08e-08, - "ormoc": 7.08e-08, - "ortegas": 7.08e-08, - "osso": 7.08e-08, - "otros": 7.08e-08, - "outnumbers": 7.08e-08, - "owosso": 7.08e-08, - "owyhee": 7.08e-08, - "padron": 7.08e-08, - "painesville": 7.08e-08, - "palla": 7.08e-08, - "pama": 7.08e-08, - "panis": 7.08e-08, - "pannu": 7.08e-08, - "panola": 7.08e-08, - "paraguays": 7.08e-08, - "paran": 7.08e-08, - "parco": 7.08e-08, - "pardner": 7.08e-08, - "paria": 7.08e-08, - "partic": 7.08e-08, - "pascha": 7.08e-08, - "passeth": 7.08e-08, - "passionless": 7.08e-08, - "patcher": 7.08e-08, - "peacocke": 7.08e-08, - "pede": 7.08e-08, - "pedigreed": 7.08e-08, - "pediments": 7.08e-08, - "peelers": 7.08e-08, - "pelinka": 7.08e-08, - "pellagra": 7.08e-08, - "pelling": 7.08e-08, - "pensiero": 7.08e-08, - "perceptibly": 7.08e-08, - "persaud": 7.08e-08, - "perturbing": 7.08e-08, - "peterbilt": 7.08e-08, - "petersens": 7.08e-08, - "pevsner": 7.08e-08, - "phaseout": 7.08e-08, - "phillipss": 7.08e-08, - "philos": 7.08e-08, - "phosphatases": 7.08e-08, - "photodetector": 7.08e-08, - "photoplay": 7.08e-08, - "pietra": 7.08e-08, - "pinecones": 7.08e-08, - "pinwheels": 7.08e-08, - "pistoia": 7.08e-08, - "pizazz": 7.08e-08, - "placemats": 7.08e-08, - "plaquemines": 7.08e-08, - "playmobil": 7.08e-08, - "polder": 7.08e-08, - "polgar": 7.08e-08, - "policia": 7.08e-08, - "polyphenol": 7.08e-08, - "pooing": 7.08e-08, - "popliteal": 7.08e-08, - "poseur": 7.08e-08, - "postfix": 7.08e-08, - "posto": 7.08e-08, - "poundage": 7.08e-08, - "pownall": 7.08e-08, - "prader": 7.08e-08, - "prebble": 7.08e-08, - "premix": 7.08e-08, - "preposterously": 7.08e-08, - "preservationist": 7.08e-08, - "presumptively": 7.08e-08, - "pries": 7.08e-08, - "proce": 7.08e-08, - "prognostication": 7.08e-08, - "prohibitionists": 7.08e-08, - "protectant": 7.08e-08, - "proteomic": 7.08e-08, - "protestation": 7.08e-08, - "protoplasm": 7.08e-08, - "providencia": 7.08e-08, - "psyching": 7.08e-08, - "psychometrics": 7.08e-08, - "pubescens": 7.08e-08, - "puran": 7.08e-08, - "purchas": 7.08e-08, - "pureblood": 7.08e-08, - "pvm": 7.08e-08, - "pyp": 7.08e-08, - "pythia": 7.08e-08, - "quavering": 7.08e-08, - "querida": 7.08e-08, - "qun": 7.08e-08, - "radicchio": 7.08e-08, - "rahmat": 7.08e-08, - "rampaged": 7.08e-08, - "ranchos": 7.08e-08, - "rapides": 7.08e-08, - "ravn": 7.08e-08, - "rbp": 7.08e-08, - "rdt": 7.08e-08, - "reac": 7.08e-08, - "recalculation": 7.08e-08, - "redcoat": 7.08e-08, - "regin": 7.08e-08, - "regionalization": 7.08e-08, - "regno": 7.08e-08, - "reinsurer": 7.08e-08, - "reintegrating": 7.08e-08, - "remounted": 7.08e-08, - "repudiates": 7.08e-08, - "repulses": 7.08e-08, - "rescinds": 7.08e-08, - "reste": 7.08e-08, - "resurrections": 7.08e-08, - "resuscitating": 7.08e-08, - "retraces": 7.08e-08, - "reviver": 7.08e-08, - "rezone": 7.08e-08, - "rhinehart": 7.08e-08, - "ridgeland": 7.08e-08, - "ridsdale": 7.08e-08, - "rike": 7.08e-08, - "risd": 7.08e-08, - "roader": 7.08e-08, - "rockne": 7.08e-08, - "roofie": 7.08e-08, - "rosatom": 7.08e-08, - "rosemead": 7.08e-08, - "rosenkavalier": 7.08e-08, - "rotimi": 7.08e-08, - "roxanna": 7.08e-08, - "roxys": 7.08e-08, - "rufe": 7.08e-08, - "ruggero": 7.08e-08, - "rusch": 7.08e-08, - "rybolovlev": 7.08e-08, - "sacagawea": 7.08e-08, - "sachse": 7.08e-08, - "salsas": 7.08e-08, - "saltash": 7.08e-08, - "samedi": 7.08e-08, - "samhita": 7.08e-08, - "samit": 7.08e-08, - "samoas": 7.08e-08, - "sampsons": 7.08e-08, - "sanwa": 7.08e-08, - "satine": 7.08e-08, - "satoko": 7.08e-08, - "saurian": 7.08e-08, - "savors": 7.08e-08, - "sawamura": 7.08e-08, - "sbir": 7.08e-08, - "schillinger": 7.08e-08, - "schnitzer": 7.08e-08, - "schoolmasters": 7.08e-08, - "schwan": 7.08e-08, - "schwarber": 7.08e-08, - "sciencedaily": 7.08e-08, - "screeds": 7.08e-08, - "scudetto": 7.08e-08, - "sdny": 7.08e-08, - "seabreeze": 7.08e-08, - "seau": 7.08e-08, - "secdef": 7.08e-08, - "securitisation": 7.08e-08, - "seest": 7.08e-08, - "seir": 7.08e-08, - "sejm": 7.08e-08, - "sekulow": 7.08e-08, - "selanne": 7.08e-08, - "selbst": 7.08e-08, - "selfesteem": 7.08e-08, - "sellotape": 7.08e-08, - "selway": 7.08e-08, - "serg": 7.08e-08, - "serina": 7.08e-08, - "sevierville": 7.08e-08, - "sewickley": 7.08e-08, - "sftp": 7.08e-08, - "shada": 7.08e-08, - "shalala": 7.08e-08, - "shalwar": 7.08e-08, - "shapira": 7.08e-08, - "shayk": 7.08e-08, - "shearwaters": 7.08e-08, - "shetlands": 7.08e-08, - "shillelagh": 7.08e-08, - "shipshape": 7.08e-08, - "shiros": 7.08e-08, - "shortsightedness": 7.08e-08, - "shriner": 7.08e-08, - "shumaker": 7.08e-08, - "sibbald": 7.08e-08, - "sieved": 7.08e-08, - "sifts": 7.08e-08, - "signboards": 7.08e-08, - "signum": 7.08e-08, - "silicosis": 7.08e-08, - "simcha": 7.08e-08, - "singham": 7.08e-08, - "skadden": 7.08e-08, - "skagen": 7.08e-08, - "skeena": 7.08e-08, - "skerries": 7.08e-08, - "skiffle": 7.08e-08, - "slammers": 7.08e-08, - "sloman": 7.08e-08, - "slurped": 7.08e-08, - "slv": 7.08e-08, - "smushed": 7.08e-08, - "snaring": 7.08e-08, - "sohr": 7.08e-08, - "sokratis": 7.08e-08, - "sortable": 7.08e-08, - "soymilk": 7.08e-08, - "spahn": 7.08e-08, - "sparling": 7.08e-08, - "spdr": 7.08e-08, - "speakeasies": 7.08e-08, - "spicey": 7.08e-08, - "spier": 7.08e-08, - "spiff": 7.08e-08, - "spitballing": 7.08e-08, - "spiteri": 7.08e-08, - "spithead": 7.08e-08, - "spittoon": 7.08e-08, - "spleens": 7.08e-08, - "sportscars": 7.08e-08, - "springbank": 7.08e-08, - "spurge": 7.08e-08, - "ssss": 7.08e-08, - "ssv": 7.08e-08, - "stagings": 7.08e-08, - "stallones": 7.08e-08, - "stapes": 7.08e-08, - "stearate": 7.08e-08, - "steichen": 7.08e-08, - "stelling": 7.08e-08, - "stenographers": 7.08e-08, - "stepp": 7.08e-08, - "stina": 7.08e-08, - "stokowski": 7.08e-08, - "strathearn": 7.08e-08, - "stroheim": 7.08e-08, - "submitters": 7.08e-08, - "suchitra": 7.08e-08, - "sundresses": 7.08e-08, - "supervolcano": 7.08e-08, - "swac": 7.08e-08, - "sweetland": 7.08e-08, - "switchfoot": 7.08e-08, - "symptomatology": 7.08e-08, - "systematization": 7.08e-08, - "tabatha": 7.08e-08, - "takako": 7.08e-08, - "takamine": 7.08e-08, - "talaat": 7.08e-08, - "tampax": 7.08e-08, - "tanguy": 7.08e-08, - "tanny": 7.08e-08, - "tardive": 7.08e-08, - "tarsi": 7.08e-08, - "taxonomically": 7.08e-08, - "teese": 7.08e-08, - "teff": 7.08e-08, - "tehrik": 7.08e-08, - "teitelbaum": 7.08e-08, - "templated": 7.08e-08, - "tems": 7.08e-08, - "tenebrae": 7.08e-08, - "tenofovir": 7.08e-08, - "tenten": 7.08e-08, - "teodor": 7.08e-08, - "teratogenic": 7.08e-08, - "textually": 7.08e-08, - "tharpe": 7.08e-08, - "theda": 7.08e-08, - "theodores": 7.08e-08, - "thermoset": 7.08e-08, - "thibodaux": 7.08e-08, - "thomasina": 7.08e-08, - "thoros": 7.08e-08, - "thronging": 7.08e-08, - "throop": 7.08e-08, - "thunderhead": 7.08e-08, - "thundery": 7.08e-08, - "thys": 7.08e-08, - "tienes": 7.08e-08, - "tima": 7.08e-08, - "titleholders": 7.08e-08, - "tiwi": 7.08e-08, - "tmf": 7.08e-08, - "tmw": 7.08e-08, - "toastie": 7.08e-08, - "tongans": 7.08e-08, - "toom": 7.08e-08, - "topicality": 7.08e-08, - "touchin": 7.08e-08, - "toughs": 7.08e-08, - "traceys": 7.08e-08, - "traxxas": 7.08e-08, - "tremens": 7.08e-08, - "tridents": 7.08e-08, - "trigon": 7.08e-08, - "trillian": 7.08e-08, - "trolly": 7.08e-08, - "trumble": 7.08e-08, - "tuberculous": 7.08e-08, - "tuckered": 7.08e-08, - "tullamarine": 7.08e-08, - "tunku": 7.08e-08, - "tupolev": 7.08e-08, - "turne": 7.08e-08, - "tuscarawas": 7.08e-08, - "tweedie": 7.08e-08, - "tzar": 7.08e-08, - "uhaul": 7.08e-08, - "umeda": 7.08e-08, - "ummmmm": 7.08e-08, - "unarmored": 7.08e-08, - "uncrowded": 7.08e-08, - "unequipped": 7.08e-08, - "unindicted": 7.08e-08, - "universite": 7.08e-08, - "unplayed": 7.08e-08, - "unprejudiced": 7.08e-08, - "unsporting": 7.08e-08, - "urbanity": 7.08e-08, - "urd": 7.08e-08, - "usul": 7.08e-08, - "uwc": 7.08e-08, - "uzo": 7.08e-08, - "vaishnava": 7.08e-08, - "vakil": 7.08e-08, - "valentinos": 7.08e-08, - "vampyre": 7.08e-08, - "vanderbilts": 5.37e-08, - "vascularity": 7.08e-08, - "vasiliy": 7.08e-08, - "vaudevillian": 7.08e-08, - "vbucks": 7.08e-08, - "verdean": 7.08e-08, - "verhofstadt": 7.08e-08, - "vestment": 7.08e-08, - "vibrance": 7.08e-08, - "vili": 7.08e-08, - "viljoen": 7.08e-08, - "viticultural": 7.08e-08, - "viviani": 7.08e-08, - "voll": 7.08e-08, - "vora": 7.08e-08, - "vro": 7.08e-08, - "vsv": 7.08e-08, - "vuittons": 7.08e-08, - "vvt": 7.08e-08, - "wadded": 7.08e-08, - "wagener": 7.08e-08, - "waren": 7.08e-08, - "warlow": 7.08e-08, - "warrier": 7.08e-08, - "wason": 7.08e-08, - "waterboard": 7.08e-08, - "waupaca": 7.08e-08, - "waveland": 7.08e-08, - "wbu": 7.08e-08, - "wealden": 7.08e-08, - "weirding": 7.08e-08, - "weissmann": 7.08e-08, - "wendall": 7.08e-08, - "wernicke": 7.08e-08, - "whampoa": 7.08e-08, - "wheatfield": 7.08e-08, - "whoopin": 7.08e-08, - "wiesner": 7.08e-08, - "wieters": 7.08e-08, - "wiht": 7.08e-08, - "wincanton": 7.08e-08, - "winfreys": 7.08e-08, - "winny": 7.08e-08, - "witton": 7.08e-08, - "witts": 7.08e-08, - "woi": 7.08e-08, - "wollen": 7.08e-08, - "wolpert": 7.08e-08, - "wonderous": 7.08e-08, - "woodpile": 7.08e-08, - "wormald": 7.08e-08, - "xmpp": 7.08e-08, - "xul": 7.08e-08, - "yakutia": 7.08e-08, - "yandle": 7.08e-08, - "yardsticks": 7.08e-08, - "yel": 7.08e-08, - "yha": 7.08e-08, - "ysr": 7.08e-08, - "yucaipa": 7.08e-08, - "zakynthos": 7.08e-08, - "zanna": 7.08e-08, - "zehnder": 7.08e-08, - "zetland": 7.08e-08, - "zimmern": 7.08e-08, - "zofran": 7.08e-08, - "abdou": 6.92e-08, - "abkhaz": 6.92e-08, - "abot": 6.92e-08, - "acara": 6.92e-08, - "acetyltransferase": 6.92e-08, - "achill": 6.92e-08, - "acidophilus": 6.92e-08, - "acis": 6.92e-08, - "ackbar": 6.92e-08, - "adib": 6.92e-08, - "adventuresome": 6.92e-08, - "againt": 6.92e-08, - "agius": 6.92e-08, - "aguileras": 6.92e-08, - "agut": 6.92e-08, - "akim": 6.92e-08, - "albatros": 6.92e-08, - "albertina": 6.92e-08, - "alexios": 6.92e-08, - "alkalis": 6.92e-08, - "alkane": 6.92e-08, - "allrounder": 6.92e-08, - "almira": 6.92e-08, - "alou": 6.92e-08, - "altis": 6.92e-08, - "amane": 6.92e-08, - "amant": 6.92e-08, - "amanuensis": 6.92e-08, - "amatuer": 6.92e-08, - "amaury": 6.92e-08, - "ambiente": 6.92e-08, - "amet": 6.92e-08, - "amethysts": 6.92e-08, - "amnesties": 6.92e-08, - "andesitic": 6.92e-08, - "anechoic": 6.92e-08, - "antiquing": 6.92e-08, - "anzeiger": 6.92e-08, - "aog": 6.92e-08, - "aoty": 6.92e-08, - "archaeal": 6.92e-08, - "architectonic": 6.92e-08, - "arkadia": 6.92e-08, - "arkle": 6.92e-08, - "arrakis": 6.92e-08, - "arsenate": 6.92e-08, - "arteaga": 6.92e-08, - "aryas": 6.92e-08, - "ascalon": 6.92e-08, - "asgardians": 6.92e-08, - "ashbery": 6.92e-08, - "ashgabat": 6.92e-08, - "asmar": 6.92e-08, - "aspergillosis": 6.92e-08, - "asphyxiating": 6.92e-08, - "assails": 6.92e-08, - "attributive": 6.92e-08, - "attwell": 6.92e-08, - "augen": 6.92e-08, - "auscultation": 6.92e-08, - "averred": 6.92e-08, - "awas": 6.92e-08, - "azikiwe": 6.92e-08, - "azoff": 6.92e-08, - "bagg": 6.92e-08, - "bagga": 6.92e-08, - "baiano": 6.92e-08, - "baillieu": 6.92e-08, - "bakayoko": 6.92e-08, - "balanchines": 6.92e-08, - "balochi": 6.92e-08, - "banham": 6.92e-08, - "barbi": 6.92e-08, - "barkan": 6.92e-08, - "barotseland": 6.92e-08, - "barres": 6.92e-08, - "barzun": 6.92e-08, - "basally": 6.92e-08, - "baty": 6.92e-08, - "bbd": 6.92e-08, - "bbp": 6.92e-08, - "bearsden": 6.92e-08, - "bedhead": 6.92e-08, - "bedok": 6.92e-08, - "beena": 6.92e-08, - "belched": 6.92e-08, - "belgrades": 6.92e-08, - "belleza": 6.92e-08, - "bellisario": 6.92e-08, - "bellsouth": 6.92e-08, - "benzoin": 6.92e-08, - "besler": 6.92e-08, - "besse": 6.92e-08, - "betwen": 6.92e-08, - "bexleyheath": 6.92e-08, - "beza": 6.92e-08, - "bhandara": 6.92e-08, - "bhojpuri": 6.92e-08, - "bicuspid": 6.92e-08, - "bidden": 6.92e-08, - "biju": 6.92e-08, - "bingle": 6.92e-08, - "binkley": 6.92e-08, - "biodiverse": 6.92e-08, - "biomaterial": 6.92e-08, - "bioweapon": 6.92e-08, - "birb": 6.92e-08, - "bisphosphonates": 6.92e-08, - "bisson": 6.92e-08, - "bitdefender": 6.92e-08, - "bitting": 6.92e-08, - "blackstones": 6.92e-08, - "blanda": 6.92e-08, - "blaser": 6.92e-08, - "blatch": 6.92e-08, - "bleakest": 6.92e-08, - "bleakly": 6.92e-08, - "blizz": 6.92e-08, - "bloatware": 6.92e-08, - "bluebook": 6.92e-08, - "boadicea": 6.92e-08, - "bocca": 6.92e-08, - "boettcher": 6.92e-08, - "boggart": 6.92e-08, - "bolsover": 6.92e-08, - "bondholder": 6.92e-08, - "bonga": 6.92e-08, - "bonhomie": 6.92e-08, - "bouteflika": 6.92e-08, - "bpg": 6.92e-08, - "brandreth": 6.92e-08, - "bransford": 6.92e-08, - "braze": 6.92e-08, - "breadstick": 6.92e-08, - "breakroom": 6.92e-08, - "bresnan": 6.92e-08, - "brinckerhoff": 6.92e-08, - "brinjal": 6.92e-08, - "brinkmanship": 6.92e-08, - "brk": 6.92e-08, - "broca": 6.92e-08, - "brora": 6.92e-08, - "brownlie": 6.92e-08, - "brownstown": 6.92e-08, - "brummer": 6.92e-08, - "brw": 6.92e-08, - "brydges": 6.92e-08, - "bryophytes": 6.92e-08, - "buendia": 6.92e-08, - "bujold": 6.92e-08, - "burberrys": 6.92e-08, - "burnes": 6.92e-08, - "bushi": 6.92e-08, - "busywork": 6.92e-08, - "cads": 6.92e-08, - "caid": 6.92e-08, - "calculable": 6.92e-08, - "caldas": 6.92e-08, - "callable": 6.92e-08, - "callendar": 6.92e-08, - "calverton": 6.92e-08, - "cambuslang": 6.92e-08, - "candie": 6.92e-08, - "canopus": 6.92e-08, - "canso": 6.92e-08, - "cantonments": 6.92e-08, - "carballo": 6.92e-08, - "carboxylase": 6.92e-08, - "carel": 6.92e-08, - "caribs": 6.92e-08, - "carpels": 6.92e-08, - "casitas": 6.92e-08, - "cassirer": 6.92e-08, - "cassville": 6.92e-08, - "catcall": 6.92e-08, - "catchin": 6.92e-08, - "catedral": 6.92e-08, - "cathars": 6.92e-08, - "cccp": 6.92e-08, - "ccv": 6.92e-08, - "cermak": 6.92e-08, - "cerrito": 6.92e-08, - "chadwell": 6.92e-08, - "chamakh": 6.92e-08, - "chambord": 6.92e-08, - "chandras": 6.92e-08, - "charente": 6.92e-08, - "charsadda": 6.92e-08, - "chasuble": 6.92e-08, - "chatelaine": 6.92e-08, - "cheektowaga": 6.92e-08, - "cheongsam": 6.92e-08, - "cherenkov": 6.92e-08, - "chevaliers": 6.92e-08, - "chhatrapati": 6.92e-08, - "chidori": 6.92e-08, - "chislehurst": 6.92e-08, - "chitauri": 6.92e-08, - "chitose": 6.92e-08, - "chitti": 6.92e-08, - "choctaws": 6.92e-08, - "choise": 6.92e-08, - "chondrocytes": 6.92e-08, - "choppa": 6.92e-08, - "chortling": 6.92e-08, - "ciccio": 6.92e-08, - "cien": 6.92e-08, - "circleville": 6.92e-08, - "classicists": 6.92e-08, - "clavering": 6.92e-08, - "clayface": 6.92e-08, - "clercq": 6.92e-08, - "clerkships": 6.92e-08, - "cloe": 6.92e-08, - "cloudburst": 6.92e-08, - "coachable": 6.92e-08, - "coaxes": 6.92e-08, - "coevolution": 6.92e-08, - "colcord": 6.92e-08, - "colebrooke": 6.92e-08, - "collaterals": 6.92e-08, - "collegian": 6.92e-08, - "combusting": 6.92e-08, - "combustor": 6.92e-08, - "commendably": 6.92e-08, - "commis": 6.92e-08, - "commutations": 6.92e-08, - "companionable": 6.92e-08, - "comparatives": 6.92e-08, - "comptons": 6.92e-08, - "concertgoers": 6.92e-08, - "concetta": 6.92e-08, - "conder": 6.92e-08, - "connectives": 6.92e-08, - "consett": 6.92e-08, - "consorted": 6.92e-08, - "conurbations": 6.92e-08, - "coonan": 6.92e-08, - "coppens": 6.92e-08, - "copters": 6.92e-08, - "corax": 6.92e-08, - "corben": 6.92e-08, - "corralling": 6.92e-08, - "cosford": 6.92e-08, - "cosmogony": 6.92e-08, - "costcos": 6.92e-08, - "counterbalancing": 6.92e-08, - "courvoisier": 6.92e-08, - "coverall": 6.92e-08, - "coweta": 6.92e-08, - "crams": 6.92e-08, - "crims": 6.92e-08, - "criswell": 6.92e-08, - "croaks": 6.92e-08, - "cronje": 6.92e-08, - "crucis": 6.92e-08, - "crudup": 6.92e-08, - "crueler": 6.92e-08, - "cucked": 6.92e-08, - "cuddler": 6.92e-08, - "culhane": 6.92e-08, - "curs": 6.92e-08, - "cytokinesis": 6.92e-08, - "daas": 6.92e-08, - "daba": 6.92e-08, - "dadt": 6.92e-08, - "damndest": 6.92e-08, - "dandong": 6.92e-08, - "dangerousness": 6.92e-08, - "danu": 6.92e-08, - "darkie": 6.92e-08, - "darksiders": 6.92e-08, - "dastyari": 6.92e-08, - "datejust": 6.92e-08, - "daymond": 6.92e-08, - "deadheads": 6.92e-08, - "deba": 6.92e-08, - "deblasio": 6.92e-08, - "delvin": 6.92e-08, - "demagogic": 6.92e-08, - "deme": 6.92e-08, - "demelza": 6.92e-08, - "demuth": 6.92e-08, - "deregistered": 6.92e-08, - "despres": 6.92e-08, - "destructs": 6.92e-08, - "detlef": 6.92e-08, - "devoto": 6.92e-08, - "dfds": 6.92e-08, - "dgr": 6.92e-08, - "dialogical": 6.92e-08, - "diapason": 6.92e-08, - "dibrugarh": 6.92e-08, - "dickeys": 6.92e-08, - "dilapidation": 6.92e-08, - "dillman": 6.92e-08, - "dimmock": 6.92e-08, - "discourtesy": 6.92e-08, - "disdainfully": 6.92e-08, - "disfavored": 6.92e-08, - "disher": 6.92e-08, - "disinclination": 6.92e-08, - "dissidia": 6.92e-08, - "distr": 6.92e-08, - "diversely": 6.92e-08, - "djoko": 6.92e-08, - "dollie": 6.92e-08, - "dollops": 6.92e-08, - "doneness": 6.92e-08, - "dones": 6.92e-08, - "dongles": 6.92e-08, - "doofenshmirtz": 6.92e-08, - "doubtfully": 6.92e-08, - "dowding": 6.92e-08, - "doxology": 6.92e-08, - "dpe": 6.92e-08, - "dpl": 6.92e-08, - "drd": 6.92e-08, - "driveclub": 6.92e-08, - "dumpers": 6.92e-08, - "dunnigan": 6.92e-08, - "dunvegan": 6.92e-08, - "durgapur": 6.92e-08, - "dustins": 6.92e-08, - "dyckman": 6.92e-08, - "dystopic": 6.92e-08, - "eade": 6.92e-08, - "ebersole": 6.92e-08, - "eccc": 6.92e-08, - "echt": 6.92e-08, - "edelson": 6.92e-08, - "edisto": 6.92e-08, - "eduction": 6.92e-08, - "eery": 6.92e-08, - "ekblad": 6.92e-08, - "eladio": 6.92e-08, - "elance": 6.92e-08, - "elfs": 6.31e-08, - "elza": 6.92e-08, - "embarass": 6.92e-08, - "embolic": 6.92e-08, - "embolus": 6.92e-08, - "emmi": 6.92e-08, - "ener": 6.92e-08, - "enterobacteriaceae": 6.92e-08, - "enz": 6.92e-08, - "epifanio": 6.92e-08, - "erebor": 6.92e-08, - "erman": 6.92e-08, - "erry": 6.92e-08, - "erythritol": 6.92e-08, - "esophagitis": 6.92e-08, - "esterhazy": 6.92e-08, - "etim": 6.92e-08, - "eurobasket": 6.92e-08, - "eurobonds": 6.92e-08, - "euroscepticism": 6.92e-08, - "eutaw": 6.92e-08, - "evd": 6.92e-08, - "excelsis": 6.92e-08, - "excising": 6.92e-08, - "exhibitionists": 6.92e-08, - "explicate": 6.92e-08, - "exportable": 6.92e-08, - "extremal": 6.92e-08, - "extricating": 6.92e-08, - "facemasks": 6.92e-08, - "faircloth": 6.92e-08, - "farish": 6.92e-08, - "farpoint": 6.92e-08, - "farriers": 6.92e-08, - "fasd": 6.92e-08, - "febreze": 6.92e-08, - "feedlots": 6.92e-08, - "felicitated": 6.92e-08, - "felina": 6.92e-08, - "fenians": 6.92e-08, - "fenlon": 6.92e-08, - "fetishized": 6.92e-08, - "feys": 6.92e-08, - "ffx": 6.92e-08, - "fgd": 6.92e-08, - "fibril": 6.92e-08, - "findin": 6.92e-08, - "finleys": 6.92e-08, - "finnis": 6.92e-08, - "fitzpatricks": 6.92e-08, - "fiumicino": 6.92e-08, - "flamingoes": 6.92e-08, - "fld": 6.92e-08, - "fleener": 6.92e-08, - "floorspace": 6.92e-08, - "flos": 5.5e-08, - "fluffer": 6.92e-08, - "fluoresce": 6.92e-08, - "fluorouracil": 6.92e-08, - "fluttery": 6.92e-08, - "fofana": 6.92e-08, - "fogh": 6.92e-08, - "foliate": 6.92e-08, - "forelimbs": 6.92e-08, - "foret": 6.92e-08, - "fortifies": 6.92e-08, - "fous": 6.92e-08, - "foxhound": 6.92e-08, - "fracked": 6.92e-08, - "fras": 6.92e-08, - "freakiest": 6.92e-08, - "frenulum": 6.92e-08, - "friede": 6.92e-08, - "frimpong": 6.92e-08, - "frt": 6.92e-08, - "ftn": 6.92e-08, - "fulvio": 6.92e-08, - "fusca": 6.92e-08, - "fyn": 6.92e-08, - "gaborik": 6.92e-08, - "gagliardi": 6.92e-08, - "gaias": 6.92e-08, - "galasso": 6.92e-08, - "gallican": 6.92e-08, - "galvani": 6.92e-08, - "gangbanger": 6.92e-08, - "gardenias": 6.92e-08, - "garmisch": 6.92e-08, - "garretson": 6.92e-08, - "gartners": 6.92e-08, - "garveys": 6.92e-08, - "gaudio": 6.92e-08, - "gazettes": 6.92e-08, - "geissler": 6.92e-08, - "geminis": 6.92e-08, - "genotypic": 6.92e-08, - "geonosis": 6.92e-08, - "gignac": 6.92e-08, - "gildersleeve": 6.92e-08, - "gile": 6.92e-08, - "gimbel": 6.92e-08, - "giolito": 6.92e-08, - "gira": 6.92e-08, - "girouds": 6.92e-08, - "girton": 6.92e-08, - "glamorized": 6.92e-08, - "glf": 6.92e-08, - "gloomily": 6.92e-08, - "godamn": 6.92e-08, - "goforth": 6.92e-08, - "goldens": 6.03e-08, - "gondolier": 6.92e-08, - "gonzalezs": 6.92e-08, - "goochland": 6.92e-08, - "goodlooking": 6.92e-08, - "gorkha": 6.92e-08, - "gouvernement": 6.92e-08, - "grangers": 6.92e-08, - "grantley": 6.92e-08, - "granulocyte": 6.92e-08, - "graziella": 6.92e-08, - "grifting": 6.92e-08, - "grignard": 6.92e-08, - "grimaud": 6.92e-08, - "grito": 6.92e-08, - "grob": 6.92e-08, - "gsoc": 6.92e-08, - "guion": 6.92e-08, - "gurnee": 6.92e-08, - "gynt": 6.92e-08, - "gyrate": 6.92e-08, - "haah": 6.92e-08, - "haat": 6.92e-08, - "hadst": 6.92e-08, - "hailstorms": 6.92e-08, - "halakhic": 6.92e-08, - "halevy": 6.92e-08, - "halina": 6.92e-08, - "hamman": 6.92e-08, - "handshaking": 6.92e-08, - "handymen": 6.92e-08, - "hansberry": 6.92e-08, - "haole": 6.92e-08, - "haply": 6.92e-08, - "hardon": 6.92e-08, - "harting": 6.92e-08, - "hasselbaink": 6.92e-08, - "hathi": 6.92e-08, - "hauliers": 6.92e-08, - "hayeks": 6.92e-08, - "hayess": 6.92e-08, - "hce": 6.92e-08, - "headpieces": 6.92e-08, - "heartbleed": 6.92e-08, - "heen": 6.92e-08, - "heinleins": 6.92e-08, - "heisei": 6.92e-08, - "heisenbergs": 6.92e-08, - "helminth": 6.92e-08, - "helsingborg": 6.92e-08, - "henwood": 6.92e-08, - "herbals": 6.92e-08, - "heroku": 6.92e-08, - "heslop": 6.92e-08, - "hesperus": 6.92e-08, - "heyo": 6.92e-08, - "hickeys": 6.92e-08, - "hirschman": 6.92e-08, - "hitori": 6.92e-08, - "hobarts": 6.92e-08, - "hobnobbing": 6.92e-08, - "hogar": 6.92e-08, - "hogtied": 6.92e-08, - "hohmann": 6.92e-08, - "homeport": 6.92e-08, - "homogeneously": 6.92e-08, - "homologation": 6.92e-08, - "hony": 6.92e-08, - "horder": 6.92e-08, - "horniest": 6.92e-08, - "hotchner": 6.92e-08, - "hotheads": 6.92e-08, - "hotrod": 6.92e-08, - "hovels": 6.92e-08, - "huachuca": 6.92e-08, - "hubbert": 6.92e-08, - "hulett": 6.92e-08, - "humanlike": 6.92e-08, - "humbuckers": 6.92e-08, - "hunsaker": 6.92e-08, - "hustons": 6.92e-08, - "hyacinthe": 6.92e-08, - "iccpr": 6.92e-08, - "icterus": 6.92e-08, - "icus": 6.92e-08, - "ided": 6.92e-08, - "ifad": 6.92e-08, - "ifla": 6.92e-08, - "ignatz": 6.92e-08, - "ihh": 6.92e-08, - "imagers": 6.92e-08, - "imagin": 6.92e-08, - "imatinib": 6.92e-08, - "imbecilic": 6.92e-08, - "immigrations": 6.92e-08, - "immunosorbent": 6.92e-08, - "imodium": 6.92e-08, - "impasto": 6.92e-08, - "imperforate": 6.92e-08, - "inclu": 6.92e-08, - "indios": 6.92e-08, - "infiltrations": 6.92e-08, - "inkatha": 6.92e-08, - "insurrectionary": 6.92e-08, - "interdental": 6.92e-08, - "interlagos": 6.92e-08, - "interments": 6.92e-08, - "interminably": 6.92e-08, - "intertextuality": 6.92e-08, - "ioane": 6.92e-08, - "ioffe": 6.92e-08, - "iroha": 6.92e-08, - "ironbridge": 6.92e-08, - "isaiahs": 6.92e-08, - "iselle": 6.92e-08, - "isidor": 6.92e-08, - "izakaya": 6.92e-08, - "jabra": 6.92e-08, - "jackdaws": 6.92e-08, - "jamshed": 6.92e-08, - "jayco": 6.92e-08, - "jebediah": 6.92e-08, - "jik": 6.92e-08, - "jiujitsu": 6.92e-08, - "jmt": 6.92e-08, - "joely": 6.92e-08, - "johannis": 6.92e-08, - "jointer": 6.92e-08, - "jornal": 6.92e-08, - "judice": 6.92e-08, - "jue": 6.92e-08, - "juelz": 6.92e-08, - "kaew": 6.92e-08, - "kakkar": 6.92e-08, - "kalash": 6.92e-08, - "karu": 6.92e-08, - "kashif": 6.92e-08, - "kassie": 6.92e-08, - "kathleens": 6.92e-08, - "kauffmann": 6.92e-08, - "kbit": 6.92e-08, - "kelechi": 6.92e-08, - "kenpo": 6.92e-08, - "kensal": 6.92e-08, - "kerf": 6.92e-08, - "keynesians": 6.92e-08, - "keyshawn": 6.92e-08, - "khabar": 6.92e-08, - "khadijah": 6.92e-08, - "khayelitsha": 6.92e-08, - "khoi": 6.92e-08, - "kiawah": 6.92e-08, - "kibby": 6.92e-08, - "kiedis": 6.92e-08, - "kilsyth": 6.92e-08, - "kimye": 6.92e-08, - "kincheloe": 6.92e-08, - "kindy": 6.92e-08, - "kinh": 6.92e-08, - "kion": 6.92e-08, - "kitna": 6.92e-08, - "kleptomaniac": 6.92e-08, - "kobalt": 6.92e-08, - "kobayashis": 6.92e-08, - "kodai": 6.92e-08, - "kohaku": 6.92e-08, - "kohan": 6.92e-08, - "kolin": 6.92e-08, - "konigsberg": 6.92e-08, - "konno": 6.92e-08, - "korte": 6.92e-08, - "kosova": 6.92e-08, - "kosuke": 6.92e-08, - "kpm": 6.92e-08, - "kritik": 6.92e-08, - "kroon": 6.92e-08, - "kubla": 6.92e-08, - "kumail": 6.92e-08, - "kunene": 6.92e-08, - "kunze": 6.92e-08, - "kup": 6.92e-08, - "kuyper": 6.92e-08, - "kwacha": 6.92e-08, - "lacerda": 6.92e-08, - "lacus": 6.92e-08, - "lafave": 6.92e-08, - "landons": 6.92e-08, - "lardy": 6.92e-08, - "laron": 6.92e-08, - "latchkey": 6.92e-08, - "lateline": 6.92e-08, - "lathers": 6.92e-08, - "laugharne": 6.92e-08, - "laureus": 6.92e-08, - "lavaca": 6.92e-08, - "lavie": 6.92e-08, - "lawa": 6.92e-08, - "lawrenson": 6.92e-08, - "ldv": 6.92e-08, - "leapfrogged": 6.92e-08, - "ledford": 6.92e-08, - "leipsic": 6.92e-08, - "lemuria": 6.92e-08, - "leukemias": 6.92e-08, - "leupold": 6.92e-08, - "lieth": 6.92e-08, - "lij": 6.92e-08, - "lillee": 6.92e-08, - "linemates": 6.92e-08, - "lingonberry": 6.92e-08, - "lipari": 6.92e-08, - "litanies": 6.92e-08, - "litchi": 6.92e-08, - "littman": 6.92e-08, - "liveried": 6.92e-08, - "llanberis": 6.92e-08, - "lle": 6.92e-08, - "lmb": 6.92e-08, - "lnk": 6.92e-08, - "lobdell": 6.92e-08, - "locka": 6.92e-08, - "lockets": 6.92e-08, - "lodhi": 6.92e-08, - "logia": 6.92e-08, - "loosey": 6.92e-08, - "lorene": 6.92e-08, - "louisbourg": 6.92e-08, - "louvered": 6.92e-08, - "lova": 6.92e-08, - "loveseat": 6.92e-08, - "lsg": 6.92e-08, - "luas": 6.92e-08, - "lubeck": 6.92e-08, - "luhan": 6.92e-08, - "lukacs": 6.92e-08, - "lumpen": 6.92e-08, - "lums": 6.92e-08, - "lunchables": 6.92e-08, - "lunden": 6.92e-08, - "lwt": 6.92e-08, - "lymphadenopathy": 6.92e-08, - "lysate": 6.92e-08, - "lyttleton": 6.92e-08, - "mabus": 6.92e-08, - "macalister": 6.92e-08, - "macronutrient": 6.92e-08, - "madson": 6.92e-08, - "magia": 6.92e-08, - "magny": 6.92e-08, - "mahadevan": 6.92e-08, - "mahaffey": 6.92e-08, - "mahlon": 6.92e-08, - "maika": 6.92e-08, - "maisons": 6.92e-08, - "majima": 6.92e-08, - "majo": 6.92e-08, - "majordomo": 6.92e-08, - "maku": 6.92e-08, - "malai": 6.92e-08, - "maluma": 6.92e-08, - "manayunk": 6.92e-08, - "mandolins": 6.92e-08, - "maneater": 6.92e-08, - "mangosteen": 6.92e-08, - "manolis": 6.92e-08, - "mansard": 6.92e-08, - "mapquest": 6.92e-08, - "marica": 6.92e-08, - "marjan": 6.92e-08, - "markieff": 6.92e-08, - "marmon": 6.92e-08, - "marris": 6.92e-08, - "marsa": 6.92e-08, - "martie": 6.92e-08, - "marzia": 6.92e-08, - "mashonaland": 6.92e-08, - "maspero": 6.92e-08, - "massad": 6.92e-08, - "masterbating": 6.92e-08, - "matriarchs": 6.92e-08, - "matsuura": 6.92e-08, - "mattels": 6.92e-08, - "maximin": 6.92e-08, - "mazurka": 6.92e-08, - "mcchicken": 6.92e-08, - "mccullen": 6.92e-08, - "mcfee": 6.92e-08, - "mcgonigle": 6.92e-08, - "mcgreevy": 6.92e-08, - "mclaughlins": 6.92e-08, - "mcmc": 6.92e-08, - "mcps": 6.92e-08, - "mcvicar": 6.92e-08, - "medstar": 6.92e-08, - "megalomaniacal": 6.92e-08, - "melford": 6.92e-08, - "menasha": 6.92e-08, - "mercurius": 6.92e-08, - "merrit": 6.92e-08, - "meshach": 6.92e-08, - "metatarsals": 6.92e-08, - "methylprednisolone": 6.92e-08, - "metoprolol": 6.92e-08, - "metroidvania": 6.92e-08, - "microfossils": 6.92e-08, - "microwavable": 6.92e-08, - "midafternoon": 6.92e-08, - "militarize": 6.92e-08, - "minch": 6.92e-08, - "miniaturist": 6.92e-08, - "mitigations": 6.92e-08, - "mitnick": 6.92e-08, - "mixcloud": 6.92e-08, - "moissanite": 6.92e-08, - "moldovans": 6.92e-08, - "monopolise": 6.92e-08, - "morano": 6.92e-08, - "morar": 6.92e-08, - "mordo": 6.92e-08, - "morven": 6.92e-08, - "moseby": 6.92e-08, - "mosin": 6.92e-08, - "mothball": 6.92e-08, - "motorhomes": 6.92e-08, - "moun": 6.92e-08, - "mras": 6.92e-08, - "mte": 6.92e-08, - "muddies": 6.92e-08, - "mulched": 6.92e-08, - "mullions": 6.92e-08, - "mulu": 6.92e-08, - "munnar": 6.92e-08, - "munt": 6.92e-08, - "murtala": 6.92e-08, - "musher": 6.92e-08, - "musicological": 6.92e-08, - "muv": 6.92e-08, - "mwm": 6.92e-08, - "myatt": 6.92e-08, - "myelitis": 6.92e-08, - "naal": 6.92e-08, - "nado": 6.92e-08, - "nafld": 6.92e-08, - "najma": 6.92e-08, - "nakia": 6.92e-08, - "namaz": 6.92e-08, - "nanded": 6.92e-08, - "nanostructure": 6.92e-08, - "nasturtium": 6.92e-08, - "nathanial": 6.92e-08, - "natto": 6.92e-08, - "naturists": 6.92e-08, - "naut": 6.92e-08, - "navistar": 6.92e-08, - "navona": 6.92e-08, - "nbk": 6.92e-08, - "ndas": 6.92e-08, - "neagh": 6.92e-08, - "neame": 6.92e-08, - "neonatology": 6.92e-08, - "nereus": 6.92e-08, - "nergal": 6.92e-08, - "newarks": 6.92e-08, - "newmar": 6.92e-08, - "nft": 6.92e-08, - "ngi": 6.92e-08, - "nhanes": 6.92e-08, - "niazi": 6.92e-08, - "nieminen": 6.92e-08, - "ningen": 6.92e-08, - "nobuko": 6.92e-08, - "noman": 6.92e-08, - "nonentity": 6.92e-08, - "nonmetallic": 6.92e-08, - "nonpoint": 6.92e-08, - "nonthreatening": 6.92e-08, - "norodom": 6.92e-08, - "northallerton": 6.92e-08, - "northway": 6.92e-08, - "nowy": 6.92e-08, - "ntia": 6.92e-08, - "nucleosome": 6.92e-08, - "nuland": 6.92e-08, - "nunnally": 6.92e-08, - "nusantara": 6.92e-08, - "nvq": 6.92e-08, - "oah": 6.92e-08, - "oakleys": 6.17e-08, - "obligor": 6.92e-08, - "obliviousness": 6.92e-08, - "obummer": 6.92e-08, - "ocb": 6.92e-08, - "oculomotor": 6.92e-08, - "oddworld": 6.92e-08, - "odt": 6.92e-08, - "officiates": 6.92e-08, - "oggi": 6.92e-08, - "olx": 6.92e-08, - "omf": 6.92e-08, - "oost": 6.92e-08, - "ordine": 6.92e-08, - "organophosphates": 6.92e-08, - "orgiastic": 6.92e-08, - "orris": 6.92e-08, - "orsino": 6.92e-08, - "orthogonality": 6.92e-08, - "oshi": 6.92e-08, - "ottaway": 6.92e-08, - "outdoes": 6.92e-08, - "outen": 6.92e-08, - "outie": 6.92e-08, - "overdubs": 6.92e-08, - "overemphasis": 6.92e-08, - "overemphasized": 6.92e-08, - "overfilled": 6.92e-08, - "overstimulated": 6.92e-08, - "overvaluation": 6.92e-08, - "paddleboard": 6.92e-08, - "palle": 6.92e-08, - "panas": 6.92e-08, - "panga": 6.92e-08, - "pangborn": 6.92e-08, - "panhandlers": 6.92e-08, - "pantheistic": 6.92e-08, - "pantsuits": 6.92e-08, - "parceled": 6.92e-08, - "pardy": 6.92e-08, - "parian": 6.92e-08, - "parries": 6.92e-08, - "parterre": 6.92e-08, - "parx": 6.92e-08, - "pathet": 6.92e-08, - "payees": 6.92e-08, - "peduncles": 6.92e-08, - "penelopes": 6.92e-08, - "penniman": 6.92e-08, - "perin": 6.92e-08, - "peristaltic": 6.92e-08, - "periyar": 6.92e-08, - "petersburgs": 6.92e-08, - "pett": 6.92e-08, - "pfizers": 6.92e-08, - "phoenixville": 6.92e-08, - "phonecalls": 6.92e-08, - "photocopiers": 6.92e-08, - "photomultiplier": 6.92e-08, - "photoperiod": 6.92e-08, - "photosystem": 6.92e-08, - "phuc": 6.92e-08, - "pichon": 6.92e-08, - "pikey": 6.92e-08, - "pingree": 6.92e-08, - "pitas": 6.92e-08, - "pkm": 6.92e-08, - "plantin": 6.92e-08, - "plast": 6.92e-08, - "pleven": 6.92e-08, - "ploughman": 6.92e-08, - "pointwise": 6.92e-08, - "poirots": 6.92e-08, - "pongal": 6.92e-08, - "ponomarev": 6.92e-08, - "pooles": 6.92e-08, - "popplewell": 6.92e-08, - "porthmadog": 6.92e-08, - "potvin": 6.92e-08, - "pourri": 6.92e-08, - "prabhupada": 6.92e-08, - "prats": 6.92e-08, - "prattville": 6.92e-08, - "prised": 6.92e-08, - "probl": 6.92e-08, - "proficiently": 6.92e-08, - "prompto": 6.92e-08, - "protools": 6.92e-08, - "protuberances": 6.92e-08, - "psw": 6.92e-08, - "pterygoid": 6.92e-08, - "puccinia": 6.92e-08, - "pummelled": 6.92e-08, - "punkin": 6.92e-08, - "pythagoreans": 6.92e-08, - "qaboos": 6.92e-08, - "qari": 6.92e-08, - "qtc": 6.92e-08, - "quadriplegia": 6.92e-08, - "quarterbacking": 6.92e-08, - "queene": 6.92e-08, - "quentins": 6.92e-08, - "quillen": 6.92e-08, - "raceme": 6.92e-08, - "rachman": 6.92e-08, - "racialism": 6.92e-08, - "rady": 6.92e-08, - "rahimi": 6.92e-08, - "raimund": 6.92e-08, - "rajai": 6.92e-08, - "raka": 6.92e-08, - "rambam": 6.92e-08, - "ramirezs": 6.92e-08, - "rampur": 6.92e-08, - "randleman": 6.92e-08, - "raptured": 6.92e-08, - "rashtrapati": 6.92e-08, - "rationalizes": 6.92e-08, - "razzmatazz": 6.92e-08, - "rebuy": 6.92e-08, - "recd": 6.92e-08, - "recalculating": 6.92e-08, - "recapped": 6.92e-08, - "recaro": 6.92e-08, - "recidivist": 6.92e-08, - "reclassifying": 6.92e-08, - "reconnoitre": 6.92e-08, - "rededicated": 6.92e-08, - "rehiring": 6.92e-08, - "reichel": 6.92e-08, - "reidel": 6.92e-08, - "reinfection": 6.92e-08, - "reinhardts": 6.92e-08, - "remediated": 6.92e-08, - "remorselessly": 6.92e-08, - "rendu": 6.92e-08, - "repaving": 6.92e-08, - "reproductively": 6.92e-08, - "responsability": 6.92e-08, - "retreading": 6.92e-08, - "rgm": 6.92e-08, - "rheinland": 6.92e-08, - "rightnow": 6.92e-08, - "rii": 6.92e-08, - "rishon": 6.92e-08, - "rivett": 6.92e-08, - "rizzle": 6.92e-08, - "rockman": 6.92e-08, - "roiled": 6.92e-08, - "rokeby": 6.92e-08, - "roomates": 6.92e-08, - "rosarito": 6.92e-08, - "rotarian": 6.92e-08, - "rothe": 6.92e-08, - "roughneck": 6.92e-08, - "roundtree": 6.92e-08, - "rowboats": 6.92e-08, - "ruses": 6.92e-08, - "rusticated": 6.92e-08, - "rutan": 6.92e-08, - "ryuichi": 6.92e-08, - "safin": 6.92e-08, - "sagen": 6.92e-08, - "sagi": 6.92e-08, - "saintsbury": 6.92e-08, - "sakaguchi": 6.92e-08, - "saleen": 6.92e-08, - "sampath": 6.92e-08, - "samper": 6.92e-08, - "samplings": 6.92e-08, - "samsun": 6.92e-08, - "sandel": 6.92e-08, - "sankar": 6.92e-08, - "santacruz": 6.92e-08, - "santon": 6.92e-08, - "sarkis": 6.92e-08, - "sarpanch": 6.92e-08, - "sateen": 6.92e-08, - "satiny": 6.92e-08, - "sauder": 6.92e-08, - "sayeeda": 6.92e-08, - "scatterbrained": 6.92e-08, - "scholastics": 6.92e-08, - "schreier": 6.92e-08, - "sclater": 6.92e-08, - "scrounged": 6.92e-08, - "sdt": 6.92e-08, - "secc": 6.92e-08, - "secretariats": 6.92e-08, - "seeya": 6.92e-08, - "selkie": 6.92e-08, - "sembilan": 6.92e-08, - "septuagenarian": 6.92e-08, - "sergiy": 6.92e-08, - "servite": 6.92e-08, - "shaban": 1.82e-08, - "shanta": 6.92e-08, - "shantung": 6.92e-08, - "sharda": 6.92e-08, - "sharrock": 6.92e-08, - "shelford": 6.92e-08, - "shellshock": 6.92e-08, - "shenfield": 6.92e-08, - "shida": 6.92e-08, - "shity": 6.92e-08, - "shivaratri": 6.92e-08, - "shivraj": 6.92e-08, - "shootdown": 6.92e-08, - "shoppes": 6.92e-08, - "shoshanna": 6.92e-08, - "shostakovichs": 6.92e-08, - "shotting": 6.92e-08, - "shotts": 6.92e-08, - "showreel": 6.92e-08, - "siao": 6.92e-08, - "sicilies": 6.92e-08, - "signori": 6.92e-08, - "sih": 6.92e-08, - "silat": 6.92e-08, - "siltstones": 6.92e-08, - "simkins": 6.92e-08, - "simul": 6.92e-08, - "sinkers": 6.92e-08, - "sinkings": 6.92e-08, - "skarsgard": 6.92e-08, - "skewness": 6.92e-08, - "skiles": 6.92e-08, - "skinks": 6.92e-08, - "skowhegan": 6.92e-08, - "skua": 6.92e-08, - "sloanes": 6.92e-08, - "smbc": 6.92e-08, - "smocks": 6.92e-08, - "snit": 6.92e-08, - "snoopers": 6.92e-08, - "sodhi": 6.92e-08, - "soha": 6.92e-08, - "soman": 6.92e-08, - "somatostatin": 6.92e-08, - "sonnenschein": 6.92e-08, - "soothingly": 6.92e-08, - "soyou": 6.92e-08, - "spad": 6.92e-08, - "spang": 6.92e-08, - "sparser": 6.92e-08, - "speediest": 6.92e-08, - "spel": 6.92e-08, - "sphincters": 6.92e-08, - "spicers": 6.92e-08, - "spicules": 6.92e-08, - "spinny": 6.92e-08, - "spirt": 6.92e-08, - "spookiest": 6.92e-08, - "sprecher": 6.92e-08, - "squirrelly": 6.92e-08, - "sspx": 6.92e-08, - "stampedes": 6.92e-08, - "starlink": 6.92e-08, - "stassen": 6.92e-08, - "stateful": 6.92e-08, - "stee": 6.92e-08, - "stemi": 6.92e-08, - "stila": 6.92e-08, - "stockard": 6.92e-08, - "stoplights": 6.92e-08, - "straightway": 6.92e-08, - "strats": 6.92e-08, - "stringency": 6.92e-08, - "stromatolites": 6.92e-08, - "strumpet": 6.92e-08, - "sturbridge": 6.92e-08, - "stye": 6.92e-08, - "suas": 6.92e-08, - "subba": 6.92e-08, - "subscripts": 6.92e-08, - "subtidal": 6.92e-08, - "subtlest": 6.92e-08, - "sudeten": 6.92e-08, - "sufferance": 6.92e-08, - "sugarless": 6.92e-08, - "sukkah": 6.92e-08, - "sunanda": 6.92e-08, - "sundberg": 6.92e-08, - "suppressants": 6.92e-08, - "svitolina": 6.92e-08, - "swallower": 6.92e-08, - "swatched": 6.92e-08, - "swd": 6.92e-08, - "swivelling": 6.92e-08, - "sycophancy": 6.92e-08, - "symbolical": 6.92e-08, - "synchronizer": 6.92e-08, - "synology": 6.92e-08, - "syntagma": 6.92e-08, - "tpol": 6.92e-08, - "taggers": 6.92e-08, - "taronga": 6.92e-08, - "taurasi": 6.92e-08, - "tauros": 6.92e-08, - "tavener": 6.92e-08, - "taxiways": 6.92e-08, - "taymor": 6.92e-08, - "tck": 6.92e-08, - "tectonically": 6.92e-08, - "telemark": 6.92e-08, - "teleprinter": 6.92e-08, - "tempranillo": 6.92e-08, - "tenshi": 6.92e-08, - "teoria": 6.92e-08, - "terminological": 6.92e-08, - "ternate": 6.92e-08, - "themyscira": 6.92e-08, - "theophylline": 6.92e-08, - "therebetween": 6.92e-08, - "thickes": 6.92e-08, - "thirtysomething": 6.92e-08, - "thoughtlessness": 6.92e-08, - "thous": 6.92e-08, - "thugger": 6.92e-08, - "thum": 6.92e-08, - "tich": 6.92e-08, - "tickell": 6.92e-08, - "timekeepers": 6.92e-08, - "timp": 6.92e-08, - "titrate": 6.92e-08, - "titrated": 6.92e-08, - "tittie": 6.92e-08, - "tje": 6.92e-08, - "tlo": 6.92e-08, - "tlt": 6.92e-08, - "toffler": 6.92e-08, - "togas": 6.92e-08, - "toileting": 6.92e-08, - "tomek": 6.92e-08, - "tonton": 6.92e-08, - "toolchain": 6.92e-08, - "topsfield": 6.92e-08, - "toti": 6.92e-08, - "touchid": 6.92e-08, - "transcendentalist": 6.92e-08, - "transuranic": 6.92e-08, - "trebizond": 6.92e-08, - "trendline": 6.92e-08, - "tressel": 6.92e-08, - "trimet": 6.92e-08, - "trinians": 6.92e-08, - "trivializes": 6.92e-08, - "trps": 6.92e-08, - "trunnion": 6.92e-08, - "tubas": 6.92e-08, - "tucumcari": 6.92e-08, - "tullamore": 6.92e-08, - "turkle": 6.92e-08, - "tuscon": 6.92e-08, - "tvi": 6.92e-08, - "twinges": 6.92e-08, - "uee": 6.92e-08, - "ugarit": 6.92e-08, - "uhn": 6.92e-08, - "ulti": 6.92e-08, - "umf": 6.92e-08, - "unban": 6.92e-08, - "unda": 6.92e-08, - "undimmed": 6.92e-08, - "unhealthily": 6.92e-08, - "unicefs": 6.92e-08, - "unimagined": 6.92e-08, - "unionised": 6.92e-08, - "unlikeliest": 6.92e-08, - "unproduced": 6.92e-08, - "unquantifiable": 6.92e-08, - "unsupportable": 6.92e-08, - "untrimmed": 6.92e-08, - "upsala": 6.92e-08, - "urbanist": 6.92e-08, - "urgings": 6.92e-08, - "usmanov": 6.92e-08, - "uwb": 6.92e-08, - "uwf": 6.92e-08, - "vae": 6.92e-08, - "valeo": 6.92e-08, - "valkyria": 6.92e-08, - "vall": 6.92e-08, - "vampy": 6.92e-08, - "varejao": 6.92e-08, - "vasconcellos": 6.92e-08, - "vcm": 6.92e-08, - "veeam": 6.92e-08, - "vei": 6.92e-08, - "vidin": 6.92e-08, - "vinegars": 6.92e-08, - "vinz": 6.92e-08, - "vist": 6.92e-08, - "vith": 6.92e-08, - "vivace": 6.92e-08, - "voda": 6.92e-08, - "vodou": 6.92e-08, - "voicings": 6.92e-08, - "volare": 6.92e-08, - "volks": 6.92e-08, - "voracek": 6.92e-08, - "vose": 6.92e-08, - "vsco": 6.92e-08, - "wagenen": 6.92e-08, - "wairarapa": 6.92e-08, - "wakka": 6.92e-08, - "waldegrave": 6.92e-08, - "walkinshaw": 6.92e-08, - "wallowed": 6.92e-08, - "wampanoag": 6.92e-08, - "wanked": 6.92e-08, - "warband": 6.92e-08, - "wassail": 6.92e-08, - "wayfair": 6.92e-08, - "wayfinding": 6.92e-08, - "waynesburg": 6.92e-08, - "wedd": 6.92e-08, - "weddin": 6.92e-08, - "wednesbury": 6.92e-08, - "weeaboo": 6.92e-08, - "wende": 6.92e-08, - "weyburn": 6.92e-08, - "wheeldon": 6.92e-08, - "whisperings": 6.92e-08, - "whitsundays": 6.92e-08, - "wilcoxon": 6.92e-08, - "wileys": 6.92e-08, - "willimantic": 6.92e-08, - "wimmera": 6.92e-08, - "winched": 6.92e-08, - "winkelmann": 6.92e-08, - "winkleman": 6.92e-08, - "winterfest": 6.92e-08, - "wite": 6.92e-08, - "withnail": 6.92e-08, - "witmer": 6.92e-08, - "wittingly": 6.92e-08, - "wojtek": 6.92e-08, - "wolffe": 6.92e-08, - "wondrously": 6.92e-08, - "woodhall": 6.92e-08, - "woodworks": 6.92e-08, - "wsr": 6.92e-08, - "wurttemberg": 6.92e-08, - "wyle": 6.92e-08, - "xbla": 6.92e-08, - "xterra": 6.92e-08, - "yata": 6.92e-08, - "yato": 6.92e-08, - "yean": 6.92e-08, - "yelchin": 6.92e-08, - "yeng": 6.92e-08, - "ypc": 6.92e-08, - "yvr": 6.92e-08, - "zamindar": 6.92e-08, - "zelle": 6.92e-08, - "zerubbabel": 6.92e-08, - "zingy": 6.92e-08, - "ziyi": 6.92e-08, - "zyrtec": 6.92e-08, - "aaliyahs": 6.76e-08, - "aargh": 6.76e-08, - "abagnale": 6.76e-08, - "abdominals": 6.76e-08, - "abir": 6.76e-08, - "abour": 6.76e-08, - "abramovic": 6.76e-08, - "abuelita": 6.76e-08, - "acadiana": 6.76e-08, - "acce": 6.76e-08, - "accouterments": 6.76e-08, - "acheive": 6.76e-08, - "acinetobacter": 6.76e-08, - "acquitting": 6.76e-08, - "acromegaly": 6.76e-08, - "acsi": 6.76e-08, - "acuminata": 6.76e-08, - "adelbert": 6.76e-08, - "adewale": 6.76e-08, - "adhikari": 6.76e-08, - "adityanath": 6.76e-08, - "adom": 6.76e-08, - "adon": 6.76e-08, - "adoree": 6.76e-08, - "advisedly": 6.76e-08, - "afterthoughts": 6.76e-08, - "agos": 6.76e-08, - "agulhas": 6.76e-08, - "aidy": 6.76e-08, - "alani": 6.76e-08, - "albacete": 6.76e-08, - "alemany": 6.76e-08, - "alexandrite": 6.76e-08, - "allora": 6.76e-08, - "alouette": 6.76e-08, - "amalek": 6.76e-08, - "amazin": 6.76e-08, - "amite": 6.76e-08, - "anastacia": 6.76e-08, - "anb": 6.76e-08, - "androscoggin": 6.76e-08, - "angerer": 6.76e-08, - "angustifolia": 6.76e-08, - "anonyme": 6.76e-08, - "antakya": 6.76e-08, - "antartica": 6.76e-08, - "aphra": 6.76e-08, - "apices": 6.76e-08, - "appia": 6.76e-08, - "appts": 6.76e-08, - "arafats": 6.76e-08, - "aragonese": 6.76e-08, - "archos": 6.76e-08, - "arey": 6.76e-08, - "arianespace": 6.76e-08, - "arijit": 6.76e-08, - "armer": 6.76e-08, - "arshavin": 6.76e-08, - "artillerymen": 6.76e-08, - "ashita": 6.76e-08, - "aslong": 6.76e-08, - "asy": 6.76e-08, - "atac": 6.76e-08, - "atala": 6.76e-08, - "aubreys": 6.76e-08, - "auriol": 6.76e-08, - "autarky": 6.76e-08, - "autodidact": 6.76e-08, - "avez": 6.76e-08, - "avocet": 6.76e-08, - "avy": 6.76e-08, - "aysha": 6.76e-08, - "baalbek": 6.76e-08, - "babysits": 6.76e-08, - "backpedal": 6.76e-08, - "baggett": 6.76e-08, - "bahram": 6.76e-08, - "baine": 6.76e-08, - "baize": 6.76e-08, - "bakufu": 6.76e-08, - "balaton": 6.76e-08, - "balian": 6.76e-08, - "balik": 6.76e-08, - "bamburgh": 6.76e-08, - "barbizon": 6.76e-08, - "barkat": 6.76e-08, - "baronies": 6.76e-08, - "bascombe": 6.76e-08, - "baserunners": 6.76e-08, - "bastet": 6.76e-08, - "baya": 6.76e-08, - "bayerische": 6.76e-08, - "beales": 5.75e-08, - "beason": 6.76e-08, - "beaudoin": 6.76e-08, - "beauly": 6.76e-08, - "beauts": 6.76e-08, - "becquerel": 6.76e-08, - "begetting": 6.76e-08, - "belabor": 6.76e-08, - "bellefontaine": 6.76e-08, - "bembridge": 6.76e-08, - "bentleigh": 6.76e-08, - "beppo": 6.76e-08, - "bestowal": 6.76e-08, - "bevans": 6.76e-08, - "bevo": 6.76e-08, - "bhasin": 6.76e-08, - "bhava": 6.76e-08, - "bildung": 6.76e-08, - "bipin": 6.76e-08, - "biwa": 6.76e-08, - "blakeman": 6.76e-08, - "blancmange": 6.76e-08, - "blay": 6.76e-08, - "bleasdale": 6.76e-08, - "blease": 6.76e-08, - "bloglovin": 6.76e-08, - "bluesfest": 6.76e-08, - "bnha": 6.76e-08, - "bobbled": 6.76e-08, - "boerne": 6.76e-08, - "boite": 6.76e-08, - "bojo": 6.76e-08, - "bonde": 6.76e-08, - "bonking": 6.76e-08, - "boothbay": 6.76e-08, - "bootstrapped": 6.76e-08, - "bordo": 6.76e-08, - "bourses": 6.76e-08, - "bourton": 6.76e-08, - "bovril": 6.76e-08, - "boychuk": 6.76e-08, - "bract": 6.76e-08, - "brandishes": 6.76e-08, - "bredesen": 6.76e-08, - "breit": 6.76e-08, - "brewton": 6.76e-08, - "brn": 6.76e-08, - "brocklehurst": 6.76e-08, - "brodrick": 6.76e-08, - "bronchoscopy": 6.76e-08, - "brundtland": 6.76e-08, - "buckys": 6.76e-08, - "buggs": 6.76e-08, - "buju": 6.76e-08, - "buku": 6.76e-08, - "bulba": 6.76e-08, - "bullshitted": 6.76e-08, - "buonarroti": 6.76e-08, - "bup": 6.76e-08, - "busia": 6.76e-08, - "bustled": 6.76e-08, - "bva": 6.76e-08, - "bvr": 6.76e-08, - "cabramatta": 6.76e-08, - "cadwell": 6.76e-08, - "caines": 5.62e-08, - "caity": 6.76e-08, - "calcasieu": 6.76e-08, - "callis": 6.76e-08, - "calpurnia": 6.76e-08, - "cambs": 6.76e-08, - "camelbak": 6.76e-08, - "camilles": 6.76e-08, - "canarsie": 6.76e-08, - "canasta": 6.76e-08, - "cannington": 6.76e-08, - "cantabria": 6.76e-08, - "carbides": 6.76e-08, - "cardinale": 6.76e-08, - "carlyles": 6.76e-08, - "carnap": 6.76e-08, - "carnet": 6.76e-08, - "carnies": 6.76e-08, - "carolin": 6.76e-08, - "carsen": 6.76e-08, - "carthusian": 6.76e-08, - "casements": 6.76e-08, - "casualness": 6.76e-08, - "catalytically": 6.76e-08, - "catia": 6.76e-08, - "cavallari": 6.76e-08, - "ccleaner": 6.76e-08, - "cecilias": 6.76e-08, - "celexa": 6.76e-08, - "cerca": 6.76e-08, - "ceren": 6.76e-08, - "chafes": 6.76e-08, - "chaffin": 6.76e-08, - "chaffinch": 6.76e-08, - "chainlink": 6.76e-08, - "chalcolithic": 6.76e-08, - "chane": 6.76e-08, - "chanyeol": 6.76e-08, - "charas": 2.09e-08, - "charla": 6.76e-08, - "charle": 6.76e-08, - "chaud": 6.76e-08, - "cheshunt": 6.76e-08, - "chio": 6.76e-08, - "chiton": 6.76e-08, - "chomps": 6.76e-08, - "chortled": 6.76e-08, - "chosing": 6.76e-08, - "christoffer": 6.76e-08, - "churchwarden": 6.76e-08, - "churchwardens": 6.76e-08, - "ciano": 6.76e-08, - "cipd": 6.76e-08, - "claris": 6.76e-08, - "clathrin": 6.76e-08, - "clep": 6.76e-08, - "climatically": 6.76e-08, - "clothespin": 6.76e-08, - "clunes": 6.76e-08, - "cnb": 6.76e-08, - "cogburn": 6.76e-08, - "cohoes": 6.76e-08, - "cokie": 6.76e-08, - "colbeck": 6.76e-08, - "colchis": 6.76e-08, - "coldhearted": 6.76e-08, - "coleg": 6.76e-08, - "colliders": 6.76e-08, - "colorants": 6.76e-08, - "comelec": 6.76e-08, - "commissaire": 6.76e-08, - "completo": 6.76e-08, - "compositionally": 6.76e-08, - "conciliator": 6.76e-08, - "congeal": 6.76e-08, - "connived": 6.76e-08, - "consistence": 6.76e-08, - "consummating": 6.76e-08, - "controll": 6.76e-08, - "copyists": 6.76e-08, - "coquille": 6.76e-08, - "corcovado": 6.76e-08, - "corms": 6.76e-08, - "corneum": 6.76e-08, - "corrina": 6.76e-08, - "corsicans": 6.76e-08, - "cosmopolitans": 6.76e-08, - "coso": 6.76e-08, - "coulis": 6.76e-08, - "cowabunga": 6.76e-08, - "cowart": 6.76e-08, - "cowpens": 6.76e-08, - "craftily": 6.76e-08, - "craggs": 6.76e-08, - "craigieburn": 6.76e-08, - "crape": 6.76e-08, - "crilly": 6.76e-08, - "crispian": 6.76e-08, - "croghan": 6.76e-08, - "cronan": 6.76e-08, - "croucher": 6.76e-08, - "crowfoot": 6.76e-08, - "crozet": 6.76e-08, - "crucibles": 6.76e-08, - "cruellest": 6.76e-08, - "cruzeiro": 6.76e-08, - "cryonics": 6.76e-08, - "csic": 6.76e-08, - "culm": 6.76e-08, - "curtails": 6.76e-08, - "custodianship": 6.76e-08, - "cymbalta": 6.76e-08, - "daar": 6.76e-08, - "dahlen": 6.76e-08, - "datetime": 6.76e-08, - "daystar": 6.76e-08, - "dcps": 6.76e-08, - "ddm": 6.76e-08, - "deacetylase": 6.76e-08, - "deansgate": 6.76e-08, - "debarred": 6.76e-08, - "deebo": 6.76e-08, - "deindustrialization": 6.76e-08, - "delacour": 6.76e-08, - "delauro": 6.76e-08, - "delfina": 6.76e-08, - "deliveroo": 6.76e-08, - "dellums": 6.76e-08, - "dendrobium": 6.76e-08, - "denethor": 6.76e-08, - "denialist": 6.76e-08, - "deoxygenated": 6.76e-08, - "deoxyribonucleic": 6.76e-08, - "desborough": 6.76e-08, - "desensitize": 6.76e-08, - "desperados": 6.76e-08, - "devaluations": 6.76e-08, - "dextrous": 6.76e-08, - "dhikr": 6.76e-08, - "diabolically": 6.76e-08, - "dibaba": 6.76e-08, - "diffidence": 6.76e-08, - "digges": 6.76e-08, - "dikembe": 6.76e-08, - "dilatory": 6.76e-08, - "dinette": 6.76e-08, - "disbands": 6.76e-08, - "discontinues": 6.76e-08, - "disinhibition": 6.76e-08, - "disneylands": 6.76e-08, - "divac": 6.76e-08, - "dlg": 6.76e-08, - "dmh": 6.76e-08, - "doctrina": 6.76e-08, - "domesticating": 6.76e-08, - "donghae": 6.76e-08, - "doolin": 6.76e-08, - "doublets": 6.76e-08, - "downsview": 6.76e-08, - "druse": 6.76e-08, - "duchesss": 6.76e-08, - "duckies": 6.76e-08, - "dumba": 6.76e-08, - "dupatta": 6.76e-08, - "duponts": 6.76e-08, - "durer": 6.76e-08, - "duryodhana": 6.76e-08, - "dystrophin": 6.76e-08, - "eaf": 6.76e-08, - "eai": 6.76e-08, - "eav": 6.76e-08, - "ebd": 6.76e-08, - "ebe": 6.76e-08, - "ebron": 6.76e-08, - "ecobank": 6.76e-08, - "edad": 6.76e-08, - "edman": 6.76e-08, - "edutainment": 6.76e-08, - "eelgrass": 6.76e-08, - "ehf": 6.76e-08, - "elbaradei": 6.76e-08, - "eldercare": 6.76e-08, - "electroporation": 6.76e-08, - "eliz": 6.76e-08, - "elka": 6.76e-08, - "embalm": 6.76e-08, - "emmen": 6.76e-08, - "enantiomer": 6.76e-08, - "endureth": 6.76e-08, - "enjolras": 6.76e-08, - "enol": 6.76e-08, - "enseignement": 6.76e-08, - "enticements": 6.76e-08, - "epicure": 6.76e-08, - "epileptics": 6.76e-08, - "epiphytes": 6.76e-08, - "epix": 6.76e-08, - "equ": 6.76e-08, - "equipoise": 6.76e-08, - "eraserhead": 6.76e-08, - "ergative": 6.76e-08, - "eschenbach": 6.76e-08, - "essais": 6.76e-08, - "etches": 6.76e-08, - "etiological": 6.76e-08, - "eulerian": 6.76e-08, - "eurosceptics": 6.76e-08, - "eustache": 6.76e-08, - "everingham": 6.76e-08, - "exigency": 6.76e-08, - "exilic": 6.76e-08, - "existe": 6.76e-08, - "eyeliners": 6.76e-08, - "fabianski": 6.76e-08, - "fage": 6.76e-08, - "faile": 6.76e-08, - "fairman": 6.76e-08, - "fanfan": 6.76e-08, - "fantabulous": 6.76e-08, - "farkle": 6.76e-08, - "farra": 6.76e-08, - "farran": 6.76e-08, - "farty": 6.76e-08, - "fassett": 6.76e-08, - "fatimid": 6.76e-08, - "fatted": 6.76e-08, - "feloniously": 6.76e-08, - "femicide": 6.76e-08, - "ferne": 6.76e-08, - "fernet": 6.76e-08, - "ferpa": 6.76e-08, - "festuca": 6.76e-08, - "fgcu": 6.76e-08, - "fiala": 6.76e-08, - "figgy": 6.76e-08, - "filemaker": 6.76e-08, - "filosofia": 6.76e-08, - "filton": 6.76e-08, - "findhorn": 6.76e-08, - "fintan": 6.76e-08, - "fishmeal": 6.76e-08, - "fleishman": 6.76e-08, - "flite": 6.76e-08, - "floo": 6.76e-08, - "flowerpots": 6.76e-08, - "folksong": 6.76e-08, - "fonteyn": 6.76e-08, - "forsett": 6.76e-08, - "foxfire": 6.76e-08, - "frankfurts": 6.76e-08, - "freedomworks": 6.76e-08, - "freephone": 6.76e-08, - "frehley": 6.76e-08, - "frijoles": 6.76e-08, - "frogmen": 6.76e-08, - "frst": 6.76e-08, - "ftcs": 6.76e-08, - "funkier": 6.76e-08, - "funnyman": 6.76e-08, - "futari": 6.76e-08, - "galaga": 6.76e-08, - "galligan": 6.76e-08, - "gamgee": 6.76e-08, - "garis": 6.76e-08, - "garlin": 6.76e-08, - "garrod": 6.76e-08, - "gayles": 6.76e-08, - "gazers": 6.76e-08, - "gcb": 6.76e-08, - "gearhead": 6.76e-08, - "geel": 6.76e-08, - "gei": 6.76e-08, - "gelli": 6.76e-08, - "genos": 3.39e-08, - "genotoxic": 6.76e-08, - "gentes": 6.76e-08, - "genzyme": 6.76e-08, - "georgetowns": 6.76e-08, - "gergiev": 6.76e-08, - "gerwen": 6.76e-08, - "ghgs": 6.76e-08, - "ghillie": 6.76e-08, - "gibt": 6.76e-08, - "gilboa": 6.76e-08, - "gillick": 6.76e-08, - "gists": 6.76e-08, - "glaber": 6.76e-08, - "glammed": 6.76e-08, - "glazebrook": 6.76e-08, - "glissando": 6.76e-08, - "gmi": 6.76e-08, - "gobblers": 6.76e-08, - "godric": 6.76e-08, - "golubev": 6.76e-08, - "gonda": 6.76e-08, - "gorsky": 6.76e-08, - "gradualism": 6.76e-08, - "graha": 6.76e-08, - "grandchildrens": 6.76e-08, - "gratton": 6.76e-08, - "greaseproof": 6.76e-08, - "greenscreen": 6.76e-08, - "greentree": 6.76e-08, - "greiss": 6.76e-08, - "gretzkys": 6.76e-08, - "gril": 6.76e-08, - "grothendieck": 6.76e-08, - "gruppe": 6.76e-08, - "gruppo": 6.76e-08, - "guarenteed": 6.76e-08, - "guccione": 6.76e-08, - "guignol": 6.76e-08, - "gullah": 6.76e-08, - "gunma": 6.76e-08, - "gura": 6.76e-08, - "gurdon": 6.76e-08, - "gurudwara": 6.76e-08, - "gyrocopter": 6.76e-08, - "hadda": 6.76e-08, - "haggled": 6.76e-08, - "haiphong": 6.76e-08, - "hairier": 6.76e-08, - "halacha": 6.76e-08, - "haldol": 6.76e-08, - "hamamatsu": 6.76e-08, - "hanalei": 6.76e-08, - "handsomer": 6.76e-08, - "hankies": 6.76e-08, - "hanzi": 6.76e-08, - "hardtail": 6.76e-08, - "harel": 6.76e-08, - "harmsworth": 6.76e-08, - "harrying": 6.76e-08, - "hartshorn": 6.76e-08, - "hatful": 6.76e-08, - "haunch": 6.76e-08, - "haunter": 6.76e-08, - "hawkwind": 6.76e-08, - "hcf": 6.76e-08, - "hecho": 6.76e-08, - "hecking": 6.76e-08, - "heeney": 6.76e-08, - "hellmouth": 6.76e-08, - "hematomas": 6.76e-08, - "hemlines": 6.76e-08, - "herbage": 6.76e-08, - "hermite": 6.76e-08, - "herpetology": 6.76e-08, - "herta": 6.76e-08, - "heyden": 6.76e-08, - "hida": 6.76e-08, - "hml": 6.76e-08, - "hochman": 6.76e-08, - "hoga": 6.76e-08, - "hoity": 6.76e-08, - "hokie": 6.76e-08, - "holkar": 6.76e-08, - "holling": 6.76e-08, - "hollingshead": 6.76e-08, - "holmdel": 6.76e-08, - "holos": 6.76e-08, - "hopkin": 6.76e-08, - "hornbeck": 6.76e-08, - "hornell": 6.76e-08, - "horniness": 6.76e-08, - "horsemeat": 6.76e-08, - "hougang": 6.76e-08, - "housebroken": 6.76e-08, - "hpb": 6.76e-08, - "hrant": 6.76e-08, - "hri": 6.76e-08, - "humanization": 6.76e-08, - "hunza": 6.76e-08, - "hurlbut": 6.76e-08, - "husbando": 6.76e-08, - "hussaini": 6.76e-08, - "hydrophobicity": 6.76e-08, - "hyperemesis": 6.76e-08, - "hysterectomies": 6.76e-08, - "hyuns": 6.76e-08, - "icap": 6.76e-08, - "idolise": 6.76e-08, - "ignitions": 6.76e-08, - "iho": 6.76e-08, - "ijaw": 6.76e-08, - "iloveyou": 6.76e-08, - "ilves": 6.76e-08, - "imag": 6.76e-08, - "imagen": 6.76e-08, - "immoderate": 6.76e-08, - "immunol": 6.76e-08, - "imperilled": 6.76e-08, - "imprisonments": 6.76e-08, - "indooroopilly": 6.76e-08, - "industrialism": 6.76e-08, - "influent": 6.76e-08, - "ingleby": 6.76e-08, - "inrush": 6.76e-08, - "interbred": 6.76e-08, - "interdependency": 6.76e-08, - "internalise": 6.76e-08, - "intramurals": 6.76e-08, - "inulin": 6.76e-08, - "iolo": 6.76e-08, - "ionians": 6.76e-08, - "iqbals": 6.76e-08, - "irreligion": 6.76e-08, - "irresistable": 6.76e-08, - "isabell": 6.76e-08, - "isight": 6.76e-08, - "isopropanol": 6.76e-08, - "itsm": 6.76e-08, - "ivie": 6.76e-08, - "iwao": 6.76e-08, - "jacuzzis": 6.76e-08, - "jahlil": 6.76e-08, - "jalopnik": 6.76e-08, - "japonicum": 6.76e-08, - "jarreau": 6.76e-08, - "jaruzelski": 6.76e-08, - "jastrow": 6.76e-08, - "javadi": 6.76e-08, - "jawahar": 6.76e-08, - "jayalalitha": 6.76e-08, - "jcm": 6.76e-08, - "jda": 6.76e-08, - "johto": 6.76e-08, - "joice": 6.76e-08, - "judg": 6.76e-08, - "juhi": 6.76e-08, - "julios": 6.76e-08, - "junkets": 6.76e-08, - "juristic": 6.76e-08, - "kable": 6.76e-08, - "kad": 6.76e-08, - "kaha": 6.76e-08, - "kalevala": 6.76e-08, - "kalisto": 6.76e-08, - "kamenev": 6.76e-08, - "kanak": 6.76e-08, - "kanno": 6.76e-08, - "kans": 2.09e-08, - "kanwar": 6.76e-08, - "kappas": 6.76e-08, - "kavli": 6.76e-08, - "kedarnath": 6.76e-08, - "kennen": 6.76e-08, - "kensei": 6.76e-08, - "kenshiro": 6.76e-08, - "kerning": 6.76e-08, - "kesselring": 6.76e-08, - "kevyn": 6.76e-08, - "khalidi": 6.76e-08, - "kibler": 6.76e-08, - "kickstarting": 6.76e-08, - "kindergartener": 6.76e-08, - "kingsgate": 6.76e-08, - "kissingers": 6.76e-08, - "kiyosaki": 6.76e-08, - "klin": 6.76e-08, - "klong": 6.76e-08, - "knightmare": 6.76e-08, - "kog": 6.76e-08, - "kohlrabi": 6.76e-08, - "koning": 6.76e-08, - "konoplyanka": 6.76e-08, - "krispie": 6.76e-08, - "kroft": 6.76e-08, - "kuga": 6.76e-08, - "kunlun": 6.76e-08, - "kvd": 6.76e-08, - "kwaito": 6.76e-08, - "labe": 6.76e-08, - "lagasse": 6.76e-08, - "laikipia": 6.76e-08, - "lajpat": 6.76e-08, - "lampards": 6.76e-08, - "landstuhl": 6.76e-08, - "lanius": 6.76e-08, - "lankester": 6.76e-08, - "latinized": 6.76e-08, - "laurents": 6.76e-08, - "lauryl": 6.76e-08, - "lazaretto": 6.76e-08, - "lazzaro": 6.76e-08, - "ldcs": 6.76e-08, - "leavings": 6.76e-08, - "lecomte": 6.76e-08, - "ledo": 6.76e-08, - "leelanau": 6.76e-08, - "legazpi": 6.76e-08, - "leinart": 6.76e-08, - "lenexa": 6.76e-08, - "lennar": 6.76e-08, - "leukemic": 6.76e-08, - "levelheaded": 6.76e-08, - "levitical": 6.76e-08, - "lewitt": 6.76e-08, - "liggins": 6.76e-08, - "likin": 6.76e-08, - "lilburn": 6.76e-08, - "linac": 6.76e-08, - "lindenwood": 6.76e-08, - "lipolysis": 6.76e-08, - "liras": 6.76e-08, - "literalist": 6.76e-08, - "litovsk": 6.76e-08, - "litvak": 6.76e-08, - "liverpudlian": 6.76e-08, - "lizzo": 6.76e-08, - "locky": 6.76e-08, - "lodovico": 6.76e-08, - "logica": 6.76e-08, - "longboards": 6.76e-08, - "longbridge": 6.76e-08, - "longridge": 6.76e-08, - "loompas": 6.76e-08, - "lorch": 6.76e-08, - "loti": 6.76e-08, - "lotterys": 6.76e-08, - "lovebird": 6.76e-08, - "lovegood": 6.76e-08, - "lulas": 6.76e-08, - "lumet": 6.76e-08, - "luong": 6.76e-08, - "lurcher": 6.76e-08, - "maac": 6.76e-08, - "macondo": 6.76e-08, - "maculata": 6.76e-08, - "madu": 6.76e-08, - "magsafe": 6.76e-08, - "majd": 6.76e-08, - "majorana": 6.76e-08, - "malodorous": 6.76e-08, - "maness": 6.76e-08, - "manford": 6.76e-08, - "mangles": 6.76e-08, - "mansfields": 6.76e-08, - "marabou": 6.76e-08, - "marella": 6.76e-08, - "marijuanas": 6.76e-08, - "massas": 6.76e-08, - "masseys": 6.76e-08, - "matings": 6.76e-08, - "maws": 6.76e-08, - "mayhaps": 6.76e-08, - "mayos": 6.76e-08, - "mazhar": 6.76e-08, - "mcdaid": 6.76e-08, - "mcglashan": 6.76e-08, - "medhurst": 6.76e-08, - "medien": 6.76e-08, - "meditator": 6.76e-08, - "medivac": 6.76e-08, - "mellark": 6.76e-08, - "melle": 6.76e-08, - "mellower": 6.76e-08, - "mendelssohns": 6.76e-08, - "mendham": 6.76e-08, - "merrillville": 6.76e-08, - "mersenne": 6.76e-08, - "miaow": 6.76e-08, - "microscopical": 6.76e-08, - "mifepristone": 6.76e-08, - "mily": 6.76e-08, - "mimas": 6.76e-08, - "minotaurs": 6.76e-08, - "minyan": 6.76e-08, - "miocic": 6.76e-08, - "mirjana": 6.76e-08, - "miscommunications": 6.76e-08, - "misgendered": 6.76e-08, - "mistys": 6.76e-08, - "mith": 6.76e-08, - "mitteilungen": 6.76e-08, - "mnla": 6.76e-08, - "moch": 6.76e-08, - "mollison": 6.76e-08, - "monopoles": 6.76e-08, - "montee": 6.76e-08, - "mooing": 6.76e-08, - "morriston": 6.76e-08, - "morsis": 6.76e-08, - "motormouth": 6.76e-08, - "movimento": 6.76e-08, - "mullane": 6.76e-08, - "mulligans": 6.76e-08, - "multipart": 6.76e-08, - "multistep": 6.76e-08, - "mundelein": 6.76e-08, - "munsters": 5.13e-08, - "murnane": 6.76e-08, - "muzzin": 6.76e-08, - "muzzling": 6.76e-08, - "mwangi": 6.76e-08, - "myb": 6.76e-08, - "mygod": 6.76e-08, - "myong": 6.76e-08, - "naba": 6.76e-08, - "nabe": 6.76e-08, - "nagase": 6.76e-08, - "nagra": 6.76e-08, - "nahas": 6.76e-08, - "namba": 6.76e-08, - "nane": 6.76e-08, - "nanni": 6.76e-08, - "nanorods": 6.76e-08, - "narcoleptic": 6.76e-08, - "narra": 6.76e-08, - "nebraskan": 6.76e-08, - "necc": 6.76e-08, - "needleman": 6.76e-08, - "nego": 6.76e-08, - "neji": 6.76e-08, - "neurotics": 6.76e-08, - "neven": 6.76e-08, - "nevile": 6.76e-08, - "ngati": 6.76e-08, - "nhe": 6.76e-08, - "nhis": 6.76e-08, - "nichelle": 6.76e-08, - "nicko": 6.76e-08, - "nique": 6.76e-08, - "niranjan": 6.76e-08, - "nks": 6.76e-08, - "nneka": 6.76e-08, - "nobita": 6.76e-08, - "nones": 6.76e-08, - "nonprescription": 6.76e-08, - "nonvolatile": 6.76e-08, - "nordin": 6.76e-08, - "norgay": 6.76e-08, - "noronha": 6.76e-08, - "northolt": 6.76e-08, - "northview": 6.76e-08, - "notational": 6.76e-08, - "notis": 6.76e-08, - "nouakchott": 6.76e-08, - "novoselic": 6.76e-08, - "nucleosynthesis": 6.76e-08, - "nupe": 6.76e-08, - "nuttier": 6.76e-08, - "odaniel": 6.76e-08, - "oregan": 6.76e-08, - "obergefell": 6.76e-08, - "occassions": 6.76e-08, - "oettinger": 6.76e-08, - "ofqual": 6.76e-08, - "ofyour": 6.76e-08, - "oii": 6.76e-08, - "okumura": 6.76e-08, - "olo": 6.76e-08, - "omp": 6.76e-08, - "ooga": 6.76e-08, - "organi": 6.76e-08, - "orgone": 6.76e-08, - "orrick": 6.76e-08, - "oryza": 6.76e-08, - "oskaloosa": 6.76e-08, - "osn": 6.76e-08, - "osteoclasts": 6.76e-08, - "outlasts": 6.76e-08, - "overbrook": 6.76e-08, - "overmars": 6.76e-08, - "overshare": 6.76e-08, - "owlet": 6.76e-08, - "oximetry": 6.76e-08, - "paddler": 6.76e-08, - "paediatricians": 6.76e-08, - "paez": 6.76e-08, - "pagasa": 6.76e-08, - "paice": 6.76e-08, - "panavision": 6.76e-08, - "pandy": 6.76e-08, - "pantograph": 6.76e-08, - "paok": 6.76e-08, - "papercraft": 6.76e-08, - "parlous": 6.76e-08, - "patrika": 6.76e-08, - "paulines": 6.76e-08, - "paus": 6.76e-08, - "payor": 6.76e-08, - "paytons": 6.76e-08, - "pbss": 6.76e-08, - "peacoat": 6.76e-08, - "peopl": 6.76e-08, - "percha": 6.76e-08, - "perplexes": 6.76e-08, - "pfoa": 6.76e-08, - "pharmacovigilance": 6.76e-08, - "phillipson": 6.76e-08, - "philosophize": 6.76e-08, - "phiri": 6.76e-08, - "photogs": 6.76e-08, - "pht": 6.76e-08, - "picken": 6.76e-08, - "pietrangelo": 6.76e-08, - "pilled": 6.76e-08, - "pindi": 6.76e-08, - "pittwater": 6.76e-08, - "plaintively": 6.76e-08, - "plamen": 6.76e-08, - "planus": 6.76e-08, - "platonically": 6.76e-08, - "playstations": 6.76e-08, - "plink": 6.76e-08, - "plowden": 6.76e-08, - "pny": 6.76e-08, - "pocked": 6.76e-08, - "poetica": 6.76e-08, - "politicans": 6.76e-08, - "poochie": 6.76e-08, - "portraitist": 6.76e-08, - "posadas": 6.76e-08, - "posession": 6.76e-08, - "posthuman": 6.76e-08, - "postmedia": 6.76e-08, - "potenza": 6.76e-08, - "pottawatomie": 6.76e-08, - "povich": 6.76e-08, - "pozzi": 6.76e-08, - "ppis": 6.76e-08, - "prabha": 6.76e-08, - "prabhat": 6.76e-08, - "praetorians": 6.76e-08, - "precolonial": 6.76e-08, - "predication": 6.76e-08, - "preoccupy": 6.76e-08, - "preponderant": 6.76e-08, - "preternaturally": 6.76e-08, - "produ": 6.76e-08, - "psychophysical": 6.76e-08, - "psyops": 6.76e-08, - "pulverizer": 6.76e-08, - "purell": 6.76e-08, - "purgative": 6.76e-08, - "purism": 6.76e-08, - "pusat": 6.76e-08, - "pyongyangs": 6.76e-08, - "qnx": 6.76e-08, - "quaternion": 6.76e-08, - "quatuor": 6.76e-08, - "quenches": 6.76e-08, - "raba": 6.76e-08, - "rabo": 6.76e-08, - "radziwill": 6.76e-08, - "rafal": 6.76e-08, - "rafflecopter": 6.76e-08, - "rakoff": 6.76e-08, - "rakugo": 6.76e-08, - "rampling": 6.76e-08, - "ranney": 6.76e-08, - "raphe": 6.76e-08, - "ratti": 6.76e-08, - "rayford": 6.76e-08, - "razan": 6.76e-08, - "rbe": 6.76e-08, - "rdu": 6.76e-08, - "recoilless": 6.76e-08, - "redesignation": 6.76e-08, - "regionalist": 6.76e-08, - "regionalized": 6.76e-08, - "regnier": 6.76e-08, - "reimposed": 6.76e-08, - "reinach": 6.76e-08, - "remedios": 6.76e-08, - "replacer": 6.76e-08, - "replicative": 6.76e-08, - "reposes": 6.76e-08, - "representable": 6.76e-08, - "reprieves": 6.76e-08, - "requestor": 6.76e-08, - "resealed": 6.76e-08, - "resells": 6.76e-08, - "respecter": 6.76e-08, - "ress": 6.76e-08, - "reticulation": 6.76e-08, - "reynoldss": 6.76e-08, - "ribbit": 6.76e-08, - "rifampin": 6.76e-08, - "rigveda": 6.76e-08, - "rinker": 6.76e-08, - "ritonavir": 6.76e-08, - "rla": 6.76e-08, - "roachs": 6.76e-08, - "robertos": 6.76e-08, - "roboto": 6.76e-08, - "rochas": 6.76e-08, - "rockery": 6.76e-08, - "rockhopper": 6.76e-08, - "roil": 6.76e-08, - "roorkee": 6.76e-08, - "rosaria": 6.76e-08, - "roselli": 6.76e-08, - "rossville": 6.76e-08, - "rowhouses": 6.76e-08, - "rumson": 6.76e-08, - "rundstedt": 6.76e-08, - "russi": 6.76e-08, - "ruthenian": 6.76e-08, - "ruz": 6.76e-08, - "ryazan": 6.76e-08, - "rycroft": 6.76e-08, - "ryse": 6.76e-08, - "sabiha": 6.76e-08, - "sads": 6.76e-08, - "sagat": 6.76e-08, - "sahai": 6.76e-08, - "saja": 6.76e-08, - "salafists": 6.76e-08, - "salbutamol": 6.76e-08, - "salento": 6.76e-08, - "salingers": 6.76e-08, - "salley": 6.76e-08, - "saltpetre": 6.76e-08, - "samet": 6.76e-08, - "sammon": 6.76e-08, - "sanest": 6.76e-08, - "sapwood": 6.76e-08, - "saqib": 6.76e-08, - "sartaj": 6.76e-08, - "satiating": 6.76e-08, - "satirised": 6.76e-08, - "saugerties": 6.76e-08, - "sauropods": 6.76e-08, - "savary": 6.76e-08, - "scenting": 6.76e-08, - "scheibe": 6.76e-08, - "schmeling": 6.76e-08, - "schocken": 6.76e-08, - "schola": 6.76e-08, - "scholem": 6.76e-08, - "schomburg": 6.76e-08, - "schouten": 6.76e-08, - "schutte": 6.76e-08, - "scleral": 6.76e-08, - "scrapie": 6.76e-08, - "scriabin": 6.76e-08, - "scribed": 6.76e-08, - "scrips": 6.76e-08, - "scroller": 6.76e-08, - "scrunching": 6.76e-08, - "scurries": 6.76e-08, - "scw": 6.76e-08, - "seaham": 6.76e-08, - "seances": 6.76e-08, - "seaways": 6.76e-08, - "seeders": 6.76e-08, - "seidenberg": 6.76e-08, - "seinfelds": 6.76e-08, - "semenya": 6.76e-08, - "senki": 6.76e-08, - "senta": 6.76e-08, - "sepultura": 6.76e-08, - "serafin": 6.76e-08, - "sertoli": 6.76e-08, - "servicenow": 6.76e-08, - "servin": 6.76e-08, - "severna": 6.76e-08, - "shakeout": 6.76e-08, - "shaler": 6.76e-08, - "shankara": 6.76e-08, - "shankaracharya": 6.76e-08, - "sharona": 6.76e-08, - "sharpish": 6.76e-08, - "shastra": 6.76e-08, - "shatila": 6.76e-08, - "sherbourne": 6.76e-08, - "shihab": 6.76e-08, - "shimoda": 6.76e-08, - "shinty": 6.76e-08, - "shorewood": 6.76e-08, - "shortie": 6.76e-08, - "shortt": 6.76e-08, - "shukri": 6.76e-08, - "shutt": 6.76e-08, - "shutterfly": 6.76e-08, - "silvermans": 6.76e-08, - "singler": 6.76e-08, - "sipa": 6.76e-08, - "sipho": 6.76e-08, - "siracusa": 6.76e-08, - "siver": 6.76e-08, - "sixs": 6.76e-08, - "skat": 6.76e-08, - "skillman": 6.76e-08, - "skinniest": 6.76e-08, - "slas": 6.76e-08, - "slipcover": 6.76e-08, - "slumlord": 6.76e-08, - "slutsky": 6.76e-08, - "smithwick": 6.76e-08, - "snaith": 6.76e-08, - "snidely": 6.76e-08, - "snt": 6.76e-08, - "socha": 6.76e-08, - "soloman": 6.76e-08, - "somnolence": 6.76e-08, - "sonet": 6.76e-08, - "songhai": 6.76e-08, - "sonship": 6.76e-08, - "soonish": 6.76e-08, - "soth": 6.76e-08, - "spaceys": 6.76e-08, - "spectate": 6.76e-08, - "spectrally": 6.76e-08, - "spir": 6.76e-08, - "splenectomy": 6.76e-08, - "splutter": 6.76e-08, - "spongebobs": 6.76e-08, - "springers": 6.76e-08, - "squally": 6.76e-08, - "squirmy": 6.76e-08, - "stanislavsky": 6.76e-08, - "steck": 6.76e-08, - "steelman": 6.76e-08, - "steganography": 6.76e-08, - "stereographic": 6.76e-08, - "stet": 6.76e-08, - "sticked": 6.76e-08, - "stompers": 6.76e-08, - "striata": 6.76e-08, - "striders": 6.76e-08, - "stryder": 6.76e-08, - "stumbleupon": 6.76e-08, - "subgenera": 6.76e-08, - "subhumans": 6.76e-08, - "suhail": 6.76e-08, - "summoners": 6.76e-08, - "suoi": 6.76e-08, - "superfight": 6.76e-08, - "surin": 6.76e-08, - "susanoo": 6.76e-08, - "svi": 6.76e-08, - "sware": 6.76e-08, - "swarup": 6.76e-08, - "sweetens": 6.76e-08, - "symmetra": 6.76e-08, - "syncytial": 6.76e-08, - "synuclein": 6.76e-08, - "syrinx": 6.76e-08, - "szeged": 6.76e-08, - "tadao": 6.76e-08, - "tagaytay": 6.76e-08, - "tagine": 6.76e-08, - "tailer": 6.76e-08, - "taisho": 6.76e-08, - "tarasov": 6.76e-08, - "tarentum": 6.76e-08, - "tattling": 6.76e-08, - "tauris": 6.76e-08, - "taystee": 6.76e-08, - "techn": 6.76e-08, - "teesta": 6.76e-08, - "telfair": 6.76e-08, - "tembo": 6.76e-08, - "temi": 6.76e-08, - "terminalia": 6.76e-08, - "tertius": 6.76e-08, - "tesh": 6.76e-08, - "tetrodotoxin": 6.76e-08, - "tfo": 6.76e-08, - "thackery": 6.76e-08, - "thatcherite": 6.76e-08, - "thebans": 6.76e-08, - "theia": 6.76e-08, - "theisen": 6.76e-08, - "theropods": 6.76e-08, - "thers": 6.76e-08, - "thiamin": 6.76e-08, - "thinkstock": 6.76e-08, - "thisis": 6.76e-08, - "thranduil": 6.76e-08, - "threshers": 6.76e-08, - "thumbtacks": 6.76e-08, - "thye": 6.76e-08, - "tica": 6.76e-08, - "tiflis": 6.76e-08, - "tifo": 6.76e-08, - "tikhon": 6.76e-08, - "tikkun": 6.76e-08, - "timbering": 6.76e-08, - "toku": 6.76e-08, - "tombo": 6.76e-08, - "tomson": 6.76e-08, - "tooke": 6.76e-08, - "toomer": 6.76e-08, - "tootin": 6.76e-08, - "torqued": 6.76e-08, - "transexuals": 6.76e-08, - "transferwise": 6.76e-08, - "transsexualism": 6.76e-08, - "trego": 6.76e-08, - "trippie": 6.76e-08, - "triwizard": 6.76e-08, - "truisms": 6.76e-08, - "tsongas": 6.76e-08, - "tuatha": 6.76e-08, - "tuggeranong": 6.76e-08, - "turbocharging": 6.76e-08, - "turkistan": 6.76e-08, - "tuscola": 6.76e-08, - "tvo": 6.76e-08, - "twentysomething": 6.76e-08, - "twerps": 6.76e-08, - "ubl": 6.76e-08, - "udd": 6.76e-08, - "uhhhhhh": 6.76e-08, - "uki": 6.76e-08, - "ulman": 6.76e-08, - "unchain": 6.76e-08, - "unclench": 6.76e-08, - "uncompromised": 6.76e-08, - "uncork": 6.76e-08, - "underwrites": 6.76e-08, - "undulate": 6.76e-08, - "unfired": 6.76e-08, - "unforgivably": 6.76e-08, - "unley": 6.76e-08, - "unmasks": 6.76e-08, - "unrehearsed": 6.76e-08, - "unrepeatable": 6.76e-08, - "unrestored": 6.76e-08, - "unsuitability": 6.76e-08, - "upchurch": 6.76e-08, - "uremic": 6.76e-08, - "usj": 6.76e-08, - "uyo": 6.76e-08, - "vacances": 6.76e-08, - "valency": 6.76e-08, - "valladares": 6.76e-08, - "vanbrugh": 6.76e-08, - "vanzant": 6.76e-08, - "vatanen": 6.76e-08, - "veining": 6.76e-08, - "verrier": 6.76e-08, - "vesely": 6.76e-08, - "veta": 6.76e-08, - "vete": 6.76e-08, - "vigne": 6.76e-08, - "virally": 6.76e-08, - "visages": 6.76e-08, - "vlive": 6.76e-08, - "vohra": 6.76e-08, - "voidable": 6.76e-08, - "volkan": 6.76e-08, - "voorhis": 6.76e-08, - "vulcanization": 6.76e-08, - "vulpix": 6.76e-08, - "vuong": 6.76e-08, - "vve": 6.76e-08, - "waga": 6.76e-08, - "wampler": 6.76e-08, - "wata": 6.76e-08, - "watari": 6.76e-08, - "wbt": 6.76e-08, - "weaponization": 6.76e-08, - "wearside": 6.76e-08, - "weathervane": 6.76e-08, - "weekley": 6.76e-08, - "wenk": 6.76e-08, - "wente": 6.76e-08, - "werfel": 6.76e-08, - "whang": 6.76e-08, - "whelks": 6.76e-08, - "whiffed": 6.76e-08, - "whingeing": 6.76e-08, - "whippets": 6.76e-08, - "whirligig": 6.76e-08, - "whited": 6.76e-08, - "willes": 6.76e-08, - "willman": 6.76e-08, - "winders": 6.76e-08, - "windless": 6.76e-08, - "wineglass": 6.76e-08, - "winson": 6.76e-08, - "winther": 6.76e-08, - "wmr": 6.76e-08, - "worksites": 6.76e-08, - "worktops": 6.76e-08, - "wotherspoon": 6.76e-08, - "wowow": 6.76e-08, - "xmp": 6.76e-08, - "xq": 6.76e-08, - "xvid": 6.76e-08, - "yack": 6.76e-08, - "yamcha": 6.76e-08, - "yapp": 6.76e-08, - "yaradua": 6.76e-08, - "yaxley": 6.76e-08, - "yeltsins": 6.76e-08, - "yezidis": 6.76e-08, - "yokozuna": 6.76e-08, - "yongsan": 6.76e-08, - "yoons": 6.76e-08, - "yoshihide": 6.76e-08, - "yuva": 6.76e-08, - "yx": 6.76e-08, - "yyz": 6.76e-08, - "zacarias": 6.76e-08, - "zamfara": 6.76e-08, - "zapotec": 6.76e-08, - "zayas": 6.76e-08, - "zeinab": 6.76e-08, - "zenimax": 6.76e-08, - "zinda": 6.76e-08, - "ziplining": 6.76e-08, - "zizou": 6.76e-08, - "zordon": 6.76e-08, - "zuzu": 6.76e-08, - "aaai": 6.61e-08, - "abhidhamma": 6.61e-08, - "abimelech": 6.61e-08, - "abjure": 6.61e-08, - "accessorizing": 6.61e-08, - "acela": 6.61e-08, - "acount": 6.61e-08, - "acra": 6.61e-08, - "actium": 6.61e-08, - "adventuress": 6.61e-08, - "aegina": 6.61e-08, - "affability": 6.61e-08, - "affluenza": 6.61e-08, - "agathas": 6.61e-08, - "aggresive": 6.61e-08, - "ahmadinejads": 6.61e-08, - "airboat": 6.61e-08, - "akademik": 6.61e-08, - "alawi": 6.61e-08, - "aldos": 6.61e-08, - "alem": 6.61e-08, - "aliquippa": 6.61e-08, - "alleyn": 6.61e-08, - "almoner": 6.61e-08, - "amalric": 6.61e-08, - "amati": 6.61e-08, - "americain": 6.61e-08, - "amphibole": 6.61e-08, - "anatomie": 6.61e-08, - "andar": 6.61e-08, - "andry": 6.61e-08, - "angele": 6.61e-08, - "anit": 6.61e-08, - "antal": 6.61e-08, - "antennal": 6.61e-08, - "antisymmetric": 6.61e-08, - "anuradhapura": 6.61e-08, - "anyas": 6.61e-08, - "aok": 6.61e-08, - "aopa": 6.61e-08, - "aprs": 6.61e-08, - "arap": 6.61e-08, - "arawak": 6.61e-08, - "arend": 6.61e-08, - "arethusa": 6.61e-08, - "arevalo": 6.61e-08, - "ariella": 6.61e-08, - "ariston": 6.61e-08, - "artemus": 6.61e-08, - "arties": 6.61e-08, - "asca": 6.61e-08, - "aska": 6.61e-08, - "assasin": 6.61e-08, - "astron": 6.61e-08, - "athar": 6.61e-08, - "athe": 6.61e-08, - "athletica": 6.61e-08, - "atocha": 6.61e-08, - "auri": 6.61e-08, - "auris": 6.61e-08, - "aveo": 6.61e-08, - "avuncular": 6.61e-08, - "ayad": 6.61e-08, - "ayi": 6.61e-08, - "baad": 6.61e-08, - "babo": 6.61e-08, - "bahamians": 6.61e-08, - "bakerloo": 6.61e-08, - "bakugan": 6.61e-08, - "baldev": 6.61e-08, - "balkanization": 6.61e-08, - "ballymore": 6.61e-08, - "balut": 6.61e-08, - "bambis": 6.61e-08, - "banalities": 6.61e-08, - "bankrupts": 6.61e-08, - "bapt": 6.61e-08, - "barbossa": 6.61e-08, - "basrah": 6.61e-08, - "bastos": 6.61e-08, - "bating": 6.61e-08, - "batsford": 6.61e-08, - "bbr": 6.61e-08, - "bdubs": 6.61e-08, - "beathard": 6.61e-08, - "beauticians": 6.61e-08, - "bedpan": 6.61e-08, - "belotti": 6.61e-08, - "beltane": 6.61e-08, - "benevolently": 6.61e-08, - "berton": 6.61e-08, - "besa": 6.61e-08, - "bevington": 6.61e-08, - "bialystok": 6.61e-08, - "biannually": 6.61e-08, - "biggleswade": 6.61e-08, - "bijoux": 6.61e-08, - "bilodeau": 6.61e-08, - "biobank": 6.61e-08, - "bioethanol": 6.61e-08, - "biphobia": 6.61e-08, - "birley": 6.61e-08, - "birling": 6.61e-08, - "bisley": 6.61e-08, - "blackcomb": 6.61e-08, - "blancpain": 6.61e-08, - "bleakley": 6.61e-08, - "bluing": 6.61e-08, - "bluto": 6.61e-08, - "bogeymen": 6.61e-08, - "bohdan": 6.61e-08, - "bonnett": 6.61e-08, - "bookchin": 6.61e-08, - "borlaug": 6.61e-08, - "botan": 6.61e-08, - "bouchet": 6.61e-08, - "bouffant": 6.61e-08, - "bramante": 6.61e-08, - "brasenose": 6.61e-08, - "brassey": 6.61e-08, - "breslow": 6.61e-08, - "bresnahan": 6.61e-08, - "bricolage": 6.61e-08, - "bridgett": 6.61e-08, - "brigette": 6.61e-08, - "briley": 6.61e-08, - "bronchiolitis": 6.61e-08, - "broodmare": 6.61e-08, - "brucei": 6.61e-08, - "bruja": 6.61e-08, - "bruneis": 6.61e-08, - "brutalised": 6.61e-08, - "budda": 6.61e-08, - "buffay": 6.61e-08, - "buildups": 6.61e-08, - "bulgars": 6.61e-08, - "bunghole": 6.61e-08, - "bunked": 6.61e-08, - "burgo": 6.61e-08, - "bushranger": 6.61e-08, - "buttload": 6.61e-08, - "buttner": 6.61e-08, - "byakuya": 6.61e-08, - "byfield": 6.61e-08, - "bylines": 6.61e-08, - "cabildo": 6.61e-08, - "cabrio": 6.61e-08, - "caddell": 6.61e-08, - "cafepress": 6.61e-08, - "cairney": 6.61e-08, - "callison": 6.61e-08, - "callista": 6.61e-08, - "cameltoe": 6.61e-08, - "camhs": 6.61e-08, - "campese": 6.61e-08, - "canards": 6.61e-08, - "canaris": 6.61e-08, - "canoodling": 6.61e-08, - "caravanning": 6.61e-08, - "cardiomyocytes": 6.61e-08, - "carreys": 6.61e-08, - "carri": 6.61e-08, - "castletown": 6.61e-08, - "catechol": 6.61e-08, - "categorys": 6.61e-08, - "catman": 6.61e-08, - "cattail": 6.61e-08, - "cattrall": 6.61e-08, - "cawthorne": 6.61e-08, - "ccj": 6.61e-08, - "ceda": 6.61e-08, - "cedarwood": 6.61e-08, - "centralising": 6.61e-08, - "cepeda": 6.61e-08, - "cephalothorax": 6.61e-08, - "chalabi": 6.61e-08, - "chandrababu": 6.61e-08, - "chaperoning": 6.61e-08, - "chauvinists": 6.61e-08, - "chernin": 6.61e-08, - "chiefdoms": 6.61e-08, - "chieko": 6.61e-08, - "chinned": 6.61e-08, - "chiwetel": 6.61e-08, - "chobe": 6.61e-08, - "choro": 6.61e-08, - "chro": 6.61e-08, - "chubbs": 6.61e-08, - "chunkier": 6.61e-08, - "churchgoer": 6.61e-08, - "cincinnatus": 6.61e-08, - "cissp": 6.61e-08, - "citicorp": 6.61e-08, - "cito": 6.61e-08, - "clambake": 6.61e-08, - "clarences": 6.61e-08, - "claussen": 6.61e-08, - "clericalism": 6.61e-08, - "clews": 6.61e-08, - "clinica": 6.61e-08, - "clinicals": 6.61e-08, - "clodagh": 6.61e-08, - "clubfoot": 6.61e-08, - "cnf": 6.61e-08, - "coad": 6.61e-08, - "cobe": 6.61e-08, - "cobh": 6.61e-08, - "coch": 6.61e-08, - "cockcroft": 6.61e-08, - "coes": 6.61e-08, - "coeval": 6.61e-08, - "coextensive": 6.61e-08, - "coire": 6.61e-08, - "colditz": 6.61e-08, - "collec": 6.61e-08, - "comerford": 6.61e-08, - "comiskey": 6.61e-08, - "comparables": 6.61e-08, - "comping": 6.61e-08, - "conciseness": 6.61e-08, - "configures": 6.61e-08, - "congressperson": 6.61e-08, - "consulta": 6.61e-08, - "contractures": 6.61e-08, - "conver": 6.61e-08, - "cooder": 6.61e-08, - "cookhouse": 6.61e-08, - "copelands": 6.61e-08, - "corfield": 6.61e-08, - "cornes": 6.61e-08, - "corroborative": 6.61e-08, - "corstorphine": 6.61e-08, - "cosmopolis": 6.61e-08, - "cought": 6.61e-08, - "councilmembers": 6.61e-08, - "coverlet": 6.61e-08, - "cowls": 6.61e-08, - "crandell": 6.61e-08, - "crataegus": 6.61e-08, - "cref": 6.61e-08, - "crise": 6.61e-08, - "croque": 6.61e-08, - "cryptid": 6.61e-08, - "cryptographers": 6.61e-08, - "crystallinity": 6.61e-08, - "crystallisation": 6.61e-08, - "cuh": 6.61e-08, - "curvier": 6.61e-08, - "cuvette": 6.61e-08, - "cystine": 6.61e-08, - "dabbs": 6.61e-08, - "dagg": 6.61e-08, - "daiquiris": 6.61e-08, - "damone": 6.61e-08, - "darkish": 6.61e-08, - "darrelle": 6.61e-08, - "daumier": 6.61e-08, - "davidic": 6.61e-08, - "deben": 6.61e-08, - "debenham": 6.61e-08, - "decimates": 6.61e-08, - "deconvolution": 6.61e-08, - "defendable": 6.61e-08, - "deify": 6.61e-08, - "delightedly": 6.61e-08, - "delimiting": 6.61e-08, - "dengs": 6.61e-08, - "denr": 6.61e-08, - "despoiled": 6.61e-08, - "deucalion": 6.61e-08, - "dhahran": 6.61e-08, - "dhal": 6.61e-08, - "dharmas": 6.61e-08, - "dhimmi": 6.61e-08, - "dhp": 6.61e-08, - "diaconate": 6.61e-08, - "dichloride": 6.61e-08, - "dichter": 6.61e-08, - "dickstein": 6.61e-08, - "dico": 6.61e-08, - "dicom": 6.61e-08, - "dienes": 6.61e-08, - "dihydro": 6.61e-08, - "dingman": 6.61e-08, - "discordance": 6.61e-08, - "disposer": 6.61e-08, - "disproportional": 6.61e-08, - "districting": 6.61e-08, - "domenica": 6.61e-08, - "donley": 6.61e-08, - "doorn": 6.61e-08, - "dougall": 6.61e-08, - "dracos": 6.61e-08, - "drawbar": 6.61e-08, - "dredgers": 6.61e-08, - "drey": 6.61e-08, - "driffield": 6.61e-08, - "drue": 6.61e-08, - "dto": 6.61e-08, - "duer": 6.61e-08, - "dumbfucks": 6.61e-08, - "dummys": 6.61e-08, - "dundon": 6.61e-08, - "dunhuang": 6.61e-08, - "durables": 6.61e-08, - "durack": 6.61e-08, - "eatable": 6.61e-08, - "eax": 6.61e-08, - "ecos": 6.61e-08, - "edenton": 6.61e-08, - "edgemont": 6.61e-08, - "edmundo": 6.61e-08, - "eew": 6.61e-08, - "egyptair": 6.61e-08, - "einaudi": 6.61e-08, - "eira": 6.61e-08, - "elad": 6.61e-08, - "eleanore": 6.61e-08, - "elektron": 6.61e-08, - "elife": 6.61e-08, - "embeddings": 6.61e-08, - "emboli": 6.61e-08, - "emolument": 6.61e-08, - "encomium": 6.61e-08, - "endears": 6.61e-08, - "enea": 6.61e-08, - "enuf": 6.61e-08, - "eobard": 6.61e-08, - "epigraphy": 6.61e-08, - "epis": 6.61e-08, - "equiano": 6.61e-08, - "escudos": 6.61e-08, - "essayed": 6.61e-08, - "eternities": 6.61e-08, - "exacta": 6.61e-08, - "excedrin": 6.61e-08, - "exeters": 6.61e-08, - "fabrica": 6.61e-08, - "fabulousness": 6.61e-08, - "fadnavis": 6.61e-08, - "fagen": 6.61e-08, - "fairhope": 6.61e-08, - "fala": 6.61e-08, - "falseness": 6.61e-08, - "famil": 6.61e-08, - "fangirling": 6.61e-08, - "farquaad": 6.61e-08, - "fascicles": 6.61e-08, - "fatu": 6.61e-08, - "fawkner": 6.61e-08, - "fayes": 6.61e-08, - "fdj": 6.61e-08, - "feeing": 6.61e-08, - "feith": 6.61e-08, - "fekete": 6.61e-08, - "feltz": 6.61e-08, - "fentons": 6.61e-08, - "ference": 6.61e-08, - "fessed": 6.61e-08, - "fier": 6.61e-08, - "filkins": 6.61e-08, - "filomena": 6.61e-08, - "firewater": 6.61e-08, - "flagrante": 6.61e-08, - "flesch": 6.61e-08, - "flori": 6.61e-08, - "foliation": 6.61e-08, - "foppish": 6.61e-08, - "forelimb": 6.61e-08, - "forsee": 6.61e-08, - "foxed": 6.61e-08, - "foxton": 6.61e-08, - "fraiser": 6.61e-08, - "francoeur": 6.61e-08, - "freethinking": 6.61e-08, - "fromthe": 6.61e-08, - "frsc": 6.61e-08, - "fuga": 6.61e-08, - "fujisawa": 6.61e-08, - "fulhams": 6.61e-08, - "funyuns": 6.61e-08, - "furiosa": 6.61e-08, - "furuya": 6.61e-08, - "gabardine": 6.61e-08, - "gakuen": 6.61e-08, - "garris": 6.61e-08, - "garston": 6.61e-08, - "gaumont": 6.61e-08, - "gawande": 6.61e-08, - "gayi": 6.61e-08, - "gazzaniga": 6.61e-08, - "gellert": 6.61e-08, - "gematria": 6.61e-08, - "genia": 6.61e-08, - "geof": 6.61e-08, - "geoscientists": 6.61e-08, - "gesundheit": 6.61e-08, - "gfl": 6.61e-08, - "gfm": 6.61e-08, - "giallo": 6.61e-08, - "gics": 6.61e-08, - "ginevra": 6.61e-08, - "ginkel": 6.61e-08, - "ginko": 6.61e-08, - "glucuronide": 6.61e-08, - "gnarls": 6.61e-08, - "goldthorpe": 6.61e-08, - "gomi": 6.61e-08, - "goodlife": 6.61e-08, - "gottman": 6.61e-08, - "gotto": 6.61e-08, - "graal": 6.61e-08, - "granbury": 6.61e-08, - "greenlaw": 6.61e-08, - "greninja": 6.61e-08, - "groins": 6.61e-08, - "groupers": 6.61e-08, - "gtf": 6.61e-08, - "guadalquivir": 6.61e-08, - "guffawing": 6.61e-08, - "gumballs": 6.61e-08, - "gumdrop": 6.61e-08, - "gurdjieff": 6.61e-08, - "gyeonggi": 6.61e-08, - "gymnosperms": 6.61e-08, - "gyorgy": 6.61e-08, - "habiba": 6.61e-08, - "haddin": 6.61e-08, - "hailes": 6.61e-08, - "hamms": 6.61e-08, - "hannitys": 6.61e-08, - "hanratty": 6.61e-08, - "hansell": 6.61e-08, - "hapi": 6.61e-08, - "haralson": 6.61e-08, - "harapan": 6.61e-08, - "harber": 6.61e-08, - "harpur": 6.61e-08, - "harriot": 6.61e-08, - "harriott": 6.61e-08, - "hartmans": 6.61e-08, - "hasil": 6.61e-08, - "hauk": 6.61e-08, - "hawksworth": 6.61e-08, - "haymitch": 6.61e-08, - "hazar": 6.61e-08, - "headstand": 6.61e-08, - "hearses": 6.61e-08, - "hedin": 6.61e-08, - "heilmann": 6.61e-08, - "hellmann": 6.61e-08, - "hellwig": 6.61e-08, - "helpfull": 6.61e-08, - "hematologist": 6.61e-08, - "henriquez": 6.61e-08, - "hetalia": 6.61e-08, - "hideaways": 6.61e-08, - "hierarch": 6.61e-08, - "hierophant": 6.61e-08, - "hile": 6.61e-08, - "hinkie": 6.61e-08, - "hireling": 6.61e-08, - "hobnob": 6.61e-08, - "holliston": 6.61e-08, - "honeymooned": 6.61e-08, - "honi": 6.61e-08, - "hooey": 6.61e-08, - "hoopa": 6.61e-08, - "hoopes": 6.61e-08, - "hoosick": 6.61e-08, - "hooted": 6.61e-08, - "hoppity": 6.61e-08, - "horlicks": 6.61e-08, - "hornacek": 6.61e-08, - "hosa": 6.61e-08, - "hotkeys": 6.61e-08, - "houseboy": 6.61e-08, - "huberts": 6.61e-08, - "hudspeth": 6.61e-08, - "hulda": 6.61e-08, - "humani": 6.61e-08, - "humsafar": 6.61e-08, - "humungous": 6.61e-08, - "huntersville": 6.61e-08, - "huttons": 6.61e-08, - "hya": 6.61e-08, - "hyaluronidase": 6.61e-08, - "hydrogens": 6.61e-08, - "hyer": 6.61e-08, - "hyperfine": 6.61e-08, - "hyphenation": 6.61e-08, - "idowu": 6.61e-08, - "iiot": 6.61e-08, - "ilcs": 6.61e-08, - "ileostomy": 6.61e-08, - "illogic": 6.61e-08, - "imber": 6.61e-08, - "impetigo": 6.61e-08, - "implementable": 6.61e-08, - "imposts": 6.61e-08, - "indexers": 6.61e-08, - "ingleton": 6.61e-08, - "ingrain": 6.61e-08, - "initiatory": 6.61e-08, - "instagramming": 6.61e-08, - "intercedes": 6.61e-08, - "internists": 6.61e-08, - "intertribal": 6.61e-08, - "intones": 6.61e-08, - "inverell": 6.61e-08, - "inves": 6.61e-08, - "iob": 6.61e-08, - "iohannis": 6.61e-08, - "irrfan": 6.61e-08, - "isar": 6.61e-08, - "ishwar": 6.61e-08, - "isit": 6.61e-08, - "islamia": 6.61e-08, - "isler": 6.61e-08, - "isomerase": 6.61e-08, - "isomeric": 6.61e-08, - "ista": 6.61e-08, - "ithaka": 6.61e-08, - "itin": 6.61e-08, - "ivd": 6.61e-08, - "iws": 6.61e-08, - "izzi": 6.61e-08, - "jambi": 6.61e-08, - "janaki": 6.61e-08, - "jannik": 6.61e-08, - "jayaram": 6.61e-08, - "jcpoa": 6.61e-08, - "jenison": 6.61e-08, - "jhu": 6.61e-08, - "jica": 6.61e-08, - "jmb": 6.61e-08, - "joerg": 6.61e-08, - "johanan": 6.61e-08, - "johannine": 6.61e-08, - "jta": 6.61e-08, - "juego": 6.61e-08, - "jugo": 6.61e-08, - "juicers": 6.61e-08, - "juillet": 6.61e-08, - "jumpscare": 6.61e-08, - "junos": 6.61e-08, - "justiciary": 6.61e-08, - "jwst": 6.61e-08, - "kalakaua": 6.61e-08, - "kalan": 6.61e-08, - "kanae": 6.61e-08, - "kapalua": 6.61e-08, - "kashin": 6.61e-08, - "kearsarge": 6.61e-08, - "kearsley": 6.61e-08, - "keat": 6.61e-08, - "kedavra": 6.61e-08, - "keddie": 6.61e-08, - "keepeth": 6.61e-08, - "kegels": 6.61e-08, - "keiki": 6.61e-08, - "kerk": 6.61e-08, - "kerouacs": 6.61e-08, - "kershner": 6.61e-08, - "ketel": 6.61e-08, - "keyframe": 6.61e-08, - "keypads": 6.61e-08, - "khiva": 6.61e-08, - "khong": 6.61e-08, - "kiddush": 6.61e-08, - "kierans": 6.61e-08, - "kilim": 6.61e-08, - "kimmich": 6.61e-08, - "kinglake": 6.61e-08, - "kingsleys": 6.61e-08, - "kington": 6.61e-08, - "kinked": 6.61e-08, - "kiplinger": 6.61e-08, - "kirn": 6.61e-08, - "kirshner": 6.61e-08, - "kizzy": 6.61e-08, - "klar": 6.61e-08, - "klik": 6.61e-08, - "klinik": 6.61e-08, - "kluivert": 6.61e-08, - "kops": 6.61e-08, - "kozma": 6.61e-08, - "kreuger": 6.61e-08, - "kri": 6.61e-08, - "krishi": 6.61e-08, - "kristinas": 6.61e-08, - "kruskal": 6.61e-08, - "kuhlmann": 6.61e-08, - "kukui": 6.61e-08, - "kurata": 6.61e-08, - "kuril": 6.61e-08, - "kushan": 6.61e-08, - "kylian": 6.61e-08, - "laan": 6.61e-08, - "ladoga": 6.61e-08, - "lafont": 6.61e-08, - "lafrance": 6.61e-08, - "lagares": 6.61e-08, - "lams": 6.61e-08, - "lambada": 6.61e-08, - "lampley": 6.61e-08, - "lanez": 6.61e-08, - "lanre": 6.61e-08, - "larssons": 6.61e-08, - "lathi": 6.61e-08, - "latinum": 6.61e-08, - "launders": 6.61e-08, - "laundromats": 6.61e-08, - "lawan": 6.61e-08, - "laya": 6.61e-08, - "laypersons": 6.61e-08, - "lcb": 6.61e-08, - "leadbetter": 6.61e-08, - "leflore": 6.61e-08, - "legitimated": 6.61e-08, - "leibnitz": 6.61e-08, - "leninists": 6.61e-08, - "leopolds": 6.61e-08, - "leti": 6.61e-08, - "levasseur": 6.61e-08, - "leverhulme": 6.61e-08, - "limbless": 6.61e-08, - "linsley": 6.61e-08, - "lionels": 6.61e-08, - "lisse": 6.61e-08, - "livingstons": 6.61e-08, - "lockman": 6.61e-08, - "lofthouse": 6.61e-08, - "longboarding": 6.61e-08, - "lorem": 6.61e-08, - "lorentzian": 6.61e-08, - "lothal": 6.61e-08, - "lrg": 6.61e-08, - "lsh": 6.61e-08, - "lsk": 6.61e-08, - "luch": 6.61e-08, - "lummis": 6.61e-08, - "lushly": 6.61e-08, - "luteum": 6.61e-08, - "lysed": 6.61e-08, - "macalester": 6.61e-08, - "macfie": 6.61e-08, - "macken": 6.61e-08, - "madhur": 6.61e-08, - "maecenas": 6.61e-08, - "maen": 6.61e-08, - "magallanes": 6.61e-08, - "magickal": 6.61e-08, - "magie": 6.61e-08, - "magnetised": 6.61e-08, - "magneton": 6.61e-08, - "maharshi": 6.61e-08, - "mahela": 6.61e-08, - "malahide": 6.61e-08, - "mallette": 6.61e-08, - "mallick": 6.61e-08, - "malvolio": 6.61e-08, - "mangalam": 6.61e-08, - "manias": 6.61e-08, - "mannes": 6.61e-08, - "markman": 6.61e-08, - "markoff": 6.61e-08, - "masaaki": 6.61e-08, - "mashiro": 6.61e-08, - "masochists": 6.61e-08, - "masseria": 6.61e-08, - "mastin": 6.61e-08, - "matri": 6.61e-08, - "maturin": 6.61e-08, - "mavens": 6.61e-08, - "mazzone": 6.61e-08, - "mccaleb": 6.61e-08, - "mccarver": 6.61e-08, - "mcferrin": 6.61e-08, - "mckibbin": 6.61e-08, - "mcmillin": 6.61e-08, - "mcmurphy": 6.61e-08, - "meanderings": 6.61e-08, - "meeeee": 6.61e-08, - "mehl": 6.61e-08, - "mehsud": 6.61e-08, - "meighen": 6.61e-08, - "melchett": 6.61e-08, - "memri": 6.61e-08, - "menta": 6.61e-08, - "mentis": 6.61e-08, - "mento": 6.61e-08, - "meon": 6.61e-08, - "meriting": 6.61e-08, - "meritless": 6.61e-08, - "merrow": 6.61e-08, - "mersch": 6.61e-08, - "metabolised": 6.61e-08, - "metallurgists": 6.61e-08, - "meti": 6.61e-08, - "mettenberger": 6.61e-08, - "mexi": 6.61e-08, - "miamisburg": 6.61e-08, - "michalski": 6.61e-08, - "microclimates": 6.61e-08, - "midwesterners": 6.61e-08, - "midwood": 6.61e-08, - "mier": 6.61e-08, - "milad": 6.61e-08, - "mileena": 6.61e-08, - "minuit": 6.61e-08, - "mischaracterized": 6.61e-08, - "miscue": 6.61e-08, - "mislabeling": 6.61e-08, - "missense": 6.61e-08, - "miyata": 6.61e-08, - "mni": 6.61e-08, - "moberg": 6.61e-08, - "mobilities": 6.61e-08, - "moderato": 6.61e-08, - "mome": 6.61e-08, - "monadic": 6.61e-08, - "monophyletic": 6.61e-08, - "monumenta": 6.61e-08, - "mooneys": 6.61e-08, - "moorer": 6.61e-08, - "moradabad": 6.61e-08, - "morcha": 6.61e-08, - "morpork": 6.61e-08, - "mortlock": 6.61e-08, - "mossi": 6.61e-08, - "mountainview": 6.61e-08, - "msy": 6.61e-08, - "mubi": 6.61e-08, - "muchos": 6.61e-08, - "mudie": 6.61e-08, - "muffling": 6.61e-08, - "muggeridge": 6.61e-08, - "muito": 6.61e-08, - "multidirectional": 6.61e-08, - "multisport": 6.61e-08, - "mutineer": 6.61e-08, - "mxr": 6.61e-08, - "mycelia": 6.61e-08, - "myelogenous": 6.61e-08, - "myitkyina": 6.61e-08, - "myrdal": 6.61e-08, - "ndjamena": 6.61e-08, - "naci": 6.61e-08, - "nahda": 6.61e-08, - "naledi": 6.61e-08, - "naomie": 6.61e-08, - "narrabri": 6.61e-08, - "narula": 6.61e-08, - "nashi": 6.61e-08, - "natalee": 6.61e-08, - "navarrete": 6.61e-08, - "nawaf": 6.61e-08, - "needled": 6.61e-08, - "nehisi": 6.61e-08, - "nela": 6.61e-08, - "nemec": 6.61e-08, - "nemerov": 6.61e-08, - "neons": 6.61e-08, - "neoplatonism": 6.61e-08, - "netherton": 6.61e-08, - "netminder": 6.61e-08, - "newtype": 6.61e-08, - "ngorongoro": 6.61e-08, - "nhp": 6.61e-08, - "niland": 6.61e-08, - "nilpotent": 6.61e-08, - "niros": 6.61e-08, - "nisbett": 6.61e-08, - "nmu": 6.61e-08, - "nonequilibrium": 6.61e-08, - "nonmember": 6.61e-08, - "nonresidents": 6.61e-08, - "nordea": 6.61e-08, - "nordland": 6.61e-08, - "nucleolus": 6.61e-08, - "nurseryman": 6.61e-08, - "oakfield": 6.61e-08, - "oaktree": 6.61e-08, - "obviating": 6.61e-08, - "offloads": 6.61e-08, - "ofl": 6.61e-08, - "okonomiyaki": 6.61e-08, - "olamide": 6.61e-08, - "onur": 6.61e-08, - "operationalize": 6.61e-08, - "operettas": 6.61e-08, - "opl": 6.61e-08, - "opta": 6.61e-08, - "orac": 6.61e-08, - "orica": 6.61e-08, - "orto": 6.61e-08, - "ostrov": 6.61e-08, - "otcqx": 6.61e-08, - "ottery": 6.61e-08, - "outsources": 6.61e-08, - "overcooking": 6.61e-08, - "overproduced": 6.61e-08, - "pab": 6.61e-08, - "palatability": 6.61e-08, - "paleness": 6.61e-08, - "pallidum": 6.61e-08, - "palmitic": 6.61e-08, - "palpitation": 6.61e-08, - "paracrine": 6.61e-08, - "parasitical": 6.61e-08, - "parcell": 6.61e-08, - "parfums": 6.61e-08, - "parnas": 6.61e-08, - "parnes": 6.61e-08, - "partir": 6.61e-08, - "pase": 6.61e-08, - "passably": 6.61e-08, - "patrie": 6.61e-08, - "pbg": 6.61e-08, - "pdgf": 6.61e-08, - "pearlescent": 6.61e-08, - "peckinpah": 6.61e-08, - "peices": 6.61e-08, - "perfecta": 6.61e-08, - "peyser": 6.61e-08, - "pfw": 6.61e-08, - "phagocytes": 6.61e-08, - "phantasms": 6.61e-08, - "pharmas": 6.61e-08, - "pharmaceutics": 6.61e-08, - "pharmd": 6.61e-08, - "pheochromocytoma": 6.61e-08, - "philbrick": 6.61e-08, - "photius": 6.61e-08, - "pietism": 6.61e-08, - "piotrowski": 6.61e-08, - "pixley": 6.61e-08, - "plantronics": 6.61e-08, - "playboi": 6.61e-08, - "playtex": 6.61e-08, - "plexi": 6.61e-08, - "pluperfect": 6.61e-08, - "pluripotency": 6.61e-08, - "polonsky": 6.61e-08, - "polygenic": 6.61e-08, - "polygonum": 6.61e-08, - "polyneuropathy": 6.61e-08, - "pompeys": 6.61e-08, - "porlock": 6.61e-08, - "portmeirion": 6.61e-08, - "positio": 6.61e-08, - "potentia": 6.61e-08, - "poulos": 6.61e-08, - "prabhakaran": 6.61e-08, - "practicals": 6.61e-08, - "pragya": 6.61e-08, - "pralines": 6.61e-08, - "precheck": 6.61e-08, - "prodrug": 6.61e-08, - "proscribe": 6.61e-08, - "proselytism": 6.61e-08, - "prousts": 6.61e-08, - "proyecto": 6.61e-08, - "publico": 6.61e-08, - "puella": 6.61e-08, - "pullups": 6.61e-08, - "punchestown": 6.61e-08, - "purdie": 6.61e-08, - "purrfect": 6.61e-08, - "putnams": 6.61e-08, - "pyros": 6.61e-08, - "qadi": 6.61e-08, - "qtip": 6.61e-08, - "quadruples": 6.61e-08, - "quaff": 6.61e-08, - "quango": 6.61e-08, - "quevedo": 6.61e-08, - "quickdraw": 6.61e-08, - "quimper": 6.61e-08, - "quinte": 6.61e-08, - "qy": 6.61e-08, - "raben": 6.61e-08, - "ranelagh": 6.61e-08, - "raphaelites": 6.61e-08, - "rasen": 6.61e-08, - "rashness": 6.61e-08, - "ravening": 6.61e-08, - "ravenwood": 6.61e-08, - "razia": 6.61e-08, - "rcf": 6.61e-08, - "recognisably": 6.61e-08, - "redlich": 6.61e-08, - "regu": 6.61e-08, - "regulative": 6.61e-08, - "reincorporated": 6.61e-08, - "reinsert": 6.61e-08, - "repot": 6.61e-08, - "repotting": 6.61e-08, - "representativeness": 6.61e-08, - "reproved": 6.61e-08, - "resealable": 6.61e-08, - "resh": 6.61e-08, - "retransmit": 6.61e-08, - "retrench": 6.61e-08, - "revenges": 6.61e-08, - "revilla": 6.61e-08, - "ribonuclease": 6.61e-08, - "rictus": 6.61e-08, - "riemer": 6.61e-08, - "risin": 6.61e-08, - "ritt": 6.61e-08, - "rld": 6.61e-08, - "roel": 6.61e-08, - "rollerblade": 6.61e-08, - "rops": 6.61e-08, - "roskam": 6.61e-08, - "rossoneri": 6.61e-08, - "rostow": 6.61e-08, - "rpers": 6.61e-08, - "ruane": 6.61e-08, - "rugosa": 6.61e-08, - "rundell": 6.61e-08, - "runkeeper": 6.61e-08, - "rvr": 6.61e-08, - "ryne": 6.61e-08, - "ryszard": 6.61e-08, - "sadowski": 6.61e-08, - "saina": 6.61e-08, - "sallies": 6.61e-08, - "salmans": 6.61e-08, - "samora": 6.61e-08, - "sancerre": 6.61e-08, - "sandboxes": 6.61e-08, - "sandon": 6.61e-08, - "sanremo": 6.61e-08, - "santal": 6.61e-08, - "saphenous": 6.61e-08, - "saron": 6.61e-08, - "sartain": 6.61e-08, - "savigny": 6.61e-08, - "sayan": 6.61e-08, - "sayest": 6.61e-08, - "sbarro": 6.61e-08, - "scag": 6.61e-08, - "scally": 6.61e-08, - "scaphoid": 6.61e-08, - "scarfed": 6.61e-08, - "scarps": 6.61e-08, - "scheele": 6.61e-08, - "schlepping": 6.61e-08, - "scholia": 6.61e-08, - "schumanns": 6.61e-08, - "schutt": 6.61e-08, - "scorpios": 6.61e-08, - "scribing": 6.61e-08, - "scrooges": 6.61e-08, - "sdv": 6.61e-08, - "seamy": 6.61e-08, - "seeder": 6.61e-08, - "seeth": 6.61e-08, - "segways": 6.61e-08, - "seismometer": 6.61e-08, - "seismometers": 6.61e-08, - "seit": 6.61e-08, - "sej": 6.61e-08, - "sems": 6.61e-08, - "senshi": 6.61e-08, - "seperating": 6.61e-08, - "sequiturs": 6.61e-08, - "serrata": 6.61e-08, - "serrate": 6.61e-08, - "servia": 6.61e-08, - "servicios": 6.61e-08, - "setanta": 6.61e-08, - "setts": 6.61e-08, - "shab": 6.61e-08, - "shabnam": 6.61e-08, - "shadab": 6.61e-08, - "shakurs": 6.61e-08, - "shala": 6.61e-08, - "shambala": 6.61e-08, - "shanda": 6.61e-08, - "sharpes": 6.61e-08, - "sheathe": 6.61e-08, - "sheikha": 6.61e-08, - "shiet": 6.61e-08, - "shiffrin": 6.61e-08, - "shoeboxes": 6.61e-08, - "shoemaking": 6.61e-08, - "sholl": 6.61e-08, - "shoppin": 6.61e-08, - "shuttlesworth": 6.61e-08, - "sialic": 6.61e-08, - "sibylla": 6.61e-08, - "sidley": 6.61e-08, - "siegal": 6.61e-08, - "siegler": 6.61e-08, - "sien": 6.61e-08, - "similitude": 6.61e-08, - "simonetta": 6.61e-08, - "sistem": 6.61e-08, - "sitges": 6.61e-08, - "skaneateles": 6.61e-08, - "skellington": 6.61e-08, - "skidoo": 6.61e-08, - "skoal": 6.61e-08, - "skyhawk": 6.61e-08, - "slackness": 6.61e-08, - "sleighs": 6.61e-08, - "slurries": 6.61e-08, - "smeagol": 6.61e-08, - "smita": 6.61e-08, - "smoothes": 6.61e-08, - "socking": 6.61e-08, - "sokolow": 6.61e-08, - "soldat": 6.61e-08, - "sommes": 6.61e-08, - "songbooks": 6.61e-08, - "sorcha": 6.61e-08, - "sorr": 6.61e-08, - "sout": 6.61e-08, - "spalling": 6.61e-08, - "spazzing": 6.61e-08, - "spectrometric": 6.61e-08, - "spermicide": 6.61e-08, - "spitball": 6.61e-08, - "spitefully": 6.61e-08, - "splendors": 6.61e-08, - "spruance": 6.61e-08, - "squirreled": 6.61e-08, - "stalemated": 6.61e-08, - "standen": 6.61e-08, - "stati": 6.61e-08, - "steenkamp": 6.61e-08, - "stefansson": 6.61e-08, - "steff": 6.61e-08, - "stepsons": 6.61e-08, - "stopford": 6.61e-08, - "stouffer": 6.61e-08, - "straggly": 6.61e-08, - "strategys": 6.61e-08, - "strobing": 6.61e-08, - "subcontracts": 6.61e-08, - "subscales": 6.61e-08, - "subst": 6.61e-08, - "sulfurous": 6.61e-08, - "sumire": 6.61e-08, - "superintendant": 6.61e-08, - "superiore": 6.61e-08, - "surveymonkey": 6.61e-08, - "suspensory": 6.61e-08, - "syosset": 6.61e-08, - "syrus": 6.61e-08, - "tacrolimus": 6.61e-08, - "takamatsu": 6.61e-08, - "takoradi": 6.61e-08, - "takoyaki": 6.61e-08, - "tallgrass": 6.61e-08, - "tamborine": 6.61e-08, - "tapenade": 6.61e-08, - "tarifa": 6.61e-08, - "taru": 6.61e-08, - "tatanka": 6.61e-08, - "tatin": 6.61e-08, - "tatjana": 6.61e-08, - "taxco": 6.61e-08, - "taxol": 6.61e-08, - "tdap": 6.61e-08, - "teaspoonful": 6.61e-08, - "technicolour": 6.61e-08, - "technorati": 6.61e-08, - "tecnologia": 6.61e-08, - "telmex": 6.61e-08, - "teratoma": 6.61e-08, - "terkel": 6.61e-08, - "tero": 6.61e-08, - "terp": 6.61e-08, - "testo": 6.61e-08, - "tetchy": 6.61e-08, - "tetragrammaton": 6.61e-08, - "tetraploid": 6.61e-08, - "texoma": 6.61e-08, - "thandi": 6.61e-08, - "thandie": 6.61e-08, - "theobromine": 6.61e-08, - "thinspiration": 6.61e-08, - "thit": 6.61e-08, - "thorazine": 6.61e-08, - "thoroughgoing": 6.61e-08, - "tiepolo": 6.61e-08, - "timea": 6.61e-08, - "timesheet": 6.61e-08, - "tisza": 6.61e-08, - "tldr": 6.61e-08, - "toan": 6.61e-08, - "tocantins": 6.61e-08, - "toddling": 6.61e-08, - "todmorden": 6.61e-08, - "toge": 6.61e-08, - "toity": 6.61e-08, - "toledos": 6.61e-08, - "tomaso": 6.61e-08, - "tombola": 6.61e-08, - "tonnages": 6.61e-08, - "toray": 6.61e-08, - "toretto": 6.61e-08, - "toris": 6.61e-08, - "tosin": 6.61e-08, - "toucans": 6.61e-08, - "tournai": 6.61e-08, - "tpms": 6.61e-08, - "tracings": 6.61e-08, - "traineeships": 6.61e-08, - "transited": 6.61e-08, - "transmuting": 6.61e-08, - "transwoman": 6.61e-08, - "travelocity": 6.61e-08, - "trellises": 6.61e-08, - "trews": 6.61e-08, - "treys": 5.25e-08, - "trialing": 6.61e-08, - "tribology": 6.61e-08, - "trico": 6.61e-08, - "trillanes": 6.61e-08, - "tritone": 6.61e-08, - "troma": 6.61e-08, - "truncheons": 6.61e-08, - "tullahoma": 6.61e-08, - "tumuli": 6.61e-08, - "turia": 6.61e-08, - "tuthill": 6.61e-08, - "twila": 6.61e-08, - "twofer": 6.61e-08, - "uat": 6.61e-08, - "udupi": 6.61e-08, - "uesugi": 6.61e-08, - "umana": 6.61e-08, - "unaccepted": 6.61e-08, - "unacquainted": 6.61e-08, - "uncared": 6.61e-08, - "undefiled": 6.61e-08, - "undersheriff": 6.61e-08, - "unflavored": 6.61e-08, - "unfortunatly": 6.61e-08, - "unhappiest": 6.61e-08, - "unica": 6.61e-08, - "unilateralism": 6.61e-08, - "unmeasurable": 6.61e-08, - "unpeeled": 6.61e-08, - "unproved": 6.61e-08, - "unreason": 6.61e-08, - "unseasonal": 6.61e-08, - "unserviceable": 6.61e-08, - "unset": 6.61e-08, - "untimed": 6.61e-08, - "upbraided": 6.61e-08, - "urbervilles": 6.61e-08, - "urien": 6.61e-08, - "urry": 6.61e-08, - "usaaf": 6.61e-08, - "uttara": 6.61e-08, - "uvic": 6.61e-08, - "uyuni": 6.61e-08, - "vaccum": 6.61e-08, - "vade": 6.61e-08, - "vahid": 6.61e-08, - "valspar": 6.61e-08, - "valved": 6.61e-08, - "valvoline": 6.61e-08, - "vartan": 6.61e-08, - "vattenfall": 6.61e-08, - "vaudreuil": 6.61e-08, - "vcp": 6.61e-08, - "velu": 6.61e-08, - "venegas": 6.61e-08, - "verden": 6.61e-08, - "verrett": 6.61e-08, - "vidarbha": 6.61e-08, - "viis": 6.61e-08, - "villians": 6.61e-08, - "vivaldis": 6.61e-08, - "vlr": 6.61e-08, - "voges": 6.61e-08, - "volcom": 6.61e-08, - "vonneguts": 6.61e-08, - "voya": 6.61e-08, - "vpa": 6.61e-08, - "vrbata": 6.61e-08, - "wachowski": 6.61e-08, - "wader": 6.61e-08, - "walberg": 6.61e-08, - "wallenda": 6.61e-08, - "wanneroo": 6.61e-08, - "washerwoman": 6.61e-08, - "waterspouts": 6.61e-08, - "wayfaring": 6.61e-08, - "wcm": 6.61e-08, - "webcasting": 6.61e-08, - "wedel": 6.61e-08, - "weekenders": 6.61e-08, - "weirds": 6.61e-08, - "wellss": 6.61e-08, - "westermann": 6.61e-08, - "whacko": 6.61e-08, - "whaddaya": 6.61e-08, - "whiteheads": 6.03e-08, - "wiel": 6.61e-08, - "wildernesses": 6.61e-08, - "wolfing": 6.61e-08, - "womersley": 6.61e-08, - "wondercon": 6.61e-08, - "wontons": 6.61e-08, - "woodend": 6.61e-08, - "woolford": 6.61e-08, - "worke": 6.61e-08, - "wrangel": 6.61e-08, - "writable": 6.61e-08, - "writen": 6.61e-08, - "wtd": 6.61e-08, - "wurtz": 6.61e-08, - "xdrive": 6.61e-08, - "xsl": 6.61e-08, - "xus": 6.61e-08, - "yabba": 6.61e-08, - "yakupov": 6.61e-08, - "yeatman": 6.61e-08, - "yelverton": 6.61e-08, - "yohei": 6.61e-08, - "yoshitsune": 6.61e-08, - "youcan": 6.61e-08, - "youkai": 6.61e-08, - "ytl": 6.61e-08, - "zakk": 6.61e-08, - "zarco": 6.61e-08, - "zella": 6.61e-08, - "zem": 6.61e-08, - "zipcode": 6.61e-08, - "abbaye": 6.46e-08, - "abidin": 6.46e-08, - "abie": 6.46e-08, - "abiy": 6.46e-08, - "abjuration": 6.46e-08, - "aboud": 6.46e-08, - "acci": 6.46e-08, - "accordionist": 6.46e-08, - "acdelco": 6.46e-08, - "activa": 6.46e-08, - "adis": 6.46e-08, - "adly": 6.46e-08, - "adorableness": 6.46e-08, - "adoringly": 6.46e-08, - "afshar": 6.46e-08, - "ahf": 6.46e-08, - "aihl": 6.46e-08, - "aimes": 6.46e-08, - "airbending": 6.46e-08, - "akb": 6.46e-08, - "akh": 6.46e-08, - "akpom": 6.46e-08, - "albufeira": 6.46e-08, - "alewife": 6.46e-08, - "alfre": 6.46e-08, - "alise": 6.46e-08, - "allaying": 6.46e-08, - "alloted": 6.46e-08, - "almon": 6.46e-08, - "alnus": 6.46e-08, - "alrite": 6.46e-08, - "altaic": 6.46e-08, - "alycia": 6.46e-08, - "alysia": 6.46e-08, - "amna": 6.46e-08, - "amortize": 6.46e-08, - "amran": 6.46e-08, - "amyas": 6.46e-08, - "ancho": 6.46e-08, - "anchorwoman": 6.46e-08, - "anges": 6.46e-08, - "angevin": 6.46e-08, - "anitta": 6.46e-08, - "annalen": 6.46e-08, - "annnnnd": 6.46e-08, - "anpr": 6.46e-08, - "antiparallel": 6.46e-08, - "antipasto": 6.46e-08, - "apink": 6.46e-08, - "appius": 6.46e-08, - "appledore": 6.46e-08, - "applicative": 6.46e-08, - "arachnoid": 6.46e-08, - "arenberg": 6.46e-08, - "armco": 6.46e-08, - "armytage": 6.46e-08, - "arrigo": 6.46e-08, - "assesment": 6.46e-08, - "audiologists": 6.46e-08, - "autofill": 6.46e-08, - "automatism": 6.46e-08, - "aveiro": 6.46e-08, - "avena": 6.46e-08, - "avera": 6.46e-08, - "aweful": 6.46e-08, - "axtell": 6.46e-08, - "ayanna": 6.46e-08, - "aycock": 6.46e-08, - "ays": 6.46e-08, - "azumi": 6.46e-08, - "babbit": 6.46e-08, - "badwater": 6.46e-08, - "baik": 6.46e-08, - "baila": 6.46e-08, - "baillargeon": 6.46e-08, - "baldry": 6.46e-08, - "bambini": 6.46e-08, - "barletta": 6.46e-08, - "barta": 6.46e-08, - "bartman": 6.46e-08, - "bashirs": 6.46e-08, - "batumi": 6.46e-08, - "baxendale": 6.46e-08, - "bayi": 6.46e-08, - "bdu": 6.46e-08, - "beamforming": 6.46e-08, - "beardmore": 6.46e-08, - "beato": 6.46e-08, - "bebb": 6.46e-08, - "beerbohm": 6.46e-08, - "behaviourist": 6.46e-08, - "behm": 6.46e-08, - "belka": 6.46e-08, - "benintendi": 6.46e-08, - "bercy": 6.46e-08, - "berryhill": 6.46e-08, - "berthoud": 6.46e-08, - "bessette": 6.46e-08, - "beton": 6.46e-08, - "bgb": 6.46e-08, - "bhavnagar": 6.46e-08, - "bhe": 6.46e-08, - "bhf": 6.46e-08, - "bigby": 6.46e-08, - "bikeshare": 6.46e-08, - "biltong": 6.46e-08, - "biologie": 6.46e-08, - "biondi": 6.46e-08, - "biopsied": 6.46e-08, - "biotics": 6.46e-08, - "birdhouses": 6.46e-08, - "bischof": 6.46e-08, - "bistable": 6.46e-08, - "bitton": 6.46e-08, - "bizzle": 6.46e-08, - "bjt": 6.46e-08, - "blackwells": 6.46e-08, - "bladerunner": 6.46e-08, - "blainville": 6.46e-08, - "blasi": 6.46e-08, - "bloodsucker": 6.46e-08, - "bluenose": 6.46e-08, - "bluestacks": 6.46e-08, - "blv": 6.46e-08, - "bnn": 6.46e-08, - "bogen": 6.46e-08, - "bombproof": 6.46e-08, - "bonamassa": 6.46e-08, - "bondsmen": 6.46e-08, - "bonnier": 6.46e-08, - "boonton": 6.46e-08, - "bootlicker": 6.46e-08, - "borderlines": 6.46e-08, - "borodino": 6.46e-08, - "botetourt": 6.46e-08, - "bouygues": 6.46e-08, - "braxtons": 6.46e-08, - "brel": 6.46e-08, - "brockley": 6.46e-08, - "broncho": 6.46e-08, - "brookie": 6.46e-08, - "buchner": 6.46e-08, - "builded": 6.46e-08, - "bumstead": 6.46e-08, - "bundelkhand": 6.46e-08, - "buro": 6.46e-08, - "buyeo": 6.46e-08, - "byre": 6.46e-08, - "byres": 6.46e-08, - "caba": 6.46e-08, - "cabinda": 6.46e-08, - "cacciatore": 6.46e-08, - "cafta": 6.46e-08, - "cairncross": 6.46e-08, - "caitriona": 6.46e-08, - "cankles": 6.46e-08, - "canva": 6.46e-08, - "caracol": 6.46e-08, - "careering": 6.46e-08, - "carlyon": 6.46e-08, - "carolan": 6.46e-08, - "carthy": 6.46e-08, - "carvey": 6.46e-08, - "casemate": 6.46e-08, - "cashout": 6.46e-08, - "casteel": 6.46e-08, - "castmates": 6.46e-08, - "cataldo": 6.46e-08, - "catechists": 6.46e-08, - "cathrine": 6.46e-08, - "cattails": 6.46e-08, - "cavuto": 6.46e-08, - "cccc": 6.46e-08, - "ceasefires": 6.46e-08, - "cecum": 6.46e-08, - "celebre": 6.46e-08, - "cenomanian": 6.46e-08, - "chalkboards": 6.46e-08, - "chall": 6.46e-08, - "chamfer": 6.46e-08, - "champollion": 6.46e-08, - "chango": 6.46e-08, - "charlottenburg": 6.46e-08, - "cheesemakers": 6.46e-08, - "chella": 6.46e-08, - "chems": 6.46e-08, - "chessie": 6.46e-08, - "chirk": 6.46e-08, - "chocking": 6.46e-08, - "chome": 6.46e-08, - "chorea": 6.46e-08, - "choti": 6.46e-08, - "chown": 6.46e-08, - "chronica": 6.46e-08, - "cida": 6.46e-08, - "cierra": 6.46e-08, - "ciliate": 6.46e-08, - "ciso": 6.46e-08, - "civilising": 6.46e-08, - "clubb": 6.46e-08, - "coalmine": 6.46e-08, - "cogsworth": 6.46e-08, - "coie": 6.46e-08, - "cokehead": 6.46e-08, - "colombiana": 6.46e-08, - "comecon": 6.46e-08, - "commingling": 6.46e-08, - "comminution": 6.46e-08, - "compensable": 6.46e-08, - "concentrically": 6.46e-08, - "confed": 6.46e-08, - "conjunctival": 6.46e-08, - "constanta": 6.46e-08, - "constructionist": 6.46e-08, - "contraventions": 6.46e-08, - "cony": 6.46e-08, - "copypasta": 6.46e-08, - "coracoid": 6.46e-08, - "corbel": 6.46e-08, - "cordials": 6.46e-08, - "cordyceps": 6.46e-08, - "corinthia": 6.46e-08, - "corkscrews": 6.46e-08, - "corm": 6.46e-08, - "coron": 6.46e-08, - "corticosterone": 6.46e-08, - "cosigner": 6.46e-08, - "couchsurfing": 6.46e-08, - "counterarguments": 6.46e-08, - "counterattacked": 6.46e-08, - "counterattacking": 6.46e-08, - "courtin": 6.46e-08, - "cowers": 6.46e-08, - "crankshafts": 6.46e-08, - "crimps": 6.46e-08, - "cringiest": 6.46e-08, - "cristiana": 6.46e-08, - "crites": 6.46e-08, - "crits": 6.46e-08, - "croons": 6.46e-08, - "crumples": 6.46e-08, - "crunchers": 6.46e-08, - "csec": 6.46e-08, - "csps": 6.46e-08, - "cubesat": 6.46e-08, - "cudworth": 6.46e-08, - "culturalism": 6.46e-08, - "custome": 6.46e-08, - "cynwyd": 6.46e-08, - "dahlonega": 6.46e-08, - "daksha": 6.46e-08, - "dalman": 6.46e-08, - "dareus": 6.46e-08, - "davenant": 6.46e-08, - "dayak": 6.46e-08, - "dazn": 6.46e-08, - "debility": 6.46e-08, - "deciders": 6.46e-08, - "decisis": 6.46e-08, - "deepavali": 6.46e-08, - "defoliation": 6.46e-08, - "dehumanizes": 6.46e-08, - "dekha": 6.46e-08, - "deleveraging": 6.46e-08, - "delo": 6.46e-08, - "demarre": 6.46e-08, - "dendy": 6.46e-08, - "dennie": 6.46e-08, - "depositories": 6.46e-08, - "depredation": 6.46e-08, - "derelicts": 6.46e-08, - "desensitizing": 6.46e-08, - "desiigner": 6.46e-08, - "dessin": 6.46e-08, - "destefano": 6.46e-08, - "detrimentally": 6.46e-08, - "dhingra": 6.46e-08, - "diacritical": 6.46e-08, - "diamagnetic": 6.46e-08, - "dianthus": 6.46e-08, - "didonato": 6.46e-08, - "differnt": 6.46e-08, - "diffracted": 6.46e-08, - "digestives": 6.46e-08, - "dihydrotestosterone": 6.46e-08, - "dimeric": 6.46e-08, - "dipak": 6.46e-08, - "direwolf": 6.46e-08, - "disko": 6.46e-08, - "disrobed": 6.46e-08, - "dissimulation": 6.46e-08, - "distrito": 6.46e-08, - "ditsy": 6.46e-08, - "diverter": 6.46e-08, - "divined": 6.46e-08, - "doddridge": 6.46e-08, - "dogleg": 6.46e-08, - "donga": 6.46e-08, - "dores": 6.46e-08, - "dorey": 6.46e-08, - "dorseys": 6.46e-08, - "dressier": 6.46e-08, - "drivetime": 6.46e-08, - "duathlon": 6.46e-08, - "dubia": 6.46e-08, - "duntroon": 6.46e-08, - "dusen": 6.46e-08, - "duy": 6.46e-08, - "dwan": 6.46e-08, - "dwivedi": 6.46e-08, - "earthporn": 6.46e-08, - "eastwest": 6.46e-08, - "ebike": 6.46e-08, - "ecclesiastics": 6.46e-08, - "echostar": 6.46e-08, - "editorializing": 6.46e-08, - "edythe": 6.46e-08, - "eecs": 6.46e-08, - "efd": 6.46e-08, - "efflorescence": 6.46e-08, - "eglantine": 6.46e-08, - "eileens": 6.46e-08, - "elida": 6.46e-08, - "eliquid": 6.46e-08, - "emanu": 6.46e-08, - "empereur": 6.46e-08, - "empson": 6.46e-08, - "empting": 6.46e-08, - "endl": 6.46e-08, - "endosomes": 6.46e-08, - "enigmatically": 6.46e-08, - "enteritis": 6.46e-08, - "epn": 6.46e-08, - "ergon": 6.46e-08, - "erikas": 6.46e-08, - "erst": 6.46e-08, - "eskdale": 6.46e-08, - "euratom": 6.46e-08, - "evaporators": 6.46e-08, - "evaristo": 6.46e-08, - "everone": 6.46e-08, - "exner": 6.46e-08, - "explorative": 6.46e-08, - "expunging": 6.46e-08, - "eyring": 6.46e-08, - "eysenck": 6.46e-08, - "facultys": 6.46e-08, - "fagus": 6.46e-08, - "fals": 6.46e-08, - "fantastique": 6.46e-08, - "fante": 6.46e-08, - "farnworth": 6.46e-08, - "fase": 6.46e-08, - "fauzi": 6.46e-08, - "favorita": 6.46e-08, - "fawr": 6.46e-08, - "fayose": 6.46e-08, - "fcl": 6.46e-08, - "februar": 6.46e-08, - "ferals": 6.46e-08, - "ferentz": 6.46e-08, - "fertitta": 6.46e-08, - "fischbach": 6.46e-08, - "fishpond": 6.46e-08, - "fitchs": 6.46e-08, - "floodway": 6.46e-08, - "floozy": 6.46e-08, - "floury": 6.46e-08, - "flubs": 6.46e-08, - "flumes": 6.46e-08, - "fluorocarbon": 6.46e-08, - "flyable": 6.46e-08, - "foco": 6.46e-08, - "folkes": 6.46e-08, - "footjob": 6.46e-08, - "forcefulness": 6.46e-08, - "formosan": 6.46e-08, - "forthrightly": 6.46e-08, - "franche": 6.46e-08, - "freelanced": 6.46e-08, - "freethought": 6.46e-08, - "ftg": 6.46e-08, - "fttp": 6.46e-08, - "fued": 6.46e-08, - "fullerenes": 6.46e-08, - "fulls": 6.46e-08, - "fulminate": 6.46e-08, - "fuoco": 6.46e-08, - "furnas": 6.46e-08, - "fxcm": 6.46e-08, - "gadi": 6.46e-08, - "gaitan": 6.46e-08, - "galoshes": 6.46e-08, - "gambrel": 6.46e-08, - "gammell": 6.46e-08, - "ganondorf": 6.46e-08, - "gargamel": 6.46e-08, - "gaudium": 6.46e-08, - "gautham": 6.46e-08, - "gawa": 6.46e-08, - "gebhard": 6.46e-08, - "gemayel": 6.46e-08, - "genderfluid": 6.46e-08, - "genn": 6.46e-08, - "georgiev": 6.46e-08, - "germinates": 6.46e-08, - "gerstner": 6.46e-08, - "gettleman": 6.46e-08, - "geva": 6.46e-08, - "giblin": 6.46e-08, - "girding": 6.46e-08, - "glamorize": 6.46e-08, - "glancy": 6.46e-08, - "glenmorangie": 6.46e-08, - "glitterati": 6.46e-08, - "goatherd": 6.46e-08, - "godchild": 6.46e-08, - "goldies": 6.46e-08, - "googie": 6.46e-08, - "goong": 6.46e-08, - "gooo": 6.46e-08, - "gooooo": 6.46e-08, - "gorgons": 6.46e-08, - "gorrie": 6.46e-08, - "goteborg": 6.46e-08, - "gottwald": 6.46e-08, - "goughs": 6.46e-08, - "gourmets": 6.46e-08, - "gowans": 6.46e-08, - "gpio": 6.46e-08, - "granodiorite": 6.46e-08, - "greenwoods": 6.46e-08, - "gromyko": 6.46e-08, - "growed": 6.46e-08, - "gsf": 6.46e-08, - "guardado": 6.46e-08, - "guestroom": 6.46e-08, - "guidi": 6.46e-08, - "guineans": 6.46e-08, - "guiyang": 6.46e-08, - "gundry": 6.46e-08, - "gunilla": 6.46e-08, - "gunton": 6.46e-08, - "guster": 6.46e-08, - "guzzlers": 6.46e-08, - "gwi": 6.46e-08, - "gyatso": 6.46e-08, - "gyratory": 6.46e-08, - "haffner": 6.46e-08, - "hakam": 6.46e-08, - "hammons": 6.46e-08, - "hanau": 6.46e-08, - "hankin": 6.46e-08, - "hantavirus": 6.46e-08, - "hardcourt": 6.46e-08, - "harriette": 6.46e-08, - "harrower": 6.46e-08, - "hartmut": 6.46e-08, - "hartzell": 6.46e-08, - "hayford": 6.46e-08, - "heatmap": 6.46e-08, - "heider": 6.46e-08, - "heliosphere": 6.46e-08, - "helles": 6.46e-08, - "hennigan": 6.46e-08, - "herbed": 6.46e-08, - "herford": 6.46e-08, - "herzliya": 6.46e-08, - "hese": 6.46e-08, - "heureux": 6.46e-08, - "hewing": 6.46e-08, - "hhr": 6.46e-08, - "hillaryclinton": 6.46e-08, - "himss": 6.46e-08, - "hindle": 6.46e-08, - "hiroaki": 6.46e-08, - "hirschberg": 6.46e-08, - "hitbox": 6.46e-08, - "hlb": 6.46e-08, - "hmr": 6.46e-08, - "hoisin": 6.46e-08, - "holcroft": 6.46e-08, - "holdups": 6.46e-08, - "holic": 6.46e-08, - "hookworms": 6.46e-08, - "horman": 6.46e-08, - "horrigan": 6.46e-08, - "horwich": 6.46e-08, - "hospitallers": 6.46e-08, - "hossam": 6.46e-08, - "hotseat": 6.46e-08, - "howies": 6.46e-08, - "hoyts": 6.46e-08, - "hpg": 6.46e-08, - "hris": 6.46e-08, - "hsueh": 6.46e-08, - "htlv": 6.46e-08, - "hulot": 6.46e-08, - "hulus": 6.46e-08, - "humpy": 6.46e-08, - "hvt": 6.46e-08, - "hyon": 6.46e-08, - "hypercalcemia": 6.46e-08, - "hypotonia": 6.46e-08, - "ichthyosis": 6.46e-08, - "icis": 6.46e-08, - "ihsan": 6.46e-08, - "immokalee": 6.46e-08, - "improvises": 6.46e-08, - "inactions": 6.46e-08, - "inazuma": 6.46e-08, - "incels": 6.46e-08, - "incentivizes": 6.46e-08, - "indissoluble": 6.46e-08, - "inerrant": 6.46e-08, - "inhumanely": 6.46e-08, - "inners": 6.46e-08, - "innovates": 6.46e-08, - "inquisitiveness": 6.46e-08, - "inra": 6.46e-08, - "inseminate": 6.46e-08, - "integument": 6.46e-08, - "intemperance": 6.46e-08, - "interceding": 6.46e-08, - "interconnector": 6.46e-08, - "interferons": 6.46e-08, - "interrupters": 6.46e-08, - "intima": 6.46e-08, - "intramuscularly": 6.46e-08, - "inverdale": 6.46e-08, - "investi": 6.46e-08, - "involute": 6.46e-08, - "ionesco": 6.46e-08, - "ippolito": 6.46e-08, - "iredale": 6.46e-08, - "irizarry": 6.46e-08, - "irss": 6.46e-08, - "isabeau": 6.46e-08, - "islamophobe": 6.46e-08, - "issachar": 6.46e-08, - "itamar": 6.46e-08, - "ivb": 6.46e-08, - "jabar": 6.46e-08, - "jacobsons": 6.46e-08, - "jadzia": 6.46e-08, - "jakobson": 6.46e-08, - "jalaluddin": 6.46e-08, - "jannat": 6.46e-08, - "jassi": 6.46e-08, - "jaswant": 6.46e-08, - "jaunpur": 6.46e-08, - "jei": 6.46e-08, - "jemaah": 6.46e-08, - "jencks": 6.46e-08, - "jigen": 6.46e-08, - "jihyo": 6.46e-08, - "jism": 6.46e-08, - "jnana": 6.46e-08, - "jonatan": 6.46e-08, - "jonna": 6.46e-08, - "joram": 6.46e-08, - "jorges": 6.46e-08, - "joyriding": 6.46e-08, - "jtag": 6.46e-08, - "juntos": 6.46e-08, - "kada": 6.46e-08, - "kado": 6.46e-08, - "kaelin": 6.46e-08, - "kahit": 6.46e-08, - "kalinda": 6.46e-08, - "kalmbach": 6.46e-08, - "kanchipuram": 6.46e-08, - "karazhan": 6.46e-08, - "karlovy": 6.46e-08, - "karrie": 6.46e-08, - "katipunan": 6.46e-08, - "kawano": 6.46e-08, - "kebede": 6.46e-08, - "kemet": 6.46e-08, - "kerin": 6.46e-08, - "kerrey": 6.46e-08, - "ketan": 6.46e-08, - "keyboarding": 6.46e-08, - "khader": 6.46e-08, - "khobar": 6.46e-08, - "kilwinning": 6.46e-08, - "kimberlys": 6.46e-08, - "kindertransport": 6.46e-08, - "kisii": 6.46e-08, - "klk": 6.46e-08, - "kloof": 6.46e-08, - "kluwe": 6.46e-08, - "kneeing": 6.46e-08, - "kohima": 6.46e-08, - "kohlschreiber": 6.46e-08, - "kollam": 6.46e-08, - "kontrol": 6.46e-08, - "kriegsmarine": 6.46e-08, - "krog": 6.46e-08, - "krypto": 6.46e-08, - "krysten": 6.46e-08, - "kubik": 6.46e-08, - "kufa": 6.46e-08, - "kunda": 6.46e-08, - "kurian": 6.46e-08, - "kurosawas": 6.46e-08, - "kwanza": 6.46e-08, - "kyne": 6.46e-08, - "laburnum": 6.46e-08, - "lachie": 6.46e-08, - "lakey": 6.46e-08, - "lamborn": 6.46e-08, - "laminae": 6.46e-08, - "landgrave": 6.46e-08, - "landseer": 6.46e-08, - "langen": 6.46e-08, - "langues": 6.46e-08, - "lapdogs": 6.46e-08, - "larking": 6.46e-08, - "larter": 6.46e-08, - "larus": 6.46e-08, - "larvitar": 6.46e-08, - "lassalle": 6.46e-08, - "lauter": 6.46e-08, - "lcf": 6.46e-08, - "lcn": 6.46e-08, - "leaseholder": 6.46e-08, - "lefort": 6.46e-08, - "legations": 6.46e-08, - "lerners": 6.46e-08, - "leuchars": 6.46e-08, - "lewton": 6.46e-08, - "liberum": 6.46e-08, - "lifesciences": 6.46e-08, - "liouville": 6.46e-08, - "listeriosis": 6.46e-08, - "literates": 6.46e-08, - "livens": 6.46e-08, - "liveright": 6.46e-08, - "lli": 6.46e-08, - "lofi": 6.46e-08, - "longlegs": 6.46e-08, - "longwall": 6.46e-08, - "lorenza": 6.46e-08, - "lors": 6.46e-08, - "lort": 6.46e-08, - "lovingkindness": 6.46e-08, - "lsn": 6.46e-08, - "ltf": 6.46e-08, - "lucchese": 6.46e-08, - "lucchesi": 6.46e-08, - "luckman": 6.46e-08, - "luer": 6.46e-08, - "mabo": 6.46e-08, - "mabon": 6.46e-08, - "maccarthy": 6.46e-08, - "macdermott": 6.46e-08, - "macfarlanes": 6.46e-08, - "mainstem": 6.46e-08, - "makarios": 6.46e-08, - "mallows": 6.46e-08, - "mandeep": 6.46e-08, - "manderson": 6.46e-08, - "mandira": 6.46e-08, - "manichaean": 6.46e-08, - "manics": 6.46e-08, - "manigault": 6.46e-08, - "mannan": 6.46e-08, - "manrique": 6.46e-08, - "manziels": 6.46e-08, - "mapmakers": 6.46e-08, - "marcano": 6.46e-08, - "marinetti": 6.46e-08, - "marketeer": 6.46e-08, - "marot": 6.46e-08, - "marss": 6.46e-08, - "martos": 6.46e-08, - "masahiko": 6.46e-08, - "masdar": 6.46e-08, - "matabeleland": 6.46e-08, - "matsudaira": 6.46e-08, - "mattock": 6.46e-08, - "mauk": 6.46e-08, - "mbatha": 6.46e-08, - "mcclory": 6.46e-08, - "mceachern": 6.46e-08, - "mcentee": 6.46e-08, - "mckinnons": 6.46e-08, - "mcnugget": 6.46e-08, - "meador": 6.46e-08, - "mechelen": 6.46e-08, - "medinah": 6.46e-08, - "melhor": 6.46e-08, - "memed": 6.46e-08, - "menem": 6.46e-08, - "meningioma": 6.46e-08, - "mephedrone": 6.46e-08, - "merapi": 6.46e-08, - "meridien": 6.46e-08, - "metabolomics": 6.46e-08, - "metacognitive": 6.46e-08, - "mgtow": 6.46e-08, - "michalak": 6.46e-08, - "michalek": 6.46e-08, - "micheline": 6.46e-08, - "micrograph": 6.46e-08, - "midhurst": 6.46e-08, - "midol": 6.46e-08, - "midsummers": 6.46e-08, - "miel": 6.46e-08, - "milb": 6.46e-08, - "milers": 6.46e-08, - "militarisation": 6.46e-08, - "milkha": 6.46e-08, - "minbar": 6.46e-08, - "mindstorms": 6.46e-08, - "minigun": 6.46e-08, - "minu": 6.46e-08, - "mirsky": 6.46e-08, - "miscible": 6.46e-08, - "mitanni": 6.46e-08, - "mmkay": 6.46e-08, - "modu": 6.46e-08, - "monie": 6.46e-08, - "monosaccharides": 6.46e-08, - "montalban": 6.46e-08, - "montepulciano": 6.46e-08, - "moony": 6.46e-08, - "moosehead": 6.46e-08, - "morella": 6.46e-08, - "morr": 6.46e-08, - "morrows": 6.46e-08, - "mortify": 6.46e-08, - "mortimers": 6.46e-08, - "morts": 6.46e-08, - "mouret": 6.46e-08, - "moviefone": 6.46e-08, - "msha": 6.46e-08, - "mujib": 6.46e-08, - "mukasey": 6.46e-08, - "mulhern": 6.46e-08, - "murphey": 6.46e-08, - "musc": 6.46e-08, - "mushed": 6.46e-08, - "mussed": 6.46e-08, - "musto": 6.46e-08, - "mwai": 6.46e-08, - "myla": 6.46e-08, - "mystifies": 6.46e-08, - "mythologized": 6.46e-08, - "naaman": 6.46e-08, - "nadar": 6.46e-08, - "nadie": 6.46e-08, - "nakasone": 6.46e-08, - "nambla": 6.46e-08, - "namek": 6.46e-08, - "ndm": 6.46e-08, - "neapolis": 6.46e-08, - "neckar": 6.46e-08, - "neeta": 6.46e-08, - "negron": 6.46e-08, - "neoconservatism": 6.46e-08, - "nephrite": 6.46e-08, - "nephrologist": 6.46e-08, - "neugebauer": 6.46e-08, - "neutra": 6.46e-08, - "neveu": 6.46e-08, - "newsmaker": 6.46e-08, - "nicci": 6.46e-08, - "nidus": 6.46e-08, - "niggardly": 6.46e-08, - "nikolayevich": 6.46e-08, - "nikons": 6.46e-08, - "nirbhaya": 6.46e-08, - "njoy": 6.46e-08, - "nkomo": 6.46e-08, - "nlra": 6.46e-08, - "nobuyuki": 6.46e-08, - "noct": 6.46e-08, - "nokomis": 6.46e-08, - "nonacademic": 6.46e-08, - "nonlocal": 6.46e-08, - "nonpolitical": 6.46e-08, - "nowicki": 6.46e-08, - "nozawa": 6.46e-08, - "nugents": 6.46e-08, - "nuo": 6.46e-08, - "oakbrook": 6.46e-08, - "obeah": 6.46e-08, - "obliquity": 6.46e-08, - "oceangoing": 6.46e-08, - "ocf": 6.46e-08, - "oecs": 6.46e-08, - "ogl": 6.46e-08, - "ohashi": 6.46e-08, - "okehampton": 6.46e-08, - "okinawans": 6.46e-08, - "olafs": 6.46e-08, - "olbia": 6.46e-08, - "olea": 6.46e-08, - "oliviers": 6.46e-08, - "olongapo": 6.46e-08, - "olvera": 6.46e-08, - "omics": 6.46e-08, - "onkyo": 6.46e-08, - "oohhh": 6.46e-08, - "oooooooh": 6.46e-08, - "opelousas": 6.46e-08, - "ophiolite": 6.46e-08, - "ophthalmological": 6.46e-08, - "orlova": 6.46e-08, - "oscorp": 6.46e-08, - "outof": 6.46e-08, - "outplacement": 6.46e-08, - "ovata": 6.46e-08, - "overcharges": 6.46e-08, - "overindulge": 6.46e-08, - "overwrites": 6.46e-08, - "ovie": 6.46e-08, - "ower": 6.46e-08, - "oxblood": 6.46e-08, - "packards": 6.46e-08, - "paderewski": 6.46e-08, - "palance": 6.46e-08, - "palencia": 6.46e-08, - "pamby": 6.46e-08, - "pantages": 6.46e-08, - "paralyses": 6.46e-08, - "paraprofessional": 6.46e-08, - "parroted": 6.46e-08, - "pasqua": 6.46e-08, - "pastebin": 6.46e-08, - "pasteurised": 6.46e-08, - "pathfinding": 6.46e-08, - "patridge": 6.46e-08, - "pbf": 6.46e-08, - "pbn": 6.46e-08, - "peko": 6.46e-08, - "penpal": 6.46e-08, - "pepsin": 6.46e-08, - "perpendiculars": 6.46e-08, - "perrone": 6.46e-08, - "persecutes": 6.46e-08, - "peseta": 6.46e-08, - "pestalozzi": 6.46e-08, - "petkov": 6.46e-08, - "petropavlovsk": 6.46e-08, - "petrosian": 6.46e-08, - "petterson": 6.46e-08, - "phenotypically": 6.46e-08, - "phonesex": 6.46e-08, - "photic": 6.46e-08, - "phyto": 6.46e-08, - "phytosanitary": 6.46e-08, - "pieds": 6.46e-08, - "pietsch": 6.46e-08, - "pigot": 6.46e-08, - "pilaster": 6.46e-08, - "pimms": 6.46e-08, - "pinault": 6.46e-08, - "pinkertons": 6.46e-08, - "pipelining": 6.46e-08, - "piteous": 6.46e-08, - "plekhanov": 6.46e-08, - "poblano": 6.46e-08, - "poche": 6.46e-08, - "poki": 6.46e-08, - "polizzi": 6.46e-08, - "pomace": 6.46e-08, - "ponts": 6.46e-08, - "poonch": 6.46e-08, - "populates": 6.46e-08, - "potsdamer": 6.46e-08, - "powdering": 6.46e-08, - "poweredge": 6.46e-08, - "prakashan": 6.46e-08, - "prakrit": 6.46e-08, - "precognitive": 6.46e-08, - "presbyters": 6.46e-08, - "pria": 6.46e-08, - "priyas": 6.46e-08, - "probationer": 6.46e-08, - "procurer": 6.46e-08, - "proffitt": 6.46e-08, - "propecia": 6.46e-08, - "propria": 6.46e-08, - "prototyped": 6.46e-08, - "puissant": 6.46e-08, - "pulsate": 6.46e-08, - "pulsatile": 6.46e-08, - "pwllheli": 6.46e-08, - "pyrus": 6.46e-08, - "qiagen": 6.46e-08, - "qianlong": 6.46e-08, - "qmjhl": 6.46e-08, - "quangos": 6.46e-08, - "quantrill": 6.46e-08, - "questi": 6.46e-08, - "raceday": 6.46e-08, - "rahma": 6.46e-08, - "railton": 6.46e-08, - "rambla": 6.46e-08, - "ramji": 6.46e-08, - "randhir": 6.46e-08, - "rangelands": 6.46e-08, - "rantoul": 6.46e-08, - "rasps": 6.46e-08, - "rationals": 6.46e-08, - "rawnsley": 6.46e-08, - "raynham": 6.46e-08, - "razzie": 6.46e-08, - "rebase": 6.46e-08, - "recompile": 6.46e-08, - "recordist": 6.46e-08, - "redbacks": 6.46e-08, - "redbreast": 6.46e-08, - "rededication": 6.46e-08, - "reflexion": 6.46e-08, - "regarde": 6.46e-08, - "regresses": 6.46e-08, - "regularize": 6.46e-08, - "regum": 6.46e-08, - "rehovot": 6.46e-08, - "reiche": 6.46e-08, - "reimers": 6.46e-08, - "remnick": 6.46e-08, - "remonstrance": 6.46e-08, - "remonstrate": 6.46e-08, - "renai": 6.46e-08, - "rendall": 6.46e-08, - "renge": 6.46e-08, - "renick": 6.46e-08, - "renuka": 6.46e-08, - "reoffend": 6.46e-08, - "reppin": 6.46e-08, - "reprobates": 6.46e-08, - "reredos": 6.46e-08, - "rescript": 6.46e-08, - "reshapes": 6.46e-08, - "restaurante": 6.46e-08, - "retief": 6.46e-08, - "rewording": 6.46e-08, - "rhodia": 6.46e-08, - "rhyne": 6.46e-08, - "ribe": 6.46e-08, - "ribot": 6.46e-08, - "richemont": 6.46e-08, - "riddling": 6.46e-08, - "ridgeview": 6.46e-08, - "rieder": 6.46e-08, - "riksdag": 6.46e-08, - "rish": 6.46e-08, - "riso": 6.46e-08, - "rizz": 6.46e-08, - "robsons": 6.46e-08, - "rochon": 6.46e-08, - "rohani": 6.46e-08, - "ronk": 6.46e-08, - "rorke": 6.46e-08, - "rosaura": 6.46e-08, - "rosenberger": 6.46e-08, - "rosenheim": 6.46e-08, - "rossby": 6.46e-08, - "rotatably": 6.46e-08, - "rovaniemi": 6.46e-08, - "rowlandson": 6.46e-08, - "roxburghe": 6.46e-08, - "ruffner": 6.46e-08, - "rummenigge": 6.46e-08, - "russiagate": 6.46e-08, - "ruyter": 6.46e-08, - "rvn": 6.46e-08, - "saale": 6.46e-08, - "sacd": 6.46e-08, - "saclay": 6.46e-08, - "sagara": 6.46e-08, - "sakhi": 6.46e-08, - "salvy": 6.46e-08, - "samizdat": 6.46e-08, - "sandblasted": 6.46e-08, - "sandridge": 6.46e-08, - "sandstrom": 6.46e-08, - "sangyo": 6.46e-08, - "saponins": 6.46e-08, - "saros": 6.46e-08, - "sarsfield": 6.46e-08, - "saviano": 6.46e-08, - "savoia": 6.46e-08, - "scandalised": 6.46e-08, - "scap": 6.46e-08, - "schenley": 6.46e-08, - "schlager": 6.46e-08, - "schleiermacher": 6.46e-08, - "schlick": 6.46e-08, - "scotias": 6.46e-08, - "scottsbluff": 6.46e-08, - "scottsville": 6.46e-08, - "scribblings": 6.46e-08, - "sealife": 6.46e-08, - "seamans": 6.46e-08, - "seamens": 6.46e-08, - "seaquest": 6.46e-08, - "seawalls": 6.46e-08, - "sebago": 6.46e-08, - "sedimentology": 6.46e-08, - "segar": 6.46e-08, - "seiki": 6.46e-08, - "seitan": 6.46e-08, - "sejanus": 6.46e-08, - "sektor": 6.46e-08, - "selle": 6.46e-08, - "sempai": 6.46e-08, - "senatus": 6.46e-08, - "senter": 6.46e-08, - "sentimentalist": 6.46e-08, - "senussi": 6.46e-08, - "sepal": 6.46e-08, - "serifs": 6.46e-08, - "serjeants": 6.46e-08, - "seus": 6.46e-08, - "sexts": 6.46e-08, - "seydoux": 6.46e-08, - "shackling": 6.46e-08, - "shahr": 6.46e-08, - "shamokin": 6.46e-08, - "shantanu": 6.46e-08, - "sharna": 6.46e-08, - "shavuot": 6.46e-08, - "shekinah": 6.46e-08, - "shenk": 6.46e-08, - "shepperd": 6.46e-08, - "sherilyn": 6.46e-08, - "shey": 6.46e-08, - "shinbone": 6.46e-08, - "shiniest": 6.46e-08, - "shoalhaven": 6.46e-08, - "shortchange": 6.46e-08, - "shortstops": 6.46e-08, - "shovelled": 6.46e-08, - "shuld": 6.46e-08, - "sickert": 6.46e-08, - "sienese": 6.46e-08, - "silene": 6.46e-08, - "silverchair": 6.46e-08, - "simonides": 6.46e-08, - "sitt": 6.46e-08, - "skullduggery": 6.46e-08, - "skyhook": 6.46e-08, - "skyla": 6.46e-08, - "skyy": 6.46e-08, - "slackening": 6.46e-08, - "slaveowners": 6.46e-08, - "slickly": 6.46e-08, - "slickness": 6.46e-08, - "slinks": 6.46e-08, - "slopping": 6.46e-08, - "slovenians": 6.46e-08, - "sluicing": 6.46e-08, - "slx": 6.46e-08, - "smathers": 6.46e-08, - "smucker": 6.46e-08, - "sneakin": 6.46e-08, - "sneek": 6.46e-08, - "sniffy": 6.46e-08, - "soberano": 6.46e-08, - "softballs": 6.46e-08, - "sonn": 6.46e-08, - "specialisations": 6.46e-08, - "speciosa": 6.46e-08, - "sperber": 6.46e-08, - "sphenoid": 6.46e-08, - "spiritu": 6.46e-08, - "ssangyong": 6.46e-08, - "ssj": 6.46e-08, - "stachel": 6.46e-08, - "stalactite": 6.46e-08, - "stalybridge": 6.46e-08, - "standbys": 6.46e-08, - "standford": 6.46e-08, - "staphylococcal": 6.46e-08, - "starbursts": 6.46e-08, - "steamrolling": 6.46e-08, - "stidham": 6.46e-08, - "stockland": 6.46e-08, - "stocktons": 6.46e-08, - "stoical": 6.46e-08, - "stollen": 6.46e-08, - "straightjacket": 6.46e-08, - "sturrock": 6.46e-08, - "sublette": 6.46e-08, - "suff": 6.46e-08, - "sumbitch": 6.46e-08, - "sunan": 6.46e-08, - "suno": 6.46e-08, - "supercoach": 6.46e-08, - "supercool": 6.46e-08, - "supersaturated": 6.46e-08, - "swabia": 6.46e-08, - "swanee": 6.46e-08, - "sye": 6.46e-08, - "sytem": 6.46e-08, - "tabletops": 6.46e-08, - "tander": 6.46e-08, - "tanev": 6.46e-08, - "tanveer": 6.46e-08, - "targaryens": 6.46e-08, - "tastemaker": 6.46e-08, - "tattler": 6.46e-08, - "tawi": 6.46e-08, - "taxonomists": 6.46e-08, - "tcn": 6.46e-08, - "teached": 6.46e-08, - "teemo": 6.46e-08, - "tego": 6.46e-08, - "televisual": 6.46e-08, - "telson": 6.46e-08, - "teman": 6.46e-08, - "tengri": 6.46e-08, - "terek": 6.46e-08, - "terezin": 6.46e-08, - "terfs": 6.46e-08, - "tessas": 6.46e-08, - "tetbury": 6.46e-08, - "thata": 6.46e-08, - "thesame": 6.46e-08, - "thijs": 6.46e-08, - "thumpers": 6.46e-08, - "thylacine": 6.46e-08, - "tikes": 6.46e-08, - "tilbrook": 6.46e-08, - "timess": 6.46e-08, - "timmer": 6.46e-08, - "timorous": 6.46e-08, - "tirmidhi": 6.46e-08, - "tlf": 6.46e-08, - "toccoa": 6.46e-08, - "todman": 6.46e-08, - "toffoli": 6.46e-08, - "toget": 6.46e-08, - "tolleson": 6.46e-08, - "toral": 6.46e-08, - "totodile": 6.46e-08, - "touchable": 6.46e-08, - "towles": 6.46e-08, - "toxicants": 6.46e-08, - "toyland": 6.46e-08, - "tradies": 6.46e-08, - "traugott": 6.46e-08, - "triangulating": 6.46e-08, - "tridentine": 6.46e-08, - "trovatore": 6.46e-08, - "trumpington": 6.46e-08, - "trunkline": 6.46e-08, - "truvada": 6.46e-08, - "tullio": 6.46e-08, - "turnitin": 6.46e-08, - "turo": 6.46e-08, - "tvos": 6.46e-08, - "twiggs": 6.46e-08, - "twinkled": 6.46e-08, - "typecasting": 6.46e-08, - "ugaritic": 6.46e-08, - "ukiyo": 6.46e-08, - "ulc": 6.46e-08, - "ule": 6.46e-08, - "ulverston": 6.46e-08, - "umn": 6.46e-08, - "umr": 6.46e-08, - "umra": 6.46e-08, - "unagi": 6.46e-08, - "unamused": 6.46e-08, - "undefinable": 6.46e-08, - "undocking": 6.46e-08, - "unfollowing": 6.46e-08, - "unidad": 6.46e-08, - "uninterruptedly": 6.46e-08, - "unkown": 6.46e-08, - "unmatchable": 6.46e-08, - "unmoored": 6.46e-08, - "unmovable": 6.46e-08, - "unserious": 6.46e-08, - "upbringings": 6.46e-08, - "upgradation": 6.46e-08, - "ursulas": 6.46e-08, - "usnr": 6.46e-08, - "usvi": 6.46e-08, - "utara": 6.46e-08, - "uuh": 6.46e-08, - "vaccinia": 6.46e-08, - "vajda": 6.46e-08, - "validators": 6.46e-08, - "vansittart": 6.46e-08, - "vaporised": 6.46e-08, - "vaporous": 6.46e-08, - "vasilis": 6.46e-08, - "vata": 6.46e-08, - "venera": 6.46e-08, - "versification": 6.46e-08, - "vertue": 6.46e-08, - "vexes": 6.46e-08, - "vianney": 6.46e-08, - "vicia": 6.46e-08, - "vidhan": 6.46e-08, - "vidmar": 6.46e-08, - "viene": 6.46e-08, - "vincristine": 6.46e-08, - "visby": 6.46e-08, - "visnu": 6.46e-08, - "vitebsk": 6.46e-08, - "vivint": 6.46e-08, - "voiture": 6.46e-08, - "volantis": 6.46e-08, - "volbeat": 6.46e-08, - "vsl": 6.46e-08, - "vvip": 6.46e-08, - "wachowskis": 6.46e-08, - "wargs": 6.46e-08, - "warmhearted": 6.46e-08, - "warrego": 6.46e-08, - "waybill": 6.46e-08, - "wayyyyyy": 6.46e-08, - "weigl": 6.46e-08, - "wetback": 6.46e-08, - "weyman": 6.46e-08, - "wheely": 6.46e-08, - "whop": 6.46e-08, - "whu": 6.46e-08, - "wickedest": 6.46e-08, - "wiest": 6.46e-08, - "willo": 6.46e-08, - "windiest": 6.46e-08, - "wingnuts": 6.46e-08, - "wistfulness": 6.46e-08, - "withy": 6.46e-08, - "witz": 6.46e-08, - "wiv": 6.46e-08, - "wladyslaw": 6.46e-08, - "wlll": 6.46e-08, - "woodroof": 6.46e-08, - "woodsmen": 6.46e-08, - "woolton": 6.46e-08, - "worland": 6.46e-08, - "writerly": 6.46e-08, - "wundt": 6.46e-08, - "wwt": 6.46e-08, - "wykeham": 6.46e-08, - "xaml": 6.46e-08, - "xanders": 6.46e-08, - "xdr": 6.46e-08, - "xilai": 6.46e-08, - "xox": 6.46e-08, - "yanga": 6.46e-08, - "yanno": 6.46e-08, - "yeaaah": 6.46e-08, - "yers": 6.46e-08, - "yews": 6.46e-08, - "yodelling": 6.46e-08, - "yoou": 6.46e-08, - "youi": 6.46e-08, - "yts": 6.46e-08, - "yunho": 6.46e-08, - "yusof": 6.46e-08, - "zealandia": 6.46e-08, - "zellers": 6.46e-08, - "zindabad": 6.46e-08, - "ziya": 6.46e-08, - "zns": 6.46e-08, - "zord": 6.46e-08, - "zygotes": 6.46e-08, - "abaft": 6.31e-08, - "abcc": 6.31e-08, - "abenomics": 6.31e-08, - "abercromby": 6.31e-08, - "abetz": 6.31e-08, - "abha": 6.31e-08, - "abilify": 6.31e-08, - "absol": 6.31e-08, - "accidentals": 6.31e-08, - "accretionary": 6.31e-08, - "acho": 6.31e-08, - "acquainting": 6.31e-08, - "adalbert": 6.31e-08, - "adara": 6.31e-08, - "adelie": 6.31e-08, - "adenoid": 6.31e-08, - "adivasi": 6.31e-08, - "adreno": 6.31e-08, - "aerating": 6.31e-08, - "aftenposten": 6.31e-08, - "agian": 6.31e-08, - "agnetha": 6.31e-08, - "ahan": 6.31e-08, - "ahrc": 6.31e-08, - "aicha": 6.31e-08, - "aiman": 6.31e-08, - "aimbot": 6.31e-08, - "airfreight": 6.31e-08, - "airpark": 6.31e-08, - "ajinkya": 6.31e-08, - "aksu": 6.31e-08, - "alienist": 6.31e-08, - "allemand": 6.31e-08, - "allott": 6.31e-08, - "alltel": 6.31e-08, - "alondra": 6.31e-08, - "alturas": 6.31e-08, - "amantadine": 6.31e-08, - "amigas": 6.31e-08, - "ammianus": 6.31e-08, - "ampang": 6.31e-08, - "anatoliy": 6.31e-08, - "anga": 6.31e-08, - "anglosphere": 6.31e-08, - "annelids": 6.31e-08, - "annulling": 6.31e-08, - "anodic": 6.31e-08, - "antiphons": 6.31e-08, - "antologia": 6.31e-08, - "apocalypses": 6.31e-08, - "apon": 6.31e-08, - "appendixes": 6.31e-08, - "appropriators": 6.31e-08, - "arabism": 6.31e-08, - "arboriculture": 6.31e-08, - "arita": 6.31e-08, - "armours": 5.25e-08, - "armouries": 6.31e-08, - "arnaz": 6.31e-08, - "aroldis": 6.31e-08, - "arona": 6.31e-08, - "aroun": 6.31e-08, - "arre": 6.31e-08, - "arrhythmic": 6.31e-08, - "arta": 6.31e-08, - "arz": 6.31e-08, - "asafa": 6.31e-08, - "ashville": 6.31e-08, - "aspasia": 6.31e-08, - "aspera": 6.31e-08, - "assia": 6.31e-08, - "assignees": 6.31e-08, - "asteraceae": 6.31e-08, - "atenolol": 6.31e-08, - "attaboy": 6.31e-08, - "attalus": 6.31e-08, - "atto": 6.31e-08, - "atum": 6.31e-08, - "auge": 6.31e-08, - "aurat": 6.31e-08, - "autotrader": 6.31e-08, - "avey": 6.31e-08, - "aviations": 6.31e-08, - "avnet": 6.31e-08, - "aybar": 6.31e-08, - "azari": 6.31e-08, - "azzopardi": 6.31e-08, - "bacchae": 6.31e-08, - "bachelorettes": 6.31e-08, - "bacher": 6.31e-08, - "backbenches": 6.31e-08, - "bafflement": 6.31e-08, - "bagasse": 6.31e-08, - "bairnsdale": 6.31e-08, - "balikpapan": 6.31e-08, - "ballentine": 6.31e-08, - "balloted": 6.31e-08, - "balraj": 6.31e-08, - "balwant": 6.31e-08, - "balwyn": 6.31e-08, - "banega": 6.31e-08, - "bangura": 6.31e-08, - "banquette": 6.31e-08, - "bantered": 6.31e-08, - "barkov": 6.31e-08, - "bashan": 6.31e-08, - "bathtime": 6.31e-08, - "bazinga": 6.31e-08, - "bebek": 6.31e-08, - "bechet": 6.31e-08, - "beckie": 6.31e-08, - "beefheart": 6.31e-08, - "behav": 6.31e-08, - "behaviorists": 6.31e-08, - "beiruts": 6.31e-08, - "beko": 6.31e-08, - "bennies": 6.31e-08, - "beric": 6.31e-08, - "berl": 6.31e-08, - "bernama": 6.31e-08, - "betti": 6.31e-08, - "bharatpur": 6.31e-08, - "bhoomi": 6.31e-08, - "bhullar": 6.31e-08, - "birder": 6.31e-08, - "birdwell": 6.31e-08, - "birkhead": 6.31e-08, - "birnie": 6.31e-08, - "blackbody": 6.31e-08, - "blackthorne": 6.31e-08, - "blairites": 6.31e-08, - "blakelock": 6.31e-08, - "blaziken": 6.31e-08, - "blissed": 6.31e-08, - "blms": 6.31e-08, - "bloodcurdling": 6.31e-08, - "bluejackets": 6.31e-08, - "bluejay": 6.31e-08, - "boness": 6.31e-08, - "bobos": 6.31e-08, - "bodmer": 6.31e-08, - "bogner": 6.31e-08, - "bolam": 6.31e-08, - "boogies": 5.37e-08, - "boonie": 6.31e-08, - "boozed": 6.31e-08, - "boriss": 6.31e-08, - "borrowdale": 6.31e-08, - "bouverie": 6.31e-08, - "braman": 6.31e-08, - "brammer": 6.31e-08, - "branes": 6.31e-08, - "brayshaw": 6.31e-08, - "brenneman": 6.31e-08, - "bressler": 6.31e-08, - "brierly": 6.31e-08, - "bringers": 6.31e-08, - "brinkerhoff": 6.31e-08, - "brownsburg": 6.31e-08, - "brudenell": 6.31e-08, - "brummell": 6.31e-08, - "bruning": 6.31e-08, - "bryanston": 6.31e-08, - "bsk": 6.31e-08, - "bsv": 6.31e-08, - "buescher": 6.31e-08, - "bumbershoot": 6.31e-08, - "bundesrat": 6.31e-08, - "burnhams": 6.31e-08, - "burrus": 6.31e-08, - "butterbeer": 6.31e-08, - "byatt": 6.31e-08, - "cabella": 6.31e-08, - "cades": 6.31e-08, - "cahoon": 6.31e-08, - "cairngorm": 6.31e-08, - "callanan": 6.31e-08, - "callimachus": 6.31e-08, - "camdens": 6.31e-08, - "camerlengo": 6.31e-08, - "caner": 6.31e-08, - "cannonade": 6.31e-08, - "cantar": 6.31e-08, - "capitano": 6.31e-08, - "captchas": 6.31e-08, - "carma": 6.31e-08, - "carniola": 6.31e-08, - "carowinds": 6.31e-08, - "carrboro": 6.31e-08, - "cartilages": 6.31e-08, - "cartwrights": 6.31e-08, - "carven": 6.31e-08, - "casc": 6.31e-08, - "casita": 6.31e-08, - "cauliflowers": 6.31e-08, - "ccds": 6.31e-08, - "cdx": 6.31e-08, - "cellblock": 6.31e-08, - "centerfire": 6.31e-08, - "cepheid": 6.31e-08, - "cesars": 6.31e-08, - "ceux": 6.31e-08, - "chabon": 6.31e-08, - "chah": 6.31e-08, - "chancer": 6.31e-08, - "chaoyang": 6.31e-08, - "charlee": 6.31e-08, - "charme": 6.31e-08, - "charro": 6.31e-08, - "chata": 6.31e-08, - "chenopodium": 6.31e-08, - "cherrie": 6.31e-08, - "chipotles": 6.31e-08, - "chisnall": 6.31e-08, - "chloramine": 6.31e-08, - "cholangitis": 6.31e-08, - "cholecystectomy": 6.31e-08, - "cholerae": 6.31e-08, - "cholinesterase": 6.31e-08, - "chonburi": 6.31e-08, - "chromic": 6.31e-08, - "chupa": 6.31e-08, - "cilician": 6.31e-08, - "cimmerian": 6.31e-08, - "cinc": 6.31e-08, - "cintas": 6.31e-08, - "clady": 6.31e-08, - "cloncurry": 6.31e-08, - "clubland": 6.31e-08, - "cocain": 6.31e-08, - "coerces": 6.31e-08, - "coff": 6.31e-08, - "cognomen": 6.31e-08, - "cognoscenti": 6.31e-08, - "cohesively": 6.31e-08, - "colac": 6.31e-08, - "coleshill": 6.31e-08, - "colobus": 6.31e-08, - "colomb": 6.31e-08, - "colonnaded": 6.31e-08, - "compadres": 6.31e-08, - "compe": 6.31e-08, - "compos": 6.31e-08, - "comsat": 6.31e-08, - "conceptualizations": 6.31e-08, - "conchas": 6.31e-08, - "conformism": 6.31e-08, - "contactors": 6.31e-08, - "contaminations": 6.31e-08, - "coopted": 6.31e-08, - "coproduction": 6.31e-08, - "cornets": 6.31e-08, - "corporis": 6.31e-08, - "cortney": 6.31e-08, - "cosigned": 6.31e-08, - "countably": 6.31e-08, - "countermand": 6.31e-08, - "countermanded": 6.31e-08, - "countertenor": 6.31e-08, - "cowdray": 6.31e-08, - "crackly": 6.31e-08, - "creampies": 6.31e-08, - "crerar": 6.31e-08, - "cressey": 6.31e-08, - "creuset": 6.31e-08, - "cronenbergs": 6.31e-08, - "crossfade": 6.31e-08, - "crudeness": 6.31e-08, - "crudes": 6.31e-08, - "crutchlow": 6.31e-08, - "cryptographically": 6.31e-08, - "cryptologic": 6.31e-08, - "cumulated": 6.31e-08, - "cunnington": 6.31e-08, - "cureton": 6.31e-08, - "customising": 6.31e-08, - "cycloaddition": 6.31e-08, - "czarina": 6.31e-08, - "dagupan": 6.31e-08, - "dalley": 6.31e-08, - "dalliances": 6.31e-08, - "danai": 6.31e-08, - "darna": 6.31e-08, - "darry": 6.31e-08, - "darters": 6.31e-08, - "dartington": 6.31e-08, - "dasein": 6.31e-08, - "dateless": 6.31e-08, - "dayo": 6.31e-08, - "deadeye": 6.31e-08, - "debretts": 6.31e-08, - "declawing": 6.31e-08, - "decompressing": 6.31e-08, - "defrag": 6.31e-08, - "dellavedova": 6.31e-08, - "delts": 6.31e-08, - "denouncement": 6.31e-08, - "deq": 6.31e-08, - "desharnais": 6.31e-08, - "desiderata": 6.31e-08, - "desparate": 6.31e-08, - "devlins": 6.31e-08, - "dhammakaya": 6.31e-08, - "dicer": 6.31e-08, - "dicko": 6.31e-08, - "dicksons": 6.31e-08, - "diedrich": 6.31e-08, - "digesters": 6.31e-08, - "dillashaw": 6.31e-08, - "disassociating": 6.31e-08, - "discriminator": 6.31e-08, - "disentangled": 6.31e-08, - "disgorgement": 6.31e-08, - "dismaying": 6.31e-08, - "dissimilarities": 6.31e-08, - "dissonances": 6.31e-08, - "disulfiram": 6.31e-08, - "djamel": 6.31e-08, - "djembe": 6.31e-08, - "dlb": 6.31e-08, - "dlna": 6.31e-08, - "dman": 6.31e-08, - "doar": 6.31e-08, - "docents": 6.31e-08, - "docility": 6.31e-08, - "dodos": 6.31e-08, - "dodwell": 6.31e-08, - "doja": 6.31e-08, - "dolerite": 6.31e-08, - "dombey": 6.31e-08, - "domenici": 6.31e-08, - "domesticus": 6.31e-08, - "dorma": 6.31e-08, - "dorp": 6.31e-08, - "dostum": 6.31e-08, - "dotnet": 6.31e-08, - "dovecote": 6.31e-08, - "doyou": 6.31e-08, - "drawling": 6.31e-08, - "driskel": 6.31e-08, - "drummonds": 6.31e-08, - "drumset": 6.31e-08, - "dubh": 6.31e-08, - "dutcher": 6.31e-08, - "dyads": 6.31e-08, - "ecac": 6.31e-08, - "eccl": 6.31e-08, - "ecologic": 6.31e-08, - "ecru": 6.31e-08, - "ecus": 6.31e-08, - "eeek": 6.31e-08, - "eeva": 6.31e-08, - "effusively": 6.31e-08, - "eggo": 6.31e-08, - "eigenstates": 6.31e-08, - "eikon": 6.31e-08, - "elayne": 6.31e-08, - "electroluminescent": 6.31e-08, - "electromotive": 6.31e-08, - "elgars": 6.31e-08, - "elit": 6.31e-08, - "elphaba": 6.31e-08, - "emaar": 6.31e-08, - "emelin": 6.31e-08, - "enalapril": 6.31e-08, - "engineerings": 6.31e-08, - "engross": 6.31e-08, - "enmore": 6.31e-08, - "enunciating": 6.31e-08, - "eop": 6.31e-08, - "eosinophilia": 6.31e-08, - "eovaldi": 6.31e-08, - "eoy": 6.31e-08, - "epee": 6.31e-08, - "epididymis": 6.31e-08, - "epigastric": 6.31e-08, - "eprdf": 6.31e-08, - "equivalencies": 6.31e-08, - "escs": 6.31e-08, - "essendons": 6.31e-08, - "essere": 6.31e-08, - "esterase": 6.31e-08, - "esterification": 6.31e-08, - "eukaryote": 6.31e-08, - "evenhanded": 6.31e-08, - "evinrude": 6.31e-08, - "exclusiveness": 6.31e-08, - "excretions": 6.31e-08, - "exeggutor": 6.31e-08, - "exercisers": 6.31e-08, - "exid": 6.31e-08, - "extractable": 6.31e-08, - "exult": 6.31e-08, - "eyeballed": 6.31e-08, - "eyeroll": 6.31e-08, - "fabricant": 6.31e-08, - "faenza": 6.31e-08, - "faizabad": 6.31e-08, - "falconers": 6.31e-08, - "fanconi": 6.31e-08, - "farne": 6.31e-08, - "fasciculus": 6.31e-08, - "fatales": 6.31e-08, - "fatalist": 6.31e-08, - "featherston": 6.31e-08, - "fenella": 6.31e-08, - "fernwood": 6.31e-08, - "fida": 6.31e-08, - "filii": 6.31e-08, - "filmgoers": 6.31e-08, - "finck": 6.31e-08, - "finnie": 6.31e-08, - "fiordland": 6.31e-08, - "firdaus": 6.31e-08, - "flattish": 6.31e-08, - "flatwoods": 6.31e-08, - "fleecy": 6.31e-08, - "floggings": 6.31e-08, - "floriculture": 6.31e-08, - "fontanelle": 6.31e-08, - "fontenelle": 6.31e-08, - "forno": 6.31e-08, - "fortenberry": 6.31e-08, - "francesc": 6.31e-08, - "franch": 6.31e-08, - "fraternizing": 6.31e-08, - "freakazoid": 6.31e-08, - "fredricks": 6.31e-08, - "freelander": 6.31e-08, - "freres": 6.31e-08, - "freyas": 6.31e-08, - "frommers": 6.31e-08, - "fter": 6.31e-08, - "ftz": 6.31e-08, - "fugit": 6.31e-08, - "fulla": 6.31e-08, - "funston": 6.31e-08, - "furler": 6.31e-08, - "furnival": 6.31e-08, - "furuta": 6.31e-08, - "fuu": 6.31e-08, - "fwy": 6.31e-08, - "gabs": 6.31e-08, - "galang": 6.31e-08, - "galland": 6.31e-08, - "galo": 6.31e-08, - "ganapati": 6.31e-08, - "garrincha": 6.31e-08, - "gause": 6.31e-08, - "gawked": 6.31e-08, - "gazebos": 6.31e-08, - "gemcitabine": 6.31e-08, - "geographics": 2.69e-08, - "gertler": 6.31e-08, - "ghanem": 6.31e-08, - "gilfillan": 6.31e-08, - "gillmor": 6.31e-08, - "gillmore": 6.31e-08, - "gimpo": 6.31e-08, - "gingrichs": 6.31e-08, - "ginnifer": 6.31e-08, - "gitano": 6.31e-08, - "gittins": 6.31e-08, - "giwa": 6.31e-08, - "gizzards": 6.31e-08, - "glendening": 6.31e-08, - "gliese": 6.31e-08, - "glycans": 6.31e-08, - "gobby": 6.31e-08, - "gochujang": 6.31e-08, - "godse": 6.31e-08, - "goldoni": 6.31e-08, - "goodin": 6.31e-08, - "goondiwindi": 6.31e-08, - "gopros": 6.31e-08, - "goree": 6.31e-08, - "gorgas": 6.31e-08, - "gorin": 6.31e-08, - "gorm": 6.31e-08, - "grandal": 6.31e-08, - "grandmom": 6.31e-08, - "grapeseed": 6.31e-08, - "grech": 6.31e-08, - "gresley": 6.31e-08, - "gress": 6.31e-08, - "grittiness": 6.31e-08, - "grodno": 6.31e-08, - "grundriss": 6.31e-08, - "guderian": 6.31e-08, - "guia": 6.31e-08, - "gulzar": 6.31e-08, - "gvhd": 6.31e-08, - "habitants": 6.31e-08, - "hadas": 6.31e-08, - "hahha": 6.31e-08, - "hahns": 6.31e-08, - "hallberg": 6.31e-08, - "hallinan": 6.31e-08, - "halloweentown": 6.31e-08, - "hamo": 6.31e-08, - "hanauer": 6.31e-08, - "handl": 6.31e-08, - "hanji": 6.31e-08, - "harappa": 6.31e-08, - "hardpoint": 6.31e-08, - "hargis": 6.31e-08, - "harlans": 6.31e-08, - "harran": 6.31e-08, - "heckscher": 6.31e-08, - "hectoring": 6.31e-08, - "hedren": 6.31e-08, - "heidecker": 6.31e-08, - "hermanus": 6.31e-08, - "herzfeld": 6.31e-08, - "heterojunction": 6.31e-08, - "hijazi": 6.31e-08, - "hillhouse": 6.31e-08, - "hillview": 6.31e-08, - "himal": 6.31e-08, - "hinchliffe": 6.31e-08, - "hirth": 6.31e-08, - "hise": 6.31e-08, - "hoagies": 6.31e-08, - "hofstede": 6.31e-08, - "hoggard": 6.31e-08, - "hoka": 6.31e-08, - "holte": 6.31e-08, - "holyoake": 6.31e-08, - "hongo": 6.31e-08, - "honnold": 6.31e-08, - "hopkirk": 6.31e-08, - "hord": 6.31e-08, - "horological": 6.31e-08, - "houdinis": 6.31e-08, - "housefly": 6.31e-08, - "hrsg": 6.31e-08, - "hsct": 6.31e-08, - "huddy": 6.31e-08, - "huit": 6.31e-08, - "humaneness": 6.31e-08, - "hurlingham": 6.31e-08, - "hurtles": 6.31e-08, - "hutcheon": 6.31e-08, - "hydrolyzes": 6.31e-08, - "hydrous": 6.31e-08, - "hydroxychloroquine": 6.31e-08, - "hydroxyethyl": 6.31e-08, - "hypercar": 6.31e-08, - "hypnotically": 6.31e-08, - "iao": 6.31e-08, - "iasi": 6.31e-08, - "ibrd": 6.31e-08, - "ichthyology": 6.31e-08, - "idli": 6.31e-08, - "ifill": 6.31e-08, - "ikram": 6.31e-08, - "immunizing": 6.31e-08, - "impracticality": 6.31e-08, - "incrementing": 6.31e-08, - "incunabula": 6.31e-08, - "independencia": 6.31e-08, - "inexcusably": 6.31e-08, - "influxes": 6.31e-08, - "injectables": 6.31e-08, - "inly": 6.31e-08, - "inox": 6.31e-08, - "inserm": 6.31e-08, - "instr": 6.31e-08, - "intellij": 6.31e-08, - "intercessory": 6.31e-08, - "interestin": 6.31e-08, - "interline": 6.31e-08, - "interlinking": 6.31e-08, - "interrogatories": 6.31e-08, - "intoxicant": 6.31e-08, - "intu": 6.31e-08, - "ipscs": 6.31e-08, - "ires": 6.31e-08, - "iriss": 6.31e-08, - "isam": 6.31e-08, - "ismet": 6.31e-08, - "issus": 6.31e-08, - "itemization": 6.31e-08, - "iuris": 6.31e-08, - "iview": 6.31e-08, - "izo": 6.31e-08, - "izzet": 6.31e-08, - "jackett": 6.31e-08, - "jackhammers": 6.31e-08, - "jadis": 6.31e-08, - "jagran": 6.31e-08, - "jahrhunderts": 6.31e-08, - "jako": 6.31e-08, - "janam": 6.31e-08, - "jaqueline": 6.31e-08, - "jarhead": 6.31e-08, - "jarmila": 6.31e-08, - "jasmina": 6.31e-08, - "jaysus": 6.31e-08, - "jboss": 6.31e-08, - "jellal": 6.31e-08, - "jerrie": 6.31e-08, - "jezus": 6.31e-08, - "jinns": 6.31e-08, - "johari": 6.31e-08, - "joran": 6.31e-08, - "jorja": 6.31e-08, - "jovanovich": 6.31e-08, - "jovetic": 6.31e-08, - "jovially": 6.31e-08, - "junkyards": 6.31e-08, - "jutted": 6.31e-08, - "kaboul": 6.31e-08, - "kadabra": 6.31e-08, - "kahana": 6.31e-08, - "kaleo": 6.31e-08, - "kallie": 6.31e-08, - "kamelot": 6.31e-08, - "kamma": 6.31e-08, - "kaolinite": 6.31e-08, - "kary": 6.31e-08, - "kataoka": 6.31e-08, - "kathrine": 6.31e-08, - "katsuya": 6.31e-08, - "kayano": 6.31e-08, - "kazuhiko": 6.31e-08, - "kbo": 6.31e-08, - "kedron": 6.31e-08, - "keelan": 6.31e-08, - "keewatin": 6.31e-08, - "kelsall": 6.31e-08, - "kelson": 6.31e-08, - "kendell": 6.31e-08, - "kenneths": 6.31e-08, - "kerma": 6.31e-08, - "kidlington": 6.31e-08, - "kilogrammes": 6.31e-08, - "kingsmen": 6.31e-08, - "kito": 6.31e-08, - "klima": 6.31e-08, - "knauer": 6.31e-08, - "knauss": 6.31e-08, - "kneepads": 6.31e-08, - "knighting": 6.31e-08, - "knobhead": 6.31e-08, - "knuckling": 6.31e-08, - "knx": 6.31e-08, - "kobolds": 6.31e-08, - "kome": 6.31e-08, - "komeito": 6.31e-08, - "kouji": 6.31e-08, - "koulibaly": 6.31e-08, - "kovu": 6.31e-08, - "kozinski": 6.31e-08, - "kpl": 6.31e-08, - "krys": 6.31e-08, - "kshs": 6.31e-08, - "kumbh": 6.31e-08, - "kunai": 6.31e-08, - "kunt": 6.31e-08, - "kunti": 6.31e-08, - "kurri": 6.31e-08, - "kyeong": 6.31e-08, - "lacour": 6.31e-08, - "lactoferrin": 6.31e-08, - "ladonna": 6.31e-08, - "lakehead": 6.31e-08, - "lapsley": 6.31e-08, - "largish": 6.31e-08, - "larijani": 6.31e-08, - "laufer": 6.31e-08, - "lcpl": 6.31e-08, - "leavis": 6.31e-08, - "lechery": 6.31e-08, - "lect": 6.31e-08, - "legarrette": 6.31e-08, - "legendaries": 6.31e-08, - "leguizamo": 6.31e-08, - "lemak": 6.31e-08, - "leoben": 6.31e-08, - "leofric": 6.31e-08, - "leonine": 6.31e-08, - "levada": 6.31e-08, - "levitin": 6.31e-08, - "lfr": 6.31e-08, - "liebert": 6.31e-08, - "lifeforce": 6.31e-08, - "limite": 6.31e-08, - "lionized": 6.31e-08, - "lithospheric": 6.31e-08, - "livened": 6.31e-08, - "localise": 6.31e-08, - "locatelli": 6.31e-08, - "lockharts": 6.31e-08, - "lolicon": 6.31e-08, - "lomi": 6.31e-08, - "longfield": 6.31e-08, - "longyear": 6.31e-08, - "lookahead": 6.31e-08, - "lorber": 6.31e-08, - "louche": 6.31e-08, - "lubbers": 6.31e-08, - "lugard": 6.31e-08, - "lugia": 6.31e-08, - "lunga": 6.31e-08, - "lup": 6.31e-08, - "luque": 6.31e-08, - "luss": 6.31e-08, - "macer": 6.31e-08, - "madejski": 6.31e-08, - "magalhaes": 6.31e-08, - "magath": 6.31e-08, - "majus": 6.31e-08, - "malakal": 6.31e-08, - "malindi": 6.31e-08, - "malocclusion": 6.31e-08, - "mandu": 6.31e-08, - "manette": 6.31e-08, - "mannerist": 6.31e-08, - "manoir": 6.31e-08, - "mantissa": 6.31e-08, - "marcasite": 6.31e-08, - "margaretha": 6.31e-08, - "margulis": 6.31e-08, - "marmora": 6.31e-08, - "marven": 6.31e-08, - "marwin": 6.31e-08, - "mastani": 6.31e-08, - "mattys": 6.31e-08, - "mauss": 6.31e-08, - "maximoff": 6.31e-08, - "mbna": 6.31e-08, - "mccants": 6.31e-08, - "mccormicks": 6.31e-08, - "mcelhinney": 6.31e-08, - "mcmansion": 6.31e-08, - "mcmasters": 6.31e-08, - "meades": 6.31e-08, - "meatheads": 6.31e-08, - "mechwarrior": 6.31e-08, - "mediastinum": 6.31e-08, - "medo": 6.31e-08, - "medora": 6.31e-08, - "medulloblastoma": 6.31e-08, - "medved": 6.31e-08, - "meem": 6.31e-08, - "meili": 6.31e-08, - "mella": 6.31e-08, - "memoirist": 6.31e-08, - "meninas": 6.31e-08, - "menn": 6.31e-08, - "meralco": 6.31e-08, - "merville": 6.31e-08, - "metallization": 6.31e-08, - "metropol": 6.31e-08, - "mett": 6.31e-08, - "mhairi": 6.31e-08, - "mhr": 6.31e-08, - "micallef": 6.31e-08, - "middlebrooks": 6.31e-08, - "mieke": 6.31e-08, - "migra": 6.31e-08, - "mihaly": 6.31e-08, - "mikio": 6.31e-08, - "milia": 6.31e-08, - "mimeograph": 6.31e-08, - "mimeographed": 6.31e-08, - "minifigs": 6.31e-08, - "minimalists": 6.31e-08, - "minoans": 6.31e-08, - "mires": 6.31e-08, - "miroir": 6.31e-08, - "misallocation": 6.31e-08, - "misinform": 6.31e-08, - "mitya": 6.31e-08, - "mitzvot": 6.31e-08, - "mmda": 6.31e-08, - "moated": 6.31e-08, - "moderno": 6.31e-08, - "mollies": 6.31e-08, - "monaural": 6.31e-08, - "monstro": 6.31e-08, - "montlake": 6.31e-08, - "mooi": 6.31e-08, - "mooned": 6.31e-08, - "moorcock": 6.31e-08, - "moring": 6.31e-08, - "morlocks": 6.31e-08, - "motiv": 6.31e-08, - "motus": 6.31e-08, - "mouna": 6.31e-08, - "moutinho": 6.31e-08, - "mozambiques": 6.31e-08, - "muhamed": 6.31e-08, - "multirole": 6.31e-08, - "mune": 6.31e-08, - "muscularity": 6.31e-08, - "musiq": 6.31e-08, - "muso": 6.31e-08, - "mussoorie": 6.31e-08, - "muthafuckin": 6.31e-08, - "mutsu": 6.31e-08, - "myob": 6.31e-08, - "nagumo": 6.31e-08, - "naj": 6.31e-08, - "naki": 6.31e-08, - "namma": 6.31e-08, - "nanci": 6.31e-08, - "nannying": 6.31e-08, - "nappi": 6.31e-08, - "naseby": 6.31e-08, - "navami": 6.31e-08, - "navarros": 6.31e-08, - "naxalites": 6.31e-08, - "neetu": 6.31e-08, - "neistat": 6.31e-08, - "nemean": 6.31e-08, - "nendoroid": 6.31e-08, - "neroli": 6.31e-08, - "netley": 6.31e-08, - "neurofeedback": 6.31e-08, - "neuropathies": 6.31e-08, - "neuroscientific": 6.31e-08, - "newley": 6.31e-08, - "newsdesk": 6.31e-08, - "nicklin": 6.31e-08, - "nikolov": 6.31e-08, - "nilo": 6.31e-08, - "nise": 6.31e-08, - "nisus": 6.31e-08, - "nmap": 6.31e-08, - "noisemakers": 6.31e-08, - "nonconsensual": 6.31e-08, - "nonmedical": 6.31e-08, - "nonmilitary": 6.31e-08, - "norwichs": 6.31e-08, - "notaro": 6.31e-08, - "noti": 6.31e-08, - "nrls": 6.31e-08, - "nrr": 6.31e-08, - "nucleosomes": 6.31e-08, - "numbskull": 6.31e-08, - "nute": 6.31e-08, - "oneals": 6.31e-08, - "occlude": 6.31e-08, - "odda": 6.31e-08, - "ogo": 6.31e-08, - "ohchr": 6.31e-08, - "oja": 6.31e-08, - "okawa": 6.31e-08, - "okies": 6.31e-08, - "oligo": 6.31e-08, - "olp": 6.31e-08, - "omnic": 6.31e-08, - "optout": 6.31e-08, - "ordos": 6.31e-08, - "orgeron": 6.31e-08, - "osen": 6.31e-08, - "oshin": 6.31e-08, - "ostler": 6.31e-08, - "ostrow": 6.31e-08, - "ousts": 6.31e-08, - "outbox": 6.31e-08, - "outperformance": 6.31e-08, - "outshined": 6.31e-08, - "ouverture": 6.31e-08, - "overbuilt": 6.31e-08, - "overwatchs": 6.31e-08, - "oxymoronic": 6.31e-08, - "oyer": 6.31e-08, - "pachyderm": 6.31e-08, - "pagel": 6.31e-08, - "pagina": 6.31e-08, - "paisleys": 6.31e-08, - "palabra": 6.31e-08, - "palmistry": 6.31e-08, - "paly": 6.31e-08, - "pamphleteer": 6.31e-08, - "parador": 6.31e-08, - "params": 6.31e-08, - "parens": 6.31e-08, - "paribus": 6.31e-08, - "parmenter": 6.31e-08, - "passamaquoddy": 6.31e-08, - "passcodes": 6.31e-08, - "pavlos": 6.31e-08, - "pawley": 6.31e-08, - "pawnshops": 6.31e-08, - "paywalls": 6.31e-08, - "pengelly": 6.31e-08, - "peptidase": 6.31e-08, - "percheron": 6.31e-08, - "percussions": 6.31e-08, - "pereyra": 6.31e-08, - "perquisite": 6.31e-08, - "perugino": 6.31e-08, - "petroglyph": 6.31e-08, - "petrolia": 6.31e-08, - "petron": 6.31e-08, - "petronella": 6.31e-08, - "phalange": 6.31e-08, - "philadelphian": 6.31e-08, - "phonation": 6.31e-08, - "pickoff": 6.31e-08, - "pictogram": 6.31e-08, - "piecework": 6.31e-08, - "pierrette": 6.31e-08, - "piku": 6.31e-08, - "pincode": 6.31e-08, - "pinkeye": 6.31e-08, - "pintle": 6.31e-08, - "pitchman": 6.31e-08, - "pitons": 6.31e-08, - "placidly": 6.31e-08, - "plaisance": 6.31e-08, - "planchet": 6.31e-08, - "playdough": 6.31e-08, - "playsuit": 6.31e-08, - "plimsoll": 6.31e-08, - "polarizations": 6.31e-08, - "pompeian": 6.31e-08, - "pompton": 6.31e-08, - "pondok": 6.31e-08, - "porcelains": 6.31e-08, - "portree": 6.31e-08, - "prag": 6.31e-08, - "prec": 6.31e-08, - "preempting": 6.31e-08, - "preloading": 6.31e-08, - "premo": 6.31e-08, - "prenatally": 6.31e-08, - "presa": 6.31e-08, - "pressurise": 6.31e-08, - "prickett": 6.31e-08, - "printz": 6.31e-08, - "prizewinning": 6.31e-08, - "prizm": 6.31e-08, - "profi": 6.31e-08, - "progresso": 6.31e-08, - "propper": 6.31e-08, - "proprietorships": 6.31e-08, - "prospected": 6.31e-08, - "prospekt": 6.31e-08, - "protists": 6.31e-08, - "prover": 6.31e-08, - "prust": 6.31e-08, - "psps": 6.31e-08, - "puerperal": 6.31e-08, - "pues": 6.31e-08, - "puf": 6.31e-08, - "puft": 6.31e-08, - "pugachev": 6.31e-08, - "pummels": 6.31e-08, - "puppers": 6.31e-08, - "puram": 6.31e-08, - "pushrod": 6.31e-08, - "pylos": 6.31e-08, - "pyridoxine": 6.31e-08, - "qaim": 6.31e-08, - "qassem": 6.31e-08, - "qinetiq": 6.31e-08, - "qms": 6.31e-08, - "qsl": 6.31e-08, - "quadrangles": 6.31e-08, - "quants": 6.31e-08, - "quartic": 6.31e-08, - "quattroporte": 6.31e-08, - "quencher": 6.31e-08, - "quinney": 6.31e-08, - "quinten": 6.31e-08, - "qur": 6.31e-08, - "raje": 6.31e-08, - "rajouri": 6.31e-08, - "ramzy": 6.31e-08, - "rascally": 6.31e-08, - "rashtra": 6.31e-08, - "rauls": 6.31e-08, - "reacquaint": 6.31e-08, - "recessional": 6.31e-08, - "recieves": 6.31e-08, - "reckoner": 6.31e-08, - "recondition": 6.31e-08, - "redeploying": 6.31e-08, - "redoubling": 6.31e-08, - "reduc": 6.31e-08, - "refloated": 6.31e-08, - "rege": 6.31e-08, - "reinterpretations": 6.31e-08, - "relais": 6.31e-08, - "relaunches": 6.31e-08, - "religiousness": 6.31e-08, - "remarketing": 6.31e-08, - "rematches": 6.31e-08, - "reoccurrence": 6.31e-08, - "reorganizes": 6.31e-08, - "repaved": 6.31e-08, - "repechage": 6.31e-08, - "repossessions": 6.31e-08, - "responsable": 6.31e-08, - "responsi": 6.31e-08, - "retrospection": 6.31e-08, - "revengeful": 6.31e-08, - "rfr": 6.31e-08, - "rhc": 6.31e-08, - "rhin": 6.31e-08, - "rhoden": 6.31e-08, - "ricardos": 6.31e-08, - "ricer": 6.31e-08, - "rickover": 6.31e-08, - "rickson": 6.31e-08, - "ridha": 6.31e-08, - "rigdon": 6.31e-08, - "ripest": 6.31e-08, - "risdon": 6.31e-08, - "roadshows": 6.31e-08, - "roba": 6.31e-08, - "rockier": 6.31e-08, - "rocksmith": 6.31e-08, - "roleplayers": 6.31e-08, - "ronna": 6.31e-08, - "rossii": 6.31e-08, - "rotem": 6.31e-08, - "rothamsted": 6.31e-08, - "rothes": 6.31e-08, - "roubini": 6.31e-08, - "rourkela": 6.31e-08, - "rowsell": 6.31e-08, - "rubbings": 6.31e-08, - "rufio": 6.31e-08, - "ruizs": 6.31e-08, - "rukmini": 6.31e-08, - "rwy": 6.31e-08, - "sablon": 6.31e-08, - "sagacious": 6.31e-08, - "salaryman": 6.31e-08, - "salic": 6.31e-08, - "sammlung": 6.31e-08, - "sandakan": 6.31e-08, - "sandino": 6.31e-08, - "sanguinis": 6.31e-08, - "sanjiv": 6.31e-08, - "sargassum": 6.31e-08, - "sarna": 6.31e-08, - "sartres": 6.31e-08, - "sarver": 6.31e-08, - "satelite": 6.31e-08, - "sauternes": 6.31e-08, - "scattergun": 6.31e-08, - "scentsy": 6.31e-08, - "schmo": 6.31e-08, - "scien": 6.31e-08, - "sclerosing": 6.31e-08, - "scrutinizes": 6.31e-08, - "sculling": 6.31e-08, - "scutari": 6.31e-08, - "scuzzy": 6.31e-08, - "seashores": 6.31e-08, - "segregates": 6.31e-08, - "semel": 6.31e-08, - "semler": 6.31e-08, - "sentimentalism": 6.31e-08, - "seraphic": 6.31e-08, - "setauket": 6.31e-08, - "sethu": 6.31e-08, - "sge": 6.31e-08, - "shadings": 6.31e-08, - "shahabuddin": 6.31e-08, - "shankland": 6.31e-08, - "shaoxing": 6.31e-08, - "sharaf": 6.31e-08, - "sherburn": 6.31e-08, - "shigure": 6.31e-08, - "shina": 6.31e-08, - "shiney": 6.31e-08, - "shiu": 6.31e-08, - "shizuo": 6.31e-08, - "shld": 6.31e-08, - "sholay": 6.31e-08, - "sholem": 6.31e-08, - "shopfront": 6.31e-08, - "shoten": 6.31e-08, - "shotokan": 6.31e-08, - "silkwood": 6.31e-08, - "sillitoe": 6.31e-08, - "sipri": 6.31e-08, - "sitara": 6.31e-08, - "siue": 6.31e-08, - "skell": 6.31e-08, - "skellig": 6.31e-08, - "slagged": 6.31e-08, - "slb": 6.31e-08, - "slighter": 6.31e-08, - "sln": 6.31e-08, - "slone": 6.31e-08, - "snood": 6.31e-08, - "sobchak": 6.31e-08, - "sociodemographic": 6.31e-08, - "socioeconomically": 6.31e-08, - "socon": 6.31e-08, - "sohu": 6.31e-08, - "solu": 6.31e-08, - "solyndra": 6.31e-08, - "somma": 6.31e-08, - "soothsayers": 6.31e-08, - "speedtest": 6.31e-08, - "spektor": 6.31e-08, - "spellcaster": 6.31e-08, - "spiralis": 6.31e-08, - "sportsmens": 6.31e-08, - "ssis": 6.31e-08, - "ssns": 6.31e-08, - "stana": 6.31e-08, - "stargirl": 6.31e-08, - "stateline": 6.31e-08, - "stecher": 6.31e-08, - "stefanos": 6.31e-08, - "sternest": 6.31e-08, - "stewarding": 6.31e-08, - "stickleback": 6.31e-08, - "stoa": 6.31e-08, - "stoats": 6.31e-08, - "stockfish": 6.31e-08, - "stockist": 6.31e-08, - "stoxx": 6.31e-08, - "strack": 6.31e-08, - "stranahan": 6.31e-08, - "strate": 6.31e-08, - "strato": 6.31e-08, - "strongbox": 6.31e-08, - "stubbins": 6.31e-08, - "stupidities": 6.31e-08, - "subcultural": 6.31e-08, - "subdirectory": 6.31e-08, - "subito": 6.31e-08, - "suhartos": 6.31e-08, - "sullenberger": 6.31e-08, - "summerson": 6.31e-08, - "summited": 6.31e-08, - "sundials": 6.31e-08, - "supercut": 6.31e-08, - "supergirls": 6.31e-08, - "superstring": 6.31e-08, - "surp": 6.31e-08, - "suskind": 6.31e-08, - "sustrans": 6.31e-08, - "sutler": 6.31e-08, - "svante": 6.31e-08, - "sve": 6.31e-08, - "svenson": 6.31e-08, - "swaminarayan": 6.31e-08, - "swed": 6.31e-08, - "sweetman": 6.31e-08, - "swen": 6.31e-08, - "swishy": 6.31e-08, - "syms": 6.31e-08, - "synchronizes": 6.31e-08, - "systeme": 6.31e-08, - "tadd": 6.31e-08, - "taes": 6.31e-08, - "takenaka": 6.31e-08, - "takizawa": 6.31e-08, - "tarantella": 6.31e-08, - "tarkington": 6.31e-08, - "tartaglia": 6.31e-08, - "tasc": 6.31e-08, - "taubes": 6.31e-08, - "tbg": 6.31e-08, - "telesur": 6.31e-08, - "tellier": 6.31e-08, - "tenenbaums": 6.31e-08, - "tenuis": 6.31e-08, - "teso": 6.31e-08, - "thangs": 6.31e-08, - "thatching": 6.31e-08, - "thelema": 6.31e-08, - "thelen": 6.31e-08, - "theriault": 6.31e-08, - "thermosphere": 6.31e-08, - "thimbles": 6.31e-08, - "thisd": 6.31e-08, - "thl": 6.31e-08, - "thomastown": 6.31e-08, - "thoreaus": 6.31e-08, - "thorvald": 6.31e-08, - "thracia": 6.31e-08, - "thrus": 6.31e-08, - "tibby": 6.31e-08, - "tienen": 6.31e-08, - "tintern": 6.31e-08, - "tirzah": 6.31e-08, - "tiz": 6.31e-08, - "tmac": 6.31e-08, - "togoland": 6.31e-08, - "tolan": 6.31e-08, - "toprak": 6.31e-08, - "toughie": 6.31e-08, - "tpab": 6.31e-08, - "traian": 6.31e-08, - "transcutaneous": 6.31e-08, - "transracial": 6.31e-08, - "trapezium": 6.31e-08, - "trave": 6.31e-08, - "trelleborg": 6.31e-08, - "trialist": 6.31e-08, - "tricorder": 6.31e-08, - "triers": 6.31e-08, - "trillo": 6.31e-08, - "trom": 6.31e-08, - "troost": 6.31e-08, - "trotskyism": 6.31e-08, - "trouba": 6.31e-08, - "trousdale": 6.31e-08, - "truc": 6.31e-08, - "trundling": 6.31e-08, - "trypanosomiasis": 6.31e-08, - "tsurugi": 6.31e-08, - "tucuman": 6.31e-08, - "tudou": 6.31e-08, - "tuffs": 6.31e-08, - "tuli": 6.31e-08, - "tullow": 6.31e-08, - "tullys": 6.31e-08, - "tupacs": 6.31e-08, - "turbin": 6.31e-08, - "turek": 6.31e-08, - "tutankhamuns": 6.31e-08, - "tute": 6.31e-08, - "twtr": 6.31e-08, - "tydings": 6.31e-08, - "tynes": 6.31e-08, - "tyvek": 6.31e-08, - "uchicago": 6.31e-08, - "uckfield": 6.31e-08, - "uft": 6.31e-08, - "ullapool": 6.31e-08, - "ultraconservative": 6.31e-08, - "umkc": 6.31e-08, - "umu": 6.31e-08, - "unclouded": 6.31e-08, - "unconfined": 6.31e-08, - "undefeatable": 6.31e-08, - "underoath": 6.31e-08, - "understrength": 6.31e-08, - "undocked": 6.31e-08, - "unfitting": 6.31e-08, - "unforgiveable": 6.31e-08, - "ungentlemanly": 6.31e-08, - "unifor": 6.31e-08, - "unkillable": 6.31e-08, - "unlabelled": 6.31e-08, - "unladen": 6.31e-08, - "unmemorable": 6.31e-08, - "unremittingly": 6.31e-08, - "unshackle": 6.31e-08, - "unstinting": 6.31e-08, - "unstudied": 6.31e-08, - "upraised": 6.31e-08, - "urate": 6.31e-08, - "urey": 6.31e-08, - "urk": 6.31e-08, - "urr": 6.31e-08, - "usfl": 6.31e-08, - "ushio": 6.31e-08, - "usns": 6.31e-08, - "usum": 6.31e-08, - "uwm": 6.31e-08, - "vais": 6.31e-08, - "validations": 6.31e-08, - "varas": 6.31e-08, - "varmints": 6.31e-08, - "varvatos": 6.31e-08, - "vasek": 6.31e-08, - "vayne": 6.31e-08, - "veeck": 6.31e-08, - "velociraptors": 6.31e-08, - "venality": 6.31e-08, - "veno": 6.31e-08, - "ventoux": 6.31e-08, - "venturer": 6.31e-08, - "verandahs": 6.31e-08, - "vif": 6.31e-08, - "vinayak": 6.31e-08, - "visigothic": 6.31e-08, - "vivians": 6.31e-08, - "vog": 6.31e-08, - "volant": 6.31e-08, - "vortexes": 6.31e-08, - "vrabel": 6.31e-08, - "wahi": 6.31e-08, - "waldens": 6.31e-08, - "walia": 6.31e-08, - "walmer": 6.31e-08, - "walvis": 6.31e-08, - "wareing": 6.31e-08, - "warkworth": 6.31e-08, - "warnie": 6.31e-08, - "washouts": 6.31e-08, - "wastefully": 6.31e-08, - "watchespn": 6.31e-08, - "watermen": 6.31e-08, - "waterparks": 6.31e-08, - "watervliet": 6.31e-08, - "webex": 6.31e-08, - "westies": 6.31e-08, - "westway": 6.31e-08, - "wex": 6.31e-08, - "whas": 6.31e-08, - "whiley": 6.31e-08, - "whippersnapper": 6.31e-08, - "wholefoods": 6.31e-08, - "wiedersehen": 6.31e-08, - "winnin": 6.31e-08, - "winnowed": 6.31e-08, - "winooski": 6.31e-08, - "winterson": 6.31e-08, - "wirh": 6.31e-08, - "witkin": 6.31e-08, - "witwer": 6.31e-08, - "wizzy": 6.31e-08, - "wolfed": 6.31e-08, - "woodmen": 6.31e-08, - "wormer": 6.31e-08, - "wowzers": 6.31e-08, - "wpl": 6.31e-08, - "wran": 6.31e-08, - "wrd": 6.31e-08, - "wristed": 6.31e-08, - "wsdl": 6.31e-08, - "wuji": 6.31e-08, - "wxyz": 6.31e-08, - "wyant": 6.31e-08, - "xfm": 6.31e-08, - "yaaay": 6.31e-08, - "yadin": 6.31e-08, - "yakitori": 6.31e-08, - "yanmar": 6.31e-08, - "yassir": 6.31e-08, - "yasushi": 6.31e-08, - "yavin": 6.31e-08, - "yens": 6.31e-08, - "yle": 6.31e-08, - "yoakam": 6.31e-08, - "yuvan": 6.31e-08, - "yzf": 6.31e-08, - "zagros": 6.31e-08, - "zandra": 6.31e-08, - "zardes": 6.31e-08, - "zawiya": 6.31e-08, - "zedongs": 6.31e-08, - "zelensky": 6.31e-08, - "zevon": 6.31e-08, - "ziggo": 6.31e-08, - "zimbalist": 6.31e-08, - "zinaida": 6.31e-08, - "zuccotti": 6.31e-08, - "zzzz": 6.31e-08, - "aamer": 6.17e-08, - "aardman": 6.17e-08, - "abashed": 6.17e-08, - "abbasids": 6.17e-08, - "abideth": 6.17e-08, - "abri": 6.17e-08, - "acari": 6.17e-08, - "accenting": 6.17e-08, - "acclimatize": 6.17e-08, - "acholi": 6.17e-08, - "aconite": 6.17e-08, - "acsm": 6.17e-08, - "actualizing": 6.17e-08, - "adab": 6.17e-08, - "adalat": 6.17e-08, - "additively": 6.17e-08, - "adekunle": 6.17e-08, - "adelia": 6.17e-08, - "adenocarcinomas": 6.17e-08, - "adk": 6.17e-08, - "afros": 6.17e-08, - "agip": 6.17e-08, - "ague": 6.17e-08, - "ahaz": 6.17e-08, - "ahjussi": 6.17e-08, - "aini": 6.17e-08, - "aiyar": 6.17e-08, - "aju": 6.17e-08, - "akihiro": 6.17e-08, - "alang": 6.17e-08, - "alay": 6.17e-08, - "albertos": 6.17e-08, - "albom": 6.17e-08, - "alethea": 6.17e-08, - "alize": 6.17e-08, - "allmendinger": 6.17e-08, - "allmusic": 6.17e-08, - "allum": 6.17e-08, - "almo": 6.17e-08, - "alwa": 6.17e-08, - "amarth": 6.17e-08, - "ament": 6.17e-08, - "amethi": 6.17e-08, - "amil": 6.17e-08, - "amlodipine": 6.17e-08, - "amoebic": 6.17e-08, - "ananta": 6.17e-08, - "andreev": 6.17e-08, - "aneuploidy": 6.17e-08, - "anj": 6.17e-08, - "anthropos": 6.17e-08, - "antiproton": 6.17e-08, - "antiqued": 6.17e-08, - "antonovich": 6.17e-08, - "anw": 6.17e-08, - "anwars": 6.17e-08, - "aperiodic": 6.17e-08, - "aphelion": 6.17e-08, - "apollonian": 6.17e-08, - "apparels": 6.17e-08, - "apprehends": 6.17e-08, - "appu": 6.17e-08, - "apsley": 6.17e-08, - "apter": 6.17e-08, - "archelaus": 6.17e-08, - "arina": 6.17e-08, - "arkansans": 6.17e-08, - "arline": 6.17e-08, - "armitstead": 6.17e-08, - "arwa": 6.17e-08, - "asexuals": 6.17e-08, - "asrock": 6.17e-08, - "assateague": 6.17e-08, - "atem": 6.17e-08, - "attestations": 6.17e-08, - "attractant": 6.17e-08, - "aurochs": 6.17e-08, - "automorphisms": 6.17e-08, - "aveline": 6.17e-08, - "aventure": 6.17e-08, - "azza": 6.17e-08, - "backdraft": 6.17e-08, - "backgrounder": 6.17e-08, - "bacup": 6.17e-08, - "badassery": 6.17e-08, - "baddiel": 6.17e-08, - "balancers": 6.17e-08, - "balbo": 6.17e-08, - "baled": 6.17e-08, - "bandaranaike": 6.17e-08, - "bandersnatch": 6.17e-08, - "banke": 6.17e-08, - "barcelo": 6.17e-08, - "barceloneta": 6.17e-08, - "bareboat": 6.17e-08, - "baretta": 6.17e-08, - "barnardos": 6.17e-08, - "barrenness": 6.17e-08, - "basels": 6.17e-08, - "basilicas": 6.17e-08, - "basri": 6.17e-08, - "battambang": 6.17e-08, - "baybay": 6.17e-08, - "bazan": 6.17e-08, - "bbls": 6.17e-08, - "bcu": 6.17e-08, - "beaky": 6.17e-08, - "bedfords": 6.17e-08, - "beetham": 6.17e-08, - "beetroots": 6.17e-08, - "beinecke": 6.17e-08, - "bensley": 6.17e-08, - "bentaleb": 6.17e-08, - "benzie": 6.17e-08, - "benzos": 6.17e-08, - "bery": 6.17e-08, - "bfe": 6.17e-08, - "bhuvneshwar": 6.17e-08, - "binger": 6.17e-08, - "bipeds": 6.17e-08, - "biriyani": 6.17e-08, - "birtherism": 6.17e-08, - "biti": 6.17e-08, - "bittman": 6.17e-08, - "blayne": 6.17e-08, - "blayney": 6.17e-08, - "blewitt": 6.17e-08, - "bne": 6.17e-08, - "boatbuilding": 6.17e-08, - "bocanegra": 6.17e-08, - "boitano": 6.17e-08, - "boivin": 6.17e-08, - "bollock": 6.17e-08, - "bolters": 6.17e-08, - "bonython": 6.17e-08, - "bopara": 6.17e-08, - "borehamwood": 6.17e-08, - "borek": 6.17e-08, - "boricua": 6.17e-08, - "bournemouths": 6.17e-08, - "boydell": 6.17e-08, - "bracks": 6.17e-08, - "braw": 6.17e-08, - "brazeau": 6.17e-08, - "brillouin": 6.17e-08, - "broaches": 6.17e-08, - "bross": 6.17e-08, - "brou": 6.17e-08, - "brummel": 6.17e-08, - "brusquely": 6.17e-08, - "bucketful": 6.17e-08, - "bue": 6.17e-08, - "builth": 6.17e-08, - "bulimba": 6.17e-08, - "bulow": 6.17e-08, - "bura": 6.17e-08, - "bures": 6.17e-08, - "burkholder": 6.17e-08, - "burritt": 6.17e-08, - "buse": 6.17e-08, - "bushrod": 6.17e-08, - "buskirk": 6.17e-08, - "butner": 6.17e-08, - "buttonwood": 6.17e-08, - "bvlgari": 6.17e-08, - "bwl": 6.17e-08, - "bwp": 6.17e-08, - "bybee": 6.17e-08, - "cadaveric": 6.17e-08, - "cahuenga": 6.17e-08, - "califano": 6.17e-08, - "calne": 6.17e-08, - "cancan": 6.17e-08, - "cance": 6.17e-08, - "cantered": 6.17e-08, - "carano": 6.17e-08, - "carboplatin": 6.17e-08, - "carnivale": 6.17e-08, - "carriere": 6.17e-08, - "caselli": 6.17e-08, - "cataclysms": 6.17e-08, - "catchier": 6.17e-08, - "ccpa": 6.17e-08, - "cebit": 6.17e-08, - "cementation": 6.17e-08, - "centrica": 6.17e-08, - "cers": 6.17e-08, - "ceylonese": 6.17e-08, - "cfrp": 6.17e-08, - "cgiar": 6.17e-08, - "chapa": 6.17e-08, - "cherubic": 6.17e-08, - "chessmen": 6.17e-08, - "chevening": 6.17e-08, - "chicco": 6.17e-08, - "chickweed": 6.17e-08, - "chigi": 6.17e-08, - "chihaya": 6.17e-08, - "chihuly": 6.17e-08, - "childproof": 6.17e-08, - "choleric": 6.17e-08, - "chrism": 6.17e-08, - "christel": 6.17e-08, - "cicerone": 6.17e-08, - "cimetidine": 6.17e-08, - "cinephile": 6.17e-08, - "cintra": 6.17e-08, - "cipa": 6.17e-08, - "cistercians": 6.17e-08, - "citrulline": 6.17e-08, - "clarin": 6.17e-08, - "clasts": 6.17e-08, - "claudie": 6.17e-08, - "clomiphene": 6.17e-08, - "cloudier": 6.17e-08, - "cluedo": 6.17e-08, - "clydeside": 6.17e-08, - "cmj": 6.17e-08, - "cnets": 6.17e-08, - "coderre": 6.17e-08, - "codger": 6.17e-08, - "codpiece": 6.17e-08, - "cognizable": 6.17e-08, - "collates": 6.17e-08, - "collen": 6.17e-08, - "colly": 6.17e-08, - "colombe": 6.17e-08, - "comida": 6.17e-08, - "commendatore": 6.17e-08, - "companhia": 6.17e-08, - "comparision": 6.17e-08, - "compatibles": 6.17e-08, - "compu": 6.17e-08, - "coned": 6.17e-08, - "conon": 6.17e-08, - "contrarians": 6.17e-08, - "coola": 6.17e-08, - "copyleft": 6.17e-08, - "coran": 6.17e-08, - "coronets": 6.17e-08, - "coulibaly": 6.17e-08, - "countach": 6.17e-08, - "countersuit": 6.17e-08, - "cowbridge": 6.17e-08, - "cozies": 6.17e-08, - "craftiness": 6.17e-08, - "cremorne": 6.17e-08, - "crestor": 6.17e-08, - "cricklewood": 6.17e-08, - "cristin": 6.17e-08, - "cruzi": 6.17e-08, - "culvers": 6.17e-08, - "cuo": 6.17e-08, - "cyclooxygenase": 6.17e-08, - "cyclopean": 6.17e-08, - "cydonia": 6.17e-08, - "czk": 6.17e-08, - "daguerre": 6.17e-08, - "dahn": 6.17e-08, - "danda": 6.17e-08, - "dange": 6.17e-08, - "debarge": 6.17e-08, - "debe": 6.17e-08, - "decidable": 6.17e-08, - "declans": 6.17e-08, - "decora": 6.17e-08, - "decrepitude": 6.17e-08, - "deel": 6.17e-08, - "defoes": 6.17e-08, - "deftness": 6.17e-08, - "degroot": 6.17e-08, - "dehiscence": 6.17e-08, - "deicing": 6.17e-08, - "demethylation": 6.17e-08, - "demurely": 6.17e-08, - "denature": 6.17e-08, - "dentata": 6.17e-08, - "deped": 6.17e-08, - "dessen": 6.17e-08, - "destabilisation": 6.17e-08, - "detriments": 6.17e-08, - "detwiler": 6.17e-08, - "devanagari": 6.17e-08, - "devotionals": 6.17e-08, - "diabolo": 6.17e-08, - "dieted": 6.17e-08, - "differents": 6.17e-08, - "diffie": 6.17e-08, - "digga": 6.17e-08, - "dilawar": 6.17e-08, - "diopter": 6.17e-08, - "disembowel": 6.17e-08, - "disinvited": 6.17e-08, - "disrobing": 6.17e-08, - "distention": 6.17e-08, - "dobsons": 6.17e-08, - "doffing": 6.17e-08, - "doggerel": 6.17e-08, - "dojos": 6.17e-08, - "doonan": 6.17e-08, - "dorval": 6.17e-08, - "douglasville": 6.17e-08, - "dowland": 6.17e-08, - "downloaders": 6.17e-08, - "dowsett": 6.17e-08, - "drizzt": 6.17e-08, - "dsf": 6.17e-08, - "dsps": 6.17e-08, - "dtw": 6.17e-08, - "duckweed": 6.17e-08, - "dukan": 6.17e-08, - "dumbs": 6.17e-08, - "dunkerque": 6.17e-08, - "dunlin": 6.17e-08, - "duramax": 6.17e-08, - "dwade": 6.17e-08, - "eag": 6.17e-08, - "easington": 6.17e-08, - "eather": 6.17e-08, - "eaw": 6.17e-08, - "econoline": 6.17e-08, - "ecthr": 6.17e-08, - "eesti": 6.17e-08, - "effet": 6.17e-08, - "egot": 6.17e-08, - "egy": 6.17e-08, - "eike": 6.17e-08, - "eks": 6.17e-08, - "elapses": 6.17e-08, - "elasticsearch": 6.17e-08, - "electability": 6.17e-08, - "electrocardiography": 6.17e-08, - "electrostatics": 6.17e-08, - "elfie": 6.17e-08, - "elsbeth": 6.17e-08, - "embeddable": 6.17e-08, - "emend": 6.17e-08, - "employe": 6.17e-08, - "employes": 6.17e-08, - "emsworth": 6.17e-08, - "emulsification": 6.17e-08, - "endodontics": 6.17e-08, - "enloe": 6.17e-08, - "eow": 6.17e-08, - "epicness": 6.17e-08, - "eroica": 6.17e-08, - "escorial": 6.17e-08, - "etonian": 6.17e-08, - "evader": 6.17e-08, - "everytown": 6.17e-08, - "everywoman": 6.17e-08, - "evoo": 6.17e-08, - "excoriating": 6.17e-08, - "excretes": 6.17e-08, - "exordium": 6.17e-08, - "exoteric": 6.17e-08, - "expectorant": 6.17e-08, - "extortionists": 6.17e-08, - "eyedropper": 6.17e-08, - "faites": 6.17e-08, - "fakhri": 6.17e-08, - "familes": 6.17e-08, - "farmar": 6.17e-08, - "farrows": 6.17e-08, - "fascinations": 6.17e-08, - "fastidiously": 6.17e-08, - "federline": 6.17e-08, - "fedotov": 6.17e-08, - "feg": 6.17e-08, - "feminazis": 6.17e-08, - "fenestra": 6.17e-08, - "feodor": 6.17e-08, - "ferlinghetti": 6.17e-08, - "fermenters": 6.17e-08, - "ferrells": 6.17e-08, - "ferruccio": 6.17e-08, - "fertilizes": 6.17e-08, - "fettered": 6.17e-08, - "fidgets": 6.17e-08, - "fika": 6.17e-08, - "filariasis": 6.17e-08, - "finalisation": 6.17e-08, - "firebrands": 6.17e-08, - "firelands": 6.17e-08, - "fishponds": 6.17e-08, - "flashbulbs": 6.17e-08, - "flatworms": 6.17e-08, - "flavell": 6.17e-08, - "fle": 6.17e-08, - "florsheim": 6.17e-08, - "flossy": 6.17e-08, - "fluorophore": 6.17e-08, - "fluster": 6.17e-08, - "fmcsa": 6.17e-08, - "fokus": 6.17e-08, - "foliated": 6.17e-08, - "footrest": 6.17e-08, - "forelock": 6.17e-08, - "foreskins": 6.17e-08, - "forint": 6.17e-08, - "formidably": 6.17e-08, - "forsakes": 6.17e-08, - "fosco": 6.17e-08, - "fossae": 6.17e-08, - "fragonard": 6.17e-08, - "francorchamps": 6.17e-08, - "frankfurters": 6.17e-08, - "fratellis": 6.17e-08, - "freemantle": 6.17e-08, - "frigo": 6.17e-08, - "frodsham": 6.17e-08, - "frohman": 6.17e-08, - "frons": 6.17e-08, - "ftes": 6.17e-08, - "fuckwits": 6.17e-08, - "fuera": 6.17e-08, - "funai": 6.17e-08, - "fundacion": 6.17e-08, - "galati": 6.17e-08, - "galion": 6.17e-08, - "gallipolis": 6.17e-08, - "galvanise": 6.17e-08, - "gambol": 6.17e-08, - "gangwon": 6.17e-08, - "garu": 6.17e-08, - "gaskill": 6.17e-08, - "gbv": 6.17e-08, - "gede": 6.17e-08, - "gentrify": 6.17e-08, - "gernot": 6.17e-08, - "gervaise": 6.17e-08, - "ghaffar": 6.17e-08, - "ghazala": 6.17e-08, - "gilas": 6.17e-08, - "giurgiu": 6.17e-08, - "glacis": 6.17e-08, - "glassboro": 6.17e-08, - "glasscock": 6.17e-08, - "glassing": 6.17e-08, - "glg": 6.17e-08, - "glhf": 6.17e-08, - "gloire": 6.17e-08, - "glomerulonephritis": 6.17e-08, - "glottis": 6.17e-08, - "godo": 6.17e-08, - "goines": 6.17e-08, - "golfed": 6.17e-08, - "gondry": 6.17e-08, - "goodtime": 6.17e-08, - "goslin": 6.17e-08, - "gothel": 6.17e-08, - "goudy": 6.17e-08, - "grabe": 6.17e-08, - "grandkid": 6.17e-08, - "granges": 6.17e-08, - "granulomas": 6.17e-08, - "greeneville": 6.17e-08, - "gregori": 6.17e-08, - "greymouth": 6.17e-08, - "grf": 6.17e-08, - "grichuk": 6.17e-08, - "groupware": 6.17e-08, - "grumblings": 6.17e-08, - "guen": 6.17e-08, - "guillemot": 6.17e-08, - "guiseppe": 6.17e-08, - "gurnard": 6.17e-08, - "gymboree": 6.17e-08, - "gyula": 6.17e-08, - "hadd": 6.17e-08, - "hairlines": 6.17e-08, - "haitham": 6.17e-08, - "hakon": 6.17e-08, - "halfheartedly": 6.17e-08, - "haneke": 6.17e-08, - "hania": 6.17e-08, - "hapkido": 6.17e-08, - "happys": 6.17e-08, - "harian": 6.17e-08, - "harleen": 6.17e-08, - "harped": 6.17e-08, - "hartwick": 6.17e-08, - "haughtily": 6.17e-08, - "hayami": 6.17e-08, - "hcb": 6.17e-08, - "healthwatch": 6.17e-08, - "hearsts": 6.17e-08, - "heelers": 6.17e-08, - "hejaz": 6.17e-08, - "hemo": 6.17e-08, - "henpecked": 6.17e-08, - "herero": 6.17e-08, - "heriots": 6.17e-08, - "hermiston": 6.17e-08, - "herrero": 6.17e-08, - "herries": 6.17e-08, - "hest": 6.17e-08, - "heterodimer": 6.17e-08, - "heterozygosity": 6.17e-08, - "hews": 6.17e-08, - "heyburn": 6.17e-08, - "hilfe": 6.17e-08, - "hinchingbrooke": 6.17e-08, - "hindbrain": 6.17e-08, - "hohen": 6.17e-08, - "holtzmann": 6.17e-08, - "honkers": 6.17e-08, - "honma": 6.17e-08, - "hoola": 6.17e-08, - "hopetoun": 6.17e-08, - "horlick": 6.17e-08, - "hortensia": 6.17e-08, - "hortus": 6.17e-08, - "hoser": 6.17e-08, - "hscs": 6.17e-08, - "hunterian": 6.17e-08, - "huyton": 6.17e-08, - "hydrophones": 6.17e-08, - "hyeok": 6.17e-08, - "hypnos": 6.17e-08, - "hypnotics": 6.17e-08, - "iams": 6.17e-08, - "iannucci": 6.17e-08, - "icecaps": 6.17e-08, - "icelandair": 6.17e-08, - "icosahedral": 6.17e-08, - "idot": 6.17e-08, - "igbt": 6.17e-08, - "iguchi": 6.17e-08, - "ihren": 6.17e-08, - "iiss": 6.17e-08, - "imari": 6.17e-08, - "imba": 6.17e-08, - "imessages": 6.17e-08, - "imminence": 6.17e-08, - "immunised": 6.17e-08, - "impellers": 6.17e-08, - "inaudibly": 6.17e-08, - "ingrates": 6.17e-08, - "insectoid": 6.17e-08, - "inspiratory": 6.17e-08, - "insurrectionists": 6.17e-08, - "intelli": 6.17e-08, - "intercessors": 6.17e-08, - "interlinear": 6.17e-08, - "interweaves": 6.17e-08, - "invergordon": 6.17e-08, - "investable": 6.17e-08, - "iptables": 6.17e-08, - "isabelles": 6.17e-08, - "isotretinoin": 6.17e-08, - "itchen": 6.17e-08, - "itemised": 6.17e-08, - "itemizing": 6.17e-08, - "iwai": 6.17e-08, - "izanami": 6.17e-08, - "jadi": 6.17e-08, - "jamiat": 6.17e-08, - "jarratt": 6.17e-08, - "jatropha": 6.17e-08, - "jaylon": 6.17e-08, - "jerkins": 6.17e-08, - "jevon": 6.17e-08, - "jigawa": 6.17e-08, - "jme": 6.17e-08, - "jmo": 6.17e-08, - "jnj": 6.17e-08, - "joa": 6.17e-08, - "jocelyne": 6.17e-08, - "jodl": 6.17e-08, - "joestar": 6.17e-08, - "johnno": 6.17e-08, - "jolteon": 6.17e-08, - "jopling": 6.17e-08, - "josephines": 6.17e-08, - "jpp": 6.17e-08, - "jrf": 6.17e-08, - "juat": 6.17e-08, - "judgeships": 6.17e-08, - "jungler": 6.17e-08, - "juzo": 6.17e-08, - "kadokawa": 6.17e-08, - "kaho": 6.17e-08, - "kalra": 6.17e-08, - "karama": 6.17e-08, - "kard": 6.17e-08, - "karlo": 6.17e-08, - "karya": 6.17e-08, - "katarzyna": 6.17e-08, - "katyusha": 6.17e-08, - "katze": 6.17e-08, - "kcon": 6.17e-08, - "keary": 6.17e-08, - "keays": 6.17e-08, - "kellermann": 6.17e-08, - "kellog": 6.17e-08, - "kemo": 6.17e-08, - "kenia": 6.17e-08, - "kento": 6.17e-08, - "keyframes": 6.17e-08, - "kft": 6.17e-08, - "khaleej": 6.17e-08, - "khilafah": 6.17e-08, - "kidmans": 6.17e-08, - "kieth": 6.17e-08, - "kinetically": 6.17e-08, - "kittiwakes": 6.17e-08, - "klcc": 6.17e-08, - "kleen": 6.17e-08, - "kleptomania": 6.17e-08, - "kohen": 6.17e-08, - "kold": 6.17e-08, - "koli": 6.17e-08, - "konga": 6.17e-08, - "koninklijke": 6.17e-08, - "korban": 6.17e-08, - "kosar": 6.17e-08, - "krabbe": 6.17e-08, - "krag": 6.17e-08, - "krikorian": 6.17e-08, - "kristeva": 6.17e-08, - "kronecker": 6.17e-08, - "kta": 6.17e-08, - "ktp": 6.17e-08, - "kunde": 6.17e-08, - "kundu": 6.17e-08, - "kunio": 6.17e-08, - "kurihara": 6.17e-08, - "kwaku": 6.17e-08, - "laal": 6.17e-08, - "lacon": 6.17e-08, - "lacys": 6.17e-08, - "lainie": 6.17e-08, - "lairds": 5.01e-08, - "lakhani": 6.17e-08, - "lalande": 6.17e-08, - "lalanne": 6.17e-08, - "laliga": 6.17e-08, - "lambast": 6.17e-08, - "lamotta": 6.17e-08, - "landale": 6.17e-08, - "landcruiser": 6.17e-08, - "landwehr": 6.17e-08, - "langridge": 6.17e-08, - "langur": 6.17e-08, - "larin": 6.17e-08, - "larocca": 6.17e-08, - "lati": 6.17e-08, - "lattin": 6.17e-08, - "lauretta": 6.17e-08, - "laurette": 6.17e-08, - "lawfare": 6.17e-08, - "ldb": 6.17e-08, - "leask": 6.17e-08, - "lechner": 6.17e-08, - "legitimising": 6.17e-08, - "leias": 6.17e-08, - "lentulus": 6.17e-08, - "leviton": 6.17e-08, - "lexicons": 6.17e-08, - "lgbtiq": 6.17e-08, - "libels": 6.17e-08, - "lickety": 6.17e-08, - "liefeld": 6.17e-08, - "lifejackets": 6.17e-08, - "lifestream": 6.17e-08, - "linnaean": 6.17e-08, - "lipkin": 6.17e-08, - "lithographed": 6.17e-08, - "livemint": 6.17e-08, - "lndia": 6.17e-08, - "loblaws": 6.17e-08, - "logotype": 6.17e-08, - "lolis": 6.17e-08, - "longton": 6.17e-08, - "loopback": 6.17e-08, - "loper": 6.17e-08, - "lorien": 6.17e-08, - "lovage": 6.17e-08, - "lowlight": 6.17e-08, - "lusignan": 6.17e-08, - "lutterworth": 6.17e-08, - "maari": 6.17e-08, - "maass": 6.17e-08, - "machados": 6.17e-08, - "mafi": 6.17e-08, - "magarey": 6.17e-08, - "magoffin": 6.17e-08, - "mahasabha": 6.17e-08, - "mahn": 6.17e-08, - "maister": 6.17e-08, - "mams": 6.17e-08, - "mammas": 6.17e-08, - "mamu": 6.17e-08, - "manal": 6.17e-08, - "mansoura": 6.17e-08, - "manwaring": 6.17e-08, - "mapmaker": 6.17e-08, - "mapreduce": 6.17e-08, - "marcius": 6.17e-08, - "mariusz": 6.17e-08, - "maroochydore": 6.17e-08, - "matchroom": 6.17e-08, - "maulvi": 6.17e-08, - "mayang": 6.17e-08, - "mbda": 6.17e-08, - "mbia": 6.17e-08, - "mccammon": 6.17e-08, - "mccardle": 6.17e-08, - "mccorquodale": 6.17e-08, - "mccovey": 6.17e-08, - "mcdonell": 6.17e-08, - "mcdonnells": 6.17e-08, - "mcgoverns": 6.17e-08, - "mcgowans": 6.17e-08, - "mckayla": 6.17e-08, - "mcsweeneys": 6.17e-08, - "meaden": 6.17e-08, - "medicago": 6.17e-08, - "mehboob": 6.17e-08, - "meineke": 6.17e-08, - "menifee": 6.17e-08, - "merrymaking": 6.17e-08, - "mesilla": 6.17e-08, - "mesos": 6.17e-08, - "metallized": 6.17e-08, - "mikmaq": 6.17e-08, - "miche": 6.17e-08, - "michy": 6.17e-08, - "middlebrow": 6.17e-08, - "mieux": 6.17e-08, - "mighta": 6.17e-08, - "mijo": 6.17e-08, - "mikas": 6.17e-08, - "militarists": 6.17e-08, - "minish": 6.17e-08, - "miniver": 6.17e-08, - "mismatching": 6.17e-08, - "missourian": 6.17e-08, - "mistyped": 6.17e-08, - "miters": 6.17e-08, - "mitm": 6.17e-08, - "mitton": 6.17e-08, - "mizpah": 6.17e-08, - "mjd": 6.17e-08, - "mladen": 6.17e-08, - "mmbtu": 6.17e-08, - "moctezuma": 6.17e-08, - "moiras": 6.17e-08, - "monastics": 6.17e-08, - "mondes": 6.17e-08, - "monnier": 6.17e-08, - "monthlies": 6.17e-08, - "moobs": 6.17e-08, - "moorea": 6.17e-08, - "moreish": 6.17e-08, - "motorcoach": 6.17e-08, - "mottola": 6.17e-08, - "moviegoer": 6.17e-08, - "moyse": 6.17e-08, - "mukha": 6.17e-08, - "mulches": 6.17e-08, - "multipole": 6.17e-08, - "mumu": 6.17e-08, - "muscogee": 6.17e-08, - "mutai": 6.17e-08, - "myka": 6.17e-08, - "nagant": 6.17e-08, - "nakshatra": 6.17e-08, - "nalbandian": 6.17e-08, - "namie": 6.17e-08, - "napiers": 6.17e-08, - "napolean": 6.17e-08, - "nassers": 6.17e-08, - "nataliya": 6.17e-08, - "nauruan": 6.17e-08, - "naypyidaw": 6.17e-08, - "ncdc": 6.17e-08, - "nealy": 6.17e-08, - "needin": 6.17e-08, - "negombo": 6.17e-08, - "nellies": 6.17e-08, - "nembutal": 6.17e-08, - "nenshi": 6.17e-08, - "neoplatonic": 6.17e-08, - "nephrectomy": 6.17e-08, - "nerium": 6.17e-08, - "neuchatel": 6.17e-08, - "neurath": 6.17e-08, - "neyman": 6.17e-08, - "nibelungen": 6.17e-08, - "nicea": 6.17e-08, - "nieuw": 6.17e-08, - "nishino": 6.17e-08, - "nnt": 6.17e-08, - "nonsmoker": 6.17e-08, - "nonuniform": 6.17e-08, - "nordhaus": 6.17e-08, - "noren": 6.17e-08, - "northlands": 6.17e-08, - "norv": 6.17e-08, - "noss": 6.17e-08, - "notepaper": 6.17e-08, - "nrb": 6.17e-08, - "nucleophile": 6.17e-08, - "nueve": 6.17e-08, - "nurmi": 6.17e-08, - "nuss": 6.17e-08, - "nyasa": 6.17e-08, - "nyaya": 6.17e-08, - "nycha": 6.17e-08, - "nysc": 6.17e-08, - "oaa": 6.17e-08, - "oakman": 6.17e-08, - "oatlands": 6.17e-08, - "oblasts": 6.17e-08, - "obu": 6.17e-08, - "obviated": 6.17e-08, - "oecds": 6.17e-08, - "oflife": 6.17e-08, - "ofo": 6.17e-08, - "okaloosa": 6.17e-08, - "oligodendrocytes": 6.17e-08, - "omidyar": 6.17e-08, - "omnibuses": 6.17e-08, - "omura": 6.17e-08, - "ontogenetic": 6.17e-08, - "opis": 6.17e-08, - "oportunity": 6.17e-08, - "orchis": 6.17e-08, - "organismal": 6.17e-08, - "orgo": 6.17e-08, - "ortigas": 6.17e-08, - "oruro": 6.17e-08, - "osan": 6.17e-08, - "osinbajo": 6.17e-08, - "ospreay": 6.17e-08, - "ossory": 6.17e-08, - "ostracize": 6.17e-08, - "otaki": 6.17e-08, - "otterbein": 6.17e-08, - "otunga": 6.17e-08, - "ouro": 6.17e-08, - "outcompete": 6.17e-08, - "overfished": 6.17e-08, - "overpricing": 6.17e-08, - "oversteps": 6.17e-08, - "owego": 6.17e-08, - "paddleboarding": 6.17e-08, - "paga": 6.17e-08, - "pallett": 6.17e-08, - "palling": 6.17e-08, - "palpitating": 6.17e-08, - "panerai": 6.17e-08, - "paquito": 6.17e-08, - "paraguayans": 6.17e-08, - "parametrization": 6.17e-08, - "parol": 6.17e-08, - "pasek": 6.17e-08, - "pasqual": 6.17e-08, - "patino": 6.17e-08, - "pavlyuchenkova": 6.17e-08, - "pealed": 6.17e-08, - "peated": 6.17e-08, - "pedicab": 6.17e-08, - "peelings": 6.17e-08, - "pennyroyal": 6.17e-08, - "penshurst": 6.17e-08, - "pensively": 6.17e-08, - "pepsis": 2.4e-08, - "persis": 6.17e-08, - "persistency": 6.17e-08, - "pfennig": 6.17e-08, - "pharmacopeia": 6.17e-08, - "phonologically": 6.17e-08, - "phosphorylase": 6.17e-08, - "photobombing": 6.17e-08, - "photobombs": 6.17e-08, - "photomontage": 6.17e-08, - "phraya": 6.17e-08, - "piccolomini": 6.17e-08, - "pickersgill": 6.17e-08, - "picoult": 6.17e-08, - "pierzynski": 6.17e-08, - "pininfarina": 6.17e-08, - "pixy": 6.17e-08, - "plasmapheresis": 6.17e-08, - "playthroughs": 6.17e-08, - "plunderers": 6.17e-08, - "plutocrat": 6.17e-08, - "pmos": 6.17e-08, - "podhoretz": 6.17e-08, - "politecnico": 6.17e-08, - "polyvalent": 6.17e-08, - "pomelo": 6.17e-08, - "popularising": 6.17e-08, - "postcolonialism": 6.17e-08, - "postern": 6.17e-08, - "posthumus": 6.17e-08, - "pottage": 6.17e-08, - "ppvs": 6.17e-08, - "pract": 6.17e-08, - "pranced": 6.17e-08, - "preachings": 6.17e-08, - "preceptors": 6.17e-08, - "prefixing": 6.17e-08, - "pregnenolone": 6.17e-08, - "prelaunch": 6.17e-08, - "prereq": 6.17e-08, - "primatologist": 6.17e-08, - "prising": 6.17e-08, - "proactiv": 6.17e-08, - "probaly": 6.17e-08, - "problematically": 6.17e-08, - "procedurals": 6.17e-08, - "proffering": 6.17e-08, - "prole": 6.17e-08, - "prufrock": 6.17e-08, - "pseudorandom": 6.17e-08, - "pshaw": 6.17e-08, - "psychophysics": 6.17e-08, - "punctata": 6.17e-08, - "pung": 6.17e-08, - "pwp": 6.17e-08, - "pyra": 6.17e-08, - "qara": 6.17e-08, - "quebecor": 6.17e-08, - "quicks": 6.17e-08, - "quicky": 6.17e-08, - "quillan": 6.17e-08, - "quintillion": 6.17e-08, - "quiros": 6.17e-08, - "rabah": 6.17e-08, - "rabbids": 6.17e-08, - "raconteurs": 6.17e-08, - "radhe": 6.17e-08, - "rahmani": 6.17e-08, - "rambert": 6.17e-08, - "ramm": 6.17e-08, - "randeep": 6.17e-08, - "randolphs": 6.17e-08, - "rangoli": 6.17e-08, - "raq": 6.17e-08, - "rashids": 6.17e-08, - "rastogi": 6.17e-08, - "rationalistic": 6.17e-08, - "rawi": 6.17e-08, - "rayudu": 6.17e-08, - "rdas": 6.17e-08, - "rdb": 6.17e-08, - "realtek": 6.17e-08, - "realz": 6.17e-08, - "rebelde": 6.17e-08, - "redbank": 6.17e-08, - "reddi": 6.17e-08, - "rededicate": 6.17e-08, - "redmonds": 6.17e-08, - "referrer": 6.17e-08, - "regier": 6.17e-08, - "reinsdorf": 6.17e-08, - "relisted": 6.17e-08, - "remainer": 6.17e-08, - "remick": 6.17e-08, - "renne": 6.17e-08, - "reorienting": 6.17e-08, - "reprocess": 6.17e-08, - "reprove": 6.17e-08, - "resolvable": 6.17e-08, - "resupplying": 6.17e-08, - "reti": 6.17e-08, - "retz": 6.17e-08, - "reverser": 6.17e-08, - "revolutionists": 6.17e-08, - "rhb": 6.17e-08, - "rheum": 6.17e-08, - "rhymer": 6.17e-08, - "ribonucleic": 6.17e-08, - "rickmansworth": 6.17e-08, - "rideable": 6.17e-08, - "riehl": 6.17e-08, - "rissa": 6.17e-08, - "rml": 6.17e-08, - "robarts": 6.17e-08, - "robocall": 6.17e-08, - "rodarte": 6.17e-08, - "rodion": 6.17e-08, - "rogerss": 6.17e-08, - "roraima": 6.17e-08, - "rotationally": 6.17e-08, - "roughy": 6.17e-08, - "roundheads": 6.17e-08, - "rousers": 6.17e-08, - "rsvpd": 6.17e-08, - "rund": 6.17e-08, - "runts": 6.17e-08, - "saara": 6.17e-08, - "sabes": 6.17e-08, - "saca": 6.17e-08, - "sacp": 6.17e-08, - "sadeghi": 6.17e-08, - "saids": 6.17e-08, - "saiva": 6.17e-08, - "salil": 6.17e-08, - "salima": 6.17e-08, - "salleh": 6.17e-08, - "samut": 6.17e-08, - "sanctis": 6.17e-08, - "saquon": 6.17e-08, - "sarepta": 6.17e-08, - "satins": 6.17e-08, - "scats": 6.17e-08, - "schakowsky": 6.17e-08, - "schill": 6.17e-08, - "schneller": 6.17e-08, - "schoch": 6.17e-08, - "scholastica": 6.17e-08, - "scholten": 6.17e-08, - "scorches": 6.17e-08, - "screensavers": 6.17e-08, - "scrivens": 6.17e-08, - "scroggins": 6.17e-08, - "scrunchies": 6.17e-08, - "sdxc": 6.17e-08, - "seatpost": 6.17e-08, - "secularisation": 6.17e-08, - "sedins": 6.17e-08, - "seibel": 6.17e-08, - "selenide": 6.17e-08, - "semedo": 6.17e-08, - "semitones": 6.17e-08, - "senat": 6.17e-08, - "senti": 6.17e-08, - "seppi": 6.17e-08, - "sericulture": 6.17e-08, - "severnaya": 6.17e-08, - "sgb": 6.17e-08, - "sgf": 6.17e-08, - "shacked": 6.17e-08, - "shackletons": 6.17e-08, - "shaddai": 6.17e-08, - "shakil": 6.17e-08, - "shakiness": 6.17e-08, - "shakthi": 6.17e-08, - "shaku": 6.17e-08, - "sharat": 6.17e-08, - "shazier": 6.17e-08, - "shearson": 6.17e-08, - "shenzhou": 6.17e-08, - "sherrys": 6.17e-08, - "shipka": 6.17e-08, - "shitloads": 6.17e-08, - "shootaround": 6.17e-08, - "shorthorn": 6.17e-08, - "shushan": 6.17e-08, - "shyla": 6.17e-08, - "sickbay": 6.17e-08, - "sicut": 6.17e-08, - "siddle": 6.17e-08, - "sidewinders": 6.17e-08, - "sies": 6.17e-08, - "sightly": 6.17e-08, - "sigman": 6.17e-08, - "signees": 6.17e-08, - "silsbee": 6.17e-08, - "silvestro": 6.17e-08, - "simpatico": 6.17e-08, - "simper": 6.17e-08, - "sinton": 6.17e-08, - "sistani": 6.17e-08, - "sked": 6.17e-08, - "skivvies": 6.17e-08, - "skoll": 6.17e-08, - "skullgirls": 6.17e-08, - "skywards": 6.17e-08, - "sloganeering": 6.17e-08, - "smokiness": 6.17e-08, - "smudgy": 6.17e-08, - "snls": 6.17e-08, - "snuggie": 6.17e-08, - "soden": 6.17e-08, - "sodus": 6.17e-08, - "soga": 6.17e-08, - "solingen": 6.17e-08, - "solnit": 6.17e-08, - "sonyas": 6.17e-08, - "sorbent": 6.17e-08, - "sorge": 6.17e-08, - "soro": 6.17e-08, - "sots": 6.17e-08, - "soulcalibur": 6.17e-08, - "sowie": 6.17e-08, - "spacelab": 6.17e-08, - "spackle": 6.17e-08, - "spandrels": 6.17e-08, - "spankin": 6.17e-08, - "specifiers": 6.17e-08, - "spinola": 6.17e-08, - "splats": 6.17e-08, - "spokesmodel": 6.17e-08, - "spoliation": 6.17e-08, - "sportback": 6.17e-08, - "spruces": 6.17e-08, - "sqq": 6.17e-08, - "squidgy": 6.17e-08, - "srr": 6.17e-08, - "stach": 6.17e-08, - "staf": 6.17e-08, - "stainton": 6.17e-08, - "stalagmite": 6.17e-08, - "standardising": 6.17e-08, - "stanek": 6.17e-08, - "starlite": 6.17e-08, - "steinert": 6.17e-08, - "stenton": 6.17e-08, - "sterna": 6.17e-08, - "stethoscopes": 6.17e-08, - "stiches": 6.17e-08, - "stilinski": 6.17e-08, - "stockmen": 6.17e-08, - "stonegate": 6.17e-08, - "storico": 6.17e-08, - "strathallan": 6.17e-08, - "streator": 6.17e-08, - "streetscapes": 6.17e-08, - "stro": 6.17e-08, - "sturge": 6.17e-08, - "suan": 6.17e-08, - "subtropics": 6.17e-08, - "successional": 6.17e-08, - "sugababes": 6.17e-08, - "suggestibility": 6.17e-08, - "sumthin": 6.17e-08, - "sundried": 6.17e-08, - "superga": 6.17e-08, - "superimposition": 6.17e-08, - "supernatants": 6.17e-08, - "surprize": 6.17e-08, - "sweetmeats": 6.17e-08, - "swingarm": 6.17e-08, - "swingle": 6.17e-08, - "swoboda": 6.17e-08, - "sya": 6.17e-08, - "symfony": 6.17e-08, - "symphonie": 6.17e-08, - "symphonys": 6.17e-08, - "tacticians": 6.17e-08, - "taille": 6.17e-08, - "takeshita": 6.17e-08, - "talman": 6.17e-08, - "tampers": 6.17e-08, - "tandoor": 6.17e-08, - "tankless": 6.17e-08, - "tarah": 6.17e-08, - "tast": 6.17e-08, - "tearin": 6.17e-08, - "tehrani": 6.17e-08, - "testarossa": 6.17e-08, - "tevis": 6.17e-08, - "thalers": 6.17e-08, - "thermomix": 6.17e-08, - "thiols": 6.17e-08, - "thomases": 6.17e-08, - "threadlike": 6.17e-08, - "timotheus": 6.17e-08, - "tingled": 6.17e-08, - "tism": 6.17e-08, - "titov": 6.17e-08, - "tkr": 6.17e-08, - "tmn": 6.17e-08, - "toal": 6.17e-08, - "todor": 6.17e-08, - "tomcats": 6.17e-08, - "tooooo": 6.17e-08, - "topkapi": 6.17e-08, - "tord": 6.17e-08, - "torna": 6.17e-08, - "toyin": 6.17e-08, - "trabant": 6.17e-08, - "tranquilized": 6.17e-08, - "traralgon": 6.17e-08, - "trendsetting": 6.17e-08, - "treo": 6.17e-08, - "tresor": 6.17e-08, - "trichloride": 6.17e-08, - "triply": 6.17e-08, - "trippe": 6.17e-08, - "triumphalism": 6.17e-08, - "trk": 6.17e-08, - "trombley": 6.17e-08, - "tsas": 6.17e-08, - "tularemia": 6.17e-08, - "ucg": 6.17e-08, - "uden": 6.17e-08, - "umbreon": 6.17e-08, - "unbelieveable": 6.17e-08, - "uncured": 6.17e-08, - "undecidable": 6.17e-08, - "undernutrition": 6.17e-08, - "undershirts": 6.17e-08, - "uneventfully": 6.17e-08, - "unexploited": 6.17e-08, - "unfenced": 6.17e-08, - "unfriending": 6.17e-08, - "ungoverned": 6.17e-08, - "unlatched": 6.17e-08, - "unprofessionally": 6.17e-08, - "unsettles": 6.17e-08, - "unstained": 6.17e-08, - "untypical": 6.17e-08, - "updrafts": 6.17e-08, - "urc": 6.17e-08, - "urca": 6.17e-08, - "uren": 6.17e-08, - "urvashi": 6.17e-08, - "vally": 6.17e-08, - "valproic": 6.17e-08, - "vamping": 6.17e-08, - "varices": 6.17e-08, - "vasudev": 6.17e-08, - "vaught": 6.17e-08, - "vci": 6.17e-08, - "vcl": 6.17e-08, - "vdp": 6.17e-08, - "veale": 6.17e-08, - "venkaiah": 6.17e-08, - "ventolin": 6.17e-08, - "verbalizing": 6.17e-08, - "vervain": 6.17e-08, - "vestibules": 6.17e-08, - "vibro": 6.17e-08, - "victimology": 6.17e-08, - "vidcon": 6.17e-08, - "viele": 6.17e-08, - "vimes": 6.17e-08, - "vinogradov": 6.17e-08, - "vinter": 6.17e-08, - "vitruvian": 6.17e-08, - "voe": 6.17e-08, - "vogelsong": 6.17e-08, - "volute": 6.17e-08, - "vulgarities": 6.17e-08, - "wadebridge": 6.17e-08, - "waggling": 6.17e-08, - "walbridge": 6.17e-08, - "walke": 6.17e-08, - "wallner": 6.17e-08, - "wamp": 6.17e-08, - "wanchai": 6.17e-08, - "wankhede": 6.17e-08, - "warre": 6.17e-08, - "washin": 6.17e-08, - "watrous": 6.17e-08, - "wdym": 6.17e-08, - "weasleys": 5.75e-08, - "welkin": 6.17e-08, - "wellens": 6.17e-08, - "westmacott": 6.17e-08, - "whelming": 6.17e-08, - "whitecross": 6.17e-08, - "whitefriars": 6.17e-08, - "whitmarsh": 6.17e-08, - "whittakers": 6.17e-08, - "wiaa": 6.17e-08, - "wickmayer": 6.17e-08, - "wier": 6.17e-08, - "wigand": 6.17e-08, - "wigg": 6.17e-08, - "wigged": 6.17e-08, - "wilken": 6.17e-08, - "willbe": 6.17e-08, - "willens": 6.17e-08, - "winco": 6.17e-08, - "windsurfers": 6.17e-08, - "winglets": 6.17e-08, - "winkles": 6.17e-08, - "wisecrack": 6.17e-08, - "wiss": 6.17e-08, - "withdrawl": 6.17e-08, - "wnet": 6.17e-08, - "wob": 6.17e-08, - "wojtyla": 6.17e-08, - "woodchips": 6.17e-08, - "woomera": 6.17e-08, - "worldtour": 6.17e-08, - "wpd": 6.17e-08, - "wsjs": 6.17e-08, - "xiaoyu": 6.17e-08, - "xingu": 6.17e-08, - "xlm": 6.17e-08, - "xts": 6.17e-08, - "yaad": 6.17e-08, - "yakety": 6.17e-08, - "yamamura": 6.17e-08, - "yaml": 6.17e-08, - "yanomami": 6.17e-08, - "yazd": 6.17e-08, - "yifan": 6.17e-08, - "yildirim": 6.17e-08, - "youmans": 6.17e-08, - "ytterbium": 6.17e-08, - "yuasa": 6.17e-08, - "yupp": 6.17e-08, - "zamani": 6.17e-08, - "zeitz": 6.17e-08, - "ziering": 6.17e-08, - "zildjian": 6.17e-08, - "zinchenko": 6.17e-08, - "zoomable": 6.17e-08, - "zork": 6.17e-08, - "aaaaaaand": 6.03e-08, - "abadie": 6.03e-08, - "abercorn": 6.03e-08, - "abraded": 6.03e-08, - "acar": 6.03e-08, - "accomodating": 6.03e-08, - "acculturated": 6.03e-08, - "acetabulum": 6.03e-08, - "acidifying": 6.03e-08, - "adeleke": 6.03e-08, - "ademola": 6.03e-08, - "adhemar": 6.03e-08, - "advan": 6.03e-08, - "advertisment": 6.03e-08, - "advocare": 6.03e-08, - "adyar": 6.03e-08, - "adze": 6.03e-08, - "afganistan": 6.03e-08, - "afterimage": 6.03e-08, - "agan": 6.03e-08, - "agawam": 6.03e-08, - "agender": 6.03e-08, - "agriculturists": 6.03e-08, - "agrochemical": 6.03e-08, - "ahvaz": 6.03e-08, - "aicte": 6.03e-08, - "aiib": 6.03e-08, - "airily": 6.03e-08, - "airtran": 6.03e-08, - "aishah": 6.03e-08, - "aiu": 6.03e-08, - "aizu": 6.03e-08, - "alack": 6.03e-08, - "aldersgate": 6.03e-08, - "alecto": 6.03e-08, - "algren": 6.03e-08, - "allaire": 6.03e-08, - "allawi": 6.03e-08, - "allemande": 6.03e-08, - "allylic": 6.03e-08, - "altice": 6.03e-08, - "amand": 6.03e-08, - "amandine": 6.03e-08, - "amaranthus": 6.03e-08, - "ameobi": 6.03e-08, - "amigurumi": 6.03e-08, - "amnesic": 6.03e-08, - "amorality": 6.03e-08, - "amoris": 6.03e-08, - "anabasis": 6.03e-08, - "andina": 6.03e-08, - "angstroms": 6.03e-08, - "annelise": 6.03e-08, - "annett": 6.03e-08, - "anser": 6.03e-08, - "antipolo": 6.03e-08, - "appen": 6.03e-08, - "appliques": 6.03e-08, - "apposition": 6.03e-08, - "apprenticing": 6.03e-08, - "araucaria": 6.03e-08, - "archivio": 6.03e-08, - "ardsley": 6.03e-08, - "argumentum": 6.03e-08, - "arlanda": 6.03e-08, - "arlovski": 6.03e-08, - "arriaga": 6.03e-08, - "arseny": 6.03e-08, - "arteritis": 6.03e-08, - "ases": 6.03e-08, - "asherah": 6.03e-08, - "asphyxiate": 6.03e-08, - "assasination": 6.03e-08, - "astringency": 6.03e-08, - "atau": 6.03e-08, - "atque": 6.03e-08, - "atsuko": 6.03e-08, - "attard": 6.03e-08, - "auda": 6.03e-08, - "audemars": 6.03e-08, - "augmentative": 6.03e-08, - "aup": 6.03e-08, - "authenticates": 6.03e-08, - "avivs": 6.03e-08, - "avonmouth": 6.03e-08, - "axum": 6.03e-08, - "aylin": 6.03e-08, - "ayumu": 6.03e-08, - "aznar": 6.03e-08, - "babyish": 6.03e-08, - "bachrach": 6.03e-08, - "backfilled": 6.03e-08, - "backstabbed": 6.03e-08, - "bacs": 6.03e-08, - "baiters": 6.03e-08, - "baju": 6.03e-08, - "bansko": 6.03e-08, - "banya": 6.03e-08, - "baringo": 6.03e-08, - "barracudas": 6.03e-08, - "barragan": 6.03e-08, - "bastin": 6.03e-08, - "batallion": 6.03e-08, - "bayles": 6.03e-08, - "bazi": 6.03e-08, - "beadles": 6.03e-08, - "bearly": 6.03e-08, - "beco": 6.03e-08, - "beddoe": 6.03e-08, - "bedrest": 6.03e-08, - "beechey": 6.03e-08, - "befalling": 6.03e-08, - "behari": 6.03e-08, - "belur": 6.03e-08, - "bennelong": 6.03e-08, - "beriberi": 6.03e-08, - "bericht": 6.03e-08, - "bernadine": 6.03e-08, - "bgl": 6.03e-08, - "bhansali": 6.03e-08, - "bharu": 6.03e-08, - "bhumi": 6.03e-08, - "bided": 6.03e-08, - "billeting": 6.03e-08, - "biodefense": 6.03e-08, - "biosolids": 6.03e-08, - "birdsville": 6.03e-08, - "blamey": 6.03e-08, - "blancas": 6.03e-08, - "blueness": 6.03e-08, - "bluestem": 6.03e-08, - "blytheville": 6.03e-08, - "bmv": 6.03e-08, - "boeck": 6.03e-08, - "boga": 6.03e-08, - "bogarts": 6.03e-08, - "boger": 6.03e-08, - "bogglingly": 6.03e-08, - "boley": 6.03e-08, - "boneheads": 6.03e-08, - "boondock": 6.03e-08, - "booneville": 6.03e-08, - "borchardt": 6.03e-08, - "borna": 6.03e-08, - "botev": 6.03e-08, - "bould": 6.03e-08, - "boyardee": 6.03e-08, - "brachiopod": 6.03e-08, - "brahmanical": 6.03e-08, - "braincells": 6.03e-08, - "brancato": 6.03e-08, - "brawled": 6.03e-08, - "braziers": 6.03e-08, - "bregenz": 6.03e-08, - "brera": 6.03e-08, - "bridgehampton": 6.03e-08, - "brietbart": 6.03e-08, - "brigadiers": 6.03e-08, - "brigit": 6.03e-08, - "brokenshire": 6.03e-08, - "bronchiectasis": 6.03e-08, - "brookshire": 6.03e-08, - "brose": 6.03e-08, - "brownshirts": 6.03e-08, - "brujo": 6.03e-08, - "brysons": 6.03e-08, - "btus": 6.03e-08, - "bullosa": 6.03e-08, - "bumpkins": 6.03e-08, - "burchett": 6.03e-08, - "burslem": 6.03e-08, - "bushed": 6.03e-08, - "buttressing": 6.03e-08, - "byker": 6.03e-08, - "caer": 6.03e-08, - "caloocan": 6.03e-08, - "calthorpe": 6.03e-08, - "camarines": 6.03e-08, - "cambie": 6.03e-08, - "cambyses": 6.03e-08, - "campagnolo": 6.03e-08, - "canda": 6.03e-08, - "carjack": 6.03e-08, - "carmichaels": 6.03e-08, - "cartan": 6.03e-08, - "casares": 6.03e-08, - "cassander": 6.03e-08, - "cassim": 6.03e-08, - "casteism": 6.03e-08, - "castellated": 6.03e-08, - "catchable": 6.03e-08, - "catecholamine": 6.03e-08, - "catnap": 6.03e-08, - "ceaser": 6.03e-08, - "celaya": 6.03e-08, - "celias": 6.03e-08, - "celis": 6.03e-08, - "cementitious": 6.03e-08, - "cenci": 6.03e-08, - "centricity": 6.03e-08, - "ceph": 6.03e-08, - "ceremonious": 6.03e-08, - "chainring": 6.03e-08, - "chairlifts": 6.03e-08, - "chamoun": 6.03e-08, - "chanterelle": 6.03e-08, - "characterisations": 6.03e-08, - "charenton": 6.03e-08, - "charism": 6.03e-08, - "cheapskates": 6.03e-08, - "checkbooks": 6.03e-08, - "chedi": 6.03e-08, - "chenier": 6.03e-08, - "cheveley": 6.03e-08, - "chimaera": 6.03e-08, - "chimichurri": 6.03e-08, - "chintzy": 6.03e-08, - "chippers": 6.03e-08, - "chittering": 6.03e-08, - "chlorofluorocarbons": 6.03e-08, - "chom": 6.03e-08, - "christodoulou": 6.03e-08, - "cinzia": 6.03e-08, - "circumnavigating": 6.03e-08, - "citywalk": 6.03e-08, - "cix": 6.03e-08, - "clamoured": 6.03e-08, - "clatsop": 6.03e-08, - "clauson": 6.03e-08, - "cleanout": 6.03e-08, - "clockmakers": 6.03e-08, - "clore": 6.03e-08, - "coalville": 6.03e-08, - "cobbold": 6.03e-08, - "cobre": 6.03e-08, - "cochon": 6.03e-08, - "cockblock": 6.03e-08, - "cockerels": 6.03e-08, - "codewords": 6.03e-08, - "coentrao": 6.03e-08, - "cofounders": 6.03e-08, - "cok": 6.03e-08, - "coldblooded": 6.03e-08, - "colinas": 6.03e-08, - "collegians": 6.03e-08, - "colleton": 6.03e-08, - "colourings": 6.03e-08, - "commi": 6.03e-08, - "commiserating": 6.03e-08, - "comunity": 6.03e-08, - "confi": 6.03e-08, - "confort": 6.03e-08, - "cono": 6.03e-08, - "consiglio": 6.03e-08, - "contiguity": 6.03e-08, - "convocations": 6.03e-08, - "cooperators": 6.03e-08, - "copays": 6.03e-08, - "coralline": 6.03e-08, - "cordeiro": 6.03e-08, - "cordner": 6.03e-08, - "corran": 6.03e-08, - "coruna": 6.03e-08, - "cotyledons": 6.03e-08, - "countenanced": 6.03e-08, - "covarrubias": 6.03e-08, - "coventrys": 6.03e-08, - "cramers": 6.03e-08, - "creamsicle": 6.03e-08, - "crenellated": 6.03e-08, - "crocked": 6.03e-08, - "crossville": 6.03e-08, - "crytek": 6.03e-08, - "csat": 6.03e-08, - "cudgels": 6.03e-08, - "cuenta": 6.03e-08, - "curettage": 6.03e-08, - "currencys": 6.03e-08, - "currumbin": 6.03e-08, - "custards": 6.03e-08, - "custos": 6.03e-08, - "cxc": 6.03e-08, - "dactyl": 6.03e-08, - "dahiya": 6.03e-08, - "dallara": 6.03e-08, - "damians": 6.03e-08, - "dandan": 6.03e-08, - "danila": 6.03e-08, - "dannon": 6.03e-08, - "darnedest": 6.03e-08, - "datamining": 6.03e-08, - "datang": 6.03e-08, - "davitt": 6.03e-08, - "deafen": 6.03e-08, - "debacles": 6.03e-08, - "deborahs": 6.03e-08, - "decongestants": 6.03e-08, - "decoratively": 6.03e-08, - "dedalus": 6.03e-08, - "deepthroating": 6.03e-08, - "deerhunter": 6.03e-08, - "dels": 6.03e-08, - "demur": 6.03e-08, - "dentons": 6.03e-08, - "dereck": 6.03e-08, - "derwentwater": 6.03e-08, - "desperadoes": 6.03e-08, - "deutz": 6.03e-08, - "deverell": 6.03e-08, - "devoir": 6.03e-08, - "dgd": 6.03e-08, - "dhruva": 6.03e-08, - "dhyana": 6.03e-08, - "dicarboxylic": 6.03e-08, - "diccionario": 6.03e-08, - "digraphs": 6.03e-08, - "dipl": 6.03e-08, - "disarticulated": 6.03e-08, - "discographies": 6.03e-08, - "discontentment": 6.03e-08, - "disgorge": 6.03e-08, - "dishy": 6.03e-08, - "dithered": 6.03e-08, - "dkr": 6.03e-08, - "dlsu": 6.03e-08, - "dolf": 6.03e-08, - "doniger": 6.03e-08, - "donkin": 6.03e-08, - "doomsayers": 6.03e-08, - "downingtown": 6.03e-08, - "dpoy": 6.03e-08, - "dragonlance": 6.03e-08, - "dreamcoat": 6.03e-08, - "dressmakers": 6.03e-08, - "dumbwaiter": 6.03e-08, - "duminy": 6.03e-08, - "dungan": 6.03e-08, - "durans": 6.03e-08, - "durov": 6.03e-08, - "dxy": 6.03e-08, - "eastin": 6.03e-08, - "eastmans": 6.03e-08, - "eavesdropper": 6.03e-08, - "ebdon": 6.03e-08, - "ebru": 6.03e-08, - "economica": 6.03e-08, - "ecotone": 6.03e-08, - "eddystone": 6.03e-08, - "edinger": 6.03e-08, - "effortful": 6.03e-08, - "ehhhhh": 6.03e-08, - "eiland": 6.03e-08, - "einsatzgruppen": 6.03e-08, - "eisai": 6.03e-08, - "eisenach": 6.03e-08, - "eius": 6.03e-08, - "ekberg": 6.03e-08, - "elanna": 6.03e-08, - "elastase": 6.03e-08, - "eleanora": 6.03e-08, - "ellos": 6.03e-08, - "elneny": 6.03e-08, - "elsey": 6.03e-08, - "embayment": 6.03e-08, - "emps": 6.03e-08, - "endocannabinoid": 6.03e-08, - "enervating": 6.03e-08, - "eniac": 6.03e-08, - "enlivens": 6.03e-08, - "enner": 6.03e-08, - "erdington": 6.03e-08, - "ergenekon": 6.03e-08, - "ericksons": 6.03e-08, - "eroge": 6.03e-08, - "eshel": 6.03e-08, - "eshkol": 6.03e-08, - "esiason": 6.03e-08, - "espncricinfo": 6.03e-08, - "esra": 6.03e-08, - "essexs": 6.03e-08, - "etomidate": 6.03e-08, - "etx": 6.03e-08, - "everynight": 6.03e-08, - "everyting": 6.03e-08, - "evid": 6.03e-08, - "evms": 6.03e-08, - "exaggeratedly": 6.03e-08, - "exclave": 6.03e-08, - "exhib": 6.03e-08, - "exhuming": 6.03e-08, - "existentialists": 6.03e-08, - "expatriation": 6.03e-08, - "expres": 6.03e-08, - "externalize": 6.03e-08, - "faia": 6.03e-08, - "fairlight": 6.03e-08, - "falck": 6.03e-08, - "fanboying": 6.03e-08, - "fansites": 6.03e-08, - "farahs": 6.03e-08, - "fattie": 6.03e-08, - "faunus": 6.03e-08, - "fbn": 6.03e-08, - "feaster": 6.03e-08, - "federate": 6.03e-08, - "fef": 6.03e-08, - "fellinis": 6.03e-08, - "femen": 6.03e-08, - "feminizing": 6.03e-08, - "fent": 6.03e-08, - "ferm": 6.03e-08, - "ferox": 6.03e-08, - "feroze": 6.03e-08, - "feste": 6.03e-08, - "fethiye": 6.03e-08, - "fike": 6.03e-08, - "filme": 6.03e-08, - "finbar": 6.03e-08, - "finnmark": 6.03e-08, - "firestick": 6.03e-08, - "fiti": 6.03e-08, - "fitna": 6.03e-08, - "fitty": 6.03e-08, - "fitzrovia": 6.03e-08, - "flamer": 6.03e-08, - "flannagan": 6.03e-08, - "flatfoot": 6.03e-08, - "floatin": 6.03e-08, - "flubber": 6.03e-08, - "fluting": 6.03e-08, - "flyte": 6.03e-08, - "fmj": 6.03e-08, - "fokin": 6.03e-08, - "foodland": 6.03e-08, - "foreshortening": 6.03e-08, - "forli": 6.03e-08, - "fortinet": 6.03e-08, - "foxcatcher": 6.03e-08, - "foxing": 6.03e-08, - "frage": 6.03e-08, - "frahm": 6.03e-08, - "frcs": 6.03e-08, - "frederique": 6.03e-08, - "freja": 6.03e-08, - "fria": 6.03e-08, - "frisbie": 6.03e-08, - "fritzi": 6.03e-08, - "froese": 6.03e-08, - "furter": 6.03e-08, - "gallman": 6.03e-08, - "gameover": 6.03e-08, - "gametophyte": 6.03e-08, - "gameweek": 6.03e-08, - "gamp": 6.03e-08, - "ganoderma": 6.03e-08, - "garching": 6.03e-08, - "gaudet": 6.03e-08, - "gbenga": 6.03e-08, - "gbx": 6.03e-08, - "geesh": 6.03e-08, - "geisinger": 6.03e-08, - "geoid": 6.03e-08, - "geomorphic": 6.03e-08, - "geral": 6.03e-08, - "gering": 6.03e-08, - "gersh": 6.03e-08, - "geto": 6.03e-08, - "ggc": 6.03e-08, - "ghe": 6.03e-08, - "ghor": 6.03e-08, - "gibs": 6.03e-08, - "gilkey": 6.03e-08, - "gimignano": 6.03e-08, - "gingiva": 6.03e-08, - "gingko": 6.03e-08, - "ginnys": 6.03e-08, - "giornale": 6.03e-08, - "glassblowing": 6.03e-08, - "glenavon": 6.03e-08, - "glimpsing": 6.03e-08, - "glints": 6.03e-08, - "glowsticks": 6.03e-08, - "glycosidic": 6.03e-08, - "gnn": 6.03e-08, - "gnomic": 6.03e-08, - "gnomon": 6.03e-08, - "godber": 6.03e-08, - "godwit": 6.03e-08, - "goggin": 6.03e-08, - "goldmember": 6.03e-08, - "goleman": 6.03e-08, - "goltz": 6.03e-08, - "gooooood": 6.03e-08, - "gopichand": 6.03e-08, - "gorgo": 6.03e-08, - "gotthard": 6.03e-08, - "goyder": 6.03e-08, - "grandjean": 6.03e-08, - "grapplers": 6.03e-08, - "greenly": 6.03e-08, - "greipel": 6.03e-08, - "gremio": 6.03e-08, - "gres": 6.03e-08, - "grif": 6.03e-08, - "griscom": 6.03e-08, - "grizzle": 6.03e-08, - "groggily": 6.03e-08, - "grottos": 6.03e-08, - "grup": 6.03e-08, - "gubler": 6.03e-08, - "gudas": 6.03e-08, - "guider": 6.03e-08, - "guingamp": 6.03e-08, - "gurudev": 6.03e-08, - "gusti": 6.03e-08, - "gymnasia": 6.03e-08, - "hairdryers": 6.03e-08, - "hairstylists": 6.03e-08, - "halfcourt": 6.03e-08, - "hamachi": 6.03e-08, - "hammersteins": 6.03e-08, - "hanka": 6.03e-08, - "hankie": 6.03e-08, - "hanya": 6.03e-08, - "harlock": 6.03e-08, - "harmans": 6.03e-08, - "harvill": 6.03e-08, - "hatten": 6.03e-08, - "haun": 6.03e-08, - "havea": 6.03e-08, - "hawass": 6.03e-08, - "hawksbill": 6.03e-08, - "hayton": 6.03e-08, - "heforshe": 6.03e-08, - "helden": 6.03e-08, - "helos": 6.03e-08, - "hemangioma": 6.03e-08, - "henceforward": 6.03e-08, - "hend": 6.03e-08, - "henery": 6.03e-08, - "henney": 6.03e-08, - "henningsen": 6.03e-08, - "henrikh": 6.03e-08, - "herbaria": 6.03e-08, - "hereon": 6.03e-08, - "hermie": 6.03e-08, - "heyerdahl": 6.03e-08, - "hhe": 6.03e-08, - "highquality": 6.03e-08, - "hinky": 6.03e-08, - "hirokazu": 6.03e-08, - "hirsutism": 6.03e-08, - "histor": 6.03e-08, - "hlc": 6.03e-08, - "hockaday": 6.03e-08, - "hoffmeister": 6.03e-08, - "holguin": 6.03e-08, - "holofernes": 6.03e-08, - "homogenize": 6.03e-08, - "honeoye": 6.03e-08, - "honora": 6.03e-08, - "honus": 6.03e-08, - "hoofing": 6.03e-08, - "hoor": 6.03e-08, - "horak": 6.03e-08, - "horsman": 6.03e-08, - "hoven": 6.03e-08, - "howa": 6.03e-08, - "hudler": 6.03e-08, - "huds": 5.62e-08, - "huli": 6.03e-08, - "humblebrag": 6.03e-08, - "humidification": 6.03e-08, - "hunchbacked": 6.03e-08, - "hungaroring": 6.03e-08, - "hurted": 6.03e-08, - "hybridizing": 6.03e-08, - "hyphal": 6.03e-08, - "hypomania": 6.03e-08, - "iberians": 6.03e-08, - "icee": 6.03e-08, - "icelander": 6.03e-08, - "ideapad": 6.03e-08, - "identifiably": 6.03e-08, - "idn": 6.03e-08, - "idrissa": 6.03e-08, - "ikoyi": 6.03e-08, - "ildefonso": 6.03e-08, - "immelt": 6.03e-08, - "immo": 6.03e-08, - "imperils": 6.03e-08, - "impoverishing": 6.03e-08, - "independency": 6.03e-08, - "independiente": 6.03e-08, - "infocom": 6.03e-08, - "inos": 6.03e-08, - "insouciance": 6.03e-08, - "integrase": 6.03e-08, - "intoning": 6.03e-08, - "intranets": 6.03e-08, - "investopedia": 6.03e-08, - "iops": 6.03e-08, - "irae": 6.03e-08, - "isidoro": 6.03e-08, - "islamaphobia": 6.03e-08, - "isopod": 6.03e-08, - "ithe": 6.03e-08, - "ittle": 6.03e-08, - "iveta": 6.03e-08, - "ixion": 6.03e-08, - "jabara": 6.03e-08, - "jacey": 6.03e-08, - "jackalope": 6.03e-08, - "jagat": 6.03e-08, - "jagex": 6.03e-08, - "jany": 6.03e-08, - "jaq": 6.03e-08, - "jaso": 6.03e-08, - "jcrew": 6.03e-08, - "jeffy": 6.03e-08, - "jergens": 6.03e-08, - "jodeci": 6.03e-08, - "jousts": 6.03e-08, - "judit": 6.03e-08, - "juliane": 6.03e-08, - "julissa": 6.03e-08, - "juneteenth": 6.03e-08, - "jurisprudential": 6.03e-08, - "jyrki": 6.03e-08, - "kaala": 6.03e-08, - "kaczmarek": 6.03e-08, - "kahlan": 6.03e-08, - "kaido": 6.03e-08, - "kakapo": 6.03e-08, - "kakar": 6.03e-08, - "kalashnikovs": 6.03e-08, - "kamera": 6.03e-08, - "kamikazes": 6.03e-08, - "karren": 6.03e-08, - "katu": 6.03e-08, - "katzenbach": 6.03e-08, - "kazaa": 6.03e-08, - "kazantzakis": 6.03e-08, - "kcmo": 6.03e-08, - "keratoconus": 6.03e-08, - "keshia": 6.03e-08, - "keston": 6.03e-08, - "kewaunee": 6.03e-08, - "kewell": 6.03e-08, - "kfi": 6.03e-08, - "khalq": 6.03e-08, - "khang": 6.03e-08, - "khojaly": 6.03e-08, - "kiner": 6.03e-08, - "kinga": 6.03e-08, - "kinnaman": 6.03e-08, - "klaipeda": 6.03e-08, - "klemperer": 6.03e-08, - "knicker": 6.03e-08, - "knickerbockers": 6.03e-08, - "knowshon": 6.03e-08, - "kodaikanal": 6.03e-08, - "kolk": 6.03e-08, - "kookie": 6.03e-08, - "koopman": 6.03e-08, - "kosovan": 6.03e-08, - "kotex": 6.03e-08, - "krom": 6.03e-08, - "kropp": 6.03e-08, - "kuehl": 6.03e-08, - "kumkum": 6.03e-08, - "kunj": 6.03e-08, - "kuzco": 6.03e-08, - "kwei": 6.03e-08, - "kyphosis": 6.03e-08, - "lachesis": 6.03e-08, - "laforge": 6.03e-08, - "laminectomy": 6.03e-08, - "lammas": 6.03e-08, - "lamplighter": 6.03e-08, - "landrover": 6.03e-08, - "lant": 6.03e-08, - "lanthanides": 6.03e-08, - "larkhall": 6.03e-08, - "laskar": 6.03e-08, - "lathering": 6.03e-08, - "latticed": 6.03e-08, - "launcelot": 6.03e-08, - "lawdy": 6.03e-08, - "layden": 6.03e-08, - "lcg": 6.03e-08, - "leadup": 6.03e-08, - "leaper": 6.03e-08, - "lears": 6.03e-08, - "leawood": 6.03e-08, - "lebreton": 6.03e-08, - "legco": 6.03e-08, - "leges": 6.03e-08, - "lema": 6.03e-08, - "leopardi": 6.03e-08, - "lesueur": 6.03e-08, - "lewicki": 6.03e-08, - "lewington": 6.03e-08, - "lff": 6.03e-08, - "lgpl": 6.03e-08, - "lho": 6.03e-08, - "libidos": 6.03e-08, - "lillo": 6.03e-08, - "lindberghs": 6.03e-08, - "liposomal": 6.03e-08, - "lithographers": 6.03e-08, - "lizzys": 6.03e-08, - "llwyd": 6.03e-08, - "lodwick": 6.03e-08, - "logarithmically": 6.03e-08, - "lostprophets": 6.03e-08, - "lotti": 6.03e-08, - "loungewear": 6.03e-08, - "louver": 6.03e-08, - "louvres": 6.03e-08, - "lowells": 6.03e-08, - "lulzsec": 6.03e-08, - "lupino": 6.03e-08, - "lur": 6.03e-08, - "luzhniki": 6.03e-08, - "lybia": 6.03e-08, - "maby": 6.03e-08, - "macewan": 6.03e-08, - "maeterlinck": 6.03e-08, - "magas": 1.15e-08, - "magsaysay": 6.03e-08, - "majed": 6.03e-08, - "majic": 6.03e-08, - "makeba": 6.03e-08, - "malmstrom": 6.03e-08, - "maltin": 6.03e-08, - "manabe": 6.03e-08, - "manasquan": 6.03e-08, - "mandie": 6.03e-08, - "mandoline": 6.03e-08, - "mangini": 6.03e-08, - "manji": 6.03e-08, - "mansouri": 6.03e-08, - "mantha": 6.03e-08, - "marcellinus": 6.03e-08, - "margots": 6.03e-08, - "margy": 6.03e-08, - "marshalsea": 6.03e-08, - "martellus": 6.03e-08, - "marylou": 6.03e-08, - "mashima": 6.03e-08, - "masterbation": 6.03e-08, - "mathematik": 6.03e-08, - "matra": 6.03e-08, - "mauryan": 6.03e-08, - "mbah": 6.03e-08, - "mbcs": 6.03e-08, - "mcindoe": 6.03e-08, - "mckoy": 6.03e-08, - "mcmenamin": 6.03e-08, - "mcnicol": 6.03e-08, - "mcsa": 6.03e-08, - "mdh": 6.03e-08, - "mdn": 6.03e-08, - "meanin": 6.03e-08, - "medievalism": 6.03e-08, - "melis": 6.03e-08, - "melli": 6.03e-08, - "mender": 6.03e-08, - "meninga": 6.03e-08, - "menkes": 6.03e-08, - "menor": 6.03e-08, - "meraki": 6.03e-08, - "merr": 6.03e-08, - "mescalero": 6.03e-08, - "mesosphere": 6.03e-08, - "messiest": 6.03e-08, - "mgl": 6.03e-08, - "micawber": 6.03e-08, - "microbrew": 6.03e-08, - "microgram": 6.03e-08, - "miguelito": 6.03e-08, - "millbury": 6.03e-08, - "milngavie": 6.03e-08, - "milsap": 6.03e-08, - "minelli": 6.03e-08, - "minigolf": 6.03e-08, - "minocycline": 6.03e-08, - "mistah": 6.03e-08, - "mitb": 6.03e-08, - "mitchy": 6.03e-08, - "mizen": 6.03e-08, - "mjm": 6.03e-08, - "molins": 6.03e-08, - "monarchism": 6.03e-08, - "moneta": 6.03e-08, - "monotonicity": 6.03e-08, - "montanus": 6.03e-08, - "montauban": 6.03e-08, - "mooy": 6.03e-08, - "moscovici": 6.03e-08, - "mout": 6.03e-08, - "moye": 6.03e-08, - "mozo": 6.03e-08, - "mtbf": 6.03e-08, - "mugwort": 6.03e-08, - "multiband": 6.03e-08, - "multigrain": 6.03e-08, - "murderously": 6.03e-08, - "murrumbidgee": 6.03e-08, - "mushing": 6.03e-08, - "muskies": 6.03e-08, - "mwt": 6.03e-08, - "mxyzptlk": 6.03e-08, - "mysuru": 6.03e-08, - "nabila": 6.03e-08, - "nabucco": 6.03e-08, - "najibullah": 6.03e-08, - "nanook": 6.03e-08, - "nastia": 6.03e-08, - "nathalia": 6.03e-08, - "natin": 6.03e-08, - "natron": 6.03e-08, - "nauta": 6.03e-08, - "ncri": 6.03e-08, - "nctc": 6.03e-08, - "ndlovu": 6.03e-08, - "ndrc": 6.03e-08, - "nearside": 6.03e-08, - "neckwear": 6.03e-08, - "negations": 6.03e-08, - "negras": 6.03e-08, - "nekkid": 6.03e-08, - "nells": 6.03e-08, - "neomycin": 6.03e-08, - "nepeta": 6.03e-08, - "neptunian": 6.03e-08, - "nevaeh": 6.03e-08, - "nightstick": 6.03e-08, - "nij": 6.03e-08, - "nikolic": 6.03e-08, - "nnd": 6.03e-08, - "nomo": 6.03e-08, - "nonaka": 6.03e-08, - "nonbeliever": 6.03e-08, - "nonconference": 6.03e-08, - "nonstarter": 6.03e-08, - "nonstate": 6.03e-08, - "nordschleife": 6.03e-08, - "norwoods": 6.03e-08, - "noticeboard": 6.03e-08, - "novelas": 6.03e-08, - "nowlan": 6.03e-08, - "npk": 6.03e-08, - "ntds": 6.03e-08, - "numba": 6.03e-08, - "nydia": 6.03e-08, - "nyy": 6.03e-08, - "orourkes": 6.03e-08, - "objectifies": 6.03e-08, - "obote": 6.03e-08, - "obscurus": 6.03e-08, - "occurance": 6.03e-08, - "ochraceous": 6.03e-08, - "octahedra": 6.03e-08, - "ody": 6.03e-08, - "ofall": 6.03e-08, - "ohlin": 6.03e-08, - "okposo": 6.03e-08, - "olas": 6.03e-08, - "olave": 6.03e-08, - "oligarchical": 6.03e-08, - "olivos": 6.03e-08, - "ontonagon": 6.03e-08, - "ooooooo": 6.03e-08, - "oozy": 6.03e-08, - "openminded": 6.03e-08, - "operationalized": 6.03e-08, - "oquendo": 6.03e-08, - "ordains": 6.03e-08, - "orderings": 6.03e-08, - "oreste": 6.03e-08, - "orff": 6.03e-08, - "orgel": 6.03e-08, - "orlin": 6.03e-08, - "ormeau": 6.03e-08, - "orthologs": 6.03e-08, - "osip": 6.03e-08, - "ossoff": 6.03e-08, - "ostinato": 6.03e-08, - "ottmar": 6.03e-08, - "ouf": 6.03e-08, - "ouma": 6.03e-08, - "outgained": 6.03e-08, - "outplaying": 6.03e-08, - "ouvert": 6.03e-08, - "oved": 6.03e-08, - "overlayed": 6.03e-08, - "ovw": 6.03e-08, - "owc": 6.03e-08, - "oximeter": 6.03e-08, - "paba": 6.03e-08, - "pacis": 6.03e-08, - "paju": 6.03e-08, - "paladino": 6.03e-08, - "palio": 6.03e-08, - "papago": 6.03e-08, - "papineau": 6.03e-08, - "paramecium": 6.03e-08, - "parturition": 6.03e-08, - "pask": 6.03e-08, - "pathans": 6.03e-08, - "paulsons": 6.03e-08, - "pavelec": 6.03e-08, - "payors": 6.03e-08, - "pedophilic": 6.03e-08, - "pega": 6.03e-08, - "pegasi": 6.03e-08, - "pelargonium": 6.03e-08, - "peniston": 6.03e-08, - "pepfar": 6.03e-08, - "percept": 6.03e-08, - "perouse": 6.03e-08, - "perseids": 6.03e-08, - "peti": 6.03e-08, - "petrelli": 6.03e-08, - "phileas": 6.03e-08, - "phn": 6.03e-08, - "phoenixes": 6.03e-08, - "photophobia": 6.03e-08, - "piatti": 6.03e-08, - "picketers": 6.03e-08, - "piddle": 6.03e-08, - "pillock": 6.03e-08, - "pipsqueak": 6.03e-08, - "piran": 6.03e-08, - "pisan": 6.03e-08, - "plantagenets": 6.03e-08, - "playgroups": 6.03e-08, - "pleasent": 6.03e-08, - "pledger": 6.03e-08, - "plushy": 6.03e-08, - "pointillism": 6.03e-08, - "polen": 6.03e-08, - "polian": 6.03e-08, - "polishers": 6.03e-08, - "poloniex": 6.03e-08, - "polyols": 6.03e-08, - "polysyllabic": 6.03e-08, - "polytechnical": 6.03e-08, - "pompously": 6.03e-08, - "portages": 6.03e-08, - "portsea": 6.03e-08, - "portsmouths": 6.03e-08, - "postmans": 6.03e-08, - "postmarks": 6.03e-08, - "postulation": 6.03e-08, - "poteet": 6.03e-08, - "potok": 6.03e-08, - "potw": 6.03e-08, - "povey": 6.03e-08, - "powerups": 6.03e-08, - "prebuilt": 6.03e-08, - "preciosa": 6.03e-08, - "prepayments": 6.03e-08, - "presiden": 6.03e-08, - "pressroom": 6.03e-08, - "primm": 6.03e-08, - "principate": 6.03e-08, - "prizewinner": 6.03e-08, - "problemas": 6.03e-08, - "probus": 6.03e-08, - "procs": 6.03e-08, - "proenza": 6.03e-08, - "prognostications": 6.03e-08, - "progs": 6.03e-08, - "promisingly": 6.03e-08, - "pronounciation": 6.03e-08, - "proprietress": 6.03e-08, - "prv": 6.03e-08, - "psychobabble": 6.03e-08, - "puddling": 6.03e-08, - "puisne": 6.03e-08, - "punctuates": 6.03e-08, - "pungency": 6.03e-08, - "punya": 6.03e-08, - "purdon": 6.03e-08, - "purex": 6.03e-08, - "pusillanimous": 6.03e-08, - "pwe": 6.03e-08, - "pyloric": 6.03e-08, - "quatrefoil": 6.03e-08, - "quetiapine": 6.03e-08, - "quezada": 6.03e-08, - "racerback": 6.03e-08, - "racoons": 6.03e-08, - "ragna": 6.03e-08, - "raimis": 6.03e-08, - "rakers": 6.03e-08, - "ranier": 6.03e-08, - "ranitidine": 6.03e-08, - "ranke": 6.03e-08, - "rapin": 6.03e-08, - "rapturously": 6.03e-08, - "raro": 6.03e-08, - "rasulullah": 6.03e-08, - "ratha": 6.03e-08, - "rathaus": 6.03e-08, - "ravenloft": 6.03e-08, - "rcti": 6.03e-08, - "rebrands": 6.03e-08, - "rebuttable": 6.03e-08, - "redacting": 6.03e-08, - "redbud": 6.03e-08, - "reenactors": 6.03e-08, - "regev": 6.03e-08, - "regnery": 6.03e-08, - "rehoused": 6.03e-08, - "rendang": 6.03e-08, - "renesas": 6.03e-08, - "reposing": 6.03e-08, - "residuary": 6.03e-08, - "respire": 6.03e-08, - "retroperitoneal": 6.03e-08, - "retuned": 6.03e-08, - "reynoso": 6.03e-08, - "rhabdomyosarcoma": 6.03e-08, - "rhames": 6.03e-08, - "riera": 6.03e-08, - "riggle": 6.03e-08, - "rigney": 6.03e-08, - "riksbank": 6.03e-08, - "risp": 6.03e-08, - "riverlands": 6.03e-08, - "riyals": 6.03e-08, - "rle": 6.03e-08, - "roamer": 6.03e-08, - "roath": 6.03e-08, - "robichaud": 6.03e-08, - "rockledge": 6.03e-08, - "rockos": 6.03e-08, - "rogo": 6.03e-08, - "rohans": 6.03e-08, - "rool": 6.03e-08, - "roseberry": 6.03e-08, - "rothbart": 6.03e-08, - "rothbury": 6.03e-08, - "rothchild": 6.03e-08, - "roundhead": 6.03e-08, - "rpk": 6.03e-08, - "rtu": 6.03e-08, - "rugger": 6.03e-08, - "rula": 6.03e-08, - "runcie": 6.03e-08, - "ruxton": 6.03e-08, - "rys": 6.03e-08, - "sailcloth": 6.03e-08, - "sakya": 6.03e-08, - "salamon": 6.03e-08, - "sallam": 6.03e-08, - "salles": 6.03e-08, - "salmonids": 6.03e-08, - "sandlin": 6.03e-08, - "sandshrew": 6.03e-08, - "sansas": 6.03e-08, - "saqqara": 6.03e-08, - "saraya": 6.03e-08, - "sarit": 6.03e-08, - "sarkodie": 6.03e-08, - "saroja": 6.03e-08, - "saso": 6.03e-08, - "sassi": 6.03e-08, - "sastry": 6.03e-08, - "saunters": 6.03e-08, - "savic": 6.03e-08, - "sawan": 6.03e-08, - "sawfly": 6.03e-08, - "saxophonists": 6.03e-08, - "sbux": 6.03e-08, - "schrier": 6.03e-08, - "sciver": 6.03e-08, - "scop": 6.03e-08, - "scottrade": 6.03e-08, - "scouter": 6.03e-08, - "screenshotting": 6.03e-08, - "scuttles": 6.03e-08, - "sdlc": 6.03e-08, - "seaworthiness": 6.03e-08, - "secre": 6.03e-08, - "seefeld": 6.03e-08, - "selectin": 6.03e-08, - "sematary": 6.03e-08, - "senso": 6.03e-08, - "septet": 6.03e-08, - "serangoon": 6.03e-08, - "serialize": 6.03e-08, - "servais": 6.03e-08, - "servir": 6.03e-08, - "servitors": 6.03e-08, - "sessegnon": 6.03e-08, - "sesterces": 6.03e-08, - "setsuko": 6.03e-08, - "seun": 6.03e-08, - "severo": 6.03e-08, - "shadyside": 6.03e-08, - "shamsi": 6.03e-08, - "shanksville": 6.03e-08, - "sharpeville": 6.03e-08, - "sharpshooting": 6.03e-08, - "shavit": 6.03e-08, - "shawano": 6.03e-08, - "shean": 6.03e-08, - "sheffer": 6.03e-08, - "shefford": 6.03e-08, - "shelli": 6.03e-08, - "shens": 6.03e-08, - "shepley": 6.03e-08, - "shigeo": 6.03e-08, - "shokugeki": 6.03e-08, - "shorey": 6.03e-08, - "shortish": 6.03e-08, - "shoto": 6.03e-08, - "shotover": 6.03e-08, - "showerthoughts": 6.03e-08, - "shrivels": 6.03e-08, - "shuey": 6.03e-08, - "shuhei": 6.03e-08, - "shuo": 6.03e-08, - "sidelong": 6.03e-08, - "silverthorne": 6.03e-08, - "sindel": 6.03e-08, - "sircar": 6.03e-08, - "sistah": 6.03e-08, - "sistan": 6.03e-08, - "sivaji": 6.03e-08, - "skeets": 6.03e-08, - "skimped": 6.03e-08, - "skr": 6.03e-08, - "slaked": 6.03e-08, - "slappers": 6.03e-08, - "slavering": 6.03e-08, - "sleepaway": 6.03e-08, - "slobbery": 6.03e-08, - "slowmo": 6.03e-08, - "smad": 6.03e-08, - "smegma": 6.03e-08, - "smoggy": 6.03e-08, - "sneezy": 6.03e-08, - "snivelling": 6.03e-08, - "snowiest": 6.03e-08, - "sobe": 6.03e-08, - "socketed": 6.03e-08, - "softs": 6.03e-08, - "somtimes": 6.03e-08, - "songster": 6.03e-08, - "sotos": 6.03e-08, - "southbury": 6.03e-08, - "sova": 6.03e-08, - "spangles": 6.03e-08, - "sparkplug": 6.03e-08, - "speciesism": 6.03e-08, - "spigots": 6.03e-08, - "sportif": 6.03e-08, - "spurted": 6.03e-08, - "squatty": 6.03e-08, - "srw": 6.03e-08, - "sssr": 6.03e-08, - "stabilises": 6.03e-08, - "staffy": 6.03e-08, - "stative": 6.03e-08, - "stenciling": 6.03e-08, - "steny": 6.03e-08, - "stepanek": 6.03e-08, - "stephany": 6.03e-08, - "stichting": 6.03e-08, - "stik": 6.03e-08, - "stoch": 6.03e-08, - "stockley": 6.03e-08, - "stodden": 6.03e-08, - "stoyanov": 6.03e-08, - "strader": 6.03e-08, - "stratify": 6.03e-08, - "stroup": 6.03e-08, - "stutzman": 6.03e-08, - "subcritical": 6.03e-08, - "subnautica": 6.03e-08, - "subodh": 6.03e-08, - "subrata": 6.03e-08, - "suffern": 6.03e-08, - "sugo": 6.03e-08, - "sukiyaki": 6.03e-08, - "sulphite": 6.03e-08, - "sumba": 6.03e-08, - "sunbird": 6.03e-08, - "sunseeker": 6.03e-08, - "sunup": 6.03e-08, - "superintelligence": 6.03e-08, - "supernormal": 6.03e-08, - "supping": 6.03e-08, - "suprema": 6.03e-08, - "swakopmund": 6.03e-08, - "swick": 6.03e-08, - "switchboards": 6.03e-08, - "swop": 6.03e-08, - "sylvestre": 6.03e-08, - "syren": 6.03e-08, - "syslog": 6.03e-08, - "szell": 6.03e-08, - "tafel": 6.03e-08, - "taif": 6.03e-08, - "tailless": 6.03e-08, - "taiyo": 6.03e-08, - "takahata": 6.03e-08, - "talis": 1.35e-08, - "tamanna": 6.03e-08, - "tanagra": 6.03e-08, - "targe": 6.03e-08, - "tdl": 6.03e-08, - "technet": 6.03e-08, - "tejon": 6.03e-08, - "tenggara": 6.03e-08, - "tensely": 6.03e-08, - "terabithia": 6.03e-08, - "teresita": 6.03e-08, - "terrestris": 6.03e-08, - "ters": 6.03e-08, - "teubner": 6.03e-08, - "tewari": 6.03e-08, - "textes": 6.03e-08, - "thaxter": 6.03e-08, - "thermocouples": 6.03e-08, - "thibodeaux": 6.03e-08, - "thiosulfate": 6.03e-08, - "thore": 6.03e-08, - "thoresen": 6.03e-08, - "thrusted": 6.03e-08, - "tidily": 6.03e-08, - "tidus": 6.03e-08, - "timlin": 6.03e-08, - "tinga": 6.03e-08, - "titch": 6.03e-08, - "titres": 6.03e-08, - "tlds": 6.03e-08, - "toasties": 6.03e-08, - "tobagos": 6.03e-08, - "tober": 6.03e-08, - "tobins": 6.03e-08, - "toch": 6.03e-08, - "toji": 6.03e-08, - "tomah": 6.03e-08, - "tomorow": 6.03e-08, - "toolboxes": 6.03e-08, - "tootoo": 6.03e-08, - "torney": 6.03e-08, - "torrente": 6.03e-08, - "totenkopf": 6.03e-08, - "toxteth": 6.03e-08, - "toybox": 6.03e-08, - "trailheads": 6.03e-08, - "treasuring": 6.03e-08, - "treatys": 6.03e-08, - "tredwell": 6.03e-08, - "tretiak": 6.03e-08, - "tribalistic": 6.03e-08, - "triborough": 6.03e-08, - "trilled": 6.03e-08, - "trude": 6.03e-08, - "tsuru": 6.03e-08, - "tubb": 6.03e-08, - "tukwila": 6.03e-08, - "tulalip": 6.03e-08, - "tump": 6.03e-08, - "tushy": 6.03e-08, - "tutankhamen": 6.03e-08, - "tver": 6.03e-08, - "twigged": 6.03e-08, - "tyrie": 6.03e-08, - "uggh": 6.03e-08, - "ultrafiltration": 6.03e-08, - "unbuckle": 6.03e-08, - "uncleared": 6.03e-08, - "understaffing": 6.03e-08, - "unlikelihood": 6.03e-08, - "unocal": 6.03e-08, - "unprepossessing": 6.03e-08, - "unshaved": 6.03e-08, - "untersuchung": 6.03e-08, - "unus": 6.03e-08, - "unwatched": 6.03e-08, - "upt": 6.03e-08, - "upvoted": 6.03e-08, - "urim": 6.03e-08, - "ursinus": 6.03e-08, - "uspstf": 6.03e-08, - "ustedes": 6.03e-08, - "usufruct": 6.03e-08, - "utsav": 6.03e-08, - "valorization": 6.03e-08, - "vandermeer": 6.03e-08, - "varnishing": 6.03e-08, - "velho": 6.03e-08, - "venturas": 6.03e-08, - "vereinigung": 6.03e-08, - "viacoms": 6.03e-08, - "vignetting": 6.03e-08, - "vileness": 6.03e-08, - "villeroy": 6.03e-08, - "virendra": 6.03e-08, - "vmm": 6.03e-08, - "vnukovo": 6.03e-08, - "volar": 6.03e-08, - "volcan": 6.03e-08, - "vour": 6.03e-08, - "vrije": 6.03e-08, - "waifus": 6.03e-08, - "wangari": 6.03e-08, - "warbucks": 6.03e-08, - "wardship": 6.03e-08, - "washburne": 6.03e-08, - "wassermann": 6.03e-08, - "watercooler": 6.03e-08, - "waterslides": 6.03e-08, - "watty": 6.03e-08, - "weatherhead": 6.03e-08, - "wek": 6.03e-08, - "westwick": 6.03e-08, - "whar": 6.03e-08, - "whateley": 6.03e-08, - "whsmith": 6.03e-08, - "widmark": 6.03e-08, - "wik": 6.03e-08, - "wiktionary": 6.03e-08, - "williamston": 6.03e-08, - "williss": 6.03e-08, - "windowsills": 6.03e-08, - "windspeed": 6.03e-08, - "winnick": 6.03e-08, - "wjz": 6.03e-08, - "wnbc": 6.03e-08, - "workgroups": 6.03e-08, - "worksafe": 6.03e-08, - "worthily": 6.03e-08, - "wretchedly": 6.03e-08, - "wro": 6.03e-08, - "wuchang": 6.03e-08, - "wurde": 6.03e-08, - "xanthine": 6.03e-08, - "xindi": 6.03e-08, - "xrf": 6.03e-08, - "xxs": 6.03e-08, - "yamanashi": 6.03e-08, - "yildiz": 6.03e-08, - "yngwie": 6.03e-08, - "ynwa": 6.03e-08, - "yoav": 6.03e-08, - "yorkist": 6.03e-08, - "yoshinori": 6.03e-08, - "yossarian": 6.03e-08, - "youngin": 6.03e-08, - "zafira": 6.03e-08, - "zand": 6.03e-08, - "zarah": 6.03e-08, - "zdenek": 6.03e-08, - "zebu": 6.03e-08, - "zeek": 6.03e-08, - "zelenka": 6.03e-08, - "zens": 6.03e-08, - "zenica": 6.03e-08, - "zhai": 6.03e-08, - "zigzagged": 6.03e-08, - "zihuatanejo": 6.03e-08, - "zillah": 6.03e-08, - "zinnias": 6.03e-08, - "zinta": 6.03e-08, - "zissou": 6.03e-08, - "zobel": 6.03e-08, - "zonked": 6.03e-08, - "zubaydah": 6.03e-08, - "zuhair": 6.03e-08, - "aacc": 5.89e-08, - "aapi": 5.89e-08, - "abaca": 5.89e-08, - "abas": 3.72e-08, - "abbreviating": 5.89e-08, - "abele": 5.89e-08, - "abhijit": 5.89e-08, - "abis": 5.89e-08, - "abruption": 5.89e-08, - "abusively": 5.89e-08, - "abyan": 5.89e-08, - "accio": 5.89e-08, - "achaean": 5.89e-08, - "achenbach": 5.89e-08, - "adad": 5.89e-08, - "aday": 5.89e-08, - "adeel": 5.89e-08, - "adesina": 5.89e-08, - "adorkable": 5.89e-08, - "aerobically": 5.89e-08, - "aerofoil": 5.89e-08, - "aesir": 5.89e-08, - "afric": 5.89e-08, - "aggy": 5.89e-08, - "ahlers": 5.89e-08, - "ahmadabad": 5.89e-08, - "aiders": 5.89e-08, - "aiki": 5.89e-08, - "ajj": 5.89e-08, - "akame": 5.89e-08, - "akina": 5.89e-08, - "akizuki": 5.89e-08, - "alappuzha": 5.89e-08, - "alassane": 5.89e-08, - "alembic": 5.89e-08, - "alevi": 5.89e-08, - "algar": 5.89e-08, - "alkyd": 5.89e-08, - "allround": 5.89e-08, - "almirola": 5.89e-08, - "althought": 5.89e-08, - "alz": 5.89e-08, - "amazo": 5.89e-08, - "ambu": 5.89e-08, - "amido": 5.89e-08, - "anantapur": 5.89e-08, - "andreasen": 5.89e-08, - "anencephaly": 5.89e-08, - "angulated": 5.89e-08, - "anistons": 5.89e-08, - "anjana": 5.89e-08, - "anneke": 5.89e-08, - "annoucement": 5.89e-08, - "annua": 5.89e-08, - "anthologized": 5.89e-08, - "antigay": 5.89e-08, - "antiochian": 5.89e-08, - "antwon": 5.89e-08, - "anunnaki": 5.89e-08, - "anuses": 5.89e-08, - "apennine": 5.89e-08, - "apni": 5.89e-08, - "appart": 5.89e-08, - "apperception": 5.89e-08, - "araz": 5.89e-08, - "arbs": 5.89e-08, - "aref": 5.89e-08, - "arends": 5.89e-08, - "arklow": 5.89e-08, - "arnstein": 5.89e-08, - "arraign": 5.89e-08, - "arsal": 5.89e-08, - "artforum": 5.89e-08, - "articulately": 5.89e-08, - "artstyle": 5.89e-08, - "ascertainment": 5.89e-08, - "ascoli": 5.89e-08, - "ashkenazim": 5.89e-08, - "asner": 5.89e-08, - "assayas": 5.89e-08, - "assim": 5.89e-08, - "assistantships": 5.89e-08, - "asteras": 5.89e-08, - "asystole": 5.89e-08, - "atco": 5.89e-08, - "atha": 5.89e-08, - "atharva": 5.89e-08, - "atsc": 5.89e-08, - "auburndale": 5.89e-08, - "augers": 5.89e-08, - "aumf": 5.89e-08, - "autoerotic": 5.89e-08, - "availabilities": 5.89e-08, - "avascular": 5.89e-08, - "avidity": 5.89e-08, - "ayckbourn": 5.89e-08, - "ayodele": 5.89e-08, - "babaji": 5.89e-08, - "babycakes": 5.89e-08, - "backdating": 5.89e-08, - "baekhyun": 5.89e-08, - "baghlan": 5.89e-08, - "bahawalpur": 5.89e-08, - "bailando": 5.89e-08, - "baitfish": 5.89e-08, - "baldrige": 5.89e-08, - "balvenie": 5.89e-08, - "bamas": 5.89e-08, - "bankrate": 5.89e-08, - "bardin": 5.89e-08, - "barrettes": 5.89e-08, - "basant": 5.89e-08, - "bashford": 5.89e-08, - "batshuayi": 5.89e-08, - "battlement": 5.89e-08, - "baynard": 5.89e-08, - "bayu": 5.89e-08, - "bazalgette": 5.89e-08, - "beatrices": 5.89e-08, - "bedsores": 5.89e-08, - "belieber": 5.89e-08, - "beltrami": 5.89e-08, - "belying": 5.89e-08, - "bembo": 5.89e-08, - "benavidez": 5.89e-08, - "bencic": 5.89e-08, - "benni": 5.89e-08, - "bennu": 5.89e-08, - "berberis": 5.89e-08, - "beres": 5.89e-08, - "beringia": 5.89e-08, - "bethmann": 5.89e-08, - "bettelheim": 5.89e-08, - "bhang": 5.89e-08, - "bhuttos": 5.89e-08, - "bicarb": 5.89e-08, - "bigler": 5.89e-08, - "bilas": 5.89e-08, - "bilstein": 5.89e-08, - "bioassay": 5.89e-08, - "bioprinting": 5.89e-08, - "bioweapons": 5.89e-08, - "birdwatcher": 5.89e-08, - "birju": 5.89e-08, - "bitmaps": 5.89e-08, - "blanches": 5.89e-08, - "blinged": 5.89e-08, - "blomkvist": 5.89e-08, - "bloodily": 5.89e-08, - "blowfly": 5.89e-08, - "blowhards": 5.89e-08, - "bluhm": 5.89e-08, - "bmm": 5.89e-08, - "boces": 5.89e-08, - "boiz": 5.89e-08, - "bonum": 5.89e-08, - "borenstein": 5.89e-08, - "botkin": 5.89e-08, - "boudicca": 5.89e-08, - "boulding": 5.89e-08, - "bourgeoise": 5.89e-08, - "brega": 5.89e-08, - "bretz": 5.89e-08, - "brg": 5.89e-08, - "brilliancy": 5.89e-08, - "broda": 5.89e-08, - "brooder": 5.89e-08, - "brownout": 5.89e-08, - "brue": 5.89e-08, - "bruneian": 5.89e-08, - "brushstroke": 5.89e-08, - "btrfs": 5.89e-08, - "buca": 5.89e-08, - "buea": 5.89e-08, - "buie": 5.89e-08, - "bullfinch": 5.89e-08, - "bungles": 5.89e-08, - "burchfield": 5.89e-08, - "busa": 5.89e-08, - "butterfat": 5.89e-08, - "bww": 5.89e-08, - "caligari": 5.89e-08, - "calligraphers": 5.89e-08, - "campanula": 5.89e-08, - "candido": 5.89e-08, - "candids": 5.89e-08, - "cantillon": 5.89e-08, - "capriccio": 5.89e-08, - "carbonell": 5.89e-08, - "carrum": 5.89e-08, - "cashmore": 5.89e-08, - "castellani": 5.89e-08, - "catechisms": 5.89e-08, - "catlike": 5.89e-08, - "catoctin": 5.89e-08, - "catterall": 5.89e-08, - "cattlemens": 5.89e-08, - "cavalcanti": 5.89e-08, - "cavalrys": 5.89e-08, - "caver": 5.89e-08, - "cemil": 5.89e-08, - "cesena": 5.89e-08, - "cfx": 5.89e-08, - "charac": 5.89e-08, - "charlemont": 5.89e-08, - "chattered": 5.89e-08, - "cheapie": 5.89e-08, - "chesil": 5.89e-08, - "chipewyan": 5.89e-08, - "chocolatiers": 5.89e-08, - "chowan": 5.89e-08, - "chucker": 5.89e-08, - "chutiya": 5.89e-08, - "ciccone": 5.89e-08, - "ciceros": 5.89e-08, - "cilento": 5.89e-08, - "cinematheque": 5.89e-08, - "circumspection": 5.89e-08, - "clawback": 5.89e-08, - "cleos": 5.89e-08, - "clitics": 5.89e-08, - "cliveden": 5.89e-08, - "cliven": 5.89e-08, - "cloisonne": 5.89e-08, - "clv": 5.89e-08, - "coalbed": 5.89e-08, - "cocci": 5.89e-08, - "cockfight": 5.89e-08, - "codie": 5.89e-08, - "coffeepot": 5.89e-08, - "comitted": 5.89e-08, - "compatability": 5.89e-08, - "compline": 5.89e-08, - "comt": 5.89e-08, - "conard": 5.89e-08, - "conceptualisation": 5.89e-08, - "concertgebouw": 5.89e-08, - "concision": 5.89e-08, - "connersville": 5.89e-08, - "consignee": 5.89e-08, - "contriving": 5.89e-08, - "controling": 5.89e-08, - "coover": 5.89e-08, - "cordiale": 5.89e-08, - "cordilleran": 5.89e-08, - "cordovan": 5.89e-08, - "corsini": 5.89e-08, - "cottonwoods": 5.89e-08, - "cougs": 5.89e-08, - "couldt": 5.89e-08, - "courrier": 5.89e-08, - "crappiest": 5.89e-08, - "creameries": 5.89e-08, - "crediton": 5.89e-08, - "creditworthy": 5.89e-08, - "crestline": 5.89e-08, - "croome": 5.89e-08, - "crooners": 5.89e-08, - "cseries": 5.89e-08, - "ctcs": 5.89e-08, - "cuco": 5.89e-08, - "curtesy": 5.89e-08, - "cyano": 5.89e-08, - "cyanoacrylate": 5.89e-08, - "cyberstalking": 5.89e-08, - "cycads": 5.89e-08, - "cygwin": 5.89e-08, - "cze": 5.89e-08, - "czw": 5.89e-08, - "dacoits": 5.89e-08, - "dagwood": 5.89e-08, - "dahm": 5.89e-08, - "daigaku": 5.89e-08, - "dalma": 5.89e-08, - "damasus": 5.89e-08, - "dandi": 5.89e-08, - "danial": 5.89e-08, - "dars": 5.89e-08, - "dathan": 5.89e-08, - "davante": 5.89e-08, - "davion": 5.89e-08, - "davisons": 5.89e-08, - "davits": 5.89e-08, - "daybed": 5.89e-08, - "dcg": 5.89e-08, - "deadened": 5.89e-08, - "debakey": 5.89e-08, - "decc": 5.89e-08, - "decipherment": 5.89e-08, - "deckchair": 5.89e-08, - "decolonizing": 5.89e-08, - "decrypts": 5.89e-08, - "dect": 5.89e-08, - "defen": 5.89e-08, - "deglaze": 5.89e-08, - "degreasing": 5.89e-08, - "dehart": 5.89e-08, - "delaine": 5.89e-08, - "demarcating": 5.89e-08, - "demotions": 5.89e-08, - "depalma": 5.89e-08, - "derham": 5.89e-08, - "derisory": 5.89e-08, - "desensitised": 5.89e-08, - "designees": 5.89e-08, - "destabilised": 5.89e-08, - "destress": 5.89e-08, - "desulfurization": 5.89e-08, - "develo": 5.89e-08, - "developable": 5.89e-08, - "dewdrop": 5.89e-08, - "deworming": 5.89e-08, - "dharmic": 5.89e-08, - "diamantina": 5.89e-08, - "dichromate": 5.89e-08, - "differen": 5.89e-08, - "dificult": 5.89e-08, - "dighton": 5.89e-08, - "digo": 5.89e-08, - "dilantin": 5.89e-08, - "dimensioning": 5.89e-08, - "directtv": 5.89e-08, - "direst": 5.89e-08, - "disabused": 5.89e-08, - "disch": 5.89e-08, - "discomfited": 5.89e-08, - "dissensions": 5.89e-08, - "distractor": 5.89e-08, - "ditz": 5.89e-08, - "dlx": 5.89e-08, - "dnase": 5.89e-08, - "doab": 5.89e-08, - "doakes": 5.89e-08, - "documentations": 5.89e-08, - "dominicana": 5.89e-08, - "donatus": 5.89e-08, - "donc": 5.89e-08, - "donjon": 5.89e-08, - "donlon": 5.89e-08, - "dormice": 5.89e-08, - "dorrie": 5.89e-08, - "doucette": 5.89e-08, - "douching": 5.89e-08, - "downhills": 5.89e-08, - "dphil": 5.89e-08, - "dree": 5.89e-08, - "driehaus": 5.89e-08, - "drome": 5.89e-08, - "drugmaker": 5.89e-08, - "dryads": 5.89e-08, - "duces": 5.89e-08, - "duclos": 5.89e-08, - "duelists": 5.89e-08, - "duggal": 5.89e-08, - "dumbly": 5.89e-08, - "dure": 5.89e-08, - "dutchs": 5.89e-08, - "eagled": 5.89e-08, - "easterner": 5.89e-08, - "eastlink": 5.89e-08, - "ecstasies": 5.89e-08, - "edwins": 5.89e-08, - "eejit": 5.89e-08, - "effacement": 5.89e-08, - "egi": 5.89e-08, - "egidio": 5.89e-08, - "ehome": 5.89e-08, - "eifert": 5.89e-08, - "ellin": 5.89e-08, - "elongates": 5.89e-08, - "embellishes": 5.89e-08, - "encouragements": 5.89e-08, - "endoskeleton": 5.89e-08, - "enzos": 5.89e-08, - "eoi": 5.89e-08, - "epidermolysis": 5.89e-08, - "epidurals": 5.89e-08, - "epoxies": 5.89e-08, - "equinix": 5.89e-08, - "eradicates": 5.89e-08, - "erkki": 5.89e-08, - "ersten": 5.89e-08, - "esculenta": 5.89e-08, - "eskridge": 5.89e-08, - "essos": 5.89e-08, - "esterified": 5.89e-08, - "estudiantes": 5.89e-08, - "ethnographical": 5.89e-08, - "ethridge": 5.89e-08, - "eung": 5.89e-08, - "europea": 5.89e-08, - "everts": 5.89e-08, - "excises": 5.89e-08, - "experimentalist": 5.89e-08, - "expirations": 5.89e-08, - "factum": 5.89e-08, - "fahmi": 5.89e-08, - "fairlawn": 5.89e-08, - "fakenews": 5.89e-08, - "fakest": 5.89e-08, - "fanelli": 5.89e-08, - "fanti": 5.89e-08, - "farrant": 5.89e-08, - "fathomed": 5.89e-08, - "fbla": 5.89e-08, - "fbt": 5.89e-08, - "fearn": 5.89e-08, - "febuary": 5.89e-08, - "fentress": 5.89e-08, - "fermats": 5.89e-08, - "fernley": 5.89e-08, - "fervid": 5.89e-08, - "fetterman": 5.89e-08, - "fickleness": 5.89e-08, - "fiesole": 5.89e-08, - "filiform": 5.89e-08, - "finlandia": 5.89e-08, - "firat": 5.89e-08, - "firkin": 5.89e-08, - "firme": 5.89e-08, - "firstgroup": 5.89e-08, - "fisks": 5.89e-08, - "fissionable": 5.89e-08, - "fitc": 5.89e-08, - "flexibilities": 5.89e-08, - "flighted": 5.89e-08, - "flitter": 5.89e-08, - "flogger": 5.89e-08, - "florine": 5.89e-08, - "folin": 5.89e-08, - "fontenoy": 5.89e-08, - "fooking": 5.89e-08, - "forbs": 5.89e-08, - "foryou": 5.89e-08, - "fosun": 5.89e-08, - "fpg": 5.89e-08, - "framlingham": 5.89e-08, - "fraps": 5.89e-08, - "fraternize": 5.89e-08, - "freights": 5.89e-08, - "frenzies": 5.89e-08, - "freunde": 5.89e-08, - "friedrichshafen": 5.89e-08, - "frien": 5.89e-08, - "frollo": 5.89e-08, - "fromme": 5.89e-08, - "frontmen": 5.89e-08, - "fruitiness": 5.89e-08, - "functionalization": 5.89e-08, - "fwhm": 5.89e-08, - "gnight": 5.89e-08, - "gabbi": 5.89e-08, - "gado": 5.89e-08, - "gainax": 5.89e-08, - "galanter": 5.89e-08, - "galavant": 5.89e-08, - "gamay": 5.89e-08, - "gambias": 5.89e-08, - "gammons": 5.89e-08, - "gaspare": 5.89e-08, - "gastrulation": 5.89e-08, - "gatecrash": 5.89e-08, - "gatess": 5.89e-08, - "gayo": 5.89e-08, - "gazidis": 5.89e-08, - "gelderland": 5.89e-08, - "gelt": 5.89e-08, - "geordies": 5.89e-08, - "georgio": 5.89e-08, - "germains": 5.89e-08, - "gerrie": 5.89e-08, - "gerrish": 5.89e-08, - "gex": 5.89e-08, - "ghirardelli": 5.89e-08, - "giftcards": 5.89e-08, - "gilbreth": 5.89e-08, - "gimps": 5.89e-08, - "ginni": 5.89e-08, - "givingtuesday": 5.89e-08, - "glamorizing": 5.89e-08, - "glycation": 5.89e-08, - "godparent": 5.89e-08, - "goob": 5.89e-08, - "goodells": 5.89e-08, - "gool": 5.89e-08, - "gormans": 5.89e-08, - "gothamist": 5.89e-08, - "gourock": 5.89e-08, - "gouty": 5.89e-08, - "goyas": 5.89e-08, - "grainne": 5.89e-08, - "grans": 5.89e-08, - "grantchester": 5.89e-08, - "greenfields": 5.89e-08, - "greenlanders": 5.89e-08, - "grenadian": 5.89e-08, - "griechische": 5.89e-08, - "grimey": 5.89e-08, - "grosgrain": 5.89e-08, - "guillot": 5.89e-08, - "gwenda": 5.89e-08, - "gyres": 5.89e-08, - "hacktivists": 5.89e-08, - "hadamard": 5.89e-08, - "haemorrhages": 5.89e-08, - "hainsworth": 5.89e-08, - "hakodate": 5.89e-08, - "halabi": 5.89e-08, - "halicarnassus": 5.89e-08, - "handpiece": 5.89e-08, - "hankook": 5.89e-08, - "haraam": 5.89e-08, - "harambee": 5.89e-08, - "hardaker": 5.89e-08, - "hardcoded": 5.89e-08, - "hardener": 5.89e-08, - "hargraves": 5.89e-08, - "harini": 5.89e-08, - "harten": 5.89e-08, - "hartl": 5.89e-08, - "haruhiko": 5.89e-08, - "haruto": 5.89e-08, - "hasp": 5.89e-08, - "hasted": 5.89e-08, - "haughtiness": 5.89e-08, - "hawksmoor": 5.89e-08, - "haynesville": 5.89e-08, - "hcmc": 5.89e-08, - "healthcares": 5.89e-08, - "heareth": 5.89e-08, - "heaviside": 5.89e-08, - "hebraic": 5.89e-08, - "hedger": 5.89e-08, - "heizer": 5.89e-08, - "hellacious": 5.89e-08, - "hellinger": 5.89e-08, - "helminths": 5.89e-08, - "hendershot": 5.89e-08, - "herbology": 5.89e-08, - "heri": 5.89e-08, - "hermoso": 5.89e-08, - "herpetologist": 5.89e-08, - "heusen": 5.89e-08, - "hidebound": 5.89e-08, - "highclere": 5.89e-08, - "hij": 5.89e-08, - "hijaz": 5.89e-08, - "hikikomori": 5.89e-08, - "hindostan": 5.89e-08, - "hinduja": 5.89e-08, - "hirise": 5.89e-08, - "hiros": 5.89e-08, - "hmds": 5.89e-08, - "hoenig": 5.89e-08, - "hohokam": 5.89e-08, - "hongkongers": 5.89e-08, - "hool": 5.89e-08, - "hornady": 5.89e-08, - "horology": 5.89e-08, - "horvitz": 5.89e-08, - "hosepipe": 5.89e-08, - "hosie": 5.89e-08, - "hospitalize": 5.89e-08, - "hotep": 5.89e-08, - "hsf": 5.89e-08, - "htb": 5.89e-08, - "huizenga": 5.89e-08, - "humdinger": 5.89e-08, - "hunty": 5.89e-08, - "hydrogenase": 5.89e-08, - "hyip": 5.89e-08, - "hyperlinked": 5.89e-08, - "hypnagogic": 5.89e-08, - "hypnotists": 5.89e-08, - "icas": 5.89e-08, - "identikit": 5.89e-08, - "igr": 5.89e-08, - "illenium": 5.89e-08, - "imn": 5.89e-08, - "imperfective": 5.89e-08, - "imperia": 5.89e-08, - "impolitic": 5.89e-08, - "improvisatory": 5.89e-08, - "impugning": 5.89e-08, - "incom": 5.89e-08, - "incompetently": 5.89e-08, - "incongruence": 5.89e-08, - "indisposition": 5.89e-08, - "ingush": 5.89e-08, - "inkblot": 5.89e-08, - "inktober": 5.89e-08, - "inorder": 5.89e-08, - "instagrammers": 5.89e-08, - "intermixing": 5.89e-08, - "intertwines": 5.89e-08, - "intp": 5.89e-08, - "irakli": 5.89e-08, - "iram": 5.89e-08, - "irritably": 5.89e-08, - "isentropic": 5.89e-08, - "isic": 5.89e-08, - "isoprene": 5.89e-08, - "issuable": 5.89e-08, - "istana": 5.89e-08, - "istomin": 5.89e-08, - "itai": 5.89e-08, - "iut": 5.89e-08, - "iwant": 5.89e-08, - "jaffee": 5.89e-08, - "jagermeister": 5.89e-08, - "jamma": 5.89e-08, - "jangled": 5.89e-08, - "janikowski": 5.89e-08, - "japonicus": 5.89e-08, - "japp": 5.89e-08, - "jaque": 5.89e-08, - "jbr": 5.89e-08, - "jedd": 5.89e-08, - "jeongyeon": 5.89e-08, - "jerold": 5.89e-08, - "jespersen": 5.89e-08, - "jetset": 5.89e-08, - "jide": 5.89e-08, - "jiggled": 5.89e-08, - "jks": 5.89e-08, - "jlc": 5.89e-08, - "jmac": 5.89e-08, - "jodha": 5.89e-08, - "jodhpurs": 5.89e-08, - "jojen": 5.89e-08, - "jpop": 5.89e-08, - "jrpgs": 5.89e-08, - "judenrat": 5.89e-08, - "juna": 5.89e-08, - "juz": 5.89e-08, - "kaas": 5.89e-08, - "kabaka": 5.89e-08, - "kahr": 5.89e-08, - "kamali": 5.89e-08, - "kaner": 5.89e-08, - "kanha": 5.89e-08, - "kannon": 5.89e-08, - "kanojo": 5.89e-08, - "katagiri": 5.89e-08, - "kaupthing": 5.89e-08, - "keb": 5.89e-08, - "kele": 5.89e-08, - "kelvins": 5.89e-08, - "kemalist": 5.89e-08, - "kennerley": 5.89e-08, - "kente": 5.89e-08, - "kenzi": 5.89e-08, - "kerguelen": 5.89e-08, - "kesa": 5.89e-08, - "kess": 5.89e-08, - "keyblade": 5.89e-08, - "kfcs": 5.89e-08, - "kiessling": 5.89e-08, - "kikes": 5.89e-08, - "kinahan": 5.89e-08, - "kindl": 5.89e-08, - "kinesin": 5.89e-08, - "kirghiz": 5.89e-08, - "kirkintilloch": 5.89e-08, - "kisi": 5.89e-08, - "kitting": 5.89e-08, - "kjartan": 5.89e-08, - "klf": 5.89e-08, - "klos": 5.89e-08, - "knockabout": 5.89e-08, - "knurled": 5.89e-08, - "kohala": 5.89e-08, - "komar": 5.89e-08, - "kookaburras": 5.89e-08, - "korematsu": 5.89e-08, - "korwin": 5.89e-08, - "kostroma": 5.89e-08, - "kotal": 5.89e-08, - "kovar": 5.89e-08, - "koyo": 5.89e-08, - "kpu": 5.89e-08, - "kristel": 5.89e-08, - "kristins": 5.89e-08, - "ksg": 5.89e-08, - "kukri": 5.89e-08, - "kunstler": 5.89e-08, - "kurita": 5.89e-08, - "kurtosis": 5.89e-08, - "kurupt": 5.89e-08, - "kuwabara": 5.89e-08, - "kwp": 5.89e-08, - "kylee": 5.89e-08, - "lachaise": 5.89e-08, - "laconically": 5.89e-08, - "ladi": 5.89e-08, - "ladie": 5.89e-08, - "lael": 5.89e-08, - "lamberto": 5.89e-08, - "lamella": 5.89e-08, - "lamictal": 5.89e-08, - "lampkin": 5.89e-08, - "landrace": 5.89e-08, - "laporta": 5.89e-08, - "lardo": 5.89e-08, - "larga": 5.89e-08, - "lashawn": 5.89e-08, - "laster": 5.89e-08, - "lateritic": 5.89e-08, - "lawbreaking": 5.89e-08, - "lawrance": 5.89e-08, - "lazers": 5.89e-08, - "leadin": 5.89e-08, - "ledesma": 5.89e-08, - "leeuwenhoek": 5.89e-08, - "legendarily": 5.89e-08, - "lethem": 5.89e-08, - "licky": 5.89e-08, - "liebermans": 5.89e-08, - "liker": 5.89e-08, - "linas": 5.89e-08, - "liquify": 5.89e-08, - "lirik": 5.89e-08, - "lissy": 5.89e-08, - "listlessly": 5.89e-08, - "lithonia": 5.89e-08, - "livescore": 5.89e-08, - "lizas": 5.89e-08, - "llo": 5.89e-08, - "lloydminster": 5.89e-08, - "lobsang": 5.89e-08, - "lodo": 5.89e-08, - "loebs": 5.89e-08, - "logy": 5.89e-08, - "lollypop": 5.89e-08, - "lorded": 5.89e-08, - "loxton": 5.89e-08, - "lron": 5.89e-08, - "lubber": 5.89e-08, - "lude": 5.89e-08, - "luminol": 5.89e-08, - "lusophone": 5.89e-08, - "lvm": 5.89e-08, - "lysates": 5.89e-08, - "macculloch": 5.89e-08, - "macie": 5.89e-08, - "maclure": 5.89e-08, - "macra": 5.89e-08, - "macrolide": 5.89e-08, - "madelines": 5.89e-08, - "maguindanao": 5.89e-08, - "makayla": 5.89e-08, - "makenzie": 5.89e-08, - "malabo": 5.89e-08, - "maling": 5.89e-08, - "mallrats": 5.89e-08, - "mamy": 5.89e-08, - "manageress": 5.89e-08, - "manco": 5.89e-08, - "maney": 5.89e-08, - "mangia": 5.89e-08, - "mangin": 5.89e-08, - "mangina": 5.89e-08, - "manisa": 5.89e-08, - "manja": 5.89e-08, - "mankey": 5.89e-08, - "marawi": 5.89e-08, - "marcantonio": 5.89e-08, - "mardin": 5.89e-08, - "marnix": 5.89e-08, - "marschall": 5.89e-08, - "maryvale": 5.89e-08, - "mattek": 5.89e-08, - "matto": 5.89e-08, - "maurits": 5.89e-08, - "mcalpin": 5.89e-08, - "mcclay": 5.89e-08, - "mccolgan": 5.89e-08, - "mcflurry": 5.89e-08, - "mcgeady": 5.89e-08, - "mcraven": 5.89e-08, - "mcsherry": 5.89e-08, - "mdu": 5.89e-08, - "mecum": 5.89e-08, - "medinas": 5.89e-08, - "meego": 5.89e-08, - "megantic": 5.89e-08, - "meggs": 5.89e-08, - "meguro": 5.89e-08, - "mema": 5.89e-08, - "mendiola": 5.89e-08, - "meniscal": 5.89e-08, - "mercola": 5.89e-08, - "meres": 5.89e-08, - "merganser": 5.89e-08, - "mesabi": 5.89e-08, - "metamucil": 5.89e-08, - "methot": 5.89e-08, - "michalis": 5.89e-08, - "michiru": 5.89e-08, - "miesha": 5.89e-08, - "migh": 5.89e-08, - "miked": 5.89e-08, - "milbury": 5.89e-08, - "millot": 5.89e-08, - "minako": 5.89e-08, - "minidress": 5.89e-08, - "minns": 5.89e-08, - "minuto": 5.89e-08, - "mlks": 5.89e-08, - "mlw": 5.89e-08, - "mnu": 5.89e-08, - "mofa": 5.89e-08, - "mols": 5.89e-08, - "momofuku": 5.89e-08, - "monarchic": 5.89e-08, - "moneda": 5.89e-08, - "mongkok": 5.89e-08, - "monotonously": 5.89e-08, - "montrachet": 5.89e-08, - "moonwalking": 5.89e-08, - "morahan": 5.89e-08, - "mosi": 5.89e-08, - "mpps": 5.89e-08, - "mrcp": 5.89e-08, - "mthatha": 5.89e-08, - "mtpa": 5.89e-08, - "mucilage": 5.89e-08, - "mucks": 5.89e-08, - "mufc": 5.89e-08, - "muhammadan": 5.89e-08, - "murari": 5.89e-08, - "muriels": 5.89e-08, - "musonda": 5.89e-08, - "mutex": 5.89e-08, - "mutilates": 5.89e-08, - "mwi": 5.89e-08, - "mxn": 5.89e-08, - "myfanwy": 5.89e-08, - "naiad": 5.89e-08, - "najwa": 5.89e-08, - "nanase": 5.89e-08, - "napoles": 5.89e-08, - "narberth": 5.89e-08, - "nasm": 5.89e-08, - "natgeo": 5.89e-08, - "navs": 5.89e-08, - "navsari": 5.89e-08, - "nayef": 5.89e-08, - "ncg": 5.89e-08, - "negans": 5.89e-08, - "neptunium": 5.89e-08, - "nerfs": 5.89e-08, - "networkers": 5.89e-08, - "newscorp": 5.89e-08, - "newsradio": 5.89e-08, - "nezha": 5.89e-08, - "nfhs": 5.89e-08, - "nibbler": 5.89e-08, - "nicanor": 5.89e-08, - "nikiforov": 5.89e-08, - "nilgiri": 5.89e-08, - "nixing": 5.89e-08, - "nizami": 5.89e-08, - "noid": 5.89e-08, - "norbit": 5.89e-08, - "norf": 5.89e-08, - "norilsk": 5.89e-08, - "norriss": 5.89e-08, - "notam": 5.89e-08, - "novichok": 5.89e-08, - "numidia": 5.89e-08, - "nust": 5.89e-08, - "nutcrackers": 5.89e-08, - "nwi": 5.89e-08, - "nyp": 5.89e-08, - "oana": 5.89e-08, - "obert": 5.89e-08, - "obes": 5.89e-08, - "observatoire": 5.89e-08, - "ochiai": 5.89e-08, - "oconomowoc": 5.89e-08, - "octobre": 5.89e-08, - "oddo": 5.89e-08, - "odegaard": 5.89e-08, - "oduya": 5.89e-08, - "officeholder": 5.89e-08, - "ohsu": 5.89e-08, - "okeh": 5.89e-08, - "okmulgee": 5.89e-08, - "oland": 5.89e-08, - "oldcastle": 5.89e-08, - "oles": 5.89e-08, - "oligopolies": 5.89e-08, - "olm": 5.89e-08, - "ombudsmans": 5.89e-08, - "omkar": 5.89e-08, - "omnicom": 5.89e-08, - "ondaatje": 5.89e-08, - "oophorectomy": 5.89e-08, - "opecs": 5.89e-08, - "oratio": 5.89e-08, - "orbi": 5.89e-08, - "orbicularis": 5.89e-08, - "organum": 5.89e-08, - "orinda": 5.89e-08, - "orogen": 5.89e-08, - "orzo": 5.89e-08, - "ostrowski": 5.89e-08, - "oswin": 5.89e-08, - "otcbb": 5.89e-08, - "oua": 5.89e-08, - "ouimet": 5.89e-08, - "outshining": 5.89e-08, - "outwash": 5.89e-08, - "overfill": 5.89e-08, - "overinflated": 5.89e-08, - "overreacts": 5.89e-08, - "oversexed": 5.89e-08, - "overstressed": 5.89e-08, - "palatka": 5.89e-08, - "pallium": 5.89e-08, - "pamyu": 5.89e-08, - "pantani": 5.89e-08, - "pantheons": 5.89e-08, - "papillion": 5.89e-08, - "parasitized": 5.89e-08, - "parentis": 5.89e-08, - "parly": 5.89e-08, - "parmentier": 5.89e-08, - "parthasarathy": 5.89e-08, - "particularized": 5.89e-08, - "pawlak": 5.89e-08, - "pawling": 5.89e-08, - "pcmcia": 5.89e-08, - "pechora": 5.89e-08, - "pegida": 5.89e-08, - "pemmican": 5.89e-08, - "penalising": 5.89e-08, - "pepco": 5.89e-08, - "perrins": 5.89e-08, - "perros": 5.89e-08, - "pervaiz": 5.89e-08, - "peterhouse": 5.89e-08, - "pharyngitis": 5.89e-08, - "phenolics": 5.89e-08, - "philando": 5.89e-08, - "philoctetes": 5.89e-08, - "philosophia": 5.89e-08, - "phinehas": 5.89e-08, - "phonographs": 5.89e-08, - "photobombed": 5.89e-08, - "photogallery": 5.89e-08, - "pieris": 5.89e-08, - "piff": 5.89e-08, - "pinang": 5.89e-08, - "piracetam": 5.89e-08, - "piter": 5.89e-08, - "plainness": 5.89e-08, - "planeta": 5.89e-08, - "plantago": 5.89e-08, - "plateful": 5.89e-08, - "pocklington": 5.89e-08, - "poinsett": 5.89e-08, - "pokemongo": 5.89e-08, - "pokers": 5.89e-08, - "poley": 5.89e-08, - "polkas": 5.89e-08, - "poptarts": 5.89e-08, - "pora": 5.89e-08, - "porker": 5.89e-08, - "poros": 5.89e-08, - "postma": 5.89e-08, - "postmistress": 5.89e-08, - "poteau": 5.89e-08, - "potentates": 5.89e-08, - "potsherds": 5.89e-08, - "prakriti": 5.89e-08, - "prayut": 5.89e-08, - "proceso": 5.89e-08, - "procreating": 5.89e-08, - "professionalize": 5.89e-08, - "proforma": 5.89e-08, - "progres": 5.89e-08, - "proliferates": 5.89e-08, - "prominences": 5.89e-08, - "prote": 5.89e-08, - "proverbially": 5.89e-08, - "psia": 5.89e-08, - "psion": 5.89e-08, - "psionics": 5.89e-08, - "psychophysiology": 5.89e-08, - "psytrance": 5.89e-08, - "ptcl": 5.89e-08, - "pucca": 5.89e-08, - "puffball": 5.89e-08, - "pukki": 5.89e-08, - "pumila": 5.89e-08, - "puti": 5.89e-08, - "putte": 5.89e-08, - "pyare": 5.89e-08, - "pyxis": 5.89e-08, - "qdoba": 5.89e-08, - "qsr": 5.89e-08, - "quakertown": 5.89e-08, - "quantic": 5.89e-08, - "queenscliff": 5.89e-08, - "quiere": 5.89e-08, - "quints": 5.89e-08, - "quitclaim": 5.89e-08, - "radulov": 5.89e-08, - "raffled": 5.89e-08, - "ragazzi": 5.89e-08, - "rago": 5.89e-08, - "ragrets": 5.89e-08, - "rahmon": 5.89e-08, - "rainman": 5.89e-08, - "rajagopalan": 5.89e-08, - "rajahmundry": 5.89e-08, - "rajdhani": 5.89e-08, - "rambutan": 5.89e-08, - "ramsar": 5.89e-08, - "ranbaxy": 5.89e-08, - "randhawa": 5.89e-08, - "rankins": 5.25e-08, - "rankles": 5.89e-08, - "rasht": 5.89e-08, - "raval": 5.89e-08, - "rayder": 5.89e-08, - "razzaq": 5.89e-08, - "realer": 5.89e-08, - "realplayer": 5.89e-08, - "rebooked": 5.89e-08, - "recanting": 5.89e-08, - "recluses": 5.89e-08, - "recombining": 5.89e-08, - "reconquered": 5.89e-08, - "redcap": 5.89e-08, - "reenlist": 5.89e-08, - "rehana": 5.89e-08, - "renova": 5.89e-08, - "reticule": 5.89e-08, - "retune": 5.89e-08, - "rgc": 5.89e-08, - "richwood": 5.89e-08, - "ricordi": 5.89e-08, - "riggan": 5.89e-08, - "rizin": 5.89e-08, - "rkc": 5.89e-08, - "roaders": 5.89e-08, - "roastery": 5.89e-08, - "robbe": 5.89e-08, - "rolexes": 5.89e-08, - "romeu": 5.89e-08, - "ronn": 5.89e-08, - "roodepoort": 5.89e-08, - "ropers": 5.89e-08, - "rorkes": 5.89e-08, - "rosebush": 5.89e-08, - "rosenstock": 5.89e-08, - "rotators": 5.89e-08, - "roty": 5.89e-08, - "rsquo": 5.89e-08, - "ruairi": 5.89e-08, - "rubato": 5.89e-08, - "rubix": 5.89e-08, - "ruidoso": 5.89e-08, - "rumped": 5.89e-08, - "rundgren": 5.89e-08, - "rutkowski": 5.89e-08, - "sabourin": 5.89e-08, - "sadam": 5.89e-08, - "sahl": 5.89e-08, - "salehi": 5.89e-08, - "saltaire": 5.89e-08, - "saltcoats": 5.89e-08, - "sandee": 5.89e-08, - "sanfords": 5.89e-08, - "sanja": 5.89e-08, - "sanka": 5.89e-08, - "sanpete": 5.89e-08, - "sart": 5.89e-08, - "sassa": 5.89e-08, - "saugatuck": 5.89e-08, - "savery": 5.89e-08, - "savidge": 5.89e-08, - "scaggs": 5.89e-08, - "scantron": 5.89e-08, - "scba": 5.89e-08, - "schrock": 5.89e-08, - "schrodingers": 5.89e-08, - "schumaker": 5.89e-08, - "schwerner": 5.89e-08, - "schwitters": 5.89e-08, - "scif": 5.89e-08, - "scooty": 5.89e-08, - "scotstoun": 5.89e-08, - "scrapheap": 5.89e-08, - "scrummy": 5.89e-08, - "sdss": 5.89e-08, - "sechin": 5.89e-08, - "sectorial": 5.89e-08, - "seedsman": 5.89e-08, - "seguros": 5.89e-08, - "segwit": 5.89e-08, - "seph": 5.89e-08, - "serai": 5.89e-08, - "serc": 5.89e-08, - "servility": 5.89e-08, - "severability": 5.89e-08, - "shaba": 5.89e-08, - "shadowless": 5.89e-08, - "shakuntala": 5.89e-08, - "shau": 5.89e-08, - "shead": 5.89e-08, - "sheremetyevo": 5.89e-08, - "shika": 5.89e-08, - "shitbox": 5.89e-08, - "shurmur": 5.89e-08, - "siddhi": 5.89e-08, - "sidled": 5.89e-08, - "sieben": 5.89e-08, - "simplon": 5.89e-08, - "skanska": 5.89e-08, - "skelos": 5.89e-08, - "slaking": 5.89e-08, - "slidably": 5.89e-08, - "sloughed": 5.89e-08, - "smail": 5.89e-08, - "snacked": 5.89e-08, - "snooks": 5.89e-08, - "solt": 5.89e-08, - "solti": 5.89e-08, - "somberly": 5.89e-08, - "somervell": 5.89e-08, - "sonars": 5.89e-08, - "sonorities": 5.89e-08, - "sophisticate": 5.89e-08, - "soross": 5.89e-08, - "sors": 5.89e-08, - "spaeth": 5.89e-08, - "spazz": 5.89e-08, - "specif": 5.89e-08, - "spheroids": 5.89e-08, - "spiciest": 5.89e-08, - "spiderwebs": 5.89e-08, - "spinous": 5.89e-08, - "splendours": 5.89e-08, - "spliffs": 5.89e-08, - "srg": 5.89e-08, - "ssy": 5.89e-08, - "starhub": 5.89e-08, - "stearman": 5.89e-08, - "stenography": 5.89e-08, - "sterilising": 5.89e-08, - "stiffing": 5.89e-08, - "stonecutters": 5.89e-08, - "stratasys": 5.89e-08, - "strecker": 5.89e-08, - "stribling": 5.89e-08, - "strucker": 5.89e-08, - "strudwick": 5.89e-08, - "strymon": 5.89e-08, - "studly": 5.89e-08, - "stutterer": 5.89e-08, - "suba": 5.89e-08, - "submenu": 5.89e-08, - "sugarhill": 5.89e-08, - "sugoi": 5.89e-08, - "sujet": 5.89e-08, - "sukkur": 5.89e-08, - "sulfonic": 5.89e-08, - "sulli": 5.89e-08, - "superbikes": 5.89e-08, - "supercuts": 5.89e-08, - "superhit": 5.89e-08, - "supermini": 5.89e-08, - "superordinate": 5.89e-08, - "suport": 5.89e-08, - "suz": 5.89e-08, - "svod": 5.89e-08, - "swanny": 5.89e-08, - "switchgrass": 5.89e-08, - "swiveled": 5.89e-08, - "sylvanas": 5.89e-08, - "symone": 5.89e-08, - "synodic": 5.89e-08, - "synthroid": 5.89e-08, - "systole": 5.89e-08, - "tabulations": 5.89e-08, - "tacna": 5.89e-08, - "tael": 5.89e-08, - "taimur": 5.89e-08, - "takakura": 5.89e-08, - "takamura": 5.89e-08, - "tantalize": 5.89e-08, - "tashiro": 5.89e-08, - "taube": 5.89e-08, - "tdb": 5.89e-08, - "teesdale": 5.89e-08, - "terese": 5.89e-08, - "terman": 5.89e-08, - "terrio": 5.89e-08, - "tetsuro": 5.89e-08, - "thatcham": 5.89e-08, - "thati": 5.89e-08, - "theodorus": 5.89e-08, - "thermic": 5.89e-08, - "thermogenic": 5.89e-08, - "thie": 5.89e-08, - "thinkable": 5.89e-08, - "thorens": 5.89e-08, - "thow": 5.89e-08, - "thursby": 5.89e-08, - "thurstan": 5.89e-08, - "thymocytes": 5.89e-08, - "tibbits": 5.89e-08, - "ticknor": 5.89e-08, - "tii": 5.89e-08, - "tillmans": 5.89e-08, - "tinggi": 5.89e-08, - "toadstools": 5.89e-08, - "toilers": 5.89e-08, - "tongas": 1.12e-08, - "tostada": 5.89e-08, - "tradewinds": 5.89e-08, - "tramped": 5.89e-08, - "trank": 5.89e-08, - "treasons": 5.89e-08, - "treen": 5.89e-08, - "treg": 5.89e-08, - "tripadvisors": 5.89e-08, - "troian": 5.89e-08, - "trona": 5.89e-08, - "trotskyite": 5.89e-08, - "trull": 5.89e-08, - "trv": 5.89e-08, - "trypophobia": 5.89e-08, - "tsf": 5.89e-08, - "tsimshian": 5.89e-08, - "tunnelled": 5.89e-08, - "turkmens": 5.89e-08, - "tusa": 5.89e-08, - "twitterati": 5.89e-08, - "twoo": 5.89e-08, - "tyldesley": 5.89e-08, - "ufp": 5.89e-08, - "ugric": 5.89e-08, - "ulysse": 5.89e-08, - "umayyads": 5.89e-08, - "unbridgeable": 5.89e-08, - "underplay": 5.89e-08, - "underselling": 5.89e-08, - "unfitness": 5.89e-08, - "unforgotten": 5.89e-08, - "unhinge": 5.89e-08, - "uniondale": 5.89e-08, - "uniques": 5.89e-08, - "unitedkingdom": 5.89e-08, - "univisions": 5.89e-08, - "unschooled": 5.89e-08, - "unsent": 5.89e-08, - "unserer": 5.89e-08, - "upadhyay": 5.89e-08, - "uplinks": 5.89e-08, - "urmia": 5.89e-08, - "usec": 5.89e-08, - "uspa": 5.89e-08, - "utils": 5.89e-08, - "utopians": 5.89e-08, - "vacillate": 5.89e-08, - "valentini": 5.89e-08, - "vallis": 2.04e-08, - "vamped": 5.89e-08, - "vanvleet": 5.89e-08, - "varnum": 5.89e-08, - "veet": 5.89e-08, - "veneno": 5.89e-08, - "venlo": 5.89e-08, - "verged": 5.89e-08, - "verneuil": 5.89e-08, - "vesti": 5.89e-08, - "vien": 5.89e-08, - "viewtiful": 5.89e-08, - "vikrant": 5.89e-08, - "vinous": 5.89e-08, - "vitos": 5.89e-08, - "vivarium": 5.89e-08, - "volpone": 5.89e-08, - "voth": 5.89e-08, - "vyasa": 5.89e-08, - "vyse": 5.89e-08, - "waec": 5.89e-08, - "wailuku": 5.89e-08, - "wainscot": 5.89e-08, - "wakil": 5.89e-08, - "waldrop": 5.89e-08, - "wallas": 5.89e-08, - "wallkill": 5.89e-08, - "walthall": 5.89e-08, - "wankel": 5.89e-08, - "wanky": 5.89e-08, - "warrenpoint": 5.89e-08, - "warum": 5.89e-08, - "wastepaper": 5.89e-08, - "watchfulness": 5.89e-08, - "wayzata": 5.89e-08, - "wcd": 5.89e-08, - "weaponised": 5.89e-08, - "weatherall": 5.89e-08, - "webm": 5.89e-08, - "weiter": 5.89e-08, - "wheedle": 5.89e-08, - "whereto": 5.89e-08, - "whitburn": 5.89e-08, - "wiff": 5.89e-08, - "wigton": 5.89e-08, - "wigtown": 5.89e-08, - "wij": 5.89e-08, - "wimbush": 5.89e-08, - "winchelsea": 5.89e-08, - "winehouses": 5.89e-08, - "wissen": 5.89e-08, - "wittier": 5.89e-08, - "wjla": 5.89e-08, - "wns": 5.89e-08, - "wokeness": 5.89e-08, - "woodgrain": 5.89e-08, - "wooding": 5.89e-08, - "woolloongabba": 5.89e-08, - "worli": 5.89e-08, - "wrotham": 5.89e-08, - "wroughton": 5.89e-08, - "wrp": 5.89e-08, - "wullie": 5.89e-08, - "wynette": 5.89e-08, - "wynnes": 5.89e-08, - "xans": 5.89e-08, - "xbrl": 5.89e-08, - "xiaoming": 5.89e-08, - "xxy": 5.89e-08, - "yaeger": 5.89e-08, - "yahia": 5.89e-08, - "yamane": 5.89e-08, - "yamen": 5.89e-08, - "yaroslavsky": 5.89e-08, - "yavuz": 5.89e-08, - "yec": 5.89e-08, - "yehoshua": 5.89e-08, - "yeouido": 5.89e-08, - "yeow": 5.89e-08, - "yoakum": 5.89e-08, - "yohji": 5.89e-08, - "yoplait": 5.89e-08, - "youngers": 5.89e-08, - "ystad": 5.89e-08, - "yuichiro": 5.89e-08, - "zapatero": 5.89e-08, - "zard": 5.89e-08, - "zelazny": 5.89e-08, - "zenger": 5.89e-08, - "zhaos": 5.89e-08, - "zila": 5.89e-08, - "zubov": 5.89e-08, - "aaaaaaah": 5.75e-08, - "aaaahhh": 5.75e-08, - "aauw": 5.75e-08, - "abdus": 5.75e-08, - "aberfoyle": 5.75e-08, - "abteilung": 5.75e-08, - "acclimatise": 5.75e-08, - "acellular": 5.75e-08, - "achin": 5.75e-08, - "actioned": 5.75e-08, - "adelphia": 5.75e-08, - "adeptly": 5.75e-08, - "adin": 5.75e-08, - "adlib": 5.75e-08, - "affronts": 5.75e-08, - "afta": 5.75e-08, - "agaricus": 5.75e-08, - "agia": 5.75e-08, - "agrobacterium": 5.75e-08, - "agroecology": 5.75e-08, - "aham": 5.75e-08, - "ahasuerus": 5.75e-08, - "airfoils": 5.75e-08, - "airlocks": 5.75e-08, - "ajaxs": 5.75e-08, - "alaya": 5.75e-08, - "alaykum": 5.75e-08, - "albuquerques": 5.75e-08, - "alentejo": 5.75e-08, - "aleppos": 5.75e-08, - "alexandrov": 5.75e-08, - "alhassan": 5.75e-08, - "aling": 5.75e-08, - "alisher": 5.75e-08, - "alleppey": 5.75e-08, - "alomar": 5.75e-08, - "alv": 5.75e-08, - "amai": 5.75e-08, - "amaravati": 5.75e-08, - "ambre": 5.75e-08, - "amcham": 5.75e-08, - "americo": 5.75e-08, - "amica": 5.75e-08, - "amins": 5.75e-08, - "aminah": 5.75e-08, - "ammy": 5.75e-08, - "amstrad": 5.75e-08, - "anastasias": 5.75e-08, - "anciens": 5.75e-08, - "anduin": 5.75e-08, - "angello": 5.75e-08, - "angiosperm": 5.75e-08, - "anjos": 5.75e-08, - "anjum": 5.75e-08, - "annick": 5.75e-08, - "anorexics": 5.75e-08, - "anthon": 5.75e-08, - "anthraquinone": 5.75e-08, - "antinous": 5.75e-08, - "apap": 5.75e-08, - "apfel": 5.75e-08, - "apollinaris": 5.75e-08, - "appar": 5.75e-08, - "appli": 5.75e-08, - "apuleius": 5.75e-08, - "aquamans": 5.75e-08, - "arat": 5.75e-08, - "archduchess": 5.75e-08, - "arika": 5.75e-08, - "ariosto": 5.75e-08, - "aristocats": 5.75e-08, - "arnheim": 5.75e-08, - "arquitectura": 5.75e-08, - "artificers": 5.75e-08, - "artsakh": 5.75e-08, - "arundell": 5.75e-08, - "arvs": 5.75e-08, - "asaro": 5.75e-08, - "ascari": 5.75e-08, - "ashcraft": 5.75e-08, - "ashikaga": 5.75e-08, - "asiata": 5.75e-08, - "assuaging": 5.75e-08, - "assunta": 5.75e-08, - "atomism": 5.75e-08, - "aubree": 5.75e-08, - "aviaries": 5.75e-08, - "avma": 5.75e-08, - "aylesford": 5.75e-08, - "azpi": 5.75e-08, - "bachelard": 5.75e-08, - "badboy": 5.75e-08, - "badiou": 5.75e-08, - "bael": 5.75e-08, - "bagless": 5.75e-08, - "bahati": 5.75e-08, - "bailon": 5.75e-08, - "bakeware": 5.75e-08, - "balai": 5.75e-08, - "balbi": 5.75e-08, - "banjara": 5.75e-08, - "bankrolls": 5.75e-08, - "banku": 5.75e-08, - "baoding": 5.75e-08, - "barackobama": 5.75e-08, - "barataria": 5.75e-08, - "barch": 5.75e-08, - "baritones": 5.75e-08, - "barness": 5.75e-08, - "baronetcy": 5.75e-08, - "basileus": 5.75e-08, - "bassel": 5.75e-08, - "bastardo": 5.75e-08, - "battletoads": 5.75e-08, - "beany": 5.75e-08, - "beauchemin": 5.75e-08, - "beause": 5.75e-08, - "becareful": 5.75e-08, - "becuse": 5.75e-08, - "bedevil": 5.75e-08, - "belarussian": 5.75e-08, - "belfer": 5.75e-08, - "bellingcat": 5.75e-08, - "belorussia": 5.75e-08, - "benedicta": 5.75e-08, - "bente": 5.75e-08, - "benvolio": 5.75e-08, - "berghof": 5.75e-08, - "berlanti": 5.75e-08, - "bers": 5.75e-08, - "bertolini": 5.75e-08, - "beru": 5.75e-08, - "besi": 5.75e-08, - "betterton": 5.75e-08, - "betul": 5.75e-08, - "bgg": 5.75e-08, - "bgo": 5.75e-08, - "biagini": 5.75e-08, - "bianchis": 5.75e-08, - "biaxial": 5.75e-08, - "bioelectric": 5.75e-08, - "biog": 5.75e-08, - "biomimicry": 5.75e-08, - "bira": 5.75e-08, - "bisco": 5.75e-08, - "blackcurrants": 5.75e-08, - "blackledge": 5.75e-08, - "blairsville": 5.75e-08, - "blankety": 5.75e-08, - "blankness": 5.75e-08, - "blisteringly": 5.75e-08, - "bng": 5.75e-08, - "boesch": 5.75e-08, - "bogert": 5.75e-08, - "bonelli": 5.75e-08, - "bonhomme": 5.75e-08, - "bonsall": 5.75e-08, - "botto": 5.75e-08, - "boucle": 5.75e-08, - "boutin": 5.75e-08, - "bowflex": 5.75e-08, - "bowmore": 5.75e-08, - "branchial": 5.75e-08, - "brandan": 5.75e-08, - "brau": 5.75e-08, - "breadline": 5.75e-08, - "bready": 5.75e-08, - "breastplates": 5.75e-08, - "brocket": 5.75e-08, - "brodies": 5.75e-08, - "bromeliads": 5.75e-08, - "bronski": 5.75e-08, - "brrrr": 5.75e-08, - "buckhurst": 5.75e-08, - "budapests": 5.75e-08, - "bunco": 5.75e-08, - "bunda": 5.75e-08, - "bunko": 5.75e-08, - "bunky": 5.75e-08, - "burbling": 5.75e-08, - "bushwalking": 5.75e-08, - "bushwhackers": 5.75e-08, - "buttplug": 5.75e-08, - "cafferty": 5.75e-08, - "cafu": 5.75e-08, - "caldeira": 5.75e-08, - "caldron": 5.75e-08, - "calero": 5.75e-08, - "cambell": 5.75e-08, - "cang": 5.75e-08, - "cantera": 5.75e-08, - "canterlot": 5.75e-08, - "caol": 5.75e-08, - "capriles": 5.75e-08, - "carbamate": 5.75e-08, - "cardia": 5.75e-08, - "caricaturing": 5.75e-08, - "caroli": 5.75e-08, - "carryin": 5.75e-08, - "cartledge": 5.75e-08, - "caspers": 5.75e-08, - "casspi": 5.75e-08, - "catiline": 5.75e-08, - "cazenove": 5.75e-08, - "cees": 5.75e-08, - "censuring": 5.75e-08, - "centeno": 5.75e-08, - "centrepoint": 5.75e-08, - "cepr": 5.75e-08, - "ceps": 5.75e-08, - "cesario": 5.75e-08, - "chalamet": 5.75e-08, - "chalfant": 5.75e-08, - "chaman": 5.75e-08, - "chambering": 5.75e-08, - "chandy": 5.75e-08, - "changeless": 5.75e-08, - "changzhou": 5.75e-08, - "chanler": 5.75e-08, - "chanterelles": 5.75e-08, - "charlot": 5.75e-08, - "charmless": 5.75e-08, - "charta": 5.75e-08, - "chasseur": 5.75e-08, - "chatterleys": 5.75e-08, - "chauffer": 5.75e-08, - "cheerier": 5.75e-08, - "cheerless": 5.75e-08, - "chelly": 5.75e-08, - "chemotactic": 5.75e-08, - "chetniks": 5.75e-08, - "chickasaws": 5.75e-08, - "chigwell": 5.75e-08, - "chiharu": 5.75e-08, - "chimichanga": 5.75e-08, - "chinky": 5.75e-08, - "chinois": 5.75e-08, - "chir": 5.75e-08, - "chisum": 5.75e-08, - "choroidal": 5.75e-08, - "choudhry": 5.75e-08, - "chrisley": 5.75e-08, - "chromaticity": 5.75e-08, - "chromatids": 5.75e-08, - "cinereous": 5.75e-08, - "circassia": 5.75e-08, - "civitavecchia": 5.75e-08, - "clia": 5.75e-08, - "clippy": 5.75e-08, - "clothespins": 5.75e-08, - "cnm": 5.75e-08, - "cnpc": 5.75e-08, - "coastguards": 5.75e-08, - "cobi": 5.75e-08, - "cockade": 5.75e-08, - "cofer": 5.75e-08, - "collegehumor": 5.75e-08, - "colles": 5.75e-08, - "collierville": 5.75e-08, - "colmes": 5.75e-08, - "columb": 5.75e-08, - "commisioner": 5.75e-08, - "complexly": 5.75e-08, - "comune": 5.75e-08, - "concretes": 5.75e-08, - "concubinage": 5.75e-08, - "condell": 5.75e-08, - "configurator": 5.75e-08, - "confusedly": 5.75e-08, - "containerization": 5.75e-08, - "conyngham": 5.75e-08, - "coomera": 5.75e-08, - "cooperator": 5.75e-08, - "copal": 5.75e-08, - "copybook": 5.75e-08, - "cordwood": 5.75e-08, - "corelogic": 5.75e-08, - "corndog": 5.75e-08, - "cotopaxi": 5.75e-08, - "couche": 5.75e-08, - "countersunk": 5.75e-08, - "couzens": 5.75e-08, - "cowin": 5.75e-08, - "cowrie": 5.75e-08, - "cpw": 5.75e-08, - "cratchit": 5.75e-08, - "cravath": 5.75e-08, - "credito": 5.75e-08, - "critchlow": 5.75e-08, - "crome": 5.75e-08, - "crossway": 5.75e-08, - "crushs": 5.75e-08, - "csas": 5.75e-08, - "cubesats": 5.75e-08, - "cubone": 5.75e-08, - "cucaracha": 5.75e-08, - "cummin": 5.75e-08, - "cunny": 5.75e-08, - "curlin": 5.75e-08, - "cyanobacterial": 5.75e-08, - "cycler": 5.75e-08, - "dacus": 5.75e-08, - "daimlerchrysler": 5.75e-08, - "daj": 5.75e-08, - "danity": 5.75e-08, - "dapat": 5.75e-08, - "darkstar": 5.75e-08, - "darpas": 5.75e-08, - "datapoint": 5.75e-08, - "daydreamed": 5.75e-08, - "dazai": 5.75e-08, - "deathlok": 5.75e-08, - "deigns": 5.75e-08, - "delmonico": 5.75e-08, - "deloris": 5.75e-08, - "deltaic": 5.75e-08, - "dematha": 5.75e-08, - "demobilised": 5.75e-08, - "demonstratives": 5.75e-08, - "deobandi": 5.75e-08, - "dermalogica": 5.75e-08, - "desalvo": 5.75e-08, - "descanso": 5.75e-08, - "descant": 5.75e-08, - "determinist": 5.75e-08, - "devery": 5.75e-08, - "dewpoint": 5.75e-08, - "dge": 5.75e-08, - "diba": 5.75e-08, - "digitise": 5.75e-08, - "dignam": 5.75e-08, - "dinardo": 5.75e-08, - "directivity": 5.75e-08, - "disfunction": 5.75e-08, - "distinctness": 5.75e-08, - "disturber": 5.75e-08, - "diversifies": 5.75e-08, - "djerba": 5.75e-08, - "docx": 5.75e-08, - "doniphan": 5.75e-08, - "doodads": 5.75e-08, - "dosimeters": 5.75e-08, - "doublethink": 5.75e-08, - "drabs": 5.75e-08, - "draftsmen": 5.75e-08, - "dragoncon": 5.75e-08, - "dragonglass": 5.75e-08, - "dragunov": 5.75e-08, - "drakkar": 5.75e-08, - "dramatis": 5.75e-08, - "drongo": 5.75e-08, - "droppingly": 5.75e-08, - "drumheller": 5.75e-08, - "dubna": 5.75e-08, - "duesenberg": 5.75e-08, - "duesseldorf": 5.75e-08, - "dumitru": 5.75e-08, - "duroc": 5.75e-08, - "duron": 5.75e-08, - "dustproof": 5.75e-08, - "duxford": 5.75e-08, - "dysautonomia": 5.75e-08, - "dystopias": 5.75e-08, - "ecmascript": 5.75e-08, - "effectivity": 5.75e-08, - "egypte": 5.75e-08, - "ehren": 5.75e-08, - "ehrs": 5.75e-08, - "elastigirl": 5.75e-08, - "elazar": 5.75e-08, - "electrochemically": 5.75e-08, - "electronegative": 5.75e-08, - "eleison": 5.75e-08, - "encourager": 5.75e-08, - "entrepreneurialism": 5.75e-08, - "ericssons": 5.75e-08, - "erlend": 5.75e-08, - "erra": 5.75e-08, - "esquires": 5.75e-08, - "estragon": 5.75e-08, - "ests": 5.75e-08, - "ethio": 5.75e-08, - "etiologies": 5.75e-08, - "etoh": 5.75e-08, - "etoposide": 5.75e-08, - "europas": 5.75e-08, - "eutelsat": 5.75e-08, - "evasiveness": 5.75e-08, - "evenson": 5.75e-08, - "everyway": 5.75e-08, - "excitons": 5.75e-08, - "exemplification": 5.75e-08, - "exept": 5.75e-08, - "extravasation": 5.75e-08, - "exxons": 5.75e-08, - "ezekiels": 5.75e-08, - "fabrique": 5.75e-08, - "factitious": 5.75e-08, - "fairhurst": 5.75e-08, - "fairtax": 5.75e-08, - "fakeness": 5.75e-08, - "fallers": 5.75e-08, - "fascinator": 5.75e-08, - "fawley": 5.75e-08, - "feeley": 5.75e-08, - "fellner": 5.75e-08, - "femail": 5.75e-08, - "femora": 5.75e-08, - "ferrars": 5.75e-08, - "ffvii": 5.75e-08, - "finagle": 5.75e-08, - "firemens": 5.75e-08, - "fiskars": 5.75e-08, - "flaccus": 5.75e-08, - "flagellated": 5.75e-08, - "flanger": 5.75e-08, - "fleiss": 5.75e-08, - "flensburg": 5.75e-08, - "floret": 5.75e-08, - "flowin": 5.75e-08, - "floy": 5.75e-08, - "fockers": 5.75e-08, - "foisting": 5.75e-08, - "folles": 5.75e-08, - "fonsi": 5.75e-08, - "foredeck": 5.75e-08, - "forenoon": 5.75e-08, - "foriegn": 5.75e-08, - "formalisms": 5.75e-08, - "formals": 5.75e-08, - "forwardly": 5.75e-08, - "frandsen": 5.75e-08, - "frangible": 5.75e-08, - "frangipane": 5.75e-08, - "freier": 5.75e-08, - "freighting": 5.75e-08, - "fric": 5.75e-08, - "friendlys": 5.75e-08, - "frier": 5.75e-08, - "frontex": 5.75e-08, - "frosties": 5.75e-08, - "fruitland": 5.75e-08, - "fuckups": 5.75e-08, - "fuer": 5.75e-08, - "fuerza": 5.75e-08, - "fuggin": 5.75e-08, - "furan": 5.75e-08, - "furi": 5.75e-08, - "futanari": 5.75e-08, - "fyr": 5.75e-08, - "gabaa": 5.75e-08, - "gaige": 5.75e-08, - "gamel": 5.75e-08, - "gandhara": 5.75e-08, - "gandini": 5.75e-08, - "garett": 5.75e-08, - "gauci": 5.75e-08, - "gausman": 5.75e-08, - "gawn": 5.75e-08, - "gazoo": 5.75e-08, - "gerbera": 5.75e-08, - "giguere": 5.75e-08, - "gimbals": 5.75e-08, - "ginetta": 5.75e-08, - "girdled": 5.75e-08, - "girlguiding": 5.75e-08, - "glasper": 5.75e-08, - "glendower": 5.75e-08, - "gloucesters": 5.75e-08, - "glycan": 5.75e-08, - "glyndwr": 5.75e-08, - "goas": 5.75e-08, - "gobbi": 5.75e-08, - "godel": 5.75e-08, - "golmaal": 5.75e-08, - "goomba": 5.75e-08, - "gothard": 5.75e-08, - "goudie": 5.75e-08, - "governement": 5.75e-08, - "graetz": 5.75e-08, - "grandbabies": 5.75e-08, - "granton": 5.75e-08, - "graving": 5.75e-08, - "greenberger": 5.75e-08, - "greenport": 5.75e-08, - "griffis": 5.75e-08, - "grimness": 5.75e-08, - "gromov": 5.75e-08, - "grosbeak": 5.75e-08, - "grousing": 5.75e-08, - "guaran": 5.75e-08, - "guavas": 5.75e-08, - "guidewire": 5.75e-08, - "gyration": 5.75e-08, - "gyun": 5.75e-08, - "habbit": 5.75e-08, - "hajek": 5.75e-08, - "halestorm": 5.75e-08, - "hami": 5.75e-08, - "hampel": 5.75e-08, - "hanabusa": 5.75e-08, - "hanami": 5.75e-08, - "hangup": 5.75e-08, - "hanning": 5.75e-08, - "haqq": 5.75e-08, - "harbottle": 5.75e-08, - "harbourfront": 5.75e-08, - "hardtack": 5.75e-08, - "harmonicas": 5.75e-08, - "hashomer": 5.75e-08, - "haskel": 5.75e-08, - "hato": 5.75e-08, - "hauraki": 5.75e-08, - "hausner": 5.75e-08, - "hazlett": 5.75e-08, - "hazm": 5.75e-08, - "hbsag": 5.75e-08, - "hco": 5.75e-08, - "headlam": 5.75e-08, - "hedden": 5.75e-08, - "hedvig": 5.75e-08, - "heerenveen": 5.75e-08, - "hefe": 5.75e-08, - "heimann": 5.75e-08, - "heinkel": 5.75e-08, - "helsingfors": 5.75e-08, - "helt": 5.75e-08, - "hemmer": 5.75e-08, - "hennes": 5.75e-08, - "hermana": 5.75e-08, - "herrn": 5.75e-08, - "hershberger": 5.75e-08, - "hexameter": 5.75e-08, - "heys": 5.75e-08, - "higby": 5.75e-08, - "hilli": 5.75e-08, - "hinchey": 5.75e-08, - "hinderance": 5.75e-08, - "hio": 5.75e-08, - "hirelings": 5.75e-08, - "historico": 5.75e-08, - "hoadley": 5.75e-08, - "hogben": 5.75e-08, - "hoje": 5.75e-08, - "holsworthy": 5.75e-08, - "honourary": 5.75e-08, - "hoppus": 5.75e-08, - "hornberger": 5.75e-08, - "hornblende": 5.75e-08, - "horsford": 5.75e-08, - "housecat": 5.75e-08, - "hpr": 5.75e-08, - "hsk": 5.75e-08, - "hubley": 5.75e-08, - "hukum": 5.75e-08, - "hutten": 5.75e-08, - "hwarang": 5.75e-08, - "hypercritical": 5.75e-08, - "hypokalemia": 5.75e-08, - "hypoplastic": 5.75e-08, - "hyrcanus": 5.75e-08, - "iding": 5.75e-08, - "igwe": 5.75e-08, - "imaan": 5.75e-08, - "imidacloprid": 5.75e-08, - "imipramine": 5.75e-08, - "impalas": 5.75e-08, - "impalement": 5.75e-08, - "imperiale": 5.75e-08, - "imperiously": 5.75e-08, - "implausibility": 5.75e-08, - "impressment": 5.75e-08, - "imsi": 5.75e-08, - "imvu": 5.75e-08, - "includin": 5.75e-08, - "inconel": 5.75e-08, - "incorporations": 5.75e-08, - "industrielle": 5.75e-08, - "ineptly": 5.75e-08, - "infectiously": 5.75e-08, - "infix": 5.75e-08, - "ingenieur": 5.75e-08, - "inquisitively": 5.75e-08, - "insignificantly": 5.75e-08, - "instagrammed": 5.75e-08, - "institutionalism": 5.75e-08, - "insupportable": 5.75e-08, - "interactionism": 5.75e-08, - "interoffice": 5.75e-08, - "interzone": 5.75e-08, - "intial": 5.75e-08, - "intr": 5.75e-08, - "intune": 5.75e-08, - "isay": 5.75e-08, - "ishigami": 5.75e-08, - "isildur": 5.75e-08, - "isopods": 5.75e-08, - "issas": 5.75e-08, - "italiane": 5.75e-08, - "iterators": 5.75e-08, - "itto": 5.75e-08, - "itwas": 5.75e-08, - "iulia": 5.75e-08, - "iuniverse": 5.75e-08, - "jadavpur": 5.75e-08, - "jadeveon": 5.75e-08, - "jamahiriya": 5.75e-08, - "jamat": 5.75e-08, - "jamm": 5.75e-08, - "janani": 5.75e-08, - "janices": 5.75e-08, - "jeannot": 5.75e-08, - "jelani": 5.75e-08, - "jibs": 5.75e-08, - "jind": 5.75e-08, - "jovani": 5.75e-08, - "jubei": 5.75e-08, - "judt": 5.75e-08, - "jugend": 5.75e-08, - "jumma": 5.75e-08, - "juvia": 5.75e-08, - "kadeem": 5.75e-08, - "kagero": 5.75e-08, - "kaise": 5.75e-08, - "kalli": 5.75e-08, - "kammerer": 5.75e-08, - "kanchanaburi": 5.75e-08, - "kapow": 5.75e-08, - "kapu": 5.75e-08, - "karaka": 5.75e-08, - "karanka": 5.75e-08, - "kasserine": 5.75e-08, - "kavin": 5.75e-08, - "kawahara": 5.75e-08, - "kbd": 5.75e-08, - "kdrama": 5.75e-08, - "keens": 5.75e-08, - "kerbal": 5.75e-08, - "kettler": 5.75e-08, - "kettlewell": 5.75e-08, - "keya": 5.75e-08, - "keyway": 5.75e-08, - "khairul": 5.75e-08, - "khatam": 5.75e-08, - "khatun": 5.75e-08, - "khimki": 5.75e-08, - "kilkeel": 5.75e-08, - "killebrew": 5.75e-08, - "kingaroy": 5.75e-08, - "kingham": 5.75e-08, - "kinnick": 5.75e-08, - "kisa": 5.75e-08, - "kise": 5.75e-08, - "kiseki": 5.75e-08, - "kiselev": 5.75e-08, - "kisuke": 5.75e-08, - "klaassen": 5.75e-08, - "klagenfurt": 5.75e-08, - "klaxons": 5.75e-08, - "kleinberg": 5.75e-08, - "kmg": 5.75e-08, - "knk": 5.75e-08, - "knowland": 5.75e-08, - "kojiro": 5.75e-08, - "komsomolskaya": 5.75e-08, - "konamis": 5.75e-08, - "koshi": 5.75e-08, - "koski": 5.75e-08, - "kowal": 5.75e-08, - "kozo": 5.75e-08, - "kretschmer": 5.75e-08, - "ktb": 5.75e-08, - "kto": 5.75e-08, - "kuli": 5.75e-08, - "kulik": 5.75e-08, - "kunshan": 5.75e-08, - "kunsthalle": 5.75e-08, - "kurwa": 5.75e-08, - "kusum": 5.75e-08, - "kuykendall": 5.75e-08, - "kuzu": 5.75e-08, - "lagoa": 5.75e-08, - "laguerre": 5.75e-08, - "lahn": 5.75e-08, - "lamda": 5.75e-08, - "laminations": 5.75e-08, - "lancashires": 5.75e-08, - "laozi": 5.75e-08, - "lapaglia": 5.75e-08, - "lascaux": 5.75e-08, - "latos": 5.75e-08, - "laundrette": 5.75e-08, - "laursen": 5.75e-08, - "lavington": 5.75e-08, - "lbjs": 5.75e-08, - "lccn": 5.75e-08, - "lcv": 5.75e-08, - "leafhoppers": 5.75e-08, - "leath": 5.75e-08, - "leguminous": 5.75e-08, - "lehre": 5.75e-08, - "lemonades": 5.75e-08, - "lenawee": 5.75e-08, - "lescaut": 5.75e-08, - "letwin": 5.75e-08, - "levo": 5.75e-08, - "levothyroxine": 5.75e-08, - "lgi": 5.75e-08, - "lichter": 5.75e-08, - "ligeia": 5.75e-08, - "linewidth": 5.75e-08, - "linge": 5.75e-08, - "lipoma": 5.75e-08, - "lipps": 5.75e-08, - "listicle": 5.75e-08, - "lits": 5.75e-08, - "littermates": 5.75e-08, - "littlewoods": 5.75e-08, - "livvy": 5.75e-08, - "lizabeth": 5.75e-08, - "llandovery": 5.75e-08, - "lmf": 5.75e-08, - "lojack": 5.75e-08, - "lomborg": 5.75e-08, - "londinium": 5.75e-08, - "longsuffering": 5.75e-08, - "lopetegui": 5.75e-08, - "loseit": 5.75e-08, - "loucks": 5.75e-08, - "lovatt": 5.75e-08, - "lubavitch": 5.75e-08, - "luciferian": 5.75e-08, - "lugh": 5.75e-08, - "luxottica": 5.75e-08, - "lyford": 5.75e-08, - "lynnette": 5.75e-08, - "macdill": 5.75e-08, - "macheda": 5.75e-08, - "mackinlay": 5.75e-08, - "macnaughton": 5.75e-08, - "macquarrie": 5.75e-08, - "mactaggart": 5.75e-08, - "madagascan": 5.75e-08, - "maeng": 5.75e-08, - "mafeking": 5.75e-08, - "magan": 5.75e-08, - "magennis": 5.75e-08, - "magmar": 5.75e-08, - "magnes": 5.75e-08, - "magness": 5.75e-08, - "mahala": 5.75e-08, - "mahaprabhu": 5.75e-08, - "maharajas": 5.75e-08, - "maintainance": 5.75e-08, - "maje": 5.75e-08, - "malawians": 5.75e-08, - "mangel": 5.75e-08, - "mangu": 5.75e-08, - "mansbridge": 5.75e-08, - "manzanilla": 5.75e-08, - "maoi": 5.75e-08, - "marad": 5.75e-08, - "marathoning": 5.75e-08, - "marchmont": 5.75e-08, - "marroquin": 5.75e-08, - "masaccio": 5.75e-08, - "mascarenhas": 5.75e-08, - "masqueraded": 5.75e-08, - "matarazzo": 5.75e-08, - "matsuzaka": 5.75e-08, - "maximiliano": 5.75e-08, - "mayi": 5.75e-08, - "mccaslin": 5.75e-08, - "mcdreamy": 5.75e-08, - "mcfeely": 5.75e-08, - "mcswain": 5.75e-08, - "mdk": 5.75e-08, - "meac": 5.75e-08, - "meara": 5.75e-08, - "meatus": 5.75e-08, - "mechagodzilla": 5.75e-08, - "medicalization": 5.75e-08, - "mefloquine": 5.75e-08, - "megabit": 5.75e-08, - "megaliths": 5.75e-08, - "mehrdad": 5.75e-08, - "menara": 5.75e-08, - "merricks": 5.75e-08, - "meryn": 5.75e-08, - "messianism": 5.75e-08, - "mesure": 5.75e-08, - "mesurier": 5.75e-08, - "meteoroids": 5.75e-08, - "methven": 5.75e-08, - "mewar": 5.75e-08, - "micahs": 5.75e-08, - "michiganders": 5.75e-08, - "mickiewicz": 5.75e-08, - "midcap": 5.75e-08, - "midleton": 5.75e-08, - "mignola": 5.75e-08, - "miis": 5.75e-08, - "mildness": 5.75e-08, - "millbrae": 5.75e-08, - "millia": 5.75e-08, - "minamata": 5.75e-08, - "minda": 5.75e-08, - "mineiro": 5.75e-08, - "minutest": 5.75e-08, - "miras": 5.75e-08, - "mirco": 5.75e-08, - "misch": 5.75e-08, - "misi": 5.75e-08, - "mitel": 5.75e-08, - "mitter": 5.75e-08, - "moanin": 5.75e-08, - "mobilier": 5.75e-08, - "modernes": 5.75e-08, - "moholy": 5.75e-08, - "molyneaux": 5.75e-08, - "monel": 5.75e-08, - "monis": 5.75e-08, - "monozygotic": 5.75e-08, - "montanans": 5.75e-08, - "mooncakes": 5.75e-08, - "mopac": 5.75e-08, - "moranis": 5.75e-08, - "morial": 5.75e-08, - "morna": 5.75e-08, - "morta": 5.75e-08, - "mortgagor": 5.75e-08, - "moustached": 5.75e-08, - "moustapha": 5.75e-08, - "moze": 5.75e-08, - "mrk": 5.75e-08, - "msec": 5.75e-08, - "mtk": 5.75e-08, - "muhamad": 5.75e-08, - "mukai": 5.75e-08, - "multitalented": 5.75e-08, - "munificent": 5.75e-08, - "musca": 5.75e-08, - "musha": 5.75e-08, - "mushers": 5.75e-08, - "musicologists": 5.75e-08, - "naby": 5.75e-08, - "nafs": 5.75e-08, - "nailer": 5.75e-08, - "naish": 5.75e-08, - "nakahara": 5.75e-08, - "nanomachines": 5.75e-08, - "nare": 5.75e-08, - "naren": 5.75e-08, - "narthex": 5.75e-08, - "nasha": 5.75e-08, - "nassir": 5.75e-08, - "nazari": 5.75e-08, - "ncsa": 5.75e-08, - "ncsoft": 5.75e-08, - "ncube": 5.75e-08, - "nearctic": 5.75e-08, - "neoclassicism": 5.75e-08, - "netanya": 5.75e-08, - "netherfield": 5.75e-08, - "newsgathering": 5.75e-08, - "niacinamide": 5.75e-08, - "niagra": 5.75e-08, - "nicey": 5.75e-08, - "nigricans": 5.75e-08, - "nlg": 5.75e-08, - "noarlunga": 5.75e-08, - "nocs": 5.75e-08, - "nsukka": 5.75e-08, - "nsv": 5.75e-08, - "nutria": 5.75e-08, - "odonohue": 5.75e-08, - "obliviously": 5.75e-08, - "obstructionists": 5.75e-08, - "obt": 5.75e-08, - "obtusely": 5.75e-08, - "obviates": 5.75e-08, - "ocker": 5.75e-08, - "oconto": 5.75e-08, - "odonata": 5.75e-08, - "oel": 5.75e-08, - "oen": 5.75e-08, - "offe": 5.75e-08, - "ogni": 5.75e-08, - "ogunquit": 5.75e-08, - "oiseau": 5.75e-08, - "oldroyd": 5.75e-08, - "olimpia": 5.75e-08, - "oliv": 5.75e-08, - "olleh": 5.75e-08, - "onf": 5.75e-08, - "onlive": 5.75e-08, - "onrushing": 5.75e-08, - "openreach": 5.75e-08, - "opsec": 5.75e-08, - "orat": 5.75e-08, - "organogenesis": 5.75e-08, - "originalism": 5.75e-08, - "ormandy": 5.75e-08, - "ossicles": 5.75e-08, - "osteo": 5.75e-08, - "osteology": 5.75e-08, - "outers": 5.75e-08, - "outlives": 5.75e-08, - "outrider": 5.75e-08, - "outspend": 5.75e-08, - "outwear": 5.75e-08, - "ovenproof": 5.75e-08, - "ovule": 5.75e-08, - "owncloud": 5.75e-08, - "oxidising": 5.75e-08, - "packager": 5.75e-08, - "padalecki": 5.75e-08, - "padmore": 5.75e-08, - "padrino": 5.75e-08, - "pagar": 5.75e-08, - "palaearctic": 5.75e-08, - "palakkad": 5.75e-08, - "palapa": 5.75e-08, - "palaszczuk": 5.75e-08, - "palindromic": 5.75e-08, - "panchkula": 5.75e-08, - "paranoiac": 5.75e-08, - "paratroop": 5.75e-08, - "paresis": 5.75e-08, - "parlays": 5.75e-08, - "parmigiana": 5.75e-08, - "pasado": 5.75e-08, - "pattinsons": 5.75e-08, - "pauvre": 5.75e-08, - "pavlich": 5.75e-08, - "pccs": 5.75e-08, - "pdh": 5.75e-08, - "pedagogues": 5.75e-08, - "pegler": 5.75e-08, - "pelee": 5.75e-08, - "pellucida": 5.75e-08, - "penetrance": 5.75e-08, - "pentode": 5.75e-08, - "peptidoglycan": 5.75e-08, - "perdana": 5.75e-08, - "peregrines": 5.75e-08, - "peroneal": 5.75e-08, - "perrigo": 5.75e-08, - "persky": 5.75e-08, - "personnes": 5.75e-08, - "peruzzi": 5.75e-08, - "pesh": 5.75e-08, - "petain": 5.75e-08, - "pethidine": 5.75e-08, - "pfffft": 5.75e-08, - "pflag": 5.75e-08, - "phagocytic": 5.75e-08, - "phaseolus": 5.75e-08, - "phenylephrine": 5.75e-08, - "philipson": 5.75e-08, - "photoset": 5.75e-08, - "phthalocyanine": 5.75e-08, - "phyllida": 5.75e-08, - "physiologie": 5.75e-08, - "phytoestrogens": 5.75e-08, - "picos": 5.75e-08, - "piggybacked": 5.75e-08, - "pilchards": 5.75e-08, - "pinel": 5.75e-08, - "pinero": 5.75e-08, - "pinocchios": 5.13e-08, - "pintos": 5.37e-08, - "piriformis": 5.75e-08, - "pisser": 5.75e-08, - "pixma": 5.75e-08, - "pkb": 5.75e-08, - "plainest": 5.75e-08, - "plainsboro": 5.75e-08, - "playtesting": 5.75e-08, - "plebes": 5.75e-08, - "plessey": 5.75e-08, - "plonked": 5.75e-08, - "plott": 5.75e-08, - "pmm": 5.75e-08, - "poema": 5.75e-08, - "poinsettias": 5.75e-08, - "pokie": 5.75e-08, - "poko": 5.75e-08, - "polan": 5.75e-08, - "polhemus": 5.75e-08, - "pombo": 5.75e-08, - "poohs": 5.75e-08, - "popu": 5.75e-08, - "porro": 5.75e-08, - "portus": 5.75e-08, - "postel": 5.75e-08, - "posten": 5.75e-08, - "postgate": 5.75e-08, - "postmodernists": 5.75e-08, - "poultney": 5.75e-08, - "ppaca": 5.75e-08, - "prebiotics": 5.75e-08, - "preciously": 5.75e-08, - "precut": 5.75e-08, - "prefabs": 5.75e-08, - "preiss": 5.75e-08, - "prejudging": 5.75e-08, - "preprints": 5.75e-08, - "presaging": 5.75e-08, - "presumable": 5.75e-08, - "prie": 5.75e-08, - "prilosec": 5.75e-08, - "primi": 5.75e-08, - "primitively": 5.75e-08, - "principio": 5.75e-08, - "procurators": 5.75e-08, - "procyon": 5.75e-08, - "proffers": 5.75e-08, - "promulgates": 5.75e-08, - "propionic": 5.75e-08, - "proteoglycans": 5.75e-08, - "ptolemies": 5.75e-08, - "pugwash": 5.75e-08, - "puis": 5.75e-08, - "pulwama": 5.75e-08, - "punctilious": 5.75e-08, - "pureness": 5.75e-08, - "purusha": 5.75e-08, - "qataris": 5.75e-08, - "qbe": 5.75e-08, - "qps": 5.75e-08, - "quadrophenia": 5.75e-08, - "quale": 5.75e-08, - "quilliam": 5.75e-08, - "quon": 5.75e-08, - "raaz": 5.75e-08, - "radic": 5.75e-08, - "radim": 5.75e-08, - "raho": 5.75e-08, - "rallye": 5.75e-08, - "ramayan": 5.75e-08, - "ranil": 5.75e-08, - "ranken": 5.75e-08, - "rapporteurs": 5.75e-08, - "rathe": 5.75e-08, - "ravagers": 5.75e-08, - "raymund": 5.75e-08, - "rbk": 5.75e-08, - "recents": 5.75e-08, - "recolored": 5.75e-08, - "reconverted": 5.75e-08, - "redon": 5.75e-08, - "reengage": 5.75e-08, - "refractories": 5.75e-08, - "refreeze": 5.75e-08, - "rehousing": 5.75e-08, - "reika": 5.75e-08, - "religous": 5.75e-08, - "relly": 5.75e-08, - "remapped": 5.75e-08, - "resuspended": 5.75e-08, - "retransmitted": 5.75e-08, - "rfq": 5.75e-08, - "rhapsodies": 5.75e-08, - "rhumba": 5.75e-08, - "ribeira": 5.75e-08, - "riese": 5.75e-08, - "riskiness": 5.75e-08, - "riversdale": 5.75e-08, - "rjs": 5.75e-08, - "rocketman": 5.75e-08, - "rockie": 5.75e-08, - "romola": 5.75e-08, - "roncalli": 5.75e-08, - "ropeway": 5.75e-08, - "rosaleen": 5.75e-08, - "rosalynn": 5.75e-08, - "rosengren": 5.75e-08, - "rosewall": 5.75e-08, - "rotella": 5.75e-08, - "rothenburg": 5.75e-08, - "rothery": 5.75e-08, - "rothmans": 5.75e-08, - "routt": 5.75e-08, - "roxb": 5.75e-08, - "roxborough": 5.75e-08, - "rre": 5.75e-08, - "rsk": 5.75e-08, - "rur": 5.75e-08, - "ruri": 5.75e-08, - "rushden": 5.75e-08, - "russification": 5.75e-08, - "sabarmati": 5.75e-08, - "sacchi": 5.75e-08, - "sacri": 5.75e-08, - "saed": 5.75e-08, - "safiya": 5.75e-08, - "sahelian": 5.75e-08, - "sahn": 5.75e-08, - "saj": 5.75e-08, - "sakaki": 5.75e-08, - "sakari": 5.75e-08, - "sakha": 5.75e-08, - "salin": 5.75e-08, - "sallust": 5.75e-08, - "salmonid": 5.75e-08, - "samey": 5.75e-08, - "samm": 5.75e-08, - "sanfilippo": 5.75e-08, - "sanitization": 5.75e-08, - "sankyo": 5.75e-08, - "sanpaolo": 5.75e-08, - "santelli": 5.75e-08, - "saphire": 5.75e-08, - "sardesai": 5.75e-08, - "sargodha": 5.75e-08, - "sarojini": 5.75e-08, - "satc": 5.75e-08, - "satraps": 5.75e-08, - "saturnian": 5.75e-08, - "savours": 5.75e-08, - "scalextric": 5.75e-08, - "scarbrough": 5.75e-08, - "scart": 5.75e-08, - "sceneries": 5.75e-08, - "schaal": 5.75e-08, - "scheel": 5.75e-08, - "schiffman": 5.75e-08, - "schipper": 5.75e-08, - "schippers": 5.75e-08, - "schmancy": 5.75e-08, - "schmelzer": 5.75e-08, - "scienza": 5.75e-08, - "scienze": 5.75e-08, - "scorning": 5.75e-08, - "scrapple": 5.75e-08, - "scullin": 5.75e-08, - "seaworlds": 5.75e-08, - "seiten": 5.75e-08, - "semiprecious": 5.75e-08, - "senselessness": 5.75e-08, - "sentance": 5.75e-08, - "seraphs": 5.75e-08, - "seremban": 5.75e-08, - "serkan": 5.75e-08, - "serras": 5.75e-08, - "severly": 5.75e-08, - "sexualisation": 5.75e-08, - "sezer": 5.75e-08, - "sfh": 5.75e-08, - "shadier": 5.75e-08, - "shadowland": 5.75e-08, - "sheck": 5.75e-08, - "sheetmetal": 5.75e-08, - "shenstone": 5.75e-08, - "shet": 5.75e-08, - "shilla": 5.75e-08, - "shinnecock": 5.75e-08, - "shinwell": 5.75e-08, - "shonan": 5.75e-08, - "showmance": 5.75e-08, - "showstopping": 5.75e-08, - "shrimping": 5.75e-08, - "shubin": 5.75e-08, - "shuswap": 5.75e-08, - "siegen": 5.75e-08, - "sikora": 5.75e-08, - "simmel": 5.75e-08, - "simulant": 5.75e-08, - "sinfonietta": 5.75e-08, - "sinti": 5.75e-08, - "sisodia": 5.75e-08, - "sistar": 5.75e-08, - "skully": 5.75e-08, - "skyactiv": 5.75e-08, - "slavia": 5.75e-08, - "slicers": 5.75e-08, - "slingsby": 5.75e-08, - "sludgy": 5.75e-08, - "snapp": 5.75e-08, - "sobol": 5.75e-08, - "soddy": 5.75e-08, - "solarte": 5.75e-08, - "soochow": 5.75e-08, - "sophmore": 5.75e-08, - "soulcycle": 5.75e-08, - "souma": 5.75e-08, - "sousas": 5.75e-08, - "spences": 5.75e-08, - "spiele": 5.75e-08, - "splinting": 5.75e-08, - "spratlys": 5.75e-08, - "stagecoaches": 5.75e-08, - "steedman": 5.75e-08, - "steelmakers": 5.75e-08, - "steeps": 5.75e-08, - "stefanis": 5.75e-08, - "stereophonics": 5.75e-08, - "sterno": 5.75e-08, - "stic": 5.75e-08, - "stinginess": 5.75e-08, - "storable": 5.75e-08, - "stormwind": 5.75e-08, - "stothard": 5.75e-08, - "strad": 5.75e-08, - "stratis": 5.75e-08, - "streambed": 5.75e-08, - "stricklands": 5.75e-08, - "stronach": 5.75e-08, - "stupids": 5.75e-08, - "subregional": 5.75e-08, - "suctioning": 5.75e-08, - "sugata": 5.75e-08, - "sulci": 5.75e-08, - "sullys": 5.75e-08, - "sundari": 5.75e-08, - "superconductive": 5.75e-08, - "superintend": 5.75e-08, - "superkick": 5.75e-08, - "supertanker": 5.75e-08, - "superyachts": 5.75e-08, - "surinamese": 5.75e-08, - "sverker": 5.75e-08, - "sweetpea": 5.75e-08, - "swoopes": 5.75e-08, - "sydnor": 5.75e-08, - "syfys": 5.75e-08, - "sylvesters": 5.75e-08, - "syon": 5.75e-08, - "talabani": 5.75e-08, - "tantum": 5.75e-08, - "tarbert": 5.75e-08, - "tarif": 5.75e-08, - "tatoos": 5.75e-08, - "taxila": 5.75e-08, - "taza": 5.75e-08, - "teachin": 5.75e-08, - "teakettle": 5.75e-08, - "temeraire": 5.75e-08, - "templer": 5.75e-08, - "tempur": 5.75e-08, - "termina": 5.75e-08, - "terrazas": 5.75e-08, - "terrelle": 5.75e-08, - "terrestrials": 5.75e-08, - "tetracyclines": 5.75e-08, - "tetramer": 5.75e-08, - "tgirls": 5.75e-08, - "thau": 5.75e-08, - "theni": 5.75e-08, - "theologica": 5.75e-08, - "thickeners": 5.75e-08, - "thorley": 5.75e-08, - "threadless": 5.75e-08, - "threlfall": 5.75e-08, - "tibiae": 5.75e-08, - "tidak": 5.75e-08, - "tiel": 5.75e-08, - "timeshares": 5.75e-08, - "tinky": 5.75e-08, - "tisdall": 5.75e-08, - "tishomingo": 5.75e-08, - "tkm": 5.75e-08, - "tmrw": 5.75e-08, - "tobler": 5.75e-08, - "toles": 5.75e-08, - "tolga": 5.75e-08, - "tontine": 5.75e-08, - "tooltips": 5.75e-08, - "toor": 5.75e-08, - "tooths": 5.75e-08, - "topiramate": 5.75e-08, - "toppy": 5.75e-08, - "torremolinos": 5.75e-08, - "tost": 5.75e-08, - "tostitos": 5.75e-08, - "totp": 5.75e-08, - "tragicomic": 5.75e-08, - "tramlines": 5.75e-08, - "transposons": 5.75e-08, - "traxler": 5.75e-08, - "treacher": 5.75e-08, - "trehalose": 5.75e-08, - "trencher": 5.75e-08, - "trevon": 5.75e-08, - "triamcinolone": 5.75e-08, - "tribally": 5.75e-08, - "trichotillomania": 5.75e-08, - "trista": 5.75e-08, - "triticum": 5.75e-08, - "troels": 5.75e-08, - "tsuga": 5.75e-08, - "tsumugi": 5.75e-08, - "tuaregs": 5.75e-08, - "turkoman": 5.75e-08, - "tvet": 5.75e-08, - "tvl": 5.75e-08, - "twelves": 5.75e-08, - "twyman": 5.75e-08, - "uematsu": 5.75e-08, - "ufj": 5.75e-08, - "umwa": 5.75e-08, - "uncg": 5.75e-08, - "undelete": 5.75e-08, - "underclothes": 5.75e-08, - "undoubtably": 5.75e-08, - "unenforced": 5.75e-08, - "unlink": 5.75e-08, - "unreconstructed": 5.75e-08, - "unredeemed": 5.75e-08, - "unrounded": 5.75e-08, - "uofl": 5.75e-08, - "upfronts": 5.75e-08, - "upperparts": 5.75e-08, - "urmston": 5.75e-08, - "uvc": 5.75e-08, - "vago": 5.75e-08, - "vare": 5.75e-08, - "variorum": 5.75e-08, - "vashon": 5.75e-08, - "vasilev": 5.75e-08, - "vasomotor": 5.75e-08, - "vcenter": 5.75e-08, - "veach": 5.75e-08, - "veatch": 5.75e-08, - "vechten": 5.75e-08, - "veiga": 5.75e-08, - "vesnina": 5.75e-08, - "viceland": 5.75e-08, - "vickerman": 5.75e-08, - "vickis": 5.75e-08, - "virgos": 5.75e-08, - "visioned": 5.75e-08, - "visualisations": 5.75e-08, - "visuospatial": 5.75e-08, - "vitalism": 5.75e-08, - "vitiate": 5.75e-08, - "vladimirs": 5.75e-08, - "vle": 5.75e-08, - "vocalise": 5.75e-08, - "vova": 5.75e-08, - "vsm": 5.75e-08, - "vuh": 5.75e-08, - "vusi": 5.75e-08, - "wachusett": 5.75e-08, - "waggons": 5.75e-08, - "waghorn": 5.75e-08, - "wahh": 5.75e-08, - "wakabayashi": 5.75e-08, - "walkden": 5.75e-08, - "wardrop": 5.75e-08, - "warspite": 5.75e-08, - "wastrel": 5.75e-08, - "waterpolo": 5.75e-08, - "wcdma": 5.75e-08, - "wci": 5.75e-08, - "webdesign": 5.75e-08, - "webdev": 5.75e-08, - "weegee": 5.75e-08, - "weeknds": 5.75e-08, - "weibull": 5.75e-08, - "weighbridge": 5.75e-08, - "weirton": 5.75e-08, - "welborn": 5.75e-08, - "westbank": 5.75e-08, - "westerfield": 5.75e-08, - "westhampton": 5.75e-08, - "westy": 5.75e-08, - "wget": 5.75e-08, - "whap": 5.75e-08, - "wharfs": 5.75e-08, - "whatev": 5.75e-08, - "whicher": 5.75e-08, - "whitebait": 5.75e-08, - "whiteys": 5.37e-08, - "wigger": 5.75e-08, - "willington": 5.75e-08, - "wimsey": 5.75e-08, - "windstream": 5.75e-08, - "windsurfer": 5.75e-08, - "wixom": 5.75e-08, - "wlm": 5.75e-08, - "wolfeboro": 5.75e-08, - "wolfmother": 5.75e-08, - "wombles": 5.75e-08, - "woodchip": 5.75e-08, - "woodforde": 5.75e-08, - "worcs": 5.75e-08, - "wrangles": 5.75e-08, - "wsof": 5.75e-08, - "wtg": 5.75e-08, - "wuxia": 5.75e-08, - "xth": 5.75e-08, - "xtr": 5.75e-08, - "yacine": 5.75e-08, - "yadavs": 5.75e-08, - "yamin": 5.75e-08, - "yaps": 5.75e-08, - "yasss": 5.75e-08, - "yepp": 5.75e-08, - "yesenia": 5.75e-08, - "yiannis": 5.75e-08, - "yobo": 5.75e-08, - "yonah": 5.75e-08, - "yooka": 5.75e-08, - "yordano": 5.75e-08, - "yosh": 5.75e-08, - "yota": 5.75e-08, - "youghal": 5.75e-08, - "youuuu": 5.75e-08, - "yuria": 5.75e-08, - "yv": 5.75e-08, - "zaf": 5.75e-08, - "zias": 5.75e-08, - "aaahhhh": 5.62e-08, - "aata": 5.62e-08, - "abajo": 5.62e-08, - "abates": 5.62e-08, - "abdl": 5.62e-08, - "abeam": 5.62e-08, - "abrar": 5.62e-08, - "abre": 5.62e-08, - "accusingly": 5.62e-08, - "actionaid": 5.62e-08, - "adduction": 5.62e-08, - "advertorial": 5.62e-08, - "aeroplan": 5.62e-08, - "aeryn": 5.62e-08, - "agam": 5.62e-08, - "agd": 5.62e-08, - "agnihotri": 5.62e-08, - "agre": 5.62e-08, - "airpod": 5.62e-08, - "airwave": 5.62e-08, - "aiya": 5.62e-08, - "ajp": 5.62e-08, - "akhter": 5.62e-08, - "akong": 5.62e-08, - "alamodome": 5.62e-08, - "aldea": 5.62e-08, - "alki": 5.62e-08, - "allemagne": 5.62e-08, - "alyona": 5.62e-08, - "amandla": 5.62e-08, - "ambrogio": 5.62e-08, - "amies": 5.62e-08, - "anana": 5.62e-08, - "andis": 5.62e-08, - "andriod": 5.62e-08, - "anesthetize": 5.62e-08, - "angolans": 5.62e-08, - "anhydrase": 5.62e-08, - "animaux": 5.62e-08, - "antrobus": 5.62e-08, - "apas": 5.13e-08, - "apco": 5.62e-08, - "apodaca": 5.62e-08, - "aporia": 5.62e-08, - "apostol": 5.62e-08, - "appell": 5.62e-08, - "appenzell": 5.62e-08, - "appressed": 5.62e-08, - "aptos": 5.62e-08, - "aqim": 5.62e-08, - "arborists": 5.62e-08, - "architektur": 5.62e-08, - "ardoyne": 5.62e-08, - "argu": 5.62e-08, - "arkhangelsk": 5.62e-08, - "arlingtons": 5.62e-08, - "arrestee": 5.62e-08, - "arruda": 5.62e-08, - "artin": 5.62e-08, - "arzu": 5.62e-08, - "ascensions": 5.62e-08, - "ashlynn": 5.62e-08, - "assalam": 5.62e-08, - "associational": 5.62e-08, - "assonance": 5.62e-08, - "atack": 5.62e-08, - "atahualpa": 5.62e-08, - "atherstone": 5.62e-08, - "atia": 5.62e-08, - "atmo": 5.62e-08, - "atoka": 5.62e-08, - "attenuators": 5.62e-08, - "autocannon": 5.62e-08, - "autolycus": 5.62e-08, - "avani": 5.62e-08, - "avante": 5.62e-08, - "avenges": 5.62e-08, - "averagely": 5.62e-08, - "averil": 5.62e-08, - "avios": 5.62e-08, - "avonlea": 5.62e-08, - "awesom": 5.62e-08, - "ayanami": 5.62e-08, - "azi": 5.62e-08, - "azizs": 5.62e-08, - "baap": 5.62e-08, - "babis": 5.62e-08, - "backchannel": 5.62e-08, - "baen": 5.62e-08, - "balog": 5.62e-08, - "bandolier": 5.62e-08, - "banki": 5.62e-08, - "bants": 5.62e-08, - "barada": 5.62e-08, - "barbeau": 5.62e-08, - "barkha": 5.62e-08, - "barmaids": 5.62e-08, - "barraged": 5.62e-08, - "barrientos": 5.62e-08, - "barsoom": 5.62e-08, - "basco": 5.62e-08, - "bascule": 5.62e-08, - "baso": 5.62e-08, - "basolateral": 5.62e-08, - "bassetlaw": 5.62e-08, - "battlebots": 5.62e-08, - "bayleys": 5.62e-08, - "beaven": 5.62e-08, - "bebel": 5.62e-08, - "bedevilled": 5.62e-08, - "bedfellow": 5.62e-08, - "bedroll": 5.62e-08, - "bedstead": 5.62e-08, - "beez": 5.62e-08, - "behance": 5.62e-08, - "beholds": 5.62e-08, - "beidou": 5.62e-08, - "bejarano": 5.62e-08, - "benassi": 5.62e-08, - "beneke": 5.62e-08, - "benzaldehyde": 5.62e-08, - "berbice": 5.62e-08, - "bespeak": 5.62e-08, - "betham": 5.62e-08, - "bewdley": 5.62e-08, - "bhadra": 5.62e-08, - "bhati": 5.62e-08, - "biagio": 5.62e-08, - "biblica": 5.62e-08, - "bibliophiles": 5.62e-08, - "biennium": 5.62e-08, - "bigmouth": 5.62e-08, - "bijection": 5.62e-08, - "bille": 5.62e-08, - "billig": 5.62e-08, - "biochemicals": 5.62e-08, - "biopolymer": 5.62e-08, - "bismarcks": 5.62e-08, - "bizness": 5.62e-08, - "blad": 5.62e-08, - "blazoned": 5.62e-08, - "blondin": 5.62e-08, - "bloons": 5.62e-08, - "blotto": 5.62e-08, - "blowingly": 5.62e-08, - "bodhidharma": 5.62e-08, - "bodices": 5.62e-08, - "bohai": 5.62e-08, - "bordertown": 5.62e-08, - "botolph": 5.62e-08, - "boudica": 5.62e-08, - "boulle": 5.62e-08, - "bounceback": 5.62e-08, - "bousquet": 5.62e-08, - "bovines": 5.62e-08, - "boya": 5.62e-08, - "braulio": 5.62e-08, - "brecher": 5.62e-08, - "brek": 5.62e-08, - "bril": 5.62e-08, - "broadwood": 5.62e-08, - "browny": 5.62e-08, - "brueghel": 5.62e-08, - "brunn": 5.62e-08, - "brunswicks": 5.62e-08, - "buicks": 5.62e-08, - "bule": 5.62e-08, - "bullinger": 5.62e-08, - "bulu": 5.62e-08, - "burbridge": 5.62e-08, - "burrage": 5.62e-08, - "burri": 5.62e-08, - "burruss": 5.62e-08, - "burtt": 5.62e-08, - "busca": 5.62e-08, - "busoni": 5.62e-08, - "byomkesh": 5.62e-08, - "cabarrus": 5.62e-08, - "caernarvon": 5.62e-08, - "cafc": 5.62e-08, - "cahier": 5.62e-08, - "calcaneus": 5.62e-08, - "caldara": 5.62e-08, - "calera": 5.62e-08, - "calhouns": 5.62e-08, - "calibrator": 5.62e-08, - "canady": 5.62e-08, - "candyfloss": 5.62e-08, - "cannan": 5.62e-08, - "cantley": 5.62e-08, - "caperton": 5.62e-08, - "capitulations": 5.62e-08, - "carabiners": 5.62e-08, - "carcase": 5.62e-08, - "cardioid": 5.62e-08, - "caremark": 5.62e-08, - "carignan": 5.62e-08, - "carino": 5.62e-08, - "carme": 5.62e-08, - "casado": 5.62e-08, - "cashner": 5.62e-08, - "castlewood": 5.62e-08, - "cataplexy": 5.62e-08, - "cati": 5.62e-08, - "cawnpore": 5.62e-08, - "caza": 5.62e-08, - "cbot": 5.62e-08, - "cdns": 5.62e-08, - "cellists": 5.62e-08, - "cengiz": 5.62e-08, - "ceni": 5.62e-08, - "centromere": 5.62e-08, - "cervelli": 5.62e-08, - "chalker": 5.62e-08, - "challoner": 5.62e-08, - "champers": 5.62e-08, - "chandimal": 5.62e-08, - "charissa": 5.62e-08, - "chasseurs": 5.62e-08, - "chattopadhyay": 5.62e-08, - "chesnutt": 5.62e-08, - "chesterman": 5.62e-08, - "chestertown": 5.62e-08, - "chhota": 5.62e-08, - "chilla": 5.62e-08, - "christe": 5.62e-08, - "chudleigh": 5.62e-08, - "cigarillos": 5.62e-08, - "ciliates": 5.62e-08, - "cintiq": 5.62e-08, - "circumscribe": 5.62e-08, - "civita": 5.62e-08, - "clee": 5.62e-08, - "clete": 5.62e-08, - "cliburn": 5.62e-08, - "clipless": 5.62e-08, - "clopton": 5.62e-08, - "cmes": 5.62e-08, - "cockayne": 5.62e-08, - "coelacanth": 5.62e-08, - "cohabitating": 5.62e-08, - "cohasset": 5.62e-08, - "cohiba": 5.62e-08, - "colback": 5.62e-08, - "collocated": 5.62e-08, - "colloquia": 5.62e-08, - "colom": 5.62e-08, - "colorists": 5.62e-08, - "coltman": 5.62e-08, - "comfortability": 5.62e-08, - "comiccon": 5.62e-08, - "commercialise": 5.62e-08, - "communicants": 5.62e-08, - "communiques": 5.62e-08, - "compartmentalizing": 5.62e-08, - "compressional": 5.62e-08, - "comptrollers": 5.62e-08, - "compuware": 5.62e-08, - "conceptualise": 5.62e-08, - "conciliate": 5.62e-08, - "confabulation": 5.62e-08, - "conked": 5.62e-08, - "connerys": 5.62e-08, - "contemp": 5.62e-08, - "contretemps": 5.62e-08, - "cooee": 5.62e-08, - "coole": 5.62e-08, - "cooperations": 5.62e-08, - "cootes": 5.62e-08, - "copco": 5.62e-08, - "corbijn": 5.62e-08, - "corde": 5.62e-08, - "cosmas": 5.62e-08, - "coucher": 5.62e-08, - "courte": 5.62e-08, - "coverups": 5.62e-08, - "cowman": 5.62e-08, - "cpuc": 5.62e-08, - "cqb": 5.62e-08, - "cranach": 5.62e-08, - "crasters": 5.62e-08, - "craver": 5.62e-08, - "creampied": 5.62e-08, - "criers": 5.62e-08, - "crimeans": 5.62e-08, - "crocodilians": 5.62e-08, - "crosslink": 5.62e-08, - "crowhurst": 5.62e-08, - "cruger": 5.62e-08, - "cryptids": 5.62e-08, - "cuarto": 5.62e-08, - "culbert": 5.62e-08, - "culiacan": 5.62e-08, - "culross": 5.62e-08, - "cupbearer": 5.62e-08, - "curtilage": 5.62e-08, - "cuthberts": 5.62e-08, - "cxl": 5.62e-08, - "dahab": 5.62e-08, - "daiso": 5.62e-08, - "dalila": 5.62e-08, - "dalio": 5.62e-08, - "dallaire": 5.62e-08, - "dancey": 5.62e-08, - "dankest": 5.62e-08, - "darbhanga": 5.62e-08, - "dariusz": 5.62e-08, - "darnay": 5.62e-08, - "daryll": 5.62e-08, - "daryn": 5.62e-08, - "dashiki": 5.62e-08, - "datalink": 5.62e-08, - "daudet": 5.62e-08, - "dch": 5.62e-08, - "debugged": 5.62e-08, - "deceitfulness": 5.62e-08, - "dedede": 5.62e-08, - "deductibility": 5.62e-08, - "dehydrates": 5.62e-08, - "delaval": 5.62e-08, - "delpo": 5.62e-08, - "demas": 5.62e-08, - "demetrious": 5.62e-08, - "demichelis": 5.62e-08, - "denervation": 5.62e-08, - "denville": 5.62e-08, - "deports": 5.62e-08, - "desimone": 5.62e-08, - "deuel": 5.62e-08, - "deviously": 5.62e-08, - "dewdney": 5.62e-08, - "dexa": 5.62e-08, - "dextroamphetamine": 5.62e-08, - "diagnostician": 5.62e-08, - "dichroism": 5.62e-08, - "didache": 5.62e-08, - "digitech": 5.62e-08, - "dih": 5.62e-08, - "dimmest": 5.62e-08, - "dingbats": 5.62e-08, - "dirtbike": 5.62e-08, - "disempowering": 5.62e-08, - "disfavour": 5.62e-08, - "disorientating": 5.62e-08, - "disturbia": 5.62e-08, - "dnas": 5.5e-08, - "dobrich": 5.62e-08, - "doddering": 5.62e-08, - "dofe": 5.62e-08, - "dogmeat": 5.62e-08, - "donegall": 5.62e-08, - "donnarumma": 5.62e-08, - "dooo": 5.62e-08, - "dopo": 5.62e-08, - "doremus": 5.62e-08, - "dorians": 5.62e-08, - "dorries": 5.62e-08, - "doumbia": 5.62e-08, - "douwe": 5.62e-08, - "doxa": 5.62e-08, - "doxxed": 5.62e-08, - "draconis": 5.62e-08, - "dresdner": 5.62e-08, - "drumlin": 5.62e-08, - "drunkest": 5.62e-08, - "duckula": 5.62e-08, - "duende": 5.62e-08, - "dunnett": 5.62e-08, - "dutys": 5.62e-08, - "dwb": 5.62e-08, - "dwyers": 5.62e-08, - "dyl": 5.62e-08, - "dysmenorrhea": 5.62e-08, - "eberly": 5.62e-08, - "ebrahimi": 5.62e-08, - "ecija": 5.62e-08, - "eckel": 5.62e-08, - "edirne": 5.62e-08, - "efp": 5.62e-08, - "ehrmann": 5.62e-08, - "eldo": 5.62e-08, - "electromagnetically": 5.62e-08, - "elektro": 5.62e-08, - "elektronik": 5.62e-08, - "elide": 5.62e-08, - "elises": 5.62e-08, - "elizalde": 5.62e-08, - "elkanah": 5.62e-08, - "ellenberger": 5.62e-08, - "emancipator": 5.62e-08, - "emmental": 5.62e-08, - "emorys": 5.62e-08, - "empathized": 5.62e-08, - "encamp": 5.62e-08, - "enchiridion": 5.62e-08, - "endesa": 5.62e-08, - "endgames": 5.62e-08, - "enjoyments": 5.62e-08, - "enrile": 5.62e-08, - "entryways": 5.62e-08, - "enviromental": 5.62e-08, - "eosinophil": 5.62e-08, - "epicureans": 5.62e-08, - "eponine": 5.62e-08, - "erasmo": 5.62e-08, - "erbe": 5.62e-08, - "erinn": 5.62e-08, - "errrr": 5.62e-08, - "esos": 5.62e-08, - "estepona": 5.62e-08, - "eston": 5.62e-08, - "europaea": 5.62e-08, - "eurotrash": 5.62e-08, - "eustatius": 5.62e-08, - "evals": 5.62e-08, - "evgenia": 5.62e-08, - "evr": 5.62e-08, - "exfiltration": 5.62e-08, - "expansiveness": 5.62e-08, - "exponentials": 5.62e-08, - "extempore": 5.62e-08, - "ezer": 5.62e-08, - "faan": 5.62e-08, - "fabulist": 5.62e-08, - "facebooking": 5.62e-08, - "facetune": 5.62e-08, - "fadeout": 5.62e-08, - "faintness": 5.62e-08, - "fairfaxs": 5.62e-08, - "falcos": 5.62e-08, - "familly": 5.62e-08, - "fanfares": 5.62e-08, - "fangraphs": 5.62e-08, - "farang": 5.62e-08, - "farouq": 5.62e-08, - "faught": 5.62e-08, - "faulds": 5.62e-08, - "fedexcup": 5.62e-08, - "ferrata": 5.62e-08, - "festo": 5.62e-08, - "fgt": 5.62e-08, - "fiats": 5.13e-08, - "fielden": 5.62e-08, - "fingerlings": 5.62e-08, - "fleshes": 5.62e-08, - "fleurieu": 5.62e-08, - "flexo": 5.62e-08, - "flipflops": 5.62e-08, - "floc": 5.62e-08, - "florez": 5.62e-08, - "fmb": 5.62e-08, - "fmo": 5.62e-08, - "folliculitis": 5.62e-08, - "fontaines": 5.62e-08, - "fontenay": 5.62e-08, - "foochow": 5.62e-08, - "foraker": 5.62e-08, - "foregrounds": 5.62e-08, - "forestalling": 5.62e-08, - "formalizes": 5.62e-08, - "formans": 5.62e-08, - "formant": 5.62e-08, - "forresters": 5.62e-08, - "foulds": 5.62e-08, - "fpt": 5.62e-08, - "franceschini": 5.62e-08, - "franchisors": 5.62e-08, - "franciscus": 5.62e-08, - "francophonie": 5.62e-08, - "frantisek": 5.62e-08, - "frass": 5.62e-08, - "fratton": 5.62e-08, - "friedrichs": 5.62e-08, - "fritillary": 5.62e-08, - "frontals": 5.62e-08, - "frozone": 5.62e-08, - "frydenberg": 5.62e-08, - "ftk": 5.62e-08, - "fuckboi": 5.62e-08, - "fujin": 5.62e-08, - "fulgencio": 5.62e-08, - "funnell": 5.62e-08, - "futterman": 5.62e-08, - "fuzes": 5.62e-08, - "gabb": 5.62e-08, - "gahhh": 5.62e-08, - "galecki": 5.62e-08, - "gallinger": 5.62e-08, - "galvanising": 5.62e-08, - "gamla": 5.62e-08, - "garroway": 5.62e-08, - "gaudin": 5.62e-08, - "gavilan": 5.62e-08, - "gedi": 5.62e-08, - "geertz": 5.62e-08, - "gehring": 5.62e-08, - "geodes": 5.62e-08, - "geodynamics": 5.62e-08, - "gep": 5.62e-08, - "gerona": 5.62e-08, - "gessler": 5.62e-08, - "gff": 5.62e-08, - "gibber": 5.62e-08, - "giffin": 5.62e-08, - "gilgal": 5.62e-08, - "gillham": 5.62e-08, - "ginge": 5.62e-08, - "gioconda": 5.62e-08, - "girdwood": 5.62e-08, - "glb": 5.62e-08, - "glyceraldehyde": 5.62e-08, - "gmas": 5.62e-08, - "goest": 5.62e-08, - "goll": 5.62e-08, - "gomera": 5.62e-08, - "gorst": 5.62e-08, - "gph": 5.62e-08, - "granpa": 5.62e-08, - "granulocytes": 5.62e-08, - "greenacres": 5.62e-08, - "greger": 5.62e-08, - "grenell": 5.62e-08, - "griesbach": 5.62e-08, - "griot": 5.62e-08, - "grum": 5.62e-08, - "guarini": 5.62e-08, - "guiliani": 5.62e-08, - "gunawan": 5.62e-08, - "guzzled": 5.62e-08, - "gxp": 5.62e-08, - "gya": 5.62e-08, - "gyri": 5.62e-08, - "gzip": 5.62e-08, - "haid": 5.62e-08, - "halberds": 5.62e-08, - "halse": 5.62e-08, - "hamhuis": 5.62e-08, - "hamley": 5.62e-08, - "handbasket": 5.62e-08, - "hankinson": 5.62e-08, - "hanlan": 5.62e-08, - "hanois": 5.62e-08, - "harams": 5.62e-08, - "harar": 5.62e-08, - "harbert": 5.62e-08, - "hardeep": 5.62e-08, - "harron": 5.62e-08, - "harward": 5.62e-08, - "hatrick": 5.62e-08, - "haynie": 5.62e-08, - "hbl": 5.62e-08, - "hdac": 5.62e-08, - "headcase": 5.62e-08, - "hearkened": 5.62e-08, - "heartrate": 5.62e-08, - "heavenward": 5.62e-08, - "heilbronn": 5.62e-08, - "heinrichs": 5.62e-08, - "heiser": 5.62e-08, - "helicity": 5.62e-08, - "helloworld": 5.62e-08, - "helpmate": 5.62e-08, - "hennie": 5.62e-08, - "henslowe": 5.62e-08, - "hepatica": 5.62e-08, - "herbes": 5.62e-08, - "herodian": 5.62e-08, - "herschell": 5.62e-08, - "hete": 5.62e-08, - "heyl": 5.62e-08, - "highchair": 5.62e-08, - "highers": 5.62e-08, - "highschoolers": 5.62e-08, - "hightail": 5.62e-08, - "hikmet": 5.62e-08, - "hilburn": 5.62e-08, - "hillclimb": 5.62e-08, - "hindwings": 5.62e-08, - "hintz": 5.62e-08, - "hintze": 5.62e-08, - "hipparchus": 5.62e-08, - "histadrut": 5.62e-08, - "historiques": 5.62e-08, - "hlm": 5.62e-08, - "hlp": 5.62e-08, - "hoan": 5.62e-08, - "hofmeyr": 5.62e-08, - "holmfirth": 5.62e-08, - "holmstrom": 5.62e-08, - "homans": 5.62e-08, - "hoorn": 5.62e-08, - "hooten": 5.62e-08, - "houllier": 5.62e-08, - "hoyos": 5.62e-08, - "hrsa": 5.62e-08, - "humidified": 5.62e-08, - "hunte": 5.62e-08, - "huskisson": 5.62e-08, - "hutchens": 5.62e-08, - "huysmans": 5.62e-08, - "hyden": 5.62e-08, - "hydrolases": 5.62e-08, - "hydroxybutyrate": 5.62e-08, - "ibbetson": 5.62e-08, - "icare": 5.62e-08, - "icds": 5.62e-08, - "icpc": 5.62e-08, - "idempotent": 5.62e-08, - "idevice": 5.62e-08, - "idex": 5.62e-08, - "ifan": 5.62e-08, - "igoe": 5.62e-08, - "iiic": 5.62e-08, - "ilka": 5.62e-08, - "imamura": 5.62e-08, - "immunotherapies": 5.62e-08, - "impermissibly": 5.62e-08, - "importa": 5.62e-08, - "impotently": 5.62e-08, - "inayat": 5.62e-08, - "incarnates": 5.62e-08, - "inclosure": 5.62e-08, - "indexs": 5.62e-08, - "ineluctable": 5.62e-08, - "inessential": 5.62e-08, - "infocus": 5.62e-08, - "injera": 5.62e-08, - "innuendoes": 5.62e-08, - "inq": 5.62e-08, - "intellivision": 5.62e-08, - "interactional": 5.62e-08, - "interdisciplinarity": 5.62e-08, - "intertextual": 5.62e-08, - "intramuros": 5.62e-08, - "intuited": 5.62e-08, - "ipac": 5.62e-08, - "iracing": 5.62e-08, - "ischium": 5.62e-08, - "isoflavones": 5.62e-08, - "ister": 5.62e-08, - "ituri": 5.62e-08, - "itw": 5.62e-08, - "ixodes": 5.62e-08, - "jaces": 5.62e-08, - "jali": 5.62e-08, - "janeiros": 5.62e-08, - "januar": 5.62e-08, - "jarek": 5.62e-08, - "jawn": 5.62e-08, - "jaxson": 5.62e-08, - "jaysh": 5.62e-08, - "jazzmaster": 5.62e-08, - "jdrf": 5.62e-08, - "ject": 5.62e-08, - "jeng": 5.62e-08, - "jhana": 5.62e-08, - "jigme": 5.62e-08, - "jtg": 5.62e-08, - "judgey": 5.62e-08, - "juga": 5.62e-08, - "juncea": 5.62e-08, - "jvs": 5.62e-08, - "kabab": 5.62e-08, - "kakeru": 5.62e-08, - "kalou": 5.62e-08, - "kaluga": 5.62e-08, - "kalvin": 5.62e-08, - "kamata": 5.62e-08, - "kamer": 5.62e-08, - "kanab": 5.62e-08, - "kantai": 5.62e-08, - "kaon": 5.62e-08, - "kappler": 5.62e-08, - "karadzic": 5.62e-08, - "karni": 5.62e-08, - "karns": 5.62e-08, - "karpeles": 5.62e-08, - "kashiwagi": 5.62e-08, - "katee": 5.62e-08, - "kathe": 5.62e-08, - "katic": 5.62e-08, - "kaveh": 5.62e-08, - "kaworu": 5.62e-08, - "kelle": 5.62e-08, - "kempner": 5.62e-08, - "kennecott": 5.62e-08, - "kgbs": 5.62e-08, - "khajuraho": 5.62e-08, - "khem": 5.62e-08, - "khiladi": 5.62e-08, - "khuzestan": 5.62e-08, - "kiambu": 5.62e-08, - "kidded": 5.62e-08, - "kihara": 5.62e-08, - "kilborn": 5.62e-08, - "kindaichi": 5.62e-08, - "kirschbaum": 5.62e-08, - "kitzinger": 5.62e-08, - "klasse": 5.62e-08, - "kode": 5.62e-08, - "koehn": 5.62e-08, - "kohat": 5.62e-08, - "koin": 5.62e-08, - "kommt": 5.62e-08, - "korin": 5.62e-08, - "kose": 5.62e-08, - "kqed": 5.62e-08, - "kre": 5.62e-08, - "krita": 5.62e-08, - "kulikov": 5.62e-08, - "kumano": 5.62e-08, - "kurniawan": 5.62e-08, - "kyros": 5.62e-08, - "lacaze": 5.62e-08, - "lafc": 5.62e-08, - "laius": 5.62e-08, - "lakehurst": 5.62e-08, - "lakeport": 5.62e-08, - "lamberton": 5.62e-08, - "lammermoor": 5.62e-08, - "langland": 5.62e-08, - "langport": 5.62e-08, - "largent": 5.62e-08, - "lasch": 5.62e-08, - "laskey": 5.62e-08, - "latu": 5.62e-08, - "lawbreaker": 5.62e-08, - "leatherwood": 5.62e-08, - "lecavalier": 5.62e-08, - "leftys": 5.62e-08, - "lemahieu": 5.62e-08, - "lenglen": 5.62e-08, - "lesabre": 5.62e-08, - "lettere": 5.62e-08, - "levein": 5.62e-08, - "licensors": 5.62e-08, - "ligma": 5.62e-08, - "lindblad": 5.62e-08, - "linework": 5.62e-08, - "litherland": 5.62e-08, - "livesay": 5.62e-08, - "lmfaooo": 5.62e-08, - "lmm": 5.62e-08, - "loftiest": 5.62e-08, - "loftily": 5.62e-08, - "logsdon": 5.62e-08, - "longueuil": 5.62e-08, - "longwave": 5.62e-08, - "lovegrove": 5.62e-08, - "lowa": 5.62e-08, - "lubumbashi": 5.62e-08, - "luego": 5.62e-08, - "lunchtimes": 5.62e-08, - "lundell": 5.62e-08, - "lundi": 5.62e-08, - "lycos": 5.62e-08, - "lyk": 5.62e-08, - "lyneham": 5.62e-08, - "lyoto": 5.62e-08, - "lyuba": 5.62e-08, - "maag": 5.62e-08, - "maccabee": 5.62e-08, - "mahout": 5.62e-08, - "mahratta": 5.62e-08, - "maisey": 5.62e-08, - "majdanek": 5.62e-08, - "malaka": 5.62e-08, - "malathion": 5.62e-08, - "malene": 5.62e-08, - "malfi": 5.62e-08, - "mancinis": 5.62e-08, - "mangaluru": 5.62e-08, - "mangler": 5.62e-08, - "manichean": 5.62e-08, - "mannarino": 5.62e-08, - "mannerheim": 5.62e-08, - "manship": 5.62e-08, - "manzanar": 5.62e-08, - "mappers": 5.62e-08, - "maravich": 5.62e-08, - "marges": 5.62e-08, - "markovian": 5.62e-08, - "marn": 5.62e-08, - "marquesa": 5.62e-08, - "martes": 1.05e-08, - "martinsen": 5.62e-08, - "martoma": 5.62e-08, - "martyrology": 5.62e-08, - "masker": 5.62e-08, - "massinger": 5.62e-08, - "materazzi": 5.62e-08, - "mazi": 5.62e-08, - "mcbroom": 5.62e-08, - "mcgillis": 5.62e-08, - "mcguffin": 5.62e-08, - "mckelvie": 5.62e-08, - "mcmansions": 5.62e-08, - "mcmoran": 5.62e-08, - "mcnallys": 5.62e-08, - "mcternan": 5.62e-08, - "mdw": 5.62e-08, - "medicaments": 5.62e-08, - "medleys": 5.62e-08, - "megachurches": 5.62e-08, - "mehar": 5.62e-08, - "meher": 5.62e-08, - "meimei": 5.62e-08, - "meistersinger": 5.62e-08, - "meleager": 5.62e-08, - "meloy": 5.62e-08, - "melpomene": 5.62e-08, - "memantine": 5.62e-08, - "meneses": 5.62e-08, - "menthe": 5.62e-08, - "merchandises": 5.62e-08, - "merryman": 5.62e-08, - "meserve": 5.62e-08, - "metacarpals": 5.62e-08, - "metaphysicians": 5.62e-08, - "mhe": 5.62e-08, - "micelle": 5.62e-08, - "micrographs": 5.62e-08, - "microtus": 5.62e-08, - "microusb": 5.62e-08, - "midd": 5.62e-08, - "middleborough": 5.62e-08, - "middlesboro": 5.62e-08, - "midsole": 5.62e-08, - "millibars": 5.62e-08, - "millys": 5.62e-08, - "minoritys": 5.62e-08, - "minow": 5.62e-08, - "mirra": 5.62e-08, - "mirrorball": 5.62e-08, - "mirv": 5.62e-08, - "mischel": 5.62e-08, - "misers": 5.62e-08, - "misprinted": 5.62e-08, - "mizner": 5.62e-08, - "mizu": 5.62e-08, - "mizutani": 5.62e-08, - "mkc": 5.62e-08, - "moistening": 5.62e-08, - "moisturisers": 5.62e-08, - "molehills": 5.62e-08, - "moleskin": 5.62e-08, - "monda": 5.62e-08, - "monette": 5.62e-08, - "monon": 5.62e-08, - "monopsony": 5.62e-08, - "montesinos": 5.62e-08, - "moomins": 5.62e-08, - "mooncake": 5.62e-08, - "moondog": 5.62e-08, - "moonshiners": 5.62e-08, - "moorefield": 5.62e-08, - "moots": 5.62e-08, - "morice": 5.62e-08, - "morwenna": 5.62e-08, - "morzine": 5.62e-08, - "mottle": 5.62e-08, - "mrg": 5.62e-08, - "mucker": 5.62e-08, - "mudiay": 5.62e-08, - "mugsy": 5.62e-08, - "muley": 5.62e-08, - "mumba": 5.62e-08, - "munificence": 5.62e-08, - "munter": 5.62e-08, - "muskeg": 5.62e-08, - "musnt": 5.62e-08, - "mussina": 5.62e-08, - "mutagens": 5.62e-08, - "muz": 5.62e-08, - "mvr": 5.62e-08, - "mwanza": 5.62e-08, - "myat": 5.62e-08, - "mycorrhizae": 5.62e-08, - "myleene": 5.62e-08, - "myogenic": 5.62e-08, - "nacs": 5.62e-08, - "nadeshot": 5.62e-08, - "nagaoka": 5.62e-08, - "naib": 5.62e-08, - "nairobis": 5.62e-08, - "namrata": 5.62e-08, - "nanocrystalline": 5.62e-08, - "nanopore": 5.62e-08, - "narin": 5.62e-08, - "nationalising": 5.62e-08, - "natta": 5.62e-08, - "naturales": 5.62e-08, - "naxal": 5.62e-08, - "naye": 5.62e-08, - "nazem": 5.62e-08, - "ndamukong": 5.62e-08, - "neate": 5.62e-08, - "negritos": 5.62e-08, - "nemeses": 5.62e-08, - "nerveless": 5.62e-08, - "nette": 5.62e-08, - "neuroleptic": 5.62e-08, - "neuromodulation": 5.62e-08, - "neuters": 5.62e-08, - "newbern": 5.62e-08, - "nhm": 5.62e-08, - "nhpolitics": 5.62e-08, - "nich": 5.62e-08, - "nicholass": 5.62e-08, - "nili": 5.62e-08, - "ninon": 5.62e-08, - "nishioka": 5.62e-08, - "nithya": 5.62e-08, - "nitrification": 5.62e-08, - "nodosa": 5.62e-08, - "noetic": 5.62e-08, - "nominals": 5.62e-08, - "noncombatant": 5.62e-08, - "nonliving": 5.62e-08, - "nonperforming": 5.62e-08, - "noooooooooo": 5.62e-08, - "nordhoff": 5.62e-08, - "nordmann": 5.62e-08, - "normas": 5.62e-08, - "normani": 5.62e-08, - "northlake": 5.62e-08, - "northman": 5.62e-08, - "nost": 5.62e-08, - "nough": 5.62e-08, - "nrcc": 5.62e-08, - "nyes": 5.62e-08, - "nygren": 5.62e-08, - "ojays": 5.62e-08, - "oal": 5.62e-08, - "oaxacan": 5.62e-08, - "obaid": 5.62e-08, - "obara": 5.62e-08, - "obrist": 5.62e-08, - "odesk": 5.62e-08, - "odesza": 5.62e-08, - "odoi": 5.62e-08, - "offhandedly": 5.62e-08, - "officeworks": 5.62e-08, - "offred": 5.62e-08, - "ogp": 5.62e-08, - "ojibway": 5.62e-08, - "okeke": 5.62e-08, - "okon": 5.62e-08, - "olen": 5.62e-08, - "oleum": 5.62e-08, - "olg": 5.62e-08, - "oligarchies": 5.62e-08, - "oncological": 5.62e-08, - "opentype": 5.62e-08, - "opin": 5.62e-08, - "organoids": 5.62e-08, - "orgreave": 5.62e-08, - "orie": 5.62e-08, - "orkneys": 5.62e-08, - "orlandi": 5.62e-08, - "ortner": 5.62e-08, - "oslos": 5.62e-08, - "osmania": 5.62e-08, - "ostracods": 5.62e-08, - "ostrogoths": 5.62e-08, - "ouseley": 5.62e-08, - "overfitting": 5.62e-08, - "overlordship": 5.62e-08, - "overrepresentation": 5.62e-08, - "oversleeping": 5.62e-08, - "overthe": 5.62e-08, - "ovulated": 5.62e-08, - "padillas": 5.62e-08, - "painfull": 5.62e-08, - "palmira": 5.62e-08, - "paltrows": 5.62e-08, - "pamp": 5.62e-08, - "panam": 5.62e-08, - "panigale": 5.62e-08, - "pantheist": 5.62e-08, - "paquet": 5.62e-08, - "parabellum": 5.62e-08, - "parametrized": 5.62e-08, - "parastatal": 5.62e-08, - "parenchymal": 5.62e-08, - "paresthesia": 5.62e-08, - "paroxysm": 5.62e-08, - "paroxysms": 5.62e-08, - "parrys": 5.62e-08, - "parzival": 5.62e-08, - "passio": 5.62e-08, - "pastilles": 5.62e-08, - "pasturage": 5.62e-08, - "patman": 5.62e-08, - "patricide": 5.62e-08, - "payam": 5.62e-08, - "payot": 5.62e-08, - "pcps": 5.62e-08, - "pdg": 5.62e-08, - "pech": 5.62e-08, - "peddie": 5.62e-08, - "pelage": 5.62e-08, - "pellicle": 5.62e-08, - "pengs": 5.62e-08, - "peranakan": 5.62e-08, - "perdomo": 5.62e-08, - "periosteum": 5.62e-08, - "peromyscus": 5.62e-08, - "persuasiveness": 5.62e-08, - "petn": 5.62e-08, - "peur": 5.62e-08, - "pflugerville": 5.62e-08, - "phare": 5.62e-08, - "phooey": 5.62e-08, - "photographie": 5.62e-08, - "photographys": 5.62e-08, - "photoionization": 5.62e-08, - "photometer": 5.62e-08, - "photorealism": 5.62e-08, - "photostream": 5.62e-08, - "picnickers": 5.62e-08, - "picon": 5.62e-08, - "pictorials": 5.62e-08, - "pileated": 5.62e-08, - "pilla": 5.62e-08, - "pinchbeck": 5.62e-08, - "pinions": 5.62e-08, - "pinkus": 5.62e-08, - "plagiarising": 5.62e-08, - "plainsong": 5.62e-08, - "planescape": 5.62e-08, - "plasmons": 5.62e-08, - "platina": 5.62e-08, - "platting": 5.62e-08, - "pllc": 5.62e-08, - "plumptre": 5.62e-08, - "pmn": 5.62e-08, - "polansky": 5.62e-08, - "politika": 5.62e-08, - "polycythemia": 5.62e-08, - "portuguesa": 5.62e-08, - "potlucks": 5.62e-08, - "povs": 5.62e-08, - "pple": 5.62e-08, - "prachanda": 5.62e-08, - "pragma": 5.62e-08, - "pratibha": 5.62e-08, - "preciado": 5.62e-08, - "precip": 5.62e-08, - "presbyopia": 5.62e-08, - "privatizations": 5.62e-08, - "probit": 5.62e-08, - "probyn": 5.62e-08, - "proffesional": 5.62e-08, - "promotor": 5.62e-08, - "provenzano": 5.62e-08, - "psaki": 5.62e-08, - "pue": 5.62e-08, - "puffery": 5.62e-08, - "pukekohe": 5.62e-08, - "pussyfoot": 5.62e-08, - "pussyfooting": 5.62e-08, - "qajar": 5.62e-08, - "qft": 5.62e-08, - "quiller": 5.62e-08, - "quintilian": 5.62e-08, - "quintupled": 5.62e-08, - "quirino": 5.62e-08, - "radboud": 5.62e-08, - "radioactively": 5.62e-08, - "radtke": 5.62e-08, - "radula": 5.62e-08, - "ragman": 5.62e-08, - "ragwort": 5.62e-08, - "railroaders": 5.62e-08, - "railtrack": 5.62e-08, - "ranald": 5.62e-08, - "randos": 5.62e-08, - "ransoming": 5.62e-08, - "ranulf": 5.62e-08, - "rapidan": 5.62e-08, - "rayet": 5.62e-08, - "raygun": 5.62e-08, - "raymer": 5.62e-08, - "reappoint": 5.62e-08, - "rearmed": 5.62e-08, - "reasserts": 5.62e-08, - "rebekka": 5.62e-08, - "reblogged": 5.62e-08, - "recantation": 5.62e-08, - "recapitulates": 5.62e-08, - "recco": 5.62e-08, - "redbeard": 5.62e-08, - "redken": 5.62e-08, - "redstart": 5.62e-08, - "refiled": 5.62e-08, - "regally": 5.62e-08, - "regd": 5.62e-08, - "regimentation": 5.62e-08, - "reichman": 5.62e-08, - "rendezvoused": 5.62e-08, - "repatriates": 5.62e-08, - "respirations": 5.62e-08, - "retarder": 5.62e-08, - "retarted": 5.62e-08, - "rfcs": 5.62e-08, - "rgt": 5.62e-08, - "rhinovirus": 5.62e-08, - "rhos": 5.62e-08, - "riccardi": 5.62e-08, - "ricerche": 5.62e-08, - "rimouski": 5.62e-08, - "rincewind": 5.62e-08, - "rishton": 5.62e-08, - "risorgimento": 5.62e-08, - "riverbeds": 5.62e-08, - "riverboats": 5.62e-08, - "rlx": 5.62e-08, - "robertas": 5.62e-08, - "roka": 5.62e-08, - "roli": 5.62e-08, - "ronit": 5.62e-08, - "ronsard": 5.62e-08, - "rosato": 5.62e-08, - "roscoes": 5.62e-08, - "rossinis": 5.62e-08, - "rossland": 5.62e-08, - "rovinj": 5.62e-08, - "rowlatt": 5.62e-08, - "rph": 5.62e-08, - "ruda": 5.62e-08, - "runkle": 5.62e-08, - "saag": 5.62e-08, - "sabal": 5.62e-08, - "saccade": 5.62e-08, - "saccharum": 5.62e-08, - "sagarika": 5.62e-08, - "sahiba": 5.62e-08, - "saintes": 5.62e-08, - "sakuragi": 5.62e-08, - "sallis": 5.62e-08, - "salters": 5.62e-08, - "salzberg": 5.62e-08, - "samael": 5.62e-08, - "sanctifies": 5.62e-08, - "sangram": 5.62e-08, - "sanjaya": 5.62e-08, - "sansar": 5.62e-08, - "santer": 5.62e-08, - "sarabande": 5.62e-08, - "sarra": 5.62e-08, - "sauda": 5.62e-08, - "saumur": 5.62e-08, - "saundra": 5.62e-08, - "sayang": 5.62e-08, - "sbisa": 5.62e-08, - "scarpe": 5.62e-08, - "schistosoma": 5.62e-08, - "schists": 5.62e-08, - "schoolbag": 5.62e-08, - "schwarzenberg": 5.62e-08, - "scobee": 5.62e-08, - "scut": 5.62e-08, - "sehen": 5.62e-08, - "seidl": 5.62e-08, - "selon": 5.62e-08, - "sels": 5.62e-08, - "semillon": 5.62e-08, - "sensa": 5.62e-08, - "serialisation": 5.62e-08, - "sertorius": 5.62e-08, - "shafik": 5.62e-08, - "shankars": 5.62e-08, - "shankman": 5.62e-08, - "shil": 5.62e-08, - "shimmied": 5.62e-08, - "shinichiro": 5.62e-08, - "shiri": 5.62e-08, - "shittest": 5.62e-08, - "shortys": 5.62e-08, - "shrilly": 5.62e-08, - "shriveling": 5.62e-08, - "shugo": 5.62e-08, - "shuu": 5.62e-08, - "siculus": 5.62e-08, - "sidonie": 5.62e-08, - "siecle": 5.62e-08, - "siga": 5.62e-08, - "sigfrid": 5.62e-08, - "silents": 5.62e-08, - "silkroad": 5.62e-08, - "silversun": 5.62e-08, - "silvertown": 5.62e-08, - "silviculture": 5.62e-08, - "simha": 5.62e-08, - "simoni": 5.62e-08, - "sinnoh": 5.62e-08, - "sirach": 5.62e-08, - "siring": 5.62e-08, - "sisyphean": 5.62e-08, - "sitteth": 5.62e-08, - "sitz": 5.62e-08, - "sizeof": 5.62e-08, - "sjr": 5.62e-08, - "sju": 5.62e-08, - "skam": 5.62e-08, - "skd": 5.62e-08, - "skerritt": 5.62e-08, - "skg": 5.62e-08, - "skunked": 5.62e-08, - "slurpees": 5.62e-08, - "slushies": 5.62e-08, - "snowplows": 5.62e-08, - "socia": 5.62e-08, - "soffer": 5.62e-08, - "sohc": 5.62e-08, - "sokoloff": 5.62e-08, - "solum": 5.62e-08, - "sotelo": 5.62e-08, - "sothern": 5.62e-08, - "speedrunning": 5.62e-08, - "spendin": 5.62e-08, - "spillways": 5.62e-08, - "srilanka": 5.62e-08, - "sros": 5.62e-08, - "stanstead": 5.62e-08, - "starbound": 5.62e-08, - "statists": 5.62e-08, - "stebbing": 5.62e-08, - "stedelijk": 5.62e-08, - "steelcase": 5.62e-08, - "stegman": 5.62e-08, - "stepanov": 5.62e-08, - "stepparent": 5.62e-08, - "stiffeners": 5.62e-08, - "stonecutter": 5.62e-08, - "strake": 5.62e-08, - "struma": 5.62e-08, - "sturdily": 5.62e-08, - "subdominant": 5.62e-08, - "subha": 5.62e-08, - "subhan": 5.62e-08, - "subir": 5.62e-08, - "subspecialties": 5.62e-08, - "sudafed": 5.62e-08, - "suffixed": 5.62e-08, - "suhana": 5.62e-08, - "suji": 5.62e-08, - "sulayman": 5.62e-08, - "sullenly": 5.62e-08, - "sunshines": 5.62e-08, - "superheater": 5.62e-08, - "supplicants": 5.62e-08, - "supplicating": 5.62e-08, - "suran": 5.62e-08, - "sutphin": 5.62e-08, - "sverre": 5.62e-08, - "swaim": 5.62e-08, - "swathi": 5.62e-08, - "swofford": 5.62e-08, - "synaesthesia": 5.62e-08, - "synchronising": 5.62e-08, - "szasz": 5.62e-08, - "szilard": 5.62e-08, - "tabe": 5.62e-08, - "taeko": 5.62e-08, - "takaki": 5.62e-08, - "takht": 5.62e-08, - "tallapoosa": 5.62e-08, - "tambour": 5.62e-08, - "tantalisingly": 5.62e-08, - "tanti": 5.62e-08, - "tanvi": 5.62e-08, - "tanvir": 5.62e-08, - "taqiyya": 5.62e-08, - "tarja": 5.62e-08, - "tarlton": 5.62e-08, - "tarzans": 5.62e-08, - "tasia": 5.62e-08, - "tava": 5.62e-08, - "tawang": 5.62e-08, - "tcus": 5.62e-08, - "tdt": 5.62e-08, - "tebbutt": 5.62e-08, - "tedi": 5.62e-08, - "telangiectasia": 5.62e-08, - "tella": 5.62e-08, - "telltales": 5.62e-08, - "temu": 5.62e-08, - "tentpole": 5.62e-08, - "terminalis": 5.62e-08, - "testudo": 5.62e-08, - "tetras": 5.62e-08, - "thaxton": 5.62e-08, - "theodolite": 5.62e-08, - "thev": 5.62e-08, - "thiels": 5.62e-08, - "thio": 5.62e-08, - "thiru": 5.62e-08, - "tiba": 5.62e-08, - "tibbets": 5.62e-08, - "tikva": 5.62e-08, - "timah": 5.62e-08, - "tinta": 5.62e-08, - "tipis": 5.62e-08, - "tirado": 5.62e-08, - "tisbury": 5.62e-08, - "tnp": 5.62e-08, - "tokes": 5.62e-08, - "tolbooth": 5.62e-08, - "tollgate": 5.62e-08, - "toobin": 5.62e-08, - "toomas": 5.62e-08, - "tooru": 5.62e-08, - "toted": 5.62e-08, - "toul": 5.62e-08, - "trapattoni": 5.62e-08, - "trapdoors": 5.62e-08, - "traversable": 5.62e-08, - "treas": 5.62e-08, - "treatin": 5.62e-08, - "trichloroethylene": 5.62e-08, - "trimethyl": 5.62e-08, - "tripel": 5.62e-08, - "tripolitania": 5.62e-08, - "trog": 5.62e-08, - "truetype": 5.62e-08, - "truthiness": 5.62e-08, - "trynna": 5.62e-08, - "ttk": 5.62e-08, - "tumeric": 5.62e-08, - "tunnell": 5.62e-08, - "twilio": 5.62e-08, - "twinings": 5.62e-08, - "tzuyu": 5.62e-08, - "uchiyama": 5.62e-08, - "udell": 5.62e-08, - "uld": 5.62e-08, - "ulick": 5.62e-08, - "ultrasonics": 5.62e-08, - "ultrastructure": 5.62e-08, - "umbels": 5.62e-08, - "unamuno": 5.62e-08, - "undateable": 5.62e-08, - "unfaltering": 5.62e-08, - "unfuck": 5.62e-08, - "unhealed": 5.62e-08, - "unitech": 5.62e-08, - "unknow": 5.62e-08, - "unlovely": 5.62e-08, - "unmute": 5.62e-08, - "unnervingly": 5.62e-08, - "unpopularopinion": 5.62e-08, - "unrepaired": 5.62e-08, - "unthreatening": 5.62e-08, - "unti": 5.62e-08, - "upadhyaya": 5.62e-08, - "upends": 5.62e-08, - "uralic": 5.62e-08, - "urena": 5.62e-08, - "ureteral": 5.62e-08, - "ureters": 5.62e-08, - "usbc": 5.62e-08, - "usca": 5.62e-08, - "usna": 5.62e-08, - "usurious": 5.62e-08, - "vacuolar": 5.62e-08, - "vaginismus": 5.62e-08, - "valarie": 5.62e-08, - "valinor": 5.62e-08, - "varsha": 5.62e-08, - "vascularization": 5.62e-08, - "vaster": 5.62e-08, - "vastu": 5.62e-08, - "vatos": 5.62e-08, - "vdd": 5.62e-08, - "venerating": 5.62e-08, - "venga": 5.62e-08, - "verdier": 5.62e-08, - "verifiably": 5.62e-08, - "verities": 5.62e-08, - "versaces": 5.62e-08, - "vevey": 5.62e-08, - "vfs": 5.62e-08, - "victoriana": 5.62e-08, - "villefranche": 5.62e-08, - "vinegary": 5.62e-08, - "violative": 5.62e-08, - "viole": 5.62e-08, - "virality": 5.62e-08, - "virologists": 5.62e-08, - "virtuality": 5.62e-08, - "viserys": 5.62e-08, - "visita": 5.62e-08, - "visscher": 5.62e-08, - "vitiated": 5.62e-08, - "vivas": 5.62e-08, - "vkontakte": 5.62e-08, - "vorderman": 5.62e-08, - "vpp": 5.62e-08, - "vsg": 5.62e-08, - "vung": 5.62e-08, - "waaa": 5.62e-08, - "waiheke": 5.62e-08, - "walhalla": 5.62e-08, - "warf": 5.62e-08, - "waseca": 5.62e-08, - "wavenumber": 5.62e-08, - "wayde": 5.62e-08, - "wcl": 5.62e-08, - "wct": 5.62e-08, - "webern": 5.62e-08, - "weedkiller": 5.62e-08, - "wege": 5.62e-08, - "weierstrass": 5.62e-08, - "weimaraner": 5.62e-08, - "weinman": 5.62e-08, - "werners": 5.62e-08, - "weslaco": 5.62e-08, - "wfs": 5.62e-08, - "wft": 5.62e-08, - "whitefly": 5.62e-08, - "whitelisting": 5.62e-08, - "whyy": 5.62e-08, - "wied": 5.62e-08, - "wights": 5.62e-08, - "wilander": 5.62e-08, - "wilbanks": 5.62e-08, - "wilfork": 5.62e-08, - "wimberley": 5.62e-08, - "wimberly": 5.62e-08, - "wingham": 5.62e-08, - "winstar": 5.62e-08, - "winterstein": 5.62e-08, - "wiscasset": 5.62e-08, - "witticism": 5.62e-08, - "wittmann": 5.62e-08, - "wive": 5.62e-08, - "wobbler": 5.62e-08, - "wojcicki": 5.62e-08, - "wojciechowski": 5.62e-08, - "wooow": 5.62e-08, - "workmens": 5.62e-08, - "worriedly": 5.62e-08, - "worsham": 5.62e-08, - "wragg": 5.62e-08, - "wrings": 5.62e-08, - "wsd": 5.62e-08, - "wtr": 5.62e-08, - "xboxs": 5.62e-08, - "xxxxxxx": 5.62e-08, - "yabe": 5.62e-08, - "yamana": 5.62e-08, - "yatsenyuk": 5.62e-08, - "yatta": 5.62e-08, - "yisroel": 5.62e-08, - "yoann": 5.62e-08, - "yone": 5.62e-08, - "yongs": 5.62e-08, - "yoohoo": 5.62e-08, - "yoshiaki": 5.62e-08, - "yotam": 5.62e-08, - "youngling": 5.62e-08, - "youssouf": 5.62e-08, - "yuca": 5.62e-08, - "yukie": 5.62e-08, - "zabul": 5.62e-08, - "zaira": 5.62e-08, - "zakia": 5.62e-08, - "zaku": 5.62e-08, - "zaydi": 5.62e-08, - "zeaxanthin": 5.62e-08, - "zizi": 5.62e-08, - "zogby": 5.62e-08, - "zolciak": 5.62e-08, - "zoon": 5.62e-08, - "zoonoses": 5.62e-08, - "zotto": 5.62e-08, - "aaaaaa": 5.5e-08, - "abbate": 5.5e-08, - "aberavon": 5.5e-08, - "abhisit": 5.5e-08, - "abijah": 5.5e-08, - "abil": 5.5e-08, - "abstemious": 5.5e-08, - "abuelo": 5.5e-08, - "acac": 5.5e-08, - "accesories": 5.5e-08, - "acclimatised": 5.5e-08, - "acess": 5.5e-08, - "acms": 5.5e-08, - "acreages": 5.5e-08, - "acuff": 5.5e-08, - "adalah": 5.5e-08, - "adamic": 5.5e-08, - "adeola": 5.5e-08, - "adia": 5.5e-08, - "adlon": 5.5e-08, - "aen": 5.5e-08, - "aerith": 5.5e-08, - "aestheticism": 5.5e-08, - "affiant": 5.5e-08, - "aguascalientes": 5.5e-08, - "ahhhhhhhh": 5.5e-08, - "ahmednagar": 5.5e-08, - "akiras": 5.5e-08, - "akito": 5.5e-08, - "akutagawa": 5.5e-08, - "aladeen": 5.5e-08, - "alanya": 5.5e-08, - "albendazole": 5.5e-08, - "aleix": 5.5e-08, - "alessa": 5.5e-08, - "aliena": 5.5e-08, - "aliquots": 5.5e-08, - "allendes": 5.5e-08, - "allington": 5.5e-08, - "almere": 5.5e-08, - "alos": 5.5e-08, - "alotta": 5.5e-08, - "alphago": 5.5e-08, - "altamonte": 5.5e-08, - "altruist": 5.5e-08, - "amad": 5.5e-08, - "amanullah": 5.5e-08, - "amelio": 5.5e-08, - "amenta": 5.5e-08, - "amoung": 5.5e-08, - "ampex": 5.5e-08, - "ancestries": 5.5e-08, - "andel": 5.5e-08, - "andreea": 5.5e-08, - "anes": 5.5e-08, - "angulation": 5.5e-08, - "anisa": 5.5e-08, - "anshuman": 5.5e-08, - "antinomian": 5.5e-08, - "antunes": 5.5e-08, - "apocrine": 5.5e-08, - "appends": 5.5e-08, - "aratus": 5.5e-08, - "arceneaux": 5.5e-08, - "archiepiscopal": 5.5e-08, - "ardiles": 5.5e-08, - "argenteuil": 5.5e-08, - "arkadelphia": 5.5e-08, - "armadas": 5.5e-08, - "armoring": 5.5e-08, - "articulable": 5.5e-08, - "asat": 5.5e-08, - "ascription": 5.5e-08, - "ashtead": 5.5e-08, - "aspherical": 5.5e-08, - "aspie": 5.5e-08, - "assassinates": 5.5e-08, - "assaying": 5.5e-08, - "astuteness": 5.5e-08, - "asymptotics": 5.5e-08, - "atcha": 5.5e-08, - "atlan": 5.5e-08, - "audubons": 5.5e-08, - "aval": 5.5e-08, - "avtar": 5.5e-08, - "awsat": 5.5e-08, - "awwwwww": 5.5e-08, - "axilla": 5.5e-08, - "ayalon": 5.5e-08, - "ayase": 5.5e-08, - "aylett": 5.5e-08, - "babalu": 5.5e-08, - "babka": 5.5e-08, - "backfilling": 5.5e-08, - "backhands": 5.5e-08, - "baelor": 5.5e-08, - "bakerys": 5.5e-08, - "balladeer": 5.5e-08, - "ballan": 5.5e-08, - "ballynahinch": 5.5e-08, - "ballz": 5.5e-08, - "balzer": 5.5e-08, - "bandara": 5.5e-08, - "bardeen": 5.5e-08, - "barrasso": 5.5e-08, - "bartell": 5.5e-08, - "bashkortostan": 5.5e-08, - "bayoneted": 5.5e-08, - "bcoz": 5.5e-08, - "becs": 5.5e-08, - "beefier": 5.5e-08, - "bellissima": 5.5e-08, - "belzoni": 5.5e-08, - "bergere": 5.5e-08, - "berghain": 5.5e-08, - "berrington": 5.5e-08, - "beuve": 5.5e-08, - "beverlys": 5.5e-08, - "bewilder": 5.5e-08, - "bgi": 5.5e-08, - "bhag": 5.5e-08, - "biagi": 5.5e-08, - "bickered": 5.5e-08, - "bikeways": 5.5e-08, - "bilis": 5.5e-08, - "bilked": 5.5e-08, - "billard": 5.5e-08, - "biowares": 5.5e-08, - "birdbath": 5.5e-08, - "bita": 5.5e-08, - "bitmain": 5.5e-08, - "blabbed": 5.5e-08, - "blaha": 5.5e-08, - "blaustein": 5.5e-08, - "bloodmoon": 5.5e-08, - "bludger": 5.5e-08, - "bluecoat": 5.5e-08, - "blumer": 5.5e-08, - "boakye": 5.5e-08, - "boddington": 5.5e-08, - "bokura": 5.5e-08, - "bolg": 5.5e-08, - "bolle": 5.5e-08, - "bollocking": 5.5e-08, - "bombardiers": 5.5e-08, - "bonked": 5.5e-08, - "boonen": 5.5e-08, - "booooo": 5.5e-08, - "borkowski": 5.5e-08, - "bossi": 5.5e-08, - "botta": 5.5e-08, - "boulter": 5.5e-08, - "boutwell": 5.5e-08, - "boycie": 5.5e-08, - "brachiosaurus": 5.5e-08, - "bradberry": 5.5e-08, - "braeden": 5.5e-08, - "brainwashes": 5.5e-08, - "brantly": 5.5e-08, - "brasco": 5.5e-08, - "braunstein": 5.5e-08, - "bridgford": 5.5e-08, - "brimfield": 5.5e-08, - "brioni": 5.5e-08, - "brisker": 5.5e-08, - "bronchospasm": 5.5e-08, - "brucella": 5.5e-08, - "bruit": 5.5e-08, - "bryer": 5.5e-08, - "bryozoans": 5.5e-08, - "buba": 5.5e-08, - "buckaroos": 5.5e-08, - "buckram": 5.5e-08, - "budaj": 5.5e-08, - "burgdorferi": 5.5e-08, - "burgeoned": 5.5e-08, - "burien": 5.5e-08, - "bwin": 5.5e-08, - "byt": 5.5e-08, - "cabra": 5.5e-08, - "callums": 5.5e-08, - "cambered": 5.5e-08, - "cambon": 5.5e-08, - "camerata": 5.5e-08, - "canid": 5.5e-08, - "canzone": 5.5e-08, - "capslock": 5.5e-08, - "caramelize": 5.5e-08, - "carentan": 5.5e-08, - "carolyns": 5.5e-08, - "carto": 5.5e-08, - "castillos": 5.5e-08, - "catechumens": 5.5e-08, - "catherwood": 5.5e-08, - "caucasoid": 5.5e-08, - "cavalierly": 5.5e-08, - "cawing": 5.5e-08, - "ccie": 5.5e-08, - "ccnp": 5.5e-08, - "ceed": 5.5e-08, - "celes": 5.5e-08, - "celgene": 5.5e-08, - "celli": 5.5e-08, - "cgf": 5.5e-08, - "chadbourne": 5.5e-08, - "chakram": 5.5e-08, - "chalcopyrite": 5.5e-08, - "chalobah": 5.5e-08, - "chandrayaan": 5.5e-08, - "charvet": 5.5e-08, - "chaudhury": 5.5e-08, - "chiko": 5.5e-08, - "chillum": 5.5e-08, - "chippendales": 5.5e-08, - "chondrite": 5.5e-08, - "chrissakes": 5.5e-08, - "chugach": 5.5e-08, - "chy": 5.5e-08, - "circulators": 5.5e-08, - "clairvoyants": 5.5e-08, - "claridges": 5.5e-08, - "clase": 5.5e-08, - "clearys": 5.5e-08, - "clelia": 5.5e-08, - "cloudera": 5.5e-08, - "cnw": 5.5e-08, - "coagulates": 5.5e-08, - "codling": 5.5e-08, - "cogently": 5.5e-08, - "coilovers": 5.5e-08, - "collegues": 5.5e-08, - "collimator": 5.5e-08, - "collinwood": 5.5e-08, - "colorant": 5.5e-08, - "coltranes": 5.5e-08, - "comfier": 5.5e-08, - "commentates": 5.5e-08, - "commoditized": 5.5e-08, - "comportment": 5.5e-08, - "conacher": 5.5e-08, - "conciousness": 5.5e-08, - "coning": 5.5e-08, - "conodonts": 5.5e-08, - "conroys": 5.5e-08, - "constans": 5.5e-08, - "constructionism": 5.5e-08, - "contemporaine": 5.5e-08, - "convergences": 5.5e-08, - "cornflake": 5.5e-08, - "coronations": 5.5e-08, - "cottoned": 5.5e-08, - "cottony": 5.5e-08, - "counterfactuals": 5.5e-08, - "countersigned": 5.5e-08, - "counterterrorist": 5.5e-08, - "covell": 5.5e-08, - "crecy": 5.5e-08, - "cretinous": 5.5e-08, - "cromwellian": 5.5e-08, - "croplands": 5.5e-08, - "croquette": 5.5e-08, - "cual": 5.5e-08, - "cubao": 5.5e-08, - "cuero": 5.5e-08, - "cuerpo": 5.5e-08, - "cutlasses": 5.5e-08, - "cwr": 5.5e-08, - "cycladic": 5.5e-08, - "cyprien": 5.5e-08, - "daaaamn": 5.5e-08, - "dacian": 5.5e-08, - "dacite": 5.5e-08, - "daha": 5.5e-08, - "dahal": 5.5e-08, - "damu": 5.5e-08, - "dardenne": 5.5e-08, - "daresbury": 5.5e-08, - "daubert": 5.5e-08, - "davenports": 5.5e-08, - "debussys": 5.5e-08, - "deloach": 5.5e-08, - "delpy": 5.5e-08, - "delux": 5.5e-08, - "demerger": 5.5e-08, - "demining": 5.5e-08, - "demoss": 5.5e-08, - "denice": 5.5e-08, - "denyer": 5.5e-08, - "depok": 5.5e-08, - "deray": 5.5e-08, - "derrickson": 5.5e-08, - "descriptio": 5.5e-08, - "deskjet": 5.5e-08, - "dfn": 5.5e-08, - "dhabis": 5.5e-08, - "diamandis": 5.5e-08, - "diamorphine": 5.5e-08, - "diapering": 5.5e-08, - "dibdin": 5.5e-08, - "diga": 5.5e-08, - "dilwale": 5.5e-08, - "dirtiness": 5.5e-08, - "dirtying": 5.5e-08, - "disbeliever": 5.5e-08, - "dise": 5.5e-08, - "dishs": 5.5e-08, - "dishonors": 5.5e-08, - "disinfo": 5.5e-08, - "disputations": 5.5e-08, - "distributer": 5.5e-08, - "divvied": 5.5e-08, - "docosahexaenoic": 5.5e-08, - "documentos": 5.5e-08, - "doering": 5.5e-08, - "domodedovo": 5.5e-08, - "donda": 5.5e-08, - "dorans": 5.5e-08, - "dorsi": 5.5e-08, - "doub": 5.5e-08, - "dpn": 5.5e-08, - "draconic": 5.5e-08, - "dragonborn": 5.5e-08, - "dravida": 5.5e-08, - "drie": 5.5e-08, - "dubrow": 5.5e-08, - "duggans": 5.5e-08, - "dugongs": 5.5e-08, - "dulin": 5.5e-08, - "duology": 5.5e-08, - "durkee": 5.5e-08, - "dylann": 5.5e-08, - "dynein": 5.5e-08, - "dyspeptic": 5.5e-08, - "ebden": 5.5e-08, - "echa": 5.5e-08, - "ecma": 5.5e-08, - "ecofriendly": 5.5e-08, - "eddings": 5.5e-08, - "edem": 5.5e-08, - "egal": 5.5e-08, - "eku": 5.5e-08, - "elasto": 5.5e-08, - "eleuthera": 5.5e-08, - "elisabet": 5.5e-08, - "eliya": 5.5e-08, - "elmslie": 5.5e-08, - "elphick": 5.5e-08, - "emancipating": 5.5e-08, - "empaths": 5.5e-08, - "emrick": 5.5e-08, - "ench": 5.5e-08, - "encyclopaedias": 5.5e-08, - "enger": 5.5e-08, - "enh": 5.5e-08, - "ennobling": 5.5e-08, - "enthrall": 5.5e-08, - "envyus": 5.5e-08, - "enzi": 5.5e-08, - "eowyn": 5.5e-08, - "ephram": 5.5e-08, - "epilepticus": 5.5e-08, - "eppendorf": 5.5e-08, - "erw": 5.5e-08, - "erzurum": 5.5e-08, - "escada": 5.5e-08, - "especialy": 5.5e-08, - "eterno": 5.5e-08, - "ethnologists": 5.5e-08, - "etosha": 5.5e-08, - "euboea": 5.5e-08, - "evershed": 5.5e-08, - "examinee": 5.5e-08, - "exce": 5.5e-08, - "excludable": 5.5e-08, - "exel": 5.5e-08, - "exocet": 5.5e-08, - "expressible": 5.5e-08, - "expressivity": 5.5e-08, - "fabers": 5.5e-08, - "facesitting": 5.5e-08, - "facia": 5.5e-08, - "fakin": 5.5e-08, - "falkenberg": 5.5e-08, - "falzon": 5.5e-08, - "fatcat": 5.5e-08, - "febreeze": 5.5e-08, - "feiglin": 5.5e-08, - "felda": 5.5e-08, - "fellainis": 5.5e-08, - "femaleness": 5.5e-08, - "fero": 5.5e-08, - "fhp": 5.5e-08, - "filiation": 5.5e-08, - "finneran": 5.5e-08, - "firetrucks": 5.5e-08, - "fittipaldi": 5.5e-08, - "flamel": 5.5e-08, - "flaxman": 5.5e-08, - "fledermaus": 5.5e-08, - "flegg": 5.5e-08, - "flimsiest": 5.5e-08, - "florencio": 5.5e-08, - "florrick": 5.5e-08, - "flotillas": 5.5e-08, - "fluorophores": 5.5e-08, - "fluoroquinolones": 5.5e-08, - "flushable": 5.5e-08, - "fmm": 5.5e-08, - "foodporn": 5.5e-08, - "forbush": 5.5e-08, - "forsey": 5.5e-08, - "fossilization": 5.5e-08, - "foxxs": 5.5e-08, - "fragen": 5.5e-08, - "fraternitys": 5.5e-08, - "frayn": 5.5e-08, - "freudenberg": 5.5e-08, - "freycinet": 5.5e-08, - "freytag": 5.5e-08, - "fridley": 5.5e-08, - "fridman": 5.5e-08, - "frontin": 5.5e-08, - "fuckit": 5.5e-08, - "funs": 5.37e-08, - "funi": 5.5e-08, - "furled": 5.5e-08, - "furqan": 5.5e-08, - "gabrielli": 5.5e-08, - "gaim": 5.5e-08, - "gallinari": 5.5e-08, - "ganas": 5.5e-08, - "gangbangs": 5.5e-08, - "gantries": 5.5e-08, - "gardez": 5.5e-08, - "gargles": 5.5e-08, - "garzas": 5.5e-08, - "gasb": 5.5e-08, - "gasly": 5.5e-08, - "gavotte": 5.5e-08, - "gaylor": 5.5e-08, - "gebel": 5.5e-08, - "geddit": 5.5e-08, - "geishas": 5.5e-08, - "genco": 5.5e-08, - "gendron": 5.5e-08, - "genevas": 5.5e-08, - "genevan": 5.5e-08, - "genscher": 5.5e-08, - "geomatics": 5.5e-08, - "gerdes": 5.5e-08, - "geron": 5.5e-08, - "ghad": 5.5e-08, - "ghettoes": 5.5e-08, - "gibbard": 5.5e-08, - "giddily": 5.5e-08, - "gilbey": 5.5e-08, - "gilmours": 5.5e-08, - "ginia": 5.5e-08, - "ginsbergs": 5.5e-08, - "giordani": 5.5e-08, - "glamorganshire": 5.5e-08, - "glassmaking": 5.5e-08, - "glcnac": 5.5e-08, - "glenoid": 5.5e-08, - "glenorchy": 5.5e-08, - "glower": 5.5e-08, - "godfreys": 5.5e-08, - "gokul": 5.5e-08, - "golang": 5.5e-08, - "golos": 5.5e-08, - "gond": 5.5e-08, - "gonski": 5.5e-08, - "goofys": 5.5e-08, - "gooses": 5.5e-08, - "goyang": 5.5e-08, - "goyo": 5.5e-08, - "grafter": 5.5e-08, - "gregers": 5.5e-08, - "gretas": 5.5e-08, - "gtld": 5.5e-08, - "gualtieri": 5.5e-08, - "guardi": 5.5e-08, - "guiseley": 5.5e-08, - "gulak": 5.5e-08, - "gunda": 5.5e-08, - "gunsmiths": 5.5e-08, - "guos": 5.5e-08, - "guto": 5.5e-08, - "gyasi": 5.5e-08, - "hach": 5.5e-08, - "haglund": 5.5e-08, - "hagstrom": 5.5e-08, - "haikou": 5.5e-08, - "haileybury": 5.5e-08, - "haining": 5.5e-08, - "halachic": 5.5e-08, - "halfmoon": 5.5e-08, - "halite": 5.5e-08, - "hallen": 5.5e-08, - "hamadan": 5.5e-08, - "hamble": 5.5e-08, - "hanz": 5.5e-08, - "harkonnen": 5.5e-08, - "harlesden": 5.5e-08, - "harrie": 5.5e-08, - "harro": 5.5e-08, - "hary": 5.5e-08, - "hatfields": 5.5e-08, - "hawing": 5.5e-08, - "hbt": 5.5e-08, - "hcd": 5.5e-08, - "heddle": 5.5e-08, - "heem": 5.5e-08, - "heffley": 5.5e-08, - "heiman": 5.5e-08, - "heitman": 5.5e-08, - "hellhounds": 5.5e-08, - "helliwell": 5.5e-08, - "hemmingway": 5.5e-08, - "hemsworths": 5.5e-08, - "henshall": 5.5e-08, - "henze": 5.5e-08, - "heru": 5.5e-08, - "heughan": 5.5e-08, - "heydar": 5.5e-08, - "hhv": 5.5e-08, - "hierarchal": 5.5e-08, - "hierarchs": 5.5e-08, - "hiero": 5.5e-08, - "highfalutin": 5.5e-08, - "hincks": 5.5e-08, - "hirings": 5.5e-08, - "hoenn": 5.5e-08, - "hoggart": 5.5e-08, - "holograph": 5.5e-08, - "holon": 5.5e-08, - "honeycombed": 5.5e-08, - "honfleur": 5.5e-08, - "hopley": 5.5e-08, - "horners": 5.5e-08, - "hosta": 5.5e-08, - "hoster": 5.5e-08, - "houstonians": 5.5e-08, - "hoye": 5.5e-08, - "hoyland": 5.5e-08, - "htf": 5.5e-08, - "huntelaar": 5.5e-08, - "hutchinsons": 5.5e-08, - "hydrosphere": 5.5e-08, - "hypovolemic": 5.5e-08, - "iaquinta": 5.5e-08, - "icecap": 5.5e-08, - "idbi": 5.5e-08, - "ignoramuses": 5.5e-08, - "ilion": 5.5e-08, - "illegalities": 5.5e-08, - "ilt": 5.5e-08, - "imagineering": 5.5e-08, - "imine": 5.5e-08, - "immaculata": 5.5e-08, - "immunologically": 5.5e-08, - "immunoreactivity": 5.5e-08, - "impro": 5.5e-08, - "inactivates": 5.5e-08, - "inaugurations": 5.5e-08, - "incher": 5.5e-08, - "indeedy": 5.5e-08, - "indiv": 5.5e-08, - "industriousness": 5.5e-08, - "infliximab": 5.5e-08, - "initialism": 5.5e-08, - "innovativeness": 5.5e-08, - "institutionalisation": 5.5e-08, - "instrumentalities": 5.5e-08, - "intercessions": 5.5e-08, - "interiority": 5.5e-08, - "internationa": 5.5e-08, - "intradermal": 5.5e-08, - "investee": 5.5e-08, - "iorio": 5.5e-08, - "ipb": 5.5e-08, - "irrigable": 5.5e-08, - "islamiyah": 5.5e-08, - "islamophobes": 5.5e-08, - "isoflurane": 5.5e-08, - "istrian": 5.5e-08, - "izanagi": 5.5e-08, - "izquierdo": 5.5e-08, - "jadu": 5.5e-08, - "janz": 5.5e-08, - "jarringly": 5.5e-08, - "jarvie": 5.5e-08, - "jazzman": 5.5e-08, - "jdf": 5.5e-08, - "jeds": 5.5e-08, - "jejunum": 5.5e-08, - "jek": 5.5e-08, - "jisoo": 5.5e-08, - "johannson": 5.5e-08, - "johnstones": 5.5e-08, - "joselito": 5.5e-08, - "joven": 5.5e-08, - "joyeux": 5.5e-08, - "jrm": 5.5e-08, - "judahs": 5.5e-08, - "judie": 5.5e-08, - "juglans": 5.5e-08, - "jukka": 5.5e-08, - "jyllands": 5.5e-08, - "kailyn": 5.5e-08, - "kalenjin": 5.5e-08, - "kalm": 5.5e-08, - "kames": 5.5e-08, - "kanchi": 5.5e-08, - "kanger": 5.5e-08, - "kanika": 5.5e-08, - "karami": 5.5e-08, - "karno": 5.5e-08, - "kathak": 5.5e-08, - "kattan": 5.5e-08, - "kawabata": 5.5e-08, - "kbm": 5.5e-08, - "keatley": 5.5e-08, - "kedzie": 5.5e-08, - "kempt": 5.5e-08, - "kenneys": 5.5e-08, - "kennon": 5.5e-08, - "kephart": 5.5e-08, - "kerbside": 5.5e-08, - "kewpie": 5.5e-08, - "khj": 5.5e-08, - "kirst": 5.5e-08, - "kirstein": 5.5e-08, - "kislev": 5.5e-08, - "kitcheners": 5.5e-08, - "kleinschmidt": 5.5e-08, - "kmf": 5.5e-08, - "knust": 5.5e-08, - "koil": 5.5e-08, - "kokoschka": 5.5e-08, - "kommer": 5.5e-08, - "kopa": 5.5e-08, - "krogers": 5.5e-08, - "krokodil": 5.5e-08, - "kuhlman": 5.5e-08, - "kullu": 5.5e-08, - "kunle": 5.5e-08, - "kunwar": 5.5e-08, - "kupper": 5.5e-08, - "kutz": 5.5e-08, - "kwe": 5.5e-08, - "kyneton": 5.5e-08, - "labbe": 5.5e-08, - "lactones": 5.5e-08, - "lagertha": 5.5e-08, - "lakshmana": 5.5e-08, - "lampton": 5.5e-08, - "lampung": 5.5e-08, - "lanc": 5.5e-08, - "lanceolata": 5.5e-08, - "lancets": 5.5e-08, - "landcare": 5.5e-08, - "langman": 5.5e-08, - "lanl": 5.5e-08, - "lannon": 5.5e-08, - "laren": 5.5e-08, - "latissimus": 5.5e-08, - "latorre": 5.5e-08, - "lavishes": 5.5e-08, - "lbg": 5.5e-08, - "leafhopper": 5.5e-08, - "leakin": 5.5e-08, - "learys": 5.5e-08, - "lectio": 5.5e-08, - "lembit": 5.5e-08, - "lemmas": 5.5e-08, - "lenta": 5.5e-08, - "leonhart": 5.5e-08, - "letra": 5.5e-08, - "levallois": 5.5e-08, - "leveque": 5.5e-08, - "levick": 5.5e-08, - "lexan": 5.5e-08, - "leyburn": 5.5e-08, - "lhe": 5.5e-08, - "lhuillier": 5.5e-08, - "liangs": 5.5e-08, - "liberatore": 5.5e-08, - "lifeguarding": 5.5e-08, - "lifo": 5.5e-08, - "lige": 5.5e-08, - "lilburne": 5.5e-08, - "lingle": 5.5e-08, - "lippard": 5.5e-08, - "lithographer": 5.5e-08, - "livechat": 5.5e-08, - "lka": 5.5e-08, - "loafs": 5.5e-08, - "lobi": 5.5e-08, - "lobular": 5.5e-08, - "lockups": 5.5e-08, - "logik": 5.5e-08, - "loled": 5.5e-08, - "loling": 5.5e-08, - "lolled": 5.5e-08, - "lornas": 5.5e-08, - "louisas": 5.5e-08, - "lovells": 5.5e-08, - "lowder": 5.5e-08, - "lth": 5.5e-08, - "ltrs": 5.5e-08, - "ludi": 5.5e-08, - "ludwigshafen": 5.5e-08, - "lungfish": 5.5e-08, - "luxs": 5.5e-08, - "lviii": 5.5e-08, - "macphersons": 5.5e-08, - "macrumors": 5.5e-08, - "madtv": 5.5e-08, - "maginnis": 5.5e-08, - "magis": 5.5e-08, - "magnani": 5.5e-08, - "magway": 5.5e-08, - "mainlander": 5.5e-08, - "maino": 5.5e-08, - "majnu": 5.5e-08, - "makeing": 5.5e-08, - "malherbe": 5.5e-08, - "malki": 5.5e-08, - "maltings": 5.5e-08, - "manageability": 5.5e-08, - "mandelstam": 5.5e-08, - "manipuri": 5.5e-08, - "mannar": 5.5e-08, - "maplin": 5.5e-08, - "mariane": 5.5e-08, - "marik": 5.5e-08, - "marilu": 5.5e-08, - "martas": 5.5e-08, - "maryjane": 5.5e-08, - "mashburn": 5.5e-08, - "massifs": 5.5e-08, - "matabele": 5.5e-08, - "matanuska": 5.5e-08, - "matara": 5.5e-08, - "mateys": 5.5e-08, - "matha": 5.5e-08, - "matriculating": 5.5e-08, - "matthau": 5.5e-08, - "maynor": 5.5e-08, - "mccollough": 5.5e-08, - "mcconkey": 5.5e-08, - "mcglone": 5.5e-08, - "mcnairy": 5.5e-08, - "meckler": 5.5e-08, - "meddles": 5.5e-08, - "medusae": 5.5e-08, - "melk": 5.5e-08, - "mellors": 5.5e-08, - "menounos": 5.5e-08, - "merlini": 5.5e-08, - "mesial": 5.5e-08, - "messalina": 5.5e-08, - "messias": 5.5e-08, - "mesta": 5.5e-08, - "metrication": 5.5e-08, - "meurice": 5.5e-08, - "mfk": 5.5e-08, - "microchipping": 5.5e-08, - "microplate": 5.5e-08, - "microstrip": 5.5e-08, - "midships": 5.5e-08, - "miiverse": 5.5e-08, - "milenio": 5.5e-08, - "millercoors": 5.5e-08, - "milliners": 5.5e-08, - "millionths": 5.5e-08, - "milone": 5.5e-08, - "milsom": 5.5e-08, - "mimmo": 5.5e-08, - "minghella": 5.5e-08, - "ministre": 5.5e-08, - "missie": 5.5e-08, - "mistresss": 5.5e-08, - "mitu": 5.5e-08, - "mkz": 5.5e-08, - "mmn": 5.5e-08, - "mnets": 5.5e-08, - "mockingbirds": 5.5e-08, - "modbury": 5.5e-08, - "modise": 5.5e-08, - "mogami": 5.5e-08, - "monetarist": 5.5e-08, - "mongooses": 5.5e-08, - "monist": 5.5e-08, - "monotypic": 5.5e-08, - "montenegros": 5.5e-08, - "moralize": 5.5e-08, - "moris": 5.37e-08, - "morongo": 5.5e-08, - "morphic": 5.5e-08, - "morses": 5.5e-08, - "mortems": 5.5e-08, - "morteza": 5.5e-08, - "mossel": 5.5e-08, - "mottoes": 5.5e-08, - "moulins": 5.5e-08, - "msme": 5.5e-08, - "mugi": 5.5e-08, - "muldrow": 5.5e-08, - "mundaring": 5.5e-08, - "mungos": 5.5e-08, - "murmelstein": 5.5e-08, - "musharrafs": 5.5e-08, - "myalgia": 5.5e-08, - "myelofibrosis": 5.5e-08, - "myshkin": 5.5e-08, - "nadav": 5.5e-08, - "nagler": 5.5e-08, - "nametags": 5.5e-08, - "narasimhan": 5.5e-08, - "nasmyth": 5.5e-08, - "nazo": 5.5e-08, - "ndes": 5.5e-08, - "ndiaye": 5.5e-08, - "nebel": 5.5e-08, - "nebulas": 5.5e-08, - "necrophiliac": 5.5e-08, - "nelli": 5.5e-08, - "neovascularization": 5.5e-08, - "nessun": 5.5e-08, - "neuvirth": 5.5e-08, - "neverforget": 5.5e-08, - "newjersey": 5.5e-08, - "newsbeat": 5.5e-08, - "newseum": 5.5e-08, - "newsround": 5.5e-08, - "ngv": 5.5e-08, - "nicolau": 5.5e-08, - "nilla": 5.5e-08, - "nimrud": 5.5e-08, - "ninetieth": 5.5e-08, - "nmfs": 5.5e-08, - "noailles": 5.5e-08, - "noakhali": 5.5e-08, - "nondeterministic": 5.5e-08, - "nondiscriminatory": 5.5e-08, - "nonfinancial": 5.5e-08, - "nonresponsive": 5.5e-08, - "northey": 5.5e-08, - "notochord": 5.5e-08, - "novack": 5.5e-08, - "nunawading": 5.5e-08, - "nurofen": 5.5e-08, - "nurturer": 5.5e-08, - "oatman": 5.5e-08, - "oberland": 5.5e-08, - "oboist": 5.5e-08, - "obrigado": 5.5e-08, - "ochocinco": 5.5e-08, - "odgers": 5.5e-08, - "offworld": 5.5e-08, - "ogdens": 5.5e-08, - "oji": 5.5e-08, - "okeanos": 5.5e-08, - "ollivier": 5.5e-08, - "olmedo": 5.5e-08, - "olpc": 5.5e-08, - "omerta": 5.5e-08, - "optik": 5.5e-08, - "oric": 5.5e-08, - "origo": 5.5e-08, - "ormolu": 5.5e-08, - "osawa": 5.5e-08, - "osburn": 5.5e-08, - "oseltamivir": 5.5e-08, - "osteopaths": 5.5e-08, - "osteoporotic": 5.5e-08, - "osw": 5.5e-08, - "otta": 5.5e-08, - "ouchy": 5.5e-08, - "oumar": 5.5e-08, - "overdevelopment": 5.5e-08, - "oversampling": 5.5e-08, - "overshoots": 5.5e-08, - "oviparous": 5.5e-08, - "oxted": 5.5e-08, - "oxygenase": 5.5e-08, - "ozcan": 5.5e-08, - "ozy": 5.5e-08, - "pacinos": 5.5e-08, - "packhorse": 5.5e-08, - "padmasambhava": 5.5e-08, - "pahl": 5.5e-08, - "paleoecology": 5.5e-08, - "panday": 5.5e-08, - "panesar": 5.5e-08, - "pango": 5.5e-08, - "pantothenic": 5.5e-08, - "papias": 5.5e-08, - "paraneoplastic": 5.5e-08, - "paraphilia": 5.5e-08, - "paratype": 5.5e-08, - "parece": 5.5e-08, - "parshall": 5.5e-08, - "passband": 5.5e-08, - "patani": 5.5e-08, - "patin": 5.5e-08, - "patong": 5.5e-08, - "pavillon": 5.5e-08, - "pdn": 5.5e-08, - "penicillins": 5.5e-08, - "peope": 5.5e-08, - "peppermints": 5.5e-08, - "perales": 5.5e-08, - "perceiver": 5.5e-08, - "perceptively": 5.5e-08, - "perd": 5.5e-08, - "pergamum": 5.5e-08, - "pericope": 5.5e-08, - "peristyle": 5.5e-08, - "permissibility": 5.5e-08, - "persil": 5.5e-08, - "pertinence": 5.5e-08, - "perty": 5.5e-08, - "perving": 5.5e-08, - "pescatarian": 5.5e-08, - "pettitt": 5.5e-08, - "pewdiepies": 5.5e-08, - "pgn": 5.5e-08, - "pharmacia": 5.5e-08, - "pharmacodynamic": 5.5e-08, - "phas": 5.5e-08, - "phasma": 5.5e-08, - "phenomenons": 5.5e-08, - "philharmonics": 5.5e-08, - "philodendron": 5.5e-08, - "phosphatidylcholine": 5.5e-08, - "photoacoustic": 5.5e-08, - "photodetectors": 5.5e-08, - "photolysis": 5.5e-08, - "piaggio": 5.5e-08, - "piddly": 5.5e-08, - "pigtailed": 5.5e-08, - "pilotless": 5.5e-08, - "pipelined": 5.5e-08, - "piron": 5.5e-08, - "pistils": 5.5e-08, - "pitre": 5.5e-08, - "pizzi": 5.5e-08, - "pkp": 5.5e-08, - "placa": 5.5e-08, - "placemat": 5.5e-08, - "plaiting": 5.5e-08, - "platonist": 5.5e-08, - "pleating": 5.5e-08, - "plentifully": 5.5e-08, - "plugger": 5.5e-08, - "pmdd": 5.5e-08, - "pmh": 5.5e-08, - "pode": 5.5e-08, - "pogchamp": 5.5e-08, - "pointes": 5.5e-08, - "pokal": 5.5e-08, - "polemicist": 5.5e-08, - "poom": 5.5e-08, - "popcap": 5.5e-08, - "potg": 5.5e-08, - "poti": 5.5e-08, - "potti": 5.5e-08, - "pratensis": 5.5e-08, - "prefilled": 5.5e-08, - "prejudicing": 5.5e-08, - "presenta": 5.5e-08, - "priestland": 5.5e-08, - "prizing": 5.5e-08, - "promptings": 5.5e-08, - "prostates": 5.5e-08, - "prosumer": 5.5e-08, - "protag": 5.5e-08, - "proximo": 5.5e-08, - "psychonauts": 5.5e-08, - "psyduck": 5.5e-08, - "puas": 5.5e-08, - "pufa": 5.5e-08, - "puigs": 5.5e-08, - "purebreds": 5.5e-08, - "pwcs": 5.5e-08, - "pxe": 5.5e-08, - "qalandar": 5.5e-08, - "qeii": 5.5e-08, - "qemu": 5.5e-08, - "quartiles": 5.5e-08, - "quaver": 5.5e-08, - "quina": 5.5e-08, - "quy": 5.5e-08, - "rabinovitch": 5.5e-08, - "rabs": 5.5e-08, - "rademacher": 5.5e-08, - "radiopharmaceuticals": 5.5e-08, - "raeder": 5.5e-08, - "raffaella": 5.5e-08, - "rahall": 5.5e-08, - "rakshasa": 5.5e-08, - "rangpur": 5.5e-08, - "rankle": 5.5e-08, - "rapala": 5.5e-08, - "rappler": 5.5e-08, - "rashers": 5.5e-08, - "ravinia": 5.5e-08, - "raynal": 5.5e-08, - "rcia": 5.5e-08, - "reaney": 5.5e-08, - "recalcitrance": 5.5e-08, - "rech": 5.5e-08, - "recommendable": 5.5e-08, - "recommissioned": 5.5e-08, - "recta": 5.5e-08, - "redial": 5.5e-08, - "redl": 5.5e-08, - "redlight": 5.5e-08, - "reefing": 5.5e-08, - "reenlisted": 5.5e-08, - "refashion": 5.5e-08, - "reformulating": 5.5e-08, - "refreshers": 5.5e-08, - "reinterred": 5.5e-08, - "relator": 5.5e-08, - "remax": 5.5e-08, - "reoccupation": 5.5e-08, - "reoccupy": 5.5e-08, - "replayability": 5.5e-08, - "resch": 5.5e-08, - "resnik": 5.5e-08, - "respek": 5.5e-08, - "rhetoricians": 5.5e-08, - "rhotic": 5.5e-08, - "rhun": 5.5e-08, - "rilla": 5.5e-08, - "rimjob": 5.5e-08, - "rivonia": 5.5e-08, - "rockslide": 5.5e-08, - "rogerio": 5.5e-08, - "rogier": 5.5e-08, - "ronans": 5.5e-08, - "ronco": 5.5e-08, - "rpn": 5.5e-08, - "rsu": 5.5e-08, - "runtimes": 5.5e-08, - "rupali": 5.5e-08, - "russett": 5.5e-08, - "sabel": 5.5e-08, - "sabermetrics": 5.5e-08, - "saddledome": 5.5e-08, - "sakthi": 5.5e-08, - "salespersons": 5.5e-08, - "saltz": 5.5e-08, - "samis": 5.5e-08, - "saramago": 5.5e-08, - "sassanid": 5.5e-08, - "satta": 5.5e-08, - "saturnine": 5.5e-08, - "savoyard": 5.5e-08, - "sawako": 5.5e-08, - "scallywag": 5.5e-08, - "scattergood": 5.5e-08, - "scaup": 5.5e-08, - "schl": 5.5e-08, - "schmaltzy": 5.5e-08, - "schoeman": 5.5e-08, - "schs": 5.5e-08, - "schulzs": 5.5e-08, - "schwarze": 5.5e-08, - "scraggy": 5.5e-08, - "scramjet": 5.5e-08, - "scriptum": 5.5e-08, - "scutum": 5.5e-08, - "seabourn": 5.5e-08, - "seagrams": 5.5e-08, - "seawolves": 5.5e-08, - "secreta": 5.5e-08, - "seedbed": 5.5e-08, - "seekonk": 5.5e-08, - "selfmade": 5.5e-08, - "seliger": 5.5e-08, - "senran": 5.5e-08, - "sente": 5.5e-08, - "sento": 5.5e-08, - "seos": 5.5e-08, - "sepik": 5.5e-08, - "seppo": 5.5e-08, - "serah": 5.5e-08, - "sergeyevich": 5.5e-08, - "sergios": 5.5e-08, - "serizawa": 5.5e-08, - "seru": 5.5e-08, - "sesay": 5.5e-08, - "shamsher": 5.5e-08, - "shango": 5.5e-08, - "shantytowns": 5.5e-08, - "sharyl": 5.5e-08, - "shefali": 5.5e-08, - "sheldrick": 5.5e-08, - "shellacking": 5.5e-08, - "shellfire": 5.5e-08, - "shennan": 5.5e-08, - "shereen": 5.5e-08, - "shikha": 5.5e-08, - "shimmying": 5.5e-08, - "shirtsleeves": 5.5e-08, - "shodan": 5.5e-08, - "shoddily": 5.5e-08, - "shoma": 5.5e-08, - "shrivastava": 5.5e-08, - "shuli": 5.5e-08, - "shuter": 5.5e-08, - "shuvalov": 5.5e-08, - "shyne": 5.5e-08, - "siddall": 5.5e-08, - "sidorov": 5.5e-08, - "sifton": 5.5e-08, - "signior": 5.5e-08, - "signorina": 5.5e-08, - "sikri": 5.5e-08, - "simcox": 5.5e-08, - "simplot": 5.5e-08, - "sirrah": 5.5e-08, - "siward": 5.5e-08, - "skala": 5.5e-08, - "skb": 5.5e-08, - "skullcandy": 5.5e-08, - "skycity": 5.5e-08, - "skylarks": 5.5e-08, - "sladen": 5.5e-08, - "slfp": 5.5e-08, - "sligh": 5.5e-08, - "smectic": 5.5e-08, - "smilingly": 5.5e-08, - "smites": 5.5e-08, - "smyly": 5.5e-08, - "snuffles": 5.5e-08, - "snuffling": 5.5e-08, - "soaping": 5.5e-08, - "soave": 5.5e-08, - "socar": 5.5e-08, - "soeur": 5.5e-08, - "softworks": 5.5e-08, - "solanges": 5.5e-08, - "soldi": 5.5e-08, - "solemnized": 5.5e-08, - "solubilization": 5.5e-08, - "sonicwall": 5.5e-08, - "soras": 5.5e-08, - "soteriology": 5.5e-08, - "soubry": 5.5e-08, - "sousuke": 5.5e-08, - "spectro": 5.5e-08, - "spellbook": 5.5e-08, - "sphalerite": 5.5e-08, - "sphero": 5.5e-08, - "spillman": 5.5e-08, - "spirometry": 5.5e-08, - "spiti": 5.5e-08, - "splendored": 5.5e-08, - "sportage": 5.5e-08, - "sportingbet": 5.5e-08, - "squirrely": 5.5e-08, - "sruthi": 5.5e-08, - "stablemates": 5.5e-08, - "stacia": 5.5e-08, - "staghorn": 5.5e-08, - "stallholders": 5.5e-08, - "stanbury": 5.5e-08, - "stann": 5.5e-08, - "stanthorpe": 5.5e-08, - "stanwix": 5.5e-08, - "statess": 5.5e-08, - "stationer": 5.5e-08, - "stemless": 5.5e-08, - "stiefel": 5.5e-08, - "stipes": 1.91e-08, - "strandings": 5.5e-08, - "stresemann": 5.5e-08, - "studding": 5.5e-08, - "stukas": 5.5e-08, - "subcontinental": 5.5e-08, - "subjectivism": 5.5e-08, - "substructures": 5.5e-08, - "sudhakar": 5.5e-08, - "sugarcoating": 5.5e-08, - "sumatera": 5.5e-08, - "summations": 5.5e-08, - "sundering": 5.5e-08, - "sundowners": 5.5e-08, - "sungkyunkwan": 5.5e-08, - "supergiants": 5.5e-08, - "supress": 5.5e-08, - "suren": 5.5e-08, - "suvorov": 5.5e-08, - "syke": 5.5e-08, - "syllabary": 5.5e-08, - "sylvian": 5.5e-08, - "synthesising": 5.5e-08, - "szechwan": 5.5e-08, - "taas": 5.5e-08, - "taiki": 5.5e-08, - "tamarin": 5.5e-08, - "tamo": 5.5e-08, - "tange": 5.5e-08, - "tankards": 5.5e-08, - "taplow": 5.5e-08, - "tappy": 5.5e-08, - "tartary": 5.5e-08, - "tauren": 5.5e-08, - "tavish": 5.5e-08, - "tdo": 5.5e-08, - "tearooms": 5.5e-08, - "teavana": 5.5e-08, - "technologic": 5.5e-08, - "teetotaller": 5.5e-08, - "tenorio": 5.5e-08, - "tenser": 5.5e-08, - "teppei": 5.5e-08, - "terhune": 5.5e-08, - "terpstra": 5.5e-08, - "terwilliger": 5.5e-08, - "tessellated": 5.5e-08, - "teter": 5.5e-08, - "teufel": 5.5e-08, - "theophanes": 5.5e-08, - "theophile": 5.5e-08, - "theosophist": 5.5e-08, - "therfore": 5.5e-08, - "thermaltake": 5.5e-08, - "theu": 5.5e-08, - "thewrap": 5.5e-08, - "thiophene": 5.5e-08, - "thiry": 5.5e-08, - "thoresby": 5.5e-08, - "thorfinn": 5.5e-08, - "thornburgh": 5.5e-08, - "thromboembolic": 5.5e-08, - "thuan": 5.5e-08, - "thuja": 5.5e-08, - "tigran": 5.5e-08, - "tinchy": 5.5e-08, - "tiptree": 5.5e-08, - "tiso": 5.5e-08, - "tiwanaku": 5.5e-08, - "todrick": 5.5e-08, - "tokarev": 5.5e-08, - "tombigbee": 5.5e-08, - "tomoyo": 5.5e-08, - "toone": 5.5e-08, - "tootsies": 5.5e-08, - "toronado": 5.5e-08, - "toucher": 5.5e-08, - "touchless": 5.5e-08, - "touchwood": 5.5e-08, - "toxicologists": 5.5e-08, - "toyboy": 5.5e-08, - "tozawa": 5.5e-08, - "tragical": 5.5e-08, - "trainload": 5.5e-08, - "trainors": 5.5e-08, - "transects": 5.5e-08, - "transgresses": 5.5e-08, - "transnationalism": 5.5e-08, - "trat": 5.5e-08, - "trec": 5.5e-08, - "treu": 5.5e-08, - "tribus": 5.5e-08, - "trichoderma": 5.5e-08, - "trifluoride": 5.5e-08, - "troller": 5.5e-08, - "trollin": 5.5e-08, - "trotwood": 5.5e-08, - "troublemaking": 5.5e-08, - "trr": 5.5e-08, - "trungpa": 5.5e-08, - "truxton": 5.5e-08, - "tskhinvali": 5.5e-08, - "tsos": 5.5e-08, - "tuberculin": 5.5e-08, - "turncoats": 5.5e-08, - "tusculum": 5.5e-08, - "typhimurium": 5.5e-08, - "tyrann": 5.5e-08, - "tyrannosaurs": 5.5e-08, - "tyrones": 5.5e-08, - "uitm": 5.5e-08, - "umer": 5.5e-08, - "unaccomplished": 5.5e-08, - "unalaq": 5.5e-08, - "uncasville": 5.5e-08, - "unclassifiable": 5.5e-08, - "unconference": 5.5e-08, - "uncontained": 5.5e-08, - "undercroft": 5.5e-08, - "uninsulated": 5.5e-08, - "unpersuasive": 5.5e-08, - "unreinforced": 5.5e-08, - "unreturned": 5.5e-08, - "unsprung": 5.5e-08, - "unsystematic": 5.5e-08, - "unties": 5.5e-08, - "upholder": 5.5e-08, - "upsidedown": 5.5e-08, - "upslope": 5.5e-08, - "urbanus": 5.5e-08, - "urbis": 5.5e-08, - "urfa": 5.5e-08, - "usccb": 5.5e-08, - "utg": 5.5e-08, - "utsunomiya": 5.5e-08, - "valanciunas": 5.5e-08, - "valdis": 5.5e-08, - "vallabhbhai": 5.5e-08, - "vandegrift": 5.5e-08, - "varadarajan": 5.5e-08, - "vegard": 5.5e-08, - "veloster": 5.5e-08, - "verrall": 5.5e-08, - "vetus": 5.5e-08, - "vieille": 5.5e-08, - "virgie": 5.5e-08, - "virginica": 5.5e-08, - "visu": 5.5e-08, - "voici": 5.5e-08, - "volkmann": 5.5e-08, - "voltaires": 5.5e-08, - "vorpal": 5.5e-08, - "vosper": 5.5e-08, - "vsu": 5.5e-08, - "vulcano": 5.5e-08, - "vzw": 5.5e-08, - "wahhh": 5.5e-08, - "wahlbergs": 5.5e-08, - "waitt": 5.5e-08, - "wakeham": 5.5e-08, - "warragul": 5.5e-08, - "wasserstein": 5.5e-08, - "watchlists": 5.5e-08, - "wayan": 5.5e-08, - "wbal": 5.5e-08, - "webtoons": 5.5e-08, - "welche": 5.5e-08, - "wellings": 5.5e-08, - "wenig": 5.5e-08, - "werd": 5.5e-08, - "wewe": 5.5e-08, - "wheaten": 5.5e-08, - "wheatons": 5.5e-08, - "whicker": 5.5e-08, - "whippoorwill": 5.5e-08, - "whirly": 5.5e-08, - "whorled": 5.5e-08, - "whyyyy": 5.5e-08, - "willunga": 5.5e-08, - "windstorms": 5.5e-08, - "winslows": 5.5e-08, - "withey": 5.5e-08, - "wolfhounds": 5.5e-08, - "wollman": 5.5e-08, - "wombwell": 5.5e-08, - "woodhill": 5.5e-08, - "woodies": 5.5e-08, - "woodring": 5.5e-08, - "workingman": 5.5e-08, - "woukd": 5.5e-08, - "wrf": 5.5e-08, - "wuhu": 5.5e-08, - "wwl": 5.5e-08, - "wyrd": 5.5e-08, - "xiangyang": 5.5e-08, - "yanda": 5.5e-08, - "yantai": 5.5e-08, - "yarr": 5.5e-08, - "yehudah": 5.5e-08, - "yemenite": 5.5e-08, - "yepes": 5.5e-08, - "yimou": 5.5e-08, - "ylvis": 5.5e-08, - "yorkies": 5.5e-08, - "yoshiyuki": 5.5e-08, - "zacharie": 5.5e-08, - "zada": 5.5e-08, - "zagged": 5.5e-08, - "zales": 5.5e-08, - "zamindari": 5.5e-08, - "zapf": 5.5e-08, - "zeeshan": 5.5e-08, - "zerk": 5.5e-08, - "zimbardo": 5.5e-08, - "zoho": 5.5e-08, - "aadvantage": 5.37e-08, - "abatements": 5.37e-08, - "abdulmutallab": 5.37e-08, - "abenaki": 5.37e-08, - "aberfeldy": 5.37e-08, - "ables": 5.37e-08, - "abrogating": 5.37e-08, - "abyad": 5.37e-08, - "abyei": 5.37e-08, - "accretive": 5.37e-08, - "acetal": 5.37e-08, - "achaia": 5.37e-08, - "acpi": 5.37e-08, - "adak": 5.37e-08, - "adalind": 5.37e-08, - "addends": 5.37e-08, - "adelante": 5.37e-08, - "adjutants": 5.37e-08, - "adonijah": 5.37e-08, - "adversus": 5.37e-08, - "aegons": 5.37e-08, - "aeroporto": 5.37e-08, - "afca": 5.37e-08, - "afrobeats": 5.37e-08, - "afterhours": 5.37e-08, - "aftershow": 5.37e-08, - "againts": 5.37e-08, - "agates": 5.37e-08, - "agenor": 5.37e-08, - "agito": 5.37e-08, - "agnosia": 5.37e-08, - "ahadith": 5.37e-08, - "ahlberg": 5.37e-08, - "aidens": 5.37e-08, - "ainsi": 5.37e-08, - "aislinn": 5.37e-08, - "ajahn": 5.37e-08, - "akureyri": 5.37e-08, - "alceste": 5.37e-08, - "alcester": 5.37e-08, - "aledo": 5.37e-08, - "aliased": 5.37e-08, - "alllllll": 5.37e-08, - "altimeters": 5.37e-08, - "alvins": 5.37e-08, - "amarok": 5.37e-08, - "amasses": 5.37e-08, - "amherstburg": 5.37e-08, - "amundson": 5.37e-08, - "anaerobes": 5.37e-08, - "anastrozole": 5.37e-08, - "ancillaries": 5.37e-08, - "aniplex": 5.37e-08, - "anm": 5.37e-08, - "anthracis": 5.37e-08, - "antistatic": 5.37e-08, - "antonello": 5.37e-08, - "apically": 5.37e-08, - "apollyon": 5.37e-08, - "applecross": 5.37e-08, - "apw": 5.37e-08, - "aql": 5.37e-08, - "aqualad": 5.37e-08, - "aquileia": 5.37e-08, - "arcadius": 5.37e-08, - "arcangel": 5.37e-08, - "ardens": 5.37e-08, - "areopagus": 5.37e-08, - "arnd": 5.37e-08, - "arnies": 5.37e-08, - "arrivederci": 5.37e-08, - "arteriosus": 5.37e-08, - "arvensis": 5.37e-08, - "ashbys": 5.37e-08, - "ashmole": 5.37e-08, - "ashour": 5.37e-08, - "assaulter": 5.37e-08, - "astrocyte": 5.37e-08, - "ated": 5.37e-08, - "athist": 5.37e-08, - "atis": 2.29e-08, - "ator": 5.37e-08, - "audax": 5.37e-08, - "audiotapes": 5.37e-08, - "augusti": 5.37e-08, - "avic": 5.37e-08, - "avifauna": 5.37e-08, - "aycliffe": 5.37e-08, - "ayelet": 5.37e-08, - "azarov": 5.37e-08, - "azu": 5.37e-08, - "babbler": 5.37e-08, - "bachan": 5.37e-08, - "bacteriostatic": 5.37e-08, - "bagno": 5.37e-08, - "bajpai": 5.37e-08, - "baldridge": 5.37e-08, - "banchory": 5.37e-08, - "bandannas": 5.37e-08, - "bandmaster": 5.37e-08, - "baraga": 5.37e-08, - "baram": 5.37e-08, - "barbels": 5.37e-08, - "bartend": 5.37e-08, - "bartolini": 5.37e-08, - "bartonella": 5.37e-08, - "bartos": 5.37e-08, - "baye": 5.37e-08, - "bdk": 5.37e-08, - "beaudesert": 5.37e-08, - "beaupre": 5.37e-08, - "bejewelled": 5.37e-08, - "bellyache": 5.37e-08, - "belshazzar": 5.37e-08, - "benayoun": 5.37e-08, - "benkei": 5.37e-08, - "berlinetta": 5.37e-08, - "berney": 5.37e-08, - "bethanie": 5.37e-08, - "bevels": 5.37e-08, - "bhaag": 5.37e-08, - "bhatta": 5.37e-08, - "bickers": 5.37e-08, - "bifurcations": 5.37e-08, - "bilking": 5.37e-08, - "billfish": 5.37e-08, - "binti": 5.37e-08, - "bipasha": 5.37e-08, - "birdlike": 5.37e-08, - "bith": 5.37e-08, - "blabbermouth": 5.37e-08, - "blackall": 5.37e-08, - "blackhearts": 5.37e-08, - "blanchette": 5.37e-08, - "blb": 5.37e-08, - "bloggs": 5.37e-08, - "bloodgood": 5.37e-08, - "blowdown": 5.37e-08, - "blox": 5.37e-08, - "bluetongue": 5.37e-08, - "boisterously": 5.37e-08, - "boisvert": 5.37e-08, - "bokhari": 5.37e-08, - "bollen": 5.37e-08, - "bonapartes": 5.37e-08, - "bope": 5.37e-08, - "boral": 5.37e-08, - "boreanaz": 5.37e-08, - "bornu": 5.37e-08, - "borth": 5.37e-08, - "bosu": 5.37e-08, - "boum": 5.37e-08, - "bowdler": 5.37e-08, - "boysenberry": 5.37e-08, - "brahmanas": 5.37e-08, - "brainier": 5.37e-08, - "brashness": 5.37e-08, - "brenan": 5.37e-08, - "bribie": 5.37e-08, - "broeck": 5.37e-08, - "bronsons": 5.37e-08, - "bronzy": 5.37e-08, - "bruschi": 5.37e-08, - "btd": 5.37e-08, - "btts": 5.37e-08, - "bugfix": 5.37e-08, - "bullous": 5.37e-08, - "bullshitters": 5.37e-08, - "burble": 5.37e-08, - "burmah": 5.37e-08, - "burzynski": 5.37e-08, - "bushby": 5.37e-08, - "bwb": 5.37e-08, - "cabdriver": 5.37e-08, - "cacho": 5.37e-08, - "cahaba": 5.37e-08, - "cak": 5.37e-08, - "calenders": 5.37e-08, - "callinan": 5.37e-08, - "calver": 5.37e-08, - "camh": 5.37e-08, - "canham": 5.37e-08, - "canids": 5.37e-08, - "canin": 5.37e-08, - "cannings": 5.37e-08, - "canoeist": 5.37e-08, - "cantone": 5.37e-08, - "capet": 5.37e-08, - "caradoc": 5.37e-08, - "caravel": 5.37e-08, - "caravelle": 5.37e-08, - "carburettors": 5.37e-08, - "carcetti": 5.37e-08, - "caria": 5.37e-08, - "caridad": 5.37e-08, - "carnally": 5.37e-08, - "carnivalesque": 5.37e-08, - "carpools": 5.37e-08, - "carricks": 5.37e-08, - "cartmel": 5.37e-08, - "cascio": 5.37e-08, - "caslon": 5.37e-08, - "cassegrain": 5.37e-08, - "catgirl": 5.37e-08, - "catherina": 5.37e-08, - "cathey": 5.37e-08, - "catoosa": 5.37e-08, - "cbfc": 5.37e-08, - "cchs": 5.37e-08, - "ccrc": 5.37e-08, - "cctvs": 5.37e-08, - "ceca": 5.37e-08, - "celestino": 5.37e-08, - "centrosome": 5.37e-08, - "certa": 5.37e-08, - "cezar": 5.37e-08, - "chaloner": 5.37e-08, - "chapala": 5.37e-08, - "charette": 5.37e-08, - "charlamagne": 5.37e-08, - "cheesemaking": 5.37e-08, - "cheezy": 5.37e-08, - "chemiluminescence": 5.37e-08, - "chernoff": 5.37e-08, - "cherubini": 5.37e-08, - "chesson": 5.37e-08, - "chieftaincy": 5.37e-08, - "chiklis": 5.37e-08, - "childminder": 5.37e-08, - "choirboys": 5.37e-08, - "choppin": 5.37e-08, - "chuns": 5.37e-08, - "cifuentes": 5.37e-08, - "cinephiles": 5.37e-08, - "cinerama": 5.37e-08, - "clanger": 5.37e-08, - "clausius": 5.37e-08, - "clerke": 5.37e-08, - "clutters": 5.37e-08, - "cmte": 5.37e-08, - "cnooc": 5.37e-08, - "cnu": 5.37e-08, - "codecademy": 5.37e-08, - "cogeco": 5.37e-08, - "colerain": 5.37e-08, - "colleens": 5.37e-08, - "collines": 5.37e-08, - "colling": 5.37e-08, - "collocations": 5.37e-08, - "colourfully": 5.37e-08, - "columbas": 5.37e-08, - "comilla": 5.37e-08, - "compendious": 5.37e-08, - "completa": 5.37e-08, - "computability": 5.37e-08, - "comunidad": 5.37e-08, - "conal": 5.37e-08, - "condemnable": 5.37e-08, - "configurational": 5.37e-08, - "conodont": 5.37e-08, - "consi": 5.37e-08, - "consolidator": 5.37e-08, - "copacetic": 5.37e-08, - "copayments": 5.37e-08, - "coracle": 5.37e-08, - "corio": 5.37e-08, - "corridos": 5.37e-08, - "cosines": 5.37e-08, - "cosmologies": 5.37e-08, - "couillard": 5.37e-08, - "covenanted": 5.37e-08, - "cowpea": 5.37e-08, - "cozied": 5.37e-08, - "cpusa": 5.37e-08, - "creamers": 5.37e-08, - "credi": 5.37e-08, - "creedon": 5.37e-08, - "cregg": 5.37e-08, - "crinoid": 5.37e-08, - "crockford": 5.37e-08, - "crofter": 5.37e-08, - "cruachan": 5.37e-08, - "cryptolocker": 5.37e-08, - "cudis": 5.37e-08, - "culham": 5.37e-08, - "cundy": 5.37e-08, - "cuphead": 5.37e-08, - "curcio": 5.37e-08, - "curlews": 5.37e-08, - "custodes": 5.37e-08, - "cyanate": 5.37e-08, - "cyo": 5.37e-08, - "dabiq": 5.37e-08, - "dainik": 5.37e-08, - "dalli": 5.37e-08, - "damer": 5.37e-08, - "danilov": 5.37e-08, - "danker": 5.37e-08, - "dantzig": 5.37e-08, - "dapa": 5.37e-08, - "dargan": 5.37e-08, - "darky": 5.37e-08, - "darlan": 5.37e-08, - "daura": 5.37e-08, - "dayer": 5.37e-08, - "debuff": 5.37e-08, - "declensions": 5.37e-08, - "deepti": 5.37e-08, - "deflator": 5.37e-08, - "deliberates": 5.37e-08, - "demetria": 5.37e-08, - "denialists": 5.37e-08, - "deniliquin": 5.37e-08, - "deontology": 5.37e-08, - "dependably": 5.37e-08, - "depolarizing": 5.37e-08, - "deponent": 5.37e-08, - "destructoid": 5.37e-08, - "dettol": 5.37e-08, - "dewing": 5.37e-08, - "dexedrine": 5.37e-08, - "dialectically": 5.37e-08, - "dicke": 5.37e-08, - "diegetic": 5.37e-08, - "diffs": 5.37e-08, - "digvijay": 5.37e-08, - "dillane": 5.37e-08, - "dilutive": 5.37e-08, - "dinesen": 5.37e-08, - "dingleberry": 5.37e-08, - "dinoflagellate": 5.37e-08, - "disallowance": 5.37e-08, - "disempowerment": 5.37e-08, - "diyas": 5.37e-08, - "djr": 5.37e-08, - "dodoma": 5.37e-08, - "dogsled": 5.37e-08, - "dolgopolov": 5.37e-08, - "doli": 5.37e-08, - "dolphy": 5.37e-08, - "doodlebug": 5.37e-08, - "dounreay": 5.37e-08, - "dramatizations": 5.37e-08, - "drell": 5.37e-08, - "drf": 5.37e-08, - "driers": 5.37e-08, - "drk": 5.37e-08, - "droped": 5.37e-08, - "drummoyne": 5.37e-08, - "drw": 5.37e-08, - "dullards": 5.37e-08, - "dundrum": 5.37e-08, - "dunnes": 5.37e-08, - "dushku": 5.37e-08, - "duta": 5.37e-08, - "dutchie": 5.37e-08, - "dyslipidemia": 5.37e-08, - "dysthymia": 5.37e-08, - "echeverria": 5.37e-08, - "eckman": 5.37e-08, - "edhi": 5.37e-08, - "ehv": 5.37e-08, - "electrostatically": 5.37e-08, - "eleusinian": 5.37e-08, - "elex": 5.37e-08, - "elop": 5.37e-08, - "elv": 5.37e-08, - "emoto": 5.37e-08, - "emulsify": 5.37e-08, - "endemics": 5.37e-08, - "engorgement": 5.37e-08, - "enns": 5.37e-08, - "enticingly": 5.37e-08, - "epiphanes": 5.37e-08, - "epirb": 5.37e-08, - "ergs": 5.37e-08, - "escott": 5.37e-08, - "esker": 5.37e-08, - "espanto": 5.37e-08, - "estilo": 5.37e-08, - "ethnos": 5.37e-08, - "eulers": 5.37e-08, - "euthanizing": 5.37e-08, - "eversley": 5.37e-08, - "excipients": 5.37e-08, - "expensing": 5.37e-08, - "experimentations": 5.37e-08, - "experince": 5.37e-08, - "explants": 5.37e-08, - "explo": 5.37e-08, - "expropriating": 5.37e-08, - "extrapolates": 5.37e-08, - "extratropical": 5.37e-08, - "eyewash": 5.37e-08, - "ezzat": 5.37e-08, - "factset": 5.37e-08, - "falsifies": 5.37e-08, - "farhi": 5.37e-08, - "fasces": 5.37e-08, - "fastly": 5.37e-08, - "fcv": 5.37e-08, - "featherbed": 5.37e-08, - "feen": 5.37e-08, - "felicitas": 5.37e-08, - "femoris": 5.37e-08, - "fenelon": 5.37e-08, - "fenny": 5.37e-08, - "fertilising": 5.37e-08, - "feuerstein": 5.37e-08, - "feuille": 5.37e-08, - "fgr": 5.37e-08, - "fiamma": 5.37e-08, - "fiberoptic": 5.37e-08, - "ficci": 5.37e-08, - "ficken": 5.37e-08, - "fierstein": 5.37e-08, - "filppula": 5.37e-08, - "finepix": 5.37e-08, - "finito": 5.37e-08, - "firstfruits": 5.37e-08, - "fishtown": 5.37e-08, - "flameless": 5.37e-08, - "flammarion": 5.37e-08, - "flatout": 5.37e-08, - "fluker": 5.37e-08, - "flyback": 5.37e-08, - "fodors": 5.37e-08, - "footboard": 5.37e-08, - "footrace": 5.37e-08, - "footwell": 5.37e-08, - "forsooth": 5.37e-08, - "forswear": 5.37e-08, - "forsyths": 5.37e-08, - "foti": 5.37e-08, - "foxley": 5.37e-08, - "foxsports": 5.37e-08, - "fpso": 5.37e-08, - "framebuffer": 5.37e-08, - "fraxinus": 5.37e-08, - "frierson": 5.37e-08, - "fronde": 5.37e-08, - "fudgy": 5.37e-08, - "fujimura": 5.37e-08, - "fuku": 5.37e-08, - "fullarton": 5.37e-08, - "fullfill": 5.37e-08, - "funtastic": 5.37e-08, - "furrowing": 5.37e-08, - "fuser": 5.37e-08, - "fuster": 5.37e-08, - "fuwa": 5.37e-08, - "fuzzed": 5.37e-08, - "fuzzier": 5.37e-08, - "fyf": 5.37e-08, - "gads": 5.37e-08, - "gallina": 5.37e-08, - "galvanometer": 5.37e-08, - "gangsterism": 5.37e-08, - "gawping": 5.37e-08, - "gdd": 5.37e-08, - "gegenwart": 5.37e-08, - "generales": 5.37e-08, - "generalizability": 5.37e-08, - "gentles": 5.37e-08, - "genuity": 5.37e-08, - "genz": 5.37e-08, - "geodude": 5.37e-08, - "gertrudis": 5.37e-08, - "getem": 5.37e-08, - "gidi": 5.37e-08, - "ginna": 5.37e-08, - "givi": 5.37e-08, - "gladioli": 5.37e-08, - "glaeser": 5.37e-08, - "glargine": 5.37e-08, - "gloomier": 5.37e-08, - "gloopy": 5.37e-08, - "glt": 5.37e-08, - "gluckman": 5.37e-08, - "goldmark": 5.37e-08, - "gorget": 5.37e-08, - "gour": 5.37e-08, - "governo": 5.37e-08, - "gpb": 5.37e-08, - "gpcrs": 5.37e-08, - "grackles": 5.37e-08, - "gradings": 5.37e-08, - "graffitied": 5.37e-08, - "groupme": 5.37e-08, - "grumpiness": 5.37e-08, - "guaymas": 5.37e-08, - "gular": 5.37e-08, - "guntersville": 5.37e-08, - "gutt": 5.37e-08, - "haack": 5.37e-08, - "hadlee": 5.37e-08, - "hageman": 5.37e-08, - "hagg": 5.37e-08, - "halkett": 5.37e-08, - "hallahan": 5.37e-08, - "hamburglar": 5.37e-08, - "hammed": 5.37e-08, - "handpick": 5.37e-08, - "hangu": 5.37e-08, - "hanly": 5.37e-08, - "hanzal": 5.37e-08, - "haptics": 5.37e-08, - "hardshell": 5.37e-08, - "hatice": 5.37e-08, - "hawkey": 5.37e-08, - "haynesworth": 5.37e-08, - "hazlehurst": 5.37e-08, - "hdtvs": 5.37e-08, - "headhunted": 5.37e-08, - "hearkens": 5.37e-08, - "heimat": 5.37e-08, - "helion": 5.37e-08, - "hematopoiesis": 5.37e-08, - "hematoxylin": 5.37e-08, - "hemicellulose": 5.37e-08, - "hemostatic": 5.37e-08, - "henschel": 5.37e-08, - "heterosexism": 5.37e-08, - "heysel": 5.37e-08, - "heyy": 5.37e-08, - "hideko": 5.37e-08, - "hieu": 5.37e-08, - "highbridge": 5.37e-08, - "highwater": 5.37e-08, - "hih": 5.37e-08, - "hillhead": 5.37e-08, - "himeji": 5.37e-08, - "hink": 5.37e-08, - "hiranandani": 5.37e-08, - "hirschhorn": 5.37e-08, - "hkg": 5.37e-08, - "hoaxer": 5.37e-08, - "hobe": 5.37e-08, - "hocker": 5.37e-08, - "hodl": 5.37e-08, - "holmquist": 5.37e-08, - "holyshit": 5.37e-08, - "homeopath": 5.37e-08, - "homepages": 5.37e-08, - "hominis": 5.37e-08, - "hoopoe": 5.37e-08, - "hopedale": 5.37e-08, - "hornpipe": 5.37e-08, - "horr": 5.37e-08, - "hotta": 5.37e-08, - "howze": 5.37e-08, - "huckabees": 5.37e-08, - "huggin": 5.37e-08, - "huisman": 5.37e-08, - "humala": 5.37e-08, - "hundo": 5.37e-08, - "hunn": 5.37e-08, - "hurlburt": 5.37e-08, - "hydrologists": 5.37e-08, - "hypervelocity": 5.37e-08, - "ibrahimovics": 5.37e-08, - "icca": 5.37e-08, - "igy": 5.37e-08, - "iiit": 5.37e-08, - "illumined": 5.37e-08, - "ilyasova": 5.37e-08, - "imbruglia": 5.37e-08, - "immolate": 5.37e-08, - "immorally": 5.37e-08, - "impecunious": 5.37e-08, - "impoundments": 5.37e-08, - "inarguable": 5.37e-08, - "incandescence": 5.37e-08, - "incentivising": 5.37e-08, - "infinix": 5.37e-08, - "infocomm": 5.37e-08, - "ingratiated": 5.37e-08, - "inhalants": 5.37e-08, - "innsmouth": 5.37e-08, - "insted": 5.37e-08, - "internode": 5.37e-08, - "intraoral": 5.37e-08, - "inver": 5.37e-08, - "iocs": 5.37e-08, - "irrecoverable": 5.37e-08, - "isen": 5.37e-08, - "isma": 5.37e-08, - "ispr": 5.37e-08, - "italiani": 5.37e-08, - "itouch": 5.37e-08, - "iwould": 5.37e-08, - "izak": 5.37e-08, - "jaci": 5.37e-08, - "jacquelin": 5.37e-08, - "jakobsen": 5.37e-08, - "jamali": 5.37e-08, - "jameer": 5.37e-08, - "janez": 5.37e-08, - "janny": 5.37e-08, - "javafx": 5.37e-08, - "jdl": 5.37e-08, - "jec": 5.37e-08, - "jeezus": 5.37e-08, - "jelle": 5.37e-08, - "jellico": 5.37e-08, - "jerwood": 5.37e-08, - "jetlagged": 5.37e-08, - "jewitt": 5.37e-08, - "jiggers": 5.37e-08, - "jij": 5.37e-08, - "jika": 5.37e-08, - "jimena": 5.37e-08, - "jobin": 5.37e-08, - "jonesville": 5.37e-08, - "jonglei": 5.37e-08, - "jorma": 5.37e-08, - "jth": 5.37e-08, - "jubilantly": 5.37e-08, - "julii": 5.37e-08, - "juta": 5.37e-08, - "kaaya": 5.37e-08, - "kabi": 5.37e-08, - "kahoot": 5.37e-08, - "kaid": 5.37e-08, - "kaio": 5.37e-08, - "kalidasa": 5.37e-08, - "kalorama": 5.37e-08, - "kamba": 5.37e-08, - "kansa": 5.37e-08, - "kapila": 5.37e-08, - "karaite": 5.37e-08, - "kathir": 5.37e-08, - "katter": 5.37e-08, - "kayseri": 5.37e-08, - "kck": 5.37e-08, - "keay": 5.37e-08, - "kehinde": 5.37e-08, - "kellar": 5.37e-08, - "kendras": 5.37e-08, - "kenelm": 5.37e-08, - "kerrick": 5.37e-08, - "keytar": 5.37e-08, - "keziah": 5.37e-08, - "khameneis": 5.37e-08, - "kheer": 5.37e-08, - "kievs": 5.37e-08, - "kildas": 5.37e-08, - "kilis": 5.37e-08, - "kilted": 5.37e-08, - "kingsolver": 5.37e-08, - "kinne": 5.37e-08, - "kinzer": 5.37e-08, - "kirribilli": 5.37e-08, - "kishen": 5.37e-08, - "kizuna": 5.37e-08, - "klosterman": 5.37e-08, - "klute": 5.37e-08, - "knw": 5.37e-08, - "koetter": 5.37e-08, - "kombu": 5.37e-08, - "konys": 5.37e-08, - "kovner": 5.37e-08, - "kpcc": 5.37e-08, - "kramatorsk": 5.37e-08, - "krister": 5.37e-08, - "krutch": 5.37e-08, - "kuczynski": 5.37e-08, - "kulu": 5.37e-08, - "kurenai": 5.37e-08, - "kvp": 5.37e-08, - "ladislav": 5.37e-08, - "lafond": 5.37e-08, - "lahaye": 5.37e-08, - "lahoud": 5.37e-08, - "lamma": 5.37e-08, - "landside": 5.37e-08, - "langage": 5.37e-08, - "laphroaig": 5.37e-08, - "lasley": 5.37e-08, - "lasswell": 5.37e-08, - "laureen": 5.37e-08, - "lavina": 5.37e-08, - "laxalt": 5.37e-08, - "layabouts": 5.37e-08, - "laylee": 5.37e-08, - "lcu": 5.37e-08, - "learnable": 5.37e-08, - "leauge": 5.37e-08, - "lecher": 5.37e-08, - "leep": 5.37e-08, - "leight": 5.37e-08, - "leora": 5.37e-08, - "lepus": 5.37e-08, - "letrozole": 5.37e-08, - "lgbts": 5.37e-08, - "lgv": 5.37e-08, - "liaised": 5.37e-08, - "liberalise": 5.37e-08, - "liebknecht": 5.37e-08, - "ligh": 5.37e-08, - "liliths": 5.37e-08, - "lindi": 5.37e-08, - "lindqvist": 5.37e-08, - "lipe": 5.37e-08, - "lippie": 5.37e-08, - "lititz": 5.37e-08, - "lks": 5.37e-08, - "loctite": 5.37e-08, - "loganville": 5.37e-08, - "longships": 5.37e-08, - "longyearbyen": 5.37e-08, - "loredana": 5.37e-08, - "lousiana": 5.37e-08, - "lowey": 5.37e-08, - "lro": 5.37e-08, - "ltu": 5.37e-08, - "lubov": 5.37e-08, - "lulworth": 5.37e-08, - "lunette": 5.37e-08, - "lustration": 5.37e-08, - "lutetia": 5.37e-08, - "lutfi": 5.37e-08, - "lutsenko": 5.37e-08, - "luxton": 5.37e-08, - "lya": 5.37e-08, - "lycian": 5.37e-08, - "lyonne": 5.37e-08, - "lyotard": 5.37e-08, - "lysaght": 5.37e-08, - "lyth": 5.37e-08, - "machiko": 5.37e-08, - "mactan": 5.37e-08, - "madalyn": 5.37e-08, - "maff": 5.37e-08, - "magnanimously": 5.37e-08, - "magnier": 5.37e-08, - "magrath": 5.37e-08, - "maguey": 5.37e-08, - "mahlangu": 5.37e-08, - "maira": 5.37e-08, - "maiya": 5.37e-08, - "majewski": 5.37e-08, - "majorette": 5.37e-08, - "maknae": 5.37e-08, - "makris": 5.37e-08, - "maksym": 5.37e-08, - "mammalogy": 5.37e-08, - "manahan": 5.37e-08, - "mandera": 5.37e-08, - "mandragora": 5.37e-08, - "mantilla": 5.37e-08, - "manute": 5.37e-08, - "marcato": 5.37e-08, - "marchionne": 5.37e-08, - "mardon": 5.37e-08, - "maresca": 5.37e-08, - "marginata": 5.37e-08, - "marham": 5.37e-08, - "mariannes": 5.37e-08, - "marienbad": 5.37e-08, - "masseuses": 5.37e-08, - "mavor": 5.37e-08, - "maxpreps": 5.37e-08, - "mayve": 5.37e-08, - "mcbeth": 5.37e-08, - "mcclusky": 5.37e-08, - "mcewans": 5.37e-08, - "mcfc": 5.37e-08, - "mcgowen": 5.37e-08, - "mcparland": 5.37e-08, - "meadowhall": 5.37e-08, - "meam": 5.37e-08, - "megadrive": 5.37e-08, - "megaforce": 5.37e-08, - "megaprojects": 5.37e-08, - "meiklejohn": 5.37e-08, - "meitner": 5.37e-08, - "melanson": 5.37e-08, - "melena": 5.37e-08, - "melitta": 5.37e-08, - "mellons": 5.37e-08, - "meloni": 5.37e-08, - "mendler": 5.37e-08, - "mercaptan": 5.37e-08, - "meriweather": 5.37e-08, - "merri": 5.37e-08, - "metalloproteinase": 5.37e-08, - "metaverse": 5.37e-08, - "metaxas": 5.37e-08, - "meteo": 5.37e-08, - "metes": 5.37e-08, - "metoclopramide": 5.37e-08, - "mickael": 5.37e-08, - "mignonette": 5.37e-08, - "milage": 5.37e-08, - "millipore": 5.37e-08, - "minoring": 5.37e-08, - "minox": 5.37e-08, - "mirfield": 5.37e-08, - "misattributed": 5.37e-08, - "mischka": 5.37e-08, - "missys": 5.37e-08, - "mithun": 5.37e-08, - "mitro": 5.37e-08, - "miyabi": 5.37e-08, - "mkhi": 5.37e-08, - "mmw": 5.37e-08, - "molder": 5.37e-08, - "monat": 5.37e-08, - "monopolists": 5.37e-08, - "montecarlo": 5.37e-08, - "montella": 5.37e-08, - "montiel": 5.37e-08, - "mooloolaba": 5.37e-08, - "moret": 5.37e-08, - "morganite": 5.37e-08, - "morphometric": 5.37e-08, - "mortes": 5.37e-08, - "morus": 5.37e-08, - "moston": 5.37e-08, - "mucci": 5.37e-08, - "mundos": 5.37e-08, - "muswellbrook": 5.37e-08, - "myelinated": 5.37e-08, - "myeloproliferative": 5.37e-08, - "naaah": 5.37e-08, - "nabarro": 5.37e-08, - "nait": 5.37e-08, - "nakao": 5.37e-08, - "nakatomi": 5.37e-08, - "nake": 5.37e-08, - "namida": 5.37e-08, - "nandrolone": 5.37e-08, - "nanograms": 5.37e-08, - "narr": 5.37e-08, - "narrabeen": 5.37e-08, - "nasw": 5.37e-08, - "nathi": 5.37e-08, - "natividad": 5.37e-08, - "nattering": 5.37e-08, - "navvies": 5.37e-08, - "nayanthara": 5.37e-08, - "nces": 5.37e-08, - "neafl": 5.37e-08, - "nelms": 5.37e-08, - "nepos": 5.37e-08, - "netty": 5.37e-08, - "neurones": 5.37e-08, - "newswires": 5.37e-08, - "nhrc": 5.37e-08, - "nicasio": 5.37e-08, - "nightspot": 5.37e-08, - "nightspots": 5.37e-08, - "nihr": 5.37e-08, - "nimbys": 5.37e-08, - "nishiyama": 5.37e-08, - "nmf": 5.37e-08, - "nmw": 5.37e-08, - "nno": 5.37e-08, - "nois": 5.37e-08, - "noninterest": 5.37e-08, - "nontechnical": 5.37e-08, - "ntnu": 5.37e-08, - "nubuck": 5.37e-08, - "nucleases": 5.37e-08, - "nud": 5.37e-08, - "nulled": 5.37e-08, - "nullius": 5.37e-08, - "nuwara": 5.37e-08, - "nwfp": 5.37e-08, - "nyanga": 5.37e-08, - "nyrb": 5.37e-08, - "ogroats": 5.37e-08, - "oai": 5.37e-08, - "obb": 5.37e-08, - "obiter": 5.37e-08, - "oby": 5.37e-08, - "oculi": 5.37e-08, - "odaiba": 5.37e-08, - "oddsmakers": 5.37e-08, - "officinale": 5.37e-08, - "oht": 5.37e-08, - "okk": 5.37e-08, - "okoro": 5.37e-08, - "olding": 5.37e-08, - "oleaginous": 5.37e-08, - "oleson": 5.37e-08, - "oligomeric": 5.37e-08, - "olympe": 5.37e-08, - "olympiads": 5.37e-08, - "omigod": 5.37e-08, - "omiya": 5.37e-08, - "omkara": 5.37e-08, - "ondes": 5.37e-08, - "onishi": 5.37e-08, - "onslaughts": 5.37e-08, - "oopsy": 5.37e-08, - "opitz": 5.37e-08, - "oppenheimers": 5.37e-08, - "organoleptic": 5.37e-08, - "organon": 5.37e-08, - "orison": 5.37e-08, - "orlowski": 5.37e-08, - "orren": 5.37e-08, - "osos": 5.37e-08, - "ouellet": 5.37e-08, - "ound": 5.37e-08, - "oundle": 5.37e-08, - "outgrows": 5.37e-08, - "outlanders": 5.37e-08, - "overbeck": 5.37e-08, - "overby": 5.37e-08, - "overemphasize": 5.37e-08, - "ovulatory": 5.37e-08, - "owu": 5.37e-08, - "oxidizers": 5.37e-08, - "pablum": 5.37e-08, - "pachelbel": 5.37e-08, - "pandaria": 5.37e-08, - "panhandler": 5.37e-08, - "panne": 5.37e-08, - "panta": 5.37e-08, - "pantoja": 5.37e-08, - "papaw": 5.37e-08, - "paracas": 5.37e-08, - "parlophone": 5.37e-08, - "parmer": 5.37e-08, - "parviz": 5.37e-08, - "pasang": 5.37e-08, - "paschall": 5.37e-08, - "pasquier": 5.37e-08, - "patency": 5.37e-08, - "patr": 5.37e-08, - "patrollers": 5.37e-08, - "payscale": 5.37e-08, - "pazuzu": 5.37e-08, - "pectorals": 5.37e-08, - "pelagia": 5.37e-08, - "peluso": 5.37e-08, - "peole": 5.37e-08, - "peper": 5.37e-08, - "perio": 5.37e-08, - "personalty": 5.37e-08, - "perspicacity": 5.37e-08, - "pesca": 5.37e-08, - "petermann": 5.37e-08, - "petrine": 5.37e-08, - "pgf": 5.37e-08, - "phair": 5.37e-08, - "phm": 5.37e-08, - "physick": 5.37e-08, - "piastres": 5.37e-08, - "pickier": 5.37e-08, - "pide": 5.37e-08, - "pinboard": 5.37e-08, - "pinn": 5.37e-08, - "pinnately": 5.37e-08, - "pinole": 5.37e-08, - "pipping": 5.37e-08, - "pivotally": 5.37e-08, - "platypuses": 5.37e-08, - "plaut": 5.37e-08, - "pleader": 5.37e-08, - "plumeria": 5.37e-08, - "plunders": 5.37e-08, - "poeta": 5.37e-08, - "polignac": 5.37e-08, - "polin": 5.37e-08, - "politische": 5.37e-08, - "poltergeists": 5.37e-08, - "polymerisation": 5.37e-08, - "polyploidy": 5.37e-08, - "polytech": 5.37e-08, - "polyurethanes": 5.37e-08, - "pooka": 5.37e-08, - "poorna": 5.37e-08, - "poppi": 5.37e-08, - "porras": 5.37e-08, - "portmore": 5.37e-08, - "positivists": 5.37e-08, - "potala": 5.37e-08, - "poupon": 5.37e-08, - "practica": 5.37e-08, - "prandtl": 5.37e-08, - "precentor": 5.37e-08, - "predicable": 5.37e-08, - "preempts": 5.37e-08, - "pregabalin": 5.37e-08, - "prester": 5.37e-08, - "prety": 5.37e-08, - "primadonna": 5.37e-08, - "primeknit": 5.37e-08, - "princ": 5.37e-08, - "pritchards": 5.37e-08, - "probated": 5.37e-08, - "propagandizing": 5.37e-08, - "pshe": 5.37e-08, - "puchong": 5.37e-08, - "pudendal": 5.37e-08, - "puigdemont": 5.37e-08, - "pule": 5.37e-08, - "pullmans": 5.37e-08, - "pumpkinhead": 5.37e-08, - "purcellville": 5.37e-08, - "purefoods": 5.37e-08, - "pwease": 5.37e-08, - "pyridoxal": 5.37e-08, - "quadratus": 5.37e-08, - "quandt": 5.37e-08, - "quickstart": 5.37e-08, - "quietened": 5.37e-08, - "quique": 5.37e-08, - "rache": 5.37e-08, - "raffy": 5.37e-08, - "rafinesque": 5.37e-08, - "raghunath": 5.37e-08, - "rahel": 5.37e-08, - "rahl": 5.37e-08, - "rainha": 5.37e-08, - "ramiz": 5.37e-08, - "randazzo": 5.37e-08, - "randolf": 5.37e-08, - "ranjeet": 5.37e-08, - "ransdell": 5.37e-08, - "rarebit": 5.37e-08, - "rashidi": 5.37e-08, - "ravenously": 5.37e-08, - "rayong": 5.37e-08, - "reactively": 5.37e-08, - "reapplication": 5.37e-08, - "reca": 5.37e-08, - "recaptcha": 5.37e-08, - "reciter": 5.37e-08, - "recondite": 5.37e-08, - "recurrently": 5.37e-08, - "redfords": 5.37e-08, - "reefers": 5.37e-08, - "reforged": 5.37e-08, - "regrown": 5.37e-08, - "regus": 5.37e-08, - "reichmann": 5.37e-08, - "reigen": 5.37e-08, - "reinecke": 5.37e-08, - "reino": 5.37e-08, - "reka": 5.37e-08, - "remanding": 5.37e-08, - "remarque": 5.37e-08, - "remigio": 5.37e-08, - "remoter": 5.37e-08, - "removably": 5.37e-08, - "rendus": 5.37e-08, - "renegotiations": 5.37e-08, - "renovators": 5.37e-08, - "repopulating": 5.37e-08, - "requite": 5.37e-08, - "respons": 5.37e-08, - "responsa": 5.37e-08, - "reverbnation": 5.37e-08, - "revi": 5.37e-08, - "rewari": 5.37e-08, - "rexburg": 5.37e-08, - "rgn": 5.37e-08, - "rhema": 5.37e-08, - "rhodamine": 5.37e-08, - "riccarton": 5.37e-08, - "rickettsia": 5.37e-08, - "riewoldt": 5.37e-08, - "rinder": 5.37e-08, - "roatan": 5.37e-08, - "robertshaw": 5.37e-08, - "rodda": 5.37e-08, - "rodrigos": 5.37e-08, - "roleplayer": 5.37e-08, - "romanum": 5.37e-08, - "romita": 5.37e-08, - "rompuy": 5.37e-08, - "roser": 5.37e-08, - "roskill": 5.37e-08, - "rostropovich": 5.37e-08, - "rotarians": 5.37e-08, - "rothfuss": 5.37e-08, - "roun": 5.37e-08, - "roundels": 5.37e-08, - "routemaster": 5.37e-08, - "rowden": 5.37e-08, - "rowhouse": 5.37e-08, - "rth": 5.37e-08, - "rubbished": 5.37e-08, - "rucking": 5.37e-08, - "rugose": 5.37e-08, - "ruki": 5.37e-08, - "sabbagh": 5.37e-08, - "sabbah": 5.37e-08, - "sachar": 5.37e-08, - "sadak": 5.37e-08, - "sadia": 5.37e-08, - "safir": 5.37e-08, - "saft": 5.37e-08, - "sains": 5.37e-08, - "salahs": 5.37e-08, - "salehs": 5.37e-08, - "salmonds": 5.37e-08, - "saluki": 5.37e-08, - "samin": 5.37e-08, - "sanad": 5.37e-08, - "sandin": 5.37e-08, - "sangar": 5.37e-08, - "santurce": 5.37e-08, - "sard": 5.37e-08, - "sardo": 5.37e-08, - "sarg": 5.37e-08, - "sartor": 5.37e-08, - "satchmo": 5.37e-08, - "satur": 5.37e-08, - "savini": 5.37e-08, - "scavo": 5.37e-08, - "scheveningen": 5.37e-08, - "schober": 5.37e-08, - "schol": 5.37e-08, - "schone": 5.37e-08, - "schreber": 5.37e-08, - "schuck": 5.37e-08, - "schulich": 5.37e-08, - "scintigraphy": 5.37e-08, - "scitech": 5.37e-08, - "scrawling": 5.37e-08, - "scriptorium": 5.37e-08, - "scrollwork": 5.37e-08, - "sdks": 5.37e-08, - "sdrs": 5.37e-08, - "seaborg": 5.37e-08, - "seafield": 5.37e-08, - "seales": 5.37e-08, - "seatback": 5.37e-08, - "sebs": 5.37e-08, - "sebas": 5.37e-08, - "seborrheic": 5.37e-08, - "secchi": 5.37e-08, - "secco": 5.37e-08, - "seigniorage": 5.37e-08, - "seimei": 5.37e-08, - "seines": 5.37e-08, - "seismographs": 5.37e-08, - "sekhar": 5.37e-08, - "selam": 5.37e-08, - "semaine": 5.37e-08, - "sendo": 5.37e-08, - "sensationalize": 5.37e-08, - "seraphin": 5.37e-08, - "seres": 5.37e-08, - "servus": 5.37e-08, - "seshadri": 5.37e-08, - "sesi": 5.37e-08, - "sethe": 5.37e-08, - "sextons": 5.37e-08, - "shadowplay": 5.37e-08, - "shaeffer": 5.37e-08, - "shanahans": 5.37e-08, - "shawinigan": 5.37e-08, - "shenoy": 5.37e-08, - "sherrard": 5.37e-08, - "shiela": 5.37e-08, - "shillington": 5.37e-08, - "shirl": 5.37e-08, - "shitbird": 5.37e-08, - "shivery": 5.37e-08, - "shoebridge": 5.37e-08, - "shorebird": 5.37e-08, - "shotgunning": 5.37e-08, - "shoyu": 5.37e-08, - "shumlin": 5.37e-08, - "sieger": 5.37e-08, - "silbert": 5.37e-08, - "silchar": 5.37e-08, - "silts": 5.37e-08, - "simulink": 5.37e-08, - "singapura": 5.37e-08, - "singlish": 5.37e-08, - "siris": 3.98e-08, - "sissons": 5.37e-08, - "sisto": 5.37e-08, - "sivananda": 5.37e-08, - "sivas": 5.37e-08, - "sixto": 5.37e-08, - "sja": 5.37e-08, - "skedaddle": 5.37e-08, - "skeezy": 5.37e-08, - "sketchpad": 5.37e-08, - "skinwalker": 5.37e-08, - "skipp": 5.37e-08, - "slighting": 5.37e-08, - "slingerland": 5.37e-08, - "smallholdings": 5.37e-08, - "smitha": 5.37e-08, - "smoothbore": 5.37e-08, - "smoulder": 5.37e-08, - "snax": 5.37e-08, - "snellville": 5.37e-08, - "snowcapped": 5.37e-08, - "snowfields": 5.37e-08, - "soarin": 5.37e-08, - "socioeconomics": 5.37e-08, - "socotra": 5.37e-08, - "soest": 5.37e-08, - "sokolowski": 5.37e-08, - "somchai": 5.37e-08, - "sorkins": 5.37e-08, - "sorna": 5.37e-08, - "souse": 5.37e-08, - "soused": 5.37e-08, - "sousse": 5.37e-08, - "southerns": 5.37e-08, - "soyeon": 5.37e-08, - "spaghettios": 5.37e-08, - "spea": 5.37e-08, - "spectaculars": 5.37e-08, - "spectrogram": 5.37e-08, - "speedskating": 5.37e-08, - "speidel": 5.37e-08, - "spellcasting": 5.37e-08, - "spiess": 5.37e-08, - "spiner": 5.37e-08, - "spinifex": 5.37e-08, - "spj": 5.37e-08, - "spoilsport": 5.37e-08, - "spoked": 5.37e-08, - "sportbike": 5.37e-08, - "sprewell": 5.37e-08, - "sprigg": 5.37e-08, - "staffroom": 5.37e-08, - "stanozolol": 5.37e-08, - "stanway": 5.37e-08, - "statens": 5.37e-08, - "statment": 5.37e-08, - "steeves": 5.37e-08, - "stepbrothers": 5.37e-08, - "stephani": 5.37e-08, - "stob": 5.37e-08, - "stockades": 5.37e-08, - "stre": 5.37e-08, - "stromae": 5.37e-08, - "stronge": 5.37e-08, - "strout": 5.37e-08, - "suara": 5.37e-08, - "subantarctic": 5.37e-08, - "submerges": 5.37e-08, - "submissives": 5.37e-08, - "subsec": 5.37e-08, - "subtended": 5.37e-08, - "sudeep": 5.37e-08, - "sukhothai": 5.37e-08, - "sulfites": 5.37e-08, - "sumbawa": 5.37e-08, - "summerset": 5.37e-08, - "sunbathers": 5.37e-08, - "suncream": 5.37e-08, - "supercluster": 5.37e-08, - "superintendency": 5.37e-08, - "sussexs": 5.37e-08, - "suthep": 5.37e-08, - "suttas": 5.37e-08, - "swafford": 5.37e-08, - "swanning": 5.37e-08, - "sweary": 5.37e-08, - "swihart": 5.37e-08, - "swishes": 5.37e-08, - "syariah": 5.37e-08, - "sybian": 5.37e-08, - "tabari": 5.37e-08, - "tahun": 5.37e-08, - "tallboy": 5.37e-08, - "tarbuck": 5.37e-08, - "tasca": 5.37e-08, - "taslima": 5.37e-08, - "tcpa": 5.37e-08, - "teche": 5.37e-08, - "techo": 5.37e-08, - "teer": 5.37e-08, - "telenet": 5.37e-08, - "tengen": 5.37e-08, - "tenny": 5.37e-08, - "terceira": 5.37e-08, - "tereshkova": 5.37e-08, - "teutons": 5.37e-08, - "theese": 5.37e-08, - "thewlis": 5.37e-08, - "thibaud": 5.37e-08, - "thinkgeek": 5.37e-08, - "thiocyanate": 5.37e-08, - "thula": 5.37e-08, - "thutmose": 5.37e-08, - "thynne": 5.37e-08, - "tift": 5.37e-08, - "tilsit": 5.37e-08, - "tiredly": 5.37e-08, - "tisci": 5.37e-08, - "tishman": 5.37e-08, - "tkd": 5.37e-08, - "tlatelolco": 5.37e-08, - "todhunter": 5.37e-08, - "tokaido": 5.37e-08, - "tommi": 5.37e-08, - "tomori": 5.37e-08, - "toop": 5.37e-08, - "topsails": 5.37e-08, - "torito": 5.37e-08, - "tornadic": 5.37e-08, - "torpid": 5.37e-08, - "torrijos": 5.37e-08, - "torro": 5.37e-08, - "torvill": 5.37e-08, - "toryism": 5.37e-08, - "tosun": 5.37e-08, - "totos": 5.37e-08, - "toyah": 5.37e-08, - "tragi": 5.37e-08, - "transurethral": 5.37e-08, - "trashcans": 5.37e-08, - "treece": 5.37e-08, - "trendier": 5.37e-08, - "tricot": 5.37e-08, - "trnas": 5.37e-08, - "trol": 5.37e-08, - "trollop": 5.37e-08, - "trustable": 5.37e-08, - "tujunga": 5.37e-08, - "tulsas": 5.37e-08, - "tuma": 5.37e-08, - "tuticorin": 5.37e-08, - "tversky": 5.37e-08, - "twatter": 5.37e-08, - "twined": 5.37e-08, - "twitchs": 5.37e-08, - "tyrosinase": 5.37e-08, - "ubiquitination": 5.37e-08, - "ukm": 5.37e-08, - "unassembled": 5.37e-08, - "underboob": 5.37e-08, - "undulation": 5.37e-08, - "unfussy": 5.37e-08, - "unia": 5.37e-08, - "universitet": 5.37e-08, - "unmaintained": 5.37e-08, - "unplaced": 5.37e-08, - "unpredicted": 5.37e-08, - "unrecovered": 5.37e-08, - "upolu": 5.37e-08, - "urbandale": 5.37e-08, - "urbanizing": 5.37e-08, - "urizen": 5.37e-08, - "usyk": 5.37e-08, - "uteri": 5.37e-08, - "uteruses": 5.37e-08, - "vaart": 5.37e-08, - "valda": 5.37e-08, - "valeur": 5.37e-08, - "varadero": 5.37e-08, - "varrick": 5.37e-08, - "vascularized": 5.37e-08, - "vashi": 5.37e-08, - "vbscript": 5.37e-08, - "verbo": 5.37e-08, - "videl": 5.37e-08, - "vincentian": 5.37e-08, - "vinge": 5.37e-08, - "virals": 5.37e-08, - "virtuosi": 5.37e-08, - "vitelli": 5.37e-08, - "vitry": 5.37e-08, - "vittles": 5.37e-08, - "vituperative": 5.37e-08, - "vods": 5.37e-08, - "volmer": 5.37e-08, - "vota": 5.37e-08, - "vouchsafe": 5.37e-08, - "voulez": 5.37e-08, - "vsevolod": 5.37e-08, - "wagen": 5.37e-08, - "wahaha": 5.37e-08, - "wailea": 5.37e-08, - "wakelin": 5.37e-08, - "wapos": 5.37e-08, - "warbles": 5.37e-08, - "wardwell": 5.37e-08, - "warfighters": 5.37e-08, - "waterbirds": 5.37e-08, - "waveney": 5.37e-08, - "wazzup": 5.37e-08, - "weans": 5.37e-08, - "webzine": 5.37e-08, - "weka": 5.37e-08, - "welkom": 5.37e-08, - "wernick": 5.37e-08, - "wery": 5.37e-08, - "whataboutism": 5.37e-08, - "whitehorn": 5.37e-08, - "whitelisted": 5.37e-08, - "whitfields": 5.37e-08, - "whovian": 5.37e-08, - "whynot": 5.37e-08, - "wigeon": 5.37e-08, - "wili": 5.37e-08, - "willebrand": 5.37e-08, - "willison": 5.37e-08, - "windhorst": 5.37e-08, - "wishlists": 5.37e-08, - "wmp": 5.37e-08, - "wolin": 5.37e-08, - "womyn": 5.37e-08, - "wookey": 5.37e-08, - "wooler": 5.37e-08, - "worx": 5.37e-08, - "wtcc": 5.37e-08, - "wunderbar": 5.37e-08, - "wunna": 5.37e-08, - "wyche": 5.37e-08, - "xaver": 5.37e-08, - "xperience": 5.37e-08, - "yacob": 5.37e-08, - "yaka": 5.37e-08, - "yakutat": 5.37e-08, - "yaobang": 5.37e-08, - "yarm": 5.37e-08, - "yaser": 5.37e-08, - "yazdi": 5.37e-08, - "yere": 2.88e-08, - "yii": 5.37e-08, - "yingluck": 5.37e-08, - "yoghurts": 5.37e-08, - "yongkang": 5.37e-08, - "yoshie": 5.37e-08, - "yot": 5.37e-08, - "yukis": 5.37e-08, - "yusufs": 5.37e-08, - "yvonnes": 5.37e-08, - "yyy": 5.37e-08, - "zacharia": 5.37e-08, - "zah": 5.37e-08, - "zaleski": 5.37e-08, - "zeldin": 5.37e-08, - "zerohedge": 5.37e-08, - "zfc": 5.37e-08, - "zij": 5.37e-08, - "zords": 5.37e-08, - "zwart": 5.37e-08, - "aaup": 5.25e-08, - "abela": 5.25e-08, - "abta": 5.25e-08, - "academi": 5.25e-08, - "acquis": 5.25e-08, - "actully": 5.25e-08, - "adare": 5.25e-08, - "addthis": 5.25e-08, - "adeeb": 5.25e-08, - "adeno": 5.25e-08, - "adenylate": 5.25e-08, - "adz": 5.25e-08, - "aeronaut": 5.25e-08, - "aflw": 5.25e-08, - "africom": 5.25e-08, - "agdal": 5.25e-08, - "aggrandisement": 5.25e-08, - "ahaa": 5.25e-08, - "ahas": 5.25e-08, - "ahmanson": 5.25e-08, - "aigs": 5.25e-08, - "aigle": 5.25e-08, - "airbourne": 5.25e-08, - "airconditioned": 5.25e-08, - "aisc": 5.25e-08, - "akr": 5.25e-08, - "alak": 5.25e-08, - "albinus": 5.25e-08, - "aldens": 5.25e-08, - "aldergrove": 5.25e-08, - "alee": 5.25e-08, - "alexandrina": 5.25e-08, - "aliment": 5.25e-08, - "alimentation": 5.25e-08, - "alinea": 5.25e-08, - "allday": 5.25e-08, - "allier": 5.25e-08, - "allsorts": 5.25e-08, - "alpines": 5.25e-08, - "alvan": 5.25e-08, - "amalgams": 5.25e-08, - "amanat": 5.25e-08, - "amca": 5.25e-08, - "amidon": 5.25e-08, - "ammeter": 5.25e-08, - "amphipod": 5.25e-08, - "analy": 5.25e-08, - "ananas": 5.25e-08, - "ancon": 5.25e-08, - "andouille": 5.25e-08, - "andromedas": 5.25e-08, - "anesthetists": 5.25e-08, - "annamalai": 5.25e-08, - "annd": 5.25e-08, - "anoop": 5.25e-08, - "anthropologically": 5.25e-08, - "antiaging": 5.25e-08, - "antifungals": 5.25e-08, - "antoines": 5.25e-08, - "anyang": 5.25e-08, - "aob": 5.25e-08, - "aonuma": 5.25e-08, - "apax": 5.25e-08, - "apeldoorn": 5.25e-08, - "aponte": 5.25e-08, - "appe": 5.25e-08, - "araba": 5.25e-08, - "arah": 5.25e-08, - "ardell": 5.25e-08, - "arenaria": 5.25e-08, - "arguello": 5.25e-08, - "armata": 5.25e-08, - "armourer": 5.25e-08, - "arnoldo": 5.25e-08, - "artikel": 5.25e-08, - "ashrams": 5.25e-08, - "asil": 5.25e-08, - "astrocytoma": 5.25e-08, - "aune": 5.25e-08, - "aurally": 5.25e-08, - "auron": 5.25e-08, - "austra": 5.25e-08, - "autistics": 5.25e-08, - "autoregressive": 5.25e-08, - "avakian": 5.25e-08, - "avenel": 5.25e-08, - "aversa": 5.25e-08, - "aviciis": 5.25e-08, - "awo": 5.25e-08, - "axels": 5.25e-08, - "backstabbers": 5.25e-08, - "baco": 5.25e-08, - "baddy": 5.25e-08, - "bagpiper": 5.25e-08, - "balletic": 5.25e-08, - "ballgown": 5.25e-08, - "bansi": 5.25e-08, - "baqir": 5.25e-08, - "barehanded": 5.25e-08, - "barranca": 5.25e-08, - "barths": 5.25e-08, - "basford": 5.25e-08, - "bashkir": 5.25e-08, - "bassman": 5.25e-08, - "bazzi": 5.25e-08, - "bbws": 5.25e-08, - "bcaas": 5.25e-08, - "beber": 5.25e-08, - "becka": 5.25e-08, - "beckton": 5.25e-08, - "bedlington": 5.25e-08, - "beedle": 5.25e-08, - "beevor": 5.25e-08, - "belike": 5.25e-08, - "benaras": 5.25e-08, - "bergonzi": 5.25e-08, - "berzelius": 5.25e-08, - "besoin": 5.25e-08, - "bethesdas": 5.25e-08, - "bfn": 5.25e-08, - "bhartiya": 5.25e-08, - "bhavana": 5.25e-08, - "bibbs": 5.25e-08, - "bics": 5.25e-08, - "bifurcate": 5.25e-08, - "bigham": 5.25e-08, - "biopsychosocial": 5.25e-08, - "bircher": 5.25e-08, - "birtles": 5.25e-08, - "bisaya": 5.25e-08, - "bisou": 5.25e-08, - "bisulfite": 5.25e-08, - "bivouacked": 5.25e-08, - "blakiston": 5.25e-08, - "blameworthy": 5.25e-08, - "blanchot": 5.25e-08, - "bliley": 5.25e-08, - "blixen": 5.25e-08, - "bluecoats": 5.25e-08, - "boak": 5.25e-08, - "bocconi": 5.25e-08, - "bodom": 5.25e-08, - "bogosian": 5.25e-08, - "bohra": 5.25e-08, - "bontemps": 5.25e-08, - "bookbinders": 5.25e-08, - "bookplates": 5.25e-08, - "bosnias": 5.25e-08, - "bounder": 5.25e-08, - "bourdin": 5.25e-08, - "bouwmeester": 5.25e-08, - "bowhunting": 5.25e-08, - "bowlen": 5.25e-08, - "bowlin": 5.25e-08, - "bradburn": 5.25e-08, - "brans": 5.25e-08, - "bresse": 5.25e-08, - "brightwood": 5.25e-08, - "brinsley": 5.25e-08, - "briseis": 5.25e-08, - "brockmann": 5.25e-08, - "brode": 5.25e-08, - "brohm": 5.25e-08, - "bronk": 5.25e-08, - "broyhill": 5.25e-08, - "brushfire": 5.25e-08, - "bryansk": 5.25e-08, - "buckboard": 5.25e-08, - "bugfixes": 5.25e-08, - "bullae": 5.25e-08, - "bunkered": 5.25e-08, - "burkle": 5.25e-08, - "burs": 5.25e-08, - "burston": 5.25e-08, - "buttstock": 5.25e-08, - "byronic": 5.25e-08, - "cabreras": 5.25e-08, - "caffery": 5.25e-08, - "callouses": 5.25e-08, - "campe": 5.25e-08, - "campton": 5.25e-08, - "capades": 5.25e-08, - "capobianco": 5.25e-08, - "capotes": 5.25e-08, - "capras": 5.25e-08, - "capulets": 5.25e-08, - "caq": 5.25e-08, - "cardcaptor": 5.25e-08, - "cardiogenic": 5.25e-08, - "carducci": 5.25e-08, - "carnality": 5.25e-08, - "carnifex": 5.25e-08, - "carryon": 5.25e-08, - "cartage": 5.25e-08, - "cartas": 5.25e-08, - "cartland": 5.25e-08, - "cartouches": 5.25e-08, - "castamere": 5.25e-08, - "catagory": 5.25e-08, - "catechin": 5.25e-08, - "cavort": 5.25e-08, - "cbz": 5.25e-08, - "ccsd": 5.25e-08, - "cdj": 5.25e-08, - "cdv": 5.25e-08, - "cedis": 5.25e-08, - "cefn": 5.25e-08, - "ceva": 5.25e-08, - "chakma": 5.25e-08, - "chamillionaire": 5.25e-08, - "champneys": 5.25e-08, - "changemakers": 5.25e-08, - "chardy": 5.25e-08, - "chasten": 5.25e-08, - "cheeta": 5.25e-08, - "chemtrail": 5.25e-08, - "cheras": 5.25e-08, - "chetwynd": 5.25e-08, - "chicoutimi": 5.25e-08, - "choli": 5.25e-08, - "cholos": 5.25e-08, - "chorales": 5.25e-08, - "christakis": 5.25e-08, - "ciaras": 5.25e-08, - "cinquecento": 5.25e-08, - "circumstellar": 5.25e-08, - "cisc": 5.25e-08, - "cissie": 5.25e-08, - "cissokho": 5.25e-08, - "civilis": 5.25e-08, - "cky": 5.25e-08, - "clague": 5.25e-08, - "classifiable": 5.25e-08, - "claybourne": 5.25e-08, - "cloyd": 5.25e-08, - "cmake": 5.25e-08, - "coalmining": 5.25e-08, - "cocco": 5.25e-08, - "cockatrice": 5.25e-08, - "collectivized": 5.25e-08, - "colloque": 5.25e-08, - "colten": 5.25e-08, - "compartmented": 5.25e-08, - "competion": 5.25e-08, - "conair": 5.25e-08, - "congresswomen": 5.25e-08, - "conjuncture": 5.25e-08, - "conservancys": 5.25e-08, - "conspiratorially": 5.25e-08, - "contax": 5.25e-08, - "contempo": 5.25e-08, - "convolvulus": 5.25e-08, - "coomer": 5.25e-08, - "copayment": 5.25e-08, - "corbitt": 5.25e-08, - "cordelias": 5.25e-08, - "corine": 5.25e-08, - "corinnes": 5.25e-08, - "corsages": 5.25e-08, - "costi": 5.25e-08, - "cowpox": 5.25e-08, - "cowries": 5.25e-08, - "coxsackie": 5.25e-08, - "cpy": 5.25e-08, - "craftmanship": 5.25e-08, - "crescenta": 5.25e-08, - "creve": 5.25e-08, - "critias": 5.25e-08, - "cruiserweights": 5.25e-08, - "crumpton": 5.25e-08, - "crystalized": 5.25e-08, - "csaba": 5.25e-08, - "cspi": 5.25e-08, - "cubo": 5.25e-08, - "cummerbund": 5.25e-08, - "cuppy": 5.25e-08, - "curso": 5.25e-08, - "cvl": 5.25e-08, - "cybill": 5.25e-08, - "cygni": 5.25e-08, - "cymbidium": 5.25e-08, - "cytological": 5.25e-08, - "dabangg": 5.25e-08, - "dahlan": 5.25e-08, - "damini": 5.25e-08, - "dapps": 5.25e-08, - "darkhorse": 5.25e-08, - "dava": 5.25e-08, - "dawit": 5.25e-08, - "dayspring": 5.25e-08, - "deadmans": 5.25e-08, - "deafblind": 5.25e-08, - "dease": 5.25e-08, - "decapitates": 5.25e-08, - "dedekind": 5.25e-08, - "defintely": 5.25e-08, - "defuses": 5.25e-08, - "degale": 5.25e-08, - "dehra": 5.25e-08, - "dehumidifiers": 5.25e-08, - "dejavu": 5.25e-08, - "delanie": 5.25e-08, - "delfin": 5.25e-08, - "deliverability": 5.25e-08, - "deltona": 5.25e-08, - "demarchelier": 5.25e-08, - "demario": 5.25e-08, - "demoiselle": 5.25e-08, - "demonically": 5.25e-08, - "denner": 5.25e-08, - "dependance": 5.25e-08, - "depolarized": 5.25e-08, - "depopulate": 5.25e-08, - "desales": 5.25e-08, - "desrosiers": 5.25e-08, - "destine": 5.25e-08, - "detangling": 5.25e-08, - "deuk": 5.25e-08, - "developped": 5.25e-08, - "devis": 5.25e-08, - "deyo": 5.25e-08, - "dfat": 5.25e-08, - "dhara": 5.25e-08, - "diacylglycerol": 5.25e-08, - "diapered": 5.25e-08, - "dicarlo": 5.25e-08, - "dichloromethane": 5.25e-08, - "didactics": 5.25e-08, - "diffractive": 5.25e-08, - "digressing": 5.25e-08, - "dimona": 5.25e-08, - "dirndl": 5.25e-08, - "discoidal": 5.25e-08, - "disfranchised": 5.25e-08, - "dissapeared": 5.25e-08, - "distractedly": 5.25e-08, - "dite": 5.25e-08, - "dkp": 5.25e-08, - "dnssec": 5.25e-08, - "dobyns": 5.25e-08, - "documentarys": 5.25e-08, - "dodecanese": 5.25e-08, - "dodig": 5.25e-08, - "donnington": 5.25e-08, - "doohickey": 5.25e-08, - "doorjamb": 5.25e-08, - "doull": 5.25e-08, - "douses": 5.25e-08, - "dovetailing": 5.25e-08, - "downland": 5.25e-08, - "downregulated": 5.25e-08, - "draken": 5.25e-08, - "drano": 5.25e-08, - "drawdowns": 5.25e-08, - "dressel": 5.25e-08, - "dril": 5.25e-08, - "driv": 5.25e-08, - "drugmakers": 5.25e-08, - "drumbeats": 5.25e-08, - "dubliner": 5.25e-08, - "duchamps": 5.25e-08, - "ductless": 5.25e-08, - "dulac": 5.25e-08, - "duno": 5.25e-08, - "durell": 5.25e-08, - "dussehra": 5.25e-08, - "dutra": 5.25e-08, - "dyle": 5.25e-08, - "earles": 5.25e-08, - "edelmann": 5.25e-08, - "edgard": 5.25e-08, - "educationalist": 5.25e-08, - "educationists": 5.25e-08, - "eeeh": 5.25e-08, - "eggsy": 5.25e-08, - "egli": 5.25e-08, - "ehc": 5.25e-08, - "eim": 5.25e-08, - "ejido": 5.25e-08, - "ekholm": 5.25e-08, - "elah": 5.25e-08, - "elamite": 5.25e-08, - "eleonore": 5.25e-08, - "embl": 5.25e-08, - "embree": 5.25e-08, - "embroil": 5.25e-08, - "emmis": 5.25e-08, - "encasement": 5.25e-08, - "encases": 5.25e-08, - "enjoins": 5.25e-08, - "enp": 5.25e-08, - "enthalpies": 5.25e-08, - "entrez": 5.25e-08, - "enumerable": 5.25e-08, - "epica": 5.25e-08, - "epona": 5.25e-08, - "equivocate": 5.25e-08, - "erdos": 5.25e-08, - "erectors": 5.25e-08, - "erosions": 5.25e-08, - "esmerelda": 5.25e-08, - "esotericism": 5.25e-08, - "etd": 5.25e-08, - "etive": 5.25e-08, - "etm": 5.25e-08, - "etsuko": 5.25e-08, - "eugenicist": 5.25e-08, - "eugenol": 5.25e-08, - "euless": 5.25e-08, - "euw": 5.25e-08, - "evangelized": 5.25e-08, - "everette": 5.25e-08, - "evolutionism": 5.25e-08, - "experimentalism": 5.25e-08, - "expressen": 5.25e-08, - "eya": 5.25e-08, - "eyesores": 5.25e-08, - "eyo": 5.25e-08, - "fabula": 5.25e-08, - "facultad": 5.25e-08, - "fairless": 5.25e-08, - "fanu": 5.25e-08, - "farleigh": 5.25e-08, - "fatiha": 5.25e-08, - "federale": 5.25e-08, - "felicitate": 5.25e-08, - "festoons": 5.25e-08, - "fidelia": 5.25e-08, - "fidgeted": 5.25e-08, - "figma": 5.25e-08, - "filatov": 5.25e-08, - "filner": 5.25e-08, - "finegan": 5.25e-08, - "firebaugh": 5.25e-08, - "firebrick": 5.25e-08, - "firewatch": 5.25e-08, - "flipbook": 5.25e-08, - "flossed": 5.25e-08, - "flounces": 5.25e-08, - "flowage": 5.25e-08, - "flowmeter": 5.25e-08, - "fnac": 5.25e-08, - "foldout": 5.25e-08, - "foodstamps": 5.25e-08, - "forded": 5.25e-08, - "forearmed": 5.25e-08, - "foxman": 5.25e-08, - "foxworth": 5.25e-08, - "foyt": 5.25e-08, - "frappuccinos": 5.25e-08, - "freeney": 5.25e-08, - "freeroll": 5.25e-08, - "freestyler": 5.25e-08, - "fremantlemedia": 5.25e-08, - "freyr": 5.25e-08, - "frigga": 5.25e-08, - "frivolities": 5.25e-08, - "frizzell": 5.25e-08, - "frizzled": 5.25e-08, - "frogging": 5.25e-08, - "froissart": 5.25e-08, - "frontalis": 5.25e-08, - "frontieres": 5.25e-08, - "frump": 5.25e-08, - "fuckheads": 5.25e-08, - "fuckload": 5.25e-08, - "funaki": 5.25e-08, - "funnelling": 5.25e-08, - "fwp": 5.25e-08, - "gada": 5.25e-08, - "galeotti": 5.25e-08, - "gallerie": 5.25e-08, - "garths": 5.25e-08, - "gastly": 5.25e-08, - "gastons": 5.25e-08, - "gastropoda": 5.25e-08, - "geminate": 5.25e-08, - "geocache": 5.25e-08, - "germiston": 5.25e-08, - "gern": 5.25e-08, - "gesner": 5.25e-08, - "gettys": 5.25e-08, - "ggo": 5.25e-08, - "giancana": 5.25e-08, - "giap": 5.25e-08, - "giardini": 5.25e-08, - "ginned": 5.25e-08, - "giunta": 5.25e-08, - "giusti": 5.25e-08, - "glaciations": 5.25e-08, - "gleaners": 5.25e-08, - "gleanings": 5.25e-08, - "gleick": 5.25e-08, - "glendalough": 5.25e-08, - "glenmont": 5.25e-08, - "glinka": 5.25e-08, - "glueing": 5.25e-08, - "glutamatergic": 5.25e-08, - "godammit": 5.25e-08, - "goldings": 5.25e-08, - "goneril": 5.25e-08, - "gonewild": 5.25e-08, - "gonzagas": 5.25e-08, - "goodbody": 5.25e-08, - "goodest": 5.25e-08, - "gooner": 5.25e-08, - "gooners": 5.25e-08, - "gopala": 5.25e-08, - "gopers": 5.25e-08, - "gottes": 5.25e-08, - "gourmands": 5.25e-08, - "gracile": 5.25e-08, - "grackle": 5.25e-08, - "gradle": 5.25e-08, - "grae": 5.25e-08, - "grannis": 5.25e-08, - "greenhills": 5.25e-08, - "grg": 5.25e-08, - "grinberg": 5.25e-08, - "grindle": 5.25e-08, - "grody": 5.25e-08, - "groome": 5.25e-08, - "grothe": 5.25e-08, - "groundskeepers": 5.25e-08, - "gruffly": 5.25e-08, - "gtt": 5.25e-08, - "gulbenkian": 5.25e-08, - "gussy": 5.25e-08, - "hahahahahah": 5.25e-08, - "hailstone": 5.25e-08, - "hainaut": 5.25e-08, - "hairiest": 5.25e-08, - "halawa": 5.25e-08, - "hamblen": 5.25e-08, - "hamidi": 5.25e-08, - "hanwha": 5.25e-08, - "haraway": 5.25e-08, - "hardass": 5.25e-08, - "hardtalk": 5.25e-08, - "haredim": 5.25e-08, - "harkening": 5.25e-08, - "hartig": 5.25e-08, - "hasidism": 5.25e-08, - "haversack": 5.25e-08, - "hawtrey": 5.25e-08, - "hayseed": 5.25e-08, - "hazuki": 5.25e-08, - "hcps": 5.25e-08, - "healesville": 5.25e-08, - "healthfully": 5.25e-08, - "heartlessly": 5.25e-08, - "heartlessness": 5.25e-08, - "heatproof": 5.25e-08, - "heckel": 5.25e-08, - "heehee": 5.25e-08, - "hefners": 5.25e-08, - "heftier": 5.25e-08, - "hellspawn": 5.25e-08, - "helots": 5.25e-08, - "helu": 5.25e-08, - "henleys": 5.25e-08, - "herk": 5.25e-08, - "herry": 5.25e-08, - "hewitson": 5.25e-08, - "heyne": 5.25e-08, - "hhd": 5.25e-08, - "hidaka": 5.25e-08, - "hightech": 5.25e-08, - "hilaria": 5.25e-08, - "historische": 5.25e-08, - "hmf": 5.25e-08, - "hohn": 5.25e-08, - "holkham": 5.25e-08, - "homeomorphic": 5.25e-08, - "homesteaded": 5.25e-08, - "hongdae": 5.25e-08, - "horsfield": 5.25e-08, - "horticulturalist": 5.25e-08, - "hosers": 5.25e-08, - "hospitaller": 5.25e-08, - "hotwheels": 5.25e-08, - "hryvnia": 5.25e-08, - "htpc": 5.25e-08, - "htr": 5.25e-08, - "huggett": 5.25e-08, - "hurriyat": 5.25e-08, - "hyam": 5.25e-08, - "hydroxyzine": 5.25e-08, - "hym": 5.25e-08, - "hyperextension": 5.25e-08, - "hys": 5.25e-08, - "icai": 5.25e-08, - "icv": 5.25e-08, - "ifeanyi": 5.25e-08, - "ifpi": 5.25e-08, - "ihub": 5.25e-08, - "iio": 5.25e-08, - "iisc": 5.25e-08, - "ijs": 5.25e-08, - "illo": 5.25e-08, - "illust": 5.25e-08, - "imaginal": 5.25e-08, - "immiscible": 5.25e-08, - "impe": 5.25e-08, - "inci": 5.25e-08, - "incrementalism": 5.25e-08, - "inds": 5.25e-08, - "ineffectually": 5.25e-08, - "inshaallah": 5.25e-08, - "intercalary": 5.25e-08, - "interpose": 5.25e-08, - "intimidator": 5.25e-08, - "intuitionistic": 5.25e-08, - "investiga": 5.25e-08, - "ipsen": 5.25e-08, - "irctc": 5.25e-08, - "irfu": 5.25e-08, - "irq": 5.25e-08, - "iska": 5.25e-08, - "issam": 5.25e-08, - "istat": 5.25e-08, - "itaewon": 5.25e-08, - "itay": 5.25e-08, - "itfc": 5.25e-08, - "ivaylo": 5.25e-08, - "jaana": 5.25e-08, - "jabotinsky": 5.25e-08, - "jackboots": 5.25e-08, - "jahren": 5.25e-08, - "jakov": 5.25e-08, - "janatha": 5.25e-08, - "janowitz": 5.25e-08, - "jansport": 5.25e-08, - "jantzen": 5.25e-08, - "japhet": 5.25e-08, - "jayasuriya": 5.25e-08, - "jaywalk": 5.25e-08, - "jedda": 5.25e-08, - "jedidiah": 5.25e-08, - "jennet": 5.25e-08, - "jerico": 5.25e-08, - "jid": 5.25e-08, - "jigga": 5.25e-08, - "jml": 5.25e-08, - "jongs": 5.25e-08, - "jonno": 5.25e-08, - "journalisms": 5.25e-08, - "jubail": 5.25e-08, - "jwoww": 5.25e-08, - "jyothi": 5.25e-08, - "kahi": 5.25e-08, - "kaifeng": 5.25e-08, - "kakinada": 5.25e-08, - "kaluza": 5.25e-08, - "kamlesh": 5.25e-08, - "kannapolis": 5.25e-08, - "kapok": 5.25e-08, - "karai": 5.25e-08, - "karthi": 5.25e-08, - "karvan": 5.25e-08, - "kasih": 5.25e-08, - "kautz": 5.25e-08, - "kaziranga": 5.25e-08, - "kazuhiro": 5.25e-08, - "keech": 5.25e-08, - "kelo": 5.25e-08, - "kenda": 5.25e-08, - "keras": 5.25e-08, - "kerfoot": 5.25e-08, - "kewanee": 5.25e-08, - "keybank": 5.25e-08, - "khalifas": 5.25e-08, - "khursheed": 5.25e-08, - "kiai": 5.25e-08, - "kilbourn": 5.25e-08, - "killians": 5.25e-08, - "killingworth": 5.25e-08, - "kilty": 5.25e-08, - "kirara": 5.25e-08, - "kirkenes": 5.25e-08, - "kitchenettes": 5.25e-08, - "kitzmiller": 5.25e-08, - "kiwanuka": 5.25e-08, - "kiyomi": 5.25e-08, - "klayman": 5.25e-08, - "kmd": 5.25e-08, - "knabe": 5.25e-08, - "knauf": 5.25e-08, - "knbc": 5.25e-08, - "kolam": 5.25e-08, - "kommandant": 5.25e-08, - "komori": 5.25e-08, - "kompas": 5.25e-08, - "korba": 5.25e-08, - "kornilov": 5.25e-08, - "koru": 5.25e-08, - "kostka": 5.25e-08, - "kove": 5.25e-08, - "krak": 5.25e-08, - "kreisler": 5.25e-08, - "kube": 5.25e-08, - "kucha": 5.25e-08, - "kulp": 5.25e-08, - "kuruma": 5.25e-08, - "kuznets": 5.25e-08, - "kwantung": 5.25e-08, - "kyoya": 5.25e-08, - "kyrgyzstans": 5.25e-08, - "laca": 5.25e-08, - "lachrymose": 5.25e-08, - "lactobacilli": 5.25e-08, - "lagaan": 5.25e-08, - "lakebed": 5.25e-08, - "lakeman": 5.25e-08, - "laman": 5.25e-08, - "largeness": 5.25e-08, - "larocque": 5.25e-08, - "laryngoscope": 5.25e-08, - "lasser": 5.25e-08, - "latt": 5.25e-08, - "lbt": 5.25e-08, - "ldd": 5.25e-08, - "leannes": 5.25e-08, - "lebow": 5.25e-08, - "leeanne": 5.25e-08, - "lehn": 5.25e-08, - "lems": 5.25e-08, - "lenhart": 5.25e-08, - "lessard": 5.25e-08, - "letham": 5.25e-08, - "levator": 5.25e-08, - "lewan": 5.25e-08, - "libeled": 5.25e-08, - "libidinal": 5.25e-08, - "libras": 5.25e-08, - "lidcombe": 5.25e-08, - "liest": 5.25e-08, - "lightbody": 5.25e-08, - "likings": 5.25e-08, - "lilas": 5.25e-08, - "limonite": 5.25e-08, - "lindos": 5.25e-08, - "linette": 5.25e-08, - "linocut": 5.25e-08, - "lipoxygenase": 5.25e-08, - "liqui": 5.25e-08, - "lithotripsy": 5.25e-08, - "littlemore": 5.25e-08, - "lmn": 5.25e-08, - "lnd": 5.25e-08, - "lods": 5.25e-08, - "loitered": 5.25e-08, - "lombardia": 5.25e-08, - "longhaired": 5.25e-08, - "loog": 5.25e-08, - "looke": 5.25e-08, - "lossing": 5.25e-08, - "ltaly": 5.25e-08, - "lucians": 5.25e-08, - "lukakus": 5.25e-08, - "luling": 5.25e-08, - "lumpia": 5.25e-08, - "lupins": 5.25e-08, - "lushington": 5.25e-08, - "luuk": 5.25e-08, - "luxembourgish": 5.25e-08, - "lymphoedema": 5.25e-08, - "lysias": 5.25e-08, - "lythgoe": 5.25e-08, - "mamun": 5.25e-08, - "maajid": 5.25e-08, - "mabuhay": 5.25e-08, - "maddys": 5.25e-08, - "madhava": 5.25e-08, - "madrasah": 5.25e-08, - "magico": 5.25e-08, - "magnifications": 5.25e-08, - "mained": 5.25e-08, - "mainnet": 5.25e-08, - "malefactors": 5.25e-08, - "mallik": 5.25e-08, - "malloys": 5.25e-08, - "maltodextrin": 5.25e-08, - "manetti": 5.25e-08, - "mangione": 5.25e-08, - "manlier": 5.25e-08, - "manorama": 5.25e-08, - "manso": 5.25e-08, - "mantling": 5.25e-08, - "maquette": 5.25e-08, - "margarito": 5.25e-08, - "markaz": 5.25e-08, - "martynov": 5.25e-08, - "massac": 5.25e-08, - "matcher": 5.25e-08, - "mathes": 5.25e-08, - "matress": 5.25e-08, - "mattos": 5.25e-08, - "mawer": 5.25e-08, - "maxines": 5.25e-08, - "maxy": 5.25e-08, - "mcallisters": 5.25e-08, - "mccraw": 5.25e-08, - "mcfadyen": 5.25e-08, - "mcfarlanes": 5.25e-08, - "mcilwain": 5.25e-08, - "mcmorrow": 5.25e-08, - "mctiernan": 5.25e-08, - "meanly": 5.25e-08, - "mechanistically": 5.25e-08, - "medscape": 5.25e-08, - "meers": 5.25e-08, - "meiner": 5.25e-08, - "mengistu": 5.25e-08, - "menhaden": 5.25e-08, - "menomonie": 5.25e-08, - "mercari": 5.25e-08, - "mercks": 5.25e-08, - "mercuric": 5.25e-08, - "mesenchyme": 5.25e-08, - "mesha": 5.25e-08, - "messines": 5.25e-08, - "mestalla": 5.25e-08, - "metastasizing": 5.25e-08, - "methanogens": 5.25e-08, - "metonymy": 5.25e-08, - "meze": 5.25e-08, - "microcirculation": 5.25e-08, - "microdata": 5.25e-08, - "microelectrode": 5.25e-08, - "mierda": 5.25e-08, - "mifid": 5.25e-08, - "mijn": 5.25e-08, - "milah": 5.25e-08, - "milby": 5.25e-08, - "miless": 5.25e-08, - "millars": 5.25e-08, - "millfield": 5.25e-08, - "mion": 5.25e-08, - "mirae": 5.25e-08, - "mirella": 5.25e-08, - "miscellanies": 5.25e-08, - "mistura": 5.25e-08, - "miyajima": 5.25e-08, - "mjf": 5.25e-08, - "mladic": 5.25e-08, - "molests": 5.25e-08, - "molinas": 5.25e-08, - "moltmann": 5.25e-08, - "monaca": 5.25e-08, - "monna": 5.25e-08, - "monoprice": 5.25e-08, - "monteagle": 5.25e-08, - "montini": 5.25e-08, - "moonta": 5.25e-08, - "morang": 5.25e-08, - "mortared": 5.25e-08, - "mozz": 5.25e-08, - "mpk": 5.25e-08, - "msgs": 5.25e-08, - "mucinous": 5.25e-08, - "mujahedeen": 5.25e-08, - "mulattoes": 5.25e-08, - "multibeam": 5.25e-08, - "multichoice": 5.25e-08, - "multivalent": 5.25e-08, - "munden": 5.25e-08, - "muriatic": 5.25e-08, - "murshidabad": 5.25e-08, - "musou": 5.25e-08, - "musubi": 5.25e-08, - "mutualistic": 5.25e-08, - "mxm": 5.25e-08, - "mycobacterial": 5.25e-08, - "myelination": 5.25e-08, - "mykhailo": 5.25e-08, - "myoclonic": 5.25e-08, - "mzee": 5.25e-08, - "nadin": 5.25e-08, - "naegi": 5.25e-08, - "nainggolan": 5.25e-08, - "naracoorte": 5.25e-08, - "nasogastric": 5.25e-08, - "nassr": 5.25e-08, - "natha": 5.25e-08, - "nathaniels": 5.25e-08, - "natriuretic": 5.25e-08, - "natrona": 5.25e-08, - "navaho": 5.25e-08, - "naysayer": 5.25e-08, - "nbe": 5.25e-08, - "ndo": 5.25e-08, - "nebbiolo": 5.25e-08, - "nebraskans": 5.25e-08, - "negligibly": 5.25e-08, - "nekrasov": 5.25e-08, - "neocolonialism": 5.25e-08, - "nernst": 5.25e-08, - "nerys": 5.25e-08, - "neth": 5.25e-08, - "neurite": 5.25e-08, - "newsham": 5.25e-08, - "newsweeks": 5.25e-08, - "nhan": 5.25e-08, - "nids": 5.25e-08, - "nifedipine": 5.25e-08, - "nimue": 5.25e-08, - "niqabs": 5.25e-08, - "nishiki": 5.25e-08, - "nitriles": 5.25e-08, - "nln": 5.25e-08, - "nmds": 5.25e-08, - "noelia": 5.25e-08, - "nofollow": 5.25e-08, - "nonprofessional": 5.25e-08, - "nordvpn": 5.25e-08, - "norio": 5.25e-08, - "northwests": 5.25e-08, - "nserc": 5.25e-08, - "nudgee": 5.25e-08, - "nunberg": 5.25e-08, - "nurs": 5.25e-08, - "oblanceolate": 5.25e-08, - "occam": 5.25e-08, - "occoquan": 5.25e-08, - "ochem": 5.25e-08, - "octets": 5.25e-08, - "oddy": 5.25e-08, - "odon": 5.25e-08, - "ofe": 5.25e-08, - "ofthem": 5.25e-08, - "ohsaa": 5.25e-08, - "oita": 5.25e-08, - "ongar": 5.25e-08, - "onramp": 5.25e-08, - "onsets": 5.25e-08, - "ooey": 5.25e-08, - "openid": 5.25e-08, - "operat": 5.25e-08, - "optogenetics": 5.25e-08, - "orginally": 5.25e-08, - "originalist": 5.25e-08, - "orlovsky": 5.25e-08, - "orna": 5.25e-08, - "orontes": 5.25e-08, - "orv": 5.25e-08, - "osteonecrosis": 5.25e-08, - "osteopenia": 5.25e-08, - "outboards": 5.25e-08, - "outfoxed": 5.25e-08, - "outruns": 5.25e-08, - "outsole": 5.25e-08, - "overdriven": 5.25e-08, - "overexploitation": 5.25e-08, - "owasso": 5.25e-08, - "owne": 5.25e-08, - "ozo": 5.25e-08, - "paho": 5.25e-08, - "paleface": 5.25e-08, - "palomares": 5.25e-08, - "palpate": 5.25e-08, - "panchen": 5.25e-08, - "panchromatic": 5.25e-08, - "pandi": 5.25e-08, - "panin": 5.25e-08, - "paranaense": 5.25e-08, - "paranasal": 5.25e-08, - "pareja": 5.25e-08, - "parnells": 5.25e-08, - "parodi": 5.25e-08, - "particleboard": 5.25e-08, - "passerine": 5.25e-08, - "pauw": 5.25e-08, - "payen": 5.25e-08, - "pdsa": 5.25e-08, - "peafowl": 5.25e-08, - "pectus": 5.25e-08, - "pedra": 5.25e-08, - "peine": 5.25e-08, - "pelion": 5.25e-08, - "penda": 5.25e-08, - "pendry": 5.25e-08, - "penry": 5.25e-08, - "pequod": 5.25e-08, - "perini": 5.25e-08, - "petechial": 5.25e-08, - "pevensey": 5.25e-08, - "phangan": 5.25e-08, - "phimosis": 5.25e-08, - "phobe": 5.25e-08, - "phylogenies": 5.25e-08, - "pieck": 5.25e-08, - "pigmy": 5.25e-08, - "plaint": 5.25e-08, - "plebiscites": 5.25e-08, - "plekanec": 5.25e-08, - "plx": 5.25e-08, - "polarizers": 5.25e-08, - "polnareff": 5.25e-08, - "pontes": 5.25e-08, - "poopie": 5.25e-08, - "poopoo": 5.25e-08, - "popolare": 5.25e-08, - "porticos": 5.25e-08, - "poto": 5.25e-08, - "praed": 5.25e-08, - "pras": 5.25e-08, - "preamps": 5.25e-08, - "precociously": 5.25e-08, - "preemies": 5.25e-08, - "prefigures": 5.25e-08, - "prepuce": 5.25e-08, - "prestbury": 5.25e-08, - "privies": 5.25e-08, - "proctologist": 5.25e-08, - "propanol": 5.25e-08, - "propellor": 5.25e-08, - "prophase": 5.25e-08, - "prosaically": 5.25e-08, - "providentially": 5.25e-08, - "prunty": 5.25e-08, - "psac": 5.25e-08, - "psychokinesis": 5.25e-08, - "ptw": 5.25e-08, - "puel": 5.25e-08, - "puerco": 5.25e-08, - "puffers": 5.25e-08, - "purefoy": 5.25e-08, - "purgatorio": 5.25e-08, - "purna": 5.25e-08, - "puryear": 5.25e-08, - "putain": 5.25e-08, - "putu": 5.25e-08, - "pwo": 5.25e-08, - "pyogenes": 5.25e-08, - "qahtani": 5.25e-08, - "qamishli": 5.25e-08, - "qcs": 5.25e-08, - "qid": 5.25e-08, - "qnd": 5.25e-08, - "qtl": 5.25e-08, - "quadcopters": 5.25e-08, - "quaritch": 5.25e-08, - "quartermasters": 5.25e-08, - "quraishi": 5.25e-08, - "radiogram": 5.25e-08, - "radiolab": 5.25e-08, - "raffling": 5.25e-08, - "rajinder": 5.25e-08, - "rajpal": 5.25e-08, - "ramanuja": 5.25e-08, - "randburg": 5.25e-08, - "rapace": 5.25e-08, - "rapallo": 5.25e-08, - "ratnam": 5.25e-08, - "recapitulated": 5.25e-08, - "rechecking": 5.25e-08, - "recolor": 5.25e-08, - "recuperative": 5.25e-08, - "regeneron": 5.25e-08, - "reichsmarks": 5.25e-08, - "reik": 5.25e-08, - "reinfeldt": 5.25e-08, - "reinterprets": 5.25e-08, - "rememberance": 5.25e-08, - "remembrancer": 5.25e-08, - "renominated": 5.25e-08, - "repopulated": 5.25e-08, - "reptar": 5.25e-08, - "repulsing": 5.25e-08, - "reroll": 5.25e-08, - "reshot": 5.25e-08, - "retractors": 5.25e-08, - "retrogressive": 5.25e-08, - "revalidation": 5.25e-08, - "revering": 5.25e-08, - "revolucion": 5.25e-08, - "reznik": 5.25e-08, - "rfm": 5.25e-08, - "ridgeley": 5.25e-08, - "rijkaard": 5.25e-08, - "rikke": 5.25e-08, - "rila": 5.25e-08, - "rimer": 5.25e-08, - "rimrock": 5.25e-08, - "rinat": 5.25e-08, - "rinky": 5.25e-08, - "rioli": 5.25e-08, - "riquelme": 5.25e-08, - "risborough": 5.25e-08, - "roble": 5.25e-08, - "roce": 5.25e-08, - "rodins": 5.25e-08, - "romane": 5.25e-08, - "romualdez": 5.25e-08, - "roosh": 5.25e-08, - "rosenman": 5.25e-08, - "rosine": 5.25e-08, - "rossen": 5.25e-08, - "rossmore": 5.25e-08, - "rossouw": 5.25e-08, - "rotas": 5.25e-08, - "roulade": 5.25e-08, - "rouseys": 5.25e-08, - "rowbotham": 5.25e-08, - "roxboro": 5.25e-08, - "royaume": 5.25e-08, - "roze": 5.25e-08, - "rri": 5.25e-08, - "rubia": 5.25e-08, - "ruffs": 5.25e-08, - "rufinus": 5.25e-08, - "rulebooks": 5.25e-08, - "rym": 5.25e-08, - "rypien": 5.25e-08, - "ryutaro": 5.25e-08, - "saabs": 5.25e-08, - "sacajawea": 5.25e-08, - "sacerdotal": 5.25e-08, - "saftey": 5.25e-08, - "sahrawi": 5.25e-08, - "salvadorean": 5.25e-08, - "salver": 5.25e-08, - "samman": 5.25e-08, - "sanctimony": 5.25e-08, - "sanguinary": 5.25e-08, - "sankei": 5.25e-08, - "santillana": 5.25e-08, - "sarmatian": 5.25e-08, - "sase": 5.25e-08, - "sasebo": 5.25e-08, - "satch": 5.25e-08, - "satirising": 5.25e-08, - "sbo": 5.25e-08, - "scampton": 5.25e-08, - "schlatter": 5.25e-08, - "schlub": 5.25e-08, - "schoolmistress": 5.25e-08, - "schoolwide": 5.25e-08, - "schor": 5.25e-08, - "schreyer": 5.25e-08, - "schroders": 5.25e-08, - "schwing": 5.25e-08, - "scotians": 5.25e-08, - "sculpturing": 5.25e-08, - "seasonable": 5.25e-08, - "seculars": 5.25e-08, - "securitate": 5.25e-08, - "sefolosha": 5.25e-08, - "selinger": 5.25e-08, - "sellwood": 5.25e-08, - "semaphores": 5.25e-08, - "semitrailer": 5.25e-08, - "senju": 5.25e-08, - "sensationalizing": 5.25e-08, - "seongnam": 5.25e-08, - "separability": 5.25e-08, - "septembre": 5.25e-08, - "seropositive": 5.25e-08, - "serry": 5.25e-08, - "serta": 5.25e-08, - "serzh": 5.25e-08, - "sesto": 5.25e-08, - "setswana": 5.25e-08, - "seusss": 5.25e-08, - "sextuple": 5.25e-08, - "shahab": 5.25e-08, - "shahnaz": 5.25e-08, - "shakyamuni": 5.25e-08, - "sharq": 5.25e-08, - "shawmut": 5.25e-08, - "shinies": 5.25e-08, - "shouldst": 5.25e-08, - "shrader": 5.25e-08, - "shreks": 5.25e-08, - "shrigley": 5.25e-08, - "shubham": 5.25e-08, - "shyer": 5.25e-08, - "sigmas": 5.25e-08, - "sihanoukville": 5.25e-08, - "siloed": 5.25e-08, - "silvie": 5.25e-08, - "simpleminded": 5.25e-08, - "simplicial": 5.25e-08, - "singa": 5.25e-08, - "siss": 3.31e-08, - "situationally": 5.25e-08, - "skaife": 5.25e-08, - "slazenger": 5.25e-08, - "sleepytime": 5.25e-08, - "sleeving": 5.25e-08, - "sleman": 5.25e-08, - "slidin": 5.25e-08, - "slipperiness": 5.25e-08, - "slivered": 5.25e-08, - "slopped": 5.25e-08, - "smitherman": 5.25e-08, - "snaky": 5.25e-08, - "snappier": 5.25e-08, - "snn": 5.25e-08, - "soderberghs": 5.25e-08, - "sodor": 5.25e-08, - "soin": 5.25e-08, - "solani": 5.25e-08, - "solidago": 5.25e-08, - "solna": 5.25e-08, - "somnolent": 5.25e-08, - "soooooooooo": 5.25e-08, - "soran": 5.25e-08, - "soulfully": 5.25e-08, - "southlands": 5.25e-08, - "sowa": 5.25e-08, - "soyabean": 5.25e-08, - "spagna": 5.25e-08, - "spalletti": 5.25e-08, - "spangle": 5.25e-08, - "speechwriters": 5.25e-08, - "spinor": 5.25e-08, - "spiritism": 5.25e-08, - "squeamishness": 5.25e-08, - "ssbbw": 5.25e-08, - "standers": 5.25e-08, - "starkiller": 5.25e-08, - "starla": 5.25e-08, - "startrek": 5.25e-08, - "statu": 5.25e-08, - "staudinger": 5.25e-08, - "steg": 5.25e-08, - "stites": 5.25e-08, - "stockbroking": 5.25e-08, - "stolons": 5.25e-08, - "stowes": 5.25e-08, - "strawbridge": 5.25e-08, - "stupak": 5.25e-08, - "sturdiest": 5.25e-08, - "stynes": 5.25e-08, - "subconsciousness": 5.25e-08, - "subcostal": 5.25e-08, - "subdirectories": 5.25e-08, - "subi": 5.25e-08, - "substrata": 5.25e-08, - "subsuming": 5.25e-08, - "subvention": 5.25e-08, - "suha": 5.25e-08, - "suicided": 5.25e-08, - "sukumar": 5.25e-08, - "sulfonamides": 5.25e-08, - "sunwoo": 5.25e-08, - "supercede": 5.25e-08, - "supergravity": 5.25e-08, - "superspeedway": 5.25e-08, - "supps": 5.25e-08, - "supraorbital": 5.25e-08, - "suzannah": 5.25e-08, - "svedberg": 5.25e-08, - "swae": 5.25e-08, - "swampscott": 5.25e-08, - "sweezy": 5.25e-08, - "swigs": 5.25e-08, - "syaoran": 5.25e-08, - "syros": 5.25e-08, - "tackett": 5.25e-08, - "taehyung": 5.25e-08, - "taenia": 5.25e-08, - "taishan": 5.25e-08, - "takfiri": 5.25e-08, - "talas": 5.25e-08, - "taleban": 5.25e-08, - "tannadice": 5.25e-08, - "tarboro": 5.25e-08, - "tascam": 5.25e-08, - "tawfiq": 5.25e-08, - "techstars": 5.25e-08, - "teej": 5.25e-08, - "telegraaf": 5.25e-08, - "tellez": 5.25e-08, - "tellings": 5.25e-08, - "temkin": 5.25e-08, - "teoh": 5.25e-08, - "terrasse": 5.25e-08, - "tetrahydrofuran": 5.25e-08, - "tevita": 5.25e-08, - "tgm": 5.25e-08, - "theor": 5.25e-08, - "theosophists": 5.25e-08, - "therion": 5.25e-08, - "thermopolis": 5.25e-08, - "thestreet": 5.25e-08, - "thhe": 5.25e-08, - "thieu": 5.25e-08, - "thoughout": 5.25e-08, - "thundercloud": 5.25e-08, - "thurles": 5.25e-08, - "tinbergen": 5.25e-08, - "tirreno": 5.25e-08, - "tlaxcala": 5.25e-08, - "tlg": 5.25e-08, - "tlop": 5.25e-08, - "tmall": 5.25e-08, - "toco": 5.25e-08, - "tohu": 5.25e-08, - "toker": 5.25e-08, - "tonny": 5.25e-08, - "tookie": 5.25e-08, - "toren": 5.25e-08, - "toughens": 5.25e-08, - "trainin": 5.25e-08, - "transduced": 5.25e-08, - "transgenerational": 5.25e-08, - "transvestism": 5.25e-08, - "trashiest": 5.25e-08, - "treaded": 5.25e-08, - "trenta": 5.25e-08, - "tressa": 5.25e-08, - "trigo": 5.25e-08, - "triploid": 5.25e-08, - "tritt": 5.25e-08, - "trofeo": 5.25e-08, - "trufant": 5.25e-08, - "trunked": 5.25e-08, - "tryhard": 5.25e-08, - "tshering": 5.25e-08, - "tuberosity": 5.25e-08, - "tumblrs": 5.25e-08, - "tupi": 5.25e-08, - "turbaned": 5.25e-08, - "tuum": 5.25e-08, - "typographer": 5.25e-08, - "uhg": 5.25e-08, - "uhi": 5.25e-08, - "uhu": 5.25e-08, - "ukraina": 5.25e-08, - "ulp": 5.25e-08, - "ultramar": 5.25e-08, - "umair": 5.25e-08, - "umbel": 5.25e-08, - "umoja": 5.25e-08, - "uncolored": 5.25e-08, - "uncontacted": 5.25e-08, - "uncrewed": 5.25e-08, - "underglaze": 5.25e-08, - "underpay": 5.25e-08, - "underwears": 5.25e-08, - "undulated": 5.25e-08, - "undyed": 5.25e-08, - "unfixable": 5.25e-08, - "unitedhealthcare": 5.25e-08, - "unkept": 5.25e-08, - "unmentionables": 5.25e-08, - "unmerciful": 5.25e-08, - "unno": 5.25e-08, - "unsheltered": 5.25e-08, - "unvarying": 5.25e-08, - "unwaveringly": 5.25e-08, - "upg": 5.25e-08, - "uppingham": 5.25e-08, - "uprise": 5.25e-08, - "uptodate": 5.25e-08, - "urg": 5.25e-08, - "utu": 5.25e-08, - "uvas": 5.25e-08, - "valetta": 5.25e-08, - "valo": 5.25e-08, - "valores": 5.25e-08, - "vandiver": 5.25e-08, - "vaporware": 5.25e-08, - "varennes": 5.25e-08, - "vda": 5.25e-08, - "vedomosti": 5.25e-08, - "veloce": 5.25e-08, - "vemma": 5.25e-08, - "vep": 5.25e-08, - "verghese": 5.25e-08, - "victorine": 5.25e-08, - "viernes": 5.25e-08, - "viets": 5.25e-08, - "vigan": 5.25e-08, - "vincere": 5.25e-08, - "vineet": 5.25e-08, - "virar": 5.25e-08, - "visine": 5.25e-08, - "vison": 5.25e-08, - "vistaprint": 5.25e-08, - "vitalik": 5.25e-08, - "vizard": 5.25e-08, - "vologda": 5.25e-08, - "voltammetry": 5.25e-08, - "volvulus": 5.25e-08, - "vrba": 5.25e-08, - "vukovar": 5.25e-08, - "vul": 5.25e-08, - "wackiness": 5.25e-08, - "wadhwa": 5.25e-08, - "waffled": 5.25e-08, - "wagle": 5.25e-08, - "waitlisted": 5.25e-08, - "wakamatsu": 5.25e-08, - "walczak": 5.25e-08, - "wallack": 5.25e-08, - "walsham": 5.25e-08, - "wamba": 5.25e-08, - "wapiti": 5.25e-08, - "wapner": 5.25e-08, - "warbeck": 5.25e-08, - "warbirds": 5.25e-08, - "warioware": 5.25e-08, - "watter": 5.25e-08, - "wavin": 5.25e-08, - "waxwings": 5.25e-08, - "weap": 5.25e-08, - "weaverville": 5.25e-08, - "webisodes": 5.25e-08, - "weho": 5.25e-08, - "weigand": 5.25e-08, - "weismann": 5.25e-08, - "wellpoint": 5.25e-08, - "wending": 5.25e-08, - "westby": 5.25e-08, - "westpoint": 5.25e-08, - "wfh": 5.25e-08, - "wharfedale": 5.25e-08, - "wheee": 5.25e-08, - "whelps": 5.25e-08, - "whewell": 5.25e-08, - "whisenhunt": 5.25e-08, - "whn": 5.25e-08, - "wickhams": 5.25e-08, - "widdicombe": 5.25e-08, - "wiggler": 5.25e-08, - "wilczek": 5.25e-08, - "wilmott": 5.25e-08, - "windfarms": 5.25e-08, - "winfried": 5.25e-08, - "winnies": 5.25e-08, - "winograd": 5.25e-08, - "winsford": 5.25e-08, - "winsted": 5.25e-08, - "wirtschaft": 5.25e-08, - "witting": 5.25e-08, - "wml": 5.25e-08, - "woodcutters": 5.25e-08, - "wookiees": 5.25e-08, - "woolfolk": 5.25e-08, - "woolloomooloo": 5.25e-08, - "woolston": 5.25e-08, - "worklife": 5.25e-08, - "wsg": 5.25e-08, - "wsoc": 5.25e-08, - "wusa": 5.25e-08, - "wysocki": 5.25e-08, - "xion": 5.25e-08, - "xmm": 5.25e-08, - "xstrata": 5.25e-08, - "yanan": 3.63e-08, - "yarkand": 5.25e-08, - "yarraville": 5.25e-08, - "yeaaaah": 5.25e-08, - "yelland": 5.25e-08, - "yelnats": 5.25e-08, - "yero": 5.25e-08, - "yobs": 5.25e-08, - "yonex": 5.25e-08, - "yorgos": 5.25e-08, - "yoshimitsu": 5.25e-08, - "yoshimoto": 5.25e-08, - "yoshiro": 5.25e-08, - "youare": 5.25e-08, - "younguns": 5.25e-08, - "younghusband": 5.25e-08, - "youri": 5.25e-08, - "youuu": 5.25e-08, - "yowling": 5.25e-08, - "zad": 5.25e-08, - "zahar": 5.25e-08, - "zaher": 5.25e-08, - "zaka": 5.25e-08, - "zanussi": 5.25e-08, - "zeenat": 5.25e-08, - "zeuss": 5.25e-08, - "zhdanov": 5.25e-08, - "zik": 5.25e-08, - "zionsville": 5.25e-08, - "zipp": 5.25e-08, - "zoids": 5.25e-08, - "zombi": 5.25e-08, - "zulfikar": 5.25e-08, - "zygon": 5.25e-08, - "abap": 5.13e-08, - "abasement": 5.13e-08, - "abcde": 5.13e-08, - "abductee": 5.13e-08, - "abergele": 5.13e-08, - "abidine": 5.13e-08, - "ablated": 5.13e-08, - "abruptness": 5.13e-08, - "absense": 5.13e-08, - "acetates": 5.13e-08, - "advisability": 5.13e-08, - "aesthetical": 5.13e-08, - "afcs": 5.13e-08, - "agadez": 5.13e-08, - "ahle": 5.13e-08, - "ahq": 5.13e-08, - "ahsa": 5.13e-08, - "aksa": 5.13e-08, - "alade": 5.13e-08, - "alanson": 5.13e-08, - "alberich": 5.13e-08, - "alcacer": 5.13e-08, - "alexiss": 5.13e-08, - "algie": 5.13e-08, - "algos": 5.13e-08, - "alleghenies": 5.13e-08, - "allografts": 5.13e-08, - "almsgiving": 5.13e-08, - "aloisi": 5.13e-08, - "alpo": 5.13e-08, - "alread": 5.13e-08, - "altshuler": 5.13e-08, - "aluminized": 5.13e-08, - "alysha": 5.13e-08, - "amagansett": 5.13e-08, - "amakusa": 5.13e-08, - "ambanis": 5.13e-08, - "amberg": 5.13e-08, - "ambros": 5.13e-08, - "amersfoort": 5.13e-08, - "amiability": 5.13e-08, - "amoruso": 5.13e-08, - "ampthill": 5.13e-08, - "anantnag": 5.13e-08, - "anar": 5.13e-08, - "andoni": 5.13e-08, - "angeleno": 5.13e-08, - "animalia": 5.13e-08, - "anniv": 5.13e-08, - "annualised": 5.13e-08, - "annulments": 5.13e-08, - "annunziata": 5.13e-08, - "antaeus": 5.13e-08, - "antec": 5.13e-08, - "anthelmintic": 5.13e-08, - "antiarrhythmic": 5.13e-08, - "anticapitalist": 5.13e-08, - "anticlerical": 5.13e-08, - "antiguan": 5.13e-08, - "antipasti": 5.13e-08, - "antipersonnel": 5.13e-08, - "antipodal": 5.13e-08, - "aoyagi": 5.13e-08, - "aped": 5.13e-08, - "aperol": 5.13e-08, - "apic": 5.13e-08, - "apol": 5.13e-08, - "appartement": 5.13e-08, - "apperance": 5.13e-08, - "apprehensively": 5.13e-08, - "aqha": 5.13e-08, - "aquavit": 5.13e-08, - "aquiline": 5.13e-08, - "arema": 5.13e-08, - "ariba": 5.13e-08, - "aril": 5.13e-08, - "arison": 5.13e-08, - "arminians": 5.13e-08, - "arrestor": 5.13e-08, - "artspace": 5.13e-08, - "ascs": 5.13e-08, - "aspa": 5.13e-08, - "assr": 5.13e-08, - "astell": 5.13e-08, - "ataman": 5.13e-08, - "atascadero": 5.13e-08, - "athey": 5.13e-08, - "atol": 5.13e-08, - "audu": 5.13e-08, - "augustas": 5.13e-08, - "auratus": 5.13e-08, - "aureole": 5.13e-08, - "autoclaves": 5.13e-08, - "autocracies": 5.13e-08, - "automator": 5.13e-08, - "autour": 5.13e-08, - "avogadro": 5.13e-08, - "awr": 5.13e-08, - "azharuddin": 5.13e-08, - "baboo": 5.13e-08, - "babywearing": 5.13e-08, - "bachar": 5.13e-08, - "backoff": 5.13e-08, - "backorder": 5.13e-08, - "bahri": 5.13e-08, - "bahujan": 5.13e-08, - "baijiu": 5.13e-08, - "balladry": 5.13e-08, - "ballew": 5.13e-08, - "banas": 5.13e-08, - "barbeques": 5.13e-08, - "barrelling": 5.13e-08, - "barritt": 5.13e-08, - "bashevis": 5.13e-08, - "basilicata": 5.13e-08, - "basketballer": 5.13e-08, - "bassmaster": 5.13e-08, - "bastiat": 5.13e-08, - "bathos": 5.13e-08, - "batz": 5.13e-08, - "bayberry": 5.13e-08, - "beasting": 5.13e-08, - "bebes": 5.13e-08, - "behnke": 5.13e-08, - "beholders": 5.13e-08, - "bellegarde": 5.13e-08, - "beloveds": 5.01e-08, - "belsky": 5.13e-08, - "benneteau": 5.13e-08, - "benthos": 5.13e-08, - "bents": 5.13e-08, - "benzocaine": 5.13e-08, - "berlinger": 5.13e-08, - "bernardini": 5.13e-08, - "beseeched": 5.13e-08, - "beshara": 5.13e-08, - "bidness": 5.13e-08, - "bifocal": 5.13e-08, - "binga": 5.13e-08, - "binnacle": 5.13e-08, - "biophilia": 5.13e-08, - "biru": 5.13e-08, - "bitbucket": 5.13e-08, - "bitlocker": 5.13e-08, - "biwi": 5.13e-08, - "blackhorse": 5.13e-08, - "blackmoor": 5.13e-08, - "blaize": 5.13e-08, - "blanchards": 5.13e-08, - "bleue": 5.13e-08, - "bloks": 5.13e-08, - "blotters": 5.13e-08, - "bluesky": 5.13e-08, - "blumhouse": 5.13e-08, - "blut": 5.13e-08, - "bmb": 5.13e-08, - "bobolink": 5.13e-08, - "bodger": 5.13e-08, - "bohl": 5.13e-08, - "boinc": 5.13e-08, - "boink": 5.13e-08, - "bojana": 5.13e-08, - "boksburg": 5.13e-08, - "bolitho": 5.13e-08, - "boller": 5.13e-08, - "bombus": 5.13e-08, - "bookstagram": 5.13e-08, - "boppy": 5.13e-08, - "borba": 5.13e-08, - "bordens": 5.13e-08, - "borrell": 5.13e-08, - "bouncin": 5.13e-08, - "bournville": 5.13e-08, - "bowdon": 5.13e-08, - "bradmans": 5.13e-08, - "brancusi": 5.13e-08, - "brandie": 5.13e-08, - "brassieres": 5.13e-08, - "brean": 5.13e-08, - "brevoort": 5.13e-08, - "bridgeview": 5.13e-08, - "brimful": 5.13e-08, - "briones": 5.13e-08, - "brocades": 5.13e-08, - "brockwell": 5.13e-08, - "brodin": 5.13e-08, - "bromhead": 5.13e-08, - "brominated": 5.13e-08, - "bronchodilators": 5.13e-08, - "bruker": 5.13e-08, - "budokai": 5.13e-08, - "buggering": 5.13e-08, - "burntisland": 5.13e-08, - "busying": 5.13e-08, - "cabinetmakers": 5.13e-08, - "caipirinha": 5.13e-08, - "calcination": 5.13e-08, - "calcineurin": 5.13e-08, - "calibres": 5.13e-08, - "calientes": 5.13e-08, - "camby": 5.13e-08, - "caminos": 5.13e-08, - "canad": 5.13e-08, - "canali": 5.13e-08, - "candlewick": 5.13e-08, - "canetti": 5.13e-08, - "cannavale": 5.13e-08, - "capac": 5.13e-08, - "capek": 5.13e-08, - "capitation": 5.13e-08, - "carabobo": 5.13e-08, - "carceral": 5.13e-08, - "cardell": 5.13e-08, - "cardioversion": 5.13e-08, - "carnforth": 5.13e-08, - "carstensen": 5.13e-08, - "carvell": 5.13e-08, - "cashiered": 5.13e-08, - "casl": 5.13e-08, - "cassa": 5.13e-08, - "castleberry": 5.13e-08, - "catalogo": 5.13e-08, - "catmull": 5.13e-08, - "caulked": 5.13e-08, - "caviezel": 5.13e-08, - "cbms": 5.13e-08, - "cbx": 5.13e-08, - "celebrex": 5.13e-08, - "cervera": 5.13e-08, - "cervus": 5.13e-08, - "cetaphil": 5.13e-08, - "ceteris": 5.13e-08, - "cgh": 5.13e-08, - "challen": 5.13e-08, - "channelized": 5.13e-08, - "charman": 5.13e-08, - "charmy": 5.13e-08, - "chatelet": 5.13e-08, - "checksums": 5.13e-08, - "chelated": 5.13e-08, - "chelsie": 5.13e-08, - "cherif": 5.13e-08, - "chesky": 5.13e-08, - "chignon": 5.13e-08, - "chimerical": 5.13e-08, - "chippie": 5.13e-08, - "chiswell": 5.13e-08, - "chittoor": 5.13e-08, - "choosed": 5.13e-08, - "christianize": 5.13e-08, - "christofer": 5.13e-08, - "chromo": 5.13e-08, - "chronicon": 5.13e-08, - "chuff": 5.13e-08, - "chunked": 5.13e-08, - "cih": 5.13e-08, - "cilium": 5.13e-08, - "cirebon": 5.13e-08, - "claas": 5.13e-08, - "classica": 5.13e-08, - "clefairy": 5.13e-08, - "clemmie": 5.13e-08, - "clifden": 5.13e-08, - "clintonville": 5.13e-08, - "clipperton": 5.13e-08, - "clix": 5.13e-08, - "coagulants": 5.13e-08, - "cokey": 5.13e-08, - "collarless": 5.13e-08, - "collimation": 5.13e-08, - "combin": 5.13e-08, - "comedia": 5.13e-08, - "commack": 5.13e-08, - "commendatory": 5.13e-08, - "comodo": 5.13e-08, - "condie": 5.13e-08, - "conferees": 5.13e-08, - "conferral": 5.13e-08, - "configs": 5.13e-08, - "confounders": 5.13e-08, - "conserv": 5.13e-08, - "convalesce": 5.13e-08, - "convento": 5.13e-08, - "coppi": 5.13e-08, - "cosplayed": 5.13e-08, - "costless": 5.13e-08, - "countrywoman": 5.13e-08, - "couperin": 5.13e-08, - "courland": 5.13e-08, - "crawleys": 5.13e-08, - "crighton": 5.13e-08, - "crimper": 5.13e-08, - "crones": 5.13e-08, - "crosier": 5.13e-08, - "cruet": 5.13e-08, - "cryptococcus": 5.13e-08, - "curiositys": 5.13e-08, - "cycloid": 5.13e-08, - "dacoit": 5.13e-08, - "daito": 5.13e-08, - "dalgliesh": 5.13e-08, - "dalis": 5.13e-08, - "dallied": 5.13e-08, - "dalry": 5.13e-08, - "damiani": 5.13e-08, - "damier": 5.13e-08, - "damps": 5.13e-08, - "darhk": 5.13e-08, - "darryls": 5.13e-08, - "dawla": 5.13e-08, - "dcn": 5.13e-08, - "ddh": 5.13e-08, - "ddj": 5.13e-08, - "deadfall": 5.13e-08, - "debray": 5.13e-08, - "decl": 5.13e-08, - "decomp": 5.13e-08, - "deconstructive": 5.13e-08, - "defocus": 5.13e-08, - "dehors": 5.13e-08, - "deicide": 5.13e-08, - "deila": 5.13e-08, - "deji": 5.13e-08, - "delet": 5.13e-08, - "dellacqua": 5.13e-08, - "dengler": 5.13e-08, - "dependently": 5.13e-08, - "depop": 5.13e-08, - "deputising": 5.13e-08, - "desaturated": 5.13e-08, - "desireable": 5.13e-08, - "dhd": 5.13e-08, - "dho": 5.13e-08, - "dhyan": 5.13e-08, - "diacritic": 5.13e-08, - "diagnostically": 5.13e-08, - "diazo": 5.13e-08, - "diederik": 5.13e-08, - "diel": 5.13e-08, - "dieses": 5.13e-08, - "difranco": 5.13e-08, - "digipak": 5.13e-08, - "dioscorides": 5.13e-08, - "dishcloth": 5.13e-08, - "diskin": 5.13e-08, - "disproportionality": 5.13e-08, - "dittmar": 5.13e-08, - "dolomitic": 5.13e-08, - "donau": 5.13e-08, - "donnel": 5.13e-08, - "doomy": 5.13e-08, - "drancy": 5.13e-08, - "droste": 5.13e-08, - "dubas": 5.13e-08, - "dudamel": 5.13e-08, - "dungarvan": 5.13e-08, - "duplin": 5.13e-08, - "duralumin": 5.13e-08, - "duse": 5.13e-08, - "dustman": 5.13e-08, - "duveen": 5.13e-08, - "dvf": 5.13e-08, - "dybbuk": 5.13e-08, - "eab": 5.13e-08, - "ecsc": 5.13e-08, - "eddowes": 5.13e-08, - "edney": 5.13e-08, - "effeminacy": 5.13e-08, - "egad": 5.13e-08, - "egeland": 5.13e-08, - "ekka": 5.13e-08, - "elasticated": 5.13e-08, - "elb": 5.13e-08, - "elbaz": 5.13e-08, - "elda": 5.13e-08, - "electrodynamic": 5.13e-08, - "elfrid": 5.13e-08, - "eliminators": 5.13e-08, - "elitebook": 5.13e-08, - "ellaria": 5.13e-08, - "ellisville": 5.13e-08, - "ellon": 5.13e-08, - "elmes": 5.13e-08, - "embase": 5.13e-08, - "embrasures": 5.13e-08, - "embryological": 5.13e-08, - "emes": 5.13e-08, - "emilias": 5.13e-08, - "emmetts": 5.13e-08, - "emon": 5.13e-08, - "emraan": 5.13e-08, - "enfin": 5.13e-08, - "engdahl": 5.13e-08, - "enghien": 5.13e-08, - "enti": 5.13e-08, - "enty": 5.13e-08, - "epdm": 5.13e-08, - "ephemerides": 5.13e-08, - "episodically": 5.13e-08, - "eqn": 5.13e-08, - "erda": 5.13e-08, - "ernsts": 5.13e-08, - "erratum": 5.13e-08, - "errico": 5.13e-08, - "espacio": 5.13e-08, - "espe": 5.13e-08, - "etzioni": 5.13e-08, - "euclids": 5.13e-08, - "eurocentrism": 5.13e-08, - "evap": 5.13e-08, - "evicts": 5.13e-08, - "evies": 5.13e-08, - "evolv": 5.13e-08, - "ewc": 5.13e-08, - "exotically": 5.13e-08, - "experientially": 5.13e-08, - "exulted": 5.13e-08, - "eyecare": 5.13e-08, - "eyles": 5.13e-08, - "faba": 5.13e-08, - "fager": 5.13e-08, - "fainthearted": 5.13e-08, - "falsifications": 5.13e-08, - "fantasie": 5.13e-08, - "farooqi": 5.13e-08, - "faseb": 5.13e-08, - "faultlessly": 5.13e-08, - "favourited": 5.13e-08, - "fayyad": 5.13e-08, - "fcas": 5.13e-08, - "fedayeen": 5.13e-08, - "feffer": 5.13e-08, - "feliciana": 5.13e-08, - "feliks": 5.13e-08, - "fellah": 5.13e-08, - "fermentations": 5.13e-08, - "ferntree": 5.13e-08, - "festively": 5.13e-08, - "fiche": 5.13e-08, - "fiera": 5.13e-08, - "filmon": 5.13e-08, - "filthiness": 5.13e-08, - "findlater": 5.13e-08, - "fiorini": 5.13e-08, - "firelord": 5.13e-08, - "firered": 5.13e-08, - "firoz": 5.13e-08, - "fistfuls": 5.13e-08, - "flacks": 5.13e-08, - "flareon": 5.13e-08, - "flatworm": 5.13e-08, - "flett": 5.13e-08, - "flg": 5.13e-08, - "florencia": 5.13e-08, - "fludd": 5.13e-08, - "flyball": 5.13e-08, - "foca": 5.13e-08, - "fola": 5.13e-08, - "fondas": 5.13e-08, - "fonseka": 5.13e-08, - "footsies": 5.13e-08, - "foreignness": 5.13e-08, - "foreshortened": 5.13e-08, - "forschungen": 5.13e-08, - "fotografia": 5.13e-08, - "foulis": 5.13e-08, - "freebase": 5.13e-08, - "freemont": 5.13e-08, - "frf": 5.13e-08, - "frow": 5.13e-08, - "fuckn": 5.13e-08, - "fucko": 5.13e-08, - "fujiyama": 5.13e-08, - "fumigating": 5.13e-08, - "furber": 5.13e-08, - "gadamer": 5.13e-08, - "gaffs": 5.13e-08, - "garifuna": 5.13e-08, - "garstang": 5.13e-08, - "gaulles": 5.13e-08, - "gbt": 5.13e-08, - "geil": 5.13e-08, - "gellius": 5.13e-08, - "genest": 5.13e-08, - "genuflect": 5.13e-08, - "gerb": 5.13e-08, - "gger": 5.13e-08, - "ggp": 5.13e-08, - "ghr": 5.13e-08, - "gilli": 5.13e-08, - "gimple": 5.13e-08, - "gine": 5.13e-08, - "ginsburgs": 5.13e-08, - "giordanos": 5.13e-08, - "gipps": 5.13e-08, - "gisbergen": 5.13e-08, - "glencross": 5.13e-08, - "gmv": 5.13e-08, - "goldston": 5.13e-08, - "gonn": 5.13e-08, - "goves": 5.13e-08, - "governer": 5.13e-08, - "goyard": 5.13e-08, - "gracy": 5.13e-08, - "grammophon": 5.13e-08, - "greenmount": 5.13e-08, - "greenvale": 5.13e-08, - "greyhawk": 5.13e-08, - "greywater": 5.13e-08, - "gristmill": 5.13e-08, - "grl": 5.13e-08, - "grobe": 5.13e-08, - "grossen": 5.13e-08, - "groundcover": 5.13e-08, - "gtpases": 5.13e-08, - "guddu": 5.13e-08, - "gushers": 5.13e-08, - "gussied": 5.13e-08, - "gvsu": 5.13e-08, - "gwc": 5.13e-08, - "gypsys": 5.13e-08, - "haaaa": 5.13e-08, - "hagfish": 5.13e-08, - "hailie": 5.13e-08, - "hairnet": 5.13e-08, - "hakuba": 5.13e-08, - "hallucinates": 5.13e-08, - "hamari": 5.13e-08, - "hambantota": 5.13e-08, - "handier": 5.13e-08, - "handoffs": 5.13e-08, - "hanjin": 5.13e-08, - "hanleys": 5.13e-08, - "hanlons": 5.13e-08, - "hanshin": 5.13e-08, - "harborne": 5.13e-08, - "harpooned": 5.13e-08, - "hartt": 5.13e-08, - "hasbara": 5.13e-08, - "hashrate": 5.13e-08, - "hatchs": 5.13e-08, - "headon": 5.13e-08, - "heartwrenching": 5.13e-08, - "hebb": 5.13e-08, - "heidelberger": 5.13e-08, - "heini": 5.13e-08, - "hekmatyar": 5.13e-08, - "hektor": 5.13e-08, - "henricus": 5.13e-08, - "hesi": 5.13e-08, - "hibernates": 5.13e-08, - "hice": 5.13e-08, - "highscore": 5.13e-08, - "hightown": 5.13e-08, - "hitchings": 5.13e-08, - "hku": 5.13e-08, - "holberg": 5.13e-08, - "holcim": 5.13e-08, - "homomorphic": 5.13e-08, - "hoople": 5.13e-08, - "hornbills": 5.13e-08, - "horowitzs": 5.13e-08, - "hottentots": 5.13e-08, - "hourani": 5.13e-08, - "housefull": 5.13e-08, - "hulst": 5.13e-08, - "hutts": 5.13e-08, - "hybris": 5.13e-08, - "hyneman": 5.13e-08, - "hypnotizes": 5.13e-08, - "idve": 5.13e-08, - "ial": 5.13e-08, - "iaps": 5.13e-08, - "iberdrola": 5.13e-08, - "ibotta": 5.13e-08, - "ichthyosaurs": 5.13e-08, - "icma": 5.13e-08, - "ideograms": 5.13e-08, - "ideographic": 5.13e-08, - "idont": 5.13e-08, - "ieps": 5.13e-08, - "iest": 5.13e-08, - "iestyn": 5.13e-08, - "igbos": 5.13e-08, - "iheanacho": 5.13e-08, - "ilic": 5.13e-08, - "illest": 5.13e-08, - "immunomodulatory": 5.13e-08, - "immunosuppressed": 5.13e-08, - "imposture": 5.13e-08, - "incarcerations": 5.13e-08, - "indrajit": 5.13e-08, - "ined": 5.13e-08, - "infilling": 5.13e-08, - "infomation": 5.13e-08, - "inhalations": 5.13e-08, - "inoki": 5.13e-08, - "inquirys": 5.13e-08, - "insanitary": 5.13e-08, - "insu": 5.13e-08, - "insur": 5.13e-08, - "insurgence": 5.13e-08, - "intarsia": 5.13e-08, - "intercommunal": 5.13e-08, - "intermittency": 5.13e-08, - "interstitials": 5.13e-08, - "introd": 5.13e-08, - "intubate": 5.13e-08, - "invasively": 5.13e-08, - "invigorates": 5.13e-08, - "inzamam": 5.13e-08, - "iria": 5.13e-08, - "ironmongery": 5.13e-08, - "irrigators": 5.13e-08, - "ishigaki": 5.13e-08, - "isolations": 5.13e-08, - "isotherms": 5.13e-08, - "ivankas": 5.13e-08, - "iwaki": 5.13e-08, - "izabella": 5.13e-08, - "jabroni": 5.13e-08, - "jackoff": 5.13e-08, - "jacs": 5.13e-08, - "jadwiga": 5.13e-08, - "janay": 5.13e-08, - "jarkko": 5.13e-08, - "jarmo": 5.13e-08, - "jaspar": 5.13e-08, - "jataka": 5.13e-08, - "jcl": 5.13e-08, - "jehoiakim": 5.13e-08, - "jellinek": 5.13e-08, - "jiminez": 5.13e-08, - "jjb": 5.13e-08, - "joep": 5.13e-08, - "jolliffe": 5.13e-08, - "jongg": 5.13e-08, - "josepha": 5.13e-08, - "juegos": 5.13e-08, - "juiciness": 5.13e-08, - "jurado": 5.13e-08, - "justiciar": 5.13e-08, - "jvr": 5.13e-08, - "jws": 5.13e-08, - "kakyoin": 5.13e-08, - "kalis": 5.13e-08, - "kanawa": 5.13e-08, - "kancolle": 5.13e-08, - "kantrowitz": 5.13e-08, - "kanwal": 5.13e-08, - "kapellmeister": 5.13e-08, - "karie": 5.13e-08, - "karter": 5.13e-08, - "katonah": 5.13e-08, - "kavitha": 5.13e-08, - "kawasakis": 5.13e-08, - "kayley": 5.13e-08, - "kazunori": 5.13e-08, - "keelung": 5.13e-08, - "keiretsu": 5.13e-08, - "kelsie": 5.13e-08, - "kenwright": 5.13e-08, - "kerrigans": 5.13e-08, - "kestner": 5.13e-08, - "kets": 5.13e-08, - "khari": 5.13e-08, - "khaya": 5.13e-08, - "kiani": 5.13e-08, - "kibbles": 5.13e-08, - "kielder": 5.13e-08, - "kilifi": 5.13e-08, - "kimbell": 5.13e-08, - "kincade": 5.13e-08, - "kindreds": 5.13e-08, - "kiowas": 5.13e-08, - "kippah": 5.13e-08, - "kittitas": 5.13e-08, - "kliment": 5.13e-08, - "klock": 5.13e-08, - "kochhar": 5.13e-08, - "koechlin": 5.13e-08, - "kolyma": 5.13e-08, - "kourou": 5.13e-08, - "krugmans": 5.13e-08, - "ktn": 5.13e-08, - "kuchi": 5.13e-08, - "kule": 5.13e-08, - "kult": 5.13e-08, - "kumba": 5.13e-08, - "kuroshio": 5.13e-08, - "kushida": 5.13e-08, - "laberge": 5.13e-08, - "labrie": 5.13e-08, - "lacerate": 5.13e-08, - "laich": 5.13e-08, - "laidler": 5.13e-08, - "lambourn": 5.13e-08, - "lamivudine": 5.13e-08, - "lapdance": 5.13e-08, - "lapine": 5.13e-08, - "larrikin": 5.13e-08, - "lasa": 5.13e-08, - "lasco": 5.13e-08, - "lassitude": 5.13e-08, - "latini": 5.13e-08, - "latur": 5.13e-08, - "laury": 5.13e-08, - "laviolette": 5.13e-08, - "lcdr": 5.13e-08, - "leanest": 5.13e-08, - "learmonth": 5.13e-08, - "leasable": 5.13e-08, - "legh": 5.13e-08, - "legros": 5.13e-08, - "lenski": 5.13e-08, - "leroys": 5.13e-08, - "lesnars": 5.13e-08, - "levent": 5.13e-08, - "lews": 5.13e-08, - "liberte": 5.13e-08, - "lieven": 5.13e-08, - "likeliness": 5.13e-08, - "lincolnton": 5.13e-08, - "linzi": 5.13e-08, - "lochalsh": 5.13e-08, - "locher": 5.13e-08, - "loftis": 5.13e-08, - "lorraines": 5.13e-08, - "lothair": 5.13e-08, - "lotos": 5.13e-08, - "loudmouthed": 5.13e-08, - "lpf": 5.13e-08, - "lumbers": 5.13e-08, - "lvp": 5.13e-08, - "lybrand": 5.13e-08, - "lydda": 5.13e-08, - "lyster": 5.13e-08, - "macari": 5.13e-08, - "macbeths": 5.13e-08, - "maccormac": 5.13e-08, - "maccormack": 5.13e-08, - "mackellar": 5.13e-08, - "macklemores": 5.13e-08, - "macquaries": 5.13e-08, - "macroscopically": 5.13e-08, - "madres": 5.13e-08, - "magalona": 5.13e-08, - "mahadeva": 5.13e-08, - "maintenon": 5.13e-08, - "maisha": 5.13e-08, - "maithripala": 5.13e-08, - "maladroit": 5.13e-08, - "malolos": 5.13e-08, - "malva": 5.13e-08, - "mancos": 5.13e-08, - "mandl": 5.13e-08, - "manitoulin": 5.13e-08, - "manzanares": 5.13e-08, - "mappa": 5.13e-08, - "maquoketa": 5.13e-08, - "margera": 5.13e-08, - "marginality": 5.13e-08, - "marginalizes": 5.13e-08, - "mariachis": 5.13e-08, - "mariadb": 5.13e-08, - "marians": 5.13e-08, - "marieke": 5.13e-08, - "marins": 5.13e-08, - "marinko": 5.13e-08, - "marketings": 5.13e-08, - "marketo": 5.13e-08, - "markova": 5.13e-08, - "masbate": 5.13e-08, - "mashpee": 5.13e-08, - "masseurs": 5.13e-08, - "mauchline": 5.13e-08, - "mauras": 5.13e-08, - "maximizer": 5.13e-08, - "mayak": 5.13e-08, - "mayol": 5.13e-08, - "mazin": 5.13e-08, - "mazzoni": 5.13e-08, - "mcandrews": 5.13e-08, - "mccaskey": 5.13e-08, - "mccone": 5.13e-08, - "mcelwee": 5.13e-08, - "mcgahee": 5.13e-08, - "mcgarrett": 5.13e-08, - "mcgaw": 5.13e-08, - "medecine": 5.13e-08, - "medela": 5.13e-08, - "megatrends": 5.13e-08, - "melanesians": 5.13e-08, - "mendels": 5.13e-08, - "menil": 5.13e-08, - "meowed": 5.13e-08, - "meramec": 5.13e-08, - "mercatus": 5.13e-08, - "meshwork": 5.13e-08, - "mesi": 5.13e-08, - "messala": 5.13e-08, - "metalic": 5.13e-08, - "methow": 5.13e-08, - "metrolinx": 5.13e-08, - "metzner": 5.13e-08, - "mgu": 5.13e-08, - "michaelia": 5.13e-08, - "microchannel": 5.13e-08, - "microgrid": 5.13e-08, - "mida": 5.13e-08, - "midnapore": 5.13e-08, - "milhaud": 5.13e-08, - "milind": 5.13e-08, - "milito": 5.13e-08, - "milles": 5.13e-08, - "milliman": 5.13e-08, - "millin": 5.13e-08, - "minal": 5.13e-08, - "mindscape": 5.13e-08, - "minervas": 5.13e-08, - "ministration": 5.13e-08, - "mirtazapine": 5.13e-08, - "mishandle": 5.13e-08, - "misplayed": 5.13e-08, - "mithila": 5.13e-08, - "mixologists": 5.13e-08, - "mlps": 5.13e-08, - "modcloth": 5.13e-08, - "modulatory": 5.13e-08, - "moel": 5.13e-08, - "monalisa": 5.13e-08, - "monfort": 5.13e-08, - "monier": 5.13e-08, - "morand": 5.13e-08, - "morarji": 5.13e-08, - "morillo": 5.13e-08, - "mortadella": 5.13e-08, - "motos": 5.13e-08, - "mrad": 5.13e-08, - "mtech": 5.13e-08, - "muf": 5.13e-08, - "muffles": 5.13e-08, - "mujuru": 5.13e-08, - "multiphoton": 5.13e-08, - "multitouch": 5.13e-08, - "munakata": 5.13e-08, - "muntari": 5.13e-08, - "musashino": 5.13e-08, - "mutare": 5.13e-08, - "mycelial": 5.13e-08, - "mycotoxin": 5.13e-08, - "myrtles": 5.13e-08, - "mystikal": 5.13e-08, - "nacion": 5.13e-08, - "nahid": 5.13e-08, - "nakamuras": 5.13e-08, - "narelle": 5.13e-08, - "naresuan": 5.13e-08, - "nationales": 5.13e-08, - "navara": 5.13e-08, - "nayeon": 5.13e-08, - "ncea": 5.13e-08, - "neagle": 5.13e-08, - "neema": 5.13e-08, - "neen": 5.13e-08, - "neonicotinoid": 5.13e-08, - "nere": 5.13e-08, - "netz": 5.13e-08, - "nexo": 5.13e-08, - "nguyens": 5.13e-08, - "niarchos": 5.13e-08, - "nicco": 5.13e-08, - "niehaus": 5.13e-08, - "nigers": 5.13e-08, - "nihongo": 5.13e-08, - "ninds": 5.13e-08, - "ninetales": 5.13e-08, - "nivolumab": 5.13e-08, - "nku": 5.13e-08, - "nkurunziza": 5.13e-08, - "nolde": 5.13e-08, - "nomex": 5.13e-08, - "noomi": 5.13e-08, - "noons": 5.13e-08, - "noordwijk": 5.13e-08, - "northcentral": 5.13e-08, - "npsl": 5.13e-08, - "nrma": 5.13e-08, - "nrx": 5.13e-08, - "nty": 5.13e-08, - "numeration": 5.13e-08, - "numismatist": 5.13e-08, - "nunchaku": 5.13e-08, - "nwosu": 5.13e-08, - "nyang": 5.13e-08, - "nysa": 5.13e-08, - "oakenfold": 5.13e-08, - "ofher": 5.13e-08, - "ogie": 5.13e-08, - "ogoni": 5.13e-08, - "ohe": 5.13e-08, - "oing": 5.13e-08, - "oligomer": 5.13e-08, - "opryland": 5.13e-08, - "optica": 5.13e-08, - "ordinals": 5.13e-08, - "orexin": 5.13e-08, - "orgasmed": 5.13e-08, - "orrell": 5.13e-08, - "orso": 5.13e-08, - "osg": 5.13e-08, - "osmolality": 5.13e-08, - "osservatore": 5.13e-08, - "otk": 5.13e-08, - "outgrowths": 5.13e-08, - "outsells": 5.13e-08, - "ovenden": 5.13e-08, - "overextend": 5.13e-08, - "overmuch": 5.13e-08, - "owais": 5.13e-08, - "oxana": 5.13e-08, - "oxman": 5.13e-08, - "ozai": 5.13e-08, - "paceman": 5.13e-08, - "pagenaud": 5.13e-08, - "paintjob": 5.13e-08, - "paktika": 5.13e-08, - "palast": 5.13e-08, - "paleoclimate": 5.13e-08, - "pallotta": 5.13e-08, - "panamax": 5.13e-08, - "pancaked": 5.13e-08, - "paos": 5.13e-08, - "parenteau": 5.13e-08, - "parineeti": 5.13e-08, - "parksville": 5.13e-08, - "pashas": 5.13e-08, - "pasto": 5.13e-08, - "pavlovna": 5.13e-08, - "paxos": 5.13e-08, - "pcgaming": 5.13e-08, - "pdw": 5.13e-08, - "pearle": 5.13e-08, - "pecora": 5.13e-08, - "pederast": 5.13e-08, - "pedraza": 5.13e-08, - "peierls": 5.13e-08, - "pekoe": 5.13e-08, - "peleus": 5.13e-08, - "pentacles": 5.13e-08, - "pepo": 5.13e-08, - "percolates": 5.13e-08, - "peridotite": 5.13e-08, - "periodontology": 5.13e-08, - "peroxisomes": 5.13e-08, - "perriman": 5.13e-08, - "persistant": 5.13e-08, - "pertamina": 5.13e-08, - "perthes": 5.13e-08, - "pervasively": 5.13e-08, - "petrodollar": 5.13e-08, - "petrovitch": 5.13e-08, - "petteri": 5.13e-08, - "pettiest": 5.13e-08, - "pfg": 5.13e-08, - "phifer": 5.13e-08, - "philadelphus": 5.13e-08, - "phillie": 5.13e-08, - "phlogiston": 5.13e-08, - "photodiodes": 5.13e-08, - "photostat": 5.13e-08, - "phrenic": 5.13e-08, - "phytochemical": 5.13e-08, - "pierogies": 5.13e-08, - "piggledy": 5.13e-08, - "pigman": 5.13e-08, - "pikesville": 5.13e-08, - "pinchers": 5.13e-08, - "pinedale": 5.13e-08, - "pinpricks": 5.13e-08, - "pinups": 5.13e-08, - "pinzon": 5.13e-08, - "pkt": 5.13e-08, - "plattner": 5.13e-08, - "platy": 5.13e-08, - "pleyel": 5.13e-08, - "pluggable": 5.13e-08, - "plummy": 5.13e-08, - "pnh": 5.13e-08, - "poesia": 5.13e-08, - "poin": 5.13e-08, - "politkovskaya": 5.13e-08, - "polymorpha": 5.13e-08, - "polymorphs": 5.13e-08, - "polys": 5.13e-08, - "porns": 5.13e-08, - "portstewart": 5.13e-08, - "portwood": 5.13e-08, - "postmodernity": 5.13e-08, - "poty": 5.13e-08, - "powles": 5.13e-08, - "ppy": 5.13e-08, - "prachi": 5.13e-08, - "pradeshs": 5.13e-08, - "prageru": 5.13e-08, - "prca": 5.13e-08, - "prefontaine": 5.13e-08, - "preloved": 5.13e-08, - "preme": 5.13e-08, - "presnell": 5.13e-08, - "prezzo": 5.13e-08, - "prisca": 5.13e-08, - "priscillas": 5.13e-08, - "profiteroles": 5.13e-08, - "progestogen": 5.13e-08, - "prograde": 5.13e-08, - "proofreaders": 5.13e-08, - "propagandize": 5.13e-08, - "prostrating": 5.13e-08, - "prothonotary": 5.13e-08, - "protozoans": 5.13e-08, - "provincialism": 5.13e-08, - "provosts": 5.01e-08, - "psuedo": 5.13e-08, - "pubescence": 5.13e-08, - "puckers": 5.13e-08, - "puds": 5.13e-08, - "punctatus": 5.13e-08, - "putamen": 5.13e-08, - "pyrrha": 5.13e-08, - "qaly": 5.13e-08, - "qna": 5.13e-08, - "quare": 5.13e-08, - "querido": 5.13e-08, - "quil": 5.13e-08, - "raam": 5.13e-08, - "raas": 5.13e-08, - "racin": 5.13e-08, - "rafaela": 5.13e-08, - "rakan": 5.13e-08, - "raloxifene": 5.13e-08, - "ramgarh": 5.13e-08, - "ramsdell": 5.13e-08, - "rastafarians": 5.13e-08, - "ratnagiri": 5.13e-08, - "raynaud": 5.13e-08, - "razon": 5.13e-08, - "reassertion": 5.13e-08, - "reciever": 5.13e-08, - "reconcilable": 5.13e-08, - "recruitments": 5.13e-08, - "reduplicated": 5.13e-08, - "redwine": 5.13e-08, - "regnant": 5.13e-08, - "regrowing": 5.13e-08, - "reily": 5.13e-08, - "reinforcer": 5.13e-08, - "reinke": 5.13e-08, - "rej": 5.13e-08, - "relaciones": 5.13e-08, - "relentlessness": 5.13e-08, - "remixer": 5.13e-08, - "remmy": 5.13e-08, - "renmark": 5.13e-08, - "restyling": 5.13e-08, - "retros": 5.13e-08, - "retta": 5.13e-08, - "revenger": 5.13e-08, - "reverbs": 5.13e-08, - "rexy": 5.13e-08, - "reymond": 5.13e-08, - "rft": 5.13e-08, - "rhodian": 5.13e-08, - "riesen": 5.13e-08, - "rigi": 5.13e-08, - "rigidities": 5.13e-08, - "rigth": 5.13e-08, - "riiiight": 5.13e-08, - "ringworld": 5.13e-08, - "riotously": 5.13e-08, - "riveters": 5.13e-08, - "rks": 5.13e-08, - "rocs": 5.13e-08, - "rockit": 5.13e-08, - "rodina": 5.13e-08, - "roessler": 5.13e-08, - "roloff": 5.13e-08, - "romagnoli": 5.13e-08, - "romanos": 5.13e-08, - "romcoms": 5.13e-08, - "ronkonkoma": 5.13e-08, - "rosenbach": 5.13e-08, - "rothermere": 5.13e-08, - "roundwood": 5.13e-08, - "routings": 5.13e-08, - "rrl": 5.13e-08, - "rumps": 5.13e-08, - "russie": 5.13e-08, - "ryung": 5.13e-08, - "salcido": 5.13e-08, - "saltbush": 5.13e-08, - "samana": 5.13e-08, - "samuele": 5.13e-08, - "sancto": 5.13e-08, - "sandesh": 5.13e-08, - "sandf": 5.13e-08, - "sandover": 5.13e-08, - "sange": 5.13e-08, - "sanon": 5.13e-08, - "sapi": 5.13e-08, - "sarasin": 5.13e-08, - "sargento": 5.13e-08, - "sarker": 5.13e-08, - "sarkozys": 5.13e-08, - "satnam": 5.13e-08, - "saulnier": 5.13e-08, - "sauveur": 5.13e-08, - "savea": 5.13e-08, - "scaf": 5.13e-08, - "scandrick": 5.13e-08, - "scaramanga": 5.13e-08, - "scarpetta": 5.13e-08, - "schantz": 5.13e-08, - "scheisse": 5.13e-08, - "schoonover": 5.13e-08, - "schweiger": 5.13e-08, - "scoggins": 5.13e-08, - "screechy": 5.13e-08, - "seann": 5.13e-08, - "seck": 5.13e-08, - "secolo": 5.13e-08, - "seethes": 5.13e-08, - "selex": 5.13e-08, - "selfdefense": 5.13e-08, - "sendero": 5.13e-08, - "sendmail": 5.13e-08, - "sequeira": 5.13e-08, - "seraglio": 5.13e-08, - "seriess": 5.13e-08, - "sextape": 5.13e-08, - "seydou": 5.13e-08, - "sfd": 5.13e-08, - "shailesh": 5.13e-08, - "shakeology": 5.13e-08, - "shatners": 5.13e-08, - "sheema": 5.13e-08, - "shehbaz": 5.13e-08, - "sheller": 5.13e-08, - "sheperd": 5.13e-08, - "shettima": 5.13e-08, - "shirer": 5.13e-08, - "shirting": 5.13e-08, - "shirtwaist": 5.13e-08, - "shitholes": 5.13e-08, - "shitters": 5.13e-08, - "shogo": 5.13e-08, - "shoguns": 5.13e-08, - "shriram": 5.13e-08, - "signposting": 5.13e-08, - "silwan": 5.13e-08, - "simula": 5.13e-08, - "sirk": 5.13e-08, - "skeevy": 5.13e-08, - "skelmersdale": 5.13e-08, - "skilton": 5.13e-08, - "skiving": 5.13e-08, - "slavonia": 5.13e-08, - "slomo": 5.13e-08, - "slowdive": 5.13e-08, - "snapdragons": 5.13e-08, - "snick": 5.13e-08, - "snifter": 5.13e-08, - "snowglobe": 5.13e-08, - "sociologie": 5.13e-08, - "soever": 5.13e-08, - "sorbets": 5.13e-08, - "soror": 5.13e-08, - "sotheby": 5.13e-08, - "soundest": 5.13e-08, - "soundman": 5.13e-08, - "soundwaves": 5.13e-08, - "southcentral": 5.13e-08, - "southwind": 5.13e-08, - "speake": 5.13e-08, - "spektrum": 5.13e-08, - "spex": 5.13e-08, - "splurges": 5.13e-08, - "sporophyte": 5.13e-08, - "sprog": 5.13e-08, - "spurling": 5.13e-08, - "squaws": 5.13e-08, - "sremmurd": 5.13e-08, - "ssas": 5.13e-08, - "stanislavski": 5.13e-08, - "stassi": 5.13e-08, - "steem": 5.13e-08, - "stefanik": 5.13e-08, - "stentorian": 5.13e-08, - "stepmothers": 5.13e-08, - "stereoscope": 5.13e-08, - "sticklebacks": 5.13e-08, - "stockmann": 5.13e-08, - "stoles": 5.13e-08, - "stoneleigh": 5.13e-08, - "strangulated": 5.13e-08, - "stransky": 5.13e-08, - "strigoi": 5.13e-08, - "strikebreakers": 5.13e-08, - "stus": 5.13e-08, - "subbu": 5.13e-08, - "submissively": 5.13e-08, - "sugihara": 5.13e-08, - "sugimura": 5.13e-08, - "sulle": 5.13e-08, - "sundquist": 5.13e-08, - "sunnybank": 5.13e-08, - "supercollider": 5.13e-08, - "surfrider": 5.13e-08, - "surve": 5.13e-08, - "survivin": 5.13e-08, - "suttle": 5.13e-08, - "swigging": 5.13e-08, - "syncline": 5.13e-08, - "tabac": 5.13e-08, - "tabl": 5.13e-08, - "tahari": 5.13e-08, - "taio": 5.13e-08, - "tamalpais": 5.13e-08, - "tantras": 5.13e-08, - "teamers": 5.13e-08, - "tebows": 5.13e-08, - "teched": 5.13e-08, - "teco": 5.13e-08, - "tedy": 5.13e-08, - "teemed": 5.13e-08, - "teepees": 5.13e-08, - "tegmental": 5.13e-08, - "tejpal": 5.13e-08, - "teleost": 5.13e-08, - "teleplay": 5.13e-08, - "teli": 5.13e-08, - "telia": 5.13e-08, - "tellme": 5.13e-08, - "tempelhof": 5.13e-08, - "templetons": 5.13e-08, - "teq": 5.13e-08, - "tequesta": 5.13e-08, - "terni": 5.13e-08, - "terrae": 5.13e-08, - "terrel": 5.13e-08, - "terres": 5.13e-08, - "tesfaye": 5.13e-08, - "testings": 5.13e-08, - "tetroxide": 5.13e-08, - "tgirl": 5.13e-08, - "thanes": 5.13e-08, - "thermocline": 5.13e-08, - "thesiger": 5.13e-08, - "thinketh": 5.13e-08, - "thnk": 5.13e-08, - "thomistic": 5.13e-08, - "thoug": 5.13e-08, - "tichy": 5.13e-08, - "ticktock": 5.13e-08, - "tindale": 5.13e-08, - "tlj": 5.13e-08, - "tmax": 5.13e-08, - "tokushima": 5.13e-08, - "tomblin": 5.13e-08, - "tomentosa": 5.13e-08, - "tona": 5.13e-08, - "tongariro": 5.13e-08, - "tonioli": 5.13e-08, - "toolmaker": 5.13e-08, - "toothsome": 5.13e-08, - "torbjorn": 5.13e-08, - "toriko": 5.13e-08, - "torreon": 5.13e-08, - "torri": 5.13e-08, - "tostring": 5.13e-08, - "totowa": 5.13e-08, - "towelling": 5.13e-08, - "tracfone": 5.13e-08, - "trackway": 5.13e-08, - "trademarking": 5.13e-08, - "transfinite": 5.13e-08, - "transhuman": 5.13e-08, - "transmittable": 5.13e-08, - "traverso": 5.13e-08, - "travoltas": 5.13e-08, - "treehouses": 5.13e-08, - "triaxial": 5.13e-08, - "tripwires": 5.13e-08, - "tsou": 5.13e-08, - "tucky": 5.13e-08, - "tufte": 5.13e-08, - "tupe": 5.13e-08, - "turriff": 5.13e-08, - "tuta": 5.13e-08, - "tweeddale": 5.13e-08, - "twelvetrees": 5.13e-08, - "twirly": 5.13e-08, - "tyrael": 5.13e-08, - "tzus": 5.13e-08, - "ugi": 5.13e-08, - "ugk": 5.13e-08, - "ultrastructural": 5.13e-08, - "ulva": 5.13e-08, - "unalaska": 5.13e-08, - "unbalancing": 5.13e-08, - "unconvincingly": 5.13e-08, - "underbite": 5.13e-08, - "underutilization": 5.13e-08, - "undistorted": 5.13e-08, - "undistributed": 5.13e-08, - "unhooking": 5.13e-08, - "unintuitive": 5.13e-08, - "unmetered": 5.13e-08, - "unreached": 5.13e-08, - "untutored": 5.13e-08, - "unwto": 5.13e-08, - "upv": 5.13e-08, - "urease": 5.13e-08, - "uruzgan": 5.13e-08, - "usia": 5.13e-08, - "usma": 5.13e-08, - "uuid": 5.13e-08, - "uuu": 5.13e-08, - "vacillation": 5.13e-08, - "vacuity": 5.13e-08, - "valerii": 5.13e-08, - "vandalise": 5.13e-08, - "vanderburgh": 5.13e-08, - "variegata": 5.13e-08, - "vbr": 5.13e-08, - "veeder": 5.13e-08, - "venez": 5.13e-08, - "venkateswara": 5.13e-08, - "vercingetorix": 5.13e-08, - "versi": 5.13e-08, - "viall": 5.13e-08, - "vibeke": 5.13e-08, - "viceregal": 5.13e-08, - "vich": 5.13e-08, - "vides": 5.13e-08, - "vijayanagar": 5.13e-08, - "vikramaditya": 5.13e-08, - "villanelle": 5.13e-08, - "villefort": 5.13e-08, - "vinnys": 5.13e-08, - "violante": 5.13e-08, - "virtuously": 5.13e-08, - "viscosities": 5.13e-08, - "volleying": 5.13e-08, - "vorarlberg": 5.13e-08, - "vornado": 5.13e-08, - "waaaah": 5.13e-08, - "wahroonga": 5.13e-08, - "wakin": 5.13e-08, - "waldon": 5.13e-08, - "walketh": 5.13e-08, - "walloping": 5.13e-08, - "warnes": 5.13e-08, - "watchwords": 5.13e-08, - "watsky": 5.13e-08, - "waya": 5.13e-08, - "wbbm": 5.13e-08, - "weei": 5.13e-08, - "wellborn": 5.13e-08, - "wemo": 5.13e-08, - "wentzel": 5.13e-08, - "westerberg": 5.13e-08, - "wgu": 5.13e-08, - "wheatcroft": 5.13e-08, - "wheezed": 5.13e-08, - "whelans": 5.13e-08, - "whil": 5.13e-08, - "wicketless": 5.13e-08, - "wildin": 5.13e-08, - "wilkesboro": 5.13e-08, - "willen": 5.13e-08, - "willer": 5.13e-08, - "windpower": 5.13e-08, - "windrunner": 5.13e-08, - "wist": 5.13e-08, - "wla": 5.13e-08, - "wojcik": 5.13e-08, - "wolfenden": 5.13e-08, - "woolens": 5.13e-08, - "woollard": 5.13e-08, - "worryin": 5.13e-08, - "wroe": 5.13e-08, - "wtvr": 5.13e-08, - "wwp": 5.13e-08, - "xolo": 5.13e-08, - "yaaa": 5.13e-08, - "yaacov": 5.13e-08, - "yakin": 5.13e-08, - "yawing": 5.13e-08, - "yeardley": 5.13e-08, - "yeeeah": 5.13e-08, - "yellowjackets": 5.13e-08, - "yeppoon": 5.13e-08, - "yocum": 5.13e-08, - "yolngu": 5.13e-08, - "yorck": 5.13e-08, - "yorubas": 5.13e-08, - "yoshitaka": 5.13e-08, - "yoyogi": 5.13e-08, - "ysabel": 5.13e-08, - "yunas": 5.13e-08, - "yushin": 5.13e-08, - "yuuko": 5.13e-08, - "zedds": 5.13e-08, - "zef": 5.13e-08, - "zeleny": 5.13e-08, - "zenda": 5.13e-08, - "zera": 5.13e-08, - "zings": 5.13e-08, - "zongo": 5.13e-08, - "zorya": 5.13e-08, - "zuccarello": 5.13e-08, - "zuzana": 5.13e-08, - "zvonareva": 5.13e-08, - "aay": 5.01e-08, - "accreting": 5.01e-08, - "achan": 5.01e-08, - "achoo": 5.01e-08, - "acquirement": 5.01e-08, - "actaeon": 5.01e-08, - "adafruit": 5.01e-08, - "adamas": 2.63e-08, - "adde": 5.01e-08, - "adell": 5.01e-08, - "adiponectin": 5.01e-08, - "adumim": 5.01e-08, - "aerators": 5.01e-08, - "aerosmiths": 5.01e-08, - "afferents": 5.01e-08, - "africanamerican": 5.01e-08, - "afshin": 5.01e-08, - "agag": 5.01e-08, - "agbaje": 5.01e-08, - "agco": 5.01e-08, - "agrigento": 5.01e-08, - "akimoto": 5.01e-08, - "akshaya": 5.01e-08, - "akula": 5.01e-08, - "aldol": 5.01e-08, - "aleta": 5.01e-08, - "alief": 5.01e-08, - "aliev": 5.01e-08, - "alit": 5.01e-08, - "alizadeh": 5.01e-08, - "alkan": 5.01e-08, - "almunia": 5.01e-08, - "alona": 5.01e-08, - "alstyne": 5.01e-08, - "alternaria": 5.01e-08, - "altoids": 5.01e-08, - "altri": 5.01e-08, - "altura": 5.01e-08, - "alwan": 5.01e-08, - "amando": 5.01e-08, - "ambulant": 5.01e-08, - "americanist": 5.01e-08, - "amfar": 5.01e-08, - "ammendment": 5.01e-08, - "ammonius": 5.01e-08, - "amnh": 5.01e-08, - "amphitryon": 5.01e-08, - "ancel": 5.01e-08, - "andamans": 5.01e-08, - "angelia": 5.01e-08, - "angelini": 5.01e-08, - "anisha": 5.01e-08, - "annabels": 5.01e-08, - "annatto": 5.01e-08, - "anneal": 5.01e-08, - "anniversaire": 5.01e-08, - "annuls": 5.01e-08, - "ansaldo": 5.01e-08, - "antabuse": 5.01e-08, - "antagonising": 5.01e-08, - "antidiabetic": 5.01e-08, - "antillean": 5.01e-08, - "antinuclear": 5.01e-08, - "antiracist": 5.01e-08, - "anyth": 5.01e-08, - "anyting": 5.01e-08, - "aout": 5.01e-08, - "aparicio": 5.01e-08, - "aplysia": 5.01e-08, - "applebee": 5.01e-08, - "applescript": 5.01e-08, - "archrivals": 5.01e-08, - "ardea": 5.01e-08, - "ardi": 5.01e-08, - "areolas": 5.01e-08, - "arikara": 5.01e-08, - "aristobulus": 5.01e-08, - "arjuns": 5.01e-08, - "armi": 5.01e-08, - "arreola": 5.01e-08, - "arrgh": 5.01e-08, - "arriola": 5.01e-08, - "arterials": 5.01e-08, - "articuno": 5.01e-08, - "arvidsson": 5.01e-08, - "asako": 5.01e-08, - "asie": 5.01e-08, - "asphodel": 5.01e-08, - "asscher": 5.01e-08, - "assise": 5.01e-08, - "asuma": 5.01e-08, - "atef": 5.01e-08, - "atlantique": 5.01e-08, - "atley": 5.01e-08, - "audibles": 5.01e-08, - "augusten": 5.01e-08, - "auricle": 5.01e-08, - "auriga": 5.01e-08, - "auteuil": 5.01e-08, - "autocephalous": 5.01e-08, - "autocrine": 5.01e-08, - "avex": 5.01e-08, - "avie": 5.01e-08, - "awana": 5.01e-08, - "awar": 5.01e-08, - "awwa": 5.01e-08, - "ayda": 5.01e-08, - "aydan": 5.01e-08, - "azamat": 5.01e-08, - "azlan": 5.01e-08, - "bacary": 5.01e-08, - "backe": 5.01e-08, - "backends": 5.01e-08, - "backhoes": 5.01e-08, - "backlist": 5.01e-08, - "backpay": 5.01e-08, - "backstairs": 5.01e-08, - "badda": 5.01e-08, - "bafflingly": 5.01e-08, - "bakit": 5.01e-08, - "balloch": 5.01e-08, - "ballons": 5.01e-08, - "baofeng": 5.01e-08, - "barin": 5.01e-08, - "barisal": 5.01e-08, - "barsky": 5.01e-08, - "basecoat": 5.01e-08, - "bataclan": 5.01e-08, - "batok": 5.01e-08, - "batta": 5.01e-08, - "bcz": 5.01e-08, - "bdrm": 5.01e-08, - "bearman": 5.01e-08, - "beatmania": 5.01e-08, - "beaumonts": 5.01e-08, - "beauti": 5.01e-08, - "beel": 5.01e-08, - "beier": 5.01e-08, - "bellay": 5.01e-08, - "bellion": 5.01e-08, - "belousov": 5.01e-08, - "benga": 5.01e-08, - "benjen": 5.01e-08, - "benzs": 5.01e-08, - "benzedrine": 5.01e-08, - "benzino": 5.01e-08, - "berek": 5.01e-08, - "berengar": 5.01e-08, - "berio": 5.01e-08, - "bermudagrass": 5.01e-08, - "bernardine": 5.01e-08, - "berseria": 5.01e-08, - "berwind": 5.01e-08, - "besancon": 5.01e-08, - "betamethasone": 5.01e-08, - "bgh": 5.01e-08, - "bhagavata": 5.01e-08, - "bickmore": 5.01e-08, - "biderman": 5.01e-08, - "bidvest": 5.01e-08, - "bifunctional": 5.01e-08, - "biji": 5.01e-08, - "biletnikoff": 5.01e-08, - "biocides": 5.01e-08, - "bioethical": 5.01e-08, - "bionomics": 5.01e-08, - "birman": 5.01e-08, - "birnam": 5.01e-08, - "bitmex": 5.01e-08, - "bivalent": 5.01e-08, - "blackcap": 5.01e-08, - "blandy": 5.01e-08, - "blauvelt": 5.01e-08, - "blingy": 5.01e-08, - "blough": 5.01e-08, - "bobwhite": 5.01e-08, - "boehmer": 5.01e-08, - "bogside": 5.01e-08, - "bombadil": 5.01e-08, - "bonzi": 5.01e-08, - "booky": 5.01e-08, - "borchers": 5.01e-08, - "borivali": 5.01e-08, - "borris": 5.01e-08, - "borsa": 5.01e-08, - "bouchon": 5.01e-08, - "bourbonnais": 5.01e-08, - "boxford": 5.01e-08, - "boxscore": 5.01e-08, - "boykins": 5.01e-08, - "brahmos": 5.01e-08, - "branaghs": 5.01e-08, - "brandnew": 5.01e-08, - "breitbarts": 5.01e-08, - "brekky": 5.01e-08, - "bremsstrahlung": 5.01e-08, - "bridgers": 5.01e-08, - "bromus": 5.01e-08, - "bronchus": 5.01e-08, - "bronzers": 5.01e-08, - "bror": 5.01e-08, - "btf": 5.01e-08, - "btx": 5.01e-08, - "bucktown": 5.01e-08, - "buckwild": 5.01e-08, - "buddie": 5.01e-08, - "buffa": 5.01e-08, - "bundoora": 5.01e-08, - "burana": 5.01e-08, - "burfict": 5.01e-08, - "burglarizing": 5.01e-08, - "busloads": 5.01e-08, - "butterick": 5.01e-08, - "byl": 5.01e-08, - "cableway": 5.01e-08, - "caddied": 5.01e-08, - "caddying": 5.01e-08, - "cadeau": 5.01e-08, - "cadwaladr": 5.01e-08, - "caelum": 5.01e-08, - "caesura": 5.01e-08, - "calavera": 5.01e-08, - "calin": 5.01e-08, - "caliphates": 5.01e-08, - "calvillo": 5.01e-08, - "camarena": 5.01e-08, - "camos": 5.01e-08, - "camuto": 5.01e-08, - "canaccord": 5.01e-08, - "canalside": 5.01e-08, - "candolle": 5.01e-08, - "canonbury": 5.01e-08, - "capercaillie": 5.01e-08, - "capitis": 5.01e-08, - "capricorns": 5.01e-08, - "caracara": 5.01e-08, - "carby": 5.01e-08, - "careerism": 5.01e-08, - "carita": 5.01e-08, - "carmo": 5.01e-08, - "carmon": 5.01e-08, - "carse": 5.01e-08, - "carsick": 5.01e-08, - "cascara": 5.01e-08, - "casp": 5.01e-08, - "castanea": 5.01e-08, - "castine": 5.01e-08, - "caterwauling": 5.01e-08, - "cauterization": 5.01e-08, - "cavin": 5.01e-08, - "cayton": 5.01e-08, - "cbk": 5.01e-08, - "cdq": 5.01e-08, - "cdrs": 5.01e-08, - "celan": 5.01e-08, - "celek": 5.01e-08, - "centr": 5.01e-08, - "ceramicist": 5.01e-08, - "cerda": 5.01e-08, - "cevallos": 5.01e-08, - "chaika": 5.01e-08, - "chamisa": 5.01e-08, - "champloo": 5.01e-08, - "chandramukhi": 5.01e-08, - "chapos": 5.01e-08, - "charolais": 5.01e-08, - "chemi": 5.01e-08, - "chennault": 5.01e-08, - "cheonan": 5.01e-08, - "cherise": 5.01e-08, - "chiffre": 5.01e-08, - "chii": 5.01e-08, - "chinoy": 5.01e-08, - "chippings": 5.01e-08, - "chirurgie": 5.01e-08, - "chongs": 5.01e-08, - "chope": 5.01e-08, - "chori": 5.01e-08, - "choshu": 5.01e-08, - "christiansburg": 5.01e-08, - "chromogenic": 5.01e-08, - "chronique": 5.01e-08, - "chrys": 5.01e-08, - "chthonic": 5.01e-08, - "chubbier": 5.01e-08, - "chubbuck": 5.01e-08, - "chugga": 5.01e-08, - "chuma": 5.01e-08, - "cicis": 5.01e-08, - "civi": 5.01e-08, - "ciw": 5.01e-08, - "clairol": 5.01e-08, - "clarifier": 5.01e-08, - "clashs": 5.01e-08, - "classi": 5.01e-08, - "clavicles": 5.01e-08, - "clavis": 5.01e-08, - "climat": 5.01e-08, - "closs": 5.01e-08, - "clubby": 5.01e-08, - "cmmi": 5.01e-08, - "coagulopathy": 5.01e-08, - "cobbe": 5.01e-08, - "cockamamie": 5.01e-08, - "coeducation": 5.01e-08, - "coffea": 5.01e-08, - "coinflip": 5.01e-08, - "colina": 5.01e-08, - "coller": 5.01e-08, - "colliculus": 5.01e-08, - "colmans": 5.01e-08, - "colorblindness": 5.01e-08, - "colosimo": 5.01e-08, - "commen": 5.01e-08, - "commensurately": 5.01e-08, - "composts": 5.01e-08, - "comradery": 5.01e-08, - "conboy": 5.01e-08, - "concealable": 5.01e-08, - "concierges": 5.01e-08, - "concocts": 5.01e-08, - "concolor": 5.01e-08, - "concupiscence": 5.01e-08, - "condemnatory": 5.01e-08, - "conemaugh": 5.01e-08, - "conics": 5.01e-08, - "conleys": 5.01e-08, - "conmigo": 5.01e-08, - "constand": 5.01e-08, - "constantinos": 5.01e-08, - "contextualise": 5.01e-08, - "contradistinction": 5.01e-08, - "controle": 5.01e-08, - "cookham": 5.01e-08, - "coppel": 5.01e-08, - "copt": 5.01e-08, - "coralville": 5.01e-08, - "corbridge": 5.01e-08, - "correctors": 5.01e-08, - "cortezs": 5.01e-08, - "costantino": 5.01e-08, - "cotyledon": 5.01e-08, - "cotys": 1.1e-08, - "countr": 5.01e-08, - "covariate": 5.01e-08, - "cowher": 5.01e-08, - "cranborne": 5.01e-08, - "crankset": 5.01e-08, - "crazing": 5.01e-08, - "creer": 5.01e-08, - "crosscutting": 5.01e-08, - "crudity": 5.01e-08, - "crudo": 5.01e-08, - "cryosphere": 5.01e-08, - "cucu": 5.01e-08, - "cusses": 5.01e-08, - "cvb": 5.01e-08, - "dabbler": 5.01e-08, - "daga": 5.01e-08, - "dagestani": 5.01e-08, - "daiki": 5.01e-08, - "dailly": 5.01e-08, - "dajjal": 5.01e-08, - "dalarna": 5.01e-08, - "dampeners": 5.01e-08, - "damselflies": 5.01e-08, - "danged": 5.01e-08, - "dannel": 5.01e-08, - "darek": 5.01e-08, - "datt": 5.01e-08, - "davidian": 5.01e-08, - "davita": 5.01e-08, - "davuluri": 5.01e-08, - "dayana": 5.01e-08, - "daypack": 5.01e-08, - "deaconesses": 5.01e-08, - "deadpools": 5.01e-08, - "dealmaker": 5.01e-08, - "deaminase": 5.01e-08, - "debauch": 5.01e-08, - "debilitate": 5.01e-08, - "decapod": 5.01e-08, - "deciles": 5.01e-08, - "decontaminating": 5.01e-08, - "dehp": 5.01e-08, - "dejectedly": 5.01e-08, - "delica": 5.01e-08, - "democracia": 5.01e-08, - "demonstratively": 5.01e-08, - "dengar": 5.01e-08, - "depakote": 5.01e-08, - "deportee": 5.01e-08, - "deprogramming": 5.01e-08, - "desiderius": 5.01e-08, - "designators": 5.01e-08, - "detainers": 5.01e-08, - "detlev": 5.01e-08, - "devins": 5.01e-08, - "dewolf": 5.01e-08, - "dgc": 5.01e-08, - "dhaba": 5.01e-08, - "dhows": 5.01e-08, - "diesen": 5.01e-08, - "digbeth": 5.01e-08, - "digweed": 5.01e-08, - "dilators": 5.01e-08, - "dile": 5.01e-08, - "diltiazem": 5.01e-08, - "dimed": 5.01e-08, - "dimock": 5.01e-08, - "dinitrogen": 5.01e-08, - "diomede": 5.01e-08, - "diosa": 5.01e-08, - "disgorged": 5.01e-08, - "disse": 5.01e-08, - "diw": 5.01e-08, - "diyer": 5.01e-08, - "djm": 5.01e-08, - "doel": 5.01e-08, - "dogwoods": 5.01e-08, - "doko": 5.01e-08, - "dolling": 5.01e-08, - "dolorous": 5.01e-08, - "dolton": 5.01e-08, - "dongdaemun": 5.01e-08, - "doomben": 5.01e-08, - "douthat": 5.01e-08, - "downunder": 5.01e-08, - "dragger": 5.01e-08, - "dramatise": 5.01e-08, - "drawed": 5.01e-08, - "drawled": 5.01e-08, - "dreadlock": 5.01e-08, - "dreadnaught": 5.01e-08, - "druck": 5.01e-08, - "dsrna": 5.01e-08, - "duby": 5.01e-08, - "duffers": 5.01e-08, - "eaglets": 5.01e-08, - "eah": 5.01e-08, - "ealdorman": 5.01e-08, - "eastmond": 5.01e-08, - "econom": 5.01e-08, - "ediscovery": 5.01e-08, - "editora": 5.01e-08, - "eil": 5.01e-08, - "ekins": 5.01e-08, - "elco": 5.01e-08, - "eldad": 5.01e-08, - "eliason": 5.01e-08, - "elkie": 5.01e-08, - "elsner": 5.01e-08, - "elvina": 5.01e-08, - "embezzler": 5.01e-08, - "emms": 5.01e-08, - "empresses": 5.01e-08, - "enceinte": 5.01e-08, - "encryptions": 5.01e-08, - "endothelin": 5.01e-08, - "engvall": 5.01e-08, - "enlistees": 5.01e-08, - "enoshima": 5.01e-08, - "enshrouded": 5.01e-08, - "entei": 5.01e-08, - "enterobacter": 5.01e-08, - "epicenters": 5.01e-08, - "epicyclic": 5.01e-08, - "equipage": 5.01e-08, - "erdf": 5.01e-08, - "ered": 5.01e-08, - "esopus": 5.01e-08, - "espa": 5.01e-08, - "espers": 5.01e-08, - "esteve": 5.01e-08, - "esteves": 5.01e-08, - "etro": 5.01e-08, - "eutrophic": 5.01e-08, - "evf": 5.01e-08, - "excitment": 5.01e-08, - "excommunicating": 5.01e-08, - "exertional": 5.01e-08, - "expiate": 5.01e-08, - "expropriations": 5.01e-08, - "extravehicular": 5.01e-08, - "extruders": 5.01e-08, - "eyy": 5.01e-08, - "ezri": 5.01e-08, - "fach": 5.01e-08, - "faget": 5.01e-08, - "fairborn": 5.01e-08, - "falcaos": 5.01e-08, - "fanarts": 5.01e-08, - "fand": 5.01e-08, - "fann": 5.01e-08, - "fanni": 5.01e-08, - "farad": 5.01e-08, - "farel": 5.01e-08, - "farinelli": 5.01e-08, - "faringdon": 5.01e-08, - "farzad": 5.01e-08, - "fasa": 5.01e-08, - "fayez": 5.01e-08, - "fbl": 5.01e-08, - "fbm": 5.01e-08, - "federales": 5.01e-08, - "felv": 5.01e-08, - "fenno": 5.01e-08, - "feynmans": 5.01e-08, - "fhl": 5.01e-08, - "fias": 5.01e-08, - "fiascos": 5.01e-08, - "fighterz": 5.01e-08, - "finiteness": 5.01e-08, - "firaxis": 5.01e-08, - "fireclay": 5.01e-08, - "fitout": 5.01e-08, - "flahertys": 5.01e-08, - "fleta": 5.01e-08, - "flippancy": 5.01e-08, - "florentin": 5.01e-08, - "focke": 5.01e-08, - "foresman": 5.01e-08, - "foreward": 5.01e-08, - "formas": 5.01e-08, - "fortas": 5.01e-08, - "forthrightness": 5.01e-08, - "frackers": 5.01e-08, - "frak": 5.01e-08, - "frays": 5.01e-08, - "frederiksen": 5.01e-08, - "freiherr": 5.01e-08, - "frem": 5.01e-08, - "friese": 5.01e-08, - "fscs": 5.01e-08, - "fuckwad": 5.01e-08, - "fulminant": 5.01e-08, - "fulop": 5.01e-08, - "fuzzing": 5.01e-08, - "gabber": 5.01e-08, - "gahanna": 5.01e-08, - "gaja": 5.01e-08, - "galangal": 5.01e-08, - "gamemode": 5.01e-08, - "gamin": 5.01e-08, - "gange": 5.01e-08, - "ganley": 5.01e-08, - "garnetts": 5.01e-08, - "gastrin": 5.01e-08, - "gatta": 5.01e-08, - "gbbo": 5.01e-08, - "gdn": 5.01e-08, - "geas": 5.01e-08, - "gek": 5.01e-08, - "gelinas": 5.01e-08, - "gennifer": 5.01e-08, - "genu": 5.01e-08, - "geodesics": 5.01e-08, - "gestate": 5.01e-08, - "getto": 5.01e-08, - "ggt": 5.01e-08, - "gigged": 5.01e-08, - "gilberte": 5.01e-08, - "gilliard": 5.01e-08, - "gingerich": 5.01e-08, - "gionta": 5.01e-08, - "giusto": 5.01e-08, - "glasnevin": 5.01e-08, - "glasto": 5.01e-08, - "glomeruli": 5.01e-08, - "godess": 5.01e-08, - "godlessness": 5.01e-08, - "goehring": 5.01e-08, - "golitsyn": 5.01e-08, - "googlers": 5.01e-08, - "gowing": 5.01e-08, - "gradualist": 5.01e-08, - "grano": 5.01e-08, - "graumans": 5.01e-08, - "gravesites": 5.01e-08, - "gravities": 5.01e-08, - "grbs": 5.01e-08, - "grecia": 5.01e-08, - "greensborough": 5.01e-08, - "greenstreet": 5.01e-08, - "gregors": 5.01e-08, - "greil": 5.01e-08, - "grendels": 5.01e-08, - "gret": 5.01e-08, - "grimsley": 5.01e-08, - "griped": 5.01e-08, - "grodin": 5.01e-08, - "groll": 5.01e-08, - "groza": 5.01e-08, - "grubers": 5.01e-08, - "guessin": 5.01e-08, - "guested": 5.01e-08, - "guffawed": 5.01e-08, - "guibert": 5.01e-08, - "guimaraes": 5.01e-08, - "gullwing": 5.01e-08, - "gunnedah": 5.01e-08, - "gurgled": 5.01e-08, - "guri": 5.01e-08, - "gurira": 5.01e-08, - "gwe": 5.01e-08, - "hapenny": 5.01e-08, - "habyarimana": 5.01e-08, - "hadlow": 5.01e-08, - "hadronic": 5.01e-08, - "halloway": 5.01e-08, - "harakat": 5.01e-08, - "hardwire": 5.01e-08, - "hargeisa": 5.01e-08, - "harkey": 5.01e-08, - "harmison": 5.01e-08, - "harn": 5.01e-08, - "harshman": 5.01e-08, - "haruno": 5.01e-08, - "hassam": 5.01e-08, - "hassani": 5.01e-08, - "haught": 5.01e-08, - "hauteur": 5.01e-08, - "hawtin": 5.01e-08, - "haycock": 5.01e-08, - "heckin": 5.01e-08, - "hectolitres": 5.01e-08, - "heechul": 5.01e-08, - "heeey": 5.01e-08, - "hefeweizen": 5.01e-08, - "heimer": 5.01e-08, - "heming": 5.01e-08, - "henie": 5.01e-08, - "henkin": 5.01e-08, - "hereditarily": 5.01e-08, - "hertl": 5.01e-08, - "hesperides": 5.01e-08, - "heterochromia": 5.01e-08, - "heterodoxy": 5.01e-08, - "hian": 5.01e-08, - "hickie": 5.01e-08, - "hiebert": 5.01e-08, - "hijos": 5.01e-08, - "hilder": 5.01e-08, - "hilty": 5.01e-08, - "hindoo": 5.01e-08, - "hinn": 5.01e-08, - "hiromu": 5.01e-08, - "hissar": 5.01e-08, - "hjort": 5.01e-08, - "hlg": 5.01e-08, - "hlt": 5.01e-08, - "hlw": 5.01e-08, - "hmh": 5.01e-08, - "hmmmmmmm": 5.01e-08, - "hoad": 5.01e-08, - "hoas": 5.01e-08, - "hobbesian": 5.01e-08, - "holbert": 5.01e-08, - "hollo": 5.01e-08, - "homebrewers": 5.01e-08, - "homesite": 5.01e-08, - "homogenizing": 5.01e-08, - "hornswoggle": 5.01e-08, - "horserace": 5.01e-08, - "hotan": 5.01e-08, - "hourlong": 5.01e-08, - "hovland": 5.01e-08, - "howerton": 5.01e-08, - "hpf": 5.01e-08, - "hro": 5.01e-08, - "hsb": 5.01e-08, - "hudud": 5.01e-08, - "huish": 5.01e-08, - "humilis": 5.01e-08, - "hunh": 5.01e-08, - "hussite": 5.01e-08, - "hust": 5.01e-08, - "hutches": 5.01e-08, - "hwangs": 5.01e-08, - "hydrographer": 5.01e-08, - "hydroplaning": 5.01e-08, - "hylas": 5.01e-08, - "hyperextended": 5.01e-08, - "hyperkinetic": 5.01e-08, - "hypomanic": 5.01e-08, - "iae": 5.01e-08, - "ibjjf": 5.01e-08, - "ichor": 5.01e-08, - "icsc": 5.01e-08, - "ifg": 5.01e-08, - "ifk": 5.01e-08, - "ignatian": 5.01e-08, - "imagina": 5.01e-08, - "immunologists": 5.01e-08, - "impeachments": 5.01e-08, - "implementer": 5.01e-08, - "imprimerie": 5.01e-08, - "inal": 5.01e-08, - "inbar": 5.01e-08, - "incipit": 5.01e-08, - "indemnifying": 5.01e-08, - "indien": 5.01e-08, - "informe": 5.01e-08, - "infoworld": 5.01e-08, - "ingall": 5.01e-08, - "ingels": 5.01e-08, - "ingenio": 5.01e-08, - "initializes": 5.01e-08, - "inker": 5.01e-08, - "inosine": 5.01e-08, - "inservice": 5.01e-08, - "integrationist": 5.01e-08, - "internationalen": 5.01e-08, - "interoperate": 5.01e-08, - "ioannou": 5.01e-08, - "irreducibly": 5.01e-08, - "isbns": 5.01e-08, - "ishibashi": 5.01e-08, - "ishimaru": 5.01e-08, - "jaen": 5.01e-08, - "jairam": 5.01e-08, - "jaki": 5.01e-08, - "jalpaiguri": 5.01e-08, - "janmashtami": 5.01e-08, - "janowicz": 5.01e-08, - "jaqen": 5.01e-08, - "jareth": 5.01e-08, - "jassy": 5.01e-08, - "jca": 5.01e-08, - "jebus": 5.01e-08, - "jehova": 5.01e-08, - "jgb": 5.01e-08, - "jias": 5.01e-08, - "jobim": 5.01e-08, - "jonass": 5.01e-08, - "josias": 5.01e-08, - "journaled": 5.01e-08, - "judaisms": 5.01e-08, - "jup": 5.01e-08, - "justiciable": 5.01e-08, - "kaffirs": 5.01e-08, - "kakuma": 5.01e-08, - "kaler": 5.01e-08, - "kalma": 5.01e-08, - "kanada": 5.01e-08, - "kanchana": 5.01e-08, - "kanos": 5.01e-08, - "karaites": 5.01e-08, - "kartika": 5.01e-08, - "karve": 5.01e-08, - "kater": 5.01e-08, - "kaymer": 5.01e-08, - "kazin": 5.01e-08, - "kbp": 5.01e-08, - "kdr": 5.01e-08, - "keigo": 5.01e-08, - "kennicott": 5.01e-08, - "kenway": 5.01e-08, - "kgi": 5.01e-08, - "khare": 5.01e-08, - "khoisan": 5.01e-08, - "killdeer": 5.01e-08, - "killigrew": 5.01e-08, - "kintner": 5.01e-08, - "kirino": 5.01e-08, - "kirkstall": 5.01e-08, - "kitsilano": 5.01e-08, - "kjellberg": 5.01e-08, - "koinonia": 5.01e-08, - "koll": 5.01e-08, - "kopecks": 5.01e-08, - "kornberg": 5.01e-08, - "kotobuki": 5.01e-08, - "kram": 5.01e-08, - "kring": 5.01e-08, - "kristiansand": 5.01e-08, - "kronen": 5.01e-08, - "kroy": 5.01e-08, - "krysta": 5.01e-08, - "kuopio": 5.01e-08, - "kupp": 5.01e-08, - "kydd": 5.01e-08, - "kyuss": 5.01e-08, - "laaa": 5.01e-08, - "lachish": 5.01e-08, - "lactis": 5.01e-08, - "ladee": 5.01e-08, - "ladera": 5.01e-08, - "lakemba": 5.01e-08, - "lakha": 5.01e-08, - "lakhdar": 5.01e-08, - "lakme": 5.01e-08, - "lamed": 5.01e-08, - "lamonica": 5.01e-08, - "landreth": 5.01e-08, - "langauge": 5.01e-08, - "langworthy": 5.01e-08, - "lantus": 5.01e-08, - "ldk": 5.01e-08, - "leafleting": 5.01e-08, - "lecoq": 5.01e-08, - "leers": 5.01e-08, - "lella": 5.01e-08, - "lemi": 5.01e-08, - "lemmens": 5.01e-08, - "lepine": 5.01e-08, - "lexicographic": 5.01e-08, - "lgas": 5.01e-08, - "lifebuoy": 5.01e-08, - "lifehack": 5.01e-08, - "lindale": 5.01e-08, - "lindys": 5.01e-08, - "lineaments": 5.01e-08, - "lionhead": 5.01e-08, - "lipoic": 5.01e-08, - "liquefies": 5.01e-08, - "lisson": 5.01e-08, - "liverworts": 5.01e-08, - "livest": 5.01e-08, - "llandrindod": 5.01e-08, - "llorona": 5.01e-08, - "loddon": 5.01e-08, - "lombardis": 5.01e-08, - "longtail": 5.01e-08, - "loomer": 5.01e-08, - "loooooove": 5.01e-08, - "lotan": 5.01e-08, - "lour": 5.01e-08, - "lovins": 5.01e-08, - "lowood": 5.01e-08, - "luhrmanns": 5.01e-08, - "luker": 5.01e-08, - "lukman": 5.01e-08, - "lusi": 5.01e-08, - "luskin": 5.01e-08, - "luvvie": 5.01e-08, - "lycans": 5.01e-08, - "lymphatics": 5.01e-08, - "maal": 5.01e-08, - "macromolecule": 5.01e-08, - "madra": 5.01e-08, - "maleic": 5.01e-08, - "mandrill": 5.01e-08, - "manera": 5.01e-08, - "manin": 5.01e-08, - "manser": 5.01e-08, - "mapi": 5.01e-08, - "maremma": 5.01e-08, - "margerie": 5.01e-08, - "margos": 5.01e-08, - "maritz": 5.01e-08, - "marleen": 5.01e-08, - "marquet": 5.01e-08, - "marula": 5.01e-08, - "masekela": 5.01e-08, - "mashal": 5.01e-08, - "masn": 5.01e-08, - "matthes": 5.01e-08, - "matu": 5.01e-08, - "mcbusted": 5.01e-08, - "mccaig": 5.01e-08, - "mcconaugheys": 5.01e-08, - "mccrone": 5.01e-08, - "mcgahan": 5.01e-08, - "mckell": 5.01e-08, - "mckinleys": 5.01e-08, - "mcnichol": 5.01e-08, - "mcree": 5.01e-08, - "mcstay": 5.01e-08, - "mcteague": 5.01e-08, - "mcteer": 5.01e-08, - "meche": 5.01e-08, - "melanocyte": 5.01e-08, - "melin": 5.01e-08, - "melius": 5.01e-08, - "melkor": 5.01e-08, - "menes": 5.01e-08, - "mengs": 5.01e-08, - "metahumans": 5.01e-08, - "methil": 5.01e-08, - "methought": 5.01e-08, - "meto": 5.01e-08, - "metron": 5.01e-08, - "meuron": 5.01e-08, - "mfe": 5.01e-08, - "mickens": 5.01e-08, - "microelectrodes": 5.01e-08, - "microglial": 5.01e-08, - "microprobe": 5.01e-08, - "midianites": 5.01e-08, - "midpoints": 5.01e-08, - "midrand": 5.01e-08, - "mieko": 5.01e-08, - "migne": 5.01e-08, - "mikoyan": 5.01e-08, - "milana": 5.01e-08, - "militarizing": 5.01e-08, - "milkers": 5.01e-08, - "millcreek": 5.01e-08, - "millersburg": 5.01e-08, - "milley": 5.01e-08, - "millner": 5.01e-08, - "minhaj": 5.01e-08, - "minhas": 5.01e-08, - "minnis": 5.01e-08, - "minturn": 5.01e-08, - "miroku": 5.01e-08, - "mirzapur": 5.01e-08, - "misbehavin": 5.01e-08, - "miscanthus": 5.01e-08, - "misinforming": 5.01e-08, - "missio": 5.01e-08, - "mistrusting": 5.01e-08, - "mlbpa": 5.01e-08, - "mnek": 5.01e-08, - "modernizations": 5.01e-08, - "modibo": 5.01e-08, - "modifieds": 5.01e-08, - "moggy": 5.01e-08, - "mogs": 5.01e-08, - "molen": 5.01e-08, - "molts": 5.01e-08, - "momas": 5.01e-08, - "monell": 5.01e-08, - "monetarism": 5.01e-08, - "monistic": 5.01e-08, - "monocacy": 5.01e-08, - "monumentality": 5.01e-08, - "moochers": 5.01e-08, - "mopp": 5.01e-08, - "moq": 5.01e-08, - "moralities": 5.01e-08, - "morgaine": 5.01e-08, - "morticians": 5.01e-08, - "mosconi": 5.01e-08, - "mouche": 5.01e-08, - "moynahan": 5.01e-08, - "mtns": 5.01e-08, - "muangthong": 5.01e-08, - "mucositis": 5.01e-08, - "mueang": 5.01e-08, - "muhajir": 5.01e-08, - "munni": 5.01e-08, - "munsch": 5.01e-08, - "muntinlupa": 5.01e-08, - "myntra": 5.01e-08, - "nagios": 5.01e-08, - "nakatani": 5.01e-08, - "narrowboat": 5.01e-08, - "natsuko": 5.01e-08, - "navis": 5.01e-08, - "naze": 5.01e-08, - "ncaaf": 5.01e-08, - "nearsightedness": 5.01e-08, - "neerja": 5.01e-08, - "neese": 5.01e-08, - "nerdiest": 5.01e-08, - "netherlandish": 5.01e-08, - "netsuke": 5.01e-08, - "neut": 5.01e-08, - "newaygo": 5.01e-08, - "newspoll": 5.01e-08, - "newzealand": 5.01e-08, - "nexen": 5.01e-08, - "nguema": 5.01e-08, - "nicety": 5.01e-08, - "nicholasville": 5.01e-08, - "nickson": 5.01e-08, - "niecy": 5.01e-08, - "nilgiris": 5.01e-08, - "nimbleness": 5.01e-08, - "nisqually": 5.01e-08, - "nisshin": 5.01e-08, - "nitromethane": 5.01e-08, - "nitta": 5.01e-08, - "niva": 5.01e-08, - "nli": 5.01e-08, - "nonbank": 5.01e-08, - "nonrenewable": 5.01e-08, - "nordiques": 5.01e-08, - "noticia": 5.01e-08, - "novorossiya": 5.01e-08, - "nowi": 5.01e-08, - "nowotny": 5.01e-08, - "nprm": 5.01e-08, - "nte": 5.01e-08, - "nucleophiles": 5.01e-08, - "nums": 5.01e-08, - "nuon": 5.01e-08, - "nyland": 5.01e-08, - "omahoney": 5.01e-08, - "oab": 5.01e-08, - "oarsman": 5.01e-08, - "oast": 5.01e-08, - "obdii": 5.01e-08, - "oborne": 5.01e-08, - "odl": 5.01e-08, - "oerlikon": 5.01e-08, - "offically": 5.01e-08, - "offit": 5.01e-08, - "offtake": 5.01e-08, - "ofra": 5.01e-08, - "okays": 5.01e-08, - "oleoresin": 5.01e-08, - "olie": 5.01e-08, - "oligomerization": 5.01e-08, - "olszewski": 5.01e-08, - "oncolytic": 5.01e-08, - "oppai": 5.01e-08, - "optifine": 5.01e-08, - "orchiectomy": 5.01e-08, - "ordonnance": 5.01e-08, - "orser": 5.01e-08, - "osk": 5.01e-08, - "ostara": 5.01e-08, - "otras": 5.01e-08, - "ottley": 5.01e-08, - "overhung": 5.01e-08, - "overleaf": 5.01e-08, - "overprinted": 5.01e-08, - "overreliance": 5.01e-08, - "oxi": 5.01e-08, - "padrone": 5.01e-08, - "paizo": 5.01e-08, - "pajaro": 5.01e-08, - "paktia": 5.01e-08, - "pakula": 5.01e-08, - "pallete": 5.01e-08, - "panarin": 5.01e-08, - "paninis": 5.01e-08, - "papert": 5.01e-08, - "parcelled": 5.01e-08, - "parisa": 5.01e-08, - "pasch": 5.01e-08, - "paty": 5.01e-08, - "pavone": 5.01e-08, - "paydirt": 5.01e-08, - "peano": 5.01e-08, - "pegylated": 5.01e-08, - "pells": 5.01e-08, - "peller": 5.01e-08, - "pemphigus": 5.01e-08, - "penances": 5.01e-08, - "penetrable": 5.01e-08, - "penetrant": 5.01e-08, - "penicuik": 5.01e-08, - "peppe": 5.01e-08, - "peremptorily": 5.01e-08, - "performativity": 5.01e-08, - "periphrastic": 5.01e-08, - "perivascular": 5.01e-08, - "perspicacious": 5.01e-08, - "persuaders": 5.01e-08, - "persue": 5.01e-08, - "petechiae": 5.01e-08, - "petrescu": 5.01e-08, - "petulantly": 5.01e-08, - "petz": 5.01e-08, - "phanerozoic": 5.01e-08, - "phenotyping": 5.01e-08, - "philatelist": 5.01e-08, - "photocell": 5.01e-08, - "phuoc": 5.01e-08, - "phylicia": 5.01e-08, - "picardo": 5.01e-08, - "pictograph": 5.01e-08, - "pikachus": 5.01e-08, - "piker": 5.01e-08, - "pillowy": 5.01e-08, - "pinsir": 5.01e-08, - "pions": 5.01e-08, - "pittenger": 5.01e-08, - "plasticized": 5.01e-08, - "plete": 5.01e-08, - "plitvice": 5.01e-08, - "plods": 5.01e-08, - "plumtree": 5.01e-08, - "plyometrics": 5.01e-08, - "pmv": 5.01e-08, - "pnf": 5.01e-08, - "poiret": 5.01e-08, - "pokot": 5.01e-08, - "politis": 5.01e-08, - "pollio": 5.01e-08, - "polycentric": 5.01e-08, - "polycom": 5.01e-08, - "polygram": 5.01e-08, - "polyvore": 5.01e-08, - "pominville": 5.01e-08, - "pommy": 5.01e-08, - "ponding": 5.01e-08, - "poptart": 5.01e-08, - "porche": 5.01e-08, - "posher": 5.01e-08, - "positioner": 5.01e-08, - "posso": 5.01e-08, - "potbellied": 5.01e-08, - "povo": 5.01e-08, - "ppn": 5.01e-08, - "praag": 5.01e-08, - "preapproved": 5.01e-08, - "preceeding": 5.01e-08, - "preimplantation": 5.01e-08, - "premarin": 5.01e-08, - "preparative": 5.01e-08, - "preta": 5.01e-08, - "prickling": 5.01e-08, - "primeira": 5.01e-08, - "priscus": 5.01e-08, - "produits": 5.01e-08, - "progestins": 5.01e-08, - "promiscuously": 5.01e-08, - "propagandized": 5.01e-08, - "prophylactics": 5.01e-08, - "przez": 5.01e-08, - "psvita": 5.01e-08, - "psychologies": 5.01e-08, - "ptn": 5.01e-08, - "ptolemys": 5.01e-08, - "puggy": 5.01e-08, - "pulmonology": 5.01e-08, - "punggol": 5.01e-08, - "purees": 5.01e-08, - "purolator": 5.01e-08, - "putlocker": 5.01e-08, - "qal": 5.01e-08, - "qarth": 5.01e-08, - "qgis": 5.01e-08, - "qprs": 5.01e-08, - "qst": 5.01e-08, - "quebrada": 5.01e-08, - "queensbridge": 5.01e-08, - "quraish": 5.01e-08, - "qz": 5.01e-08, - "rabanne": 5.01e-08, - "rabbitte": 5.01e-08, - "rackmount": 5.01e-08, - "radice": 5.01e-08, - "radom": 5.01e-08, - "rafted": 5.01e-08, - "railroader": 5.01e-08, - "ramonas": 5.01e-08, - "randomizing": 5.01e-08, - "rapiers": 5.01e-08, - "rayan": 5.01e-08, - "rcra": 5.01e-08, - "reactivates": 5.01e-08, - "rechts": 5.01e-08, - "recor": 5.01e-08, - "recusant": 5.01e-08, - "recusing": 5.01e-08, - "reddin": 5.01e-08, - "redesdale": 5.01e-08, - "redfoo": 5.01e-08, - "redressal": 5.01e-08, - "redshank": 5.01e-08, - "reexamining": 5.01e-08, - "reflexed": 5.01e-08, - "regalo": 5.01e-08, - "reiners": 5.01e-08, - "relabeled": 5.01e-08, - "remanufacturing": 5.01e-08, - "renville": 5.01e-08, - "repeller": 5.01e-08, - "repricing": 5.01e-08, - "restocks": 5.01e-08, - "restyle": 5.01e-08, - "retaliations": 5.01e-08, - "retentions": 5.01e-08, - "retroactivity": 5.01e-08, - "reverberant": 5.01e-08, - "rheem": 5.01e-08, - "rht": 5.01e-08, - "rhu": 5.01e-08, - "rickett": 5.01e-08, - "riddoch": 5.01e-08, - "ringa": 5.01e-08, - "roberge": 5.01e-08, - "rocque": 5.01e-08, - "rodge": 5.01e-08, - "rogic": 5.01e-08, - "rootstocks": 5.01e-08, - "rosbergs": 5.01e-08, - "rosling": 5.01e-08, - "rostam": 5.01e-08, - "rostand": 5.01e-08, - "rostering": 5.01e-08, - "rotenone": 5.01e-08, - "rougier": 5.01e-08, - "royales": 5.01e-08, - "rsb": 5.01e-08, - "rtas": 5.01e-08, - "rudolfo": 5.01e-08, - "rued": 5.01e-08, - "rufai": 5.01e-08, - "rumbold": 5.01e-08, - "rushdies": 5.01e-08, - "rutles": 5.01e-08, - "rvm": 5.01e-08, - "ryce": 5.01e-08, - "ryun": 5.01e-08, - "saari": 5.01e-08, - "sabado": 5.01e-08, - "sabata": 5.01e-08, - "sabaton": 5.01e-08, - "sabena": 5.01e-08, - "sagami": 5.01e-08, - "saiful": 5.01e-08, - "salalah": 5.01e-08, - "salesgirl": 5.01e-08, - "salvesen": 5.01e-08, - "sanitaire": 5.01e-08, - "sanskar": 5.01e-08, - "saputo": 5.01e-08, - "sarvodaya": 5.01e-08, - "satguru": 5.01e-08, - "sauve": 5.01e-08, - "sayi": 5.01e-08, - "schickel": 5.01e-08, - "schillers": 5.01e-08, - "schismatics": 5.01e-08, - "schonberg": 5.01e-08, - "schooley": 5.01e-08, - "schrag": 5.01e-08, - "schroeders": 5.01e-08, - "scimitars": 5.01e-08, - "scran": 5.01e-08, - "screenprint": 5.01e-08, - "scrimping": 5.01e-08, - "scripter": 5.01e-08, - "scuds": 5.01e-08, - "seagrasses": 5.01e-08, - "seamers": 5.01e-08, - "seclude": 5.01e-08, - "sedaka": 5.01e-08, - "sedgemoor": 5.01e-08, - "seegers": 5.01e-08, - "segre": 5.01e-08, - "seguridad": 5.01e-08, - "seldes": 5.01e-08, - "selsey": 5.01e-08, - "sensitised": 5.01e-08, - "sensodyne": 5.01e-08, - "sessa": 5.01e-08, - "settees": 5.01e-08, - "sexpot": 5.01e-08, - "sexted": 5.01e-08, - "seyfert": 5.01e-08, - "sgn": 5.01e-08, - "shadid": 5.01e-08, - "shahjahan": 5.01e-08, - "shandon": 5.01e-08, - "sharin": 5.01e-08, - "sharla": 5.01e-08, - "shbg": 5.01e-08, - "shepherdstown": 5.01e-08, - "sherwani": 5.01e-08, - "shihan": 5.01e-08, - "shoveler": 5.01e-08, - "shrewdest": 5.01e-08, - "shreyas": 5.01e-08, - "shrimpers": 5.01e-08, - "shv": 5.01e-08, - "sidedness": 5.01e-08, - "siegfrieds": 5.01e-08, - "siku": 5.01e-08, - "silenus": 5.01e-08, - "similis": 5.01e-08, - "sinar": 5.01e-08, - "sindhis": 5.01e-08, - "singam": 5.01e-08, - "skaar": 5.01e-08, - "skanda": 5.01e-08, - "skara": 5.01e-08, - "skn": 5.01e-08, - "skyhawks": 5.01e-08, - "skyland": 5.01e-08, - "smas": 5.01e-08, - "smethurst": 5.01e-08, - "snickerdoodle": 5.01e-08, - "sniggers": 5.01e-08, - "socalled": 5.01e-08, - "sodomizing": 5.01e-08, - "solera": 5.01e-08, - "sontaran": 5.01e-08, - "soter": 5.01e-08, - "sourpuss": 5.01e-08, - "southborough": 5.01e-08, - "spallation": 5.01e-08, - "spastics": 5.01e-08, - "spatters": 5.01e-08, - "spdc": 5.01e-08, - "speroni": 5.01e-08, - "spillers": 5.01e-08, - "sportspersons": 5.01e-08, - "sporulation": 5.01e-08, - "squawked": 5.01e-08, - "sreesanth": 5.01e-08, - "ssci": 5.01e-08, - "stairmaster": 5.01e-08, - "staleness": 5.01e-08, - "stambaugh": 5.01e-08, - "staniforth": 5.01e-08, - "statik": 5.01e-08, - "stefanovic": 5.01e-08, - "steinbergs": 5.01e-08, - "stoinis": 5.01e-08, - "stonking": 5.01e-08, - "strattera": 5.01e-08, - "stron": 5.01e-08, - "strug": 5.01e-08, - "sture": 5.01e-08, - "styl": 5.01e-08, - "suasion": 5.01e-08, - "subsumes": 5.01e-08, - "suburbanite": 5.01e-08, - "succotash": 5.01e-08, - "succubi": 5.01e-08, - "sucessfully": 5.01e-08, - "sudirman": 5.01e-08, - "sugarbush": 5.01e-08, - "sugiura": 5.01e-08, - "sukanya": 5.01e-08, - "summerhall": 5.01e-08, - "summum": 5.01e-08, - "sumptuary": 5.01e-08, - "sunaina": 5.01e-08, - "sundara": 5.01e-08, - "sunrays": 5.01e-08, - "supercapacitor": 5.01e-08, - "supercard": 5.01e-08, - "supercells": 5.01e-08, - "superintended": 5.01e-08, - "supermoto": 5.01e-08, - "supped": 5.01e-08, - "supr": 5.01e-08, - "suras": 5.01e-08, - "surmising": 5.01e-08, - "suuuuper": 5.01e-08, - "sweatband": 5.01e-08, - "sybille": 5.01e-08, - "synergize": 5.01e-08, - "syrie": 5.01e-08, - "taekwon": 5.01e-08, - "tailhook": 5.01e-08, - "taipeis": 5.01e-08, - "taito": 5.01e-08, - "tajiri": 5.01e-08, - "takai": 5.01e-08, - "takeshima": 5.01e-08, - "talan": 5.01e-08, - "talisa": 5.01e-08, - "talke": 5.01e-08, - "talo": 5.01e-08, - "tamarindo": 5.01e-08, - "tanguay": 5.01e-08, - "tarra": 5.01e-08, - "taufiq": 5.01e-08, - "tawil": 5.01e-08, - "taxus": 5.01e-08, - "teamo": 5.01e-08, - "tehelka": 5.01e-08, - "teletubby": 5.01e-08, - "tenderest": 5.01e-08, - "tenison": 5.01e-08, - "terete": 5.01e-08, - "terex": 5.01e-08, - "terfel": 5.01e-08, - "terrariums": 5.01e-08, - "teruel": 5.01e-08, - "tfsi": 5.01e-08, - "thatis": 5.01e-08, - "thls": 5.01e-08, - "thornycroft": 5.01e-08, - "threepence": 5.01e-08, - "threescore": 5.01e-08, - "thrombolytic": 5.01e-08, - "tiao": 5.01e-08, - "tiebreaking": 5.01e-08, - "tike": 5.01e-08, - "timberwolf": 5.01e-08, - "timonium": 5.01e-08, - "tinders": 5.01e-08, - "tinges": 5.01e-08, - "tinpot": 5.01e-08, - "tional": 5.01e-08, - "tiran": 5.01e-08, - "titanite": 5.01e-08, - "tmk": 5.01e-08, - "toksvig": 5.01e-08, - "toothaches": 5.01e-08, - "torchbearers": 5.01e-08, - "tortas": 5.01e-08, - "touya": 5.01e-08, - "townscape": 5.01e-08, - "townsley": 5.01e-08, - "tpk": 5.01e-08, - "traf": 5.01e-08, - "transphobes": 5.01e-08, - "transposes": 5.01e-08, - "traven": 5.01e-08, - "trinder": 5.01e-08, - "tripolis": 5.01e-08, - "triskelion": 5.01e-08, - "trogir": 5.01e-08, - "troicki": 5.01e-08, - "trond": 5.01e-08, - "truecar": 5.01e-08, - "trum": 5.01e-08, - "trumpsters": 5.01e-08, - "tryptamine": 5.01e-08, - "tuch": 5.01e-08, - "tuomas": 5.01e-08, - "turfing": 5.01e-08, - "turfs": 5.01e-08, - "turun": 5.01e-08, - "tweedledee": 5.01e-08, - "typer": 5.01e-08, - "typewriting": 5.01e-08, - "ubiquinone": 5.01e-08, - "uidai": 5.01e-08, - "umpired": 5.01e-08, - "unadvertised": 5.01e-08, - "uncaused": 5.01e-08, - "uncial": 5.01e-08, - "uncw": 5.01e-08, - "undependable": 5.01e-08, - "underated": 5.01e-08, - "undereducated": 5.01e-08, - "underflow": 5.01e-08, - "underinvestment": 5.01e-08, - "undershot": 5.01e-08, - "unengaged": 5.01e-08, - "unfreezing": 5.01e-08, - "unio": 5.01e-08, - "unitys": 5.01e-08, - "universi": 5.01e-08, - "unnerves": 5.01e-08, - "unphased": 5.01e-08, - "unprinted": 5.01e-08, - "unreasoning": 5.01e-08, - "unremarked": 5.01e-08, - "unshared": 5.01e-08, - "untracked": 5.01e-08, - "untrammelled": 5.01e-08, - "uofm": 5.01e-08, - "upstaging": 5.01e-08, - "urt": 5.01e-08, - "usurer": 5.01e-08, - "vaa": 5.01e-08, - "vaginalis": 5.01e-08, - "vaginitis": 5.01e-08, - "vaguer": 5.01e-08, - "valkenburg": 5.01e-08, - "variabilis": 5.01e-08, - "variate": 5.01e-08, - "varius": 5.01e-08, - "vdl": 5.01e-08, - "veasey": 5.01e-08, - "veggietales": 5.01e-08, - "venkata": 5.01e-08, - "venkataraman": 5.01e-08, - "ventilatory": 5.01e-08, - "vernaculars": 5.01e-08, - "verulam": 5.01e-08, - "videodrome": 5.01e-08, - "videorecording": 5.01e-08, - "vidyut": 5.01e-08, - "vijayanagara": 5.01e-08, - "vios": 5.01e-08, - "vish": 5.01e-08, - "vlaams": 5.01e-08, - "vmro": 5.01e-08, - "vorbis": 5.01e-08, - "vostro": 5.01e-08, - "walbrook": 5.01e-08, - "walcot": 5.01e-08, - "walloons": 5.01e-08, - "wantagh": 5.01e-08, - "waqt": 5.01e-08, - "washtub": 5.01e-08, - "waukee": 5.01e-08, - "waverider": 5.01e-08, - "wbtv": 5.01e-08, - "wesco": 5.01e-08, - "westervelt": 5.01e-08, - "westhoff": 5.01e-08, - "westridge": 5.01e-08, - "wetumpka": 5.01e-08, - "wftv": 5.01e-08, - "wgi": 5.01e-08, - "whatsapps": 5.01e-08, - "whibley": 5.01e-08, - "whichll": 5.01e-08, - "whizzer": 5.01e-08, - "widdowson": 5.01e-08, - "widgeon": 5.01e-08, - "wiil": 5.01e-08, - "wiktor": 5.01e-08, - "wilkinsburg": 5.01e-08, - "willkommen": 5.01e-08, - "willoughbys": 5.01e-08, - "willowdale": 5.01e-08, - "wimple": 5.01e-08, - "windbreaks": 5.01e-08, - "windowpanes": 5.01e-08, - "windstar": 5.01e-08, - "winerys": 5.01e-08, - "winnicott": 5.01e-08, - "wirkung": 5.01e-08, - "wissam": 5.01e-08, - "wobblies": 5.01e-08, - "womanist": 5.01e-08, - "wonderbra": 5.01e-08, - "wonderlic": 5.01e-08, - "woolard": 5.01e-08, - "worketh": 5.01e-08, - "worldclass": 5.01e-08, - "wormser": 5.01e-08, - "wortman": 5.01e-08, - "wowsers": 5.01e-08, - "wsbk": 5.01e-08, - "wudang": 5.01e-08, - "wudu": 5.01e-08, - "wyandot": 5.01e-08, - "wykes": 5.01e-08, - "wyndhams": 5.01e-08, - "wyrm": 5.01e-08, - "xur": 5.01e-08, - "yab": 5.01e-08, - "yakut": 5.01e-08, - "yalls": 5.01e-08, - "yamamotos": 5.01e-08, - "yaquina": 5.01e-08, - "yashar": 5.01e-08, - "yashoda": 5.01e-08, - "yeahhhhh": 5.01e-08, - "yeojin": 5.01e-08, - "yings": 5.01e-08, - "yogini": 5.01e-08, - "yoong": 5.01e-08, - "yorkton": 5.01e-08, - "yoshihiko": 5.01e-08, - "yoshikazu": 5.01e-08, - "yoshiwara": 5.01e-08, - "yotsuba": 5.01e-08, - "yountville": 5.01e-08, - "ypj": 5.01e-08, - "yreka": 5.01e-08, - "zamperini": 5.01e-08, - "zarin": 5.01e-08, - "zemlya": 5.01e-08, - "zephyrhills": 5.01e-08, - "ziglar": 5.01e-08, - "zinner": 5.01e-08, - "zlatko": 5.01e-08, - "zoeys": 5.01e-08, - "zoid": 5.01e-08, - "zom": 5.01e-08, - "abrade": 4.9e-08, - "acrolein": 4.9e-08, - "addle": 4.9e-08, - "aerialist": 4.9e-08, - "aile": 4.9e-08, - "alnico": 4.9e-08, - "alpen": 4.9e-08, - "anterolateral": 4.9e-08, - "anthropometry": 4.9e-08, - "anticyclone": 4.9e-08, - "antiope": 4.9e-08, - "arar": 4.9e-08, - "ared": 4.9e-08, - "armiger": 4.9e-08, - "arna": 4.9e-08, - "arrogate": 4.9e-08, - "arrowed": 4.9e-08, - "assayer": 4.9e-08, - "bachelorhood": 4.9e-08, - "bagful": 4.9e-08, - "balsamo": 4.9e-08, - "barny": 4.9e-08, - "baseness": 4.9e-08, - "belgic": 4.9e-08, - "bergy": 4.9e-08, - "bitingly": 4.9e-08, - "blackleg": 4.9e-08, - "blee": 4.9e-08, - "botella": 4.9e-08, - "bunkie": 4.9e-08, - "caboodle": 4.9e-08, - "canape": 4.9e-08, - "candelabrum": 4.9e-08, - "cannibalization": 4.9e-08, - "canonicity": 4.9e-08, - "carline": 4.9e-08, - "caryatid": 4.9e-08, - "castalia": 4.9e-08, - "cautiousness": 4.9e-08, - "ceanothus": 4.9e-08, - "ceria": 4.9e-08, - "chalon": 4.9e-08, - "cheesiness": 4.9e-08, - "chicot": 4.9e-08, - "circumstantially": 4.9e-08, - "clathrate": 4.9e-08, - "claver": 4.9e-08, - "clubroom": 4.9e-08, - "coeditor": 4.9e-08, - "concatenate": 4.9e-08, - "consanguineous": 4.9e-08, - "contrariwise": 4.9e-08, - "conventionality": 4.9e-08, - "coquina": 4.9e-08, - "coronoid": 4.9e-08, - "countercurrent": 4.9e-08, - "coved": 4.9e-08, - "cowbird": 4.9e-08, - "cowslip": 4.9e-08, - "crumpler": 4.9e-08, - "dadaism": 4.9e-08, - "decidua": 4.9e-08, - "declamatory": 4.9e-08, - "deduplication": 4.9e-08, - "defroster": 4.9e-08, - "demoness": 4.9e-08, - "descender": 4.9e-08, - "devilry": 4.9e-08, - "dextral": 4.9e-08, - "diabase": 4.9e-08, - "dimity": 4.9e-08, - "dioxane": 4.9e-08, - "diplopia": 4.9e-08, - "discreditable": 4.9e-08, - "dragline": 4.9e-08, - "drosera": 4.9e-08, - "drupe": 4.9e-08, - "duckbill": 4.9e-08, - "duple": 4.9e-08, - "ebonite": 4.9e-08, - "ekron": 4.9e-08, - "endogamy": 4.9e-08, - "endogenously": 4.9e-08, - "erian": 4.9e-08, - "eyeline": 4.9e-08, - "fibular": 4.9e-08, - "finitude": 4.9e-08, - "floatplane": 4.9e-08, - "footnoted": 4.9e-08, - "footplate": 4.9e-08, - "forewarn": 4.9e-08, - "fringilla": 4.9e-08, - "galler": 4.9e-08, - "gauleiter": 4.9e-08, - "geniculate": 4.9e-08, - "genin": 4.9e-08, - "glor": 4.9e-08, - "goschen": 4.9e-08, - "greenroom": 4.9e-08, - "hairband": 4.9e-08, - "harborside": 4.9e-08, - "harridan": 4.9e-08, - "hejazi": 4.9e-08, - "horseflesh": 4.9e-08, - "hsuan": 4.9e-08, - "huckle": 4.9e-08, - "hurty": 4.9e-08, - "hydrophobia": 4.9e-08, - "incontrovertibly": 4.9e-08, - "intermetallic": 4.9e-08, - "interposing": 4.9e-08, - "introit": 4.9e-08, - "ipomoea": 4.9e-08, - "irredentist": 4.9e-08, - "irremediable": 4.9e-08, - "irreversibility": 4.9e-08, - "isinglass": 4.9e-08, - "juncus": 4.9e-08, - "katinka": 4.9e-08, - "khanum": 4.9e-08, - "khu": 4.9e-08, - "killifish": 4.9e-08, - "lamarckian": 4.9e-08, - "lieutenancy": 4.9e-08, - "limburger": 4.9e-08, - "limbus": 4.9e-08, - "liposome": 4.9e-08, - "localizer": 4.9e-08, - "lordosis": 4.9e-08, - "madrona": 4.9e-08, - "maharana": 4.9e-08, - "mandatorily": 4.9e-08, - "masculinization": 4.9e-08, - "medaled": 4.9e-08, - "meerschaum": 4.9e-08, - "menshevik": 4.9e-08, - "merfolk": 4.9e-08, - "microcosmic": 4.9e-08, - "midwesterner": 4.9e-08, - "minimizer": 4.9e-08, - "mirepoix": 4.9e-08, - "mixolydian": 4.9e-08, - "moha": 4.9e-08, - "monoecious": 4.9e-08, - "mousehole": 4.9e-08, - "mousterian": 4.9e-08, - "mulga": 4.9e-08, - "natt": 4.9e-08, - "nephron": 4.9e-08, - "nickey": 4.9e-08, - "nilotic": 4.9e-08, - "nonviable": 4.9e-08, - "novem": 4.9e-08, - "numidian": 4.9e-08, - "oafish": 4.9e-08, - "ohioan": 4.9e-08, - "oiliness": 4.9e-08, - "otolaryngologist": 4.9e-08, - "overcurrent": 4.9e-08, - "overexertion": 4.9e-08, - "oxalis": 4.9e-08, - "pallial": 4.9e-08, - "papaver": 4.9e-08, - "pappi": 4.9e-08, - "paramo": 4.9e-08, - "patroller": 4.9e-08, - "pentose": 4.9e-08, - "phragmites": 4.9e-08, - "phytic": 4.9e-08, - "pictographic": 4.9e-08, - "pilothouse": 4.9e-08, - "pinking": 4.9e-08, - "pisang": 4.9e-08, - "placemaking": 4.9e-08, - "polychaete": 4.9e-08, - "porus": 4.9e-08, - "prancer": 4.9e-08, - "prendre": 4.9e-08, - "proselyte": 4.9e-08, - "pross": 4.9e-08, - "protegee": 4.9e-08, - "puan": 4.9e-08, - "pulmonic": 4.9e-08, - "pustular": 4.9e-08, - "pustule": 4.9e-08, - "quadriga": 4.9e-08, - "quat": 4.9e-08, - "queenly": 4.9e-08, - "radiogenic": 4.9e-08, - "rearmost": 4.9e-08, - "reattachment": 4.9e-08, - "refloat": 4.9e-08, - "rehear": 4.9e-08, - "reki": 4.9e-08, - "retracement": 4.9e-08, - "ritualistically": 4.9e-08, - "riyal": 4.9e-08, - "rockabye": 4.9e-08, - "rodolph": 4.9e-08, - "rosaceae": 4.9e-08, - "rottenness": 4.9e-08, - "saut": 4.9e-08, - "scilla": 4.9e-08, - "seebeck": 4.9e-08, - "sesamoid": 4.9e-08, - "shako": 4.9e-08, - "shamal": 4.9e-08, - "shimonoseki": 4.9e-08, - "sibylline": 4.9e-08, - "siwan": 4.9e-08, - "slimer": 4.9e-08, - "solanaceae": 4.9e-08, - "soldo": 4.9e-08, - "sorrowfully": 4.9e-08, - "sorrowing": 4.9e-08, - "spacy": 4.9e-08, - "spartina": 4.9e-08, - "spasmodically": 4.9e-08, - "spindrift": 4.9e-08, - "spoonbill": 4.9e-08, - "stippled": 4.9e-08, - "streng": 4.9e-08, - "stroboscopic": 4.9e-08, - "strophe": 4.9e-08, - "stuber": 4.9e-08, - "syzygy": 4.9e-08, - "tecoma": 4.9e-08, - "tecum": 4.9e-08, - "teevee": 4.9e-08, - "termen": 4.9e-08, - "thecla": 4.9e-08, - "thring": 4.9e-08, - "thyroidectomy": 4.9e-08, - "tilia": 4.9e-08, - "tintype": 4.9e-08, - "tities": 4.9e-08, - "transcriptionally": 4.9e-08, - "translocate": 4.9e-08, - "tripitaka": 4.9e-08, - "tropopause": 4.9e-08, - "tuneless": 4.9e-08, - "undreamed": 4.9e-08, - "ungodliness": 4.9e-08, - "unimodal": 4.9e-08, - "uninfluenced": 4.9e-08, - "unreflective": 4.9e-08, - "unremembered": 4.9e-08, - "unsearchable": 4.9e-08, - "unsurpassable": 4.9e-08, - "untrusting": 4.9e-08, - "vegetatively": 4.9e-08, - "ventrolateral": 4.9e-08, - "vicariate": 4.9e-08, - "vocalic": 4.9e-08, - "wahpeton": 4.9e-08, - "waxen": 4.9e-08, - "winkelman": 4.9e-08, - "yashiro": 4.9e-08, - "yoe": 4.9e-08, - "acetabular": 4.79e-08, - "achalasia": 4.79e-08, - "achondroplasia": 4.79e-08, - "aconitum": 4.79e-08, - "acrophobia": 4.79e-08, - "adduce": 4.79e-08, - "adnate": 4.79e-08, - "adrenocortical": 4.79e-08, - "affably": 4.79e-08, - "agapanthus": 4.79e-08, - "akala": 4.79e-08, - "alef": 4.79e-08, - "aluminate": 4.79e-08, - "alvah": 4.79e-08, - "americanize": 4.79e-08, - "amorite": 4.79e-08, - "anachronistically": 4.79e-08, - "anosmia": 4.79e-08, - "antidemocratic": 4.79e-08, - "approachability": 4.79e-08, - "arbuscular": 4.79e-08, - "aspirator": 4.79e-08, - "auspiciously": 4.79e-08, - "avital": 4.79e-08, - "aweigh": 4.79e-08, - "baff": 4.79e-08, - "balas": 2.24e-08, - "begay": 4.79e-08, - "berried": 4.79e-08, - "bindweed": 4.79e-08, - "bootmaker": 4.79e-08, - "boutonniere": 4.79e-08, - "bucephalus": 4.79e-08, - "buddle": 4.79e-08, - "bunkum": 4.79e-08, - "burnable": 4.79e-08, - "carbene": 4.79e-08, - "carborundum": 4.79e-08, - "carnauba": 4.79e-08, - "cashbox": 4.79e-08, - "catalyses": 4.79e-08, - "catholicity": 4.79e-08, - "checkoff": 4.79e-08, - "chiasm": 4.79e-08, - "chickahominy": 4.79e-08, - "clammed": 4.79e-08, - "collaborationist": 4.79e-08, - "colorization": 4.79e-08, - "comfortingly": 4.79e-08, - "conjuror": 4.79e-08, - "contrastingly": 4.79e-08, - "counterespionage": 4.79e-08, - "counterforce": 4.79e-08, - "covetable": 4.79e-08, - "creta": 4.79e-08, - "cryptogram": 4.79e-08, - "culotte": 4.79e-08, - "cynosure": 4.79e-08, - "debilitation": 4.79e-08, - "dehydrogenation": 4.79e-08, - "depa": 4.79e-08, - "deviousness": 4.79e-08, - "diastole": 4.79e-08, - "diophantine": 4.79e-08, - "disbar": 4.79e-08, - "discoid": 4.79e-08, - "discoverability": 4.79e-08, - "diverticulum": 4.79e-08, - "dodder": 4.79e-08, - "dorsiflexion": 4.79e-08, - "doubloon": 4.79e-08, - "eaglet": 4.79e-08, - "elastica": 4.79e-08, - "elvan": 4.79e-08, - "emissive": 4.79e-08, - "enameling": 4.79e-08, - "encumber": 4.79e-08, - "ennoble": 4.79e-08, - "entailment": 4.79e-08, - "ethnobotany": 4.79e-08, - "eulogize": 4.79e-08, - "eumenes": 4.79e-08, - "eurus": 4.79e-08, - "exponentiation": 4.79e-08, - "faden": 4.79e-08, - "feal": 4.79e-08, - "fiducial": 4.79e-08, - "finfish": 4.79e-08, - "frigidity": 4.79e-08, - "furl": 4.79e-08, - "genetical": 4.79e-08, - "geomancy": 4.79e-08, - "germicidal": 4.79e-08, - "gluey": 4.79e-08, - "gotra": 4.79e-08, - "gyges": 4.79e-08, - "haine": 4.79e-08, - "hippogriff": 4.79e-08, - "homophonic": 4.79e-08, - "hyla": 4.79e-08, - "hyperalgesia": 4.79e-08, - "hypersurface": 4.79e-08, - "iceni": 4.79e-08, - "illiquidity": 4.79e-08, - "indri": 4.79e-08, - "integrand": 4.79e-08, - "intermedius": 4.79e-08, - "intraepithelial": 4.79e-08, - "ironworker": 4.79e-08, - "jabiru": 4.79e-08, - "jacker": 4.79e-08, - "jaman": 4.79e-08, - "jauntily": 4.79e-08, - "kalon": 4.79e-08, - "kittiwake": 4.79e-08, - "klip": 4.79e-08, - "knowe": 4.79e-08, - "lahontan": 4.79e-08, - "larix": 4.79e-08, - "latus": 4.79e-08, - "leam": 4.79e-08, - "leanness": 4.79e-08, - "lexicographical": 4.79e-08, - "libration": 4.79e-08, - "lunate": 4.79e-08, - "lunes": 4.79e-08, - "lura": 4.79e-08, - "manipulable": 4.79e-08, - "masu": 4.79e-08, - "matricide": 4.79e-08, - "medievalist": 4.79e-08, - "megalith": 4.79e-08, - "metazoan": 4.79e-08, - "mide": 4.79e-08, - "miny": 4.79e-08, - "miscalculate": 4.79e-08, - "moonman": 4.79e-08, - "mountebank": 4.79e-08, - "mustela": 4.79e-08, - "myoclonus": 4.79e-08, - "nabob": 4.79e-08, - "nacre": 4.79e-08, - "naissance": 4.79e-08, - "namer": 4.79e-08, - "nerval": 4.79e-08, - "nibbana": 4.79e-08, - "noisome": 4.79e-08, - "notate": 4.79e-08, - "orlean": 4.79e-08, - "orographic": 4.79e-08, - "overenthusiastic": 4.79e-08, - "ovine": 4.79e-08, - "ozan": 4.79e-08, - "pantagruel": 4.79e-08, - "paraboloid": 4.79e-08, - "parky": 4.79e-08, - "paternally": 4.79e-08, - "pelleted": 4.79e-08, - "penology": 4.79e-08, - "persnickety": 4.79e-08, - "peste": 4.79e-08, - "phaedo": 4.79e-08, - "phantasia": 4.79e-08, - "phenological": 4.79e-08, - "pictorially": 4.79e-08, - "pinene": 4.79e-08, - "pistole": 4.79e-08, - "plasm": 4.79e-08, - "poaceae": 4.79e-08, - "polyposis": 4.79e-08, - "potch": 4.79e-08, - "pouched": 4.79e-08, - "practicability": 4.79e-08, - "predetermine": 4.79e-08, - "preoperatively": 4.79e-08, - "priggish": 4.79e-08, - "prohibitory": 4.79e-08, - "promethium": 4.79e-08, - "proneness": 4.79e-08, - "punctum": 4.79e-08, - "radome": 4.79e-08, - "reabsorb": 4.79e-08, - "relatability": 4.79e-08, - "rever": 4.79e-08, - "robur": 4.79e-08, - "romaji": 4.79e-08, - "roosa": 4.79e-08, - "roustabout": 4.79e-08, - "ruru": 4.79e-08, - "sabia": 4.79e-08, - "sabzi": 4.79e-08, - "saleslady": 4.79e-08, - "salsify": 4.79e-08, - "samian": 4.79e-08, - "sanely": 4.79e-08, - "saponification": 4.79e-08, - "sawfish": 4.79e-08, - "schoolbook": 4.79e-08, - "scoter": 4.79e-08, - "scrappage": 4.79e-08, - "sculptress": 4.79e-08, - "sensate": 4.79e-08, - "shirty": 4.79e-08, - "sice": 4.79e-08, - "siddhanta": 4.79e-08, - "sitta": 4.79e-08, - "skulled": 4.79e-08, - "slewing": 4.79e-08, - "slithery": 4.79e-08, - "snooper": 4.79e-08, - "sodality": 4.79e-08, - "solemnize": 4.79e-08, - "spandrel": 4.79e-08, - "staphylococci": 4.79e-08, - "starshine": 4.79e-08, - "steading": 4.79e-08, - "stevedoring": 4.79e-08, - "stifler": 4.79e-08, - "stogie": 4.79e-08, - "sulfonamide": 4.79e-08, - "tabes": 4.79e-08, - "tackiness": 4.79e-08, - "talitha": 4.79e-08, - "tartly": 4.79e-08, - "tenderhearted": 4.79e-08, - "tetrapod": 4.79e-08, - "theophany": 4.79e-08, - "tomentose": 4.79e-08, - "torc": 4.79e-08, - "transfuse": 4.79e-08, - "treater": 4.79e-08, - "tribespeople": 4.79e-08, - "tweedledum": 4.79e-08, - "tyramine": 4.79e-08, - "uncharacterized": 4.79e-08, - "undergird": 4.79e-08, - "unfasten": 4.79e-08, - "unisexual": 4.79e-08, - "unmindful": 4.79e-08, - "unpractical": 4.79e-08, - "unprofessionalism": 4.79e-08, - "uveal": 4.79e-08, - "vacantly": 4.79e-08, - "vache": 4.79e-08, - "vasoconstrictor": 4.79e-08, - "vasundhara": 4.79e-08, - "vau": 4.79e-08, - "ventromedial": 4.79e-08, - "vester": 4.79e-08, - "volcanically": 4.79e-08, - "wailer": 4.79e-08, - "wangle": 4.79e-08, - "winker": 4.79e-08, - "womanish": 4.79e-08, - "woodcutting": 4.79e-08, - "woolman": 4.79e-08, - "zarzuela": 4.79e-08, - "zoetrope": 4.79e-08, - "additivity": 4.68e-08, - "adenomatous": 4.68e-08, - "aftereffect": 4.68e-08, - "agena": 4.68e-08, - "aliveness": 4.68e-08, - "altruistically": 4.68e-08, - "ambulation": 4.68e-08, - "amra": 4.68e-08, - "anacreon": 4.68e-08, - "anaerobically": 4.68e-08, - "anthracene": 4.68e-08, - "antipode": 4.68e-08, - "antipyretic": 4.68e-08, - "antispasmodic": 4.68e-08, - "appellee": 4.68e-08, - "approver": 4.68e-08, - "assimilationist": 4.68e-08, - "asturian": 4.68e-08, - "austenite": 4.68e-08, - "avidya": 4.68e-08, - "avow": 4.68e-08, - "axisymmetric": 4.68e-08, - "bacchanalia": 4.68e-08, - "bahan": 4.68e-08, - "betted": 4.68e-08, - "bhakta": 4.68e-08, - "bicyclic": 4.68e-08, - "bidentate": 4.68e-08, - "bisection": 4.68e-08, - "boding": 4.68e-08, - "bornean": 4.68e-08, - "bulbar": 4.68e-08, - "bunder": 4.68e-08, - "cadaverous": 4.68e-08, - "calendrical": 4.68e-08, - "camarilla": 4.68e-08, - "carlist": 4.68e-08, - "castling": 4.68e-08, - "catgut": 4.68e-08, - "charwoman": 4.68e-08, - "chewer": 4.68e-08, - "chieftainship": 4.68e-08, - "chinny": 4.68e-08, - "chlorosis": 4.68e-08, - "chrysippus": 4.68e-08, - "circumscription": 4.68e-08, - "clima": 4.68e-08, - "colectomy": 4.68e-08, - "complexioned": 4.68e-08, - "conceptualism": 4.68e-08, - "concilium": 4.68e-08, - "congener": 4.68e-08, - "controversialist": 4.68e-08, - "corella": 4.68e-08, - "cornhusker": 4.68e-08, - "corpuscular": 4.68e-08, - "countersign": 4.68e-08, - "creditably": 4.68e-08, - "crocket": 4.68e-08, - "curcuma": 4.68e-08, - "cyperus": 4.68e-08, - "dagga": 4.68e-08, - "deathblow": 4.68e-08, - "defaulter": 4.68e-08, - "dhobi": 4.68e-08, - "dionysia": 4.68e-08, - "dogmatics": 4.68e-08, - "doored": 4.68e-08, - "dragoman": 4.68e-08, - "dunghill": 4.68e-08, - "dynamiting": 4.68e-08, - "earthlike": 4.68e-08, - "eclat": 4.68e-08, - "electrotherapy": 4.68e-08, - "elephantiasis": 4.68e-08, - "elliptically": 4.68e-08, - "emboss": 4.68e-08, - "enuresis": 4.68e-08, - "escudo": 4.68e-08, - "euphonious": 4.68e-08, - "euphony": 4.68e-08, - "extraterritoriality": 4.68e-08, - "fazenda": 4.68e-08, - "felicitation": 4.68e-08, - "fezzan": 4.68e-08, - "flugelhorn": 4.68e-08, - "foundress": 4.68e-08, - "gastronomical": 4.68e-08, - "gilo": 4.68e-08, - "glaciologist": 4.68e-08, - "grandiloquent": 4.68e-08, - "graphology": 4.68e-08, - "groover": 4.68e-08, - "guti": 4.68e-08, - "hagiographic": 4.68e-08, - "homelike": 4.68e-08, - "hotfoot": 4.68e-08, - "hushing": 4.68e-08, - "hypersomnia": 4.68e-08, - "hypostatic": 4.68e-08, - "hypotonic": 4.68e-08, - "ichthyosaur": 4.68e-08, - "imamate": 4.68e-08, - "imbecility": 4.68e-08, - "immi": 4.68e-08, - "impetuously": 4.68e-08, - "inadmissibility": 4.68e-08, - "incus": 4.68e-08, - "insurrectionist": 4.68e-08, - "interparliamentary": 4.68e-08, - "interrelate": 4.68e-08, - "intone": 4.68e-08, - "intraparty": 4.68e-08, - "intrusiveness": 4.68e-08, - "intussusception": 4.68e-08, - "irishness": 4.68e-08, - "iroquoian": 4.68e-08, - "jicama": 4.68e-08, - "jubilate": 4.68e-08, - "julietta": 4.68e-08, - "kelt": 4.68e-08, - "knowledgeably": 4.68e-08, - "koel": 4.68e-08, - "lascar": 4.68e-08, - "latinate": 4.68e-08, - "laun": 4.68e-08, - "leck": 4.68e-08, - "liberatory": 4.68e-08, - "limeade": 4.68e-08, - "listlessness": 4.68e-08, - "lonicera": 4.68e-08, - "looby": 4.68e-08, - "lupinus": 4.68e-08, - "matawan": 4.68e-08, - "meccan": 4.68e-08, - "medoc": 4.68e-08, - "metaphysician": 4.68e-08, - "metrological": 4.68e-08, - "microporous": 4.68e-08, - "mru": 4.68e-08, - "musette": 4.68e-08, - "muzz": 4.68e-08, - "nasopharynx": 4.68e-08, - "nasus": 4.68e-08, - "negress": 4.68e-08, - "nevo": 4.68e-08, - "noisette": 4.68e-08, - "nominalism": 4.68e-08, - "nopal": 4.68e-08, - "normatively": 4.68e-08, - "notifier": 4.68e-08, - "novocain": 4.68e-08, - "occiput": 4.68e-08, - "oligotrophic": 4.68e-08, - "onomatopoeic": 4.68e-08, - "opaline": 4.68e-08, - "optative": 4.68e-08, - "orality": 4.68e-08, - "osteoblast": 4.68e-08, - "ottinger": 4.68e-08, - "outlandishly": 4.68e-08, - "overcompensation": 4.68e-08, - "overspeed": 4.68e-08, - "paal": 4.68e-08, - "panfish": 4.68e-08, - "pannel": 4.68e-08, - "pedagogically": 4.68e-08, - "pegmatite": 4.68e-08, - "penumbral": 4.68e-08, - "petrify": 4.68e-08, - "petrographic": 4.68e-08, - "petrolatum": 4.68e-08, - "photoemission": 4.68e-08, - "phreatic": 4.68e-08, - "pinochle": 4.68e-08, - "pleomorphic": 4.68e-08, - "plosive": 4.68e-08, - "pneumoconiosis": 4.68e-08, - "polyatomic": 4.68e-08, - "polymerize": 4.68e-08, - "polyploid": 4.68e-08, - "ponga": 4.68e-08, - "popple": 4.68e-08, - "postorbital": 4.68e-08, - "prodromal": 4.68e-08, - "proslavery": 4.68e-08, - "quirinal": 4.68e-08, - "rampantly": 4.68e-08, - "rasher": 4.68e-08, - "receptiveness": 4.68e-08, - "rectally": 4.68e-08, - "referable": 4.68e-08, - "rehoboam": 4.68e-08, - "reimpose": 4.68e-08, - "reuel": 4.68e-08, - "revealingly": 4.68e-08, - "revegetation": 4.68e-08, - "ringtail": 4.68e-08, - "ritualist": 4.68e-08, - "rollerskating": 4.68e-08, - "romanticist": 4.68e-08, - "rumex": 4.68e-08, - "samal": 4.68e-08, - "sclerotinia": 4.68e-08, - "selvage": 4.68e-08, - "seminiferous": 4.68e-08, - "sheepfold": 4.68e-08, - "shortener": 4.68e-08, - "shuffler": 4.68e-08, - "silicic": 4.68e-08, - "simkin": 4.68e-08, - "snively": 4.68e-08, - "sodalite": 4.68e-08, - "soleus": 4.68e-08, - "soother": 4.68e-08, - "souper": 4.68e-08, - "spectrophotometry": 4.68e-08, - "splenomegaly": 4.68e-08, - "spondylolisthesis": 4.68e-08, - "spoony": 4.68e-08, - "spotlessly": 4.68e-08, - "steatosis": 4.68e-08, - "steerer": 4.68e-08, - "stubbly": 4.68e-08, - "stuffiness": 4.68e-08, - "stupefy": 4.68e-08, - "subdermal": 4.68e-08, - "sudd": 4.68e-08, - "sudsy": 4.68e-08, - "sumption": 4.68e-08, - "superlatively": 4.68e-08, - "supermarine": 4.68e-08, - "swang": 4.68e-08, - "sweetmeat": 4.68e-08, - "syndic": 4.68e-08, - "synergetic": 4.68e-08, - "synodal": 4.68e-08, - "synodical": 4.68e-08, - "teju": 4.68e-08, - "tenderer": 4.68e-08, - "teresina": 4.68e-08, - "termes": 4.68e-08, - "theogony": 4.68e-08, - "thomism": 4.68e-08, - "thousandfold": 4.68e-08, - "tiberian": 4.68e-08, - "tody": 4.68e-08, - "trackwork": 4.68e-08, - "trama": 4.68e-08, - "transborder": 4.68e-08, - "transformable": 4.68e-08, - "triazole": 4.68e-08, - "trireme": 4.68e-08, - "turlough": 4.68e-08, - "turp": 4.68e-08, - "turps": 4.68e-08, - "uncomprehending": 4.68e-08, - "unconfident": 4.68e-08, - "unforgettably": 4.68e-08, - "unforgiveness": 4.68e-08, - "unmercifully": 4.68e-08, - "unobjectionable": 4.68e-08, - "unpermitted": 4.68e-08, - "unreceptive": 4.68e-08, - "unrelieved": 4.68e-08, - "unserved": 4.68e-08, - "unstick": 4.68e-08, - "urbanite": 4.68e-08, - "uremia": 4.68e-08, - "vasospasm": 4.68e-08, - "vulgarly": 4.68e-08, - "wakening": 4.68e-08, - "warth": 4.68e-08, - "waxwing": 4.68e-08, - "weaselly": 4.68e-08, - "wettability": 4.68e-08, - "windjammer": 4.68e-08, - "wops": 4.68e-08, - "aboveboard": 4.57e-08, - "absaroka": 4.57e-08, - "acinar": 4.57e-08, - "aesthetician": 4.57e-08, - "agnatic": 4.57e-08, - "albe": 4.57e-08, - "alpinist": 4.57e-08, - "ambrosian": 4.57e-08, - "amphibolite": 4.57e-08, - "analecta": 4.57e-08, - "anhydrite": 4.57e-08, - "apostleship": 4.57e-08, - "arcady": 4.57e-08, - "archly": 4.57e-08, - "ascham": 4.57e-08, - "bacteroides": 4.57e-08, - "barbet": 4.57e-08, - "barong": 4.57e-08, - "benefaction": 4.57e-08, - "besought": 4.57e-08, - "bigeye": 4.57e-08, - "biostratigraphy": 4.57e-08, - "bizz": 4.57e-08, - "bluebottle": 4.57e-08, - "blunter": 4.57e-08, - "boeotian": 4.57e-08, - "bolshevist": 4.57e-08, - "borzoi": 4.57e-08, - "broadcloth": 4.57e-08, - "bucca": 4.57e-08, - "bundler": 4.57e-08, - "bureaucratically": 4.57e-08, - "buyable": 4.57e-08, - "calved": 4.57e-08, - "canarian": 4.57e-08, - "canonic": 4.57e-08, - "canopic": 4.57e-08, - "cantabrian": 4.57e-08, - "caramba": 4.57e-08, - "careworn": 4.57e-08, - "causer": 4.57e-08, - "celesta": 4.57e-08, - "cementum": 4.57e-08, - "changa": 4.57e-08, - "chapelry": 4.57e-08, - "chatwood": 4.57e-08, - "chena": 4.57e-08, - "cisalpine": 4.57e-08, - "cobleskill": 4.57e-08, - "colchicum": 4.57e-08, - "colibri": 4.57e-08, - "colorable": 4.57e-08, - "colposcopy": 4.57e-08, - "companionway": 4.57e-08, - "conniption": 4.57e-08, - "considerately": 4.57e-08, - "coppersmith": 4.57e-08, - "corban": 4.57e-08, - "coreopsis": 4.57e-08, - "cosiness": 4.57e-08, - "covenantal": 4.57e-08, - "creem": 4.57e-08, - "crotchet": 4.57e-08, - "culler": 4.57e-08, - "culverhouse": 4.57e-08, - "cyclopes": 4.57e-08, - "cystoscopy": 4.57e-08, - "dairyman": 4.57e-08, - "damara": 4.57e-08, - "dayman": 4.57e-08, - "deadliness": 4.57e-08, - "dedo": 4.57e-08, - "demobilize": 4.57e-08, - "diminuendo": 4.57e-08, - "dischargeable": 4.57e-08, - "durn": 4.57e-08, - "dysplastic": 4.57e-08, - "dysprosium": 4.57e-08, - "egeria": 4.57e-08, - "endemism": 4.57e-08, - "entomb": 4.57e-08, - "entrain": 4.57e-08, - "entreating": 4.57e-08, - "erysipelas": 4.57e-08, - "everlastingly": 4.57e-08, - "exegete": 4.57e-08, - "externalization": 4.57e-08, - "fabaceae": 4.57e-08, - "facer": 4.57e-08, - "ferulic": 4.57e-08, - "finnic": 4.57e-08, - "firebreak": 4.57e-08, - "fogey": 4.57e-08, - "forestation": 4.57e-08, - "frase": 4.57e-08, - "fugal": 4.57e-08, - "fusty": 4.57e-08, - "gallate": 4.57e-08, - "ganta": 4.57e-08, - "gasometer": 4.57e-08, - "giftware": 4.57e-08, - "gimble": 4.57e-08, - "gingery": 4.57e-08, - "girdler": 4.57e-08, - "gossard": 4.57e-08, - "gracefulness": 4.57e-08, - "graining": 4.57e-08, - "growly": 4.57e-08, - "guardroom": 4.57e-08, - "guidepost": 4.57e-08, - "harl": 4.57e-08, - "hellishly": 4.57e-08, - "hemodynamics": 4.57e-08, - "heptane": 4.57e-08, - "highroad": 4.57e-08, - "hilum": 4.57e-08, - "historiographic": 4.57e-08, - "homiletics": 4.57e-08, - "horsehead": 4.57e-08, - "ijo": 4.57e-08, - "immodesty": 4.57e-08, - "imponderable": 4.57e-08, - "inattentiveness": 4.57e-08, - "inconclusively": 4.57e-08, - "industriously": 4.57e-08, - "inflect": 4.57e-08, - "injudicious": 4.57e-08, - "inspirer": 4.57e-08, - "intercounty": 4.57e-08, - "jinni": 4.57e-08, - "joyfulness": 4.57e-08, - "junkman": 4.57e-08, - "kedgeree": 4.57e-08, - "keta": 4.57e-08, - "labral": 4.57e-08, - "lambaste": 4.57e-08, - "laminaria": 4.57e-08, - "legalist": 4.57e-08, - "legerdemain": 4.57e-08, - "lenience": 4.57e-08, - "lesbia": 4.57e-08, - "lignum": 4.57e-08, - "linalool": 4.57e-08, - "lineament": 4.57e-08, - "linum": 4.57e-08, - "lividity": 4.57e-08, - "lobectomy": 4.57e-08, - "lown": 4.57e-08, - "lowville": 4.57e-08, - "malchus": 4.57e-08, - "maliciousness": 4.57e-08, - "manito": 4.57e-08, - "matalan": 4.57e-08, - "medicament": 4.57e-08, - "midrashic": 4.57e-08, - "misguide": 4.57e-08, - "moonflower": 4.57e-08, - "mosaicism": 4.57e-08, - "mousing": 4.57e-08, - "myna": 4.57e-08, - "mytilus": 4.57e-08, - "nable": 4.57e-08, - "neuroanatomical": 4.57e-08, - "noiselessly": 4.57e-08, - "nonphysical": 4.57e-08, - "nudibranch": 4.57e-08, - "obscurantism": 4.57e-08, - "observability": 4.57e-08, - "olivaceous": 4.57e-08, - "ortolan": 4.57e-08, - "oxime": 4.57e-08, - "paha": 4.57e-08, - "papain": 4.57e-08, - "patera": 4.57e-08, - "patwari": 4.57e-08, - "paunchy": 4.57e-08, - "pearled": 4.57e-08, - "peashooter": 4.57e-08, - "pelops": 4.57e-08, - "penciling": 4.57e-08, - "periapical": 4.57e-08, - "perjurer": 4.57e-08, - "pestilential": 4.57e-08, - "petalled": 4.57e-08, - "peterloo": 4.57e-08, - "pissant": 4.57e-08, - "pist": 4.57e-08, - "plier": 4.57e-08, - "plumps": 4.57e-08, - "podded": 4.57e-08, - "poesy": 4.57e-08, - "prequalification": 4.57e-08, - "pretentiously": 4.57e-08, - "priapus": 4.57e-08, - "printworks": 4.57e-08, - "privity": 4.57e-08, - "prosopis": 4.57e-08, - "psalmody": 4.57e-08, - "punchable": 4.57e-08, - "pythium": 4.57e-08, - "quadrupedal": 4.57e-08, - "quinault": 4.57e-08, - "ramal": 4.57e-08, - "recapitalize": 4.57e-08, - "recirculate": 4.57e-08, - "redan": 4.57e-08, - "redundantly": 4.57e-08, - "reinvestigation": 4.57e-08, - "revealer": 4.57e-08, - "rinderpest": 4.57e-08, - "rodentia": 4.57e-08, - "salthouse": 4.57e-08, - "sapin": 4.57e-08, - "sarcoplasmic": 4.57e-08, - "scourging": 4.57e-08, - "scrat": 4.57e-08, - "septate": 4.57e-08, - "serviette": 4.57e-08, - "shiism": 4.27e-08, - "shintoism": 4.57e-08, - "siskin": 4.57e-08, - "skywriting": 4.57e-08, - "snoozer": 4.57e-08, - "solander": 4.57e-08, - "solen": 4.57e-08, - "solomonic": 4.57e-08, - "sool": 4.57e-08, - "sorcerous": 4.57e-08, - "spiritedness": 4.57e-08, - "splotchy": 4.57e-08, - "squealer": 4.57e-08, - "staker": 4.57e-08, - "steinberger": 4.57e-08, - "stemware": 4.57e-08, - "sterk": 4.57e-08, - "stickle": 4.57e-08, - "streamliner": 4.57e-08, - "strutter": 4.57e-08, - "submicron": 4.57e-08, - "supersaturation": 4.57e-08, - "surma": 4.57e-08, - "surmountable": 4.57e-08, - "tewa": 4.57e-08, - "thalli": 4.57e-08, - "thessalian": 4.57e-08, - "thieve": 4.57e-08, - "thomist": 4.57e-08, - "tomatillo": 4.57e-08, - "transection": 4.57e-08, - "treader": 4.57e-08, - "trematodes": 4.57e-08, - "trichinosis": 4.57e-08, - "tyee": 4.57e-08, - "unconformably": 4.57e-08, - "underbid": 4.57e-08, - "unexperienced": 4.57e-08, - "unmedicated": 4.57e-08, - "unresponsiveness": 4.57e-08, - "utile": 4.57e-08, - "valediction": 4.57e-08, - "velum": 4.57e-08, - "volcanologist": 4.57e-08, - "wafd": 4.57e-08, - "wahine": 4.57e-08, - "weening": 4.57e-08, - "weeper": 4.57e-08, - "whiteboy": 4.57e-08, - "wilhelmine": 4.57e-08, - "wintle": 4.57e-08, - "witan": 4.57e-08, - "zonation": 4.57e-08, - "acquiescent": 4.47e-08, - "adulterate": 4.47e-08, - "alkalosis": 4.47e-08, - "allene": 4.47e-08, - "amah": 4.47e-08, - "amoeboid": 4.47e-08, - "anamnesis": 4.47e-08, - "anchorite": 4.47e-08, - "ango": 4.47e-08, - "anjan": 4.47e-08, - "antitrypsin": 4.47e-08, - "apiculture": 4.47e-08, - "archpriest": 4.47e-08, - "asclepias": 4.47e-08, - "assortative": 4.47e-08, - "atelectasis": 4.47e-08, - "athwart": 4.47e-08, - "atter": 4.47e-08, - "autem": 4.47e-08, - "autobus": 4.47e-08, - "automorphic": 4.47e-08, - "avar": 4.47e-08, - "aventurine": 4.47e-08, - "azolla": 4.47e-08, - "baksheesh": 4.47e-08, - "barbwire": 4.47e-08, - "bargh": 4.47e-08, - "bauhinia": 4.47e-08, - "beath": 4.47e-08, - "benami": 4.47e-08, - "bezoar": 4.47e-08, - "blowy": 4.47e-08, - "boran": 4.47e-08, - "broo": 4.47e-08, - "bulrush": 4.47e-08, - "bumbo": 4.47e-08, - "buran": 4.47e-08, - "burgeon": 4.47e-08, - "busser": 4.47e-08, - "cany": 4.47e-08, - "casque": 4.47e-08, - "catamount": 4.47e-08, - "caustically": 4.47e-08, - "cetacea": 4.47e-08, - "chitinous": 4.47e-08, - "cirrhotic": 4.47e-08, - "clamming": 4.47e-08, - "clat": 4.47e-08, - "clavichord": 4.47e-08, - "columbarium": 4.47e-08, - "communicant": 4.47e-08, - "condole": 4.47e-08, - "connoisseurship": 4.47e-08, - "coriaceous": 4.47e-08, - "corium": 4.47e-08, - "corton": 4.47e-08, - "courter": 4.47e-08, - "coyness": 4.47e-08, - "curium": 4.47e-08, - "cutis": 4.47e-08, - "daff": 4.47e-08, - "decisional": 4.47e-08, - "decurrent": 4.47e-08, - "deductively": 4.47e-08, - "deportable": 4.47e-08, - "disaccharide": 4.47e-08, - "discrepant": 4.47e-08, - "disempower": 4.47e-08, - "disfranchisement": 4.47e-08, - "disinflation": 4.47e-08, - "distributary": 4.47e-08, - "diuresis": 4.47e-08, - "divinatory": 4.47e-08, - "dodecyl": 4.47e-08, - "donator": 4.47e-08, - "dracaena": 4.47e-08, - "durational": 4.47e-08, - "dystocia": 4.47e-08, - "ecclesiological": 4.47e-08, - "enamelware": 4.47e-08, - "epicureanism": 4.47e-08, - "equisetum": 4.47e-08, - "espinal": 4.47e-08, - "estrous": 4.47e-08, - "eudaimonia": 4.47e-08, - "exculpate": 4.47e-08, - "falange": 4.47e-08, - "fearfulness": 4.47e-08, - "feebleness": 4.47e-08, - "felty": 4.47e-08, - "filioque": 4.47e-08, - "flatcar": 4.47e-08, - "flophouse": 4.47e-08, - "gaited": 4.47e-08, - "gaiter": 4.47e-08, - "gaoler": 4.47e-08, - "garance": 4.47e-08, - "garble": 4.47e-08, - "gardy": 4.47e-08, - "gasifier": 4.47e-08, - "geat": 4.47e-08, - "geochemist": 4.47e-08, - "geodynamic": 4.47e-08, - "gilling": 4.47e-08, - "gnaeus": 4.47e-08, - "granduncle": 4.47e-08, - "greyness": 4.47e-08, - "gunwale": 4.47e-08, - "habu": 4.47e-08, - "hangnail": 4.47e-08, - "hausen": 4.47e-08, - "histopathologic": 4.47e-08, - "historiographer": 4.47e-08, - "hogback": 4.47e-08, - "holidaymaker": 4.47e-08, - "hollin": 4.47e-08, - "homeomorphism": 4.47e-08, - "housecoat": 4.47e-08, - "hydrogeological": 4.47e-08, - "illuminance": 4.47e-08, - "imprudently": 4.47e-08, - "incalculably": 4.47e-08, - "indubitable": 4.47e-08, - "interborough": 4.47e-08, - "interlake": 4.47e-08, - "internationalize": 4.47e-08, - "intrahepatic": 4.47e-08, - "isobaric": 4.47e-08, - "isochronous": 4.47e-08, - "jugal": 4.47e-08, - "jupe": 4.47e-08, - "killingly": 4.47e-08, - "klystron": 4.47e-08, - "kyat": 4.47e-08, - "laches": 4.47e-08, - "latigo": 4.47e-08, - "laxness": 4.47e-08, - "lectotype": 4.47e-08, - "lepas": 4.47e-08, - "ligamentous": 4.47e-08, - "luxus": 4.47e-08, - "lycanthrope": 4.47e-08, - "mahalla": 4.47e-08, - "maimon": 4.47e-08, - "maraca": 4.47e-08, - "maral": 4.47e-08, - "mateship": 4.47e-08, - "measurer": 4.47e-08, - "meio": 4.47e-08, - "merula": 4.47e-08, - "micmac": 4.47e-08, - "molarity": 4.47e-08, - "monodrama": 4.47e-08, - "monosaccharide": 4.47e-08, - "multimodality": 4.47e-08, - "muntjac": 4.47e-08, - "murid": 4.47e-08, - "nark": 4.47e-08, - "neckband": 4.47e-08, - "neurasthenia": 4.47e-08, - "noisemaker": 4.47e-08, - "nomadism": 4.47e-08, - "noncombat": 4.47e-08, - "nubby": 4.47e-08, - "okee": 4.47e-08, - "oresteia": 4.47e-08, - "oropharynx": 4.47e-08, - "osteitis": 4.47e-08, - "outgun": 4.47e-08, - "overfeed": 4.47e-08, - "oxidization": 4.47e-08, - "palazzi": 4.47e-08, - "palearctic": 4.47e-08, - "pargana": 4.47e-08, - "partitive": 4.47e-08, - "pastorale": 4.47e-08, - "paterfamilias": 4.47e-08, - "peggle": 4.47e-08, - "penstock": 4.47e-08, - "pericarp": 4.47e-08, - "phaethon": 4.47e-08, - "pharisaic": 4.47e-08, - "photochromic": 4.47e-08, - "pistillate": 4.47e-08, - "plastron": 4.47e-08, - "pliability": 4.47e-08, - "podgy": 4.47e-08, - "poinciana": 4.47e-08, - "polyphase": 4.47e-08, - "pombe": 4.47e-08, - "porphyritic": 4.47e-08, - "poundstone": 4.47e-08, - "prolix": 4.47e-08, - "psychophysiological": 4.47e-08, - "pulpwood": 4.47e-08, - "purgation": 4.47e-08, - "pyromania": 4.47e-08, - "quadric": 4.47e-08, - "quatorze": 4.47e-08, - "questor": 4.47e-08, - "quinoline": 4.47e-08, - "ramekin": 4.47e-08, - "raucously": 4.47e-08, - "redactor": 4.47e-08, - "reen": 4.47e-08, - "refractometer": 4.47e-08, - "restrictively": 4.47e-08, - "revalue": 4.47e-08, - "rivage": 4.47e-08, - "rodding": 4.47e-08, - "rodenticide": 4.47e-08, - "roke": 4.47e-08, - "ruach": 4.47e-08, - "savarin": 4.47e-08, - "scandalize": 4.47e-08, - "sciara": 4.47e-08, - "sealable": 4.47e-08, - "secreto": 4.47e-08, - "semisimple": 4.47e-08, - "seps": 4.47e-08, - "shive": 4.47e-08, - "sigmoidoscopy": 4.47e-08, - "sipper": 4.47e-08, - "skuse": 4.47e-08, - "smoochy": 4.47e-08, - "snookered": 4.47e-08, - "somnambulist": 4.47e-08, - "sourly": 4.47e-08, - "spiffing": 4.47e-08, - "stug": 4.47e-08, - "submersed": 4.47e-08, - "subsample": 4.47e-08, - "subzone": 4.47e-08, - "suffusion": 4.47e-08, - "superabundance": 4.47e-08, - "supplicate": 4.47e-08, - "syringa": 4.47e-08, - "talion": 4.47e-08, - "tarahumara": 4.47e-08, - "terbium": 4.47e-08, - "tercel": 4.47e-08, - "terminer": 4.47e-08, - "thereunto": 4.47e-08, - "thrax": 4.47e-08, - "tideway": 4.47e-08, - "tinman": 4.47e-08, - "tinning": 4.47e-08, - "tittering": 4.47e-08, - "tombe": 4.47e-08, - "toran": 4.47e-08, - "tragedian": 4.47e-08, - "tranquilizing": 4.47e-08, - "transferor": 4.47e-08, - "transmissibility": 4.47e-08, - "treebeard": 4.47e-08, - "trommel": 4.47e-08, - "tubingen": 4.47e-08, - "underclassman": 4.47e-08, - "undershoot": 4.47e-08, - "underwing": 4.47e-08, - "undescended": 4.47e-08, - "unowned": 4.47e-08, - "unpreparedness": 4.47e-08, - "unprintable": 4.47e-08, - "unresolvable": 4.47e-08, - "untrammeled": 4.47e-08, - "ursine": 4.47e-08, - "vaudois": 4.47e-08, - "venator": 4.47e-08, - "vermonter": 4.47e-08, - "vervet": 4.47e-08, - "vilely": 4.47e-08, - "waff": 4.47e-08, - "wheatear": 4.47e-08, - "whispery": 4.47e-08, - "winnipesaukee": 4.47e-08, - "worldy": 4.47e-08, - "wriggly": 4.47e-08, - "xeric": 4.47e-08, - "yajna": 4.47e-08, - "yellowhead": 4.47e-08, - "yellowy": 4.47e-08, - "yurok": 4.47e-08, - "zoophilia": 4.47e-08, - "abac": 4.37e-08, - "abiogenesis": 4.37e-08, - "abortifacient": 4.37e-08, - "achene": 4.37e-08, - "acidify": 4.37e-08, - "actinium": 4.37e-08, - "addu": 4.37e-08, - "adipocyte": 4.37e-08, - "agglomerate": 4.37e-08, - "aitch": 4.37e-08, - "alfreda": 4.37e-08, - "alkoxy": 4.37e-08, - "allocable": 4.37e-08, - "alphabetize": 4.37e-08, - "ammu": 4.37e-08, - "amphion": 4.37e-08, - "annal": 4.37e-08, - "antiemetic": 4.37e-08, - "antimonopoly": 4.37e-08, - "antiphonal": 4.37e-08, - "apheresis": 4.37e-08, - "aphoristic": 4.37e-08, - "aptian": 4.37e-08, - "aristotelianism": 4.37e-08, - "armida": 4.37e-08, - "assai": 4.37e-08, - "avars": 4.37e-08, - "babine": 4.37e-08, - "bacchanalian": 4.37e-08, - "bakhtiari": 4.37e-08, - "baluster": 4.37e-08, - "bander": 4.37e-08, - "baria": 4.37e-08, - "batavian": 4.37e-08, - "bedwell": 4.37e-08, - "beguine": 4.37e-08, - "beja": 4.37e-08, - "benefactress": 4.37e-08, - "blowoff": 4.37e-08, - "boun": 4.37e-08, - "brachycephalic": 4.37e-08, - "bridgework": 4.37e-08, - "bronchodilator": 4.37e-08, - "cancellous": 4.37e-08, - "capriciousness": 4.37e-08, - "carabidae": 4.37e-08, - "caravanserai": 4.37e-08, - "caudle": 4.37e-08, - "cautery": 4.37e-08, - "celanese": 4.37e-08, - "chahar": 4.37e-08, - "chary": 4.37e-08, - "cholecystitis": 4.37e-08, - "chromatically": 4.37e-08, - "chromatics": 4.37e-08, - "cirri": 4.37e-08, - "coalescent": 4.37e-08, - "cobia": 4.37e-08, - "conferment": 4.37e-08, - "connive": 4.37e-08, - "convertor": 4.37e-08, - "convulsively": 4.37e-08, - "cordwainer": 4.37e-08, - "cornstalk": 4.37e-08, - "corporator": 4.37e-08, - "corynebacterium": 4.37e-08, - "cowlick": 4.37e-08, - "deciliter": 4.37e-08, - "deistic": 4.37e-08, - "deric": 4.37e-08, - "derivable": 4.37e-08, - "dharna": 4.37e-08, - "dilo": 4.37e-08, - "dogtooth": 4.37e-08, - "donia": 4.37e-08, - "dovecot": 4.37e-08, - "dramaturgical": 4.37e-08, - "durably": 4.37e-08, - "eimeria": 4.37e-08, - "elysia": 4.37e-08, - "endosome": 4.37e-08, - "enharmonic": 4.37e-08, - "ephesian": 4.37e-08, - "epiphyseal": 4.37e-08, - "erythematous": 4.37e-08, - "evocatively": 4.37e-08, - "excoriate": 4.37e-08, - "extemporaneously": 4.37e-08, - "extirpate": 4.37e-08, - "extrait": 4.37e-08, - "fluffiness": 4.37e-08, - "foody": 4.37e-08, - "fortuneteller": 4.37e-08, - "forwardness": 4.37e-08, - "frustum": 4.37e-08, - "fussiness": 4.37e-08, - "fust": 4.37e-08, - "galways": 4.37e-08, - "gangrel": 4.37e-08, - "gasconade": 4.37e-08, - "gipper": 4.37e-08, - "gramme": 4.37e-08, - "grampus": 4.37e-08, - "grumpily": 4.37e-08, - "guardedly": 4.37e-08, - "guesser": 4.37e-08, - "hakea": 4.37e-08, - "handsaw": 4.37e-08, - "healthfulness": 4.37e-08, - "heliothis": 4.37e-08, - "hermaphroditism": 4.37e-08, - "hobnail": 4.37e-08, - "homiletic": 4.37e-08, - "horsefly": 4.37e-08, - "hubristic": 4.37e-08, - "husbandman": 4.37e-08, - "hygienically": 4.37e-08, - "ichneumon": 4.37e-08, - "icily": 4.37e-08, - "iguanodon": 4.37e-08, - "impetuosity": 4.37e-08, - "inconsolably": 4.37e-08, - "incurious": 4.37e-08, - "inferiorly": 4.37e-08, - "interosseous": 4.37e-08, - "intersubjective": 4.37e-08, - "intestacy": 4.37e-08, - "introgression": 4.37e-08, - "irreverently": 4.37e-08, - "jalapa": 4.37e-08, - "jejune": 4.37e-08, - "jonquil": 4.37e-08, - "kalanchoe": 4.37e-08, - "kashan": 4.37e-08, - "katydid": 4.37e-08, - "kauravas": 4.37e-08, - "knobbed": 4.37e-08, - "kobus": 4.37e-08, - "labellum": 4.37e-08, - "lawyerly": 4.37e-08, - "leachman": 4.37e-08, - "lifework": 4.37e-08, - "ligas": 1.86e-08, - "lightheartedly": 4.37e-08, - "livelong": 4.37e-08, - "lorica": 4.37e-08, - "luncheonette": 4.37e-08, - "lushness": 4.37e-08, - "lycopodium": 4.37e-08, - "lysimachus": 4.37e-08, - "machination": 4.37e-08, - "marka": 4.37e-08, - "maund": 4.37e-08, - "metier": 4.37e-08, - "militate": 4.37e-08, - "misappropriate": 4.37e-08, - "misjudgement": 4.37e-08, - "moabite": 4.37e-08, - "mocker": 4.37e-08, - "moonglow": 4.37e-08, - "motorization": 4.37e-08, - "multipotent": 4.37e-08, - "mycologist": 4.37e-08, - "nastily": 4.37e-08, - "nepenthes": 4.37e-08, - "nominator": 4.37e-08, - "obligee": 4.37e-08, - "obstreperous": 4.37e-08, - "ocotillo": 4.37e-08, - "ophiuchus": 4.37e-08, - "opposer": 4.37e-08, - "oubliette": 4.37e-08, - "outfront": 4.37e-08, - "overeducated": 4.37e-08, - "overlie": 4.37e-08, - "owd": 4.37e-08, - "oxidoreductase": 4.37e-08, - "panax": 4.37e-08, - "pastorally": 4.37e-08, - "pavo": 4.37e-08, - "pedder": 4.37e-08, - "pelias": 4.37e-08, - "persico": 4.37e-08, - "pewee": 4.37e-08, - "piquancy": 4.37e-08, - "placket": 4.37e-08, - "pleasurably": 4.37e-08, - "pleiotropic": 4.37e-08, - "plunderer": 4.37e-08, - "polygynous": 4.37e-08, - "pompon": 4.37e-08, - "potentilla": 4.37e-08, - "predaceous": 4.37e-08, - "prorogue": 4.37e-08, - "provender": 4.37e-08, - "prussic": 4.37e-08, - "psychoanalyze": 4.37e-08, - "pteranodon": 4.37e-08, - "punctate": 4.37e-08, - "puranic": 4.37e-08, - "quar": 4.37e-08, - "queasiness": 4.37e-08, - "quoin": 4.37e-08, - "rehouse": 4.37e-08, - "reim": 4.37e-08, - "relationally": 4.37e-08, - "resaca": 4.37e-08, - "resect": 4.37e-08, - "ricardian": 4.37e-08, - "riderless": 4.37e-08, - "riskless": 4.37e-08, - "ritualism": 4.37e-08, - "roadstead": 4.37e-08, - "romanic": 4.37e-08, - "ruing": 4.37e-08, - "runnable": 4.37e-08, - "salmonellosis": 4.37e-08, - "sassanian": 4.37e-08, - "scaliger": 4.37e-08, - "sekar": 4.37e-08, - "sensical": 4.37e-08, - "signally": 4.37e-08, - "singeing": 4.37e-08, - "sinistral": 4.37e-08, - "sisseton": 4.37e-08, - "skive": 4.37e-08, - "skookum": 4.37e-08, - "smither": 4.37e-08, - "societally": 4.37e-08, - "soldierly": 4.37e-08, - "songy": 4.37e-08, - "splotch": 4.37e-08, - "staminate": 4.37e-08, - "steelmaker": 4.37e-08, - "stipa": 4.37e-08, - "stirk": 4.37e-08, - "stria": 4.37e-08, - "subalgebra": 4.37e-08, - "suicidally": 4.37e-08, - "superheat": 4.37e-08, - "swink": 4.37e-08, - "syenite": 4.37e-08, - "syndromic": 4.37e-08, - "synovitis": 4.37e-08, - "tahsil": 4.37e-08, - "talma": 4.37e-08, - "tardigrade": 4.37e-08, - "tatting": 4.37e-08, - "taurean": 4.37e-08, - "thermae": 4.37e-08, - "thermoluminescence": 4.37e-08, - "thill": 4.37e-08, - "timeworn": 4.37e-08, - "tootle": 4.37e-08, - "topflight": 4.37e-08, - "transfrontier": 4.37e-08, - "trevally": 4.37e-08, - "triable": 4.37e-08, - "triggerfish": 4.37e-08, - "troopship": 4.37e-08, - "tuberose": 4.37e-08, - "tugger": 4.37e-08, - "unalterably": 4.37e-08, - "uncatchable": 4.37e-08, - "uncrossed": 4.37e-08, - "undisputable": 4.37e-08, - "unexpurgated": 4.37e-08, - "unmastered": 4.37e-08, - "unreasonableness": 4.37e-08, - "unregenerate": 4.37e-08, - "unscreened": 4.37e-08, - "unspotted": 4.37e-08, - "unstrung": 4.37e-08, - "unswervingly": 4.37e-08, - "unvisited": 4.37e-08, - "unwelcomed": 4.37e-08, - "upline": 4.37e-08, - "vaginoplasty": 4.37e-08, - "varlet": 4.37e-08, - "verdure": 4.37e-08, - "visigoth": 4.37e-08, - "wanner": 4.37e-08, - "warmness": 4.37e-08, - "woodworm": 4.37e-08, - "zoa": 4.37e-08, - "activeness": 4.27e-08, - "affa": 4.27e-08, - "affectivity": 4.27e-08, - "agglomerated": 4.27e-08, - "albite": 4.27e-08, - "alow": 4.27e-08, - "amadi": 4.27e-08, - "amazulu": 4.27e-08, - "antlered": 4.27e-08, - "apar": 4.27e-08, - "arrack": 4.27e-08, - "artilleryman": 4.27e-08, - "ashkenazic": 4.27e-08, - "astraea": 4.27e-08, - "authoress": 4.27e-08, - "avoirdupois": 4.27e-08, - "bahaullah": 4.27e-08, - "balata": 4.27e-08, - "balloonist": 4.27e-08, - "barer": 4.27e-08, - "barm": 4.27e-08, - "bawd": 4.27e-08, - "berean": 4.27e-08, - "bidar": 4.27e-08, - "bitt": 4.27e-08, - "bonang": 4.27e-08, - "bromeliad": 4.27e-08, - "bullheaded": 4.27e-08, - "bullit": 4.27e-08, - "bunted": 4.27e-08, - "bunyoro": 4.27e-08, - "burse": 4.27e-08, - "buteo": 4.27e-08, - "cardon": 4.27e-08, - "cassiterite": 4.27e-08, - "ceramist": 4.27e-08, - "chid": 4.27e-08, - "chiropodist": 4.27e-08, - "chlor": 4.27e-08, - "cofferdam": 4.27e-08, - "confederal": 4.27e-08, - "congresso": 4.27e-08, - "contango": 4.27e-08, - "corke": 4.27e-08, - "coxcomb": 4.27e-08, - "cueball": 4.27e-08, - "cummer": 4.27e-08, - "cusped": 4.27e-08, - "cuttle": 4.27e-08, - "dand": 4.27e-08, - "dearness": 4.27e-08, - "decumbent": 4.27e-08, - "dentary": 4.27e-08, - "describable": 4.27e-08, - "despairingly": 4.27e-08, - "detectability": 4.27e-08, - "dewlap": 4.27e-08, - "digressive": 4.27e-08, - "dinge": 4.27e-08, - "discomfiture": 4.27e-08, - "dishearten": 4.27e-08, - "disquisition": 4.27e-08, - "dode": 4.27e-08, - "dollface": 4.27e-08, - "druidism": 4.27e-08, - "duppy": 4.27e-08, - "eirene": 4.27e-08, - "emaciation": 4.27e-08, - "embroiderer": 4.27e-08, - "endogamous": 4.27e-08, - "enfilade": 4.27e-08, - "enfranchise": 4.27e-08, - "enlight": 4.27e-08, - "enow": 4.27e-08, - "epiphyte": 4.27e-08, - "equable": 4.27e-08, - "erythroid": 4.27e-08, - "estriol": 4.27e-08, - "executrix": 4.27e-08, - "experiencer": 4.27e-08, - "fathomless": 4.27e-08, - "fireweed": 4.27e-08, - "fixity": 4.27e-08, - "floristry": 4.27e-08, - "franconian": 4.27e-08, - "frequenter": 4.27e-08, - "galleried": 4.27e-08, - "gammer": 4.27e-08, - "gardened": 4.27e-08, - "gastrocnemius": 4.27e-08, - "gelignite": 4.27e-08, - "genially": 4.27e-08, - "geometer": 4.27e-08, - "germy": 4.27e-08, - "globule": 4.27e-08, - "glom": 4.27e-08, - "glop": 4.27e-08, - "gonococcal": 4.27e-08, - "goyle": 4.27e-08, - "grandnephew": 4.27e-08, - "gurt": 4.27e-08, - "haddo": 4.27e-08, - "harleian": 4.27e-08, - "hatbox": 4.27e-08, - "hatchway": 4.27e-08, - "henbane": 4.27e-08, - "heteroptera": 4.27e-08, - "hieron": 4.27e-08, - "histoplasmosis": 4.27e-08, - "honker": 4.27e-08, - "houseless": 4.27e-08, - "humpbacked": 4.27e-08, - "hymnody": 4.27e-08, - "hyperopia": 4.27e-08, - "hypospadias": 4.27e-08, - "ideality": 4.27e-08, - "imprecisely": 4.27e-08, - "inebriate": 4.27e-08, - "ineffably": 4.27e-08, - "infrequency": 4.27e-08, - "inkerman": 4.27e-08, - "inness": 4.27e-08, - "inroad": 4.27e-08, - "insecurely": 4.27e-08, - "insolently": 4.27e-08, - "insouciant": 4.27e-08, - "interoceanic": 4.27e-08, - "intersperse": 4.27e-08, - "isobutyl": 4.27e-08, - "jibber": 4.27e-08, - "knacker": 4.27e-08, - "lauric": 4.27e-08, - "leister": 4.27e-08, - "letch": 4.27e-08, - "levana": 4.27e-08, - "liard": 4.27e-08, - "lide": 4.27e-08, - "limbal": 4.27e-08, - "livonian": 4.27e-08, - "machiavellianism": 4.27e-08, - "makah": 4.27e-08, - "malleolus": 4.27e-08, - "mannerly": 4.27e-08, - "martensite": 4.27e-08, - "meader": 4.27e-08, - "meadowland": 4.27e-08, - "meggy": 4.27e-08, - "mezuzah": 4.27e-08, - "middy": 4.27e-08, - "milesian": 4.27e-08, - "milker": 4.27e-08, - "misfeasance": 4.27e-08, - "mohel": 4.27e-08, - "moki": 4.27e-08, - "moldable": 4.27e-08, - "monogenic": 4.27e-08, - "monotheist": 4.27e-08, - "nahua": 4.27e-08, - "nicomachean": 4.27e-08, - "nitration": 4.27e-08, - "nucleate": 4.27e-08, - "nuda": 4.27e-08, - "nymphomania": 4.27e-08, - "obbligato": 4.27e-08, - "occupationally": 4.27e-08, - "oddish": 4.27e-08, - "oolitic": 4.27e-08, - "osteoclast": 4.27e-08, - "outspokenly": 4.27e-08, - "overdubbed": 4.27e-08, - "packman": 4.27e-08, - "pank": 4.27e-08, - "paren": 4.27e-08, - "parmelia": 4.27e-08, - "passiflora": 4.27e-08, - "paster": 4.27e-08, - "patas": 4.27e-08, - "pentane": 4.27e-08, - "pentoxide": 4.27e-08, - "pepino": 4.27e-08, - "perilla": 4.27e-08, - "pessimistically": 4.27e-08, - "pharmacognosy": 4.27e-08, - "phlebitis": 4.27e-08, - "photosynthesize": 4.27e-08, - "picturesquely": 4.27e-08, - "planchette": 4.27e-08, - "polytheist": 4.27e-08, - "potboiler": 4.27e-08, - "premaxillary": 4.27e-08, - "presidentially": 4.27e-08, - "pyrophoric": 4.27e-08, - "quaestor": 4.27e-08, - "reclaimer": 4.27e-08, - "reconversion": 4.27e-08, - "reforest": 4.27e-08, - "rheostat": 4.27e-08, - "roughhousing": 4.27e-08, - "ruinously": 4.27e-08, - "sacker": 4.27e-08, - "sakyamuni": 4.27e-08, - "sandblast": 4.27e-08, - "sawbones": 4.27e-08, - "scena": 4.27e-08, - "sclerotia": 4.27e-08, - "scopa": 4.27e-08, - "scutellum": 4.27e-08, - "sensitiveness": 4.27e-08, - "sensorium": 4.27e-08, - "shrubland": 4.27e-08, - "silkie": 4.27e-08, - "singlehanded": 4.27e-08, - "sketcher": 4.27e-08, - "spatulate": 4.27e-08, - "spectroscope": 4.27e-08, - "spendable": 4.27e-08, - "squamosal": 4.27e-08, - "steppingstone": 4.27e-08, - "stoff": 4.27e-08, - "strew": 4.27e-08, - "stylet": 4.27e-08, - "subadult": 4.27e-08, - "subah": 4.27e-08, - "subapical": 4.27e-08, - "sublevel": 4.27e-08, - "summering": 4.27e-08, - "tappet": 4.27e-08, - "telegrapher": 4.27e-08, - "telluric": 4.27e-08, - "toroid": 4.27e-08, - "totting": 4.27e-08, - "towline": 4.27e-08, - "tramline": 4.27e-08, - "tret": 4.27e-08, - "trichoptera": 4.27e-08, - "trillionth": 4.27e-08, - "tropism": 4.27e-08, - "truffled": 4.27e-08, - "tweeze": 4.27e-08, - "unbaked": 4.27e-08, - "unbilled": 4.27e-08, - "unbinding": 4.27e-08, - "unclip": 4.27e-08, - "unconsidered": 4.27e-08, - "unfed": 4.27e-08, - "unliked": 4.27e-08, - "variegation": 4.27e-08, - "visayan": 4.27e-08, - "wandle": 4.27e-08, - "wheelman": 4.27e-08, - "whitewall": 4.27e-08, - "wonderfulness": 4.27e-08, - "xerostomia": 4.27e-08, - "yali": 4.27e-08, - "yaws": 4.27e-08, - "yohimbine": 4.27e-08, - "yquem": 4.27e-08, - "acher": 4.17e-08, - "acrimoniously": 4.17e-08, - "actuarially": 4.17e-08, - "afterworld": 4.17e-08, - "aldermanic": 4.17e-08, - "alyssum": 4.17e-08, - "ambuscade": 4.17e-08, - "appealable": 4.17e-08, - "arabinose": 4.17e-08, - "argive": 4.17e-08, - "arithmetically": 4.17e-08, - "arthralgia": 4.17e-08, - "arthropoda": 4.17e-08, - "ashrafi": 4.17e-08, - "asthenosphere": 4.17e-08, - "atmospherically": 4.17e-08, - "autograft": 4.17e-08, - "avestan": 4.17e-08, - "baganda": 4.17e-08, - "barbas": 1.78e-08, - "bason": 4.17e-08, - "beest": 4.17e-08, - "belleek": 4.17e-08, - "benefic": 4.17e-08, - "bespin": 4.17e-08, - "biogeographical": 4.17e-08, - "biphenyl": 4.17e-08, - "bittering": 4.17e-08, - "blepharitis": 4.17e-08, - "blowgun": 4.17e-08, - "boyishly": 4.17e-08, - "bracer": 4.17e-08, - "bracero": 4.17e-08, - "breezily": 4.17e-08, - "bristlecone": 4.17e-08, - "bungy": 4.17e-08, - "calk": 4.17e-08, - "chaga": 4.17e-08, - "chalybeate": 4.17e-08, - "cheekiness": 4.17e-08, - "chous": 4.17e-08, - "chrysotile": 4.17e-08, - "circumlocution": 4.17e-08, - "coater": 4.17e-08, - "coercively": 4.17e-08, - "conformably": 4.17e-08, - "congruous": 4.17e-08, - "connubial": 4.17e-08, - "convoke": 4.17e-08, - "corruptive": 4.17e-08, - "counterproposal": 4.17e-08, - "counterterror": 4.17e-08, - "cowgate": 4.17e-08, - "crankiness": 4.17e-08, - "crassula": 4.17e-08, - "cricoid": 4.17e-08, - "cubbyhole": 4.17e-08, - "cuir": 4.17e-08, - "cupidity": 4.17e-08, - "cusk": 4.17e-08, - "cutworm": 4.17e-08, - "deadness": 4.17e-08, - "deemer": 4.17e-08, - "defiler": 4.17e-08, - "deglaciation": 4.17e-08, - "delf": 4.17e-08, - "demoniac": 4.17e-08, - "depressor": 4.17e-08, - "deputize": 4.17e-08, - "derogate": 4.17e-08, - "desaturation": 4.17e-08, - "detestation": 4.17e-08, - "detraction": 4.17e-08, - "dextro": 4.17e-08, - "diacetate": 4.17e-08, - "diagenesis": 4.17e-08, - "diaphoretic": 4.17e-08, - "diathesis": 4.17e-08, - "disconcert": 4.17e-08, - "displacer": 4.17e-08, - "dissolvable": 4.17e-08, - "dreariness": 4.17e-08, - "dubonnet": 4.17e-08, - "dysarthria": 4.17e-08, - "echinoderm": 4.17e-08, - "eldership": 4.17e-08, - "embrasure": 4.17e-08, - "enucleation": 4.17e-08, - "ethmoid": 4.17e-08, - "evildoer": 4.17e-08, - "extraocular": 4.17e-08, - "fetlock": 4.17e-08, - "feudatory": 4.17e-08, - "findable": 4.17e-08, - "flypaper": 4.17e-08, - "followership": 4.17e-08, - "footway": 4.17e-08, - "formamide": 4.17e-08, - "formyl": 4.17e-08, - "furphy": 4.17e-08, - "galloper": 4.17e-08, - "gangue": 4.17e-08, - "gappy": 4.17e-08, - "geck": 4.17e-08, - "generall": 4.17e-08, - "genic": 4.17e-08, - "gimcrack": 4.17e-08, - "glady": 4.17e-08, - "glassine": 4.17e-08, - "gloving": 4.17e-08, - "grassing": 4.17e-08, - "hailer": 4.17e-08, - "hartal": 4.17e-08, - "hatless": 4.17e-08, - "hatti": 4.17e-08, - "headwaiter": 4.17e-08, - "herpetic": 4.17e-08, - "hohe": 4.17e-08, - "hotchpotch": 4.17e-08, - "howbeit": 4.17e-08, - "hyaena": 4.17e-08, - "ideogram": 4.17e-08, - "idolater": 4.17e-08, - "illuminatus": 4.17e-08, - "incontestably": 4.17e-08, - "insufflation": 4.17e-08, - "intelligibly": 4.17e-08, - "interatomic": 4.17e-08, - "ironbark": 4.17e-08, - "irrigator": 4.17e-08, - "isobar": 4.17e-08, - "italicize": 4.17e-08, - "jacare": 4.17e-08, - "jato": 4.17e-08, - "jotter": 4.17e-08, - "joviality": 4.17e-08, - "keek": 4.17e-08, - "kermanshah": 4.17e-08, - "kvass": 4.17e-08, - "lated": 4.17e-08, - "latently": 4.17e-08, - "lateralization": 4.17e-08, - "lavishness": 4.17e-08, - "lightless": 4.17e-08, - "lithological": 4.17e-08, - "loanword": 4.17e-08, - "lotter": 4.17e-08, - "lowborn": 4.17e-08, - "lumbosacral": 4.17e-08, - "lusher": 4.17e-08, - "mank": 4.17e-08, - "meadowsweet": 4.17e-08, - "metalworker": 4.17e-08, - "metaplasia": 4.17e-08, - "metronomic": 4.17e-08, - "mikie": 4.17e-08, - "misplacement": 4.17e-08, - "mixe": 4.17e-08, - "mixtec": 4.17e-08, - "monomania": 4.17e-08, - "morphia": 4.17e-08, - "myall": 4.17e-08, - "nonmagnetic": 4.17e-08, - "obligatorily": 4.17e-08, - "ogive": 4.17e-08, - "oncologic": 4.17e-08, - "organismic": 4.17e-08, - "outflanking": 4.17e-08, - "outshoot": 4.17e-08, - "overanalyze": 4.17e-08, - "overdosage": 4.17e-08, - "overdraw": 4.17e-08, - "pacifistic": 4.17e-08, - "pamunkey": 4.17e-08, - "parison": 4.17e-08, - "pastern": 4.17e-08, - "peccary": 4.17e-08, - "pedantically": 4.17e-08, - "peonage": 4.17e-08, - "peradventure": 4.17e-08, - "petiolate": 4.17e-08, - "phasic": 4.17e-08, - "physostigmine": 4.17e-08, - "picus": 4.17e-08, - "pietist": 4.17e-08, - "pinnace": 4.17e-08, - "pixilated": 4.17e-08, - "prajna": 4.17e-08, - "precocity": 4.17e-08, - "prefabrication": 4.17e-08, - "prepossessing": 4.17e-08, - "proa": 4.17e-08, - "prosecutable": 4.17e-08, - "pseudepigrapha": 4.17e-08, - "psychopathological": 4.17e-08, - "pulque": 4.17e-08, - "puru": 4.17e-08, - "pyrolytic": 4.17e-08, - "quaintness": 4.17e-08, - "questioningly": 4.17e-08, - "ramie": 4.17e-08, - "ramified": 4.17e-08, - "readmit": 4.17e-08, - "reappraise": 4.17e-08, - "repave": 4.17e-08, - "reskin": 4.17e-08, - "riprap": 4.17e-08, - "rusa": 4.17e-08, - "saccadic": 4.17e-08, - "sacheverell": 4.17e-08, - "salvelinus": 4.17e-08, - "scalene": 4.17e-08, - "secretaryship": 4.17e-08, - "serdar": 4.17e-08, - "serin": 4.17e-08, - "serration": 4.17e-08, - "shamble": 4.17e-08, - "shipload": 4.17e-08, - "slavonian": 4.17e-08, - "slub": 4.17e-08, - "snobbishness": 4.17e-08, - "sophronia": 4.17e-08, - "sousaphone": 4.17e-08, - "spathe": 4.17e-08, - "spean": 4.17e-08, - "spermatic": 4.17e-08, - "spinet": 4.17e-08, - "spital": 4.17e-08, - "sporran": 4.17e-08, - "starkness": 4.17e-08, - "stephanos": 4.17e-08, - "steri": 4.17e-08, - "sterically": 4.17e-08, - "stiffener": 4.17e-08, - "stilly": 4.17e-08, - "straka": 4.17e-08, - "struth": 4.17e-08, - "suber": 4.17e-08, - "superiorly": 4.17e-08, - "sureness": 4.17e-08, - "swelter": 4.17e-08, - "sympathomimetic": 4.17e-08, - "taraf": 4.17e-08, - "teakwood": 4.17e-08, - "teda": 4.17e-08, - "tenderize": 4.17e-08, - "tenpin": 4.17e-08, - "testamentum": 4.17e-08, - "thighbone": 4.17e-08, - "topographer": 4.17e-08, - "toraja": 4.17e-08, - "toxoid": 4.17e-08, - "trachyte": 4.17e-08, - "tribulus": 4.17e-08, - "tricker": 4.17e-08, - "trophoblast": 4.17e-08, - "tumescent": 4.17e-08, - "turonian": 4.17e-08, - "typha": 4.17e-08, - "unadventurous": 4.17e-08, - "unarguable": 4.17e-08, - "unclipped": 4.17e-08, - "unconscionably": 4.17e-08, - "underframe": 4.17e-08, - "underqualified": 4.17e-08, - "undervaluation": 4.17e-08, - "undramatic": 4.17e-08, - "unfermented": 4.17e-08, - "unloader": 4.17e-08, - "unown": 4.17e-08, - "unpretty": 4.17e-08, - "unreactive": 4.17e-08, - "untamable": 4.17e-08, - "vanquisher": 4.17e-08, - "vergence": 4.17e-08, - "virial": 4.17e-08, - "vocationally": 4.17e-08, - "westaway": 4.17e-08, - "willfulness": 4.17e-08, - "woebegone": 4.17e-08, - "wote": 4.17e-08, - "xanthomonas": 4.17e-08, - "abscessed": 4.07e-08, - "acetoacetate": 4.07e-08, - "acromion": 4.07e-08, - "adays": 4.07e-08, - "akaroa": 4.07e-08, - "alienable": 4.07e-08, - "alkyne": 4.07e-08, - "ambrosial": 4.07e-08, - "anteroposterior": 4.07e-08, - "apsidal": 4.07e-08, - "archimandrite": 4.07e-08, - "armlet": 4.07e-08, - "arsenite": 4.07e-08, - "asahel": 4.07e-08, - "aspectual": 4.07e-08, - "assuredness": 4.07e-08, - "autotrophic": 4.07e-08, - "avowal": 4.07e-08, - "babesia": 4.07e-08, - "backbreaker": 4.07e-08, - "barleycorn": 4.07e-08, - "beatus": 4.07e-08, - "bedazzle": 4.07e-08, - "beggarly": 4.07e-08, - "bigamous": 4.07e-08, - "biggish": 4.07e-08, - "bilabial": 4.07e-08, - "blanky": 4.07e-08, - "blubbery": 4.07e-08, - "bombyx": 4.07e-08, - "borsch": 4.07e-08, - "buist": 4.07e-08, - "burglarize": 4.07e-08, - "calcaneal": 4.07e-08, - "canonry": 4.07e-08, - "carefulness": 4.07e-08, - "caretta": 4.07e-08, - "carful": 4.07e-08, - "catholicos": 4.07e-08, - "centerboard": 4.07e-08, - "cetin": 4.07e-08, - "chafer": 4.07e-08, - "chazy": 4.07e-08, - "chesser": 4.07e-08, - "chiefest": 4.07e-08, - "chiquito": 4.07e-08, - "cisterna": 4.07e-08, - "cloacal": 4.07e-08, - "coiner": 4.07e-08, - "concretion": 4.07e-08, - "conto": 4.07e-08, - "conure": 4.07e-08, - "corrigendum": 4.07e-08, - "cosmogenic": 4.07e-08, - "craftwork": 4.07e-08, - "crocodilian": 4.07e-08, - "crookedness": 4.07e-08, - "damnably": 4.07e-08, - "daven": 4.07e-08, - "daza": 4.07e-08, - "decipherable": 4.07e-08, - "deictic": 4.07e-08, - "deplane": 4.07e-08, - "deplorably": 4.07e-08, - "despicably": 4.07e-08, - "discontinuously": 4.07e-08, - "disulphide": 4.07e-08, - "dormition": 4.07e-08, - "draftsmanship": 4.07e-08, - "dysphonia": 4.07e-08, - "echeveria": 4.07e-08, - "enclitic": 4.07e-08, - "epigrammatic": 4.07e-08, - "epithelioid": 4.07e-08, - "espousal": 4.07e-08, - "evaluable": 4.07e-08, - "extrapyramidal": 4.07e-08, - "facilitative": 4.07e-08, - "ferromagnetism": 4.07e-08, - "fisherfolk": 4.07e-08, - "flagellar": 4.07e-08, - "florinda": 4.07e-08, - "footless": 4.07e-08, - "forb": 4.07e-08, - "fornix": 4.07e-08, - "foveal": 4.07e-08, - "frim": 4.07e-08, - "fulmar": 4.07e-08, - "furner": 4.07e-08, - "gamy": 4.07e-08, - "garfish": 4.07e-08, - "gliadin": 4.07e-08, - "glomerulus": 4.07e-08, - "glyceryl": 4.07e-08, - "golo": 4.07e-08, - "gouger": 4.07e-08, - "greatcoat": 4.07e-08, - "griller": 4.07e-08, - "guidon": 4.07e-08, - "gunrunning": 4.07e-08, - "haec": 4.07e-08, - "halation": 4.07e-08, - "halling": 4.07e-08, - "halloo": 4.07e-08, - "handgrip": 4.07e-08, - "hatting": 4.07e-08, - "helvetic": 4.07e-08, - "hemoptysis": 4.07e-08, - "hemothorax": 4.07e-08, - "heterotopic": 4.07e-08, - "heuristically": 4.07e-08, - "hummock": 4.07e-08, - "hyperbolically": 4.07e-08, - "ideologist": 4.07e-08, - "illumine": 4.07e-08, - "indeterminable": 4.07e-08, - "interlanguage": 4.07e-08, - "intermodulation": 4.07e-08, - "inventively": 4.07e-08, - "invigilator": 4.07e-08, - "keld": 4.07e-08, - "knap": 4.07e-08, - "kral": 4.07e-08, - "kurus": 4.07e-08, - "laet": 4.07e-08, - "lagna": 4.07e-08, - "lambent": 4.07e-08, - "lanao": 4.07e-08, - "laryngoscopy": 4.07e-08, - "lask": 4.07e-08, - "leuk": 4.07e-08, - "lightheartedness": 4.07e-08, - "litz": 4.07e-08, - "lochan": 4.07e-08, - "longan": 4.07e-08, - "lubricity": 4.07e-08, - "lucania": 4.07e-08, - "maccabean": 4.07e-08, - "majorcan": 4.07e-08, - "martensitic": 4.07e-08, - "masseter": 4.07e-08, - "matchlock": 4.07e-08, - "mechanist": 4.07e-08, - "memorialization": 4.07e-08, - "merope": 4.07e-08, - "mesophilic": 4.07e-08, - "millpond": 4.07e-08, - "mindlessness": 4.07e-08, - "mismanage": 4.07e-08, - "monochromator": 4.07e-08, - "moppet": 4.07e-08, - "muggins": 4.07e-08, - "muscovado": 4.07e-08, - "myotonic": 4.07e-08, - "myxomatosis": 4.07e-08, - "nauseatingly": 4.07e-08, - "navvy": 4.07e-08, - "negativism": 4.07e-08, - "neorealism": 4.07e-08, - "nici": 4.07e-08, - "nonselective": 4.07e-08, - "nymphal": 4.07e-08, - "odalisque": 4.07e-08, - "odontogenic": 4.07e-08, - "oilcloth": 4.07e-08, - "oner": 4.07e-08, - "ontarian": 4.07e-08, - "osmanthus": 4.07e-08, - "outskirt": 4.07e-08, - "overcrowd": 4.07e-08, - "overvoltage": 4.07e-08, - "paintbox": 4.07e-08, - "palay": 4.07e-08, - "paleobiology": 4.07e-08, - "papio": 4.07e-08, - "paspalum": 4.07e-08, - "passiveness": 4.07e-08, - "pelagian": 4.07e-08, - "perfector": 4.07e-08, - "periosteal": 4.07e-08, - "phalaris": 4.07e-08, - "photogravure": 4.07e-08, - "pickman": 4.07e-08, - "pilferage": 4.07e-08, - "pilocarpine": 4.07e-08, - "pinny": 4.07e-08, - "piperidine": 4.07e-08, - "plucker": 4.07e-08, - "pome": 4.07e-08, - "posthaste": 4.07e-08, - "potamogeton": 4.07e-08, - "preconstruction": 4.07e-08, - "preoptic": 4.07e-08, - "preregistration": 4.07e-08, - "presentiment": 4.07e-08, - "pruner": 4.07e-08, - "psychographic": 4.07e-08, - "puppetmaster": 4.07e-08, - "purvey": 4.07e-08, - "queendom": 4.07e-08, - "querulous": 4.07e-08, - "raia": 4.07e-08, - "ranter": 4.07e-08, - "ranty": 4.07e-08, - "rapscallion": 4.07e-08, - "rase": 4.07e-08, - "recompression": 4.07e-08, - "reflectively": 4.07e-08, - "remonstrating": 4.07e-08, - "repp": 4.07e-08, - "rhodope": 4.07e-08, - "ringlet": 4.07e-08, - "robing": 4.07e-08, - "roquette": 4.07e-08, - "rowdiness": 4.07e-08, - "ruga": 4.07e-08, - "salesroom": 4.07e-08, - "sallee": 4.07e-08, - "salvor": 4.07e-08, - "sclerotized": 4.07e-08, - "scrabbled": 4.07e-08, - "scratchcard": 4.07e-08, - "seah": 4.07e-08, - "sealskin": 4.07e-08, - "semitransparent": 4.07e-08, - "serologic": 4.07e-08, - "sheave": 4.07e-08, - "sideway": 4.07e-08, - "silyl": 4.07e-08, - "sinuate": 4.07e-08, - "sirdar": 4.07e-08, - "snaggletooth": 4.07e-08, - "snouted": 4.07e-08, - "somewheres": 4.07e-08, - "sorbate": 4.07e-08, - "spanker": 4.07e-08, - "spookily": 4.07e-08, - "stalky": 4.07e-08, - "streetside": 4.07e-08, - "stylebook": 4.07e-08, - "sundew": 4.07e-08, - "tapis": 4.07e-08, - "taur": 4.07e-08, - "telic": 4.07e-08, - "temenos": 4.07e-08, - "toiler": 4.07e-08, - "toxicant": 4.07e-08, - "trackman": 4.07e-08, - "trag": 4.07e-08, - "unconsummated": 4.07e-08, - "unfortified": 4.07e-08, - "unobservant": 4.07e-08, - "unpicked": 4.07e-08, - "unquoted": 4.07e-08, - "unskillful": 4.07e-08, - "upo": 4.07e-08, - "vesture": 4.07e-08, - "villous": 4.07e-08, - "voet": 4.07e-08, - "vuln": 4.07e-08, - "whooper": 4.07e-08, - "whup": 4.07e-08, - "wust": 4.07e-08, - "zounds": 4.07e-08, - "zygotic": 4.07e-08, - "aaronic": 3.98e-08, - "acceptation": 3.98e-08, - "achillea": 3.98e-08, - "acylation": 3.98e-08, - "adiabatically": 3.98e-08, - "advocation": 3.98e-08, - "aerially": 3.98e-08, - "agaric": 3.98e-08, - "agrostis": 3.98e-08, - "akamatsu": 3.98e-08, - "ampulla": 3.98e-08, - "anointment": 3.98e-08, - "antifouling": 3.98e-08, - "aranea": 3.98e-08, - "archipelagic": 3.98e-08, - "artemia": 3.98e-08, - "assignor": 3.98e-08, - "astir": 3.98e-08, - "athanasian": 3.98e-08, - "atriplex": 3.98e-08, - "audibility": 3.98e-08, - "aurorae": 3.98e-08, - "austerely": 3.98e-08, - "ayin": 3.98e-08, - "babyhood": 3.98e-08, - "bastardy": 3.98e-08, - "bayed": 3.98e-08, - "beachcombing": 3.98e-08, - "bentwood": 3.98e-08, - "betimes": 3.98e-08, - "biddable": 3.98e-08, - "biedermeier": 3.98e-08, - "birefringent": 3.98e-08, - "blackstrap": 3.98e-08, - "bodge": 3.98e-08, - "bonapartist": 3.98e-08, - "brigandage": 3.98e-08, - "brills": 1.17e-08, - "brokenly": 3.98e-08, - "bryozoan": 3.98e-08, - "calix": 3.98e-08, - "canidae": 3.98e-08, - "cappie": 3.98e-08, - "carlina": 3.98e-08, - "chartism": 3.98e-08, - "chauth": 3.98e-08, - "chorion": 3.98e-08, - "cingulum": 3.98e-08, - "cly": 3.98e-08, - "coastwise": 3.98e-08, - "combativeness": 3.98e-08, - "combinational": 3.98e-08, - "comitia": 3.98e-08, - "compendia": 3.98e-08, - "conehead": 3.98e-08, - "congregant": 3.98e-08, - "contravariant": 3.98e-08, - "corporative": 3.98e-08, - "corrupter": 3.98e-08, - "corticospinal": 3.98e-08, - "countrified": 3.98e-08, - "crawdad": 3.98e-08, - "crotalus": 3.98e-08, - "cryostat": 3.98e-08, - "cucurbita": 3.98e-08, - "cuneate": 3.98e-08, - "cylindrically": 3.98e-08, - "dabber": 3.98e-08, - "damiana": 3.98e-08, - "debarment": 3.98e-08, - "decreasingly": 3.98e-08, - "definer": 3.98e-08, - "dendrochronology": 3.98e-08, - "deneb": 3.98e-08, - "deuteron": 3.98e-08, - "diadema": 3.98e-08, - "diametric": 3.98e-08, - "discursively": 3.98e-08, - "disintegrator": 3.98e-08, - "dunt": 3.98e-08, - "dystrophic": 3.98e-08, - "eclogue": 3.98e-08, - "enterocolitis": 3.98e-08, - "enthral": 3.98e-08, - "enumerative": 3.98e-08, - "epicondyle": 3.98e-08, - "epistaxis": 3.98e-08, - "equites": 3.98e-08, - "euryale": 3.98e-08, - "eurystheus": 3.98e-08, - "explicitness": 3.98e-08, - "explorable": 3.98e-08, - "faddish": 3.98e-08, - "faithlessness": 3.98e-08, - "falcones": 3.98e-08, - "farsightedness": 3.98e-08, - "fatefully": 3.98e-08, - "featherless": 3.98e-08, - "feudalistic": 3.98e-08, - "fictionally": 3.98e-08, - "fionnuala": 3.98e-08, - "flakiness": 3.98e-08, - "floria": 3.98e-08, - "flouncing": 3.98e-08, - "fluky": 3.98e-08, - "forbearing": 3.98e-08, - "fundi": 3.98e-08, - "funt": 3.98e-08, - "gourami": 3.98e-08, - "gradus": 3.98e-08, - "graffito": 3.98e-08, - "grig": 3.98e-08, - "guanaco": 3.98e-08, - "hainanese": 3.98e-08, - "hawser": 3.98e-08, - "hepatoma": 3.98e-08, - "hidatsa": 3.98e-08, - "hogweed": 3.98e-08, - "holyday": 3.98e-08, - "hornish": 3.98e-08, - "hymenium": 3.98e-08, - "ileus": 3.98e-08, - "importunate": 3.98e-08, - "irishwoman": 3.98e-08, - "isleta": 3.98e-08, - "isobutane": 3.98e-08, - "isomerism": 3.98e-08, - "isometry": 3.98e-08, - "jabberwock": 3.98e-08, - "jackbox": 3.98e-08, - "journalistically": 3.98e-08, - "jurat": 3.98e-08, - "khitan": 3.98e-08, - "kildee": 3.98e-08, - "koff": 3.98e-08, - "lango": 3.98e-08, - "latah": 3.98e-08, - "latona": 3.98e-08, - "laurus": 3.98e-08, - "leptospira": 3.98e-08, - "linne": 3.98e-08, - "loverly": 3.98e-08, - "lubricator": 3.98e-08, - "luganda": 3.98e-08, - "malvasia": 3.98e-08, - "marabout": 3.98e-08, - "melodica": 3.98e-08, - "mesentery": 3.98e-08, - "miffy": 3.98e-08, - "mischaracterization": 3.98e-08, - "mitis": 3.98e-08, - "monkshood": 3.98e-08, - "moonlighted": 3.98e-08, - "muscadine": 3.98e-08, - "myelopathy": 3.98e-08, - "narcissi": 3.98e-08, - "noncitizen": 3.98e-08, - "nonfamily": 3.98e-08, - "nymphaea": 3.98e-08, - "oloroso": 3.98e-08, - "otorhinolaryngology": 3.98e-08, - "palmy": 3.98e-08, - "palynology": 3.98e-08, - "paraformaldehyde": 3.98e-08, - "parthenogenetic": 3.98e-08, - "particularism": 3.98e-08, - "passkey": 3.98e-08, - "pelagianism": 3.98e-08, - "pellucid": 3.98e-08, - "pharmaceutically": 3.98e-08, - "phylon": 3.98e-08, - "piercingly": 3.98e-08, - "pietistic": 3.98e-08, - "posset": 3.98e-08, - "pothos": 3.98e-08, - "premedical": 3.98e-08, - "primitivist": 3.98e-08, - "primly": 3.98e-08, - "pseudotsuga": 3.98e-08, - "pyelonephritis": 3.98e-08, - "pygidium": 3.98e-08, - "queller": 3.98e-08, - "rammy": 3.98e-08, - "reinstallation": 3.98e-08, - "reinstitute": 3.98e-08, - "reseed": 3.98e-08, - "restauration": 3.98e-08, - "rhyolitic": 3.98e-08, - "rotch": 3.98e-08, - "sambucus": 3.98e-08, - "sanderling": 3.98e-08, - "sardonyx": 3.98e-08, - "sattva": 3.98e-08, - "scatterbrain": 3.98e-08, - "schlieren": 3.98e-08, - "scient": 3.98e-08, - "sciurus": 3.98e-08, - "scry": 3.98e-08, - "secularity": 3.98e-08, - "seraphine": 3.98e-08, - "sharable": 3.98e-08, - "shebeen": 3.98e-08, - "shool": 3.98e-08, - "shopworn": 3.98e-08, - "sidewise": 3.98e-08, - "silicide": 3.98e-08, - "sorbus": 3.98e-08, - "sostenuto": 3.98e-08, - "spawner": 3.98e-08, - "spectrographic": 3.98e-08, - "sporter": 3.98e-08, - "standardbred": 3.98e-08, - "stereotypic": 3.98e-08, - "stingless": 3.98e-08, - "stochastically": 3.98e-08, - "stocktaking": 3.98e-08, - "straightly": 3.98e-08, - "substitutionary": 3.98e-08, - "subtenant": 3.98e-08, - "suppertime": 3.98e-08, - "survivalism": 3.98e-08, - "swapper": 3.98e-08, - "syllogistic": 3.98e-08, - "symptomatically": 3.98e-08, - "syndicator": 3.98e-08, - "sypher": 3.98e-08, - "telegenic": 3.98e-08, - "temptingly": 3.98e-08, - "thereat": 3.98e-08, - "thermostatically": 3.98e-08, - "tinsmith": 3.98e-08, - "toolroom": 3.98e-08, - "torero": 3.98e-08, - "toyman": 3.98e-08, - "tramcar": 3.98e-08, - "transmogrification": 3.98e-08, - "traumatology": 3.98e-08, - "trematode": 3.98e-08, - "trepanation": 3.98e-08, - "trousered": 3.98e-08, - "unaccented": 3.98e-08, - "uncommercial": 3.98e-08, - "unconstructive": 3.98e-08, - "unhallowed": 3.98e-08, - "untestable": 3.98e-08, - "varan": 3.98e-08, - "vectorial": 3.98e-08, - "villus": 3.98e-08, - "vindictively": 3.98e-08, - "virological": 3.98e-08, - "voracity": 3.98e-08, - "wakan": 3.98e-08, - "wantonness": 3.98e-08, - "wheedling": 3.98e-08, - "whiffle": 3.98e-08, - "whin": 3.98e-08, - "whitecap": 3.98e-08, - "wicken": 3.98e-08, - "windigo": 3.98e-08, - "wolfish": 3.98e-08, - "zenaida": 3.98e-08, - "abjection": 3.89e-08, - "adown": 3.89e-08, - "affectively": 3.89e-08, - "agust": 3.89e-08, - "albuminuria": 3.89e-08, - "alcyone": 3.89e-08, - "altimetry": 3.89e-08, - "animality": 3.89e-08, - "annet": 3.89e-08, - "annuitant": 3.89e-08, - "apocryphon": 3.89e-08, - "appositive": 3.89e-08, - "ataraxia": 3.89e-08, - "auxilium": 3.89e-08, - "babul": 3.89e-08, - "bacitracin": 3.89e-08, - "barky": 3.89e-08, - "berberine": 3.89e-08, - "biri": 3.89e-08, - "blench": 3.89e-08, - "bluestocking": 3.89e-08, - "bodiless": 3.89e-08, - "brazenness": 3.89e-08, - "breacher": 3.89e-08, - "bukidnon": 3.89e-08, - "bunchy": 3.89e-08, - "capitulum": 3.89e-08, - "caractacus": 3.89e-08, - "carboy": 3.89e-08, - "casula": 3.89e-08, - "catkin": 3.89e-08, - "cistus": 3.89e-08, - "clayman": 3.89e-08, - "collagenous": 3.89e-08, - "comprehensibility": 3.89e-08, - "confiscatory": 3.89e-08, - "congruency": 3.89e-08, - "connotative": 3.89e-08, - "croisette": 3.89e-08, - "cruce": 3.89e-08, - "customhouse": 3.89e-08, - "cyma": 3.89e-08, - "cynodon": 3.89e-08, - "cyprinus": 3.89e-08, - "deamination": 3.89e-08, - "deferent": 3.89e-08, - "delian": 3.89e-08, - "delict": 3.89e-08, - "demineralization": 3.89e-08, - "deodorizer": 3.89e-08, - "diethylstilbestrol": 3.89e-08, - "disposability": 3.89e-08, - "distain": 3.89e-08, - "dongola": 3.89e-08, - "dooly": 3.89e-08, - "downstroke": 3.89e-08, - "driftless": 3.89e-08, - "dripper": 3.89e-08, - "duiker": 3.89e-08, - "dunnage": 3.89e-08, - "ecclesiasticus": 3.89e-08, - "ecuadoran": 3.89e-08, - "embryologist": 3.89e-08, - "engineman": 3.89e-08, - "enteropathy": 3.89e-08, - "enumerator": 3.89e-08, - "ephod": 3.89e-08, - "epizootic": 3.89e-08, - "eral": 3.89e-08, - "escolar": 3.89e-08, - "essene": 3.89e-08, - "evangelium": 3.89e-08, - "execration": 3.89e-08, - "fally": 3.89e-08, - "fancifully": 3.89e-08, - "feil": 3.89e-08, - "felly": 3.89e-08, - "firecrest": 3.89e-08, - "fishhooks": 3.89e-08, - "floodlighting": 3.89e-08, - "fluoroscopic": 3.89e-08, - "forkful": 3.89e-08, - "frogged": 3.89e-08, - "frother": 3.89e-08, - "glowworm": 3.89e-08, - "goggled": 3.89e-08, - "governmentally": 3.89e-08, - "handwrite": 3.89e-08, - "hangdog": 3.89e-08, - "harmonizer": 3.89e-08, - "harpsichordist": 3.89e-08, - "hatefully": 3.89e-08, - "hatefulness": 3.89e-08, - "heder": 3.89e-08, - "hiatal": 3.89e-08, - "hierarchic": 3.89e-08, - "hindmost": 3.89e-08, - "honoraria": 3.89e-08, - "hordeum": 3.89e-08, - "hydronephrosis": 3.89e-08, - "imbricate": 3.89e-08, - "imperatively": 3.89e-08, - "impersonally": 3.89e-08, - "incise": 3.89e-08, - "inflexibly": 3.89e-08, - "irrepressibly": 3.89e-08, - "irresolvable": 3.89e-08, - "ither": 3.89e-08, - "janissary": 3.89e-08, - "jointure": 3.89e-08, - "kanara": 3.89e-08, - "katun": 3.89e-08, - "khoja": 3.89e-08, - "kinescope": 3.89e-08, - "kwakiutl": 3.89e-08, - "lagopus": 3.89e-08, - "lathyrus": 3.89e-08, - "leguminosae": 3.89e-08, - "linkable": 3.89e-08, - "lipogenesis": 3.89e-08, - "liposarcoma": 3.89e-08, - "llandeilo": 3.89e-08, - "lobar": 3.89e-08, - "loukas": 3.89e-08, - "lyonnaise": 3.89e-08, - "macroevolution": 3.89e-08, - "madelon": 3.89e-08, - "madia": 3.89e-08, - "maladjustment": 3.89e-08, - "mauger": 3.89e-08, - "mechanize": 3.89e-08, - "mesodermal": 3.89e-08, - "meticulousness": 3.89e-08, - "micropenis": 3.89e-08, - "moistness": 3.89e-08, - "momus": 3.89e-08, - "monkish": 3.89e-08, - "monocultural": 3.89e-08, - "monomial": 3.89e-08, - "monstrance": 3.89e-08, - "moonscape": 3.89e-08, - "mullein": 3.89e-08, - "multiform": 3.89e-08, - "mycosis": 3.89e-08, - "myocyte": 3.89e-08, - "nataraja": 3.89e-08, - "necromantic": 3.89e-08, - "neighborliness": 3.89e-08, - "nepheline": 3.89e-08, - "nerine": 3.89e-08, - "nevel": 3.89e-08, - "noctuidae": 3.89e-08, - "noser": 3.89e-08, - "nottoway": 3.89e-08, - "oared": 3.89e-08, - "oestrus": 3.89e-08, - "omentum": 3.89e-08, - "onchocerciasis": 3.89e-08, - "outvote": 3.89e-08, - "overambitious": 3.89e-08, - "oversoul": 3.89e-08, - "pahari": 3.89e-08, - "palliation": 3.89e-08, - "palmate": 3.89e-08, - "pandal": 3.89e-08, - "panspermia": 3.89e-08, - "partaker": 3.89e-08, - "pavane": 3.89e-08, - "personalism": 3.89e-08, - "phonogram": 3.89e-08, - "pickaway": 3.89e-08, - "picric": 3.89e-08, - "pien": 3.89e-08, - "pileus": 3.89e-08, - "pippy": 3.89e-08, - "pizzle": 3.89e-08, - "pleasantry": 3.89e-08, - "pottle": 3.89e-08, - "practic": 3.89e-08, - "prandial": 3.89e-08, - "precedential": 3.89e-08, - "preconditioned": 3.89e-08, - "priding": 3.89e-08, - "principalship": 3.89e-08, - "propertied": 3.89e-08, - "psychokinetic": 3.89e-08, - "punitively": 3.89e-08, - "purposefulness": 3.89e-08, - "quartette": 3.89e-08, - "quern": 3.89e-08, - "reinvigoration": 3.89e-08, - "renovator": 3.89e-08, - "replevin": 3.89e-08, - "resistible": 3.89e-08, - "ricinus": 3.89e-08, - "roust": 3.89e-08, - "russophobia": 3.89e-08, - "salal": 3.89e-08, - "salvific": 3.89e-08, - "sandhi": 3.89e-08, - "sassenach": 3.89e-08, - "scabbed": 3.89e-08, - "scandia": 3.89e-08, - "scrofula": 3.89e-08, - "scrunchy": 3.89e-08, - "scute": 3.89e-08, - "sederunt": 3.89e-08, - "sinisterly": 3.89e-08, - "skirmisher": 3.89e-08, - "slighty": 3.89e-08, - "snowsuit": 3.89e-08, - "sonatina": 3.89e-08, - "sough": 3.89e-08, - "spellbinder": 3.89e-08, - "sproat": 3.89e-08, - "squashy": 3.89e-08, - "staab": 3.89e-08, - "striga": 3.89e-08, - "submucosal": 3.89e-08, - "sull": 3.89e-08, - "supervisorial": 3.89e-08, - "tabler": 3.89e-08, - "tactility": 3.89e-08, - "tallit": 3.89e-08, - "tallness": 3.89e-08, - "tean": 3.89e-08, - "tediousness": 3.89e-08, - "tertia": 3.89e-08, - "thickset": 3.89e-08, - "tiddler": 3.89e-08, - "tige": 3.89e-08, - "tillandsia": 3.89e-08, - "towboat": 3.89e-08, - "trichomoniasis": 3.89e-08, - "triclinic": 3.89e-08, - "trihydrate": 3.89e-08, - "trimethylamine": 3.89e-08, - "turbopump": 3.89e-08, - "twirler": 3.89e-08, - "unchaste": 3.89e-08, - "unchurched": 3.89e-08, - "undecipherable": 3.89e-08, - "undiplomatic": 3.89e-08, - "unhatched": 3.89e-08, - "unmarketable": 3.89e-08, - "unphysical": 3.89e-08, - "unsafely": 3.89e-08, - "unsubstantial": 3.89e-08, - "unthought": 3.89e-08, - "untwist": 3.89e-08, - "upstroke": 3.89e-08, - "vacationer": 3.89e-08, - "vanir": 3.89e-08, - "verd": 3.89e-08, - "verifiability": 3.89e-08, - "verruca": 3.89e-08, - "wandy": 3.89e-08, - "waspish": 3.89e-08, - "waterer": 3.89e-08, - "wattled": 3.89e-08, - "waylay": 3.89e-08, - "workless": 3.89e-08, - "wrister": 3.89e-08, - "yardarm": 3.89e-08, - "yook": 3.89e-08, - "zeist": 3.89e-08, - "zoomorphic": 3.89e-08, - "abey": 3.8e-08, - "agglutinative": 3.8e-08, - "akeley": 3.8e-08, - "alizarin": 3.8e-08, - "allocution": 3.8e-08, - "alvina": 3.8e-08, - "amphitrite": 3.8e-08, - "annelid": 3.8e-08, - "anomia": 3.8e-08, - "anthroposophy": 3.8e-08, - "antipope": 3.8e-08, - "antrum": 3.8e-08, - "argillite": 3.8e-08, - "arizonan": 3.8e-08, - "ascender": 3.8e-08, - "atka": 3.8e-08, - "aurignacian": 3.8e-08, - "autoantibody": 3.8e-08, - "babish": 3.8e-08, - "barkeeper": 3.8e-08, - "bawn": 3.8e-08, - "bedel": 3.8e-08, - "bilo": 3.8e-08, - "biogenetic": 3.8e-08, - "bisector": 3.8e-08, - "blazingly": 3.8e-08, - "bluejacket": 3.8e-08, - "buhr": 3.8e-08, - "bunyip": 3.8e-08, - "burny": 3.8e-08, - "capitular": 3.8e-08, - "castoff": 3.8e-08, - "catchiness": 3.8e-08, - "certifier": 3.8e-08, - "chab": 3.8e-08, - "chessman": 3.8e-08, - "chypre": 3.8e-08, - "cinnamic": 3.8e-08, - "cise": 3.8e-08, - "coachwork": 3.8e-08, - "coati": 3.8e-08, - "commissure": 3.8e-08, - "conchology": 3.8e-08, - "concreteness": 3.8e-08, - "contrabass": 3.8e-08, - "coonskin": 3.8e-08, - "corbeil": 3.8e-08, - "corer": 3.8e-08, - "corkboard": 3.8e-08, - "covenanter": 3.8e-08, - "crampy": 3.8e-08, - "cumulate": 3.8e-08, - "cuticular": 3.8e-08, - "daube": 3.8e-08, - "daubing": 3.8e-08, - "decompensation": 3.8e-08, - "decomposable": 3.8e-08, - "deerstalker": 3.8e-08, - "dehumidification": 3.8e-08, - "demilitarize": 3.8e-08, - "despoil": 3.8e-08, - "dhole": 3.8e-08, - "disproof": 3.8e-08, - "distractingly": 3.8e-08, - "dottore": 3.8e-08, - "dungaree": 3.8e-08, - "edibility": 3.8e-08, - "ephialtes": 3.8e-08, - "euterpe": 3.8e-08, - "evolvement": 3.8e-08, - "exogamy": 3.8e-08, - "faille": 3.8e-08, - "fauve": 3.8e-08, - "festal": 3.8e-08, - "filmstrip": 3.8e-08, - "flatteringly": 3.8e-08, - "fluellen": 3.8e-08, - "fluorspar": 3.8e-08, - "flyboy": 3.8e-08, - "frazzle": 3.8e-08, - "fricassee": 3.8e-08, - "fuzzball": 3.8e-08, - "garishly": 3.8e-08, - "gelada": 3.8e-08, - "gesticulate": 3.8e-08, - "goalmouth": 3.8e-08, - "graininess": 3.8e-08, - "gratifyingly": 3.8e-08, - "gunsmithing": 3.8e-08, - "gutterman": 3.8e-08, - "hache": 3.8e-08, - "handclap": 3.8e-08, - "haslet": 3.8e-08, - "heaver": 3.8e-08, - "holdback": 3.8e-08, - "huse": 3.8e-08, - "iapetus": 3.8e-08, - "ignitor": 3.8e-08, - "impalpable": 3.8e-08, - "inapt": 3.8e-08, - "inauthenticity": 3.8e-08, - "incautious": 3.8e-08, - "incommensurable": 3.8e-08, - "innocuously": 3.8e-08, - "integrability": 3.8e-08, - "interpenetration": 3.8e-08, - "intraperitoneally": 3.8e-08, - "iten": 3.8e-08, - "jansenism": 3.8e-08, - "jilt": 3.8e-08, - "jumba": 3.8e-08, - "junking": 3.8e-08, - "kalmia": 3.8e-08, - "kamas": 3.8e-08, - "kasher": 3.8e-08, - "kenning": 3.8e-08, - "knop": 3.8e-08, - "koruna": 3.8e-08, - "lactuca": 3.8e-08, - "lamping": 3.8e-08, - "lastingly": 3.8e-08, - "lemurian": 3.8e-08, - "lobule": 3.8e-08, - "lunger": 3.8e-08, - "lustfully": 3.8e-08, - "magnesian": 3.8e-08, - "mallus": 3.8e-08, - "maranta": 3.8e-08, - "marwari": 3.8e-08, - "medlar": 3.8e-08, - "mestiza": 3.8e-08, - "misgiving": 3.8e-08, - "mogador": 3.8e-08, - "monatomic": 3.8e-08, - "monopolar": 3.8e-08, - "montu": 3.8e-08, - "murrelet": 3.8e-08, - "mussy": 3.8e-08, - "myometrium": 3.8e-08, - "myrmidon": 3.8e-08, - "neap": 3.8e-08, - "noctilucent": 3.8e-08, - "nonclinical": 3.8e-08, - "nonporous": 3.8e-08, - "oolite": 3.8e-08, - "ostrea": 3.8e-08, - "outturn": 3.8e-08, - "paintable": 3.8e-08, - "pandita": 3.8e-08, - "parliamentarism": 3.8e-08, - "parvenu": 3.8e-08, - "pattee": 3.8e-08, - "pecten": 3.8e-08, - "pennon": 3.8e-08, - "perfectness": 3.8e-08, - "perianal": 3.8e-08, - "periplus": 3.8e-08, - "petrification": 3.8e-08, - "phalarope": 3.8e-08, - "pianola": 3.8e-08, - "pilau": 3.8e-08, - "pisum": 3.8e-08, - "plagal": 3.8e-08, - "polysemy": 3.8e-08, - "poncelet": 3.8e-08, - "popularizer": 3.8e-08, - "possessory": 3.8e-08, - "posterolateral": 3.8e-08, - "praetorium": 3.8e-08, - "prejudgment": 3.8e-08, - "presciently": 3.8e-08, - "pression": 3.8e-08, - "prevaricate": 3.8e-08, - "procaine": 3.8e-08, - "protectress": 3.8e-08, - "pudu": 3.8e-08, - "puggle": 3.8e-08, - "quirt": 3.8e-08, - "raggedly": 3.8e-08, - "raggy": 3.8e-08, - "recognizer": 3.8e-08, - "recoverability": 3.8e-08, - "reducibility": 3.8e-08, - "rhetor": 3.8e-08, - "rhizobium": 3.8e-08, - "ringe": 3.8e-08, - "ropp": 3.8e-08, - "rudbeckia": 3.8e-08, - "sailplane": 3.8e-08, - "saponin": 3.8e-08, - "scenography": 3.8e-08, - "scolex": 3.8e-08, - "sempiternal": 3.8e-08, - "settlor": 3.8e-08, - "shadowbox": 3.8e-08, - "shippo": 3.8e-08, - "sibilance": 3.8e-08, - "siller": 3.8e-08, - "slabbed": 3.8e-08, - "spectroscopically": 3.8e-08, - "spiraea": 3.8e-08, - "spondylosis": 3.8e-08, - "spookiness": 3.8e-08, - "sporangium": 3.8e-08, - "strade": 3.8e-08, - "streetwalker": 3.8e-08, - "symbiotically": 3.8e-08, - "talpa": 3.8e-08, - "tangipahoa": 3.8e-08, - "tantalite": 3.8e-08, - "tarheel": 3.8e-08, - "tarsier": 3.8e-08, - "telesis": 3.8e-08, - "tenpenny": 3.8e-08, - "teras": 1.17e-08, - "tightwad": 3.8e-08, - "tilefish": 3.8e-08, - "timelessly": 3.8e-08, - "tranquilize": 3.8e-08, - "tricorn": 3.8e-08, - "tristam": 3.8e-08, - "trochaic": 3.8e-08, - "tuatara": 3.8e-08, - "tufty": 3.8e-08, - "tulu": 3.8e-08, - "turnback": 3.8e-08, - "turtleback": 3.8e-08, - "tutorship": 3.8e-08, - "typica": 3.8e-08, - "unassociated": 3.8e-08, - "unbolt": 3.8e-08, - "uncompahgre": 3.8e-08, - "unlatch": 3.8e-08, - "unsealing": 3.8e-08, - "unseeing": 3.8e-08, - "unutterable": 3.8e-08, - "usque": 3.8e-08, - "vegetate": 3.8e-08, - "vitalizing": 3.8e-08, - "wallman": 3.8e-08, - "wigging": 3.8e-08, - "wonted": 3.8e-08, - "wots": 1.32e-08, - "wrongfulness": 3.8e-08, - "zenana": 3.8e-08, - "acquaintanceship": 3.72e-08, - "adrenochrome": 3.72e-08, - "adrenocorticotropic": 3.72e-08, - "aias": 1.66e-08, - "andantino": 3.72e-08, - "antinomianism": 3.72e-08, - "argentum": 3.72e-08, - "armamentarium": 3.72e-08, - "asthenia": 3.72e-08, - "atopy": 3.72e-08, - "audiogram": 3.72e-08, - "axiomatically": 3.72e-08, - "badinage": 3.72e-08, - "bailer": 3.72e-08, - "balky": 3.72e-08, - "balter": 3.72e-08, - "bareheaded": 3.72e-08, - "bely": 3.72e-08, - "benne": 3.72e-08, - "benzine": 3.72e-08, - "bleck": 3.72e-08, - "bogong": 3.72e-08, - "bolar": 3.72e-08, - "bombo": 3.72e-08, - "cannily": 3.72e-08, - "capelin": 3.72e-08, - "castable": 3.72e-08, - "cavy": 3.72e-08, - "chandlery": 3.72e-08, - "checkable": 3.72e-08, - "cheeseboard": 3.72e-08, - "chough": 3.72e-08, - "chromatid": 3.72e-08, - "chromosphere": 3.72e-08, - "civvy": 3.72e-08, - "clallam": 3.72e-08, - "coequal": 3.72e-08, - "colorize": 3.72e-08, - "coneflower": 3.72e-08, - "corpuscle": 3.72e-08, - "corruptor": 3.72e-08, - "crania": 3.72e-08, - "crassness": 3.72e-08, - "croaky": 3.72e-08, - "crunchiness": 3.72e-08, - "cupholder": 3.72e-08, - "curculionidae": 3.72e-08, - "cypripedium": 3.72e-08, - "dasi": 3.72e-08, - "deaner": 3.72e-08, - "declaim": 3.72e-08, - "defeater": 3.72e-08, - "defoliated": 3.72e-08, - "depolymerization": 3.72e-08, - "detrusor": 3.72e-08, - "dimethylamino": 3.72e-08, - "disconsolately": 3.72e-08, - "disembowelment": 3.72e-08, - "draba": 3.72e-08, - "dubb": 3.72e-08, - "dwarfish": 3.72e-08, - "ecclesiastically": 3.72e-08, - "egocentrism": 3.72e-08, - "endophytic": 3.72e-08, - "epiphysis": 3.72e-08, - "eponym": 3.72e-08, - "eradicator": 3.72e-08, - "excoriation": 3.72e-08, - "exsanguination": 3.72e-08, - "fanlight": 3.72e-08, - "fifthly": 3.72e-08, - "fioretti": 3.72e-08, - "fishback": 3.72e-08, - "forename": 3.72e-08, - "fornicator": 3.72e-08, - "fouler": 3.72e-08, - "fourscore": 3.72e-08, - "freeness": 3.72e-08, - "frippery": 3.72e-08, - "fucus": 3.72e-08, - "galatian": 3.72e-08, - "gastrostomy": 3.72e-08, - "gelly": 3.72e-08, - "genistein": 3.72e-08, - "geraniol": 3.72e-08, - "glossolalia": 3.72e-08, - "goodish": 3.72e-08, - "guarneri": 3.72e-08, - "gunite": 3.72e-08, - "haem": 3.72e-08, - "hardpan": 3.72e-08, - "haziness": 3.72e-08, - "hemophiliac": 3.72e-08, - "huaca": 3.72e-08, - "husking": 3.72e-08, - "hutterites": 3.72e-08, - "idiomatically": 3.72e-08, - "incidently": 3.72e-08, - "inconstancy": 3.72e-08, - "indecorous": 3.72e-08, - "indigence": 3.72e-08, - "inertness": 3.72e-08, - "ingoing": 3.72e-08, - "inhumation": 3.72e-08, - "integumentary": 3.72e-08, - "interrogatory": 3.72e-08, - "ironbound": 3.72e-08, - "irruption": 3.72e-08, - "jansenist": 3.72e-08, - "kadu": 3.72e-08, - "kempster": 3.72e-08, - "kirman": 3.72e-08, - "knurling": 3.72e-08, - "lacework": 3.72e-08, - "lanson": 3.72e-08, - "leatherwork": 3.72e-08, - "leftwards": 3.72e-08, - "leonis": 1.35e-08, - "leuco": 3.72e-08, - "loof": 3.72e-08, - "loosestrife": 3.72e-08, - "lunda": 3.72e-08, - "lycus": 3.72e-08, - "malediction": 3.72e-08, - "malevolently": 3.72e-08, - "mantic": 3.72e-08, - "maximalism": 3.72e-08, - "melasma": 3.72e-08, - "melodramatically": 3.72e-08, - "meum": 3.72e-08, - "mho": 3.72e-08, - "ministerium": 3.72e-08, - "mithraism": 3.72e-08, - "moner": 3.72e-08, - "monogamist": 3.72e-08, - "montgolfier": 3.72e-08, - "monton": 3.72e-08, - "mooting": 3.72e-08, - "mopane": 3.72e-08, - "muckraker": 3.72e-08, - "mudflow": 3.72e-08, - "mundanity": 3.72e-08, - "muskellunge": 3.72e-08, - "mysel": 3.72e-08, - "natatorium": 3.72e-08, - "navigability": 3.72e-08, - "nebular": 3.72e-08, - "neutralist": 3.72e-08, - "nonaggression": 3.72e-08, - "nontransferable": 3.72e-08, - "obscuration": 3.72e-08, - "ofttimes": 3.72e-08, - "osteological": 3.72e-08, - "outrageousness": 3.72e-08, - "overflown": 3.72e-08, - "overstretch": 3.72e-08, - "padishah": 3.72e-08, - "palaeography": 3.72e-08, - "palas": 3.72e-08, - "parasitize": 3.72e-08, - "parenthetically": 3.72e-08, - "parricide": 3.72e-08, - "patellofemoral": 3.72e-08, - "paulownia": 3.72e-08, - "perceptiveness": 3.72e-08, - "pessary": 3.72e-08, - "photocurrent": 3.72e-08, - "phrenological": 3.72e-08, - "physalis": 3.72e-08, - "pianistic": 3.72e-08, - "pilch": 3.72e-08, - "poblacion": 3.72e-08, - "polymorphous": 3.72e-08, - "postmedial": 3.72e-08, - "predynastic": 3.72e-08, - "prefigure": 3.72e-08, - "priss": 3.72e-08, - "procuratorate": 3.72e-08, - "pronounceable": 3.72e-08, - "prorate": 3.72e-08, - "prothorax": 3.72e-08, - "protuberant": 3.72e-08, - "psychosurgery": 3.72e-08, - "psyllid": 3.72e-08, - "pyrites": 3.72e-08, - "quarterman": 3.72e-08, - "quinidine": 3.72e-08, - "radiochemistry": 3.72e-08, - "rainless": 3.72e-08, - "rebid": 3.72e-08, - "regality": 3.72e-08, - "resubmission": 3.72e-08, - "retroflex": 3.72e-08, - "revers": 3.72e-08, - "ringle": 3.72e-08, - "rori": 3.72e-08, - "roughhouse": 3.72e-08, - "scannable": 3.72e-08, - "scatty": 3.72e-08, - "scentless": 3.72e-08, - "scorekeeper": 3.72e-08, - "scrimped": 3.72e-08, - "scrummage": 3.72e-08, - "secretively": 3.72e-08, - "semiannually": 3.72e-08, - "serried": 3.72e-08, - "shingling": 3.72e-08, - "shouter": 3.72e-08, - "shrovetide": 3.72e-08, - "simular": 3.72e-08, - "siouan": 3.72e-08, - "skerry": 3.72e-08, - "smectite": 3.72e-08, - "snuffle": 3.72e-08, - "spencerian": 3.72e-08, - "sphingosine": 3.72e-08, - "spreaded": 3.72e-08, - "squalus": 3.72e-08, - "stammerer": 3.72e-08, - "stonefish": 3.72e-08, - "stoup": 3.72e-08, - "studier": 3.72e-08, - "subaerial": 3.72e-08, - "suggestiveness": 3.72e-08, - "sundanese": 3.72e-08, - "supernaturalism": 3.72e-08, - "swage": 3.72e-08, - "sweepings": 3.72e-08, - "swineherd": 3.72e-08, - "swingy": 3.72e-08, - "tantrik": 3.72e-08, - "taphouse": 3.72e-08, - "tattva": 3.72e-08, - "teather": 3.72e-08, - "theat": 3.72e-08, - "torticollis": 3.72e-08, - "treponema": 3.72e-08, - "trifold": 3.72e-08, - "twitterer": 3.72e-08, - "twopence": 3.72e-08, - "ulsterman": 3.72e-08, - "unamended": 3.72e-08, - "unchallenging": 3.72e-08, - "uncomplaining": 3.72e-08, - "uncontainable": 3.72e-08, - "undock": 3.72e-08, - "unpayable": 3.72e-08, - "unpledged": 3.72e-08, - "unsteadiness": 3.72e-08, - "urethritis": 3.72e-08, - "vanille": 3.72e-08, - "velocipede": 3.72e-08, - "wardman": 3.72e-08, - "waspy": 3.72e-08, - "whereat": 3.72e-08, - "wheresoever": 3.72e-08, - "yampa": 3.72e-08, - "yawp": 3.72e-08, - "yed": 1.51e-08, - "abase": 3.63e-08, - "abetment": 3.63e-08, - "ablow": 3.63e-08, - "abscission": 3.63e-08, - "adventurousness": 3.63e-08, - "aerostat": 3.63e-08, - "agone": 3.63e-08, - "agriculturalist": 3.63e-08, - "amadis": 3.63e-08, - "amytal": 3.63e-08, - "anaphoric": 3.63e-08, - "annona": 3.63e-08, - "annotator": 3.63e-08, - "antithrombin": 3.63e-08, - "anura": 3.63e-08, - "arietta": 3.63e-08, - "ascaris": 3.63e-08, - "ascertainable": 3.63e-08, - "astrometry": 3.63e-08, - "backstrap": 3.63e-08, - "bacopa": 3.63e-08, - "badon": 3.63e-08, - "bahut": 3.63e-08, - "bajra": 3.63e-08, - "balarama": 3.63e-08, - "basenji": 3.63e-08, - "bashfully": 3.63e-08, - "basicity": 3.63e-08, - "batata": 3.63e-08, - "bejan": 3.63e-08, - "bema": 3.63e-08, - "biotope": 3.63e-08, - "blackly": 3.63e-08, - "blepharoplasty": 3.63e-08, - "blighter": 3.63e-08, - "bokhara": 3.63e-08, - "boletus": 3.63e-08, - "bolide": 3.63e-08, - "bonce": 3.63e-08, - "bonder": 3.63e-08, - "brewis": 3.63e-08, - "brightener": 3.63e-08, - "broadness": 3.63e-08, - "bronchopneumonia": 3.63e-08, - "buffoonish": 3.63e-08, - "bulgy": 3.63e-08, - "bushwhacker": 3.63e-08, - "busine": 3.63e-08, - "californium": 3.63e-08, - "candlewood": 3.63e-08, - "canvasback": 3.63e-08, - "carica": 3.63e-08, - "castrum": 3.63e-08, - "casuistry": 3.63e-08, - "cayuse": 3.63e-08, - "centaurea": 3.63e-08, - "chac": 3.63e-08, - "chalcis": 3.63e-08, - "chambertin": 3.63e-08, - "chastely": 3.63e-08, - "chironomidae": 3.63e-08, - "chlamydomonas": 3.63e-08, - "clausal": 3.63e-08, - "cloudland": 3.63e-08, - "clypeus": 3.63e-08, - "cognisance": 3.63e-08, - "cogwheel": 3.63e-08, - "cohosh": 3.63e-08, - "collaterally": 3.63e-08, - "columellar": 3.63e-08, - "combinatory": 3.63e-08, - "completer": 3.63e-08, - "congregationalism": 3.63e-08, - "corsetry": 3.63e-08, - "cosmography": 3.63e-08, - "counteraction": 3.63e-08, - "crossbeam": 3.63e-08, - "crumby": 3.63e-08, - "cubital": 3.63e-08, - "cutted": 3.63e-08, - "cyclorama": 3.63e-08, - "deacetylation": 3.63e-08, - "derogatorily": 3.63e-08, - "devitalized": 3.63e-08, - "didacticism": 3.63e-08, - "dimness": 3.63e-08, - "discounter": 3.63e-08, - "disproportionation": 3.63e-08, - "dogman": 3.63e-08, - "earplug": 3.63e-08, - "ebullience": 3.63e-08, - "editorialize": 3.63e-08, - "eeriness": 3.63e-08, - "effulgent": 3.63e-08, - "egba": 3.63e-08, - "egomania": 3.63e-08, - "eimer": 3.63e-08, - "elevational": 3.63e-08, - "emendation": 3.63e-08, - "encomienda": 3.63e-08, - "engraftment": 3.63e-08, - "euonymus": 3.63e-08, - "expediently": 3.63e-08, - "extendible": 3.63e-08, - "fairwater": 3.63e-08, - "fiddlehead": 3.63e-08, - "firedamp": 3.63e-08, - "firer": 3.63e-08, - "flagman": 3.63e-08, - "flitch": 3.63e-08, - "flusher": 3.63e-08, - "foible": 3.63e-08, - "forfend": 3.63e-08, - "fourpence": 3.63e-08, - "fowling": 3.63e-08, - "fusil": 3.63e-08, - "gaddi": 3.63e-08, - "galah": 3.63e-08, - "gasman": 3.63e-08, - "gaun": 3.63e-08, - "gaus": 3.63e-08, - "geest": 3.63e-08, - "gentiana": 3.63e-08, - "gien": 3.63e-08, - "glub": 3.63e-08, - "grandniece": 3.63e-08, - "grevillea": 3.63e-08, - "hairiness": 3.63e-08, - "hammerman": 3.63e-08, - "hano": 3.63e-08, - "heinously": 3.63e-08, - "hemiplegic": 3.63e-08, - "heterosis": 3.63e-08, - "hideousness": 3.63e-08, - "hyperglycemic": 3.63e-08, - "hyperplastic": 3.63e-08, - "hyrax": 3.63e-08, - "ideational": 3.63e-08, - "imagist": 3.63e-08, - "imbricated": 3.63e-08, - "inchworm": 3.63e-08, - "indefatigably": 3.63e-08, - "indiaman": 3.63e-08, - "indoles": 3.63e-08, - "ineluctably": 3.63e-08, - "inexpressive": 3.63e-08, - "inhabitation": 3.63e-08, - "inhere": 3.63e-08, - "intangibility": 3.63e-08, - "interstage": 3.63e-08, - "isotropy": 3.63e-08, - "javelina": 3.63e-08, - "jawless": 3.63e-08, - "joinder": 3.63e-08, - "kalends": 3.63e-08, - "keet": 3.63e-08, - "keplerian": 3.63e-08, - "laager": 3.63e-08, - "lipodystrophy": 3.63e-08, - "liquidy": 3.63e-08, - "lomita": 3.63e-08, - "loyalism": 3.63e-08, - "luckie": 3.63e-08, - "ludden": 3.63e-08, - "macassar": 3.63e-08, - "machinability": 3.63e-08, - "manichaeism": 3.63e-08, - "manometer": 3.63e-08, - "mazama": 3.63e-08, - "meltingly": 3.63e-08, - "merel": 3.63e-08, - "meretricious": 3.63e-08, - "meromorphic": 3.63e-08, - "metalanguage": 3.63e-08, - "modernly": 3.63e-08, - "mutely": 3.63e-08, - "naos": 2.82e-08, - "nappe": 3.63e-08, - "newcome": 3.63e-08, - "niello": 3.63e-08, - "nonagenarian": 3.63e-08, - "noncommunicable": 3.63e-08, - "noria": 3.63e-08, - "oculist": 3.63e-08, - "ogham": 3.63e-08, - "olecranon": 3.63e-08, - "onrush": 3.63e-08, - "ophidian": 3.63e-08, - "orientalia": 3.63e-08, - "osteomalacia": 3.63e-08, - "palli": 3.63e-08, - "pantie": 3.63e-08, - "parsee": 3.63e-08, - "partite": 3.63e-08, - "petaled": 3.63e-08, - "phenolphthalein": 3.63e-08, - "philippus": 3.63e-08, - "pintado": 3.63e-08, - "planform": 3.63e-08, - "plass": 3.63e-08, - "plesiosaur": 3.63e-08, - "plotless": 3.63e-08, - "pluralization": 3.63e-08, - "polydactyly": 3.63e-08, - "polypharmacy": 3.63e-08, - "polytope": 3.63e-08, - "popover": 3.63e-08, - "postulant": 3.63e-08, - "potestas": 3.63e-08, - "pourer": 3.63e-08, - "premonitory": 3.63e-08, - "preverbal": 3.63e-08, - "princeling": 3.63e-08, - "propitiatory": 3.63e-08, - "psaltery": 3.63e-08, - "psychobiology": 3.63e-08, - "quantize": 3.63e-08, - "rarefaction": 3.63e-08, - "reincorporate": 3.63e-08, - "relist": 3.63e-08, - "renascence": 3.63e-08, - "reprobation": 3.63e-08, - "retrogression": 3.63e-08, - "rimu": 3.63e-08, - "rotogravure": 3.63e-08, - "rumbly": 3.63e-08, - "rutin": 3.63e-08, - "salmagundi": 3.63e-08, - "samas": 3.55e-08, - "sarrazin": 3.63e-08, - "scarman": 3.63e-08, - "scudi": 3.63e-08, - "selter": 3.63e-08, - "seronegative": 3.63e-08, - "serpentina": 3.63e-08, - "shamming": 3.63e-08, - "shotter": 3.63e-08, - "sicca": 3.63e-08, - "sidling": 3.63e-08, - "singable": 3.63e-08, - "sixpenny": 3.63e-08, - "skunky": 3.63e-08, - "slanderer": 3.63e-08, - "smout": 3.63e-08, - "sope": 3.63e-08, - "souchong": 3.63e-08, - "spirograph": 3.63e-08, - "standee": 3.63e-08, - "staver": 3.63e-08, - "stockpot": 3.63e-08, - "stoppable": 3.63e-08, - "stratigraphically": 3.63e-08, - "subgrade": 3.63e-08, - "sublethal": 3.63e-08, - "sudra": 3.63e-08, - "superheterodyne": 3.63e-08, - "supination": 3.63e-08, - "synergism": 3.63e-08, - "tactus": 3.63e-08, - "talar": 3.63e-08, - "taxonomical": 3.63e-08, - "tectum": 3.63e-08, - "telamon": 3.63e-08, - "terpsichore": 3.63e-08, - "thuringian": 3.63e-08, - "tillable": 3.63e-08, - "transfigure": 3.63e-08, - "trilemma": 3.63e-08, - "trophyless": 3.63e-08, - "tubbing": 3.63e-08, - "turanian": 3.63e-08, - "turbinate": 3.63e-08, - "turgor": 3.63e-08, - "uncaught": 3.63e-08, - "undercoating": 3.63e-08, - "undergirding": 3.63e-08, - "unhealthful": 3.63e-08, - "unintelligibly": 3.63e-08, - "unrevised": 3.63e-08, - "unrooted": 3.63e-08, - "unscrupulously": 3.63e-08, - "unsuspectingly": 3.63e-08, - "unsymmetrical": 3.63e-08, - "urtica": 3.63e-08, - "vicuna": 3.63e-08, - "vietminh": 3.63e-08, - "walpurgis": 3.63e-08, - "warbled": 3.63e-08, - "weaponless": 3.63e-08, - "wherefrom": 3.63e-08, - "wicky": 3.63e-08, - "widder": 3.63e-08, - "wisse": 3.63e-08, - "witched": 3.63e-08, - "yest": 3.63e-08, - "yowl": 3.63e-08, - "accentual": 3.55e-08, - "adjunction": 3.55e-08, - "akov": 3.55e-08, - "alkenyl": 3.55e-08, - "amylose": 3.55e-08, - "anax": 3.55e-08, - "ancestress": 3.55e-08, - "anole": 3.55e-08, - "anticyclonic": 3.55e-08, - "apalachee": 3.55e-08, - "apostoli": 3.55e-08, - "aquarelle": 3.55e-08, - "arkansan": 3.55e-08, - "armillaria": 3.55e-08, - "assumedly": 3.55e-08, - "atheroma": 3.55e-08, - "atomize": 3.55e-08, - "automaticity": 3.55e-08, - "bandbox": 3.55e-08, - "barbette": 3.55e-08, - "basidia": 3.55e-08, - "birn": 3.55e-08, - "blacktail": 3.55e-08, - "boundedness": 3.55e-08, - "bowlegged": 3.55e-08, - "braeside": 3.55e-08, - "brobdingnagian": 3.55e-08, - "brutalization": 3.55e-08, - "bundu": 3.55e-08, - "cabiria": 3.55e-08, - "calas": 3.55e-08, - "carya": 3.55e-08, - "caseless": 3.55e-08, - "chalons": 3.55e-08, - "chigger": 3.55e-08, - "chinless": 3.55e-08, - "chymotrypsin": 3.55e-08, - "clarinettist": 3.55e-08, - "clearheaded": 3.55e-08, - "clevis": 3.55e-08, - "cloudberry": 3.55e-08, - "coercivity": 3.55e-08, - "colline": 3.55e-08, - "commingle": 3.55e-08, - "concent": 3.55e-08, - "conjoin": 3.55e-08, - "consubstantial": 3.55e-08, - "coquet": 3.55e-08, - "cordia": 3.55e-08, - "corylus": 3.55e-08, - "cotman": 3.55e-08, - "cotte": 3.55e-08, - "countersink": 3.55e-08, - "couped": 3.55e-08, - "crenulate": 3.55e-08, - "crossflow": 3.55e-08, - "cupful": 3.55e-08, - "curial": 3.55e-08, - "decretum": 3.55e-08, - "demurrer": 3.55e-08, - "depreciable": 3.55e-08, - "derris": 3.55e-08, - "dilling": 3.55e-08, - "dispersible": 3.55e-08, - "doggedness": 3.55e-08, - "duco": 3.55e-08, - "edea": 3.55e-08, - "edgeways": 3.55e-08, - "efface": 3.55e-08, - "elzevir": 3.55e-08, - "escarole": 3.55e-08, - "evasively": 3.55e-08, - "executory": 3.55e-08, - "exogenously": 3.55e-08, - "falcate": 3.55e-08, - "federalize": 3.55e-08, - "fibrillar": 3.55e-08, - "fictitiously": 3.55e-08, - "finical": 3.55e-08, - "firn": 3.55e-08, - "fraudulence": 3.55e-08, - "fucose": 3.55e-08, - "gaine": 3.55e-08, - "galled": 3.55e-08, - "geostrophic": 3.55e-08, - "girdling": 3.55e-08, - "glaister": 3.55e-08, - "goodhearted": 3.55e-08, - "grandfatherly": 3.55e-08, - "grego": 3.55e-08, - "grisaille": 3.55e-08, - "headwall": 3.55e-08, - "hercynian": 3.55e-08, - "hernani": 3.55e-08, - "heterozygote": 3.55e-08, - "hory": 3.55e-08, - "hunkers": 3.55e-08, - "hydroxylamine": 3.55e-08, - "hypoglossal": 3.55e-08, - "ifugao": 3.55e-08, - "impliedly": 3.55e-08, - "inconsiderately": 3.55e-08, - "indigeneity": 3.55e-08, - "indissolubly": 3.55e-08, - "infinitude": 3.55e-08, - "insensibility": 3.55e-08, - "inserter": 3.55e-08, - "intensional": 3.55e-08, - "intercoastal": 3.55e-08, - "intercommunication": 3.55e-08, - "intracellularly": 3.55e-08, - "intractability": 3.55e-08, - "intuitionism": 3.55e-08, - "involucral": 3.55e-08, - "iroko": 3.55e-08, - "irredentism": 3.55e-08, - "irremediably": 3.55e-08, - "jaywalker": 3.55e-08, - "jowar": 3.55e-08, - "kanuri": 3.55e-08, - "kindliness": 3.55e-08, - "knifeman": 3.55e-08, - "knothole": 3.55e-08, - "kulm": 3.55e-08, - "labium": 3.55e-08, - "lampman": 3.55e-08, - "laterality": 3.55e-08, - "leonato": 3.55e-08, - "lewdly": 3.55e-08, - "libretti": 3.55e-08, - "liturgically": 3.55e-08, - "liveness": 3.55e-08, - "locrian": 3.55e-08, - "lood": 3.55e-08, - "loutish": 3.55e-08, - "maenad": 3.55e-08, - "makua": 3.55e-08, - "manter": 3.55e-08, - "masterless": 3.55e-08, - "mayorship": 3.55e-08, - "meditatively": 3.55e-08, - "memorability": 3.55e-08, - "microinjection": 3.55e-08, - "millionairess": 3.55e-08, - "misprision": 3.55e-08, - "missioner": 3.55e-08, - "monobloc": 3.55e-08, - "mudguard": 3.55e-08, - "mythmaking": 3.55e-08, - "nabataean": 3.55e-08, - "necessar": 3.55e-08, - "neoclassic": 3.55e-08, - "nephite": 3.55e-08, - "nomenclatural": 3.55e-08, - "nonperishable": 3.55e-08, - "nonvoting": 3.55e-08, - "notitia": 3.55e-08, - "numen": 3.55e-08, - "oaten": 3.55e-08, - "obscurantist": 3.55e-08, - "ocellus": 3.55e-08, - "oenothera": 3.55e-08, - "oldish": 3.55e-08, - "orchidaceae": 3.55e-08, - "osmotically": 3.55e-08, - "otology": 3.55e-08, - "pannonian": 3.55e-08, - "paramountcy": 3.55e-08, - "parer": 3.55e-08, - "parus": 3.55e-08, - "perforator": 3.55e-08, - "philomel": 3.55e-08, - "pickax": 3.55e-08, - "pieman": 3.55e-08, - "pigheaded": 3.55e-08, - "piperazine": 3.55e-08, - "piscataqua": 3.55e-08, - "plastisol": 3.55e-08, - "plumbago": 3.55e-08, - "pochard": 3.55e-08, - "poha": 3.55e-08, - "pointillist": 3.55e-08, - "posteriors": 3.55e-08, - "poundcake": 3.55e-08, - "praseodymium": 3.55e-08, - "prestidigitation": 3.55e-08, - "primp": 3.55e-08, - "processual": 3.55e-08, - "propound": 3.55e-08, - "prudishness": 3.55e-08, - "pugilism": 3.55e-08, - "pulseless": 3.55e-08, - "punnet": 3.55e-08, - "pyin": 3.55e-08, - "quebracho": 3.55e-08, - "raffish": 3.55e-08, - "rakh": 3.55e-08, - "reconsolidation": 3.55e-08, - "redescription": 3.55e-08, - "reflation": 3.55e-08, - "reify": 3.55e-08, - "remise": 3.55e-08, - "renes": 3.55e-08, - "repartition": 3.55e-08, - "resentfully": 3.55e-08, - "revetment": 3.55e-08, - "ruminative": 3.55e-08, - "samen": 3.55e-08, - "saracenic": 3.55e-08, - "sartorially": 3.55e-08, - "sawer": 3.55e-08, - "sawmilling": 3.55e-08, - "scotchman": 3.55e-08, - "scotoma": 3.55e-08, - "semiautonomous": 3.55e-08, - "semipro": 3.55e-08, - "semiprofessional": 3.55e-08, - "sensuously": 3.55e-08, - "serape": 3.55e-08, - "serenata": 3.55e-08, - "silversmithing": 3.55e-08, - "sitosterol": 3.55e-08, - "skag": 3.55e-08, - "slaveowner": 3.55e-08, - "slimness": 3.55e-08, - "snakelike": 3.55e-08, - "solarization": 3.55e-08, - "spadix": 3.55e-08, - "spired": 3.55e-08, - "spiv": 3.55e-08, - "spored": 3.55e-08, - "spuriously": 3.55e-08, - "squarer": 3.55e-08, - "stargaze": 3.55e-08, - "steeplechaser": 3.55e-08, - "stikine": 3.55e-08, - "subdeacon": 3.55e-08, - "subtile": 3.55e-08, - "supraventricular": 3.55e-08, - "sweetish": 3.55e-08, - "tembe": 3.55e-08, - "temin": 3.55e-08, - "tenseness": 3.55e-08, - "tetrode": 3.55e-08, - "texturally": 3.55e-08, - "theobroma": 3.55e-08, - "theoria": 3.55e-08, - "threnody": 3.55e-08, - "toluidine": 3.55e-08, - "tonsured": 3.55e-08, - "tovah": 3.55e-08, - "toyshop": 3.55e-08, - "transbay": 3.55e-08, - "transitively": 3.55e-08, - "translationally": 3.55e-08, - "trinary": 3.55e-08, - "twelvemonth": 3.55e-08, - "umbo": 3.55e-08, - "unauthentic": 3.55e-08, - "unavailing": 3.55e-08, - "unbolted": 3.55e-08, - "undernourishment": 3.55e-08, - "undisputedly": 3.55e-08, - "unedifying": 3.55e-08, - "ungaro": 3.55e-08, - "unimportance": 3.55e-08, - "univalent": 3.55e-08, - "unnavigable": 3.55e-08, - "unrefrigerated": 3.55e-08, - "unrra": 3.55e-08, - "valerate": 3.55e-08, - "varangian": 3.55e-08, - "vectis": 3.55e-08, - "vicinal": 3.55e-08, - "vitalize": 3.55e-08, - "wakf": 3.55e-08, - "wase": 3.55e-08, - "wateringly": 3.55e-08, - "wronger": 3.55e-08, - "yellowhammer": 3.55e-08, - "yenisei": 3.55e-08, - "abased": 3.47e-08, - "abaxial": 3.47e-08, - "abscissa": 3.47e-08, - "accrete": 3.47e-08, - "adjudge": 3.47e-08, - "aimlessness": 3.47e-08, - "airiness": 3.47e-08, - "alertly": 3.47e-08, - "alloxan": 3.47e-08, - "amang": 3.47e-08, - "amnion": 3.47e-08, - "anorectal": 3.47e-08, - "antinomy": 3.47e-08, - "antismoking": 3.47e-08, - "aper": 3.47e-08, - "araneae": 3.47e-08, - "arati": 3.47e-08, - "arhat": 3.47e-08, - "armhole": 3.47e-08, - "arni": 3.47e-08, - "arrestable": 3.47e-08, - "ashame": 3.47e-08, - "audiometry": 3.47e-08, - "badland": 3.47e-08, - "bakeshop": 3.47e-08, - "barebone": 3.47e-08, - "bassoonist": 3.47e-08, - "batis": 3.47e-08, - "battel": 3.47e-08, - "batterer": 3.47e-08, - "bedazzling": 3.47e-08, - "bichir": 3.47e-08, - "bifid": 3.47e-08, - "blaw": 3.47e-08, - "bloodroot": 3.47e-08, - "boastfully": 3.47e-08, - "borlase": 3.47e-08, - "bounden": 3.47e-08, - "boza": 3.47e-08, - "brahmanism": 3.47e-08, - "bulkiness": 3.47e-08, - "bungler": 3.47e-08, - "burnsides": 3.47e-08, - "cabalistic": 3.47e-08, - "cager": 3.47e-08, - "carpus": 3.47e-08, - "castra": 3.47e-08, - "cecropia": 3.47e-08, - "chazan": 3.47e-08, - "chilkat": 3.47e-08, - "chlorogenic": 3.47e-08, - "chlorotic": 3.47e-08, - "christmasy": 3.47e-08, - "chromatogram": 3.47e-08, - "churchward": 3.47e-08, - "collectanea": 3.47e-08, - "collembola": 3.47e-08, - "compartmental": 3.47e-08, - "compositae": 3.47e-08, - "consolatory": 3.47e-08, - "coppicing": 3.47e-08, - "corbeau": 3.47e-08, - "corrugation": 3.47e-08, - "covenanting": 3.47e-08, - "crabbed": 3.47e-08, - "crassly": 3.47e-08, - "crewel": 3.47e-08, - "cric": 3.47e-08, - "cristopher": 3.47e-08, - "cupressus": 3.47e-08, - "curatorship": 3.47e-08, - "cycad": 3.47e-08, - "daemonic": 3.47e-08, - "daler": 3.47e-08, - "danelaw": 3.47e-08, - "decarbonization": 3.47e-08, - "decimator": 3.47e-08, - "deckhouse": 3.47e-08, - "delphian": 3.47e-08, - "depilatory": 3.47e-08, - "depravation": 3.47e-08, - "diagenetic": 3.47e-08, - "diatomite": 3.47e-08, - "diopside": 3.47e-08, - "dioscorea": 3.47e-08, - "disaggregate": 3.47e-08, - "dobe": 3.47e-08, - "draggy": 3.47e-08, - "earnie": 3.47e-08, - "ectoplasmic": 3.47e-08, - "edenic": 3.47e-08, - "embarras": 3.47e-08, - "endodermal": 3.47e-08, - "endurable": 3.47e-08, - "enolate": 3.47e-08, - "enthrone": 3.47e-08, - "erythropoiesis": 3.47e-08, - "eupatorium": 3.47e-08, - "eversion": 3.47e-08, - "expediter": 3.47e-08, - "factuality": 3.47e-08, - "fauvism": 3.47e-08, - "feminity": 3.47e-08, - "feticide": 3.47e-08, - "flirtatiously": 3.47e-08, - "formalistic": 3.47e-08, - "fragaria": 3.47e-08, - "gainsay": 3.47e-08, - "gallet": 3.47e-08, - "gateman": 3.47e-08, - "geniality": 3.47e-08, - "gerbe": 3.47e-08, - "ghettoization": 3.47e-08, - "ghosty": 3.47e-08, - "glorying": 3.47e-08, - "googol": 3.47e-08, - "grandmotherly": 3.47e-08, - "granulate": 3.47e-08, - "grus": 3.39e-08, - "gruss": 3.47e-08, - "gypsophila": 3.47e-08, - "habituate": 3.47e-08, - "hadean": 3.47e-08, - "happing": 3.47e-08, - "harmfulness": 3.47e-08, - "haymaking": 3.47e-08, - "headsman": 3.47e-08, - "hearten": 3.47e-08, - "hellier": 3.47e-08, - "holmium": 3.47e-08, - "hoofer": 3.47e-08, - "housetop": 3.47e-08, - "humoristic": 3.47e-08, - "hurlock": 3.47e-08, - "hydropathic": 3.47e-08, - "hypertrophied": 3.47e-08, - "idealistically": 3.47e-08, - "ilian": 3.47e-08, - "imperially": 3.47e-08, - "impressiveness": 3.47e-08, - "indecomposable": 3.47e-08, - "indexical": 3.47e-08, - "inotropic": 3.47e-08, - "insatiably": 3.47e-08, - "interactionist": 3.47e-08, - "intraventricular": 3.47e-08, - "jodo": 3.47e-08, - "karstic": 3.47e-08, - "kayan": 3.47e-08, - "kepi": 3.47e-08, - "kerogen": 3.47e-08, - "kimberlin": 3.47e-08, - "klaudia": 3.47e-08, - "krome": 3.47e-08, - "kuldip": 3.47e-08, - "lacewing": 3.47e-08, - "lader": 3.47e-08, - "lagniappe": 3.47e-08, - "landownership": 3.47e-08, - "legatee": 3.47e-08, - "localist": 3.47e-08, - "loquat": 3.47e-08, - "luciferin": 3.47e-08, - "maidenhair": 3.47e-08, - "marshman": 3.47e-08, - "mathurin": 3.47e-08, - "maycock": 3.47e-08, - "mazarine": 3.47e-08, - "melodeon": 3.47e-08, - "mendi": 3.47e-08, - "meningoencephalitis": 3.47e-08, - "mese": 3.47e-08, - "moneyless": 3.47e-08, - "monophysite": 3.47e-08, - "moonwalker": 3.47e-08, - "mortmain": 3.47e-08, - "naggy": 3.47e-08, - "nephrotoxicity": 3.47e-08, - "nolle": 3.47e-08, - "noncurrent": 3.47e-08, - "nonstructural": 3.47e-08, - "offeree": 3.47e-08, - "oligopolistic": 3.47e-08, - "opaqueness": 3.47e-08, - "optionality": 3.47e-08, - "orangeman": 3.47e-08, - "orcadian": 3.47e-08, - "osier": 3.47e-08, - "ostracod": 3.47e-08, - "overproduce": 3.47e-08, - "oxcart": 3.47e-08, - "palmately": 3.47e-08, - "pantaloon": 3.47e-08, - "parasitica": 3.47e-08, - "parentless": 3.47e-08, - "pathobiology": 3.47e-08, - "peery": 3.47e-08, - "peregrin": 3.47e-08, - "phthalic": 3.47e-08, - "phytochemistry": 3.47e-08, - "piscator": 3.47e-08, - "popinjay": 3.47e-08, - "presumptuously": 3.47e-08, - "provine": 3.47e-08, - "purgatorial": 3.47e-08, - "pyx": 3.47e-08, - "quadrivalent": 3.47e-08, - "quilled": 3.47e-08, - "quoits": 3.47e-08, - "ratten": 3.47e-08, - "ratter": 3.47e-08, - "recolonize": 3.47e-08, - "recompose": 3.47e-08, - "redelivery": 3.47e-08, - "reeded": 3.47e-08, - "refutable": 3.47e-08, - "relabel": 3.47e-08, - "reproachful": 3.47e-08, - "retoucher": 3.47e-08, - "retrocession": 3.47e-08, - "rootedness": 3.47e-08, - "rubberneck": 3.47e-08, - "rubdown": 3.47e-08, - "saintliness": 3.47e-08, - "salian": 3.47e-08, - "saltman": 3.47e-08, - "sanatoria": 3.47e-08, - "sandworm": 3.47e-08, - "sarangi": 3.47e-08, - "scroop": 3.47e-08, - "sedately": 3.47e-08, - "seigneurial": 3.47e-08, - "sensitizer": 3.47e-08, - "sericea": 3.47e-08, - "shamefaced": 3.47e-08, - "shammy": 3.47e-08, - "shinwari": 3.47e-08, - "shoesmith": 3.47e-08, - "shopgirl": 3.47e-08, - "shoreside": 3.47e-08, - "siuslaw": 3.47e-08, - "smilax": 3.47e-08, - "snarly": 3.47e-08, - "snuffbox": 3.47e-08, - "solferino": 3.47e-08, - "spirochete": 3.47e-08, - "stagnancy": 3.47e-08, - "stickball": 3.47e-08, - "stigmatic": 3.47e-08, - "storeman": 3.47e-08, - "storting": 3.47e-08, - "strophic": 3.47e-08, - "styloid": 3.47e-08, - "supernal": 3.47e-08, - "suppuration": 3.47e-08, - "swedenborgian": 3.47e-08, - "swordsmith": 3.47e-08, - "tade": 3.47e-08, - "takt": 3.47e-08, - "tameness": 3.47e-08, - "tamilian": 3.47e-08, - "tendance": 3.47e-08, - "teredo": 3.47e-08, - "terminable": 3.47e-08, - "thesauri": 3.47e-08, - "thrombophlebitis": 3.47e-08, - "thunderously": 3.47e-08, - "ticketless": 3.47e-08, - "tilth": 3.47e-08, - "tingler": 3.47e-08, - "titanosaur": 3.47e-08, - "titlist": 3.47e-08, - "tode": 3.47e-08, - "transliterate": 3.47e-08, - "tremulously": 3.47e-08, - "tribuna": 3.47e-08, - "trichomonas": 3.47e-08, - "trinomial": 3.47e-08, - "trun": 3.47e-08, - "tyche": 3.47e-08, - "tyto": 3.47e-08, - "unbent": 3.47e-08, - "unca": 3.47e-08, - "uncleanliness": 3.47e-08, - "unconjugated": 3.47e-08, - "uncorking": 3.47e-08, - "unfeigned": 3.47e-08, - "universalization": 3.47e-08, - "unnameable": 3.47e-08, - "unteachable": 3.47e-08, - "virga": 3.47e-08, - "virtualize": 3.47e-08, - "vitrine": 3.47e-08, - "wallpapering": 3.47e-08, - "wanga": 3.47e-08, - "worktable": 3.47e-08, - "wowser": 3.47e-08, - "wrenchingly": 3.47e-08, - "zemstvo": 3.47e-08, - "achor": 3.39e-08, - "aggress": 3.39e-08, - "alluringly": 3.39e-08, - "almagest": 3.39e-08, - "amygdalin": 3.39e-08, - "anchises": 3.39e-08, - "anthropocentrism": 3.39e-08, - "antivenin": 3.39e-08, - "antral": 3.39e-08, - "apatosaurus": 3.39e-08, - "apomorphine": 3.39e-08, - "arrear": 3.39e-08, - "asplenium": 3.39e-08, - "autocatalytic": 3.39e-08, - "bakal": 3.39e-08, - "baneful": 3.39e-08, - "bastardization": 3.39e-08, - "betroth": 3.39e-08, - "bifacial": 3.39e-08, - "blan": 3.39e-08, - "boomy": 3.39e-08, - "bosomed": 3.39e-08, - "bragi": 3.39e-08, - "braveness": 3.39e-08, - "brume": 3.39e-08, - "bughouse": 3.39e-08, - "bumptious": 3.39e-08, - "calculative": 3.39e-08, - "canthus": 3.39e-08, - "catalepsy": 3.39e-08, - "centime": 3.39e-08, - "chondrosarcoma": 3.39e-08, - "ciliata": 3.39e-08, - "coaxially": 3.39e-08, - "cogency": 3.39e-08, - "constantinian": 3.39e-08, - "coquetry": 3.39e-08, - "cosily": 3.39e-08, - "crossbill": 3.39e-08, - "cucumis": 3.39e-08, - "cytherea": 3.39e-08, - "dangler": 3.39e-08, - "daybook": 3.39e-08, - "debunker": 3.39e-08, - "defloration": 3.39e-08, - "demagogy": 3.39e-08, - "dethronement": 3.39e-08, - "detroiter": 3.39e-08, - "disquieted": 3.39e-08, - "dockage": 3.39e-08, - "doney": 3.39e-08, - "dramatical": 3.39e-08, - "drearily": 3.39e-08, - "dudman": 3.39e-08, - "easting": 3.39e-08, - "eggless": 3.39e-08, - "elephas": 3.39e-08, - "emeraude": 3.39e-08, - "epidote": 3.39e-08, - "epigraphical": 3.39e-08, - "ergometer": 3.39e-08, - "ericaceae": 3.39e-08, - "ethanolamine": 3.39e-08, - "ethnobotanical": 3.39e-08, - "exudation": 3.39e-08, - "factious": 3.39e-08, - "fany": 3.39e-08, - "feminize": 3.39e-08, - "fermentative": 3.39e-08, - "fiacre": 3.39e-08, - "fibroma": 3.39e-08, - "fibulae": 3.39e-08, - "fleche": 3.39e-08, - "foolscap": 3.39e-08, - "forebay": 3.39e-08, - "foresail": 3.39e-08, - "forestal": 3.39e-08, - "furlan": 3.39e-08, - "gabble": 3.39e-08, - "gastroenterological": 3.39e-08, - "germanization": 3.39e-08, - "ghibelline": 3.39e-08, - "gloominess": 3.39e-08, - "gujrati": 3.39e-08, - "hepatomegaly": 3.39e-08, - "hornworm": 3.39e-08, - "hupa": 3.39e-08, - "hyades": 3.39e-08, - "hypocalcemia": 3.39e-08, - "hyson": 3.39e-08, - "immodestly": 3.39e-08, - "immunogen": 3.39e-08, - "impi": 3.39e-08, - "impulsion": 3.39e-08, - "incisively": 3.39e-08, - "incorrupt": 3.39e-08, - "inculcation": 3.39e-08, - "indestructibility": 3.39e-08, - "indivisibility": 3.39e-08, - "infantilism": 3.39e-08, - "instatement": 3.39e-08, - "intracardiac": 3.39e-08, - "inwardness": 3.39e-08, - "jagir": 3.39e-08, - "jeremiad": 3.39e-08, - "jicarilla": 3.39e-08, - "kago": 3.39e-08, - "katabatic": 3.39e-08, - "khutbah": 3.39e-08, - "labret": 3.39e-08, - "langi": 3.39e-08, - "lewie": 3.39e-08, - "liliaceae": 3.39e-08, - "litch": 3.39e-08, - "lolium": 3.39e-08, - "maithili": 3.39e-08, - "mammut": 3.39e-08, - "mantid": 3.39e-08, - "manxman": 3.39e-08, - "manzil": 3.39e-08, - "masser": 3.39e-08, - "melian": 3.39e-08, - "mense": 3.39e-08, - "messuage": 3.39e-08, - "miliary": 3.39e-08, - "mirthful": 3.39e-08, - "mischance": 3.39e-08, - "monomorphic": 3.39e-08, - "moonset": 3.39e-08, - "motorable": 3.39e-08, - "muchness": 3.39e-08, - "munity": 3.39e-08, - "nagari": 3.39e-08, - "nasolabial": 3.39e-08, - "neurotically": 3.39e-08, - "noninfectious": 3.39e-08, - "opalescence": 3.39e-08, - "orenda": 3.39e-08, - "organosilicon": 3.39e-08, - "ostium": 3.39e-08, - "outspread": 3.39e-08, - "oxyrhynchus": 3.39e-08, - "palestra": 3.39e-08, - "papular": 3.39e-08, - "pathy": 3.39e-08, - "peaker": 3.39e-08, - "perchloric": 3.39e-08, - "philtrum": 3.39e-08, - "phosphonate": 3.39e-08, - "phthisis": 3.39e-08, - "phut": 3.39e-08, - "phytopathology": 3.39e-08, - "pinewoods": 3.39e-08, - "platformed": 3.39e-08, - "pluvial": 3.39e-08, - "polarimetric": 3.39e-08, - "postclassic": 3.39e-08, - "praya": 3.39e-08, - "preadolescent": 3.39e-08, - "preclassic": 3.39e-08, - "programma": 3.39e-08, - "propitiate": 3.39e-08, - "prudy": 3.39e-08, - "psychologic": 3.39e-08, - "pylades": 3.39e-08, - "quadroon": 3.39e-08, - "quietism": 3.39e-08, - "quondam": 3.39e-08, - "radiosonde": 3.39e-08, - "rasped": 3.39e-08, - "ravindran": 3.39e-08, - "recommitment": 3.39e-08, - "recomposition": 3.39e-08, - "reconciliatory": 3.39e-08, - "remunerate": 3.39e-08, - "reseat": 3.39e-08, - "respirable": 3.39e-08, - "responsivity": 3.39e-08, - "rhodonite": 3.39e-08, - "ringneck": 3.39e-08, - "sammer": 3.39e-08, - "sapsucker": 3.39e-08, - "scalloping": 3.39e-08, - "serang": 3.39e-08, - "shagreen": 3.39e-08, - "sharkskin": 3.39e-08, - "sharry": 3.39e-08, - "shenanigan": 3.39e-08, - "shiplap": 3.39e-08, - "shita": 3.39e-08, - "shoa": 3.39e-08, - "shrewish": 3.39e-08, - "simnel": 3.39e-08, - "sleekly": 3.39e-08, - "slenderness": 3.39e-08, - "snuffer": 3.39e-08, - "solidi": 3.39e-08, - "spermaceti": 3.39e-08, - "spiritist": 3.39e-08, - "sportingly": 3.39e-08, - "staw": 3.39e-08, - "stenographic": 3.39e-08, - "sternness": 3.39e-08, - "stridor": 3.39e-08, - "stude": 3.39e-08, - "subsect": 3.39e-08, - "suprapubic": 3.39e-08, - "swarf": 3.39e-08, - "tacker": 3.39e-08, - "tapachula": 3.39e-08, - "tarbet": 3.39e-08, - "tereus": 3.39e-08, - "termine": 3.39e-08, - "thalamocortical": 3.39e-08, - "thenceforward": 3.39e-08, - "thiourea": 3.39e-08, - "thoron": 3.39e-08, - "thready": 3.39e-08, - "toodle": 3.39e-08, - "tophet": 3.39e-08, - "tradescantia": 3.39e-08, - "trepanning": 3.39e-08, - "tribalist": 3.39e-08, - "triforium": 3.39e-08, - "turdus": 3.39e-08, - "unauthenticated": 3.39e-08, - "uncomfy": 3.39e-08, - "uncropped": 3.39e-08, - "underland": 3.39e-08, - "undersize": 3.39e-08, - "unessential": 3.39e-08, - "unexcelled": 3.39e-08, - "unexcited": 3.39e-08, - "unfitted": 3.39e-08, - "unfused": 3.39e-08, - "unitive": 3.39e-08, - "unlettered": 3.39e-08, - "unpremeditated": 3.39e-08, - "unsatisfactorily": 3.39e-08, - "unsubstituted": 3.39e-08, - "unutterably": 3.39e-08, - "vedantic": 3.39e-08, - "vigneron": 3.39e-08, - "vinery": 3.39e-08, - "vire": 3.39e-08, - "voluptuousness": 3.39e-08, - "waer": 3.39e-08, - "washstand": 3.39e-08, - "waxhaw": 3.39e-08, - "weanling": 3.39e-08, - "wecht": 3.39e-08, - "wheen": 3.39e-08, - "whereunto": 3.39e-08, - "wuzzy": 3.39e-08, - "zax": 3.39e-08, - "zwitterionic": 3.39e-08, - "aaru": 3.31e-08, - "abidi": 3.31e-08, - "aggrandize": 3.31e-08, - "aligner": 3.31e-08, - "alist": 3.31e-08, - "allopatric": 3.31e-08, - "alterative": 3.31e-08, - "aluminosilicate": 3.31e-08, - "anahita": 3.31e-08, - "ancilla": 3.31e-08, - "anonym": 3.31e-08, - "antidumping": 3.31e-08, - "antitheses": 3.31e-08, - "aplasia": 3.31e-08, - "arachnida": 3.31e-08, - "attender": 3.31e-08, - "avernus": 3.31e-08, - "axil": 3.31e-08, - "baldhead": 3.31e-08, - "bandhu": 3.31e-08, - "barbarously": 3.31e-08, - "barnstormer": 3.31e-08, - "beastman": 3.31e-08, - "bego": 3.31e-08, - "benincasa": 3.31e-08, - "benzoquinone": 3.31e-08, - "bethink": 3.31e-08, - "boody": 3.31e-08, - "bortz": 3.31e-08, - "bountifully": 3.31e-08, - "cabotage": 3.31e-08, - "camelina": 3.31e-08, - "caramelization": 3.31e-08, - "carious": 3.31e-08, - "cartulary": 3.31e-08, - "cercospora": 3.31e-08, - "cetane": 3.31e-08, - "chalcedonian": 3.31e-08, - "chatelain": 3.31e-08, - "chironomus": 3.31e-08, - "civically": 3.31e-08, - "claudication": 3.31e-08, - "cnidaria": 3.31e-08, - "coccus": 3.31e-08, - "colocasia": 3.31e-08, - "contently": 3.31e-08, - "conterminous": 3.31e-08, - "corroboree": 3.31e-08, - "cotangent": 3.31e-08, - "cozen": 3.31e-08, - "crozer": 3.31e-08, - "cuffy": 3.31e-08, - "cultism": 3.31e-08, - "dactylic": 3.31e-08, - "deceivingly": 3.31e-08, - "decelerator": 3.31e-08, - "denaro": 3.31e-08, - "deoxygenation": 3.31e-08, - "depolarize": 3.31e-08, - "dhak": 3.31e-08, - "directoire": 3.31e-08, - "disgruntlement": 3.31e-08, - "disingenuousness": 3.31e-08, - "dodona": 3.31e-08, - "dominium": 3.31e-08, - "draughtsmanship": 3.31e-08, - "dugway": 3.31e-08, - "dysgenesis": 3.31e-08, - "emersion": 3.31e-08, - "engrailed": 3.31e-08, - "entamoeba": 3.31e-08, - "erth": 3.31e-08, - "euphorbiaceae": 3.31e-08, - "expositional": 3.31e-08, - "exter": 3.31e-08, - "fireable": 3.31e-08, - "foully": 3.31e-08, - "fraternally": 3.31e-08, - "fungicidal": 3.31e-08, - "funniness": 3.31e-08, - "furcal": 3.31e-08, - "geosphere": 3.31e-08, - "germanism": 3.31e-08, - "godet": 3.31e-08, - "gossypium": 3.31e-08, - "guana": 3.31e-08, - "hamate": 3.31e-08, - "heiau": 3.31e-08, - "hermeticism": 3.31e-08, - "hinayana": 3.31e-08, - "hospitably": 3.31e-08, - "hygeia": 3.31e-08, - "hypertrichosis": 3.31e-08, - "illusionism": 3.31e-08, - "incarnational": 3.31e-08, - "incomprehensibility": 3.31e-08, - "insensate": 3.31e-08, - "intercomparison": 3.31e-08, - "intown": 3.31e-08, - "jagannatha": 3.31e-08, - "jerboa": 3.31e-08, - "jocularly": 3.31e-08, - "justness": 3.31e-08, - "keuper": 3.31e-08, - "kinswoman": 3.31e-08, - "kirker": 3.31e-08, - "knowingness": 3.31e-08, - "lability": 3.31e-08, - "leftish": 3.31e-08, - "lionhearted": 3.31e-08, - "lollard": 3.31e-08, - "maidu": 3.31e-08, - "malanga": 3.31e-08, - "mameluke": 3.31e-08, - "measureless": 3.31e-08, - "metacentric": 3.31e-08, - "metalloid": 3.31e-08, - "metallurgic": 3.31e-08, - "methemoglobinemia": 3.31e-08, - "milliard": 3.31e-08, - "molluscum": 3.31e-08, - "molybdate": 3.31e-08, - "monocot": 3.31e-08, - "moodily": 3.31e-08, - "morula": 3.31e-08, - "mucilaginous": 3.31e-08, - "mulatta": 3.31e-08, - "multilaterally": 3.31e-08, - "museology": 3.31e-08, - "mustafina": 3.31e-08, - "muteness": 3.31e-08, - "mysteriousness": 3.31e-08, - "nicker": 3.31e-08, - "noddle": 3.31e-08, - "noncontact": 3.31e-08, - "nonmetal": 3.31e-08, - "nonreactive": 3.31e-08, - "octant": 3.31e-08, - "openside": 3.31e-08, - "ophthalmologic": 3.31e-08, - "overcomer": 3.31e-08, - "overemotional": 3.31e-08, - "overfly": 3.31e-08, - "overfull": 3.31e-08, - "oversaturation": 3.31e-08, - "paleography": 3.31e-08, - "paraiba": 3.31e-08, - "parousia": 3.31e-08, - "peckerwood": 3.31e-08, - "pelota": 3.31e-08, - "pencilling": 3.31e-08, - "peregrina": 3.31e-08, - "perfectionistic": 3.31e-08, - "periodontist": 3.31e-08, - "persecutory": 3.31e-08, - "personalist": 3.31e-08, - "petrography": 3.31e-08, - "pind": 3.31e-08, - "pinfold": 3.31e-08, - "pirogue": 3.31e-08, - "pitchblende": 3.31e-08, - "pittosporum": 3.31e-08, - "planarian": 3.31e-08, - "pleadingly": 3.31e-08, - "plodder": 3.31e-08, - "porifera": 3.31e-08, - "prate": 3.31e-08, - "premaxilla": 3.31e-08, - "producible": 3.31e-08, - "promotable": 3.31e-08, - "proteinaceous": 3.31e-08, - "puddled": 3.31e-08, - "racialization": 3.31e-08, - "rebury": 3.31e-08, - "recoupment": 3.31e-08, - "reteach": 3.31e-08, - "rivalrous": 3.31e-08, - "romansh": 3.31e-08, - "romish": 3.31e-08, - "ropy": 3.31e-08, - "samnite": 3.31e-08, - "sarwan": 3.31e-08, - "seductiveness": 3.31e-08, - "sharada": 3.31e-08, - "sheepy": 3.31e-08, - "shipmaster": 3.31e-08, - "sillery": 3.31e-08, - "slatter": 3.31e-08, - "slaughterer": 3.31e-08, - "smocking": 3.31e-08, - "smolt": 3.31e-08, - "snee": 3.31e-08, - "snorer": 3.31e-08, - "solidary": 3.31e-08, - "soulfulness": 3.31e-08, - "soursop": 3.31e-08, - "sparhawk": 3.31e-08, - "spectrophotometric": 3.31e-08, - "splodge": 3.31e-08, - "sportiness": 3.31e-08, - "squirty": 3.31e-08, - "staysail": 3.31e-08, - "strass": 3.31e-08, - "stupidness": 3.31e-08, - "styrian": 3.31e-08, - "succulence": 3.31e-08, - "sudani": 3.31e-08, - "sugarhouse": 3.31e-08, - "syringomyelia": 3.31e-08, - "tangram": 3.31e-08, - "tapetum": 3.31e-08, - "tautly": 3.31e-08, - "taxonomist": 3.31e-08, - "teashop": 3.31e-08, - "telegraphist": 3.31e-08, - "terron": 3.31e-08, - "thymol": 3.31e-08, - "tierce": 3.31e-08, - "timesaver": 3.31e-08, - "tonus": 3.31e-08, - "topgallant": 3.31e-08, - "tourn": 3.31e-08, - "translucence": 3.31e-08, - "trigonometrical": 3.31e-08, - "tronc": 3.31e-08, - "tusked": 3.31e-08, - "tyg": 3.31e-08, - "tyrannize": 3.31e-08, - "unchallengeable": 3.31e-08, - "unchaperoned": 3.31e-08, - "uncleaned": 3.31e-08, - "undrawn": 3.31e-08, - "unhelpfully": 3.31e-08, - "unhuman": 3.31e-08, - "unidimensional": 3.31e-08, - "unparliamentary": 3.31e-08, - "unroofed": 3.31e-08, - "upclose": 3.31e-08, - "uvular": 3.31e-08, - "victrix": 3.31e-08, - "visitant": 3.31e-08, - "visuality": 3.31e-08, - "vituperation": 3.31e-08, - "vlei": 3.31e-08, - "waling": 3.31e-08, - "wapato": 3.31e-08, - "warehouseman": 3.31e-08, - "warmish": 3.31e-08, - "welted": 3.31e-08, - "wheelspin": 3.31e-08, - "yond": 3.31e-08, - "abdal": 3.24e-08, - "acle": 3.24e-08, - "adman": 3.24e-08, - "airdrome": 3.24e-08, - "alchemic": 3.24e-08, - "altern": 3.24e-08, - "amination": 3.24e-08, - "anabolism": 3.24e-08, - "anaglyph": 3.24e-08, - "aneroid": 3.24e-08, - "aneurysmal": 3.24e-08, - "angelical": 3.24e-08, - "angularity": 3.24e-08, - "anthracnose": 3.24e-08, - "appall": 3.24e-08, - "areopagite": 3.24e-08, - "argillaceous": 3.24e-08, - "armillary": 3.24e-08, - "ascus": 3.24e-08, - "aspidistra": 3.24e-08, - "asterism": 3.24e-08, - "autonomist": 3.24e-08, - "backhander": 3.24e-08, - "bairam": 3.24e-08, - "bantayan": 3.24e-08, - "barotse": 3.24e-08, - "benzophenone": 3.24e-08, - "bewilderingly": 3.24e-08, - "bibble": 3.24e-08, - "biga": 3.24e-08, - "blackfire": 3.24e-08, - "bookstall": 3.24e-08, - "boose": 3.24e-08, - "cabala": 3.24e-08, - "cabriole": 3.24e-08, - "cahuilla": 3.24e-08, - "calomel": 3.24e-08, - "cental": 3.24e-08, - "chicle": 3.24e-08, - "chophouse": 3.24e-08, - "churl": 3.24e-08, - "classificatory": 3.24e-08, - "closter": 3.24e-08, - "collegiately": 3.24e-08, - "columban": 3.24e-08, - "committeewoman": 3.24e-08, - "comradely": 3.24e-08, - "conceptualist": 3.24e-08, - "conflux": 3.24e-08, - "conjugacy": 3.24e-08, - "consomme": 3.24e-08, - "constructible": 3.24e-08, - "contiguously": 3.24e-08, - "corkage": 3.24e-08, - "cornishman": 3.24e-08, - "cotoneaster": 3.24e-08, - "cottier": 3.24e-08, - "countertransference": 3.24e-08, - "cullis": 3.24e-08, - "cumulation": 3.24e-08, - "dalt": 3.24e-08, - "deferentially": 3.24e-08, - "demitasse": 3.24e-08, - "despondently": 3.24e-08, - "determinacy": 3.24e-08, - "diastasis": 3.24e-08, - "direly": 3.24e-08, - "disapprobation": 3.24e-08, - "dominical": 3.24e-08, - "dosimetric": 3.24e-08, - "effluvium": 3.24e-08, - "eliphalet": 3.24e-08, - "ephemerality": 3.24e-08, - "equilibrate": 3.24e-08, - "esoterica": 3.24e-08, - "europeanization": 3.24e-08, - "excelente": 3.24e-08, - "excipient": 3.24e-08, - "explant": 3.24e-08, - "fibered": 3.24e-08, - "flysch": 3.24e-08, - "forewoman": 3.24e-08, - "froward": 3.24e-08, - "fungibility": 3.24e-08, - "fustian": 3.24e-08, - "galanthus": 3.24e-08, - "giblet": 3.24e-08, - "glanders": 3.24e-08, - "glibness": 3.24e-08, - "gourde": 3.24e-08, - "guarnieri": 3.24e-08, - "gyle": 3.24e-08, - "habanera": 3.24e-08, - "haematite": 3.24e-08, - "hamal": 3.24e-08, - "handless": 3.24e-08, - "havildar": 3.24e-08, - "helichrysum": 3.24e-08, - "hexokinase": 3.24e-08, - "homological": 3.24e-08, - "hoper": 3.24e-08, - "hornless": 3.24e-08, - "hydroperoxide": 3.24e-08, - "ignorable": 3.24e-08, - "illuminant": 3.24e-08, - "inexpert": 3.24e-08, - "ingrowth": 3.24e-08, - "inhomogeneity": 3.24e-08, - "interleave": 3.24e-08, - "intertropical": 3.24e-08, - "intervocalic": 3.24e-08, - "inveigle": 3.24e-08, - "ionizer": 3.24e-08, - "isoflavone": 3.24e-08, - "karch": 3.24e-08, - "katar": 3.24e-08, - "kilovolt": 3.24e-08, - "lacerta": 3.24e-08, - "laudably": 3.24e-08, - "lobate": 3.24e-08, - "lorikeet": 3.24e-08, - "lowish": 3.24e-08, - "macerate": 3.24e-08, - "magdalenian": 3.24e-08, - "maleate": 3.24e-08, - "mangi": 3.24e-08, - "mantuan": 3.24e-08, - "marm": 3.24e-08, - "meaninglessly": 3.24e-08, - "metalworks": 3.24e-08, - "mightiness": 3.24e-08, - "minium": 3.24e-08, - "mollycoddle": 3.24e-08, - "multilinear": 3.24e-08, - "murkiness": 3.24e-08, - "nabal": 3.24e-08, - "nisse": 3.24e-08, - "nobleness": 3.24e-08, - "nonclassical": 3.24e-08, - "nonsingular": 3.24e-08, - "numerate": 3.24e-08, - "nutation": 3.24e-08, - "nutmegged": 3.24e-08, - "nutriment": 3.24e-08, - "oakum": 3.24e-08, - "obtuseness": 3.24e-08, - "ophthalmoscope": 3.24e-08, - "orthographically": 3.24e-08, - "overactivity": 3.24e-08, - "overcautious": 3.24e-08, - "overspread": 3.24e-08, - "overtreatment": 3.24e-08, - "pankration": 3.24e-08, - "panpsychism": 3.24e-08, - "passman": 3.24e-08, - "pasteurize": 3.24e-08, - "patchiness": 3.24e-08, - "patte": 3.24e-08, - "pentangle": 3.24e-08, - "plughole": 3.24e-08, - "precursory": 3.24e-08, - "predetermination": 3.24e-08, - "prevalently": 3.24e-08, - "prudery": 3.24e-08, - "psychometry": 3.24e-08, - "pterygium": 3.24e-08, - "pulsatilla": 3.24e-08, - "pyriform": 3.24e-08, - "quarterstaff": 3.24e-08, - "quoit": 3.24e-08, - "rattail": 3.24e-08, - "redpoll": 3.24e-08, - "reichsmark": 3.24e-08, - "reincorporation": 3.24e-08, - "rescan": 3.24e-08, - "resignedly": 3.24e-08, - "resolvent": 3.24e-08, - "responsively": 3.24e-08, - "reverentially": 3.24e-08, - "rhizomatous": 3.24e-08, - "rine": 3.24e-08, - "rohilla": 3.24e-08, - "roky": 3.24e-08, - "roue": 3.24e-08, - "ruelle": 3.24e-08, - "sandrock": 3.24e-08, - "saumya": 3.24e-08, - "saura": 3.24e-08, - "saury": 3.24e-08, - "scofflaw": 3.24e-08, - "scovel": 3.24e-08, - "scrupulosity": 3.24e-08, - "semidefinite": 3.24e-08, - "semiofficial": 3.24e-08, - "semisolid": 3.24e-08, - "sheered": 3.24e-08, - "shellback": 3.24e-08, - "sidesaddle": 3.24e-08, - "simonian": 3.24e-08, - "skinflint": 3.24e-08, - "smoothen": 3.24e-08, - "soteriological": 3.24e-08, - "spelter": 3.24e-08, - "spinocerebellar": 3.24e-08, - "squelchy": 3.24e-08, - "statured": 3.24e-08, - "stereochemical": 3.24e-08, - "striation": 3.24e-08, - "stumper": 3.24e-08, - "subretinal": 3.24e-08, - "supari": 3.24e-08, - "sures": 3.24e-08, - "sweatproof": 3.24e-08, - "sweetbread": 3.24e-08, - "swithin": 3.24e-08, - "symbolization": 3.24e-08, - "syracusan": 3.24e-08, - "tagua": 3.24e-08, - "taler": 3.24e-08, - "tastiness": 3.24e-08, - "tentacular": 3.24e-08, - "tention": 3.24e-08, - "theretofore": 3.24e-08, - "thermostable": 3.24e-08, - "thig": 3.24e-08, - "threader": 3.24e-08, - "thriftiness": 3.24e-08, - "timecard": 3.24e-08, - "tisane": 3.24e-08, - "tollhouse": 3.24e-08, - "topmast": 3.24e-08, - "towhee": 3.24e-08, - "transmissive": 3.24e-08, - "traumatically": 3.24e-08, - "trembler": 3.24e-08, - "triangulum": 3.24e-08, - "tricalcium": 3.24e-08, - "tryptic": 3.24e-08, - "tsuba": 3.24e-08, - "tumescence": 3.24e-08, - "tutela": 3.24e-08, - "typologically": 3.24e-08, - "unbarred": 3.24e-08, - "uncross": 3.24e-08, - "unembarrassed": 3.24e-08, - "unenclosed": 3.24e-08, - "unhistorical": 3.24e-08, - "unpersuaded": 3.24e-08, - "unretouched": 3.24e-08, - "unsay": 3.24e-08, - "unsought": 3.24e-08, - "unthinkably": 3.24e-08, - "untrodden": 3.24e-08, - "unworthily": 3.24e-08, - "veritably": 3.24e-08, - "vermiform": 3.24e-08, - "vilayet": 3.24e-08, - "vimana": 3.24e-08, - "voivodeship": 3.24e-08, - "wallwork": 3.24e-08, - "warrantee": 3.24e-08, - "waxer": 3.24e-08, - "waywardness": 3.24e-08, - "whitebark": 3.24e-08, - "wilsonian": 3.24e-08, - "winterize": 3.24e-08, - "woolshed": 3.24e-08, - "abord": 3.16e-08, - "absoluteness": 3.16e-08, - "acadie": 3.16e-08, - "accessibly": 3.16e-08, - "acidly": 3.16e-08, - "adsorbate": 3.16e-08, - "aegisthus": 3.16e-08, - "alcor": 3.16e-08, - "allantoin": 3.16e-08, - "allogenic": 3.16e-08, - "amatory": 3.16e-08, - "amice": 3.16e-08, - "andorran": 3.16e-08, - "anthesis": 3.16e-08, - "antifeminist": 3.16e-08, - "apod": 3.16e-08, - "aponeurosis": 3.16e-08, - "applecart": 3.16e-08, - "arbutin": 3.16e-08, - "arduously": 3.16e-08, - "arrah": 3.16e-08, - "arthrogryposis": 3.16e-08, - "asok": 3.16e-08, - "asteria": 3.16e-08, - "autobiographic": 3.16e-08, - "autoradiography": 3.16e-08, - "baldric": 3.16e-08, - "bateaux": 3.16e-08, - "battening": 3.16e-08, - "befuddlement": 3.16e-08, - "beggary": 3.16e-08, - "besom": 3.16e-08, - "betweenness": 3.16e-08, - "bipolarity": 3.16e-08, - "bodoni": 3.16e-08, - "bolshie": 3.16e-08, - "bucketing": 3.16e-08, - "burster": 3.16e-08, - "butene": 3.16e-08, - "calathea": 3.16e-08, - "cannulated": 3.16e-08, - "capucine": 3.16e-08, - "carcharias": 3.16e-08, - "cardinalis": 3.16e-08, - "carouse": 3.16e-08, - "catting": 3.16e-08, - "caval": 3.16e-08, - "clavel": 3.16e-08, - "collectorate": 3.16e-08, - "congruity": 3.16e-08, - "conine": 3.16e-08, - "conky": 3.16e-08, - "contentedness": 3.16e-08, - "copolymerization": 3.16e-08, - "corporeality": 3.16e-08, - "corpulence": 3.16e-08, - "coset": 3.16e-08, - "cowled": 3.16e-08, - "crenulated": 3.16e-08, - "crispiness": 3.16e-08, - "crotalaria": 3.16e-08, - "cushiony": 3.16e-08, - "cyanea": 3.16e-08, - "cylindric": 3.16e-08, - "cyme": 3.16e-08, - "darksome": 3.16e-08, - "deafeningly": 3.16e-08, - "defoliate": 3.16e-08, - "demark": 3.16e-08, - "develin": 3.16e-08, - "devilfish": 3.16e-08, - "dialectology": 3.16e-08, - "dunner": 3.16e-08, - "edentulous": 3.16e-08, - "eker": 3.16e-08, - "electret": 3.16e-08, - "electrometer": 3.16e-08, - "essentiality": 3.16e-08, - "externalism": 3.16e-08, - "falcata": 3.16e-08, - "fetcher": 3.16e-08, - "feverfew": 3.16e-08, - "fibrinolysis": 3.16e-08, - "filterable": 3.16e-08, - "flameproof": 3.16e-08, - "flimflam": 3.16e-08, - "fluoroscope": 3.16e-08, - "freebooter": 3.16e-08, - "frenetically": 3.16e-08, - "furring": 3.16e-08, - "galium": 3.16e-08, - "gandharva": 3.16e-08, - "garnishee": 3.16e-08, - "gaslit": 3.16e-08, - "gelation": 3.16e-08, - "genom": 3.16e-08, - "genoveva": 3.16e-08, - "goldi": 3.16e-08, - "greensward": 3.16e-08, - "guilloche": 3.16e-08, - "gunnel": 3.16e-08, - "harelip": 3.16e-08, - "haricot": 3.16e-08, - "harmfully": 3.16e-08, - "hedera": 3.16e-08, - "helically": 3.16e-08, - "helleborus": 3.16e-08, - "heterotopia": 3.16e-08, - "hochelaga": 3.16e-08, - "holarctic": 3.16e-08, - "housebuilder": 3.16e-08, - "hymnbook": 3.16e-08, - "hyperboloid": 3.16e-08, - "hypergolic": 3.16e-08, - "hypocotyl": 3.16e-08, - "ihram": 3.16e-08, - "illusionistic": 3.16e-08, - "implosive": 3.16e-08, - "indiscreetly": 3.16e-08, - "inoculant": 3.16e-08, - "internee": 3.16e-08, - "interorbital": 3.16e-08, - "interschool": 3.16e-08, - "invigoration": 3.16e-08, - "kleinian": 3.16e-08, - "ladakhi": 3.16e-08, - "laramide": 3.16e-08, - "lateen": 3.16e-08, - "learoyd": 3.16e-08, - "linter": 3.16e-08, - "lionize": 3.16e-08, - "locanda": 3.16e-08, - "locution": 3.16e-08, - "loir": 3.16e-08, - "martu": 3.16e-08, - "mensuration": 3.16e-08, - "metempsychosis": 3.16e-08, - "microanalysis": 3.16e-08, - "mitered": 3.16e-08, - "mizar": 3.16e-08, - "monegasque": 3.16e-08, - "mosasaur": 3.16e-08, - "mugwump": 3.16e-08, - "mulcher": 3.16e-08, - "murshid": 3.16e-08, - "nankin": 3.16e-08, - "navicula": 3.16e-08, - "neurosyphilis": 3.16e-08, - "ninefold": 3.16e-08, - "noncontroversial": 3.16e-08, - "nubbin": 3.16e-08, - "octyl": 3.16e-08, - "odontology": 3.16e-08, - "openable": 3.16e-08, - "optation": 3.16e-08, - "osmose": 3.16e-08, - "ouabain": 3.16e-08, - "outlawry": 3.16e-08, - "outmost": 3.16e-08, - "outpour": 3.16e-08, - "outrightly": 3.16e-08, - "overcorrection": 3.16e-08, - "overextension": 3.16e-08, - "oviposit": 3.16e-08, - "panagia": 3.16e-08, - "pangloss": 3.16e-08, - "panner": 3.16e-08, - "pansexuality": 3.16e-08, - "parenterally": 3.16e-08, - "passionflower": 3.16e-08, - "pentavalent": 3.16e-08, - "petrous": 3.16e-08, - "phalangeal": 3.16e-08, - "phantasmagoric": 3.16e-08, - "pichi": 3.16e-08, - "plumpness": 3.16e-08, - "polyrhythmic": 3.16e-08, - "precordial": 3.16e-08, - "primordia": 3.16e-08, - "profanation": 3.16e-08, - "profunda": 3.16e-08, - "prognosticator": 3.16e-08, - "prolate": 3.16e-08, - "psychoeducational": 3.16e-08, - "pucelle": 3.16e-08, - "puckish": 3.16e-08, - "pulpal": 3.16e-08, - "pyogenic": 3.16e-08, - "pyrethrum": 3.16e-08, - "quenelle": 3.16e-08, - "quincunx": 3.16e-08, - "radiophonic": 3.16e-08, - "rapacity": 3.16e-08, - "recolonization": 3.16e-08, - "reinvestigate": 3.16e-08, - "renumeration": 3.16e-08, - "requital": 3.16e-08, - "reviling": 3.16e-08, - "rhombohedral": 3.16e-08, - "ringless": 3.16e-08, - "risser": 3.16e-08, - "roundy": 3.16e-08, - "ruther": 3.16e-08, - "rutty": 3.16e-08, - "sagitta": 3.16e-08, - "sailmaker": 3.16e-08, - "sanct": 3.16e-08, - "savageness": 3.16e-08, - "scholiast": 3.16e-08, - "scorekeeping": 3.16e-08, - "semipermeable": 3.16e-08, - "sententious": 3.16e-08, - "shanny": 3.16e-08, - "shimei": 3.16e-08, - "shirky": 3.16e-08, - "shrimpy": 3.16e-08, - "shrinky": 3.16e-08, - "siak": 3.16e-08, - "sigmoidal": 3.16e-08, - "simulium": 3.16e-08, - "sinoatrial": 3.16e-08, - "sociably": 3.16e-08, - "somnambulism": 3.16e-08, - "soundlessly": 3.16e-08, - "speckling": 3.16e-08, - "sphingomyelin": 3.16e-08, - "spiriting": 3.16e-08, - "steelyard": 3.16e-08, - "stemple": 3.16e-08, - "streamside": 3.16e-08, - "stright": 3.16e-08, - "stroy": 3.16e-08, - "stum": 3.16e-08, - "styptic": 3.16e-08, - "subclause": 3.16e-08, - "suborn": 3.16e-08, - "subsumption": 3.16e-08, - "sulfhydryl": 3.16e-08, - "superorganism": 3.16e-08, - "supranuclear": 3.16e-08, - "sweatbox": 3.16e-08, - "synchronism": 3.16e-08, - "teicher": 3.16e-08, - "tetrafluoride": 3.16e-08, - "tetravalent": 3.16e-08, - "thermochemistry": 3.16e-08, - "thung": 3.16e-08, - "thyestes": 3.16e-08, - "tippee": 3.16e-08, - "toweling": 3.16e-08, - "trainman": 3.16e-08, - "trigram": 3.16e-08, - "trover": 3.16e-08, - "trucial": 3.16e-08, - "uncoiled": 3.16e-08, - "underrating": 3.16e-08, - "undersurface": 3.16e-08, - "undesirably": 3.16e-08, - "undomesticated": 3.16e-08, - "unevolved": 3.16e-08, - "unfading": 3.16e-08, - "unguent": 3.16e-08, - "unperformed": 3.16e-08, - "unrequested": 3.16e-08, - "unsponsored": 3.16e-08, - "untwisted": 3.16e-08, - "uria": 3.16e-08, - "vair": 3.16e-08, - "varix": 3.16e-08, - "viscid": 3.16e-08, - "volution": 3.16e-08, - "vulgarian": 3.16e-08, - "wainer": 3.16e-08, - "wapentake": 3.16e-08, - "waterberg": 3.16e-08, - "watsonia": 3.16e-08, - "weeder": 3.16e-08, - "whaleboat": 3.16e-08, - "whitethroat": 3.16e-08, - "whoredom": 3.16e-08, - "windrow": 3.16e-08, - "wup": 3.16e-08, - "yutu": 3.16e-08, - "aboriginality": 3.09e-08, - "achar": 3.09e-08, - "acheulean": 3.09e-08, - "acicular": 3.09e-08, - "acropora": 3.09e-08, - "adeptness": 3.09e-08, - "alkoxide": 3.09e-08, - "alterity": 3.09e-08, - "amaurosis": 3.09e-08, - "amendable": 3.09e-08, - "analogically": 3.09e-08, - "anele": 3.09e-08, - "answerer": 3.09e-08, - "appanage": 3.09e-08, - "appropriative": 3.09e-08, - "arachis": 3.09e-08, - "araminta": 3.09e-08, - "aroon": 3.09e-08, - "atavism": 3.09e-08, - "bangash": 3.09e-08, - "befuddle": 3.09e-08, - "beman": 3.09e-08, - "bohemianism": 3.09e-08, - "bolometric": 3.09e-08, - "bordure": 3.09e-08, - "brandenburger": 3.09e-08, - "breastwork": 3.09e-08, - "britisher": 3.09e-08, - "brythonic": 3.09e-08, - "budworm": 3.09e-08, - "butylene": 3.09e-08, - "cappadocian": 3.09e-08, - "carcanet": 3.09e-08, - "cascadian": 3.09e-08, - "catchweight": 3.09e-08, - "cerasus": 3.09e-08, - "channelization": 3.09e-08, - "chelonia": 3.09e-08, - "cholecystokinin": 3.09e-08, - "chukar": 3.09e-08, - "chuvash": 3.09e-08, - "connate": 3.09e-08, - "contrasty": 3.09e-08, - "copeman": 3.09e-08, - "coppiced": 3.09e-08, - "coxa": 3.09e-08, - "creen": 3.09e-08, - "cremaster": 3.09e-08, - "declarant": 3.09e-08, - "decussate": 3.09e-08, - "deflagration": 3.09e-08, - "deflower": 3.09e-08, - "degustation": 3.09e-08, - "delphinus": 3.09e-08, - "demurrage": 3.09e-08, - "denudation": 3.09e-08, - "deuteronomic": 3.09e-08, - "dialkyl": 3.09e-08, - "diastema": 3.09e-08, - "dika": 3.09e-08, - "discordia": 3.09e-08, - "dool": 3.09e-08, - "doornail": 3.09e-08, - "dysgraphia": 3.09e-08, - "echinococcus": 3.09e-08, - "electrokinetic": 3.09e-08, - "elfish": 3.09e-08, - "engulfment": 3.09e-08, - "eppie": 3.09e-08, - "eppy": 3.09e-08, - "equipotential": 3.09e-08, - "erigeron": 3.09e-08, - "escheat": 3.09e-08, - "evolvable": 3.09e-08, - "exclamatory": 3.09e-08, - "extrusive": 3.09e-08, - "farthingale": 3.09e-08, - "fibrinolytic": 3.09e-08, - "filarial": 3.09e-08, - "fluorination": 3.09e-08, - "frontbencher": 3.09e-08, - "gater": 3.09e-08, - "gaura": 3.09e-08, - "gilden": 3.09e-08, - "gloriosa": 3.09e-08, - "goetia": 3.09e-08, - "grasset": 3.09e-08, - "grun": 3.09e-08, - "haik": 3.09e-08, - "hemiparesis": 3.09e-08, - "hevea": 3.09e-08, - "hinter": 3.09e-08, - "hirundo": 3.09e-08, - "hugeness": 3.09e-08, - "hurds": 3.09e-08, - "hydrops": 3.09e-08, - "hypochlorous": 3.09e-08, - "hypopituitarism": 3.09e-08, - "iconostasis": 3.09e-08, - "incorrigibly": 3.09e-08, - "inefficacy": 3.09e-08, - "ineradicable": 3.09e-08, - "insertable": 3.09e-08, - "intellectualize": 3.09e-08, - "interconversion": 3.09e-08, - "interpretability": 3.09e-08, - "irresolute": 3.09e-08, - "ixia": 3.09e-08, - "jingled": 3.09e-08, - "jink": 3.09e-08, - "kabyle": 3.09e-08, - "kedge": 3.09e-08, - "kex": 3.09e-08, - "khotan": 3.09e-08, - "knapweed": 3.09e-08, - "kroo": 3.09e-08, - "kubera": 3.09e-08, - "laryngectomy": 3.09e-08, - "lasciviousness": 3.09e-08, - "leakproof": 3.09e-08, - "letterer": 3.09e-08, - "letup": 3.09e-08, - "logwood": 3.09e-08, - "luminously": 3.09e-08, - "malines": 3.09e-08, - "mankin": 3.09e-08, - "marli": 3.09e-08, - "marylander": 3.09e-08, - "mechanician": 3.09e-08, - "meny": 3.09e-08, - "merak": 3.09e-08, - "mimeo": 3.09e-08, - "minify": 3.09e-08, - "misattribution": 3.09e-08, - "misguidedly": 3.09e-08, - "monocyclic": 3.09e-08, - "mozarabic": 3.09e-08, - "mutualist": 3.09e-08, - "mykiss": 3.09e-08, - "nabby": 3.09e-08, - "naphthol": 3.09e-08, - "nebulosity": 3.09e-08, - "needler": 3.09e-08, - "nepenthe": 3.09e-08, - "nontaxable": 3.09e-08, - "norridgewock": 3.09e-08, - "notarize": 3.09e-08, - "numbly": 3.09e-08, - "odel": 3.09e-08, - "ofter": 3.09e-08, - "orate": 3.09e-08, - "overregulation": 3.09e-08, - "overstress": 3.09e-08, - "paddlefish": 3.09e-08, - "palpebral": 3.09e-08, - "pand": 3.09e-08, - "parapsychological": 3.09e-08, - "parathion": 3.09e-08, - "pargo": 3.09e-08, - "patroon": 3.09e-08, - "peda": 3.09e-08, - "pedunculate": 3.09e-08, - "penalization": 3.09e-08, - "persea": 3.09e-08, - "persuadable": 3.09e-08, - "phagocyte": 3.09e-08, - "phantasmal": 3.09e-08, - "piccalilli": 3.09e-08, - "pipistrelle": 3.09e-08, - "pithily": 3.09e-08, - "plica": 3.09e-08, - "polarizability": 3.09e-08, - "polyuria": 3.09e-08, - "porr": 3.09e-08, - "positiveness": 3.09e-08, - "potto": 3.09e-08, - "pressor": 3.09e-08, - "prophylactically": 3.09e-08, - "proselytization": 3.09e-08, - "proximately": 3.09e-08, - "pylorus": 3.09e-08, - "quester": 3.09e-08, - "quilling": 3.09e-08, - "racemose": 3.09e-08, - "radiopaque": 3.09e-08, - "radiosensitivity": 3.09e-08, - "recti": 3.09e-08, - "refound": 3.09e-08, - "reinsertion": 3.09e-08, - "releaser": 3.09e-08, - "reoperation": 3.09e-08, - "rester": 3.09e-08, - "rewriter": 3.09e-08, - "rhamnus": 3.09e-08, - "rightwards": 3.09e-08, - "rochet": 3.09e-08, - "romanism": 3.09e-08, - "rubiaceae": 3.09e-08, - "ruminal": 3.09e-08, - "sabaoth": 3.09e-08, - "saraf": 3.09e-08, - "satanas": 3.09e-08, - "sawhorse": 3.09e-08, - "saxifraga": 3.09e-08, - "scirpus": 3.09e-08, - "scripturally": 3.09e-08, - "selt": 3.09e-08, - "semantical": 3.09e-08, - "shadowboxing": 3.09e-08, - "siddur": 3.09e-08, - "siol": 3.09e-08, - "skyscape": 3.09e-08, - "slattern": 3.09e-08, - "slive": 3.09e-08, - "songcraft": 3.09e-08, - "sorex": 3.09e-08, - "spatiality": 3.09e-08, - "spectroradiometer": 3.09e-08, - "spreng": 3.09e-08, - "springlike": 3.09e-08, - "sruti": 3.09e-08, - "stentor": 3.09e-08, - "stopcock": 3.09e-08, - "stram": 3.09e-08, - "stridency": 3.09e-08, - "suavely": 3.09e-08, - "subharmonic": 3.09e-08, - "subthalamic": 3.09e-08, - "succinyl": 3.09e-08, - "suku": 3.09e-08, - "sunward": 3.09e-08, - "superdelegate": 3.09e-08, - "tangency": 3.09e-08, - "taraxacum": 3.09e-08, - "tavola": 3.09e-08, - "taylorism": 3.09e-08, - "teacake": 3.09e-08, - "tessera": 3.09e-08, - "tetch": 3.09e-08, - "teuton": 3.09e-08, - "therapeutical": 3.09e-08, - "thermometry": 3.09e-08, - "trailside": 3.09e-08, - "treacly": 3.09e-08, - "trichinopoly": 3.09e-08, - "trichome": 3.09e-08, - "trifoliate": 3.09e-08, - "trishna": 3.09e-08, - "tristeza": 3.09e-08, - "trophoblastic": 3.09e-08, - "unconsecrated": 3.09e-08, - "underskirt": 3.09e-08, - "undistracted": 3.09e-08, - "unicolor": 3.09e-08, - "unrepentantly": 3.09e-08, - "unscriptural": 3.09e-08, - "unsheathe": 3.09e-08, - "unspun": 3.09e-08, - "unstaffed": 3.09e-08, - "upchuck": 3.09e-08, - "urna": 3.09e-08, - "uvea": 3.09e-08, - "vernonia": 3.09e-08, - "westing": 3.09e-08, - "whimbrel": 3.09e-08, - "zambo": 3.09e-08, - "zealousness": 3.09e-08, - "zooxanthellae": 3.09e-08, - "accipiter": 3.02e-08, - "activin": 3.02e-08, - "adroitness": 3.02e-08, - "aesculapius": 3.02e-08, - "amarin": 3.02e-08, - "anatase": 3.02e-08, - "ancestrally": 3.02e-08, - "appeaser": 3.02e-08, - "appointive": 3.02e-08, - "arborvitae": 3.02e-08, - "archaism": 3.02e-08, - "arctos": 3.02e-08, - "arpeggiated": 3.02e-08, - "aspersion": 3.02e-08, - "assenting": 3.02e-08, - "astatine": 3.02e-08, - "ataxic": 3.02e-08, - "atonality": 3.02e-08, - "autogenic": 3.02e-08, - "autoharp": 3.02e-08, - "avoider": 3.02e-08, - "backdown": 3.02e-08, - "backwardation": 3.02e-08, - "baldachin": 3.02e-08, - "balita": 3.02e-08, - "baul": 3.02e-08, - "berengaria": 3.02e-08, - "bilingually": 3.02e-08, - "bindle": 3.02e-08, - "bocking": 3.02e-08, - "booter": 3.02e-08, - "bootless": 3.02e-08, - "borak": 3.02e-08, - "braccio": 3.02e-08, - "brawner": 3.02e-08, - "brigantes": 3.02e-08, - "bushwhacking": 3.02e-08, - "cablegram": 3.02e-08, - "caffeic": 3.02e-08, - "caliburn": 3.02e-08, - "calixtus": 3.02e-08, - "canel": 3.02e-08, - "canonist": 3.02e-08, - "cantle": 3.02e-08, - "capitate": 3.02e-08, - "cark": 3.02e-08, - "catarrhal": 3.02e-08, - "celandine": 3.02e-08, - "ceras": 3.02e-08, - "chirrup": 3.02e-08, - "chordata": 3.02e-08, - "chromaticism": 3.02e-08, - "chronometric": 3.02e-08, - "chrysocolla": 3.02e-08, - "cinquefoil": 3.02e-08, - "claque": 3.02e-08, - "clava": 3.02e-08, - "climbable": 3.02e-08, - "cloy": 3.02e-08, - "cockhead": 3.02e-08, - "cocobolo": 3.02e-08, - "cocotte": 3.02e-08, - "cognize": 3.02e-08, - "colletotrichum": 3.02e-08, - "commonness": 3.02e-08, - "commonsensical": 3.02e-08, - "congest": 3.02e-08, - "corbie": 3.02e-08, - "cresol": 3.02e-08, - "cromlech": 3.02e-08, - "crosshead": 3.02e-08, - "crushable": 3.02e-08, - "cyperaceae": 3.02e-08, - "delver": 3.02e-08, - "depilation": 3.02e-08, - "describer": 3.02e-08, - "deuced": 3.02e-08, - "devilment": 3.02e-08, - "diathermy": 3.02e-08, - "dimethoxy": 3.02e-08, - "dipeptide": 3.02e-08, - "diplomatist": 3.02e-08, - "disinterestedly": 3.02e-08, - "dizygotic": 3.02e-08, - "downspout": 3.02e-08, - "dreaminess": 3.02e-08, - "dubby": 3.02e-08, - "ecotype": 3.02e-08, - "edematous": 3.02e-08, - "effulgence": 3.02e-08, - "epistasis": 3.02e-08, - "equant": 3.02e-08, - "espalier": 3.02e-08, - "ethylenediamine": 3.02e-08, - "euphonic": 3.02e-08, - "exclusivist": 3.02e-08, - "extubation": 3.02e-08, - "falutin": 3.02e-08, - "fireless": 3.02e-08, - "fixator": 3.02e-08, - "foehn": 3.02e-08, - "follis": 3.02e-08, - "fontinalis": 3.02e-08, - "formability": 3.02e-08, - "fractionating": 3.02e-08, - "fuddle": 3.02e-08, - "fusee": 3.02e-08, - "gaj": 3.02e-08, - "gammarus": 3.02e-08, - "ganglionic": 3.02e-08, - "genealogically": 3.02e-08, - "geoduck": 3.02e-08, - "gez": 3.02e-08, - "ghostwrite": 3.02e-08, - "glaciological": 3.02e-08, - "glamorously": 3.02e-08, - "glenohumeral": 3.02e-08, - "gnatcatcher": 3.02e-08, - "goldenseal": 3.02e-08, - "gondi": 3.02e-08, - "grandness": 3.02e-08, - "graphy": 3.02e-08, - "greenshank": 3.02e-08, - "guenon": 3.02e-08, - "guttersnipe": 3.02e-08, - "gyne": 3.02e-08, - "hartebeest": 3.02e-08, - "heartstring": 3.02e-08, - "herma": 3.02e-08, - "herse": 3.02e-08, - "hesperian": 3.02e-08, - "hispid": 3.02e-08, - "humiliatingly": 3.02e-08, - "hyperthyroid": 3.02e-08, - "ilocano": 3.02e-08, - "impenitent": 3.02e-08, - "inanely": 3.02e-08, - "incorruptibility": 3.02e-08, - "incubi": 3.02e-08, - "inexistent": 3.02e-08, - "inimitably": 3.02e-08, - "instable": 3.02e-08, - "insurability": 3.02e-08, - "interfraternity": 3.02e-08, - "intersexual": 3.02e-08, - "iolite": 3.02e-08, - "irrelevantly": 3.02e-08, - "jocelin": 3.02e-08, - "justen": 3.02e-08, - "kantianism": 3.02e-08, - "ketene": 3.02e-08, - "kingbird": 3.02e-08, - "korova": 3.02e-08, - "lacker": 3.02e-08, - "larghetto": 3.02e-08, - "layback": 3.02e-08, - "lindane": 3.02e-08, - "lowliness": 3.02e-08, - "luminiferous": 3.02e-08, - "magh": 3.02e-08, - "mantrap": 3.02e-08, - "masanobu": 3.02e-08, - "matanza": 3.02e-08, - "medicolegal": 3.02e-08, - "mesne": 3.02e-08, - "mesophyll": 3.02e-08, - "mihrab": 3.02e-08, - "millenary": 3.02e-08, - "miry": 3.02e-08, - "misguiding": 3.02e-08, - "monody": 3.02e-08, - "monstera": 3.02e-08, - "moonshiner": 3.02e-08, - "mosser": 3.02e-08, - "motmot": 3.02e-08, - "mutilator": 3.02e-08, - "naphthenic": 3.02e-08, - "nematology": 3.02e-08, - "newar": 3.02e-08, - "nimmer": 3.02e-08, - "nonagon": 3.02e-08, - "nosema": 3.02e-08, - "observationally": 3.02e-08, - "odoriferous": 3.02e-08, - "orage": 3.02e-08, - "orthodontia": 3.02e-08, - "otolith": 3.02e-08, - "outliner": 3.02e-08, - "outremer": 3.02e-08, - "overbid": 3.02e-08, - "overgrow": 3.02e-08, - "paleobotany": 3.02e-08, - "paleogeography": 3.02e-08, - "panentheism": 3.02e-08, - "parimutuel": 3.02e-08, - "parquetry": 3.02e-08, - "pathognomonic": 3.02e-08, - "pennisetum": 3.02e-08, - "pensionary": 3.02e-08, - "peoplehood": 3.02e-08, - "perfecter": 3.02e-08, - "petrosal": 3.02e-08, - "phenotypical": 3.02e-08, - "phrenologist": 3.02e-08, - "piezoelectricity": 3.02e-08, - "piggish": 3.02e-08, - "pilus": 3.02e-08, - "pimiento": 3.02e-08, - "plexiform": 3.02e-08, - "plock": 3.02e-08, - "pochette": 3.02e-08, - "pogge": 3.02e-08, - "pompa": 3.02e-08, - "pondy": 3.02e-08, - "potentiometric": 3.02e-08, - "praesidium": 3.02e-08, - "pratfall": 3.02e-08, - "prehnite": 3.02e-08, - "privative": 3.02e-08, - "proctology": 3.02e-08, - "proleptic": 3.02e-08, - "propene": 3.02e-08, - "propinquity": 3.02e-08, - "prosperously": 3.02e-08, - "protoplasmic": 3.02e-08, - "pullet": 3.02e-08, - "pyrexia": 3.02e-08, - "quadratically": 3.02e-08, - "radiotelegraph": 3.02e-08, - "recuperator": 3.02e-08, - "redtop": 3.02e-08, - "regarder": 3.02e-08, - "resample": 3.02e-08, - "resorcinol": 3.02e-08, - "ridging": 3.02e-08, - "rostra": 3.02e-08, - "roundelay": 3.02e-08, - "rowlet": 3.02e-08, - "rubbishing": 3.02e-08, - "rushy": 3.02e-08, - "russophile": 3.02e-08, - "ryen": 3.02e-08, - "sapience": 3.02e-08, - "satisfiable": 3.02e-08, - "satrapy": 3.02e-08, - "scission": 3.02e-08, - "scops": 3.02e-08, - "scrag": 3.02e-08, - "sheering": 3.02e-08, - "silvicultural": 3.02e-08, - "siphuncle": 3.02e-08, - "slangy": 3.02e-08, - "solfeggio": 3.02e-08, - "splendiferous": 3.02e-08, - "squidge": 3.02e-08, - "struvite": 3.02e-08, - "subhead": 3.02e-08, - "subpolar": 3.02e-08, - "swordswoman": 3.02e-08, - "testily": 3.02e-08, - "tetherball": 3.02e-08, - "theodosian": 3.02e-08, - "tinner": 3.02e-08, - "tortuously": 3.02e-08, - "tractarian": 3.02e-08, - "transconductance": 3.02e-08, - "triplane": 3.02e-08, - "turnstone": 3.02e-08, - "uncomplimentary": 3.02e-08, - "unconcealed": 3.02e-08, - "unenjoyable": 3.02e-08, - "unexpended": 3.02e-08, - "unhealthiness": 3.02e-08, - "unreciprocated": 3.02e-08, - "unshaded": 3.02e-08, - "unstitched": 3.02e-08, - "valmy": 3.02e-08, - "varicocele": 3.02e-08, - "vermis": 3.02e-08, - "volumetrically": 3.02e-08, - "vulpine": 3.02e-08, - "wabe": 3.02e-08, - "waisting": 3.02e-08, - "watchout": 3.02e-08, - "winglet": 3.02e-08, - "wode": 3.02e-08, - "worthiest": 3.02e-08, - "wur": 3.02e-08, - "xeroderma": 3.02e-08, - "yez": 3.02e-08, - "zestful": 3.02e-08, - "afeard": 2.95e-08, - "agranulocytosis": 2.95e-08, - "ailanthus": 2.95e-08, - "alterable": 2.95e-08, - "amnestic": 2.95e-08, - "amylin": 2.95e-08, - "angouleme": 2.95e-08, - "anice": 2.95e-08, - "anolis": 2.95e-08, - "antiparasitic": 2.95e-08, - "arnaut": 2.95e-08, - "augean": 2.95e-08, - "auh": 2.95e-08, - "aviso": 2.95e-08, - "baconian": 2.95e-08, - "bilobed": 2.95e-08, - "bitartrate": 2.95e-08, - "bloater": 2.95e-08, - "boiko": 2.95e-08, - "bombsight": 2.95e-08, - "bromate": 2.95e-08, - "buddh": 2.95e-08, - "budgerigar": 2.95e-08, - "camion": 2.95e-08, - "cannoned": 2.95e-08, - "cardium": 2.95e-08, - "carian": 2.95e-08, - "cataloguer": 2.95e-08, - "cetyl": 2.95e-08, - "chamar": 2.95e-08, - "channeler": 2.95e-08, - "channer": 2.95e-08, - "chapt": 2.95e-08, - "cheeriness": 2.95e-08, - "chitter": 2.95e-08, - "chondrocyte": 2.95e-08, - "claimer": 2.95e-08, - "claribel": 2.95e-08, - "clavus": 2.95e-08, - "cluniac": 2.95e-08, - "coarctation": 2.95e-08, - "cobber": 2.95e-08, - "collectivistic": 2.95e-08, - "commensurable": 2.95e-08, - "communality": 2.95e-08, - "conduce": 2.95e-08, - "confirmable": 2.95e-08, - "connectable": 2.95e-08, - "consoler": 2.95e-08, - "consummately": 2.95e-08, - "containable": 2.95e-08, - "contentiously": 2.95e-08, - "contingently": 2.95e-08, - "contrapositive": 2.95e-08, - "coquettishly": 2.95e-08, - "costata": 2.95e-08, - "counterpoise": 2.95e-08, - "crookedly": 2.95e-08, - "crosshatch": 2.95e-08, - "cryptologist": 2.95e-08, - "dalbergia": 2.95e-08, - "decubitus": 2.95e-08, - "defeasible": 2.95e-08, - "delocalization": 2.95e-08, - "derange": 2.95e-08, - "derivate": 2.95e-08, - "desideratum": 2.95e-08, - "despond": 2.95e-08, - "desquamation": 2.95e-08, - "diencephalon": 2.95e-08, - "dight": 2.95e-08, - "diospyros": 2.95e-08, - "discussant": 2.95e-08, - "disgustedly": 2.95e-08, - "dishpan": 2.95e-08, - "disinvite": 2.95e-08, - "dissector": 2.95e-08, - "donum": 2.95e-08, - "drear": 2.95e-08, - "drolly": 2.95e-08, - "earless": 2.95e-08, - "economizer": 2.95e-08, - "electrocardiographic": 2.95e-08, - "electrothermal": 2.95e-08, - "ellagic": 2.95e-08, - "embryonal": 2.95e-08, - "envenomation": 2.95e-08, - "epiblast": 2.95e-08, - "exaction": 2.95e-08, - "excrescence": 2.95e-08, - "exogamous": 2.95e-08, - "eyeshield": 2.95e-08, - "facultatively": 2.95e-08, - "fenestrated": 2.95e-08, - "ferrarese": 2.95e-08, - "flatting": 2.95e-08, - "flatus": 2.95e-08, - "floridan": 2.95e-08, - "formicidae": 2.95e-08, - "formlessness": 2.95e-08, - "fumaric": 2.95e-08, - "gasbag": 2.95e-08, - "geomancer": 2.95e-08, - "geriatrician": 2.95e-08, - "gleek": 2.95e-08, - "glossa": 2.95e-08, - "groschen": 2.95e-08, - "groundwood": 2.95e-08, - "gurry": 2.95e-08, - "hapu": 2.95e-08, - "hardanger": 2.95e-08, - "hatband": 2.95e-08, - "hazily": 2.95e-08, - "hinoki": 2.95e-08, - "humectant": 2.95e-08, - "humeri": 2.95e-08, - "husked": 2.95e-08, - "hydatid": 2.95e-08, - "hydrometeorological": 2.95e-08, - "hypoactive": 2.95e-08, - "ichthyologist": 2.95e-08, - "ictus": 2.95e-08, - "idolization": 2.95e-08, - "immutably": 2.95e-08, - "incautiously": 2.95e-08, - "indispensability": 2.95e-08, - "infeed": 2.95e-08, - "infernally": 2.95e-08, - "intergranular": 2.95e-08, - "interlining": 2.95e-08, - "inviscid": 2.95e-08, - "isometrically": 2.95e-08, - "jacketing": 2.95e-08, - "kinetoscope": 2.95e-08, - "kolinsky": 2.95e-08, - "koso": 2.95e-08, - "krems": 2.95e-08, - "lalang": 2.95e-08, - "lation": 2.95e-08, - "lepidopteran": 2.95e-08, - "lidless": 2.95e-08, - "locksmithing": 2.95e-08, - "loveman": 2.95e-08, - "mahonia": 2.95e-08, - "malefactor": 2.95e-08, - "mandelic": 2.95e-08, - "mangue": 2.95e-08, - "manque": 2.95e-08, - "mantlet": 2.95e-08, - "melodia": 2.95e-08, - "metasedimentary": 2.95e-08, - "metatarsus": 2.95e-08, - "microsphere": 2.95e-08, - "midheaven": 2.95e-08, - "milpa": 2.95e-08, - "mindel": 2.95e-08, - "mirana": 2.95e-08, - "mirthless": 2.95e-08, - "misrepresentative": 2.95e-08, - "montilla": 2.95e-08, - "mool": 2.95e-08, - "moxa": 2.95e-08, - "nauset": 2.95e-08, - "ngaio": 2.95e-08, - "nondegenerate": 2.95e-08, - "nonflammable": 2.95e-08, - "obliquus": 2.95e-08, - "observably": 2.95e-08, - "oenology": 2.95e-08, - "ornithopter": 2.95e-08, - "orthophosphate": 2.95e-08, - "orthosis": 2.95e-08, - "outcrossing": 2.95e-08, - "overbalance": 2.95e-08, - "palatalization": 2.95e-08, - "paraxial": 2.95e-08, - "pasteboard": 2.95e-08, - "pedagogics": 2.95e-08, - "pemphigoid": 2.95e-08, - "perambulation": 2.95e-08, - "petrarchan": 2.95e-08, - "phalloplasty": 2.95e-08, - "philistinism": 2.95e-08, - "philomela": 2.95e-08, - "phoca": 2.95e-08, - "physicalist": 2.95e-08, - "plowshare": 2.95e-08, - "ponderously": 2.95e-08, - "possessively": 2.95e-08, - "preapproval": 2.95e-08, - "profanely": 2.95e-08, - "protoconch": 2.95e-08, - "pryse": 2.95e-08, - "puppis": 2.95e-08, - "quader": 2.95e-08, - "rappe": 2.95e-08, - "ravishingly": 2.95e-08, - "rearrest": 2.95e-08, - "rectorship": 2.95e-08, - "repellency": 2.95e-08, - "resonantly": 2.95e-08, - "reveler": 2.95e-08, - "reverso": 2.95e-08, - "revolute": 2.95e-08, - "rhaetian": 2.95e-08, - "rhomboidal": 2.95e-08, - "robinia": 2.95e-08, - "saccharide": 2.95e-08, - "scaleless": 2.95e-08, - "scudo": 2.95e-08, - "secretin": 2.95e-08, - "secularize": 2.95e-08, - "sego": 2.95e-08, - "sensuousness": 2.95e-08, - "sentential": 2.95e-08, - "sesquiterpene": 2.95e-08, - "shikar": 2.95e-08, - "shorea": 2.95e-08, - "silvius": 2.95e-08, - "sinusoid": 2.95e-08, - "slicking": 2.95e-08, - "slumberland": 2.95e-08, - "smilodon": 2.95e-08, - "snakeroot": 2.95e-08, - "sociotechnical": 2.95e-08, - "springhouse": 2.95e-08, - "sprong": 2.95e-08, - "steersman": 2.95e-08, - "steeve": 2.95e-08, - "sybaritic": 2.95e-08, - "tangibility": 2.95e-08, - "tarai": 2.95e-08, - "terribleness": 2.95e-08, - "tetramethyl": 2.95e-08, - "thulium": 2.95e-08, - "thurl": 2.95e-08, - "thyroglobulin": 2.95e-08, - "tonkawa": 2.95e-08, - "topia": 2.95e-08, - "tottie": 2.95e-08, - "tousle": 2.95e-08, - "trimeric": 2.95e-08, - "trussing": 2.95e-08, - "ullage": 2.95e-08, - "ultraviolent": 2.95e-08, - "undereye": 2.95e-08, - "ungraceful": 2.95e-08, - "unilingual": 2.95e-08, - "unlocated": 2.95e-08, - "unmated": 2.95e-08, - "unplowed": 2.95e-08, - "unredeemable": 2.95e-08, - "uranian": 2.95e-08, - "valkyr": 2.95e-08, - "veery": 2.95e-08, - "vestryman": 2.95e-08, - "whereafter": 2.95e-08, - "wickerwork": 2.95e-08, - "yowie": 2.95e-08, - "zonta": 2.95e-08, - "zostera": 2.95e-08, - "aboral": 2.88e-08, - "accordant": 2.88e-08, - "achates": 2.88e-08, - "actioner": 2.88e-08, - "adventurously": 2.88e-08, - "aglaia": 2.88e-08, - "agrarianism": 2.88e-08, - "aguacate": 2.88e-08, - "ahom": 2.88e-08, - "albigensian": 2.88e-08, - "alstroemeria": 2.88e-08, - "amenia": 2.88e-08, - "amic": 2.88e-08, - "antegrade": 2.88e-08, - "anthropomorphize": 2.88e-08, - "antitheft": 2.88e-08, - "apostatize": 2.88e-08, - "appreciator": 2.88e-08, - "arborescent": 2.88e-08, - "artemas": 2.88e-08, - "assman": 2.88e-08, - "astrologically": 2.88e-08, - "atlatl": 2.88e-08, - "atomicity": 2.88e-08, - "automatization": 2.88e-08, - "axiology": 2.88e-08, - "backchat": 2.88e-08, - "bashaw": 2.88e-08, - "bathyal": 2.88e-08, - "bedene": 2.88e-08, - "berberian": 2.88e-08, - "bestower": 2.88e-08, - "bimetallism": 2.88e-08, - "bizen": 2.88e-08, - "bogomil": 2.88e-08, - "bosomy": 2.88e-08, - "boswellia": 2.88e-08, - "bouse": 2.88e-08, - "bowlful": 2.88e-08, - "breadbox": 2.88e-08, - "breadmaker": 2.88e-08, - "bronchopulmonary": 2.88e-08, - "burbot": 2.88e-08, - "cabinetmaking": 2.88e-08, - "cadetship": 2.88e-08, - "camb": 2.88e-08, - "camponotus": 2.88e-08, - "cebus": 1.62e-08, - "centerless": 2.88e-08, - "cephalopoda": 2.88e-08, - "cestus": 2.88e-08, - "cheilitis": 2.88e-08, - "chera": 2.88e-08, - "chlamys": 2.88e-08, - "cimex": 2.88e-08, - "clouted": 2.88e-08, - "complected": 2.88e-08, - "conspectus": 2.88e-08, - "coregonus": 2.88e-08, - "coronae": 2.88e-08, - "coronagraph": 2.88e-08, - "corvina": 2.88e-08, - "cotuit": 2.88e-08, - "couth": 2.88e-08, - "coverture": 2.88e-08, - "cowal": 2.88e-08, - "cryptorchidism": 2.88e-08, - "cyclopropane": 2.88e-08, - "cynara": 2.88e-08, - "daggy": 2.88e-08, - "debus": 2.88e-08, - "dehiscent": 2.88e-08, - "demob": 2.88e-08, - "demodex": 2.88e-08, - "deregister": 2.88e-08, - "divertor": 2.88e-08, - "documental": 2.88e-08, - "dosis": 2.88e-08, - "dowser": 2.88e-08, - "drachmae": 2.88e-08, - "ecchymosis": 2.88e-08, - "edomite": 2.88e-08, - "effluvia": 2.88e-08, - "electrodeposition": 2.88e-08, - "electropositive": 2.88e-08, - "electrotype": 2.88e-08, - "enam": 2.88e-08, - "enchantingly": 2.88e-08, - "endophyte": 2.88e-08, - "ennead": 2.88e-08, - "enviably": 2.88e-08, - "europeanism": 2.88e-08, - "evidentially": 2.88e-08, - "exeunt": 2.88e-08, - "extrajudicially": 2.88e-08, - "extravert": 2.88e-08, - "faddle": 2.88e-08, - "fady": 2.88e-08, - "fastidiousness": 2.88e-08, - "feminin": 2.88e-08, - "fimbriated": 2.88e-08, - "fitly": 2.88e-08, - "flesher": 2.88e-08, - "footpad": 2.88e-08, - "fumigant": 2.88e-08, - "furfural": 2.88e-08, - "galop": 2.88e-08, - "gamester": 2.88e-08, - "gastroscopy": 2.88e-08, - "gaudily": 2.88e-08, - "greathead": 2.88e-08, - "griever": 2.88e-08, - "grippe": 2.88e-08, - "guz": 2.88e-08, - "hagiographical": 2.88e-08, - "haisla": 2.88e-08, - "hardhead": 2.88e-08, - "haulier": 2.88e-08, - "havanese": 2.88e-08, - "heartful": 2.88e-08, - "heartiness": 2.88e-08, - "heathenism": 2.88e-08, - "hegelianism": 2.88e-08, - "heliograph": 2.88e-08, - "hereupon": 2.88e-08, - "hobbyhorse": 2.88e-08, - "huke": 2.88e-08, - "huldah": 2.88e-08, - "hurrian": 2.88e-08, - "hypergamy": 2.88e-08, - "icaria": 2.88e-08, - "indeterminism": 2.88e-08, - "inexpressibly": 2.88e-08, - "ingathering": 2.88e-08, - "inia": 2.88e-08, - "interpellation": 2.88e-08, - "involucre": 2.88e-08, - "isba": 2.88e-08, - "jocularity": 2.88e-08, - "jowly": 2.88e-08, - "judex": 2.88e-08, - "kalian": 2.88e-08, - "keena": 2.88e-08, - "kench": 2.88e-08, - "labella": 2.88e-08, - "landlubber": 2.88e-08, - "lanner": 2.88e-08, - "layette": 2.88e-08, - "leatherjacket": 2.88e-08, - "lehua": 2.88e-08, - "ligure": 2.88e-08, - "lutra": 2.88e-08, - "malaprop": 2.88e-08, - "maniple": 2.88e-08, - "maranhao": 2.88e-08, - "marquesan": 2.88e-08, - "marree": 2.88e-08, - "masculinist": 2.88e-08, - "matagalpa": 2.88e-08, - "matka": 2.88e-08, - "methacrylic": 2.88e-08, - "micturition": 2.88e-08, - "montagnais": 2.88e-08, - "motiveless": 2.88e-08, - "muchly": 2.88e-08, - "mummify": 2.88e-08, - "myrica": 2.88e-08, - "neeld": 2.88e-08, - "nereis": 2.88e-08, - "neuropathologist": 2.88e-08, - "neuroptera": 2.88e-08, - "newsworthiness": 2.88e-08, - "nonblack": 2.88e-08, - "nonexempt": 2.88e-08, - "nonsensically": 2.88e-08, - "nothofagus": 2.88e-08, - "noumenon": 2.88e-08, - "oceanian": 2.88e-08, - "octuple": 2.88e-08, - "oenomaus": 2.88e-08, - "onychomycosis": 2.88e-08, - "oscan": 2.88e-08, - "outwood": 2.88e-08, - "ouzel": 2.88e-08, - "overdetermined": 2.88e-08, - "overtax": 2.88e-08, - "oxfordian": 2.88e-08, - "paleoanthropology": 2.88e-08, - "pallu": 2.88e-08, - "panhead": 2.88e-08, - "peignoir": 2.88e-08, - "periorbital": 2.88e-08, - "pernickety": 2.88e-08, - "phycology": 2.88e-08, - "pignon": 2.88e-08, - "pillager": 2.88e-08, - "pimenta": 2.88e-08, - "plantaris": 2.88e-08, - "podocarpus": 2.88e-08, - "propionibacterium": 2.88e-08, - "proration": 2.88e-08, - "prosecutrix": 2.88e-08, - "quadrat": 2.88e-08, - "quiles": 2.88e-08, - "quinquennial": 2.88e-08, - "quipu": 2.88e-08, - "reface": 2.88e-08, - "reforge": 2.88e-08, - "relook": 2.88e-08, - "remanence": 2.88e-08, - "remineralization": 2.88e-08, - "renumber": 2.88e-08, - "reselection": 2.88e-08, - "riata": 2.88e-08, - "sacramentary": 2.88e-08, - "sankhya": 2.88e-08, - "sawney": 2.88e-08, - "saxifrage": 2.88e-08, - "scansion": 2.88e-08, - "scholastically": 2.88e-08, - "screamy": 2.88e-08, - "semiconscious": 2.88e-08, - "serger": 2.88e-08, - "shamba": 2.88e-08, - "shippy": 2.88e-08, - "silvering": 2.88e-08, - "slote": 2.88e-08, - "snork": 2.88e-08, - "sophistic": 2.88e-08, - "specky": 2.88e-08, - "spectatorship": 2.88e-08, - "spiffed": 2.88e-08, - "splosh": 2.88e-08, - "spooler": 2.88e-08, - "staller": 2.88e-08, - "stope": 2.88e-08, - "stratigraphical": 2.88e-08, - "struggler": 2.88e-08, - "stupefaction": 2.88e-08, - "subassembly": 2.88e-08, - "subequal": 2.88e-08, - "submedian": 2.88e-08, - "subspecific": 2.88e-08, - "suffuse": 2.88e-08, - "superstitiously": 2.88e-08, - "supervenience": 2.88e-08, - "surd": 2.88e-08, - "swimmable": 2.88e-08, - "sybarite": 2.88e-08, - "tasse": 2.88e-08, - "tenter": 2.88e-08, - "tessellate": 2.88e-08, - "theca": 2.88e-08, - "thistledown": 2.88e-08, - "tickly": 2.88e-08, - "timesaving": 2.88e-08, - "tind": 2.88e-08, - "tishri": 2.88e-08, - "tosk": 2.88e-08, - "trichogramma": 2.88e-08, - "tummel": 2.88e-08, - "tuque": 2.88e-08, - "tynwald": 2.88e-08, - "typic": 2.88e-08, - "unactivated": 2.88e-08, - "unanchored": 2.88e-08, - "unblended": 2.88e-08, - "unclogged": 2.88e-08, - "uncoil": 2.88e-08, - "undemonstrative": 2.88e-08, - "unfound": 2.88e-08, - "unlocker": 2.88e-08, - "unloveable": 2.88e-08, - "unstimulated": 2.88e-08, - "unventilated": 2.88e-08, - "upcast": 2.88e-08, - "vaccinator": 2.88e-08, - "vinculum": 2.88e-08, - "vindex": 2.88e-08, - "viremia": 2.88e-08, - "vitelline": 2.88e-08, - "volubly": 2.88e-08, - "whereabout": 2.88e-08, - "whipsaw": 2.88e-08, - "winningly": 2.88e-08, - "yoursel": 2.88e-08, - "yuchi": 2.88e-08, - "ablate": 2.82e-08, - "acanthosis": 2.82e-08, - "adulatory": 2.82e-08, - "adventism": 2.82e-08, - "agonal": 2.82e-08, - "akha": 2.82e-08, - "akra": 2.82e-08, - "alces": 2.82e-08, - "amazonite": 2.82e-08, - "androgyne": 2.82e-08, - "antepenultimate": 2.82e-08, - "aphthous": 2.82e-08, - "appetitive": 2.82e-08, - "arsenical": 2.82e-08, - "artfulness": 2.82e-08, - "assumptive": 2.82e-08, - "auricula": 2.82e-08, - "autolysis": 2.82e-08, - "basely": 2.82e-08, - "baun": 2.82e-08, - "bedder": 2.82e-08, - "bhil": 2.82e-08, - "biconvex": 2.82e-08, - "bilin": 2.57e-08, - "bimolecular": 2.82e-08, - "bioplastic": 2.82e-08, - "boosterism": 2.82e-08, - "bosher": 2.82e-08, - "bracingly": 2.82e-08, - "breeched": 2.82e-08, - "brei": 2.82e-08, - "bryozoa": 2.82e-08, - "buddleia": 2.82e-08, - "butterfish": 2.82e-08, - "calamansi": 2.82e-08, - "calcify": 2.82e-08, - "calluna": 2.82e-08, - "carbonari": 2.82e-08, - "catafalque": 2.82e-08, - "catling": 2.82e-08, - "cauline": 2.82e-08, - "cimbri": 2.82e-08, - "cladosporium": 2.82e-08, - "claimable": 2.82e-08, - "climacteric": 2.82e-08, - "coagulase": 2.82e-08, - "collectability": 2.82e-08, - "commissionaire": 2.82e-08, - "commutable": 2.82e-08, - "contractible": 2.82e-08, - "contrariness": 2.82e-08, - "convolute": 2.82e-08, - "copen": 2.82e-08, - "coque": 2.82e-08, - "cornelian": 2.82e-08, - "creese": 2.82e-08, - "cuadra": 2.82e-08, - "cumbre": 2.82e-08, - "cuprous": 2.82e-08, - "debark": 2.82e-08, - "deckle": 2.82e-08, - "decorously": 2.82e-08, - "denominate": 2.82e-08, - "dextrin": 2.82e-08, - "dicalcium": 2.82e-08, - "directress": 2.82e-08, - "disorganize": 2.82e-08, - "dissuasive": 2.82e-08, - "distend": 2.82e-08, - "distractibility": 2.82e-08, - "diverticulosis": 2.82e-08, - "dominie": 2.82e-08, - "doodad": 2.82e-08, - "dulse": 2.82e-08, - "dynast": 2.82e-08, - "edgeless": 2.82e-08, - "einkorn": 2.82e-08, - "einsteinian": 2.82e-08, - "electrosurgical": 2.82e-08, - "eliminative": 2.82e-08, - "elute": 2.82e-08, - "embraceable": 2.82e-08, - "endometritis": 2.82e-08, - "escadrille": 2.82e-08, - "esparto": 2.82e-08, - "faeroe": 2.82e-08, - "falx": 2.82e-08, - "felidae": 2.82e-08, - "filamentary": 2.82e-08, - "fimbria": 2.82e-08, - "flageolet": 2.82e-08, - "flayer": 2.82e-08, - "fluked": 2.82e-08, - "flummery": 2.82e-08, - "formulator": 2.82e-08, - "gadwall": 2.82e-08, - "galusha": 2.82e-08, - "gambusia": 2.82e-08, - "giardiasis": 2.82e-08, - "glomus": 2.82e-08, - "glossopharyngeal": 2.82e-08, - "governable": 2.82e-08, - "graphitization": 2.82e-08, - "haworthia": 2.82e-08, - "heedlessly": 2.82e-08, - "heliconia": 2.82e-08, - "helladic": 2.82e-08, - "hemostat": 2.82e-08, - "hereabout": 2.82e-08, - "hexyl": 2.82e-08, - "histochemistry": 2.82e-08, - "honeywood": 2.82e-08, - "husting": 2.82e-08, - "hyperkeratosis": 2.82e-08, - "immoderately": 2.82e-08, - "incisiveness": 2.82e-08, - "indology": 2.82e-08, - "infundibulum": 2.82e-08, - "intellectuality": 2.82e-08, - "interuniversity": 2.82e-08, - "intervale": 2.82e-08, - "intrusively": 2.82e-08, - "invoker": 2.82e-08, - "iodate": 2.82e-08, - "jambos": 2.82e-08, - "kabuli": 2.82e-08, - "kerplunk": 2.82e-08, - "knyaz": 2.82e-08, - "laibach": 2.82e-08, - "lairy": 2.82e-08, - "lamby": 2.82e-08, - "laurentide": 2.82e-08, - "lazybones": 2.82e-08, - "learnership": 2.82e-08, - "leastways": 2.82e-08, - "leathercraft": 2.82e-08, - "leiomyosarcoma": 2.82e-08, - "lenis": 1.51e-08, - "lepomis": 2.82e-08, - "lifelessly": 2.82e-08, - "litterateur": 2.82e-08, - "liyuan": 2.82e-08, - "loftiness": 2.82e-08, - "loganberry": 2.82e-08, - "lowan": 2.82e-08, - "lowboy": 2.82e-08, - "lupercalia": 2.82e-08, - "mahant": 2.82e-08, - "malonyl": 2.82e-08, - "merse": 2.82e-08, - "meteoritic": 2.82e-08, - "micronucleus": 2.82e-08, - "microscopist": 2.82e-08, - "mischievousness": 2.82e-08, - "moler": 2.82e-08, - "moop": 2.82e-08, - "mudhole": 2.82e-08, - "mulley": 2.82e-08, - "multicentric": 2.82e-08, - "murrain": 2.82e-08, - "namaqua": 2.82e-08, - "nazirite": 2.82e-08, - "neuralgic": 2.82e-08, - "neuropathological": 2.82e-08, - "nightcaps": 2.82e-08, - "niter": 2.82e-08, - "nymphet": 2.82e-08, - "okrug": 2.82e-08, - "organdy": 2.82e-08, - "osmunda": 2.82e-08, - "overact": 2.82e-08, - "overexpress": 2.82e-08, - "overprice": 2.82e-08, - "paduan": 2.82e-08, - "parasitically": 2.82e-08, - "parch": 2.82e-08, - "pardonable": 2.82e-08, - "parvis": 2.82e-08, - "pastille": 2.82e-08, - "patchily": 2.82e-08, - "pean": 2.82e-08, - "peneplain": 2.82e-08, - "permute": 2.82e-08, - "photogrammetric": 2.82e-08, - "pinkness": 2.82e-08, - "plangent": 2.82e-08, - "plastically": 2.82e-08, - "pleroma": 2.82e-08, - "pokeweed": 2.82e-08, - "postdate": 2.82e-08, - "potong": 2.82e-08, - "preciseness": 2.82e-08, - "prescript": 2.82e-08, - "prevision": 2.82e-08, - "primaried": 2.82e-08, - "prolyl": 2.82e-08, - "proofer": 2.82e-08, - "protist": 2.82e-08, - "pyroelectric": 2.82e-08, - "quadripartite": 2.82e-08, - "quiapo": 2.82e-08, - "radiochemical": 2.82e-08, - "reconvert": 2.82e-08, - "redound": 2.82e-08, - "residentiary": 2.82e-08, - "residuum": 2.82e-08, - "revisional": 2.82e-08, - "roadman": 2.82e-08, - "roding": 2.82e-08, - "rusticity": 2.82e-08, - "saleroom": 2.82e-08, - "sasan": 2.82e-08, - "screamingly": 2.82e-08, - "seasonably": 2.82e-08, - "secessionism": 2.82e-08, - "sedat": 2.82e-08, - "sexto": 2.82e-08, - "shatteringly": 2.82e-08, - "sheepherder": 2.82e-08, - "shier": 2.82e-08, - "shininess": 2.82e-08, - "sirene": 2.82e-08, - "skel": 2.82e-08, - "skep": 2.82e-08, - "slainte": 2.82e-08, - "smacker": 2.82e-08, - "socinian": 2.82e-08, - "soldan": 2.82e-08, - "soss": 2.82e-08, - "spikelet": 2.82e-08, - "squareness": 2.82e-08, - "stelar": 2.82e-08, - "stereogram": 2.82e-08, - "sternocleidomastoid": 2.82e-08, - "stoss": 2.82e-08, - "stylishness": 2.82e-08, - "stylize": 2.82e-08, - "submental": 2.82e-08, - "sumptuousness": 2.82e-08, - "superabundant": 2.82e-08, - "superhumanly": 2.82e-08, - "supraclavicular": 2.82e-08, - "synchromesh": 2.82e-08, - "talisay": 2.82e-08, - "tappa": 2.82e-08, - "tartlet": 2.82e-08, - "tastelessness": 2.82e-08, - "taun": 2.82e-08, - "telt": 2.82e-08, - "tetanic": 2.82e-08, - "tetrameter": 2.82e-08, - "thersites": 2.82e-08, - "theurgy": 2.82e-08, - "thuggee": 2.82e-08, - "tiding": 2.82e-08, - "titbit": 2.82e-08, - "tobiah": 2.82e-08, - "totara": 2.82e-08, - "tournay": 2.82e-08, - "transalpine": 2.82e-08, - "transversus": 2.82e-08, - "trenchantly": 2.82e-08, - "tricarboxylic": 2.82e-08, - "triethylamine": 2.82e-08, - "triphenylphosphine": 2.82e-08, - "trisodium": 2.82e-08, - "trone": 2.82e-08, - "trutta": 2.82e-08, - "tryp": 2.82e-08, - "tumorous": 2.82e-08, - "typographically": 2.82e-08, - "unattested": 2.82e-08, - "unbreathable": 2.82e-08, - "underdown": 2.82e-08, - "unexpectedness": 2.82e-08, - "unfroze": 2.82e-08, - "uninflected": 2.82e-08, - "uninvestigated": 2.82e-08, - "unitedly": 2.82e-08, - "unmusical": 2.82e-08, - "unnamable": 2.82e-08, - "unpinned": 2.82e-08, - "unpolarized": 2.82e-08, - "unsheathing": 2.82e-08, - "unsworn": 2.82e-08, - "untaken": 2.82e-08, - "unwired": 2.82e-08, - "upbraid": 2.82e-08, - "vallum": 2.82e-08, - "venite": 2.82e-08, - "verticillium": 2.82e-08, - "victual": 2.82e-08, - "volatilization": 2.82e-08, - "vomer": 2.82e-08, - "waviness": 2.82e-08, - "weldability": 2.82e-08, - "wenonah": 2.82e-08, - "windflower": 2.82e-08, - "womanism": 2.82e-08, - "wonna": 2.82e-08, - "xiphoid": 2.82e-08, - "xylan": 2.82e-08, - "aculeata": 2.75e-08, - "aedile": 2.75e-08, - "allworthy": 2.75e-08, - "alman": 2.75e-08, - "alveolus": 2.75e-08, - "ammer": 2.75e-08, - "anabaptism": 2.75e-08, - "anthurium": 2.75e-08, - "anticlinal": 2.75e-08, - "apelike": 2.75e-08, - "apotropaic": 2.75e-08, - "aralia": 2.75e-08, - "arthrodesis": 2.75e-08, - "ashling": 2.75e-08, - "asterias": 2.75e-08, - "autobiographer": 2.75e-08, - "backlands": 2.75e-08, - "bantay": 2.75e-08, - "bater": 2.75e-08, - "bauch": 2.75e-08, - "beanery": 2.75e-08, - "bearding": 2.75e-08, - "bellicosity": 2.75e-08, - "besan": 2.75e-08, - "bhut": 2.75e-08, - "boliviano": 2.75e-08, - "brail": 2.75e-08, - "brehon": 2.75e-08, - "brickmaking": 2.75e-08, - "brocaded": 2.75e-08, - "bronchoalveolar": 2.75e-08, - "burgee": 2.75e-08, - "bushwhack": 2.75e-08, - "cardroom": 2.75e-08, - "caseinate": 2.75e-08, - "caudally": 2.75e-08, - "cheesemonger": 2.75e-08, - "chiasmus": 2.75e-08, - "chinaware": 2.75e-08, - "chiroptera": 2.75e-08, - "chrysomelidae": 2.75e-08, - "chugger": 2.75e-08, - "cigarillo": 2.75e-08, - "cinnamomum": 2.75e-08, - "circumambulation": 2.75e-08, - "circumferentially": 2.75e-08, - "cirsium": 2.75e-08, - "clavicular": 2.75e-08, - "cloyingly": 2.75e-08, - "coattail": 2.75e-08, - "cockscomb": 2.75e-08, - "coconspirator": 2.75e-08, - "condylar": 2.75e-08, - "contemporaneity": 2.75e-08, - "coving": 2.75e-08, - "creedal": 2.75e-08, - "crosspoint": 2.75e-08, - "cuboidal": 2.75e-08, - "cuckoldry": 2.75e-08, - "curculio": 2.75e-08, - "curette": 2.75e-08, - "daur": 2.75e-08, - "decidual": 2.75e-08, - "delphin": 2.75e-08, - "denseness": 2.75e-08, - "deprecatingly": 2.75e-08, - "diglossia": 2.75e-08, - "dilettanti": 2.75e-08, - "dissuasion": 2.75e-08, - "distressful": 2.75e-08, - "disyllabic": 2.75e-08, - "dixiecrat": 2.75e-08, - "dollmaker": 2.75e-08, - "dorine": 2.75e-08, - "dunciad": 2.75e-08, - "dunderhead": 2.75e-08, - "effectuation": 2.75e-08, - "entrepot": 2.75e-08, - "ephah": 2.75e-08, - "epilation": 2.75e-08, - "equalist": 2.75e-08, - "excluder": 2.75e-08, - "expiatory": 2.75e-08, - "ferrocyanide": 2.75e-08, - "feudalist": 2.75e-08, - "foreseeability": 2.75e-08, - "gatch": 2.75e-08, - "gavia": 2.75e-08, - "genal": 2.75e-08, - "gesticulation": 2.75e-08, - "gettable": 2.75e-08, - "ghostlike": 2.75e-08, - "goldcrest": 2.75e-08, - "greasiness": 2.75e-08, - "gunrunner": 2.75e-08, - "gyps": 2.75e-08, - "haab": 2.75e-08, - "hagger": 2.75e-08, - "hako": 2.75e-08, - "halogenation": 2.75e-08, - "halteres": 2.75e-08, - "harpooner": 2.75e-08, - "hellbender": 2.75e-08, - "hereinabove": 2.75e-08, - "histon": 2.75e-08, - "hognose": 2.75e-08, - "homogenate": 2.75e-08, - "homozygosity": 2.75e-08, - "hooven": 2.75e-08, - "hydrologically": 2.75e-08, - "hydronium": 2.75e-08, - "hyperacusis": 2.75e-08, - "iliotibial": 2.75e-08, - "imbed": 2.75e-08, - "inelegantly": 2.75e-08, - "inextinguishable": 2.75e-08, - "ingestible": 2.75e-08, - "irreconcilably": 2.75e-08, - "ischial": 2.75e-08, - "jaun": 2.75e-08, - "kinetochore": 2.75e-08, - "knab": 2.75e-08, - "lablab": 2.75e-08, - "laddering": 2.75e-08, - "legitimist": 2.75e-08, - "leiomyoma": 2.75e-08, - "leisured": 2.75e-08, - "lipan": 2.75e-08, - "litas": 1.7e-08, - "littermate": 2.75e-08, - "littleness": 2.75e-08, - "loanable": 2.75e-08, - "longway": 2.75e-08, - "lucentio": 2.75e-08, - "luxation": 2.75e-08, - "luxuriantly": 2.75e-08, - "mabinogion": 2.75e-08, - "maffia": 2.75e-08, - "mahua": 2.75e-08, - "malvaceae": 2.75e-08, - "marcan": 2.75e-08, - "marmota": 2.75e-08, - "masticatory": 2.75e-08, - "matamata": 2.75e-08, - "metalware": 2.75e-08, - "metazoa": 2.75e-08, - "milkfish": 2.75e-08, - "moderner": 2.75e-08, - "monzonite": 2.75e-08, - "mucor": 2.75e-08, - "muscatel": 2.75e-08, - "necrology": 2.75e-08, - "nereid": 2.75e-08, - "nevadan": 2.75e-08, - "noncontiguous": 2.75e-08, - "obsequiously": 2.75e-08, - "omphalos": 2.75e-08, - "oneiric": 2.75e-08, - "openhearted": 2.75e-08, - "outstay": 2.75e-08, - "outthink": 2.75e-08, - "overbook": 2.75e-08, - "overdress": 2.75e-08, - "overmatch": 2.75e-08, - "oxygenator": 2.75e-08, - "ozonation": 2.75e-08, - "palely": 2.75e-08, - "parallelepiped": 2.75e-08, - "parallelize": 2.75e-08, - "pardoner": 2.75e-08, - "parto": 2.75e-08, - "paternalist": 2.75e-08, - "patola": 2.75e-08, - "pentad": 2.75e-08, - "phosphite": 2.75e-08, - "photoactive": 2.75e-08, - "physiography": 2.75e-08, - "plak": 2.75e-08, - "pluralize": 2.75e-08, - "plutonian": 2.75e-08, - "polydipsia": 2.75e-08, - "polymyositis": 2.75e-08, - "posca": 2.75e-08, - "preborn": 2.75e-08, - "predella": 2.75e-08, - "prepubertal": 2.75e-08, - "progressivity": 2.75e-08, - "propionyl": 2.75e-08, - "puling": 2.75e-08, - "purlin": 2.75e-08, - "putrefy": 2.75e-08, - "pyrrolidine": 2.75e-08, - "quadruplex": 2.75e-08, - "radicle": 2.75e-08, - "radicular": 2.75e-08, - "reductant": 2.75e-08, - "reinette": 2.75e-08, - "respray": 2.75e-08, - "retreatment": 2.75e-08, - "rheumy": 2.75e-08, - "rhizopus": 2.75e-08, - "rhizotomy": 2.75e-08, - "rhomb": 2.75e-08, - "rhythmicity": 2.75e-08, - "robinet": 2.75e-08, - "rolley": 2.75e-08, - "roosted": 2.75e-08, - "rotan": 2.75e-08, - "rustproof": 2.75e-08, - "sackful": 2.75e-08, - "samani": 2.75e-08, - "sarracenia": 2.75e-08, - "satinwood": 2.75e-08, - "scantling": 2.75e-08, - "securement": 2.75e-08, - "selaginella": 2.75e-08, - "sextile": 2.75e-08, - "shadiness": 2.75e-08, - "shamer": 2.75e-08, - "shoebill": 2.75e-08, - "silvertip": 2.75e-08, - "slon": 2.75e-08, - "snowberry": 2.75e-08, - "somnus": 2.75e-08, - "soubise": 2.75e-08, - "spadework": 2.75e-08, - "sparge": 2.75e-08, - "spass": 2.75e-08, - "spatchcock": 2.75e-08, - "sphygmomanometer": 2.75e-08, - "spiritless": 2.75e-08, - "spirometer": 2.75e-08, - "spitefulness": 2.75e-08, - "squeezable": 2.75e-08, - "stemmer": 2.75e-08, - "straggle": 2.75e-08, - "substantiality": 2.75e-08, - "sulfonyl": 2.75e-08, - "supererogatory": 2.75e-08, - "suppliant": 2.75e-08, - "suspensive": 2.75e-08, - "sutural": 2.75e-08, - "swatow": 2.75e-08, - "syncretistic": 2.75e-08, - "tailrace": 2.75e-08, - "tatian": 2.75e-08, - "tecla": 2.75e-08, - "tenebrous": 2.75e-08, - "tergite": 2.75e-08, - "tesuque": 2.75e-08, - "tetrahydro": 2.75e-08, - "textualism": 2.75e-08, - "thornless": 2.75e-08, - "thymoma": 2.75e-08, - "tical": 2.75e-08, - "tiffy": 2.75e-08, - "tobira": 2.75e-08, - "transfix": 2.75e-08, - "triduum": 2.75e-08, - "trochlear": 2.75e-08, - "tulasi": 2.75e-08, - "tungus": 2.75e-08, - "ulcerate": 2.75e-08, - "unattractiveness": 2.75e-08, - "unchosen": 2.75e-08, - "uncircumcision": 2.75e-08, - "uncited": 2.75e-08, - "unconcern": 2.75e-08, - "unestablished": 2.75e-08, - "unexcavated": 2.75e-08, - "unheroic": 2.75e-08, - "unhitched": 2.75e-08, - "unhoused": 2.75e-08, - "unpin": 2.75e-08, - "unscarred": 2.75e-08, - "unsweet": 2.75e-08, - "unvested": 2.75e-08, - "verbalization": 2.75e-08, - "veridical": 2.75e-08, - "victimizer": 2.75e-08, - "vulval": 2.75e-08, - "waldensian": 2.75e-08, - "wavelike": 2.75e-08, - "weathercock": 2.75e-08, - "weatherproofing": 2.75e-08, - "westernize": 2.75e-08, - "widdershins": 2.75e-08, - "wishfully": 2.75e-08, - "yapper": 2.75e-08, - "yelm": 2.75e-08, - "zoonosis": 2.75e-08, - "zuleika": 2.75e-08, - "absolutive": 2.69e-08, - "adaxial": 2.69e-08, - "adjudicative": 2.69e-08, - "adulterant": 2.69e-08, - "aery": 2.69e-08, - "agglutinin": 2.69e-08, - "akey": 2.69e-08, - "algonkian": 2.69e-08, - "alkylene": 2.69e-08, - "allochthonous": 2.69e-08, - "allophone": 2.69e-08, - "alula": 2.69e-08, - "aminta": 2.69e-08, - "amoskeag": 2.69e-08, - "anastomotic": 2.69e-08, - "andropogon": 2.69e-08, - "apophatic": 2.69e-08, - "appendicular": 2.69e-08, - "arguer": 2.69e-08, - "ascanius": 2.69e-08, - "asterion": 2.69e-08, - "autist": 2.69e-08, - "awin": 2.69e-08, - "axiomatization": 2.69e-08, - "aztecan": 2.69e-08, - "bacchic": 2.69e-08, - "bailment": 2.69e-08, - "bassus": 2.69e-08, - "bedframe": 2.69e-08, - "bibber": 2.69e-08, - "bioscope": 2.69e-08, - "bleb": 2.69e-08, - "bondar": 2.69e-08, - "boud": 2.69e-08, - "boundlessly": 2.69e-08, - "brecciated": 2.69e-08, - "bridgeway": 2.69e-08, - "burgage": 2.69e-08, - "cader": 2.69e-08, - "cannoneer": 2.69e-08, - "caracter": 2.69e-08, - "cardmaking": 2.69e-08, - "castigation": 2.69e-08, - "catechu": 2.69e-08, - "celtis": 2.69e-08, - "centavo": 2.69e-08, - "cheke": 2.69e-08, - "chinch": 2.69e-08, - "chiropody": 2.69e-08, - "chloroprene": 2.69e-08, - "choler": 2.69e-08, - "clasper": 2.69e-08, - "clayoquot": 2.69e-08, - "cleanable": 2.69e-08, - "clinicopathological": 2.69e-08, - "clinopyroxene": 2.69e-08, - "cobus": 2.69e-08, - "coccidiosis": 2.69e-08, - "cockspur": 2.69e-08, - "comino": 2.69e-08, - "conflictive": 2.69e-08, - "conidial": 2.69e-08, - "crampon": 2.69e-08, - "craniosacral": 2.69e-08, - "crannog": 2.69e-08, - "creditability": 2.69e-08, - "crowdy": 2.69e-08, - "crustless": 2.69e-08, - "cryptogenic": 2.69e-08, - "cuber": 2.69e-08, - "cutover": 2.69e-08, - "cystectomy": 2.69e-08, - "danseuse": 2.69e-08, - "dayroom": 2.69e-08, - "dematerialization": 2.69e-08, - "dexterously": 2.69e-08, - "dicotyledonous": 2.69e-08, - "discernibly": 2.69e-08, - "diverticular": 2.69e-08, - "doodler": 2.69e-08, - "dreg": 2.69e-08, - "dugal": 2.69e-08, - "durometer": 2.69e-08, - "dysuria": 2.69e-08, - "echolalia": 2.69e-08, - "eclosion": 2.69e-08, - "efficaciously": 2.69e-08, - "embar": 2.69e-08, - "equational": 2.69e-08, - "equinoctial": 2.69e-08, - "erotomania": 2.69e-08, - "errorless": 2.69e-08, - "etalon": 2.69e-08, - "ethmoidal": 2.69e-08, - "evolute": 2.69e-08, - "fasciola": 2.69e-08, - "felucca": 2.69e-08, - "folium": 2.69e-08, - "fontanel": 2.69e-08, - "foreshock": 2.69e-08, - "gadding": 2.69e-08, - "gearless": 2.69e-08, - "giffgaff": 2.69e-08, - "glasswork": 2.69e-08, - "godward": 2.69e-08, - "granter": 2.69e-08, - "grece": 2.69e-08, - "gristly": 2.69e-08, - "grouts": 1.02e-08, - "gulo": 2.69e-08, - "gunmaker": 2.69e-08, - "gutty": 2.69e-08, - "hask": 2.69e-08, - "heathered": 2.69e-08, - "hempen": 2.69e-08, - "hempseed": 2.69e-08, - "heuchera": 2.69e-08, - "hinny": 2.69e-08, - "histochemical": 2.69e-08, - "homebred": 2.69e-08, - "horridly": 2.69e-08, - "housemother": 2.69e-08, - "hurter": 2.69e-08, - "iconographical": 2.69e-08, - "idiosyncratically": 2.69e-08, - "importune": 2.69e-08, - "importunity": 2.69e-08, - "inscrutability": 2.69e-08, - "insincerely": 2.69e-08, - "interlingua": 2.69e-08, - "intermedium": 2.69e-08, - "intermontane": 2.69e-08, - "interphalangeal": 2.69e-08, - "iontophoresis": 2.69e-08, - "karwar": 2.69e-08, - "keelboat": 2.69e-08, - "kinsfolk": 2.69e-08, - "kyah": 2.69e-08, - "labeler": 2.69e-08, - "lacunar": 2.69e-08, - "laigh": 2.69e-08, - "larcenous": 2.69e-08, - "lavandula": 2.69e-08, - "levirate": 2.69e-08, - "limbers": 2.69e-08, - "lipping": 2.69e-08, - "lungful": 2.69e-08, - "macropus": 2.69e-08, - "malignity": 2.69e-08, - "malter": 2.69e-08, - "manful": 2.69e-08, - "manzana": 2.69e-08, - "massilia": 2.69e-08, - "metalcraft": 2.69e-08, - "metalinguistic": 2.69e-08, - "metonymic": 2.69e-08, - "michigander": 2.69e-08, - "misidentify": 2.69e-08, - "morosely": 2.69e-08, - "morphometry": 2.69e-08, - "mortarboard": 2.69e-08, - "murmuration": 2.69e-08, - "myalgic": 2.69e-08, - "myotonia": 2.69e-08, - "myrtaceae": 2.69e-08, - "myxoma": 2.69e-08, - "natrix": 2.69e-08, - "nematoda": 2.69e-08, - "nife": 2.69e-08, - "nohow": 2.69e-08, - "nonsignificant": 2.69e-08, - "nowaday": 2.69e-08, - "nucleoprotein": 2.69e-08, - "nullifier": 2.69e-08, - "nummi": 2.69e-08, - "ocimum": 2.69e-08, - "oddments": 2.69e-08, - "odocoileus": 2.69e-08, - "ogress": 2.69e-08, - "oogenesis": 2.69e-08, - "oppositionist": 2.69e-08, - "orthoclase": 2.69e-08, - "osse": 2.69e-08, - "outbreeding": 2.69e-08, - "outrace": 2.69e-08, - "outworn": 2.69e-08, - "overabundant": 2.69e-08, - "pantaleon": 2.69e-08, - "papilledema": 2.69e-08, - "participial": 2.69e-08, - "patination": 2.69e-08, - "penurious": 2.69e-08, - "phenanthrene": 2.69e-08, - "phosphoryl": 2.69e-08, - "pierhead": 2.69e-08, - "pietas": 2.69e-08, - "pinked": 2.69e-08, - "plainsman": 2.69e-08, - "plantae": 2.69e-08, - "pneumococcus": 2.69e-08, - "poil": 2.69e-08, - "polt": 2.69e-08, - "polypodium": 2.69e-08, - "poorness": 2.69e-08, - "postelection": 2.69e-08, - "postganglionic": 2.69e-08, - "precess": 2.69e-08, - "preclusion": 2.69e-08, - "prefilter": 2.69e-08, - "pressurizer": 2.69e-08, - "professedly": 2.69e-08, - "prosthetist": 2.69e-08, - "protactinium": 2.69e-08, - "pulu": 2.69e-08, - "radiometry": 2.69e-08, - "rapine": 2.69e-08, - "recognizability": 2.69e-08, - "reeler": 2.69e-08, - "reship": 2.69e-08, - "reutter": 2.69e-08, - "reverberatory": 2.69e-08, - "rickettsial": 2.69e-08, - "riden": 2.69e-08, - "rumbo": 2.69e-08, - "rushen": 2.69e-08, - "sannyasi": 2.69e-08, - "sansei": 2.69e-08, - "saturable": 2.69e-08, - "saum": 2.69e-08, - "scalawag": 2.69e-08, - "seldomly": 2.69e-08, - "shott": 2.69e-08, - "sikar": 2.69e-08, - "siphonal": 2.69e-08, - "skift": 2.69e-08, - "sleekness": 2.69e-08, - "slitted": 2.69e-08, - "sloka": 2.69e-08, - "snoek": 2.69e-08, - "socle": 2.69e-08, - "solemnization": 2.69e-08, - "solvability": 2.69e-08, - "soroptimist": 2.69e-08, - "soubrette": 2.69e-08, - "specula": 2.69e-08, - "spirea": 2.69e-08, - "spume": 2.69e-08, - "squiffy": 2.69e-08, - "strelitz": 2.69e-08, - "strengthener": 2.69e-08, - "subaqueous": 2.69e-08, - "substitutable": 2.69e-08, - "suchness": 2.69e-08, - "superfluity": 2.69e-08, - "suprematism": 2.69e-08, - "sweepingly": 2.69e-08, - "sweetshop": 2.69e-08, - "switchyard": 2.69e-08, - "tetany": 2.69e-08, - "thebaid": 2.69e-08, - "thixotropic": 2.69e-08, - "tippler": 2.69e-08, - "trappy": 2.69e-08, - "trenched": 2.69e-08, - "tricentennial": 2.69e-08, - "tricolored": 2.69e-08, - "triumvir": 2.69e-08, - "trochanteric": 2.69e-08, - "truculence": 2.69e-08, - "tulipa": 2.69e-08, - "tway": 2.69e-08, - "uang": 2.69e-08, - "uncorrupt": 2.69e-08, - "underslung": 2.69e-08, - "undiscounted": 2.69e-08, - "unhurriedly": 2.69e-08, - "unlawfulness": 2.69e-08, - "unruliness": 2.69e-08, - "unsmoked": 2.69e-08, - "unsuppressed": 2.69e-08, - "vespertine": 2.69e-08, - "virgilia": 2.69e-08, - "viscometer": 2.69e-08, - "vitta": 2.69e-08, - "waac": 2.69e-08, - "wanly": 2.69e-08, - "washhouse": 2.69e-08, - "whithersoever": 2.69e-08, - "wholesomely": 2.69e-08, - "winegrowing": 2.69e-08, - "winna": 2.69e-08, - "wittiness": 2.69e-08, - "wizardly": 2.69e-08, - "woolpack": 2.69e-08, - "wurzel": 2.69e-08, - "yakka": 2.69e-08, - "yati": 2.69e-08, - "yesternight": 2.69e-08, - "zephyrus": 2.69e-08, - "accelerando": 2.63e-08, - "alaihi": 2.63e-08, - "alary": 2.63e-08, - "algerine": 2.63e-08, - "alur": 2.63e-08, - "ambassadress": 2.63e-08, - "ambystoma": 2.63e-08, - "analyzable": 2.63e-08, - "antidrug": 2.63e-08, - "antireligious": 2.63e-08, - "apeiron": 2.63e-08, - "apneic": 2.63e-08, - "appassionato": 2.63e-08, - "aquilino": 2.63e-08, - "ascendent": 2.63e-08, - "ascetical": 2.63e-08, - "auspiciousness": 2.63e-08, - "aviatrix": 2.63e-08, - "azoospermia": 2.63e-08, - "barwise": 2.63e-08, - "barycenter": 2.63e-08, - "baywood": 2.63e-08, - "bewail": 2.63e-08, - "biometry": 2.63e-08, - "bizarreness": 2.63e-08, - "bossiness": 2.63e-08, - "bowerbird": 2.63e-08, - "boxen": 2.63e-08, - "breadwinning": 2.63e-08, - "bruta": 2.63e-08, - "calkin": 2.63e-08, - "calyces": 2.63e-08, - "capering": 2.63e-08, - "carminative": 2.63e-08, - "carnosine": 2.63e-08, - "catechumen": 2.63e-08, - "cedula": 2.63e-08, - "cenacle": 2.63e-08, - "chais": 2.57e-08, - "charterer": 2.63e-08, - "chaucerian": 2.63e-08, - "cheroot": 2.63e-08, - "chersonese": 2.63e-08, - "chinquapin": 2.63e-08, - "choriocarcinoma": 2.63e-08, - "citronelle": 2.63e-08, - "coadministration": 2.63e-08, - "coelom": 2.63e-08, - "coition": 2.63e-08, - "coloradan": 2.63e-08, - "convulsant": 2.63e-08, - "coupee": 2.63e-08, - "crisping": 2.63e-08, - "crossly": 2.63e-08, - "cryogen": 2.63e-08, - "culicoides": 2.63e-08, - "cullet": 2.63e-08, - "cupper": 2.63e-08, - "cutpurse": 2.63e-08, - "cysticercosis": 2.63e-08, - "cytopathology": 2.63e-08, - "dastur": 2.63e-08, - "debarkation": 2.63e-08, - "demolisher": 2.63e-08, - "denude": 2.63e-08, - "desirably": 2.63e-08, - "devata": 2.63e-08, - "diatessaron": 2.63e-08, - "diazonium": 2.63e-08, - "dipterocarp": 2.63e-08, - "disappointedly": 2.63e-08, - "discouragingly": 2.63e-08, - "dockland": 2.63e-08, - "doorpost": 2.63e-08, - "drowsily": 2.63e-08, - "enfilading": 2.63e-08, - "ennoblement": 2.63e-08, - "ergosterol": 2.63e-08, - "ethene": 2.63e-08, - "ethereally": 2.63e-08, - "evadne": 2.63e-08, - "exarchate": 2.63e-08, - "exceptionality": 2.63e-08, - "exclusivism": 2.63e-08, - "filicide": 2.63e-08, - "flexuous": 2.63e-08, - "flot": 2.63e-08, - "fogger": 2.63e-08, - "formable": 2.63e-08, - "fornax": 2.63e-08, - "fossilize": 2.63e-08, - "fougasse": 2.63e-08, - "franchiser": 2.63e-08, - "frison": 2.63e-08, - "fruitarian": 2.63e-08, - "fub": 2.63e-08, - "gadabout": 2.63e-08, - "garran": 2.63e-08, - "gemellus": 2.63e-08, - "gentlefolk": 2.63e-08, - "getae": 2.63e-08, - "glassfish": 2.63e-08, - "glucuronic": 2.63e-08, - "glycyrrhiza": 2.63e-08, - "gnomish": 2.63e-08, - "goonie": 2.63e-08, - "goral": 2.63e-08, - "greenfinch": 2.63e-08, - "haircutting": 2.63e-08, - "hallel": 2.63e-08, - "hamitic": 2.63e-08, - "handiness": 2.63e-08, - "harlequinade": 2.63e-08, - "heiltsuk": 2.63e-08, - "hereinbefore": 2.63e-08, - "hesper": 2.63e-08, - "hoarfrost": 2.63e-08, - "homy": 2.63e-08, - "horary": 2.63e-08, - "horsewhip": 2.63e-08, - "housel": 2.63e-08, - "howdah": 2.63e-08, - "hubb": 2.63e-08, - "illimitable": 2.63e-08, - "illinoian": 2.63e-08, - "impanel": 2.63e-08, - "impedimenta": 2.63e-08, - "impenetrability": 2.63e-08, - "inamorata": 2.63e-08, - "inconnu": 2.63e-08, - "indite": 2.63e-08, - "infectiousness": 2.63e-08, - "infraorbital": 2.63e-08, - "interoceptive": 2.63e-08, - "interruptible": 2.63e-08, - "introspectively": 2.63e-08, - "iterable": 2.63e-08, - "ixil": 2.63e-08, - "jacana": 2.63e-08, - "jacobitism": 2.63e-08, - "jerkily": 2.63e-08, - "jetter": 2.63e-08, - "keratoplasty": 2.63e-08, - "keres": 2.63e-08, - "ketty": 2.63e-08, - "kinglet": 2.63e-08, - "kodagu": 2.63e-08, - "koppen": 2.63e-08, - "lache": 2.63e-08, - "lapper": 2.63e-08, - "latinus": 2.63e-08, - "lepa": 2.63e-08, - "liberalist": 2.63e-08, - "liberationist": 2.63e-08, - "ligamentum": 2.63e-08, - "limn": 2.63e-08, - "limpy": 2.63e-08, - "logistician": 2.63e-08, - "losh": 2.63e-08, - "lucrece": 2.63e-08, - "luffa": 2.63e-08, - "lustrum": 2.63e-08, - "mackle": 2.63e-08, - "maidenhood": 2.63e-08, - "majestical": 2.63e-08, - "manacle": 2.63e-08, - "mantes": 2.63e-08, - "megacolon": 2.63e-08, - "melanistic": 2.63e-08, - "menhir": 2.63e-08, - "menorrhagia": 2.63e-08, - "metalliferous": 2.63e-08, - "milfoil": 2.63e-08, - "millstream": 2.63e-08, - "misgovernment": 2.63e-08, - "mishnaic": 2.63e-08, - "moneywise": 2.63e-08, - "morphogenic": 2.63e-08, - "multifold": 2.63e-08, - "myiasis": 2.63e-08, - "myrcene": 2.63e-08, - "mythically": 2.63e-08, - "neep": 2.63e-08, - "nestorianism": 2.63e-08, - "niggly": 2.63e-08, - "normalizer": 2.63e-08, - "nostoc": 2.63e-08, - "obduracy": 2.63e-08, - "obsequiousness": 2.63e-08, - "oilskin": 2.63e-08, - "oleate": 2.63e-08, - "origanum": 2.63e-08, - "overpoweringly": 2.63e-08, - "panamint": 2.63e-08, - "paradisiacal": 2.63e-08, - "peperomia": 2.63e-08, - "phalangist": 2.63e-08, - "phosphoprotein": 2.63e-08, - "phytophagous": 2.63e-08, - "pilonidal": 2.63e-08, - "pityriasis": 2.63e-08, - "planarity": 2.63e-08, - "platanus": 2.63e-08, - "platitudinous": 2.63e-08, - "playbox": 2.63e-08, - "pluma": 2.63e-08, - "pocketable": 2.63e-08, - "popgun": 2.63e-08, - "postglacial": 2.63e-08, - "postlude": 2.63e-08, - "preheater": 2.63e-08, - "primordium": 2.63e-08, - "proteaceae": 2.63e-08, - "protohistoric": 2.63e-08, - "puebloan": 2.63e-08, - "queening": 2.63e-08, - "quintain": 2.63e-08, - "quintic": 2.63e-08, - "radiotelegraphy": 2.63e-08, - "ramose": 2.63e-08, - "raveling": 2.63e-08, - "recept": 2.63e-08, - "rection": 2.63e-08, - "redemptorist": 2.63e-08, - "regather": 2.63e-08, - "regrade": 2.63e-08, - "reversionary": 2.63e-08, - "rewarder": 2.63e-08, - "rhodochrosite": 2.63e-08, - "riverman": 2.63e-08, - "rootlessness": 2.63e-08, - "rootworm": 2.63e-08, - "rurally": 2.63e-08, - "salp": 2.63e-08, - "sarsen": 2.63e-08, - "saturnia": 2.63e-08, - "scutellaria": 2.63e-08, - "sectionalism": 2.63e-08, - "selectee": 2.63e-08, - "sgraffito": 2.63e-08, - "shammar": 2.63e-08, - "sheeny": 2.63e-08, - "shippable": 2.63e-08, - "shovelful": 2.63e-08, - "sickroom": 2.63e-08, - "siderite": 2.63e-08, - "siletz": 2.63e-08, - "silverleaf": 2.63e-08, - "silverside": 2.63e-08, - "skeg": 2.63e-08, - "skimpily": 2.63e-08, - "skippable": 2.63e-08, - "sluggard": 2.63e-08, - "sneath": 2.63e-08, - "snoozy": 2.63e-08, - "somite": 2.63e-08, - "sond": 2.63e-08, - "spermatophore": 2.63e-08, - "splenetic": 2.63e-08, - "starfruit": 2.63e-08, - "steatite": 2.63e-08, - "stereopsis": 2.63e-08, - "stoled": 2.63e-08, - "stolidly": 2.63e-08, - "stratiform": 2.63e-08, - "subband": 2.63e-08, - "surcease": 2.63e-08, - "suum": 2.63e-08, - "swearword": 2.63e-08, - "swingeing": 2.63e-08, - "tanglefoot": 2.63e-08, - "teagle": 2.63e-08, - "tegmentum": 2.63e-08, - "terma": 2.63e-08, - "termly": 2.63e-08, - "theb": 2.63e-08, - "tonna": 2.63e-08, - "totemism": 2.63e-08, - "transthoracic": 2.63e-08, - "trichromatic": 2.63e-08, - "trillionaire": 2.63e-08, - "trochus": 2.63e-08, - "tucano": 2.63e-08, - "tufting": 2.63e-08, - "turkman": 2.63e-08, - "tursiops": 2.63e-08, - "unblessed": 2.63e-08, - "unbuffered": 2.63e-08, - "unlaced": 2.63e-08, - "unraced": 2.63e-08, - "unripened": 2.63e-08, - "untuned": 2.63e-08, - "unworked": 2.63e-08, - "vamoose": 2.63e-08, - "vlach": 2.63e-08, - "waltzer": 2.63e-08, - "weberian": 2.63e-08, - "whaleback": 2.63e-08, - "winesap": 2.63e-08, - "wineskin": 2.63e-08, - "wolfskin": 2.63e-08, - "writter": 2.63e-08, - "yasna": 2.63e-08, - "yeat": 2.63e-08, - "zingiber": 2.63e-08, - "absi": 2.57e-08, - "achakzai": 2.57e-08, - "achromatopsia": 2.57e-08, - "acidemia": 2.57e-08, - "acrobatically": 2.57e-08, - "acromioclavicular": 2.57e-08, - "aeacus": 2.57e-08, - "alosa": 2.57e-08, - "aphasic": 2.57e-08, - "appurtenant": 2.57e-08, - "arist": 2.57e-08, - "aronia": 2.57e-08, - "arthropathy": 2.57e-08, - "ascidian": 2.57e-08, - "axiological": 2.57e-08, - "azeotrope": 2.57e-08, - "basketful": 2.57e-08, - "beechnut": 2.57e-08, - "belemnites": 2.57e-08, - "belligerency": 2.57e-08, - "bestrode": 2.57e-08, - "bhandar": 2.57e-08, - "blackamoor": 2.57e-08, - "booklover": 2.57e-08, - "brooklynite": 2.57e-08, - "brugh": 2.57e-08, - "burian": 2.57e-08, - "cabman": 2.57e-08, - "cadge": 2.57e-08, - "candidness": 2.57e-08, - "cannel": 2.57e-08, - "capetian": 2.57e-08, - "carabid": 2.57e-08, - "centuria": 2.57e-08, - "chape": 2.57e-08, - "charlatanism": 2.57e-08, - "chayote": 2.57e-08, - "chimu": 2.57e-08, - "ciguatera": 2.57e-08, - "clavate": 2.57e-08, - "coexistent": 2.57e-08, - "colan": 2.57e-08, - "compounder": 2.57e-08, - "condign": 2.57e-08, - "constantinopolitan": 2.57e-08, - "contemporarily": 2.57e-08, - "corydalis": 2.57e-08, - "crile": 2.57e-08, - "curbstone": 2.57e-08, - "cursorily": 2.57e-08, - "daucus": 2.57e-08, - "delegator": 2.57e-08, - "denaturalization": 2.57e-08, - "dendroctonus": 2.57e-08, - "dicot": 2.57e-08, - "diffractometer": 2.57e-08, - "dogberry": 2.57e-08, - "dryopteris": 2.57e-08, - "echinodermata": 2.57e-08, - "empyema": 2.57e-08, - "encina": 2.57e-08, - "eneas": 2.57e-08, - "engorge": 2.57e-08, - "esox": 2.57e-08, - "ferula": 2.57e-08, - "fibrocystic": 2.57e-08, - "flighting": 2.57e-08, - "froom": 2.57e-08, - "gabelle": 2.57e-08, - "gearset": 2.57e-08, - "gerundive": 2.57e-08, - "gigot": 2.57e-08, - "gote": 2.57e-08, - "gramp": 2.57e-08, - "granulite": 2.57e-08, - "greengage": 2.57e-08, - "grogginess": 2.57e-08, - "gurian": 2.57e-08, - "haliotis": 2.57e-08, - "hemagglutination": 2.57e-08, - "hexose": 2.57e-08, - "hipbone": 2.57e-08, - "hornbook": 2.57e-08, - "hydrocele": 2.57e-08, - "hyperthermic": 2.57e-08, - "immortelle": 2.57e-08, - "improvident": 2.57e-08, - "indigene": 2.57e-08, - "inoceramus": 2.57e-08, - "inscriptional": 2.57e-08, - "inseparability": 2.57e-08, - "inspirit": 2.57e-08, - "intravesical": 2.57e-08, - "invagination": 2.57e-08, - "ironmaster": 2.57e-08, - "katatonia": 2.57e-08, - "kickout": 2.57e-08, - "killas": 2.57e-08, - "kongu": 2.57e-08, - "kopeck": 2.57e-08, - "kummel": 2.57e-08, - "laconian": 2.57e-08, - "lamasery": 2.57e-08, - "lambkin": 2.57e-08, - "lampstand": 2.57e-08, - "linch": 2.57e-08, - "llew": 2.57e-08, - "lobata": 2.57e-08, - "longshanks": 2.57e-08, - "lumine": 2.57e-08, - "lunation": 2.57e-08, - "lusitanian": 2.57e-08, - "lutetium": 2.57e-08, - "lwo": 2.57e-08, - "massiveness": 2.57e-08, - "medicean": 2.57e-08, - "merchantable": 2.57e-08, - "mesoblast": 2.57e-08, - "metaphysic": 2.57e-08, - "methodic": 2.57e-08, - "mineralize": 2.57e-08, - "mischaracterize": 2.57e-08, - "misguidance": 2.57e-08, - "misspeak": 2.57e-08, - "mithraic": 2.57e-08, - "mollycoddling": 2.57e-08, - "monarchial": 2.57e-08, - "monomaniacal": 2.57e-08, - "mucuna": 2.57e-08, - "mummer": 2.57e-08, - "murrey": 2.57e-08, - "nacreous": 2.57e-08, - "neaten": 2.57e-08, - "nightwalker": 2.57e-08, - "noncontrolling": 2.57e-08, - "nonfictional": 2.57e-08, - "nugatory": 2.57e-08, - "offerer": 2.57e-08, - "oncidium": 2.57e-08, - "onlooking": 2.57e-08, - "organoid": 2.57e-08, - "orthognathic": 2.57e-08, - "overexert": 2.57e-08, - "ownerless": 2.57e-08, - "palaestra": 2.57e-08, - "palter": 2.57e-08, - "paramatta": 2.57e-08, - "perun": 2.57e-08, - "phasis": 2.57e-08, - "phenylenediamine": 2.57e-08, - "piked": 2.57e-08, - "plack": 2.57e-08, - "plaga": 2.57e-08, - "pleurotus": 2.57e-08, - "polysynthetic": 2.57e-08, - "ponceau": 2.57e-08, - "pondweed": 2.57e-08, - "porites": 2.57e-08, - "porkpie": 2.57e-08, - "portulaca": 2.57e-08, - "prelacy": 2.57e-08, - "preparator": 2.57e-08, - "profoundness": 2.57e-08, - "prosector": 2.57e-08, - "prospection": 2.57e-08, - "pruritic": 2.57e-08, - "psittacosis": 2.57e-08, - "psychodynamics": 2.57e-08, - "puckle": 2.57e-08, - "pulk": 2.57e-08, - "pulverization": 2.57e-08, - "purloin": 2.57e-08, - "pursuivant": 2.57e-08, - "purveyance": 2.57e-08, - "putrescine": 2.57e-08, - "puya": 2.57e-08, - "pycnidia": 2.57e-08, - "ramson": 2.57e-08, - "recontest": 2.57e-08, - "repass": 2.57e-08, - "retinaculum": 2.57e-08, - "rosal": 2.57e-08, - "ruddle": 2.57e-08, - "rustication": 2.57e-08, - "schiedam": 2.57e-08, - "semimajor": 2.57e-08, - "serotina": 2.57e-08, - "sharn": 2.57e-08, - "shela": 2.57e-08, - "shingler": 2.57e-08, - "simar": 2.57e-08, - "sise": 2.57e-08, - "sleighing": 2.57e-08, - "slobbers": 2.57e-08, - "smokebox": 2.57e-08, - "spangly": 2.57e-08, - "speechmaking": 2.57e-08, - "sphericity": 2.57e-08, - "spiracle": 2.57e-08, - "spitted": 2.57e-08, - "stannous": 2.57e-08, - "stepless": 2.57e-08, - "stod": 2.57e-08, - "streamy": 2.57e-08, - "subbasal": 2.57e-08, - "subcommission": 2.57e-08, - "subtriangular": 2.57e-08, - "sutor": 2.57e-08, - "synchronistic": 2.57e-08, - "syre": 2.57e-08, - "tabacum": 2.57e-08, - "thyrotoxicosis": 2.57e-08, - "tji": 2.57e-08, - "toadfish": 2.57e-08, - "tomin": 2.57e-08, - "toneless": 2.57e-08, - "towage": 2.57e-08, - "transhumance": 2.57e-08, - "transversally": 2.57e-08, - "trinitarianism": 2.57e-08, - "trustingly": 2.57e-08, - "turnagain": 2.57e-08, - "tyrannically": 2.57e-08, - "unalike": 2.57e-08, - "unceded": 2.57e-08, - "uncongenial": 2.57e-08, - "undertrained": 2.57e-08, - "unharvested": 2.57e-08, - "unhide": 2.57e-08, - "unicum": 2.57e-08, - "uninvite": 2.57e-08, - "universalize": 2.57e-08, - "unlighted": 2.57e-08, - "unscrambling": 2.57e-08, - "untempered": 2.57e-08, - "unthankful": 2.57e-08, - "untidiness": 2.57e-08, - "unwearable": 2.57e-08, - "unwounded": 2.57e-08, - "usun": 2.57e-08, - "versant": 2.57e-08, - "vinta": 2.57e-08, - "weste": 2.57e-08, - "wetly": 2.57e-08, - "wordiness": 2.57e-08, - "yote": 2.57e-08, - "younker": 2.57e-08, - "zoophile": 2.57e-08, - "adai": 2.51e-08, - "aleatory": 2.51e-08, - "allometric": 2.51e-08, - "allopathy": 2.51e-08, - "ambulate": 2.51e-08, - "amylopectin": 2.51e-08, - "anthologist": 2.51e-08, - "apriori": 2.51e-08, - "aquilegia": 2.51e-08, - "arawa": 2.51e-08, - "arboricultural": 2.51e-08, - "artcraft": 2.51e-08, - "artel": 2.51e-08, - "artlessly": 2.51e-08, - "augite": 2.51e-08, - "australopithecine": 2.51e-08, - "autotransformer": 2.51e-08, - "balbriggan": 2.51e-08, - "baronetage": 2.51e-08, - "basto": 2.51e-08, - "beechen": 2.51e-08, - "belayer": 2.51e-08, - "bellyful": 2.51e-08, - "betony": 2.51e-08, - "bewitchment": 2.51e-08, - "birken": 2.51e-08, - "blackfin": 2.51e-08, - "bolometer": 2.51e-08, - "bootblack": 2.51e-08, - "bootes": 2.51e-08, - "brachiocephalic": 2.51e-08, - "bronchoconstriction": 2.51e-08, - "buntline": 2.51e-08, - "burring": 2.51e-08, - "candleholder": 2.51e-08, - "caudex": 2.51e-08, - "charivari": 2.51e-08, - "chasma": 2.51e-08, - "chinking": 2.51e-08, - "chocho": 2.51e-08, - "chyle": 2.51e-08, - "cladonia": 2.51e-08, - "cocytus": 2.51e-08, - "colorimeter": 2.51e-08, - "cominform": 2.51e-08, - "conservatorio": 2.51e-08, - "coppy": 2.51e-08, - "copyhold": 2.51e-08, - "criminalistics": 2.51e-08, - "cryptomeria": 2.51e-08, - "crystalloid": 2.51e-08, - "culmen": 2.51e-08, - "curst": 2.51e-08, - "cuscuta": 2.51e-08, - "cycas": 2.51e-08, - "damia": 2.51e-08, - "darnel": 2.51e-08, - "delusive": 2.51e-08, - "dematerialize": 2.51e-08, - "demonologist": 2.51e-08, - "depigmentation": 2.51e-08, - "dharmakaya": 2.51e-08, - "diffract": 2.51e-08, - "disentanglement": 2.51e-08, - "dispensational": 2.51e-08, - "disputatious": 2.51e-08, - "doglike": 2.51e-08, - "doorless": 2.51e-08, - "duction": 2.51e-08, - "dyker": 2.51e-08, - "dynamis": 2.51e-08, - "effuse": 2.51e-08, - "eigenfunction": 2.51e-08, - "elberta": 2.51e-08, - "electrocautery": 2.51e-08, - "electrodialysis": 2.51e-08, - "electrolytically": 2.51e-08, - "electrolyzer": 2.51e-08, - "electroplate": 2.51e-08, - "enmeshment": 2.51e-08, - "epistemologically": 2.51e-08, - "eragrostis": 2.51e-08, - "ergotamine": 2.51e-08, - "espino": 2.51e-08, - "ethological": 2.51e-08, - "exhaustingly": 2.51e-08, - "expeller": 2.51e-08, - "exquisiteness": 2.51e-08, - "exudative": 2.51e-08, - "fillable": 2.51e-08, - "firetrap": 2.51e-08, - "florescence": 2.51e-08, - "focuser": 2.51e-08, - "fogginess": 2.51e-08, - "fomites": 2.51e-08, - "footgear": 2.51e-08, - "forestay": 2.51e-08, - "fritillaria": 2.51e-08, - "frogfish": 2.51e-08, - "frolicsome": 2.51e-08, - "gaslighted": 2.51e-08, - "gauger": 2.51e-08, - "gaut": 2.51e-08, - "glassful": 2.51e-08, - "gosplan": 2.51e-08, - "granitoid": 2.51e-08, - "graspable": 2.51e-08, - "grayness": 2.51e-08, - "grunion": 2.51e-08, - "guanidine": 2.51e-08, - "gujar": 2.51e-08, - "gullion": 2.51e-08, - "harmlessness": 2.51e-08, - "hasher": 2.51e-08, - "hatpin": 2.51e-08, - "hexahydrate": 2.51e-08, - "highjack": 2.51e-08, - "hitcher": 2.51e-08, - "homogenizer": 2.51e-08, - "illume": 2.51e-08, - "imagism": 2.51e-08, - "incombustible": 2.51e-08, - "infundibular": 2.51e-08, - "inquietude": 2.51e-08, - "insertional": 2.51e-08, - "interaural": 2.51e-08, - "interventricular": 2.51e-08, - "irreducibility": 2.51e-08, - "islamize": 2.51e-08, - "jingly": 2.51e-08, - "kuchen": 2.51e-08, - "laking": 2.51e-08, - "lappet": 2.51e-08, - "licensable": 2.51e-08, - "limbu": 2.51e-08, - "linage": 2.51e-08, - "lingula": 2.51e-08, - "lipin": 2.51e-08, - "liverwurst": 2.51e-08, - "lowth": 2.51e-08, - "luridly": 2.51e-08, - "manakin": 2.51e-08, - "melodiously": 2.51e-08, - "microliter": 2.51e-08, - "monocytic": 2.51e-08, - "moorage": 2.51e-08, - "mucocutaneous": 2.51e-08, - "mullerian": 2.51e-08, - "multani": 2.51e-08, - "myomectomy": 2.51e-08, - "nasalization": 2.51e-08, - "neele": 2.51e-08, - "neger": 2.51e-08, - "neutrophilic": 2.51e-08, - "ninepence": 2.51e-08, - "nitrobenzene": 2.51e-08, - "nonconsecutive": 2.51e-08, - "noneconomic": 2.51e-08, - "nonoperative": 2.51e-08, - "offhanded": 2.51e-08, - "onager": 2.51e-08, - "onanism": 2.51e-08, - "ostracization": 2.51e-08, - "outmatch": 2.51e-08, - "palet": 2.51e-08, - "panoptic": 2.51e-08, - "pedregal": 2.51e-08, - "pelon": 2.51e-08, - "peptone": 2.51e-08, - "percale": 2.51e-08, - "perfunctorily": 2.51e-08, - "peroration": 2.51e-08, - "phosphonium": 2.51e-08, - "photocatalyst": 2.51e-08, - "phytase": 2.51e-08, - "pigweed": 2.51e-08, - "piki": 2.51e-08, - "piscis": 2.51e-08, - "plantigrade": 2.51e-08, - "plenteous": 2.51e-08, - "polyvinylidene": 2.51e-08, - "poolroom": 2.51e-08, - "portail": 2.51e-08, - "portentously": 2.51e-08, - "porty": 2.51e-08, - "premedication": 2.51e-08, - "pressingly": 2.51e-08, - "prill": 2.51e-08, - "probabl": 2.51e-08, - "professoriate": 2.51e-08, - "proo": 2.51e-08, - "protoporphyrin": 2.51e-08, - "protozoal": 2.51e-08, - "pryer": 2.51e-08, - "psychiatrically": 2.51e-08, - "pyrography": 2.51e-08, - "queenship": 2.51e-08, - "quelch": 2.51e-08, - "rabbet": 2.51e-08, - "rancidity": 2.51e-08, - "rathole": 2.51e-08, - "rebuilder": 2.51e-08, - "recertify": 2.51e-08, - "recross": 2.51e-08, - "reductively": 2.51e-08, - "renk": 2.51e-08, - "reportorial": 2.51e-08, - "repulsively": 2.51e-08, - "resurge": 2.51e-08, - "revivify": 2.51e-08, - "ripsaw": 2.51e-08, - "rondel": 2.51e-08, - "sackbut": 2.51e-08, - "saltus": 2.51e-08, - "scabious": 2.51e-08, - "scribbly": 2.51e-08, - "sculler": 2.51e-08, - "seemless": 2.51e-08, - "sensualist": 2.51e-08, - "sesbania": 2.51e-08, - "setaria": 2.51e-08, - "sillimanite": 2.51e-08, - "skulker": 2.51e-08, - "sneakiness": 2.51e-08, - "sneeringly": 2.51e-08, - "snivel": 2.51e-08, - "soken": 2.51e-08, - "sorbic": 2.51e-08, - "spoofer": 2.51e-08, - "stenotic": 2.51e-08, - "stereoscopy": 2.51e-08, - "strategos": 2.51e-08, - "subdorsal": 2.51e-08, - "superinfection": 2.51e-08, - "supposably": 2.51e-08, - "supraspinatus": 2.51e-08, - "swinish": 2.51e-08, - "synesthetic": 2.51e-08, - "tahr": 2.51e-08, - "tanak": 2.51e-08, - "tatta": 2.51e-08, - "tektite": 2.51e-08, - "telemetric": 2.51e-08, - "tendinous": 2.51e-08, - "termagant": 2.51e-08, - "thomasine": 2.51e-08, - "thoo": 2.51e-08, - "thornbush": 2.51e-08, - "tipe": 2.51e-08, - "toolmaking": 2.51e-08, - "transcendentally": 2.51e-08, - "transmissivity": 2.51e-08, - "triangularly": 2.51e-08, - "trilinear": 2.51e-08, - "tropicalia": 2.51e-08, - "tuamotu": 2.51e-08, - "tunicate": 2.51e-08, - "tupman": 2.51e-08, - "twitcher": 2.51e-08, - "ukase": 2.51e-08, - "unaged": 2.51e-08, - "unarticulated": 2.51e-08, - "unavenged": 2.51e-08, - "unawakened": 2.51e-08, - "unbirthday": 2.51e-08, - "uncoloured": 2.51e-08, - "undercook": 2.51e-08, - "underminer": 2.51e-08, - "undoable": 2.51e-08, - "unenthusiastically": 2.51e-08, - "unfalsifiable": 2.51e-08, - "unfreedom": 2.51e-08, - "ungreased": 2.51e-08, - "unhittable": 2.51e-08, - "unicity": 2.51e-08, - "uninvested": 2.51e-08, - "unmuted": 2.51e-08, - "unreconciled": 2.51e-08, - "unrepairable": 2.51e-08, - "unsharp": 2.51e-08, - "unshod": 2.51e-08, - "urolithiasis": 2.51e-08, - "venipuncture": 2.51e-08, - "veracious": 2.51e-08, - "vicegerent": 2.51e-08, - "violaceous": 2.51e-08, - "voluntaryism": 2.51e-08, - "wagonload": 2.51e-08, - "whiptail": 2.51e-08, - "whipworm": 2.51e-08, - "wireman": 2.51e-08, - "yahan": 2.51e-08, - "yoking": 2.51e-08, - "zande": 2.51e-08, - "adet": 2.45e-08, - "adiantum": 2.45e-08, - "aesculus": 2.45e-08, - "afterwork": 2.45e-08, - "ahir": 2.45e-08, - "allurement": 2.45e-08, - "analogic": 2.45e-08, - "anarchical": 2.45e-08, - "anay": 2.45e-08, - "animalism": 2.45e-08, - "anorectic": 2.45e-08, - "anthemis": 2.45e-08, - "antirrhinum": 2.45e-08, - "antisepsis": 2.45e-08, - "apocalypticism": 2.45e-08, - "appassionata": 2.45e-08, - "ascomycetes": 2.45e-08, - "assister": 2.45e-08, - "astroid": 2.45e-08, - "atik": 2.45e-08, - "attent": 2.45e-08, - "azon": 2.45e-08, - "babai": 2.45e-08, - "barnburner": 2.45e-08, - "basidiomycetes": 2.45e-08, - "basophilic": 2.45e-08, - "bastinado": 2.45e-08, - "bivalvia": 2.45e-08, - "blader": 2.45e-08, - "blende": 2.45e-08, - "boronic": 2.45e-08, - "brahmachari": 2.45e-08, - "brayer": 2.45e-08, - "carbonless": 2.45e-08, - "categorial": 2.45e-08, - "celosia": 2.45e-08, - "cephus": 2.45e-08, - "cermet": 2.45e-08, - "chaa": 2.45e-08, - "charkha": 2.45e-08, - "chemisorption": 2.45e-08, - "chinee": 2.45e-08, - "chockablock": 2.45e-08, - "cliquish": 2.45e-08, - "compromiser": 2.45e-08, - "conclusory": 2.45e-08, - "contraflow": 2.45e-08, - "convector": 2.45e-08, - "coper": 2.45e-08, - "coprolite": 2.45e-08, - "corvidae": 2.45e-08, - "cosmopolite": 2.45e-08, - "coturnix": 2.45e-08, - "crepitus": 2.45e-08, - "cryolite": 2.45e-08, - "curlicue": 2.45e-08, - "cyanamide": 2.45e-08, - "cyclohexyl": 2.45e-08, - "daric": 2.45e-08, - "deanship": 2.45e-08, - "deathlike": 2.45e-08, - "delicioso": 2.45e-08, - "delineator": 2.45e-08, - "demimonde": 2.45e-08, - "deprave": 2.45e-08, - "dichromatic": 2.45e-08, - "disestablish": 2.45e-08, - "disperser": 2.45e-08, - "disubstituted": 2.45e-08, - "divorcement": 2.45e-08, - "dobra": 2.45e-08, - "dogface": 2.45e-08, - "donatist": 2.45e-08, - "duit": 2.45e-08, - "dusun": 2.45e-08, - "earthshaker": 2.45e-08, - "earthward": 2.45e-08, - "easer": 2.45e-08, - "eastertide": 2.45e-08, - "eclogite": 2.45e-08, - "effluence": 2.45e-08, - "emarginate": 2.45e-08, - "emprise": 2.45e-08, - "entrustment": 2.45e-08, - "enzootic": 2.45e-08, - "eparchy": 2.45e-08, - "epaulet": 2.45e-08, - "ependymal": 2.45e-08, - "epilobium": 2.45e-08, - "equestrianism": 2.45e-08, - "eumenides": 2.45e-08, - "exasperatingly": 2.45e-08, - "exoskeletal": 2.45e-08, - "expectable": 2.45e-08, - "eyen": 2.45e-08, - "faddy": 2.45e-08, - "fishwife": 2.45e-08, - "flannelette": 2.45e-08, - "flawlessness": 2.45e-08, - "flechette": 2.45e-08, - "fono": 2.45e-08, - "footling": 2.45e-08, - "fumarole": 2.45e-08, - "funkiness": 2.45e-08, - "gatepost": 2.45e-08, - "gilled": 2.45e-08, - "glassmaker": 2.45e-08, - "glume": 2.45e-08, - "googolplex": 2.45e-08, - "gorlin": 2.45e-08, - "goujon": 2.45e-08, - "grenelle": 2.45e-08, - "gryllus": 2.45e-08, - "guerdon": 2.45e-08, - "habitude": 2.45e-08, - "hamamelis": 2.45e-08, - "handwheel": 2.45e-08, - "helicoid": 2.45e-08, - "hellenist": 2.45e-08, - "hemerocallis": 2.45e-08, - "historial": 2.45e-08, - "horizontality": 2.45e-08, - "horribleness": 2.45e-08, - "howel": 2.45e-08, - "huskily": 2.45e-08, - "hydrozoa": 2.45e-08, - "icarian": 2.45e-08, - "igorot": 2.45e-08, - "incantatory": 2.45e-08, - "incommensurate": 2.45e-08, - "indenter": 2.45e-08, - "inequivalent": 2.45e-08, - "insipidity": 2.45e-08, - "inspiringly": 2.45e-08, - "intellectualization": 2.45e-08, - "interproximal": 2.45e-08, - "intersession": 2.45e-08, - "intimal": 2.45e-08, - "intuitionist": 2.45e-08, - "intuitiveness": 2.45e-08, - "irrationalism": 2.45e-08, - "irruptive": 2.45e-08, - "jenine": 2.45e-08, - "karakul": 2.45e-08, - "khanda": 2.45e-08, - "koban": 2.45e-08, - "kufic": 2.45e-08, - "laccase": 2.45e-08, - "lamanite": 2.45e-08, - "legman": 2.45e-08, - "lemna": 2.45e-08, - "lowness": 2.45e-08, - "malapropism": 2.45e-08, - "manteau": 2.45e-08, - "manubrium": 2.45e-08, - "mentation": 2.45e-08, - "mentionable": 2.45e-08, - "midianite": 2.45e-08, - "miek": 2.45e-08, - "mimulus": 2.45e-08, - "mistakingly": 2.45e-08, - "mizraim": 2.45e-08, - "moneybag": 2.45e-08, - "monocotyledonous": 2.45e-08, - "multijet": 2.45e-08, - "multinucleated": 2.45e-08, - "muong": 2.45e-08, - "mysis": 2.45e-08, - "mythologically": 2.45e-08, - "nesty": 2.45e-08, - "newfoundlander": 2.45e-08, - "niobate": 2.45e-08, - "nitroprusside": 2.45e-08, - "noncanonical": 2.45e-08, - "nonconventional": 2.45e-08, - "nonet": 2.45e-08, - "nonproductive": 2.45e-08, - "nonrecurring": 2.45e-08, - "nonworking": 2.45e-08, - "nullable": 2.45e-08, - "oceanology": 2.45e-08, - "ohia": 2.45e-08, - "oldness": 2.45e-08, - "olor": 2.45e-08, - "oniony": 2.45e-08, - "onomastic": 2.45e-08, - "orbed": 2.45e-08, - "orthotropic": 2.45e-08, - "otomi": 2.45e-08, - "overstory": 2.45e-08, - "ovular": 2.45e-08, - "oxonian": 2.45e-08, - "palaeocene": 2.45e-08, - "panathenaic": 2.45e-08, - "pasteurella": 2.45e-08, - "pathogenetic": 2.45e-08, - "pawnbroking": 2.45e-08, - "pentaerythritol": 2.45e-08, - "periostracum": 2.45e-08, - "petrological": 2.45e-08, - "philistia": 2.45e-08, - "phronesis": 2.45e-08, - "phytologist": 2.45e-08, - "pitaya": 2.45e-08, - "planorbis": 2.45e-08, - "polarimeter": 2.45e-08, - "polyandrous": 2.45e-08, - "polymorphonuclear": 2.45e-08, - "preganglionic": 2.45e-08, - "prehistorical": 2.45e-08, - "premillennial": 2.45e-08, - "presidencia": 2.45e-08, - "prober": 2.45e-08, - "pugnacity": 2.45e-08, - "pyometra": 2.45e-08, - "quaintance": 2.45e-08, - "quippy": 2.45e-08, - "radiolarian": 2.45e-08, - "rafflesia": 2.45e-08, - "ranunculaceae": 2.45e-08, - "ratably": 2.45e-08, - "realgar": 2.45e-08, - "reappropriation": 2.45e-08, - "reformative": 2.45e-08, - "reinitiate": 2.45e-08, - "resoluteness": 2.45e-08, - "rewrap": 2.45e-08, - "rhumb": 2.45e-08, - "roadworthiness": 2.45e-08, - "rollable": 2.45e-08, - "roud": 2.45e-08, - "rull": 2.45e-08, - "runty": 2.45e-08, - "sacken": 2.45e-08, - "sacramentum": 2.45e-08, - "scarth": 2.45e-08, - "scherzando": 2.45e-08, - "schoon": 2.45e-08, - "schuss": 2.45e-08, - "secretiveness": 2.45e-08, - "sedang": 2.45e-08, - "seigniory": 2.45e-08, - "serapeum": 2.45e-08, - "servery": 2.45e-08, - "servet": 2.45e-08, - "shambu": 2.45e-08, - "signaler": 2.45e-08, - "slivovitz": 2.45e-08, - "snipper": 2.45e-08, - "soberness": 2.45e-08, - "spirogyra": 2.45e-08, - "spolia": 2.45e-08, - "stahlhelm": 2.45e-08, - "subbase": 2.45e-08, - "sublittoral": 2.45e-08, - "subtribe": 2.45e-08, - "supracondylar": 2.45e-08, - "sural": 2.45e-08, - "symptomless": 2.45e-08, - "systematical": 2.45e-08, - "tankage": 2.45e-08, - "teasel": 2.45e-08, - "temporoparietal": 2.45e-08, - "tenne": 2.45e-08, - "thaumaturgy": 2.45e-08, - "thermogram": 2.45e-08, - "tocsin": 2.45e-08, - "tonometer": 2.45e-08, - "tradesperson": 2.45e-08, - "tranquilly": 2.45e-08, - "triacetate": 2.45e-08, - "turm": 2.45e-08, - "unbundle": 2.45e-08, - "unclad": 2.45e-08, - "uncontracted": 2.45e-08, - "undercharged": 2.45e-08, - "undiscussed": 2.45e-08, - "unimposing": 2.45e-08, - "univocal": 2.45e-08, - "unmarred": 2.45e-08, - "unobscured": 2.45e-08, - "unpatented": 2.45e-08, - "unpigmented": 2.45e-08, - "unpreventable": 2.45e-08, - "unprimed": 2.45e-08, - "unseeable": 2.45e-08, - "unspecialized": 2.45e-08, - "unswept": 2.45e-08, - "untransformed": 2.45e-08, - "upstair": 2.45e-08, - "usufructuary": 2.45e-08, - "vaishnavism": 2.45e-08, - "vaunt": 2.45e-08, - "viaticum": 2.45e-08, - "vihuela": 2.45e-08, - "vulnerably": 2.45e-08, - "weeble": 2.45e-08, - "weigher": 2.45e-08, - "wendish": 2.45e-08, - "wolfer": 2.45e-08, - "wormlike": 2.45e-08, - "yardmaster": 2.45e-08, - "youthfully": 2.45e-08, - "yuman": 2.45e-08, - "ablaut": 2.4e-08, - "absorptivity": 2.4e-08, - "aerodyne": 2.4e-08, - "aisled": 2.4e-08, - "alicyclic": 2.4e-08, - "anaerobe": 2.4e-08, - "antagonistically": 2.4e-08, - "antiochene": 2.4e-08, - "apigenin": 2.4e-08, - "apulian": 2.4e-08, - "arabis": 1.1e-08, - "arakanese": 2.4e-08, - "archdruid": 2.4e-08, - "arctostaphylos": 2.4e-08, - "aromatization": 2.4e-08, - "asperity": 2.4e-08, - "associateship": 2.4e-08, - "assort": 2.4e-08, - "astigmatic": 2.4e-08, - "azeotropic": 2.4e-08, - "backslapping": 2.4e-08, - "baffler": 2.4e-08, - "baikie": 2.4e-08, - "balaenoptera": 2.4e-08, - "ballistically": 2.4e-08, - "baronage": 2.4e-08, - "bashfulness": 2.4e-08, - "bhutia": 2.4e-08, - "biretta": 2.4e-08, - "blackwork": 2.4e-08, - "boaster": 2.4e-08, - "bosky": 2.4e-08, - "branner": 2.4e-08, - "bufflehead": 2.4e-08, - "busher": 2.4e-08, - "caban": 2.4e-08, - "calorimetric": 2.4e-08, - "cambric": 2.4e-08, - "cancelable": 2.4e-08, - "cardiogram": 2.4e-08, - "carone": 2.4e-08, - "castanet": 2.4e-08, - "castled": 2.4e-08, - "cedrus": 2.4e-08, - "changement": 2.4e-08, - "chapping": 2.4e-08, - "charabanc": 2.4e-08, - "chare": 2.4e-08, - "chark": 2.4e-08, - "chemic": 2.4e-08, - "childbed": 2.4e-08, - "chincha": 2.4e-08, - "codefendant": 2.4e-08, - "collectibility": 2.4e-08, - "companionate": 2.4e-08, - "conformant": 2.4e-08, - "contradictorily": 2.4e-08, - "corespondent": 2.4e-08, - "corta": 2.4e-08, - "cosset": 2.4e-08, - "coxy": 2.4e-08, - "crenate": 2.4e-08, - "crenelated": 2.4e-08, - "crippler": 2.4e-08, - "cupric": 2.4e-08, - "cushitic": 2.4e-08, - "cyanuric": 2.4e-08, - "cymric": 2.4e-08, - "daalder": 2.4e-08, - "danio": 2.4e-08, - "darner": 2.4e-08, - "decurion": 2.4e-08, - "defrock": 2.4e-08, - "denotative": 2.4e-08, - "denticulate": 2.4e-08, - "dermoid": 2.4e-08, - "desiccate": 2.4e-08, - "directrix": 2.4e-08, - "dolina": 2.4e-08, - "donar": 2.4e-08, - "drollery": 2.4e-08, - "drophead": 2.4e-08, - "easeful": 2.4e-08, - "elver": 2.4e-08, - "endlessness": 2.4e-08, - "equivocally": 2.4e-08, - "evolver": 2.4e-08, - "excessiveness": 2.4e-08, - "extramedullary": 2.4e-08, - "extrinsically": 2.4e-08, - "eyeshot": 2.4e-08, - "facetiousness": 2.4e-08, - "fasciotomy": 2.4e-08, - "flocculent": 2.4e-08, - "flosser": 2.4e-08, - "flota": 2.4e-08, - "formule": 2.4e-08, - "frenchness": 2.4e-08, - "frette": 2.4e-08, - "frostproof": 2.4e-08, - "gallivant": 2.4e-08, - "gavelkind": 2.4e-08, - "gelatinization": 2.4e-08, - "gemsbok": 2.4e-08, - "genuflection": 2.4e-08, - "gobelin": 2.4e-08, - "greige": 2.4e-08, - "gunstock": 2.4e-08, - "guran": 2.4e-08, - "haboob": 2.4e-08, - "haskalah": 2.4e-08, - "hazle": 2.4e-08, - "hebraica": 2.4e-08, - "hemin": 2.4e-08, - "hemorrhoidal": 2.4e-08, - "heterogeneously": 2.4e-08, - "hidradenitis": 2.4e-08, - "hilding": 2.4e-08, - "hindhead": 2.4e-08, - "hippopotami": 2.4e-08, - "hiren": 2.4e-08, - "hominidae": 2.4e-08, - "homogenic": 2.4e-08, - "hooly": 2.4e-08, - "hostler": 2.4e-08, - "hypervigilant": 2.4e-08, - "hypochondriasis": 2.4e-08, - "impermeability": 2.4e-08, - "inbreed": 2.4e-08, - "inconvertible": 2.4e-08, - "inharmonious": 2.4e-08, - "inkle": 2.4e-08, - "innominate": 2.4e-08, - "insalubrious": 2.4e-08, - "insolubility": 2.4e-08, - "interlaminar": 2.4e-08, - "interphone": 2.4e-08, - "intraosseous": 2.4e-08, - "intriguer": 2.4e-08, - "inveigh": 2.4e-08, - "inviolably": 2.4e-08, - "kaempferol": 2.4e-08, - "karela": 2.4e-08, - "kokan": 2.4e-08, - "korona": 2.4e-08, - "kran": 2.4e-08, - "labrys": 2.4e-08, - "lepcha": 2.4e-08, - "lespedeza": 2.4e-08, - "lettable": 2.4e-08, - "letten": 2.4e-08, - "lickspittle": 2.4e-08, - "linet": 2.4e-08, - "linos": 2.4e-08, - "louch": 2.4e-08, - "lovably": 2.4e-08, - "lucilia": 2.4e-08, - "matzos": 2.4e-08, - "mease": 2.4e-08, - "mediatization": 2.4e-08, - "mediatrix": 2.4e-08, - "megatherium": 2.4e-08, - "melano": 2.4e-08, - "meril": 2.4e-08, - "merpeople": 2.4e-08, - "metallographic": 2.4e-08, - "microtome": 2.4e-08, - "misfortunate": 2.4e-08, - "mohammedanism": 2.4e-08, - "monitory": 2.4e-08, - "montanan": 2.4e-08, - "montargis": 2.4e-08, - "morat": 2.4e-08, - "motional": 2.4e-08, - "mucoid": 2.4e-08, - "muddler": 2.4e-08, - "muscari": 2.4e-08, - "mylohyoid": 2.4e-08, - "nahor": 2.4e-08, - "naias": 1.23e-08, - "nejd": 2.4e-08, - "nocturia": 2.4e-08, - "nonproprietary": 2.4e-08, - "numerously": 2.4e-08, - "oatcake": 2.4e-08, - "octroi": 2.4e-08, - "odontoglossum": 2.4e-08, - "ophthalmia": 2.4e-08, - "opportunely": 2.4e-08, - "orthographical": 2.4e-08, - "orthopyroxene": 2.4e-08, - "osmoregulation": 2.4e-08, - "osteoblastic": 2.4e-08, - "osteoid": 2.4e-08, - "overarm": 2.4e-08, - "overset": 2.4e-08, - "overthought": 2.4e-08, - "oxychloride": 2.4e-08, - "paleoanthropologist": 2.4e-08, - "parilla": 2.4e-08, - "pauperism": 2.4e-08, - "perambulator": 2.4e-08, - "personation": 2.4e-08, - "perspirant": 2.4e-08, - "phosphoglycerate": 2.4e-08, - "pinery": 2.4e-08, - "pinniped": 2.4e-08, - "piteously": 2.4e-08, - "pneumatology": 2.4e-08, - "portamento": 2.4e-08, - "prating": 2.4e-08, - "protamine": 2.4e-08, - "pyriformis": 2.4e-08, - "quadrivium": 2.4e-08, - "quileute": 2.4e-08, - "ranny": 2.4e-08, - "rebind": 2.4e-08, - "recitalist": 2.4e-08, - "redistrict": 2.4e-08, - "refection": 2.4e-08, - "religionist": 2.4e-08, - "remodeler": 2.4e-08, - "residentially": 2.4e-08, - "restorable": 2.4e-08, - "retroreflective": 2.4e-08, - "rhizoctonia": 2.4e-08, - "rhizophora": 2.4e-08, - "romancer": 2.4e-08, - "roomer": 2.4e-08, - "roset": 2.4e-08, - "rotatory": 2.4e-08, - "sadh": 2.4e-08, - "sandspit": 2.4e-08, - "saprophytic": 2.4e-08, - "scarn": 2.4e-08, - "scrofulous": 2.4e-08, - "seatrain": 2.4e-08, - "secularly": 2.4e-08, - "serpens": 2.4e-08, - "shirttail": 2.4e-08, - "shunter": 2.4e-08, - "sideslip": 2.4e-08, - "siping": 2.4e-08, - "sirian": 2.4e-08, - "smeary": 2.4e-08, - "smirky": 2.4e-08, - "snorter": 2.4e-08, - "sockless": 2.4e-08, - "solitarily": 2.4e-08, - "soothsaying": 2.4e-08, - "sovran": 2.4e-08, - "spieler": 2.4e-08, - "spirifer": 2.4e-08, - "springe": 2.4e-08, - "stanner": 2.4e-08, - "stilbene": 2.4e-08, - "stitchery": 2.4e-08, - "structuration": 2.4e-08, - "subjectivist": 2.4e-08, - "subra": 2.4e-08, - "superheroic": 2.4e-08, - "surcoat": 2.4e-08, - "syndactyly": 2.4e-08, - "taberna": 2.4e-08, - "tabulator": 2.4e-08, - "tachypnea": 2.4e-08, - "talak": 2.4e-08, - "tautness": 2.4e-08, - "taximeter": 2.4e-08, - "telephonist": 2.4e-08, - "teletherapy": 2.4e-08, - "tenantry": 2.4e-08, - "teratology": 2.4e-08, - "terseness": 2.4e-08, - "tetraplegia": 2.4e-08, - "tholos": 2.4e-08, - "throstle": 2.4e-08, - "tocher": 2.4e-08, - "tonsillar": 2.4e-08, - "truckle": 2.4e-08, - "trueness": 2.4e-08, - "trug": 2.4e-08, - "tuberculate": 2.4e-08, - "tungstate": 2.4e-08, - "tunner": 2.4e-08, - "twopenny": 2.4e-08, - "uncomfortableness": 2.4e-08, - "underpainting": 2.4e-08, - "ungratefully": 2.4e-08, - "unpossible": 2.4e-08, - "unreduced": 2.4e-08, - "unreviewed": 2.4e-08, - "unsparingly": 2.4e-08, - "untraced": 2.4e-08, - "usherette": 2.4e-08, - "utas": 1.51e-08, - "utricularia": 2.4e-08, - "warpage": 2.4e-08, - "washery": 2.4e-08, - "weldable": 2.4e-08, - "werf": 2.4e-08, - "wollastonite": 2.4e-08, - "wounder": 2.4e-08, - "yellowlegs": 2.4e-08, - "yellowness": 2.4e-08, - "zoysia": 2.4e-08, - "aconitine": 2.34e-08, - "acromial": 2.34e-08, - "adhesiveness": 2.34e-08, - "aftertouch": 2.34e-08, - "albyn": 2.34e-08, - "amain": 2.34e-08, - "amelanchier": 2.34e-08, - "analyzation": 2.34e-08, - "anarch": 2.34e-08, - "angelically": 2.34e-08, - "antenor": 2.34e-08, - "arbela": 2.34e-08, - "armorican": 2.34e-08, - "asteroidal": 2.34e-08, - "auspice": 2.34e-08, - "autosuggestion": 2.34e-08, - "awing": 2.34e-08, - "ballasting": 2.34e-08, - "bathysphere": 2.34e-08, - "battlemented": 2.34e-08, - "beldam": 2.34e-08, - "belgae": 2.34e-08, - "bestride": 2.34e-08, - "betatron": 2.34e-08, - "bhagavat": 2.34e-08, - "bibliotherapy": 2.34e-08, - "biodynamics": 2.34e-08, - "biosocial": 2.34e-08, - "bipinnate": 2.34e-08, - "bipyridine": 2.34e-08, - "blackland": 2.34e-08, - "blenny": 2.34e-08, - "bloomy": 2.34e-08, - "botfly": 2.34e-08, - "brambly": 2.34e-08, - "brassicaceae": 2.34e-08, - "breadmaking": 2.34e-08, - "breeching": 2.34e-08, - "brighid": 2.34e-08, - "britannian": 2.34e-08, - "bucktail": 2.34e-08, - "bunya": 2.34e-08, - "cachalot": 2.34e-08, - "canossa": 2.34e-08, - "canthal": 2.34e-08, - "carambola": 2.34e-08, - "carnassial": 2.34e-08, - "cartload": 2.34e-08, - "charadrius": 2.34e-08, - "cholesteryl": 2.34e-08, - "christmastide": 2.34e-08, - "chytrid": 2.34e-08, - "citrin": 2.34e-08, - "cogitate": 2.34e-08, - "cogitation": 2.34e-08, - "colias": 2.34e-08, - "colonelcy": 2.34e-08, - "colorimetry": 2.34e-08, - "comfortless": 2.34e-08, - "compatibly": 2.34e-08, - "concurso": 2.34e-08, - "consistorial": 2.34e-08, - "contentiousness": 2.34e-08, - "cracky": 2.34e-08, - "crammer": 2.34e-08, - "creolization": 2.34e-08, - "crowl": 2.34e-08, - "crystallin": 2.34e-08, - "dedan": 2.34e-08, - "deducible": 2.34e-08, - "deerwood": 2.34e-08, - "denationalization": 2.34e-08, - "dendron": 2.34e-08, - "deservingly": 2.34e-08, - "deul": 2.34e-08, - "diaconal": 2.34e-08, - "diffusible": 2.34e-08, - "dinosauria": 2.34e-08, - "dioscuri": 2.34e-08, - "disaffiliation": 2.34e-08, - "disarticulation": 2.34e-08, - "disjuncture": 2.34e-08, - "dissolver": 2.34e-08, - "ducato": 2.34e-08, - "dustless": 2.34e-08, - "ejectment": 2.34e-08, - "elephanta": 2.34e-08, - "enactor": 2.34e-08, - "endocardial": 2.34e-08, - "endomorphism": 2.34e-08, - "enfeeble": 2.34e-08, - "ense": 2.34e-08, - "epact": 2.34e-08, - "erythrina": 2.34e-08, - "evolutional": 2.34e-08, - "eyer": 2.34e-08, - "fascisti": 2.34e-08, - "feer": 2.34e-08, - "fibromatosis": 2.34e-08, - "fidele": 2.34e-08, - "fireboy": 2.34e-08, - "fishable": 2.34e-08, - "floriferous": 2.34e-08, - "flowable": 2.34e-08, - "fraise": 2.34e-08, - "gadge": 2.34e-08, - "gadzooks": 2.34e-08, - "gingersnap": 2.34e-08, - "glagolitic": 2.34e-08, - "glossiness": 2.34e-08, - "godkin": 2.34e-08, - "golpe": 2.34e-08, - "gwine": 2.34e-08, - "gyrfalcon": 2.34e-08, - "gyromagnetic": 2.34e-08, - "habitant": 2.34e-08, - "haggler": 2.34e-08, - "hemoglobinuria": 2.34e-08, - "hereunto": 2.34e-08, - "hippocampi": 2.34e-08, - "homotopic": 2.34e-08, - "hungaria": 2.34e-08, - "hydrocyanic": 2.34e-08, - "hyperacute": 2.34e-08, - "hypoxanthine": 2.34e-08, - "iamb": 2.34e-08, - "idola": 2.34e-08, - "idyl": 2.34e-08, - "impersonality": 2.34e-08, - "imperviousness": 2.34e-08, - "impoliteness": 2.34e-08, - "impudently": 2.34e-08, - "imputable": 2.34e-08, - "inauspiciously": 2.34e-08, - "indecisively": 2.34e-08, - "indeclinable": 2.34e-08, - "indehiscent": 2.34e-08, - "indiction": 2.34e-08, - "infiltrative": 2.34e-08, - "influentially": 2.34e-08, - "inlander": 2.34e-08, - "invalidly": 2.34e-08, - "isogenic": 2.34e-08, - "janua": 2.34e-08, - "jarra": 2.34e-08, - "jocund": 2.34e-08, - "joll": 2.34e-08, - "kermes": 2.34e-08, - "kette": 2.34e-08, - "khazarian": 2.34e-08, - "khet": 2.34e-08, - "knavery": 2.34e-08, - "kneeler": 2.34e-08, - "kojiki": 2.34e-08, - "kurung": 2.34e-08, - "labrusca": 2.34e-08, - "leitmotiv": 2.34e-08, - "lekha": 2.34e-08, - "lepra": 2.34e-08, - "limekiln": 2.34e-08, - "liquidambar": 2.34e-08, - "liverwort": 2.34e-08, - "longways": 2.34e-08, - "ludicrousness": 2.34e-08, - "lunisolar": 2.34e-08, - "manlike": 2.34e-08, - "masticate": 2.34e-08, - "megaloblastic": 2.34e-08, - "melanoplus": 2.34e-08, - "metonym": 2.34e-08, - "micropterus": 2.34e-08, - "microtia": 2.34e-08, - "millennialism": 2.34e-08, - "monophasic": 2.34e-08, - "morisco": 2.34e-08, - "mudde": 2.34e-08, - "mulish": 2.34e-08, - "munga": 2.34e-08, - "murza": 2.34e-08, - "muscarine": 2.34e-08, - "musico": 2.34e-08, - "muskat": 2.34e-08, - "muter": 2.34e-08, - "myelomeningocele": 2.34e-08, - "myogenesis": 2.34e-08, - "myosotis": 2.34e-08, - "mythopoeic": 2.34e-08, - "nannette": 2.34e-08, - "navigant": 2.34e-08, - "nesh": 2.34e-08, - "niggard": 2.34e-08, - "nightman": 2.34e-08, - "noctiluca": 2.34e-08, - "nondefense": 2.34e-08, - "nonius": 2.34e-08, - "nosegay": 2.34e-08, - "olid": 2.34e-08, - "onsight": 2.34e-08, - "opposit": 2.34e-08, - "oraon": 2.34e-08, - "outbred": 2.34e-08, - "oxer": 2.34e-08, - "palled": 2.34e-08, - "palus": 2.34e-08, - "paralyzer": 2.34e-08, - "paronychia": 2.34e-08, - "pathless": 2.34e-08, - "patristics": 2.34e-08, - "pedology": 2.34e-08, - "pekan": 2.34e-08, - "phantasmagorical": 2.34e-08, - "phenylene": 2.34e-08, - "philomath": 2.34e-08, - "phoma": 2.34e-08, - "phosphonic": 2.34e-08, - "photogram": 2.34e-08, - "phytopathological": 2.34e-08, - "pigmentary": 2.34e-08, - "pinacoteca": 2.34e-08, - "pitilessly": 2.34e-08, - "planaria": 2.34e-08, - "pledget": 2.34e-08, - "plicate": 2.34e-08, - "polarimetry": 2.34e-08, - "polydactyl": 2.34e-08, - "pondo": 2.34e-08, - "postposition": 2.34e-08, - "pozzolanic": 2.34e-08, - "precuneus": 2.34e-08, - "prehension": 2.34e-08, - "preponderantly": 2.34e-08, - "pressel": 2.34e-08, - "preventively": 2.34e-08, - "profitless": 2.34e-08, - "proprietorial": 2.34e-08, - "protomartyr": 2.34e-08, - "punctiliously": 2.34e-08, - "pyridinium": 2.34e-08, - "quadratics": 2.34e-08, - "quickset": 2.34e-08, - "quietist": 2.34e-08, - "raffinose": 2.34e-08, - "raptorial": 2.34e-08, - "readdress": 2.34e-08, - "recommand": 2.34e-08, - "redivivus": 2.34e-08, - "refold": 2.34e-08, - "regrind": 2.34e-08, - "reinterment": 2.34e-08, - "remold": 2.34e-08, - "roer": 2.34e-08, - "saccharification": 2.34e-08, - "sagra": 2.34e-08, - "salamandra": 2.34e-08, - "salvager": 2.34e-08, - "sarcomere": 2.34e-08, - "sauerbraten": 2.34e-08, - "sauf": 2.34e-08, - "scaffolder": 2.34e-08, - "scarabaeidae": 2.34e-08, - "scottishness": 2.34e-08, - "sech": 2.34e-08, - "sermo": 2.34e-08, - "seron": 2.34e-08, - "sharpy": 2.34e-08, - "shavian": 2.34e-08, - "sigatoka": 2.34e-08, - "slusher": 2.34e-08, - "smalltime": 2.34e-08, - "solanine": 2.34e-08, - "solipsist": 2.34e-08, - "spermidine": 2.34e-08, - "spiritedly": 2.34e-08, - "springiness": 2.34e-08, - "standage": 2.34e-08, - "starbright": 2.34e-08, - "storax": 2.34e-08, - "strongyloides": 2.34e-08, - "subhumid": 2.34e-08, - "sublicense": 2.34e-08, - "supercargo": 2.34e-08, - "swagman": 2.34e-08, - "swimmy": 2.34e-08, - "tablespoonful": 2.34e-08, - "tenino": 2.34e-08, - "termer": 2.34e-08, - "tetrahedrally": 2.34e-08, - "textuality": 2.34e-08, - "tezcatlipoca": 2.34e-08, - "thankee": 2.34e-08, - "theatric": 2.34e-08, - "theorization": 2.34e-08, - "thighed": 2.34e-08, - "thujone": 2.34e-08, - "thumbscrew": 2.34e-08, - "tolstoyan": 2.34e-08, - "towny": 2.34e-08, - "towser": 2.34e-08, - "transplantable": 2.34e-08, - "tubig": 2.34e-08, - "tunga": 2.34e-08, - "turb": 2.34e-08, - "turtling": 2.34e-08, - "uncap": 2.34e-08, - "unclosed": 2.34e-08, - "uncooled": 2.34e-08, - "undercliff": 2.34e-08, - "underclothing": 2.34e-08, - "underlaid": 2.34e-08, - "underlayer": 2.34e-08, - "unenhanced": 2.34e-08, - "ungraspable": 2.34e-08, - "unguardable": 2.34e-08, - "uniate": 2.34e-08, - "uniformitarianism": 2.34e-08, - "unleased": 2.34e-08, - "unmyelinated": 2.34e-08, - "unplanted": 2.34e-08, - "unversed": 2.34e-08, - "vadose": 2.34e-08, - "vengefully": 2.34e-08, - "veratrum": 2.34e-08, - "voluntariness": 2.34e-08, - "voluptuously": 2.34e-08, - "waldenses": 2.34e-08, - "wallon": 2.34e-08, - "wheezer": 2.34e-08, - "whoreson": 2.34e-08, - "wideness": 2.34e-08, - "wimble": 2.34e-08, - "wiseacre": 2.34e-08, - "yadava": 2.34e-08, - "zoisite": 2.34e-08, - "abdiel": 2.29e-08, - "abhorring": 2.29e-08, - "advancer": 2.29e-08, - "affixation": 2.29e-08, - "afifi": 2.29e-08, - "agnate": 2.29e-08, - "alabamian": 2.29e-08, - "alca": 2.29e-08, - "aldose": 2.29e-08, - "aloma": 2.29e-08, - "anastasis": 2.29e-08, - "andamanese": 2.29e-08, - "andrena": 2.29e-08, - "ankylosaurus": 2.29e-08, - "annelida": 2.29e-08, - "anorthosite": 2.29e-08, - "antipathetic": 2.29e-08, - "appropriator": 2.29e-08, - "aptness": 2.29e-08, - "arado": 2.29e-08, - "arioso": 2.29e-08, - "artisanship": 2.29e-08, - "artocarpus": 2.29e-08, - "asklepios": 2.29e-08, - "aslant": 2.29e-08, - "assimilative": 2.29e-08, - "autarkic": 2.29e-08, - "autochrome": 2.29e-08, - "autorotation": 2.29e-08, - "azelaic": 2.29e-08, - "azole": 2.29e-08, - "bailor": 2.29e-08, - "bassie": 2.29e-08, - "benison": 2.29e-08, - "benzylpenicillin": 2.29e-08, - "bicameralism": 2.29e-08, - "bija": 2.29e-08, - "bilharzia": 2.29e-08, - "bimanual": 2.29e-08, - "blastula": 2.29e-08, - "bloomery": 2.29e-08, - "boorishness": 2.29e-08, - "brachialis": 2.29e-08, - "briner": 2.29e-08, - "bucker": 2.29e-08, - "bullnose": 2.29e-08, - "bureaucratization": 2.29e-08, - "cairene": 2.29e-08, - "callo": 2.29e-08, - "catchword": 2.29e-08, - "cecrops": 2.29e-08, - "cense": 2.29e-08, - "chaparro": 2.29e-08, - "chatta": 2.29e-08, - "chronicity": 2.29e-08, - "cincher": 2.29e-08, - "cleavable": 2.29e-08, - "cloudscape": 2.29e-08, - "coccidia": 2.29e-08, - "codirector": 2.29e-08, - "coloboma": 2.29e-08, - "complaisant": 2.29e-08, - "confliction": 2.29e-08, - "confucianist": 2.29e-08, - "conjecturally": 2.29e-08, - "cotch": 2.29e-08, - "coviello": 2.29e-08, - "cozily": 2.29e-08, - "cresset": 2.29e-08, - "cribriform": 2.29e-08, - "cucurbitaceae": 2.29e-08, - "curiosa": 2.29e-08, - "curule": 2.29e-08, - "damayanti": 2.29e-08, - "danian": 2.29e-08, - "daut": 2.29e-08, - "deepfreeze": 2.29e-08, - "defectively": 2.29e-08, - "delectably": 2.29e-08, - "demagnetization": 2.29e-08, - "dentifrice": 2.29e-08, - "dimittis": 2.29e-08, - "diplegia": 2.29e-08, - "discharger": 2.29e-08, - "disenchant": 2.29e-08, - "disinterment": 2.29e-08, - "dotterel": 2.29e-08, - "druidry": 2.29e-08, - "duenna": 2.29e-08, - "echinus": 2.29e-08, - "elymus": 2.29e-08, - "embracement": 2.29e-08, - "erwinia": 2.29e-08, - "esquiline": 2.29e-08, - "euryalus": 2.29e-08, - "exhilarate": 2.29e-08, - "expectoration": 2.29e-08, - "ferling": 2.29e-08, - "fervency": 2.29e-08, - "fireboat": 2.29e-08, - "flagger": 2.29e-08, - "flivver": 2.29e-08, - "fordable": 2.29e-08, - "forgiver": 2.29e-08, - "forkhead": 2.29e-08, - "fornicated": 2.29e-08, - "gabion": 2.29e-08, - "galenic": 2.29e-08, - "garderobe": 2.29e-08, - "geebung": 2.29e-08, - "goldhammer": 2.29e-08, - "goofily": 2.29e-08, - "gossiper": 2.29e-08, - "gradgrind": 2.29e-08, - "grasper": 2.29e-08, - "gratiano": 2.29e-08, - "gritstone": 2.29e-08, - "guncotton": 2.29e-08, - "hackery": 2.29e-08, - "hammerless": 2.29e-08, - "harbi": 2.29e-08, - "hastiness": 2.29e-08, - "hawse": 2.29e-08, - "heliacal": 2.29e-08, - "hezron": 2.29e-08, - "highhanded": 2.29e-08, - "horehound": 2.29e-08, - "hummocky": 2.29e-08, - "hyle": 2.29e-08, - "idalia": 2.29e-08, - "ideomotor": 2.29e-08, - "imide": 2.29e-08, - "improvable": 2.29e-08, - "individua": 2.29e-08, - "infibulation": 2.29e-08, - "intravaginal": 2.29e-08, - "jerkiness": 2.29e-08, - "kittles": 2.29e-08, - "kulturkampf": 2.29e-08, - "kuman": 2.29e-08, - "kundry": 2.29e-08, - "labdanum": 2.29e-08, - "lagoonal": 2.29e-08, - "lammer": 2.29e-08, - "laryngology": 2.29e-08, - "lexicology": 2.29e-08, - "ligate": 2.29e-08, - "logographic": 2.29e-08, - "luri": 2.29e-08, - "malingerer": 2.29e-08, - "malonate": 2.29e-08, - "maynt": 2.29e-08, - "mediately": 2.29e-08, - "melisma": 2.29e-08, - "mentholated": 2.29e-08, - "microphysics": 2.29e-08, - "miscount": 2.29e-08, - "mistle": 2.29e-08, - "moil": 2.29e-08, - "molasse": 2.29e-08, - "monacan": 2.29e-08, - "mopsy": 2.29e-08, - "muktar": 2.29e-08, - "muser": 2.29e-08, - "nauplius": 2.29e-08, - "nazarite": 2.29e-08, - "necrophile": 2.29e-08, - "nephritic": 2.29e-08, - "neuropsychiatrist": 2.29e-08, - "nogal": 2.29e-08, - "noil": 2.29e-08, - "noncriminal": 2.29e-08, - "nonperformance": 2.29e-08, - "noseband": 2.29e-08, - "ogygia": 2.29e-08, - "orby": 2.29e-08, - "orchardist": 2.29e-08, - "orography": 2.29e-08, - "otoscope": 2.29e-08, - "overbridge": 2.29e-08, - "overexpose": 2.29e-08, - "overline": 2.29e-08, - "ownself": 2.29e-08, - "paleoclimatology": 2.29e-08, - "parboil": 2.29e-08, - "patronizingly": 2.29e-08, - "pattu": 2.29e-08, - "pearlite": 2.29e-08, - "peiser": 2.29e-08, - "penetratingly": 2.29e-08, - "permittee": 2.29e-08, - "phosphatic": 2.29e-08, - "photosensitizer": 2.29e-08, - "pipal": 2.29e-08, - "planisphere": 2.29e-08, - "postsurgical": 2.29e-08, - "privily": 2.29e-08, - "prodrome": 2.29e-08, - "prodromus": 2.29e-08, - "proscriptive": 2.29e-08, - "protonic": 2.29e-08, - "pseudonymously": 2.29e-08, - "psychopomp": 2.29e-08, - "pulchritude": 2.29e-08, - "pulvinar": 2.29e-08, - "pungently": 2.29e-08, - "quantitive": 2.29e-08, - "raggle": 2.29e-08, - "ratcatcher": 2.29e-08, - "rearwards": 2.29e-08, - "reclusion": 2.29e-08, - "recruitable": 2.29e-08, - "reflash": 2.29e-08, - "reflectometry": 2.29e-08, - "remilitarization": 2.29e-08, - "revisionary": 2.29e-08, - "revoltingly": 2.29e-08, - "rhinology": 2.29e-08, - "rotifer": 2.29e-08, - "rutaceae": 2.29e-08, - "sanctimoniously": 2.29e-08, - "santalum": 2.29e-08, - "sarcoid": 2.29e-08, - "sarif": 2.29e-08, - "sarod": 2.29e-08, - "scantly": 2.29e-08, - "scheelite": 2.29e-08, - "semilunar": 2.29e-08, - "severian": 2.29e-08, - "sexagenarian": 2.29e-08, - "shreeve": 2.29e-08, - "shrinker": 2.29e-08, - "sinuously": 2.29e-08, - "skandhas": 2.29e-08, - "skeel": 2.29e-08, - "sketchily": 2.29e-08, - "slank": 2.29e-08, - "sluttish": 2.29e-08, - "softhearted": 2.29e-08, - "solderless": 2.29e-08, - "songo": 2.29e-08, - "speel": 2.29e-08, - "spelunker": 2.29e-08, - "spiritualistic": 2.29e-08, - "stept": 2.29e-08, - "stodge": 2.29e-08, - "stonemasonry": 2.29e-08, - "strid": 2.29e-08, - "submaximal": 2.29e-08, - "subpanel": 2.29e-08, - "suckable": 2.29e-08, - "swith": 2.29e-08, - "symbolics": 2.29e-08, - "tachograph": 2.29e-08, - "tactlessly": 2.29e-08, - "tagal": 2.29e-08, - "tagetes": 2.29e-08, - "tangelo": 2.29e-08, - "tanha": 2.29e-08, - "temporizing": 2.29e-08, - "teosinte": 2.29e-08, - "terzo": 2.29e-08, - "testimonium": 2.29e-08, - "thionyl": 2.29e-08, - "thromboplastin": 2.29e-08, - "thunderstone": 2.29e-08, - "tideland": 2.29e-08, - "timar": 2.29e-08, - "tiresomely": 2.29e-08, - "triazine": 2.29e-08, - "trichophyton": 2.29e-08, - "trullo": 2.29e-08, - "trumpery": 2.29e-08, - "tumultuously": 2.29e-08, - "unbefitting": 2.29e-08, - "unbend": 2.29e-08, - "uncharitably": 2.29e-08, - "uncoded": 2.29e-08, - "unfashionably": 2.29e-08, - "unie": 2.29e-08, - "unmethylated": 2.29e-08, - "unmount": 2.29e-08, - "unpublishable": 2.29e-08, - "unquantified": 2.29e-08, - "unsayable": 2.29e-08, - "unsexed": 2.29e-08, - "unsterilized": 2.29e-08, - "unstretched": 2.29e-08, - "unswayed": 2.29e-08, - "unvented": 2.29e-08, - "valeriana": 2.29e-08, - "valiance": 2.29e-08, - "varanus": 2.29e-08, - "vedette": 2.29e-08, - "velutina": 2.29e-08, - "villein": 2.29e-08, - "vomitus": 2.29e-08, - "wearability": 2.29e-08, - "whitethorn": 2.29e-08, - "wingy": 2.29e-08, - "wyne": 2.29e-08, - "xerography": 2.29e-08, - "xerophytic": 2.29e-08, - "yeuk": 2.29e-08, - "abettor": 2.24e-08, - "acier": 2.24e-08, - "acipenser": 2.24e-08, - "acor": 2.24e-08, - "alpinism": 2.24e-08, - "altissimo": 2.24e-08, - "amidship": 2.24e-08, - "analogize": 2.24e-08, - "angiosarcoma": 2.24e-08, - "anthroposophical": 2.24e-08, - "anticlericalism": 2.24e-08, - "aonach": 2.24e-08, - "apathetically": 2.24e-08, - "archaically": 2.24e-08, - "asellus": 2.24e-08, - "atle": 2.24e-08, - "atraumatic": 2.24e-08, - "audion": 2.24e-08, - "autogiro": 2.24e-08, - "aviate": 2.24e-08, - "bacchante": 2.24e-08, - "backstay": 2.24e-08, - "bajada": 2.24e-08, - "bastardize": 2.24e-08, - "bogy": 2.24e-08, - "bondman": 2.24e-08, - "bookless": 2.24e-08, - "broadacre": 2.24e-08, - "brooked": 2.24e-08, - "bryophyte": 2.24e-08, - "bullishness": 2.24e-08, - "buoyantly": 2.24e-08, - "caam": 2.24e-08, - "caeca": 2.24e-08, - "calculatedly": 2.24e-08, - "calmy": 2.24e-08, - "carboxylation": 2.24e-08, - "cathro": 2.24e-08, - "ceder": 2.24e-08, - "chank": 2.24e-08, - "chokecherry": 2.24e-08, - "churching": 2.24e-08, - "circuitously": 2.24e-08, - "citral": 2.24e-08, - "coherer": 2.24e-08, - "collator": 2.24e-08, - "compter": 2.24e-08, - "conatus": 2.24e-08, - "condensable": 2.24e-08, - "congeneric": 2.24e-08, - "corrigenda": 2.24e-08, - "cretinism": 2.24e-08, - "crin": 2.24e-08, - "cryptanalyst": 2.24e-08, - "cryptogamic": 2.24e-08, - "crystallite": 2.24e-08, - "cuspid": 2.24e-08, - "dacoity": 2.24e-08, - "decrescendo": 2.24e-08, - "decretal": 2.24e-08, - "deedy": 2.24e-08, - "deporter": 2.24e-08, - "desmodium": 2.24e-08, - "despoliation": 2.24e-08, - "diddler": 2.24e-08, - "didelphis": 2.24e-08, - "digitaria": 2.24e-08, - "dipteran": 2.24e-08, - "disruptively": 2.24e-08, - "doeg": 2.24e-08, - "drabness": 2.24e-08, - "eche": 2.24e-08, - "echium": 2.24e-08, - "eclectically": 2.24e-08, - "efik": 2.24e-08, - "elementalist": 2.24e-08, - "elodea": 2.24e-08, - "empyreal": 2.24e-08, - "enjoyer": 2.24e-08, - "entracte": 2.24e-08, - "epigenetically": 2.24e-08, - "eria": 2.24e-08, - "ericaceous": 2.24e-08, - "etymologist": 2.24e-08, - "euphrasia": 2.24e-08, - "exculpation": 2.24e-08, - "extracranial": 2.24e-08, - "falangist": 2.24e-08, - "fibrillary": 2.24e-08, - "flatboat": 2.24e-08, - "fluorometer": 2.24e-08, - "foulard": 2.24e-08, - "freckly": 2.24e-08, - "fugacity": 2.24e-08, - "fundulus": 2.24e-08, - "furthermost": 2.24e-08, - "gangling": 2.24e-08, - "georgic": 2.24e-08, - "gerontocracy": 2.24e-08, - "gorry": 2.24e-08, - "greisen": 2.24e-08, - "gurmukhi": 2.24e-08, - "hardhearted": 2.24e-08, - "heathenry": 2.24e-08, - "hexapod": 2.24e-08, - "hieracium": 2.24e-08, - "hitlerism": 2.24e-08, - "homeliness": 2.24e-08, - "hominoid": 2.24e-08, - "hortatory": 2.24e-08, - "hydrobiology": 2.24e-08, - "hyperborean": 2.24e-08, - "hystrix": 2.24e-08, - "iconology": 2.24e-08, - "illustre": 2.24e-08, - "imprecation": 2.24e-08, - "incommunicable": 2.24e-08, - "indistinguishably": 2.24e-08, - "instructively": 2.24e-08, - "interrelatedness": 2.24e-08, - "intervener": 2.24e-08, - "jawab": 2.24e-08, - "jete": 2.24e-08, - "kishon": 2.24e-08, - "kokumin": 2.24e-08, - "kotwal": 2.24e-08, - "lathing": 2.24e-08, - "leatherworking": 2.24e-08, - "leuconostoc": 2.24e-08, - "lexia": 2.24e-08, - "limmer": 2.24e-08, - "logrolling": 2.24e-08, - "loxia": 2.24e-08, - "lymnaea": 2.24e-08, - "manitoban": 2.24e-08, - "mariola": 2.24e-08, - "metel": 2.24e-08, - "micaceous": 2.24e-08, - "miserliness": 2.24e-08, - "mislabel": 2.24e-08, - "modred": 2.24e-08, - "monkhood": 2.24e-08, - "nasality": 2.24e-08, - "nattily": 2.24e-08, - "nautch": 2.24e-08, - "nefariously": 2.24e-08, - "nominalist": 2.24e-08, - "nonconductive": 2.24e-08, - "nonduality": 2.24e-08, - "nullo": 2.24e-08, - "obnoxiousness": 2.24e-08, - "obstruent": 2.24e-08, - "oersted": 2.24e-08, - "ogpu": 2.24e-08, - "olivette": 2.24e-08, - "omental": 2.24e-08, - "orchester": 2.24e-08, - "ordure": 2.24e-08, - "orichalcum": 2.24e-08, - "originary": 2.24e-08, - "ouranos": 2.24e-08, - "outfight": 2.24e-08, - "overbear": 2.24e-08, - "paeonia": 2.24e-08, - "palmette": 2.24e-08, - "paranthropus": 2.24e-08, - "parliamentarianism": 2.24e-08, - "parodist": 2.24e-08, - "participator": 2.24e-08, - "passus": 2.24e-08, - "pearler": 2.24e-08, - "peccadillo": 2.24e-08, - "peracetic": 2.24e-08, - "percutaneously": 2.24e-08, - "peridium": 2.24e-08, - "perioral": 2.24e-08, - "philippic": 2.24e-08, - "photocatalysis": 2.24e-08, - "pilobolus": 2.24e-08, - "placentation": 2.24e-08, - "poltroon": 2.24e-08, - "polyanthus": 2.24e-08, - "precent": 2.24e-08, - "prevue": 2.24e-08, - "pricer": 2.24e-08, - "procuress": 2.24e-08, - "prostomium": 2.24e-08, - "protract": 2.24e-08, - "provitamin": 2.24e-08, - "pseudopod": 2.24e-08, - "pseudopodia": 2.24e-08, - "puppyhood": 2.24e-08, - "rareness": 2.24e-08, - "rascality": 2.24e-08, - "reasonability": 2.24e-08, - "reassume": 2.24e-08, - "rebelliously": 2.24e-08, - "recompute": 2.24e-08, - "recusancy": 2.24e-08, - "redtail": 2.24e-08, - "reimplantation": 2.24e-08, - "reiver": 2.24e-08, - "retable": 2.24e-08, - "ritornello": 2.24e-08, - "riving": 2.24e-08, - "rorqual": 2.24e-08, - "rotundo": 2.24e-08, - "roughen": 2.24e-08, - "rubiales": 2.24e-08, - "sacredly": 2.24e-08, - "saltation": 2.24e-08, - "samish": 2.24e-08, - "saronic": 2.24e-08, - "scaremonger": 2.24e-08, - "scenically": 2.24e-08, - "seadog": 2.24e-08, - "seismographic": 2.24e-08, - "serologically": 2.24e-08, - "serpentinization": 2.24e-08, - "shakha": 2.24e-08, - "sitten": 2.24e-08, - "sjaak": 2.24e-08, - "smarm": 2.24e-08, - "smily": 2.24e-08, - "sogdian": 2.24e-08, - "solicitously": 2.24e-08, - "sorb": 2.24e-08, - "sozin": 2.24e-08, - "spasmed": 2.24e-08, - "speleological": 2.24e-08, - "spermatozoon": 2.24e-08, - "spinneret": 2.24e-08, - "spinsterhood": 2.24e-08, - "stachys": 2.24e-08, - "stagy": 2.24e-08, - "stook": 2.24e-08, - "streptocarpus": 2.24e-08, - "strontian": 2.24e-08, - "subrace": 2.24e-08, - "sukey": 2.24e-08, - "sulfadiazine": 2.24e-08, - "supersensitive": 2.24e-08, - "suppurative": 2.24e-08, - "surpassingly": 2.24e-08, - "surra": 2.24e-08, - "surtout": 2.24e-08, - "swashbuckle": 2.24e-08, - "sympathectomy": 2.24e-08, - "synchronically": 2.24e-08, - "tangaroa": 2.24e-08, - "tasco": 2.24e-08, - "tegula": 2.24e-08, - "tentativeness": 2.24e-08, - "thaught": 2.24e-08, - "thwacking": 2.24e-08, - "tosspot": 2.24e-08, - "towable": 2.24e-08, - "transcaucasian": 2.24e-08, - "trebly": 2.24e-08, - "trichinella": 2.24e-08, - "trichrome": 2.24e-08, - "trinitrotoluene": 2.24e-08, - "trotty": 2.24e-08, - "trustless": 2.24e-08, - "tuckshop": 2.24e-08, - "turritella": 2.24e-08, - "twite": 2.24e-08, - "unacceptability": 2.24e-08, - "unbe": 2.24e-08, - "undischarged": 2.24e-08, - "unlevel": 2.24e-08, - "unordinary": 2.24e-08, - "unoriginality": 2.24e-08, - "unpracticed": 2.24e-08, - "unsatisfiable": 2.24e-08, - "unsaturation": 2.24e-08, - "utricle": 2.24e-08, - "velika": 2.24e-08, - "venturesome": 2.24e-08, - "verjuice": 2.24e-08, - "vertebrata": 2.24e-08, - "vichyssoise": 2.24e-08, - "vielle": 2.24e-08, - "waggy": 2.24e-08, - "woolsack": 2.24e-08, - "wouldest": 2.24e-08, - "wryneck": 2.24e-08, - "youngun": 2.24e-08, - "zouave": 2.24e-08, - "abutilon": 2.19e-08, - "adoniram": 2.19e-08, - "aerolite": 2.19e-08, - "affronting": 2.19e-08, - "aircraftman": 2.19e-08, - "alima": 2.19e-08, - "alky": 2.19e-08, - "amper": 2.19e-08, - "anthozoa": 2.19e-08, - "antlerless": 2.19e-08, - "apiarist": 2.19e-08, - "apophysis": 2.19e-08, - "arapaima": 2.19e-08, - "argiope": 2.19e-08, - "armload": 2.19e-08, - "arsis": 2.19e-08, - "athabascan": 2.19e-08, - "atropa": 2.19e-08, - "autocratically": 2.19e-08, - "ayyubid": 2.19e-08, - "backbite": 2.19e-08, - "backslider": 2.19e-08, - "backwashing": 2.19e-08, - "baith": 2.19e-08, - "balanus": 2.19e-08, - "balefully": 2.19e-08, - "bannered": 2.19e-08, - "beerhouse": 2.19e-08, - "benben": 2.19e-08, - "benzimidazole": 2.19e-08, - "bioclimatic": 2.19e-08, - "biosis": 2.19e-08, - "boatbuilder": 2.19e-08, - "bonderman": 2.19e-08, - "brassware": 2.19e-08, - "budh": 2.19e-08, - "buttermaker": 2.19e-08, - "calandria": 2.19e-08, - "calcar": 2.19e-08, - "canoodle": 2.19e-08, - "capitally": 2.19e-08, - "caprylic": 2.19e-08, - "captivation": 2.19e-08, - "carcharodon": 2.19e-08, - "carga": 2.19e-08, - "castalian": 2.19e-08, - "catastrophism": 2.19e-08, - "cavatina": 2.19e-08, - "cerambycidae": 2.19e-08, - "chalukya": 2.19e-08, - "chello": 2.19e-08, - "chirino": 2.19e-08, - "chyme": 2.19e-08, - "cineraria": 2.19e-08, - "collectivize": 2.19e-08, - "colonially": 2.19e-08, - "cravenly": 2.19e-08, - "creamware": 2.19e-08, - "crossness": 2.19e-08, - "crucian": 2.19e-08, - "cyanidin": 2.19e-08, - "cyanogenic": 2.19e-08, - "cyclohexanone": 2.19e-08, - "cytometer": 2.19e-08, - "danta": 2.19e-08, - "dashpot": 2.19e-08, - "delftware": 2.19e-08, - "denominationalism": 2.19e-08, - "departmentally": 2.19e-08, - "deuteronomistic": 2.19e-08, - "dinosaurian": 2.19e-08, - "discordantly": 2.19e-08, - "disinheritance": 2.19e-08, - "disinterestedness": 2.19e-08, - "drifty": 2.19e-08, - "drowse": 2.19e-08, - "drub": 2.19e-08, - "durani": 2.19e-08, - "ecdysis": 2.19e-08, - "elaborative": 2.19e-08, - "empirics": 2.19e-08, - "enlace": 2.19e-08, - "epididymal": 2.19e-08, - "examinable": 2.19e-08, - "felid": 2.19e-08, - "fermentor": 2.19e-08, - "fermentum": 2.19e-08, - "filching": 2.19e-08, - "firebolt": 2.19e-08, - "flavone": 2.19e-08, - "flavoprotein": 2.19e-08, - "fleay": 2.19e-08, - "floppers": 2.19e-08, - "florilegium": 2.19e-08, - "flummox": 2.19e-08, - "fundal": 2.19e-08, - "furbish": 2.19e-08, - "galey": 2.19e-08, - "gallian": 2.19e-08, - "gansey": 2.19e-08, - "gemination": 2.19e-08, - "ginner": 2.19e-08, - "grein": 2.19e-08, - "groundsel": 2.19e-08, - "gumma": 2.19e-08, - "gymnosperm": 2.19e-08, - "hairstreak": 2.19e-08, - "hant": 2.19e-08, - "harpa": 2.19e-08, - "harvestman": 2.19e-08, - "hastati": 2.19e-08, - "hatmaker": 2.19e-08, - "hawfinch": 2.19e-08, - "heartsease": 2.19e-08, - "hemocyanin": 2.19e-08, - "hepcat": 2.19e-08, - "horsehide": 2.19e-08, - "huso": 2.19e-08, - "hydrostatics": 2.19e-08, - "hyoscine": 2.19e-08, - "hyperemia": 2.19e-08, - "hypostyle": 2.19e-08, - "imagistic": 2.19e-08, - "impertinently": 2.19e-08, - "incog": 2.19e-08, - "indiscrete": 2.19e-08, - "indult": 2.19e-08, - "inkpot": 2.19e-08, - "inoffensively": 2.19e-08, - "institutionalist": 2.19e-08, - "investible": 2.19e-08, - "isoamyl": 2.19e-08, - "isoperimetric": 2.19e-08, - "jaggy": 2.19e-08, - "knavish": 2.19e-08, - "krama": 2.19e-08, - "laddered": 2.19e-08, - "laundryman": 2.19e-08, - "lobola": 2.19e-08, - "lokman": 2.19e-08, - "lunaria": 2.19e-08, - "maltman": 2.19e-08, - "malto": 2.19e-08, - "mangifera": 2.19e-08, - "marrowbone": 2.19e-08, - "meatworks": 2.19e-08, - "mesmerist": 2.19e-08, - "metalist": 2.19e-08, - "metonymically": 2.19e-08, - "microevolution": 2.19e-08, - "microsporidia": 2.19e-08, - "millenarianism": 2.19e-08, - "molucca": 2.19e-08, - "morganatic": 2.19e-08, - "morinda": 2.19e-08, - "mudfish": 2.19e-08, - "multivibrator": 2.19e-08, - "myoelectric": 2.19e-08, - "myristic": 2.19e-08, - "neckless": 2.19e-08, - "neotoma": 2.19e-08, - "nete": 2.19e-08, - "neutralism": 2.19e-08, - "nitzschia": 2.19e-08, - "nonfood": 2.19e-08, - "nonintervention": 2.19e-08, - "nonslip": 2.19e-08, - "noop": 2.19e-08, - "nucleoli": 2.19e-08, - "obduction": 2.19e-08, - "opaquely": 2.19e-08, - "orangeade": 2.19e-08, - "ossify": 2.19e-08, - "outgo": 2.19e-08, - "overindulgent": 2.19e-08, - "oxyacetylene": 2.19e-08, - "ozias": 2.19e-08, - "pabulum": 2.19e-08, - "palaeogene": 2.19e-08, - "parceling": 2.19e-08, - "patu": 2.19e-08, - "penni": 2.19e-08, - "pfund": 2.19e-08, - "phylactery": 2.19e-08, - "piecrust": 2.19e-08, - "pierian": 2.19e-08, - "pinda": 2.19e-08, - "pindari": 2.19e-08, - "plumbeous": 2.19e-08, - "politesse": 2.19e-08, - "poller": 2.19e-08, - "positivistic": 2.19e-08, - "principium": 2.19e-08, - "pteris": 2.19e-08, - "ptomaine": 2.19e-08, - "pyrogenic": 2.19e-08, - "pyrrhotite": 2.19e-08, - "reacquisition": 2.19e-08, - "remanufacture": 2.19e-08, - "requin": 2.19e-08, - "responsorial": 2.19e-08, - "retie": 2.19e-08, - "rusin": 2.19e-08, - "saho": 2.19e-08, - "salishan": 2.19e-08, - "sampaloc": 2.19e-08, - "semiaquatic": 2.19e-08, - "serigraph": 2.19e-08, - "serosa": 2.19e-08, - "sexagesimal": 2.19e-08, - "shabbiness": 2.19e-08, - "shedder": 2.19e-08, - "shelduck": 2.19e-08, - "silversides": 2.19e-08, - "sinologist": 2.19e-08, - "sirree": 2.19e-08, - "slavey": 2.19e-08, - "sleeting": 2.19e-08, - "snappish": 2.19e-08, - "solidum": 2.19e-08, - "solubilize": 2.19e-08, - "spikenard": 2.19e-08, - "spirituous": 2.19e-08, - "squill": 2.19e-08, - "starlights": 1.35e-08, - "stonecrop": 2.19e-08, - "stonewood": 2.19e-08, - "striver": 2.19e-08, - "strombolian": 2.19e-08, - "submucosa": 2.19e-08, - "sundowning": 2.19e-08, - "syndical": 2.19e-08, - "tallish": 2.19e-08, - "tangie": 2.19e-08, - "tattooer": 2.19e-08, - "tercer": 2.19e-08, - "terrestrially": 2.19e-08, - "tertian": 2.19e-08, - "thimbleful": 2.19e-08, - "thoracolumbar": 2.19e-08, - "tocharian": 2.19e-08, - "toilsome": 2.19e-08, - "tooter": 2.19e-08, - "transparence": 2.19e-08, - "tribunate": 2.19e-08, - "troad": 2.19e-08, - "tropically": 2.19e-08, - "trueborn": 2.19e-08, - "truthy": 2.19e-08, - "tutty": 2.19e-08, - "twizzle": 2.19e-08, - "tyrannous": 2.19e-08, - "uncombed": 2.19e-08, - "uncountably": 2.19e-08, - "uncracked": 2.19e-08, - "uncuffed": 2.19e-08, - "unexecuted": 2.19e-08, - "unexplainably": 2.19e-08, - "unhand": 2.19e-08, - "unhedged": 2.19e-08, - "unpadded": 2.19e-08, - "unpresidential": 2.19e-08, - "unratified": 2.19e-08, - "unworried": 2.19e-08, - "unzen": 2.19e-08, - "upbraiding": 2.19e-08, - "uprightly": 2.19e-08, - "ureteric": 2.19e-08, - "vesical": 2.19e-08, - "vicissitude": 2.19e-08, - "viga": 2.19e-08, - "viscus": 2.19e-08, - "waise": 2.19e-08, - "whereer": 2.19e-08, - "whilom": 2.19e-08, - "whisp": 2.19e-08, - "yeth": 2.19e-08, - "abatis": 2.14e-08, - "addax": 2.14e-08, - "adjure": 2.14e-08, - "agentive": 2.14e-08, - "agio": 2.14e-08, - "amabel": 2.14e-08, - "amsel": 2.14e-08, - "anaplasmosis": 2.14e-08, - "andric": 2.14e-08, - "angelin": 2.14e-08, - "anglicization": 2.14e-08, - "anhedral": 2.14e-08, - "ankylosis": 2.14e-08, - "antemedial": 2.14e-08, - "antirheumatic": 2.14e-08, - "archfiend": 2.14e-08, - "aristeas": 2.14e-08, - "articulator": 2.14e-08, - "arundo": 2.14e-08, - "assiduity": 2.14e-08, - "atap": 2.14e-08, - "atmospherical": 2.14e-08, - "aurantium": 2.14e-08, - "baculum": 2.14e-08, - "balanitis": 2.14e-08, - "baric": 2.14e-08, - "barkey": 2.14e-08, - "barnstorm": 2.14e-08, - "betoken": 2.14e-08, - "bowfin": 2.14e-08, - "brahmanic": 2.14e-08, - "brandied": 2.14e-08, - "brasse": 2.14e-08, - "bumbler": 2.14e-08, - "caatinga": 2.14e-08, - "caravansary": 2.14e-08, - "castoreum": 2.14e-08, - "categoric": 2.14e-08, - "cateye": 2.14e-08, - "cellobiose": 2.14e-08, - "cenobite": 2.14e-08, - "chamaecyparis": 2.14e-08, - "chameleonic": 2.14e-08, - "chinar": 2.14e-08, - "cholesteric": 2.14e-08, - "cnidarian": 2.14e-08, - "coachbuilder": 2.14e-08, - "coltsfoot": 2.14e-08, - "commerciality": 2.14e-08, - "conciliating": 2.14e-08, - "congoleum": 2.14e-08, - "continuator": 2.14e-08, - "conventionalism": 2.14e-08, - "coppet": 2.14e-08, - "cosmogonic": 2.14e-08, - "counterflow": 2.14e-08, - "cremator": 2.14e-08, - "croatan": 2.14e-08, - "cruller": 2.14e-08, - "cumene": 2.14e-08, - "damselfish": 2.14e-08, - "dauntingly": 2.14e-08, - "decapoda": 2.14e-08, - "decolletage": 2.14e-08, - "decontrol": 2.14e-08, - "deformability": 2.14e-08, - "degrease": 2.14e-08, - "dermatosis": 2.14e-08, - "dhritarashtra": 2.14e-08, - "diametrical": 2.14e-08, - "discalced": 2.14e-08, - "disseminator": 2.14e-08, - "dotter": 2.14e-08, - "drayage": 2.14e-08, - "elate": 2.14e-08, - "elytron": 2.14e-08, - "emblazon": 2.14e-08, - "enkindle": 2.14e-08, - "ergotism": 2.14e-08, - "erucic": 2.14e-08, - "euphrosyne": 2.14e-08, - "exaggerator": 2.14e-08, - "extravascular": 2.14e-08, - "fagging": 2.14e-08, - "farseer": 2.14e-08, - "fiar": 2.14e-08, - "fireguard": 2.14e-08, - "flashiness": 2.14e-08, - "flicky": 2.14e-08, - "folkloristic": 2.14e-08, - "foolhardiness": 2.14e-08, - "gaboon": 2.14e-08, - "gallinule": 2.14e-08, - "gangan": 2.14e-08, - "gasholder": 2.14e-08, - "gastroschisis": 2.14e-08, - "gean": 2.14e-08, - "geomantic": 2.14e-08, - "gimel": 2.14e-08, - "grainer": 2.14e-08, - "grunter": 2.14e-08, - "hadrosaur": 2.14e-08, - "headstall": 2.14e-08, - "heliostat": 2.14e-08, - "henequen": 2.14e-08, - "heptagon": 2.14e-08, - "hish": 2.14e-08, - "hydric": 2.14e-08, - "hyperexcitability": 2.14e-08, - "ichthyological": 2.14e-08, - "immaturely": 2.14e-08, - "impenetrably": 2.14e-08, - "impishly": 2.14e-08, - "imposingly": 2.14e-08, - "inclinometer": 2.14e-08, - "incommensurability": 2.14e-08, - "incorporator": 2.14e-08, - "incorruption": 2.14e-08, - "indistinguishability": 2.14e-08, - "instrumentalism": 2.14e-08, - "intergrade": 2.14e-08, - "intracity": 2.14e-08, - "inversed": 2.14e-08, - "irrotational": 2.14e-08, - "jalousie": 2.14e-08, - "jingoist": 2.14e-08, - "kafa": 2.14e-08, - "karabagh": 2.14e-08, - "kella": 2.14e-08, - "keratoconjunctivitis": 2.14e-08, - "knoller": 2.14e-08, - "kunzite": 2.14e-08, - "lamiaceae": 2.14e-08, - "landaulet": 2.14e-08, - "lasi": 2.14e-08, - "latinization": 2.14e-08, - "lavant": 2.14e-08, - "leamer": 2.14e-08, - "lifelessness": 2.14e-08, - "limnological": 2.14e-08, - "lingually": 2.14e-08, - "linie": 2.14e-08, - "lipless": 2.14e-08, - "liriodendron": 2.14e-08, - "lunula": 2.14e-08, - "lusatian": 2.14e-08, - "luxuriousness": 2.14e-08, - "lyophilization": 2.14e-08, - "lysogenic": 2.14e-08, - "magicked": 2.14e-08, - "magistral": 2.14e-08, - "maidenly": 2.14e-08, - "malignantly": 2.14e-08, - "measurability": 2.14e-08, - "meleagris": 2.14e-08, - "methemoglobin": 2.14e-08, - "moed": 2.14e-08, - "monarda": 2.14e-08, - "morong": 2.14e-08, - "morphosis": 2.14e-08, - "multiplicatively": 2.14e-08, - "myopically": 2.14e-08, - "myriophyllum": 2.14e-08, - "nacionalista": 2.14e-08, - "nael": 2.14e-08, - "nagger": 2.14e-08, - "naturalistically": 2.14e-08, - "neoplatonist": 2.14e-08, - "ningpo": 2.14e-08, - "noninterference": 2.14e-08, - "nonresistance": 2.14e-08, - "numerosity": 2.14e-08, - "octoroon": 2.14e-08, - "onca": 2.14e-08, - "otiose": 2.14e-08, - "otosclerosis": 2.14e-08, - "overanxious": 2.14e-08, - "overawe": 2.14e-08, - "padfoot": 2.14e-08, - "palliate": 2.14e-08, - "palpal": 2.14e-08, - "pantagraph": 2.14e-08, - "pantalone": 2.14e-08, - "parah": 2.14e-08, - "parure": 2.14e-08, - "peahen": 2.14e-08, - "perambulate": 2.14e-08, - "perfectibility": 2.14e-08, - "permeant": 2.14e-08, - "peronospora": 2.14e-08, - "petcock": 2.14e-08, - "phenomenologically": 2.14e-08, - "phoria": 2.14e-08, - "phyllite": 2.14e-08, - "pianism": 2.14e-08, - "plecoptera": 2.14e-08, - "plumpy": 2.14e-08, - "polearm": 2.14e-08, - "portrayer": 2.14e-08, - "precipitator": 2.14e-08, - "preregister": 2.14e-08, - "prognosticate": 2.14e-08, - "pronator": 2.14e-08, - "prothesis": 2.14e-08, - "protista": 2.14e-08, - "protoplast": 2.14e-08, - "pyracantha": 2.14e-08, - "realizability": 2.14e-08, - "reassortment": 2.14e-08, - "reave": 2.14e-08, - "recompilation": 2.14e-08, - "recordation": 2.14e-08, - "recrudescence": 2.14e-08, - "relationality": 2.14e-08, - "repertorium": 2.14e-08, - "replan": 2.14e-08, - "repletion": 2.14e-08, - "reticulocyte": 2.14e-08, - "retranslation": 2.14e-08, - "rhamnose": 2.14e-08, - "rilly": 2.14e-08, - "riverway": 2.14e-08, - "roseola": 2.14e-08, - "sablefish": 2.14e-08, - "sacrificially": 2.14e-08, - "saltworks": 2.14e-08, - "sawah": 2.14e-08, - "sawbuck": 2.14e-08, - "scathe": 2.14e-08, - "scrutineer": 2.14e-08, - "semipalmated": 2.14e-08, - "septoria": 2.14e-08, - "seriatim": 2.14e-08, - "serpentis": 2.14e-08, - "shawwal": 2.14e-08, - "shirker": 2.14e-08, - "sigillum": 2.14e-08, - "skiddy": 2.14e-08, - "slewed": 2.14e-08, - "slitter": 2.14e-08, - "snappily": 2.14e-08, - "socius": 2.14e-08, - "sodic": 2.14e-08, - "sorites": 2.14e-08, - "sphincterotomy": 2.14e-08, - "spicewood": 2.14e-08, - "spoonerism": 2.14e-08, - "strub": 2.14e-08, - "suavity": 2.14e-08, - "subproblem": 2.14e-08, - "succinctness": 2.14e-08, - "suckage": 2.14e-08, - "summable": 2.14e-08, - "summand": 2.14e-08, - "sundog": 2.14e-08, - "synergic": 2.14e-08, - "synergist": 2.14e-08, - "syntonic": 2.14e-08, - "syzygium": 2.14e-08, - "tanach": 2.14e-08, - "tanh": 2.14e-08, - "tappen": 2.14e-08, - "tarras": 2.14e-08, - "taxodium": 2.14e-08, - "telang": 2.14e-08, - "telegu": 2.14e-08, - "teth": 2.14e-08, - "tetracyclic": 2.14e-08, - "tetrameric": 2.14e-08, - "tetrarchy": 2.14e-08, - "teucer": 2.14e-08, - "thermodynamical": 2.14e-08, - "tigrina": 2.14e-08, - "tirthankara": 2.14e-08, - "tonalist": 2.14e-08, - "torontonian": 2.14e-08, - "towy": 2.14e-08, - "traceless": 2.14e-08, - "transportability": 2.14e-08, - "triboelectric": 2.14e-08, - "tribolium": 2.14e-08, - "triethyl": 2.14e-08, - "tritonal": 2.14e-08, - "trypanosome": 2.14e-08, - "tsardom": 2.14e-08, - "tufan": 2.14e-08, - "tume": 2.14e-08, - "turkishness": 2.14e-08, - "twaddell": 2.14e-08, - "ugrian": 2.14e-08, - "ultramontane": 2.14e-08, - "unblinkingly": 2.14e-08, - "uncodified": 2.14e-08, - "undissolved": 2.14e-08, - "unembellished": 2.14e-08, - "unfoldment": 2.14e-08, - "unfriendliness": 2.14e-08, - "unguiculata": 2.14e-08, - "unimaginatively": 2.14e-08, - "unpunctual": 2.14e-08, - "unreliably": 2.14e-08, - "unring": 2.14e-08, - "unscratched": 2.14e-08, - "unsleeping": 2.14e-08, - "unsurmountable": 2.14e-08, - "untradeable": 2.14e-08, - "untruthfully": 2.14e-08, - "urbanize": 2.14e-08, - "urian": 2.14e-08, - "vacuously": 2.14e-08, - "valorize": 2.14e-08, - "veneering": 2.14e-08, - "veneti": 2.14e-08, - "vipera": 2.14e-08, - "visiter": 2.14e-08, - "vitaphone": 2.14e-08, - "volans": 2.14e-08, - "voluminously": 2.14e-08, - "wasat": 2.14e-08, - "webworm": 2.14e-08, - "weightiness": 2.14e-08, - "xanthium": 2.14e-08, - "yabby": 2.14e-08, - "yajnavalkya": 2.14e-08, - "yarran": 2.14e-08, - "yogin": 2.14e-08, - "zymogen": 2.14e-08, - "abbacy": 2.09e-08, - "abecedarian": 2.09e-08, - "absconder": 2.09e-08, - "acetamide": 2.09e-08, - "acquisitiveness": 2.09e-08, - "adipic": 2.09e-08, - "agathis": 2.09e-08, - "aghori": 2.09e-08, - "agistment": 2.09e-08, - "aglet": 2.09e-08, - "agrotis": 2.09e-08, - "alexian": 2.09e-08, - "alite": 2.09e-08, - "ambidexterity": 2.09e-08, - "ancha": 2.09e-08, - "anglophobia": 2.09e-08, - "ansu": 2.09e-08, - "aphididae": 2.09e-08, - "arytenoid": 2.09e-08, - "atonic": 2.09e-08, - "auditoria": 2.09e-08, - "avens": 2.09e-08, - "avicularia": 2.09e-08, - "aweek": 2.09e-08, - "backwood": 2.09e-08, - "balanta": 2.09e-08, - "bange": 2.09e-08, - "barouche": 2.09e-08, - "batatas": 2.09e-08, - "befoul": 2.09e-08, - "beleave": 2.09e-08, - "belittlement": 2.09e-08, - "benu": 2.09e-08, - "bestir": 2.09e-08, - "bigha": 2.09e-08, - "boastfulness": 2.09e-08, - "borana": 2.09e-08, - "brickle": 2.09e-08, - "buccinator": 2.09e-08, - "calanthe": 2.09e-08, - "calcarea": 2.09e-08, - "camelus": 2.09e-08, - "cameral": 2.09e-08, - "canalization": 2.09e-08, - "carbinol": 2.09e-08, - "cartographical": 2.09e-08, - "caudata": 2.09e-08, - "cercopithecus": 2.09e-08, - "charry": 2.09e-08, - "chatterer": 2.09e-08, - "chivalrously": 2.09e-08, - "circularize": 2.09e-08, - "citified": 2.09e-08, - "clag": 2.09e-08, - "claustrum": 2.09e-08, - "cognatic": 2.09e-08, - "colombier": 2.09e-08, - "complacence": 2.09e-08, - "composita": 2.09e-08, - "cookstove": 2.09e-08, - "corf": 2.09e-08, - "corrente": 2.09e-08, - "culicidae": 2.09e-08, - "culpably": 2.09e-08, - "cuniculus": 2.09e-08, - "cyclohexene": 2.09e-08, - "dannebrog": 2.09e-08, - "decembrist": 2.09e-08, - "decomposer": 2.09e-08, - "dedicatee": 2.09e-08, - "deodorize": 2.09e-08, - "deprecatory": 2.09e-08, - "descry": 2.09e-08, - "dhai": 2.09e-08, - "didna": 2.09e-08, - "diselenide": 2.09e-08, - "dishrag": 2.09e-08, - "disinter": 2.09e-08, - "dogcatcher": 2.09e-08, - "donax": 2.09e-08, - "dooryard": 2.09e-08, - "dramaturge": 2.09e-08, - "dropwise": 2.09e-08, - "duffing": 2.09e-08, - "dunkard": 2.09e-08, - "ependymoma": 2.09e-08, - "equinus": 2.09e-08, - "equipartition": 2.09e-08, - "estival": 2.09e-08, - "euxine": 2.09e-08, - "eyn": 2.09e-08, - "fasher": 2.09e-08, - "ferial": 2.09e-08, - "fidalgo": 2.09e-08, - "fishless": 2.09e-08, - "fluidization": 2.09e-08, - "footlight": 2.09e-08, - "frot": 2.09e-08, - "gadus": 2.09e-08, - "gametogenesis": 2.09e-08, - "gantlet": 2.09e-08, - "garum": 2.09e-08, - "gaulin": 2.09e-08, - "genizah": 2.09e-08, - "genua": 2.09e-08, - "graphis": 2.09e-08, - "grapnel": 2.09e-08, - "gravimeter": 2.09e-08, - "greenkeeper": 2.09e-08, - "greenstuff": 2.09e-08, - "grillwork": 2.09e-08, - "grizel": 2.09e-08, - "grotesquerie": 2.09e-08, - "guara": 2.09e-08, - "haddie": 2.09e-08, - "hauberk": 2.09e-08, - "headsail": 2.09e-08, - "hegira": 2.09e-08, - "herbicidal": 2.09e-08, - "hertzian": 2.09e-08, - "heterochromatic": 2.09e-08, - "hided": 2.09e-08, - "hirondelle": 2.09e-08, - "hobnailed": 2.09e-08, - "hollowly": 2.09e-08, - "hydrus": 2.09e-08, - "iciness": 2.09e-08, - "incept": 2.09e-08, - "interchurch": 2.09e-08, - "interestingness": 2.09e-08, - "iranic": 2.09e-08, - "irremovable": 2.09e-08, - "jabot": 2.09e-08, - "jackanapes": 2.09e-08, - "jayesh": 2.09e-08, - "kambal": 2.09e-08, - "lagger": 2.09e-08, - "limper": 2.09e-08, - "limulus": 2.09e-08, - "lungworm": 2.09e-08, - "lynnhaven": 2.09e-08, - "maba": 2.09e-08, - "macrosomia": 2.09e-08, - "manege": 2.09e-08, - "manumit": 2.09e-08, - "marrano": 2.09e-08, - "mastaba": 2.09e-08, - "medallic": 2.09e-08, - "meibomian": 2.09e-08, - "melanism": 2.09e-08, - "melismatic": 2.09e-08, - "meningococcus": 2.09e-08, - "mesially": 2.09e-08, - "metaphyseal": 2.09e-08, - "microphysical": 2.09e-08, - "millefiori": 2.09e-08, - "missable": 2.09e-08, - "molybdenite": 2.09e-08, - "moneylending": 2.09e-08, - "moonface": 2.09e-08, - "morcellation": 2.09e-08, - "motoric": 2.09e-08, - "murga": 2.09e-08, - "murre": 2.09e-08, - "mycotic": 2.09e-08, - "nabatean": 2.09e-08, - "natterjack": 2.09e-08, - "naturalizer": 2.09e-08, - "nomological": 2.09e-08, - "nowness": 2.09e-08, - "obtainment": 2.09e-08, - "osteolytic": 2.09e-08, - "osteopetrosis": 2.09e-08, - "outhit": 2.09e-08, - "overlock": 2.09e-08, - "oversubscription": 2.09e-08, - "oxygenic": 2.09e-08, - "pandarus": 2.09e-08, - "pantomimic": 2.09e-08, - "pantothenate": 2.09e-08, - "passingly": 2.09e-08, - "pedimented": 2.09e-08, - "pelorus": 2.09e-08, - "perdix": 2.09e-08, - "phiz": 2.09e-08, - "photosynthetically": 2.09e-08, - "piner": 2.09e-08, - "piperine": 2.09e-08, - "pixilation": 2.09e-08, - "plantsman": 2.09e-08, - "polarizable": 2.09e-08, - "polyphyletic": 2.09e-08, - "poney": 2.09e-08, - "portlet": 2.09e-08, - "portway": 2.09e-08, - "preconference": 2.09e-08, - "prematch": 2.09e-08, - "premillennialism": 2.09e-08, - "promethea": 2.09e-08, - "pteropus": 2.09e-08, - "pueraria": 2.09e-08, - "purposively": 2.09e-08, - "pursley": 2.09e-08, - "pyromancer": 2.09e-08, - "quarryman": 2.09e-08, - "quiddity": 2.09e-08, - "quinary": 2.09e-08, - "reinstitution": 2.09e-08, - "remanent": 2.09e-08, - "remeasurement": 2.09e-08, - "replantation": 2.09e-08, - "reproachfully": 2.09e-08, - "requalification": 2.09e-08, - "resina": 2.09e-08, - "resurvey": 2.09e-08, - "resuscitative": 2.09e-08, - "reversely": 2.09e-08, - "risala": 2.09e-08, - "roquet": 2.09e-08, - "ruche": 2.09e-08, - "rumbler": 2.09e-08, - "ryot": 2.09e-08, - "safeness": 2.09e-08, - "saucerful": 2.09e-08, - "scatterer": 2.09e-08, - "scorebook": 2.09e-08, - "seriation": 2.09e-08, - "shaddock": 2.09e-08, - "shedded": 2.09e-08, - "shilluk": 2.09e-08, - "shipway": 2.09e-08, - "sickler": 2.09e-08, - "sier": 2.09e-08, - "silphium": 2.09e-08, - "silverwork": 2.09e-08, - "singlehood": 2.09e-08, - "siwash": 2.09e-08, - "slashy": 2.09e-08, - "smashup": 2.09e-08, - "solea": 2.09e-08, - "solenopsis": 2.09e-08, - "somatization": 2.09e-08, - "sonification": 2.09e-08, - "sopor": 2.09e-08, - "sosh": 2.09e-08, - "sothis": 2.09e-08, - "spart": 2.09e-08, - "squamata": 2.09e-08, - "stableman": 2.09e-08, - "stramonium": 2.09e-08, - "strati": 2.09e-08, - "subglobose": 2.09e-08, - "sublinear": 2.09e-08, - "subquadrate": 2.09e-08, - "suer": 2.09e-08, - "sunlamp": 2.09e-08, - "sunsetting": 2.09e-08, - "supai": 2.09e-08, - "tahsildar": 2.09e-08, - "talukdar": 2.09e-08, - "teleostei": 2.09e-08, - "temne": 2.09e-08, - "tepidly": 2.09e-08, - "thebaine": 2.09e-08, - "tillerman": 2.09e-08, - "tiltable": 2.09e-08, - "tolerantly": 2.09e-08, - "tonkinese": 2.09e-08, - "tornillo": 2.09e-08, - "tortuosity": 2.09e-08, - "towelette": 2.09e-08, - "tractability": 2.09e-08, - "trifid": 2.09e-08, - "trigona": 2.09e-08, - "trimeter": 2.09e-08, - "troche": 2.09e-08, - "unassertive": 2.09e-08, - "unassimilated": 2.09e-08, - "undersupply": 2.09e-08, - "undrained": 2.09e-08, - "unemotionally": 2.09e-08, - "unexpanded": 2.09e-08, - "unfaithfully": 2.09e-08, - "unostentatious": 2.09e-08, - "unprosecuted": 2.09e-08, - "unrhymed": 2.09e-08, - "unroasted": 2.09e-08, - "unroot": 2.09e-08, - "unshelled": 2.09e-08, - "untaught": 2.09e-08, - "untrainable": 2.09e-08, - "upholster": 2.09e-08, - "velella": 2.09e-08, - "vengefulness": 2.09e-08, - "verdin": 2.09e-08, - "vibronic": 2.09e-08, - "volscian": 2.09e-08, - "vomeronasal": 2.09e-08, - "votary": 2.09e-08, - "werebear": 2.09e-08, - "wolframite": 2.09e-08, - "worktime": 2.09e-08, - "wurtzite": 2.09e-08, - "yellowbird": 2.09e-08, - "abstractionist": 2.04e-08, - "acculturate": 2.04e-08, - "acridine": 2.04e-08, - "acron": 2.04e-08, - "acrosome": 2.04e-08, - "actinolite": 2.04e-08, - "adharma": 2.04e-08, - "agraphia": 2.04e-08, - "alemanni": 2.04e-08, - "alphard": 2.04e-08, - "ambassadeur": 2.04e-08, - "ameliorative": 2.04e-08, - "amerind": 2.04e-08, - "andron": 2.04e-08, - "angelology": 2.04e-08, - "anhinga": 2.04e-08, - "annalist": 2.04e-08, - "annulata": 2.04e-08, - "anomala": 2.04e-08, - "apium": 2.04e-08, - "apodosis": 2.04e-08, - "architectonics": 2.04e-08, - "areolar": 2.04e-08, - "articulata": 2.04e-08, - "autocephaly": 2.04e-08, - "autoloading": 2.04e-08, - "autrefois": 2.04e-08, - "awakener": 2.04e-08, - "babbie": 2.04e-08, - "bandsman": 2.04e-08, - "bathonian": 2.04e-08, - "bearberry": 2.04e-08, - "bellbird": 2.04e-08, - "benumbed": 2.04e-08, - "betterer": 2.04e-08, - "bibulous": 2.04e-08, - "bicolored": 2.04e-08, - "billhook": 2.04e-08, - "bluffer": 2.04e-08, - "bolthole": 2.04e-08, - "boxman": 2.04e-08, - "branta": 2.04e-08, - "bronchoscope": 2.04e-08, - "burghal": 2.04e-08, - "cactaceae": 2.04e-08, - "cakebread": 2.04e-08, - "calamagrostis": 2.04e-08, - "calander": 2.04e-08, - "caporal": 2.04e-08, - "carbonado": 2.04e-08, - "carcinomatosis": 2.04e-08, - "causeless": 2.04e-08, - "cavalla": 2.04e-08, - "cerumen": 2.04e-08, - "chalmer": 2.04e-08, - "champignon": 2.04e-08, - "changeability": 2.04e-08, - "chaudron": 2.04e-08, - "cheeper": 2.04e-08, - "chocker": 2.04e-08, - "chondritic": 2.04e-08, - "chordate": 2.04e-08, - "chubbiness": 2.04e-08, - "ciborium": 2.04e-08, - "cinnamate": 2.04e-08, - "cleek": 2.04e-08, - "climacus": 2.04e-08, - "coastland": 2.04e-08, - "cockup": 2.04e-08, - "codding": 2.04e-08, - "cogman": 2.04e-08, - "coly": 2.04e-08, - "conformer": 2.04e-08, - "contributive": 2.04e-08, - "convexly": 2.04e-08, - "copulative": 2.04e-08, - "cordiner": 2.04e-08, - "coronated": 2.04e-08, - "couvade": 2.04e-08, - "cuke": 2.04e-08, - "cutterhead": 2.04e-08, - "cyanidation": 2.04e-08, - "dacitic": 2.04e-08, - "decad": 2.04e-08, - "detune": 2.04e-08, - "disharmonious": 2.04e-08, - "disobliging": 2.04e-08, - "diurnally": 2.04e-08, - "dizzily": 2.04e-08, - "doddy": 2.04e-08, - "drest": 2.04e-08, - "dunnock": 2.04e-08, - "ecca": 2.04e-08, - "embden": 2.04e-08, - "enstatite": 2.04e-08, - "ephemeroptera": 2.04e-08, - "equimolar": 2.04e-08, - "eryngium": 2.04e-08, - "erythropoietic": 2.04e-08, - "eryx": 2.04e-08, - "escheator": 2.04e-08, - "everglade": 2.04e-08, - "everliving": 2.04e-08, - "excentric": 2.04e-08, - "exfoliative": 2.04e-08, - "exposer": 2.04e-08, - "farcically": 2.04e-08, - "fecklessness": 2.04e-08, - "feldspathic": 2.04e-08, - "fenestella": 2.04e-08, - "fibration": 2.04e-08, - "fibrocartilage": 2.04e-08, - "finner": 2.04e-08, - "flecker": 2.04e-08, - "fluoranthene": 2.04e-08, - "fluviatile": 2.04e-08, - "focally": 2.04e-08, - "foraminiferal": 2.04e-08, - "fremd": 2.04e-08, - "fungo": 2.04e-08, - "gandhism": 2.04e-08, - "gelid": 2.04e-08, - "germanics": 2.04e-08, - "gliosis": 2.04e-08, - "gloxinia": 2.04e-08, - "glycolipid": 2.04e-08, - "goniometer": 2.04e-08, - "grane": 2.04e-08, - "groop": 2.04e-08, - "groupwise": 2.04e-08, - "grumbly": 2.04e-08, - "guiltiness": 2.04e-08, - "gunflint": 2.04e-08, - "hellenization": 2.04e-08, - "herdwick": 2.04e-08, - "hexer": 2.04e-08, - "hexis": 2.04e-08, - "hinderer": 2.04e-08, - "hingle": 2.04e-08, - "hoggy": 2.04e-08, - "homophonous": 2.04e-08, - "huia": 2.04e-08, - "hundi": 2.04e-08, - "hunnic": 2.04e-08, - "hyacinthus": 2.04e-08, - "hymnology": 2.04e-08, - "hypocaust": 2.04e-08, - "ignatia": 2.04e-08, - "illinoisan": 2.04e-08, - "impartation": 2.04e-08, - "incrustation": 2.04e-08, - "indispensably": 2.04e-08, - "induration": 2.04e-08, - "ingratiation": 2.04e-08, - "interclub": 2.04e-08, - "intrathoracic": 2.04e-08, - "ironhead": 2.04e-08, - "isoelectronic": 2.04e-08, - "jungly": 2.04e-08, - "karluk": 2.04e-08, - "kaska": 2.04e-08, - "kenaf": 2.04e-08, - "ketogenesis": 2.04e-08, - "khot": 2.04e-08, - "kirtle": 2.04e-08, - "kittatinny": 2.04e-08, - "knotwork": 2.04e-08, - "kusha": 2.04e-08, - "lacquering": 2.04e-08, - "leatherstocking": 2.04e-08, - "lenity": 2.04e-08, - "leptospermum": 2.04e-08, - "lipoid": 2.04e-08, - "locusta": 2.04e-08, - "loggin": 2.04e-08, - "loriot": 2.04e-08, - "lovesickness": 2.04e-08, - "lummox": 2.04e-08, - "lusciously": 2.04e-08, - "magaziner": 2.04e-08, - "maggoty": 2.04e-08, - "mandola": 2.04e-08, - "maraud": 2.04e-08, - "margarite": 2.04e-08, - "markhor": 2.04e-08, - "marsi": 2.04e-08, - "memoryless": 2.04e-08, - "mercurochrome": 2.04e-08, - "metacarpophalangeal": 2.04e-08, - "midlander": 2.04e-08, - "mignonne": 2.04e-08, - "milksop": 2.04e-08, - "moonlighter": 2.04e-08, - "mosasaurus": 2.04e-08, - "movably": 2.04e-08, - "moyenne": 2.04e-08, - "multisyllabic": 2.04e-08, - "multum": 2.04e-08, - "nephila": 2.04e-08, - "nondiabetic": 2.04e-08, - "nucleoplasm": 2.04e-08, - "nunatak": 2.04e-08, - "ontogenesis": 2.04e-08, - "opulently": 2.04e-08, - "organotin": 2.04e-08, - "osirian": 2.04e-08, - "ostensive": 2.04e-08, - "outport": 2.04e-08, - "overside": 2.04e-08, - "palmo": 2.04e-08, - "panjandrum": 2.04e-08, - "parching": 2.04e-08, - "pargeter": 2.04e-08, - "parklike": 2.04e-08, - "parnassian": 2.04e-08, - "patronal": 2.04e-08, - "pediculus": 2.04e-08, - "perinuclear": 2.04e-08, - "permissioned": 2.04e-08, - "phantasma": 2.04e-08, - "phycological": 2.04e-08, - "pickaninny": 2.04e-08, - "pineland": 2.04e-08, - "piscivorous": 2.04e-08, - "pistacia": 2.04e-08, - "plash": 2.04e-08, - "polemically": 2.04e-08, - "pollinia": 2.04e-08, - "polyphagous": 2.04e-08, - "polyporus": 2.04e-08, - "prearrangement": 2.04e-08, - "preceptorship": 2.04e-08, - "preces": 2.04e-08, - "precipitately": 2.04e-08, - "prevenient": 2.04e-08, - "printery": 2.04e-08, - "psychobiological": 2.04e-08, - "puku": 2.04e-08, - "pulsator": 2.04e-08, - "pyrethrin": 2.04e-08, - "raanan": 2.04e-08, - "rangifer": 2.04e-08, - "ratable": 2.04e-08, - "ratch": 2.04e-08, - "rattly": 2.04e-08, - "redeliver": 2.04e-08, - "reductionistic": 2.04e-08, - "reparable": 2.04e-08, - "restring": 2.04e-08, - "ribaldry": 2.04e-08, - "ridable": 2.04e-08, - "riddel": 2.04e-08, - "rouille": 2.04e-08, - "rubbishy": 2.04e-08, - "saccos": 2.04e-08, - "sacramentally": 2.04e-08, - "saim": 2.04e-08, - "salvinia": 2.04e-08, - "sanjak": 2.04e-08, - "schanz": 2.04e-08, - "seborrhea": 2.04e-08, - "sebright": 2.04e-08, - "seidlitz": 2.04e-08, - "sestina": 2.04e-08, - "shahzada": 2.04e-08, - "sharra": 2.04e-08, - "sheerly": 2.04e-08, - "shipbreaking": 2.04e-08, - "shootist": 2.04e-08, - "sicarius": 2.04e-08, - "simmon": 2.04e-08, - "singhalese": 2.04e-08, - "skirl": 2.04e-08, - "slavism": 2.04e-08, - "slue": 2.04e-08, - "smeeth": 2.04e-08, - "smeller": 2.04e-08, - "snowless": 2.04e-08, - "solutrean": 2.04e-08, - "songfest": 2.04e-08, - "sophistical": 2.04e-08, - "spak": 2.04e-08, - "sperma": 2.04e-08, - "spermatheca": 2.04e-08, - "splasher": 2.04e-08, - "springtrap": 2.04e-08, - "squinch": 2.04e-08, - "staphylinidae": 2.04e-08, - "starn": 2.04e-08, - "statice": 2.04e-08, - "stockholding": 2.04e-08, - "stockinger": 2.04e-08, - "subconjunctival": 2.04e-08, - "subscapularis": 2.04e-08, - "substitutional": 2.04e-08, - "sulkily": 2.04e-08, - "supervene": 2.04e-08, - "tahsin": 2.04e-08, - "tamarix": 2.04e-08, - "tartrazine": 2.04e-08, - "tead": 2.04e-08, - "tellina": 2.04e-08, - "telophase": 2.04e-08, - "temiskaming": 2.04e-08, - "testate": 2.04e-08, - "tetrachloroethylene": 2.04e-08, - "thamnophis": 2.04e-08, - "thermopile": 2.04e-08, - "timberman": 2.04e-08, - "tonicity": 2.04e-08, - "tonsorial": 2.04e-08, - "totum": 2.04e-08, - "trapa": 2.04e-08, - "tref": 2.04e-08, - "trellised": 2.04e-08, - "trichotomy": 2.04e-08, - "tringa": 2.04e-08, - "triphasic": 2.04e-08, - "triquetra": 2.04e-08, - "tzotzil": 2.04e-08, - "udal": 2.04e-08, - "ultracentrifuge": 2.04e-08, - "ultranationalism": 2.04e-08, - "unal": 2.04e-08, - "unattractively": 2.04e-08, - "uncurl": 2.04e-08, - "understandability": 2.04e-08, - "unimodular": 2.04e-08, - "universalistic": 2.04e-08, - "unlamented": 2.04e-08, - "unlooked": 2.04e-08, - "unorthodoxy": 2.04e-08, - "unperceived": 2.04e-08, - "unscored": 2.04e-08, - "unshed": 2.04e-08, - "unthreatened": 2.04e-08, - "untrustworthiness": 2.04e-08, - "urushiol": 2.04e-08, - "usee": 2.04e-08, - "valva": 2.04e-08, - "vanadate": 2.04e-08, - "vaunting": 2.04e-08, - "vavasor": 2.04e-08, - "velours": 2.04e-08, - "verst": 2.04e-08, - "vibrissae": 2.04e-08, - "vitalist": 2.04e-08, - "watchfully": 2.04e-08, - "waterscape": 2.04e-08, - "weki": 2.04e-08, - "welting": 2.04e-08, - "whiggish": 2.04e-08, - "whitsuntide": 2.04e-08, - "witherite": 2.04e-08, - "yardman": 2.04e-08, - "yucatecan": 2.04e-08, - "zoogeography": 2.04e-08, - "zooid": 2.04e-08, - "abducens": 2e-08, - "acedia": 2e-08, - "acetophenone": 2e-08, - "affricate": 2e-08, - "affrighted": 2e-08, - "afterburning": 2e-08, - "alarum": 2e-08, - "albuginea": 2e-08, - "alcaide": 2e-08, - "altin": 2e-08, - "antithetic": 2e-08, - "apomixis": 2e-08, - "appendant": 2e-08, - "archdemon": 2e-08, - "assegai": 2e-08, - "autobiographically": 2e-08, - "autoregulation": 2e-08, - "baghouse": 2e-08, - "barbarically": 2e-08, - "bardy": 2e-08, - "begetter": 2e-08, - "beguilingly": 2e-08, - "beingness": 2e-08, - "biliverdin": 2e-08, - "boneshaker": 2e-08, - "boomslang": 2e-08, - "bouge": 2e-08, - "boyang": 2e-08, - "branchless": 2e-08, - "briard": 2e-08, - "bushbuck": 2e-08, - "cailleach": 2e-08, - "calisthenic": 2e-08, - "capful": 2e-08, - "capitulary": 2e-08, - "carbamide": 2e-08, - "cardoon": 2e-08, - "carfare": 2e-08, - "centriole": 2e-08, - "chaffer": 2e-08, - "charlock": 2e-08, - "chauchat": 2e-08, - "chawl": 2e-08, - "chemotherapeutics": 2e-08, - "chrysoprase": 2e-08, - "ciceronian": 2e-08, - "cockleshell": 2e-08, - "comeliness": 2e-08, - "commendam": 2e-08, - "completive": 2e-08, - "confounder": 2e-08, - "contagiously": 2e-08, - "contemplatively": 2e-08, - "conventicle": 2e-08, - "countermove": 2e-08, - "craney": 2e-08, - "criminalist": 2e-08, - "cringingly": 2e-08, - "darshana": 2e-08, - "dechlorination": 2e-08, - "decompressive": 2e-08, - "deerhound": 2e-08, - "defensibility": 2e-08, - "despitefully": 2e-08, - "diffidently": 2e-08, - "digitigrade": 2e-08, - "dionysiac": 2e-08, - "dipsomaniac": 2e-08, - "doltish": 2e-08, - "dubber": 2e-08, - "duodecimal": 2e-08, - "eclectics": 2e-08, - "ectasia": 2e-08, - "ectomorph": 2e-08, - "elain": 2e-08, - "empathically": 2e-08, - "endocardium": 2e-08, - "endochondral": 2e-08, - "enslaver": 2e-08, - "equidistance": 2e-08, - "erse": 2e-08, - "euergetes": 2e-08, - "exasperatedly": 2e-08, - "excursus": 2e-08, - "extensiveness": 2e-08, - "fallaciously": 2e-08, - "fiducia": 2e-08, - "fieldsman": 2e-08, - "fisherwoman": 2e-08, - "flaggy": 2e-08, - "flamen": 2e-08, - "frugivorous": 2e-08, - "fundable": 2e-08, - "gaillardia": 2e-08, - "galago": 2e-08, - "galvanization": 2e-08, - "garbling": 2e-08, - "geotechnics": 2e-08, - "glister": 2e-08, - "gonal": 2e-08, - "gravimetry": 2e-08, - "greasewood": 2e-08, - "helenus": 2e-08, - "helminthic": 2e-08, - "helot": 2e-08, - "hent": 2e-08, - "hesitatingly": 2e-08, - "homeotic": 2e-08, - "hura": 2e-08, - "hydrosol": 2e-08, - "hyoscyamine": 2e-08, - "hypodermically": 2e-08, - "iliopsoas": 2e-08, - "indigena": 2e-08, - "inexpedient": 2e-08, - "infatuate": 2e-08, - "inkstand": 2e-08, - "inlaying": 2e-08, - "innocency": 2e-08, - "insusceptible": 2e-08, - "intimidatory": 2e-08, - "isopoda": 2e-08, - "itinerarium": 2e-08, - "jugger": 2e-08, - "keelhaul": 2e-08, - "kemalism": 2e-08, - "kitan": 2e-08, - "lakish": 2e-08, - "landlordism": 2e-08, - "lasciviously": 2e-08, - "lection": 2e-08, - "ledged": 2e-08, - "lepidolite": 2e-08, - "leucippus": 2e-08, - "linnaea": 2e-08, - "lunule": 2e-08, - "macanese": 2e-08, - "mahdist": 2e-08, - "mainsheet": 2e-08, - "maius": 2e-08, - "manslayer": 2e-08, - "mashie": 2e-08, - "matrilineally": 2e-08, - "mercurian": 2e-08, - "microdose": 2e-08, - "micropore": 2e-08, - "mollifying": 2e-08, - "momme": 2e-08, - "monoceros": 2e-08, - "mounter": 2e-08, - "multipartite": 2e-08, - "mump": 2e-08, - "murra": 2e-08, - "myrtus": 2e-08, - "narky": 2e-08, - "neurasthenic": 2e-08, - "neurotropic": 2e-08, - "nonmotile": 2e-08, - "noontide": 2e-08, - "noumenal": 2e-08, - "numenius": 2e-08, - "oaty": 2e-08, - "obex": 2e-08, - "obloquy": 2e-08, - "onza": 2e-08, - "operatically": 2e-08, - "ophrys": 2e-08, - "ordines": 2e-08, - "oread": 2e-08, - "outcaste": 2e-08, - "ovambo": 2e-08, - "overlander": 2e-08, - "panderer": 2e-08, - "pantelis": 2e-08, - "paracentesis": 2e-08, - "paradigmatically": 2e-08, - "peba": 2e-08, - "perca": 2e-08, - "pericardiocentesis": 2e-08, - "permissibly": 2e-08, - "photolithographic": 2e-08, - "photophysical": 2e-08, - "phototrophic": 2e-08, - "pial": 2e-08, - "pinaster": 2e-08, - "plumaged": 2e-08, - "pontin": 2e-08, - "populistic": 2e-08, - "postnuptial": 2e-08, - "prebendal": 2e-08, - "preconscious": 2e-08, - "prehistorically": 2e-08, - "prerevolutionary": 2e-08, - "procuration": 2e-08, - "propellent": 2e-08, - "prurience": 2e-08, - "pulex": 2e-08, - "pya": 2e-08, - "pyralidae": 2e-08, - "quadruplet": 2e-08, - "radiographically": 2e-08, - "radiotelephony": 2e-08, - "ravishment": 2e-08, - "reconfirmation": 2e-08, - "renouncement": 2e-08, - "resultantly": 2e-08, - "rhodococcus": 2e-08, - "rhodora": 2e-08, - "rogation": 2e-08, - "roughcast": 2e-08, - "rowdyism": 2e-08, - "ruching": 2e-08, - "rux": 2e-08, - "salmonidae": 2e-08, - "sauger": 2e-08, - "sclerite": 2e-08, - "scotswoman": 2e-08, - "semidetached": 2e-08, - "sempervivum": 2e-08, - "serviceberry": 2e-08, - "servomotor": 2e-08, - "shagbark": 2e-08, - "sheriffdom": 2e-08, - "shoreward": 2e-08, - "sideward": 2e-08, - "significative": 2e-08, - "sinaitic": 2e-08, - "singspiel": 2e-08, - "sinlessness": 2e-08, - "sirup": 2e-08, - "skiver": 2e-08, - "slavi": 2e-08, - "slidable": 2e-08, - "sodded": 2e-08, - "sorbian": 2e-08, - "sparer": 2e-08, - "spodumene": 2e-08, - "squamosa": 2e-08, - "staling": 2e-08, - "starer": 2e-08, - "stellaria": 2e-08, - "stereoisomer": 2e-08, - "stibnite": 2e-08, - "stretto": 2e-08, - "stroboscope": 2e-08, - "subchondral": 2e-08, - "submicroscopic": 2e-08, - "suevi": 2e-08, - "supportability": 2e-08, - "supratemporal": 2e-08, - "taggle": 2e-08, - "tangut": 2e-08, - "terrigenous": 2e-08, - "testacea": 2e-08, - "textualist": 2e-08, - "thessalonian": 2e-08, - "tinkly": 2e-08, - "tiple": 2e-08, - "tollman": 2e-08, - "tonometry": 2e-08, - "tooken": 2e-08, - "travois": 2e-08, - "trichuris": 2e-08, - "triennially": 2e-08, - "trochlea": 2e-08, - "trogon": 2e-08, - "tumid": 2e-08, - "unaccountability": 2e-08, - "unaesthetic": 2e-08, - "unbacked": 2e-08, - "uncelebrated": 2e-08, - "unclimbed": 2e-08, - "uncollectible": 2e-08, - "undeformed": 2e-08, - "underexposure": 2e-08, - "undistinguishable": 2e-08, - "unendingly": 2e-08, - "unexampled": 2e-08, - "unfilial": 2e-08, - "ungroomed": 2e-08, - "unhandled": 2e-08, - "unliveable": 2e-08, - "unmannerly": 2e-08, - "unposted": 2e-08, - "unshaped": 2e-08, - "unvaried": 2e-08, - "unwaxed": 2e-08, - "verminous": 2e-08, - "vinal": 2e-08, - "vomica": 2e-08, - "weever": 2e-08, - "whelm": 2e-08, - "whiskery": 2e-08, - "winy": 2e-08, - "yoker": 2e-08, - "abler": 1.95e-08, - "abortus": 1.95e-08, - "academicism": 1.95e-08, - "actinomyces": 1.95e-08, - "adenoidal": 1.95e-08, - "admonitory": 1.95e-08, - "affectional": 1.95e-08, - "airt": 1.95e-08, - "alette": 1.95e-08, - "alunite": 1.95e-08, - "amacrine": 1.95e-08, - "amandus": 1.95e-08, - "amaranthine": 1.95e-08, - "amatrice": 1.95e-08, - "anastomose": 1.95e-08, - "angiology": 1.95e-08, - "angulate": 1.95e-08, - "anisette": 1.95e-08, - "archil": 1.95e-08, - "arhar": 1.95e-08, - "armado": 1.95e-08, - "azande": 1.95e-08, - "azoth": 1.95e-08, - "badian": 1.95e-08, - "baldie": 1.95e-08, - "bareness": 1.95e-08, - "basketmaker": 1.95e-08, - "batwa": 1.95e-08, - "belga": 1.95e-08, - "belled": 1.95e-08, - "bessarabian": 1.95e-08, - "bhoy": 1.95e-08, - "billman": 1.95e-08, - "bito": 1.95e-08, - "bookwork": 1.95e-08, - "bootlace": 1.95e-08, - "boree": 1.95e-08, - "botheration": 1.95e-08, - "brachioradialis": 1.95e-08, - "brahminism": 1.95e-08, - "braker": 1.95e-08, - "brickbat": 1.95e-08, - "briskness": 1.95e-08, - "bromination": 1.95e-08, - "bulker": 1.95e-08, - "buskin": 1.95e-08, - "butterbur": 1.95e-08, - "calcaneum": 1.95e-08, - "calp": 1.95e-08, - "calusa": 1.95e-08, - "calyptra": 1.95e-08, - "caparison": 1.95e-08, - "caprine": 1.95e-08, - "carpinus": 1.95e-08, - "carvacrol": 1.95e-08, - "castilleja": 1.95e-08, - "cathexis": 1.95e-08, - "cattiness": 1.95e-08, - "cauld": 1.95e-08, - "cellularity": 1.95e-08, - "chalcone": 1.95e-08, - "chromospheric": 1.95e-08, - "churchmanship": 1.95e-08, - "circumambulate": 1.95e-08, - "circumspectly": 1.95e-08, - "cissus": 1.95e-08, - "clabber": 1.95e-08, - "clivia": 1.95e-08, - "clonus": 1.95e-08, - "clostridial": 1.95e-08, - "coalitional": 1.95e-08, - "cockaded": 1.95e-08, - "conoid": 1.95e-08, - "conscienceless": 1.95e-08, - "consilience": 1.95e-08, - "contrariety": 1.95e-08, - "coom": 1.95e-08, - "copart": 1.95e-08, - "craniectomy": 1.95e-08, - "ctenophora": 1.95e-08, - "cucurbit": 1.95e-08, - "culverin": 1.95e-08, - "cymraeg": 1.95e-08, - "cytisus": 1.95e-08, - "danaan": 1.95e-08, - "dashingly": 1.95e-08, - "decerebrate": 1.95e-08, - "deflective": 1.95e-08, - "deliberateness": 1.95e-08, - "deliquescent": 1.95e-08, - "dendrology": 1.95e-08, - "dewater": 1.95e-08, - "dibasic": 1.95e-08, - "distractible": 1.95e-08, - "dolefully": 1.95e-08, - "doree": 1.95e-08, - "drusy": 1.95e-08, - "electress": 1.95e-08, - "electroluminescence": 1.95e-08, - "emperorship": 1.95e-08, - "enactive": 1.95e-08, - "encinal": 1.95e-08, - "endocrinological": 1.95e-08, - "epenthesis": 1.95e-08, - "epicycle": 1.95e-08, - "epidermoid": 1.95e-08, - "erodible": 1.95e-08, - "euge": 1.95e-08, - "euglena": 1.95e-08, - "eyespot": 1.95e-08, - "fauvist": 1.95e-08, - "ferociousness": 1.95e-08, - "fibroblastic": 1.95e-08, - "fibroin": 1.95e-08, - "fieldfare": 1.95e-08, - "fondu": 1.95e-08, - "footwall": 1.95e-08, - "fordy": 1.95e-08, - "foulmouthed": 1.95e-08, - "francium": 1.95e-08, - "fraticelli": 1.95e-08, - "freshet": 1.95e-08, - "fusional": 1.95e-08, - "galbanum": 1.95e-08, - "gebbie": 1.95e-08, - "gibus": 1.95e-08, - "gigantopithecus": 1.95e-08, - "gimped": 1.95e-08, - "gramineae": 1.95e-08, - "growingly": 1.95e-08, - "guaiac": 1.95e-08, - "hackin": 1.95e-08, - "halma": 1.95e-08, - "harmel": 1.95e-08, - "heedlessness": 1.95e-08, - "humulus": 1.95e-08, - "hydrazone": 1.95e-08, - "hydrobromide": 1.95e-08, - "hypogastric": 1.95e-08, - "ichneumonidae": 1.95e-08, - "idahoan": 1.95e-08, - "ijma": 1.95e-08, - "inadvertence": 1.95e-08, - "interhemispheric": 1.95e-08, - "intertrochanteric": 1.95e-08, - "interzonal": 1.95e-08, - "intumescent": 1.95e-08, - "inviter": 1.95e-08, - "jeffie": 1.95e-08, - "jivaro": 1.95e-08, - "johnsonian": 1.95e-08, - "kend": 1.95e-08, - "killable": 1.95e-08, - "kylix": 1.95e-08, - "ladylove": 1.95e-08, - "lappa": 1.95e-08, - "latrodectus": 1.95e-08, - "lawned": 1.95e-08, - "leathern": 1.95e-08, - "lepidium": 1.95e-08, - "lithotomy": 1.95e-08, - "macrocosmic": 1.95e-08, - "madhva": 1.95e-08, - "marid": 1.95e-08, - "materialistically": 1.95e-08, - "matricaria": 1.95e-08, - "mauley": 1.95e-08, - "meatiness": 1.95e-08, - "metastability": 1.95e-08, - "miliaria": 1.95e-08, - "mineralogically": 1.95e-08, - "monocled": 1.95e-08, - "monomethyl": 1.95e-08, - "moonshining": 1.95e-08, - "morion": 1.95e-08, - "moschus": 1.95e-08, - "motorbus": 1.95e-08, - "mouflon": 1.95e-08, - "movant": 1.95e-08, - "mudejar": 1.95e-08, - "mujtahid": 1.95e-08, - "multiplane": 1.95e-08, - "mythologize": 1.95e-08, - "nassa": 1.95e-08, - "natrium": 1.95e-08, - "navar": 1.95e-08, - "nectary": 1.95e-08, - "newari": 1.95e-08, - "ninepins": 1.95e-08, - "nobble": 1.95e-08, - "nodus": 1.95e-08, - "nonjudicial": 1.95e-08, - "notropis": 1.95e-08, - "notus": 1.95e-08, - "nowise": 1.95e-08, - "nucleoid": 1.95e-08, - "nulliparous": 1.95e-08, - "ohmmeter": 1.95e-08, - "oppressiveness": 1.95e-08, - "organicism": 1.95e-08, - "orle": 1.95e-08, - "orlo": 1.95e-08, - "ostrogothic": 1.95e-08, - "ovalbumin": 1.95e-08, - "overpotential": 1.95e-08, - "overproof": 1.95e-08, - "palea": 1.95e-08, - "paleopathology": 1.95e-08, - "palsied": 1.95e-08, - "pandion": 1.95e-08, - "pavonia": 1.95e-08, - "pectic": 1.95e-08, - "pelasgian": 1.95e-08, - "pelf": 1.95e-08, - "perverseness": 1.95e-08, - "philanthropically": 1.95e-08, - "phyllanthus": 1.95e-08, - "pilum": 1.95e-08, - "pinnatifid": 1.95e-08, - "pipefish": 1.95e-08, - "pleonasm": 1.95e-08, - "poilu": 1.95e-08, - "polytropic": 1.95e-08, - "pommard": 1.95e-08, - "potestate": 1.95e-08, - "praefectus": 1.95e-08, - "preselect": 1.95e-08, - "princedom": 1.95e-08, - "printability": 1.95e-08, - "proctitis": 1.95e-08, - "progressivist": 1.95e-08, - "proptosis": 1.95e-08, - "provisioner": 1.95e-08, - "pyrrolidone": 1.95e-08, - "queerly": 1.95e-08, - "racemization": 1.95e-08, - "radiolaria": 1.95e-08, - "rathskeller": 1.95e-08, - "ratiocination": 1.95e-08, - "raun": 1.95e-08, - "ravelin": 1.95e-08, - "rebec": 1.95e-08, - "reboard": 1.95e-08, - "recenter": 1.95e-08, - "reprice": 1.95e-08, - "revelant": 1.95e-08, - "riblet": 1.95e-08, - "rotative": 1.95e-08, - "sagittaria": 1.95e-08, - "saloonkeeper": 1.95e-08, - "salopian": 1.95e-08, - "salpa": 1.95e-08, - "samsam": 1.95e-08, - "sardanapalus": 1.95e-08, - "scandic": 1.95e-08, - "scatology": 1.95e-08, - "scenographic": 1.95e-08, - "scheffel": 1.95e-08, - "sclerophyll": 1.95e-08, - "scyld": 1.95e-08, - "sequela": 1.95e-08, - "serail": 1.95e-08, - "sideling": 1.95e-08, - "sife": 1.95e-08, - "slotter": 1.95e-08, - "slummy": 1.95e-08, - "slyness": 1.95e-08, - "soapmaking": 1.95e-08, - "soce": 1.95e-08, - "sociometry": 1.95e-08, - "sonorant": 1.95e-08, - "sophism": 1.95e-08, - "southron": 1.95e-08, - "spermatogonial": 1.95e-08, - "spinae": 1.95e-08, - "spinelessness": 1.95e-08, - "sporobolus": 1.95e-08, - "squam": 1.95e-08, - "sridharan": 1.95e-08, - "stola": 1.95e-08, - "stomatology": 1.95e-08, - "stonechat": 1.95e-08, - "stoutness": 1.95e-08, - "stressless": 1.95e-08, - "styrax": 1.95e-08, - "subcapsular": 1.95e-08, - "suckler": 1.95e-08, - "suffocatingly": 1.95e-08, - "superphosphate": 1.95e-08, - "swad": 1.95e-08, - "tahltan": 1.95e-08, - "talamanca": 1.95e-08, - "tarok": 1.95e-08, - "tawse": 1.95e-08, - "taxability": 1.95e-08, - "tegument": 1.95e-08, - "terna": 1.95e-08, - "thalasso": 1.95e-08, - "theorbo": 1.95e-08, - "thermoluminescent": 1.95e-08, - "thickheaded": 1.95e-08, - "timbale": 1.95e-08, - "titler": 1.95e-08, - "titulus": 1.95e-08, - "tormenta": 1.95e-08, - "totipotent": 1.95e-08, - "transitionary": 1.95e-08, - "tressed": 1.95e-08, - "truncal": 1.95e-08, - "tyrolese": 1.95e-08, - "uhlan": 1.95e-08, - "unaspirated": 1.95e-08, - "unconstructed": 1.95e-08, - "underspend": 1.95e-08, - "undescribable": 1.95e-08, - "unengaging": 1.95e-08, - "ungratefulness": 1.95e-08, - "unknowledgeable": 1.95e-08, - "unlace": 1.95e-08, - "unmanifest": 1.95e-08, - "unpropitious": 1.95e-08, - "unsighted": 1.95e-08, - "unsynchronized": 1.95e-08, - "unwaged": 1.95e-08, - "ventricose": 1.95e-08, - "verbascum": 1.95e-08, - "verrucous": 1.95e-08, - "versal": 1.95e-08, - "viniculture": 1.95e-08, - "vitalization": 1.95e-08, - "vivisectionist": 1.95e-08, - "voivode": 1.95e-08, - "vomerine": 1.95e-08, - "wampus": 1.95e-08, - "warper": 1.95e-08, - "wattmeter": 1.95e-08, - "whinger": 1.95e-08, - "whyever": 1.95e-08, - "wreathe": 1.95e-08, - "yeard": 1.95e-08, - "yodeler": 1.95e-08, - "actinomorphic": 1.91e-08, - "adjacently": 1.91e-08, - "afeared": 1.91e-08, - "afterlight": 1.91e-08, - "agmatine": 1.91e-08, - "agnel": 1.91e-08, - "airmanship": 1.91e-08, - "aliunde": 1.91e-08, - "alpenglow": 1.91e-08, - "althaea": 1.91e-08, - "amli": 1.91e-08, - "aneuploid": 1.91e-08, - "anharmonic": 1.91e-08, - "antedate": 1.91e-08, - "antimonide": 1.91e-08, - "anywheres": 1.91e-08, - "aposematic": 1.91e-08, - "approvable": 1.91e-08, - "arbitrable": 1.91e-08, - "aristida": 1.91e-08, - "aristippus": 1.91e-08, - "arteriole": 1.91e-08, - "athirst": 1.91e-08, - "aute": 1.91e-08, - "auxiliar": 1.91e-08, - "backstitch": 1.91e-08, - "bactericide": 1.91e-08, - "bambusa": 1.91e-08, - "baptizer": 1.91e-08, - "barile": 1.91e-08, - "baselessly": 1.91e-08, - "bathypelagic": 1.91e-08, - "bewailing": 1.91e-08, - "bicorne": 1.91e-08, - "billot": 1.91e-08, - "blent": 1.91e-08, - "bonspiel": 1.91e-08, - "bonze": 1.91e-08, - "boxful": 1.91e-08, - "bragger": 1.91e-08, - "bricky": 1.91e-08, - "bridling": 1.91e-08, - "brog": 1.91e-08, - "calculous": 1.91e-08, - "calliper": 1.91e-08, - "callovian": 1.91e-08, - "camelid": 1.91e-08, - "cardiomegaly": 1.91e-08, - "cathodoluminescence": 1.91e-08, - "centrales": 1.91e-08, - "centrifugally": 1.91e-08, - "ceric": 1.91e-08, - "chaitya": 1.91e-08, - "chernozem": 1.91e-08, - "chilliness": 1.91e-08, - "chlorinator": 1.91e-08, - "cincture": 1.91e-08, - "clacker": 1.91e-08, - "coagula": 1.91e-08, - "cobwebby": 1.91e-08, - "coheir": 1.91e-08, - "committer": 1.91e-08, - "cordel": 1.91e-08, - "couchant": 1.91e-08, - "counterman": 1.91e-08, - "counterplay": 1.91e-08, - "courante": 1.91e-08, - "cubi": 1.91e-08, - "cutwork": 1.91e-08, - "cyprinidae": 1.91e-08, - "daer": 1.91e-08, - "dandyism": 1.91e-08, - "danegeld": 1.91e-08, - "darger": 1.91e-08, - "daytimes": 1.07e-08, - "debaser": 1.91e-08, - "defilade": 1.91e-08, - "dermatome": 1.91e-08, - "dharana": 1.91e-08, - "diaphoresis": 1.91e-08, - "dimethylamine": 1.91e-08, - "dimps": 1.91e-08, - "dioptric": 1.91e-08, - "disconnectedness": 1.91e-08, - "discreteness": 1.91e-08, - "disorientate": 1.91e-08, - "disport": 1.91e-08, - "dissociable": 1.91e-08, - "distraint": 1.91e-08, - "dobber": 1.91e-08, - "dominionism": 1.91e-08, - "dorsoventral": 1.91e-08, - "drayman": 1.91e-08, - "earthborn": 1.91e-08, - "egocentricity": 1.91e-08, - "electromyographic": 1.91e-08, - "emptily": 1.91e-08, - "endocarp": 1.91e-08, - "epididymitis": 1.91e-08, - "epistatic": 1.91e-08, - "exultantly": 1.91e-08, - "falsework": 1.91e-08, - "fatherlessness": 1.91e-08, - "fearsomely": 1.91e-08, - "fictionalize": 1.91e-08, - "flaccidity": 1.91e-08, - "flatman": 1.91e-08, - "flyspeck": 1.91e-08, - "forky": 1.91e-08, - "formular": 1.91e-08, - "gatha": 1.91e-08, - "gaultheria": 1.91e-08, - "gimbaled": 1.91e-08, - "gladsome": 1.91e-08, - "gladstonian": 1.91e-08, - "goaty": 1.91e-08, - "graphophone": 1.91e-08, - "gritter": 1.91e-08, - "grubbed": 1.91e-08, - "gynoecium": 1.91e-08, - "handfasting": 1.91e-08, - "harlotry": 1.91e-08, - "harpalus": 1.91e-08, - "heathery": 1.91e-08, - "hemianopia": 1.91e-08, - "hemihydrate": 1.91e-08, - "highboy": 1.91e-08, - "hippocrene": 1.91e-08, - "huller": 1.91e-08, - "humin": 1.91e-08, - "hydrator": 1.91e-08, - "imbibition": 1.91e-08, - "imer": 1.91e-08, - "imitable": 1.91e-08, - "immortalization": 1.91e-08, - "impiously": 1.91e-08, - "importable": 1.91e-08, - "impresa": 1.91e-08, - "incontinently": 1.91e-08, - "indumentum": 1.91e-08, - "insurrectional": 1.91e-08, - "interisland": 1.91e-08, - "invar": 1.91e-08, - "iodo": 1.91e-08, - "jessamy": 1.91e-08, - "kabardian": 1.91e-08, - "kettledrum": 1.91e-08, - "kittenish": 1.91e-08, - "knapper": 1.91e-08, - "knickknack": 1.91e-08, - "koryak": 1.91e-08, - "lactarius": 1.91e-08, - "larvicide": 1.91e-08, - "lauraceae": 1.91e-08, - "leaser": 1.91e-08, - "legatine": 1.91e-08, - "lench": 1.91e-08, - "lengthily": 1.91e-08, - "lictor": 1.91e-08, - "lipolytic": 1.91e-08, - "lustral": 1.91e-08, - "lymphocytosis": 1.91e-08, - "malonic": 1.91e-08, - "maltreat": 1.91e-08, - "mappable": 1.91e-08, - "markedness": 1.91e-08, - "matrilocal": 1.91e-08, - "mellowness": 1.91e-08, - "meroitic": 1.91e-08, - "mesencephalon": 1.91e-08, - "microbicide": 1.91e-08, - "microcline": 1.91e-08, - "micrococcus": 1.91e-08, - "microdissection": 1.91e-08, - "misapply": 1.91e-08, - "mislay": 1.91e-08, - "moldboard": 1.91e-08, - "moluccan": 1.91e-08, - "mononitrate": 1.91e-08, - "morganatically": 1.91e-08, - "moul": 1.91e-08, - "mydriasis": 1.91e-08, - "neoteny": 1.91e-08, - "nocturn": 1.91e-08, - "nonscientific": 1.91e-08, - "normotensive": 1.91e-08, - "obtrusively": 1.91e-08, - "obturation": 1.91e-08, - "offprint": 1.91e-08, - "ogival": 1.91e-08, - "olynthus": 1.91e-08, - "omnibenevolent": 1.91e-08, - "ophthalmoplegia": 1.91e-08, - "otherworldliness": 1.91e-08, - "owlish": 1.91e-08, - "pacaya": 1.91e-08, - "palaemon": 1.91e-08, - "panela": 1.91e-08, - "parcheesi": 1.91e-08, - "parthenos": 1.91e-08, - "penates": 1.91e-08, - "periodontium": 1.91e-08, - "phonography": 1.91e-08, - "phora": 1.91e-08, - "photodissociation": 1.91e-08, - "phyletic": 1.91e-08, - "physa": 1.91e-08, - "pilose": 1.91e-08, - "piousness": 1.91e-08, - "plication": 1.91e-08, - "podger": 1.91e-08, - "pointman": 1.91e-08, - "pomander": 1.91e-08, - "precentral": 1.91e-08, - "problematize": 1.91e-08, - "procrustes": 1.91e-08, - "prophetical": 1.91e-08, - "psychonomic": 1.91e-08, - "pulpitis": 1.91e-08, - "purga": 1.91e-08, - "pyrazine": 1.91e-08, - "pyrope": 1.91e-08, - "pyruvic": 1.91e-08, - "quarrier": 1.91e-08, - "quelea": 1.91e-08, - "raddle": 1.91e-08, - "rakishly": 1.91e-08, - "razorbill": 1.91e-08, - "rectifiable": 1.91e-08, - "redemptor": 1.91e-08, - "referentially": 1.91e-08, - "reimposition": 1.91e-08, - "rejuvenator": 1.91e-08, - "reline": 1.91e-08, - "requalify": 1.91e-08, - "reselect": 1.91e-08, - "reviser": 1.91e-08, - "rigamarole": 1.91e-08, - "rinser": 1.91e-08, - "rotgut": 1.91e-08, - "ruffer": 1.91e-08, - "saarbrucken": 1.91e-08, - "salicornia": 1.91e-08, - "salpingectomy": 1.91e-08, - "salsola": 1.91e-08, - "salvationist": 1.91e-08, - "sanand": 1.91e-08, - "sectionally": 1.91e-08, - "semiformal": 1.91e-08, - "shrinkable": 1.91e-08, - "singsing": 1.91e-08, - "skout": 1.91e-08, - "snowcap": 1.91e-08, - "socii": 1.91e-08, - "solio": 1.91e-08, - "solvate": 1.91e-08, - "spack": 1.91e-08, - "spinalis": 1.91e-08, - "spruit": 1.91e-08, - "spyer": 1.91e-08, - "steek": 1.91e-08, - "stolon": 1.91e-08, - "storge": 1.91e-08, - "stoush": 1.91e-08, - "superstrong": 1.91e-08, - "suspicionless": 1.91e-08, - "swoony": 1.91e-08, - "tatter": 1.91e-08, - "tauntingly": 1.91e-08, - "tave": 1.91e-08, - "tavy": 1.91e-08, - "taws": 1.91e-08, - "telencephalon": 1.91e-08, - "terebinth": 1.91e-08, - "terephthalic": 1.91e-08, - "terphenyl": 1.91e-08, - "thack": 1.91e-08, - "threadfin": 1.91e-08, - "thunnus": 1.91e-08, - "triclinium": 1.91e-08, - "trismus": 1.91e-08, - "trub": 1.91e-08, - "trypan": 1.91e-08, - "trysting": 1.91e-08, - "tweel": 1.91e-08, - "tyrannicide": 1.91e-08, - "understandingly": 1.91e-08, - "ungallant": 1.91e-08, - "ungifted": 1.91e-08, - "unhitch": 1.91e-08, - "unknowability": 1.91e-08, - "unlikeliness": 1.91e-08, - "unpolitical": 1.91e-08, - "unpromoted": 1.91e-08, - "unsimulated": 1.91e-08, - "vanner": 1.91e-08, - "venomously": 1.91e-08, - "vinification": 1.91e-08, - "viticulturist": 1.91e-08, - "voluntarist": 1.91e-08, - "wangler": 1.91e-08, - "whenas": 1.91e-08, - "wildcatter": 1.91e-08, - "winegrower": 1.91e-08, - "winterberry": 1.91e-08, - "witchwood": 1.91e-08, - "withdrawable": 1.91e-08, - "woofy": 1.91e-08, - "ziarat": 1.91e-08, - "abstractionism": 1.86e-08, - "affright": 1.86e-08, - "agalloch": 1.86e-08, - "allegoric": 1.86e-08, - "almohad": 1.86e-08, - "amboina": 1.86e-08, - "anabaena": 1.86e-08, - "animi": 1.86e-08, - "anogenital": 1.86e-08, - "antifeminism": 1.86e-08, - "appellative": 1.86e-08, - "araceae": 1.86e-08, - "aristolochia": 1.86e-08, - "arunta": 1.86e-08, - "asphaltic": 1.86e-08, - "assurant": 1.86e-08, - "autarch": 1.86e-08, - "autodidactic": 1.86e-08, - "automa": 1.86e-08, - "banneret": 1.86e-08, - "banty": 1.86e-08, - "barebacked": 1.86e-08, - "barse": 1.86e-08, - "batan": 1.86e-08, - "beardie": 1.86e-08, - "benignity": 1.86e-08, - "benzylic": 1.86e-08, - "berend": 1.86e-08, - "berith": 1.86e-08, - "bethuel": 1.86e-08, - "bettong": 1.86e-08, - "bhara": 1.86e-08, - "blasphemously": 1.86e-08, - "blepharospasm": 1.86e-08, - "braca": 1.86e-08, - "brachyura": 1.86e-08, - "brickfield": 1.86e-08, - "cadential": 1.86e-08, - "calydon": 1.86e-08, - "cardiological": 1.86e-08, - "cardioplegia": 1.86e-08, - "carhop": 1.86e-08, - "cellule": 1.86e-08, - "censorial": 1.86e-08, - "centaury": 1.86e-08, - "cephalometric": 1.86e-08, - "cicuta": 1.86e-08, - "circularization": 1.86e-08, - "citable": 1.86e-08, - "clotho": 1.86e-08, - "cobbing": 1.86e-08, - "coccinellidae": 1.86e-08, - "cohabitant": 1.86e-08, - "columbite": 1.86e-08, - "comfit": 1.86e-08, - "commissural": 1.86e-08, - "commonalty": 1.86e-08, - "comprador": 1.86e-08, - "concentricity": 1.86e-08, - "conchoidal": 1.86e-08, - "confessedly": 1.86e-08, - "confusional": 1.86e-08, - "conically": 1.86e-08, - "conium": 1.86e-08, - "conspicuity": 1.86e-08, - "coprinus": 1.86e-08, - "cordierite": 1.86e-08, - "cordyline": 1.86e-08, - "countershaft": 1.86e-08, - "crocodylus": 1.86e-08, - "cuckhold": 1.86e-08, - "cyanine": 1.86e-08, - "cyanotype": 1.86e-08, - "cyprinid": 1.86e-08, - "dabb": 1.86e-08, - "decan": 1.86e-08, - "decap": 1.86e-08, - "declivity": 1.86e-08, - "delenda": 1.86e-08, - "deltic": 1.86e-08, - "devall": 1.86e-08, - "differentia": 1.86e-08, - "dinaric": 1.86e-08, - "diplodia": 1.86e-08, - "disconnector": 1.86e-08, - "divaricate": 1.86e-08, - "donative": 1.86e-08, - "doomer": 1.86e-08, - "dropt": 1.86e-08, - "duotone": 1.86e-08, - "dutiable": 1.86e-08, - "elasmobranch": 1.86e-08, - "electrocardiograph": 1.86e-08, - "embolectomy": 1.86e-08, - "endodermis": 1.86e-08, - "enmesh": 1.86e-08, - "epicene": 1.86e-08, - "epileptiform": 1.86e-08, - "epileptogenic": 1.86e-08, - "epithalamium": 1.86e-08, - "erechtheus": 1.86e-08, - "estus": 1.86e-08, - "ethnographically": 1.86e-08, - "eustatic": 1.86e-08, - "exhaustible": 1.86e-08, - "exhibitioner": 1.86e-08, - "facture": 1.86e-08, - "farmable": 1.86e-08, - "feelingly": 1.86e-08, - "fellahin": 1.86e-08, - "fernery": 1.86e-08, - "forcemeat": 1.86e-08, - "foresighted": 1.86e-08, - "formin": 1.86e-08, - "fortunetelling": 1.86e-08, - "frenching": 1.86e-08, - "frontoparietal": 1.86e-08, - "galvanism": 1.86e-08, - "gastronome": 1.86e-08, - "gemmy": 1.86e-08, - "gigantically": 1.86e-08, - "giornata": 1.86e-08, - "glissade": 1.86e-08, - "gloriousness": 1.86e-08, - "glossitis": 1.86e-08, - "goodwife": 1.86e-08, - "governability": 1.86e-08, - "grandiloquence": 1.86e-08, - "habitational": 1.86e-08, - "hairlessness": 1.86e-08, - "haori": 1.86e-08, - "helpmeet": 1.86e-08, - "herniate": 1.86e-08, - "hexene": 1.86e-08, - "horatian": 1.86e-08, - "hudsonian": 1.86e-08, - "hurri": 1.86e-08, - "hydrometallurgical": 1.86e-08, - "hydropathy": 1.86e-08, - "hypophysis": 1.86e-08, - "ignobly": 1.86e-08, - "ilot": 1.86e-08, - "impetuousness": 1.86e-08, - "incarnadine": 1.86e-08, - "interbody": 1.86e-08, - "interindividual": 1.86e-08, - "interlocal": 1.86e-08, - "intermediately": 1.86e-08, - "internuclear": 1.86e-08, - "intragroup": 1.86e-08, - "invincibly": 1.86e-08, - "irascibility": 1.86e-08, - "irenic": 1.86e-08, - "isothiocyanates": 1.86e-08, - "itea": 1.86e-08, - "jamesian": 1.86e-08, - "jardiniere": 1.86e-08, - "jollier": 1.86e-08, - "jongleur": 1.86e-08, - "kayvan": 1.86e-08, - "keelson": 1.86e-08, - "kenosis": 1.86e-08, - "kibitz": 1.86e-08, - "klam": 1.86e-08, - "klop": 1.86e-08, - "kurrajong": 1.86e-08, - "labiodental": 1.86e-08, - "lachrymal": 1.86e-08, - "laurelwood": 1.86e-08, - "leastwise": 1.86e-08, - "leucaena": 1.86e-08, - "leveret": 1.86e-08, - "liatris": 1.86e-08, - "libertinism": 1.86e-08, - "liveryman": 1.86e-08, - "lodgment": 1.86e-08, - "mailable": 1.86e-08, - "marocain": 1.86e-08, - "mediant": 1.86e-08, - "melilotus": 1.86e-08, - "melters": 1.86e-08, - "mephitis": 1.86e-08, - "meristematic": 1.86e-08, - "mesocarp": 1.86e-08, - "methylate": 1.86e-08, - "methylglyoxal": 1.86e-08, - "microseismic": 1.86e-08, - "midvein": 1.86e-08, - "misplay": 1.86e-08, - "misreport": 1.86e-08, - "modernizer": 1.86e-08, - "monal": 1.86e-08, - "monochord": 1.86e-08, - "monodromy": 1.86e-08, - "moratoria": 1.86e-08, - "morga": 1.86e-08, - "mucormycosis": 1.86e-08, - "muleta": 1.86e-08, - "myoblast": 1.86e-08, - "naphthoquinone": 1.86e-08, - "nasopharyngitis": 1.86e-08, - "natality": 1.86e-08, - "nephrotoxic": 1.86e-08, - "nocardia": 1.86e-08, - "nodder": 1.86e-08, - "nonaggressive": 1.86e-08, - "nonpathogenic": 1.86e-08, - "nonracial": 1.86e-08, - "nosewheel": 1.86e-08, - "noter": 1.86e-08, - "obelus": 1.86e-08, - "obol": 1.86e-08, - "obovoid": 1.86e-08, - "ologist": 1.86e-08, - "olpe": 1.86e-08, - "onlay": 1.86e-08, - "opercula": 1.86e-08, - "opercular": 1.86e-08, - "osmanli": 1.86e-08, - "outdrink": 1.86e-08, - "overcorrect": 1.86e-08, - "overglaze": 1.86e-08, - "pantropical": 1.86e-08, - "paratyphoid": 1.86e-08, - "parcelling": 1.86e-08, - "pentyl": 1.86e-08, - "phoo": 1.86e-08, - "phosphorite": 1.86e-08, - "photomechanical": 1.86e-08, - "photoperiodic": 1.86e-08, - "photopic": 1.86e-08, - "phototaxis": 1.86e-08, - "phototropism": 1.86e-08, - "physiognomic": 1.86e-08, - "piastre": 1.86e-08, - "pimpled": 1.86e-08, - "pisciculture": 1.86e-08, - "pisiform": 1.86e-08, - "polyarthritis": 1.86e-08, - "polygala": 1.86e-08, - "porbeagle": 1.86e-08, - "precessional": 1.86e-08, - "precisionist": 1.86e-08, - "precocial": 1.86e-08, - "presentence": 1.86e-08, - "priapic": 1.86e-08, - "productus": 1.86e-08, - "prognathism": 1.86e-08, - "provability": 1.86e-08, - "pseudonymity": 1.86e-08, - "pulchritudinous": 1.86e-08, - "puzzlingly": 1.86e-08, - "pyrotechnical": 1.86e-08, - "quadruplicate": 1.86e-08, - "quincentennial": 1.86e-08, - "rampion": 1.86e-08, - "redware": 1.86e-08, - "regift": 1.86e-08, - "rehang": 1.86e-08, - "remonstrant": 1.86e-08, - "renascent": 1.86e-08, - "repulsiveness": 1.86e-08, - "roominess": 1.86e-08, - "rosmarinus": 1.86e-08, - "roter": 1.86e-08, - "roughrider": 1.86e-08, - "rowel": 1.86e-08, - "rudiment": 1.86e-08, - "russula": 1.86e-08, - "salicin": 1.86e-08, - "sarcosine": 1.86e-08, - "scotopic": 1.86e-08, - "scrophulariaceae": 1.86e-08, - "septuple": 1.86e-08, - "shiko": 1.86e-08, - "shovelhead": 1.86e-08, - "showup": 1.86e-08, - "silkiness": 1.86e-08, - "simpleness": 1.86e-08, - "sinapis": 1.86e-08, - "skinker": 1.86e-08, - "slavophile": 1.86e-08, - "socage": 1.86e-08, - "sophora": 1.86e-08, - "sparely": 1.86e-08, - "splintery": 1.86e-08, - "spurway": 1.86e-08, - "steepled": 1.86e-08, - "stewartry": 1.86e-08, - "stilbite": 1.86e-08, - "stinkbug": 1.86e-08, - "subeditor": 1.86e-08, - "sulfatase": 1.86e-08, - "summar": 1.86e-08, - "supersession": 1.86e-08, - "surliness": 1.86e-08, - "tabanus": 1.86e-08, - "teetotalism": 1.86e-08, - "telephonically": 1.86e-08, - "telescopically": 1.86e-08, - "teutonia": 1.86e-08, - "thurible": 1.86e-08, - "tideswell": 1.86e-08, - "titano": 1.86e-08, - "tohunga": 1.86e-08, - "tonalite": 1.86e-08, - "tornus": 1.86e-08, - "tortricidae": 1.86e-08, - "toughly": 1.86e-08, - "trickiness": 1.86e-08, - "triethanolamine": 1.86e-08, - "triolet": 1.86e-08, - "triology": 1.86e-08, - "tripeptide": 1.86e-08, - "twilit": 1.86e-08, - "typicality": 1.86e-08, - "unabsorbed": 1.86e-08, - "unadapted": 1.86e-08, - "unaggressive": 1.86e-08, - "unbeautiful": 1.86e-08, - "uncanonical": 1.86e-08, - "uncinate": 1.86e-08, - "unconsumed": 1.86e-08, - "unconventionality": 1.86e-08, - "unenrolled": 1.86e-08, - "ungracefully": 1.86e-08, - "unhesitating": 1.86e-08, - "unliving": 1.86e-08, - "unrevealing": 1.86e-08, - "unself": 1.86e-08, - "unsnapped": 1.86e-08, - "unspiritual": 1.86e-08, - "untenanted": 1.86e-08, - "untuck": 1.86e-08, - "uraninite": 1.86e-08, - "urticarial": 1.86e-08, - "viertel": 1.86e-08, - "villanous": 1.86e-08, - "wasteman": 1.86e-08, - "wirework": 1.86e-08, - "wolfen": 1.86e-08, - "worky": 1.86e-08, - "wrox": 1.86e-08, - "wull": 1.86e-08, - "yucatec": 1.86e-08, - "zelkova": 1.86e-08, - "zygomorphic": 1.86e-08, - "aberdonian": 1.82e-08, - "abomasum": 1.82e-08, - "abrash": 1.82e-08, - "adieux": 1.82e-08, - "aeolic": 1.82e-08, - "alternatingly": 1.82e-08, - "amphictyonic": 1.82e-08, - "angor": 1.82e-08, - "anither": 1.82e-08, - "annamite": 1.82e-08, - "antecessor": 1.82e-08, - "anthranilate": 1.82e-08, - "antiprotozoal": 1.82e-08, - "aotea": 1.82e-08, - "apert": 1.82e-08, - "apiaceae": 1.82e-08, - "apocynaceae": 1.82e-08, - "arroba": 1.82e-08, - "arsenopyrite": 1.82e-08, - "ascariasis": 1.82e-08, - "asdic": 1.82e-08, - "assimilable": 1.82e-08, - "atemporal": 1.82e-08, - "avicennia": 1.82e-08, - "azha": 1.82e-08, - "banditti": 1.82e-08, - "barycentric": 1.82e-08, - "beastliness": 1.82e-08, - "bedeck": 1.82e-08, - "bedmate": 1.82e-08, - "beshrew": 1.82e-08, - "bessi": 1.82e-08, - "binman": 1.82e-08, - "birchbark": 1.82e-08, - "blackbutt": 1.82e-08, - "blastomycosis": 1.82e-08, - "bloodwood": 1.82e-08, - "bolis": 1.82e-08, - "bollworm": 1.82e-08, - "bordel": 1.82e-08, - "boringness": 1.82e-08, - "bouteloua": 1.82e-08, - "bowmaker": 1.82e-08, - "boyishness": 1.82e-08, - "braconidae": 1.82e-08, - "breadman": 1.82e-08, - "brightwork": 1.82e-08, - "brusqueness": 1.82e-08, - "buddhistic": 1.82e-08, - "bumblefoot": 1.82e-08, - "busked": 1.82e-08, - "buxus": 1.82e-08, - "cabalist": 1.82e-08, - "caecilia": 1.82e-08, - "calaboose": 1.82e-08, - "caltrop": 1.82e-08, - "carboxyhemoglobin": 1.82e-08, - "catostomus": 1.82e-08, - "catti": 1.82e-08, - "cavia": 1.82e-08, - "cellaring": 1.82e-08, - "chack": 1.82e-08, - "chenopodiaceae": 1.82e-08, - "chlorinate": 1.82e-08, - "chorda": 1.82e-08, - "chorten": 1.82e-08, - "choya": 1.82e-08, - "chronical": 1.82e-08, - "cimmeria": 1.82e-08, - "clachan": 1.82e-08, - "claviform": 1.82e-08, - "cleome": 1.82e-08, - "clothbound": 1.82e-08, - "clubbable": 1.82e-08, - "coccygeal": 1.82e-08, - "cogger": 1.82e-08, - "coifed": 1.82e-08, - "colcannon": 1.82e-08, - "collinearity": 1.82e-08, - "coluber": 1.82e-08, - "complexification": 1.82e-08, - "consultor": 1.82e-08, - "contagiousness": 1.82e-08, - "coprophagia": 1.82e-08, - "coreless": 1.82e-08, - "creaser": 1.82e-08, - "cringle": 1.82e-08, - "crinum": 1.82e-08, - "croyden": 1.82e-08, - "crucifer": 1.82e-08, - "ctenophore": 1.82e-08, - "cupreous": 1.82e-08, - "cutwater": 1.82e-08, - "cypres": 1.82e-08, - "cytolytic": 1.82e-08, - "dactylis": 1.82e-08, - "danakil": 1.82e-08, - "danite": 1.82e-08, - "darst": 1.82e-08, - "decalcomania": 1.82e-08, - "decantation": 1.82e-08, - "delaminate": 1.82e-08, - "dentally": 1.82e-08, - "denticle": 1.82e-08, - "dibber": 1.82e-08, - "dorsomedial": 1.82e-08, - "dorsoventrally": 1.82e-08, - "dought": 1.82e-08, - "dout": 1.82e-08, - "dyestuff": 1.82e-08, - "ecumenically": 1.82e-08, - "edaphic": 1.82e-08, - "effeminately": 1.82e-08, - "electively": 1.82e-08, - "electrocatalytic": 1.82e-08, - "ellipticity": 1.82e-08, - "enervate": 1.82e-08, - "enteritidis": 1.82e-08, - "equilibrio": 1.82e-08, - "eulogistic": 1.82e-08, - "evanesce": 1.82e-08, - "eyebright": 1.82e-08, - "eyeshade": 1.82e-08, - "fasciculation": 1.82e-08, - "ferricyanide": 1.82e-08, - "finback": 1.82e-08, - "fleshless": 1.82e-08, - "fluoridate": 1.82e-08, - "fossorial": 1.82e-08, - "francisc": 1.82e-08, - "fulica": 1.82e-08, - "fungoid": 1.82e-08, - "gager": 1.82e-08, - "gaudiness": 1.82e-08, - "glabellar": 1.82e-08, - "glaucomatous": 1.82e-08, - "gleba": 1.82e-08, - "gleed": 1.82e-08, - "gobber": 1.82e-08, - "gorgonian": 1.82e-08, - "greenheart": 1.82e-08, - "gregariously": 1.82e-08, - "grubstake": 1.82e-08, - "guardo": 1.82e-08, - "hackamore": 1.82e-08, - "heatless": 1.82e-08, - "heteronuclear": 1.82e-08, - "heterotypic": 1.82e-08, - "hilsa": 1.82e-08, - "hitlerite": 1.82e-08, - "hoggin": 1.82e-08, - "holeman": 1.82e-08, - "homophony": 1.82e-08, - "homopolar": 1.82e-08, - "homozygote": 1.82e-08, - "horntail": 1.82e-08, - "hyphema": 1.82e-08, - "imino": 1.82e-08, - "ingestive": 1.82e-08, - "ingressive": 1.82e-08, - "inlier": 1.82e-08, - "insidiousness": 1.82e-08, - "intellection": 1.82e-08, - "intercalate": 1.82e-08, - "interruptive": 1.82e-08, - "intractably": 1.82e-08, - "ironware": 1.82e-08, - "khir": 1.82e-08, - "kickable": 1.82e-08, - "laddish": 1.82e-08, - "lamarckism": 1.82e-08, - "lanugo": 1.82e-08, - "laryngospasm": 1.82e-08, - "laten": 1.82e-08, - "lewisite": 1.82e-08, - "linaria": 1.82e-08, - "lushai": 1.82e-08, - "lycosa": 1.82e-08, - "malpighiaceae": 1.82e-08, - "mammillaria": 1.82e-08, - "manometry": 1.82e-08, - "marasmus": 1.82e-08, - "marled": 1.82e-08, - "miscibility": 1.82e-08, - "misconfiguration": 1.82e-08, - "molality": 1.82e-08, - "moneysaving": 1.82e-08, - "mudlark": 1.82e-08, - "mugg": 1.82e-08, - "multistoried": 1.82e-08, - "mustiness": 1.82e-08, - "myxedema": 1.82e-08, - "natraj": 1.82e-08, - "nephrogenic": 1.82e-08, - "nightmarishly": 1.82e-08, - "niton": 1.82e-08, - "nonexecutive": 1.82e-08, - "nonmarital": 1.82e-08, - "nontransparent": 1.82e-08, - "nonvenomous": 1.82e-08, - "northlight": 1.82e-08, - "numskull": 1.82e-08, - "occulting": 1.82e-08, - "opacification": 1.82e-08, - "optime": 1.82e-08, - "orchitis": 1.82e-08, - "orgeat": 1.82e-08, - "outspan": 1.82e-08, - "overwash": 1.82e-08, - "ovolo": 1.82e-08, - "palpitate": 1.82e-08, - "paregoric": 1.82e-08, - "pengo": 1.82e-08, - "pentachloride": 1.82e-08, - "periplaneta": 1.82e-08, - "periplasm": 1.82e-08, - "perniciously": 1.82e-08, - "photochemically": 1.82e-08, - "physiochemical": 1.82e-08, - "piggle": 1.82e-08, - "pithecanthropus": 1.82e-08, - "platea": 1.82e-08, - "polypterus": 1.82e-08, - "premeditate": 1.82e-08, - "prepublication": 1.82e-08, - "presacral": 1.82e-08, - "primordially": 1.82e-08, - "prizeman": 1.82e-08, - "profitableness": 1.82e-08, - "prototypic": 1.82e-08, - "pulvinus": 1.82e-08, - "rackety": 1.82e-08, - "radiosensitive": 1.82e-08, - "rangatira": 1.82e-08, - "raptly": 1.82e-08, - "reak": 1.82e-08, - "reappropriate": 1.82e-08, - "reflectiveness": 1.82e-08, - "reges": 1.82e-08, - "remediable": 1.82e-08, - "restorationist": 1.82e-08, - "resuscitator": 1.82e-08, - "rhabdoid": 1.82e-08, - "runnel": 1.82e-08, - "ruritania": 1.82e-08, - "ryme": 1.82e-08, - "saivism": 1.82e-08, - "sakkara": 1.82e-08, - "sallet": 1.82e-08, - "sansevieria": 1.82e-08, - "sapan": 1.82e-08, - "scoon": 1.82e-08, - "secluding": 1.82e-08, - "seiche": 1.82e-08, - "separative": 1.82e-08, - "sevillian": 1.82e-08, - "shiah": 1.07e-08, - "shrieker": 1.82e-08, - "sidewards": 1.82e-08, - "silkily": 1.82e-08, - "sinusoidally": 1.82e-08, - "sociobiological": 1.82e-08, - "spinose": 1.82e-08, - "spirant": 1.82e-08, - "spiration": 1.82e-08, - "sprunt": 1.82e-08, - "stateswoman": 1.82e-08, - "stewy": 1.82e-08, - "stiflingly": 1.82e-08, - "stolidity": 1.82e-08, - "subarea": 1.82e-08, - "suprasegmental": 1.82e-08, - "syndesmosis": 1.82e-08, - "tantrism": 1.82e-08, - "tarascan": 1.82e-08, - "tardily": 1.82e-08, - "tarrying": 1.82e-08, - "tauchnitz": 1.82e-08, - "tautologically": 1.82e-08, - "tecnology": 1.82e-08, - "tetrazolium": 1.82e-08, - "thalictrum": 1.82e-08, - "thermotropic": 1.82e-08, - "thiazole": 1.82e-08, - "thymocyte": 1.82e-08, - "thyratron": 1.82e-08, - "tightfisted": 1.82e-08, - "titratable": 1.82e-08, - "topeng": 1.82e-08, - "toxemia": 1.82e-08, - "trembly": 1.82e-08, - "troublingly": 1.82e-08, - "tuppenny": 1.82e-08, - "unallowable": 1.82e-08, - "unannotated": 1.82e-08, - "unascertained": 1.82e-08, - "unchivalrous": 1.82e-08, - "undemocratically": 1.82e-08, - "undeviating": 1.82e-08, - "unfrequented": 1.82e-08, - "uninspected": 1.82e-08, - "unremovable": 1.82e-08, - "unsegmented": 1.82e-08, - "unsoundness": 1.82e-08, - "unstaged": 1.82e-08, - "unstintingly": 1.82e-08, - "unsurveyed": 1.82e-08, - "upanishadic": 1.82e-08, - "uster": 1.82e-08, - "valuably": 1.82e-08, - "vestibulum": 1.82e-08, - "vinaceous": 1.82e-08, - "viny": 1.82e-08, - "vitalistic": 1.82e-08, - "washo": 1.82e-08, - "wice": 1.82e-08, - "wisen": 1.82e-08, - "wordage": 1.82e-08, - "yeara": 1.82e-08, - "zeugma": 1.82e-08, - "academicals": 1.78e-08, - "acetoin": 1.78e-08, - "aedeagus": 1.78e-08, - "affiance": 1.78e-08, - "afflictive": 1.78e-08, - "agitatedly": 1.78e-08, - "ailie": 1.78e-08, - "airtightness": 1.78e-08, - "alphonsine": 1.78e-08, - "amblyomma": 1.78e-08, - "amphioxus": 1.78e-08, - "amphipoda": 1.78e-08, - "amygdaloid": 1.78e-08, - "androcentric": 1.78e-08, - "apian": 1.78e-08, - "apocalyptically": 1.78e-08, - "approximative": 1.78e-08, - "aquitanian": 1.78e-08, - "arenig": 1.78e-08, - "arkose": 1.78e-08, - "assumpsit": 1.78e-08, - "atheling": 1.78e-08, - "athenee": 1.78e-08, - "athetoid": 1.78e-08, - "audiometric": 1.78e-08, - "azygos": 1.78e-08, - "bacalao": 1.78e-08, - "bajau": 1.78e-08, - "bighearted": 1.78e-08, - "birlinn": 1.78e-08, - "boojum": 1.78e-08, - "brickmaker": 1.78e-08, - "cadenced": 1.78e-08, - "caique": 1.78e-08, - "camporee": 1.78e-08, - "candiru": 1.78e-08, - "cardiotoxic": 1.78e-08, - "carpetbag": 1.78e-08, - "caughnawaga": 1.78e-08, - "cholesteatoma": 1.78e-08, - "chromaffin": 1.78e-08, - "chucklehead": 1.78e-08, - "cineole": 1.78e-08, - "civitan": 1.78e-08, - "cockily": 1.78e-08, - "coloristic": 1.78e-08, - "commensalism": 1.78e-08, - "coner": 1.78e-08, - "congruently": 1.78e-08, - "contumely": 1.78e-08, - "cordery": 1.78e-08, - "cossette": 1.78e-08, - "costermonger": 1.78e-08, - "countermovement": 1.78e-08, - "countervail": 1.78e-08, - "cowardliness": 1.78e-08, - "creaturely": 1.78e-08, - "crownless": 1.78e-08, - "cycloidal": 1.78e-08, - "dalmatic": 1.78e-08, - "defeasance": 1.78e-08, - "derogative": 1.78e-08, - "despotically": 1.78e-08, - "deviltry": 1.78e-08, - "directer": 1.78e-08, - "dissimilation": 1.78e-08, - "distastefully": 1.78e-08, - "dithyrambic": 1.78e-08, - "divinization": 1.78e-08, - "doddery": 1.78e-08, - "dolichocephalic": 1.78e-08, - "drillmaster": 1.78e-08, - "dush": 1.78e-08, - "embedment": 1.78e-08, - "encyst": 1.78e-08, - "endodontist": 1.78e-08, - "endolymph": 1.78e-08, - "ephorus": 1.78e-08, - "epicentral": 1.78e-08, - "epigenesis": 1.78e-08, - "eriogonum": 1.78e-08, - "estop": 1.78e-08, - "exclusionist": 1.78e-08, - "exhilaratingly": 1.78e-08, - "explicative": 1.78e-08, - "extoll": 1.78e-08, - "fatuously": 1.78e-08, - "felter": 1.78e-08, - "fisetin": 1.78e-08, - "flagellant": 1.78e-08, - "flagstick": 1.78e-08, - "fleabane": 1.78e-08, - "flinger": 1.78e-08, - "floatable": 1.78e-08, - "fluorene": 1.78e-08, - "fordo": 1.78e-08, - "forepart": 1.78e-08, - "fourchette": 1.78e-08, - "fouth": 1.78e-08, - "frabjous": 1.78e-08, - "freakiness": 1.78e-08, - "gadarene": 1.78e-08, - "gateless": 1.78e-08, - "genista": 1.78e-08, - "gorra": 1.78e-08, - "greenhead": 1.78e-08, - "grindingly": 1.78e-08, - "griqua": 1.78e-08, - "grotesqueness": 1.78e-08, - "groundling": 1.78e-08, - "haplessly": 1.78e-08, - "hellene": 1.78e-08, - "herl": 1.78e-08, - "hightop": 1.78e-08, - "hogger": 1.78e-08, - "hogget": 1.78e-08, - "hoodless": 1.78e-08, - "huzoor": 1.78e-08, - "hypertonia": 1.78e-08, - "ichthyosaurus": 1.78e-08, - "immovably": 1.78e-08, - "immunochemistry": 1.78e-08, - "impolitely": 1.78e-08, - "indemnitee": 1.78e-08, - "inexpertly": 1.78e-08, - "infalling": 1.78e-08, - "innovatory": 1.78e-08, - "insectivore": 1.78e-08, - "instanter": 1.78e-08, - "interocular": 1.78e-08, - "interpenetrate": 1.78e-08, - "intersexuality": 1.78e-08, - "introitus": 1.78e-08, - "ionizable": 1.78e-08, - "irreproducible": 1.78e-08, - "jova": 1.78e-08, - "joyousness": 1.78e-08, - "justifier": 1.78e-08, - "karbi": 1.78e-08, - "kinkajou": 1.78e-08, - "klipspringer": 1.78e-08, - "kosong": 1.78e-08, - "laxly": 1.78e-08, - "leaflike": 1.78e-08, - "legendry": 1.78e-08, - "leprosarium": 1.78e-08, - "leptomeningeal": 1.78e-08, - "lightener": 1.78e-08, - "lignocellulose": 1.78e-08, - "ligustrum": 1.78e-08, - "limen": 1.78e-08, - "lochy": 1.78e-08, - "locomobile": 1.78e-08, - "lohar": 1.78e-08, - "lorgnette": 1.78e-08, - "lotic": 1.78e-08, - "lowlander": 1.78e-08, - "lucanus": 1.78e-08, - "lumpiness": 1.78e-08, - "lymphadenitis": 1.78e-08, - "machinable": 1.78e-08, - "mandra": 1.78e-08, - "manlet": 1.78e-08, - "martlet": 1.78e-08, - "matapan": 1.78e-08, - "melanosis": 1.78e-08, - "melodist": 1.78e-08, - "mensural": 1.78e-08, - "mentum": 1.78e-08, - "metallography": 1.78e-08, - "metasomatism": 1.78e-08, - "millibar": 1.78e-08, - "misquotation": 1.78e-08, - "modiolus": 1.78e-08, - "monogenetic": 1.78e-08, - "moreen": 1.78e-08, - "mucocele": 1.78e-08, - "muddiness": 1.78e-08, - "multirate": 1.78e-08, - "myasthenic": 1.78e-08, - "myristate": 1.78e-08, - "mythologist": 1.78e-08, - "mythopoetic": 1.78e-08, - "nadder": 1.78e-08, - "nauseate": 1.78e-08, - "nebulously": 1.78e-08, - "negatory": 1.78e-08, - "neritic": 1.78e-08, - "nestler": 1.78e-08, - "noisiness": 1.78e-08, - "nomogram": 1.78e-08, - "noncritical": 1.78e-08, - "nonpregnant": 1.78e-08, - "northing": 1.78e-08, - "olivary": 1.78e-08, - "olivella": 1.78e-08, - "osteolysis": 1.78e-08, - "outpoint": 1.78e-08, - "overbearingly": 1.78e-08, - "overblowing": 1.78e-08, - "overhit": 1.78e-08, - "overpopulate": 1.78e-08, - "pakhtun": 1.78e-08, - "pangenesis": 1.78e-08, - "paperbark": 1.78e-08, - "papermaker": 1.78e-08, - "paphiopedilum": 1.78e-08, - "papillote": 1.78e-08, - "passionist": 1.78e-08, - "patternmaker": 1.78e-08, - "peeress": 1.78e-08, - "peever": 1.78e-08, - "pennywort": 1.78e-08, - "perspicuous": 1.78e-08, - "phalacrocorax": 1.78e-08, - "pharisaical": 1.78e-08, - "pinioned": 1.78e-08, - "porrect": 1.78e-08, - "portress": 1.78e-08, - "posole": 1.78e-08, - "poult": 1.78e-08, - "practicably": 1.78e-08, - "preimage": 1.78e-08, - "presumptuousness": 1.78e-08, - "prickled": 1.78e-08, - "primality": 1.78e-08, - "procurable": 1.78e-08, - "proem": 1.78e-08, - "prolixity": 1.78e-08, - "provoker": 1.78e-08, - "psychosynthesis": 1.78e-08, - "psychrometric": 1.78e-08, - "punica": 1.78e-08, - "purply": 1.78e-08, - "pyramidalis": 1.78e-08, - "quantitate": 1.78e-08, - "quincentenary": 1.78e-08, - "rainproof": 1.78e-08, - "rastus": 1.78e-08, - "ratel": 1.78e-08, - "recallable": 1.78e-08, - "redetermination": 1.78e-08, - "refeed": 1.78e-08, - "rehung": 1.78e-08, - "relisten": 1.78e-08, - "restudy": 1.78e-08, - "reupholster": 1.78e-08, - "rotundity": 1.78e-08, - "royalism": 1.78e-08, - "ruman": 1.78e-08, - "sacaton": 1.78e-08, - "sanskritic": 1.78e-08, - "sarcocystis": 1.78e-08, - "scabiosa": 1.78e-08, - "scarify": 1.78e-08, - "sceloporus": 1.78e-08, - "schlemiel": 1.78e-08, - "sclerotium": 1.78e-08, - "screwworm": 1.78e-08, - "seminoma": 1.78e-08, - "semiquantitative": 1.78e-08, - "septarian": 1.78e-08, - "settable": 1.78e-08, - "sheat": 1.78e-08, - "shrimper": 1.78e-08, - "siliqua": 1.78e-08, - "skywriter": 1.78e-08, - "slovenliness": 1.78e-08, - "sonobuoy": 1.78e-08, - "soum": 1.78e-08, - "sovereignly": 1.78e-08, - "specificly": 1.78e-08, - "stakhanovite": 1.78e-08, - "stateliness": 1.78e-08, - "steepen": 1.78e-08, - "stickum": 1.78e-08, - "strelitzia": 1.78e-08, - "subacid": 1.78e-08, - "subdivisional": 1.78e-08, - "subungual": 1.78e-08, - "sudanic": 1.78e-08, - "sunbonnet": 1.78e-08, - "supergene": 1.78e-08, - "swearer": 1.78e-08, - "synapsis": 1.78e-08, - "teaware": 1.78e-08, - "teletypewriter": 1.78e-08, - "tercio": 1.78e-08, - "thone": 1.78e-08, - "thoracostomy": 1.78e-08, - "thyrsus": 1.78e-08, - "tinware": 1.78e-08, - "toponym": 1.78e-08, - "torreya": 1.78e-08, - "torturously": 1.78e-08, - "traceried": 1.78e-08, - "tranced": 1.78e-08, - "triennium": 1.78e-08, - "trippingly": 1.78e-08, - "triturus": 1.78e-08, - "tutin": 1.78e-08, - "twentyfold": 1.78e-08, - "umbilicate": 1.78e-08, - "umble": 1.78e-08, - "umiak": 1.78e-08, - "uncatalogued": 1.78e-08, - "undoped": 1.78e-08, - "unfeasibly": 1.78e-08, - "unmanifested": 1.78e-08, - "unpassable": 1.78e-08, - "unsaddled": 1.78e-08, - "unthank": 1.78e-08, - "unwitnessed": 1.78e-08, - "upwell": 1.78e-08, - "valveless": 1.78e-08, - "vasoconstrictive": 1.78e-08, - "veronal": 1.78e-08, - "vesuvian": 1.78e-08, - "vulvitis": 1.78e-08, - "waymark": 1.78e-08, - "wharfage": 1.78e-08, - "whatso": 1.78e-08, - "wone": 1.78e-08, - "wootz": 1.78e-08, - "yaupon": 1.78e-08, - "yday": 1.78e-08, - "yokuts": 1.78e-08, - "yourn": 1.78e-08, - "yulan": 1.78e-08, - "acryl": 1.74e-08, - "agropyron": 1.74e-08, - "agy": 1.74e-08, - "alchemilla": 1.74e-08, - "alemannic": 1.74e-08, - "amazona": 1.74e-08, - "anacreontic": 1.74e-08, - "anaplasma": 1.74e-08, - "angularly": 1.74e-08, - "antigorite": 1.74e-08, - "archerfish": 1.74e-08, - "aseptically": 1.74e-08, - "awadhi": 1.74e-08, - "bacillary": 1.74e-08, - "bacteriuria": 1.74e-08, - "banyuls": 1.74e-08, - "barbless": 1.74e-08, - "batfish": 1.74e-08, - "bearwood": 1.74e-08, - "behen": 1.74e-08, - "berrier": 1.74e-08, - "bethought": 1.74e-08, - "bhaga": 1.74e-08, - "biotype": 1.74e-08, - "boracic": 1.74e-08, - "boxlike": 1.74e-08, - "braider": 1.74e-08, - "byth": 1.74e-08, - "cajanus": 1.74e-08, - "calculational": 1.74e-08, - "caligo": 1.74e-08, - "canella": 1.74e-08, - "capillarity": 1.74e-08, - "carvone": 1.74e-08, - "cataleptic": 1.74e-08, - "caulerpa": 1.74e-08, - "chatti": 1.74e-08, - "cion": 1.74e-08, - "clintonite": 1.74e-08, - "clivus": 1.74e-08, - "coaming": 1.74e-08, - "coccoid": 1.74e-08, - "communicatively": 1.74e-08, - "communization": 1.74e-08, - "conductress": 1.74e-08, - "constructiveness": 1.74e-08, - "continuant": 1.74e-08, - "copei": 1.74e-08, - "corbicula": 1.74e-08, - "corruptness": 1.74e-08, - "cottager": 1.74e-08, - "credulously": 1.74e-08, - "cryptocrystalline": 1.74e-08, - "crystallographer": 1.74e-08, - "cubitus": 1.74e-08, - "cussedness": 1.74e-08, - "cymry": 1.74e-08, - "damningly": 1.74e-08, - "dankness": 1.74e-08, - "deathday": 1.74e-08, - "decorticate": 1.74e-08, - "deknight": 1.74e-08, - "delightsome": 1.74e-08, - "diaeresis": 1.74e-08, - "dipotassium": 1.74e-08, - "disfiguration": 1.74e-08, - "dismissible": 1.74e-08, - "distempered": 1.74e-08, - "distichous": 1.74e-08, - "divus": 1.74e-08, - "diwata": 1.74e-08, - "domer": 1.74e-08, - "dysphasia": 1.74e-08, - "echoic": 1.74e-08, - "eddo": 1.74e-08, - "egoistical": 1.74e-08, - "eleocharis": 1.74e-08, - "elkhound": 1.74e-08, - "enharmonically": 1.74e-08, - "epenthetic": 1.74e-08, - "eutherian": 1.74e-08, - "extenuate": 1.74e-08, - "exteriorization": 1.74e-08, - "extrapulmonary": 1.74e-08, - "farriery": 1.74e-08, - "femininely": 1.74e-08, - "fieldworker": 1.74e-08, - "fisty": 1.74e-08, - "flavobacterium": 1.74e-08, - "fogy": 1.74e-08, - "foldy": 1.74e-08, - "freckling": 1.74e-08, - "gastrovascular": 1.74e-08, - "godsake": 1.74e-08, - "graphologist": 1.74e-08, - "gregariousness": 1.74e-08, - "gunne": 1.74e-08, - "haemorrhoid": 1.74e-08, - "hemifacial": 1.74e-08, - "hindquarter": 1.74e-08, - "hirofumi": 1.74e-08, - "historiated": 1.74e-08, - "hoit": 1.74e-08, - "holer": 1.74e-08, - "homarus": 1.74e-08, - "humoresque": 1.74e-08, - "humous": 1.74e-08, - "hypha": 1.74e-08, - "iliacus": 1.74e-08, - "illiberalism": 1.74e-08, - "imploringly": 1.74e-08, - "incisal": 1.74e-08, - "indebt": 1.74e-08, - "infarcted": 1.74e-08, - "innateness": 1.74e-08, - "intersystem": 1.74e-08, - "inutile": 1.74e-08, - "ironist": 1.74e-08, - "januarius": 1.74e-08, - "jejunal": 1.74e-08, - "jerm": 1.74e-08, - "keratectomy": 1.74e-08, - "keylock": 1.74e-08, - "kiddish": 1.74e-08, - "laodicean": 1.74e-08, - "lasius": 1.74e-08, - "lemniscus": 1.74e-08, - "lepidodendron": 1.74e-08, - "ligule": 1.74e-08, - "limitlessly": 1.74e-08, - "limonium": 1.74e-08, - "lissom": 1.74e-08, - "lissome": 1.74e-08, - "lukewarmness": 1.74e-08, - "lycium": 1.74e-08, - "lymphopenia": 1.74e-08, - "machiavel": 1.74e-08, - "magnetometry": 1.74e-08, - "maltster": 1.74e-08, - "manent": 1.74e-08, - "manihot": 1.74e-08, - "maux": 1.74e-08, - "mechlin": 1.74e-08, - "melampus": 1.74e-08, - "melungeon": 1.74e-08, - "mesomorphic": 1.74e-08, - "meteorologically": 1.74e-08, - "misalliance": 1.74e-08, - "misremember": 1.74e-08, - "mogadore": 1.74e-08, - "monologist": 1.74e-08, - "moste": 1.74e-08, - "mudskipper": 1.74e-08, - "multiparous": 1.74e-08, - "municipalization": 1.74e-08, - "naziism": 1.74e-08, - "necator": 1.74e-08, - "nitch": 1.74e-08, - "nitrosyl": 1.74e-08, - "nonbreeding": 1.74e-08, - "nonfederal": 1.74e-08, - "nudd": 1.74e-08, - "octosyllabic": 1.74e-08, - "oocyst": 1.74e-08, - "orpiment": 1.74e-08, - "outcross": 1.74e-08, - "outdistance": 1.74e-08, - "outride": 1.74e-08, - "overberg": 1.74e-08, - "paleoceanography": 1.74e-08, - "paniculate": 1.74e-08, - "pantalon": 1.74e-08, - "parasitemia": 1.74e-08, - "parthenium": 1.74e-08, - "patrilocal": 1.74e-08, - "peplos": 1.74e-08, - "perfuse": 1.74e-08, - "pettifogging": 1.74e-08, - "phormium": 1.74e-08, - "photopolymerization": 1.74e-08, - "piast": 1.74e-08, - "piegan": 1.74e-08, - "pilin": 1.74e-08, - "pinetum": 1.74e-08, - "pinguin": 1.74e-08, - "platano": 1.74e-08, - "platyhelminthes": 1.74e-08, - "plaudit": 1.74e-08, - "playlet": 1.74e-08, - "plumbum": 1.74e-08, - "polistes": 1.74e-08, - "polyptych": 1.74e-08, - "postbag": 1.74e-08, - "pouter": 1.74e-08, - "precociousness": 1.74e-08, - "pressboard": 1.74e-08, - "presymptomatic": 1.74e-08, - "preyer": 1.74e-08, - "prodigality": 1.74e-08, - "proleague": 1.74e-08, - "proselytizer": 1.74e-08, - "pueblito": 1.74e-08, - "quintuplet": 1.74e-08, - "quizzer": 1.74e-08, - "reconciler": 1.74e-08, - "refind": 1.74e-08, - "representer": 1.74e-08, - "resourcefully": 1.74e-08, - "respectfulness": 1.74e-08, - "retractile": 1.74e-08, - "retransfer": 1.74e-08, - "retrobulbar": 1.74e-08, - "retting": 1.74e-08, - "revaluate": 1.74e-08, - "reversi": 1.74e-08, - "rudas": 1.74e-08, - "salvarsan": 1.74e-08, - "samh": 1.74e-08, - "sanai": 1.74e-08, - "sandglass": 1.74e-08, - "sanjib": 1.74e-08, - "saraband": 1.74e-08, - "scarlatina": 1.74e-08, - "schnapper": 1.74e-08, - "scholium": 1.74e-08, - "scoffer": 1.74e-08, - "seamark": 1.74e-08, - "seamlessness": 1.74e-08, - "semivowel": 1.74e-08, - "septime": 1.74e-08, - "seriate": 1.74e-08, - "sethian": 1.74e-08, - "shipside": 1.74e-08, - "shoreland": 1.74e-08, - "sicula": 1.74e-08, - "sidepiece": 1.74e-08, - "siglos": 1.74e-08, - "siksika": 1.74e-08, - "skidder": 1.74e-08, - "socky": 1.74e-08, - "soilless": 1.74e-08, - "somewhen": 1.74e-08, - "soupcon": 1.74e-08, - "spaded": 1.74e-08, - "spheric": 1.74e-08, - "spiracular": 1.74e-08, - "starlike": 1.74e-08, - "statelet": 1.74e-08, - "stereopticon": 1.74e-08, - "stingily": 1.74e-08, - "strenth": 1.74e-08, - "strychnos": 1.74e-08, - "surgeonfish": 1.74e-08, - "syrtis": 1.74e-08, - "tailstock": 1.74e-08, - "talkativeness": 1.74e-08, - "teache": 1.74e-08, - "tetum": 1.74e-08, - "throe": 1.74e-08, - "toadflax": 1.74e-08, - "toponymy": 1.74e-08, - "townfolk": 1.74e-08, - "toyon": 1.74e-08, - "trancelike": 1.74e-08, - "trichloroacetic": 1.74e-08, - "tsubo": 1.74e-08, - "twal": 1.74e-08, - "tympany": 1.74e-08, - "umbilicated": 1.74e-08, - "unadvisedly": 1.74e-08, - "uncancelled": 1.74e-08, - "undreamt": 1.74e-08, - "unflatteringly": 1.74e-08, - "unknot": 1.74e-08, - "unmodulated": 1.74e-08, - "unpatentable": 1.74e-08, - "unrepeated": 1.74e-08, - "unreviewable": 1.74e-08, - "unsalaried": 1.74e-08, - "unsane": 1.74e-08, - "unsharpened": 1.74e-08, - "unsoiled": 1.74e-08, - "unstamped": 1.74e-08, - "unsuspicious": 1.74e-08, - "untiringly": 1.74e-08, - "untraveled": 1.74e-08, - "unvalued": 1.74e-08, - "unwalled": 1.74e-08, - "unwarrantable": 1.74e-08, - "usnea": 1.74e-08, - "utai": 1.74e-08, - "vegetational": 1.74e-08, - "ventersdorp": 1.74e-08, - "vermiculated": 1.74e-08, - "vicinage": 1.74e-08, - "virgate": 1.74e-08, - "vivify": 1.74e-08, - "volva": 1.74e-08, - "washday": 1.74e-08, - "wettable": 1.74e-08, - "whitter": 1.74e-08, - "wisconsinite": 1.74e-08, - "wodge": 1.74e-08, - "achen": 1.7e-08, - "acquirable": 1.7e-08, - "acrididae": 1.7e-08, - "adnexal": 1.7e-08, - "adrenalectomy": 1.7e-08, - "alencon": 1.7e-08, - "amorously": 1.7e-08, - "anhang": 1.7e-08, - "anthus": 1.7e-08, - "antiquarianism": 1.7e-08, - "apidae": 1.7e-08, - "artistical": 1.7e-08, - "astilbe": 1.7e-08, - "auriferous": 1.7e-08, - "auspex": 1.7e-08, - "autoignition": 1.7e-08, - "axman": 1.7e-08, - "axonometric": 1.7e-08, - "balaghat": 1.7e-08, - "ballistae": 1.7e-08, - "balustraded": 1.7e-08, - "bangalow": 1.7e-08, - "basuto": 1.7e-08, - "bayamo": 1.7e-08, - "benzidine": 1.7e-08, - "blackcock": 1.7e-08, - "blash": 1.7e-08, - "blastoderm": 1.7e-08, - "blueing": 1.7e-08, - "bodle": 1.7e-08, - "borning": 1.7e-08, - "boxfish": 1.7e-08, - "brahui": 1.7e-08, - "broll": 1.7e-08, - "buckstone": 1.7e-08, - "bushwood": 1.7e-08, - "caddoan": 1.7e-08, - "capric": 1.7e-08, - "capsa": 1.7e-08, - "chartaceous": 1.7e-08, - "chemosynthetic": 1.7e-08, - "chiastic": 1.7e-08, - "chokeberry": 1.7e-08, - "chouette": 1.7e-08, - "claustral": 1.7e-08, - "clifty": 1.7e-08, - "coccidioides": 1.7e-08, - "coelomic": 1.7e-08, - "colombina": 1.7e-08, - "communalist": 1.7e-08, - "compony": 1.7e-08, - "conceptional": 1.7e-08, - "conchological": 1.7e-08, - "connectional": 1.7e-08, - "conspicuousness": 1.7e-08, - "continuer": 1.7e-08, - "coronate": 1.7e-08, - "corselet": 1.7e-08, - "coryza": 1.7e-08, - "cottus": 1.7e-08, - "coumaric": 1.7e-08, - "covariation": 1.7e-08, - "creational": 1.7e-08, - "crutching": 1.7e-08, - "cymbopogon": 1.7e-08, - "cymose": 1.7e-08, - "cystinuria": 1.7e-08, - "decarbonize": 1.7e-08, - "dedifferentiation": 1.7e-08, - "dejeuner": 1.7e-08, - "delsarte": 1.7e-08, - "dentalium": 1.7e-08, - "dentinal": 1.7e-08, - "derailer": 1.7e-08, - "derivatively": 1.7e-08, - "dermatopathology": 1.7e-08, - "deuterocanonical": 1.7e-08, - "dichotic": 1.7e-08, - "dichotomously": 1.7e-08, - "didactically": 1.7e-08, - "dinitrate": 1.7e-08, - "discriminability": 1.7e-08, - "dodecahedral": 1.7e-08, - "dripstone": 1.7e-08, - "dromos": 1.7e-08, - "electrosurgery": 1.7e-08, - "empusa": 1.7e-08, - "endemically": 1.7e-08, - "equatorially": 1.7e-08, - "erewhile": 1.7e-08, - "expansible": 1.7e-08, - "febrifuge": 1.7e-08, - "fibroadenoma": 1.7e-08, - "floorless": 1.7e-08, - "focsle": 1.7e-08, - "fomes": 1.7e-08, - "forepeak": 1.7e-08, - "formel": 1.7e-08, - "formy": 1.7e-08, - "frazil": 1.7e-08, - "fyrd": 1.7e-08, - "galactorrhea": 1.7e-08, - "genro": 1.7e-08, - "geranyl": 1.7e-08, - "germen": 1.7e-08, - "gilbertese": 1.7e-08, - "glycogenolysis": 1.7e-08, - "gnarl": 1.7e-08, - "graptolite": 1.7e-08, - "graticule": 1.7e-08, - "gravamen": 1.7e-08, - "helicoidal": 1.7e-08, - "heptarchy": 1.7e-08, - "heteromorphic": 1.7e-08, - "histiocytic": 1.7e-08, - "hornfels": 1.7e-08, - "humean": 1.7e-08, - "hydrographical": 1.7e-08, - "hypogeum": 1.7e-08, - "individuate": 1.7e-08, - "inferentially": 1.7e-08, - "inscrutably": 1.7e-08, - "insentient": 1.7e-08, - "interposer": 1.7e-08, - "interpretational": 1.7e-08, - "inturn": 1.7e-08, - "ipil": 1.7e-08, - "jasminum": 1.7e-08, - "jebusite": 1.7e-08, - "judger": 1.7e-08, - "jussive": 1.7e-08, - "kippy": 1.7e-08, - "lamblia": 1.7e-08, - "lavabo": 1.7e-08, - "lightish": 1.7e-08, - "limax": 1.7e-08, - "litotes": 1.7e-08, - "lubricious": 1.7e-08, - "luddism": 1.7e-08, - "luteolin": 1.7e-08, - "macrobiotics": 1.7e-08, - "madrasi": 1.7e-08, - "maleficence": 1.7e-08, - "malmsey": 1.7e-08, - "margay": 1.7e-08, - "marmorated": 1.7e-08, - "marquisate": 1.7e-08, - "matris": 1.7e-08, - "maturer": 1.7e-08, - "meece": 1.7e-08, - "megachile": 1.7e-08, - "mehari": 1.7e-08, - "mellophone": 1.7e-08, - "memphite": 1.7e-08, - "meshech": 1.7e-08, - "mesomorph": 1.7e-08, - "microcellular": 1.7e-08, - "microphthalmia": 1.7e-08, - "migrator": 1.7e-08, - "miltos": 1.7e-08, - "minable": 1.7e-08, - "monodon": 1.7e-08, - "multigraph": 1.7e-08, - "myoma": 1.7e-08, - "naphthyl": 1.7e-08, - "neoteric": 1.7e-08, - "neuraxis": 1.7e-08, - "nilgai": 1.7e-08, - "nonagricultural": 1.7e-08, - "nonbiological": 1.7e-08, - "nondominant": 1.7e-08, - "nonorganic": 1.7e-08, - "nursling": 1.7e-08, - "orakzai": 1.7e-08, - "oriflamme": 1.7e-08, - "ormer": 1.7e-08, - "ottar": 1.7e-08, - "outdrive": 1.7e-08, - "palinurus": 1.7e-08, - "palmist": 1.7e-08, - "papillomatosis": 1.7e-08, - "pearmain": 1.7e-08, - "peltate": 1.7e-08, - "penetrometer": 1.7e-08, - "peppin": 1.7e-08, - "perchloroethylene": 1.7e-08, - "perkiness": 1.7e-08, - "petaloid": 1.7e-08, - "phenothiazine": 1.7e-08, - "phonolite": 1.7e-08, - "plasmic": 1.7e-08, - "plesiomorphic": 1.7e-08, - "polychromy": 1.7e-08, - "pontil": 1.7e-08, - "precedented": 1.7e-08, - "precipitant": 1.7e-08, - "primar": 1.7e-08, - "productid": 1.7e-08, - "promisee": 1.7e-08, - "provenience": 1.7e-08, - "pruinose": 1.7e-08, - "puerperium": 1.7e-08, - "puker": 1.7e-08, - "punchinello": 1.7e-08, - "pyrometer": 1.7e-08, - "quadrilogy": 1.7e-08, - "quaedam": 1.7e-08, - "quinsy": 1.7e-08, - "racemate": 1.7e-08, - "raphia": 1.7e-08, - "recommission": 1.7e-08, - "redeposit": 1.7e-08, - "regenesis": 1.7e-08, - "reimage": 1.7e-08, - "relativize": 1.7e-08, - "reutilization": 1.7e-08, - "ribby": 1.7e-08, - "rinka": 1.7e-08, - "romantical": 1.7e-08, - "rosily": 1.7e-08, - "sabbatarian": 1.7e-08, - "sackman": 1.7e-08, - "sacrificer": 1.7e-08, - "safavi": 1.7e-08, - "scarer": 1.7e-08, - "scientistic": 1.7e-08, - "sculp": 1.7e-08, - "scurf": 1.7e-08, - "seckel": 1.7e-08, - "seeress": 1.7e-08, - "semimonthly": 1.7e-08, - "septennial": 1.7e-08, - "serer": 1.7e-08, - "sestet": 1.7e-08, - "shiftable": 1.7e-08, - "shogunal": 1.7e-08, - "shuff": 1.7e-08, - "sickling": 1.7e-08, - "simoom": 1.7e-08, - "sinitic": 1.7e-08, - "sirenia": 1.7e-08, - "skaff": 1.7e-08, - "smiter": 1.7e-08, - "sneezer": 1.7e-08, - "spadefish": 1.7e-08, - "specked": 1.7e-08, - "speen": 1.7e-08, - "sponson": 1.7e-08, - "stadholder": 1.7e-08, - "starveling": 1.7e-08, - "stech": 1.7e-08, - "straightup": 1.7e-08, - "strategi": 1.7e-08, - "streck": 1.7e-08, - "subserve": 1.7e-08, - "substructural": 1.7e-08, - "subtleness": 1.7e-08, - "sulcate": 1.7e-08, - "sulfuryl": 1.7e-08, - "sunlike": 1.7e-08, - "syncytium": 1.7e-08, - "talmudical": 1.7e-08, - "tamandua": 1.7e-08, - "tannaitic": 1.7e-08, - "telemeter": 1.7e-08, - "tellurian": 1.7e-08, - "terral": 1.7e-08, - "thermolysis": 1.7e-08, - "tiam": 1.7e-08, - "timbrel": 1.7e-08, - "toher": 1.7e-08, - "tortrix": 1.7e-08, - "touse": 1.7e-08, - "tracheobronchial": 1.7e-08, - "transmogrify": 1.7e-08, - "treelike": 1.7e-08, - "tremblingly": 1.7e-08, - "trephine": 1.7e-08, - "trixy": 1.7e-08, - "tyrannic": 1.7e-08, - "umbriel": 1.7e-08, - "undeciphered": 1.7e-08, - "underly": 1.7e-08, - "unenumerated": 1.7e-08, - "ungrouped": 1.7e-08, - "unornamented": 1.7e-08, - "unsex": 1.7e-08, - "unsuspended": 1.7e-08, - "unweathered": 1.7e-08, - "urushi": 1.7e-08, - "vasty": 1.7e-08, - "verdelho": 1.7e-08, - "vocalism": 1.7e-08, - "wangan": 1.7e-08, - "wega": 1.7e-08, - "welshness": 1.7e-08, - "wene": 1.7e-08, - "whits": 1.51e-08, - "whity": 1.7e-08, - "winterization": 1.7e-08, - "witheringly": 1.7e-08, - "yapa": 1.7e-08, - "yark": 1.7e-08, - "zamia": 1.7e-08, - "abbassi": 1.66e-08, - "abusiveness": 1.66e-08, - "acception": 1.66e-08, - "agla": 1.66e-08, - "airsickness": 1.66e-08, - "altricial": 1.66e-08, - "amateurishly": 1.66e-08, - "amyris": 1.66e-08, - "anamorphosis": 1.66e-08, - "ancylostoma": 1.66e-08, - "antilia": 1.66e-08, - "aptera": 1.66e-08, - "aquascutum": 1.66e-08, - "arenicola": 1.66e-08, - "argel": 1.66e-08, - "artiodactyla": 1.66e-08, - "asiento": 1.66e-08, - "atwitter": 1.66e-08, - "autosome": 1.66e-08, - "balustrading": 1.66e-08, - "barye": 1.66e-08, - "beamy": 1.66e-08, - "beechy": 1.66e-08, - "bemuse": 1.66e-08, - "bendingly": 1.66e-08, - "beribboned": 1.66e-08, - "biographically": 1.66e-08, - "bloodlessly": 1.66e-08, - "blueback": 1.66e-08, - "bluet": 1.66e-08, - "boser": 1.66e-08, - "broomcorn": 1.66e-08, - "broon": 1.66e-08, - "bult": 1.66e-08, - "byssus": 1.66e-08, - "caladium": 1.66e-08, - "calvaria": 1.66e-08, - "canebrake": 1.66e-08, - "cantharidin": 1.66e-08, - "capreolus": 1.66e-08, - "cardamine": 1.66e-08, - "cardinalate": 1.66e-08, - "caryophyllene": 1.66e-08, - "cauter": 1.66e-08, - "centage": 1.66e-08, - "centry": 1.66e-08, - "cerussite": 1.66e-08, - "cervidae": 1.66e-08, - "chancre": 1.66e-08, - "chancroid": 1.66e-08, - "cheapish": 1.66e-08, - "chital": 1.66e-08, - "clitoridectomy": 1.66e-08, - "closable": 1.66e-08, - "clotheshorse": 1.66e-08, - "coltish": 1.66e-08, - "concolorous": 1.66e-08, - "concupiscent": 1.66e-08, - "conservational": 1.66e-08, - "copular": 1.66e-08, - "crambe": 1.66e-08, - "crescentic": 1.66e-08, - "critch": 1.66e-08, - "crotched": 1.66e-08, - "dabby": 1.66e-08, - "dastard": 1.66e-08, - "decus": 1.66e-08, - "degradative": 1.66e-08, - "demonetize": 1.66e-08, - "desistance": 1.66e-08, - "desulfovibrio": 1.66e-08, - "devadasi": 1.66e-08, - "deviser": 1.66e-08, - "dharani": 1.66e-08, - "diastatic": 1.66e-08, - "diazomethane": 1.66e-08, - "dicarboxylate": 1.66e-08, - "discomfit": 1.66e-08, - "displayable": 1.66e-08, - "distractive": 1.66e-08, - "dodman": 1.66e-08, - "dolichos": 1.66e-08, - "dominionist": 1.66e-08, - "drukpa": 1.66e-08, - "earthlight": 1.66e-08, - "effervesce": 1.66e-08, - "eleemosynary": 1.66e-08, - "elfland": 1.66e-08, - "encashment": 1.66e-08, - "engager": 1.66e-08, - "epicardial": 1.66e-08, - "epidendrum": 1.66e-08, - "epiphenomenon": 1.66e-08, - "epiphora": 1.66e-08, - "equiangular": 1.66e-08, - "esophagectomy": 1.66e-08, - "expostulate": 1.66e-08, - "extraditable": 1.66e-08, - "eyestalk": 1.66e-08, - "fibrosarcoma": 1.66e-08, - "fibrovascular": 1.66e-08, - "flimsiness": 1.66e-08, - "floodwood": 1.66e-08, - "floridly": 1.66e-08, - "foliot": 1.66e-08, - "forwent": 1.66e-08, - "foudroyant": 1.66e-08, - "fractionate": 1.66e-08, - "frize": 1.66e-08, - "fussily": 1.66e-08, - "gameness": 1.66e-08, - "garniture": 1.66e-08, - "gazella": 1.66e-08, - "girlishly": 1.66e-08, - "glossina": 1.66e-08, - "gneissic": 1.66e-08, - "goup": 1.66e-08, - "grimalkin": 1.66e-08, - "grisette": 1.66e-08, - "gruffness": 1.66e-08, - "habenula": 1.66e-08, - "harebell": 1.66e-08, - "hateable": 1.66e-08, - "hattery": 1.66e-08, - "heathenish": 1.66e-08, - "helvetian": 1.66e-08, - "helvetii": 1.66e-08, - "hemosiderin": 1.66e-08, - "heterocycle": 1.66e-08, - "hittable": 1.66e-08, - "hoyden": 1.66e-08, - "hydrostatically": 1.66e-08, - "imperata": 1.66e-08, - "incestuously": 1.66e-08, - "inconsideration": 1.66e-08, - "indeterminately": 1.66e-08, - "indolently": 1.66e-08, - "induna": 1.66e-08, - "inframammary": 1.66e-08, - "infraspinatus": 1.66e-08, - "ingloriously": 1.66e-08, - "insertive": 1.66e-08, - "internationality": 1.66e-08, - "interrogatively": 1.66e-08, - "interwove": 1.66e-08, - "invertase": 1.66e-08, - "isoquinoline": 1.66e-08, - "ivin": 1.66e-08, - "jacobinism": 1.66e-08, - "jemadar": 1.66e-08, - "jewfish": 1.66e-08, - "jube": 1.66e-08, - "kinematical": 1.66e-08, - "kinematograph": 1.66e-08, - "kizil": 1.66e-08, - "knuckler": 1.66e-08, - "lamium": 1.66e-08, - "lawbook": 1.66e-08, - "layland": 1.66e-08, - "lenth": 1.66e-08, - "lesional": 1.66e-08, - "lifespring": 1.66e-08, - "ligula": 1.66e-08, - "limu": 1.66e-08, - "longspur": 1.66e-08, - "luminesce": 1.66e-08, - "lyrebird": 1.66e-08, - "maccabaeus": 1.66e-08, - "maculate": 1.66e-08, - "majuscule": 1.66e-08, - "managership": 1.66e-08, - "megaron": 1.66e-08, - "memphian": 1.66e-08, - "mephitic": 1.66e-08, - "mesothelial": 1.66e-08, - "messmate": 1.66e-08, - "microcopy": 1.66e-08, - "microcosmos": 1.66e-08, - "microsporum": 1.66e-08, - "millerite": 1.66e-08, - "milliampere": 1.66e-08, - "misstate": 1.66e-08, - "mizzenmast": 1.66e-08, - "mizzle": 1.66e-08, - "mizzy": 1.66e-08, - "modiste": 1.66e-08, - "molinia": 1.66e-08, - "monomaniac": 1.66e-08, - "morphew": 1.66e-08, - "nebulization": 1.66e-08, - "neopagan": 1.66e-08, - "neuromotor": 1.66e-08, - "nomic": 1.66e-08, - "noncentral": 1.66e-08, - "norie": 1.66e-08, - "norlander": 1.66e-08, - "nuncle": 1.66e-08, - "oldster": 1.66e-08, - "oligochaeta": 1.66e-08, - "omened": 1.66e-08, - "omphalocele": 1.66e-08, - "overinvestment": 1.66e-08, - "painty": 1.66e-08, - "palaeogeography": 1.66e-08, - "pantun": 1.66e-08, - "paraffinic": 1.66e-08, - "parentally": 1.66e-08, - "particularize": 1.66e-08, - "patriciate": 1.66e-08, - "paup": 1.66e-08, - "pelter": 1.66e-08, - "perplexingly": 1.66e-08, - "philosoph": 1.66e-08, - "phytogeography": 1.66e-08, - "phytolacca": 1.66e-08, - "pictorialism": 1.66e-08, - "pinaceae": 1.66e-08, - "pipestem": 1.66e-08, - "pleck": 1.66e-08, - "plesiosaurus": 1.66e-08, - "pneumonectomy": 1.66e-08, - "pockmark": 1.66e-08, - "pointedness": 1.66e-08, - "polychaeta": 1.66e-08, - "potassic": 1.66e-08, - "pouce": 1.66e-08, - "preassigned": 1.66e-08, - "prelapsarian": 1.66e-08, - "prescriptively": 1.66e-08, - "proconsular": 1.66e-08, - "prostyle": 1.66e-08, - "protasis": 1.66e-08, - "prut": 1.66e-08, - "pulli": 1.66e-08, - "pythagoreanism": 1.66e-08, - "rabelaisian": 1.66e-08, - "raptus": 1.66e-08, - "reft": 1.66e-08, - "refulgent": 1.66e-08, - "relink": 1.66e-08, - "remiges": 1.66e-08, - "reregister": 1.66e-08, - "resile": 1.66e-08, - "restiveness": 1.66e-08, - "reversable": 1.66e-08, - "rewinder": 1.66e-08, - "rigidness": 1.66e-08, - "rockwork": 1.66e-08, - "sabaean": 1.66e-08, - "salesclerk": 1.66e-08, - "salubrity": 1.66e-08, - "samite": 1.66e-08, - "sarcolemma": 1.66e-08, - "sarcoptic": 1.66e-08, - "scrupulousness": 1.66e-08, - "secale": 1.66e-08, - "seediness": 1.66e-08, - "semipermanent": 1.66e-08, - "semitics": 1.66e-08, - "senlac": 1.66e-08, - "sesquipedalian": 1.66e-08, - "shapen": 1.66e-08, - "shikara": 1.66e-08, - "shrive": 1.66e-08, - "silen": 1.66e-08, - "skelp": 1.66e-08, - "skirling": 1.66e-08, - "slowish": 1.66e-08, - "sloyd": 1.66e-08, - "sniffly": 1.66e-08, - "somal": 1.66e-08, - "soud": 1.66e-08, - "spellcraft": 1.66e-08, - "spile": 1.66e-08, - "spindled": 1.66e-08, - "sponger": 1.66e-08, - "sporades": 1.66e-08, - "standfast": 1.66e-08, - "starcher": 1.66e-08, - "stereotypy": 1.66e-08, - "stewpot": 1.66e-08, - "stillhouse": 1.66e-08, - "stinted": 1.66e-08, - "stoep": 1.66e-08, - "stridulation": 1.66e-08, - "strophanthus": 1.66e-08, - "subbasement": 1.66e-08, - "subindex": 1.66e-08, - "sublimed": 1.66e-08, - "subphylum": 1.66e-08, - "subscapular": 1.66e-08, - "sultriness": 1.66e-08, - "summability": 1.66e-08, - "suppling": 1.66e-08, - "suprarenal": 1.66e-08, - "suspiciousness": 1.66e-08, - "suttee": 1.66e-08, - "swamper": 1.66e-08, - "swiney": 1.66e-08, - "switchman": 1.66e-08, - "tamburello": 1.66e-08, - "tectona": 1.66e-08, - "tehsildar": 1.66e-08, - "televisor": 1.66e-08, - "thermostability": 1.66e-08, - "tilter": 1.66e-08, - "torma": 1.66e-08, - "toxicosis": 1.66e-08, - "transcendently": 1.66e-08, - "transversalis": 1.66e-08, - "tremolite": 1.66e-08, - "trogs": 1.66e-08, - "unaccommodating": 1.66e-08, - "unamplified": 1.66e-08, - "unbudgeted": 1.66e-08, - "uncapable": 1.66e-08, - "unexercised": 1.66e-08, - "unfancied": 1.66e-08, - "ungual": 1.66e-08, - "unilocular": 1.66e-08, - "unmeet": 1.66e-08, - "unpresentable": 1.66e-08, - "unproductively": 1.66e-08, - "unshakably": 1.66e-08, - "unshorn": 1.66e-08, - "unstopped": 1.66e-08, - "unvalidated": 1.66e-08, - "unvanquished": 1.66e-08, - "unwearied": 1.66e-08, - "uraeus": 1.66e-08, - "vasodilatation": 1.66e-08, - "veliger": 1.66e-08, - "vendace": 1.66e-08, - "violon": 1.66e-08, - "visionless": 1.66e-08, - "voguish": 1.66e-08, - "voidness": 1.66e-08, - "waggish": 1.66e-08, - "washdown": 1.66e-08, - "washerman": 1.66e-08, - "webwork": 1.66e-08, - "whensoever": 1.66e-08, - "whimsey": 1.66e-08, - "yapped": 1.66e-08, - "yolked": 1.66e-08, - "zayat": 1.66e-08, - "zonally": 1.66e-08, - "zwinglian": 1.66e-08, - "abstractness": 1.62e-08, - "acidophilic": 1.62e-08, - "acoustician": 1.62e-08, - "advisee": 1.62e-08, - "affirmance": 1.62e-08, - "africanization": 1.62e-08, - "alanyl": 1.62e-08, - "allometry": 1.62e-08, - "allotrope": 1.62e-08, - "almandine": 1.62e-08, - "ambivert": 1.62e-08, - "aminobenzoic": 1.62e-08, - "androsterone": 1.62e-08, - "ardelia": 1.62e-08, - "aroid": 1.62e-08, - "arteriography": 1.62e-08, - "avaunt": 1.62e-08, - "avouch": 1.62e-08, - "bagani": 1.62e-08, - "balkanize": 1.62e-08, - "barwood": 1.62e-08, - "basilosaurus": 1.62e-08, - "benedicite": 1.62e-08, - "blandish": 1.62e-08, - "bloodthirst": 1.62e-08, - "boisterousness": 1.62e-08, - "boride": 1.62e-08, - "bracteate": 1.62e-08, - "briss": 1.62e-08, - "bubinga": 1.62e-08, - "bulter": 1.62e-08, - "byname": 1.62e-08, - "caddish": 1.62e-08, - "calotype": 1.62e-08, - "cammed": 1.62e-08, - "campaspe": 1.62e-08, - "capacitation": 1.62e-08, - "capless": 1.62e-08, - "carinated": 1.62e-08, - "carronade": 1.62e-08, - "cavus": 1.62e-08, - "celotex": 1.62e-08, - "centralizer": 1.62e-08, - "charka": 1.62e-08, - "cheeser": 1.62e-08, - "chilver": 1.62e-08, - "chlordane": 1.62e-08, - "chunga": 1.62e-08, - "circumvallation": 1.62e-08, - "clinal": 1.62e-08, - "clootie": 1.62e-08, - "concretize": 1.62e-08, - "confutation": 1.62e-08, - "coniacian": 1.62e-08, - "connexus": 1.62e-08, - "contemptibly": 1.62e-08, - "controllably": 1.62e-08, - "controvert": 1.62e-08, - "corallina": 1.62e-08, - "correlatively": 1.62e-08, - "counteractive": 1.62e-08, - "counterblast": 1.62e-08, - "counterscarp": 1.62e-08, - "croche": 1.62e-08, - "crocosmia": 1.62e-08, - "cumulant": 1.62e-08, - "cupronickel": 1.62e-08, - "cutup": 1.62e-08, - "cyclothymia": 1.62e-08, - "cytologic": 1.62e-08, - "daira": 1.62e-08, - "dalradian": 1.62e-08, - "dashy": 1.62e-08, - "daymark": 1.62e-08, - "decarburization": 1.62e-08, - "decimeter": 1.62e-08, - "dendrochronological": 1.62e-08, - "densify": 1.62e-08, - "densitometer": 1.62e-08, - "determinately": 1.62e-08, - "digamma": 1.62e-08, - "dinmont": 1.62e-08, - "dislodgement": 1.62e-08, - "dittany": 1.62e-08, - "dixy": 1.62e-08, - "dormy": 1.62e-08, - "doser": 1.62e-08, - "dratted": 1.62e-08, - "drupa": 1.62e-08, - "dysgenic": 1.62e-08, - "ebullition": 1.62e-08, - "electrohydraulic": 1.62e-08, - "electroscope": 1.62e-08, - "endobronchial": 1.62e-08, - "endogenic": 1.62e-08, - "epicly": 1.62e-08, - "equid": 1.62e-08, - "etheria": 1.62e-08, - "etui": 1.62e-08, - "eurythmy": 1.62e-08, - "farer": 1.62e-08, - "fezziwig": 1.62e-08, - "fivesome": 1.62e-08, - "flibbertigibbet": 1.62e-08, - "flocculant": 1.62e-08, - "floody": 1.62e-08, - "foliose": 1.62e-08, - "forementioned": 1.62e-08, - "formational": 1.62e-08, - "fragrantly": 1.62e-08, - "freebooting": 1.62e-08, - "fullam": 1.62e-08, - "fulsomely": 1.62e-08, - "gaper": 1.62e-08, - "glore": 1.62e-08, - "glycolate": 1.62e-08, - "goldish": 1.62e-08, - "guipure": 1.62e-08, - "gule": 1.62e-08, - "habited": 1.62e-08, - "hadland": 1.62e-08, - "hairspring": 1.62e-08, - "hassock": 1.62e-08, - "hawkweed": 1.62e-08, - "hefter": 1.62e-08, - "heirship": 1.62e-08, - "heptagonal": 1.62e-08, - "hoatzin": 1.62e-08, - "homonymy": 1.62e-08, - "hopple": 1.62e-08, - "houri": 1.62e-08, - "housebreak": 1.62e-08, - "huipil": 1.62e-08, - "hydrograph": 1.62e-08, - "hyne": 1.62e-08, - "hypersecretion": 1.62e-08, - "hypothecation": 1.62e-08, - "inchoative": 1.62e-08, - "indefensibly": 1.62e-08, - "indeterministic": 1.62e-08, - "indirectness": 1.62e-08, - "indissolubility": 1.62e-08, - "indorse": 1.62e-08, - "infusoria": 1.62e-08, - "ingenuousness": 1.62e-08, - "intactness": 1.62e-08, - "intercensal": 1.62e-08, - "intermunicipal": 1.62e-08, - "intrepidly": 1.62e-08, - "intromission": 1.62e-08, - "iritis": 1.62e-08, - "jackaroo": 1.62e-08, - "jewishly": 1.62e-08, - "keratinous": 1.62e-08, - "kerygma": 1.62e-08, - "knurl": 1.62e-08, - "kulang": 1.62e-08, - "ladleful": 1.62e-08, - "lampblack": 1.62e-08, - "langle": 1.62e-08, - "latria": 1.62e-08, - "lewisian": 1.62e-08, - "lightkeeper": 1.62e-08, - "lineation": 1.62e-08, - "lombardic": 1.62e-08, - "lysimachia": 1.62e-08, - "malati": 1.62e-08, - "mandolinist": 1.62e-08, - "martinmas": 1.62e-08, - "mashona": 1.62e-08, - "masquerader": 1.62e-08, - "mesencephalic": 1.62e-08, - "methoxide": 1.62e-08, - "micrographic": 1.62e-08, - "mistic": 1.62e-08, - "monobasic": 1.62e-08, - "mulier": 1.62e-08, - "munsee": 1.62e-08, - "muzo": 1.62e-08, - "necklet": 1.62e-08, - "nephesh": 1.62e-08, - "neuroblast": 1.62e-08, - "nibbed": 1.62e-08, - "nitriding": 1.62e-08, - "noachian": 1.62e-08, - "noctuid": 1.62e-08, - "nomenclator": 1.62e-08, - "nucula": 1.62e-08, - "nyanja": 1.62e-08, - "ophion": 1.62e-08, - "orobanche": 1.62e-08, - "oryctolagus": 1.62e-08, - "overhill": 1.62e-08, - "ovidian": 1.62e-08, - "palpus": 1.62e-08, - "panoche": 1.62e-08, - "paramedian": 1.62e-08, - "parlamento": 1.62e-08, - "partible": 1.62e-08, - "patrilineally": 1.62e-08, - "pavetta": 1.62e-08, - "pennyweight": 1.62e-08, - "phacelia": 1.62e-08, - "phenylacetic": 1.62e-08, - "piggin": 1.62e-08, - "placidity": 1.62e-08, - "plaidy": 1.62e-08, - "plasmatic": 1.62e-08, - "pleomorphism": 1.62e-08, - "plurilateral": 1.62e-08, - "podiceps": 1.62e-08, - "polyarteritis": 1.62e-08, - "potpie": 1.62e-08, - "praenomen": 1.62e-08, - "prefiguration": 1.62e-08, - "preponderate": 1.62e-08, - "prier": 1.62e-08, - "pronouncedly": 1.62e-08, - "puffinus": 1.62e-08, - "pyridyl": 1.62e-08, - "quadricycle": 1.62e-08, - "queerer": 1.62e-08, - "reclusiveness": 1.62e-08, - "reliquiae": 1.62e-08, - "renominate": 1.62e-08, - "resuspension": 1.62e-08, - "rosel": 1.62e-08, - "roup": 1.62e-08, - "ruckle": 1.62e-08, - "ruderal": 1.62e-08, - "rumbelow": 1.62e-08, - "runback": 1.62e-08, - "saecula": 1.62e-08, - "saimiri": 1.62e-08, - "sapiential": 1.62e-08, - "sauciness": 1.62e-08, - "seconder": 1.62e-08, - "semiprivate": 1.62e-08, - "sensualism": 1.62e-08, - "shindy": 1.62e-08, - "shole": 1.62e-08, - "shrillness": 1.62e-08, - "shukria": 1.62e-08, - "sinology": 1.62e-08, - "sizz": 1.62e-08, - "sketchiness": 1.62e-08, - "skete": 1.62e-08, - "slabby": 1.62e-08, - "snakewood": 1.62e-08, - "someways": 1.62e-08, - "spaceless": 1.62e-08, - "stellite": 1.62e-08, - "subtend": 1.62e-08, - "sufferable": 1.62e-08, - "swarmer": 1.62e-08, - "synthesist": 1.62e-08, - "syntype": 1.62e-08, - "tamis": 1.17e-08, - "tayer": 1.62e-08, - "tebet": 1.62e-08, - "tetrachord": 1.62e-08, - "thegn": 1.62e-08, - "thenar": 1.62e-08, - "thermometric": 1.62e-08, - "thissen": 1.62e-08, - "thoracentesis": 1.62e-08, - "tided": 1.62e-08, - "tilework": 1.62e-08, - "towan": 1.62e-08, - "toxicodendron": 1.62e-08, - "traduce": 1.62e-08, - "tridentate": 1.62e-08, - "tuffaceous": 1.62e-08, - "ululation": 1.62e-08, - "unaccessible": 1.62e-08, - "unbonded": 1.62e-08, - "uncalculated": 1.62e-08, - "uncaptured": 1.62e-08, - "uncompassionate": 1.62e-08, - "uncorrectable": 1.62e-08, - "uncrossable": 1.62e-08, - "uncus": 1.62e-08, - "undermentioned": 1.62e-08, - "undesirability": 1.62e-08, - "undiscerning": 1.62e-08, - "undiscriminating": 1.62e-08, - "undutiful": 1.62e-08, - "unglaciated": 1.62e-08, - "unilateralist": 1.62e-08, - "unimolecular": 1.62e-08, - "unital": 1.62e-08, - "unloyal": 1.62e-08, - "unmined": 1.62e-08, - "unmourned": 1.62e-08, - "unprovided": 1.62e-08, - "unreferenced": 1.62e-08, - "unresisting": 1.62e-08, - "unsympathetically": 1.62e-08, - "untether": 1.62e-08, - "unthreaded": 1.62e-08, - "unwomanly": 1.62e-08, - "upas": 1.41e-08, - "vagotomy": 1.62e-08, - "varyingly": 1.62e-08, - "viver": 1.62e-08, - "waterwise": 1.62e-08, - "waul": 1.62e-08, - "weakfish": 1.62e-08, - "yahwist": 1.62e-08, - "yeso": 1.62e-08, - "zebrina": 1.62e-08, - "zeolitic": 1.62e-08, - "zooks": 1.62e-08, - "adullam": 1.58e-08, - "aerodynamicist": 1.58e-08, - "aftertreatment": 1.58e-08, - "ageratum": 1.58e-08, - "agrimony": 1.58e-08, - "almoravid": 1.58e-08, - "anba": 1.58e-08, - "anergy": 1.58e-08, - "antichristian": 1.58e-08, - "antiphonary": 1.58e-08, - "antu": 1.58e-08, - "arsine": 1.58e-08, - "ascochyta": 1.58e-08, - "aseismic": 1.58e-08, - "asor": 1.58e-08, - "athymic": 1.58e-08, - "australoid": 1.58e-08, - "baptisia": 1.58e-08, - "bawley": 1.58e-08, - "bayman": 1.58e-08, - "beanfield": 1.58e-08, - "bewitchingly": 1.58e-08, - "biomathematics": 1.58e-08, - "blastomere": 1.58e-08, - "bonzer": 1.58e-08, - "borderer": 1.58e-08, - "borrel": 1.58e-08, - "bovidae": 1.58e-08, - "bradykinesia": 1.58e-08, - "brambling": 1.58e-08, - "brummagem": 1.58e-08, - "bughead": 1.58e-08, - "bursal": 1.58e-08, - "butyrolactone": 1.58e-08, - "caesalpinia": 1.58e-08, - "calcific": 1.58e-08, - "camelopardalis": 1.58e-08, - "cameronian": 1.58e-08, - "cantate": 1.58e-08, - "capitated": 1.58e-08, - "carduus": 1.58e-08, - "carroty": 1.58e-08, - "cassina": 1.58e-08, - "cementite": 1.58e-08, - "centrosymmetric": 1.58e-08, - "ceptor": 1.58e-08, - "chiam": 1.58e-08, - "chlorohydrin": 1.58e-08, - "chlorophyceae": 1.58e-08, - "chorded": 1.58e-08, - "chrismation": 1.58e-08, - "chukker": 1.58e-08, - "chylothorax": 1.58e-08, - "cinnamaldehyde": 1.58e-08, - "clarkia": 1.58e-08, - "classman": 1.58e-08, - "clepsydra": 1.58e-08, - "commandingly": 1.58e-08, - "conglomeratic": 1.58e-08, - "contraposition": 1.58e-08, - "cowfish": 1.58e-08, - "croci": 1.58e-08, - "ctenoid": 1.58e-08, - "cuchulainn": 1.58e-08, - "cultch": 1.58e-08, - "cyclopentadiene": 1.58e-08, - "cyclotomic": 1.58e-08, - "cymene": 1.58e-08, - "cystoscope": 1.58e-08, - "deceptiveness": 1.58e-08, - "dentil": 1.58e-08, - "diametral": 1.58e-08, - "digitalize": 1.58e-08, - "dimera": 1.58e-08, - "disaffiliate": 1.58e-08, - "dislikable": 1.58e-08, - "dragonfish": 1.58e-08, - "dreiling": 1.58e-08, - "drugless": 1.58e-08, - "earsplitting": 1.58e-08, - "elementally": 1.58e-08, - "elusively": 1.58e-08, - "embolo": 1.58e-08, - "emotively": 1.58e-08, - "encephalocele": 1.58e-08, - "endospore": 1.58e-08, - "engrossment": 1.58e-08, - "enrapture": 1.58e-08, - "entelechy": 1.58e-08, - "eohippus": 1.58e-08, - "esotropia": 1.58e-08, - "eutopia": 1.58e-08, - "execrate": 1.58e-08, - "exserted": 1.58e-08, - "famish": 1.58e-08, - "fathomable": 1.58e-08, - "faugh": 1.58e-08, - "ferule": 1.58e-08, - "finless": 1.58e-08, - "fireplug": 1.58e-08, - "fructidor": 1.58e-08, - "functionless": 1.58e-08, - "geal": 1.58e-08, - "geminid": 1.58e-08, - "gentlemanlike": 1.58e-08, - "ghastliness": 1.58e-08, - "gink": 1.58e-08, - "gladdy": 1.58e-08, - "goidelic": 1.58e-08, - "greave": 1.58e-08, - "groaner": 1.58e-08, - "groundedness": 1.58e-08, - "gruesomeness": 1.58e-08, - "guardant": 1.58e-08, - "gyrocompass": 1.58e-08, - "haikal": 1.58e-08, - "haler": 1.58e-08, - "hepatectomy": 1.58e-08, - "heroides": 1.58e-08, - "hetter": 1.58e-08, - "hexamethylene": 1.58e-08, - "hexaploid": 1.58e-08, - "homotypic": 1.58e-08, - "husbandly": 1.58e-08, - "hyaloid": 1.58e-08, - "hypanthium": 1.58e-08, - "hypercoagulable": 1.58e-08, - "hyperostosis": 1.58e-08, - "hypersphere": 1.58e-08, - "ibad": 1.58e-08, - "impregnability": 1.58e-08, - "inceptive": 1.58e-08, - "indefeasible": 1.58e-08, - "inhibitive": 1.58e-08, - "interdistrict": 1.58e-08, - "interiorly": 1.58e-08, - "interpolator": 1.58e-08, - "intertype": 1.58e-08, - "isoptera": 1.58e-08, - "jesuitical": 1.58e-08, - "jobo": 1.58e-08, - "judaization": 1.58e-08, - "juturna": 1.58e-08, - "keratinization": 1.58e-08, - "kibe": 1.58e-08, - "kiddushin": 1.58e-08, - "lacinia": 1.58e-08, - "lactide": 1.58e-08, - "latinist": 1.58e-08, - "latitudinarian": 1.58e-08, - "liassic": 1.58e-08, - "limitlessness": 1.58e-08, - "lopper": 1.58e-08, - "luxuriance": 1.58e-08, - "macrocystis": 1.58e-08, - "macrophotography": 1.58e-08, - "madeiran": 1.58e-08, - "magian": 1.58e-08, - "makeweight": 1.58e-08, - "makonde": 1.58e-08, - "malacological": 1.58e-08, - "malpighian": 1.58e-08, - "mammillary": 1.58e-08, - "marmar": 1.58e-08, - "maytime": 1.58e-08, - "meathook": 1.58e-08, - "megaera": 1.58e-08, - "meriones": 1.58e-08, - "mirabell": 1.58e-08, - "mirk": 1.58e-08, - "mismeasure": 1.58e-08, - "misperceive": 1.58e-08, - "momordica": 1.58e-08, - "multifilament": 1.58e-08, - "muscularly": 1.58e-08, - "myxoid": 1.58e-08, - "nankeen": 1.58e-08, - "nocturnally": 1.58e-08, - "nodose": 1.58e-08, - "nonblocking": 1.58e-08, - "numerable": 1.58e-08, - "ocherous": 1.58e-08, - "orangewood": 1.58e-08, - "ordu": 1.58e-08, - "orotund": 1.58e-08, - "orthoceras": 1.58e-08, - "outwell": 1.58e-08, - "overblow": 1.58e-08, - "overzealousness": 1.58e-08, - "parling": 1.58e-08, - "penk": 1.58e-08, - "persicaria": 1.58e-08, - "phenomenalism": 1.58e-08, - "phlegmy": 1.58e-08, - "phocoena": 1.58e-08, - "plighted": 1.58e-08, - "pohutukawa": 1.58e-08, - "poisonwood": 1.58e-08, - "potence": 1.58e-08, - "pother": 1.58e-08, - "prankish": 1.58e-08, - "procris": 1.58e-08, - "procrustean": 1.58e-08, - "pronaos": 1.58e-08, - "pseudomembranous": 1.58e-08, - "psychologism": 1.58e-08, - "psychrophilic": 1.58e-08, - "pterostigma": 1.58e-08, - "quodlibet": 1.58e-08, - "recreative": 1.58e-08, - "recrystallize": 1.58e-08, - "redub": 1.58e-08, - "reimagination": 1.58e-08, - "reinfect": 1.58e-08, - "reinterview": 1.58e-08, - "reservable": 1.58e-08, - "responde": 1.58e-08, - "resupinate": 1.58e-08, - "revisor": 1.58e-08, - "revivification": 1.58e-08, - "rifter": 1.58e-08, - "rogatory": 1.58e-08, - "rummer": 1.58e-08, - "sagger": 1.58e-08, - "salep": 1.58e-08, - "sarraf": 1.58e-08, - "saucily": 1.58e-08, - "savable": 1.58e-08, - "scup": 1.58e-08, - "sedulously": 1.58e-08, - "semidesert": 1.58e-08, - "seral": 1.58e-08, - "sergiu": 1.58e-08, - "serow": 1.58e-08, - "sesia": 1.58e-08, - "severer": 1.58e-08, - "shaivism": 1.58e-08, - "shockable": 1.58e-08, - "showiness": 1.58e-08, - "silverwing": 1.58e-08, - "slartibartfast": 1.58e-08, - "sniffily": 1.58e-08, - "snubber": 1.58e-08, - "sooky": 1.58e-08, - "souverain": 1.58e-08, - "sovietization": 1.58e-08, - "spatialization": 1.58e-08, - "speediness": 1.58e-08, - "spermatogenic": 1.58e-08, - "spiritualize": 1.58e-08, - "stere": 1.58e-08, - "stonily": 1.58e-08, - "strappado": 1.58e-08, - "strikebreaking": 1.58e-08, - "strombus": 1.58e-08, - "subcircular": 1.58e-08, - "subepithelial": 1.58e-08, - "subflooring": 1.58e-08, - "subrange": 1.58e-08, - "subsistent": 1.58e-08, - "sulfanilamide": 1.58e-08, - "sundaresan": 1.58e-08, - "sunwise": 1.58e-08, - "superscription": 1.58e-08, - "tartarian": 1.58e-08, - "tendresse": 1.58e-08, - "thanatology": 1.58e-08, - "theileria": 1.58e-08, - "theologist": 1.58e-08, - "thoro": 1.58e-08, - "tramroad": 1.58e-08, - "transferal": 1.58e-08, - "trinkle": 1.58e-08, - "tumtum": 1.58e-08, - "tweeny": 1.58e-08, - "unadopted": 1.58e-08, - "unassumingly": 1.58e-08, - "unbrushed": 1.58e-08, - "unclasp": 1.58e-08, - "unfeathered": 1.58e-08, - "unfrosted": 1.58e-08, - "unguaranteed": 1.58e-08, - "unirradiated": 1.58e-08, - "unrealizable": 1.58e-08, - "unstrapped": 1.58e-08, - "upthrust": 1.58e-08, - "vapidity": 1.58e-08, - "venereology": 1.58e-08, - "venezolano": 1.58e-08, - "venturous": 1.58e-08, - "welwitschia": 1.58e-08, - "wheaty": 1.58e-08, - "whinstone": 1.58e-08, - "woom": 1.58e-08, - "writeable": 1.58e-08, - "xaverian": 1.58e-08, - "yellowwood": 1.58e-08, - "yelper": 1.58e-08, - "zamorin": 1.58e-08, - "zehner": 1.58e-08, - "zwanziger": 1.58e-08, - "abstainer": 1.55e-08, - "acetobacter": 1.55e-08, - "adiel": 1.55e-08, - "adonia": 1.55e-08, - "agglutinate": 1.55e-08, - "alala": 1.55e-08, - "alate": 1.55e-08, - "alienage": 1.55e-08, - "altun": 1.55e-08, - "ambassade": 1.55e-08, - "amole": 1.55e-08, - "angioma": 1.55e-08, - "annunciator": 1.55e-08, - "anoa": 1.55e-08, - "anteromedial": 1.55e-08, - "antitype": 1.55e-08, - "antra": 1.55e-08, - "anuran": 1.55e-08, - "aphotic": 1.55e-08, - "appurtenance": 1.55e-08, - "assyriology": 1.55e-08, - "atavus": 1.55e-08, - "athetosis": 1.55e-08, - "atossa": 1.55e-08, - "attainability": 1.55e-08, - "aurin": 1.55e-08, - "azote": 1.55e-08, - "bacchantes": 1.55e-08, - "backcross": 1.55e-08, - "backwoodsman": 1.55e-08, - "bangala": 1.55e-08, - "barding": 1.55e-08, - "battledore": 1.55e-08, - "bedstraw": 1.55e-08, - "bichromate": 1.55e-08, - "biometrically": 1.55e-08, - "blackboy": 1.55e-08, - "bladderwort": 1.55e-08, - "boggler": 1.55e-08, - "bogland": 1.55e-08, - "bothnian": 1.55e-08, - "bovid": 1.55e-08, - "brainwork": 1.55e-08, - "brazer": 1.55e-08, - "brecken": 1.55e-08, - "brucite": 1.55e-08, - "bryologist": 1.55e-08, - "bupleurum": 1.55e-08, - "burled": 1.55e-08, - "burrower": 1.55e-08, - "butsu": 1.55e-08, - "cabas": 1.55e-08, - "calculatingly": 1.55e-08, - "campanulate": 1.55e-08, - "capelet": 1.55e-08, - "caproate": 1.55e-08, - "captious": 1.55e-08, - "carinate": 1.55e-08, - "chemoreceptor": 1.55e-08, - "christianism": 1.55e-08, - "chrysoberyl": 1.55e-08, - "chrysops": 1.55e-08, - "cinerary": 1.55e-08, - "clangor": 1.55e-08, - "colligative": 1.55e-08, - "collotype": 1.55e-08, - "commissionership": 1.55e-08, - "compulsiveness": 1.55e-08, - "condonation": 1.55e-08, - "contractive": 1.55e-08, - "contumacious": 1.55e-08, - "costard": 1.55e-08, - "costumier": 1.55e-08, - "countryfolk": 1.55e-08, - "craner": 1.55e-08, - "crosspiece": 1.55e-08, - "crout": 1.55e-08, - "croute": 1.55e-08, - "croze": 1.55e-08, - "cruck": 1.55e-08, - "crustaceous": 1.55e-08, - "cuirassier": 1.55e-08, - "curser": 1.55e-08, - "cuscus": 1.55e-08, - "debonaire": 1.55e-08, - "declaratively": 1.55e-08, - "demagnetize": 1.55e-08, - "demijohn": 1.55e-08, - "demographical": 1.55e-08, - "descension": 1.55e-08, - "despondence": 1.55e-08, - "dicentra": 1.55e-08, - "diketone": 1.55e-08, - "dinheiro": 1.55e-08, - "dinitrophenol": 1.55e-08, - "diprotodon": 1.55e-08, - "disagreeably": 1.55e-08, - "disinvest": 1.55e-08, - "diskless": 1.55e-08, - "diterpene": 1.55e-08, - "docilely": 1.55e-08, - "doorsill": 1.55e-08, - "dosser": 1.55e-08, - "drachm": 1.55e-08, - "duala": 1.55e-08, - "duologue": 1.55e-08, - "durative": 1.55e-08, - "embitter": 1.55e-08, - "emersed": 1.55e-08, - "emesa": 1.55e-08, - "emetine": 1.55e-08, - "empery": 1.55e-08, - "endorsee": 1.55e-08, - "energic": 1.55e-08, - "enervation": 1.55e-08, - "eriophorum": 1.55e-08, - "essayistic": 1.55e-08, - "etheostoma": 1.55e-08, - "evolutive": 1.55e-08, - "exaudi": 1.55e-08, - "exclosure": 1.55e-08, - "exophthalmos": 1.55e-08, - "eyebeam": 1.55e-08, - "facepiece": 1.55e-08, - "fascista": 1.55e-08, - "fellani": 1.55e-08, - "feme": 1.55e-08, - "feministic": 1.55e-08, - "filar": 1.55e-08, - "forbiddingly": 1.55e-08, - "foud": 1.55e-08, - "frenziedly": 1.55e-08, - "freudianism": 1.55e-08, - "frizer": 1.55e-08, - "fusiformis": 1.55e-08, - "geechee": 1.55e-08, - "germfree": 1.55e-08, - "germicide": 1.55e-08, - "gladiola": 1.55e-08, - "gordius": 1.55e-08, - "gravenstein": 1.55e-08, - "guaiacol": 1.55e-08, - "gulper": 1.55e-08, - "haloid": 1.55e-08, - "hearting": 1.55e-08, - "heugh": 1.55e-08, - "hexagonally": 1.55e-08, - "homoptera": 1.55e-08, - "humate": 1.55e-08, - "hunnish": 1.55e-08, - "hypochondriacal": 1.55e-08, - "hysteretic": 1.55e-08, - "ideate": 1.55e-08, - "immateriality": 1.55e-08, - "immortally": 1.55e-08, - "incrassate": 1.55e-08, - "indention": 1.55e-08, - "indigofera": 1.55e-08, - "inexhaustibly": 1.55e-08, - "inodes": 1.55e-08, - "insectarium": 1.55e-08, - "interpleader": 1.55e-08, - "intertrigo": 1.55e-08, - "intervallic": 1.55e-08, - "iodoform": 1.55e-08, - "itala": 1.55e-08, - "jagua": 1.55e-08, - "japanned": 1.55e-08, - "juang": 1.55e-08, - "juridically": 1.55e-08, - "khula": 1.55e-08, - "kilojoule": 1.55e-08, - "kiltie": 1.55e-08, - "lactalbumin": 1.55e-08, - "lecker": 1.55e-08, - "lepidopterist": 1.55e-08, - "limosa": 1.55e-08, - "linin": 1.55e-08, - "lobstering": 1.55e-08, - "lovesome": 1.55e-08, - "lubberly": 1.55e-08, - "lucayan": 1.55e-08, - "lumper": 1.55e-08, - "lustra": 1.55e-08, - "macrocephaly": 1.55e-08, - "magisterially": 1.55e-08, - "mandaean": 1.55e-08, - "meagerly": 1.55e-08, - "meritoriously": 1.55e-08, - "mesonotum": 1.55e-08, - "metatarsophalangeal": 1.55e-08, - "methylmalonic": 1.55e-08, - "metope": 1.55e-08, - "miasmic": 1.55e-08, - "mikir": 1.55e-08, - "minikin": 1.55e-08, - "mofussil": 1.55e-08, - "monocline": 1.55e-08, - "morphophonemic": 1.55e-08, - "motacilla": 1.55e-08, - "muleteer": 1.55e-08, - "mundanely": 1.55e-08, - "nakula": 1.55e-08, - "nataka": 1.55e-08, - "naughtily": 1.55e-08, - "negator": 1.55e-08, - "nervine": 1.55e-08, - "nitrosamine": 1.55e-08, - "nonadherence": 1.55e-08, - "nonaqueous": 1.55e-08, - "noninflammatory": 1.55e-08, - "nonrenewal": 1.55e-08, - "nonskid": 1.55e-08, - "nontax": 1.55e-08, - "nonya": 1.55e-08, - "octopod": 1.55e-08, - "officiously": 1.55e-08, - "omnivision": 1.55e-08, - "optimates": 1.55e-08, - "overbuild": 1.55e-08, - "overskirt": 1.55e-08, - "overthrust": 1.55e-08, - "paleobotanist": 1.55e-08, - "paleogeographic": 1.55e-08, - "penological": 1.55e-08, - "perfectible": 1.55e-08, - "perseveration": 1.55e-08, - "petrographically": 1.55e-08, - "phenacetin": 1.55e-08, - "photoconductivity": 1.55e-08, - "pinte": 1.55e-08, - "pinworm": 1.55e-08, - "piperno": 1.55e-08, - "pirn": 1.55e-08, - "plaquette": 1.55e-08, - "pleuritic": 1.55e-08, - "plosion": 1.55e-08, - "pollex": 1.55e-08, - "polygraphic": 1.55e-08, - "ponent": 1.55e-08, - "poppel": 1.55e-08, - "postnasal": 1.55e-08, - "preceptory": 1.55e-08, - "preceramic": 1.55e-08, - "precharge": 1.55e-08, - "premiss": 1.55e-08, - "preorbital": 1.55e-08, - "prestissimo": 1.55e-08, - "pricker": 1.55e-08, - "pronate": 1.55e-08, - "protium": 1.55e-08, - "pseudocyst": 1.55e-08, - "pteridophyta": 1.55e-08, - "pumpable": 1.55e-08, - "pushpin": 1.55e-08, - "pyrochlore": 1.55e-08, - "pyrrhonism": 1.55e-08, - "quoniam": 1.55e-08, - "radionics": 1.55e-08, - "ragpicker": 1.55e-08, - "ratoon": 1.55e-08, - "rattletrap": 1.55e-08, - "readapt": 1.55e-08, - "rearwardly": 1.55e-08, - "recurse": 1.55e-08, - "redesignate": 1.55e-08, - "reedbuck": 1.55e-08, - "reinspection": 1.55e-08, - "replier": 1.55e-08, - "reproducer": 1.55e-08, - "residental": 1.55e-08, - "resorb": 1.55e-08, - "rheometer": 1.55e-08, - "rhinorrhea": 1.55e-08, - "rhizomatic": 1.55e-08, - "riant": 1.55e-08, - "romanza": 1.55e-08, - "rosicrucianism": 1.55e-08, - "sadducee": 1.55e-08, - "safrole": 1.55e-08, - "samel": 1.55e-08, - "sannyasin": 1.55e-08, - "schistosome": 1.55e-08, - "schoodic": 1.55e-08, - "schwabacher": 1.55e-08, - "scob": 1.55e-08, - "scoparius": 1.55e-08, - "scuppernong": 1.55e-08, - "securable": 1.55e-08, - "semiquaver": 1.55e-08, - "septicemic": 1.55e-08, - "shaiva": 1.55e-08, - "skinniness": 1.55e-08, - "sluggy": 1.55e-08, - "smeltery": 1.55e-08, - "sociometric": 1.55e-08, - "somnambulant": 1.55e-08, - "sordidness": 1.55e-08, - "sortition": 1.55e-08, - "spermine": 1.55e-08, - "starosta": 1.55e-08, - "stromata": 1.55e-08, - "sublunary": 1.55e-08, - "subvocal": 1.55e-08, - "tachymeter": 1.55e-08, - "tailender": 1.55e-08, - "tatou": 1.55e-08, - "tautomer": 1.55e-08, - "tekke": 1.55e-08, - "telencephalic": 1.55e-08, - "temporale": 1.55e-08, - "tenent": 1.55e-08, - "tensional": 1.55e-08, - "terpsichorean": 1.55e-08, - "territorialism": 1.55e-08, - "thermotherapy": 1.55e-08, - "tiang": 1.55e-08, - "toponymic": 1.55e-08, - "totonac": 1.55e-08, - "transatlanticism": 1.55e-08, - "trepang": 1.55e-08, - "tribromide": 1.55e-08, - "tridimensional": 1.55e-08, - "tripolitan": 1.55e-08, - "truster": 1.55e-08, - "unarranged": 1.55e-08, - "unbought": 1.55e-08, - "uncoerced": 1.55e-08, - "uncomparable": 1.55e-08, - "undamped": 1.55e-08, - "unexceptionable": 1.55e-08, - "unfiled": 1.55e-08, - "unflushed": 1.55e-08, - "unlove": 1.55e-08, - "unscholarly": 1.55e-08, - "unscientifically": 1.55e-08, - "unsterile": 1.55e-08, - "untruthfulness": 1.55e-08, - "untz": 1.55e-08, - "vanaheim": 1.55e-08, - "vernalization": 1.55e-08, - "vinylidene": 1.55e-08, - "viviparity": 1.55e-08, - "volcanological": 1.55e-08, - "wallawalla": 1.55e-08, - "warwolf": 1.55e-08, - "waterhead": 1.55e-08, - "westering": 1.55e-08, - "womanliness": 1.55e-08, - "yaru": 1.55e-08, - "abhorrently": 1.51e-08, - "abominate": 1.51e-08, - "acrisius": 1.51e-08, - "actinomycin": 1.51e-08, - "adverbially": 1.51e-08, - "aforetime": 1.51e-08, - "aiel": 1.51e-08, - "airscrew": 1.51e-08, - "alamanni": 1.51e-08, - "alphorn": 1.51e-08, - "amical": 1.51e-08, - "andriana": 1.51e-08, - "androgenetic": 1.51e-08, - "angka": 1.51e-08, - "anglicanum": 1.51e-08, - "antecedently": 1.51e-08, - "apanteles": 1.51e-08, - "apport": 1.51e-08, - "aramaean": 1.51e-08, - "argumentatively": 1.51e-08, - "arianrhod": 1.51e-08, - "arrestingly": 1.51e-08, - "artillerist": 1.51e-08, - "aspartyl": 1.51e-08, - "authoritativeness": 1.51e-08, - "autographic": 1.51e-08, - "autotomy": 1.51e-08, - "bandoleer": 1.51e-08, - "baniya": 1.51e-08, - "bargeman": 1.51e-08, - "bayadere": 1.51e-08, - "berley": 1.51e-08, - "boid": 1.51e-08, - "bororo": 1.51e-08, - "bottommost": 1.51e-08, - "bowknot": 1.51e-08, - "brachiopoda": 1.51e-08, - "bribri": 1.51e-08, - "burrel": 1.51e-08, - "butterman": 1.51e-08, - "calamites": 1.51e-08, - "cantilena": 1.51e-08, - "cantrip": 1.51e-08, - "carburization": 1.51e-08, - "carinthian": 1.51e-08, - "carthamus": 1.51e-08, - "cataphract": 1.51e-08, - "catha": 1.51e-08, - "catmint": 1.51e-08, - "cercis": 1.51e-08, - "cerebrally": 1.51e-08, - "chagga": 1.51e-08, - "chelone": 1.51e-08, - "cherimoya": 1.51e-08, - "chiasma": 1.51e-08, - "cinnamyl": 1.51e-08, - "cithara": 1.51e-08, - "cladophora": 1.51e-08, - "claviceps": 1.51e-08, - "cleg": 1.51e-08, - "coccinella": 1.51e-08, - "cockcrow": 1.51e-08, - "combinable": 1.51e-08, - "consolingly": 1.51e-08, - "crocheter": 1.51e-08, - "crowberry": 1.51e-08, - "crustose": 1.51e-08, - "cupidon": 1.51e-08, - "cyclobutane": 1.51e-08, - "dazedly": 1.51e-08, - "deschampsia": 1.51e-08, - "dowitcher": 1.51e-08, - "dryish": 1.51e-08, - "durra": 1.51e-08, - "earhole": 1.51e-08, - "echinochloa": 1.51e-08, - "educable": 1.51e-08, - "empanel": 1.51e-08, - "enjambment": 1.51e-08, - "epode": 1.51e-08, - "equatorward": 1.51e-08, - "eschar": 1.51e-08, - "exhibitionistic": 1.51e-08, - "extracellularly": 1.51e-08, - "fissiparous": 1.51e-08, - "forcer": 1.51e-08, - "forkbeard": 1.51e-08, - "forsterite": 1.51e-08, - "freezable": 1.51e-08, - "frenched": 1.51e-08, - "frenum": 1.51e-08, - "fumarolic": 1.51e-08, - "funker": 1.51e-08, - "furcate": 1.51e-08, - "furcula": 1.51e-08, - "fusus": 1.51e-08, - "giustina": 1.51e-08, - "glooming": 1.51e-08, - "gorsedd": 1.51e-08, - "grimme": 1.51e-08, - "guileful": 1.51e-08, - "haiduk": 1.51e-08, - "handcar": 1.51e-08, - "harborage": 1.51e-08, - "hayfork": 1.51e-08, - "heirless": 1.51e-08, - "helve": 1.51e-08, - "hematemesis": 1.51e-08, - "heraldically": 1.51e-08, - "highflying": 1.51e-08, - "homonuclear": 1.51e-08, - "homothetic": 1.51e-08, - "hostilely": 1.51e-08, - "housecarl": 1.51e-08, - "howlite": 1.51e-08, - "huffily": 1.51e-08, - "hydrometric": 1.51e-08, - "hypodermis": 1.51e-08, - "illium": 1.51e-08, - "impassivity": 1.51e-08, - "imprese": 1.51e-08, - "inarticulately": 1.51e-08, - "incomer": 1.51e-08, - "incuse": 1.51e-08, - "insulter": 1.51e-08, - "interstadial": 1.51e-08, - "inula": 1.51e-08, - "irrecoverably": 1.51e-08, - "isotopy": 1.51e-08, - "ixora": 1.51e-08, - "jacinth": 1.51e-08, - "keralite": 1.51e-08, - "keynoter": 1.51e-08, - "knotter": 1.51e-08, - "knowledged": 1.51e-08, - "labyrinthian": 1.51e-08, - "laelia": 1.51e-08, - "landship": 1.51e-08, - "lendu": 1.51e-08, - "leucocyte": 1.51e-08, - "lighterage": 1.51e-08, - "limner": 1.51e-08, - "literalness": 1.51e-08, - "logoi": 1.51e-08, - "lucratively": 1.51e-08, - "luminate": 1.51e-08, - "lupulus": 1.51e-08, - "luwian": 1.51e-08, - "lymantria": 1.51e-08, - "malinger": 1.51e-08, - "malthusianism": 1.51e-08, - "mangabey": 1.51e-08, - "matlow": 1.51e-08, - "mawkishness": 1.51e-08, - "meatal": 1.51e-08, - "melioration": 1.51e-08, - "melongena": 1.51e-08, - "metate": 1.51e-08, - "minuteness": 1.51e-08, - "mobula": 1.51e-08, - "modalism": 1.51e-08, - "mullock": 1.51e-08, - "multiaxial": 1.51e-08, - "myoepithelial": 1.51e-08, - "natica": 1.51e-08, - "nawt": 1.51e-08, - "neter": 1.51e-08, - "nethermost": 1.51e-08, - "nodulation": 1.51e-08, - "nomothetic": 1.51e-08, - "nonbasic": 1.51e-08, - "noncombustible": 1.51e-08, - "noncon": 1.51e-08, - "nondisjunction": 1.51e-08, - "nutritiously": 1.51e-08, - "oligohydramnios": 1.51e-08, - "opprobrious": 1.51e-08, - "orphism": 1.51e-08, - "orthochromatic": 1.51e-08, - "overcall": 1.51e-08, - "pacifically": 1.51e-08, - "paintless": 1.51e-08, - "palta": 1.51e-08, - "papillose": 1.51e-08, - "particularist": 1.51e-08, - "parturient": 1.51e-08, - "peaberry": 1.51e-08, - "pectinate": 1.51e-08, - "pedunculated": 1.51e-08, - "pelisse": 1.51e-08, - "penial": 1.51e-08, - "pentahydrate": 1.51e-08, - "perseveringly": 1.51e-08, - "peul": 1.51e-08, - "pharmacal": 1.51e-08, - "philter": 1.51e-08, - "phomopsis": 1.51e-08, - "pigface": 1.51e-08, - "pise": 1.51e-08, - "pithos": 1.51e-08, - "polynuclear": 1.51e-08, - "pomological": 1.51e-08, - "pomology": 1.51e-08, - "potsherd": 1.51e-08, - "preplan": 1.51e-08, - "presurgical": 1.51e-08, - "prewash": 1.51e-08, - "pridefully": 1.51e-08, - "propaedeutic": 1.51e-08, - "psychotria": 1.51e-08, - "pushtu": 1.51e-08, - "pyramidion": 1.51e-08, - "quinacrine": 1.51e-08, - "ramify": 1.51e-08, - "randia": 1.51e-08, - "rasselas": 1.51e-08, - "rebeck": 1.51e-08, - "refluxed": 1.51e-08, - "regimentals": 1.51e-08, - "rememberable": 1.51e-08, - "representatively": 1.51e-08, - "responsory": 1.51e-08, - "restrictiveness": 1.51e-08, - "resynthesis": 1.51e-08, - "rhadamanthus": 1.51e-08, - "rhapsodize": 1.51e-08, - "runrig": 1.51e-08, - "rurality": 1.51e-08, - "saeculum": 1.51e-08, - "saponaria": 1.51e-08, - "sassan": 1.51e-08, - "scenarist": 1.51e-08, - "scientifical": 1.51e-08, - "sensilla": 1.51e-08, - "sententiously": 1.51e-08, - "septi": 1.51e-08, - "shawm": 1.51e-08, - "shoofly": 1.51e-08, - "sifaka": 1.51e-08, - "sinuosity": 1.51e-08, - "sker": 1.51e-08, - "skittishness": 1.51e-08, - "slided": 1.51e-08, - "slobby": 1.51e-08, - "sloshy": 1.51e-08, - "snivy": 1.51e-08, - "snowbell": 1.51e-08, - "socker": 1.51e-08, - "sopranino": 1.51e-08, - "souwester": 1.51e-08, - "spartacist": 1.51e-08, - "spermophilus": 1.51e-08, - "spicule": 1.51e-08, - "spinozism": 1.51e-08, - "sprink": 1.51e-08, - "squilla": 1.51e-08, - "stannate": 1.51e-08, - "stanzaic": 1.51e-08, - "stanze": 1.51e-08, - "stemma": 1.51e-08, - "stingo": 1.51e-08, - "stirringly": 1.51e-08, - "stret": 1.51e-08, - "subaquatic": 1.51e-08, - "sundra": 1.51e-08, - "suricata": 1.51e-08, - "tallage": 1.51e-08, - "tamperproof": 1.51e-08, - "tangly": 1.51e-08, - "tanoa": 1.51e-08, - "temperately": 1.51e-08, - "tergum": 1.51e-08, - "termin": 1.51e-08, - "thunderstrike": 1.51e-08, - "tined": 1.51e-08, - "tinne": 1.51e-08, - "tipula": 1.51e-08, - "transuranium": 1.51e-08, - "trapshooting": 1.51e-08, - "trindle": 1.51e-08, - "turcoman": 1.51e-08, - "unclimbable": 1.51e-08, - "unhidden": 1.51e-08, - "unobvious": 1.51e-08, - "unreasoned": 1.51e-08, - "unscalable": 1.51e-08, - "unsuitably": 1.51e-08, - "untidily": 1.51e-08, - "upflow": 1.51e-08, - "uraemic": 1.51e-08, - "vatic": 1.51e-08, - "vendue": 1.51e-08, - "wainman": 1.51e-08, - "wanty": 1.51e-08, - "whick": 1.51e-08, - "whinchat": 1.51e-08, - "wolffian": 1.51e-08, - "wooer": 1.51e-08, - "worrywart": 1.51e-08, - "zenithal": 1.51e-08, - "zirconate": 1.51e-08, - "aberrational": 1.48e-08, - "actinomycete": 1.48e-08, - "agelessness": 1.48e-08, - "akasa": 1.48e-08, - "alcedo": 1.48e-08, - "ammoniacal": 1.48e-08, - "amorphophallus": 1.48e-08, - "annulated": 1.48e-08, - "anodal": 1.48e-08, - "anticorrosive": 1.48e-08, - "apochromatic": 1.48e-08, - "areopagitica": 1.48e-08, - "arrestment": 1.48e-08, - "arteriosclerotic": 1.48e-08, - "artlessness": 1.48e-08, - "assumably": 1.48e-08, - "astraddle": 1.48e-08, - "autodrome": 1.48e-08, - "bacterially": 1.48e-08, - "bahmani": 1.48e-08, - "balconied": 1.48e-08, - "banaba": 1.48e-08, - "barratry": 1.48e-08, - "battlewagon": 1.48e-08, - "bavin": 1.48e-08, - "beefin": 1.48e-08, - "bespoken": 1.48e-08, - "bicone": 1.48e-08, - "bladesmith": 1.48e-08, - "bloodmobile": 1.48e-08, - "blushy": 1.48e-08, - "boattail": 1.48e-08, - "boneset": 1.48e-08, - "boughten": 1.48e-08, - "braconid": 1.48e-08, - "briber": 1.48e-08, - "broadbill": 1.48e-08, - "brobdingnag": 1.48e-08, - "brusher": 1.48e-08, - "buccinum": 1.48e-08, - "butanone": 1.48e-08, - "cabezon": 1.48e-08, - "caitiff": 1.48e-08, - "calcitic": 1.48e-08, - "calends": 1.48e-08, - "canaille": 1.48e-08, - "captivatingly": 1.48e-08, - "catalyzer": 1.48e-08, - "cathari": 1.48e-08, - "caudatum": 1.48e-08, - "chaus": 1.05e-08, - "chauk": 1.48e-08, - "chelonian": 1.48e-08, - "christocentric": 1.48e-08, - "coachee": 1.48e-08, - "codo": 1.48e-08, - "commensurability": 1.48e-08, - "compliancy": 1.48e-08, - "conceptus": 1.48e-08, - "congenially": 1.48e-08, - "coquito": 1.48e-08, - "cowcatcher": 1.48e-08, - "cracksman": 1.48e-08, - "crepis": 1.48e-08, - "cuarenta": 1.48e-08, - "cuneus": 1.48e-08, - "dagoba": 1.48e-08, - "decadently": 1.48e-08, - "decagon": 1.48e-08, - "decalcification": 1.48e-08, - "dennet": 1.48e-08, - "depersonalize": 1.48e-08, - "dermacentor": 1.48e-08, - "despoiler": 1.48e-08, - "diamagnetism": 1.48e-08, - "digastric": 1.48e-08, - "diplomatics": 1.48e-08, - "disintegrative": 1.48e-08, - "dragonet": 1.48e-08, - "drawable": 1.48e-08, - "dubiousness": 1.48e-08, - "duddies": 1.48e-08, - "duello": 1.48e-08, - "ectopia": 1.48e-08, - "eleatic": 1.48e-08, - "electrocatalysis": 1.48e-08, - "emodin": 1.48e-08, - "emplace": 1.48e-08, - "envenom": 1.48e-08, - "epicontinental": 1.48e-08, - "errantry": 1.48e-08, - "euchromatin": 1.48e-08, - "euryhaline": 1.48e-08, - "excremental": 1.48e-08, - "executively": 1.48e-08, - "exemplarily": 1.48e-08, - "exenteration": 1.48e-08, - "exostosis": 1.48e-08, - "exotoxin": 1.48e-08, - "eyeblink": 1.48e-08, - "ferroalloy": 1.48e-08, - "fianchetto": 1.48e-08, - "filaria": 1.48e-08, - "flaker": 1.48e-08, - "forbore": 1.48e-08, - "fosterage": 1.48e-08, - "fragmental": 1.48e-08, - "furca": 1.48e-08, - "galantine": 1.48e-08, - "geminated": 1.48e-08, - "gilia": 1.48e-08, - "gippy": 1.48e-08, - "glis": 1.48e-08, - "goutte": 1.48e-08, - "gracelessly": 1.48e-08, - "gradable": 1.48e-08, - "grandiosely": 1.48e-08, - "guessable": 1.48e-08, - "hagiographer": 1.48e-08, - "haliaeetus": 1.48e-08, - "handclasp": 1.48e-08, - "harrovian": 1.48e-08, - "heartly": 1.48e-08, - "hecatomb": 1.48e-08, - "helenium": 1.48e-08, - "heliogabalus": 1.48e-08, - "hemolysin": 1.48e-08, - "hemopoietic": 1.48e-08, - "hepper": 1.48e-08, - "hornwort": 1.48e-08, - "houbara": 1.48e-08, - "houstonia": 1.48e-08, - "hydrobromic": 1.48e-08, - "hyllus": 1.48e-08, - "hypocritic": 1.48e-08, - "hypopharynx": 1.48e-08, - "immunogenetics": 1.48e-08, - "improvidently": 1.48e-08, - "inciter": 1.48e-08, - "inculpatory": 1.48e-08, - "infelicitous": 1.48e-08, - "ingenuously": 1.48e-08, - "interministerial": 1.48e-08, - "intoxicatingly": 1.48e-08, - "intranuclear": 1.48e-08, - "janiculum": 1.48e-08, - "jouster": 1.48e-08, - "kallah": 1.48e-08, - "kawika": 1.48e-08, - "keeshond": 1.48e-08, - "khamsin": 1.48e-08, - "kikki": 1.48e-08, - "kinkiness": 1.48e-08, - "ladyfish": 1.48e-08, - "laic": 1.48e-08, - "languorously": 1.48e-08, - "laund": 1.48e-08, - "ledum": 1.48e-08, - "lemniscate": 1.48e-08, - "lempira": 1.48e-08, - "lenca": 1.48e-08, - "liwan": 1.48e-08, - "lopsidedness": 1.48e-08, - "macaronic": 1.48e-08, - "macrocephalus": 1.48e-08, - "maculopapular": 1.48e-08, - "margravine": 1.48e-08, - "markka": 1.48e-08, - "megalosaurus": 1.48e-08, - "melanic": 1.48e-08, - "meriah": 1.48e-08, - "metachromatic": 1.48e-08, - "meteoritics": 1.48e-08, - "microdrive": 1.48e-08, - "midsentence": 1.48e-08, - "misbelief": 1.48e-08, - "monopodial": 1.48e-08, - "moralization": 1.48e-08, - "mouthless": 1.48e-08, - "mumbler": 1.48e-08, - "muridae": 1.48e-08, - "nagual": 1.48e-08, - "nambe": 1.48e-08, - "nautically": 1.48e-08, - "nekton": 1.48e-08, - "neotype": 1.48e-08, - "niblick": 1.48e-08, - "nival": 1.48e-08, - "nonpermanent": 1.48e-08, - "nonrestrictive": 1.48e-08, - "nonreturnable": 1.48e-08, - "nonstationary": 1.48e-08, - "noseless": 1.48e-08, - "nosepiece": 1.48e-08, - "nosology": 1.48e-08, - "notum": 1.48e-08, - "nunciature": 1.48e-08, - "ophthalmoscopy": 1.48e-08, - "oranger": 1.48e-08, - "orcinus": 1.48e-08, - "orgue": 1.48e-08, - "ornithischian": 1.48e-08, - "ossianic": 1.48e-08, - "osteochondritis": 1.48e-08, - "osteosynthesis": 1.48e-08, - "outguess": 1.48e-08, - "outstand": 1.48e-08, - "ovoviviparous": 1.48e-08, - "paleobotanical": 1.48e-08, - "paleoclimatic": 1.48e-08, - "palmyrene": 1.48e-08, - "papule": 1.48e-08, - "paravertebral": 1.48e-08, - "parsimoniously": 1.48e-08, - "peduncular": 1.48e-08, - "percipient": 1.48e-08, - "periphrasis": 1.48e-08, - "phasmid": 1.48e-08, - "philologically": 1.48e-08, - "phytotoxic": 1.48e-08, - "pipet": 1.48e-08, - "plagiocephaly": 1.48e-08, - "plantable": 1.48e-08, - "popolari": 1.48e-08, - "prad": 1.48e-08, - "preliterate": 1.48e-08, - "prepotent": 1.48e-08, - "procumbent": 1.48e-08, - "protraction": 1.48e-08, - "pteridium": 1.48e-08, - "pudenda": 1.48e-08, - "putrescent": 1.48e-08, - "pyrogen": 1.48e-08, - "ramanan": 1.48e-08, - "ramesside": 1.48e-08, - "rattrap": 1.48e-08, - "recreant": 1.48e-08, - "reinflate": 1.48e-08, - "relitigate": 1.48e-08, - "relock": 1.48e-08, - "reputably": 1.48e-08, - "rewash": 1.48e-08, - "riem": 1.48e-08, - "ringy": 1.48e-08, - "rubicund": 1.48e-08, - "rumbustious": 1.48e-08, - "saithe": 1.48e-08, - "sasine": 1.48e-08, - "saturator": 1.48e-08, - "sauterne": 1.48e-08, - "segmentally": 1.48e-08, - "semiweekly": 1.48e-08, - "sesamum": 1.48e-08, - "shoya": 1.48e-08, - "smatter": 1.48e-08, - "socinianism": 1.48e-08, - "somatics": 1.48e-08, - "sonorously": 1.48e-08, - "sovkhoz": 1.48e-08, - "speechlessness": 1.48e-08, - "sphenoidal": 1.48e-08, - "stid": 1.48e-08, - "stoloniferous": 1.48e-08, - "stomaching": 1.48e-08, - "stringybark": 1.48e-08, - "stubbled": 1.48e-08, - "sufficing": 1.48e-08, - "suffixation": 1.48e-08, - "supercilium": 1.48e-08, - "superfluously": 1.48e-08, - "supersensible": 1.48e-08, - "tabanidae": 1.48e-08, - "tachinid": 1.48e-08, - "tautomeric": 1.48e-08, - "teca": 1.48e-08, - "tercet": 1.48e-08, - "terrorizer": 1.48e-08, - "teruyuki": 1.48e-08, - "thalassotherapy": 1.48e-08, - "thetic": 1.48e-08, - "thingamabob": 1.48e-08, - "thorned": 1.48e-08, - "tolt": 1.48e-08, - "tompion": 1.48e-08, - "transorbital": 1.48e-08, - "traprock": 1.48e-08, - "trema": 1.48e-08, - "trink": 1.48e-08, - "triops": 1.48e-08, - "trochee": 1.48e-08, - "trophozoite": 1.48e-08, - "tuart": 1.48e-08, - "tunefully": 1.48e-08, - "turma": 1.48e-08, - "typification": 1.48e-08, - "ulex": 1.48e-08, - "unadaptable": 1.48e-08, - "uncarved": 1.48e-08, - "unconformable": 1.48e-08, - "uncontroversially": 1.48e-08, - "unenriched": 1.48e-08, - "unillustrated": 1.48e-08, - "unlogged": 1.48e-08, - "unmelted": 1.48e-08, - "unstrap": 1.48e-08, - "untanned": 1.48e-08, - "untap": 1.48e-08, - "unwonted": 1.48e-08, - "vacuolated": 1.48e-08, - "vagary": 1.48e-08, - "virtuousness": 1.48e-08, - "waiata": 1.48e-08, - "westernism": 1.48e-08, - "whitetip": 1.48e-08, - "whoremonger": 1.48e-08, - "wrang": 1.48e-08, - "yohimbe": 1.48e-08, - "abelia": 1.45e-08, - "acorus": 1.45e-08, - "adhesively": 1.45e-08, - "adsorptive": 1.45e-08, - "affectingly": 1.45e-08, - "akia": 1.45e-08, - "alkylate": 1.45e-08, - "amenability": 1.45e-08, - "amoebiasis": 1.45e-08, - "amurru": 1.45e-08, - "anaphylactoid": 1.45e-08, - "annamese": 1.45e-08, - "annulation": 1.45e-08, - "annunciate": 1.45e-08, - "anodize": 1.45e-08, - "antigenicity": 1.45e-08, - "apertural": 1.45e-08, - "apomictic": 1.45e-08, - "aport": 1.45e-08, - "appertain": 1.45e-08, - "archidamus": 1.45e-08, - "arrearage": 1.45e-08, - "artemisium": 1.45e-08, - "asafetida": 1.45e-08, - "asperges": 1.45e-08, - "auca": 1.45e-08, - "autarchy": 1.45e-08, - "baccharis": 1.45e-08, - "beauclerc": 1.45e-08, - "beautifier": 1.45e-08, - "becomingly": 1.45e-08, - "bedcover": 1.45e-08, - "bhikshu": 1.45e-08, - "bibliomania": 1.45e-08, - "bijouterie": 1.45e-08, - "bipyramidal": 1.45e-08, - "birse": 1.45e-08, - "bloodthirstiness": 1.45e-08, - "bolete": 1.45e-08, - "bolsheviki": 1.45e-08, - "bonapartism": 1.45e-08, - "bornite": 1.45e-08, - "bowwow": 1.45e-08, - "brandling": 1.45e-08, - "brender": 1.45e-08, - "broadloom": 1.45e-08, - "broche": 1.45e-08, - "brownness": 1.45e-08, - "bube": 1.45e-08, - "buchu": 1.45e-08, - "burette": 1.45e-08, - "burgoo": 1.45e-08, - "butea": 1.45e-08, - "byssal": 1.45e-08, - "calliphora": 1.45e-08, - "catadioptric": 1.45e-08, - "catechize": 1.45e-08, - "cavitary": 1.45e-08, - "cervicitis": 1.45e-08, - "chalcid": 1.45e-08, - "chartreux": 1.45e-08, - "chawan": 1.45e-08, - "chekist": 1.45e-08, - "chiefship": 1.45e-08, - "chlorobenzene": 1.45e-08, - "choky": 1.45e-08, - "clupea": 1.45e-08, - "compassing": 1.45e-08, - "compellent": 1.45e-08, - "complot": 1.45e-08, - "conjugative": 1.45e-08, - "conjunctively": 1.45e-08, - "conventionalist": 1.45e-08, - "corchorus": 1.45e-08, - "costliness": 1.45e-08, - "crocidolite": 1.45e-08, - "daimio": 1.45e-08, - "damagingly": 1.45e-08, - "dargo": 1.45e-08, - "daroga": 1.45e-08, - "derate": 1.45e-08, - "designedly": 1.45e-08, - "diaphysis": 1.45e-08, - "dieffenbachia": 1.45e-08, - "digitus": 1.45e-08, - "dipodomys": 1.45e-08, - "distortive": 1.45e-08, - "divisionism": 1.45e-08, - "dobbing": 1.45e-08, - "eczematous": 1.45e-08, - "endolymphatic": 1.45e-08, - "epimedium": 1.45e-08, - "esoterically": 1.45e-08, - "eurasianism": 1.45e-08, - "exigence": 1.45e-08, - "expatiate": 1.45e-08, - "extradural": 1.45e-08, - "falernian": 1.45e-08, - "faradaic": 1.45e-08, - "farinaceous": 1.45e-08, - "farmery": 1.45e-08, - "ferrochrome": 1.45e-08, - "fibromuscular": 1.45e-08, - "fizzer": 1.45e-08, - "flattener": 1.45e-08, - "forby": 1.45e-08, - "forepaw": 1.45e-08, - "frankpledge": 1.45e-08, - "frostily": 1.45e-08, - "fruiterer": 1.45e-08, - "galactoside": 1.45e-08, - "gaudete": 1.45e-08, - "glycosuria": 1.45e-08, - "goldbug": 1.45e-08, - "goosefoot": 1.45e-08, - "granatum": 1.45e-08, - "graved": 1.45e-08, - "gyroplane": 1.45e-08, - "headshake": 1.45e-08, - "heii": 1.45e-08, - "hemal": 1.45e-08, - "hematogenous": 1.45e-08, - "henotheism": 1.45e-08, - "heracleum": 1.45e-08, - "himation": 1.45e-08, - "humidify": 1.45e-08, - "hydrodynamical": 1.45e-08, - "hydropneumatic": 1.45e-08, - "hyperopic": 1.45e-08, - "hypervitaminosis": 1.45e-08, - "idomeneus": 1.45e-08, - "imaginate": 1.45e-08, - "inapposite": 1.45e-08, - "indisciplined": 1.45e-08, - "informatively": 1.45e-08, - "insatiate": 1.45e-08, - "intertie": 1.45e-08, - "irrespectively": 1.45e-08, - "isobutylene": 1.45e-08, - "isoetes": 1.45e-08, - "isothermally": 1.45e-08, - "itali": 1.45e-08, - "jarosite": 1.45e-08, - "jewy": 1.45e-08, - "justiciability": 1.45e-08, - "kassite": 1.45e-08, - "kayastha": 1.45e-08, - "khanjar": 1.45e-08, - "klingsor": 1.45e-08, - "knez": 1.45e-08, - "knowability": 1.45e-08, - "labyrinthitis": 1.45e-08, - "laceless": 1.45e-08, - "lacemaking": 1.45e-08, - "lampas": 1.45e-08, - "limewash": 1.45e-08, - "loadstone": 1.45e-08, - "magnetostriction": 1.45e-08, - "malalignment": 1.45e-08, - "mariology": 1.45e-08, - "masulipatam": 1.45e-08, - "metaline": 1.45e-08, - "microbalance": 1.45e-08, - "mintaka": 1.45e-08, - "mistassini": 1.45e-08, - "mitotically": 1.45e-08, - "monogamously": 1.45e-08, - "monoglot": 1.45e-08, - "monoline": 1.45e-08, - "moraceae": 1.45e-08, - "mordent": 1.45e-08, - "moresque": 1.45e-08, - "mucronate": 1.45e-08, - "mugil": 1.45e-08, - "multinuclear": 1.45e-08, - "mutase": 1.45e-08, - "nagana": 1.45e-08, - "nailhead": 1.45e-08, - "navarrese": 1.45e-08, - "negundo": 1.45e-08, - "nelumbo": 1.45e-08, - "neuritic": 1.45e-08, - "nonbusiness": 1.45e-08, - "nonmalignant": 1.45e-08, - "nonmetropolitan": 1.45e-08, - "objectiveness": 1.45e-08, - "officiator": 1.45e-08, - "oligodendroglioma": 1.45e-08, - "operatory": 1.45e-08, - "orderable": 1.45e-08, - "oronoco": 1.45e-08, - "owly": 1.45e-08, - "padder": 1.45e-08, - "pannus": 1.45e-08, - "papaverine": 1.45e-08, - "parcher": 1.45e-08, - "parotitis": 1.45e-08, - "parthenope": 1.45e-08, - "pasquino": 1.45e-08, - "paternalistically": 1.45e-08, - "pecky": 1.45e-08, - "pedestrianism": 1.45e-08, - "peregrination": 1.45e-08, - "perfecti": 1.45e-08, - "periwig": 1.45e-08, - "petrea": 1.45e-08, - "phycoerythrin": 1.45e-08, - "pinchback": 1.45e-08, - "pinhook": 1.45e-08, - "planetesimal": 1.45e-08, - "pleonastic": 1.45e-08, - "plethysmography": 1.45e-08, - "polemarch": 1.45e-08, - "ponderomotive": 1.45e-08, - "pretreat": 1.45e-08, - "probabilism": 1.45e-08, - "projectable": 1.45e-08, - "pronotal": 1.45e-08, - "prosopography": 1.45e-08, - "psylla": 1.45e-08, - "pterocarpus": 1.45e-08, - "quaternionic": 1.45e-08, - "quintette": 1.45e-08, - "ragstone": 1.45e-08, - "rangle": 1.45e-08, - "raphanus": 1.45e-08, - "raploch": 1.45e-08, - "reconceive": 1.45e-08, - "refight": 1.45e-08, - "refix": 1.45e-08, - "remould": 1.45e-08, - "retama": 1.45e-08, - "rhodophyta": 1.45e-08, - "rifi": 1.45e-08, - "rimland": 1.45e-08, - "ristori": 1.45e-08, - "roistering": 1.45e-08, - "romanize": 1.45e-08, - "rondelle": 1.45e-08, - "roundedness": 1.45e-08, - "ruritanian": 1.45e-08, - "rustiness": 1.45e-08, - "ryal": 1.45e-08, - "salination": 1.45e-08, - "sapodilla": 1.45e-08, - "schottische": 1.45e-08, - "scolytus": 1.45e-08, - "scriptor": 1.45e-08, - "scritch": 1.45e-08, - "scrod": 1.45e-08, - "secesh": 1.45e-08, - "sedilia": 1.45e-08, - "semimetal": 1.45e-08, - "semitropical": 1.45e-08, - "servient": 1.45e-08, - "servilely": 1.45e-08, - "sexological": 1.45e-08, - "shirvan": 1.45e-08, - "sinto": 1.45e-08, - "slippered": 1.45e-08, - "slothfulness": 1.45e-08, - "smirch": 1.45e-08, - "sned": 1.45e-08, - "sortation": 1.45e-08, - "sovietism": 1.45e-08, - "springhead": 1.45e-08, - "stableboy": 1.45e-08, - "starky": 1.45e-08, - "sterculia": 1.45e-08, - "stomacher": 1.45e-08, - "structureless": 1.45e-08, - "submontane": 1.45e-08, - "substage": 1.45e-08, - "sulfonation": 1.45e-08, - "supernature": 1.45e-08, - "suto": 1.45e-08, - "sylloge": 1.45e-08, - "talcher": 1.45e-08, - "tallyho": 1.45e-08, - "tankful": 1.45e-08, - "tarea": 1.45e-08, - "tarkhan": 1.45e-08, - "taunter": 1.45e-08, - "tentation": 1.45e-08, - "terrene": 1.45e-08, - "thecal": 1.45e-08, - "thiobacillus": 1.45e-08, - "thomomys": 1.45e-08, - "thundershower": 1.45e-08, - "timpanist": 1.45e-08, - "tomkin": 1.45e-08, - "toxigenic": 1.45e-08, - "trampler": 1.45e-08, - "tridacna": 1.45e-08, - "trollops": 1.45e-08, - "trombe": 1.45e-08, - "tubifex": 1.45e-08, - "tunneler": 1.45e-08, - "turnable": 1.45e-08, - "ulua": 1.45e-08, - "umbelliferae": 1.45e-08, - "unchastity": 1.45e-08, - "uncommented": 1.45e-08, - "uncomplainingly": 1.45e-08, - "undebatable": 1.45e-08, - "underfill": 1.45e-08, - "underripe": 1.45e-08, - "unfavored": 1.45e-08, - "unground": 1.45e-08, - "unicyclist": 1.45e-08, - "uniformitarian": 1.45e-08, - "unintrusive": 1.45e-08, - "uniparental": 1.45e-08, - "unmold": 1.45e-08, - "unquenched": 1.45e-08, - "unregarded": 1.45e-08, - "unretired": 1.45e-08, - "unscaled": 1.45e-08, - "unsnap": 1.45e-08, - "unsocialized": 1.45e-08, - "untampered": 1.45e-08, - "untilled": 1.45e-08, - "unuseful": 1.45e-08, - "vagas": 1.45e-08, - "vext": 1.45e-08, - "vilela": 1.45e-08, - "villainously": 1.45e-08, - "volost": 1.45e-08, - "wardenship": 1.45e-08, - "warrener": 1.45e-08, - "whiffy": 1.45e-08, - "wickiup": 1.45e-08, - "woundwort": 1.45e-08, - "xebec": 1.45e-08, - "zabaglione": 1.45e-08, - "zaffar": 1.45e-08, - "zygoma": 1.45e-08, - "acastus": 1.41e-08, - "acidotic": 1.41e-08, - "adaptative": 1.41e-08, - "afflatus": 1.41e-08, - "agitational": 1.41e-08, - "ajuga": 1.41e-08, - "alabaman": 1.41e-08, - "alkermes": 1.41e-08, - "allness": 1.41e-08, - "alme": 1.41e-08, - "amenorrhoea": 1.41e-08, - "anchoress": 1.41e-08, - "anglicize": 1.41e-08, - "anguis": 1.41e-08, - "antituberculosis": 1.41e-08, - "apartness": 1.41e-08, - "apodictic": 1.41e-08, - "arean": 1.41e-08, - "areolate": 1.41e-08, - "argyria": 1.41e-08, - "armeria": 1.41e-08, - "aryanization": 1.41e-08, - "assurer": 1.41e-08, - "aulic": 1.41e-08, - "awat": 1.41e-08, - "bacula": 1.41e-08, - "balagan": 1.41e-08, - "baseballer": 1.41e-08, - "bathetic": 1.41e-08, - "beroe": 1.41e-08, - "biconcave": 1.41e-08, - "blackey": 1.41e-08, - "boilerhouse": 1.41e-08, - "borromean": 1.41e-08, - "boustrophedon": 1.41e-08, - "brakeless": 1.41e-08, - "breechblock": 1.41e-08, - "brutishness": 1.41e-08, - "bumpiness": 1.41e-08, - "buret": 1.41e-08, - "burgrave": 1.41e-08, - "callose": 1.41e-08, - "candlebox": 1.41e-08, - "carcharhinus": 1.41e-08, - "carene": 1.41e-08, - "carousal": 1.41e-08, - "cenchrus": 1.41e-08, - "chanco": 1.41e-08, - "chironomid": 1.41e-08, - "chuter": 1.41e-08, - "cicer": 1.41e-08, - "ciconia": 1.41e-08, - "columbiad": 1.41e-08, - "comestible": 1.41e-08, - "conative": 1.41e-08, - "conchal": 1.41e-08, - "condoling": 1.41e-08, - "confessionalism": 1.41e-08, - "conserver": 1.41e-08, - "coolen": 1.41e-08, - "copaiba": 1.41e-08, - "corporeally": 1.41e-08, - "corrugator": 1.41e-08, - "cotty": 1.41e-08, - "counterpointed": 1.41e-08, - "counterprotest": 1.41e-08, - "craftswoman": 1.41e-08, - "cuon": 1.41e-08, - "cyclopentane": 1.41e-08, - "cyclopia": 1.41e-08, - "cypraea": 1.41e-08, - "daintiness": 1.41e-08, - "debride": 1.41e-08, - "demit": 1.41e-08, - "desolating": 1.41e-08, - "destrier": 1.41e-08, - "desuetude": 1.41e-08, - "docetism": 1.41e-08, - "drinkability": 1.41e-08, - "dubba": 1.41e-08, - "durgan": 1.41e-08, - "ectopy": 1.41e-08, - "elmy": 1.41e-08, - "enlightener": 1.41e-08, - "erinaceus": 1.41e-08, - "escaper": 1.41e-08, - "ethicality": 1.41e-08, - "feathertop": 1.41e-08, - "fettling": 1.41e-08, - "finically": 1.41e-08, - "flocculate": 1.41e-08, - "fogbound": 1.41e-08, - "forceable": 1.41e-08, - "foresty": 1.41e-08, - "fosh": 1.41e-08, - "fourierism": 1.41e-08, - "foxwood": 1.41e-08, - "freck": 1.41e-08, - "funiculus": 1.41e-08, - "gallimaufry": 1.41e-08, - "ganymedes": 1.41e-08, - "gastronomically": 1.41e-08, - "givenness": 1.41e-08, - "gizz": 1.41e-08, - "glauconite": 1.41e-08, - "gnomonic": 1.41e-08, - "godling": 1.41e-08, - "goosander": 1.41e-08, - "gorgosaurus": 1.41e-08, - "graveling": 1.41e-08, - "grebo": 1.41e-08, - "groundmass": 1.41e-08, - "gustus": 1.41e-08, - "headachy": 1.41e-08, - "heaf": 1.41e-08, - "heavyhanded": 1.41e-08, - "hebraist": 1.41e-08, - "heinousness": 1.41e-08, - "herem": 1.41e-08, - "hoick": 1.41e-08, - "hurtfully": 1.41e-08, - "illogicality": 1.41e-08, - "indefiniteness": 1.41e-08, - "ingomar": 1.41e-08, - "inspectional": 1.41e-08, - "integrality": 1.41e-08, - "intercommunion": 1.41e-08, - "intermuscular": 1.41e-08, - "internodal": 1.41e-08, - "ironer": 1.41e-08, - "isocyanide": 1.41e-08, - "isomorphous": 1.41e-08, - "izar": 1.41e-08, - "jelutong": 1.41e-08, - "jetton": 1.41e-08, - "kafta": 1.41e-08, - "kagu": 1.41e-08, - "keawe": 1.41e-08, - "kingu": 1.41e-08, - "kutcha": 1.41e-08, - "kuvera": 1.41e-08, - "labra": 1.41e-08, - "landlessness": 1.41e-08, - "lansquenet": 1.41e-08, - "leadout": 1.41e-08, - "lemnian": 1.41e-08, - "lethargically": 1.41e-08, - "lochia": 1.41e-08, - "logogram": 1.41e-08, - "lostness": 1.41e-08, - "lupis": 1.41e-08, - "lynceus": 1.41e-08, - "mabi": 1.41e-08, - "maigre": 1.41e-08, - "malpais": 1.41e-08, - "mappy": 1.41e-08, - "mastoiditis": 1.41e-08, - "mayda": 1.41e-08, - "mazuma": 1.41e-08, - "mediolateral": 1.41e-08, - "meline": 1.41e-08, - "merluccius": 1.41e-08, - "metic": 1.41e-08, - "microcephalic": 1.41e-08, - "microphonic": 1.41e-08, - "millimolar": 1.41e-08, - "milvus": 1.41e-08, - "minning": 1.41e-08, - "monadelphous": 1.41e-08, - "mongolic": 1.41e-08, - "monitorial": 1.41e-08, - "monosyllable": 1.41e-08, - "morphemic": 1.41e-08, - "morpholine": 1.41e-08, - "mossed": 1.41e-08, - "moter": 1.41e-08, - "mouly": 1.41e-08, - "multiplet": 1.41e-08, - "muscidae": 1.41e-08, - "myristica": 1.41e-08, - "nabla": 1.41e-08, - "neckpiece": 1.41e-08, - "neopaganism": 1.41e-08, - "nitrophenol": 1.41e-08, - "nongenetic": 1.41e-08, - "northeastwards": 1.41e-08, - "nuggety": 1.41e-08, - "oligochaete": 1.41e-08, - "orach": 1.41e-08, - "orderer": 1.41e-08, - "overgenerous": 1.41e-08, - "pancreatectomy": 1.41e-08, - "passado": 1.41e-08, - "pavy": 1.41e-08, - "penally": 1.41e-08, - "pendular": 1.41e-08, - "periclean": 1.41e-08, - "persiflage": 1.41e-08, - "petrifaction": 1.41e-08, - "petrologic": 1.41e-08, - "phosphocreatine": 1.41e-08, - "picaro": 1.41e-08, - "picturization": 1.41e-08, - "pilea": 1.41e-08, - "pityingly": 1.41e-08, - "planetology": 1.41e-08, - "policial": 1.41e-08, - "pontification": 1.41e-08, - "presider": 1.41e-08, - "promisor": 1.41e-08, - "propulsor": 1.41e-08, - "proudness": 1.41e-08, - "psalterium": 1.41e-08, - "pseudococcus": 1.41e-08, - "pyramides": 1.41e-08, - "quet": 1.41e-08, - "readaptation": 1.41e-08, - "rectocele": 1.41e-08, - "rectorial": 1.41e-08, - "refire": 1.41e-08, - "refractoriness": 1.41e-08, - "resalable": 1.41e-08, - "resettable": 1.41e-08, - "reshipment": 1.41e-08, - "restrictionist": 1.41e-08, - "resurrectionist": 1.41e-08, - "riflery": 1.41e-08, - "roister": 1.41e-08, - "roit": 1.41e-08, - "roughie": 1.41e-08, - "rufescent": 1.41e-08, - "salmonberry": 1.41e-08, - "sanballat": 1.41e-08, - "sanidine": 1.41e-08, - "sarcophaga": 1.41e-08, - "scaglia": 1.41e-08, - "scapegrace": 1.41e-08, - "scenary": 1.41e-08, - "scopic": 1.41e-08, - "secretor": 1.41e-08, - "seeable": 1.41e-08, - "selli": 1.41e-08, - "sensoria": 1.41e-08, - "sentimentalize": 1.41e-08, - "sheeter": 1.41e-08, - "shram": 1.41e-08, - "simia": 1.41e-08, - "sissification": 1.41e-08, - "skillfulness": 1.41e-08, - "skitty": 1.41e-08, - "soapsuds": 1.41e-08, - "sonchus": 1.41e-08, - "sparker": 1.41e-08, - "spathulate": 1.41e-08, - "spellwork": 1.41e-08, - "spet": 1.41e-08, - "spinothalamic": 1.41e-08, - "sprag": 1.41e-08, - "spurius": 1.41e-08, - "steatorrhea": 1.41e-08, - "stenotype": 1.41e-08, - "strapwork": 1.41e-08, - "streek": 1.41e-08, - "submucous": 1.41e-08, - "subulate": 1.41e-08, - "sugamo": 1.41e-08, - "supercycle": 1.41e-08, - "supersmart": 1.41e-08, - "surfy": 1.41e-08, - "svan": 1.41e-08, - "syncopate": 1.41e-08, - "syneresis": 1.41e-08, - "tabid": 1.41e-08, - "tanan": 1.41e-08, - "telopea": 1.41e-08, - "tephrosia": 1.41e-08, - "thaumaturge": 1.41e-08, - "thickish": 1.41e-08, - "thouse": 1.41e-08, - "tieback": 1.41e-08, - "titoist": 1.41e-08, - "triatoma": 1.41e-08, - "trigone": 1.41e-08, - "triliteral": 1.41e-08, - "troper": 1.41e-08, - "tundish": 1.41e-08, - "tungusic": 1.41e-08, - "tupaia": 1.41e-08, - "turbellaria": 1.41e-08, - "turion": 1.41e-08, - "turkism": 1.41e-08, - "ultrafilter": 1.41e-08, - "unappropriated": 1.41e-08, - "unclasped": 1.41e-08, - "undatable": 1.41e-08, - "ungloved": 1.41e-08, - "unhewn": 1.41e-08, - "unsalable": 1.41e-08, - "unsearched": 1.41e-08, - "unsurfaced": 1.41e-08, - "untwisting": 1.41e-08, - "urman": 1.41e-08, - "voluptuary": 1.41e-08, - "vulcanite": 1.41e-08, - "wany": 1.41e-08, - "wedgy": 1.41e-08, - "whirley": 1.41e-08, - "whitefoot": 1.41e-08, - "wonderingly": 1.41e-08, - "zosterops": 1.41e-08, - "zuza": 1.41e-08, - "acaricide": 1.38e-08, - "adamite": 1.38e-08, - "adipocere": 1.38e-08, - "afebrile": 1.38e-08, - "aftergood": 1.38e-08, - "agria": 1.38e-08, - "agrin": 1.38e-08, - "alocasia": 1.38e-08, - "alphabetization": 1.38e-08, - "ambarella": 1.38e-08, - "ambulacral": 1.38e-08, - "analysand": 1.38e-08, - "anathematize": 1.38e-08, - "angiopathy": 1.38e-08, - "anglicism": 1.38e-08, - "aniconic": 1.38e-08, - "anorthite": 1.38e-08, - "appose": 1.38e-08, - "approximatively": 1.38e-08, - "arara": 1.38e-08, - "arawakan": 1.38e-08, - "armonica": 1.38e-08, - "arrau": 1.38e-08, - "arriver": 1.38e-08, - "asepsis": 1.38e-08, - "atheromatous": 1.38e-08, - "aureola": 1.38e-08, - "baho": 1.38e-08, - "bajocian": 1.38e-08, - "balkar": 1.38e-08, - "bargainer": 1.38e-08, - "barsac": 1.38e-08, - "barytes": 1.38e-08, - "batcher": 1.38e-08, - "becloud": 1.38e-08, - "belar": 1.38e-08, - "belemnite": 1.38e-08, - "bibulus": 1.38e-08, - "bissextile": 1.38e-08, - "blacklegs": 1.38e-08, - "blady": 1.38e-08, - "blamer": 1.38e-08, - "blesbok": 1.38e-08, - "bloodworm": 1.38e-08, - "blunderer": 1.38e-08, - "blup": 1.38e-08, - "boder": 1.38e-08, - "bolson": 1.38e-08, - "botryoidal": 1.38e-08, - "brilliantine": 1.38e-08, - "brolga": 1.38e-08, - "broodiness": 1.38e-08, - "bugloss": 1.38e-08, - "bukh": 1.38e-08, - "capricornus": 1.38e-08, - "carbonero": 1.38e-08, - "carisa": 1.38e-08, - "catamite": 1.38e-08, - "celtiberian": 1.38e-08, - "cerebration": 1.38e-08, - "chalazion": 1.38e-08, - "challengeable": 1.38e-08, - "challengingly": 1.38e-08, - "cheder": 1.38e-08, - "cherty": 1.38e-08, - "chevaline": 1.38e-08, - "chorine": 1.38e-08, - "cincinnatian": 1.38e-08, - "cive": 1.38e-08, - "clinometer": 1.38e-08, - "cockaigne": 1.38e-08, - "collineation": 1.38e-08, - "comedo": 1.38e-08, - "compeer": 1.38e-08, - "conceivability": 1.38e-08, - "conscionable": 1.38e-08, - "contumacy": 1.38e-08, - "copr": 1.38e-08, - "coproducer": 1.38e-08, - "cortinarius": 1.38e-08, - "corymb": 1.38e-08, - "cranage": 1.38e-08, - "cristobalite": 1.38e-08, - "crusie": 1.38e-08, - "culturable": 1.38e-08, - "cynocephalus": 1.38e-08, - "defectiveness": 1.38e-08, - "depuration": 1.38e-08, - "detachably": 1.38e-08, - "detectible": 1.38e-08, - "deworm": 1.38e-08, - "dhanvantari": 1.38e-08, - "dialyzer": 1.38e-08, - "diammonium": 1.38e-08, - "diaster": 1.38e-08, - "diluvial": 1.38e-08, - "direful": 1.38e-08, - "disparately": 1.38e-08, - "dobbed": 1.38e-08, - "dracunculus": 1.38e-08, - "drawee": 1.38e-08, - "drumheads": 1.38e-08, - "duodecimo": 1.38e-08, - "ectropion": 1.38e-08, - "elative": 1.38e-08, - "electrotechnology": 1.38e-08, - "emberiza": 1.38e-08, - "emulous": 1.38e-08, - "endemicity": 1.38e-08, - "endomorph": 1.38e-08, - "enshroud": 1.38e-08, - "entropion": 1.38e-08, - "epiglottitis": 1.38e-08, - "equidistantly": 1.38e-08, - "erumpent": 1.38e-08, - "exchangeability": 1.38e-08, - "fascicule": 1.38e-08, - "figurate": 1.38e-08, - "flexile": 1.38e-08, - "flirtatiousness": 1.38e-08, - "fole": 1.38e-08, - "fragmentarily": 1.38e-08, - "francolin": 1.38e-08, - "frequentative": 1.38e-08, - "frigidly": 1.38e-08, - "furnisher": 1.38e-08, - "galp": 1.38e-08, - "garganey": 1.38e-08, - "glitnir": 1.38e-08, - "glossopteris": 1.38e-08, - "gorlois": 1.38e-08, - "gradational": 1.38e-08, - "grigri": 1.38e-08, - "guaiacum": 1.38e-08, - "gunshop": 1.38e-08, - "handsel": 1.38e-08, - "hapten": 1.38e-08, - "heavenwards": 1.38e-08, - "heedful": 1.38e-08, - "hemen": 1.38e-08, - "hemicycle": 1.38e-08, - "heteronomous": 1.38e-08, - "historics": 1.38e-08, - "hogfish": 1.38e-08, - "homelander": 1.38e-08, - "homograph": 1.38e-08, - "hoosegow": 1.38e-08, - "horologist": 1.38e-08, - "hospitium": 1.38e-08, - "hybla": 1.38e-08, - "hydrazide": 1.38e-08, - "impar": 1.38e-08, - "inequal": 1.38e-08, - "inharmonic": 1.38e-08, - "insurmountably": 1.38e-08, - "intercommunity": 1.38e-08, - "interdependently": 1.38e-08, - "interlobular": 1.38e-08, - "iphis": 1.38e-08, - "ironmaking": 1.38e-08, - "ironworking": 1.38e-08, - "ithiel": 1.38e-08, - "joggle": 1.38e-08, - "jumpiness": 1.38e-08, - "jurisconsult": 1.38e-08, - "kanoon": 1.38e-08, - "kilocalorie": 1.38e-08, - "kmet": 1.38e-08, - "komondor": 1.38e-08, - "konak": 1.38e-08, - "latro": 1.38e-08, - "laudian": 1.38e-08, - "leucotomy": 1.38e-08, - "lexicographically": 1.38e-08, - "licenser": 1.38e-08, - "lichenoid": 1.38e-08, - "lightful": 1.38e-08, - "limy": 1.38e-08, - "lithologic": 1.38e-08, - "logorrhea": 1.38e-08, - "louisianian": 1.38e-08, - "lues": 1.38e-08, - "lunkhead": 1.38e-08, - "macaco": 1.38e-08, - "maghribi": 1.38e-08, - "malacology": 1.38e-08, - "maldistribution": 1.38e-08, - "manobo": 1.38e-08, - "maqui": 1.38e-08, - "mastopexy": 1.38e-08, - "megarian": 1.38e-08, - "megrim": 1.38e-08, - "mentalis": 1.38e-08, - "mercilessness": 1.38e-08, - "merlon": 1.38e-08, - "mewl": 1.38e-08, - "micromechanics": 1.38e-08, - "microphotography": 1.38e-08, - "mirthlessly": 1.38e-08, - "misdeal": 1.38e-08, - "moneyer": 1.38e-08, - "moriori": 1.38e-08, - "mudar": 1.38e-08, - "mulligatawny": 1.38e-08, - "munia": 1.38e-08, - "mustachio": 1.38e-08, - "mustelidae": 1.38e-08, - "mutualization": 1.38e-08, - "needlefish": 1.38e-08, - "nonideal": 1.38e-08, - "nonofficial": 1.38e-08, - "nonoverlapping": 1.38e-08, - "nonsynonymous": 1.38e-08, - "obstinance": 1.38e-08, - "occipitalis": 1.38e-08, - "odometry": 1.38e-08, - "odontoid": 1.38e-08, - "oord": 1.38e-08, - "ornamentally": 1.38e-08, - "overborne": 1.38e-08, - "overstimulate": 1.38e-08, - "painfulness": 1.38e-08, - "palladia": 1.38e-08, - "parallelly": 1.38e-08, - "paratuberculosis": 1.38e-08, - "passeriformes": 1.38e-08, - "pavis": 1.38e-08, - "phosphene": 1.38e-08, - "phyllotaxis": 1.38e-08, - "pibroch": 1.38e-08, - "pignut": 1.38e-08, - "piscatorial": 1.38e-08, - "placation": 1.38e-08, - "placeable": 1.38e-08, - "platysma": 1.38e-08, - "poleaxe": 1.38e-08, - "polypoid": 1.38e-08, - "poria": 1.38e-08, - "porphyrion": 1.38e-08, - "potoo": 1.38e-08, - "precautious": 1.38e-08, - "predecease": 1.38e-08, - "prexy": 1.38e-08, - "prolificacy": 1.38e-08, - "promotive": 1.38e-08, - "protoceratops": 1.38e-08, - "pseudobulbar": 1.38e-08, - "purger": 1.38e-08, - "quaters": 1.38e-08, - "radiolocation": 1.38e-08, - "radiophone": 1.38e-08, - "reconstructor": 1.38e-08, - "reginal": 1.38e-08, - "rememberer": 1.38e-08, - "removability": 1.38e-08, - "rhyton": 1.38e-08, - "riccia": 1.38e-08, - "rinde": 1.38e-08, - "roarer": 1.38e-08, - "roed": 1.38e-08, - "rosebay": 1.38e-08, - "sahidic": 1.38e-08, - "sainfoin": 1.38e-08, - "scomber": 1.38e-08, - "seatwork": 1.38e-08, - "seker": 1.38e-08, - "servomechanism": 1.38e-08, - "shoptalk": 1.38e-08, - "siciliana": 1.38e-08, - "sidehill": 1.38e-08, - "sizar": 1.38e-08, - "skokomish": 1.38e-08, - "sleave": 1.38e-08, - "solidness": 1.38e-08, - "soullessness": 1.38e-08, - "sphenopalatine": 1.38e-08, - "sporotrichosis": 1.38e-08, - "steeplechasing": 1.38e-08, - "storminess": 1.38e-08, - "strapper": 1.38e-08, - "studbook": 1.38e-08, - "stylobate": 1.38e-08, - "subacromial": 1.38e-08, - "subvariety": 1.38e-08, - "successfulness": 1.38e-08, - "sweetleaf": 1.38e-08, - "synastry": 1.38e-08, - "synclinal": 1.38e-08, - "syrphidae": 1.38e-08, - "tannaim": 1.38e-08, - "tastefulness": 1.38e-08, - "teuk": 1.38e-08, - "thirstily": 1.38e-08, - "thurm": 1.38e-08, - "timbal": 1.38e-08, - "timeously": 1.38e-08, - "toona": 1.38e-08, - "toper": 1.38e-08, - "toytown": 1.38e-08, - "trametes": 1.38e-08, - "transamination": 1.38e-08, - "translater": 1.38e-08, - "trepan": 1.38e-08, - "triarii": 1.38e-08, - "troublous": 1.38e-08, - "tryptase": 1.38e-08, - "trysail": 1.38e-08, - "tucket": 1.38e-08, - "tunk": 1.38e-08, - "ultramontanism": 1.38e-08, - "unbreachable": 1.38e-08, - "uncomfort": 1.38e-08, - "uncurable": 1.38e-08, - "undeleted": 1.38e-08, - "underrun": 1.38e-08, - "undy": 1.38e-08, - "unfledged": 1.38e-08, - "unipotent": 1.38e-08, - "unnaturalness": 1.38e-08, - "unpure": 1.38e-08, - "unroadworthy": 1.38e-08, - "upraise": 1.38e-08, - "uxorious": 1.38e-08, - "valuate": 1.38e-08, - "valuator": 1.38e-08, - "variegate": 1.38e-08, - "vivaciously": 1.38e-08, - "waag": 1.38e-08, - "watersmeet": 1.38e-08, - "wheneer": 1.38e-08, - "winchman": 1.38e-08, - "wriggler": 1.38e-08, - "xanthate": 1.38e-08, - "zechstein": 1.38e-08, - "adaptiveness": 1.35e-08, - "agamic": 1.35e-08, - "alkalic": 1.35e-08, - "alsatia": 1.35e-08, - "ambry": 1.35e-08, - "andalusite": 1.35e-08, - "annihilationism": 1.35e-08, - "anthropomorphization": 1.35e-08, - "apish": 1.35e-08, - "apocalyptical": 1.35e-08, - "appendice": 1.35e-08, - "apprehensiveness": 1.35e-08, - "aquarii": 1.35e-08, - "aquo": 1.35e-08, - "arbalest": 1.35e-08, - "arboreta": 1.35e-08, - "arizonian": 1.35e-08, - "asphaltene": 1.35e-08, - "astacus": 1.35e-08, - "astrograph": 1.35e-08, - "atonia": 1.35e-08, - "auricularia": 1.35e-08, - "backspacer": 1.35e-08, - "bedsore": 1.35e-08, - "beothuk": 1.35e-08, - "bernicia": 1.35e-08, - "beseen": 1.35e-08, - "biguanide": 1.35e-08, - "birational": 1.35e-08, - "blamelessly": 1.35e-08, - "bombastically": 1.35e-08, - "botherer": 1.35e-08, - "boyard": 1.35e-08, - "brattice": 1.35e-08, - "breathiness": 1.35e-08, - "brigalow": 1.35e-08, - "bronchoscopic": 1.35e-08, - "bryophyta": 1.35e-08, - "burred": 1.35e-08, - "buttonless": 1.35e-08, - "cadaverine": 1.35e-08, - "calcic": 1.35e-08, - "caltha": 1.35e-08, - "cambarus": 1.35e-08, - "cancri": 1.35e-08, - "capturer": 1.35e-08, - "carbonize": 1.35e-08, - "caroler": 1.35e-08, - "celebrator": 1.35e-08, - "chainer": 1.35e-08, - "chiliad": 1.35e-08, - "choiceless": 1.35e-08, - "chylomicron": 1.35e-08, - "citrullus": 1.35e-08, - "cliona": 1.35e-08, - "continuative": 1.35e-08, - "cordelier": 1.35e-08, - "corrosiveness": 1.35e-08, - "corrosivity": 1.35e-08, - "cosse": 1.35e-08, - "counterweighted": 1.35e-08, - "cupula": 1.35e-08, - "cuspidal": 1.35e-08, - "cystadenoma": 1.35e-08, - "cystocele": 1.35e-08, - "czardas": 1.35e-08, - "definiens": 1.35e-08, - "desaturate": 1.35e-08, - "deuteronomist": 1.35e-08, - "devoutness": 1.35e-08, - "diablerie": 1.35e-08, - "diaspore": 1.35e-08, - "dispirit": 1.35e-08, - "distorter": 1.35e-08, - "ditcher": 1.35e-08, - "dodecagon": 1.35e-08, - "dogbane": 1.35e-08, - "dotchin": 1.35e-08, - "drummy": 1.35e-08, - "duumvirate": 1.35e-08, - "echinoid": 1.35e-08, - "ejaculator": 1.35e-08, - "elocutionist": 1.35e-08, - "embryoid": 1.35e-08, - "endwise": 1.35e-08, - "ensconce": 1.35e-08, - "enthrallment": 1.35e-08, - "epinephelus": 1.35e-08, - "erotism": 1.35e-08, - "everydayness": 1.35e-08, - "exegeses": 1.35e-08, - "expectorate": 1.35e-08, - "expensiveness": 1.35e-08, - "expertness": 1.35e-08, - "explantation": 1.35e-08, - "extraembryonic": 1.35e-08, - "fantast": 1.35e-08, - "fascicular": 1.35e-08, - "fathometer": 1.35e-08, - "favosites": 1.35e-08, - "fibrillose": 1.35e-08, - "fideism": 1.35e-08, - "filmland": 1.35e-08, - "fingall": 1.35e-08, - "fishiness": 1.35e-08, - "footsore": 1.35e-08, - "foresaid": 1.35e-08, - "freemasonic": 1.35e-08, - "gelsemium": 1.35e-08, - "gemmae": 1.35e-08, - "girondin": 1.35e-08, - "glassie": 1.35e-08, - "glycerate": 1.35e-08, - "glyphic": 1.35e-08, - "gobbing": 1.35e-08, - "granulator": 1.35e-08, - "graupel": 1.35e-08, - "haematoxylin": 1.35e-08, - "haidee": 1.35e-08, - "hazer": 1.35e-08, - "headnote": 1.35e-08, - "hectograph": 1.35e-08, - "hemangiosarcoma": 1.35e-08, - "heronry": 1.35e-08, - "herrenvolk": 1.35e-08, - "heterodera": 1.35e-08, - "heterotic": 1.35e-08, - "hudibras": 1.35e-08, - "hure": 1.35e-08, - "hydria": 1.35e-08, - "hyperemic": 1.35e-08, - "hyperextend": 1.35e-08, - "hypoid": 1.35e-08, - "icho": 1.35e-08, - "iconoscope": 1.35e-08, - "illative": 1.35e-08, - "illegibility": 1.35e-08, - "incoherency": 1.35e-08, - "ineffability": 1.35e-08, - "injuriously": 1.35e-08, - "inkosi": 1.35e-08, - "interdictor": 1.35e-08, - "intrapsychic": 1.35e-08, - "inversive": 1.35e-08, - "irresolution": 1.35e-08, - "ixodidae": 1.35e-08, - "jackfish": 1.35e-08, - "jugglery": 1.35e-08, - "karroo": 1.35e-08, - "kemple": 1.35e-08, - "kokum": 1.35e-08, - "kynurenic": 1.35e-08, - "lactational": 1.35e-08, - "lagarto": 1.35e-08, - "lampwick": 1.35e-08, - "leakiness": 1.35e-08, - "lessness": 1.35e-08, - "lineated": 1.35e-08, - "linty": 1.35e-08, - "livor": 1.35e-08, - "luminant": 1.35e-08, - "lysenkoism": 1.35e-08, - "macrocytic": 1.35e-08, - "magnetizable": 1.35e-08, - "manganite": 1.35e-08, - "manufacturable": 1.35e-08, - "mariamman": 1.35e-08, - "masculinize": 1.35e-08, - "meliaceae": 1.35e-08, - "mercapto": 1.35e-08, - "mesophytic": 1.35e-08, - "mesothelium": 1.35e-08, - "microphonics": 1.35e-08, - "miltonic": 1.35e-08, - "minhag": 1.35e-08, - "misimpression": 1.35e-08, - "mistime": 1.35e-08, - "monotreme": 1.35e-08, - "mordantly": 1.35e-08, - "mullite": 1.35e-08, - "multinucleate": 1.35e-08, - "muran": 1.35e-08, - "musaeus": 1.35e-08, - "naid": 1.35e-08, - "natals": 1.35e-08, - "navette": 1.35e-08, - "neophobia": 1.35e-08, - "neuroepithelial": 1.35e-08, - "nipponese": 1.35e-08, - "nogai": 1.35e-08, - "nonmarine": 1.35e-08, - "nonrecourse": 1.35e-08, - "nontheistic": 1.35e-08, - "nowheres": 1.35e-08, - "nympha": 1.35e-08, - "ogam": 1.35e-08, - "oghuz": 1.35e-08, - "opah": 1.35e-08, - "orchestrion": 1.35e-08, - "orthophosphoric": 1.35e-08, - "outwater": 1.35e-08, - "overpromise": 1.35e-08, - "pagurus": 1.35e-08, - "pahoehoe": 1.35e-08, - "parlando": 1.35e-08, - "pasmo": 1.35e-08, - "pectinase": 1.35e-08, - "peevishly": 1.35e-08, - "pelmet": 1.35e-08, - "pelu": 1.35e-08, - "penality": 1.35e-08, - "pentapolis": 1.35e-08, - "perfusate": 1.35e-08, - "periocular": 1.35e-08, - "perpendicularity": 1.35e-08, - "phyton": 1.35e-08, - "phytosterol": 1.35e-08, - "picturesqueness": 1.35e-08, - "pikeman": 1.35e-08, - "pistache": 1.35e-08, - "planation": 1.35e-08, - "plasmodial": 1.35e-08, - "plinian": 1.35e-08, - "plumose": 1.35e-08, - "porphyra": 1.35e-08, - "porterage": 1.35e-08, - "posthypnotic": 1.35e-08, - "preachiness": 1.35e-08, - "predestinate": 1.35e-08, - "proboscidea": 1.35e-08, - "proclitic": 1.35e-08, - "prototypically": 1.35e-08, - "prurigo": 1.35e-08, - "psidium": 1.35e-08, - "psittacine": 1.35e-08, - "psychometrically": 1.35e-08, - "punkah": 1.35e-08, - "punster": 1.35e-08, - "purry": 1.35e-08, - "pyrazole": 1.35e-08, - "pyrogallol": 1.35e-08, - "pyrophyllite": 1.35e-08, - "pythonic": 1.35e-08, - "quacky": 1.35e-08, - "rabboni": 1.35e-08, - "radiolucent": 1.35e-08, - "raffe": 1.35e-08, - "rageful": 1.35e-08, - "raglin": 1.35e-08, - "railer": 1.35e-08, - "reinsure": 1.35e-08, - "relet": 1.35e-08, - "reprehensibly": 1.35e-08, - "reshare": 1.35e-08, - "restfulness": 1.35e-08, - "restream": 1.35e-08, - "resubscribe": 1.35e-08, - "resultative": 1.35e-08, - "revisitation": 1.35e-08, - "richesse": 1.35e-08, - "roadhead": 1.35e-08, - "roadstone": 1.35e-08, - "rooky": 1.35e-08, - "ruen": 1.35e-08, - "saite": 1.35e-08, - "salay": 1.35e-08, - "sappiness": 1.35e-08, - "scolopendra": 1.35e-08, - "scotchy": 1.35e-08, - "scourer": 1.35e-08, - "scriber": 1.35e-08, - "sculpturally": 1.35e-08, - "searchingly": 1.35e-08, - "seax": 1.35e-08, - "seriocomic": 1.35e-08, - "sesqui": 1.35e-08, - "shallop": 1.35e-08, - "shaly": 1.35e-08, - "shiftiness": 1.35e-08, - "skyscraping": 1.35e-08, - "slad": 1.35e-08, - "sleaziness": 1.35e-08, - "slogger": 1.35e-08, - "solecism": 1.35e-08, - "souhegan": 1.35e-08, - "southmost": 1.35e-08, - "sparklingly": 1.35e-08, - "spondylus": 1.35e-08, - "stannary": 1.35e-08, - "stanno": 1.35e-08, - "stive": 1.35e-08, - "stopa": 1.35e-08, - "stormberg": 1.35e-08, - "stormproof": 1.35e-08, - "stouthearted": 1.35e-08, - "stresser": 1.35e-08, - "subsessile": 1.35e-08, - "subsolar": 1.35e-08, - "succinimide": 1.35e-08, - "summarizer": 1.35e-08, - "sunnism": 1.35e-08, - "supertax": 1.35e-08, - "sympatry": 1.35e-08, - "taar": 1.35e-08, - "tabet": 1.35e-08, - "talmudist": 1.35e-08, - "tetramethylammonium": 1.35e-08, - "tomogram": 1.35e-08, - "touchiness": 1.35e-08, - "tragacanth": 1.35e-08, - "traitorously": 1.35e-08, - "tramper": 1.35e-08, - "trapezohedron": 1.35e-08, - "triteness": 1.35e-08, - "unchangeably": 1.35e-08, - "uncia": 1.35e-08, - "uncongested": 1.35e-08, - "underpressure": 1.35e-08, - "underproduction": 1.35e-08, - "undervoltage": 1.35e-08, - "undrilled": 1.35e-08, - "undulatory": 1.35e-08, - "unhung": 1.35e-08, - "uniface": 1.35e-08, - "uniflow": 1.35e-08, - "uninstructed": 1.35e-08, - "unintelligibility": 1.35e-08, - "uninterpretable": 1.35e-08, - "uninventive": 1.35e-08, - "unlubricated": 1.35e-08, - "unmanageably": 1.35e-08, - "unsanctified": 1.35e-08, - "unsliced": 1.35e-08, - "unstinted": 1.35e-08, - "unstyled": 1.35e-08, - "unstylish": 1.35e-08, - "uralian": 1.35e-08, - "vallisneria": 1.35e-08, - "veldman": 1.35e-08, - "ventless": 1.35e-08, - "vitrify": 1.35e-08, - "volatilize": 1.35e-08, - "vorticism": 1.35e-08, - "waapa": 1.35e-08, - "waler": 1.35e-08, - "wangara": 1.35e-08, - "wapp": 1.35e-08, - "waur": 1.35e-08, - "waveless": 1.35e-08, - "whoof": 1.35e-08, - "wicketkeeping": 1.35e-08, - "withania": 1.35e-08, - "yttria": 1.35e-08, - "zanella": 1.35e-08, - "zebrawood": 1.35e-08, - "abrin": 1.32e-08, - "achatina": 1.32e-08, - "adagietto": 1.32e-08, - "adansonia": 1.32e-08, - "advocator": 1.32e-08, - "afterpiece": 1.32e-08, - "aggregative": 1.32e-08, - "algor": 1.32e-08, - "amaryllidaceae": 1.32e-08, - "amateurishness": 1.32e-08, - "ammonoid": 1.32e-08, - "anatidae": 1.32e-08, - "anhidrosis": 1.32e-08, - "antiknock": 1.32e-08, - "apocryphally": 1.32e-08, - "apophyllite": 1.32e-08, - "apostolical": 1.32e-08, - "applier": 1.32e-08, - "appoggiatura": 1.32e-08, - "arteriogram": 1.32e-08, - "arthrosis": 1.32e-08, - "assimilatory": 1.32e-08, - "audiometer": 1.32e-08, - "bagworm": 1.32e-08, - "baken": 1.32e-08, - "barghest": 1.32e-08, - "basilican": 1.32e-08, - "basketwork": 1.32e-08, - "batrachia": 1.32e-08, - "bdellium": 1.32e-08, - "bezzi": 1.32e-08, - "bicyclo": 1.32e-08, - "billiken": 1.32e-08, - "bilocation": 1.32e-08, - "bination": 1.32e-08, - "biopsychology": 1.32e-08, - "bosker": 1.32e-08, - "brawly": 1.32e-08, - "briolette": 1.32e-08, - "brochette": 1.32e-08, - "broma": 1.32e-08, - "broodingly": 1.32e-08, - "brushland": 1.32e-08, - "budder": 1.32e-08, - "caducous": 1.32e-08, - "cahow": 1.32e-08, - "calliphoridae": 1.32e-08, - "canonicals": 1.07e-08, - "cascabel": 1.32e-08, - "casuality": 1.32e-08, - "casuistic": 1.32e-08, - "cataclysmically": 1.32e-08, - "catharism": 1.32e-08, - "centile": 1.32e-08, - "champy": 1.32e-08, - "chuckwalla": 1.32e-08, - "cittern": 1.32e-08, - "cladocera": 1.32e-08, - "clamper": 1.32e-08, - "clownery": 1.32e-08, - "cockchafer": 1.32e-08, - "coelenterata": 1.32e-08, - "combretum": 1.32e-08, - "confiteor": 1.32e-08, - "cotinus": 1.32e-08, - "counterpane": 1.32e-08, - "counterplan": 1.32e-08, - "cowlicks": 1.32e-08, - "coxal": 1.32e-08, - "crabeater": 1.32e-08, - "crapy": 1.32e-08, - "craquelure": 1.32e-08, - "crine": 1.32e-08, - "cruciferae": 1.32e-08, - "crystallizer": 1.32e-08, - "curer": 1.32e-08, - "curtal": 1.32e-08, - "cuttingly": 1.32e-08, - "cuttyhunk": 1.32e-08, - "deacidification": 1.32e-08, - "decani": 1.32e-08, - "defamer": 1.32e-08, - "definability": 1.32e-08, - "demander": 1.32e-08, - "democratical": 1.32e-08, - "demulcent": 1.32e-08, - "depthless": 1.32e-08, - "dialectician": 1.32e-08, - "dillweed": 1.32e-08, - "discriminately": 1.32e-08, - "dissimilatory": 1.32e-08, - "dogie": 1.32e-08, - "dourly": 1.32e-08, - "downflow": 1.32e-08, - "driveaway": 1.32e-08, - "electrophysiologist": 1.32e-08, - "elsewise": 1.32e-08, - "encrust": 1.32e-08, - "epicanthic": 1.32e-08, - "epiphenomenalism": 1.32e-08, - "exactingly": 1.32e-08, - "exemptive": 1.32e-08, - "farse": 1.32e-08, - "fatalistically": 1.32e-08, - "felicitously": 1.32e-08, - "fibrinous": 1.32e-08, - "fingersmith": 1.32e-08, - "fleeter": 1.32e-08, - "fleetness": 1.32e-08, - "flurried": 1.32e-08, - "forebode": 1.32e-08, - "gaberdine": 1.32e-08, - "galaxian": 1.32e-08, - "gharial": 1.32e-08, - "girlishness": 1.32e-08, - "glauconitic": 1.32e-08, - "gluer": 1.32e-08, - "glutaric": 1.32e-08, - "gonfalonier": 1.32e-08, - "gradin": 1.32e-08, - "grassman": 1.32e-08, - "graveman": 1.32e-08, - "grilse": 1.32e-08, - "groser": 1.32e-08, - "gunnera": 1.32e-08, - "habenaria": 1.32e-08, - "harmala": 1.32e-08, - "hartin": 1.32e-08, - "hemera": 1.32e-08, - "hemionus": 1.32e-08, - "hepatorenal": 1.32e-08, - "heresiarch": 1.32e-08, - "heritance": 1.32e-08, - "hiddenness": 1.32e-08, - "holcus": 1.32e-08, - "horsy": 1.32e-08, - "hydatidiform": 1.32e-08, - "hydroforming": 1.32e-08, - "hydrokinetic": 1.32e-08, - "hypericin": 1.32e-08, - "hypothetic": 1.32e-08, - "illuminative": 1.32e-08, - "immemorially": 1.32e-08, - "impracticability": 1.32e-08, - "incertitude": 1.32e-08, - "indifferentism": 1.32e-08, - "inelegance": 1.32e-08, - "infanticidal": 1.32e-08, - "inherence": 1.32e-08, - "inion": 1.32e-08, - "insatiability": 1.32e-08, - "intercloud": 1.32e-08, - "intergrowth": 1.32e-08, - "interlingual": 1.32e-08, - "intragastric": 1.32e-08, - "intraparietal": 1.32e-08, - "introjection": 1.32e-08, - "isochronic": 1.32e-08, - "isostasy": 1.32e-08, - "jackshaft": 1.32e-08, - "kalium": 1.32e-08, - "kantele": 1.32e-08, - "kashubian": 1.32e-08, - "katalyst": 1.32e-08, - "kinematically": 1.32e-08, - "knape": 1.32e-08, - "knout": 1.32e-08, - "korwa": 1.32e-08, - "kuttab": 1.32e-08, - "lacedaemonian": 1.32e-08, - "lacer": 1.32e-08, - "lackadaisically": 1.32e-08, - "lagomorph": 1.32e-08, - "lamaism": 1.32e-08, - "lappish": 1.32e-08, - "larky": 1.32e-08, - "lazzaroni": 1.32e-08, - "lechuguilla": 1.32e-08, - "leucyl": 1.32e-08, - "limitedly": 1.32e-08, - "litterer": 1.32e-08, - "locular": 1.32e-08, - "lopsidedly": 1.32e-08, - "luting": 1.32e-08, - "lymphangioma": 1.32e-08, - "lymphotoxin": 1.32e-08, - "magnetoelectric": 1.32e-08, - "mahra": 1.32e-08, - "mahseer": 1.32e-08, - "malrotation": 1.32e-08, - "manipulatively": 1.32e-08, - "mannerless": 1.32e-08, - "mashy": 1.32e-08, - "matchwood": 1.32e-08, - "megavolt": 1.32e-08, - "micropaleontology": 1.32e-08, - "milicent": 1.32e-08, - "mistily": 1.32e-08, - "mochica": 1.32e-08, - "montem": 1.32e-08, - "morphea": 1.32e-08, - "multiengine": 1.32e-08, - "multifidus": 1.32e-08, - "mumming": 1.32e-08, - "nightwork": 1.32e-08, - "nonpaying": 1.32e-08, - "nonuse": 1.32e-08, - "numerary": 1.32e-08, - "officership": 1.32e-08, - "oint": 1.32e-08, - "onchocerca": 1.32e-08, - "onionskin": 1.32e-08, - "onomatopoetic": 1.32e-08, - "osteichthyes": 1.32e-08, - "oudenarde": 1.32e-08, - "overbank": 1.32e-08, - "overfit": 1.32e-08, - "overstrain": 1.32e-08, - "oxyhemoglobin": 1.32e-08, - "panpipe": 1.32e-08, - "parasitologist": 1.32e-08, - "parochially": 1.32e-08, - "passional": 1.32e-08, - "pedicularis": 1.32e-08, - "penannular": 1.32e-08, - "periastron": 1.32e-08, - "perique": 1.32e-08, - "perissodactyla": 1.32e-08, - "pertly": 1.32e-08, - "photomicrography": 1.32e-08, - "phraseological": 1.32e-08, - "phycocyanin": 1.32e-08, - "pinnule": 1.32e-08, - "plancher": 1.32e-08, - "plethodon": 1.32e-08, - "plowboy": 1.32e-08, - "poesis": 1.32e-08, - "pollywog": 1.32e-08, - "polymicrobial": 1.32e-08, - "polytrichum": 1.32e-08, - "poniard": 1.32e-08, - "postnominal": 1.32e-08, - "postwoman": 1.32e-08, - "precipitable": 1.32e-08, - "predictively": 1.32e-08, - "prejudicially": 1.32e-08, - "preocular": 1.32e-08, - "priscillian": 1.32e-08, - "prodigally": 1.32e-08, - "punga": 1.32e-08, - "purlieu": 1.32e-08, - "queenless": 1.32e-08, - "quilly": 1.32e-08, - "ratite": 1.32e-08, - "rectovaginal": 1.32e-08, - "reeding": 1.32e-08, - "reflate": 1.32e-08, - "refuser": 1.32e-08, - "regressor": 1.32e-08, - "reiterative": 1.32e-08, - "remeasure": 1.32e-08, - "retropharyngeal": 1.32e-08, - "retroversion": 1.32e-08, - "reubenites": 1.32e-08, - "revalidate": 1.32e-08, - "rodolphus": 1.32e-08, - "rogero": 1.32e-08, - "roguery": 1.32e-08, - "rusticate": 1.32e-08, - "saturnus": 1.32e-08, - "saulter": 1.32e-08, - "scarabaeus": 1.32e-08, - "scillonian": 1.32e-08, - "scombroid": 1.32e-08, - "scratchboard": 1.32e-08, - "scriver": 1.32e-08, - "scunner": 1.32e-08, - "scutage": 1.32e-08, - "selenographic": 1.32e-08, - "semble": 1.32e-08, - "setscrew": 1.32e-08, - "sigla": 1.32e-08, - "siphonaptera": 1.32e-08, - "skoo": 1.32e-08, - "slape": 1.32e-08, - "snugger": 1.32e-08, - "speleology": 1.32e-08, - "spense": 1.32e-08, - "strategics": 1.32e-08, - "strook": 1.32e-08, - "subjacent": 1.32e-08, - "subvertical": 1.32e-08, - "sulfonium": 1.32e-08, - "sullenness": 1.32e-08, - "surviver": 1.32e-08, - "tactlessness": 1.32e-08, - "taffrail": 1.32e-08, - "tainui": 1.32e-08, - "tautomerism": 1.32e-08, - "tawn": 1.32e-08, - "tearless": 1.32e-08, - "teleseismic": 1.32e-08, - "timucua": 1.32e-08, - "torsionally": 1.32e-08, - "totalize": 1.32e-08, - "toter": 1.32e-08, - "tother": 1.32e-08, - "towery": 1.32e-08, - "toxically": 1.32e-08, - "transship": 1.32e-08, - "traverser": 1.32e-08, - "tropaeolum": 1.32e-08, - "truckster": 1.32e-08, - "trumpie": 1.32e-08, - "trush": 1.32e-08, - "unadvised": 1.32e-08, - "unamusing": 1.32e-08, - "unanalyzed": 1.32e-08, - "unappealable": 1.32e-08, - "uncoachable": 1.32e-08, - "unconvicted": 1.32e-08, - "underglow": 1.32e-08, - "unfix": 1.32e-08, - "ungentle": 1.32e-08, - "ungraciously": 1.32e-08, - "unguis": 1.32e-08, - "unice": 1.32e-08, - "unintimidated": 1.32e-08, - "unmarriageable": 1.32e-08, - "unpretentiously": 1.32e-08, - "unqualifiedly": 1.32e-08, - "unshackling": 1.32e-08, - "unsifted": 1.32e-08, - "unthoughtful": 1.32e-08, - "unwrinkled": 1.32e-08, - "usnic": 1.32e-08, - "vacuousness": 1.32e-08, - "vermifuge": 1.32e-08, - "visitable": 1.32e-08, - "voteless": 1.32e-08, - "wandoo": 1.32e-08, - "wanter": 1.32e-08, - "weightlessly": 1.32e-08, - "wildcatting": 1.32e-08, - "witchetty": 1.32e-08, - "aardwolf": 1.29e-08, - "abloom": 1.29e-08, - "abuna": 1.29e-08, - "actomyosin": 1.29e-08, - "adjustive": 1.29e-08, - "advective": 1.29e-08, - "adventive": 1.29e-08, - "agronomical": 1.29e-08, - "ajoint": 1.29e-08, - "albuminous": 1.29e-08, - "alclad": 1.29e-08, - "ambitus": 1.29e-08, - "anacardiaceae": 1.29e-08, - "annalistic": 1.29e-08, - "annulet": 1.29e-08, - "antecubital": 1.29e-08, - "antinational": 1.29e-08, - "antiskid": 1.29e-08, - "asianism": 1.29e-08, - "aythya": 1.29e-08, - "azobenzene": 1.29e-08, - "baiocchi": 1.29e-08, - "banba": 1.29e-08, - "banteng": 1.29e-08, - "barrer": 1.29e-08, - "beatae": 1.29e-08, - "beatify": 1.29e-08, - "beleaguer": 1.29e-08, - "bemusedly": 1.29e-08, - "bethabara": 1.29e-08, - "bezique": 1.29e-08, - "bhangi": 1.29e-08, - "bicipital": 1.29e-08, - "bield": 1.29e-08, - "biscayan": 1.29e-08, - "bitted": 1.29e-08, - "biuret": 1.29e-08, - "blameworthiness": 1.29e-08, - "boraginaceae": 1.29e-08, - "bothrops": 1.29e-08, - "buncher": 1.29e-08, - "buriti": 1.29e-08, - "busman": 1.29e-08, - "cacoon": 1.29e-08, - "calciferous": 1.29e-08, - "calinda": 1.29e-08, - "capax": 1.29e-08, - "capparis": 1.29e-08, - "capsula": 1.29e-08, - "captainship": 1.29e-08, - "carbazole": 1.29e-08, - "cartesianism": 1.29e-08, - "cartonnage": 1.29e-08, - "cerastium": 1.29e-08, - "cestoda": 1.29e-08, - "chantey": 1.29e-08, - "chassepot": 1.29e-08, - "cholic": 1.29e-08, - "chronologic": 1.29e-08, - "chronoscope": 1.29e-08, - "chuckies": 1.29e-08, - "clammer": 1.29e-08, - "clausula": 1.29e-08, - "clavecin": 1.29e-08, - "collocate": 1.29e-08, - "colluvial": 1.29e-08, - "compliantly": 1.29e-08, - "compoundable": 1.29e-08, - "concanavalin": 1.29e-08, - "confect": 1.29e-08, - "copiousness": 1.29e-08, - "corporally": 1.29e-08, - "courtliness": 1.29e-08, - "crural": 1.29e-08, - "crystallizable": 1.29e-08, - "culinarily": 1.29e-08, - "curcas": 1.29e-08, - "decollete": 1.29e-08, - "deject": 1.29e-08, - "delayer": 1.29e-08, - "dequeen": 1.29e-08, - "digitate": 1.29e-08, - "disbelievingly": 1.29e-08, - "dithionite": 1.29e-08, - "dithyramb": 1.29e-08, - "doat": 1.29e-08, - "eddic": 1.29e-08, - "enfeoffment": 1.29e-08, - "escribe": 1.29e-08, - "executional": 1.29e-08, - "exteriorly": 1.29e-08, - "factorize": 1.29e-08, - "familism": 1.29e-08, - "fetchingly": 1.29e-08, - "fjeld": 1.29e-08, - "flump": 1.29e-08, - "forker": 1.29e-08, - "froe": 1.29e-08, - "frogmouth": 1.29e-08, - "galoot": 1.29e-08, - "gamboge": 1.29e-08, - "gastrula": 1.29e-08, - "geometridae": 1.29e-08, - "germander": 1.29e-08, - "glyoxal": 1.29e-08, - "goateed": 1.29e-08, - "granadilla": 1.29e-08, - "grantha": 1.29e-08, - "grasser": 1.29e-08, - "grinderman": 1.29e-08, - "haggy": 1.29e-08, - "hammerstone": 1.29e-08, - "hebdomadal": 1.29e-08, - "hippeastrum": 1.29e-08, - "horticulturally": 1.29e-08, - "hypopharyngeal": 1.29e-08, - "identic": 1.29e-08, - "imprecatory": 1.29e-08, - "inartistic": 1.29e-08, - "incredibility": 1.29e-08, - "indianization": 1.29e-08, - "involuted": 1.29e-08, - "irides": 1.29e-08, - "ironweed": 1.29e-08, - "joch": 1.29e-08, - "judahite": 1.29e-08, - "juggins": 1.29e-08, - "jural": 1.29e-08, - "kehillah": 1.29e-08, - "kenotic": 1.29e-08, - "khaja": 1.29e-08, - "knotless": 1.29e-08, - "kwannon": 1.29e-08, - "lactoglobulin": 1.29e-08, - "leadless": 1.29e-08, - "lemel": 1.29e-08, - "lentigo": 1.29e-08, - "liturgist": 1.29e-08, - "locomotory": 1.29e-08, - "locule": 1.29e-08, - "loligo": 1.29e-08, - "longobardi": 1.29e-08, - "lychnis": 1.29e-08, - "magnific": 1.29e-08, - "malunion": 1.29e-08, - "marline": 1.29e-08, - "megakaryocyte": 1.29e-08, - "megaptera": 1.29e-08, - "melanotic": 1.29e-08, - "menadione": 1.29e-08, - "metasoma": 1.29e-08, - "metasomatic": 1.29e-08, - "microbiologic": 1.29e-08, - "minification": 1.29e-08, - "misura": 1.29e-08, - "mohar": 1.29e-08, - "moosey": 1.29e-08, - "morillon": 1.29e-08, - "musang": 1.29e-08, - "musci": 1.29e-08, - "mushiness": 1.29e-08, - "nerving": 1.29e-08, - "nightlong": 1.29e-08, - "nipmuc": 1.29e-08, - "nitella": 1.29e-08, - "nonattendance": 1.29e-08, - "noncom": 1.29e-08, - "nurser": 1.29e-08, - "nymphalidae": 1.29e-08, - "odontologist": 1.29e-08, - "orchidaceous": 1.29e-08, - "organolithium": 1.29e-08, - "orias": 1.29e-08, - "overwrap": 1.29e-08, - "owenite": 1.29e-08, - "pahi": 1.29e-08, - "palolo": 1.29e-08, - "paon": 1.29e-08, - "parado": 1.29e-08, - "parasitosis": 1.29e-08, - "parhelia": 1.29e-08, - "peevishness": 1.29e-08, - "pentimento": 1.29e-08, - "pertinacity": 1.29e-08, - "philippian": 1.29e-08, - "phlogopite": 1.29e-08, - "photographical": 1.29e-08, - "pliancy": 1.29e-08, - "polypore": 1.29e-08, - "polysemous": 1.29e-08, - "ponderable": 1.29e-08, - "postclassical": 1.29e-08, - "prefectly": 1.29e-08, - "prefigurative": 1.29e-08, - "prestation": 1.29e-08, - "presumedly": 1.29e-08, - "propodeum": 1.29e-08, - "proprium": 1.29e-08, - "pseudotuberculosis": 1.29e-08, - "psychosomatics": 1.29e-08, - "purposelessness": 1.29e-08, - "purpuric": 1.29e-08, - "quag": 1.29e-08, - "quoter": 1.29e-08, - "racon": 1.29e-08, - "rataplan": 1.29e-08, - "ravindranath": 1.29e-08, - "redleg": 1.29e-08, - "renewability": 1.29e-08, - "reprehend": 1.29e-08, - "resplendently": 1.29e-08, - "restitute": 1.29e-08, - "ritardando": 1.29e-08, - "ruffly": 1.29e-08, - "rushlight": 1.29e-08, - "saccule": 1.29e-08, - "samskara": 1.29e-08, - "sancy": 1.29e-08, - "sanforized": 1.29e-08, - "saprophyte": 1.29e-08, - "sawt": 1.29e-08, - "screenless": 1.29e-08, - "scrobble": 1.29e-08, - "scyphozoa": 1.29e-08, - "semirural": 1.29e-08, - "serendib": 1.29e-08, - "serrana": 1.29e-08, - "shirring": 1.29e-08, - "shivaree": 1.29e-08, - "sidy": 1.29e-08, - "siever": 1.29e-08, - "skey": 1.29e-08, - "skijoring": 1.29e-08, - "smashingly": 1.29e-08, - "snaffles": 1.29e-08, - "soaper": 1.29e-08, - "sourwood": 1.29e-08, - "spading": 1.29e-08, - "spatha": 1.29e-08, - "squantum": 1.29e-08, - "stickly": 1.29e-08, - "stumpage": 1.29e-08, - "stupe": 1.29e-08, - "subglottic": 1.29e-08, - "syncopal": 1.29e-08, - "synthol": 1.29e-08, - "tankman": 1.29e-08, - "tantivy": 1.29e-08, - "tautog": 1.29e-08, - "tegmina": 1.29e-08, - "teiresias": 1.29e-08, - "tellurite": 1.29e-08, - "teston": 1.29e-08, - "tetrahydrate": 1.29e-08, - "thight": 1.29e-08, - "tinct": 1.29e-08, - "totalizator": 1.29e-08, - "tottle": 1.29e-08, - "triatomic": 1.29e-08, - "trigonella": 1.29e-08, - "triskele": 1.29e-08, - "tubocurarine": 1.29e-08, - "uncurled": 1.29e-08, - "underconsumption": 1.29e-08, - "undermountain": 1.29e-08, - "unfathomed": 1.29e-08, - "unfelt": 1.29e-08, - "ungrazed": 1.29e-08, - "unimpeachably": 1.29e-08, - "uninflated": 1.29e-08, - "unitarily": 1.29e-08, - "unjam": 1.29e-08, - "unkilled": 1.29e-08, - "unman": 1.29e-08, - "unpeopled": 1.29e-08, - "unselect": 1.29e-08, - "unstrained": 1.29e-08, - "unthink": 1.29e-08, - "uplifter": 1.29e-08, - "vassos": 1.29e-08, - "vellala": 1.29e-08, - "villanovan": 1.29e-08, - "vulcanize": 1.29e-08, - "vulvovaginal": 1.29e-08, - "wabble": 1.29e-08, - "warran": 1.29e-08, - "wiggen": 1.29e-08, - "wigmaker": 1.29e-08, - "wiliness": 1.29e-08, - "woodiness": 1.29e-08, - "wordle": 1.29e-08, - "worklessness": 1.29e-08, - "wovoka": 1.29e-08, - "xanthophyll": 1.29e-08, - "zygomaticus": 1.29e-08, - "absinthium": 1.26e-08, - "acerbity": 1.26e-08, - "agami": 1.26e-08, - "aggravatingly": 1.26e-08, - "airsick": 1.26e-08, - "akebia": 1.26e-08, - "alcyon": 1.26e-08, - "alongshore": 1.26e-08, - "altazimuth": 1.26e-08, - "alternance": 1.26e-08, - "ambitiousness": 1.26e-08, - "analeptic": 1.26e-08, - "anatomize": 1.26e-08, - "anginal": 1.26e-08, - "appraisement": 1.26e-08, - "areole": 1.26e-08, - "argal": 1.26e-08, - "arisaema": 1.26e-08, - "ascribable": 1.26e-08, - "assumable": 1.26e-08, - "astrally": 1.26e-08, - "ateles": 1.26e-08, - "atomy": 1.26e-08, - "attributively": 1.26e-08, - "autoradiographic": 1.26e-08, - "autoxidation": 1.26e-08, - "babassu": 1.26e-08, - "baldpate": 1.26e-08, - "ballow": 1.26e-08, - "balsamea": 1.26e-08, - "bandle": 1.26e-08, - "barabara": 1.26e-08, - "basidiomycete": 1.26e-08, - "basilic": 1.26e-08, - "beekmantown": 1.26e-08, - "belove": 1.26e-08, - "benzal": 1.26e-08, - "berkelium": 1.26e-08, - "berline": 1.26e-08, - "biharmonic": 1.26e-08, - "bombax": 1.26e-08, - "bondwoman": 1.26e-08, - "boundlessness": 1.26e-08, - "bricken": 1.26e-08, - "calamitously": 1.26e-08, - "calvarium": 1.26e-08, - "calx": 1.26e-08, - "canaliculi": 1.26e-08, - "cardsharp": 1.26e-08, - "cartogram": 1.26e-08, - "casteless": 1.26e-08, - "cavae": 1.26e-08, - "chaldee": 1.26e-08, - "charleen": 1.26e-08, - "chasteness": 1.26e-08, - "chillness": 1.26e-08, - "chinaberry": 1.26e-08, - "chloroformate": 1.26e-08, - "choca": 1.26e-08, - "chude": 1.26e-08, - "cicala": 1.26e-08, - "clogger": 1.26e-08, - "colorfulness": 1.26e-08, - "concordantly": 1.26e-08, - "conservativeness": 1.26e-08, - "conspiration": 1.26e-08, - "contritely": 1.26e-08, - "convectional": 1.26e-08, - "cookshop": 1.26e-08, - "coolish": 1.26e-08, - "coprolalia": 1.26e-08, - "cosmetician": 1.26e-08, - "covin": 1.26e-08, - "cowpuncher": 1.26e-08, - "crossette": 1.26e-08, - "crystallographically": 1.26e-08, - "cubeb": 1.26e-08, - "cystoid": 1.26e-08, - "dandyish": 1.26e-08, - "decimalization": 1.26e-08, - "delegable": 1.26e-08, - "determent": 1.26e-08, - "digitoxin": 1.26e-08, - "diker": 1.26e-08, - "dilettantism": 1.26e-08, - "diphtheritic": 1.26e-08, - "disharmonic": 1.26e-08, - "dispersity": 1.26e-08, - "dissembler": 1.26e-08, - "docetic": 1.26e-08, - "domineer": 1.26e-08, - "earthshine": 1.26e-08, - "earthshock": 1.26e-08, - "egyptological": 1.26e-08, - "elaeagnus": 1.26e-08, - "eluvial": 1.26e-08, - "encephalitic": 1.26e-08, - "endue": 1.26e-08, - "errantly": 1.26e-08, - "escapable": 1.26e-08, - "ethnobotanist": 1.26e-08, - "etiolation": 1.26e-08, - "euboean": 1.26e-08, - "eumolpus": 1.26e-08, - "euskara": 1.26e-08, - "extenuation": 1.26e-08, - "fencible": 1.26e-08, - "flavorsome": 1.26e-08, - "fluorogenic": 1.26e-08, - "foregate": 1.26e-08, - "foretop": 1.26e-08, - "fuzzily": 1.26e-08, - "gabbroic": 1.26e-08, - "gaullism": 1.26e-08, - "ghetti": 1.26e-08, - "gibberella": 1.26e-08, - "glary": 1.26e-08, - "goldwork": 1.26e-08, - "greenlander": 1.26e-08, - "grewia": 1.26e-08, - "grumbler": 1.26e-08, - "gurk": 1.26e-08, - "hairsplitting": 1.26e-08, - "hardihood": 1.26e-08, - "heliographic": 1.26e-08, - "hemodilution": 1.26e-08, - "henbit": 1.26e-08, - "hesiodic": 1.26e-08, - "hipple": 1.26e-08, - "holystone": 1.26e-08, - "homilist": 1.26e-08, - "homologate": 1.26e-08, - "hoodman": 1.26e-08, - "hosel": 1.26e-08, - "hyoscyamus": 1.26e-08, - "hyperelliptic": 1.26e-08, - "idiographic": 1.26e-08, - "immanently": 1.26e-08, - "imperturbably": 1.26e-08, - "incompressibility": 1.26e-08, - "indelicacy": 1.26e-08, - "indrawn": 1.26e-08, - "infeasibility": 1.26e-08, - "intercaste": 1.26e-08, - "interparietal": 1.26e-08, - "jackscrew": 1.26e-08, - "jerseyan": 1.26e-08, - "journalese": 1.26e-08, - "juglone": 1.26e-08, - "justificatory": 1.26e-08, - "kamerad": 1.26e-08, - "kjeldahl": 1.26e-08, - "kochia": 1.26e-08, - "lacca": 1.26e-08, - "laicization": 1.26e-08, - "lamber": 1.26e-08, - "lammergeier": 1.26e-08, - "landscapist": 1.26e-08, - "lawlessly": 1.26e-08, - "lecanora": 1.26e-08, - "legger": 1.26e-08, - "levulinic": 1.26e-08, - "ligulate": 1.26e-08, - "lumbricus": 1.26e-08, - "lycosidae": 1.26e-08, - "macronucleus": 1.26e-08, - "magistrature": 1.26e-08, - "malapert": 1.26e-08, - "malarious": 1.26e-08, - "marcionite": 1.26e-08, - "meliorate": 1.26e-08, - "merrythought": 1.26e-08, - "methodologist": 1.26e-08, - "miasmatic": 1.26e-08, - "microfossil": 1.26e-08, - "milliamp": 1.26e-08, - "mimer": 1.26e-08, - "mingy": 1.26e-08, - "monomolecular": 1.26e-08, - "muhammadi": 1.26e-08, - "mussulman": 1.26e-08, - "mycosphaerella": 1.26e-08, - "natation": 1.26e-08, - "neist": 1.26e-08, - "nervure": 1.26e-08, - "nonreciprocal": 1.26e-08, - "ocellated": 1.26e-08, - "oenologist": 1.26e-08, - "oestridae": 1.26e-08, - "oidium": 1.26e-08, - "oiticica": 1.26e-08, - "oliguria": 1.26e-08, - "onomasticon": 1.26e-08, - "ontogenetically": 1.26e-08, - "oribi": 1.26e-08, - "orthopraxy": 1.26e-08, - "ostrogoth": 1.26e-08, - "ottomanism": 1.26e-08, - "overpraise": 1.26e-08, - "palmitoleic": 1.26e-08, - "pantocrator": 1.26e-08, - "paramagnetism": 1.26e-08, - "paraparesis": 1.26e-08, - "parasitological": 1.26e-08, - "parenchymatous": 1.26e-08, - "parrotlet": 1.26e-08, - "particularistic": 1.26e-08, - "particularization": 1.26e-08, - "pasan": 1.26e-08, - "pediculosis": 1.26e-08, - "pentafluoride": 1.26e-08, - "pentelic": 1.26e-08, - "performable": 1.26e-08, - "periodogram": 1.26e-08, - "permeance": 1.26e-08, - "peroxy": 1.26e-08, - "phagocytose": 1.26e-08, - "phorid": 1.26e-08, - "picknick": 1.26e-08, - "pindaric": 1.26e-08, - "placeless": 1.26e-08, - "placode": 1.26e-08, - "plethysmograph": 1.26e-08, - "polygraphy": 1.26e-08, - "pompier": 1.26e-08, - "pompousness": 1.26e-08, - "popal": 1.26e-08, - "portugais": 1.26e-08, - "poter": 1.26e-08, - "praetorship": 1.26e-08, - "prehuman": 1.26e-08, - "prettify": 1.26e-08, - "propargyl": 1.26e-08, - "psychon": 1.26e-08, - "querent": 1.26e-08, - "raffinate": 1.26e-08, - "razee": 1.26e-08, - "reanalyze": 1.26e-08, - "recontact": 1.26e-08, - "recopy": 1.26e-08, - "redactional": 1.26e-08, - "redisplay": 1.26e-08, - "reflectometer": 1.26e-08, - "reflexologist": 1.26e-08, - "retter": 1.26e-08, - "revery": 1.26e-08, - "rikk": 1.26e-08, - "rindy": 1.26e-08, - "ripuarian": 1.26e-08, - "ropewalk": 1.26e-08, - "rumal": 1.26e-08, - "runed": 1.26e-08, - "safehold": 1.26e-08, - "saliently": 1.26e-08, - "saurel": 1.26e-08, - "scaff": 1.26e-08, - "scilicet": 1.26e-08, - "scrappiness": 1.26e-08, - "seak": 1.26e-08, - "secretum": 1.26e-08, - "sennet": 1.26e-08, - "septuagesima": 1.26e-08, - "sericite": 1.26e-08, - "sextillion": 1.26e-08, - "shalako": 1.26e-08, - "shieling": 1.26e-08, - "shinner": 1.26e-08, - "shoat": 1.26e-08, - "shoddiness": 1.26e-08, - "shoreless": 1.26e-08, - "shrilling": 1.26e-08, - "sibby": 1.26e-08, - "sillon": 1.26e-08, - "silures": 1.26e-08, - "slenderly": 1.26e-08, - "sloven": 1.26e-08, - "snakeweed": 1.26e-08, - "snew": 1.26e-08, - "solenoidal": 1.26e-08, - "sororal": 1.26e-08, - "spectroscopist": 1.26e-08, - "splendorous": 1.26e-08, - "sponginess": 1.26e-08, - "sprent": 1.26e-08, - "squark": 1.26e-08, - "stealthiness": 1.26e-08, - "subcentral": 1.26e-08, - "substract": 1.26e-08, - "subverse": 1.26e-08, - "superconscious": 1.26e-08, - "supernaturalist": 1.26e-08, - "supersweet": 1.26e-08, - "sweller": 1.26e-08, - "tacca": 1.26e-08, - "taloned": 1.26e-08, - "tamaroa": 1.26e-08, - "tanyard": 1.26e-08, - "telegony": 1.26e-08, - "tenesmus": 1.26e-08, - "terne": 1.26e-08, - "theocentric": 1.26e-08, - "theurgic": 1.26e-08, - "tinamou": 1.26e-08, - "titoism": 1.26e-08, - "tivy": 1.26e-08, - "tongueless": 1.26e-08, - "transmural": 1.26e-08, - "transmuter": 1.26e-08, - "trinitrate": 1.26e-08, - "triterpene": 1.26e-08, - "turgidity": 1.26e-08, - "ulcerous": 1.26e-08, - "ultimum": 1.26e-08, - "unaffectionate": 1.26e-08, - "uncapitalized": 1.26e-08, - "unclutter": 1.26e-08, - "uncontrived": 1.26e-08, - "uncrated": 1.26e-08, - "unfilmed": 1.26e-08, - "unindexed": 1.26e-08, - "unintellectual": 1.26e-08, - "unmalted": 1.26e-08, - "unmannered": 1.26e-08, - "unmeritorious": 1.26e-08, - "unprofitably": 1.26e-08, - "unruptured": 1.26e-08, - "unsplit": 1.26e-08, - "unwatered": 1.26e-08, - "unweaving": 1.26e-08, - "upness": 1.26e-08, - "uppish": 1.26e-08, - "venesection": 1.26e-08, - "vernant": 1.26e-08, - "verrucose": 1.26e-08, - "vexillum": 1.26e-08, - "victorianism": 1.26e-08, - "vidua": 1.26e-08, - "vocality": 1.26e-08, - "wappinger": 1.26e-08, - "washbowl": 1.26e-08, - "watchkeeper": 1.26e-08, - "wobbegong": 1.26e-08, - "wolfberry": 1.26e-08, - "woodenly": 1.26e-08, - "wordsworthian": 1.26e-08, - "xerosis": 1.26e-08, - "acanthaceae": 1.23e-08, - "acerra": 1.23e-08, - "actinia": 1.23e-08, - "aetolian": 1.23e-08, - "aggrieve": 1.23e-08, - "aminophenol": 1.23e-08, - "anacardium": 1.23e-08, - "anile": 1.23e-08, - "anosmic": 1.23e-08, - "anticorrosion": 1.23e-08, - "aogiri": 1.23e-08, - "apperceptive": 1.23e-08, - "aquacade": 1.23e-08, - "araucanian": 1.23e-08, - "ashamedly": 1.23e-08, - "auditive": 1.23e-08, - "aureate": 1.23e-08, - "austroasiatic": 1.23e-08, - "authigenic": 1.23e-08, - "autogamy": 1.23e-08, - "ayllu": 1.23e-08, - "azotemia": 1.23e-08, - "backboned": 1.23e-08, - "banjoist": 1.23e-08, - "bawdiness": 1.23e-08, - "bewhiskered": 1.23e-08, - "bigamously": 1.23e-08, - "binominal": 1.23e-08, - "binturong": 1.23e-08, - "bitless": 1.23e-08, - "bivector": 1.23e-08, - "blastema": 1.23e-08, - "blastopore": 1.23e-08, - "blesser": 1.23e-08, - "bluethroat": 1.23e-08, - "boldo": 1.23e-08, - "bookroom": 1.23e-08, - "botrychium": 1.23e-08, - "bouw": 1.23e-08, - "boxty": 1.23e-08, - "brunella": 1.23e-08, - "bryum": 1.23e-08, - "caelian": 1.23e-08, - "calypsonian": 1.23e-08, - "cassiope": 1.23e-08, - "catamenial": 1.23e-08, - "cedron": 1.23e-08, - "ceratophyllum": 1.23e-08, - "cerebella": 1.23e-08, - "chaffy": 1.23e-08, - "chalcocite": 1.23e-08, - "changeful": 1.23e-08, - "chasselas": 1.23e-08, - "cherishable": 1.23e-08, - "chloromycetin": 1.23e-08, - "cholelithiasis": 1.23e-08, - "chondroid": 1.23e-08, - "chymosin": 1.23e-08, - "citied": 1.23e-08, - "clamorously": 1.23e-08, - "cogon": 1.23e-08, - "colorfast": 1.23e-08, - "comitative": 1.23e-08, - "commendator": 1.23e-08, - "consubstantiation": 1.23e-08, - "convincer": 1.23e-08, - "coomb": 1.23e-08, - "coopering": 1.23e-08, - "copus": 1.23e-08, - "corneous": 1.23e-08, - "costate": 1.23e-08, - "cotinga": 1.23e-08, - "coypu": 1.23e-08, - "crepidula": 1.23e-08, - "crossbowman": 1.23e-08, - "danthonia": 1.23e-08, - "defenselessness": 1.23e-08, - "degrader": 1.23e-08, - "dekko": 1.23e-08, - "dendroica": 1.23e-08, - "denominationally": 1.23e-08, - "deodorization": 1.23e-08, - "devotedness": 1.23e-08, - "didactical": 1.23e-08, - "disquietude": 1.23e-08, - "distributee": 1.23e-08, - "doeskin": 1.23e-08, - "donnish": 1.23e-08, - "doum": 1.23e-08, - "dragonhead": 1.23e-08, - "drainable": 1.23e-08, - "eelpout": 1.23e-08, - "eichhornia": 1.23e-08, - "encash": 1.23e-08, - "enterpriser": 1.23e-08, - "entremets": 1.23e-08, - "ermines": 1.23e-08, - "estre": 1.23e-08, - "ethnologically": 1.23e-08, - "ethoxide": 1.23e-08, - "ethynyl": 1.23e-08, - "eveque": 1.23e-08, - "exedra": 1.23e-08, - "expounder": 1.23e-08, - "exteriority": 1.23e-08, - "extractant": 1.23e-08, - "extranuclear": 1.23e-08, - "falasha": 1.23e-08, - "farcy": 1.23e-08, - "fascio": 1.23e-08, - "fasciole": 1.23e-08, - "feijoa": 1.23e-08, - "ferromanganese": 1.23e-08, - "fishlike": 1.23e-08, - "fractionator": 1.23e-08, - "franticly": 1.23e-08, - "fructify": 1.23e-08, - "fruitlessness": 1.23e-08, - "fruitwood": 1.23e-08, - "giantism": 1.23e-08, - "giggler": 1.23e-08, - "globigerina": 1.23e-08, - "glochidia": 1.23e-08, - "guilelessness": 1.23e-08, - "halimeda": 1.23e-08, - "hallan": 1.23e-08, - "hardily": 1.23e-08, - "harmine": 1.23e-08, - "haruspex": 1.23e-08, - "headframe": 1.23e-08, - "hemianopsia": 1.23e-08, - "hexachord": 1.23e-08, - "hexapla": 1.23e-08, - "hilariousness": 1.23e-08, - "hipe": 1.23e-08, - "hippodamia": 1.23e-08, - "holothuria": 1.23e-08, - "homodyne": 1.23e-08, - "housewifery": 1.23e-08, - "hunkpapa": 1.23e-08, - "hydrometeorology": 1.23e-08, - "hypothecate": 1.23e-08, - "immoralist": 1.23e-08, - "imperiousness": 1.23e-08, - "impy": 1.23e-08, - "incurrence": 1.23e-08, - "indelicately": 1.23e-08, - "inexactitude": 1.23e-08, - "infratemporal": 1.23e-08, - "innovational": 1.23e-08, - "innumerous": 1.23e-08, - "intellectualist": 1.23e-08, - "interstice": 1.23e-08, - "joceline": 1.23e-08, - "jumada": 1.23e-08, - "jurisdictionally": 1.23e-08, - "kaffraria": 1.23e-08, - "kalong": 1.23e-08, - "kipchak": 1.23e-08, - "kolis": 1.23e-08, - "konia": 1.23e-08, - "kunbi": 1.23e-08, - "labiovelar": 1.23e-08, - "lacis": 1.23e-08, - "largen": 1.23e-08, - "lavaliere": 1.23e-08, - "lawing": 1.23e-08, - "lechwe": 1.23e-08, - "lingayat": 1.23e-08, - "lippen": 1.23e-08, - "logicism": 1.23e-08, - "lollardy": 1.23e-08, - "lovelessness": 1.23e-08, - "lupercal": 1.23e-08, - "lymphangitis": 1.23e-08, - "madurese": 1.23e-08, - "magnetomotive": 1.23e-08, - "manhattanite": 1.23e-08, - "manipulatable": 1.23e-08, - "marang": 1.23e-08, - "marcionism": 1.23e-08, - "marsupium": 1.23e-08, - "martagon": 1.23e-08, - "melburnian": 1.23e-08, - "melder": 1.23e-08, - "menzie": 1.23e-08, - "milty": 1.23e-08, - "mimus": 1.23e-08, - "mobocracy": 1.23e-08, - "monophysitism": 1.23e-08, - "moph": 1.23e-08, - "moquette": 1.23e-08, - "municipium": 1.23e-08, - "musar": 1.23e-08, - "mysid": 1.23e-08, - "naringin": 1.23e-08, - "neighbored": 1.23e-08, - "nitrosomonas": 1.23e-08, - "nonconsent": 1.23e-08, - "nonfinite": 1.23e-08, - "nooky": 1.23e-08, - "noteholder": 1.23e-08, - "occurrent": 1.23e-08, - "oceanographical": 1.23e-08, - "oecumenical": 1.23e-08, - "ogdoad": 1.23e-08, - "ophidia": 1.23e-08, - "orlop": 1.23e-08, - "osteodystrophy": 1.23e-08, - "outdate": 1.23e-08, - "outman": 1.23e-08, - "overexcitement": 1.23e-08, - "overmix": 1.23e-08, - "paeon": 1.23e-08, - "panaka": 1.23e-08, - "parataxis": 1.23e-08, - "patternmaking": 1.23e-08, - "penitentes": 1.23e-08, - "penitently": 1.23e-08, - "pentathlete": 1.23e-08, - "pentlandite": 1.23e-08, - "peripeteia": 1.23e-08, - "pestiferous": 1.23e-08, - "photospheric": 1.23e-08, - "physeter": 1.23e-08, - "piny": 1.23e-08, - "placoid": 1.23e-08, - "plakat": 1.23e-08, - "pleached": 1.23e-08, - "plugboard": 1.23e-08, - "podzol": 1.23e-08, - "polygonaceae": 1.23e-08, - "porringer": 1.23e-08, - "postpositional": 1.23e-08, - "poteen": 1.23e-08, - "precollege": 1.23e-08, - "prehaps": 1.23e-08, - "preputial": 1.23e-08, - "presbycusis": 1.23e-08, - "presumptious": 1.23e-08, - "prolepsis": 1.23e-08, - "puberulent": 1.23e-08, - "pulmonaria": 1.23e-08, - "pusillanimity": 1.23e-08, - "quantifiably": 1.23e-08, - "rechristen": 1.23e-08, - "reignition": 1.23e-08, - "religiose": 1.23e-08, - "remorsefully": 1.23e-08, - "renunciate": 1.23e-08, - "retranslate": 1.23e-08, - "ribband": 1.23e-08, - "richebourg": 1.23e-08, - "ridgepole": 1.23e-08, - "ruana": 1.23e-08, - "rusky": 1.23e-08, - "saprolite": 1.23e-08, - "sarus": 1.23e-08, - "sasin": 1.23e-08, - "savara": 1.23e-08, - "scarless": 1.23e-08, - "senecan": 1.23e-08, - "sepium": 1.23e-08, - "serialist": 1.23e-08, - "serpula": 1.23e-08, - "shabbath": 1.23e-08, - "sheely": 1.23e-08, - "sheepherding": 1.23e-08, - "shucker": 1.23e-08, - "siamang": 1.23e-08, - "snowscape": 1.23e-08, - "snuffers": 1.23e-08, - "souterrain": 1.23e-08, - "spenserian": 1.23e-08, - "spiderling": 1.23e-08, - "spinulosa": 1.23e-08, - "sprightliness": 1.23e-08, - "stalkless": 1.23e-08, - "stearin": 1.23e-08, - "stickpin": 1.23e-08, - "strikebreaker": 1.23e-08, - "sturnus": 1.23e-08, - "stylosanthes": 1.23e-08, - "subiculum": 1.23e-08, - "summerly": 1.23e-08, - "superfit": 1.23e-08, - "suppletive": 1.23e-08, - "surfboat": 1.23e-08, - "symbion": 1.23e-08, - "symposion": 1.23e-08, - "szlachta": 1.23e-08, - "tamias": 1.23e-08, - "tarpeian": 1.23e-08, - "tawdriness": 1.23e-08, - "tayrona": 1.23e-08, - "telephus": 1.23e-08, - "tenaciousness": 1.23e-08, - "thave": 1.23e-08, - "tigerish": 1.23e-08, - "tightener": 1.23e-08, - "tomentum": 1.23e-08, - "torchon": 1.23e-08, - "trigonia": 1.23e-08, - "tripinnate": 1.23e-08, - "tritheism": 1.23e-08, - "turbulently": 1.23e-08, - "turse": 1.23e-08, - "ultrabasic": 1.23e-08, - "unanimated": 1.23e-08, - "unbendable": 1.23e-08, - "unbias": 1.23e-08, - "uncased": 1.23e-08, - "unconfessed": 1.23e-08, - "underlaying": 1.23e-08, - "underprice": 1.23e-08, - "undiversified": 1.23e-08, - "undoubtable": 1.23e-08, - "uneatable": 1.23e-08, - "unemploy": 1.23e-08, - "unnoted": 1.23e-08, - "unprescribed": 1.23e-08, - "unriddle": 1.23e-08, - "unstirred": 1.23e-08, - "unusualness": 1.23e-08, - "vacuolation": 1.23e-08, - "vasal": 1.23e-08, - "verdet": 1.23e-08, - "vesicant": 1.23e-08, - "viscously": 1.23e-08, - "vorticist": 1.23e-08, - "vulpecula": 1.23e-08, - "waiwai": 1.23e-08, - "warbly": 1.23e-08, - "weedless": 1.23e-08, - "whimsicality": 1.23e-08, - "widthwise": 1.23e-08, - "workship": 1.23e-08, - "yock": 1.23e-08, - "abox": 1.2e-08, - "acock": 1.2e-08, - "actinidia": 1.2e-08, - "aerostatic": 1.2e-08, - "aesculapian": 1.2e-08, - "agal": 1.2e-08, - "agastache": 1.2e-08, - "agrestic": 1.2e-08, - "alaria": 1.2e-08, - "alidade": 1.2e-08, - "ammophila": 1.2e-08, - "amoraim": 1.2e-08, - "antilope": 1.2e-08, - "antiphony": 1.2e-08, - "apocynum": 1.2e-08, - "aquiver": 1.2e-08, - "arain": 1.2e-08, - "ascitic": 1.2e-08, - "aulos": 1.2e-08, - "automobility": 1.2e-08, - "axenic": 1.2e-08, - "azilian": 1.2e-08, - "azotobacter": 1.2e-08, - "baccara": 1.2e-08, - "barcoo": 1.2e-08, - "bargee": 1.2e-08, - "batterman": 1.2e-08, - "belanda": 1.2e-08, - "bergama": 1.2e-08, - "bewigged": 1.2e-08, - "biconical": 1.2e-08, - "bimbisara": 1.2e-08, - "boanerges": 1.2e-08, - "breth": 1.2e-08, - "bucktooth": 1.2e-08, - "callboy": 1.2e-08, - "cartomancy": 1.2e-08, - "caudad": 1.2e-08, - "cavaliero": 1.2e-08, - "ceratitis": 1.2e-08, - "chalta": 1.2e-08, - "chemehuevi": 1.2e-08, - "choes": 1.2e-08, - "chondromalacia": 1.2e-08, - "christadelphian": 1.2e-08, - "christianly": 1.2e-08, - "circulant": 1.2e-08, - "circumstanced": 1.2e-08, - "climatologically": 1.2e-08, - "clodhopper": 1.2e-08, - "cockling": 1.2e-08, - "colubrid": 1.2e-08, - "comptometer": 1.2e-08, - "concentrative": 1.2e-08, - "conter": 1.2e-08, - "convolvulaceae": 1.2e-08, - "cornified": 1.2e-08, - "crummock": 1.2e-08, - "cuerda": 1.2e-08, - "cuprum": 1.2e-08, - "cyclothymic": 1.2e-08, - "daftness": 1.2e-08, - "dagomba": 1.2e-08, - "defreeze": 1.2e-08, - "degu": 1.2e-08, - "deicer": 1.2e-08, - "delegacy": 1.2e-08, - "dentelle": 1.2e-08, - "desireless": 1.2e-08, - "desma": 1.2e-08, - "desultorily": 1.2e-08, - "deutzia": 1.2e-08, - "developmentalist": 1.2e-08, - "discloser": 1.2e-08, - "disjointedness": 1.2e-08, - "dispersibility": 1.2e-08, - "dogmatist": 1.2e-08, - "doubleton": 1.2e-08, - "dynatron": 1.2e-08, - "eastwardly": 1.2e-08, - "econometrician": 1.2e-08, - "efflorescent": 1.2e-08, - "elean": 1.2e-08, - "electroforming": 1.2e-08, - "emblematically": 1.2e-08, - "epiclesis": 1.2e-08, - "erodium": 1.2e-08, - "escritoire": 1.2e-08, - "essed": 1.2e-08, - "fagaceae": 1.2e-08, - "falconet": 1.2e-08, - "farandole": 1.2e-08, - "fauces": 1.2e-08, - "filmgoer": 1.2e-08, - "fleshiness": 1.2e-08, - "flimsily": 1.2e-08, - "floran": 1.2e-08, - "freewoman": 1.2e-08, - "fuchsian": 1.2e-08, - "fueler": 1.2e-08, - "ghoster": 1.2e-08, - "girasol": 1.2e-08, - "graybeard": 1.2e-08, - "haaf": 1.2e-08, - "hafter": 1.2e-08, - "hakenkreuz": 1.2e-08, - "hatchment": 1.2e-08, - "hatrack": 1.2e-08, - "headwork": 1.2e-08, - "henrician": 1.2e-08, - "hesione": 1.2e-08, - "hibernal": 1.2e-08, - "huari": 1.2e-08, - "huer": 1.2e-08, - "hydantoin": 1.2e-08, - "hypnopompic": 1.2e-08, - "hypostome": 1.2e-08, - "impeccability": 1.2e-08, - "imprisonable": 1.2e-08, - "inacceptable": 1.2e-08, - "inalienability": 1.2e-08, - "inalienably": 1.2e-08, - "intermediacy": 1.2e-08, - "intil": 1.2e-08, - "intravital": 1.2e-08, - "intromittent": 1.2e-08, - "iridaceae": 1.2e-08, - "isaurian": 1.2e-08, - "jalouse": 1.2e-08, - "jewelweed": 1.2e-08, - "jodel": 1.2e-08, - "jubilance": 1.2e-08, - "jumana": 1.2e-08, - "kachari": 1.2e-08, - "kidlet": 1.2e-08, - "koppa": 1.2e-08, - "lactiferous": 1.2e-08, - "lauan": 1.2e-08, - "legitim": 1.2e-08, - "leonese": 1.2e-08, - "lerp": 1.2e-08, - "ligger": 1.2e-08, - "littleneck": 1.2e-08, - "lonesomeness": 1.2e-08, - "loxodonta": 1.2e-08, - "lucuma": 1.2e-08, - "luscinia": 1.2e-08, - "maladaptation": 1.2e-08, - "marchantia": 1.2e-08, - "mazed": 1.2e-08, - "measle": 1.2e-08, - "metrosideros": 1.2e-08, - "microfauna": 1.2e-08, - "microgroove": 1.2e-08, - "milden": 1.2e-08, - "millrace": 1.2e-08, - "misconstruction": 1.2e-08, - "mittimus": 1.2e-08, - "mity": 1.2e-08, - "mooth": 1.2e-08, - "morainic": 1.2e-08, - "movieland": 1.2e-08, - "musicianly": 1.2e-08, - "mustelid": 1.2e-08, - "naebody": 1.2e-08, - "nandina": 1.2e-08, - "naturality": 1.2e-08, - "nebby": 1.2e-08, - "necessitous": 1.2e-08, - "nelken": 1.2e-08, - "nonplanar": 1.2e-08, - "northeaster": 1.2e-08, - "norumbega": 1.2e-08, - "nuphar": 1.2e-08, - "objectionably": 1.2e-08, - "oblateness": 1.2e-08, - "occidentalism": 1.2e-08, - "octan": 1.2e-08, - "octavarium": 1.2e-08, - "oestradiol": 1.2e-08, - "ootheca": 1.2e-08, - "oppian": 1.2e-08, - "orgastic": 1.2e-08, - "originative": 1.2e-08, - "orthoptic": 1.2e-08, - "oscillatoria": 1.2e-08, - "outrance": 1.2e-08, - "overmantel": 1.2e-08, - "pacolet": 1.2e-08, - "padmasana": 1.2e-08, - "palaeobotany": 1.2e-08, - "panada": 1.2e-08, - "panglossian": 1.2e-08, - "papiamento": 1.2e-08, - "papillate": 1.2e-08, - "parathyroidectomy": 1.2e-08, - "paretic": 1.2e-08, - "pasquin": 1.2e-08, - "passible": 1.2e-08, - "pedunculata": 1.2e-08, - "penghulu": 1.2e-08, - "pepperbox": 1.2e-08, - "pepperwood": 1.2e-08, - "pepsinogen": 1.2e-08, - "periscopic": 1.2e-08, - "perseverant": 1.2e-08, - "personalistic": 1.2e-08, - "phenolate": 1.2e-08, - "phiale": 1.2e-08, - "phocian": 1.2e-08, - "pillet": 1.2e-08, - "planch": 1.2e-08, - "planetarian": 1.2e-08, - "planimetric": 1.2e-08, - "plumet": 1.2e-08, - "poignance": 1.2e-08, - "poisonously": 1.2e-08, - "polacca": 1.2e-08, - "polygenetic": 1.2e-08, - "pongee": 1.2e-08, - "porphyrogenitus": 1.2e-08, - "pory": 1.2e-08, - "postcentral": 1.2e-08, - "posthole": 1.2e-08, - "powerfulness": 1.2e-08, - "premorbid": 1.2e-08, - "priscian": 1.2e-08, - "progovernment": 1.2e-08, - "propone": 1.2e-08, - "prototypal": 1.2e-08, - "psychoneurotic": 1.2e-08, - "pyroxenite": 1.2e-08, - "quean": 1.2e-08, - "quemado": 1.2e-08, - "quila": 1.2e-08, - "quillwork": 1.2e-08, - "raillery": 1.2e-08, - "ranchman": 1.2e-08, - "reaal": 1.2e-08, - "refoundation": 1.2e-08, - "remigration": 1.2e-08, - "remittent": 1.2e-08, - "representationalism": 1.2e-08, - "reputability": 1.2e-08, - "resthouse": 1.2e-08, - "ricinoleic": 1.2e-08, - "rigorousness": 1.2e-08, - "sabellian": 1.2e-08, - "saging": 1.2e-08, - "sahadeva": 1.2e-08, - "saltatory": 1.2e-08, - "saltern": 1.2e-08, - "saponi": 1.2e-08, - "schistocerca": 1.2e-08, - "scholion": 1.2e-08, - "schuhe": 1.2e-08, - "scintillate": 1.2e-08, - "scrapy": 1.2e-08, - "secretagogue": 1.2e-08, - "sectary": 1.2e-08, - "semang": 1.2e-08, - "semiahmoo": 1.2e-08, - "separata": 1.2e-08, - "serian": 1.2e-08, - "serigraphy": 1.2e-08, - "sharded": 1.2e-08, - "shesha": 1.2e-08, - "shreddy": 1.2e-08, - "siphonophore": 1.2e-08, - "sixte": 1.2e-08, - "sjambok": 1.2e-08, - "skatole": 1.2e-08, - "smew": 1.2e-08, - "spalax": 1.2e-08, - "spoonflower": 1.2e-08, - "stero": 1.2e-08, - "stockcar": 1.2e-08, - "stressfully": 1.2e-08, - "strobili": 1.2e-08, - "strow": 1.2e-08, - "subgeneric": 1.2e-08, - "submaxillary": 1.2e-08, - "suboccipital": 1.2e-08, - "superelevation": 1.2e-08, - "supersecret": 1.2e-08, - "surcingle": 1.2e-08, - "swinge": 1.2e-08, - "syllabification": 1.2e-08, - "syrphid": 1.2e-08, - "tagboard": 1.2e-08, - "tambourin": 1.2e-08, - "tapeless": 1.2e-08, - "tazia": 1.2e-08, - "telestial": 1.2e-08, - "tenebrionidae": 1.2e-08, - "tetrao": 1.2e-08, - "theatron": 1.2e-08, - "thyroglossal": 1.2e-08, - "tipulidae": 1.2e-08, - "tonically": 1.2e-08, - "tortonian": 1.2e-08, - "towheaded": 1.2e-08, - "trainmaster": 1.2e-08, - "tromba": 1.2e-08, - "tunelessly": 1.2e-08, - "tzolkin": 1.2e-08, - "ucal": 1.2e-08, - "unavowed": 1.2e-08, - "uncrushed": 1.2e-08, - "undeceived": 1.2e-08, - "unemployability": 1.2e-08, - "unextended": 1.2e-08, - "unmilitary": 1.2e-08, - "unpatrolled": 1.2e-08, - "unreligious": 1.2e-08, - "unrendered": 1.2e-08, - "unrequired": 1.2e-08, - "unrushed": 1.2e-08, - "urgence": 1.2e-08, - "variator": 1.2e-08, - "vedda": 1.2e-08, - "vedika": 1.2e-08, - "verdurous": 1.2e-08, - "versifier": 1.2e-08, - "wakonda": 1.2e-08, - "wanapum": 1.2e-08, - "warl": 1.2e-08, - "whipcord": 1.2e-08, - "whiteware": 1.2e-08, - "whosever": 1.2e-08, - "woning": 1.2e-08, - "worldling": 1.2e-08, - "xenotime": 1.2e-08, - "zanzibari": 1.2e-08, - "zemi": 1.2e-08, - "abreaction": 1.17e-08, - "absolver": 1.17e-08, - "acarology": 1.17e-08, - "acidulous": 1.17e-08, - "actinobacillus": 1.17e-08, - "adumbrate": 1.17e-08, - "agential": 1.17e-08, - "agoge": 1.17e-08, - "alliterate": 1.17e-08, - "allomorph": 1.17e-08, - "alluvion": 1.17e-08, - "aloysia": 1.17e-08, - "aluminous": 1.17e-08, - "alveus": 1.17e-08, - "ambrotype": 1.17e-08, - "amniote": 1.17e-08, - "anglomania": 1.17e-08, - "anodonta": 1.17e-08, - "apolar": 1.17e-08, - "arabin": 1.17e-08, - "arow": 1.17e-08, - "articulacy": 1.17e-08, - "artiodactyl": 1.17e-08, - "ascon": 1.17e-08, - "assimilator": 1.17e-08, - "asteroidea": 1.17e-08, - "autarchic": 1.17e-08, - "automatical": 1.17e-08, - "autotelic": 1.17e-08, - "autotransfusion": 1.17e-08, - "aweary": 1.17e-08, - "azoic": 1.17e-08, - "backwardly": 1.17e-08, - "baktun": 1.17e-08, - "bankbook": 1.17e-08, - "barracouta": 1.17e-08, - "baseliner": 1.17e-08, - "basilian": 1.17e-08, - "bearfoot": 1.17e-08, - "benefactive": 1.17e-08, - "bivalved": 1.17e-08, - "blissfulness": 1.17e-08, - "boxhead": 1.17e-08, - "bracker": 1.17e-08, - "branchy": 1.17e-08, - "cacodemon": 1.17e-08, - "caffa": 1.17e-08, - "cahoot": 1.17e-08, - "calceolaria": 1.17e-08, - "callet": 1.17e-08, - "calophyllum": 1.17e-08, - "caoutchouc": 1.17e-08, - "carburator": 1.17e-08, - "caressingly": 1.17e-08, - "caricatural": 1.17e-08, - "caruncle": 1.17e-08, - "caryophyllaceae": 1.17e-08, - "catholicon": 1.17e-08, - "causse": 1.17e-08, - "celebrative": 1.17e-08, - "celestite": 1.17e-08, - "cestode": 1.17e-08, - "chainless": 1.17e-08, - "channelize": 1.17e-08, - "chemoreception": 1.17e-08, - "chemosynthesis": 1.17e-08, - "chromatophore": 1.17e-08, - "chronal": 1.17e-08, - "chrysolite": 1.17e-08, - "chuffy": 1.17e-08, - "cicatricial": 1.17e-08, - "citronellol": 1.17e-08, - "clandestinity": 1.17e-08, - "claytonia": 1.17e-08, - "cocculus": 1.17e-08, - "colza": 1.17e-08, - "commentarial": 1.17e-08, - "commiphora": 1.17e-08, - "communicability": 1.17e-08, - "compassionless": 1.17e-08, - "conducing": 1.17e-08, - "configural": 1.17e-08, - "confute": 1.17e-08, - "constipate": 1.17e-08, - "continentally": 1.17e-08, - "coth": 1.17e-08, - "counterbore": 1.17e-08, - "crankpin": 1.17e-08, - "crex": 1.17e-08, - "culet": 1.17e-08, - "cupellation": 1.17e-08, - "deadlight": 1.17e-08, - "decanal": 1.17e-08, - "decapitator": 1.17e-08, - "decortication": 1.17e-08, - "decumanus": 1.17e-08, - "deiphobus": 1.17e-08, - "delouse": 1.17e-08, - "dendroid": 1.17e-08, - "detinue": 1.17e-08, - "deuteride": 1.17e-08, - "dextrocardia": 1.17e-08, - "diffusor": 1.17e-08, - "diomedea": 1.17e-08, - "diphthongization": 1.17e-08, - "dissipator": 1.17e-08, - "distensible": 1.17e-08, - "distrait": 1.17e-08, - "disunite": 1.17e-08, - "doxastic": 1.17e-08, - "drably": 1.17e-08, - "dragoness": 1.17e-08, - "dunite": 1.17e-08, - "durio": 1.17e-08, - "durry": 1.17e-08, - "dyscrasia": 1.17e-08, - "earthfall": 1.17e-08, - "electorial": 1.17e-08, - "elusion": 1.17e-08, - "emphysematous": 1.17e-08, - "engraft": 1.17e-08, - "epistemologist": 1.17e-08, - "equanimous": 1.17e-08, - "equestrienne": 1.17e-08, - "erythrocytic": 1.17e-08, - "esoterism": 1.17e-08, - "etymon": 1.17e-08, - "eucalyptol": 1.17e-08, - "evitable": 1.17e-08, - "exhorter": 1.17e-08, - "exiguous": 1.17e-08, - "exitus": 1.17e-08, - "exsanguinate": 1.17e-08, - "falciform": 1.17e-08, - "fallaway": 1.17e-08, - "fantasied": 1.17e-08, - "fasciculate": 1.17e-08, - "fayal": 1.17e-08, - "fixedness": 1.17e-08, - "flet": 1.17e-08, - "floristically": 1.17e-08, - "fluorapatite": 1.17e-08, - "fortuity": 1.17e-08, - "fraze": 1.17e-08, - "frizzing": 1.17e-08, - "fucoxanthin": 1.17e-08, - "gaspereau": 1.17e-08, - "gerenuk": 1.17e-08, - "germanize": 1.17e-08, - "glycyrrhizin": 1.17e-08, - "gradate": 1.17e-08, - "guffy": 1.17e-08, - "habitue": 1.17e-08, - "haikai": 1.17e-08, - "hatikvah": 1.17e-08, - "hectoliter": 1.17e-08, - "helminthiasis": 1.17e-08, - "hepatologist": 1.17e-08, - "hereat": 1.17e-08, - "hillsman": 1.17e-08, - "housebreaker": 1.17e-08, - "hydroxamic": 1.17e-08, - "hypoblast": 1.17e-08, - "hypothec": 1.17e-08, - "ideograph": 1.17e-08, - "improvidence": 1.17e-08, - "inceptor": 1.17e-08, - "increaser": 1.17e-08, - "indan": 1.17e-08, - "indemnitor": 1.17e-08, - "indivisibly": 1.17e-08, - "inopportunely": 1.17e-08, - "inswinger": 1.17e-08, - "intentionalism": 1.17e-08, - "intercrural": 1.17e-08, - "irritative": 1.17e-08, - "isobutyrate": 1.17e-08, - "isochoric": 1.17e-08, - "isochrone": 1.17e-08, - "isurus": 1.17e-08, - "jocose": 1.17e-08, - "junt": 1.17e-08, - "juring": 1.17e-08, - "juryman": 1.17e-08, - "kahili": 1.17e-08, - "kaoliang": 1.17e-08, - "khoka": 1.17e-08, - "kinkle": 1.17e-08, - "lallan": 1.17e-08, - "lambdoid": 1.17e-08, - "landdrost": 1.17e-08, - "laurate": 1.17e-08, - "laurencia": 1.17e-08, - "lipotropic": 1.17e-08, - "litster": 1.17e-08, - "ludian": 1.17e-08, - "lungis": 1.17e-08, - "mandom": 1.17e-08, - "manscape": 1.17e-08, - "maravi": 1.17e-08, - "marish": 1.17e-08, - "maritally": 1.17e-08, - "mausolea": 1.17e-08, - "maying": 1.17e-08, - "mealer": 1.17e-08, - "mediumistic": 1.17e-08, - "memorialist": 1.17e-08, - "mesonephric": 1.17e-08, - "mesosoma": 1.17e-08, - "metameric": 1.17e-08, - "methoxychlor": 1.17e-08, - "micrognathia": 1.17e-08, - "moble": 1.17e-08, - "moldavite": 1.17e-08, - "molter": 1.17e-08, - "monocentric": 1.17e-08, - "mulloway": 1.17e-08, - "multiplicand": 1.17e-08, - "mycetoma": 1.17e-08, - "nervii": 1.17e-08, - "nettlesome": 1.17e-08, - "nonane": 1.17e-08, - "nonmarket": 1.17e-08, - "nymphaeum": 1.17e-08, - "odeum": 1.17e-08, - "oleron": 1.17e-08, - "onium": 1.17e-08, - "ophthalmopathy": 1.17e-08, - "oreas": 1.17e-08, - "orthicon": 1.17e-08, - "ostracon": 1.17e-08, - "overcritical": 1.17e-08, - "overexpansion": 1.17e-08, - "oxytocic": 1.17e-08, - "pactolus": 1.17e-08, - "paniscus": 1.17e-08, - "papyrology": 1.17e-08, - "parabolically": 1.17e-08, - "passout": 1.17e-08, - "pedological": 1.17e-08, - "pelecanus": 1.17e-08, - "penult": 1.17e-08, - "perceivably": 1.17e-08, - "pertinacious": 1.17e-08, - "photinia": 1.17e-08, - "photoengraving": 1.17e-08, - "phyllostachys": 1.17e-08, - "pictland": 1.17e-08, - "piking": 1.17e-08, - "pilferer": 1.17e-08, - "pindling": 1.17e-08, - "piperonyl": 1.17e-08, - "pitanga": 1.17e-08, - "plomb": 1.17e-08, - "plutella": 1.17e-08, - "pluteus": 1.17e-08, - "poddy": 1.17e-08, - "poleman": 1.17e-08, - "polystichum": 1.17e-08, - "pontifices": 1.17e-08, - "postmedian": 1.17e-08, - "precontact": 1.17e-08, - "predevelopment": 1.17e-08, - "prevertebral": 1.17e-08, - "primatial": 1.17e-08, - "processive": 1.17e-08, - "procne": 1.17e-08, - "proso": 1.17e-08, - "prosthodontist": 1.17e-08, - "protozoology": 1.17e-08, - "pseudobulb": 1.17e-08, - "publicness": 1.17e-08, - "punti": 1.17e-08, - "purblind": 1.17e-08, - "putorius": 1.17e-08, - "pyran": 1.17e-08, - "quiverful": 1.17e-08, - "radiometrically": 1.17e-08, - "rasse": 1.17e-08, - "reconviction": 1.17e-08, - "rectorate": 1.17e-08, - "reedman": 1.17e-08, - "refigure": 1.17e-08, - "regrant": 1.17e-08, - "repine": 1.17e-08, - "resinate": 1.17e-08, - "restaur": 1.17e-08, - "rightfulness": 1.17e-08, - "rigol": 1.17e-08, - "saeima": 1.17e-08, - "sangho": 1.17e-08, - "sapote": 1.17e-08, - "sargus": 1.17e-08, - "scagliola": 1.17e-08, - "scarifier": 1.17e-08, - "schmelz": 1.17e-08, - "schochet": 1.17e-08, - "scholarism": 1.17e-08, - "scorpene": 1.17e-08, - "scragged": 1.17e-08, - "setoff": 1.17e-08, - "sexlessness": 1.17e-08, - "shallon": 1.17e-08, - "shamanist": 1.17e-08, - "shamefacedly": 1.17e-08, - "shawny": 1.17e-08, - "sistrum": 1.17e-08, - "skeletonization": 1.17e-08, - "skeuomorphic": 1.17e-08, - "skinful": 1.17e-08, - "skittled": 1.17e-08, - "slabber": 1.17e-08, - "softish": 1.17e-08, - "solanaceous": 1.17e-08, - "sordello": 1.17e-08, - "sosia": 1.17e-08, - "speciously": 1.17e-08, - "spiceland": 1.17e-08, - "starshot": 1.17e-08, - "stereograph": 1.17e-08, - "sterigmata": 1.17e-08, - "sternpost": 1.17e-08, - "stoichiometrically": 1.17e-08, - "studiedly": 1.17e-08, - "subagent": 1.17e-08, - "sucuri": 1.17e-08, - "suld": 1.17e-08, - "superpose": 1.17e-08, - "supinator": 1.17e-08, - "tagish": 1.17e-08, - "tanbark": 1.17e-08, - "tanged": 1.17e-08, - "tarsius": 1.17e-08, - "tautologous": 1.17e-08, - "tebu": 1.17e-08, - "terpineol": 1.17e-08, - "tetragon": 1.17e-08, - "theer": 1.17e-08, - "throbber": 1.17e-08, - "tillering": 1.17e-08, - "torse": 1.17e-08, - "trihydroxy": 1.17e-08, - "truculently": 1.17e-08, - "tuberculated": 1.17e-08, - "tyrannizing": 1.17e-08, - "unconcernedly": 1.17e-08, - "uncontestable": 1.17e-08, - "uncustomary": 1.17e-08, - "undefendable": 1.17e-08, - "unfallen": 1.17e-08, - "unhardened": 1.17e-08, - "unholiness": 1.17e-08, - "uniaxially": 1.17e-08, - "unpiloted": 1.17e-08, - "unrecognizably": 1.17e-08, - "upswell": 1.17e-08, - "vacuolization": 1.17e-08, - "vage": 1.17e-08, - "varanger": 1.17e-08, - "variometer": 1.17e-08, - "vierling": 1.17e-08, - "volsci": 1.17e-08, - "volubility": 1.17e-08, - "vulgarization": 1.17e-08, - "warmouth": 1.17e-08, - "whitecoat": 1.17e-08, - "wieldy": 1.17e-08, - "wigwag": 1.17e-08, - "winglike": 1.17e-08, - "workbox": 1.17e-08, - "yawner": 1.17e-08, - "yellowthroat": 1.17e-08, - "yesso": 1.17e-08, - "yoruban": 1.17e-08, - "zanthoxylum": 1.17e-08, - "abeyant": 1.15e-08, - "acclimatation": 1.15e-08, - "acrux": 1.15e-08, - "agkistrodon": 1.15e-08, - "alkahest": 1.15e-08, - "anatoxin": 1.15e-08, - "anencephalic": 1.15e-08, - "anilao": 1.15e-08, - "annexationist": 1.15e-08, - "anormal": 1.15e-08, - "anthonomus": 1.15e-08, - "anthranilic": 1.15e-08, - "archness": 1.15e-08, - "arctium": 1.15e-08, - "aroras": 1.15e-08, - "ascetically": 1.15e-08, - "ascidia": 1.15e-08, - "assumingly": 1.15e-08, - "astatic": 1.15e-08, - "atony": 1.15e-08, - "attorn": 1.15e-08, - "aviculture": 1.15e-08, - "balneotherapy": 1.15e-08, - "barograph": 1.15e-08, - "bastioned": 1.15e-08, - "bearishness": 1.15e-08, - "benzol": 1.15e-08, - "biaxially": 1.15e-08, - "biocatalyst": 1.15e-08, - "bisti": 1.15e-08, - "blackacre": 1.15e-08, - "bregma": 1.15e-08, - "briareus": 1.15e-08, - "bridgeable": 1.15e-08, - "brigandine": 1.15e-08, - "bulak": 1.15e-08, - "caecal": 1.15e-08, - "calcine": 1.15e-08, - "cannabinol": 1.15e-08, - "carbodiimide": 1.15e-08, - "carcel": 1.15e-08, - "cardiograph": 1.15e-08, - "catabolite": 1.15e-08, - "catchfly": 1.15e-08, - "caterwaul": 1.15e-08, - "catheterize": 1.15e-08, - "cembalo": 1.15e-08, - "centesimal": 1.15e-08, - "ceratopsian": 1.15e-08, - "champain": 1.15e-08, - "chort": 1.15e-08, - "chrestomathy": 1.15e-08, - "churchly": 1.15e-08, - "cicadellidae": 1.15e-08, - "cipo": 1.15e-08, - "clubmate": 1.15e-08, - "coastside": 1.15e-08, - "cogging": 1.15e-08, - "collywobbles": 1.15e-08, - "conniver": 1.15e-08, - "contect": 1.15e-08, - "contrapuntally": 1.15e-08, - "coprophilia": 1.15e-08, - "corah": 1.15e-08, - "cosecant": 1.15e-08, - "cosmologically": 1.15e-08, - "countercharge": 1.15e-08, - "cousinly": 1.15e-08, - "cowskin": 1.15e-08, - "criminogenic": 1.15e-08, - "crocketed": 1.15e-08, - "curdy": 1.15e-08, - "cursorial": 1.15e-08, - "cushite": 1.15e-08, - "cuttlebone": 1.15e-08, - "daleman": 1.15e-08, - "damie": 1.15e-08, - "dardan": 1.15e-08, - "deemster": 1.15e-08, - "dehisce": 1.15e-08, - "deino": 1.15e-08, - "departmentalization": 1.15e-08, - "dermatophyte": 1.15e-08, - "dimply": 1.15e-08, - "dingly": 1.15e-08, - "disadvantageously": 1.15e-08, - "distich": 1.15e-08, - "downcomer": 1.15e-08, - "dvaita": 1.15e-08, - "ectoparasitic": 1.15e-08, - "egotistically": 1.15e-08, - "electromedical": 1.15e-08, - "elemi": 1.15e-08, - "entasis": 1.15e-08, - "ephraimite": 1.15e-08, - "epicardium": 1.15e-08, - "equalitarian": 1.15e-08, - "esoterics": 1.15e-08, - "eternalism": 1.15e-08, - "ethylamine": 1.15e-08, - "evacuator": 1.15e-08, - "exeat": 1.15e-08, - "externalist": 1.15e-08, - "extracapsular": 1.15e-08, - "fabes": 1.15e-08, - "famulus": 1.15e-08, - "feculent": 1.15e-08, - "feoffee": 1.15e-08, - "finity": 1.15e-08, - "flabbergast": 1.15e-08, - "flowerless": 1.15e-08, - "foodless": 1.15e-08, - "franker": 1.15e-08, - "fretter": 1.15e-08, - "fringy": 1.15e-08, - "friulian": 1.15e-08, - "fructification": 1.15e-08, - "fullish": 1.15e-08, - "fungistatic": 1.15e-08, - "fusionist": 1.15e-08, - "gallicanism": 1.15e-08, - "gallinaceous": 1.15e-08, - "gasless": 1.15e-08, - "goldsmithing": 1.15e-08, - "gonadotropic": 1.15e-08, - "gosain": 1.15e-08, - "grandam": 1.15e-08, - "guayule": 1.15e-08, - "gunstone": 1.15e-08, - "gyrator": 1.15e-08, - "hazardously": 1.15e-08, - "heptad": 1.15e-08, - "hieros": 1.15e-08, - "hiper": 1.15e-08, - "hokan": 1.15e-08, - "homeworker": 1.15e-08, - "hydrolyzable": 1.15e-08, - "hydrometallurgy": 1.15e-08, - "hylobates": 1.15e-08, - "hymeneal": 1.15e-08, - "hymenolepis": 1.15e-08, - "illegibly": 1.15e-08, - "implacability": 1.15e-08, - "implicative": 1.15e-08, - "inaptly": 1.15e-08, - "inestimably": 1.15e-08, - "inexistence": 1.15e-08, - "inquisitional": 1.15e-08, - "inspirationally": 1.15e-08, - "intuitional": 1.15e-08, - "irresistibility": 1.15e-08, - "isostatically": 1.15e-08, - "jollification": 1.15e-08, - "jugate": 1.15e-08, - "jumbuck": 1.15e-08, - "kakistocracy": 1.15e-08, - "katharsis": 1.15e-08, - "kelter": 1.15e-08, - "kermis": 1.15e-08, - "kinbote": 1.15e-08, - "kiver": 1.15e-08, - "kovil": 1.15e-08, - "larve": 1.15e-08, - "leban": 1.15e-08, - "lenticularis": 1.15e-08, - "lippia": 1.15e-08, - "litigiousness": 1.15e-08, - "loquacity": 1.15e-08, - "lovability": 1.15e-08, - "luigino": 1.15e-08, - "lycaenidae": 1.15e-08, - "maline": 1.15e-08, - "mangonel": 1.15e-08, - "markab": 1.15e-08, - "marrot": 1.15e-08, - "mesothorax": 1.15e-08, - "metacarpus": 1.15e-08, - "metaplastic": 1.15e-08, - "methoxyl": 1.15e-08, - "microbicidal": 1.15e-08, - "microbiologically": 1.15e-08, - "microlithic": 1.15e-08, - "migmatite": 1.15e-08, - "mildewy": 1.15e-08, - "minatory": 1.15e-08, - "miridae": 1.15e-08, - "misgovernance": 1.15e-08, - "molinism": 1.15e-08, - "molossus": 1.15e-08, - "monocarpic": 1.15e-08, - "moosewood": 1.15e-08, - "munificently": 1.15e-08, - "mushroomy": 1.15e-08, - "myopathic": 1.15e-08, - "myrmica": 1.15e-08, - "myrosinase": 1.15e-08, - "nameable": 1.15e-08, - "nasalis": 1.15e-08, - "nautic": 1.15e-08, - "nautiloid": 1.15e-08, - "needlelike": 1.15e-08, - "needlewoman": 1.15e-08, - "nescience": 1.15e-08, - "nodulose": 1.15e-08, - "nonary": 1.15e-08, - "nonfeasance": 1.15e-08, - "nonmaterial": 1.15e-08, - "nonparticipation": 1.15e-08, - "norna": 1.15e-08, - "obsoletely": 1.15e-08, - "oenanthe": 1.15e-08, - "olenellus": 1.15e-08, - "ongaro": 1.15e-08, - "osteoma": 1.15e-08, - "otoplasty": 1.15e-08, - "outdraw": 1.15e-08, - "outstate": 1.15e-08, - "panglima": 1.15e-08, - "pannage": 1.15e-08, - "paracelsian": 1.15e-08, - "paratactic": 1.15e-08, - "pentateuchal": 1.15e-08, - "peritonsillar": 1.15e-08, - "perspicuity": 1.15e-08, - "phlegethon": 1.15e-08, - "phosphated": 1.15e-08, - "phyllosticta": 1.15e-08, - "phytogeographic": 1.15e-08, - "piddock": 1.15e-08, - "pipistrellus": 1.15e-08, - "pisidium": 1.15e-08, - "pittsburgher": 1.15e-08, - "podzolic": 1.15e-08, - "polymathic": 1.15e-08, - "polyoxymethylene": 1.15e-08, - "portiere": 1.15e-08, - "prepurchase": 1.15e-08, - "prozone": 1.15e-08, - "pterygopalatine": 1.15e-08, - "puerility": 1.15e-08, - "pyrroline": 1.15e-08, - "rainband": 1.15e-08, - "razzia": 1.15e-08, - "recessively": 1.15e-08, - "reduct": 1.15e-08, - "reduplicate": 1.15e-08, - "regeneratively": 1.15e-08, - "rejector": 1.15e-08, - "reoffer": 1.15e-08, - "retiarius": 1.15e-08, - "retiral": 1.15e-08, - "revaccination": 1.15e-08, - "ridgy": 1.15e-08, - "rynd": 1.15e-08, - "salvadora": 1.15e-08, - "sanctimoniousness": 1.15e-08, - "scoggin": 1.15e-08, - "scorchingly": 1.15e-08, - "scurfy": 1.15e-08, - "selectiveness": 1.15e-08, - "sepulture": 1.15e-08, - "shewa": 1.15e-08, - "simsim": 1.15e-08, - "sithe": 1.15e-08, - "sixthly": 1.15e-08, - "slithy": 1.15e-08, - "smudger": 1.15e-08, - "soarer": 1.15e-08, - "somata": 1.15e-08, - "sourer": 1.15e-08, - "specifiable": 1.15e-08, - "speechmaker": 1.15e-08, - "squarehead": 1.15e-08, - "stannum": 1.15e-08, - "statical": 1.15e-08, - "stellated": 1.15e-08, - "stepstone": 1.15e-08, - "stigmatism": 1.15e-08, - "stupp": 1.15e-08, - "suade": 1.15e-08, - "subfossil": 1.15e-08, - "sugarberry": 1.15e-08, - "surette": 1.15e-08, - "symmetrization": 1.15e-08, - "taiaha": 1.15e-08, - "tamanu": 1.15e-08, - "tariana": 1.15e-08, - "tastelessly": 1.15e-08, - "tentmaker": 1.15e-08, - "terebra": 1.15e-08, - "teucrium": 1.15e-08, - "thermophile": 1.15e-08, - "thysanoptera": 1.15e-08, - "timorously": 1.15e-08, - "tinhorn": 1.15e-08, - "toothing": 1.15e-08, - "transjordanian": 1.15e-08, - "translative": 1.15e-08, - "trunkless": 1.15e-08, - "tusayan": 1.15e-08, - "tusky": 1.15e-08, - "tutee": 1.15e-08, - "ulmo": 1.15e-08, - "unbar": 1.15e-08, - "unloose": 1.15e-08, - "unmasculine": 1.15e-08, - "unprogressive": 1.15e-08, - "unreadiness": 1.15e-08, - "unrepented": 1.15e-08, - "unsilent": 1.15e-08, - "unsticking": 1.15e-08, - "ursolic": 1.15e-08, - "vanadyl": 1.15e-08, - "venery": 1.15e-08, - "vidette": 1.15e-08, - "vigesimal": 1.15e-08, - "vougeot": 1.15e-08, - "wingspread": 1.15e-08, - "winsomely": 1.15e-08, - "winterkill": 1.15e-08, - "wolve": 1.15e-08, - "yachtswoman": 1.15e-08, - "zonotrichia": 1.15e-08, - "accomplishable": 1.12e-08, - "adenopathy": 1.12e-08, - "adjectivally": 1.12e-08, - "adorer": 1.12e-08, - "adventitia": 1.12e-08, - "aizoon": 1.12e-08, - "akinesia": 1.12e-08, - "alauda": 1.12e-08, - "algebraist": 1.12e-08, - "amblyopic": 1.12e-08, - "anacrusis": 1.12e-08, - "ancylus": 1.12e-08, - "anicut": 1.12e-08, - "antidotal": 1.12e-08, - "apolline": 1.12e-08, - "apparence": 1.12e-08, - "apsis": 1.12e-08, - "ardency": 1.12e-08, - "argolid": 1.12e-08, - "arval": 1.12e-08, - "autochthon": 1.12e-08, - "awfu": 1.12e-08, - "baculites": 1.12e-08, - "banchi": 1.12e-08, - "beatifically": 1.12e-08, - "befriender": 1.12e-08, - "beheader": 1.12e-08, - "bellying": 1.12e-08, - "benignant": 1.12e-08, - "biomagnetic": 1.12e-08, - "biparental": 1.12e-08, - "biramous": 1.12e-08, - "biserial": 1.12e-08, - "blet": 1.12e-08, - "bloused": 1.12e-08, - "brainpan": 1.12e-08, - "brank": 1.12e-08, - "burnisher": 1.12e-08, - "byplay": 1.12e-08, - "cagily": 1.12e-08, - "carditis": 1.12e-08, - "carminic": 1.12e-08, - "carucate": 1.12e-08, - "castellar": 1.12e-08, - "catastrophist": 1.12e-08, - "cerithium": 1.12e-08, - "chaetodon": 1.12e-08, - "chasidim": 1.12e-08, - "chawk": 1.12e-08, - "chemis": 1.12e-08, - "chloric": 1.12e-08, - "chryselephantine": 1.12e-08, - "cicindela": 1.12e-08, - "cista": 1.12e-08, - "clockmaking": 1.12e-08, - "coleoptile": 1.12e-08, - "collusively": 1.12e-08, - "combustive": 1.12e-08, - "companionably": 1.12e-08, - "concavely": 1.12e-08, - "concernment": 1.12e-08, - "confiture": 1.12e-08, - "corticium": 1.12e-08, - "countermarch": 1.12e-08, - "countersignature": 1.12e-08, - "cricothyroid": 1.12e-08, - "crookback": 1.12e-08, - "crosscurrent": 1.12e-08, - "crower": 1.12e-08, - "cruelness": 1.12e-08, - "culturist": 1.12e-08, - "cumbrous": 1.12e-08, - "cuspidor": 1.12e-08, - "cyathea": 1.12e-08, - "cypriote": 1.12e-08, - "darg": 1.12e-08, - "dehumidify": 1.12e-08, - "delate": 1.12e-08, - "demigoddess": 1.12e-08, - "dentigerous": 1.12e-08, - "desiderative": 1.12e-08, - "detrain": 1.12e-08, - "deucedly": 1.12e-08, - "discarnate": 1.12e-08, - "disembodiment": 1.12e-08, - "dissimulate": 1.12e-08, - "doddie": 1.12e-08, - "doubleness": 1.12e-08, - "downthrow": 1.12e-08, - "druidical": 1.12e-08, - "duckpin": 1.12e-08, - "dueler": 1.12e-08, - "dyak": 1.12e-08, - "dyarchy": 1.12e-08, - "dyeable": 1.12e-08, - "dynamiter": 1.12e-08, - "economism": 1.12e-08, - "electrolyze": 1.12e-08, - "eleusine": 1.12e-08, - "elohist": 1.12e-08, - "embosser": 1.12e-08, - "emmenagogue": 1.12e-08, - "empidonax": 1.12e-08, - "endosteal": 1.12e-08, - "entia": 1.12e-08, - "equipotent": 1.12e-08, - "erythromelalgia": 1.12e-08, - "esperantist": 1.12e-08, - "ethnobiology": 1.12e-08, - "evangelically": 1.12e-08, - "extemporize": 1.12e-08, - "extortionately": 1.12e-08, - "fabliau": 1.12e-08, - "favilla": 1.12e-08, - "fayalite": 1.12e-08, - "fimbriate": 1.12e-08, - "fise": 1.12e-08, - "flapdoodle": 1.12e-08, - "flavo": 1.12e-08, - "floreal": 1.12e-08, - "forgie": 1.12e-08, - "fourpenny": 1.12e-08, - "freakishness": 1.12e-08, - "fulmination": 1.12e-08, - "gallinae": 1.12e-08, - "gasterosteus": 1.12e-08, - "geophone": 1.12e-08, - "ghoulishly": 1.12e-08, - "goatfish": 1.12e-08, - "goback": 1.12e-08, - "gossypol": 1.12e-08, - "greenkeeping": 1.12e-08, - "grinner": 1.12e-08, - "grippingly": 1.12e-08, - "gunj": 1.12e-08, - "gustation": 1.12e-08, - "guttate": 1.12e-08, - "habitate": 1.12e-08, - "hackler": 1.12e-08, - "hairbreadth": 1.12e-08, - "halfman": 1.12e-08, - "haversian": 1.12e-08, - "helminthology": 1.12e-08, - "hemoperitoneum": 1.12e-08, - "histogenesis": 1.12e-08, - "hoddy": 1.12e-08, - "homam": 1.12e-08, - "honeymooner": 1.12e-08, - "hydrogenolysis": 1.12e-08, - "hymenaeus": 1.12e-08, - "hyperacidity": 1.12e-08, - "hypercoagulability": 1.12e-08, - "hyperfocal": 1.12e-08, - "hyperpigmented": 1.12e-08, - "ilima": 1.12e-08, - "incide": 1.12e-08, - "inebriety": 1.12e-08, - "inelasticity": 1.12e-08, - "inkstone": 1.12e-08, - "inquiringly": 1.12e-08, - "instauration": 1.12e-08, - "intracortical": 1.12e-08, - "ipecacuanha": 1.12e-08, - "jagirdar": 1.12e-08, - "juck": 1.12e-08, - "jungled": 1.12e-08, - "kahar": 1.12e-08, - "kohistani": 1.12e-08, - "kubba": 1.12e-08, - "kurmi": 1.12e-08, - "laureateship": 1.12e-08, - "libber": 1.12e-08, - "limpness": 1.12e-08, - "linearize": 1.12e-08, - "linkman": 1.12e-08, - "literalistic": 1.12e-08, - "lithopone": 1.12e-08, - "longfin": 1.12e-08, - "lusciousness": 1.12e-08, - "lutjanus": 1.12e-08, - "lythrum": 1.12e-08, - "mahican": 1.12e-08, - "malacostraca": 1.12e-08, - "manyfold": 1.12e-08, - "masting": 1.12e-08, - "melam": 1.12e-08, - "melodramatics": 1.12e-08, - "merops": 1.12e-08, - "mesembryanthemum": 1.12e-08, - "messiahship": 1.12e-08, - "metathorax": 1.12e-08, - "misattribute": 1.12e-08, - "monial": 1.12e-08, - "monomorphism": 1.12e-08, - "muhlenbergia": 1.12e-08, - "myriapoda": 1.12e-08, - "nephrosis": 1.12e-08, - "neuromyelitis": 1.12e-08, - "nonalignment": 1.12e-08, - "nonintercourse": 1.12e-08, - "obdurately": 1.12e-08, - "obliterator": 1.12e-08, - "ocellar": 1.12e-08, - "odontoblast": 1.12e-08, - "olein": 1.12e-08, - "ornithorhynchus": 1.12e-08, - "palmae": 1.12e-08, - "paraldehyde": 1.12e-08, - "pardesi": 1.12e-08, - "patronization": 1.12e-08, - "perceptional": 1.12e-08, - "perfidiously": 1.12e-08, - "perilymph": 1.12e-08, - "perineural": 1.12e-08, - "perisphere": 1.12e-08, - "perspicuously": 1.12e-08, - "petrosa": 1.12e-08, - "pheasantry": 1.12e-08, - "pheidole": 1.12e-08, - "phototropic": 1.12e-08, - "phytol": 1.12e-08, - "phytopathogenic": 1.12e-08, - "pierides": 1.12e-08, - "pinguicula": 1.12e-08, - "pipper": 1.12e-08, - "pledgee": 1.12e-08, - "pleuron": 1.12e-08, - "portreeve": 1.12e-08, - "posteromedial": 1.12e-08, - "postilion": 1.12e-08, - "predicatively": 1.12e-08, - "preposterousness": 1.12e-08, - "prescientific": 1.12e-08, - "priestcraft": 1.12e-08, - "prink": 1.12e-08, - "processionary": 1.12e-08, - "proclaimer": 1.12e-08, - "provisory": 1.12e-08, - "puparium": 1.12e-08, - "purpure": 1.12e-08, - "putrescence": 1.12e-08, - "pyrola": 1.12e-08, - "quibbler": 1.12e-08, - "ragingly": 1.12e-08, - "ramet": 1.12e-08, - "rapaciousness": 1.12e-08, - "raser": 1.12e-08, - "recharter": 1.12e-08, - "redeal": 1.12e-08, - "resitting": 1.12e-08, - "rhombencephalon": 1.12e-08, - "rhymester": 1.12e-08, - "richen": 1.12e-08, - "roey": 1.12e-08, - "roguishly": 1.12e-08, - "rontgen": 1.12e-08, - "rotala": 1.12e-08, - "ruralist": 1.12e-08, - "salten": 1.12e-08, - "sapor": 1.12e-08, - "scaramouch": 1.12e-08, - "schematization": 1.12e-08, - "schisandra": 1.12e-08, - "schistose": 1.12e-08, - "schout": 1.12e-08, - "scrump": 1.12e-08, - "scumming": 1.12e-08, - "seacraft": 1.12e-08, - "sectile": 1.12e-08, - "seedtime": 1.12e-08, - "seignorage": 1.12e-08, - "semblable": 1.12e-08, - "septenary": 1.12e-08, - "serpentes": 1.12e-08, - "sheepman": 1.12e-08, - "shittim": 1.12e-08, - "shog": 1.12e-08, - "sighter": 1.12e-08, - "sinal": 1.12e-08, - "slabbing": 1.12e-08, - "slaggy": 1.12e-08, - "sleety": 1.12e-08, - "slightness": 1.12e-08, - "smally": 1.12e-08, - "somatically": 1.12e-08, - "sorosis": 1.12e-08, - "spiccato": 1.12e-08, - "sporulate": 1.12e-08, - "sput": 1.12e-08, - "stearyl": 1.12e-08, - "stinkhorn": 1.12e-08, - "stinkweed": 1.12e-08, - "stof": 1.12e-08, - "stoof": 1.12e-08, - "strich": 1.12e-08, - "subrogate": 1.12e-08, - "sugan": 1.12e-08, - "suppost": 1.12e-08, - "suprascapular": 1.12e-08, - "swarth": 1.12e-08, - "swedenborgianism": 1.12e-08, - "swordman": 1.12e-08, - "symphysiotomy": 1.12e-08, - "sympodial": 1.12e-08, - "synostosis": 1.12e-08, - "systemization": 1.12e-08, - "tachinidae": 1.12e-08, - "tapete": 1.12e-08, - "tarasco": 1.12e-08, - "tarrow": 1.12e-08, - "tenace": 1.12e-08, - "tendentiously": 1.12e-08, - "tentorium": 1.12e-08, - "tepidarium": 1.12e-08, - "termino": 1.12e-08, - "thrain": 1.12e-08, - "thrombogenic": 1.12e-08, - "thumbless": 1.12e-08, - "tibbie": 1.12e-08, - "tillite": 1.12e-08, - "timberjack": 1.12e-08, - "transhumant": 1.12e-08, - "transpolar": 1.12e-08, - "transversality": 1.12e-08, - "triene": 1.12e-08, - "trilobed": 1.12e-08, - "tripolar": 1.12e-08, - "tritonia": 1.12e-08, - "tuath": 1.12e-08, - "tuffet": 1.12e-08, - "tulchin": 1.12e-08, - "twistable": 1.12e-08, - "unadvisable": 1.12e-08, - "unbiasedly": 1.12e-08, - "unblushing": 1.12e-08, - "uncanniness": 1.12e-08, - "uncombined": 1.12e-08, - "underhandedly": 1.12e-08, - "unfrocked": 1.12e-08, - "unglue": 1.12e-08, - "unperfect": 1.12e-08, - "unposed": 1.12e-08, - "unrigged": 1.12e-08, - "unsatisfactoriness": 1.12e-08, - "unstacked": 1.12e-08, - "unsubtly": 1.12e-08, - "ushabti": 1.12e-08, - "varve": 1.12e-08, - "veps": 1.12e-08, - "vulgarism": 1.12e-08, - "vum": 1.12e-08, - "waggly": 1.12e-08, - "weaner": 1.12e-08, - "weeda": 1.12e-08, - "wernerian": 1.12e-08, - "wharfinger": 1.12e-08, - "wharfside": 1.12e-08, - "whitesmith": 1.12e-08, - "wildish": 1.12e-08, - "wintun": 1.12e-08, - "wowt": 1.12e-08, - "yarraman": 1.12e-08, - "yeld": 1.12e-08, - "yolky": 1.12e-08, - "zoic": 1.12e-08, - "zoogeographic": 1.12e-08, - "zorilla": 1.12e-08, - "abstemiousness": 1.1e-08, - "acana": 1.1e-08, - "accelerative": 1.1e-08, - "acetylacetone": 1.1e-08, - "acquittance": 1.1e-08, - "actinomycosis": 1.1e-08, - "albigenses": 1.1e-08, - "alioth": 1.1e-08, - "almain": 1.1e-08, - "alopecurus": 1.1e-08, - "amanitin": 1.1e-08, - "ampelopsis": 1.1e-08, - "amusedly": 1.1e-08, - "amygdalus": 1.1e-08, - "androecium": 1.1e-08, - "anglic": 1.1e-08, - "anticipative": 1.1e-08, - "antipyrine": 1.1e-08, - "architeuthis": 1.1e-08, - "argemone": 1.1e-08, - "arverni": 1.1e-08, - "aryanism": 1.1e-08, - "asthenic": 1.1e-08, - "atactic": 1.1e-08, - "atavist": 1.1e-08, - "avahi": 1.1e-08, - "babirusa": 1.1e-08, - "bakongo": 1.1e-08, - "banian": 1.1e-08, - "banket": 1.1e-08, - "barbarianism": 1.1e-08, - "bastardly": 1.1e-08, - "bazoo": 1.1e-08, - "belait": 1.1e-08, - "benthamite": 1.1e-08, - "benzil": 1.1e-08, - "bestowment": 1.1e-08, - "bibio": 1.1e-08, - "birching": 1.1e-08, - "bixa": 1.1e-08, - "bonneted": 1.1e-08, - "bosk": 1.1e-08, - "brahmani": 1.1e-08, - "brazilwood": 1.1e-08, - "briefness": 1.1e-08, - "brocard": 1.1e-08, - "brooklet": 1.1e-08, - "cajan": 1.1e-08, - "calabaza": 1.1e-08, - "caliver": 1.1e-08, - "callosal": 1.1e-08, - "calotte": 1.1e-08, - "cantara": 1.1e-08, - "capias": 1.1e-08, - "cardial": 1.1e-08, - "cardplayer": 1.1e-08, - "casaba": 1.1e-08, - "catamenia": 1.1e-08, - "catboat": 1.1e-08, - "cellarer": 1.1e-08, - "chacma": 1.1e-08, - "chirpily": 1.1e-08, - "choluteca": 1.1e-08, - "chronometry": 1.1e-08, - "chrysis": 1.1e-08, - "chthonian": 1.1e-08, - "circuital": 1.1e-08, - "clairaudience": 1.1e-08, - "clawless": 1.1e-08, - "cleistogamous": 1.1e-08, - "clocker": 1.1e-08, - "cloudlike": 1.1e-08, - "combustibility": 1.1e-08, - "comprehensibly": 1.1e-08, - "conceiver": 1.1e-08, - "concertedly": 1.1e-08, - "consultee": 1.1e-08, - "contentless": 1.1e-08, - "controllership": 1.1e-08, - "conversable": 1.1e-08, - "copartnership": 1.1e-08, - "coptis": 1.1e-08, - "corriedale": 1.1e-08, - "cosmographer": 1.1e-08, - "counterfire": 1.1e-08, - "crusca": 1.1e-08, - "crutched": 1.1e-08, - "cubiculum": 1.1e-08, - "cyanic": 1.1e-08, - "dasheen": 1.1e-08, - "debauchee": 1.1e-08, - "deific": 1.1e-08, - "delphinidae": 1.1e-08, - "dermestid": 1.1e-08, - "desman": 1.1e-08, - "detectably": 1.1e-08, - "devitrification": 1.1e-08, - "diarchy": 1.1e-08, - "diethanolamine": 1.1e-08, - "diminisher": 1.1e-08, - "dinkey": 1.1e-08, - "disarrange": 1.1e-08, - "discourteously": 1.1e-08, - "dispersement": 1.1e-08, - "distributively": 1.1e-08, - "divergently": 1.1e-08, - "doggish": 1.1e-08, - "dulia": 1.1e-08, - "durrie": 1.1e-08, - "eleutheria": 1.1e-08, - "embrocation": 1.1e-08, - "emys": 1.1e-08, - "enochic": 1.1e-08, - "eremite": 1.1e-08, - "erythronium": 1.1e-08, - "euskera": 1.1e-08, - "evenhandedly": 1.1e-08, - "evenhandedness": 1.1e-08, - "exequatur": 1.1e-08, - "extensometer": 1.1e-08, - "exuviae": 1.1e-08, - "falstaffian": 1.1e-08, - "farfel": 1.1e-08, - "fastigiate": 1.1e-08, - "fattiness": 1.1e-08, - "ferrosilicon": 1.1e-08, - "firemaster": 1.1e-08, - "flabbiness": 1.1e-08, - "floorwalker": 1.1e-08, - "fronter": 1.1e-08, - "froufrou": 1.1e-08, - "frush": 1.1e-08, - "fyke": 1.1e-08, - "ganton": 1.1e-08, - "genetrix": 1.1e-08, - "genotypically": 1.1e-08, - "gentlemanliness": 1.1e-08, - "germinative": 1.1e-08, - "girondist": 1.1e-08, - "glyceria": 1.1e-08, - "gorce": 1.1e-08, - "granulose": 1.1e-08, - "guianese": 1.1e-08, - "habiru": 1.1e-08, - "halophytic": 1.1e-08, - "hardstand": 1.1e-08, - "hech": 1.1e-08, - "hectically": 1.1e-08, - "hemiacetal": 1.1e-08, - "hemocyte": 1.1e-08, - "hesperis": 1.1e-08, - "hevi": 1.1e-08, - "hewel": 1.1e-08, - "hipshot": 1.1e-08, - "hirudo": 1.1e-08, - "horologium": 1.1e-08, - "hotelkeeper": 1.1e-08, - "hypercorrection": 1.1e-08, - "ilokano": 1.1e-08, - "improvisor": 1.1e-08, - "inconsequentially": 1.1e-08, - "indianism": 1.1e-08, - "inspiriting": 1.1e-08, - "interclass": 1.1e-08, - "intermixture": 1.1e-08, - "joylessly": 1.1e-08, - "kanat": 1.1e-08, - "kelk": 1.1e-08, - "kioko": 1.1e-08, - "komati": 1.1e-08, - "ladyfinger": 1.1e-08, - "lagen": 1.1e-08, - "laplander": 1.1e-08, - "lazaret": 1.1e-08, - "leatherworker": 1.1e-08, - "lethean": 1.1e-08, - "leucite": 1.1e-08, - "licorne": 1.1e-08, - "lithographically": 1.1e-08, - "lodowick": 1.1e-08, - "lored": 1.1e-08, - "lunare": 1.1e-08, - "lunel": 1.1e-08, - "luter": 1.1e-08, - "machree": 1.1e-08, - "malcontented": 1.1e-08, - "mergus": 1.1e-08, - "meros": 1.1e-08, - "microlepidoptera": 1.1e-08, - "micturate": 1.1e-08, - "milkiness": 1.1e-08, - "minuter": 1.1e-08, - "misclassify": 1.1e-08, - "modally": 1.1e-08, - "moisty": 1.1e-08, - "monadology": 1.1e-08, - "montjoy": 1.1e-08, - "munge": 1.1e-08, - "mutative": 1.1e-08, - "mydriatic": 1.1e-08, - "myotomy": 1.1e-08, - "naumkeag": 1.1e-08, - "negatron": 1.1e-08, - "nonconstructive": 1.1e-08, - "nonlife": 1.1e-08, - "nonmusical": 1.1e-08, - "nosological": 1.1e-08, - "notan": 1.1e-08, - "novatian": 1.1e-08, - "nubbly": 1.1e-08, - "odiously": 1.1e-08, - "offsider": 1.1e-08, - "opusculum": 1.1e-08, - "orphean": 1.1e-08, - "overtrain": 1.1e-08, - "pacemaking": 1.1e-08, - "palaeoclimatology": 1.1e-08, - "passen": 1.1e-08, - "pataka": 1.1e-08, - "pauperization": 1.1e-08, - "pentadactyl": 1.1e-08, - "pentamerous": 1.1e-08, - "pericellular": 1.1e-08, - "pericentric": 1.1e-08, - "permalloy": 1.1e-08, - "perognathus": 1.1e-08, - "petrogenesis": 1.1e-08, - "pettifog": 1.1e-08, - "phenanthroline": 1.1e-08, - "phenethyl": 1.1e-08, - "photoluminescent": 1.1e-08, - "photomicrograph": 1.1e-08, - "pici": 1.1e-08, - "pikestaff": 1.1e-08, - "pimienta": 1.1e-08, - "pinacle": 1.1e-08, - "placatory": 1.1e-08, - "pleuropneumonia": 1.1e-08, - "plup": 1.1e-08, - "postmillennial": 1.1e-08, - "postocular": 1.1e-08, - "pounamu": 1.1e-08, - "predestinarian": 1.1e-08, - "prelature": 1.1e-08, - "premonstratensian": 1.1e-08, - "preopercle": 1.1e-08, - "protrusive": 1.1e-08, - "pulsatility": 1.1e-08, - "pulsion": 1.1e-08, - "pyretic": 1.1e-08, - "pyrrhonian": 1.1e-08, - "quadricentennial": 1.1e-08, - "raphides": 1.1e-08, - "recommencement": 1.1e-08, - "rectangularly": 1.1e-08, - "renewer": 1.1e-08, - "requote": 1.1e-08, - "resole": 1.1e-08, - "rhaetic": 1.1e-08, - "ripely": 1.1e-08, - "roaded": 1.1e-08, - "robusticity": 1.1e-08, - "rockrose": 1.1e-08, - "rougeau": 1.1e-08, - "sacrococcygeal": 1.1e-08, - "salability": 1.1e-08, - "salema": 1.1e-08, - "sanche": 1.1e-08, - "sapindaceae": 1.1e-08, - "sectored": 1.1e-08, - "semiring": 1.1e-08, - "shide": 1.1e-08, - "shirtmaker": 1.1e-08, - "sickled": 1.1e-08, - "sigillaria": 1.1e-08, - "sium": 1.1e-08, - "smartish": 1.1e-08, - "snowie": 1.1e-08, - "sody": 1.1e-08, - "sogginess": 1.1e-08, - "sparus": 1.1e-08, - "spicebush": 1.1e-08, - "spritsail": 1.1e-08, - "sternite": 1.1e-08, - "stower": 1.1e-08, - "strangulate": 1.1e-08, - "stridulatory": 1.1e-08, - "strongback": 1.1e-08, - "studiousness": 1.1e-08, - "stuiver": 1.1e-08, - "submultiple": 1.1e-08, - "superincumbent": 1.1e-08, - "supervenient": 1.1e-08, - "swietenia": 1.1e-08, - "tanacetum": 1.1e-08, - "taurid": 1.1e-08, - "taxpaid": 1.1e-08, - "tenebrio": 1.1e-08, - "thereinto": 1.1e-08, - "thimbleweed": 1.1e-08, - "throwout": 1.1e-08, - "tibiofemoral": 1.1e-08, - "tirer": 1.1e-08, - "toosh": 1.1e-08, - "torcher": 1.1e-08, - "toxicologic": 1.1e-08, - "transpositional": 1.1e-08, - "trichologist": 1.1e-08, - "trowing": 1.1e-08, - "trygon": 1.1e-08, - "tweaky": 1.1e-08, - "unappeasable": 1.1e-08, - "unapplied": 1.1e-08, - "unconsented": 1.1e-08, - "underbridge": 1.1e-08, - "underexpose": 1.1e-08, - "undismayed": 1.1e-08, - "unescapable": 1.1e-08, - "unflawed": 1.1e-08, - "unhorse": 1.1e-08, - "unideal": 1.1e-08, - "unimprovable": 1.1e-08, - "unintelligence": 1.1e-08, - "unmeaning": 1.1e-08, - "unmutated": 1.1e-08, - "unobligated": 1.1e-08, - "unpreserved": 1.1e-08, - "unsprayed": 1.1e-08, - "untoasted": 1.1e-08, - "uplander": 1.1e-08, - "vectorially": 1.1e-08, - "vespidae": 1.1e-08, - "viatical": 1.1e-08, - "visaya": 1.1e-08, - "viscountcy": 1.1e-08, - "vocalion": 1.1e-08, - "wallower": 1.1e-08, - "warrantable": 1.1e-08, - "weeze": 1.1e-08, - "wristlock": 1.1e-08, - "yakan": 1.1e-08, - "youp": 1.1e-08, - "zwieback": 1.1e-08, - "zyme": 1.1e-08, - "acanthocephala": 1.07e-08, - "actaea": 1.07e-08, - "addend": 1.07e-08, - "addlepated": 1.07e-08, - "alderwoman": 1.07e-08, - "allotropic": 1.07e-08, - "anisocoria": 1.07e-08, - "answerability": 1.07e-08, - "apoidea": 1.07e-08, - "archvillain": 1.07e-08, - "argali": 1.07e-08, - "argenteum": 1.07e-08, - "arvel": 1.07e-08, - "asarum": 1.07e-08, - "ascomycete": 1.07e-08, - "asphaltum": 1.07e-08, - "athanasia": 1.07e-08, - "atip": 1.07e-08, - "attackable": 1.07e-08, - "auscultatory": 1.07e-08, - "baft": 1.07e-08, - "baltimorean": 1.07e-08, - "banate": 1.07e-08, - "barbital": 1.07e-08, - "barbone": 1.07e-08, - "beachmaster": 1.07e-08, - "belah": 1.07e-08, - "binna": 1.07e-08, - "biomicroscopy": 1.07e-08, - "bitemporal": 1.07e-08, - "blazy": 1.07e-08, - "bloodletter": 1.07e-08, - "borean": 1.07e-08, - "bouldery": 1.07e-08, - "brigantia": 1.07e-08, - "bronzite": 1.07e-08, - "bullishly": 1.07e-08, - "cadette": 1.07e-08, - "caecilian": 1.07e-08, - "campanini": 1.07e-08, - "cantref": 1.07e-08, - "capsulated": 1.07e-08, - "carbonator": 1.07e-08, - "castrator": 1.07e-08, - "cedrela": 1.07e-08, - "cephalad": 1.07e-08, - "cerastes": 1.07e-08, - "cervid": 1.07e-08, - "cherubin": 1.07e-08, - "chondrogenesis": 1.07e-08, - "classer": 1.07e-08, - "clearwing": 1.07e-08, - "clethra": 1.07e-08, - "cliffed": 1.07e-08, - "cocorico": 1.07e-08, - "collimate": 1.07e-08, - "commencer": 1.07e-08, - "complaisance": 1.07e-08, - "complicatedly": 1.07e-08, - "conclusiveness": 1.07e-08, - "conoidal": 1.07e-08, - "continentality": 1.07e-08, - "conveniency": 1.07e-08, - "coparent": 1.07e-08, - "corbula": 1.07e-08, - "corncrib": 1.07e-08, - "coyo": 1.07e-08, - "crabber": 1.07e-08, - "cringer": 1.07e-08, - "crupper": 1.07e-08, - "cunningness": 1.07e-08, - "cupule": 1.07e-08, - "cytotoxin": 1.07e-08, - "daggered": 1.07e-08, - "daitya": 1.07e-08, - "daiva": 1.07e-08, - "decennium": 1.07e-08, - "defog": 1.07e-08, - "demonological": 1.07e-08, - "dermaptera": 1.07e-08, - "diamondiferous": 1.07e-08, - "diastase": 1.07e-08, - "discerner": 1.07e-08, - "disjunctively": 1.07e-08, - "distinguisher": 1.07e-08, - "domy": 1.07e-08, - "downhaul": 1.07e-08, - "ecad": 1.07e-08, - "eclamptic": 1.07e-08, - "ecliptical": 1.07e-08, - "electroanalytical": 1.07e-08, - "emergently": 1.07e-08, - "empetrum": 1.07e-08, - "enfeeblement": 1.07e-08, - "enfeoff": 1.07e-08, - "enure": 1.07e-08, - "epical": 1.07e-08, - "epideictic": 1.07e-08, - "erysiphe": 1.07e-08, - "erythraean": 1.07e-08, - "essling": 1.07e-08, - "eternalize": 1.07e-08, - "euphausia": 1.07e-08, - "eversible": 1.07e-08, - "exciseman": 1.07e-08, - "exhaustedly": 1.07e-08, - "exogyra": 1.07e-08, - "externe": 1.07e-08, - "extortioner": 1.07e-08, - "falteringly": 1.07e-08, - "fashionability": 1.07e-08, - "featural": 1.07e-08, - "fictious": 1.07e-08, - "firbolg": 1.07e-08, - "fireworm": 1.07e-08, - "floriated": 1.07e-08, - "fluxional": 1.07e-08, - "foamer": 1.07e-08, - "foreteller": 1.07e-08, - "fretfully": 1.07e-08, - "fulgurite": 1.07e-08, - "fumigator": 1.07e-08, - "furfur": 1.07e-08, - "furtherest": 1.07e-08, - "furunculosis": 1.07e-08, - "gamb": 1.07e-08, - "ganoid": 1.07e-08, - "gauntleted": 1.07e-08, - "gillyflower": 1.07e-08, - "girasole": 1.07e-08, - "gisla": 1.07e-08, - "gramicidin": 1.07e-08, - "graveness": 1.07e-08, - "groined": 1.07e-08, - "groundlessly": 1.07e-08, - "gruntled": 1.07e-08, - "haemaphysalis": 1.07e-08, - "haily": 1.07e-08, - "hamites": 1.07e-08, - "haoma": 1.07e-08, - "hoise": 1.07e-08, - "hornist": 1.07e-08, - "hospodar": 1.07e-08, - "hydrocotyle": 1.07e-08, - "hydrotalcite": 1.07e-08, - "hypercomplex": 1.07e-08, - "ichthus": 1.07e-08, - "incipiently": 1.07e-08, - "incriminatory": 1.07e-08, - "indue": 1.07e-08, - "infinitival": 1.07e-08, - "inhospitality": 1.07e-08, - "intercondylar": 1.07e-08, - "isomerize": 1.07e-08, - "isovaleric": 1.07e-08, - "jamdani": 1.07e-08, - "kibitzer": 1.07e-08, - "labiatae": 1.07e-08, - "layia": 1.07e-08, - "lettish": 1.07e-08, - "libellula": 1.07e-08, - "liebfraumilch": 1.07e-08, - "litharge": 1.07e-08, - "loculus": 1.07e-08, - "lugubriously": 1.07e-08, - "luxemburger": 1.07e-08, - "luzula": 1.07e-08, - "machinal": 1.07e-08, - "makari": 1.07e-08, - "malthe": 1.07e-08, - "margining": 1.07e-08, - "martially": 1.07e-08, - "mashru": 1.07e-08, - "matadero": 1.07e-08, - "matchable": 1.07e-08, - "melic": 1.07e-08, - "mentalization": 1.07e-08, - "metabolizable": 1.07e-08, - "metalorganic": 1.07e-08, - "micropipette": 1.07e-08, - "micropyle": 1.07e-08, - "milkwood": 1.07e-08, - "misogynous": 1.07e-08, - "moit": 1.07e-08, - "moonfish": 1.07e-08, - "motionlessly": 1.07e-08, - "multicourse": 1.07e-08, - "multinodular": 1.07e-08, - "mundle": 1.07e-08, - "muscicapa": 1.07e-08, - "muzhik": 1.07e-08, - "nationalistically": 1.07e-08, - "nephrops": 1.07e-08, - "nerita": 1.07e-08, - "netherlandic": 1.07e-08, - "nodi": 1.07e-08, - "nonattainment": 1.07e-08, - "novate": 1.07e-08, - "obtrude": 1.07e-08, - "ocracy": 1.07e-08, - "odal": 1.07e-08, - "oleomargarine": 1.07e-08, - "operculate": 1.07e-08, - "ophiolitic": 1.07e-08, - "opiliones": 1.07e-08, - "ortrud": 1.07e-08, - "ostracoda": 1.07e-08, - "ostrya": 1.07e-08, - "outgas": 1.07e-08, - "owk": 1.07e-08, - "oxidizable": 1.07e-08, - "oxonium": 1.07e-08, - "panocha": 1.07e-08, - "passementerie": 1.07e-08, - "pauldron": 1.07e-08, - "peridinium": 1.07e-08, - "periodate": 1.07e-08, - "permissively": 1.07e-08, - "perpend": 1.07e-08, - "peziza": 1.07e-08, - "phratry": 1.07e-08, - "physiocratic": 1.07e-08, - "pinctada": 1.07e-08, - "pinocytosis": 1.07e-08, - "piragua": 1.07e-08, - "pitahaya": 1.07e-08, - "pitchout": 1.07e-08, - "plashet": 1.07e-08, - "playday": 1.07e-08, - "plethoric": 1.07e-08, - "plew": 1.07e-08, - "pluckily": 1.07e-08, - "pluvialis": 1.07e-08, - "poiana": 1.07e-08, - "polyhalite": 1.07e-08, - "polyhydroxy": 1.07e-08, - "porousness": 1.07e-08, - "pragmatical": 1.07e-08, - "prehend": 1.07e-08, - "presbyterial": 1.07e-08, - "preterist": 1.07e-08, - "professionality": 1.07e-08, - "proliferous": 1.07e-08, - "prosy": 1.07e-08, - "protocone": 1.07e-08, - "protogynous": 1.07e-08, - "pygidial": 1.07e-08, - "pyritic": 1.07e-08, - "quartzitic": 1.07e-08, - "quassia": 1.07e-08, - "quinolinic": 1.07e-08, - "quixotically": 1.07e-08, - "rallus": 1.07e-08, - "rebaptism": 1.07e-08, - "rechallenge": 1.07e-08, - "recriminatory": 1.07e-08, - "refurnish": 1.07e-08, - "restfully": 1.07e-08, - "ricey": 1.07e-08, - "rikshaw": 1.07e-08, - "routinization": 1.07e-08, - "rubeola": 1.07e-08, - "sanctionable": 1.07e-08, - "saprolegnia": 1.07e-08, - "sarcoptes": 1.07e-08, - "saveloy": 1.07e-08, - "scantiness": 1.07e-08, - "scarious": 1.07e-08, - "scenographer": 1.07e-08, - "sclerophyllous": 1.07e-08, - "scorner": 1.07e-08, - "screecher": 1.07e-08, - "sealine": 1.07e-08, - "seigniorial": 1.07e-08, - "semidirect": 1.07e-08, - "seriality": 1.07e-08, - "sesma": 1.07e-08, - "shopkeeping": 1.07e-08, - "shopman": 1.07e-08, - "sidonian": 1.07e-08, - "sierran": 1.07e-08, - "signalize": 1.07e-08, - "signwriter": 1.07e-08, - "silicification": 1.07e-08, - "skite": 1.07e-08, - "snippety": 1.07e-08, - "snugness": 1.07e-08, - "soapwort": 1.07e-08, - "somberness": 1.07e-08, - "southernwood": 1.07e-08, - "soxhlet": 1.07e-08, - "spadefoot": 1.07e-08, - "spareness": 1.07e-08, - "sphingidae": 1.07e-08, - "spirillum": 1.07e-08, - "squama": 1.07e-08, - "sternoclavicular": 1.07e-08, - "stringless": 1.07e-08, - "stunkard": 1.07e-08, - "subangular": 1.07e-08, - "subcircuit": 1.07e-08, - "subinterval": 1.07e-08, - "superficies": 1.07e-08, - "superorder": 1.07e-08, - "sylvatic": 1.07e-08, - "symbiogenesis": 1.07e-08, - "talao": 1.07e-08, - "tanistry": 1.07e-08, - "taum": 1.07e-08, - "tetranitrate": 1.07e-08, - "theosophic": 1.07e-08, - "thrip": 1.07e-08, - "tisiphone": 1.07e-08, - "tournant": 1.07e-08, - "tramontane": 1.07e-08, - "transmigrate": 1.07e-08, - "trashiness": 1.07e-08, - "troilite": 1.07e-08, - "troughing": 1.07e-08, - "unabbreviated": 1.07e-08, - "unbraced": 1.07e-08, - "uncloaked": 1.07e-08, - "uncontentious": 1.07e-08, - "undermount": 1.07e-08, - "undeterminable": 1.07e-08, - "unerupted": 1.07e-08, - "unguessable": 1.07e-08, - "unharnessed": 1.07e-08, - "uniphase": 1.07e-08, - "unluck": 1.07e-08, - "unnoticeably": 1.07e-08, - "unpleased": 1.07e-08, - "unpoliced": 1.07e-08, - "unpressed": 1.07e-08, - "unshipped": 1.07e-08, - "upsettingly": 1.07e-08, - "verbenaceae": 1.07e-08, - "vermicular": 1.07e-08, - "vigia": 1.07e-08, - "voicelessness": 1.07e-08, - "vulcanism": 1.07e-08, - "wellsite": 1.07e-08, - "womanize": 1.07e-08, - "zoospore": 1.07e-08, - "abash": 1.05e-08, - "absorbingly": 1.05e-08, - "acarina": 1.05e-08, - "acromegalic": 1.05e-08, - "adjustably": 1.05e-08, - "admeasurement": 1.05e-08, - "adorability": 1.05e-08, - "aigrette": 1.05e-08, - "akinetic": 1.05e-08, - "algic": 1.05e-08, - "annoyingness": 1.05e-08, - "anopheline": 1.05e-08, - "antiseptically": 1.05e-08, - "aphorist": 1.05e-08, - "apteryx": 1.05e-08, - "arcite": 1.05e-08, - "aristocratically": 1.05e-08, - "atlantes": 1.05e-08, - "auscultate": 1.05e-08, - "awalt": 1.05e-08, - "backwall": 1.05e-08, - "bagginess": 1.05e-08, - "balaena": 1.05e-08, - "barytone": 1.05e-08, - "basale": 1.05e-08, - "beguin": 1.05e-08, - "berret": 1.05e-08, - "biometrical": 1.05e-08, - "blistery": 1.05e-08, - "blumea": 1.05e-08, - "borneol": 1.05e-08, - "bouchette": 1.05e-08, - "brachet": 1.05e-08, - "briery": 1.05e-08, - "capitolium": 1.05e-08, - "carburation": 1.05e-08, - "cheaping": 1.05e-08, - "chiffonade": 1.05e-08, - "chubbed": 1.05e-08, - "cicatrix": 1.05e-08, - "clackety": 1.05e-08, - "clarenceux": 1.05e-08, - "clerisy": 1.05e-08, - "cnemidophorus": 1.05e-08, - "coffeecake": 1.05e-08, - "coffret": 1.05e-08, - "cogged": 1.05e-08, - "communard": 1.05e-08, - "concertgoer": 1.05e-08, - "consulter": 1.05e-08, - "coolibah": 1.05e-08, - "copperleaf": 1.05e-08, - "coprecipitation": 1.05e-08, - "coprosma": 1.05e-08, - "courageousness": 1.05e-08, - "coze": 1.05e-08, - "crenellate": 1.05e-08, - "crepuscule": 1.05e-08, - "crevalle": 1.05e-08, - "crowdedness": 1.05e-08, - "crowner": 1.05e-08, - "cubbing": 1.05e-08, - "cultivatable": 1.05e-08, - "cyclopedic": 1.05e-08, - "dantean": 1.05e-08, - "daymare": 1.05e-08, - "decian": 1.05e-08, - "decussation": 1.05e-08, - "dekle": 1.05e-08, - "dementedly": 1.05e-08, - "demoniacal": 1.05e-08, - "desolately": 1.05e-08, - "desponding": 1.05e-08, - "desulphurization": 1.05e-08, - "diphthongal": 1.05e-08, - "disfranchise": 1.05e-08, - "disgustingness": 1.05e-08, - "dismission": 1.05e-08, - "dolomitization": 1.05e-08, - "dunch": 1.05e-08, - "duny": 1.05e-08, - "dytiscidae": 1.05e-08, - "echinocactus": 1.05e-08, - "echinoidea": 1.05e-08, - "ectoparasite": 1.05e-08, - "egregiousness": 1.05e-08, - "elaeis": 1.05e-08, - "elvet": 1.05e-08, - "enwrap": 1.05e-08, - "epiphenomenal": 1.05e-08, - "epiphyllum": 1.05e-08, - "equably": 1.05e-08, - "erysimum": 1.05e-08, - "ethiop": 1.05e-08, - "excurved": 1.05e-08, - "faunistic": 1.05e-08, - "featherbedding": 1.05e-08, - "filipendula": 1.05e-08, - "filmdom": 1.05e-08, - "firetail": 1.05e-08, - "floristics": 1.05e-08, - "foeniculum": 1.05e-08, - "foliaceous": 1.05e-08, - "fortifier": 1.05e-08, - "freehanded": 1.05e-08, - "fretty": 1.05e-08, - "fungiform": 1.05e-08, - "furcation": 1.05e-08, - "furless": 1.05e-08, - "galaxias": 1.05e-08, - "gaulding": 1.05e-08, - "gilliver": 1.05e-08, - "glottic": 1.05e-08, - "gordonia": 1.05e-08, - "griffe": 1.05e-08, - "gunless": 1.05e-08, - "hajib": 1.05e-08, - "halberdier": 1.05e-08, - "hedysarum": 1.05e-08, - "heeze": 1.05e-08, - "heliodor": 1.05e-08, - "hesperidin": 1.05e-08, - "heterothallic": 1.05e-08, - "hexahedral": 1.05e-08, - "hexahedron": 1.05e-08, - "housewright": 1.05e-08, - "humification": 1.05e-08, - "huskiness": 1.05e-08, - "hybridizer": 1.05e-08, - "ianus": 1.05e-08, - "illustratively": 1.05e-08, - "inclose": 1.05e-08, - "incomparability": 1.05e-08, - "ingulf": 1.05e-08, - "inorganically": 1.05e-08, - "inro": 1.05e-08, - "instructress": 1.05e-08, - "interlaboratory": 1.05e-08, - "ironsmith": 1.05e-08, - "irrationalist": 1.05e-08, - "izle": 1.05e-08, - "jaggedly": 1.05e-08, - "jounce": 1.05e-08, - "kamik": 1.05e-08, - "karou": 1.05e-08, - "kegler": 1.05e-08, - "ketal": 1.05e-08, - "kikar": 1.05e-08, - "kikongo": 1.05e-08, - "kinnikinnick": 1.05e-08, - "knittle": 1.05e-08, - "knotgrass": 1.05e-08, - "koschei": 1.05e-08, - "labialization": 1.05e-08, - "lamna": 1.05e-08, - "latinity": 1.05e-08, - "laudation": 1.05e-08, - "ligneous": 1.05e-08, - "lineally": 1.05e-08, - "lophophora": 1.05e-08, - "lurky": 1.05e-08, - "lymphosarcoma": 1.05e-08, - "malversation": 1.05e-08, - "mandatary": 1.05e-08, - "manless": 1.05e-08, - "maomao": 1.05e-08, - "marcomanni": 1.05e-08, - "mawp": 1.05e-08, - "megajoule": 1.05e-08, - "mehtar": 1.05e-08, - "melica": 1.05e-08, - "mesonephros": 1.05e-08, - "metaphysis": 1.05e-08, - "mnemiopsis": 1.05e-08, - "molland": 1.05e-08, - "montanism": 1.05e-08, - "motherwort": 1.05e-08, - "movability": 1.05e-08, - "murinus": 1.05e-08, - "muskmelon": 1.05e-08, - "myriapod": 1.05e-08, - "napery": 1.05e-08, - "negativeness": 1.05e-08, - "nephrostomy": 1.05e-08, - "nonaffiliated": 1.05e-08, - "nonparticipating": 1.05e-08, - "nontuberculous": 1.05e-08, - "norroy": 1.05e-08, - "outbreed": 1.05e-08, - "outlandishness": 1.05e-08, - "overcut": 1.05e-08, - "overprotect": 1.05e-08, - "oxadiazole": 1.05e-08, - "padus": 1.05e-08, - "pagus": 1.05e-08, - "palanka": 1.05e-08, - "paraxylene": 1.05e-08, - "pericentral": 1.05e-08, - "phonetical": 1.05e-08, - "photoactivation": 1.05e-08, - "pillowing": 1.05e-08, - "plaister": 1.05e-08, - "playwrighting": 1.05e-08, - "pleochroism": 1.05e-08, - "pliosaur": 1.05e-08, - "postpositive": 1.05e-08, - "preoral": 1.05e-08, - "preterit": 1.05e-08, - "priorly": 1.05e-08, - "pritch": 1.05e-08, - "probational": 1.05e-08, - "pronouncer": 1.05e-08, - "psychoanalytically": 1.05e-08, - "psychopathia": 1.05e-08, - "pukeko": 1.05e-08, - "pulmonata": 1.05e-08, - "pulpotomy": 1.05e-08, - "quei": 1.05e-08, - "readopt": 1.05e-08, - "regressively": 1.05e-08, - "resorptive": 1.05e-08, - "resplendence": 1.05e-08, - "restrainer": 1.05e-08, - "retexture": 1.05e-08, - "retrogradely": 1.05e-08, - "rhyodacite": 1.05e-08, - "rimal": 1.05e-08, - "robalo": 1.05e-08, - "romanist": 1.05e-08, - "rosiness": 1.05e-08, - "ruscus": 1.05e-08, - "sampaguita": 1.05e-08, - "sandling": 1.05e-08, - "sapid": 1.05e-08, - "satura": 1.05e-08, - "sauria": 1.05e-08, - "schematism": 1.05e-08, - "scray": 1.05e-08, - "scutter": 1.05e-08, - "seamster": 1.05e-08, - "seignory": 1.05e-08, - "semibreve": 1.05e-08, - "semiskilled": 1.05e-08, - "sepiolite": 1.05e-08, - "serranus": 1.05e-08, - "setose": 1.05e-08, - "smartweed": 1.05e-08, - "snobbishly": 1.05e-08, - "soutane": 1.05e-08, - "sowle": 1.05e-08, - "speal": 1.05e-08, - "sperone": 1.05e-08, - "spondee": 1.05e-08, - "springtail": 1.05e-08, - "starflower": 1.05e-08, - "stephanotis": 1.05e-08, - "subcylindrical": 1.05e-08, - "sulpician": 1.05e-08, - "supercontest": 1.05e-08, - "supergun": 1.05e-08, - "supernational": 1.05e-08, - "suppurate": 1.05e-08, - "surgent": 1.05e-08, - "surprisal": 1.05e-08, - "survivance": 1.05e-08, - "tatarian": 1.05e-08, - "taurian": 1.05e-08, - "tetter": 1.05e-08, - "themer": 1.05e-08, - "thermoelectricity": 1.05e-08, - "thingness": 1.05e-08, - "thirstiness": 1.05e-08, - "toldo": 1.05e-08, - "torsade": 1.05e-08, - "traject": 1.05e-08, - "transillumination": 1.05e-08, - "transmarine": 1.05e-08, - "trematoda": 1.05e-08, - "trental": 1.05e-08, - "tressure": 1.05e-08, - "trichomanes": 1.05e-08, - "trilithon": 1.05e-08, - "triplication": 1.05e-08, - "trisection": 1.05e-08, - "trituration": 1.05e-08, - "troglodytic": 1.05e-08, - "trypsinogen": 1.05e-08, - "twiddly": 1.05e-08, - "tympana": 1.05e-08, - "tyrosyl": 1.05e-08, - "ubiquitousness": 1.05e-08, - "uller": 1.05e-08, - "ultimata": 1.05e-08, - "unadoptable": 1.05e-08, - "unblurred": 1.05e-08, - "unboiled": 1.05e-08, - "unburnable": 1.05e-08, - "unclutch": 1.05e-08, - "uncomplete": 1.05e-08, - "underdrain": 1.05e-08, - "underdress": 1.05e-08, - "undesigned": 1.05e-08, - "unknotted": 1.05e-08, - "unmoor": 1.05e-08, - "unmoral": 1.05e-08, - "unpickable": 1.05e-08, - "unscrupulousness": 1.05e-08, - "unstack": 1.05e-08, - "unweaned": 1.05e-08, - "urography": 1.05e-08, - "uzan": 1.05e-08, - "vailable": 1.05e-08, - "vandalization": 1.05e-08, - "volitionally": 1.05e-08, - "walloper": 1.05e-08, - "washability": 1.05e-08, - "winnower": 1.05e-08, - "abusable": 1.02e-08, - "accentor": 1.02e-08, - "accouchement": 1.02e-08, - "acetylide": 1.02e-08, - "adytum": 1.02e-08, - "aerology": 1.02e-08, - "airer": 1.02e-08, - "allanite": 1.02e-08, - "alouatta": 1.02e-08, - "amoret": 1.02e-08, - "anagnorisis": 1.02e-08, - "anagrammatic": 1.02e-08, - "andromaque": 1.02e-08, - "angami": 1.02e-08, - "aotus": 1.02e-08, - "apologetical": 1.02e-08, - "aquaplane": 1.02e-08, - "aranyaka": 1.02e-08, - "argol": 1.02e-08, - "ascendence": 1.02e-08, - "astrachan": 1.02e-08, - "athyrium": 1.02e-08, - "atrypa": 1.02e-08, - "basiliscus": 1.02e-08, - "bauta": 1.02e-08, - "beant": 1.02e-08, - "bedspring": 1.02e-08, - "beelzebul": 1.02e-08, - "benzofuran": 1.02e-08, - "bifilar": 1.02e-08, - "biquadratic": 1.02e-08, - "bismarckian": 1.02e-08, - "blamelessness": 1.02e-08, - "blasty": 1.02e-08, - "blithesome": 1.02e-08, - "blobbed": 1.02e-08, - "bookland": 1.02e-08, - "boomlet": 1.02e-08, - "bosn": 1.02e-08, - "brachydactyly": 1.02e-08, - "breeziness": 1.02e-08, - "briza": 1.02e-08, - "calcrete": 1.02e-08, - "calden": 1.02e-08, - "cambial": 1.02e-08, - "canalicular": 1.02e-08, - "canaliculus": 1.02e-08, - "candytuft": 1.02e-08, - "capsian": 1.02e-08, - "carabus": 1.02e-08, - "caragana": 1.02e-08, - "carnallite": 1.02e-08, - "carnic": 1.02e-08, - "cartelization": 1.02e-08, - "caryopsis": 1.02e-08, - "cathartically": 1.02e-08, - "chatoyant": 1.02e-08, - "chitimacha": 1.02e-08, - "chloromethane": 1.02e-08, - "chunkiness": 1.02e-08, - "citrinin": 1.02e-08, - "claggy": 1.02e-08, - "clerkly": 1.02e-08, - "clitocybe": 1.02e-08, - "coeternal": 1.02e-08, - "comfortableness": 1.02e-08, - "computus": 1.02e-08, - "concuss": 1.02e-08, - "coolheaded": 1.02e-08, - "coree": 1.02e-08, - "corsie": 1.02e-08, - "counterfoil": 1.02e-08, - "crackable": 1.02e-08, - "creaseless": 1.02e-08, - "cuarta": 1.02e-08, - "cyanohydrin": 1.02e-08, - "deathy": 1.02e-08, - "debonnaire": 1.02e-08, - "dermatophytosis": 1.02e-08, - "devolutionary": 1.02e-08, - "digitalism": 1.02e-08, - "disbalance": 1.02e-08, - "discerningly": 1.02e-08, - "disilicate": 1.02e-08, - "disputant": 1.02e-08, - "domical": 1.02e-08, - "duckpond": 1.02e-08, - "earliness": 1.02e-08, - "earthwards": 1.02e-08, - "educe": 1.02e-08, - "ejective": 1.02e-08, - "elaphe": 1.02e-08, - "elding": 1.02e-08, - "elegancy": 1.02e-08, - "encephalic": 1.02e-08, - "encyclopedist": 1.02e-08, - "endothermy": 1.02e-08, - "episcleritis": 1.02e-08, - "esclavage": 1.02e-08, - "esselen": 1.02e-08, - "establisher": 1.02e-08, - "eulogist": 1.02e-08, - "eutectoid": 1.02e-08, - "eventless": 1.02e-08, - "executer": 1.02e-08, - "exotropia": 1.02e-08, - "facilely": 1.02e-08, - "ferrate": 1.02e-08, - "ferroconcrete": 1.02e-08, - "fiberglas": 1.02e-08, - "fieldy": 1.02e-08, - "findability": 1.02e-08, - "flyman": 1.02e-08, - "foliaged": 1.02e-08, - "frictionally": 1.02e-08, - "frisket": 1.02e-08, - "frivolousness": 1.02e-08, - "fuegian": 1.02e-08, - "garishness": 1.02e-08, - "gartered": 1.02e-08, - "gastroplasty": 1.02e-08, - "gearwheel": 1.02e-08, - "geometrid": 1.02e-08, - "germanness": 1.02e-08, - "ghoom": 1.02e-08, - "gibbsite": 1.02e-08, - "goosy": 1.02e-08, - "gorgonia": 1.02e-08, - "grandaunt": 1.02e-08, - "gunong": 1.02e-08, - "harka": 1.02e-08, - "heliconius": 1.02e-08, - "hemorrhoidectomy": 1.02e-08, - "hexameric": 1.02e-08, - "histrio": 1.02e-08, - "homiletical": 1.02e-08, - "huggle": 1.02e-08, - "hyperesthesia": 1.02e-08, - "hypsometric": 1.02e-08, - "ichthyofauna": 1.02e-08, - "iconographer": 1.02e-08, - "ideologic": 1.02e-08, - "imperturbability": 1.02e-08, - "importunately": 1.02e-08, - "inapplicability": 1.02e-08, - "indusium": 1.02e-08, - "infame": 1.02e-08, - "innominata": 1.02e-08, - "intersegmental": 1.02e-08, - "intradermally": 1.02e-08, - "intratracheal": 1.02e-08, - "invertibility": 1.02e-08, - "isosteric": 1.02e-08, - "iswara": 1.02e-08, - "jamnia": 1.02e-08, - "jinrikisha": 1.02e-08, - "joom": 1.02e-08, - "kadaga": 1.02e-08, - "kamacite": 1.02e-08, - "kappe": 1.02e-08, - "khasa": 1.02e-08, - "kidskin": 1.02e-08, - "kitter": 1.02e-08, - "laccolith": 1.02e-08, - "lacemaker": 1.02e-08, - "laryngological": 1.02e-08, - "laryngologist": 1.02e-08, - "levitator": 1.02e-08, - "loiterer": 1.02e-08, - "lycanthropic": 1.02e-08, - "lycopersicon": 1.02e-08, - "lysin": 1.02e-08, - "macco": 1.02e-08, - "maculated": 1.02e-08, - "marmoreal": 1.02e-08, - "mathesis": 1.02e-08, - "mazatec": 1.02e-08, - "mediatorial": 1.02e-08, - "megalops": 1.02e-08, - "membrana": 1.02e-08, - "membranaceous": 1.02e-08, - "metamerism": 1.02e-08, - "metritis": 1.02e-08, - "misapprehend": 1.02e-08, - "mithraeum": 1.02e-08, - "modenese": 1.02e-08, - "monograptus": 1.02e-08, - "mophead": 1.02e-08, - "mopper": 1.02e-08, - "morchella": 1.02e-08, - "mukluk": 1.02e-08, - "mundari": 1.02e-08, - "necrophilic": 1.02e-08, - "neglection": 1.02e-08, - "nematocyst": 1.02e-08, - "nonbeing": 1.02e-08, - "noncognitive": 1.02e-08, - "nonconscious": 1.02e-08, - "nonsuit": 1.02e-08, - "obongo": 1.02e-08, - "olearia": 1.02e-08, - "oligospermia": 1.02e-08, - "oomycete": 1.02e-08, - "osculum": 1.02e-08, - "otherwhere": 1.02e-08, - "outsail": 1.02e-08, - "palar": 1.02e-08, - "pandaram": 1.02e-08, - "panfil": 1.02e-08, - "parnellite": 1.02e-08, - "pathic": 1.02e-08, - "penologist": 1.02e-08, - "petitgrain": 1.02e-08, - "photophone": 1.02e-08, - "photostability": 1.02e-08, - "phototype": 1.02e-08, - "physicalistic": 1.02e-08, - "phytohormone": 1.02e-08, - "picaroon": 1.02e-08, - "pictorialist": 1.02e-08, - "pisonia": 1.02e-08, - "placet": 1.02e-08, - "plaguy": 1.02e-08, - "polony": 1.02e-08, - "polysiphonia": 1.02e-08, - "potful": 1.02e-08, - "prase": 1.02e-08, - "prenominal": 1.02e-08, - "promptitude": 1.02e-08, - "quartan": 1.02e-08, - "quink": 1.02e-08, - "quivery": 1.02e-08, - "rawboned": 1.02e-08, - "reconcilement": 1.02e-08, - "reforger": 1.02e-08, - "reimportation": 1.02e-08, - "repressible": 1.02e-08, - "reservedly": 1.02e-08, - "rocklike": 1.02e-08, - "ropework": 1.02e-08, - "rosabel": 1.02e-08, - "sacculus": 1.02e-08, - "saiid": 1.02e-08, - "sanguinaria": 1.02e-08, - "scur": 1.02e-08, - "seatless": 1.02e-08, - "semitendinosus": 1.02e-08, - "shampooer": 1.02e-08, - "shuba": 1.02e-08, - "skemp": 1.02e-08, - "slatternly": 1.02e-08, - "snagger": 1.02e-08, - "spastically": 1.02e-08, - "spearwood": 1.02e-08, - "sphenodon": 1.02e-08, - "splashproof": 1.02e-08, - "stickit": 1.02e-08, - "stipendium": 1.02e-08, - "stipitate": 1.02e-08, - "stosh": 1.02e-08, - "straiten": 1.02e-08, - "suasive": 1.02e-08, - "subahdar": 1.02e-08, - "subcommander": 1.02e-08, - "subparallel": 1.02e-08, - "subscribership": 1.02e-08, - "substernal": 1.02e-08, - "substitutive": 1.02e-08, - "succi": 1.02e-08, - "supertonic": 1.02e-08, - "supraoccipital": 1.02e-08, - "swooper": 1.02e-08, - "tactfulness": 1.02e-08, - "taffarel": 1.02e-08, - "talipes": 1.02e-08, - "tallyman": 1.02e-08, - "teethe": 1.02e-08, - "thanatopsis": 1.02e-08, - "theek": 1.02e-08, - "theocrat": 1.02e-08, - "thermosiphon": 1.02e-08, - "thievish": 1.02e-08, - "thriftily": 1.02e-08, - "totalization": 1.02e-08, - "trachytic": 1.02e-08, - "triquetrum": 1.02e-08, - "troca": 1.02e-08, - "tryphena": 1.02e-08, - "unaffectedly": 1.02e-08, - "unbury": 1.02e-08, - "uncontroverted": 1.02e-08, - "undogmatic": 1.02e-08, - "unflustered": 1.02e-08, - "unformulated": 1.02e-08, - "unfulfillable": 1.02e-08, - "ungood": 1.02e-08, - "unicolorous": 1.02e-08, - "unionidae": 1.02e-08, - "unipolarity": 1.02e-08, - "unpoetic": 1.02e-08, - "unpolite": 1.02e-08, - "unpurified": 1.02e-08, - "variolation": 1.02e-08, - "vasopressor": 1.02e-08, - "vindhyan": 1.02e-08, - "vivisect": 1.02e-08, - "voluta": 1.02e-08, - "wame": 1.02e-08, - "wearier": 1.02e-08, - "westralian": 1.02e-08, - "wienie": 1.02e-08, - "wilga": 1.02e-08, - "winnard": 1.02e-08, - "wisecracker": 1.02e-08, - "xiphias": 1.02e-08, - "yellowbelly": 1.02e-08, - "zati": 1.02e-08, - "zingiberaceae": 1.02e-08, - "zwitterion": 1.02e-08, - "highkey": 2e-06, - "frfr": 2e-06, - "nocap": 2e-06, - "b2b": 5e-07, - "b2c": 5e-07 - }, - "words_by_length": { - "3": [ - { - "word": "the", - "freq": 0.0537 - }, - { - "word": "and", - "freq": 0.0257 - }, - { - "word": "for", - "freq": 0.0102 - }, - { - "word": "you", - "freq": 0.00955 - }, - { - "word": "are", - "freq": 0.0055 - }, - { - "word": "not", - "freq": 0.0049 - }, - { - "word": "but", - "freq": 0.00427 - }, - { - "word": "all", - "freq": 0.00331 - }, - { - "word": "one", - "freq": 0.00295 - }, - { - "word": "can", - "freq": 0.00288 - }, - { - "word": "out", - "freq": 0.0024 - }, - { - "word": "who", - "freq": 0.00219 - }, - { - "word": "had", - "freq": 0.00214 - }, - { - "word": "her", - "freq": 0.002 - }, - { - "word": "get", - "freq": 0.00191 - }, - { - "word": "she", - "freq": 0.00182 - }, - { - "word": "new", - "freq": 0.00178 - }, - { - "word": "how", - "freq": 0.00174 - }, - { - "word": "now", - "freq": 0.00151 - }, - { - "word": "our", - "freq": 0.00138 - }, - { - "word": "him", - "freq": 0.00129 - }, - { - "word": "see", - "freq": 0.00126 - }, - { - "word": "two", - "freq": 0.00126 - }, - { - "word": "any", - "freq": 0.00117 - }, - { - "word": "way", - "freq": 0.00102 - }, - { - "word": "may", - "freq": 0.000955 - }, - { - "word": "did", - "freq": 0.000912 - }, - { - "word": "day", - "freq": 0.000891 - }, - { - "word": "too", - "freq": 0.000891 - }, - { - "word": "off", - "freq": 0.000851 - }, - { - "word": "why", - "freq": 0.000851 - }, - { - "word": "got", - "freq": 0.000813 - }, - { - "word": "say", - "freq": 0.000776 - }, - { - "word": "man", - "freq": 0.000661 - }, - { - "word": "use", - "freq": 0.000646 - }, - { - "word": "old", - "freq": 0.000562 - }, - { - "word": "own", - "freq": 0.00055 - }, - { - "word": "end", - "freq": 0.000479 - }, - { - "word": "big", - "freq": 0.000468 - }, - { - "word": "put", - "freq": 0.000457 - }, - { - "word": "lot", - "freq": 0.000407 - }, - { - "word": "few", - "freq": 0.000398 - }, - { - "word": "let", - "freq": 0.000398 - }, - { - "word": "set", - "freq": 0.000389 - }, - { - "word": "god", - "freq": 0.000372 - }, - { - "word": "top", - "freq": 0.000372 - }, - { - "word": "yet", - "freq": 0.000347 - }, - { - "word": "bad", - "freq": 0.000339 - }, - { - "word": "men", - "freq": 0.000324 - }, - { - "word": "far", - "freq": 0.000316 - }, - { - "word": "job", - "freq": 0.000316 - }, - { - "word": "try", - "freq": 0.000316 - }, - { - "word": "run", - "freq": 0.000309 - }, - { - "word": "law", - "freq": 0.000288 - }, - { - "word": "war", - "freq": 0.000288 - }, - { - "word": "car", - "freq": 0.000282 - }, - { - "word": "per", - "freq": 0.000282 - }, - { - "word": "ago", - "freq": 0.000263 - }, - { - "word": "guy", - "freq": 0.000251 - }, - { - "word": "pay", - "freq": 0.000251 - }, - { - "word": "win", - "freq": 0.000245 - }, - { - "word": "air", - "freq": 0.000234 - }, - { - "word": "bit", - "freq": 0.000234 - }, - { - "word": "hit", - "freq": 0.000234 - }, - { - "word": "due", - "freq": 0.000224 - }, - { - "word": "ask", - "freq": 0.000219 - }, - { - "word": "saw", - "freq": 0.000219 - }, - { - "word": "low", - "freq": 0.000214 - }, - { - "word": "age", - "freq": 0.000209 - }, - { - "word": "buy", - "freq": 0.000209 - }, - { - "word": "red", - "freq": 0.000209 - }, - { - "word": "act", - "freq": 0.0002 - }, - { - "word": "fun", - "freq": 0.0002 - }, - { - "word": "art", - "freq": 0.000195 - }, - { - "word": "non", - "freq": 0.000195 - }, - { - "word": "six", - "freq": 0.000195 - }, - { - "word": "son", - "freq": 0.000191 - }, - { - "word": "cut", - "freq": 0.000174 - }, - { - "word": "sex", - "freq": 0.000166 - }, - { - "word": "won", - "freq": 0.000158 - }, - { - "word": "boy", - "freq": 0.000148 - }, - { - "word": "hot", - "freq": 0.000145 - }, - { - "word": "tax", - "freq": 0.000138 - }, - { - "word": "eat", - "freq": 0.000135 - }, - { - "word": "hey", - "freq": 0.000132 - }, - { - "word": "key", - "freq": 0.000132 - }, - { - "word": "mom", - "freq": 0.000132 - }, - { - "word": "cup", - "freq": 0.000129 - }, - { - "word": "led", - "freq": 0.000129 - }, - { - "word": "dog", - "freq": 0.000126 - }, - { - "word": "oil", - "freq": 0.000126 - }, - { - "word": "add", - "freq": 0.000123 - }, - { - "word": "met", - "freq": 0.000123 - }, - { - "word": "bed", - "freq": 0.000117 - }, - { - "word": "die", - "freq": 0.000117 - }, - { - "word": "sea", - "freq": 0.000115 - }, - { - "word": "sir", - "freq": 0.000115 - }, - { - "word": "lol", - "freq": 0.000112 - }, - { - "word": "ten", - "freq": 0.000112 - }, - { - "word": "box", - "freq": 0.00011 - }, - { - "word": "etc", - "freq": 0.000107 - }, - { - "word": "eye", - "freq": 0.000105 - }, - { - "word": "via", - "freq": 0.000105 - }, - { - "word": "ice", - "freq": 0.0001 - }, - { - "word": "kid", - "freq": 9.77e-05 - }, - { - "word": "san", - "freq": 9.33e-05 - }, - { - "word": "sun", - "freq": 9.33e-05 - }, - { - "word": "gun", - "freq": 9.12e-05 - }, - { - "word": "wow", - "freq": 9.12e-05 - }, - { - "word": "dad", - "freq": 8.91e-05 - }, - { - "word": "fit", - "freq": 8.91e-05 - }, - { - "word": "pre", - "freq": 8.91e-05 - }, - { - "word": "bar", - "freq": 8.71e-05 - }, - { - "word": "pro", - "freq": 8.71e-05 - }, - { - "word": "fan", - "freq": 8.32e-05 - }, - { - "word": "gay", - "freq": 7.94e-05 - }, - { - "word": "sit", - "freq": 7.94e-05 - }, - { - "word": "pop", - "freq": 7.41e-05 - }, - { - "word": "ran", - "freq": 7.41e-05 - }, - { - "word": "app", - "freq": 7.24e-05 - }, - { - "word": "fat", - "freq": 7.08e-05 - }, - { - "word": "lie", - "freq": 6.92e-05 - }, - { - "word": "tom", - "freq": 6.76e-05 - }, - { - "word": "mid", - "freq": 6.61e-05 - }, - { - "word": "bag", - "freq": 6.17e-05 - }, - { - "word": "bet", - "freq": 6.17e-05 - }, - { - "word": "usa", - "freq": 6.17e-05 - }, - { - "word": "cat", - "freq": 6.03e-05 - }, - { - "word": "joe", - "freq": 6.03e-05 - }, - { - "word": "nor", - "freq": 6.03e-05 - }, - { - "word": "van", - "freq": 6.03e-05 - }, - { - "word": "inc", - "freq": 5.89e-05 - }, - { - "word": "map", - "freq": 5.75e-05 - }, - { - "word": "net", - "freq": 5.75e-05 - }, - { - "word": "aid", - "freq": 5.62e-05 - }, - { - "word": "fix", - "freq": 5.62e-05 - }, - { - "word": "fly", - "freq": 5.62e-05 - }, - { - "word": "dry", - "freq": 5.5e-05 - }, - { - "word": "mad", - "freq": 5.5e-05 - }, - { - "word": "web", - "freq": 5.5e-05 - }, - { - "word": "arm", - "freq": 5.37e-05 - }, - { - "word": "bay", - "freq": 5.37e-05 - }, - { - "word": "lee", - "freq": 5.37e-05 - }, - { - "word": "tea", - "freq": 5.37e-05 - }, - { - "word": "ill", - "freq": 5.25e-05 - }, - { - "word": "sky", - "freq": 5.25e-05 - }, - { - "word": "mix", - "freq": 5.13e-05 - }, - { - "word": "ben", - "freq": 4.9e-05 - }, - { - "word": "ray", - "freq": 4.9e-05 - }, - { - "word": "era", - "freq": 4.68e-05 - }, - { - "word": "fox", - "freq": 4.57e-05 - }, - { - "word": "leg", - "freq": 4.57e-05 - }, - { - "word": "max", - "freq": 4.57e-05 - }, - { - "word": "sub", - "freq": 4.57e-05 - }, - { - "word": "lay", - "freq": 4.37e-05 - }, - { - "word": "sam", - "freq": 4.37e-05 - }, - { - "word": "sat", - "freq": 4.37e-05 - }, - { - "word": "bob", - "freq": 4.27e-05 - }, - { - "word": "iii", - "freq": 4.27e-05 - }, - { - "word": "jim", - "freq": 4.17e-05 - }, - { - "word": "don", - "freq": 3.98e-05 - }, - { - "word": "row", - "freq": 3.98e-05 - }, - { - "word": "cry", - "freq": 3.89e-05 - }, - { - "word": "kim", - "freq": 3.89e-05 - }, - { - "word": "bbc", - "freq": 3.72e-05 - }, - { - "word": "ban", - "freq": 3.55e-05 - }, - { - "word": "joy", - "freq": 3.55e-05 - }, - { - "word": "tip", - "freq": 3.55e-05 - }, - { - "word": "nfl", - "freq": 3.47e-05 - }, - { - "word": "wet", - "freq": 3.47e-05 - }, - { - "word": "hat", - "freq": 3.39e-05 - }, - { - "word": "raw", - "freq": 3.39e-05 - }, - { - "word": "aim", - "freq": 3.24e-05 - }, - { - "word": "cap", - "freq": 3.24e-05 - }, - { - "word": "dan", - "freq": 3.24e-05 - }, - { - "word": "fed", - "freq": 3.24e-05 - }, - { - "word": "fee", - "freq": 3.24e-05 - }, - { - "word": "jan", - "freq": 3.24e-05 - }, - { - "word": "tie", - "freq": 3.24e-05 - }, - { - "word": "tim", - "freq": 3.24e-05 - }, - { - "word": "rid", - "freq": 3.16e-05 - }, - { - "word": "dna", - "freq": 3.09e-05 - }, - { - "word": "gap", - "freq": 2.95e-05 - }, - { - "word": "ltd", - "freq": 2.95e-05 - }, - { - "word": "ceo", - "freq": 2.88e-05 - }, - { - "word": "egg", - "freq": 2.88e-05 - }, - { - "word": "hip", - "freq": 2.88e-05 - }, - { - "word": "mac", - "freq": 2.82e-05 - }, - { - "word": "pet", - "freq": 2.82e-05 - }, - { - "word": "tag", - "freq": 2.75e-05 - }, - { - "word": "ear", - "freq": 2.69e-05 - }, - { - "word": "fbi", - "freq": 2.69e-05 - }, - { - "word": "gym", - "freq": 2.69e-05 - }, - { - "word": "kit", - "freq": 2.63e-05 - }, - { - "word": "lab", - "freq": 2.63e-05 - }, - { - "word": "min", - "freq": 2.63e-05 - }, - { - "word": "mum", - "freq": 2.57e-05 - }, - { - "word": "tho", - "freq": 2.57e-05 - }, - { - "word": "vol", - "freq": 2.57e-05 - }, - { - "word": "bid", - "freq": 2.51e-05 - }, - { - "word": "bro", - "freq": 2.51e-05 - }, - { - "word": "hop", - "freq": 2.51e-05 - }, - { - "word": "nah", - "freq": 2.51e-05 - }, - { - "word": "pot", - "freq": 2.51e-05 - }, - { - "word": "bye", - "freq": 2.45e-05 - }, - { - "word": "nba", - "freq": 2.45e-05 - }, - { - "word": "pan", - "freq": 2.45e-05 - }, - { - "word": "yep", - "freq": 2.45e-05 - }, - { - "word": "feb", - "freq": 2.4e-05 - }, - { - "word": "jay", - "freq": 2.4e-05 - }, - { - "word": "pen", - "freq": 2.4e-05 - }, - { - "word": "cop", - "freq": 2.34e-05 - }, - { - "word": "log", - "freq": 2.34e-05 - }, - { - "word": "nov", - "freq": 2.34e-05 - }, - { - "word": "sin", - "freq": 2.34e-05 - }, - { - "word": "doc", - "freq": 2.29e-05 - }, - { - "word": "ann", - "freq": 2.24e-05 - }, - { - "word": "oct", - "freq": 2.24e-05 - }, - { - "word": "rep", - "freq": 2.24e-05 - }, - { - "word": "rio", - "freq": 2.24e-05 - }, - { - "word": "rob", - "freq": 2.24e-05 - }, - { - "word": "ate", - "freq": 2.19e-05 - }, - { - "word": "sum", - "freq": 2.19e-05 - }, - { - "word": "aug", - "freq": 2.14e-05 - }, - { - "word": "gen", - "freq": 2.14e-05 - }, - { - "word": "del", - "freq": 2.09e-05 - }, - { - "word": "eve", - "freq": 2.09e-05 - }, - { - "word": "ian", - "freq": 2.09e-05 - }, - { - "word": "ali", - "freq": 2.04e-05 - }, - { - "word": "jon", - "freq": 2.04e-05 - }, - { - "word": "sec", - "freq": 2.04e-05 - }, - { - "word": "bat", - "freq": 2e-05 - }, - { - "word": "bow", - "freq": 2e-05 - }, - { - "word": "toy", - "freq": 2e-05 - }, - { - "word": "dec", - "freq": 1.95e-05 - }, - { - "word": "jet", - "freq": 1.95e-05 - }, - { - "word": "ton", - "freq": 1.95e-05 - }, - { - "word": "cnn", - "freq": 1.91e-05 - }, - { - "word": "con", - "freq": 1.91e-05 - }, - { - "word": "pin", - "freq": 1.91e-05 - }, - { - "word": "tap", - "freq": 1.91e-05 - }, - { - "word": "huh", - "freq": 1.86e-05 - }, - { - "word": "pit", - "freq": 1.86e-05 - }, - { - "word": "rip", - "freq": 1.82e-05 - }, - { - "word": "ted", - "freq": 1.82e-05 - }, - { - "word": "yea", - "freq": 1.82e-05 - }, - { - "word": "des", - "freq": 1.78e-05 - }, - { - "word": "dvd", - "freq": 1.78e-05 - }, - { - "word": "roy", - "freq": 1.78e-05 - }, - { - "word": "abc", - "freq": 1.74e-05 - }, - { - "word": "pat", - "freq": 1.74e-05 - }, - { - "word": "spy", - "freq": 1.74e-05 - }, - { - "word": "leo", - "freq": 1.7e-05 - }, - { - "word": "pub", - "freq": 1.7e-05 - }, - { - "word": "bin", - "freq": 1.66e-05 - }, - { - "word": "com", - "freq": 1.66e-05 - }, - { - "word": "dig", - "freq": 1.66e-05 - }, - { - "word": "gop", - "freq": 1.66e-05 - }, - { - "word": "ron", - "freq": 1.66e-05 - }, - { - "word": "sue", - "freq": 1.66e-05 - }, - { - "word": "ugh", - "freq": 1.66e-05 - }, - { - "word": "wtf", - "freq": 1.66e-05 - }, - { - "word": "arc", - "freq": 1.62e-05 - }, - { - "word": "cia", - "freq": 1.62e-05 - }, - { - "word": "ken", - "freq": 1.62e-05 - }, - { - "word": "amy", - "freq": 1.58e-05 - }, - { - "word": "bug", - "freq": 1.58e-05 - }, - { - "word": "pic", - "freq": 1.58e-05 - }, - { - "word": "lit", - "freq": 1.55e-05 - }, - { - "word": "mar", - "freq": 1.55e-05 - }, - { - "word": "pie", - "freq": 1.55e-05 - }, - { - "word": "ram", - "freq": 1.55e-05 - }, - { - "word": "lap", - "freq": 1.51e-05 - }, - { - "word": "oak", - "freq": 1.51e-05 - }, - { - "word": "tbh", - "freq": 1.51e-05 - }, - { - "word": "dam", - "freq": 1.48e-05 - }, - { - "word": "hiv", - "freq": 1.48e-05 - }, - { - "word": "idk", - "freq": 1.48e-05 - }, - { - "word": "jam", - "freq": 1.48e-05 - }, - { - "word": "rat", - "freq": 1.48e-05 - }, - { - "word": "von", - "freq": 1.48e-05 - }, - { - "word": "ash", - "freq": 1.45e-05 - }, - { - "word": "der", - "freq": 1.45e-05 - }, - { - "word": "shy", - "freq": 1.45e-05 - }, - { - "word": "aka", - "freq": 1.41e-05 - }, - { - "word": "ion", - "freq": 1.41e-05 - }, - { - "word": "par", - "freq": 1.41e-05 - }, - { - "word": "cow", - "freq": 1.38e-05 - }, - { - "word": "pig", - "freq": 1.38e-05 - }, - { - "word": "rod", - "freq": 1.38e-05 - }, - { - "word": "zoo", - "freq": 1.38e-05 - }, - { - "word": "lip", - "freq": 1.35e-05 - }, - { - "word": "mud", - "freq": 1.35e-05 - }, - { - "word": "owe", - "freq": 1.35e-05 - }, - { - "word": "ski", - "freq": 1.35e-05 - }, - { - "word": "ham", - "freq": 1.32e-05 - }, - { - "word": "ios", - "freq": 1.32e-05 - }, - { - "word": "rap", - "freq": 1.32e-05 - }, - { - "word": "rev", - "freq": 1.32e-05 - }, - { - "word": "sri", - "freq": 1.32e-05 - }, - { - "word": "ace", - "freq": 1.29e-05 - }, - { - "word": "est", - "freq": 1.29e-05 - }, - { - "word": "hmm", - "freq": 1.29e-05 - }, - { - "word": "thy", - "freq": 1.29e-05 - }, - { - "word": "cam", - "freq": 1.26e-05 - }, - { - "word": "fig", - "freq": 1.26e-05 - }, - { - "word": "ore", - "freq": 1.26e-05 - }, - { - "word": "bee", - "freq": 1.23e-05 - }, - { - "word": "hug", - "freq": 1.23e-05 - }, - { - "word": "bud", - "freq": 1.2e-05 - }, - { - "word": "duo", - "freq": 1.2e-05 - }, - { - "word": "hub", - "freq": 1.2e-05 - }, - { - "word": "bio", - "freq": 1.17e-05 - }, - { - "word": "ink", - "freq": 1.17e-05 - }, - { - "word": "inn", - "freq": 1.17e-05 - }, - { - "word": "phd", - "freq": 1.17e-05 - }, - { - "word": "toe", - "freq": 1.17e-05 - }, - { - "word": "btw", - "freq": 1.15e-05 - }, - { - "word": "yup", - "freq": 1.15e-05 - }, - { - "word": "beg", - "freq": 1.12e-05 - }, - { - "word": "dip", - "freq": 1.12e-05 - }, - { - "word": "nyc", - "freq": 1.12e-05 - }, - { - "word": "omg", - "freq": 1.12e-05 - }, - { - "word": "ave", - "freq": 1.1e-05 - }, - { - "word": "cum", - "freq": 1.1e-05 - }, - { - "word": "nut", - "freq": 1.1e-05 - }, - { - "word": "fur", - "freq": 1.07e-05 - }, - { - "word": "mob", - "freq": 1.07e-05 - }, - { - "word": "mph", - "freq": 1.07e-05 - }, - { - "word": "til", - "freq": 1.07e-05 - }, - { - "word": "tin", - "freq": 1.07e-05 - }, - { - "word": "ive", - "freq": 1.05e-05 - }, - { - "word": "apr", - "freq": 1.05e-05 - }, - { - "word": "ego", - "freq": 1.05e-05 - }, - { - "word": "gut", - "freq": 1.05e-05 - }, - { - "word": "nbc", - "freq": 1.05e-05 - }, - { - "word": "nhl", - "freq": 1.05e-05 - }, - { - "word": "abu", - "freq": 1.02e-05 - }, - { - "word": "cal", - "freq": 1.02e-05 - }, - { - "word": "den", - "freq": 1.02e-05 - }, - { - "word": "gov", - "freq": 1.02e-05 - }, - { - "word": "pad", - "freq": 1.02e-05 - }, - { - "word": "sen", - "freq": 1.02e-05 - }, - { - "word": "seo", - "freq": 1.02e-05 - }, - { - "word": "tan", - "freq": 1.02e-05 - }, - { - "word": "gdp", - "freq": 1e-05 - }, - { - "word": "nhs", - "freq": 1e-05 - }, - { - "word": "neo", - "freq": 9.77e-06 - }, - { - "word": "pal", - "freq": 9.77e-06 - }, - { - "word": "gig", - "freq": 9.55e-06 - }, - { - "word": "jaw", - "freq": 9.55e-06 - }, - { - "word": "jin", - "freq": 9.55e-06 - }, - { - "word": "usb", - "freq": 9.55e-06 - }, - { - "word": "rub", - "freq": 9.33e-06 - }, - { - "word": "usd", - "freq": 9.33e-06 - }, - { - "word": "wwe", - "freq": 9.33e-06 - }, - { - "word": "hes", - "freq": 9.12e-06 - }, - { - "word": "flu", - "freq": 9.12e-06 - }, - { - "word": "pee", - "freq": 9.12e-06 - }, - { - "word": "spa", - "freq": 9.12e-06 - }, - { - "word": "tab", - "freq": 9.12e-06 - }, - { - "word": "wit", - "freq": 9.12e-06 - }, - { - "word": "cab", - "freq": 8.91e-06 - }, - { - "word": "chi", - "freq": 8.91e-06 - }, - { - "word": "col", - "freq": 8.91e-06 - }, - { - "word": "ing", - "freq": 8.91e-06 - }, - { - "word": "ref", - "freq": 8.91e-06 - }, - { - "word": "cox", - "freq": 8.71e-06 - }, - { - "word": "gum", - "freq": 8.71e-06 - }, - { - "word": "jun", - "freq": 8.71e-06 - }, - { - "word": "lou", - "freq": 8.71e-06 - }, - { - "word": "sci", - "freq": 8.71e-06 - }, - { - "word": "sep", - "freq": 8.71e-06 - }, - { - "word": "und", - "freq": 8.71e-06 - }, - { - "word": "han", - "freq": 8.51e-06 - }, - { - "word": "ibm", - "freq": 8.51e-06 - }, - { - "word": "jar", - "freq": 8.51e-06 - }, - { - "word": "kay", - "freq": 8.51e-06 - }, - { - "word": "pac", - "freq": 8.51e-06 - }, - { - "word": "bmw", - "freq": 8.32e-06 - }, - { - "word": "boo", - "freq": 8.32e-06 - }, - { - "word": "wax", - "freq": 8.32e-06 - }, - { - "word": "yay", - "freq": 8.32e-06 - }, - { - "word": "def", - "freq": 8.13e-06 - }, - { - "word": "hay", - "freq": 8.13e-06 - }, - { - "word": "mod", - "freq": 8.13e-06 - }, - { - "word": "epa", - "freq": 7.94e-06 - }, - { - "word": "eva", - "freq": 7.94e-06 - }, - { - "word": "fog", - "freq": 7.94e-06 - }, - { - "word": "gif", - "freq": 7.94e-06 - }, - { - "word": "lad", - "freq": 7.94e-06 - }, - { - "word": "opt", - "freq": 7.94e-06 - }, - { - "word": "tel", - "freq": 7.94e-06 - }, - { - "word": "vet", - "freq": 7.94e-06 - }, - { - "word": "ana", - "freq": 7.76e-06 - }, - { - "word": "aye", - "freq": 7.76e-06 - }, - { - "word": "cod", - "freq": 7.76e-06 - }, - { - "word": "cuz", - "freq": 7.76e-06 - }, - { - "word": "fry", - "freq": 7.76e-06 - }, - { - "word": "hon", - "freq": 7.76e-06 - }, - { - "word": "irs", - "freq": 7.76e-06 - }, - { - "word": "mvp", - "freq": 7.76e-06 - }, - { - "word": "rex", - "freq": 7.76e-06 - }, - { - "word": "dem", - "freq": 7.59e-06 - }, - { - "word": "med", - "freq": 7.59e-06 - }, - { - "word": "fda", - "freq": 7.41e-06 - }, - { - "word": "gem", - "freq": 7.41e-06 - }, - { - "word": "jew", - "freq": 7.41e-06 - }, - { - "word": "mia", - "freq": 7.41e-06 - }, - { - "word": "mtv", - "freq": 7.41e-06 - }, - { - "word": "owl", - "freq": 7.41e-06 - }, - { - "word": "wee", - "freq": 7.41e-06 - }, - { - "word": "woo", - "freq": 7.41e-06 - }, - { - "word": "zip", - "freq": 7.41e-06 - }, - { - "word": "ahh", - "freq": 7.24e-06 - }, - { - "word": "dug", - "freq": 7.24e-06 - }, - { - "word": "mon", - "freq": 7.24e-06 - }, - { - "word": "nsa", - "freq": 7.24e-06 - }, - { - "word": "rig", - "freq": 7.24e-06 - }, - { - "word": "url", - "freq": 7.24e-06 - }, - { - "word": "atm", - "freq": 7.08e-06 - }, - { - "word": "bra", - "freq": 7.08e-06 - }, - { - "word": "mlb", - "freq": 7.08e-06 - }, - { - "word": "rim", - "freq": 7.08e-06 - }, - { - "word": "tub", - "freq": 7.08e-06 - }, - { - "word": "ufc", - "freq": 7.08e-06 - }, - { - "word": "dee", - "freq": 6.92e-06 - }, - { - "word": "doe", - "freq": 6.92e-06 - }, - { - "word": "gel", - "freq": 6.92e-06 - }, - { - "word": "hut", - "freq": 6.92e-06 - }, - { - "word": "ira", - "freq": 6.92e-06 - }, - { - "word": "mat", - "freq": 6.92e-06 - }, - { - "word": "pdf", - "freq": 6.92e-06 - }, - { - "word": "que", - "freq": 6.92e-06 - }, - { - "word": "sox", - "freq": 6.92e-06 - }, - { - "word": "vic", - "freq": 6.92e-06 - }, - { - "word": "vii", - "freq": 6.92e-06 - }, - { - "word": "ivy", - "freq": 6.76e-06 - }, - { - "word": "liz", - "freq": 6.76e-06 - }, - { - "word": "llc", - "freq": 6.76e-06 - }, - { - "word": "bot", - "freq": 6.61e-06 - }, - { - "word": "dye", - "freq": 6.61e-06 - }, - { - "word": "nap", - "freq": 6.61e-06 - }, - { - "word": "tee", - "freq": 6.61e-06 - }, - { - "word": "alt", - "freq": 6.46e-06 - }, - { - "word": "gal", - "freq": 6.46e-06 - }, - { - "word": "lid", - "freq": 6.46e-06 - }, - { - "word": "mic", - "freq": 6.46e-06 - }, - { - "word": "nsw", - "freq": 6.46e-06 - }, - { - "word": "afl", - "freq": 6.31e-06 - }, - { - "word": "amp", - "freq": 6.31e-06 - }, - { - "word": "awe", - "freq": 6.31e-06 - }, - { - "word": "diy", - "freq": 6.31e-06 - }, - { - "word": "lin", - "freq": 6.31e-06 - }, - { - "word": "mel", - "freq": 6.31e-06 - }, - { - "word": "sim", - "freq": 6.31e-06 - }, - { - "word": "wan", - "freq": 6.31e-06 - }, - { - "word": "axe", - "freq": 6.17e-06 - }, - { - "word": "hid", - "freq": 6.17e-06 - }, - { - "word": "iso", - "freq": 6.17e-06 - }, - { - "word": "mls", - "freq": 6.17e-06 - }, - { - "word": "rey", - "freq": 6.17e-06 - }, - { - "word": "dom", - "freq": 6.03e-06 - }, - { - "word": "quo", - "freq": 6.03e-06 - }, - { - "word": "soo", - "freq": 6.03e-06 - }, - { - "word": "aaa", - "freq": 5.89e-06 - }, - { - "word": "kai", - "freq": 5.89e-06 - }, - { - "word": "dev", - "freq": 5.75e-06 - }, - { - "word": "ooh", - "freq": 5.75e-06 - }, - { - "word": "vip", - "freq": 5.75e-06 - }, - { - "word": "ark", - "freq": 5.62e-06 - }, - { - "word": "blu", - "freq": 5.62e-06 - }, - { - "word": "bum", - "freq": 5.62e-06 - }, - { - "word": "cue", - "freq": 5.62e-06 - }, - { - "word": "fcc", - "freq": 5.62e-06 - }, - { - "word": "lib", - "freq": 5.62e-06 - }, - { - "word": "nat", - "freq": 5.62e-06 - }, - { - "word": "rom", - "freq": 5.62e-06 - }, - { - "word": "uae", - "freq": 5.62e-06 - }, - { - "word": "eli", - "freq": 5.5e-06 - }, - { - "word": "hbo", - "freq": 5.5e-06 - }, - { - "word": "liu", - "freq": 5.5e-06 - }, - { - "word": "mil", - "freq": 5.5e-06 - }, - { - "word": "mit", - "freq": 5.5e-06 - }, - { - "word": "nod", - "freq": 5.5e-06 - }, - { - "word": "ole", - "freq": 5.37e-06 - }, - { - "word": "usc", - "freq": 5.37e-06 - }, - { - "word": "xxx", - "freq": 5.37e-06 - }, - { - "word": "yen", - "freq": 5.37e-06 - }, - { - "word": "cpu", - "freq": 5.25e-06 - }, - { - "word": "ish", - "freq": 5.25e-06 - }, - { - "word": "rug", - "freq": 5.25e-06 - }, - { - "word": "tow", - "freq": 5.25e-06 - }, - { - "word": "ada", - "freq": 5.13e-06 - }, - { - "word": "bon", - "freq": 5.13e-06 - }, - { - "word": "eco", - "freq": 5.13e-06 - }, - { - "word": "imo", - "freq": 5.13e-06 - }, - { - "word": "mag", - "freq": 5.13e-06 - }, - { - "word": "mug", - "freq": 5.13e-06 - }, - { - "word": "ned", - "freq": 5.13e-06 - }, - { - "word": "tri", - "freq": 5.13e-06 - }, - { - "word": "val", - "freq": 5.13e-06 - }, - { - "word": "afc", - "freq": 5.01e-06 - }, - { - "word": "cha", - "freq": 5.01e-06 - }, - { - "word": "fin", - "freq": 5.01e-06 - }, - { - "word": "nam", - "freq": 5.01e-06 - }, - { - "word": "rot", - "freq": 5.01e-06 - }, - { - "word": "sur", - "freq": 5.01e-06 - }, - { - "word": "utc", - "freq": 5.01e-06 - }, - { - "word": "zen", - "freq": 5.01e-06 - }, - { - "word": "apt", - "freq": 4.9e-06 - }, - { - "word": "pls", - "freq": 4.9e-06 - }, - { - "word": "sol", - "freq": 4.9e-06 - }, - { - "word": "uni", - "freq": 4.9e-06 - }, - { - "word": "ale", - "freq": 4.79e-06 - }, - { - "word": "api", - "freq": 4.79e-06 - }, - { - "word": "gin", - "freq": 4.79e-06 - }, - { - "word": "reg", - "freq": 4.79e-06 - }, - { - "word": "rna", - "freq": 4.79e-06 - }, - { - "word": "wii", - "freq": 4.79e-06 - }, - { - "word": "acc", - "freq": 4.68e-06 - }, - { - "word": "aww", - "freq": 4.68e-06 - }, - { - "word": "hal", - "freq": 4.68e-06 - }, - { - "word": "heh", - "freq": 4.68e-06 - }, - { - "word": "lag", - "freq": 4.68e-06 - }, - { - "word": "sac", - "freq": 4.68e-06 - }, - { - "word": "sip", - "freq": 4.68e-06 - }, - { - "word": "wed", - "freq": 4.57e-06 - }, - { - "word": "bbq", - "freq": 4.57e-06 - }, - { - "word": "eng", - "freq": 4.57e-06 - }, - { - "word": "exp", - "freq": 4.57e-06 - }, - { - "word": "ppl", - "freq": 4.57e-06 - }, - { - "word": "zoe", - "freq": 4.57e-06 - }, - { - "word": "cbd", - "freq": 4.47e-06 - }, - { - "word": "elf", - "freq": 4.47e-06 - }, - { - "word": "gmt", - "freq": 4.47e-06 - }, - { - "word": "kin", - "freq": 4.47e-06 - }, - { - "word": "mae", - "freq": 4.47e-06 - }, - { - "word": "var", - "freq": 4.47e-06 - }, - { - "word": "bam", - "freq": 4.37e-06 - }, - { - "word": "dub", - "freq": 4.37e-06 - }, - { - "word": "icc", - "freq": 4.37e-06 - }, - { - "word": "jul", - "freq": 4.37e-06 - }, - { - "word": "kat", - "freq": 4.37e-06 - }, - { - "word": "lan", - "freq": 4.37e-06 - }, - { - "word": "nun", - "freq": 4.37e-06 - }, - { - "word": "pup", - "freq": 4.37e-06 - }, - { - "word": "raf", - "freq": 4.37e-06 - }, - { - "word": "wig", - "freq": 4.37e-06 - }, - { - "word": "dow", - "freq": 4.27e-06 - }, - { - "word": "fax", - "freq": 4.27e-06 - }, - { - "word": "gag", - "freq": 4.27e-06 - }, - { - "word": "gee", - "freq": 4.27e-06 - }, - { - "word": "rum", - "freq": 4.27e-06 - }, - { - "word": "soy", - "freq": 4.27e-06 - }, - { - "word": "tar", - "freq": 4.27e-06 - }, - { - "word": "abe", - "freq": 4.17e-06 - }, - { - "word": "dim", - "freq": 4.17e-06 - }, - { - "word": "doo", - "freq": 4.17e-06 - }, - { - "word": "rec", - "freq": 4.17e-06 - }, - { - "word": "sic", - "freq": 4.17e-06 - }, - { - "word": "snp", - "freq": 4.17e-06 - }, - { - "word": "tha", - "freq": 4.17e-06 - }, - { - "word": "geo", - "freq": 4.07e-06 - }, - { - "word": "pga", - "freq": 4.07e-06 - }, - { - "word": "plc", - "freq": 4.07e-06 - }, - { - "word": "suv", - "freq": 4.07e-06 - }, - { - "word": "duh", - "freq": 3.98e-06 - }, - { - "word": "mao", - "freq": 3.98e-06 - }, - { - "word": "ohh", - "freq": 3.98e-06 - }, - { - "word": "pam", - "freq": 3.98e-06 - }, - { - "word": "sap", - "freq": 3.98e-06 - }, - { - "word": "cdc", - "freq": 3.89e-06 - }, - { - "word": "cis", - "freq": 3.89e-06 - }, - { - "word": "fla", - "freq": 3.89e-06 - }, - { - "word": "gta", - "freq": 3.89e-06 - }, - { - "word": "hum", - "freq": 3.89e-06 - }, - { - "word": "isa", - "freq": 3.89e-06 - }, - { - "word": "mma", - "freq": 3.89e-06 - }, - { - "word": "rib", - "freq": 3.89e-06 - }, - { - "word": "bae", - "freq": 3.8e-06 - }, - { - "word": "dnc", - "freq": 3.8e-06 - }, - { - "word": "jen", - "freq": 3.8e-06 - }, - { - "word": "hai", - "freq": 3.72e-06 - }, - { - "word": "hog", - "freq": 3.72e-06 - }, - { - "word": "ind", - "freq": 3.72e-06 - }, - { - "word": "lea", - "freq": 3.72e-06 - }, - { - "word": "sid", - "freq": 3.72e-06 - }, - { - "word": "tor", - "freq": 3.72e-06 - }, - { - "word": "umm", - "freq": 3.72e-06 - }, - { - "word": "aha", - "freq": 3.63e-06 - }, - { - "word": "bun", - "freq": 3.63e-06 - }, - { - "word": "din", - "freq": 3.63e-06 - }, - { - "word": "dir", - "freq": 3.63e-06 - }, - { - "word": "hen", - "freq": 3.63e-06 - }, - { - "word": "mri", - "freq": 3.63e-06 - }, - { - "word": "rue", - "freq": 3.63e-06 - }, - { - "word": "sup", - "freq": 3.63e-06 - }, - { - "word": "vow", - "freq": 3.63e-06 - }, - { - "word": "dat", - "freq": 3.55e-06 - }, - { - "word": "esp", - "freq": 3.55e-06 - }, - { - "word": "gil", - "freq": 3.55e-06 - }, - { - "word": "mal", - "freq": 3.55e-06 - }, - { - "word": "mba", - "freq": 3.55e-06 - }, - { - "word": "meg", - "freq": 3.55e-06 - }, - { - "word": "mmm", - "freq": 3.55e-06 - }, - { - "word": "org", - "freq": 3.55e-06 - }, - { - "word": "phi", - "freq": 3.55e-06 - }, - { - "word": "poe", - "freq": 3.55e-06 - }, - { - "word": "pun", - "freq": 3.55e-06 - }, - { - "word": "rag", - "freq": 3.55e-06 - }, - { - "word": "raj", - "freq": 3.55e-06 - }, - { - "word": "sgt", - "freq": 3.55e-06 - }, - { - "word": "bjp", - "freq": 3.47e-06 - }, - { - "word": "gpa", - "freq": 3.47e-06 - }, - { - "word": "hah", - "freq": 3.47e-06 - }, - { - "word": "icy", - "freq": 3.47e-06 - }, - { - "word": "lax", - "freq": 3.47e-06 - }, - { - "word": "pea", - "freq": 3.47e-06 - }, - { - "word": "poo", - "freq": 3.47e-06 - }, - { - "word": "vat", - "freq": 3.47e-06 - }, - { - "word": "yah", - "freq": 3.47e-06 - }, - { - "word": "ari", - "freq": 3.39e-06 - }, - { - "word": "imf", - "freq": 3.39e-06 - }, - { - "word": "itv", - "freq": 3.39e-06 - }, - { - "word": "mai", - "freq": 3.39e-06 - }, - { - "word": "tad", - "freq": 3.39e-06 - }, - { - "word": "yan", - "freq": 3.39e-06 - }, - { - "word": "amd", - "freq": 3.31e-06 - }, - { - "word": "ang", - "freq": 3.31e-06 - }, - { - "word": "dew", - "freq": 3.31e-06 - }, - { - "word": "fam", - "freq": 3.31e-06 - }, - { - "word": "fyi", - "freq": 3.31e-06 - }, - { - "word": "nfc", - "freq": 3.31e-06 - }, - { - "word": "pbs", - "freq": 3.31e-06 - }, - { - "word": "pep", - "freq": 3.31e-06 - }, - { - "word": "rpg", - "freq": 3.31e-06 - }, - { - "word": "rye", - "freq": 3.31e-06 - }, - { - "word": "tex", - "freq": 3.31e-06 - }, - { - "word": "wal", - "freq": 3.31e-06 - }, - { - "word": "yrs", - "freq": 3.31e-06 - }, - { - "word": "atp", - "freq": 3.24e-06 - }, - { - "word": "foe", - "freq": 3.24e-06 - }, - { - "word": "iot", - "freq": 3.24e-06 - }, - { - "word": "tae", - "freq": 3.24e-06 - }, - { - "word": "chu", - "freq": 3.16e-06 - }, - { - "word": "faa", - "freq": 3.16e-06 - }, - { - "word": "hee", - "freq": 3.16e-06 - }, - { - "word": "lex", - "freq": 3.16e-06 - }, - { - "word": "lsu", - "freq": 3.16e-06 - }, - { - "word": "moe", - "freq": 3.16e-06 - }, - { - "word": "por", - "freq": 3.16e-06 - }, - { - "word": "rad", - "freq": 3.16e-06 - }, - { - "word": "smh", - "freq": 3.16e-06 - }, - { - "word": "tai", - "freq": 3.16e-06 - }, - { - "word": "tug", - "freq": 3.16e-06 - }, - { - "word": "ava", - "freq": 3.09e-06 - }, - { - "word": "cbc", - "freq": 3.09e-06 - }, - { - "word": "cho", - "freq": 3.09e-06 - }, - { - "word": "cub", - "freq": 3.09e-06 - }, - { - "word": "edt", - "freq": 3.09e-06 - }, - { - "word": "elk", - "freq": 3.09e-06 - }, - { - "word": "eur", - "freq": 3.09e-06 - }, - { - "word": "hue", - "freq": 3.09e-06 - }, - { - "word": "nan", - "freq": 3.09e-06 - }, - { - "word": "peg", - "freq": 3.09e-06 - }, - { - "word": "rpm", - "freq": 3.09e-06 - }, - { - "word": "ser", - "freq": 3.09e-06 - }, - { - "word": "tao", - "freq": 3.09e-06 - }, - { - "word": "wen", - "freq": 3.09e-06 - }, - { - "word": "aca", - "freq": 3.02e-06 - }, - { - "word": "ama", - "freq": 3.02e-06 - }, - { - "word": "ape", - "freq": 3.02e-06 - }, - { - "word": "fir", - "freq": 3.02e-06 - }, - { - "word": "paw", - "freq": 3.02e-06 - }, - { - "word": "psa", - "freq": 3.02e-06 - }, - { - "word": "rae", - "freq": 3.02e-06 - }, - { - "word": "rss", - "freq": 3.02e-06 - }, - { - "word": "sal", - "freq": 3.02e-06 - }, - { - "word": "tit", - "freq": 3.02e-06 - }, - { - "word": "ufo", - "freq": 3.02e-06 - }, - { - "word": "yoo", - "freq": 3.02e-06 - }, - { - "word": "aap", - "freq": 2.95e-06 - }, - { - "word": "ibn", - "freq": 2.95e-06 - }, - { - "word": "lcd", - "freq": 2.95e-06 - }, - { - "word": "rbi", - "freq": 2.95e-06 - }, - { - "word": "ain", - "freq": 2.88e-06 - }, - { - "word": "che", - "freq": 2.88e-06 - }, - { - "word": "gao", - "freq": 2.88e-06 - }, - { - "word": "npr", - "freq": 2.88e-06 - }, - { - "word": "ren", - "freq": 2.88e-06 - }, - { - "word": "shi", - "freq": 2.88e-06 - }, - { - "word": "wei", - "freq": 2.88e-06 - }, - { - "word": "yum", - "freq": 2.88e-06 - }, - { - "word": "anc", - "freq": 2.82e-06 - }, - { - "word": "nra", - "freq": 2.82e-06 - }, - { - "word": "psi", - "freq": 2.82e-06 - }, - { - "word": "sew", - "freq": 2.82e-06 - }, - { - "word": "uhh", - "freq": 2.82e-06 - }, - { - "word": "wah", - "freq": 2.82e-06 - }, - { - "word": "xii", - "freq": 2.82e-06 - }, - { - "word": "asa", - "freq": 2.75e-06 - }, - { - "word": "aux", - "freq": 2.75e-06 - }, - { - "word": "jfk", - "freq": 2.75e-06 - }, - { - "word": "kia", - "freq": 2.75e-06 - }, - { - "word": "lam", - "freq": 2.75e-06 - }, - { - "word": "ooo", - "freq": 2.75e-06 - }, - { - "word": "pow", - "freq": 2.75e-06 - }, - { - "word": "roe", - "freq": 2.75e-06 - }, - { - "word": "una", - "freq": 2.75e-06 - }, - { - "word": "wat", - "freq": 2.75e-06 - }, - { - "word": "bmi", - "freq": 2.69e-06 - }, - { - "word": "btc", - "freq": 2.69e-06 - }, - { - "word": "dre", - "freq": 2.69e-06 - }, - { - "word": "htc", - "freq": 2.69e-06 - }, - { - "word": "irl", - "freq": 2.69e-06 - }, - { - "word": "len", - "freq": 2.69e-06 - }, - { - "word": "mhz", - "freq": 2.69e-06 - }, - { - "word": "nay", - "freq": 2.69e-06 - }, - { - "word": "ngo", - "freq": 2.69e-06 - }, - { - "word": "pol", - "freq": 2.69e-06 - }, - { - "word": "bel", - "freq": 2.63e-06 - }, - { - "word": "cpr", - "freq": 2.63e-06 - }, - { - "word": "css", - "freq": 2.63e-06 - }, - { - "word": "dlc", - "freq": 2.63e-06 - }, - { - "word": "fri", - "freq": 2.63e-06 - }, - { - "word": "hoc", - "freq": 2.63e-06 - }, - { - "word": "ike", - "freq": 2.63e-06 - }, - { - "word": "jae", - "freq": 2.63e-06 - }, - { - "word": "php", - "freq": 2.63e-06 - }, - { - "word": "std", - "freq": 2.63e-06 - }, - { - "word": "ver", - "freq": 2.63e-06 - }, - { - "word": "vin", - "freq": 2.63e-06 - }, - { - "word": "cad", - "freq": 2.57e-06 - }, - { - "word": "goo", - "freq": 2.57e-06 - }, - { - "word": "maj", - "freq": 2.57e-06 - }, - { - "word": "pew", - "freq": 2.57e-06 - }, - { - "word": "boi", - "freq": 2.51e-06 - }, - { - "word": "goa", - "freq": 2.51e-06 - }, - { - "word": "meh", - "freq": 2.51e-06 - }, - { - "word": "nic", - "freq": 2.51e-06 - }, - { - "word": "pak", - "freq": 2.51e-06 - }, - { - "word": "sly", - "freq": 2.51e-06 - }, - { - "word": "vid", - "freq": 2.51e-06 - }, - { - "word": "xvi", - "freq": 2.51e-06 - }, - { - "word": "aft", - "freq": 2.45e-06 - }, - { - "word": "dea", - "freq": 2.45e-06 - }, - { - "word": "eff", - "freq": 2.45e-06 - }, - { - "word": "err", - "freq": 2.45e-06 - }, - { - "word": "fab", - "freq": 2.45e-06 - }, - { - "word": "liv", - "freq": 2.45e-06 - }, - { - "word": "mei", - "freq": 2.45e-06 - }, - { - "word": "mop", - "freq": 2.45e-06 - }, - { - "word": "roi", - "freq": 2.45e-06 - }, - { - "word": "vpn", - "freq": 2.45e-06 - }, - { - "word": "xiv", - "freq": 2.45e-06 - }, - { - "word": "amc", - "freq": 2.4e-06 - }, - { - "word": "blm", - "freq": 2.4e-06 - }, - { - "word": "det", - "freq": 2.4e-06 - }, - { - "word": "gst", - "freq": 2.4e-06 - }, - { - "word": "hms", - "freq": 2.4e-06 - }, - { - "word": "hoo", - "freq": 2.4e-06 - }, - { - "word": "hun", - "freq": 2.4e-06 - }, - { - "word": "lte", - "freq": 2.4e-06 - }, - { - "word": "mir", - "freq": 2.4e-06 - }, - { - "word": "ndp", - "freq": 2.4e-06 - }, - { - "word": "sbs", - "freq": 2.4e-06 - }, - { - "word": "sow", - "freq": 2.4e-06 - }, - { - "word": "sql", - "freq": 2.4e-06 - }, - { - "word": "zac", - "freq": 2.4e-06 - }, - { - "word": "acl", - "freq": 2.34e-06 - }, - { - "word": "avg", - "freq": 2.34e-06 - }, - { - "word": "cgi", - "freq": 2.34e-06 - }, - { - "word": "div", - "freq": 2.34e-06 - }, - { - "word": "eta", - "freq": 2.34e-06 - }, - { - "word": "ipo", - "freq": 2.34e-06 - }, - { - "word": "jai", - "freq": 2.34e-06 - }, - { - "word": "kan", - "freq": 2.34e-06 - }, - { - "word": "nrl", - "freq": 2.34e-06 - }, - { - "word": "sao", - "freq": 2.34e-06 - }, - { - "word": "www", - "freq": 2.34e-06 - }, - { - "word": "bop", - "freq": 2.29e-06 - }, - { - "word": "elm", - "freq": 2.29e-06 - }, - { - "word": "git", - "freq": 2.29e-06 - }, - { - "word": "png", - "freq": 2.29e-06 - }, - { - "word": "yer", - "freq": 2.29e-06 - }, - { - "word": "afp", - "freq": 2.24e-06 - }, - { - "word": "dui", - "freq": 2.24e-06 - }, - { - "word": "fps", - "freq": 2.24e-06 - }, - { - "word": "hud", - "freq": 2.24e-06 - }, - { - "word": "jab", - "freq": 2.24e-06 - }, - { - "word": "nih", - "freq": 2.24e-06 - }, - { - "word": "obi", - "freq": 2.24e-06 - }, - { - "word": "pip", - "freq": 2.24e-06 - }, - { - "word": "sha", - "freq": 2.24e-06 - }, - { - "word": "tat", - "freq": 2.24e-06 - }, - { - "word": "vie", - "freq": 2.24e-06 - }, - { - "word": "yin", - "freq": 2.24e-06 - }, - { - "word": "yun", - "freq": 2.24e-06 - }, - { - "word": "tvs", - "freq": 2.19e-06 - }, - { - "word": "bea", - "freq": 2.19e-06 - }, - { - "word": "bog", - "freq": 2.19e-06 - }, - { - "word": "bom", - "freq": 2.19e-06 - }, - { - "word": "dia", - "freq": 2.19e-06 - }, - { - "word": "dod", - "freq": 2.19e-06 - }, - { - "word": "foo", - "freq": 2.19e-06 - }, - { - "word": "gon", - "freq": 2.19e-06 - }, - { - "word": "luc", - "freq": 2.19e-06 - }, - { - "word": "tsa", - "freq": 2.19e-06 - }, - { - "word": "une", - "freq": 2.19e-06 - }, - { - "word": "dun", - "freq": 2.14e-06 - }, - { - "word": "ict", - "freq": 2.14e-06 - }, - { - "word": "lim", - "freq": 2.14e-06 - }, - { - "word": "lux", - "freq": 2.14e-06 - }, - { - "word": "nil", - "freq": 2.14e-06 - }, - { - "word": "unc", - "freq": 2.14e-06 - }, - { - "word": "aba", - "freq": 2.09e-06 - }, - { - "word": "apa", - "freq": 2.09e-06 - }, - { - "word": "cor", - "freq": 2.09e-06 - }, - { - "word": "dab", - "freq": 2.09e-06 - }, - { - "word": "dar", - "freq": 2.09e-06 - }, - { - "word": "ent", - "freq": 2.09e-06 - }, - { - "word": "fag", - "freq": 2.09e-06 - }, - { - "word": "fil", - "freq": 2.09e-06 - }, - { - "word": "fro", - "freq": 2.09e-06 - }, - { - "word": "gma", - "freq": 2.09e-06 - }, - { - "word": "mla", - "freq": 2.09e-06 - }, - { - "word": "nip", - "freq": 2.09e-06 - }, - { - "word": "nxt", - "freq": 2.09e-06 - }, - { - "word": "nye", - "freq": 2.09e-06 - }, - { - "word": "psg", - "freq": 2.09e-06 - }, - { - "word": "qui", - "freq": 2.09e-06 - }, - { - "word": "soc", - "freq": 2.09e-06 - }, - { - "word": "sta", - "freq": 2.09e-06 - }, - { - "word": "yeh", - "freq": 2.09e-06 - }, - { - "word": "bey", - "freq": 2.04e-06 - }, - { - "word": "cba", - "freq": 2.04e-06 - }, - { - "word": "cbi", - "freq": 2.04e-06 - }, - { - "word": "ghz", - "freq": 2.04e-06 - }, - { - "word": "hex", - "freq": 2.04e-06 - }, - { - "word": "ipa", - "freq": 2.04e-06 - }, - { - "word": "jax", - "freq": 2.04e-06 - }, - { - "word": "lac", - "freq": 2.04e-06 - }, - { - "word": "nec", - "freq": 2.04e-06 - }, - { - "word": "ode", - "freq": 2.04e-06 - }, - { - "word": "oem", - "freq": 2.04e-06 - }, - { - "word": "rea", - "freq": 2.04e-06 - }, - { - "word": "roc", - "freq": 2.04e-06 - }, - { - "word": "thc", - "freq": 2.04e-06 - }, - { - "word": "tnt", - "freq": 2.04e-06 - }, - { - "word": "woe", - "freq": 2.04e-06 - }, - { - "word": "abi", - "freq": 2e-06 - }, - { - "word": "ami", - "freq": 2e-06 - }, - { - "word": "coo", - "freq": 2e-06 - }, - { - "word": "flo", - "freq": 2e-06 - }, - { - "word": "jog", - "freq": 2e-06 - }, - { - "word": "jug", - "freq": 2e-06 - }, - { - "word": "kgb", - "freq": 2e-06 - }, - { - "word": "loo", - "freq": 2e-06 - }, - { - "word": "ofc", - "freq": 2e-06 - }, - { - "word": "pax", - "freq": 2e-06 - }, - { - "word": "pov", - "freq": 2e-06 - }, - { - "word": "rao", - "freq": 2e-06 - }, - { - "word": "ros", - "freq": 2e-06 - }, - { - "word": "taj", - "freq": 2e-06 - }, - { - "word": "tlc", - "freq": 2e-06 - }, - { - "word": "veg", - "freq": 2e-06 - }, - { - "word": "vhs", - "freq": 2e-06 - }, - { - "word": "wha", - "freq": 2e-06 - }, - { - "word": "cio", - "freq": 1.95e-06 - }, - { - "word": "dei", - "freq": 1.95e-06 - }, - { - "word": "doj", - "freq": 1.95e-06 - }, - { - "word": "fay", - "freq": 1.95e-06 - }, - { - "word": "gui", - "freq": 1.95e-06 - }, - { - "word": "idf", - "freq": 1.95e-06 - }, - { - "word": "jeb", - "freq": 1.95e-06 - }, - { - "word": "lai", - "freq": 1.95e-06 - }, - { - "word": "mer", - "freq": 1.95e-06 - }, - { - "word": "nes", - "freq": 1.95e-06 - }, - { - "word": "ocd", - "freq": 1.95e-06 - }, - { - "word": "ppp", - "freq": 1.95e-06 - }, - { - "word": "pst", - "freq": 1.95e-06 - }, - { - "word": "tau", - "freq": 1.95e-06 - }, - { - "word": "xml", - "freq": 1.95e-06 - }, - { - "word": "cpi", - "freq": 1.91e-06 - }, - { - "word": "dae", - "freq": 1.91e-06 - }, - { - "word": "esa", - "freq": 1.91e-06 - }, - { - "word": "hwy", - "freq": 1.91e-06 - }, - { - "word": "kfc", - "freq": 1.91e-06 - }, - { - "word": "msm", - "freq": 1.91e-06 - }, - { - "word": "pap", - "freq": 1.91e-06 - }, - { - "word": "rem", - "freq": 1.91e-06 - }, - { - "word": "tac", - "freq": 1.91e-06 - }, - { - "word": "tam", - "freq": 1.91e-06 - }, - { - "word": "uno", - "freq": 1.91e-06 - }, - { - "word": "wil", - "freq": 1.91e-06 - }, - { - "word": "yee", - "freq": 1.91e-06 - }, - { - "word": "biz", - "freq": 1.86e-06 - }, - { - "word": "dai", - "freq": 1.86e-06 - }, - { - "word": "doi", - "freq": 1.86e-06 - }, - { - "word": "faq", - "freq": 1.86e-06 - }, - { - "word": "kun", - "freq": 1.86e-06 - }, - { - "word": "lao", - "freq": 1.86e-06 - }, - { - "word": "lau", - "freq": 1.86e-06 - }, - { - "word": "lew", - "freq": 1.86e-06 - }, - { - "word": "mgm", - "freq": 1.86e-06 - }, - { - "word": "odi", - "freq": 1.86e-06 - }, - { - "word": "orr", - "freq": 1.86e-06 - }, - { - "word": "sai", - "freq": 1.86e-06 - }, - { - "word": "sig", - "freq": 1.86e-06 - }, - { - "word": "sob", - "freq": 1.86e-06 - }, - { - "word": "str", - "freq": 1.86e-06 - }, - { - "word": "dex", - "freq": 1.82e-06 - }, - { - "word": "dhs", - "freq": 1.82e-06 - }, - { - "word": "fad", - "freq": 1.82e-06 - }, - { - "word": "fol", - "freq": 1.82e-06 - }, - { - "word": "moi", - "freq": 1.82e-06 - }, - { - "word": "nav", - "freq": 1.82e-06 - }, - { - "word": "orb", - "freq": 1.82e-06 - }, - { - "word": "pla", - "freq": 1.82e-06 - }, - { - "word": "plz", - "freq": 1.82e-06 - }, - { - "word": "spd", - "freq": 1.82e-06 - }, - { - "word": "tal", - "freq": 1.82e-06 - }, - { - "word": "ter", - "freq": 1.82e-06 - }, - { - "word": "uri", - "freq": 1.82e-06 - }, - { - "word": "civ", - "freq": 1.78e-06 - }, - { - "word": "csi", - "freq": 1.78e-06 - }, - { - "word": "dal", - "freq": 1.78e-06 - }, - { - "word": "eid", - "freq": 1.78e-06 - }, - { - "word": "gmo", - "freq": 1.78e-06 - }, - { - "word": "hoe", - "freq": 1.78e-06 - }, - { - "word": "icu", - "freq": 1.78e-06 - }, - { - "word": "isp", - "freq": 1.78e-06 - }, - { - "word": "kev", - "freq": 1.78e-06 - }, - { - "word": "lsd", - "freq": 1.78e-06 - }, - { - "word": "oft", - "freq": 1.78e-06 - }, - { - "word": "rai", - "freq": 1.78e-06 - }, - { - "word": "sag", - "freq": 1.78e-06 - }, - { - "word": "sem", - "freq": 1.78e-06 - }, - { - "word": "sod", - "freq": 1.78e-06 - }, - { - "word": "ssr", - "freq": 1.78e-06 - }, - { - "word": "tsp", - "freq": 1.78e-06 - }, - { - "word": "abt", - "freq": 1.74e-06 - }, - { - "word": "aol", - "freq": 1.74e-06 - }, - { - "word": "apc", - "freq": 1.74e-06 - }, - { - "word": "cpa", - "freq": 1.74e-06 - }, - { - "word": "dmv", - "freq": 1.74e-06 - }, - { - "word": "dns", - "freq": 1.74e-06 - }, - { - "word": "emo", - "freq": 1.74e-06 - }, - { - "word": "hem", - "freq": 1.74e-06 - }, - { - "word": "hua", - "freq": 1.74e-06 - }, - { - "word": "ioc", - "freq": 1.74e-06 - }, - { - "word": "loc", - "freq": 1.74e-06 - }, - { - "word": "mah", - "freq": 1.74e-06 - }, - { - "word": "naw", - "freq": 1.74e-06 - }, - { - "word": "snl", - "freq": 1.74e-06 - }, - { - "word": "tak", - "freq": 1.74e-06 - }, - { - "word": "tpp", - "freq": 1.74e-06 - }, - { - "word": "tue", - "freq": 1.74e-06 - }, - { - "word": "urn", - "freq": 1.74e-06 - }, - { - "word": "ccp", - "freq": 1.7e-06 - }, - { - "word": "deb", - "freq": 1.7e-06 - }, - { - "word": "eel", - "freq": 1.7e-06 - }, - { - "word": "eos", - "freq": 1.7e-06 - }, - { - "word": "fav", - "freq": 1.7e-06 - }, - { - "word": "ftc", - "freq": 1.7e-06 - }, - { - "word": "imp", - "freq": 1.7e-06 - }, - { - "word": "kkk", - "freq": 1.7e-06 - }, - { - "word": "msc", - "freq": 1.7e-06 - }, - { - "word": "nyt", - "freq": 1.7e-06 - }, - { - "word": "ost", - "freq": 1.7e-06 - }, - { - "word": "psp", - "freq": 1.7e-06 - }, - { - "word": "ryu", - "freq": 1.7e-06 - }, - { - "word": "vox", - "freq": 1.7e-06 - }, - { - "word": "wto", - "freq": 1.7e-06 - }, - { - "word": "ars", - "freq": 1.66e-06 - }, - { - "word": "att", - "freq": 1.66e-06 - }, - { - "word": "ein", - "freq": 1.66e-06 - }, - { - "word": "erm", - "freq": 1.66e-06 - }, - { - "word": "gpu", - "freq": 1.66e-06 - }, - { - "word": "hye", - "freq": 1.66e-06 - }, - { - "word": "ich", - "freq": 1.66e-06 - }, - { - "word": "ina", - "freq": 1.66e-06 - }, - { - "word": "ire", - "freq": 1.66e-06 - }, - { - "word": "lds", - "freq": 1.66e-06 - }, - { - "word": "nom", - "freq": 1.66e-06 - }, - { - "word": "osu", - "freq": 1.66e-06 - }, - { - "word": "pty", - "freq": 1.66e-06 - }, - { - "word": "ste", - "freq": 1.66e-06 - }, - { - "word": "stu", - "freq": 1.66e-06 - }, - { - "word": "ara", - "freq": 1.62e-06 - }, - { - "word": "cot", - "freq": 1.62e-06 - }, - { - "word": "edm", - "freq": 1.62e-06 - }, - { - "word": "edo", - "freq": 1.62e-06 - }, - { - "word": "eth", - "freq": 1.62e-06 - }, - { - "word": "hui", - "freq": 1.62e-06 - }, - { - "word": "ign", - "freq": 1.62e-06 - }, - { - "word": "ipl", - "freq": 1.62e-06 - }, - { - "word": "nee", - "freq": 1.62e-06 - }, - { - "word": "pvc", - "freq": 1.62e-06 - } - ], - "2": [ - { - "word": "to", - "freq": 0.0269 - }, - { - "word": "of", - "freq": 0.0251 - }, - { - "word": "on", - "freq": 0.00813 - }, - { - "word": "be", - "freq": 0.00617 - }, - { - "word": "at", - "freq": 0.00501 - }, - { - "word": "he", - "freq": 0.0049 - }, - { - "word": "by", - "freq": 0.00457 - }, - { - "word": "my", - "freq": 0.00372 - }, - { - "word": "we", - "freq": 0.00347 - }, - { - "word": "an", - "freq": 0.00339 - }, - { - "word": "so", - "freq": 0.00331 - }, - { - "word": "me", - "freq": 0.00302 - }, - { - "word": "up", - "freq": 0.00245 - }, - { - "word": "do", - "freq": 0.00224 - }, - { - "word": "no", - "freq": 0.00224 - }, - { - "word": "go", - "freq": 0.00107 - }, - { - "word": "mr", - "freq": 0.00049 - }, - { - "word": "oh", - "freq": 0.000269 - }, - { - "word": "dr", - "freq": 0.000174 - }, - { - "word": "de", - "freq": 0.00017 - }, - { - "word": "re", - "freq": 0.00017 - }, - { - "word": "co", - "freq": 0.000162 - }, - { - "word": "st", - "freq": 0.000158 - }, - { - "word": "tv", - "freq": 0.000158 - }, - { - "word": "al", - "freq": 0.000145 - }, - { - "word": "ok", - "freq": 0.000138 - }, - { - "word": "uk", - "freq": 0.000132 - }, - { - "word": "la", - "freq": 0.000112 - }, - { - "word": "ii", - "freq": 0.000105 - }, - { - "word": "hi", - "freq": 0.0001 - }, - { - "word": "ex", - "freq": 6.46e-05 - }, - { - "word": "ad", - "freq": 5.75e-05 - }, - { - "word": "im", - "freq": 4.9e-05 - }, - { - "word": "pm", - "freq": 4.9e-05 - }, - { - "word": "ca", - "freq": 4.68e-05 - }, - { - "word": "ya", - "freq": 4.68e-05 - }, - { - "word": "et", - "freq": 4.57e-05 - }, - { - "word": "ll", - "freq": 4.57e-05 - }, - { - "word": "mm", - "freq": 4.47e-05 - }, - { - "word": "ah", - "freq": 4.27e-05 - }, - { - "word": "ma", - "freq": 4.27e-05 - }, - { - "word": "eu", - "freq": 4.17e-05 - }, - { - "word": "un", - "freq": 4.17e-05 - }, - { - "word": "id", - "freq": 4.07e-05 - }, - { - "word": "ha", - "freq": 3.8e-05 - }, - { - "word": "em", - "freq": 3.72e-05 - }, - { - "word": "dc", - "freq": 3.63e-05 - }, - { - "word": "el", - "freq": 3.63e-05 - }, - { - "word": "ve", - "freq": 3.63e-05 - }, - { - "word": "jr", - "freq": 3.55e-05 - }, - { - "word": "da", - "freq": 3.47e-05 - }, - { - "word": "pc", - "freq": 3.39e-05 - }, - { - "word": "ft", - "freq": 3.31e-05 - }, - { - "word": "en", - "freq": 3.16e-05 - }, - { - "word": "le", - "freq": 3.16e-05 - }, - { - "word": "bc", - "freq": 3.09e-05 - }, - { - "word": "pa", - "freq": 2.88e-05 - }, - { - "word": "yo", - "freq": 2.82e-05 - }, - { - "word": "ny", - "freq": 2.69e-05 - }, - { - "word": "na", - "freq": 2.63e-05 - }, - { - "word": "op", - "freq": 2.63e-05 - }, - { - "word": "ap", - "freq": 2.51e-05 - }, - { - "word": "mo", - "freq": 2.4e-05 - }, - { - "word": "pp", - "freq": 2.4e-05 - }, - { - "word": "km", - "freq": 2.34e-05 - }, - { - "word": "cd", - "freq": 2.29e-05 - }, - { - "word": "di", - "freq": 2.14e-05 - }, - { - "word": "mi", - "freq": 2e-05 - }, - { - "word": "sa", - "freq": 2e-05 - }, - { - "word": "mp", - "freq": 1.95e-05 - }, - { - "word": "se", - "freq": 1.95e-05 - }, - { - "word": "cm", - "freq": 1.86e-05 - }, - { - "word": "eh", - "freq": 1.82e-05 - }, - { - "word": "fi", - "freq": 1.82e-05 - }, - { - "word": "hd", - "freq": 1.82e-05 - }, - { - "word": "uh", - "freq": 1.82e-05 - }, - { - "word": "va", - "freq": 1.82e-05 - }, - { - "word": "ac", - "freq": 1.78e-05 - }, - { - "word": "li", - "freq": 1.78e-05 - }, - { - "word": "ye", - "freq": 1.78e-05 - }, - { - "word": "er", - "freq": 1.74e-05 - }, - { - "word": "ai", - "freq": 1.7e-05 - }, - { - "word": "dj", - "freq": 1.7e-05 - }, - { - "word": "ho", - "freq": 1.66e-05 - }, - { - "word": "du", - "freq": 1.62e-05 - }, - { - "word": "ep", - "freq": 1.62e-05 - }, - { - "word": "fa", - "freq": 1.58e-05 - }, - { - "word": "hr", - "freq": 1.58e-05 - }, - { - "word": "md", - "freq": 1.58e-05 - }, - { - "word": "th", - "freq": 1.58e-05 - }, - { - "word": "pr", - "freq": 1.55e-05 - }, - { - "word": "sc", - "freq": 1.51e-05 - }, - { - "word": "si", - "freq": 1.48e-05 - }, - { - "word": "wa", - "freq": 1.48e-05 - }, - { - "word": "gm", - "freq": 1.45e-05 - }, - { - "word": "cc", - "freq": 1.41e-05 - }, - { - "word": "lt", - "freq": 1.41e-05 - }, - { - "word": "ga", - "freq": 1.38e-05 - }, - { - "word": "aw", - "freq": 1.35e-05 - }, - { - "word": "ba", - "freq": 1.35e-05 - }, - { - "word": "hp", - "freq": 1.35e-05 - }, - { - "word": "mt", - "freq": 1.35e-05 - }, - { - "word": "um", - "freq": 1.35e-05 - }, - { - "word": "mg", - "freq": 1.32e-05 - }, - { - "word": "xi", - "freq": 1.32e-05 - }, - { - "word": "ct", - "freq": 1.29e-05 - }, - { - "word": "rd", - "freq": 1.29e-05 - }, - { - "word": "fl", - "freq": 1.23e-05 - }, - { - "word": "fr", - "freq": 1.23e-05 - }, - { - "word": "vi", - "freq": 1.23e-05 - }, - { - "word": "wi", - "freq": 1.23e-05 - }, - { - "word": "kg", - "freq": 1.2e-05 - }, - { - "word": "lo", - "freq": 1.17e-05 - }, - { - "word": "te", - "freq": 1.17e-05 - }, - { - "word": "ab", - "freq": 1.15e-05 - }, - { - "word": "fc", - "freq": 1.15e-05 - }, - { - "word": "nc", - "freq": 1.12e-05 - }, - { - "word": "ne", - "freq": 1.12e-05 - }, - { - "word": "bi", - "freq": 1.1e-05 - }, - { - "word": "ip", - "freq": 1.1e-05 - }, - { - "word": "pt", - "freq": 1.1e-05 - }, - { - "word": "rt", - "freq": 1.1e-05 - }, - { - "word": "jo", - "freq": 1.07e-05 - }, - { - "word": "sp", - "freq": 1.07e-05 - }, - { - "word": "sr", - "freq": 1.07e-05 - }, - { - "word": "au", - "freq": 1.05e-05 - }, - { - "word": "fm", - "freq": 1.05e-05 - }, - { - "word": "ta", - "freq": 1.05e-05 - }, - { - "word": "tl", - "freq": 1.05e-05 - }, - { - "word": "aa", - "freq": 1.02e-05 - }, - { - "word": "oz", - "freq": 1.02e-05 - }, - { - "word": "tx", - "freq": 1.02e-05 - }, - { - "word": "bo", - "freq": 1e-05 - }, - { - "word": "mc", - "freq": 1e-05 - }, - { - "word": "cr", - "freq": 9.77e-06 - }, - { - "word": "ol", - "freq": 9.55e-06 - }, - { - "word": "af", - "freq": 9.33e-06 - }, - { - "word": "nj", - "freq": 9.33e-06 - }, - { - "word": "ph", - "freq": 9.33e-06 - }, - { - "word": "po", - "freq": 9.33e-06 - }, - { - "word": "ag", - "freq": 8.91e-06 - }, - { - "word": "ch", - "freq": 8.91e-06 - }, - { - "word": "lb", - "freq": 8.51e-06 - }, - { - "word": "ni", - "freq": 8.51e-06 - }, - { - "word": "pi", - "freq": 8.32e-06 - }, - { - "word": "su", - "freq": 8.32e-06 - }, - { - "word": "yu", - "freq": 8.32e-06 - }, - { - "word": "gb", - "freq": 8.13e-06 - }, - { - "word": "ur", - "freq": 8.13e-06 - }, - { - "word": "fe", - "freq": 7.94e-06 - }, - { - "word": "ng", - "freq": 7.94e-06 - }, - { - "word": "ra", - "freq": 7.94e-06 - }, - { - "word": "br", - "freq": 7.76e-06 - }, - { - "word": "ji", - "freq": 7.76e-06 - }, - { - "word": "sd", - "freq": 7.76e-06 - }, - { - "word": "bt", - "freq": 7.59e-06 - }, - { - "word": "dm", - "freq": 7.59e-06 - }, - { - "word": "fu", - "freq": 7.59e-06 - }, - { - "word": "gf", - "freq": 7.59e-06 - }, - { - "word": "gp", - "freq": 7.59e-06 - }, - { - "word": "ki", - "freq": 7.59e-06 - }, - { - "word": "pg", - "freq": 7.59e-06 - }, - { - "word": "pl", - "freq": 7.59e-06 - }, - { - "word": "sf", - "freq": 7.59e-06 - }, - { - "word": "xd", - "freq": 7.41e-06 - }, - { - "word": "sh", - "freq": 7.24e-06 - }, - { - "word": "cf", - "freq": 7.08e-06 - }, - { - "word": "cl", - "freq": 7.08e-06 - }, - { - "word": "lp", - "freq": 7.08e-06 - }, - { - "word": "ot", - "freq": 7.08e-06 - }, - { - "word": "ti", - "freq": 7.08e-06 - }, - { - "word": "bb", - "freq": 6.92e-06 - }, - { - "word": "ml", - "freq": 6.92e-06 - }, - { - "word": "bp", - "freq": 6.76e-06 - }, - { - "word": "ce", - "freq": 6.76e-06 - }, - { - "word": "ge", - "freq": 6.76e-06 - }, - { - "word": "ka", - "freq": 6.76e-06 - }, - { - "word": "sq", - "freq": 6.76e-06 - }, - { - "word": "vr", - "freq": 6.76e-06 - }, - { - "word": "hm", - "freq": 6.61e-06 - }, - { - "word": "nm", - "freq": 6.61e-06 - }, - { - "word": "ea", - "freq": 6.46e-06 - }, - { - "word": "qb", - "freq": 6.46e-06 - }, - { - "word": "wu", - "freq": 6.46e-06 - }, - { - "word": "ie", - "freq": 6.31e-06 - }, - { - "word": "bf", - "freq": 6.17e-06 - }, - { - "word": "cp", - "freq": 6.17e-06 - }, - { - "word": "gt", - "freq": 6.17e-06 - }, - { - "word": "nz", - "freq": 6.17e-06 - }, - { - "word": "yr", - "freq": 6.17e-06 - }, - { - "word": "ff", - "freq": 6.03e-06 - }, - { - "word": "mb", - "freq": 6.03e-06 - }, - { - "word": "db", - "freq": 5.89e-06 - }, - { - "word": "ky", - "freq": 5.89e-06 - }, - { - "word": "ou", - "freq": 5.89e-06 - }, - { - "word": "fb", - "freq": 5.75e-06 - }, - { - "word": "tu", - "freq": 5.75e-06 - }, - { - "word": "rm", - "freq": 5.62e-06 - }, - { - "word": "wh", - "freq": 5.5e-06 - }, - { - "word": "xx", - "freq": 5.5e-06 - }, - { - "word": "ak", - "freq": 5.37e-06 - }, - { - "word": "hq", - "freq": 5.37e-06 - }, - { - "word": "ko", - "freq": 5.37e-06 - }, - { - "word": "ln", - "freq": 5.37e-06 - }, - { - "word": "mn", - "freq": 5.37e-06 - }, - { - "word": "tr", - "freq": 5.37e-06 - }, - { - "word": "ty", - "freq": 5.37e-06 - }, - { - "word": "gi", - "freq": 5.25e-06 - }, - { - "word": "nw", - "freq": 5.25e-06 - }, - { - "word": "og", - "freq": 5.25e-06 - }, - { - "word": "pe", - "freq": 5.25e-06 - }, - { - "word": "uc", - "freq": 5.25e-06 - }, - { - "word": "ut", - "freq": 5.25e-06 - }, - { - "word": "vp", - "freq": 5.25e-06 - }, - { - "word": "cb", - "freq": 5.13e-06 - }, - { - "word": "ja", - "freq": 5.13e-06 - }, - { - "word": "nd", - "freq": 5.13e-06 - }, - { - "word": "oi", - "freq": 5.13e-06 - }, - { - "word": "rn", - "freq": 5.13e-06 - }, - { - "word": "sm", - "freq": 5.13e-06 - }, - { - "word": "tb", - "freq": 5.13e-06 - }, - { - "word": "tn", - "freq": 5.13e-06 - }, - { - "word": "ec", - "freq": 5.01e-06 - }, - { - "word": "ia", - "freq": 5.01e-06 - }, - { - "word": "pd", - "freq": 5.01e-06 - }, - { - "word": "rb", - "freq": 5.01e-06 - }, - { - "word": "sb", - "freq": 5.01e-06 - }, - { - "word": "wo", - "freq": 5.01e-06 - }, - { - "word": "iq", - "freq": 4.9e-06 - }, - { - "word": "ix", - "freq": 4.9e-06 - }, - { - "word": "mu", - "freq": 4.9e-06 - }, - { - "word": "ri", - "freq": 4.9e-06 - }, - { - "word": "az", - "freq": 4.79e-06 - }, - { - "word": "dd", - "freq": 4.79e-06 - }, - { - "word": "ir", - "freq": 4.79e-06 - }, - { - "word": "sw", - "freq": 4.79e-06 - }, - { - "word": "xl", - "freq": 4.79e-06 - }, - { - "word": "dl", - "freq": 4.68e-06 - }, - { - "word": "lg", - "freq": 4.68e-06 - }, - { - "word": "rp", - "freq": 4.68e-06 - }, - { - "word": "xp", - "freq": 4.68e-06 - }, - { - "word": "wr", - "freq": 4.57e-06 - }, - { - "word": "yi", - "freq": 4.57e-06 - }, - { - "word": "ev", - "freq": 4.47e-06 - }, - { - "word": "fo", - "freq": 4.47e-06 - }, - { - "word": "hc", - "freq": 4.47e-06 - }, - { - "word": "jp", - "freq": 4.47e-06 - }, - { - "word": "rc", - "freq": 4.47e-06 - }, - { - "word": "lu", - "freq": 4.37e-06 - }, - { - "word": "ow", - "freq": 4.37e-06 - }, - { - "word": "av", - "freq": 4.27e-06 - }, - { - "word": "ig", - "freq": 4.27e-06 - }, - { - "word": "je", - "freq": 4.27e-06 - }, - { - "word": "jj", - "freq": 4.27e-06 - }, - { - "word": "uv", - "freq": 4.27e-06 - }, - { - "word": "eg", - "freq": 4.17e-06 - }, - { - "word": "mf", - "freq": 4.17e-06 - }, - { - "word": "ro", - "freq": 4.17e-06 - }, - { - "word": "tm", - "freq": 4.17e-06 - }, - { - "word": "ui", - "freq": 4.17e-06 - }, - { - "word": "ay", - "freq": 4.07e-06 - }, - { - "word": "cv", - "freq": 4.07e-06 - }, - { - "word": "ee", - "freq": 4.07e-06 - }, - { - "word": "sl", - "freq": 4.07e-06 - }, - { - "word": "tt", - "freq": 4.07e-06 - }, - { - "word": "aj", - "freq": 3.89e-06 - }, - { - "word": "fx", - "freq": 3.89e-06 - }, - { - "word": "oc", - "freq": 3.89e-06 - }, - { - "word": "nt", - "freq": 3.8e-06 - }, - { - "word": "ew", - "freq": 3.8e-06 - }, - { - "word": "hu", - "freq": 3.8e-06 - }, - { - "word": "mk", - "freq": 3.8e-06 - }, - { - "word": "mw", - "freq": 3.8e-06 - }, - { - "word": "gc", - "freq": 3.72e-06 - }, - { - "word": "ju", - "freq": 3.72e-06 - }, - { - "word": "np", - "freq": 3.72e-06 - }, - { - "word": "oo", - "freq": 3.72e-06 - }, - { - "word": "dt", - "freq": 3.63e-06 - }, - { - "word": "nh", - "freq": 3.63e-06 - }, - { - "word": "tf", - "freq": 3.63e-06 - }, - { - "word": "cu", - "freq": 3.55e-06 - }, - { - "word": "ic", - "freq": 3.55e-06 - }, - { - "word": "kc", - "freq": 3.55e-06 - }, - { - "word": "nu", - "freq": 3.55e-06 - }, - { - "word": "om", - "freq": 3.55e-06 - }, - { - "word": "rf", - "freq": 3.55e-06 - }, - { - "word": "rv", - "freq": 3.55e-06 - }, - { - "word": "cw", - "freq": 3.47e-06 - }, - { - "word": "hk", - "freq": 3.47e-06 - }, - { - "word": "sg", - "freq": 3.47e-06 - }, - { - "word": "ul", - "freq": 3.47e-06 - }, - { - "word": "bu", - "freq": 3.39e-06 - }, - { - "word": "ci", - "freq": 3.39e-06 - }, - { - "word": "ku", - "freq": 3.39e-06 - }, - { - "word": "vc", - "freq": 3.39e-06 - }, - { - "word": "gr", - "freq": 3.31e-06 - }, - { - "word": "lc", - "freq": 3.31e-06 - }, - { - "word": "nl", - "freq": 3.31e-06 - }, - { - "word": "pb", - "freq": 3.31e-06 - }, - { - "word": "tc", - "freq": 3.31e-06 - }, - { - "word": "dp", - "freq": 3.24e-06 - }, - { - "word": "sk", - "freq": 3.24e-06 - }, - { - "word": "ke", - "freq": 3.16e-06 - }, - { - "word": "mv", - "freq": 3.16e-06 - }, - { - "word": "ru", - "freq": 3.16e-06 - }, - { - "word": "as", - "freq": 3.09e-06 - }, - { - "word": "ae", - "freq": 3.09e-06 - }, - { - "word": "bd", - "freq": 3.09e-06 - }, - { - "word": "kd", - "freq": 3.02e-06 - }, - { - "word": "xv", - "freq": 3.02e-06 - }, - { - "word": "jd", - "freq": 2.95e-06 - }, - { - "word": "jk", - "freq": 2.95e-06 - }, - { - "word": "kb", - "freq": 2.95e-06 - }, - { - "word": "ox", - "freq": 2.95e-06 - }, - { - "word": "cj", - "freq": 2.88e-06 - }, - { - "word": "nk", - "freq": 2.88e-06 - }, - { - "word": "vt", - "freq": 2.88e-06 - }, - { - "word": "ib", - "freq": 2.82e-06 - }, - { - "word": "nv", - "freq": 2.82e-06 - }, - { - "word": "gg", - "freq": 2.75e-06 - }, - { - "word": "pf", - "freq": 2.75e-06 - }, - { - "word": "pu", - "freq": 2.75e-06 - }, - { - "word": "qc", - "freq": 2.75e-06 - }, - { - "word": "tj", - "freq": 2.75e-06 - }, - { - "word": "bk", - "freq": 2.69e-06 - }, - { - "word": "gl", - "freq": 2.69e-06 - }, - { - "word": "kw", - "freq": 2.69e-06 - }, - { - "word": "nr", - "freq": 2.69e-06 - }, - { - "word": "ob", - "freq": 2.69e-06 - }, - { - "word": "tp", - "freq": 2.69e-06 - }, - { - "word": "io", - "freq": 2.57e-06 - }, - { - "word": "mj", - "freq": 2.57e-06 - }, - { - "word": "wc", - "freq": 2.57e-06 - }, - { - "word": "gu", - "freq": 2.51e-06 - }, - { - "word": "lf", - "freq": 2.51e-06 - }, - { - "word": "pk", - "freq": 2.51e-06 - }, - { - "word": "pv", - "freq": 2.51e-06 - }, - { - "word": "rr", - "freq": 2.51e-06 - }, - { - "word": "vw", - "freq": 2.51e-06 - }, - { - "word": "lv", - "freq": 2.45e-06 - }, - { - "word": "ao", - "freq": 2.4e-06 - }, - { - "word": "cn", - "freq": 2.4e-06 - }, - { - "word": "ht", - "freq": 2.4e-06 - }, - { - "word": "bl", - "freq": 2.34e-06 - }, - { - "word": "dh", - "freq": 2.34e-06 - }, - { - "word": "ld", - "freq": 2.34e-06 - }, - { - "word": "ly", - "freq": 2.34e-06 - }, - { - "word": "nb", - "freq": 2.34e-06 - }, - { - "word": "rl", - "freq": 2.34e-06 - }, - { - "word": "bm", - "freq": 2.29e-06 - }, - { - "word": "cy", - "freq": 2.29e-06 - }, - { - "word": "jc", - "freq": 2.29e-06 - }, - { - "word": "wb", - "freq": 2.29e-06 - }, - { - "word": "wt", - "freq": 2.29e-06 - }, - { - "word": "bn", - "freq": 2.24e-06 - }, - { - "word": "ax", - "freq": 2.19e-06 - }, - { - "word": "ck", - "freq": 2.19e-06 - }, - { - "word": "dk", - "freq": 2.19e-06 - }, - { - "word": "hz", - "freq": 2.19e-06 - }, - { - "word": "ik", - "freq": 2.19e-06 - }, - { - "word": "mx", - "freq": 2.19e-06 - }, - { - "word": "wp", - "freq": 2.19e-06 - }, - { - "word": "hb", - "freq": 2.14e-06 - }, - { - "word": "ww", - "freq": 2.14e-06 - }, - { - "word": "xu", - "freq": 2.14e-06 - }, - { - "word": "bg", - "freq": 2.09e-06 - }, - { - "word": "df", - "freq": 2.09e-06 - }, - { - "word": "eq", - "freq": 2.09e-06 - }, - { - "word": "lr", - "freq": 2.09e-06 - }, - { - "word": "cg", - "freq": 2.04e-06 - }, - { - "word": "fg", - "freq": 2.04e-06 - }, - { - "word": "rh", - "freq": 2.04e-06 - }, - { - "word": "rx", - "freq": 2.04e-06 - }, - { - "word": "jt", - "freq": 2e-06 - }, - { - "word": "wm", - "freq": 2e-06 - }, - { - "word": "ey", - "freq": 1.95e-06 - }, - { - "word": "iu", - "freq": 1.95e-06 - }, - { - "word": "qi", - "freq": 1.95e-06 - }, - { - "word": "vu", - "freq": 1.95e-06 - }, - { - "word": "bj", - "freq": 1.91e-06 - }, - { - "word": "eb", - "freq": 1.91e-06 - }, - { - "word": "ef", - "freq": 1.91e-06 - }, - { - "word": "mh", - "freq": 1.91e-06 - }, - { - "word": "qu", - "freq": 1.91e-06 - }, - { - "word": "rj", - "freq": 1.91e-06 - }, - { - "word": "ua", - "freq": 1.91e-06 - }, - { - "word": "gw", - "freq": 1.86e-06 - }, - { - "word": "jb", - "freq": 1.86e-06 - }, - { - "word": "kr", - "freq": 1.86e-06 - }, - { - "word": "dw", - "freq": 1.78e-06 - }, - { - "word": "ts", - "freq": 1.74e-06 - }, - { - "word": "dx", - "freq": 1.74e-06 - }, - { - "word": "ez", - "freq": 1.74e-06 - }, - { - "word": "nf", - "freq": 1.74e-06 - }, - { - "word": "bw", - "freq": 1.7e-06 - }, - { - "word": "hf", - "freq": 1.7e-06 - }, - { - "word": "hg", - "freq": 1.7e-06 - }, - { - "word": "oj", - "freq": 1.7e-06 - }, - { - "word": "pj", - "freq": 1.7e-06 - }, - { - "word": "qa", - "freq": 1.7e-06 - }, - { - "word": "uw", - "freq": 1.7e-06 - }, - { - "word": "kt", - "freq": 1.66e-06 - }, - { - "word": "vm", - "freq": 1.66e-06 - }, - { - "word": "gd", - "freq": 1.62e-06 - }, - { - "word": "qt", - "freq": 1.62e-06 - }, - { - "word": "yt", - "freq": 1.62e-06 - }, - { - "word": "dg", - "freq": 1.58e-06 - }, - { - "word": "zu", - "freq": 1.58e-06 - }, - { - "word": "kk", - "freq": 1.55e-06 - }, - { - "word": "oa", - "freq": 1.55e-06 - }, - { - "word": "sv", - "freq": 1.55e-06 - }, - { - "word": "tg", - "freq": 1.55e-06 - }, - { - "word": "gh", - "freq": 1.51e-06 - }, - { - "word": "wv", - "freq": 1.51e-06 - }, - { - "word": "ek", - "freq": 1.48e-06 - }, - { - "word": "fp", - "freq": 1.48e-06 - }, - { - "word": "hh", - "freq": 1.48e-06 - }, - { - "word": "hw", - "freq": 1.48e-06 - }, - { - "word": "sj", - "freq": 1.48e-06 - }, - { - "word": "sn", - "freq": 1.48e-06 - }, - { - "word": "sy", - "freq": 1.48e-06 - }, - { - "word": "ux", - "freq": 1.48e-06 - }, - { - "word": "ei", - "freq": 1.45e-06 - }, - { - "word": "fw", - "freq": 1.45e-06 - }, - { - "word": "hl", - "freq": 1.45e-06 - }, - { - "word": "kl", - "freq": 1.45e-06 - }, - { - "word": "rg", - "freq": 1.45e-06 - }, - { - "word": "tk", - "freq": 1.45e-06 - }, - { - "word": "wd", - "freq": 1.45e-06 - }, - { - "word": "fy", - "freq": 1.35e-06 - }, - { - "word": "kv", - "freq": 1.35e-06 - }, - { - "word": "rw", - "freq": 1.35e-06 - }, - { - "word": "xo", - "freq": 1.35e-06 - }, - { - "word": "jv", - "freq": 1.32e-06 - }, - { - "word": "tw", - "freq": 1.32e-06 - }, - { - "word": "is", - "freq": 1.29e-06 - }, - { - "word": "dv", - "freq": 1.29e-06 - }, - { - "word": "gk", - "freq": 1.29e-06 - }, - { - "word": "gq", - "freq": 1.29e-06 - }, - { - "word": "kp", - "freq": 1.29e-06 - }, - { - "word": "oy", - "freq": 1.29e-06 - }, - { - "word": "vg", - "freq": 1.29e-06 - }, - { - "word": "eo", - "freq": 1.26e-06 - }, - { - "word": "jw", - "freq": 1.26e-06 - }, - { - "word": "cx", - "freq": 1.23e-06 - }, - { - "word": "fk", - "freq": 1.23e-06 - }, - { - "word": "jl", - "freq": 1.23e-06 - }, - { - "word": "jm", - "freq": 1.23e-06 - }, - { - "word": "lj", - "freq": 1.23e-06 - }, - { - "word": "qr", - "freq": 1.23e-06 - }, - { - "word": "vo", - "freq": 1.23e-06 - }, - { - "word": "za", - "freq": 1.23e-06 - }, - { - "word": "bs", - "freq": 1.17e-06 - }, - { - "word": "vb", - "freq": 1.17e-06 - }, - { - "word": "pw", - "freq": 1.15e-06 - }, - { - "word": "ze", - "freq": 1.15e-06 - }, - { - "word": "ms", - "freq": 1.1e-06 - }, - { - "word": "ue", - "freq": 1.1e-06 - }, - { - "word": "bh", - "freq": 1.07e-06 - }, - { - "word": "hy", - "freq": 1.07e-06 - }, - { - "word": "uf", - "freq": 1.07e-06 - }, - { - "word": "jg", - "freq": 1.05e-06 - }, - { - "word": "wk", - "freq": 1.05e-06 - }, - { - "word": "gs", - "freq": 1.02e-06 - }, - { - "word": "kh", - "freq": 1.02e-06 - }, - { - "word": "kn", - "freq": 1.02e-06 - }, - { - "word": "yd", - "freq": 1.02e-06 - }, - { - "word": "bv", - "freq": 1e-06 - }, - { - "word": "lh", - "freq": 1e-06 - }, - { - "word": "ds", - "freq": 9.77e-07 - }, - { - "word": "aq", - "freq": 9.77e-07 - }, - { - "word": "kj", - "freq": 9.77e-07 - }, - { - "word": "xm", - "freq": 9.77e-07 - }, - { - "word": "dy", - "freq": 9.55e-07 - }, - { - "word": "nn", - "freq": 9.55e-07 - }, - { - "word": "ej", - "freq": 9.33e-07 - }, - { - "word": "jn", - "freq": 9.33e-07 - }, - { - "word": "ry", - "freq": 9.33e-07 - }, - { - "word": "ug", - "freq": 9.33e-07 - }, - { - "word": "xs", - "freq": 9.12e-07 - }, - { - "word": "cz", - "freq": 9.12e-07 - }, - { - "word": "ov", - "freq": 9.12e-07 - }, - { - "word": "os", - "freq": 8.91e-07 - }, - { - "word": "dn", - "freq": 8.91e-07 - }, - { - "word": "oe", - "freq": 8.91e-07 - }, - { - "word": "wl", - "freq": 8.91e-07 - }, - { - "word": "xy", - "freq": 8.91e-07 - }, - { - "word": "lk", - "freq": 8.71e-07 - }, - { - "word": "ub", - "freq": 8.71e-07 - }, - { - "word": "gv", - "freq": 8.51e-07 - }, - { - "word": "cs", - "freq": 8.32e-07 - }, - { - "word": "iz", - "freq": 8.13e-07 - }, - { - "word": "vf", - "freq": 8.13e-07 - }, - { - "word": "lw", - "freq": 7.94e-07 - }, - { - "word": "pq", - "freq": 7.94e-07 - }, - { - "word": "rk", - "freq": 7.94e-07 - }, - { - "word": "wg", - "freq": 7.94e-07 - }, - { - "word": "zo", - "freq": 7.94e-07 - }, - { - "word": "iw", - "freq": 7.76e-07 - }, - { - "word": "vn", - "freq": 7.76e-07 - }, - { - "word": "xt", - "freq": 7.76e-07 - }, - { - "word": "jh", - "freq": 7.59e-07 - }, - { - "word": "nx", - "freq": 7.59e-07 - }, - { - "word": "wy", - "freq": 7.59e-07 - }, - { - "word": "lx", - "freq": 7.41e-07 - }, - { - "word": "zi", - "freq": 7.41e-07 - }, - { - "word": "dz", - "freq": 7.24e-07 - }, - { - "word": "xc", - "freq": 7.24e-07 - }, - { - "word": "cq", - "freq": 7.08e-07 - }, - { - "word": "gn", - "freq": 7.08e-07 - }, - { - "word": "pn", - "freq": 7.08e-07 - }, - { - "word": "qe", - "freq": 7.08e-07 - }, - { - "word": "dq", - "freq": 6.92e-07 - }, - { - "word": "vv", - "freq": 6.92e-07 - }, - { - "word": "hv", - "freq": 6.76e-07 - }, - { - "word": "ih", - "freq": 6.76e-07 - }, - { - "word": "es", - "freq": 6.61e-07 - }, - { - "word": "fh", - "freq": 6.61e-07 - }, - { - "word": "xr", - "freq": 6.61e-07 - }, - { - "word": "vs", - "freq": 6.46e-07 - }, - { - "word": "qf", - "freq": 6.31e-07 - }, - { - "word": "zz", - "freq": 6.31e-07 - }, - { - "word": "js", - "freq": 6.17e-07 - }, - { - "word": "gy", - "freq": 6.17e-07 - }, - { - "word": "vj", - "freq": 6.17e-07 - }, - { - "word": "hj", - "freq": 6.03e-07 - }, - { - "word": "jf", - "freq": 6.03e-07 - }, - { - "word": "px", - "freq": 6.03e-07 - }, - { - "word": "vk", - "freq": 6.03e-07 - }, - { - "word": "yg", - "freq": 6.03e-07 - }, - { - "word": "lz", - "freq": 5.75e-07 - }, - { - "word": "uo", - "freq": 5.62e-07 - }, - { - "word": "qq", - "freq": 5.5e-07 - }, - { - "word": "gj", - "freq": 5.37e-07 - }, - { - "word": "vx", - "freq": 5.37e-07 - }, - { - "word": "xe", - "freq": 5.37e-07 - }, - { - "word": "rs", - "freq": 5.25e-07 - }, - { - "word": "sx", - "freq": 5.25e-07 - }, - { - "word": "vl", - "freq": 5.25e-07 - }, - { - "word": "ps", - "freq": 5.13e-07 - }, - { - "word": "uu", - "freq": 5.01e-07 - }, - { - "word": "vd", - "freq": 5.01e-07 - }, - { - "word": "wf", - "freq": 5.01e-07 - }, - { - "word": "hn", - "freq": 4.9e-07 - }, - { - "word": "zh", - "freq": 4.9e-07 - }, - { - "word": "gx", - "freq": 4.79e-07 - }, - { - "word": "ks", - "freq": 4.57e-07 - }, - { - "word": "zn", - "freq": 4.57e-07 - }, - { - "word": "qs", - "freq": 4.47e-07 - }, - { - "word": "zx", - "freq": 4.47e-07 - }, - { - "word": "bx", - "freq": 4.37e-07 - }, - { - "word": "fv", - "freq": 4.37e-07 - }, - { - "word": "kf", - "freq": 4.37e-07 - }, - { - "word": "py", - "freq": 4.17e-07 - }, - { - "word": "ij", - "freq": 4.07e-07 - }, - { - "word": "wn", - "freq": 4.07e-07 - }, - { - "word": "xa", - "freq": 4.07e-07 - }, - { - "word": "sz", - "freq": 3.98e-07 - }, - { - "word": "mq", - "freq": 3.89e-07 - }, - { - "word": "rq", - "freq": 3.89e-07 - }, - { - "word": "fj", - "freq": 3.8e-07 - }, - { - "word": "vh", - "freq": 3.72e-07 - }, - { - "word": "yp", - "freq": 3.72e-07 - }, - { - "word": "ls", - "freq": 3.63e-07 - }, - { - "word": "qm", - "freq": 3.47e-07 - }, - { - "word": "xf", - "freq": 3.47e-07 - }, - { - "word": "us", - "freq": 3.39e-07 - }, - { - "word": "pz", - "freq": 3.39e-07 - }, - { - "word": "qp", - "freq": 3.39e-07 - }, - { - "word": "mz", - "freq": 3.31e-07 - }, - { - "word": "yb", - "freq": 3.31e-07 - }, - { - "word": "yl", - "freq": 3.31e-07 - }, - { - "word": "ss", - "freq": 3.24e-07 - }, - { - "word": "qd", - "freq": 3.16e-07 - }, - { - "word": "yn", - "freq": 3.16e-07 - }, - { - "word": "zs", - "freq": 3.09e-07 - }, - { - "word": "ws", - "freq": 3.02e-07 - }, - { - "word": "bq", - "freq": 3.02e-07 - }, - { - "word": "kx", - "freq": 3.02e-07 - }, - { - "word": "ym", - "freq": 3.02e-07 - }, - { - "word": "bz", - "freq": 2.95e-07 - }, - { - "word": "jy", - "freq": 2.95e-07 - }, - { - "word": "tq", - "freq": 2.88e-07 - }, - { - "word": "uj", - "freq": 2.88e-07 - }, - { - "word": "yc", - "freq": 2.88e-07 - }, - { - "word": "zr", - "freq": 2.88e-07 - }, - { - "word": "gz", - "freq": 2.82e-07 - }, - { - "word": "tz", - "freq": 2.82e-07 - }, - { - "word": "xb", - "freq": 2.82e-07 - }, - { - "word": "xj", - "freq": 2.82e-07 - }, - { - "word": "kz", - "freq": 2.75e-07 - }, - { - "word": "fs", - "freq": 2.69e-07 - }, - { - "word": "il", - "freq": 2.63e-07 - }, - { - "word": "vy", - "freq": 2.63e-07 - }, - { - "word": "yj", - "freq": 2.63e-07 - }, - { - "word": "yy", - "freq": 2.63e-07 - }, - { - "word": "vz", - "freq": 2.57e-07 - }, - { - "word": "hx", - "freq": 2.45e-07 - }, - { - "word": "lq", - "freq": 2.4e-07 - }, - { - "word": "yf", - "freq": 2.34e-07 - }, - { - "word": "ns", - "freq": 2.29e-07 - }, - { - "word": "xg", - "freq": 2.29e-07 - }, - { - "word": "hs", - "freq": 2.24e-07 - }, - { - "word": "uq", - "freq": 2.24e-07 - }, - { - "word": "zf", - "freq": 2.24e-07 - }, - { - "word": "nq", - "freq": 2.14e-07 - }, - { - "word": "uy", - "freq": 2.14e-07 - }, - { - "word": "qv", - "freq": 2.09e-07 - }, - { - "word": "yh", - "freq": 2.09e-07 - }, - { - "word": "rz", - "freq": 2.04e-07 - }, - { - "word": "fz", - "freq": 1.95e-07 - }, - { - "word": "wj", - "freq": 1.95e-07 - }, - { - "word": "ys", - "freq": 1.91e-07 - }, - { - "word": "xz", - "freq": 1.82e-07 - }, - { - "word": "iy", - "freq": 1.78e-07 - }, - { - "word": "wz", - "freq": 1.78e-07 - }, - { - "word": "ql", - "freq": 1.7e-07 - }, - { - "word": "uz", - "freq": 1.7e-07 - }, - { - "word": "xk", - "freq": 1.7e-07 - }, - { - "word": "qo", - "freq": 1.66e-07 - }, - { - "word": "wx", - "freq": 1.62e-07 - }, - { - "word": "zp", - "freq": 1.62e-07 - }, - { - "word": "wq", - "freq": 1.55e-07 - }, - { - "word": "fn", - "freq": 1.51e-07 - }, - { - "word": "zk", - "freq": 1.51e-07 - }, - { - "word": "zt", - "freq": 1.51e-07 - }, - { - "word": "xn", - "freq": 1.48e-07 - }, - { - "word": "jx", - "freq": 1.45e-07 - }, - { - "word": "zm", - "freq": 1.45e-07 - }, - { - "word": "iv", - "freq": 1.41e-07 - }, - { - "word": "lm", - "freq": 1.41e-07 - }, - { - "word": "yz", - "freq": 1.41e-07 - }, - { - "word": "qn", - "freq": 1.38e-07 - }, - { - "word": "yw", - "freq": 1.32e-07 - }, - { - "word": "fd", - "freq": 1.29e-07 - }, - { - "word": "yk", - "freq": 1.29e-07 - }, - { - "word": "kq", - "freq": 1.23e-07 - }, - { - "word": "zc", - "freq": 1.23e-07 - }, - { - "word": "zl", - "freq": 1.23e-07 - }, - { - "word": "zb", - "freq": 1.15e-07 - }, - { - "word": "zg", - "freq": 1.15e-07 - }, - { - "word": "fq", - "freq": 1.12e-07 - }, - { - "word": "vq", - "freq": 1.07e-07 - }, - { - "word": "jq", - "freq": 1.05e-07 - }, - { - "word": "qx", - "freq": 1.05e-07 - }, - { - "word": "oq", - "freq": 1.02e-07 - }, - { - "word": "qw", - "freq": 1.02e-07 - }, - { - "word": "xh", - "freq": 1.02e-07 - }, - { - "word": "zj", - "freq": 1.02e-07 - }, - { - "word": "zy", - "freq": 1.02e-07 - }, - { - "word": "qh", - "freq": 9.55e-08 - }, - { - "word": "zd", - "freq": 9.33e-08 - }, - { - "word": "jz", - "freq": 8.71e-08 - }, - { - "word": "qg", - "freq": 8.13e-08 - }, - { - "word": "xw", - "freq": 8.13e-08 - }, - { - "word": "zw", - "freq": 8.13e-08 - }, - { - "word": "xq", - "freq": 6.76e-08 - }, - { - "word": "yx", - "freq": 6.76e-08 - }, - { - "word": "qy", - "freq": 6.61e-08 - }, - { - "word": "in", - "freq": 6.46e-08 - }, - { - "word": "yv", - "freq": 5.75e-08 - }, - { - "word": "qz", - "freq": 5.01e-08 - }, - { - "word": "it", - "freq": 2.63e-08 - }, - { - "word": "td", - "freq": 2.57e-08 - }, - { - "word": "or", - "freq": 2.45e-08 - }, - { - "word": "od", - "freq": 2.45e-08 - }, - { - "word": "ud", - "freq": 2.14e-08 - }, - { - "word": "ar", - "freq": 1.74e-08 - }, - { - "word": "ed", - "freq": 1.58e-08 - }, - { - "word": "if", - "freq": 1.51e-08 - }, - { - "word": "am", - "freq": 1.32e-08 - } - ], - "4": [ - { - "word": "that", - "freq": 0.0102 - }, - { - "word": "with", - "freq": 0.00708 - }, - { - "word": "this", - "freq": 0.00661 - }, - { - "word": "have", - "freq": 0.00513 - }, - { - "word": "from", - "freq": 0.00427 - }, - { - "word": "they", - "freq": 0.00316 - }, - { - "word": "will", - "freq": 0.00282 - }, - { - "word": "just", - "freq": 0.00269 - }, - { - "word": "like", - "freq": 0.00257 - }, - { - "word": "what", - "freq": 0.0024 - }, - { - "word": "when", - "freq": 0.00234 - }, - { - "word": "more", - "freq": 0.00229 - }, - { - "word": "time", - "freq": 0.00195 - }, - { - "word": "been", - "freq": 0.00186 - }, - { - "word": "some", - "freq": 0.00158 - }, - { - "word": "also", - "freq": 0.00155 - }, - { - "word": "them", - "freq": 0.00155 - }, - { - "word": "than", - "freq": 0.00135 - }, - { - "word": "good", - "freq": 0.00132 - }, - { - "word": "only", - "freq": 0.00132 - }, - { - "word": "into", - "freq": 0.00129 - }, - { - "word": "know", - "freq": 0.00126 - }, - { - "word": "make", - "freq": 0.0012 - }, - { - "word": "over", - "freq": 0.0012 - }, - { - "word": "then", - "freq": 0.00117 - }, - { - "word": "back", - "freq": 0.0011 - }, - { - "word": "said", - "freq": 0.00102 - }, - { - "word": "most", - "freq": 0.001 - }, - { - "word": "much", - "freq": 0.001 - }, - { - "word": "very", - "freq": 0.001 - }, - { - "word": "even", - "freq": 0.000977 - }, - { - "word": "here", - "freq": 0.000933 - }, - { - "word": "need", - "freq": 0.000933 - }, - { - "word": "work", - "freq": 0.000912 - }, - { - "word": "year", - "freq": 0.000912 - }, - { - "word": "made", - "freq": 0.000832 - }, - { - "word": "take", - "freq": 0.000832 - }, - { - "word": "many", - "freq": 0.000813 - }, - { - "word": "life", - "freq": 0.000776 - }, - { - "word": "down", - "freq": 0.000759 - }, - { - "word": "last", - "freq": 0.000724 - }, - { - "word": "best", - "freq": 0.000692 - }, - { - "word": "such", - "freq": 0.000692 - }, - { - "word": "love", - "freq": 0.000661 - }, - { - "word": "home", - "freq": 0.000646 - }, - { - "word": "long", - "freq": 0.000646 - }, - { - "word": "look", - "freq": 0.000646 - }, - { - "word": "same", - "freq": 0.000631 - }, - { - "word": "used", - "freq": 0.000631 - }, - { - "word": "both", - "freq": 0.000617 - }, - { - "word": "come", - "freq": 0.000603 - }, - { - "word": "part", - "freq": 0.000603 - }, - { - "word": "find", - "freq": 0.000575 - }, - { - "word": "help", - "freq": 0.000562 - }, - { - "word": "high", - "freq": 0.000562 - }, - { - "word": "game", - "freq": 0.000525 - }, - { - "word": "give", - "freq": 0.000513 - }, - { - "word": "next", - "freq": 0.000501 - }, - { - "word": "each", - "freq": 0.00049 - }, - { - "word": "must", - "freq": 0.000479 - }, - { - "word": "show", - "freq": 0.000479 - }, - { - "word": "feel", - "freq": 0.000468 - }, - { - "word": "sure", - "freq": 0.000468 - }, - { - "word": "team", - "freq": 0.000468 - }, - { - "word": "ever", - "freq": 0.000457 - }, - { - "word": "keep", - "freq": 0.000457 - }, - { - "word": "free", - "freq": 0.000427 - }, - { - "word": "away", - "freq": 0.000417 - }, - { - "word": "left", - "freq": 0.000417 - }, - { - "word": "city", - "freq": 0.000407 - }, - { - "word": "name", - "freq": 0.000407 - }, - { - "word": "play", - "freq": 0.000407 - }, - { - "word": "real", - "freq": 0.000398 - }, - { - "word": "done", - "freq": 0.00038 - }, - { - "word": "care", - "freq": 0.000363 - }, - { - "word": "week", - "freq": 0.000363 - }, - { - "word": "case", - "freq": 0.000355 - }, - { - "word": "full", - "freq": 0.000347 - }, - { - "word": "live", - "freq": 0.000347 - }, - { - "word": "read", - "freq": 0.000347 - }, - { - "word": "told", - "freq": 0.000347 - }, - { - "word": "four", - "freq": 0.000339 - }, - { - "word": "hard", - "freq": 0.000339 - }, - { - "word": "mean", - "freq": 0.000339 - }, - { - "word": "once", - "freq": 0.000339 - }, - { - "word": "tell", - "freq": 0.000339 - }, - { - "word": "seen", - "freq": 0.000331 - }, - { - "word": "stop", - "freq": 0.000331 - }, - { - "word": "call", - "freq": 0.000324 - }, - { - "word": "head", - "freq": 0.000324 - }, - { - "word": "took", - "freq": 0.000324 - }, - { - "word": "came", - "freq": 0.000316 - }, - { - "word": "side", - "freq": 0.000316 - }, - { - "word": "went", - "freq": 0.000316 - }, - { - "word": "line", - "freq": 0.000309 - }, - { - "word": "open", - "freq": 0.000302 - }, - { - "word": "shit", - "freq": 0.000302 - }, - { - "word": "area", - "freq": 0.000288 - }, - { - "word": "face", - "freq": 0.000282 - }, - { - "word": "five", - "freq": 0.000282 - }, - { - "word": "kind", - "freq": 0.000282 - }, - { - "word": "hope", - "freq": 0.000275 - }, - { - "word": "able", - "freq": 0.000269 - }, - { - "word": "book", - "freq": 0.000269 - }, - { - "word": "post", - "freq": 0.000269 - }, - { - "word": "talk", - "freq": 0.000263 - }, - { - "word": "fact", - "freq": 0.000257 - }, - { - "word": "half", - "freq": 0.000257 - }, - { - "word": "hand", - "freq": 0.000257 - }, - { - "word": "mind", - "freq": 0.000257 - }, - { - "word": "were", - "freq": 0.000251 - }, - { - "word": "body", - "freq": 0.000251 - }, - { - "word": "food", - "freq": 0.000251 - }, - { - "word": "true", - "freq": 0.000251 - }, - { - "word": "fuck", - "freq": 0.000245 - }, - { - "word": "lost", - "freq": 0.000245 - }, - { - "word": "room", - "freq": 0.000245 - }, - { - "word": "else", - "freq": 0.00024 - }, - { - "word": "girl", - "freq": 0.00024 - }, - { - "word": "john", - "freq": 0.00024 - }, - { - "word": "nice", - "freq": 0.000234 - }, - { - "word": "yeah", - "freq": 0.000234 - }, - { - "word": "york", - "freq": 0.000234 - }, - { - "word": "idea", - "freq": 0.000229 - }, - { - "word": "past", - "freq": 0.000229 - }, - { - "word": "move", - "freq": 0.000224 - }, - { - "word": "wait", - "freq": 0.000224 - }, - { - "word": "data", - "freq": 0.000219 - }, - { - "word": "late", - "freq": 0.000219 - }, - { - "word": "stay", - "freq": 0.000214 - }, - { - "word": "deal", - "freq": 0.000209 - }, - { - "word": "soon", - "freq": 0.000209 - }, - { - "word": "turn", - "freq": 0.000209 - }, - { - "word": "form", - "freq": 0.000204 - }, - { - "word": "fire", - "freq": 0.0002 - }, - { - "word": "easy", - "freq": 0.000195 - }, - { - "word": "near", - "freq": 0.000195 - }, - { - "word": "plan", - "freq": 0.000195 - }, - { - "word": "west", - "freq": 0.000195 - }, - { - "word": "list", - "freq": 0.000191 - }, - { - "word": "meet", - "freq": 0.000186 - }, - { - "word": "type", - "freq": 0.000186 - }, - { - "word": "baby", - "freq": 0.000182 - }, - { - "word": "song", - "freq": 0.000182 - }, - { - "word": "word", - "freq": 0.000182 - }, - { - "word": "gave", - "freq": 0.000178 - }, - { - "word": "self", - "freq": 0.000178 - }, - { - "word": "cost", - "freq": 0.000174 - }, - { - "word": "held", - "freq": 0.000174 - }, - { - "word": "main", - "freq": 0.000174 - }, - { - "word": "road", - "freq": 0.000174 - }, - { - "word": "town", - "freq": 0.000174 - }, - { - "word": "fine", - "freq": 0.00017 - }, - { - "word": "hear", - "freq": 0.00017 - }, - { - "word": "rest", - "freq": 0.00017 - }, - { - "word": "term", - "freq": 0.00017 - }, - { - "word": "wife", - "freq": 0.00017 - }, - { - "word": "date", - "freq": 0.000166 - }, - { - "word": "goes", - "freq": 0.000166 - }, - { - "word": "land", - "freq": 0.000166 - }, - { - "word": "miss", - "freq": 0.000166 - }, - { - "word": "shot", - "freq": 0.000166 - }, - { - "word": "site", - "freq": 0.000166 - }, - { - "word": "june", - "freq": 0.000162 - }, - { - "word": "club", - "freq": 0.000158 - }, - { - "word": "died", - "freq": 0.000158 - }, - { - "word": "film", - "freq": 0.000158 - }, - { - "word": "knew", - "freq": 0.000158 - }, - { - "word": "lead", - "freq": 0.000158 - }, - { - "word": "dead", - "freq": 0.000155 - }, - { - "word": "hold", - "freq": 0.000155 - }, - { - "word": "star", - "freq": 0.000155 - }, - { - "word": "test", - "freq": 0.000155 - }, - { - "word": "view", - "freq": 0.000155 - }, - { - "word": "hour", - "freq": 0.000151 - }, - { - "word": "wish", - "freq": 0.000151 - }, - { - "word": "gold", - "freq": 0.000148 - }, - { - "word": "gone", - "freq": 0.000148 - }, - { - "word": "july", - "freq": 0.000148 - }, - { - "word": "king", - "freq": 0.000148 - }, - { - "word": "bank", - "freq": 0.000145 - }, - { - "word": "east", - "freq": 0.000145 - }, - { - "word": "park", - "freq": 0.000145 - }, - { - "word": "role", - "freq": 0.000145 - }, - { - "word": "sent", - "freq": 0.000145 - }, - { - "word": "bill", - "freq": 0.000141 - }, - { - "word": "cool", - "freq": 0.000141 - }, - { - "word": "rate", - "freq": 0.000138 - }, - { - "word": "save", - "freq": 0.000138 - }, - { - "word": "blue", - "freq": 0.000135 - }, - { - "word": "fall", - "freq": 0.000135 - }, - { - "word": "fast", - "freq": 0.000135 - }, - { - "word": "felt", - "freq": 0.000135 - }, - { - "word": "size", - "freq": 0.000135 - }, - { - "word": "step", - "freq": 0.000135 - }, - { - "word": "page", - "freq": 0.000132 - }, - { - "word": "paid", - "freq": 0.000132 - }, - { - "word": "upon", - "freq": 0.000132 - }, - { - "word": "hate", - "freq": 0.000129 - }, - { - "word": "send", - "freq": 0.000129 - }, - { - "word": "vote", - "freq": 0.000129 - }, - { - "word": "lord", - "freq": 0.000126 - }, - { - "word": "born", - "freq": 0.000123 - }, - { - "word": "damn", - "freq": 0.000123 - }, - { - "word": "kill", - "freq": 0.000123 - }, - { - "word": "poor", - "freq": 0.000123 - }, - { - "word": "code", - "freq": 0.00012 - }, - { - "word": "door", - "freq": 0.00012 - }, - { - "word": "hair", - "freq": 0.00012 - }, - { - "word": "lose", - "freq": 0.00012 - }, - { - "word": "pick", - "freq": 0.00012 - }, - { - "word": "race", - "freq": 0.00012 - }, - { - "word": "seem", - "freq": 0.00012 - }, - { - "word": "sign", - "freq": 0.00012 - }, - { - "word": "walk", - "freq": 0.00012 - }, - { - "word": "loss", - "freq": 0.000117 - }, - { - "word": "safe", - "freq": 0.000117 - }, - { - "word": "army", - "freq": 0.000115 - }, - { - "word": "goal", - "freq": 0.000115 - }, - { - "word": "huge", - "freq": 0.000115 - }, - { - "word": "okay", - "freq": 0.000115 - }, - { - "word": "base", - "freq": 0.000112 - }, - { - "word": "deep", - "freq": 0.000112 - }, - { - "word": "mark", - "freq": 0.000112 - }, - { - "word": "pass", - "freq": 0.000112 - }, - { - "word": "risk", - "freq": 0.000112 - }, - { - "word": "ball", - "freq": 0.00011 - }, - { - "word": "card", - "freq": 0.00011 - }, - { - "word": "dark", - "freq": 0.00011 - }, - { - "word": "mine", - "freq": 0.00011 - }, - { - "word": "note", - "freq": 0.00011 - }, - { - "word": "wall", - "freq": 0.00011 - }, - { - "word": "pain", - "freq": 0.000107 - }, - { - "word": "paul", - "freq": 0.000107 - }, - { - "word": "rock", - "freq": 0.000107 - }, - { - "word": "cold", - "freq": 0.000105 - }, - { - "word": "anti", - "freq": 0.000102 - }, - { - "word": "beat", - "freq": 0.000102 - }, - { - "word": "text", - "freq": 0.000102 - }, - { - "word": "join", - "freq": 0.0001 - }, - { - "word": "kept", - "freq": 0.0001 - }, - { - "word": "sort", - "freq": 0.0001 - }, - { - "word": "drop", - "freq": 9.77e-05 - }, - { - "word": "fair", - "freq": 9.77e-05 - }, - { - "word": "feet", - "freq": 9.77e-05 - }, - { - "word": "link", - "freq": 9.77e-05 - }, - { - "word": "sale", - "freq": 9.77e-05 - }, - { - "word": "tour", - "freq": 9.77e-05 - }, - { - "word": "sell", - "freq": 9.55e-05 - }, - { - "word": "sold", - "freq": 9.33e-05 - }, - { - "word": "wide", - "freq": 9.12e-05 - }, - { - "word": "fear", - "freq": 8.91e-05 - }, - { - "word": "lady", - "freq": 8.91e-05 - }, - { - "word": "plus", - "freq": 8.91e-05 - }, - { - "word": "unit", - "freq": 8.91e-05 - }, - { - "word": "hurt", - "freq": 8.71e-05 - }, - { - "word": "rule", - "freq": 8.71e-05 - }, - { - "word": "none", - "freq": 8.51e-05 - }, - { - "word": "ship", - "freq": 8.51e-05 - }, - { - "word": "band", - "freq": 8.32e-05 - }, - { - "word": "cash", - "freq": 8.32e-05 - }, - { - "word": "lack", - "freq": 8.32e-05 - }, - { - "word": "wear", - "freq": 8.32e-05 - }, - { - "word": "luck", - "freq": 8.13e-05 - }, - { - "word": "rich", - "freq": 8.13e-05 - }, - { - "word": "skin", - "freq": 8.13e-05 - }, - { - "word": "thus", - "freq": 8.13e-05 - }, - { - "word": "fish", - "freq": 7.94e-05 - }, - { - "word": "glad", - "freq": 7.94e-05 - }, - { - "word": "grow", - "freq": 7.94e-05 - }, - { - "word": "trip", - "freq": 7.94e-05 - }, - { - "word": "well", - "freq": 7.76e-05 - }, - { - "word": "male", - "freq": 7.76e-05 - }, - { - "word": "spot", - "freq": 7.76e-05 - }, - { - "word": "holy", - "freq": 7.59e-05 - }, - { - "word": "shop", - "freq": 7.59e-05 - }, - { - "word": "sick", - "freq": 7.59e-05 - }, - { - "word": "uses", - "freq": 7.59e-05 - }, - { - "word": "cell", - "freq": 7.41e-05 - }, - { - "word": "drug", - "freq": 7.41e-05 - }, - { - "word": "foot", - "freq": 7.41e-05 - }, - { - "word": "hall", - "freq": 7.41e-05 - }, - { - "word": "mass", - "freq": 7.41e-05 - }, - { - "word": "nine", - "freq": 7.41e-05 - }, - { - "word": "heat", - "freq": 7.24e-05 - }, - { - "word": "fell", - "freq": 7.08e-05 - }, - { - "word": "ride", - "freq": 7.08e-05 - }, - { - "word": "slow", - "freq": 7.08e-05 - }, - { - "word": "tree", - "freq": 7.08e-05 - }, - { - "word": "whom", - "freq": 7.08e-05 - }, - { - "word": "wind", - "freq": 6.92e-05 - }, - { - "word": "cent", - "freq": 6.76e-05 - }, - { - "word": "lake", - "freq": 6.76e-05 - }, - { - "word": "fund", - "freq": 6.61e-05 - }, - { - "word": "hill", - "freq": 6.61e-05 - }, - { - "word": "jack", - "freq": 6.61e-05 - }, - { - "word": "pull", - "freq": 6.61e-05 - }, - { - "word": "push", - "freq": 6.61e-05 - }, - { - "word": "rose", - "freq": 6.61e-05 - }, - { - "word": "seat", - "freq": 6.61e-05 - }, - { - "word": "draw", - "freq": 6.46e-05 - }, - { - "word": "dude", - "freq": 6.46e-05 - }, - { - "word": "gain", - "freq": 6.46e-05 - }, - { - "word": "http", - "freq": 6.46e-05 - }, - { - "word": "ring", - "freq": 6.46e-05 - }, - { - "word": "rise", - "freq": 6.46e-05 - }, - { - "word": "soul", - "freq": 6.46e-05 - }, - { - "word": "mike", - "freq": 6.31e-05 - }, - { - "word": "wild", - "freq": 6.31e-05 - }, - { - "word": "camp", - "freq": 6.17e-05 - }, - { - "word": "cast", - "freq": 6.17e-05 - }, - { - "word": "firm", - "freq": 6.17e-05 - }, - { - "word": "till", - "freq": 6.17e-05 - }, - { - "word": "gift", - "freq": 6.03e-05 - }, - { - "word": "mary", - "freq": 6.03e-05 - }, - { - "word": "shut", - "freq": 6.03e-05 - }, - { - "word": "copy", - "freq": 5.89e-05 - }, - { - "word": "dear", - "freq": 5.89e-05 - }, - { - "word": "host", - "freq": 5.89e-05 - }, - { - "word": "onto", - "freq": 5.89e-05 - }, - { - "word": "rare", - "freq": 5.89e-05 - }, - { - "word": "boss", - "freq": 5.75e-05 - }, - { - "word": "wake", - "freq": 5.75e-05 - }, - { - "word": "busy", - "freq": 5.62e-05 - }, - { - "word": "farm", - "freq": 5.62e-05 - }, - { - "word": "file", - "freq": 5.62e-05 - }, - { - "word": "roll", - "freq": 5.62e-05 - }, - { - "word": "edge", - "freq": 5.5e-05 - }, - { - "word": "evil", - "freq": 5.5e-05 - }, - { - "word": "iron", - "freq": 5.5e-05 - }, - { - "word": "wine", - "freq": 5.5e-05 - }, - { - "word": "blog", - "freq": 5.37e-05 - }, - { - "word": "core", - "freq": 5.37e-05 - }, - { - "word": "lies", - "freq": 5.37e-05 - }, - { - "word": "port", - "freq": 5.37e-05 - }, - { - "word": "flat", - "freq": 5.25e-05 - }, - { - "word": "fuel", - "freq": 5.25e-05 - }, - { - "word": "kick", - "freq": 5.25e-05 - }, - { - "word": "mail", - "freq": 5.25e-05 - }, - { - "word": "pair", - "freq": 5.25e-05 - }, - { - "word": "zone", - "freq": 5.25e-05 - }, - { - "word": "bear", - "freq": 5.13e-05 - }, - { - "word": "boat", - "freq": 5.13e-05 - }, - { - "word": "duty", - "freq": 5.13e-05 - }, - { - "word": "path", - "freq": 5.13e-05 - }, - { - "word": "rain", - "freq": 5.13e-05 - }, - { - "word": "vice", - "freq": 5.13e-05 - }, - { - "word": "warm", - "freq": 5.13e-05 - }, - { - "word": "beer", - "freq": 5.01e-05 - }, - { - "word": "crew", - "freq": 5.01e-05 - }, - { - "word": "dick", - "freq": 5.01e-05 - }, - { - "word": "moon", - "freq": 5.01e-05 - }, - { - "word": "suit", - "freq": 5.01e-05 - }, - { - "word": "debt", - "freq": 4.9e-05 - }, - { - "word": "grew", - "freq": 4.9e-05 - }, - { - "word": "jump", - "freq": 4.9e-05 - }, - { - "word": "tech", - "freq": 4.9e-05 - }, - { - "word": "user", - "freq": 4.9e-05 - }, - { - "word": "flow", - "freq": 4.79e-05 - }, - { - "word": "hero", - "freq": 4.79e-05 - }, - { - "word": "joke", - "freq": 4.79e-05 - }, - { - "word": "loan", - "freq": 4.79e-05 - }, - { - "word": "soft", - "freq": 4.79e-05 - }, - { - "word": "feed", - "freq": 4.68e-05 - }, - { - "word": "pool", - "freq": 4.68e-05 - }, - { - "word": "hole", - "freq": 4.57e-05 - }, - { - "word": "milk", - "freq": 4.57e-05 - }, - { - "word": "pack", - "freq": 4.57e-05 - }, - { - "word": "snow", - "freq": 4.57e-05 - }, - { - "word": "weak", - "freq": 4.57e-05 - }, - { - "word": "asia", - "freq": 4.47e-05 - }, - { - "word": "cook", - "freq": 4.47e-05 - }, - { - "word": "cute", - "freq": 4.47e-05 - }, - { - "word": "fake", - "freq": 4.47e-05 - }, - { - "word": "task", - "freq": 4.47e-05 - }, - { - "word": "fill", - "freq": 4.37e-05 - }, - { - "word": "pure", - "freq": 4.37e-05 - }, - { - "word": "tony", - "freq": 4.37e-05 - }, - { - "word": "bird", - "freq": 4.27e-05 - }, - { - "word": "bowl", - "freq": 4.27e-05 - }, - { - "word": "meat", - "freq": 4.27e-05 - }, - { - "word": "mode", - "freq": 4.27e-05 - }, - { - "word": "neck", - "freq": 4.27e-05 - }, - { - "word": "zero", - "freq": 4.27e-05 - }, - { - "word": "alex", - "freq": 4.17e-05 - }, - { - "word": "iran", - "freq": 4.17e-05 - }, - { - "word": "jail", - "freq": 4.17e-05 - }, - { - "word": "tiny", - "freq": 4.17e-05 - }, - { - "word": "wave", - "freq": 4.17e-05 - }, - { - "word": "fail", - "freq": 4.07e-05 - }, - { - "word": "ohio", - "freq": 4.07e-05 - }, - { - "word": "seek", - "freq": 4.07e-05 - }, - { - "word": "solo", - "freq": 4.07e-05 - }, - { - "word": "wing", - "freq": 4.07e-05 - }, - { - "word": "bomb", - "freq": 3.98e-05 - }, - { - "word": "hang", - "freq": 3.98e-05 - }, - { - "word": "info", - "freq": 3.98e-05 - }, - { - "word": "salt", - "freq": 3.98e-05 - }, - { - "word": "bell", - "freq": 3.89e-05 - }, - { - "word": "blow", - "freq": 3.89e-05 - }, - { - "word": "bond", - "freq": 3.89e-05 - }, - { - "word": "mile", - "freq": 3.89e-05 - }, - { - "word": "nick", - "freq": 3.89e-05 - }, - { - "word": "ryan", - "freq": 3.89e-05 - }, - { - "word": "flag", - "freq": 3.8e-05 - }, - { - "word": "kiss", - "freq": 3.8e-05 - }, - { - "word": "load", - "freq": 3.8e-05 - }, - { - "word": "plot", - "freq": 3.8e-05 - }, - { - "word": "rent", - "freq": 3.8e-05 - }, - { - "word": "chat", - "freq": 3.72e-05 - }, - { - "word": "diet", - "freq": 3.72e-05 - }, - { - "word": "item", - "freq": 3.72e-05 - }, - { - "word": "lane", - "freq": 3.72e-05 - }, - { - "word": "mess", - "freq": 3.72e-05 - }, - { - "word": "navy", - "freq": 3.72e-05 - }, - { - "word": "tank", - "freq": 3.72e-05 - }, - { - "word": "tend", - "freq": 3.72e-05 - }, - { - "word": "yard", - "freq": 3.72e-05 - }, - { - "word": "golf", - "freq": 3.63e-05 - }, - { - "word": "laid", - "freq": 3.63e-05 - }, - { - "word": "tool", - "freq": 3.63e-05 - }, - { - "word": "mate", - "freq": 3.55e-05 - }, - { - "word": "matt", - "freq": 3.55e-05 - }, - { - "word": "rice", - "freq": 3.55e-05 - }, - { - "word": "roof", - "freq": 3.55e-05 - }, - { - "word": "hell", - "freq": 3.47e-05 - }, - { - "word": "calm", - "freq": 3.47e-05 - }, - { - "word": "dumb", - "freq": 3.47e-05 - }, - { - "word": "hide", - "freq": 3.47e-05 - }, - { - "word": "quit", - "freq": 3.47e-05 - }, - { - "word": "sing", - "freq": 3.47e-05 - }, - { - "word": "bike", - "freq": 3.39e-05 - }, - { - "word": "burn", - "freq": 3.39e-05 - }, - { - "word": "cake", - "freq": 3.39e-05 - }, - { - "word": "haha", - "freq": 3.39e-05 - }, - { - "word": "hong", - "freq": 3.39e-05 - }, - { - "word": "loud", - "freq": 3.39e-05 - }, - { - "word": "peak", - "freq": 3.39e-05 - }, - { - "word": "puts", - "freq": 3.39e-05 - }, - { - "word": "grab", - "freq": 3.31e-05 - }, - { - "word": "pink", - "freq": 3.31e-05 - }, - { - "word": "tall", - "freq": 3.31e-05 - }, - { - "word": "lets", - "freq": 3.24e-05 - }, - { - "word": "lock", - "freq": 3.24e-05 - }, - { - "word": "nose", - "freq": 3.24e-05 - }, - { - "word": "semi", - "freq": 3.24e-05 - }, - { - "word": "wise", - "freq": 3.24e-05 - }, - { - "word": "aged", - "freq": 3.16e-05 - }, - { - "word": "ford", - "freq": 3.16e-05 - }, - { - "word": "gang", - "freq": 3.16e-05 - }, - { - "word": "lift", - "freq": 3.16e-05 - }, - { - "word": "porn", - "freq": 3.16e-05 - }, - { - "word": "bush", - "freq": 3.09e-05 - }, - { - "word": "coal", - "freq": 3.09e-05 - }, - { - "word": "eric", - "freq": 3.09e-05 - }, - { - "word": "hunt", - "freq": 3.09e-05 - }, - { - "word": "inch", - "freq": 3.09e-05 - }, - { - "word": "jury", - "freq": 3.09e-05 - }, - { - "word": "kong", - "freq": 3.09e-05 - }, - { - "word": "tone", - "freq": 3.09e-05 - }, - { - "word": "vast", - "freq": 3.09e-05 - }, - { - "word": "auto", - "freq": 3.02e-05 - }, - { - "word": "earn", - "freq": 3.02e-05 - }, - { - "word": "grey", - "freq": 3.02e-05 - }, - { - "word": "meal", - "freq": 3.02e-05 - }, - { - "word": "rape", - "freq": 3.02e-05 - }, - { - "word": "rush", - "freq": 3.02e-05 - }, - { - "word": "bone", - "freq": 2.95e-05 - }, - { - "word": "gate", - "freq": 2.95e-05 - }, - { - "word": "harm", - "freq": 2.95e-05 - }, - { - "word": "thin", - "freq": 2.95e-05 - }, - { - "word": "tied", - "freq": 2.95e-05 - }, - { - "word": "drew", - "freq": 2.88e-05 - }, - { - "word": "gear", - "freq": 2.88e-05 - }, - { - "word": "tons", - "freq": 2.88e-05 - }, - { - "word": "wash", - "freq": 2.88e-05 - }, - { - "word": "acid", - "freq": 2.82e-05 - }, - { - "word": "alan", - "freq": 2.82e-05 - }, - { - "word": "duke", - "freq": 2.82e-05 - }, - { - "word": "gray", - "freq": 2.82e-05 - }, - { - "word": "jeff", - "freq": 2.82e-05 - }, - { - "word": "luke", - "freq": 2.82e-05 - }, - { - "word": "math", - "freq": 2.82e-05 - }, - { - "word": "rome", - "freq": 2.82e-05 - }, - { - "word": "asks", - "freq": 2.75e-05 - }, - { - "word": "bath", - "freq": 2.75e-05 - }, - { - "word": "dave", - "freq": 2.75e-05 - }, - { - "word": "mini", - "freq": 2.75e-05 - }, - { - "word": "mood", - "freq": 2.75e-05 - }, - { - "word": "rank", - "freq": 2.75e-05 - }, - { - "word": "sand", - "freq": 2.75e-05 - }, - { - "word": "tape", - "freq": 2.75e-05 - }, - { - "word": "wage", - "freq": 2.75e-05 - }, - { - "word": "andy", - "freq": 2.69e-05 - }, - { - "word": "desk", - "freq": 2.69e-05 - }, - { - "word": "iraq", - "freq": 2.69e-05 - }, - { - "word": "rear", - "freq": 2.69e-05 - }, - { - "word": "wire", - "freq": 2.69e-05 - }, - { - "word": "belt", - "freq": 2.63e-05 - }, - { - "word": "cuts", - "freq": 2.63e-05 - }, - { - "word": "jane", - "freq": 2.63e-05 - }, - { - "word": "sexy", - "freq": 2.63e-05 - }, - { - "word": "soil", - "freq": 2.63e-05 - }, - { - "word": "suck", - "freq": 2.63e-05 - }, - { - "word": "ugly", - "freq": 2.63e-05 - }, - { - "word": "deck", - "freq": 2.57e-05 - }, - { - "word": "dies", - "freq": 2.57e-05 - }, - { - "word": "dust", - "freq": 2.57e-05 - }, - { - "word": "rail", - "freq": 2.57e-05 - }, - { - "word": "root", - "freq": 2.57e-05 - }, - { - "word": "crap", - "freq": 2.51e-05 - }, - { - "word": "dean", - "freq": 2.51e-05 - }, - { - "word": "hire", - "freq": 2.51e-05 - }, - { - "word": "pray", - "freq": 2.51e-05 - }, - { - "word": "sake", - "freq": 2.51e-05 - }, - { - "word": "ones", - "freq": 2.45e-05 - }, - { - "word": "arab", - "freq": 2.45e-05 - }, - { - "word": "gary", - "freq": 2.45e-05 - }, - { - "word": "ross", - "freq": 2.45e-05 - }, - { - "word": "adds", - "freq": 2.4e-05 - }, - { - "word": "mill", - "freq": 2.4e-05 - }, - { - "word": "pace", - "freq": 2.4e-05 - }, - { - "word": "pope", - "freq": 2.4e-05 - }, - { - "word": "spin", - "freq": 2.4e-05 - }, - { - "word": "gods", - "freq": 2.34e-05 - }, - { - "word": "anna", - "freq": 2.34e-05 - }, - { - "word": "hook", - "freq": 2.34e-05 - }, - { - "word": "phil", - "freq": 2.34e-05 - }, - { - "word": "seed", - "freq": 2.34e-05 - }, - { - "word": "ward", - "freq": 2.34e-05 - }, - { - "word": "coat", - "freq": 2.29e-05 - }, - { - "word": "fate", - "freq": 2.29e-05 - }, - { - "word": "gene", - "freq": 2.29e-05 - }, - { - "word": "jean", - "freq": 2.29e-05 - }, - { - "word": "tube", - "freq": 2.29e-05 - }, - { - "word": "cant", - "freq": 2.24e-05 - }, - { - "word": "epic", - "freq": 2.24e-05 - }, - { - "word": "exit", - "freq": 2.24e-05 - }, - { - "word": "josh", - "freq": 2.24e-05 - }, - { - "word": "lips", - "freq": 2.24e-05 - }, - { - "word": "poll", - "freq": 2.24e-05 - }, - { - "word": "sept", - "freq": 2.24e-05 - }, - { - "word": "tear", - "freq": 2.24e-05 - }, - { - "word": "ties", - "freq": 2.24e-05 - }, - { - "word": "wolf", - "freq": 2.24e-05 - }, - { - "word": "bull", - "freq": 2.19e-05 - }, - { - "word": "deny", - "freq": 2.19e-05 - }, - { - "word": "ease", - "freq": 2.19e-05 - }, - { - "word": "fame", - "freq": 2.19e-05 - }, - { - "word": "kate", - "freq": 2.19e-05 - }, - { - "word": "tail", - "freq": 2.19e-05 - }, - { - "word": "twin", - "freq": 2.19e-05 - }, - { - "word": "boom", - "freq": 2.14e-05 - }, - { - "word": "iowa", - "freq": 2.14e-05 - }, - { - "word": "knee", - "freq": 2.14e-05 - }, - { - "word": "teen", - "freq": 2.14e-05 - }, - { - "word": "trap", - "freq": 2.14e-05 - }, - { - "word": "anne", - "freq": 2.09e-05 - }, - { - "word": "bang", - "freq": 2.09e-05 - }, - { - "word": "cure", - "freq": 2.09e-05 - }, - { - "word": "rick", - "freq": 2.09e-05 - }, - { - "word": "bite", - "freq": 2.04e-05 - }, - { - "word": "chip", - "freq": 2.04e-05 - }, - { - "word": "dare", - "freq": 2.04e-05 - }, - { - "word": "jazz", - "freq": 2.04e-05 - }, - { - "word": "mask", - "freq": 2.04e-05 - }, - { - "word": "ruin", - "freq": 2.04e-05 - }, - { - "word": "sean", - "freq": 2.04e-05 - }, - { - "word": "cape", - "freq": 2e-05 - }, - { - "word": "edit", - "freq": 2e-05 - }, - { - "word": "nuts", - "freq": 2e-05 - }, - { - "word": "seal", - "freq": 2e-05 - }, - { - "word": "stem", - "freq": 2e-05 - }, - { - "word": "beef", - "freq": 1.95e-05 - }, - { - "word": "clay", - "freq": 1.95e-05 - }, - { - "word": "drag", - "freq": 1.95e-05 - }, - { - "word": "fool", - "freq": 1.95e-05 - }, - { - "word": "lisa", - "freq": 1.95e-05 - }, - { - "word": "loop", - "freq": 1.95e-05 - }, - { - "word": "mall", - "freq": 1.95e-05 - }, - { - "word": "rely", - "freq": 1.95e-05 - }, - { - "word": "sole", - "freq": 1.95e-05 - }, - { - "word": "tale", - "freq": 1.95e-05 - }, - { - "word": "wore", - "freq": 1.95e-05 - }, - { - "word": "bass", - "freq": 1.91e-05 - }, - { - "word": "butt", - "freq": 1.91e-05 - }, - { - "word": "dual", - "freq": 1.91e-05 - }, - { - "word": "gulf", - "freq": 1.91e-05 - }, - { - "word": "lmao", - "freq": 1.91e-05 - }, - { - "word": "logo", - "freq": 1.91e-05 - }, - { - "word": "nazi", - "freq": 1.91e-05 - }, - { - "word": "pump", - "freq": 1.91e-05 - }, - { - "word": "slip", - "freq": 1.91e-05 - }, - { - "word": "corp", - "freq": 1.86e-05 - }, - { - "word": "dawn", - "freq": 1.86e-05 - }, - { - "word": "fits", - "freq": 1.86e-05 - }, - { - "word": "tune", - "freq": 1.86e-05 - }, - { - "word": "weed", - "freq": 1.86e-05 - }, - { - "word": "bold", - "freq": 1.82e-05 - }, - { - "word": "clip", - "freq": 1.82e-05 - }, - { - "word": "exam", - "freq": 1.82e-05 - }, - { - "word": "menu", - "freq": 1.82e-05 - }, - { - "word": "nope", - "freq": 1.82e-05 - }, - { - "word": "oral", - "freq": 1.82e-05 - }, - { - "word": "pays", - "freq": 1.82e-05 - }, - { - "word": "worn", - "freq": 1.82e-05 - }, - { - "word": "khan", - "freq": 1.78e-05 - }, - { - "word": "lion", - "freq": 1.78e-05 - }, - { - "word": "pipe", - "freq": 1.78e-05 - }, - { - "word": "poem", - "freq": 1.78e-05 - }, - { - "word": "rude", - "freq": 1.78e-05 - }, - { - "word": "vary", - "freq": 1.78e-05 - }, - { - "word": "carl", - "freq": 1.74e-05 - }, - { - "word": "dirt", - "freq": 1.74e-05 - }, - { - "word": "lazy", - "freq": 1.74e-05 - }, - { - "word": "mama", - "freq": 1.74e-05 - }, - { - "word": "shoe", - "freq": 1.74e-05 - }, - { - "word": "chef", - "freq": 1.7e-05 - }, - { - "word": "cock", - "freq": 1.7e-05 - }, - { - "word": "emma", - "freq": 1.7e-05 - }, - { - "word": "greg", - "freq": 1.7e-05 - }, - { - "word": "palm", - "freq": 1.7e-05 - }, - { - "word": "pole", - "freq": 1.7e-05 - }, - { - "word": "utah", - "freq": 1.7e-05 - }, - { - "word": "folk", - "freq": 1.66e-05 - }, - { - "word": "leaf", - "freq": 1.66e-05 - }, - { - "word": "woke", - "freq": 1.66e-05 - }, - { - "word": "aims", - "freq": 1.62e-05 - }, - { - "word": "dish", - "freq": 1.62e-05 - }, - { - "word": "duck", - "freq": 1.62e-05 - }, - { - "word": "fifa", - "freq": 1.62e-05 - }, - { - "word": "fred", - "freq": 1.62e-05 - }, - { - "word": "hood", - "freq": 1.62e-05 - }, - { - "word": "hung", - "freq": 1.62e-05 - }, - { - "word": "jose", - "freq": 1.62e-05 - }, - { - "word": "lied", - "freq": 1.62e-05 - }, - { - "word": "nail", - "freq": 1.62e-05 - }, - { - "word": "nasa", - "freq": 1.62e-05 - }, - { - "word": "owns", - "freq": 1.62e-05 - }, - { - "word": "poet", - "freq": 1.62e-05 - }, - { - "word": "sink", - "freq": 1.62e-05 - }, - { - "word": "skip", - "freq": 1.62e-05 - }, - { - "word": "snap", - "freq": 1.62e-05 - }, - { - "word": "swim", - "freq": 1.62e-05 - }, - { - "word": "beta", - "freq": 1.58e-05 - }, - { - "word": "cave", - "freq": 1.58e-05 - }, - { - "word": "dose", - "freq": 1.58e-05 - }, - { - "word": "flip", - "freq": 1.58e-05 - }, - { - "word": "punk", - "freq": 1.58e-05 - }, - { - "word": "wrap", - "freq": 1.58e-05 - }, - { - "word": "yoga", - "freq": 1.58e-05 - }, - { - "word": "boot", - "freq": 1.55e-05 - }, - { - "word": "bulk", - "freq": 1.55e-05 - }, - { - "word": "coin", - "freq": 1.55e-05 - }, - { - "word": "corn", - "freq": 1.55e-05 - }, - { - "word": "raid", - "freq": 1.55e-05 - }, - { - "word": "sony", - "freq": 1.55e-05 - }, - { - "word": "taxi", - "freq": 1.55e-05 - }, - { - "word": "xbox", - "freq": 1.55e-05 - }, - { - "word": "shed", - "freq": 1.51e-05 - }, - { - "word": "bare", - "freq": 1.51e-05 - }, - { - "word": "clue", - "freq": 1.51e-05 - }, - { - "word": "cole", - "freq": 1.51e-05 - }, - { - "word": "earl", - "freq": 1.51e-05 - }, - { - "word": "grid", - "freq": 1.51e-05 - }, - { - "word": "sits", - "freq": 1.51e-05 - }, - { - "word": "soap", - "freq": 1.51e-05 - }, - { - "word": "jake", - "freq": 1.48e-05 - }, - { - "word": "kent", - "freq": 1.48e-05 - }, - { - "word": "piss", - "freq": 1.48e-05 - }, - { - "word": "thai", - "freq": 1.48e-05 - }, - { - "word": "aunt", - "freq": 1.45e-05 - }, - { - "word": "flew", - "freq": 1.45e-05 - }, - { - "word": "icon", - "freq": 1.45e-05 - }, - { - "word": "neil", - "freq": 1.45e-05 - }, - { - "word": "thou", - "freq": 1.45e-05 - }, - { - "word": "tier", - "freq": 1.45e-05 - }, - { - "word": "crop", - "freq": 1.41e-05 - }, - { - "word": "soup", - "freq": 1.41e-05 - }, - { - "word": "beam", - "freq": 1.38e-05 - }, - { - "word": "horn", - "freq": 1.38e-05 - }, - { - "word": "kyle", - "freq": 1.38e-05 - }, - { - "word": "lean", - "freq": 1.38e-05 - }, - { - "word": "peer", - "freq": 1.38e-05 - }, - { - "word": "pile", - "freq": 1.38e-05 - }, - { - "word": "plug", - "freq": 1.38e-05 - }, - { - "word": "bend", - "freq": 1.35e-05 - }, - { - "word": "cage", - "freq": 1.35e-05 - }, - { - "word": "cuba", - "freq": 1.35e-05 - }, - { - "word": "disc", - "freq": 1.35e-05 - }, - { - "word": "keen", - "freq": 1.35e-05 - }, - { - "word": "mere", - "freq": 1.35e-05 - }, - { - "word": "visa", - "freq": 1.35e-05 - }, - { - "word": "blew", - "freq": 1.32e-05 - }, - { - "word": "brad", - "freq": 1.32e-05 - }, - { - "word": "deer", - "freq": 1.32e-05 - }, - { - "word": "dive", - "freq": 1.32e-05 - }, - { - "word": "heal", - "freq": 1.32e-05 - }, - { - "word": "juan", - "freq": 1.32e-05 - }, - { - "word": "pete", - "freq": 1.32e-05 - }, - { - "word": "prof", - "freq": 1.32e-05 - }, - { - "word": "babe", - "freq": 1.29e-05 - }, - { - "word": "drum", - "freq": 1.29e-05 - }, - { - "word": "grip", - "freq": 1.29e-05 - }, - { - "word": "mild", - "freq": 1.29e-05 - }, - { - "word": "noon", - "freq": 1.29e-05 - }, - { - "word": "rage", - "freq": 1.29e-05 - }, - { - "word": "silk", - "freq": 1.29e-05 - }, - { - "word": "urge", - "freq": 1.29e-05 - }, - { - "word": "ally", - "freq": 1.26e-05 - }, - { - "word": "ipad", - "freq": 1.26e-05 - }, - { - "word": "lung", - "freq": 1.26e-05 - }, - { - "word": "pine", - "freq": 1.26e-05 - }, - { - "word": "pose", - "freq": 1.26e-05 - }, - { - "word": "pour", - "freq": 1.26e-05 - }, - { - "word": "sang", - "freq": 1.26e-05 - }, - { - "word": "wont", - "freq": 1.23e-05 - }, - { - "word": "cafe", - "freq": 1.23e-05 - }, - { - "word": "cult", - "freq": 1.23e-05 - }, - { - "word": "euro", - "freq": 1.23e-05 - }, - { - "word": "leak", - "freq": 1.23e-05 - }, - { - "word": "mice", - "freq": 1.23e-05 - }, - { - "word": "riot", - "freq": 1.23e-05 - }, - { - "word": "slot", - "freq": 1.23e-05 - }, - { - "word": "todd", - "freq": 1.23e-05 - }, - { - "word": "coke", - "freq": 1.2e-05 - }, - { - "word": "dump", - "freq": 1.2e-05 - }, - { - "word": "fold", - "freq": 1.2e-05 - }, - { - "word": "myth", - "freq": 1.2e-05 - }, - { - "word": "pale", - "freq": 1.2e-05 - }, - { - "word": "shaw", - "freq": 1.2e-05 - }, - { - "word": "toll", - "freq": 1.2e-05 - }, - { - "word": "torn", - "freq": 1.2e-05 - }, - { - "word": "cruz", - "freq": 1.17e-05 - }, - { - "word": "hint", - "freq": 1.17e-05 - }, - { - "word": "lucy", - "freq": 1.17e-05 - }, - { - "word": "nest", - "freq": 1.17e-05 - }, - { - "word": "reed", - "freq": 1.17e-05 - }, - { - "word": "scan", - "freq": 1.17e-05 - }, - { - "word": "span", - "freq": 1.17e-05 - }, - { - "word": "demo", - "freq": 1.15e-05 - }, - { - "word": "doll", - "freq": 1.15e-05 - }, - { - "word": "hull", - "freq": 1.15e-05 - }, - { - "word": "rope", - "freq": 1.15e-05 - }, - { - "word": "stan", - "freq": 1.15e-05 - }, - { - "word": "bout", - "freq": 1.12e-05 - }, - { - "word": "buzz", - "freq": 1.12e-05 - }, - { - "word": "fled", - "freq": 1.12e-05 - }, - { - "word": "foul", - "freq": 1.12e-05 - }, - { - "word": "hack", - "freq": 1.12e-05 - }, - { - "word": "lamp", - "freq": 1.12e-05 - }, - { - "word": "oven", - "freq": 1.12e-05 - }, - { - "word": "owen", - "freq": 1.12e-05 - }, - { - "word": "ruth", - "freq": 1.12e-05 - }, - { - "word": "slim", - "freq": 1.12e-05 - }, - { - "word": "spam", - "freq": 1.12e-05 - }, - { - "word": "tent", - "freq": 1.12e-05 - }, - { - "word": "tide", - "freq": 1.12e-05 - }, - { - "word": "bolt", - "freq": 1.1e-05 - }, - { - "word": "bust", - "freq": 1.1e-05 - }, - { - "word": "cope", - "freq": 1.1e-05 - }, - { - "word": "ebay", - "freq": 1.1e-05 - }, - { - "word": "echo", - "freq": 1.1e-05 - }, - { - "word": "hart", - "freq": 1.1e-05 - }, - { - "word": "lgbt", - "freq": 1.1e-05 - }, - { - "word": "soda", - "freq": 1.1e-05 - }, - { - "word": "thee", - "freq": 1.1e-05 - }, - { - "word": "fork", - "freq": 1.07e-05 - }, - { - "word": "hype", - "freq": 1.07e-05 - }, - { - "word": "junk", - "freq": 1.07e-05 - }, - { - "word": "marc", - "freq": 1.07e-05 - }, - { - "word": "pill", - "freq": 1.07e-05 - }, - { - "word": "pork", - "freq": 1.07e-05 - }, - { - "word": "arch", - "freq": 1.05e-05 - }, - { - "word": "axis", - "freq": 1.05e-05 - }, - { - "word": "doug", - "freq": 1.05e-05 - }, - { - "word": "goat", - "freq": 1.05e-05 - }, - { - "word": "heck", - "freq": 1.05e-05 - }, - { - "word": "lamb", - "freq": 1.05e-05 - }, - { - "word": "liar", - "freq": 1.05e-05 - }, - { - "word": "mega", - "freq": 1.05e-05 - }, - { - "word": "slam", - "freq": 1.05e-05 - }, - { - "word": "tire", - "freq": 1.05e-05 - }, - { - "word": "warn", - "freq": 1.05e-05 - }, - { - "word": "bail", - "freq": 1.02e-05 - }, - { - "word": "buck", - "freq": 1.02e-05 - }, - { - "word": "disk", - "freq": 1.02e-05 - }, - { - "word": "hugh", - "freq": 1.02e-05 - }, - { - "word": "joan", - "freq": 1.02e-05 - }, - { - "word": "nato", - "freq": 1.02e-05 - }, - { - "word": "sail", - "freq": 1.02e-05 - }, - { - "word": "void", - "freq": 1.02e-05 - }, - { - "word": "whip", - "freq": 1.02e-05 - }, - { - "word": "wipe", - "freq": 1.02e-05 - }, - { - "word": "chan", - "freq": 1e-05 - }, - { - "word": "chin", - "freq": 1e-05 - }, - { - "word": "coup", - "freq": 1e-05 - }, - { - "word": "dash", - "freq": 1e-05 - }, - { - "word": "java", - "freq": 1e-05 - }, - { - "word": "jerk", - "freq": 1e-05 - }, - { - "word": "karl", - "freq": 1e-05 - }, - { - "word": "nude", - "freq": 1e-05 - }, - { - "word": "tits", - "freq": 1e-05 - }, - { - "word": "barn", - "freq": 9.77e-06 - }, - { - "word": "bent", - "freq": 9.77e-06 - }, - { - "word": "deaf", - "freq": 9.77e-06 - }, - { - "word": "dock", - "freq": 9.77e-06 - }, - { - "word": "feat", - "freq": 9.77e-06 - }, - { - "word": "neat", - "freq": 9.77e-06 - }, - { - "word": "reid", - "freq": 9.77e-06 - }, - { - "word": "sore", - "freq": 9.77e-06 - }, - { - "word": "bean", - "freq": 9.55e-06 - }, - { - "word": "bump", - "freq": 9.55e-06 - }, - { - "word": "cart", - "freq": 9.55e-06 - }, - { - "word": "cord", - "freq": 9.55e-06 - }, - { - "word": "dale", - "freq": 9.55e-06 - }, - { - "word": "lawn", - "freq": 9.55e-06 - }, - { - "word": "oval", - "freq": 9.55e-06 - }, - { - "word": "pity", - "freq": 9.55e-06 - }, - { - "word": "pond", - "freq": 9.55e-06 - }, - { - "word": "prey", - "freq": 9.55e-06 - }, - { - "word": "ruby", - "freq": 9.55e-06 - }, - { - "word": "wade", - "freq": 9.55e-06 - }, - { - "word": "clan", - "freq": 9.33e-06 - }, - { - "word": "joel", - "freq": 9.33e-06 - }, - { - "word": "rico", - "freq": 9.33e-06 - }, - { - "word": "slap", - "freq": 9.33e-06 - }, - { - "word": "chen", - "freq": 9.12e-06 - }, - { - "word": "dame", - "freq": 9.12e-06 - }, - { - "word": "eyed", - "freq": 9.12e-06 - }, - { - "word": "melt", - "freq": 9.12e-06 - }, - { - "word": "oath", - "freq": 9.12e-06 - }, - { - "word": "sara", - "freq": 9.12e-06 - }, - { - "word": "stir", - "freq": 9.12e-06 - }, - { - "word": "toes", - "freq": 9.12e-06 - }, - { - "word": "trek", - "freq": 9.12e-06 - }, - { - "word": "uber", - "freq": 9.12e-06 - }, - { - "word": "unto", - "freq": 9.12e-06 - }, - { - "word": "amid", - "freq": 8.91e-06 - }, - { - "word": "goin", - "freq": 8.91e-06 - }, - { - "word": "hike", - "freq": 8.91e-06 - }, - { - "word": "kane", - "freq": 8.91e-06 - }, - { - "word": "lame", - "freq": 8.91e-06 - }, - { - "word": "lily", - "freq": 8.91e-06 - }, - { - "word": "plea", - "freq": 8.91e-06 - }, - { - "word": "sigh", - "freq": 8.91e-06 - }, - { - "word": "stat", - "freq": 8.91e-06 - }, - { - "word": "troy", - "freq": 8.91e-06 - }, - { - "word": "wang", - "freq": 8.91e-06 - }, - { - "word": "anal", - "freq": 8.71e-06 - }, - { - "word": "dull", - "freq": 8.71e-06 - }, - { - "word": "fare", - "freq": 8.71e-06 - }, - { - "word": "idol", - "freq": 8.71e-06 - }, - { - "word": "leap", - "freq": 8.71e-06 - }, - { - "word": "prep", - "freq": 8.71e-06 - }, - { - "word": "scam", - "freq": 8.71e-06 - }, - { - "word": "swap", - "freq": 8.71e-06 - }, - { - "word": "trio", - "freq": 8.71e-06 - }, - { - "word": "vibe", - "freq": 8.71e-06 - }, - { - "word": "wifi", - "freq": 8.71e-06 - }, - { - "word": "acre", - "freq": 8.51e-06 - }, - { - "word": "alot", - "freq": 8.51e-06 - }, - { - "word": "amen", - "freq": 8.51e-06 - }, - { - "word": "bore", - "freq": 8.51e-06 - }, - { - "word": "chad", - "freq": 8.51e-06 - }, - { - "word": "dial", - "freq": 8.51e-06 - }, - { - "word": "espn", - "freq": 8.51e-06 - }, - { - "word": "halt", - "freq": 8.51e-06 - }, - { - "word": "liam", - "freq": 8.51e-06 - }, - { - "word": "monk", - "freq": 8.51e-06 - }, - { - "word": "noah", - "freq": 8.51e-06 - }, - { - "word": "norm", - "freq": 8.51e-06 - }, - { - "word": "gaza", - "freq": 8.32e-06 - }, - { - "word": "hail", - "freq": 8.32e-06 - }, - { - "word": "joey", - "freq": 8.32e-06 - }, - { - "word": "lend", - "freq": 8.32e-06 - }, - { - "word": "leon", - "freq": 8.32e-06 - }, - { - "word": "mint", - "freq": 8.32e-06 - }, - { - "word": "nova", - "freq": 8.32e-06 - }, - { - "word": "seth", - "freq": 8.32e-06 - }, - { - "word": "bake", - "freq": 8.13e-06 - }, - { - "word": "fury", - "freq": 8.13e-06 - }, - { - "word": "glow", - "freq": 8.13e-06 - }, - { - "word": "lone", - "freq": 8.13e-06 - }, - { - "word": "meme", - "freq": 8.13e-06 - }, - { - "word": "papa", - "freq": 8.13e-06 - }, - { - "word": "rode", - "freq": 8.13e-06 - }, - { - "word": "sack", - "freq": 8.13e-06 - }, - { - "word": "sung", - "freq": 8.13e-06 - }, - { - "word": "toss", - "freq": 8.13e-06 - }, - { - "word": "wool", - "freq": 8.13e-06 - }, - { - "word": "yang", - "freq": 8.13e-06 - }, - { - "word": "dome", - "freq": 7.94e-06 - }, - { - "word": "dope", - "freq": 7.94e-06 - }, - { - "word": "gosh", - "freq": 7.94e-06 - }, - { - "word": "penn", - "freq": 7.94e-06 - }, - { - "word": "rack", - "freq": 7.94e-06 - }, - { - "word": "sued", - "freq": 7.94e-06 - }, - { - "word": "sums", - "freq": 7.94e-06 - }, - { - "word": "tory", - "freq": 7.94e-06 - }, - { - "word": "walt", - "freq": 7.94e-06 - }, - { - "word": "isnt", - "freq": 7.76e-06 - }, - { - "word": "bury", - "freq": 7.76e-06 - }, - { - "word": "fist", - "freq": 7.76e-06 - }, - { - "word": "fond", - "freq": 7.76e-06 - }, - { - "word": "frog", - "freq": 7.76e-06 - }, - { - "word": "heir", - "freq": 7.76e-06 - }, - { - "word": "moss", - "freq": 7.76e-06 - }, - { - "word": "peru", - "freq": 7.76e-06 - }, - { - "word": "tomb", - "freq": 7.76e-06 - }, - { - "word": "trim", - "freq": 7.76e-06 - }, - { - "word": "sons", - "freq": 7.59e-06 - }, - { - "word": "blah", - "freq": 7.59e-06 - }, - { - "word": "haul", - "freq": 7.59e-06 - }, - { - "word": "kurt", - "freq": 7.59e-06 - }, - { - "word": "ncaa", - "freq": 7.59e-06 - }, - { - "word": "nike", - "freq": 7.59e-06 - }, - { - "word": "node", - "freq": 7.59e-06 - }, - { - "word": "sour", - "freq": 7.59e-06 - }, - { - "word": "yale", - "freq": 7.59e-06 - }, - { - "word": "beth", - "freq": 7.41e-06 - }, - { - "word": "bids", - "freq": 7.41e-06 - }, - { - "word": "cunt", - "freq": 7.41e-06 - }, - { - "word": "glen", - "freq": 7.41e-06 - }, - { - "word": "maya", - "freq": 7.41e-06 - }, - { - "word": "saga", - "freq": 7.41e-06 - }, - { - "word": "fade", - "freq": 7.24e-06 - }, - { - "word": "ivan", - "freq": 7.24e-06 - }, - { - "word": "lime", - "freq": 7.24e-06 - }, - { - "word": "lynn", - "freq": 7.24e-06 - }, - { - "word": "maid", - "freq": 7.24e-06 - }, - { - "word": "owed", - "freq": 7.24e-06 - }, - { - "word": "surf", - "freq": 7.24e-06 - }, - { - "word": "sync", - "freq": 7.24e-06 - }, - { - "word": "guys", - "freq": 7.08e-06 - }, - { - "word": "bait", - "freq": 7.08e-06 - }, - { - "word": "bark", - "freq": 7.08e-06 - }, - { - "word": "comp", - "freq": 7.08e-06 - }, - { - "word": "kirk", - "freq": 7.08e-06 - }, - { - "word": "lang", - "freq": 7.08e-06 - }, - { - "word": "levy", - "freq": 7.08e-06 - }, - { - "word": "mock", - "freq": 7.08e-06 - }, - { - "word": "nina", - "freq": 7.08e-06 - }, - { - "word": "para", - "freq": 7.08e-06 - }, - { - "word": "spit", - "freq": 7.08e-06 - }, - { - "word": "envy", - "freq": 6.92e-06 - }, - { - "word": "heel", - "freq": 6.92e-06 - }, - { - "word": "nash", - "freq": 6.92e-06 - }, - { - "word": "swan", - "freq": 6.92e-06 - }, - { - "word": "bald", - "freq": 6.76e-06 - }, - { - "word": "boil", - "freq": 6.76e-06 - }, - { - "word": "boyd", - "freq": 6.76e-06 - }, - { - "word": "cone", - "freq": 6.76e-06 - }, - { - "word": "isle", - "freq": 6.76e-06 - }, - { - "word": "lego", - "freq": 6.76e-06 - }, - { - "word": "mick", - "freq": 6.76e-06 - }, - { - "word": "obey", - "freq": 6.76e-06 - }, - { - "word": "ramp", - "freq": 6.76e-06 - }, - { - "word": "rand", - "freq": 6.76e-06 - }, - { - "word": "reef", - "freq": 6.76e-06 - }, - { - "word": "sage", - "freq": 6.76e-06 - }, - { - "word": "thru", - "freq": 6.76e-06 - }, - { - "word": "zoom", - "freq": 6.76e-06 - }, - { - "word": "cube", - "freq": 6.61e-06 - }, - { - "word": "dana", - "freq": 6.61e-06 - }, - { - "word": "eden", - "freq": 6.61e-06 - }, - { - "word": "guru", - "freq": 6.61e-06 - }, - { - "word": "lace", - "freq": 6.61e-06 - }, - { - "word": "pier", - "freq": 6.61e-06 - }, - { - "word": "quiz", - "freq": 6.61e-06 - }, - { - "word": "whoa", - "freq": 6.61e-06 - }, - { - "word": "moms", - "freq": 6.46e-06 - }, - { - "word": "asap", - "freq": 6.46e-06 - }, - { - "word": "bash", - "freq": 6.46e-06 - }, - { - "word": "doom", - "freq": 6.46e-06 - }, - { - "word": "flee", - "freq": 6.46e-06 - }, - { - "word": "hawk", - "freq": 6.46e-06 - }, - { - "word": "jill", - "freq": 6.46e-06 - }, - { - "word": "logs", - "freq": 6.46e-06 - }, - { - "word": "memo", - "freq": 6.46e-06 - }, - { - "word": "nate", - "freq": 6.46e-06 - }, - { - "word": "pony", - "freq": 6.46e-06 - }, - { - "word": "shah", - "freq": 6.46e-06 - }, - { - "word": "sofa", - "freq": 6.46e-06 - }, - { - "word": "crow", - "freq": 6.31e-06 - }, - { - "word": "doin", - "freq": 6.31e-06 - }, - { - "word": "font", - "freq": 6.31e-06 - }, - { - "word": "glue", - "freq": 6.31e-06 - }, - { - "word": "lyon", - "freq": 6.31e-06 - }, - { - "word": "modi", - "freq": 6.31e-06 - }, - { - "word": "peel", - "freq": 6.31e-06 - }, - { - "word": "pins", - "freq": 6.31e-06 - }, - { - "word": "ribs", - "freq": 6.31e-06 - }, - { - "word": "rosa", - "freq": 6.31e-06 - }, - { - "word": "tick", - "freq": 6.31e-06 - }, - { - "word": "ussr", - "freq": 6.31e-06 - }, - { - "word": "vent", - "freq": 6.31e-06 - }, - { - "word": "bred", - "freq": 6.17e-06 - }, - { - "word": "curb", - "freq": 6.17e-06 - }, - { - "word": "dong", - "freq": 6.17e-06 - } - ], - "5": [ - { - "word": "about", - "freq": 0.00251 - }, - { - "word": "their", - "freq": 0.00214 - }, - { - "word": "which", - "freq": 0.002 - }, - { - "word": "would", - "freq": 0.00186 - }, - { - "word": "other", - "freq": 0.00145 - }, - { - "word": "after", - "freq": 0.00129 - }, - { - "word": "first", - "freq": 0.00129 - }, - { - "word": "think", - "freq": 0.0012 - }, - { - "word": "could", - "freq": 0.00115 - }, - { - "word": "these", - "freq": 0.0011 - }, - { - "word": "where", - "freq": 0.001 - }, - { - "word": "right", - "freq": 0.000912 - }, - { - "word": "being", - "freq": 0.000891 - }, - { - "word": "going", - "freq": 0.000871 - }, - { - "word": "still", - "freq": 0.000832 - }, - { - "word": "never", - "freq": 0.000813 - }, - { - "word": "those", - "freq": 0.000794 - }, - { - "word": "world", - "freq": 0.000776 - }, - { - "word": "great", - "freq": 0.000759 - }, - { - "word": "while", - "freq": 0.000724 - }, - { - "word": "every", - "freq": 0.000617 - }, - { - "word": "state", - "freq": 0.000603 - }, - { - "word": "three", - "freq": 0.000603 - }, - { - "word": "since", - "freq": 0.000562 - }, - { - "word": "under", - "freq": 0.000537 - }, - { - "word": "thing", - "freq": 0.000525 - }, - { - "word": "house", - "freq": 0.000513 - }, - { - "word": "place", - "freq": 0.000513 - }, - { - "word": "again", - "freq": 0.000501 - }, - { - "word": "found", - "freq": 0.000479 - }, - { - "word": "might", - "freq": 0.000457 - }, - { - "word": "money", - "freq": 0.000437 - }, - { - "word": "night", - "freq": 0.000407 - }, - { - "word": "until", - "freq": 0.000407 - }, - { - "word": "doing", - "freq": 0.000398 - }, - { - "word": "group", - "freq": 0.000372 - }, - { - "word": "women", - "freq": 0.000372 - }, - { - "word": "start", - "freq": 0.000363 - }, - { - "word": "today", - "freq": 0.000355 - }, - { - "word": "point", - "freq": 0.000347 - }, - { - "word": "music", - "freq": 0.000331 - }, - { - "word": "power", - "freq": 0.000331 - }, - { - "word": "water", - "freq": 0.000331 - }, - { - "word": "based", - "freq": 0.000324 - }, - { - "word": "small", - "freq": 0.000324 - }, - { - "word": "white", - "freq": 0.000324 - }, - { - "word": "later", - "freq": 0.000309 - }, - { - "word": "order", - "freq": 0.000309 - }, - { - "word": "party", - "freq": 0.000309 - }, - { - "word": "thank", - "freq": 0.000302 - }, - { - "word": "using", - "freq": 0.000295 - }, - { - "word": "black", - "freq": 0.000288 - }, - { - "word": "makes", - "freq": 0.000288 - }, - { - "word": "whole", - "freq": 0.000288 - }, - { - "word": "maybe", - "freq": 0.000282 - }, - { - "word": "story", - "freq": 0.000282 - }, - { - "word": "least", - "freq": 0.000275 - }, - { - "word": "means", - "freq": 0.000275 - }, - { - "word": "early", - "freq": 0.000269 - }, - { - "word": "local", - "freq": 0.000269 - }, - { - "word": "video", - "freq": 0.000269 - }, - { - "word": "young", - "freq": 0.000269 - }, - { - "word": "court", - "freq": 0.000257 - }, - { - "word": "given", - "freq": 0.000257 - }, - { - "word": "level", - "freq": 0.000257 - }, - { - "word": "often", - "freq": 0.000257 - }, - { - "word": "death", - "freq": 0.000251 - }, - { - "word": "south", - "freq": 0.000251 - }, - { - "word": "known", - "freq": 0.000245 - }, - { - "word": "large", - "freq": 0.000245 - }, - { - "word": "wrong", - "freq": 0.000245 - }, - { - "word": "along", - "freq": 0.00024 - }, - { - "word": "class", - "freq": 0.000229 - }, - { - "word": "close", - "freq": 0.000229 - }, - { - "word": "cause", - "freq": 0.000224 - }, - { - "word": "happy", - "freq": 0.000224 - }, - { - "word": "human", - "freq": 0.000224 - }, - { - "word": "woman", - "freq": 0.000224 - }, - { - "word": "leave", - "freq": 0.000219 - }, - { - "word": "north", - "freq": 0.000219 - }, - { - "word": "watch", - "freq": 0.000219 - }, - { - "word": "light", - "freq": 0.000214 - }, - { - "word": "short", - "freq": 0.000214 - }, - { - "word": "taken", - "freq": 0.000214 - }, - { - "word": "third", - "freq": 0.000209 - }, - { - "word": "among", - "freq": 0.000204 - }, - { - "word": "check", - "freq": 0.000204 - }, - { - "word": "heart", - "freq": 0.000204 - }, - { - "word": "asked", - "freq": 0.0002 - }, - { - "word": "child", - "freq": 0.0002 - }, - { - "word": "major", - "freq": 0.0002 - }, - { - "word": "media", - "freq": 0.0002 - }, - { - "word": "phone", - "freq": 0.0002 - }, - { - "word": "gonna", - "freq": 0.000195 - }, - { - "word": "quite", - "freq": 0.000195 - }, - { - "word": "final", - "freq": 0.000191 - }, - { - "word": "front", - "freq": 0.000191 - }, - { - "word": "ready", - "freq": 0.000191 - }, - { - "word": "bring", - "freq": 0.000186 - }, - { - "word": "heard", - "freq": 0.000186 - }, - { - "word": "march", - "freq": 0.000182 - }, - { - "word": "study", - "freq": 0.000182 - }, - { - "word": "clear", - "freq": 0.000178 - }, - { - "word": "month", - "freq": 0.000178 - }, - { - "word": "board", - "freq": 0.000174 - }, - { - "word": "field", - "freq": 0.000174 - }, - { - "word": "seems", - "freq": 0.000174 - }, - { - "word": "fight", - "freq": 0.00017 - }, - { - "word": "force", - "freq": 0.00017 - }, - { - "word": "issue", - "freq": 0.00017 - }, - { - "word": "price", - "freq": 0.00017 - }, - { - "word": "space", - "freq": 0.00017 - }, - { - "word": "total", - "freq": 0.000162 - }, - { - "word": "above", - "freq": 0.000158 - }, - { - "word": "april", - "freq": 0.000155 - }, - { - "word": "sense", - "freq": 0.000155 - }, - { - "word": "break", - "freq": 0.000151 - }, - { - "word": "event", - "freq": 0.000151 - }, - { - "word": "sorry", - "freq": 0.000151 - }, - { - "word": "takes", - "freq": 0.000151 - }, - { - "word": "guess", - "freq": 0.000148 - }, - { - "word": "learn", - "freq": 0.000148 - }, - { - "word": "added", - "freq": 0.000145 - }, - { - "word": "alone", - "freq": 0.000145 - }, - { - "word": "movie", - "freq": 0.000145 - }, - { - "word": "press", - "freq": 0.000145 - }, - { - "word": "tried", - "freq": 0.000145 - }, - { - "word": "worth", - "freq": 0.000145 - }, - { - "word": "sound", - "freq": 0.000141 - }, - { - "word": "value", - "freq": 0.000141 - }, - { - "word": "round", - "freq": 0.000138 - }, - { - "word": "stand", - "freq": 0.000138 - }, - { - "word": "stuff", - "freq": 0.000138 - }, - { - "word": "david", - "freq": 0.000135 - }, - { - "word": "drive", - "freq": 0.000135 - }, - { - "word": "green", - "freq": 0.000135 - }, - { - "word": "match", - "freq": 0.000135 - }, - { - "word": "model", - "freq": 0.000135 - }, - { - "word": "trust", - "freq": 0.000135 - }, - { - "word": "range", - "freq": 0.000132 - }, - { - "word": "trade", - "freq": 0.000132 - }, - { - "word": "chief", - "freq": 0.000129 - }, - { - "word": "lower", - "freq": 0.000129 - }, - { - "word": "style", - "freq": 0.000129 - }, - { - "word": "blood", - "freq": 0.000126 - }, - { - "word": "china", - "freq": 0.000126 - }, - { - "word": "stage", - "freq": 0.000126 - }, - { - "word": "title", - "freq": 0.000126 - }, - { - "word": "enjoy", - "freq": 0.000123 - }, - { - "word": "cover", - "freq": 0.00012 - }, - { - "word": "legal", - "freq": 0.00012 - }, - { - "word": "seven", - "freq": 0.00012 - }, - { - "word": "staff", - "freq": 0.00012 - }, - { - "word": "super", - "freq": 0.00012 - }, - { - "word": "union", - "freq": 0.00012 - }, - { - "word": "began", - "freq": 0.000117 - }, - { - "word": "built", - "freq": 0.000117 - }, - { - "word": "crazy", - "freq": 0.000117 - }, - { - "word": "daily", - "freq": 0.000117 - }, - { - "word": "paper", - "freq": 0.000117 - }, - { - "word": "voice", - "freq": 0.000117 - }, - { - "word": "whose", - "freq": 0.000117 - }, - { - "word": "earth", - "freq": 0.000115 - }, - { - "word": "below", - "freq": 0.000112 - }, - { - "word": "offer", - "freq": 0.000112 - }, - { - "word": "sleep", - "freq": 0.000112 - }, - { - "word": "table", - "freq": 0.000112 - }, - { - "word": "truth", - "freq": 0.000112 - }, - { - "word": "build", - "freq": 0.00011 - }, - { - "word": "india", - "freq": 0.00011 - }, - { - "word": "piece", - "freq": 0.00011 - }, - { - "word": "visit", - "freq": 0.00011 - }, - { - "word": "wanna", - "freq": 0.00011 - }, - { - "word": "wrote", - "freq": 0.00011 - }, - { - "word": "gives", - "freq": 0.000107 - }, - { - "word": "river", - "freq": 0.000107 - }, - { - "word": "shall", - "freq": 0.000107 - }, - { - "word": "speak", - "freq": 0.000107 - }, - { - "word": "write", - "freq": 0.000107 - }, - { - "word": "album", - "freq": 0.000105 - }, - { - "word": "eight", - "freq": 0.000105 - }, - { - "word": "funny", - "freq": 0.000105 - }, - { - "word": "peace", - "freq": 0.000105 - }, - { - "word": "spent", - "freq": 0.000105 - }, - { - "word": "store", - "freq": 0.000105 - }, - { - "word": "track", - "freq": 0.000105 - }, - { - "word": "ahead", - "freq": 0.000102 - }, - { - "word": "allow", - "freq": 0.000102 - }, - { - "word": "brown", - "freq": 0.000102 - }, - { - "word": "moved", - "freq": 0.000102 - }, - { - "word": "radio", - "freq": 0.000102 - }, - { - "word": "cross", - "freq": 0.0001 - }, - { - "word": "focus", - "freq": 0.0001 - }, - { - "word": "loved", - "freq": 0.0001 - }, - { - "word": "speed", - "freq": 0.0001 - }, - { - "word": "jesus", - "freq": 9.77e-05 - }, - { - "word": "extra", - "freq": 9.55e-05 - }, - { - "word": "quick", - "freq": 9.55e-05 - }, - { - "word": "agree", - "freq": 9.33e-05 - }, - { - "word": "clean", - "freq": 9.33e-05 - }, - { - "word": "photo", - "freq": 9.33e-05 - }, - { - "word": "scene", - "freq": 9.33e-05 - }, - { - "word": "spend", - "freq": 9.33e-05 - }, - { - "word": "coach", - "freq": 9.12e-05 - }, - { - "word": "costs", - "freq": 9.12e-05 - }, - { - "word": "heavy", - "freq": 9.12e-05 - }, - { - "word": "train", - "freq": 9.12e-05 - }, - { - "word": "claim", - "freq": 8.91e-05 - }, - { - "word": "goals", - "freq": 8.91e-05 - }, - { - "word": "gotta", - "freq": 8.91e-05 - }, - { - "word": "hotel", - "freq": 8.91e-05 - }, - { - "word": "judge", - "freq": 8.91e-05 - }, - { - "word": "named", - "freq": 8.91e-05 - }, - { - "word": "brain", - "freq": 8.71e-05 - }, - { - "word": "floor", - "freq": 8.71e-05 - }, - { - "word": "image", - "freq": 8.71e-05 - }, - { - "word": "reach", - "freq": 8.71e-05 - }, - { - "word": "civil", - "freq": 8.51e-05 - }, - { - "word": "dance", - "freq": 8.51e-05 - }, - { - "word": "stock", - "freq": 8.51e-05 - }, - { - "word": "trump", - "freq": 8.51e-05 - }, - { - "word": "worst", - "freq": 8.51e-05 - }, - { - "word": "beach", - "freq": 8.32e-05 - }, - { - "word": "ended", - "freq": 8.32e-05 - }, - { - "word": "older", - "freq": 8.32e-05 - }, - { - "word": "color", - "freq": 8.13e-05 - }, - { - "word": "dream", - "freq": 8.13e-05 - }, - { - "word": "grand", - "freq": 8.13e-05 - }, - { - "word": "sweet", - "freq": 8.13e-05 - }, - { - "word": "touch", - "freq": 8.13e-05 - }, - { - "word": "doubt", - "freq": 7.94e-05 - }, - { - "word": "drink", - "freq": 7.94e-05 - }, - { - "word": "feels", - "freq": 7.94e-05 - }, - { - "word": "shown", - "freq": 7.94e-05 - }, - { - "word": "basic", - "freq": 7.76e-05 - }, - { - "word": "carry", - "freq": 7.76e-05 - }, - { - "word": "crime", - "freq": 7.76e-05 - }, - { - "word": "fully", - "freq": 7.76e-05 - }, - { - "word": "japan", - "freq": 7.76e-05 - }, - { - "word": "plant", - "freq": 7.76e-05 - }, - { - "word": "smith", - "freq": 7.76e-05 - }, - { - "word": "texas", - "freq": 7.76e-05 - }, - { - "word": "worse", - "freq": 7.76e-05 - }, - { - "word": "award", - "freq": 7.59e-05 - }, - { - "word": "block", - "freq": 7.59e-05 - }, - { - "word": "lived", - "freq": 7.59e-05 - }, - { - "word": "peter", - "freq": 7.59e-05 - }, - { - "word": "rates", - "freq": 7.59e-05 - }, - { - "word": "avoid", - "freq": 7.41e-05 - }, - { - "word": "catch", - "freq": 7.41e-05 - }, - { - "word": "coast", - "freq": 7.41e-05 - }, - { - "word": "trial", - "freq": 7.41e-05 - }, - { - "word": "truly", - "freq": 7.41e-05 - }, - { - "word": "obama", - "freq": 7.24e-05 - }, - { - "word": "queen", - "freq": 7.24e-05 - }, - { - "word": "broke", - "freq": 7.08e-05 - }, - { - "word": "glass", - "freq": 7.08e-05 - }, - { - "word": "prior", - "freq": 7.08e-05 - }, - { - "word": "royal", - "freq": 7.08e-05 - }, - { - "word": "serve", - "freq": 7.08e-05 - }, - { - "word": "begin", - "freq": 6.92e-05 - }, - { - "word": "twice", - "freq": 6.92e-05 - }, - { - "word": "worry", - "freq": 6.92e-05 - }, - { - "word": "brand", - "freq": 6.76e-05 - }, - { - "word": "count", - "freq": 6.76e-05 - }, - { - "word": "fresh", - "freq": 6.76e-05 - }, - { - "word": "mouth", - "freq": 6.76e-05 - }, - { - "word": "owner", - "freq": 6.76e-05 - }, - { - "word": "scale", - "freq": 6.76e-05 - }, - { - "word": "score", - "freq": 6.76e-05 - }, - { - "word": "smart", - "freq": 6.76e-05 - }, - { - "word": "throw", - "freq": 6.76e-05 - }, - { - "word": "click", - "freq": 6.61e-05 - }, - { - "word": "faith", - "freq": 6.61e-05 - }, - { - "word": "louis", - "freq": 6.61e-05 - }, - { - "word": "metal", - "freq": 6.61e-05 - }, - { - "word": "paris", - "freq": 6.61e-05 - }, - { - "word": "agent", - "freq": 6.46e-05 - }, - { - "word": "apply", - "freq": 6.46e-05 - }, - { - "word": "basis", - "freq": 6.46e-05 - }, - { - "word": "chris", - "freq": 6.46e-05 - }, - { - "word": "enter", - "freq": 6.46e-05 - }, - { - "word": "prime", - "freq": 6.46e-05 - }, - { - "word": "waste", - "freq": 6.46e-05 - }, - { - "word": "weird", - "freq": 6.46e-05 - }, - { - "word": "adult", - "freq": 6.31e-05 - }, - { - "word": "grade", - "freq": 6.31e-05 - }, - { - "word": "stone", - "freq": 6.31e-05 - }, - { - "word": "apart", - "freq": 6.03e-05 - }, - { - "word": "aware", - "freq": 6.03e-05 - }, - { - "word": "fifth", - "freq": 6.03e-05 - }, - { - "word": "proud", - "freq": 6.03e-05 - }, - { - "word": "tells", - "freq": 6.03e-05 - }, - { - "word": "birth", - "freq": 5.89e-05 - }, - { - "word": "labor", - "freq": 5.89e-05 - }, - { - "word": "lucky", - "freq": 5.89e-05 - }, - { - "word": "prove", - "freq": 5.89e-05 - }, - { - "word": "tough", - "freq": 5.89e-05 - }, - { - "word": "alive", - "freq": 5.75e-05 - }, - { - "word": "apple", - "freq": 5.75e-05 - }, - { - "word": "bitch", - "freq": 5.75e-05 - }, - { - "word": "dress", - "freq": 5.75e-05 - }, - { - "word": "horse", - "freq": 5.75e-05 - }, - { - "word": "liked", - "freq": 5.75e-05 - }, - { - "word": "magic", - "freq": 5.75e-05 - }, - { - "word": "owned", - "freq": 5.75e-05 - }, - { - "word": "stick", - "freq": 5.75e-05 - }, - { - "word": "frank", - "freq": 5.62e-05 - }, - { - "word": "guide", - "freq": 5.62e-05 - }, - { - "word": "raise", - "freq": 5.62e-05 - }, - { - "word": "treat", - "freq": 5.62e-05 - }, - { - "word": "youth", - "freq": 5.62e-05 - }, - { - "word": "helps", - "freq": 5.5e-05 - }, - { - "word": "henry", - "freq": 5.5e-05 - }, - { - "word": "exist", - "freq": 5.37e-05 - }, - { - "word": "guard", - "freq": 5.37e-05 - }, - { - "word": "likes", - "freq": 5.37e-05 - }, - { - "word": "shoot", - "freq": 5.37e-05 - }, - { - "word": "solid", - "freq": 5.37e-05 - }, - { - "word": "sport", - "freq": 5.37e-05 - }, - { - "word": "steps", - "freq": 5.37e-05 - }, - { - "word": "taste", - "freq": 5.37e-05 - }, - { - "word": "facts", - "freq": 5.25e-05 - }, - { - "word": "harry", - "freq": 5.25e-05 - }, - { - "word": "hello", - "freq": 5.25e-05 - }, - { - "word": "plane", - "freq": 5.25e-05 - }, - { - "word": "scott", - "freq": 5.25e-05 - }, - { - "word": "shape", - "freq": 5.25e-05 - }, - { - "word": "upper", - "freq": 5.25e-05 - }, - { - "word": "cheap", - "freq": 5.13e-05 - }, - { - "word": "joint", - "freq": 5.13e-05 - }, - { - "word": "steel", - "freq": 5.13e-05 - }, - { - "word": "steve", - "freq": 5.13e-05 - }, - { - "word": "tired", - "freq": 5.13e-05 - }, - { - "word": "crowd", - "freq": 5.01e-05 - }, - { - "word": "enemy", - "freq": 5.01e-05 - }, - { - "word": "fixed", - "freq": 5.01e-05 - }, - { - "word": "limit", - "freq": 5.01e-05 - }, - { - "word": "ocean", - "freq": 5.01e-05 - }, - { - "word": "proof", - "freq": 5.01e-05 - }, - { - "word": "asian", - "freq": 4.9e-05 - }, - { - "word": "chair", - "freq": 4.9e-05 - }, - { - "word": "honor", - "freq": 4.9e-05 - }, - { - "word": "noted", - "freq": 4.9e-05 - }, - { - "word": "email", - "freq": 4.79e-05 - }, - { - "word": "stuck", - "freq": 4.79e-05 - }, - { - "word": "sugar", - "freq": 4.79e-05 - }, - { - "word": "drama", - "freq": 4.68e-05 - }, - { - "word": "entry", - "freq": 4.68e-05 - }, - { - "word": "grant", - "freq": 4.68e-05 - }, - { - "word": "grown", - "freq": 4.68e-05 - }, - { - "word": "keeps", - "freq": 4.68e-05 - }, - { - "word": "lying", - "freq": 4.68e-05 - }, - { - "word": "route", - "freq": 4.68e-05 - }, - { - "word": "saved", - "freq": 4.68e-05 - }, - { - "word": "smoke", - "freq": 4.68e-05 - }, - { - "word": "squad", - "freq": 4.68e-05 - }, - { - "word": "teach", - "freq": 4.68e-05 - }, - { - "word": "abuse", - "freq": 4.57e-05 - }, - { - "word": "angry", - "freq": 4.57e-05 - }, - { - "word": "italy", - "freq": 4.57e-05 - }, - { - "word": "laugh", - "freq": 4.57e-05 - }, - { - "word": "lunch", - "freq": 4.57e-05 - }, - { - "word": "storm", - "freq": 4.57e-05 - }, - { - "word": "actor", - "freq": 4.47e-05 - }, - { - "word": "chain", - "freq": 4.47e-05 - }, - { - "word": "equal", - "freq": 4.47e-05 - }, - { - "word": "korea", - "freq": 4.47e-05 - }, - { - "word": "quiet", - "freq": 4.47e-05 - }, - { - "word": "split", - "freq": 4.47e-05 - }, - { - "word": "taxes", - "freq": 4.47e-05 - }, - { - "word": "urban", - "freq": 4.47e-05 - }, - { - "word": "fault", - "freq": 4.37e-05 - }, - { - "word": "mixed", - "freq": 4.37e-05 - }, - { - "word": "phase", - "freq": 4.37e-05 - }, - { - "word": "smile", - "freq": 4.37e-05 - }, - { - "word": "truck", - "freq": 4.37e-05 - }, - { - "word": "blame", - "freq": 4.27e-05 - }, - { - "word": "dying", - "freq": 4.27e-05 - }, - { - "word": "false", - "freq": 4.27e-05 - }, - { - "word": "fired", - "freq": 4.27e-05 - }, - { - "word": "novel", - "freq": 4.27e-05 - }, - { - "word": "shirt", - "freq": 4.27e-05 - }, - { - "word": "cream", - "freq": 4.17e-05 - }, - { - "word": "giant", - "freq": 4.17e-05 - }, - { - "word": "mayor", - "freq": 4.17e-05 - }, - { - "word": "minor", - "freq": 4.17e-05 - }, - { - "word": "theme", - "freq": 4.17e-05 - }, - { - "word": "usual", - "freq": 4.17e-05 - }, - { - "word": "voted", - "freq": 4.17e-05 - }, - { - "word": "draft", - "freq": 4.07e-05 - }, - { - "word": "drunk", - "freq": 4.07e-05 - }, - { - "word": "finds", - "freq": 4.07e-05 - }, - { - "word": "spoke", - "freq": 4.07e-05 - }, - { - "word": "upset", - "freq": 4.07e-05 - }, - { - "word": "cycle", - "freq": 3.98e-05 - }, - { - "word": "holds", - "freq": 3.98e-05 - }, - { - "word": "wales", - "freq": 3.98e-05 - }, - { - "word": "armed", - "freq": 3.89e-05 - }, - { - "word": "aside", - "freq": 3.89e-05 - }, - { - "word": "empty", - "freq": 3.89e-05 - }, - { - "word": "kinda", - "freq": 3.89e-05 - }, - { - "word": "prize", - "freq": 3.89e-05 - }, - { - "word": "rural", - "freq": 3.89e-05 - }, - { - "word": "spain", - "freq": 3.89e-05 - }, - { - "word": "admit", - "freq": 3.8e-05 - }, - { - "word": "favor", - "freq": 3.8e-05 - }, - { - "word": "frame", - "freq": 3.8e-05 - }, - { - "word": "guest", - "freq": 3.8e-05 - }, - { - "word": "teeth", - "freq": 3.8e-05 - }, - { - "word": "bunch", - "freq": 3.72e-05 - }, - { - "word": "fruit", - "freq": 3.72e-05 - }, - { - "word": "index", - "freq": 3.72e-05 - }, - { - "word": "shift", - "freq": 3.72e-05 - }, - { - "word": "stood", - "freq": 3.72e-05 - }, - { - "word": "tight", - "freq": 3.72e-05 - }, - { - "word": "crown", - "freq": 3.63e-05 - }, - { - "word": "grace", - "freq": 3.63e-05 - }, - { - "word": "kevin", - "freq": 3.63e-05 - }, - { - "word": "chose", - "freq": 3.55e-05 - }, - { - "word": "crash", - "freq": 3.55e-05 - }, - { - "word": "depth", - "freq": 3.55e-05 - }, - { - "word": "dirty", - "freq": 3.55e-05 - }, - { - "word": "error", - "freq": 3.55e-05 - }, - { - "word": "noise", - "freq": 3.55e-05 - }, - { - "word": "panel", - "freq": 3.55e-05 - }, - { - "word": "plate", - "freq": 3.55e-05 - }, - { - "word": "shame", - "freq": 3.55e-05 - }, - { - "word": "bible", - "freq": 3.47e-05 - }, - { - "word": "cable", - "freq": 3.47e-05 - }, - { - "word": "irish", - "freq": 3.47e-05 - }, - { - "word": "multi", - "freq": 3.47e-05 - }, - { - "word": "print", - "freq": 3.47e-05 - }, - { - "word": "sight", - "freq": 3.47e-05 - }, - { - "word": "broad", - "freq": 3.39e-05 - }, - { - "word": "drawn", - "freq": 3.39e-05 - }, - { - "word": "motor", - "freq": 3.39e-05 - }, - { - "word": "solar", - "freq": 3.39e-05 - }, - { - "word": "tries", - "freq": 3.39e-05 - }, - { - "word": "thats", - "freq": 3.31e-05 - }, - { - "word": "blind", - "freq": 3.31e-05 - }, - { - "word": "brief", - "freq": 3.31e-05 - }, - { - "word": "chest", - "freq": 3.31e-05 - }, - { - "word": "debut", - "freq": 3.31e-05 - }, - { - "word": "paint", - "freq": 3.31e-05 - }, - { - "word": "pilot", - "freq": 3.31e-05 - }, - { - "word": "steam", - "freq": 3.31e-05 - }, - { - "word": "exact", - "freq": 3.24e-05 - }, - { - "word": "kinds", - "freq": 3.24e-05 - }, - { - "word": "loans", - "freq": 3.24e-05 - }, - { - "word": "quote", - "freq": 3.24e-05 - }, - { - "word": "swear", - "freq": 3.24e-05 - }, - { - "word": "trend", - "freq": 3.24e-05 - }, - { - "word": "bread", - "freq": 3.16e-05 - }, - { - "word": "greek", - "freq": 3.16e-05 - }, - { - "word": "inner", - "freq": 3.16e-05 - }, - { - "word": "reply", - "freq": 3.16e-05 - }, - { - "word": "roman", - "freq": 3.16e-05 - }, - { - "word": "tower", - "freq": 3.16e-05 - }, - { - "word": "wheel", - "freq": 3.16e-05 - }, - { - "word": "davis", - "freq": 3.09e-05 - }, - { - "word": "faced", - "freq": 3.09e-05 - }, - { - "word": "filed", - "freq": 3.09e-05 - }, - { - "word": "pride", - "freq": 3.09e-05 - }, - { - "word": "rough", - "freq": 3.09e-05 - }, - { - "word": "santa", - "freq": 3.09e-05 - }, - { - "word": "smell", - "freq": 3.09e-05 - }, - { - "word": "topic", - "freq": 3.09e-05 - }, - { - "word": "latin", - "freq": 3.02e-05 - }, - { - "word": "lewis", - "freq": 3.02e-05 - }, - { - "word": "sarah", - "freq": 3.02e-05 - }, - { - "word": "sharp", - "freq": 3.02e-05 - }, - { - "word": "simon", - "freq": 3.02e-05 - }, - { - "word": "trick", - "freq": 3.02e-05 - }, - { - "word": "audio", - "freq": 2.95e-05 - }, - { - "word": "brian", - "freq": 2.95e-05 - }, - { - "word": "chart", - "freq": 2.95e-05 - }, - { - "word": "miami", - "freq": 2.95e-05 - }, - { - "word": "mount", - "freq": 2.95e-05 - }, - { - "word": "occur", - "freq": 2.95e-05 - }, - { - "word": "tears", - "freq": 2.95e-05 - }, - { - "word": "argue", - "freq": 2.88e-05 - }, - { - "word": "awful", - "freq": 2.88e-05 - }, - { - "word": "bound", - "freq": 2.88e-05 - }, - { - "word": "cloud", - "freq": 2.88e-05 - }, - { - "word": "jason", - "freq": 2.88e-05 - }, - { - "word": "loose", - "freq": 2.88e-05 - }, - { - "word": "moral", - "freq": 2.88e-05 - }, - { - "word": "shock", - "freq": 2.88e-05 - }, - { - "word": "thick", - "freq": 2.88e-05 - }, - { - "word": "threw", - "freq": 2.88e-05 - }, - { - "word": "angel", - "freq": 2.82e-05 - }, - { - "word": "bonus", - "freq": 2.82e-05 - }, - { - "word": "egypt", - "freq": 2.82e-05 - }, - { - "word": "flash", - "freq": 2.82e-05 - }, - { - "word": "gross", - "freq": 2.82e-05 - }, - { - "word": "refer", - "freq": 2.82e-05 - }, - { - "word": "trail", - "freq": 2.82e-05 - }, - { - "word": "uncle", - "freq": 2.82e-05 - }, - { - "word": "badly", - "freq": 2.75e-05 - }, - { - "word": "chase", - "freq": 2.75e-05 - }, - { - "word": "ideal", - "freq": 2.75e-05 - }, - { - "word": "jimmy", - "freq": 2.75e-05 - }, - { - "word": "kelly", - "freq": 2.75e-05 - }, - { - "word": "roles", - "freq": 2.75e-05 - }, - { - "word": "clock", - "freq": 2.69e-05 - }, - { - "word": "label", - "freq": 2.69e-05 - }, - { - "word": "naked", - "freq": 2.69e-05 - }, - { - "word": "opens", - "freq": 2.69e-05 - }, - { - "word": "pitch", - "freq": 2.69e-05 - }, - { - "word": "pizza", - "freq": 2.69e-05 - }, - { - "word": "plain", - "freq": 2.69e-05 - }, - { - "word": "anger", - "freq": 2.63e-05 - }, - { - "word": "comic", - "freq": 2.63e-05 - }, - { - "word": "ghost", - "freq": 2.63e-05 - }, - { - "word": "https", - "freq": 2.63e-05 - }, - { - "word": "islam", - "freq": 2.63e-05 - }, - { - "word": "newly", - "freq": 2.63e-05 - }, - { - "word": "skill", - "freq": 2.63e-05 - }, - { - "word": "solve", - "freq": 2.63e-05 - }, - { - "word": "trash", - "freq": 2.63e-05 - }, - { - "word": "virus", - "freq": 2.63e-05 - }, - { - "word": "boost", - "freq": 2.57e-05 - }, - { - "word": "crack", - "freq": 2.57e-05 - }, - { - "word": "dutch", - "freq": 2.57e-05 - }, - { - "word": "hired", - "freq": 2.57e-05 - }, - { - "word": "knife", - "freq": 2.57e-05 - }, - { - "word": "saint", - "freq": 2.57e-05 - }, - { - "word": "steal", - "freq": 2.57e-05 - }, - { - "word": "trans", - "freq": 2.57e-05 - }, - { - "word": "buddy", - "freq": 2.51e-05 - }, - { - "word": "delay", - "freq": 2.51e-05 - }, - { - "word": "elite", - "freq": 2.51e-05 - }, - { - "word": "forth", - "freq": 2.51e-05 - }, - { - "word": "layer", - "freq": 2.51e-05 - }, - { - "word": "marry", - "freq": 2.51e-05 - }, - { - "word": "nurse", - "freq": 2.51e-05 - }, - { - "word": "rugby", - "freq": 2.51e-05 - }, - { - "word": "sheet", - "freq": 2.51e-05 - }, - { - "word": "stops", - "freq": 2.51e-05 - }, - { - "word": "syria", - "freq": 2.51e-05 - }, - { - "word": "bench", - "freq": 2.45e-05 - }, - { - "word": "idiot", - "freq": 2.45e-05 - }, - { - "word": "medal", - "freq": 2.45e-05 - }, - { - "word": "roger", - "freq": 2.45e-05 - }, - { - "word": "silly", - "freq": 2.45e-05 - }, - { - "word": "years", - "freq": 2.4e-05 - }, - { - "word": "allen", - "freq": 2.4e-05 - }, - { - "word": "angle", - "freq": 2.4e-05 - }, - { - "word": "clark", - "freq": 2.4e-05 - }, - { - "word": "forum", - "freq": 2.4e-05 - }, - { - "word": "gifts", - "freq": 2.4e-05 - }, - { - "word": "grass", - "freq": 2.4e-05 - }, - { - "word": "hence", - "freq": 2.4e-05 - }, - { - "word": "rapid", - "freq": 2.4e-05 - }, - { - "word": "sixth", - "freq": 2.4e-05 - }, - { - "word": "sucks", - "freq": 2.4e-05 - }, - { - "word": "valid", - "freq": 2.4e-05 - }, - { - "word": "vital", - "freq": 2.4e-05 - }, - { - "word": "creek", - "freq": 2.34e-05 - }, - { - "word": "fraud", - "freq": 2.34e-05 - }, - { - "word": "honey", - "freq": 2.34e-05 - }, - { - "word": "ratio", - "freq": 2.34e-05 - }, - { - "word": "scary", - "freq": 2.34e-05 - }, - { - "word": "spell", - "freq": 2.34e-05 - }, - { - "word": "sword", - "freq": 2.34e-05 - }, - { - "word": "wayne", - "freq": 2.34e-05 - }, - { - "word": "begun", - "freq": 2.29e-05 - }, - { - "word": "daddy", - "freq": 2.29e-05 - }, - { - "word": "diego", - "freq": 2.29e-05 - }, - { - "word": "drove", - "freq": 2.29e-05 - }, - { - "word": "glory", - "freq": 2.29e-05 - }, - { - "word": "juice", - "freq": 2.29e-05 - }, - { - "word": "logic", - "freq": 2.29e-05 - }, - { - "word": "meets", - "freq": 2.29e-05 - }, - { - "word": "strip", - "freq": 2.29e-05 - }, - { - "word": "dozen", - "freq": 2.24e-05 - }, - { - "word": "fancy", - "freq": 2.24e-05 - }, - { - "word": "input", - "freq": 2.24e-05 - }, - { - "word": "knock", - "freq": 2.24e-05 - }, - { - "word": "ought", - "freq": 2.24e-05 - }, - { - "word": "risks", - "freq": 2.24e-05 - }, - { - "word": "boxes", - "freq": 2.19e-05 - }, - { - "word": "bruce", - "freq": 2.19e-05 - }, - { - "word": "flood", - "freq": 2.19e-05 - }, - { - "word": "kills", - "freq": 2.19e-05 - }, - { - "word": "maria", - "freq": 2.19e-05 - }, - { - "word": "rally", - "freq": 2.19e-05 - }, - { - "word": "swing", - "freq": 2.19e-05 - }, - { - "word": "alert", - "freq": 2.14e-05 - }, - { - "word": "arena", - "freq": 2.14e-05 - }, - { - "word": "billy", - "freq": 2.14e-05 - }, - { - "word": "brave", - "freq": 2.14e-05 - }, - { - "word": "drops", - "freq": 2.14e-05 - }, - { - "word": "fleet", - "freq": 2.14e-05 - }, - { - "word": "robin", - "freq": 2.14e-05 - }, - { - "word": "shake", - "freq": 2.14e-05 - }, - { - "word": "shore", - "freq": 2.14e-05 - }, - { - "word": "stats", - "freq": 2.14e-05 - }, - { - "word": "blast", - "freq": 2.09e-05 - }, - { - "word": "pound", - "freq": 2.09e-05 - }, - { - "word": "punch", - "freq": 2.09e-05 - }, - { - "word": "walks", - "freq": 2.09e-05 - }, - { - "word": "fewer", - "freq": 2.04e-05 - }, - { - "word": "grave", - "freq": 2.04e-05 - }, - { - "word": "mouse", - "freq": 2.04e-05 - }, - { - "word": "oscar", - "freq": 2.04e-05 - }, - { - "word": "piano", - "freq": 2.04e-05 - }, - { - "word": "saudi", - "freq": 2.04e-05 - }, - { - "word": "slave", - "freq": 2.04e-05 - }, - { - "word": "craft", - "freq": 2e-05 - }, - { - "word": "devil", - "freq": 2e-05 - }, - { - "word": "hurts", - "freq": 2e-05 - }, - { - "word": "rated", - "freq": 2e-05 - }, - { - "word": "ruled", - "freq": 2e-05 - }, - { - "word": "sauce", - "freq": 2e-05 - }, - { - "word": "slide", - "freq": 2e-05 - }, - { - "word": "tiger", - "freq": 2e-05 - }, - { - "word": "alien", - "freq": 1.95e-05 - }, - { - "word": "beast", - "freq": 1.95e-05 - }, - { - "word": "candy", - "freq": 1.95e-05 - }, - { - "word": "cited", - "freq": 1.95e-05 - }, - { - "word": "dated", - "freq": 1.95e-05 - }, - { - "word": "delhi", - "freq": 1.95e-05 - }, - { - "word": "fifty", - "freq": 1.95e-05 - }, - { - "word": "relax", - "freq": 1.95e-05 - }, - { - "word": "acted", - "freq": 1.91e-05 - }, - { - "word": "alarm", - "freq": 1.91e-05 - }, - { - "word": "globe", - "freq": 1.91e-05 - }, - { - "word": "hoped", - "freq": 1.91e-05 - }, - { - "word": "larry", - "freq": 1.91e-05 - }, - { - "word": "moore", - "freq": 1.91e-05 - }, - { - "word": "spare", - "freq": 1.91e-05 - }, - { - "word": "opera", - "freq": 1.86e-05 - }, - { - "word": "quest", - "freq": 1.86e-05 - }, - { - "word": "sized", - "freq": 1.86e-05 - }, - { - "word": "tokyo", - "freq": 1.86e-05 - }, - { - "word": "alice", - "freq": 1.82e-05 - }, - { - "word": "anime", - "freq": 1.82e-05 - }, - { - "word": "barry", - "freq": 1.82e-05 - }, - { - "word": "fails", - "freq": 1.82e-05 - }, - { - "word": "jerry", - "freq": 1.82e-05 - }, - { - "word": "lover", - "freq": 1.82e-05 - }, - { - "word": "panic", - "freq": 1.82e-05 - }, - { - "word": "scope", - "freq": 1.82e-05 - }, - { - "word": "aimed", - "freq": 1.78e-05 - }, - { - "word": "alpha", - "freq": 1.78e-05 - }, - { - "word": "brick", - "freq": 1.78e-05 - }, - { - "word": "danny", - "freq": 1.78e-05 - }, - { - "word": "mercy", - "freq": 1.78e-05 - }, - { - "word": "outer", - "freq": 1.78e-05 - }, - { - "word": "screw", - "freq": 1.78e-05 - }, - { - "word": "venue", - "freq": 1.78e-05 - }, - { - "word": "wages", - "freq": 1.78e-05 - }, - { - "word": "burns", - "freq": 1.74e-05 - }, - { - "word": "habit", - "freq": 1.74e-05 - }, - { - "word": "laura", - "freq": 1.74e-05 - }, - { - "word": "naval", - "freq": 1.74e-05 - }, - { - "word": "noble", - "freq": 1.74e-05 - }, - { - "word": "picks", - "freq": 1.74e-05 - }, - { - "word": "pussy", - "freq": 1.74e-05 - }, - { - "word": "robot", - "freq": 1.74e-05 - }, - { - "word": "susan", - "freq": 1.74e-05 - }, - { - "word": "terry", - "freq": 1.74e-05 - }, - { - "word": "toxic", - "freq": 1.74e-05 - }, - { - "word": "wider", - "freq": 1.74e-05 - }, - { - "word": "wound", - "freq": 1.74e-05 - }, - { - "word": "aaron", - "freq": 1.7e-05 - }, - { - "word": "asset", - "freq": 1.7e-05 - }, - { - "word": "baker", - "freq": 1.7e-05 - }, - { - "word": "brush", - "freq": 1.7e-05 - }, - { - "word": "essay", - "freq": 1.7e-05 - }, - { - "word": "jacob", - "freq": 1.7e-05 - }, - { - "word": "maker", - "freq": 1.7e-05 - }, - { - "word": "mario", - "freq": 1.7e-05 - }, - { - "word": "ranks", - "freq": 1.7e-05 - }, - { - "word": "snake", - "freq": 1.7e-05 - }, - { - "word": "tasks", - "freq": 1.7e-05 - }, - { - "word": "ultra", - "freq": 1.7e-05 - }, - { - "word": "usage", - "freq": 1.7e-05 - }, - { - "word": "bobby", - "freq": 1.66e-05 - }, - { - "word": "canal", - "freq": 1.66e-05 - }, - { - "word": "climb", - "freq": 1.66e-05 - }, - { - "word": "fever", - "freq": 1.66e-05 - }, - { - "word": "fluid", - "freq": 1.66e-05 - }, - { - "word": "loads", - "freq": 1.66e-05 - }, - { - "word": "nasty", - "freq": 1.66e-05 - }, - { - "word": "perry", - "freq": 1.66e-05 - }, - { - "word": "twist", - "freq": 1.66e-05 - }, - { - "word": "unity", - "freq": 1.66e-05 - }, - { - "word": "blown", - "freq": 1.62e-05 - }, - { - "word": "fence", - "freq": 1.62e-05 - }, - { - "word": "sorts", - "freq": 1.62e-05 - }, - { - "word": "stole", - "freq": 1.62e-05 - }, - { - "word": "swiss", - "freq": 1.62e-05 - }, - { - "word": "bored", - "freq": 1.58e-05 - }, - { - "word": "dealt", - "freq": 1.58e-05 - }, - { - "word": "flesh", - "freq": 1.58e-05 - }, - { - "word": "forty", - "freq": 1.58e-05 - }, - { - "word": "hated", - "freq": 1.58e-05 - }, - { - "word": "laser", - "freq": 1.58e-05 - }, - { - "word": "loyal", - "freq": 1.58e-05 - }, - { - "word": "patch", - "freq": 1.58e-05 - }, - { - "word": "radar", - "freq": 1.58e-05 - }, - { - "word": "villa", - "freq": 1.58e-05 - }, - { - "word": "adopt", - "freq": 1.55e-05 - }, - { - "word": "blade", - "freq": 1.55e-05 - }, - { - "word": "cargo", - "freq": 1.55e-05 - }, - { - "word": "cried", - "freq": 1.55e-05 - }, - { - "word": "helen", - "freq": 1.55e-05 - }, - { - "word": "humor", - "freq": 1.55e-05 - }, - { - "word": "marie", - "freq": 1.55e-05 - }, - { - "word": "meals", - "freq": 1.55e-05 - }, - { - "word": "nerve", - "freq": 1.55e-05 - }, - { - "word": "sandy", - "freq": 1.55e-05 - }, - { - "word": "sheep", - "freq": 1.55e-05 - }, - { - "word": "trace", - "freq": 1.55e-05 - }, - { - "word": "shell", - "freq": 1.51e-05 - }, - { - "word": "chill", - "freq": 1.51e-05 - }, - { - "word": "craig", - "freq": 1.51e-05 - }, - { - "word": "grain", - "freq": 1.51e-05 - }, - { - "word": "grows", - "freq": 1.51e-05 - }, - { - "word": "liver", - "freq": 1.51e-05 - }, - { - "word": "metro", - "freq": 1.51e-05 - }, - { - "word": "rifle", - "freq": 1.51e-05 - }, - { - "word": "rival", - "freq": 1.51e-05 - }, - { - "word": "sadly", - "freq": 1.51e-05 - }, - { - "word": "sizes", - "freq": 1.51e-05 - }, - { - "word": "slept", - "freq": 1.51e-05 - }, - { - "word": "spray", - "freq": 1.51e-05 - }, - { - "word": "suite", - "freq": 1.51e-05 - }, - { - "word": "verse", - "freq": 1.51e-05 - }, - { - "word": "acres", - "freq": 1.48e-05 - }, - { - "word": "bless", - "freq": 1.48e-05 - }, - { - "word": "chuck", - "freq": 1.48e-05 - }, - { - "word": "couch", - "freq": 1.48e-05 - }, - { - "word": "crush", - "freq": 1.48e-05 - }, - { - "word": "fears", - "freq": 1.48e-05 - }, - { - "word": "genre", - "freq": 1.48e-05 - }, - { - "word": "keith", - "freq": 1.48e-05 - }, - { - "word": "lease", - "freq": 1.48e-05 - }, - { - "word": "shine", - "freq": 1.48e-05 - }, - { - "word": "tweet", - "freq": 1.48e-05 - }, - { - "word": "tyler", - "freq": 1.48e-05 - }, - { - "word": "blake", - "freq": 1.45e-05 - }, - { - "word": "inter", - "freq": 1.45e-05 - }, - { - "word": "maine", - "freq": 1.45e-05 - }, - { - "word": "react", - "freq": 1.45e-05 - }, - { - "word": "rocky", - "freq": 1.45e-05 - }, - { - "word": "shade", - "freq": 1.45e-05 - }, - { - "word": "tommy", - "freq": 1.45e-05 - }, - { - "word": "vocal", - "freq": 1.45e-05 - }, - { - "word": "yield", - "freq": 1.45e-05 - }, - { - "word": "bacon", - "freq": 1.41e-05 - }, - { - "word": "burst", - "freq": 1.41e-05 - }, - { - "word": "costa", - "freq": 1.41e-05 - }, - { - "word": "hates", - "freq": 1.41e-05 - }, - { - "word": "salad", - "freq": 1.41e-05 - }, - { - "word": "sends", - "freq": 1.41e-05 - }, - { - "word": "stake", - "freq": 1.41e-05 - }, - { - "word": "swift", - "freq": 1.41e-05 - }, - { - "word": "welsh", - "freq": 1.41e-05 - }, - { - "word": "awake", - "freq": 1.38e-05 - }, - { - "word": "blank", - "freq": 1.38e-05 - }, - { - "word": "curve", - "freq": 1.38e-05 - }, - { - "word": "eddie", - "freq": 1.38e-05 - }, - { - "word": "emily", - "freq": 1.38e-05 - }, - { - "word": "flows", - "freq": 1.38e-05 - }, - { - "word": "harsh", - "freq": 1.38e-05 - }, - { - "word": "hurry", - "freq": 1.38e-05 - }, - { - "word": "mason", - "freq": 1.38e-05 - }, - { - "word": "nancy", - "freq": 1.38e-05 - }, - { - "word": "organ", - "freq": 1.38e-05 - }, - { - "word": "pearl", - "freq": 1.38e-05 - }, - { - "word": "sweat", - "freq": 1.38e-05 - }, - { - "word": "alike", - "freq": 1.35e-05 - }, - { - "word": "arrow", - "freq": 1.35e-05 - }, - { - "word": "cabin", - "freq": 1.35e-05 - }, - { - "word": "eagle", - "freq": 1.35e-05 - }, - { - "word": "eaten", - "freq": 1.35e-05 - }, - { - "word": "guilt", - "freq": 1.35e-05 - }, - { - "word": "haven", - "freq": 1.35e-05 - }, - { - "word": "kenya", - "freq": 1.35e-05 - }, - { - "word": "putin", - "freq": 1.35e-05 - }, - { - "word": "seeks", - "freq": 1.35e-05 - }, - { - "word": "theft", - "freq": 1.35e-05 - }, - { - "word": "valve", - "freq": 1.35e-05 - }, - { - "word": "charm", - "freq": 1.32e-05 - }, - { - "word": "cruel", - "freq": 1.32e-05 - }, - { - "word": "delta", - "freq": 1.32e-05 - }, - { - "word": "julia", - "freq": 1.32e-05 - }, - { - "word": "ridge", - "freq": 1.32e-05 - }, - { - "word": "tends", - "freq": 1.32e-05 - }, - { - "word": "tribe", - "freq": 1.32e-05 - }, - { - "word": "canon", - "freq": 1.29e-05 - }, - { - "word": "cared", - "freq": 1.29e-05 - }, - { - "word": "loses", - "freq": 1.29e-05 - }, - { - "word": "stamp", - "freq": 1.29e-05 - }, - { - "word": "voter", - "freq": 1.29e-05 - }, - { - "word": "witch", - "freq": 1.29e-05 - }, - { - "word": "array", - "freq": 1.26e-05 - }, - { - "word": "belly", - "freq": 1.26e-05 - }, - { - "word": "booth", - "freq": 1.26e-05 - }, - { - "word": "cliff", - "freq": 1.26e-05 - }, - { - "word": "derby", - "freq": 1.26e-05 - }, - { - "word": "draws", - "freq": 1.26e-05 - }, - { - "word": "fatal", - "freq": 1.26e-05 - }, - { - "word": "lemon", - "freq": 1.26e-05 - }, - { - "word": "outta", - "freq": 1.26e-05 - }, - { - "word": "ralph", - "freq": 1.26e-05 - }, - { - "word": "shark", - "freq": 1.26e-05 - }, - { - "word": "teams", - "freq": 1.23e-05 - }, - { - "word": "colin", - "freq": 1.23e-05 - }, - { - "word": "dairy", - "freq": 1.23e-05 - }, - { - "word": "diary", - "freq": 1.23e-05 - }, - { - "word": "drill", - "freq": 1.23e-05 - }, - { - "word": "flies", - "freq": 1.23e-05 - }, - { - "word": "julie", - "freq": 1.23e-05 - }, - { - "word": "karen", - "freq": 1.23e-05 - }, - { - "word": "meter", - "freq": 1.23e-05 - }, - { - "word": "olive", - "freq": 1.23e-05 - }, - { - "word": "safer", - "freq": 1.23e-05 - }, - { - "word": "sells", - "freq": 1.23e-05 - }, - { - "word": "setup", - "freq": 1.23e-05 - }, - { - "word": "skull", - "freq": 1.23e-05 - }, - { - "word": "smash", - "freq": 1.23e-05 - }, - { - "word": "basin", - "freq": 1.2e-05 - }, - { - "word": "breed", - "freq": 1.2e-05 - }, - { - "word": "bride", - "freq": 1.2e-05 - }, - { - "word": "chick", - "freq": 1.2e-05 - }, - { - "word": "dubai", - "freq": 1.2e-05 - }, - { - "word": "fairy", - "freq": 1.2e-05 - }, - { - "word": "freak", - "freq": 1.2e-05 - }, - { - "word": "grief", - "freq": 1.2e-05 - }, - { - "word": "lined", - "freq": 1.2e-05 - }, - { - "word": "lodge", - "freq": 1.2e-05 - }, - { - "word": "merit", - "freq": 1.2e-05 - }, - { - "word": "micro", - "freq": 1.2e-05 - }, - { - "word": "raped", - "freq": 1.2e-05 - }, - { - "word": "rebel", - "freq": 1.2e-05 - }, - { - "word": "tooth", - "freq": 1.2e-05 - }, - { - "word": "viral", - "freq": 1.2e-05 - }, - { - "word": "wears", - "freq": 1.2e-05 - }, - { - "word": "widow", - "freq": 1.2e-05 - }, - { - "word": "wives", - "freq": 1.2e-05 - }, - { - "word": "beard", - "freq": 1.17e-05 - }, - { - "word": "curse", - "freq": 1.17e-05 - }, - { - "word": "drain", - "freq": 1.17e-05 - }, - { - "word": "flame", - "freq": 1.17e-05 - }, - { - "word": "intel", - "freq": 1.17e-05 - }, - { - "word": "kicks", - "freq": 1.17e-05 - }, - { - "word": "ninth", - "freq": 1.17e-05 - }, - { - "word": "penny", - "freq": 1.17e-05 - }, - { - "word": "petty", - "freq": 1.17e-05 - }, - { - "word": "reign", - "freq": 1.17e-05 - }, - { - "word": "rises", - "freq": 1.17e-05 - }, - { - "word": "saves", - "freq": 1.17e-05 - }, - { - "word": "scare", - "freq": 1.17e-05 - }, - { - "word": "sunny", - "freq": 1.17e-05 - }, - { - "word": "cheat", - "freq": 1.15e-05 - }, - { - "word": "cheer", - "freq": 1.15e-05 - }, - { - "word": "chile", - "freq": 1.15e-05 - }, - { - "word": "demon", - "freq": 1.15e-05 - }, - { - "word": "elder", - "freq": 1.15e-05 - }, - { - "word": "fiber", - "freq": 1.15e-05 - }, - { - "word": "fried", - "freq": 1.15e-05 - }, - { - "word": "heels", - "freq": 1.15e-05 - }, - { - "word": "linda", - "freq": 1.15e-05 - }, - { - "word": "pulse", - "freq": 1.15e-05 - }, - { - "word": "realm", - "freq": 1.15e-05 - }, - { - "word": "shout", - "freq": 1.15e-05 - }, - { - "word": "weeks", - "freq": 1.12e-05 - }, - { - "word": "alter", - "freq": 1.12e-05 - }, - { - "word": "brass", - "freq": 1.12e-05 - }, - { - "word": "crops", - "freq": 1.12e-05 - }, - { - "word": "dylan", - "freq": 1.12e-05 - }, - { - "word": "ellen", - "freq": 1.12e-05 - }, - { - "word": "graph", - "freq": 1.12e-05 - }, - { - "word": "milan", - "freq": 1.12e-05 - }, - { - "word": "penis", - "freq": 1.12e-05 - }, - { - "word": "pills", - "freq": 1.12e-05 - }, - { - "word": "shook", - "freq": 1.12e-05 - }, - { - "word": "stack", - "freq": 1.12e-05 - }, - { - "word": "aging", - "freq": 1.1e-05 - }, - { - "word": "audit", - "freq": 1.1e-05 - }, - { - "word": "blows", - "freq": 1.1e-05 - }, - { - "word": "dried", - "freq": 1.1e-05 - }, - { - "word": "jesse", - "freq": 1.1e-05 - }, - { - "word": "joins", - "freq": 1.1e-05 - }, - { - "word": "logan", - "freq": 1.1e-05 - }, - { - "word": "nails", - "freq": 1.1e-05 - }, - { - "word": "singh", - "freq": 1.1e-05 - }, - { - "word": "spite", - "freq": 1.1e-05 - }, - { - "word": "kings", - "freq": 1.07e-05 - }, - { - "word": "burnt", - "freq": 1.07e-05 - }, - { - "word": "buyer", - "freq": 1.07e-05 - }, - { - "word": "cease", - "freq": 1.07e-05 - }, - { - "word": "cloth", - "freq": 1.07e-05 - }, - { - "word": "eager", - "freq": 1.07e-05 - }, - { - "word": "elect", - "freq": 1.07e-05 - }, - { - "word": "kenny", - "freq": 1.07e-05 - }, - { - "word": "lloyd", - "freq": 1.07e-05 - }, - { - "word": "lobby", - "freq": 1.07e-05 - }, - { - "word": "orbit", - "freq": 1.07e-05 - }, - { - "word": "ranch", - "freq": 1.07e-05 - }, - { - "word": "socks", - "freq": 1.07e-05 - }, - { - "word": "trunk", - "freq": 1.07e-05 - }, - { - "word": "badge", - "freq": 1.05e-05 - }, - { - "word": "buses", - "freq": 1.05e-05 - }, - { - "word": "carol", - "freq": 1.05e-05 - }, - { - "word": "diana", - "freq": 1.05e-05 - }, - { - "word": "ferry", - "freq": 1.05e-05 - }, - { - "word": "gauge", - "freq": 1.05e-05 - }, - { - "word": "peers", - "freq": 1.05e-05 - }, - { - "word": "rider", - "freq": 1.05e-05 - }, - { - "word": "ruins", - "freq": 1.05e-05 - }, - { - "word": "shelf", - "freq": 1.05e-05 - }, - { - "word": "width", - "freq": 1.05e-05 - }, - { - "word": "derek", - "freq": 1.02e-05 - }, - { - "word": "leeds", - "freq": 1.02e-05 - }, - { - "word": "legit", - "freq": 1.02e-05 - }, - { - "word": "loser", - "freq": 1.02e-05 - }, - { - "word": "pulls", - "freq": 1.02e-05 - }, - { - "word": "sheer", - "freq": 1.02e-05 - }, - { - "word": "stark", - "freq": 1.02e-05 - }, - { - "word": "thumb", - "freq": 1.02e-05 - }, - { - "word": "urged", - "freq": 1.02e-05 - }, - { - "word": "wheat", - "freq": 1.02e-05 - }, - { - "word": "wrist", - "freq": 1.02e-05 - }, - { - "word": "acute", - "freq": 1e-05 - }, - { - "word": "blair", - "freq": 1e-05 - }, - { - "word": "civic", - "freq": 1e-05 - }, - { - "word": "clerk", - "freq": 1e-05 - }, - { - "word": "crude", - "freq": 1e-05 - }, - { - "word": "drone", - "freq": 1e-05 - }, - { - "word": "exams", - "freq": 1e-05 - }, - { - "word": "flour", - "freq": 1e-05 - }, - { - "word": "hindu", - "freq": 1e-05 - }, - { - "word": "indie", - "freq": 1e-05 - }, - { - "word": "minus", - "freq": 1e-05 - }, - { - "word": "pause", - "freq": 1e-05 - }, - { - "word": "puppy", - "freq": 1e-05 - }, - { - "word": "slice", - "freq": 1e-05 - }, - { - "word": "spurs", - "freq": 1e-05 - }, - { - "word": "vinyl", - "freq": 1e-05 - }, - { - "word": "debts", - "freq": 9.77e-06 - }, - { - "word": "linux", - "freq": 9.77e-06 - }, - { - "word": "probe", - "freq": 9.77e-06 - }, - { - "word": "remix", - "freq": 9.77e-06 - }, - { - "word": "sneak", - "freq": 9.77e-06 - }, - { - "word": "spark", - "freq": 9.77e-06 - }, - { - "word": "steep", - "freq": 9.77e-06 - }, - { - "word": "straw", - "freq": 9.77e-06 - }, - { - "word": "weigh", - "freq": 9.77e-06 - }, - { - "word": "adapt", - "freq": 9.55e-06 - }, - { - "word": "bryan", - "freq": 9.55e-06 - }, - { - "word": "cohen", - "freq": 9.55e-06 - }, - { - "word": "cyber", - "freq": 9.55e-06 - }, - { - "word": "dense", - "freq": 9.55e-06 - }, - { - "word": "kitty", - "freq": 9.55e-06 - }, - { - "word": "moses", - "freq": 9.55e-06 - }, - { - "word": "whale", - "freq": 9.55e-06 - }, - { - "word": "amber", - "freq": 9.33e-06 - }, - { - "word": "ankle", - "freq": 9.33e-06 - }, - { - "word": "armor", - "freq": 9.33e-06 - }, - { - "word": "berry", - "freq": 9.33e-06 - }, - { - "word": "brady", - "freq": 9.33e-06 - }, - { - "word": "clash", - "freq": 9.33e-06 - }, - { - "word": "glenn", - "freq": 9.33e-06 - }, - { - "word": "grasp", - "freq": 9.33e-06 - }, - { - "word": "handy", - "freq": 9.33e-06 - }, - { - "word": "lungs", - "freq": 9.33e-06 - }, - { - "word": "manga", - "freq": 9.33e-06 - }, - { - "word": "poker", - "freq": 9.33e-06 - }, - { - "word": "sally", - "freq": 9.33e-06 - }, - { - "word": "scout", - "freq": 9.33e-06 - }, - { - "word": "steak", - "freq": 9.33e-06 - }, - { - "word": "sweep", - "freq": 9.33e-06 - }, - { - "word": "tumor", - "freq": 9.33e-06 - }, - { - "word": "girls", - "freq": 9.12e-06 - }, - { - "word": "casey", - "freq": 9.12e-06 - }, - { - "word": "cheek", - "freq": 9.12e-06 - }, - { - "word": "curry", - "freq": 9.12e-06 - }, - { - "word": "drake", - "freq": 9.12e-06 - }, - { - "word": "janet", - "freq": 9.12e-06 - }, - { - "word": "katie", - "freq": 9.12e-06 - }, - { - "word": "polar", - "freq": 9.12e-06 - }, - { - "word": "skirt", - "freq": 9.12e-06 - }, - { - "word": "spike", - "freq": 9.12e-06 - }, - { - "word": "toast", - "freq": 9.12e-06 - }, - { - "word": "waist", - "freq": 9.12e-06 - }, - { - "word": "wreck", - "freq": 9.12e-06 - }, - { - "word": "blend", - "freq": 8.91e-06 - }, - { - "word": "brake", - "freq": 8.91e-06 - }, - { - "word": "cough", - "freq": 8.91e-06 - }, - { - "word": "czech", - "freq": 8.91e-06 - }, - { - "word": "depot", - "freq": 8.91e-06 - }, - { - "word": "drank", - "freq": 8.91e-06 - }, - { - "word": "ellis", - "freq": 8.91e-06 - }, - { - "word": "feast", - "freq": 8.91e-06 - } - ], - "6": [ - { - "word": "people", - "freq": 0.00178 - }, - { - "word": "should", - "freq": 0.000977 - }, - { - "word": "really", - "freq": 0.000933 - }, - { - "word": "before", - "freq": 0.000851 - }, - { - "word": "around", - "freq": 0.000589 - }, - { - "word": "better", - "freq": 0.000575 - }, - { - "word": "little", - "freq": 0.000562 - }, - { - "word": "during", - "freq": 0.000525 - }, - { - "word": "school", - "freq": 0.000513 - }, - { - "word": "family", - "freq": 0.000457 - }, - { - "word": "please", - "freq": 0.000457 - }, - { - "word": "second", - "freq": 0.000427 - }, - { - "word": "number", - "freq": 0.000417 - }, - { - "word": "called", - "freq": 0.000389 - }, - { - "word": "having", - "freq": 0.000389 - }, - { - "word": "public", - "freq": 0.000372 - }, - { - "word": "system", - "freq": 0.000363 - }, - { - "word": "person", - "freq": 0.000355 - }, - { - "word": "enough", - "freq": 0.000347 - }, - { - "word": "making", - "freq": 0.000347 - }, - { - "word": "though", - "freq": 0.000316 - }, - { - "word": "season", - "freq": 0.000302 - }, - { - "word": "trying", - "freq": 0.000295 - }, - { - "word": "united", - "freq": 0.000295 - }, - { - "word": "course", - "freq": 0.000275 - }, - { - "word": "health", - "freq": 0.000275 - }, - { - "word": "within", - "freq": 0.000275 - }, - { - "word": "social", - "freq": 0.000263 - }, - { - "word": "single", - "freq": 0.000257 - }, - { - "word": "become", - "freq": 0.000251 - }, - { - "word": "coming", - "freq": 0.000251 - }, - { - "word": "office", - "freq": 0.000251 - }, - { - "word": "almost", - "freq": 0.000245 - }, - { - "word": "taking", - "freq": 0.000245 - }, - { - "word": "anyone", - "freq": 0.00024 - }, - { - "word": "matter", - "freq": 0.00024 - }, - { - "word": "pretty", - "freq": 0.00024 - }, - { - "word": "friend", - "freq": 0.000234 - }, - { - "word": "saying", - "freq": 0.000234 - }, - { - "word": "wanted", - "freq": 0.000229 - }, - { - "word": "series", - "freq": 0.000224 - }, - { - "word": "either", - "freq": 0.000214 - }, - { - "word": "future", - "freq": 0.000214 - }, - { - "word": "police", - "freq": 0.000214 - }, - { - "word": "rather", - "freq": 0.000209 - }, - { - "word": "reason", - "freq": 0.000209 - }, - { - "word": "report", - "freq": 0.000209 - }, - { - "word": "myself", - "freq": 0.000204 - }, - { - "word": "living", - "freq": 0.0002 - }, - { - "word": "behind", - "freq": 0.000195 - }, - { - "word": "market", - "freq": 0.000195 - }, - { - "word": "former", - "freq": 0.000191 - }, - { - "word": "street", - "freq": 0.000191 - }, - { - "word": "london", - "freq": 0.000186 - }, - { - "word": "chance", - "freq": 0.000182 - }, - { - "word": "father", - "freq": 0.000182 - }, - { - "word": "across", - "freq": 0.000178 - }, - { - "word": "action", - "freq": 0.000178 - }, - { - "word": "moment", - "freq": 0.000174 - }, - { - "word": "mother", - "freq": 0.000174 - }, - { - "word": "energy", - "freq": 0.00017 - }, - { - "word": "played", - "freq": 0.00017 - }, - { - "word": "summer", - "freq": 0.00017 - }, - { - "word": "killed", - "freq": 0.000166 - }, - { - "word": "strong", - "freq": 0.000166 - }, - { - "word": "period", - "freq": 0.000162 - }, - { - "word": "record", - "freq": 0.000162 - }, - { - "word": "common", - "freq": 0.000158 - }, - { - "word": "likely", - "freq": 0.000158 - }, - { - "word": "center", - "freq": 0.000155 - }, - { - "word": "county", - "freq": 0.000155 - }, - { - "word": "couple", - "freq": 0.000155 - }, - { - "word": "happen", - "freq": 0.000155 - }, - { - "word": "inside", - "freq": 0.000155 - }, - { - "word": "online", - "freq": 0.000155 - }, - { - "word": "player", - "freq": 0.000155 - }, - { - "word": "return", - "freq": 0.000155 - }, - { - "word": "higher", - "freq": 0.000151 - }, - { - "word": "member", - "freq": 0.000151 - }, - { - "word": "middle", - "freq": 0.000151 - }, - { - "word": "needed", - "freq": 0.000151 - }, - { - "word": "result", - "freq": 0.000151 - }, - { - "word": "answer", - "freq": 0.000148 - }, - { - "word": "design", - "freq": 0.000148 - }, - { - "word": "policy", - "freq": 0.000148 - }, - { - "word": "church", - "freq": 0.000145 - }, - { - "word": "longer", - "freq": 0.000145 - }, - { - "word": "worked", - "freq": 0.000145 - }, - { - "word": "became", - "freq": 0.000141 - }, - { - "word": "giving", - "freq": 0.000141 - }, - { - "word": "ground", - "freq": 0.000141 - }, - { - "word": "source", - "freq": 0.000141 - }, - { - "word": "follow", - "freq": 0.000138 - }, - { - "word": "amount", - "freq": 0.000135 - }, - { - "word": "league", - "freq": 0.000135 - }, - { - "word": "review", - "freq": 0.000132 - }, - { - "word": "cannot", - "freq": 0.000129 - }, - { - "word": "looked", - "freq": 0.000129 - }, - { - "word": "august", - "freq": 0.000126 - }, - { - "word": "itself", - "freq": 0.000126 - }, - { - "word": "attack", - "freq": 0.000123 - }, - { - "word": "entire", - "freq": 0.000123 - }, - { - "word": "french", - "freq": 0.000123 - }, - { - "word": "turned", - "freq": 0.000123 - }, - { - "word": "choice", - "freq": 0.00012 - }, - { - "word": "simple", - "freq": 0.00012 - }, - { - "word": "simply", - "freq": 0.00012 - }, - { - "word": "career", - "freq": 0.000117 - }, - { - "word": "figure", - "freq": 0.000117 - }, - { - "word": "modern", - "freq": 0.000117 - }, - { - "word": "forget", - "freq": 0.000115 - }, - { - "word": "listen", - "freq": 0.000115 - }, - { - "word": "access", - "freq": 0.000112 - }, - { - "word": "europe", - "freq": 0.00011 - }, - { - "word": "george", - "freq": 0.00011 - }, - { - "word": "recent", - "freq": 0.00011 - }, - { - "word": "seeing", - "freq": 0.00011 - }, - { - "word": "growth", - "freq": 0.000107 - }, - { - "word": "charge", - "freq": 0.000105 - }, - { - "word": "create", - "freq": 0.000105 - }, - { - "word": "effect", - "freq": 0.000105 - }, - { - "word": "except", - "freq": 0.000105 - }, - { - "word": "moving", - "freq": 0.000105 - }, - { - "word": "weight", - "freq": 0.000105 - }, - { - "word": "double", - "freq": 0.000102 - }, - { - "word": "expect", - "freq": 0.000102 - }, - { - "word": "island", - "freq": 0.000102 - }, - { - "word": "normal", - "freq": 0.000102 - }, - { - "word": "credit", - "freq": 0.0001 - }, - { - "word": "female", - "freq": 0.0001 - }, - { - "word": "nearly", - "freq": 0.0001 - }, - { - "word": "region", - "freq": 0.0001 - }, - { - "word": "travel", - "freq": 0.0001 - }, - { - "word": "beyond", - "freq": 9.55e-05 - }, - { - "word": "minute", - "freq": 9.55e-05 - }, - { - "word": "nature", - "freq": 9.55e-05 - }, - { - "word": "unless", - "freq": 9.55e-05 - }, - { - "word": "canada", - "freq": 9.33e-05 - }, - { - "word": "income", - "freq": 9.33e-05 - }, - { - "word": "posted", - "freq": 9.33e-05 - }, - { - "word": "safety", - "freq": 9.33e-05 - }, - { - "word": "asking", - "freq": 9.12e-05 - }, - { - "word": "friday", - "freq": 9.12e-05 - }, - { - "word": "search", - "freq": 9.12e-05 - }, - { - "word": "author", - "freq": 8.91e-05 - }, - { - "word": "centre", - "freq": 8.91e-05 - }, - { - "word": "german", - "freq": 8.91e-05 - }, - { - "word": "global", - "freq": 8.91e-05 - }, - { - "word": "leader", - "freq": 8.91e-05 - }, - { - "word": "letter", - "freq": 8.91e-05 - }, - { - "word": "nobody", - "freq": 8.91e-05 - }, - { - "word": "sister", - "freq": 8.91e-05 - }, - { - "word": "annual", - "freq": 8.71e-05 - }, - { - "word": "battle", - "freq": 8.71e-05 - }, - { - "word": "degree", - "freq": 8.71e-05 - }, - { - "word": "france", - "freq": 8.71e-05 - }, - { - "word": "stupid", - "freq": 8.71e-05 - }, - { - "word": "active", - "freq": 8.51e-05 - }, - { - "word": "cancer", - "freq": 8.51e-05 - }, - { - "word": "master", - "freq": 8.51e-05 - }, - { - "word": "russia", - "freq": 8.51e-05 - }, - { - "word": "wonder", - "freq": 8.51e-05 - }, - { - "word": "africa", - "freq": 8.32e-05 - }, - { - "word": "effort", - "freq": 8.32e-05 - }, - { - "word": "impact", - "freq": 8.32e-05 - }, - { - "word": "latest", - "freq": 8.32e-05 - }, - { - "word": "passed", - "freq": 8.32e-05 - }, - { - "word": "secret", - "freq": 8.32e-05 - }, - { - "word": "senior", - "freq": 8.32e-05 - }, - { - "word": "spring", - "freq": 8.32e-05 - }, - { - "word": "sunday", - "freq": 8.32e-05 - }, - { - "word": "anyway", - "freq": 8.13e-05 - }, - { - "word": "bought", - "freq": 8.13e-05 - }, - { - "word": "choose", - "freq": 8.13e-05 - }, - { - "word": "direct", - "freq": 8.13e-05 - }, - { - "word": "easily", - "freq": 8.13e-05 - }, - { - "word": "finish", - "freq": 8.13e-05 - }, - { - "word": "indian", - "freq": 8.13e-05 - }, - { - "word": "caught", - "freq": 7.94e-05 - }, - { - "word": "closed", - "freq": 7.94e-05 - }, - { - "word": "damage", - "freq": 7.94e-05 - }, - { - "word": "doctor", - "freq": 7.94e-05 - }, - { - "word": "notice", - "freq": 7.94e-05 - }, - { - "word": "highly", - "freq": 7.76e-05 - }, - { - "word": "winter", - "freq": 7.76e-05 - }, - { - "word": "advice", - "freq": 7.59e-05 - }, - { - "word": "broken", - "freq": 7.59e-05 - }, - { - "word": "caused", - "freq": 7.59e-05 - }, - { - "word": "helped", - "freq": 7.59e-05 - }, - { - "word": "nation", - "freq": 7.59e-05 - }, - { - "word": "theory", - "freq": 7.59e-05 - }, - { - "word": "agency", - "freq": 7.41e-05 - }, - { - "word": "camera", - "freq": 7.41e-05 - }, - { - "word": "status", - "freq": 7.41e-05 - }, - { - "word": "claims", - "freq": 7.24e-05 - }, - { - "word": "coffee", - "freq": 7.24e-05 - }, - { - "word": "flight", - "freq": 7.24e-05 - }, - { - "word": "google", - "freq": 7.24e-05 - }, - { - "word": "murder", - "freq": 7.24e-05 - }, - { - "word": "showed", - "freq": 7.24e-05 - }, - { - "word": "accept", - "freq": 7.08e-05 - }, - { - "word": "actual", - "freq": 7.08e-05 - }, - { - "word": "appear", - "freq": 7.08e-05 - }, - { - "word": "eating", - "freq": 7.08e-05 - }, - { - "word": "losing", - "freq": 7.08e-05 - }, - { - "word": "mobile", - "freq": 7.08e-05 - }, - { - "word": "opened", - "freq": 7.08e-05 - }, - { - "word": "placed", - "freq": 7.08e-05 - }, - { - "word": "robert", - "freq": 7.08e-05 - }, - { - "word": "screen", - "freq": 7.08e-05 - }, - { - "word": "signed", - "freq": 7.08e-05 - }, - { - "word": "speech", - "freq": 7.08e-05 - }, - { - "word": "agreed", - "freq": 6.92e-05 - }, - { - "word": "bottom", - "freq": 6.92e-05 - }, - { - "word": "cities", - "freq": 6.92e-05 - }, - { - "word": "demand", - "freq": 6.92e-05 - }, - { - "word": "engine", - "freq": 6.92e-05 - }, - { - "word": "famous", - "freq": 6.92e-05 - }, - { - "word": "raised", - "freq": 6.92e-05 - }, - { - "word": "square", - "freq": 6.92e-05 - }, - { - "word": "thomas", - "freq": 6.92e-05 - }, - { - "word": "forced", - "freq": 6.76e-05 - }, - { - "word": "fourth", - "freq": 6.76e-05 - }, - { - "word": "mental", - "freq": 6.76e-05 - }, - { - "word": "missed", - "freq": 6.76e-05 - }, - { - "word": "mostly", - "freq": 6.76e-05 - }, - { - "word": "remain", - "freq": 6.76e-05 - }, - { - "word": "starts", - "freq": 6.76e-05 - }, - { - "word": "acting", - "freq": 6.61e-05 - }, - { - "word": "budget", - "freq": 6.61e-05 - }, - { - "word": "estate", - "freq": 6.61e-05 - }, - { - "word": "failed", - "freq": 6.61e-05 - }, - { - "word": "larger", - "freq": 6.61e-05 - }, - { - "word": "seemed", - "freq": 6.61e-05 - }, - { - "word": "sexual", - "freq": 6.61e-05 - }, - { - "word": "target", - "freq": 6.61e-05 - }, - { - "word": "animal", - "freq": 6.46e-05 - }, - { - "word": "memory", - "freq": 6.46e-05 - }, - { - "word": "served", - "freq": 6.46e-05 - }, - { - "word": "silver", - "freq": 6.46e-05 - }, - { - "word": "spread", - "freq": 6.46e-05 - }, - { - "word": "supply", - "freq": 6.46e-05 - }, - { - "word": "artist", - "freq": 6.31e-05 - }, - { - "word": "method", - "freq": 6.31e-05 - }, - { - "word": "monday", - "freq": 6.31e-05 - }, - { - "word": "option", - "freq": 6.31e-05 - }, - { - "word": "prison", - "freq": 6.31e-05 - }, - { - "word": "senate", - "freq": 6.31e-05 - }, - { - "word": "window", - "freq": 6.31e-05 - }, - { - "word": "winner", - "freq": 6.31e-05 - }, - { - "word": "christ", - "freq": 6.17e-05 - }, - { - "word": "handle", - "freq": 6.17e-05 - }, - { - "word": "indeed", - "freq": 6.17e-05 - }, - { - "word": "spirit", - "freq": 6.17e-05 - }, - { - "word": "decide", - "freq": 6.03e-05 - }, - { - "word": "dinner", - "freq": 6.03e-05 - }, - { - "word": "bridge", - "freq": 5.89e-05 - }, - { - "word": "garden", - "freq": 5.89e-05 - }, - { - "word": "israel", - "freq": 5.89e-05 - }, - { - "word": "length", - "freq": 5.89e-05 - }, - { - "word": "skills", - "freq": 5.89e-05 - }, - { - "word": "easier", - "freq": 5.75e-05 - }, - { - "word": "fellow", - "freq": 5.75e-05 - }, - { - "word": "volume", - "freq": 5.75e-05 - }, - { - "word": "beauty", - "freq": 5.62e-05 - }, - { - "word": "buying", - "freq": 5.62e-05 - }, - { - "word": "corner", - "freq": 5.62e-05 - }, - { - "word": "driver", - "freq": 5.62e-05 - }, - { - "word": "mexico", - "freq": 5.62e-05 - }, - { - "word": "paying", - "freq": 5.62e-05 - }, - { - "word": "unique", - "freq": 5.62e-05 - }, - { - "word": "bigger", - "freq": 5.5e-05 - }, - { - "word": "injury", - "freq": 5.5e-05 - }, - { - "word": "lovely", - "freq": 5.5e-05 - }, - { - "word": "martin", - "freq": 5.5e-05 - }, - { - "word": "offers", - "freq": 5.5e-05 - }, - { - "word": "stated", - "freq": 5.5e-05 - }, - { - "word": "closer", - "freq": 5.37e-05 - }, - { - "word": "honest", - "freq": 5.37e-05 - }, - { - "word": "issued", - "freq": 5.37e-05 - }, - { - "word": "joined", - "freq": 5.37e-05 - }, - { - "word": "reduce", - "freq": 5.37e-05 - }, - { - "word": "stress", - "freq": 5.37e-05 - }, - { - "word": "picked", - "freq": 5.25e-05 - }, - { - "word": "plenty", - "freq": 5.25e-05 - }, - { - "word": "prince", - "freq": 5.25e-05 - }, - { - "word": "proper", - "freq": 5.25e-05 - }, - { - "word": "toward", - "freq": 5.25e-05 - }, - { - "word": "useful", - "freq": 5.25e-05 - }, - { - "word": "valley", - "freq": 5.25e-05 - }, - { - "word": "flying", - "freq": 5.13e-05 - }, - { - "word": "museum", - "freq": 5.13e-05 - }, - { - "word": "remove", - "freq": 5.13e-05 - }, - { - "word": "afraid", - "freq": 5.01e-05 - }, - { - "word": "border", - "freq": 5.01e-05 - }, - { - "word": "dating", - "freq": 5.01e-05 - }, - { - "word": "ensure", - "freq": 5.01e-05 - }, - { - "word": "filled", - "freq": 5.01e-05 - }, - { - "word": "forest", - "freq": 5.01e-05 - }, - { - "word": "labour", - "freq": 5.01e-05 - }, - { - "word": "profit", - "freq": 5.01e-05 - }, - { - "word": "bodies", - "freq": 4.9e-05 - }, - { - "word": "launch", - "freq": 4.9e-05 - }, - { - "word": "listed", - "freq": 4.9e-05 - }, - { - "word": "native", - "freq": 4.9e-05 - }, - { - "word": "survey", - "freq": 4.9e-05 - }, - { - "word": "update", - "freq": 4.9e-05 - }, - { - "word": "writer", - "freq": 4.9e-05 - }, - { - "word": "yellow", - "freq": 4.9e-05 - }, - { - "word": "ending", - "freq": 4.79e-05 - }, - { - "word": "formed", - "freq": 4.79e-05 - }, - { - "word": "planet", - "freq": 4.79e-05 - }, - { - "word": "shared", - "freq": 4.79e-05 - }, - { - "word": "taught", - "freq": 4.79e-05 - }, - { - "word": "adding", - "freq": 4.68e-05 - }, - { - "word": "allows", - "freq": 4.68e-05 - }, - { - "word": "appeal", - "freq": 4.68e-05 - }, - { - "word": "boston", - "freq": 4.68e-05 - }, - { - "word": "device", - "freq": 4.68e-05 - }, - { - "word": "factor", - "freq": 4.68e-05 - }, - { - "word": "golden", - "freq": 4.68e-05 - }, - { - "word": "hoping", - "freq": 4.68e-05 - }, - { - "word": "lawyer", - "freq": 4.68e-05 - }, - { - "word": "muslim", - "freq": 4.68e-05 - }, - { - "word": "pulled", - "freq": 4.68e-05 - }, - { - "word": "values", - "freq": 4.68e-05 - }, - { - "word": "walked", - "freq": 4.68e-05 - }, - { - "word": "jersey", - "freq": 4.57e-05 - }, - { - "word": "sector", - "freq": 4.57e-05 - }, - { - "word": "strike", - "freq": 4.57e-05 - }, - { - "word": "studio", - "freq": 4.57e-05 - }, - { - "word": "taylor", - "freq": 4.47e-05 - }, - { - "word": "twenty", - "freq": 4.47e-05 - }, - { - "word": "debate", - "freq": 4.37e-05 - }, - { - "word": "escape", - "freq": 4.37e-05 - }, - { - "word": "faster", - "freq": 4.37e-05 - }, - { - "word": "ladies", - "freq": 4.37e-05 - }, - { - "word": "secure", - "freq": 4.37e-05 - }, - { - "word": "talent", - "freq": 4.37e-05 - }, - { - "word": "troops", - "freq": 4.37e-05 - }, - { - "word": "causes", - "freq": 4.27e-05 - }, - { - "word": "forgot", - "freq": 4.27e-05 - }, - { - "word": "scored", - "freq": 4.27e-05 - }, - { - "word": "slowly", - "freq": 4.27e-05 - }, - { - "word": "vision", - "freq": 4.27e-05 - }, - { - "word": "begins", - "freq": 4.17e-05 - }, - { - "word": "crisis", - "freq": 4.17e-05 - }, - { - "word": "daniel", - "freq": 4.17e-05 - }, - { - "word": "editor", - "freq": 4.17e-05 - }, - { - "word": "orange", - "freq": 4.17e-05 - }, - { - "word": "signal", - "freq": 4.17e-05 - }, - { - "word": "stream", - "freq": 4.17e-05 - }, - { - "word": "talked", - "freq": 4.17e-05 - }, - { - "word": "voting", - "freq": 4.17e-05 - }, - { - "word": "bright", - "freq": 4.07e-05 - }, - { - "word": "brings", - "freq": 4.07e-05 - }, - { - "word": "chosen", - "freq": 4.07e-05 - }, - { - "word": "desire", - "freq": 4.07e-05 - }, - { - "word": "guilty", - "freq": 4.07e-05 - }, - { - "word": "jewish", - "freq": 4.07e-05 - }, - { - "word": "medium", - "freq": 4.07e-05 - }, - { - "word": "stands", - "freq": 4.07e-05 - }, - { - "word": "ticket", - "freq": 4.07e-05 - }, - { - "word": "unable", - "freq": 4.07e-05 - }, - { - "word": "mainly", - "freq": 3.98e-05 - }, - { - "word": "scared", - "freq": 3.98e-05 - }, - { - "word": "shares", - "freq": 3.98e-05 - }, - { - "word": "switch", - "freq": 3.98e-05 - }, - { - "word": "threat", - "freq": 3.98e-05 - }, - { - "word": "affect", - "freq": 3.89e-05 - }, - { - "word": "danger", - "freq": 3.89e-05 - }, - { - "word": "dollar", - "freq": 3.89e-05 - }, - { - "word": "fucked", - "freq": 3.89e-05 - }, - { - "word": "gender", - "freq": 3.89e-05 - }, - { - "word": "motion", - "freq": 3.89e-05 - }, - { - "word": "saving", - "freq": 3.89e-05 - }, - { - "word": "branch", - "freq": 3.8e-05 - }, - { - "word": "brazil", - "freq": 3.8e-05 - }, - { - "word": "heaven", - "freq": 3.8e-05 - }, - { - "word": "random", - "freq": 3.8e-05 - }, - { - "word": "afford", - "freq": 3.72e-05 - }, - { - "word": "andrew", - "freq": 3.72e-05 - }, - { - "word": "assume", - "freq": 3.72e-05 - }, - { - "word": "bottle", - "freq": 3.72e-05 - }, - { - "word": "cheese", - "freq": 3.72e-05 - }, - { - "word": "detail", - "freq": 3.72e-05 - }, - { - "word": "harder", - "freq": 3.72e-05 - }, - { - "word": "parent", - "freq": 3.72e-05 - }, - { - "word": "prefer", - "freq": 3.72e-05 - }, - { - "word": "scheme", - "freq": 3.72e-05 - }, - { - "word": "unlike", - "freq": 3.72e-05 - }, - { - "word": "weekly", - "freq": 3.72e-05 - }, - { - "word": "button", - "freq": 3.63e-05 - }, - { - "word": "combat", - "freq": 3.63e-05 - }, - { - "word": "crying", - "freq": 3.63e-05 - }, - { - "word": "excuse", - "freq": 3.63e-05 - }, - { - "word": "expert", - "freq": 3.63e-05 - }, - { - "word": "latter", - "freq": 3.63e-05 - }, - { - "word": "mining", - "freq": 3.63e-05 - }, - { - "word": "object", - "freq": 3.63e-05 - }, - { - "word": "severe", - "freq": 3.63e-05 - }, - { - "word": "turkey", - "freq": 3.63e-05 - }, - { - "word": "victim", - "freq": 3.63e-05 - }, - { - "word": "amazon", - "freq": 3.55e-05 - }, - { - "word": "arrest", - "freq": 3.55e-05 - }, - { - "word": "attend", - "freq": 3.55e-05 - }, - { - "word": "carbon", - "freq": 3.55e-05 - }, - { - "word": "circle", - "freq": 3.55e-05 - }, - { - "word": "deputy", - "freq": 3.55e-05 - }, - { - "word": "earned", - "freq": 3.55e-05 - }, - { - "word": "headed", - "freq": 3.55e-05 - }, - { - "word": "manner", - "freq": 3.55e-05 - }, - { - "word": "nearby", - "freq": 3.55e-05 - }, - { - "word": "origin", - "freq": 3.55e-05 - }, - { - "word": "relief", - "freq": 3.55e-05 - }, - { - "word": "retail", - "freq": 3.55e-05 - }, - { - "word": "surely", - "freq": 3.55e-05 - }, - { - "word": "client", - "freq": 3.47e-05 - }, - { - "word": "driven", - "freq": 3.47e-05 - }, - { - "word": "empire", - "freq": 3.47e-05 - }, - { - "word": "linked", - "freq": 3.47e-05 - }, - { - "word": "manage", - "freq": 3.47e-05 - }, - { - "word": "soviet", - "freq": 3.47e-05 - }, - { - "word": "weapon", - "freq": 3.47e-05 - }, - { - "word": "widely", - "freq": 3.47e-05 - }, - { - "word": "hardly", - "freq": 3.39e-05 - }, - { - "word": "height", - "freq": 3.39e-05 - }, - { - "word": "hidden", - "freq": 3.39e-05 - }, - { - "word": "marine", - "freq": 3.39e-05 - }, - { - "word": "reform", - "freq": 3.39e-05 - }, - { - "word": "sample", - "freq": 3.39e-05 - }, - { - "word": "stayed", - "freq": 3.39e-05 - }, - { - "word": "sydney", - "freq": 3.39e-05 - }, - { - "word": "wilson", - "freq": 3.39e-05 - }, - { - "word": "breath", - "freq": 3.31e-05 - }, - { - "word": "decade", - "freq": 3.31e-05 - }, - { - "word": "edward", - "freq": 3.31e-05 - }, - { - "word": "joseph", - "freq": 3.31e-05 - }, - { - "word": "rising", - "freq": 3.31e-05 - }, - { - "word": "singer", - "freq": 3.31e-05 - }, - { - "word": "campus", - "freq": 3.24e-05 - }, - { - "word": "comedy", - "freq": 3.24e-05 - }, - { - "word": "defeat", - "freq": 3.24e-05 - }, - { - "word": "jordan", - "freq": 3.24e-05 - }, - { - "word": "wealth", - "freq": 3.24e-05 - }, - { - "word": "facing", - "freq": 3.16e-05 - }, - { - "word": "fairly", - "freq": 3.16e-05 - }, - { - "word": "marked", - "freq": 3.16e-05 - }, - { - "word": "miller", - "freq": 3.16e-05 - }, - { - "word": "racing", - "freq": 3.16e-05 - }, - { - "word": "shower", - "freq": 3.16e-05 - }, - { - "word": "visual", - "freq": 3.16e-05 - }, - { - "word": "barely", - "freq": 3.09e-05 - }, - { - "word": "colour", - "freq": 3.09e-05 - }, - { - "word": "fought", - "freq": 3.09e-05 - }, - { - "word": "gained", - "freq": 3.09e-05 - }, - { - "word": "junior", - "freq": 3.09e-05 - }, - { - "word": "korean", - "freq": 3.09e-05 - }, - { - "word": "repeat", - "freq": 3.09e-05 - }, - { - "word": "riding", - "freq": 3.09e-05 - }, - { - "word": "sought", - "freq": 3.09e-05 - }, - { - "word": "exists", - "freq": 3.02e-05 - }, - { - "word": "finger", - "freq": 3.02e-05 - }, - { - "word": "guitar", - "freq": 3.02e-05 - }, - { - "word": "howard", - "freq": 3.02e-05 - }, - { - "word": "ignore", - "freq": 3.02e-05 - }, - { - "word": "pocket", - "freq": 3.02e-05 - }, - { - "word": "proved", - "freq": 3.02e-05 - }, - { - "word": "rescue", - "freq": 3.02e-05 - }, - { - "word": "soccer", - "freq": 3.02e-05 - }, - { - "word": "stable", - "freq": 3.02e-05 - }, - { - "word": "tested", - "freq": 3.02e-05 - }, - { - "word": "defend", - "freq": 2.95e-05 - }, - { - "word": "extent", - "freq": 2.95e-05 - }, - { - "word": "format", - "freq": 2.95e-05 - }, - { - "word": "gotten", - "freq": 2.95e-05 - }, - { - "word": "killer", - "freq": 2.95e-05 - }, - { - "word": "lesson", - "freq": 2.95e-05 - }, - { - "word": "limits", - "freq": 2.95e-05 - }, - { - "word": "loving", - "freq": 2.95e-05 - }, - { - "word": "mirror", - "freq": 2.95e-05 - }, - { - "word": "belief", - "freq": 2.88e-05 - }, - { - "word": "donald", - "freq": 2.88e-05 - }, - { - "word": "server", - "freq": 2.88e-05 - }, - { - "word": "babies", - "freq": 2.82e-05 - }, - { - "word": "castle", - "freq": 2.82e-05 - }, - { - "word": "finals", - "freq": 2.82e-05 - }, - { - "word": "formal", - "freq": 2.82e-05 - }, - { - "word": "hungry", - "freq": 2.82e-05 - }, - { - "word": "losses", - "freq": 2.82e-05 - }, - { - "word": "palace", - "freq": 2.82e-05 - }, - { - "word": "passes", - "freq": 2.82e-05 - }, - { - "word": "rating", - "freq": 2.82e-05 - }, - { - "word": "select", - "freq": 2.82e-05 - }, - { - "word": "silent", - "freq": 2.82e-05 - }, - { - "word": "spoken", - "freq": 2.82e-05 - }, - { - "word": "suffer", - "freq": 2.82e-05 - }, - { - "word": "temple", - "freq": 2.82e-05 - }, - { - "word": "deeply", - "freq": 2.75e-05 - }, - { - "word": "harris", - "freq": 2.75e-05 - }, - { - "word": "legend", - "freq": 2.75e-05 - }, - { - "word": "muscle", - "freq": 2.75e-05 - }, - { - "word": "shadow", - "freq": 2.75e-05 - }, - { - "word": "thread", - "freq": 2.75e-05 - }, - { - "word": "avenue", - "freq": 2.69e-05 - }, - { - "word": "boring", - "freq": 2.69e-05 - }, - { - "word": "copies", - "freq": 2.69e-05 - }, - { - "word": "custom", - "freq": 2.69e-05 - }, - { - "word": "denied", - "freq": 2.69e-05 - }, - { - "word": "horror", - "freq": 2.69e-05 - }, - { - "word": "iphone", - "freq": 2.69e-05 - }, - { - "word": "locked", - "freq": 2.69e-05 - }, - { - "word": "output", - "freq": 2.69e-05 - }, - { - "word": "pushed", - "freq": 2.69e-05 - }, - { - "word": "reveal", - "freq": 2.69e-05 - }, - { - "word": "speaks", - "freq": 2.69e-05 - }, - { - "word": "worker", - "freq": 2.69e-05 - }, - { - "word": "assist", - "freq": 2.63e-05 - }, - { - "word": "behalf", - "freq": 2.63e-05 - }, - { - "word": "dallas", - "freq": 2.63e-05 - }, - { - "word": "flower", - "freq": 2.63e-05 - }, - { - "word": "handed", - "freq": 2.63e-05 - }, - { - "word": "hockey", - "freq": 2.63e-05 - }, - { - "word": "morgan", - "freq": 2.63e-05 - }, - { - "word": "moscow", - "freq": 2.63e-05 - }, - { - "word": "prayer", - "freq": 2.63e-05 - }, - { - "word": "racist", - "freq": 2.63e-05 - }, - { - "word": "rarely", - "freq": 2.63e-05 - }, - { - "word": "struck", - "freq": 2.63e-05 - }, - { - "word": "walker", - "freq": 2.63e-05 - }, - { - "word": "arthur", - "freq": 2.57e-05 - }, - { - "word": "aspect", - "freq": 2.57e-05 - }, - { - "word": "banned", - "freq": 2.57e-05 - }, - { - "word": "bureau", - "freq": 2.57e-05 - }, - { - "word": "cousin", - "freq": 2.57e-05 - }, - { - "word": "dragon", - "freq": 2.57e-05 - }, - { - "word": "lately", - "freq": 2.57e-05 - }, - { - "word": "lowest", - "freq": 2.57e-05 - }, - { - "word": "remote", - "freq": 2.57e-05 - }, - { - "word": "repair", - "freq": 2.57e-05 - }, - { - "word": "stolen", - "freq": 2.57e-05 - }, - { - "word": "buried", - "freq": 2.51e-05 - }, - { - "word": "butter", - "freq": 2.51e-05 - }, - { - "word": "decent", - "freq": 2.51e-05 - }, - { - "word": "desert", - "freq": 2.51e-05 - }, - { - "word": "insane", - "freq": 2.51e-05 - }, - { - "word": "obtain", - "freq": 2.51e-05 - }, - { - "word": "poetry", - "freq": 2.51e-05 - }, - { - "word": "recall", - "freq": 2.51e-05 - }, - { - "word": "smooth", - "freq": 2.51e-05 - }, - { - "word": "string", - "freq": 2.51e-05 - }, - { - "word": "sudden", - "freq": 2.51e-05 - }, - { - "word": "sweden", - "freq": 2.51e-05 - }, - { - "word": "thrown", - "freq": 2.51e-05 - }, - { - "word": "abroad", - "freq": 2.45e-05 - }, - { - "word": "bother", - "freq": 2.45e-05 - }, - { - "word": "disney", - "freq": 2.45e-05 - }, - { - "word": "fallen", - "freq": 2.45e-05 - }, - { - "word": "liquid", - "freq": 2.45e-05 - }, - { - "word": "makeup", - "freq": 2.45e-05 - }, - { - "word": "narrow", - "freq": 2.45e-05 - }, - { - "word": "refuse", - "freq": 2.45e-05 - }, - { - "word": "serves", - "freq": 2.45e-05 - }, - { - "word": "arrive", - "freq": 2.4e-05 - }, - { - "word": "belong", - "freq": 2.4e-05 - }, - { - "word": "berlin", - "freq": 2.4e-05 - }, - { - "word": "bishop", - "freq": 2.4e-05 - }, - { - "word": "kicked", - "freq": 2.4e-05 - }, - { - "word": "oxford", - "freq": 2.4e-05 - }, - { - "word": "shaped", - "freq": 2.4e-05 - }, - { - "word": "thirty", - "freq": 2.4e-05 - }, - { - "word": "whilst", - "freq": 2.4e-05 - }, - { - "word": "gordon", - "freq": 2.34e-05 - }, - { - "word": "honour", - "freq": 2.34e-05 - }, - { - "word": "hunter", - "freq": 2.34e-05 - }, - { - "word": "kansas", - "freq": 2.34e-05 - }, - { - "word": "legacy", - "freq": 2.34e-05 - }, - { - "word": "merely", - "freq": 2.34e-05 - }, - { - "word": "regret", - "freq": 2.34e-05 - }, - { - "word": "remind", - "freq": 2.34e-05 - }, - { - "word": "resort", - "freq": 2.34e-05 - }, - { - "word": "settle", - "freq": 2.34e-05 - }, - { - "word": "tongue", - "freq": 2.34e-05 - }, - { - "word": "argued", - "freq": 2.29e-05 - }, - { - "word": "asleep", - "freq": 2.29e-05 - }, - { - "word": "austin", - "freq": 2.29e-05 - }, - { - "word": "engage", - "freq": 2.29e-05 - }, - { - "word": "gaming", - "freq": 2.29e-05 - }, - { - "word": "regard", - "freq": 2.29e-05 - }, - { - "word": "salary", - "freq": 2.29e-05 - }, - { - "word": "script", - "freq": 2.29e-05 - }, - { - "word": "walter", - "freq": 2.29e-05 - }, - { - "word": "writes", - "freq": 2.29e-05 - }, - { - "word": "breast", - "freq": 2.24e-05 - }, - { - "word": "carter", - "freq": 2.24e-05 - }, - { - "word": "cotton", - "freq": 2.24e-05 - }, - { - "word": "expand", - "freq": 2.24e-05 - }, - { - "word": "heroes", - "freq": 2.24e-05 - }, - { - "word": "inches", - "freq": 2.24e-05 - }, - { - "word": "johnny", - "freq": 2.24e-05 - }, - { - "word": "luxury", - "freq": 2.24e-05 - }, - { - "word": "lyrics", - "freq": 2.24e-05 - }, - { - "word": "ranked", - "freq": 2.24e-05 - }, - { - "word": "tennis", - "freq": 2.24e-05 - }, - { - "word": "twelve", - "freq": 2.24e-05 - }, - { - "word": "virgin", - "freq": 2.24e-05 - }, - { - "word": "wishes", - "freq": 2.24e-05 - }, - { - "word": "extend", - "freq": 2.19e-05 - }, - { - "word": "occurs", - "freq": 2.19e-05 - }, - { - "word": "reader", - "freq": 2.19e-05 - }, - { - "word": "column", - "freq": 2.14e-05 - }, - { - "word": "commit", - "freq": 2.14e-05 - }, - { - "word": "ethnic", - "freq": 2.14e-05 - }, - { - "word": "foster", - "freq": 2.14e-05 - }, - { - "word": "fuckin", - "freq": 2.14e-05 - }, - { - "word": "genius", - "freq": 2.14e-05 - }, - { - "word": "priest", - "freq": 2.14e-05 - }, - { - "word": "proven", - "freq": 2.14e-05 - }, - { - "word": "reward", - "freq": 2.14e-05 - }, - { - "word": "wooden", - "freq": 2.14e-05 - }, - { - "word": "duties", - "freq": 2.09e-05 - }, - { - "word": "frozen", - "freq": 2.09e-05 - }, - { - "word": "hiding", - "freq": 2.09e-05 - }, - { - "word": "invest", - "freq": 2.09e-05 - }, - { - "word": "jacket", - "freq": 2.09e-05 - }, - { - "word": "justin", - "freq": 2.09e-05 - }, - { - "word": "manual", - "freq": 2.09e-05 - }, - { - "word": "purple", - "freq": 2.09e-05 - }, - { - "word": "tissue", - "freq": 2.09e-05 - }, - { - "word": "trends", - "freq": 2.09e-05 - }, - { - "word": "versus", - "freq": 2.09e-05 - }, - { - "word": "burned", - "freq": 2.04e-05 - }, - { - "word": "checks", - "freq": 2.04e-05 - }, - { - "word": "define", - "freq": 2.04e-05 - }, - { - "word": "domain", - "freq": 2.04e-05 - }, - { - "word": "edited", - "freq": 2.04e-05 - }, - { - "word": "favour", - "freq": 2.04e-05 - }, - { - "word": "packed", - "freq": 2.04e-05 - }, - { - "word": "praise", - "freq": 2.04e-05 - }, - { - "word": "rocket", - "freq": 2.04e-05 - }, - { - "word": "steady", - "freq": 2.04e-05 - }, - { - "word": "symbol", - "freq": 2.04e-05 - }, - { - "word": "toilet", - "freq": 2.04e-05 - }, - { - "word": "treaty", - "freq": 2.04e-05 - }, - { - "word": "triple", - "freq": 2.04e-05 - }, - { - "word": "viewed", - "freq": 2.04e-05 - }, - { - "word": "affair", - "freq": 2e-05 - }, - { - "word": "agenda", - "freq": 2e-05 - }, - { - "word": "deeper", - "freq": 2e-05 - }, - { - "word": "enable", - "freq": 2e-05 - }, - { - "word": "equity", - "freq": 2e-05 - }, - { - "word": "graham", - "freq": 2e-05 - }, - { - "word": "invite", - "freq": 2e-05 - }, - { - "word": "madrid", - "freq": 2e-05 - }, - { - "word": "oregon", - "freq": 2e-05 - }, - { - "word": "partly", - "freq": 2e-05 - }, - { - "word": "phrase", - "freq": 2e-05 - }, - { - "word": "racial", - "freq": 2e-05 - }, - { - "word": "regime", - "freq": 2e-05 - }, - { - "word": "shield", - "freq": 2e-05 - }, - { - "word": "summit", - "freq": 2e-05 - }, - { - "word": "throat", - "freq": 2e-05 - }, - { - "word": "visits", - "freq": 2e-05 - }, - { - "word": "wisdom", - "freq": 2e-05 - }, - { - "word": "funded", - "freq": 1.95e-05 - }, - { - "word": "polish", - "freq": 1.95e-05 - }, - { - "word": "ruling", - "freq": 1.95e-05 - }, - { - "word": "timing", - "freq": 1.95e-05 - }, - { - "word": "worthy", - "freq": 1.95e-05 - }, - { - "word": "bloody", - "freq": 1.91e-05 - }, - { - "word": "filter", - "freq": 1.91e-05 - }, - { - "word": "galaxy", - "freq": 1.91e-05 - }, - { - "word": "grades", - "freq": 1.91e-05 - }, - { - "word": "greece", - "freq": 1.91e-05 - }, - { - "word": "intent", - "freq": 1.91e-05 - }, - { - "word": "knight", - "freq": 1.91e-05 - }, - { - "word": "mature", - "freq": 1.91e-05 - }, - { - "word": "philip", - "freq": 1.91e-05 - }, - { - "word": "submit", - "freq": 1.91e-05 - }, - { - "word": "copper", - "freq": 1.86e-05 - }, - { - "word": "firing", - "freq": 1.86e-05 - }, - { - "word": "margin", - "freq": 1.86e-05 - }, - { - "word": "murray", - "freq": 1.86e-05 - }, - { - "word": "stroke", - "freq": 1.86e-05 - }, - { - "word": "topics", - "freq": 1.86e-05 - }, - { - "word": "vessel", - "freq": 1.86e-05 - }, - { - "word": "autumn", - "freq": 1.82e-05 - }, - { - "word": "backed", - "freq": 1.82e-05 - }, - { - "word": "cooper", - "freq": 1.82e-05 - }, - { - "word": "fiscal", - "freq": 1.82e-05 - }, - { - "word": "mutual", - "freq": 1.82e-05 - }, - { - "word": "pursue", - "freq": 1.82e-05 - }, - { - "word": "ruined", - "freq": 1.82e-05 - }, - { - "word": "terror", - "freq": 1.82e-05 - }, - { - "word": "waited", - "freq": 1.82e-05 - }, - { - "word": "warren", - "freq": 1.82e-05 - }, - { - "word": "errors", - "freq": 1.78e-05 - }, - { - "word": "garage", - "freq": 1.78e-05 - }, - { - "word": "hosted", - "freq": 1.78e-05 - }, - { - "word": "jumped", - "freq": 1.78e-05 - }, - { - "word": "loaded", - "freq": 1.78e-05 - }, - { - "word": "lonely", - "freq": 1.78e-05 - }, - { - "word": "oxygen", - "freq": 1.78e-05 - }, - { - "word": "pissed", - "freq": 1.78e-05 - }, - { - "word": "powder", - "freq": 1.78e-05 - }, - { - "word": "quotes", - "freq": 1.78e-05 - }, - { - "word": "racism", - "freq": 1.78e-05 - }, - { - "word": "refers", - "freq": 1.78e-05 - }, - { - "word": "sooner", - "freq": 1.78e-05 - }, - { - "word": "spider", - "freq": 1.78e-05 - }, - { - "word": "albert", - "freq": 1.74e-05 - }, - { - "word": "bullet", - "freq": 1.74e-05 - }, - { - "word": "divine", - "freq": 1.74e-05 - }, - { - "word": "emails", - "freq": 1.74e-05 - }, - { - "word": "export", - "freq": 1.74e-05 - }, - { - "word": "gather", - "freq": 1.74e-05 - }, - { - "word": "landed", - "freq": 1.74e-05 - }, - { - "word": "nelson", - "freq": 1.74e-05 - }, - { - "word": "oldest", - "freq": 1.74e-05 - }, - { - "word": "poland", - "freq": 1.74e-05 - }, - { - "word": "relate", - "freq": 1.74e-05 - }, - { - "word": "sacred", - "freq": 1.74e-05 - }, - { - "word": "steven", - "freq": 1.74e-05 - }, - { - "word": "tunnel", - "freq": 1.74e-05 - }, - { - "word": "worlds", - "freq": 1.7e-05 - }, - { - "word": "burden", - "freq": 1.7e-05 - }, - { - "word": "casual", - "freq": 1.7e-05 - }, - { - "word": "denver", - "freq": 1.7e-05 - }, - { - "word": "hiring", - "freq": 1.7e-05 - }, - { - "word": "laptop", - "freq": 1.7e-05 - }, - { - "word": "parker", - "freq": 1.7e-05 - }, - { - "word": "recipe", - "freq": 1.7e-05 - }, - { - "word": "rubber", - "freq": 1.7e-05 - }, - { - "word": "serial", - "freq": 1.7e-05 - }, - { - "word": "strict", - "freq": 1.7e-05 - }, - { - "word": "batman", - "freq": 1.66e-05 - }, - { - "word": "cruise", - "freq": 1.66e-05 - }, - { - "word": "delete", - "freq": 1.66e-05 - }, - { - "word": "oliver", - "freq": 1.66e-05 - }, - { - "word": "outfit", - "freq": 1.66e-05 - }, - { - "word": "permit", - "freq": 1.66e-05 - }, - { - "word": "safely", - "freq": 1.66e-05 - }, - { - "word": "slight", - "freq": 1.66e-05 - }, - { - "word": "backup", - "freq": 1.62e-05 - }, - { - "word": "beaten", - "freq": 1.62e-05 - }, - { - "word": "bitter", - "freq": 1.62e-05 - }, - { - "word": "clever", - "freq": 1.62e-05 - }, - { - "word": "clinic", - "freq": 1.62e-05 - }, - { - "word": "excess", - "freq": 1.62e-05 - }, - { - "word": "habits", - "freq": 1.62e-05 - }, - { - "word": "holder", - "freq": 1.62e-05 - }, - { - "word": "meters", - "freq": 1.62e-05 - }, - { - "word": "quoted", - "freq": 1.62e-05 - }, - { - "word": "rolled", - "freq": 1.62e-05 - }, - { - "word": "bronze", - "freq": 1.58e-05 - }, - { - "word": "caring", - "freq": 1.58e-05 - }, - { - "word": "depend", - "freq": 1.58e-05 - }, - { - "word": "eighth", - "freq": 1.58e-05 - }, - { - "word": "resist", - "freq": 1.58e-05 - }, - { - "word": "solely", - "freq": 1.58e-05 - }, - { - "word": "wright", - "freq": 1.58e-05 - }, - { - "word": "alaska", - "freq": 1.55e-05 - }, - { - "word": "beside", - "freq": 1.55e-05 - }, - { - "word": "census", - "freq": 1.55e-05 - }, - { - "word": "dealer", - "freq": 1.55e-05 - }, - { - "word": "deemed", - "freq": 1.55e-05 - }, - { - "word": "ethics", - "freq": 1.55e-05 - }, - { - "word": "poster", - "freq": 1.55e-05 - }, - { - "word": "samuel", - "freq": 1.55e-05 - }, - { - "word": "themes", - "freq": 1.55e-05 - }, - { - "word": "turner", - "freq": 1.55e-05 - }, - { - "word": "wasted", - "freq": 1.55e-05 - }, - { - "word": "cancel", - "freq": 1.51e-05 - }, - { - "word": "carpet", - "freq": 1.51e-05 - }, - { - "word": "cherry", - "freq": 1.51e-05 - }, - { - "word": "gospel", - "freq": 1.51e-05 - }, - { - "word": "patent", - "freq": 1.51e-05 - }, - { - "word": "runner", - "freq": 1.51e-05 - }, - { - "word": "stored", - "freq": 1.51e-05 - }, - { - "word": "victor", - "freq": 1.51e-05 - }, - { - "word": "warned", - "freq": 1.51e-05 - }, - { - "word": "watson", - "freq": 1.51e-05 - }, - { - "word": "barrel", - "freq": 1.48e-05 - }, - { - "word": "boxing", - "freq": 1.48e-05 - }, - { - "word": "cinema", - "freq": 1.48e-05 - }, - { - "word": "gentle", - "freq": 1.48e-05 - }, - { - "word": "layers", - "freq": 1.48e-05 - }, - { - "word": "metres", - "freq": 1.48e-05 - }, - { - "word": "notion", - "freq": 1.48e-05 - }, - { - "word": "trophy", - "freq": 1.48e-05 - }, - { - "word": "unfair", - "freq": 1.48e-05 - }, - { - "word": "bubble", - "freq": 1.45e-05 - }, - { - "word": "casino", - "freq": 1.45e-05 - }, - { - "word": "deadly", - "freq": 1.45e-05 - }, - { - "word": "hammer", - "freq": 1.45e-05 - }, - { - "word": "hitler", - "freq": 1.45e-05 - }, - { - "word": "laying", - "freq": 1.45e-05 - }, - { - "word": "marvel", - "freq": 1.45e-05 - }, - { - "word": "parade", - "freq": 1.45e-05 - }, - { - "word": "retain", - "freq": 1.45e-05 - }, - { - "word": "sheets", - "freq": 1.45e-05 - }, - { - "word": "cattle", - "freq": 1.41e-05 - }, - { - "word": "farmer", - "freq": 1.41e-05 - }, - { - "word": "finest", - "freq": 1.41e-05 - }, - { - "word": "harbor", - "freq": 1.41e-05 - }, - { - "word": "harvey", - "freq": 1.41e-05 - }, - { - "word": "inform", - "freq": 1.41e-05 - }, - { - "word": "jeremy", - "freq": 1.41e-05 - }, - { - "word": "minded", - "freq": 1.41e-05 - }, - { - "word": "morris", - "freq": 1.41e-05 - }, - { - "word": "norway", - "freq": 1.41e-05 - }, - { - "word": "rachel", - "freq": 1.41e-05 - }, - { - "word": "strain", - "freq": 1.41e-05 - }, - { - "word": "tackle", - "freq": 1.41e-05 - }, - { - "word": "traded", - "freq": 1.41e-05 - }, - { - "word": "tricks", - "freq": 1.41e-05 - }, - { - "word": "urgent", - "freq": 1.41e-05 - }, - { - "word": "wallet", - "freq": 1.41e-05 - }, - { - "word": "aboard", - "freq": 1.38e-05 - }, - { - "word": "accent", - "freq": 1.38e-05 - }, - { - "word": "dining", - "freq": 1.38e-05 - }, - { - "word": "immune", - "freq": 1.38e-05 - }, - { - "word": "norman", - "freq": 1.38e-05 - }, - { - "word": "patrol", - "freq": 1.38e-05 - }, - { - "word": "pepper", - "freq": 1.38e-05 - }, - { - "word": "scream", - "freq": 1.38e-05 - }, - { - "word": "stairs", - "freq": 1.38e-05 - }, - { - "word": "syrian", - "freq": 1.38e-05 - }, - { - "word": "tattoo", - "freq": 1.38e-05 - }, - { - "word": "trauma", - "freq": 1.38e-05 - }, - { - "word": "breach", - "freq": 1.35e-05 - }, - { - "word": "cheers", - "freq": 1.35e-05 - }, - { - "word": "closet", - "freq": 1.35e-05 - }, - { - "word": "dishes", - "freq": 1.35e-05 - }, - { - "word": "dozens", - "freq": 1.35e-05 - }, - { - "word": "fitted", - "freq": 1.35e-05 - }, - { - "word": "iconic", - "freq": 1.35e-05 - }, - { - "word": "lesser", - "freq": 1.35e-05 - }, - { - "word": "murphy", - "freq": 1.35e-05 - }, - { - "word": "nathan", - "freq": 1.35e-05 - }, - { - "word": "rookie", - "freq": 1.35e-05 - }, - { - "word": "stuart", - "freq": 1.35e-05 - }, - { - "word": "arabia", - "freq": 1.32e-05 - }, - { - "word": "banner", - "freq": 1.32e-05 - }, - { - "word": "colony", - "freq": 1.32e-05 - }, - { - "word": "divide", - "freq": 1.32e-05 - }, - { - "word": "easter", - "freq": 1.32e-05 - }, - { - "word": "eleven", - "freq": 1.32e-05 - }, - { - "word": "entity", - "freq": 1.32e-05 - }, - { - "word": "jungle", - "freq": 1.32e-05 - }, - { - "word": "linear", - "freq": 1.32e-05 - }, - { - "word": "resume", - "freq": 1.32e-05 - }, - { - "word": "sealed", - "freq": 1.32e-05 - }, - { - "word": "ashley", - "freq": 1.29e-05 - }, - { - "word": "cooked", - "freq": 1.29e-05 - }, - { - "word": "dental", - "freq": 1.29e-05 - }, - { - "word": "freeze", - "freq": 1.29e-05 - }, - { - "word": "humble", - "freq": 1.29e-05 - }, - { - "word": "hybrid", - "freq": 1.29e-05 - }, - { - "word": "mixing", - "freq": 1.29e-05 - }, - { - "word": "openly", - "freq": 1.29e-05 - }, - { - "word": "parish", - "freq": 1.29e-05 - }, - { - "word": "potato", - "freq": 1.29e-05 - }, - { - "word": "potter", - "freq": 1.29e-05 - }, - { - "word": "throne", - "freq": 1.29e-05 - }, - { - "word": "warner", - "freq": 1.29e-05 - }, - { - "word": "brutal", - "freq": 1.26e-05 - }, - { - "word": "dennis", - "freq": 1.26e-05 - }, - { - "word": "facial", - "freq": 1.26e-05 - }, - { - "word": "hunger", - "freq": 1.26e-05 - }, - { - "word": "import", - "freq": 1.26e-05 - }, - { - "word": "lifted", - "freq": 1.26e-05 - }, - { - "word": "mighty", - "freq": 1.26e-05 - }, - { - "word": "poorly", - "freq": 1.26e-05 - }, - { - "word": "purely", - "freq": 1.26e-05 - }, - { - "word": "rental", - "freq": 1.26e-05 - }, - { - "word": "titled", - "freq": 1.26e-05 - }, - { - "word": "washed", - "freq": 1.26e-05 - }, - { - "word": "advise", - "freq": 1.23e-05 - }, - { - "word": "dakota", - "freq": 1.23e-05 - }, - { - "word": "fixing", - "freq": 1.23e-05 - }, - { - "word": "heated", - "freq": 1.23e-05 - }, - { - "word": "indoor", - "freq": 1.23e-05 - }, - { - "word": "intend", - "freq": 1.23e-05 - }, - { - "word": "lasted", - "freq": 1.23e-05 - }, - { - "word": "marcus", - "freq": 1.23e-05 - }, - { - "word": "roster", - "freq": 1.23e-05 - }, - { - "word": "statue", - "freq": 1.23e-05 - }, - { - "word": "tender", - "freq": 1.23e-05 - }, - { - "word": "vacuum", - "freq": 1.23e-05 - }, - { - "word": "agrees", - "freq": 1.2e-05 - }, - { - "word": "butler", - "freq": 1.2e-05 - }, - { - "word": "dublin", - "freq": 1.2e-05 - }, - { - "word": "essays", - "freq": 1.2e-05 - }, - { - "word": "fabric", - "freq": 1.2e-05 - }, - { - "word": "gently", - "freq": 1.2e-05 - }, - { - "word": "hughes", - "freq": 1.2e-05 - }, - { - "word": "laughs", - "freq": 1.2e-05 - }, - { - "word": "layout", - "freq": 1.2e-05 - }, - { - "word": "pastor", - "freq": 1.2e-05 - }, - { - "word": "poison", - "freq": 1.2e-05 - }, - { - "word": "prints", - "freq": 1.2e-05 - }, - { - "word": "solved", - "freq": 1.2e-05 - }, - { - "word": "subtle", - "freq": 1.2e-05 - }, - { - "word": "tastes", - "freq": 1.2e-05 - }, - { - "word": "throws", - "freq": 1.2e-05 - }, - { - "word": "tragic", - "freq": 1.2e-05 - }, - { - "word": "adjust", - "freq": 1.17e-05 - }, - { - "word": "allied", - "freq": 1.17e-05 - }, - { - "word": "assess", - "freq": 1.17e-05 - }, - { - "word": "basket", - "freq": 1.17e-05 - }, - { - "word": "bucket", - "freq": 1.17e-05 - }, - { - "word": "burger", - "freq": 1.17e-05 - }, - { - "word": "cookie", - "freq": 1.17e-05 - }, - { - "word": "freely", - "freq": 1.17e-05 - }, - { - "word": "matrix", - "freq": 1.17e-05 - }, - { - "word": "monkey", - "freq": 1.17e-05 - }, - { - "word": "nicely", - "freq": 1.17e-05 - }, - { - "word": "valued", - "freq": 1.17e-05 - }, - { - "word": "wounds", - "freq": 1.17e-05 - }, - { - "word": "assure", - "freq": 1.15e-05 - }, - { - "word": "bailey", - "freq": 1.15e-05 - }, - { - "word": "ballot", - "freq": 1.15e-05 - }, - { - "word": "filmed", - "freq": 1.15e-05 - }, - { - "word": "guided", - "freq": 1.15e-05 - }, - { - "word": "guinea", - "freq": 1.15e-05 - }, - { - "word": "holmes", - "freq": 1.15e-05 - }, - { - "word": "proves", - "freq": 1.15e-05 - }, - { - "word": "ripped", - "freq": 1.15e-05 - }, - { - "word": "sierra", - "freq": 1.15e-05 - }, - { - "word": "streak", - "freq": 1.15e-05 - }, - { - "word": "treats", - "freq": 1.15e-05 - }, - { - "word": "states", - "freq": 1.12e-05 - }, - { - "word": "booked", - "freq": 1.12e-05 - }, - { - "word": "clarke", - "freq": 1.12e-05 - }, - { - "word": "detect", - "freq": 1.12e-05 - }, - { - "word": "diesel", - "freq": 1.12e-05 - }, - { - "word": "filing", - "freq": 1.12e-05 - }, - { - "word": "hannah", - "freq": 1.12e-05 - }, - { - "word": "hatred", - "freq": 1.12e-05 - }, - { - "word": "median", - "freq": 1.12e-05 - }, - { - "word": "rabbit", - "freq": 1.12e-05 - }, - { - "word": "raises", - "freq": 1.12e-05 - }, - { - "word": "ranges", - "freq": 1.12e-05 - }, - { - "word": "retire", - "freq": 1.12e-05 - }, - { - "word": "rhythm", - "freq": 1.12e-05 - }, - { - "word": "savage", - "freq": 1.12e-05 - }, - { - "word": "stance", - "freq": 1.12e-05 - }, - { - "word": "static", - "freq": 1.12e-05 - }, - { - "word": "subway", - "freq": 1.12e-05 - }, - { - "word": "tablet", - "freq": 1.12e-05 - }, - { - "word": "thesis", - "freq": 1.12e-05 - }, - { - "word": "argues", - "freq": 1.1e-05 - }, - { - "word": "blonde", - "freq": 1.1e-05 - }, - { - "word": "collar", - "freq": 1.1e-05 - }, - { - "word": "comply", - "freq": 1.1e-05 - }, - { - "word": "creepy", - "freq": 1.1e-05 - }, - { - "word": "donate", - "freq": 1.1e-05 - }, - { - "word": "finale", - "freq": 1.1e-05 - }, - { - "word": "flavor", - "freq": 1.1e-05 - }, - { - "word": "gloves", - "freq": 1.1e-05 - }, - { - "word": "harper", - "freq": 1.1e-05 - }, - { - "word": "joking", - "freq": 1.1e-05 - }, - { - "word": "lineup", - "freq": 1.1e-05 - }, - { - "word": "nevada", - "freq": 1.1e-05 - }, - { - "word": "newest", - "freq": 1.1e-05 - }, - { - "word": "puerto", - "freq": 1.1e-05 - }, - { - "word": "shitty", - "freq": 1.1e-05 - }, - { - "word": "sketch", - "freq": 1.1e-05 - }, - { - "word": "smells", - "freq": 1.1e-05 - }, - { - "word": "sunset", - "freq": 1.1e-05 - }, - { - "word": "taiwan", - "freq": 1.1e-05 - }, - { - "word": "arabic", - "freq": 1.07e-05 - }, - { - "word": "arctic", - "freq": 1.07e-05 - }, - { - "word": "chapel", - "freq": 1.07e-05 - }, - { - "word": "differ", - "freq": 1.07e-05 - }, - { - "word": "flames", - "freq": 1.07e-05 - }, - { - "word": "harold", - "freq": 1.07e-05 - }, - { - "word": "hudson", - "freq": 1.07e-05 - }, - { - "word": "insist", - "freq": 1.07e-05 - }, - { - "word": "kidney", - "freq": 1.07e-05 - }, - { - "word": "ladder", - "freq": 1.07e-05 - }, - { - "word": "modest", - "freq": 1.07e-05 - }, - { - "word": "reject", - "freq": 1.07e-05 - }, - { - "word": "seized", - "freq": 1.07e-05 - }, - { - "word": "suited", - "freq": 1.07e-05 - }, - { - "word": "tribal", - "freq": 1.07e-05 - }, - { - "word": "varied", - "freq": 1.07e-05 - }, - { - "word": "anchor", - "freq": 1.05e-05 - }, - { - "word": "angela", - "freq": 1.05e-05 - }, - { - "word": "bounce", - "freq": 1.05e-05 - }, - { - "word": "cannon", - "freq": 1.05e-05 - }, - { - "word": "diving", - "freq": 1.05e-05 - }, - { - "word": "duncan", - "freq": 1.05e-05 - }, - { - "word": "fisher", - "freq": 1.05e-05 - }, - { - "word": "fridge", - "freq": 1.05e-05 - }, - { - "word": "fusion", - "freq": 1.05e-05 - }, - { - "word": "helmet", - "freq": 1.05e-05 - }, - { - "word": "keeper", - "freq": 1.05e-05 - }, - { - "word": "namely", - "freq": 1.05e-05 - } - ], - "7": [ - { - "word": "because", - "freq": 0.00107 - }, - { - "word": "through", - "freq": 0.000741 - }, - { - "word": "between", - "freq": 0.000589 - }, - { - "word": "another", - "freq": 0.00055 - }, - { - "word": "without", - "freq": 0.00049 - }, - { - "word": "against", - "freq": 0.000479 - }, - { - "word": "someone", - "freq": 0.000427 - }, - { - "word": "company", - "freq": 0.000398 - }, - { - "word": "thought", - "freq": 0.000389 - }, - { - "word": "however", - "freq": 0.00038 - }, - { - "word": "getting", - "freq": 0.000372 - }, - { - "word": "looking", - "freq": 0.000372 - }, - { - "word": "already", - "freq": 0.000355 - }, - { - "word": "nothing", - "freq": 0.000355 - }, - { - "word": "support", - "freq": 0.000339 - }, - { - "word": "believe", - "freq": 0.000324 - }, - { - "word": "service", - "freq": 0.000309 - }, - { - "word": "country", - "freq": 0.000302 - }, - { - "word": "general", - "freq": 0.000295 - }, - { - "word": "working", - "freq": 0.000282 - }, - { - "word": "control", - "freq": 0.000251 - }, - { - "word": "problem", - "freq": 0.000251 - }, - { - "word": "history", - "freq": 0.000245 - }, - { - "word": "several", - "freq": 0.000245 - }, - { - "word": "started", - "freq": 0.000245 - }, - { - "word": "playing", - "freq": 0.000234 - }, - { - "word": "special", - "freq": 0.000219 - }, - { - "word": "fucking", - "freq": 0.000214 - }, - { - "word": "million", - "freq": 0.000214 - }, - { - "word": "morning", - "freq": 0.000214 - }, - { - "word": "whether", - "freq": 0.000209 - }, - { - "word": "further", - "freq": 0.000204 - }, - { - "word": "talking", - "freq": 0.000195 - }, - { - "word": "college", - "freq": 0.000186 - }, - { - "word": "current", - "freq": 0.000186 - }, - { - "word": "example", - "freq": 0.000186 - }, - { - "word": "program", - "freq": 0.000186 - }, - { - "word": "process", - "freq": 0.000182 - }, - { - "word": "himself", - "freq": 0.000178 - }, - { - "word": "outside", - "freq": 0.000178 - }, - { - "word": "instead", - "freq": 0.000174 - }, - { - "word": "results", - "freq": 0.00017 - }, - { - "word": "running", - "freq": 0.00017 - }, - { - "word": "america", - "freq": 0.000166 - }, - { - "word": "project", - "freq": 0.000166 - }, - { - "word": "account", - "freq": 0.000162 - }, - { - "word": "include", - "freq": 0.000162 - }, - { - "word": "similar", - "freq": 0.000162 - }, - { - "word": "perfect", - "freq": 0.000158 - }, - { - "word": "english", - "freq": 0.000155 - }, - { - "word": "private", - "freq": 0.000155 - }, - { - "word": "british", - "freq": 0.000151 - }, - { - "word": "present", - "freq": 0.000151 - }, - { - "word": "finally", - "freq": 0.000148 - }, - { - "word": "society", - "freq": 0.000148 - }, - { - "word": "average", - "freq": 0.000145 - }, - { - "word": "brought", - "freq": 0.000145 - }, - { - "word": "certain", - "freq": 0.000145 - }, - { - "word": "medical", - "freq": 0.000145 - }, - { - "word": "exactly", - "freq": 0.000141 - }, - { - "word": "meeting", - "freq": 0.000141 - }, - { - "word": "provide", - "freq": 0.000141 - }, - { - "word": "usually", - "freq": 0.000141 - }, - { - "word": "reading", - "freq": 0.000138 - }, - { - "word": "federal", - "freq": 0.000135 - }, - { - "word": "feeling", - "freq": 0.000135 - }, - { - "word": "picture", - "freq": 0.000135 - }, - { - "word": "central", - "freq": 0.000132 - }, - { - "word": "england", - "freq": 0.000132 - }, - { - "word": "forward", - "freq": 0.000132 - }, - { - "word": "science", - "freq": 0.000132 - }, - { - "word": "various", - "freq": 0.000132 - }, - { - "word": "brother", - "freq": 0.000129 - }, - { - "word": "natural", - "freq": 0.000129 - }, - { - "word": "october", - "freq": 0.000129 - }, - { - "word": "quality", - "freq": 0.000129 - }, - { - "word": "amazing", - "freq": 0.000126 - }, - { - "word": "related", - "freq": 0.000126 - }, - { - "word": "serious", - "freq": 0.000126 - }, - { - "word": "article", - "freq": 0.000123 - }, - { - "word": "decided", - "freq": 0.000123 - }, - { - "word": "january", - "freq": 0.000123 - }, - { - "word": "perhaps", - "freq": 0.000123 - }, - { - "word": "release", - "freq": 0.000123 - }, - { - "word": "website", - "freq": 0.000123 - }, - { - "word": "written", - "freq": 0.000123 - }, - { - "word": "council", - "freq": 0.00012 - }, - { - "word": "foreign", - "freq": 0.00012 - }, - { - "word": "michael", - "freq": 0.00012 - }, - { - "word": "changed", - "freq": 0.000117 - }, - { - "word": "popular", - "freq": 0.000117 - }, - { - "word": "version", - "freq": 0.000117 - }, - { - "word": "writing", - "freq": 0.000117 - }, - { - "word": "success", - "freq": 0.000115 - }, - { - "word": "towards", - "freq": 0.000115 - }, - { - "word": "waiting", - "freq": 0.000115 - }, - { - "word": "created", - "freq": 0.000112 - }, - { - "word": "missing", - "freq": 0.000112 - }, - { - "word": "percent", - "freq": 0.00011 - }, - { - "word": "allowed", - "freq": 0.000107 - }, - { - "word": "culture", - "freq": 0.000107 - }, - { - "word": "married", - "freq": 0.000107 - }, - { - "word": "officer", - "freq": 0.000107 - }, - { - "word": "respect", - "freq": 0.000107 - }, - { - "word": "tonight", - "freq": 0.000107 - }, - { - "word": "century", - "freq": 0.000105 - }, - { - "word": "limited", - "freq": 0.000105 - }, - { - "word": "network", - "freq": 0.000105 - }, - { - "word": "student", - "freq": 0.000105 - }, - { - "word": "capital", - "freq": 0.000102 - }, - { - "word": "chinese", - "freq": 0.000102 - }, - { - "word": "russian", - "freq": 0.000102 - }, - { - "word": "station", - "freq": 0.000102 - }, - { - "word": "western", - "freq": 0.000102 - }, - { - "word": "content", - "freq": 0.0001 - }, - { - "word": "despite", - "freq": 0.0001 - }, - { - "word": "husband", - "freq": 0.0001 - }, - { - "word": "leading", - "freq": 0.0001 - }, - { - "word": "message", - "freq": 0.0001 - }, - { - "word": "quickly", - "freq": 0.0001 - }, - { - "word": "section", - "freq": 0.0001 - }, - { - "word": "contact", - "freq": 9.77e-05 - }, - { - "word": "welcome", - "freq": 9.77e-05 - }, - { - "word": "earlier", - "freq": 9.55e-05 - }, - { - "word": "leaving", - "freq": 9.55e-05 - }, - { - "word": "studies", - "freq": 9.55e-05 - }, - { - "word": "winning", - "freq": 9.55e-05 - }, - { - "word": "episode", - "freq": 9.33e-05 - }, - { - "word": "justice", - "freq": 9.33e-05 - }, - { - "word": "manager", - "freq": 9.33e-05 - }, - { - "word": "ability", - "freq": 9.12e-05 - }, - { - "word": "calling", - "freq": 9.12e-05 - }, - { - "word": "happens", - "freq": 9.12e-05 - }, - { - "word": "subject", - "freq": 9.12e-05 - }, - { - "word": "product", - "freq": 8.91e-05 - }, - { - "word": "regular", - "freq": 8.91e-05 - }, - { - "word": "stories", - "freq": 8.91e-05 - }, - { - "word": "anymore", - "freq": 8.71e-05 - }, - { - "word": "growing", - "freq": 8.71e-05 - }, - { - "word": "opening", - "freq": 8.71e-05 - }, - { - "word": "opinion", - "freq": 8.71e-05 - }, - { - "word": "biggest", - "freq": 8.51e-05 - }, - { - "word": "defense", - "freq": 8.51e-05 - }, - { - "word": "weekend", - "freq": 8.51e-05 - }, - { - "word": "awesome", - "freq": 8.32e-05 - }, - { - "word": "clearly", - "freq": 8.32e-05 - }, - { - "word": "imagine", - "freq": 8.32e-05 - }, - { - "word": "protect", - "freq": 8.32e-05 - }, - { - "word": "telling", - "freq": 8.32e-05 - }, - { - "word": "address", - "freq": 8.13e-05 - }, - { - "word": "details", - "freq": 8.13e-05 - }, - { - "word": "disease", - "freq": 7.94e-05 - }, - { - "word": "driving", - "freq": 7.94e-05 - }, - { - "word": "germany", - "freq": 7.94e-05 - }, - { - "word": "greater", - "freq": 7.94e-05 - }, - { - "word": "largest", - "freq": 7.94e-05 - }, - { - "word": "machine", - "freq": 7.94e-05 - }, - { - "word": "overall", - "freq": 7.94e-05 - }, - { - "word": "captain", - "freq": 7.76e-05 - }, - { - "word": "explain", - "freq": 7.76e-05 - }, - { - "word": "holding", - "freq": 7.76e-05 - }, - { - "word": "parties", - "freq": 7.76e-05 - }, - { - "word": "reality", - "freq": 7.76e-05 - }, - { - "word": "comment", - "freq": 7.59e-05 - }, - { - "word": "killing", - "freq": 7.59e-05 - }, - { - "word": "primary", - "freq": 7.59e-05 - }, - { - "word": "purpose", - "freq": 7.59e-05 - }, - { - "word": "showing", - "freq": 7.59e-05 - }, - { - "word": "teacher", - "freq": 7.59e-05 - }, - { - "word": "william", - "freq": 7.59e-05 - }, - { - "word": "economy", - "freq": 7.41e-05 - }, - { - "word": "meaning", - "freq": 7.41e-05 - }, - { - "word": "mission", - "freq": 7.41e-05 - }, - { - "word": "weather", - "freq": 7.41e-05 - }, - { - "word": "complex", - "freq": 7.24e-05 - }, - { - "word": "evening", - "freq": 7.24e-05 - }, - { - "word": "freedom", - "freq": 7.24e-05 - }, - { - "word": "highest", - "freq": 7.24e-05 - }, - { - "word": "library", - "freq": 7.24e-05 - }, - { - "word": "located", - "freq": 7.24e-05 - }, - { - "word": "offered", - "freq": 7.24e-05 - }, - { - "word": "putting", - "freq": 7.24e-05 - }, - { - "word": "sitting", - "freq": 7.24e-05 - }, - { - "word": "walking", - "freq": 7.24e-05 - }, - { - "word": "attempt", - "freq": 7.08e-05 - }, - { - "word": "channel", - "freq": 7.08e-05 - }, - { - "word": "finding", - "freq": 7.08e-05 - }, - { - "word": "learned", - "freq": 7.08e-05 - }, - { - "word": "reached", - "freq": 7.08e-05 - }, - { - "word": "receive", - "freq": 7.08e-05 - }, - { - "word": "species", - "freq": 7.08e-05 - }, - { - "word": "traffic", - "freq": 7.08e-05 - }, - { - "word": "wearing", - "freq": 7.08e-05 - }, - { - "word": "airport", - "freq": 6.92e-05 - }, - { - "word": "appears", - "freq": 6.92e-05 - }, - { - "word": "keeping", - "freq": 6.92e-05 - }, - { - "word": "partner", - "freq": 6.92e-05 - }, - { - "word": "stopped", - "freq": 6.92e-05 - }, - { - "word": "becomes", - "freq": 6.76e-05 - }, - { - "word": "chicago", - "freq": 6.76e-05 - }, - { - "word": "covered", - "freq": 6.76e-05 - }, - { - "word": "digital", - "freq": 6.76e-05 - }, - { - "word": "realize", - "freq": 6.76e-05 - }, - { - "word": "surface", - "freq": 6.76e-05 - }, - { - "word": "totally", - "freq": 6.76e-05 - }, - { - "word": "twitter", - "freq": 6.76e-05 - }, - { - "word": "wedding", - "freq": 6.76e-05 - }, - { - "word": "african", - "freq": 6.61e-05 - }, - { - "word": "benefit", - "freq": 6.61e-05 - }, - { - "word": "fashion", - "freq": 6.61e-05 - }, - { - "word": "feature", - "freq": 6.61e-05 - }, - { - "word": "hearing", - "freq": 6.61e-05 - }, - { - "word": "profile", - "freq": 6.61e-05 - }, - { - "word": "village", - "freq": 6.61e-05 - }, - { - "word": "follows", - "freq": 6.46e-05 - }, - { - "word": "selling", - "freq": 6.46e-05 - }, - { - "word": "edition", - "freq": 6.31e-05 - }, - { - "word": "healthy", - "freq": 6.31e-05 - }, - { - "word": "remains", - "freq": 6.31e-05 - }, - { - "word": "smaller", - "freq": 6.31e-05 - }, - { - "word": "arrived", - "freq": 6.17e-05 - }, - { - "word": "correct", - "freq": 6.17e-05 - }, - { - "word": "improve", - "freq": 6.17e-05 - }, - { - "word": "prevent", - "freq": 6.17e-05 - }, - { - "word": "removed", - "freq": 6.17e-05 - }, - { - "word": "richard", - "freq": 6.17e-05 - }, - { - "word": "trouble", - "freq": 6.17e-05 - }, - { - "word": "eastern", - "freq": 6.03e-05 - }, - { - "word": "helping", - "freq": 6.03e-05 - }, - { - "word": "herself", - "freq": 6.03e-05 - }, - { - "word": "produce", - "freq": 6.03e-05 - }, - { - "word": "require", - "freq": 6.03e-05 - }, - { - "word": "carried", - "freq": 5.89e-05 - }, - { - "word": "charles", - "freq": 5.89e-05 - }, - { - "word": "classes", - "freq": 5.89e-05 - }, - { - "word": "concept", - "freq": 5.89e-05 - }, - { - "word": "efforts", - "freq": 5.89e-05 - }, - { - "word": "housing", - "freq": 5.89e-05 - }, - { - "word": "journal", - "freq": 5.89e-05 - }, - { - "word": "neither", - "freq": 5.89e-05 - }, - { - "word": "patient", - "freq": 5.89e-05 - }, - { - "word": "setting", - "freq": 5.89e-05 - }, - { - "word": "balance", - "freq": 5.75e-05 - }, - { - "word": "florida", - "freq": 5.75e-05 - }, - { - "word": "knowing", - "freq": 5.75e-05 - }, - { - "word": "managed", - "freq": 5.75e-05 - }, - { - "word": "request", - "freq": 5.75e-05 - }, - { - "word": "vehicle", - "freq": 5.75e-05 - }, - { - "word": "billion", - "freq": 5.62e-05 - }, - { - "word": "develop", - "freq": 5.62e-05 - }, - { - "word": "suggest", - "freq": 5.62e-05 - }, - { - "word": "variety", - "freq": 5.62e-05 - }, - { - "word": "excited", - "freq": 5.5e-05 - }, - { - "word": "forever", - "freq": 5.5e-05 - }, - { - "word": "ordered", - "freq": 5.5e-05 - }, - { - "word": "angeles", - "freq": 5.37e-05 - }, - { - "word": "dropped", - "freq": 5.37e-05 - }, - { - "word": "mention", - "freq": 5.37e-05 - }, - { - "word": "nuclear", - "freq": 5.37e-05 - }, - { - "word": "spanish", - "freq": 5.37e-05 - }, - { - "word": "victory", - "freq": 5.37e-05 - }, - { - "word": "britain", - "freq": 5.25e-05 - }, - { - "word": "classic", - "freq": 5.25e-05 - }, - { - "word": "clothes", - "freq": 5.25e-05 - }, - { - "word": "entered", - "freq": 5.25e-05 - }, - { - "word": "failure", - "freq": 5.25e-05 - }, - { - "word": "initial", - "freq": 5.25e-05 - }, - { - "word": "johnson", - "freq": 5.25e-05 - }, - { - "word": "massive", - "freq": 5.25e-05 - }, - { - "word": "quarter", - "freq": 5.25e-05 - }, - { - "word": "session", - "freq": 5.25e-05 - }, - { - "word": "watched", - "freq": 5.25e-05 - }, - { - "word": "willing", - "freq": 5.25e-05 - }, - { - "word": "climate", - "freq": 5.13e-05 - }, - { - "word": "hundred", - "freq": 5.13e-05 - }, - { - "word": "options", - "freq": 5.13e-05 - }, - { - "word": "promise", - "freq": 5.13e-05 - }, - { - "word": "treated", - "freq": 5.13e-05 - }, - { - "word": "turning", - "freq": 5.13e-05 - }, - { - "word": "command", - "freq": 5.01e-05 - }, - { - "word": "minimum", - "freq": 4.9e-05 - }, - { - "word": "planned", - "freq": 4.9e-05 - }, - { - "word": "supreme", - "freq": 4.9e-05 - }, - { - "word": "younger", - "freq": 4.9e-05 - }, - { - "word": "ancient", - "freq": 4.79e-05 - }, - { - "word": "charges", - "freq": 4.79e-05 - }, - { - "word": "express", - "freq": 4.79e-05 - }, - { - "word": "illegal", - "freq": 4.79e-05 - }, - { - "word": "methods", - "freq": 4.79e-05 - }, - { - "word": "affairs", - "freq": 4.68e-05 - }, - { - "word": "applied", - "freq": 4.68e-05 - }, - { - "word": "mistake", - "freq": 4.68e-05 - }, - { - "word": "testing", - "freq": 4.68e-05 - }, - { - "word": "concern", - "freq": 4.57e-05 - }, - { - "word": "discuss", - "freq": 4.57e-05 - }, - { - "word": "falling", - "freq": 4.57e-05 - }, - { - "word": "holiday", - "freq": 4.57e-05 - }, - { - "word": "ireland", - "freq": 4.57e-05 - }, - { - "word": "italian", - "freq": 4.57e-05 - }, - { - "word": "liberal", - "freq": 4.57e-05 - }, - { - "word": "payment", - "freq": 4.57e-05 - }, - { - "word": "perform", - "freq": 4.57e-05 - }, - { - "word": "sharing", - "freq": 4.57e-05 - }, - { - "word": "youtube", - "freq": 4.57e-05 - }, - { - "word": "advance", - "freq": 4.47e-05 - }, - { - "word": "chapter", - "freq": 4.47e-05 - }, - { - "word": "finance", - "freq": 4.47e-05 - }, - { - "word": "focused", - "freq": 4.47e-05 - }, - { - "word": "journey", - "freq": 4.47e-05 - }, - { - "word": "kitchen", - "freq": 4.47e-05 - }, - { - "word": "measure", - "freq": 4.47e-05 - }, - { - "word": "claimed", - "freq": 4.37e-05 - }, - { - "word": "reduced", - "freq": 4.37e-05 - }, - { - "word": "revenue", - "freq": 4.37e-05 - }, - { - "word": "strange", - "freq": 4.37e-05 - }, - { - "word": "besides", - "freq": 4.27e-05 - }, - { - "word": "chicken", - "freq": 4.27e-05 - }, - { - "word": "context", - "freq": 4.27e-05 - }, - { - "word": "display", - "freq": 4.27e-05 - }, - { - "word": "elected", - "freq": 4.27e-05 - }, - { - "word": "funding", - "freq": 4.27e-05 - }, - { - "word": "noticed", - "freq": 4.27e-05 - }, - { - "word": "obvious", - "freq": 4.27e-05 - }, - { - "word": "passing", - "freq": 4.27e-05 - }, - { - "word": "stadium", - "freq": 4.27e-05 - }, - { - "word": "surgery", - "freq": 4.27e-05 - }, - { - "word": "trading", - "freq": 4.27e-05 - }, - { - "word": "tuesday", - "freq": 4.27e-05 - }, - { - "word": "worried", - "freq": 4.27e-05 - }, - { - "word": "charged", - "freq": 4.17e-05 - }, - { - "word": "kingdom", - "freq": 4.17e-05 - }, - { - "word": "serving", - "freq": 4.17e-05 - }, - { - "word": "suicide", - "freq": 4.17e-05 - }, - { - "word": "alcohol", - "freq": 4.07e-05 - }, - { - "word": "capable", - "freq": 4.07e-05 - }, - { - "word": "cutting", - "freq": 4.07e-05 - }, - { - "word": "granted", - "freq": 4.07e-05 - }, - { - "word": "largely", - "freq": 4.07e-05 - }, - { - "word": "sending", - "freq": 4.07e-05 - }, - { - "word": "dealing", - "freq": 3.98e-05 - }, - { - "word": "extreme", - "freq": 3.98e-05 - }, - { - "word": "maximum", - "freq": 3.98e-05 - }, - { - "word": "reserve", - "freq": 3.98e-05 - }, - { - "word": "returns", - "freq": 3.98e-05 - }, - { - "word": "tickets", - "freq": 3.98e-05 - }, - { - "word": "careful", - "freq": 3.89e-05 - }, - { - "word": "deserve", - "freq": 3.89e-05 - }, - { - "word": "enjoyed", - "freq": 3.89e-05 - }, - { - "word": "matches", - "freq": 3.89e-05 - }, - { - "word": "pacific", - "freq": 3.89e-05 - }, - { - "word": "singing", - "freq": 3.89e-05 - }, - { - "word": "typical", - "freq": 3.89e-05 - }, - { - "word": "warning", - "freq": 3.89e-05 - }, - { - "word": "drawing", - "freq": 3.8e-05 - }, - { - "word": "jackson", - "freq": 3.8e-05 - }, - { - "word": "replace", - "freq": 3.8e-05 - }, - { - "word": "seeking", - "freq": 3.8e-05 - }, - { - "word": "senator", - "freq": 3.8e-05 - }, - { - "word": "trained", - "freq": 3.8e-05 - }, - { - "word": "academy", - "freq": 3.72e-05 - }, - { - "word": "achieve", - "freq": 3.72e-05 - }, - { - "word": "clinton", - "freq": 3.72e-05 - }, - { - "word": "storage", - "freq": 3.72e-05 - }, - { - "word": "anybody", - "freq": 3.63e-05 - }, - { - "word": "counter", - "freq": 3.63e-05 - }, - { - "word": "defined", - "freq": 3.63e-05 - }, - { - "word": "pattern", - "freq": 3.63e-05 - }, - { - "word": "premier", - "freq": 3.63e-05 - }, - { - "word": "promote", - "freq": 3.63e-05 - }, - { - "word": "suppose", - "freq": 3.63e-05 - }, - { - "word": "concert", - "freq": 3.55e-05 - }, - { - "word": "deliver", - "freq": 3.55e-05 - }, - { - "word": "factory", - "freq": 3.55e-05 - }, - { - "word": "prepare", - "freq": 3.55e-05 - }, - { - "word": "staying", - "freq": 3.55e-05 - }, - { - "word": "updated", - "freq": 3.55e-05 - }, - { - "word": "checked", - "freq": 3.47e-05 - }, - { - "word": "degrees", - "freq": 3.47e-05 - }, - { - "word": "heavily", - "freq": 3.47e-05 - }, - { - "word": "refused", - "freq": 3.47e-05 - }, - { - "word": "causing", - "freq": 3.39e-05 - }, - { - "word": "closely", - "freq": 3.39e-05 - }, - { - "word": "contest", - "freq": 3.39e-05 - }, - { - "word": "depends", - "freq": 3.39e-05 - }, - { - "word": "invited", - "freq": 3.39e-05 - }, - { - "word": "letting", - "freq": 3.39e-05 - }, - { - "word": "portion", - "freq": 3.39e-05 - }, - { - "word": "protein", - "freq": 3.39e-05 - }, - { - "word": "respond", - "freq": 3.39e-05 - }, - { - "word": "somehow", - "freq": 3.39e-05 - }, - { - "word": "unknown", - "freq": 3.39e-05 - }, - { - "word": "battery", - "freq": 3.31e-05 - }, - { - "word": "conduct", - "freq": 3.31e-05 - }, - { - "word": "destroy", - "freq": 3.31e-05 - }, - { - "word": "engaged", - "freq": 3.31e-05 - }, - { - "word": "fantasy", - "freq": 3.31e-05 - }, - { - "word": "license", - "freq": 3.31e-05 - }, - { - "word": "smoking", - "freq": 3.31e-05 - }, - { - "word": "survive", - "freq": 3.31e-05 - }, - { - "word": "theatre", - "freq": 3.31e-05 - }, - { - "word": "therapy", - "freq": 3.31e-05 - }, - { - "word": "witness", - "freq": 3.31e-05 - }, - { - "word": "adopted", - "freq": 3.24e-05 - }, - { - "word": "defence", - "freq": 3.24e-05 - }, - { - "word": "exposed", - "freq": 3.24e-05 - }, - { - "word": "injured", - "freq": 3.24e-05 - }, - { - "word": "musical", - "freq": 3.24e-05 - }, - { - "word": "opposed", - "freq": 3.24e-05 - }, - { - "word": "plastic", - "freq": 3.24e-05 - }, - { - "word": "suspect", - "freq": 3.24e-05 - }, - { - "word": "aspects", - "freq": 3.16e-05 - }, - { - "word": "burning", - "freq": 3.16e-05 - }, - { - "word": "contain", - "freq": 3.16e-05 - }, - { - "word": "dancing", - "freq": 3.16e-05 - }, - { - "word": "founded", - "freq": 3.16e-05 - }, - { - "word": "hanging", - "freq": 3.16e-05 - }, - { - "word": "monthly", - "freq": 3.16e-05 - }, - { - "word": "operate", - "freq": 3.16e-05 - }, - { - "word": "stephen", - "freq": 3.16e-05 - }, - { - "word": "visited", - "freq": 3.16e-05 - }, - { - "word": "zealand", - "freq": 3.16e-05 - }, - { - "word": "cabinet", - "freq": 3.09e-05 - }, - { - "word": "gallery", - "freq": 3.09e-05 - }, - { - "word": "highway", - "freq": 3.09e-05 - }, - { - "word": "monster", - "freq": 3.09e-05 - }, - { - "word": "olympic", - "freq": 3.09e-05 - }, - { - "word": "speaker", - "freq": 3.09e-05 - }, - { - "word": "studied", - "freq": 3.09e-05 - }, - { - "word": "toronto", - "freq": 3.09e-05 - }, - { - "word": "wanting", - "freq": 3.09e-05 - }, - { - "word": "heading", - "freq": 3.02e-05 - }, - { - "word": "chamber", - "freq": 2.95e-05 - }, - { - "word": "circuit", - "freq": 2.95e-05 - }, - { - "word": "divided", - "freq": 2.95e-05 - }, - { - "word": "fishing", - "freq": 2.95e-05 - }, - { - "word": "joining", - "freq": 2.95e-05 - }, - { - "word": "parking", - "freq": 2.95e-05 - }, - { - "word": "rolling", - "freq": 2.95e-05 - }, - { - "word": "shortly", - "freq": 2.95e-05 - }, - { - "word": "accused", - "freq": 2.88e-05 - }, - { - "word": "bedroom", - "freq": 2.88e-05 - }, - { - "word": "choices", - "freq": 2.88e-05 - }, - { - "word": "closing", - "freq": 2.88e-05 - }, - { - "word": "element", - "freq": 2.88e-05 - }, - { - "word": "founder", - "freq": 2.88e-05 - }, - { - "word": "georgia", - "freq": 2.88e-05 - }, - { - "word": "hitting", - "freq": 2.88e-05 - }, - { - "word": "package", - "freq": 2.88e-05 - }, - { - "word": "pointed", - "freq": 2.88e-05 - }, - { - "word": "poverty", - "freq": 2.88e-05 - }, - { - "word": "railway", - "freq": 2.88e-05 - }, - { - "word": "silence", - "freq": 2.88e-05 - }, - { - "word": "soldier", - "freq": 2.88e-05 - }, - { - "word": "violent", - "freq": 2.88e-05 - }, - { - "word": "actress", - "freq": 2.82e-05 - }, - { - "word": "anxiety", - "freq": 2.82e-05 - }, - { - "word": "charity", - "freq": 2.82e-05 - }, - { - "word": "compare", - "freq": 2.82e-05 - }, - { - "word": "cooking", - "freq": 2.82e-05 - }, - { - "word": "curious", - "freq": 2.82e-05 - }, - { - "word": "formula", - "freq": 2.82e-05 - }, - { - "word": "mystery", - "freq": 2.82e-05 - }, - { - "word": "penalty", - "freq": 2.82e-05 - }, - { - "word": "protest", - "freq": 2.82e-05 - }, - { - "word": "unusual", - "freq": 2.82e-05 - }, - { - "word": "arrival", - "freq": 2.75e-05 - }, - { - "word": "assault", - "freq": 2.75e-05 - }, - { - "word": "fiction", - "freq": 2.75e-05 - }, - { - "word": "islamic", - "freq": 2.75e-05 - }, - { - "word": "passion", - "freq": 2.75e-05 - }, - { - "word": "picking", - "freq": 2.75e-05 - }, - { - "word": "pleased", - "freq": 2.75e-05 - }, - { - "word": "pushing", - "freq": 2.75e-05 - }, - { - "word": "retired", - "freq": 2.75e-05 - }, - { - "word": "savings", - "freq": 2.75e-05 - }, - { - "word": "settled", - "freq": 2.75e-05 - }, - { - "word": "beating", - "freq": 2.69e-05 - }, - { - "word": "charlie", - "freq": 2.69e-05 - }, - { - "word": "helpful", - "freq": 2.69e-05 - }, - { - "word": "raising", - "freq": 2.69e-05 - }, - { - "word": "welfare", - "freq": 2.69e-05 - }, - { - "word": "alright", - "freq": 2.63e-05 - }, - { - "word": "android", - "freq": 2.63e-05 - }, - { - "word": "capture", - "freq": 2.63e-05 - }, - { - "word": "diamond", - "freq": 2.63e-05 - }, - { - "word": "dressed", - "freq": 2.63e-05 - }, - { - "word": "houston", - "freq": 2.63e-05 - }, - { - "word": "hunting", - "freq": 2.63e-05 - }, - { - "word": "nervous", - "freq": 2.63e-05 - }, - { - "word": "stomach", - "freq": 2.63e-05 - }, - { - "word": "whoever", - "freq": 2.63e-05 - }, - { - "word": "amounts", - "freq": 2.57e-05 - }, - { - "word": "anthony", - "freq": 2.57e-05 - }, - { - "word": "colonel", - "freq": 2.57e-05 - }, - { - "word": "comfort", - "freq": 2.57e-05 - }, - { - "word": "demands", - "freq": 2.57e-05 - }, - { - "word": "illness", - "freq": 2.57e-05 - }, - { - "word": "mexican", - "freq": 2.57e-05 - }, - { - "word": "whereas", - "freq": 2.57e-05 - }, - { - "word": "confirm", - "freq": 2.51e-05 - }, - { - "word": "crystal", - "freq": 2.51e-05 - }, - { - "word": "decline", - "freq": 2.51e-05 - }, - { - "word": "enemies", - "freq": 2.51e-05 - }, - { - "word": "israeli", - "freq": 2.51e-05 - }, - { - "word": "landing", - "freq": 2.51e-05 - }, - { - "word": "nowhere", - "freq": 2.51e-05 - }, - { - "word": "organic", - "freq": 2.51e-05 - }, - { - "word": "printed", - "freq": 2.51e-05 - }, - { - "word": "signing", - "freq": 2.51e-05 - }, - { - "word": "assumed", - "freq": 2.45e-05 - }, - { - "word": "citizen", - "freq": 2.45e-05 - }, - { - "word": "compete", - "freq": 2.45e-05 - }, - { - "word": "cricket", - "freq": 2.45e-05 - }, - { - "word": "damaged", - "freq": 2.45e-05 - }, - { - "word": "equally", - "freq": 2.45e-05 - }, - { - "word": "figured", - "freq": 2.45e-05 - }, - { - "word": "fitness", - "freq": 2.45e-05 - }, - { - "word": "francis", - "freq": 2.45e-05 - }, - { - "word": "intense", - "freq": 2.45e-05 - }, - { - "word": "physics", - "freq": 2.45e-05 - }, - { - "word": "posting", - "freq": 2.45e-05 - }, - { - "word": "reflect", - "freq": 2.45e-05 - }, - { - "word": "seattle", - "freq": 2.45e-05 - }, - { - "word": "visible", - "freq": 2.45e-05 - }, - { - "word": "arizona", - "freq": 2.4e-05 - }, - { - "word": "connect", - "freq": 2.4e-05 - }, - { - "word": "lessons", - "freq": 2.4e-05 - }, - { - "word": "alleged", - "freq": 2.34e-05 - }, - { - "word": "atlanta", - "freq": 2.34e-05 - }, - { - "word": "collect", - "freq": 2.34e-05 - }, - { - "word": "funeral", - "freq": 2.34e-05 - }, - { - "word": "genuine", - "freq": 2.34e-05 - }, - { - "word": "matthew", - "freq": 2.34e-05 - }, - { - "word": "monitor", - "freq": 2.34e-05 - }, - { - "word": "patrick", - "freq": 2.34e-05 - }, - { - "word": "reverse", - "freq": 2.34e-05 - }, - { - "word": "routine", - "freq": 2.34e-05 - }, - { - "word": "summary", - "freq": 2.34e-05 - }, - { - "word": "consent", - "freq": 2.29e-05 - }, - { - "word": "divorce", - "freq": 2.29e-05 - }, - { - "word": "privacy", - "freq": 2.29e-05 - }, - { - "word": "profits", - "freq": 2.29e-05 - }, - { - "word": "roughly", - "freq": 2.29e-05 - }, - { - "word": "scoring", - "freq": 2.29e-05 - }, - { - "word": "awarded", - "freq": 2.24e-05 - }, - { - "word": "banking", - "freq": 2.24e-05 - }, - { - "word": "chelsea", - "freq": 2.24e-05 - }, - { - "word": "crossed", - "freq": 2.24e-05 - }, - { - "word": "detroit", - "freq": 2.24e-05 - }, - { - "word": "leather", - "freq": 2.24e-05 - }, - { - "word": "outcome", - "freq": 2.24e-05 - }, - { - "word": "painted", - "freq": 2.24e-05 - }, - { - "word": "pulling", - "freq": 2.24e-05 - }, - { - "word": "removal", - "freq": 2.24e-05 - }, - { - "word": "stretch", - "freq": 2.24e-05 - }, - { - "word": "theater", - "freq": 2.24e-05 - }, - { - "word": "absence", - "freq": 2.19e-05 - }, - { - "word": "asshole", - "freq": 2.19e-05 - }, - { - "word": "genetic", - "freq": 2.19e-05 - }, - { - "word": "glasses", - "freq": 2.19e-05 - }, - { - "word": "instant", - "freq": 2.19e-05 - }, - { - "word": "liberty", - "freq": 2.19e-05 - }, - { - "word": "rapidly", - "freq": 2.19e-05 - }, - { - "word": "reveals", - "freq": 2.19e-05 - }, - { - "word": "density", - "freq": 2.14e-05 - }, - { - "word": "greatly", - "freq": 2.14e-05 - }, - { - "word": "nigeria", - "freq": 2.14e-05 - }, - { - "word": "premium", - "freq": 2.14e-05 - }, - { - "word": "pretend", - "freq": 2.14e-05 - }, - { - "word": "radical", - "freq": 2.14e-05 - }, - { - "word": "russell", - "freq": 2.14e-05 - }, - { - "word": "uniform", - "freq": 2.14e-05 - }, - { - "word": "mothers", - "freq": 2.09e-05 - }, - { - "word": "courage", - "freq": 2.09e-05 - }, - { - "word": "faculty", - "freq": 2.09e-05 - }, - { - "word": "fighter", - "freq": 2.09e-05 - }, - { - "word": "listing", - "freq": 2.09e-05 - }, - { - "word": "nursing", - "freq": 2.09e-05 - }, - { - "word": "ongoing", - "freq": 2.09e-05 - }, - { - "word": "painful", - "freq": 2.09e-05 - }, - { - "word": "romance", - "freq": 2.09e-05 - }, - { - "word": "trailer", - "freq": 2.09e-05 - }, - { - "word": "ukraine", - "freq": 2.09e-05 - }, - { - "word": "virtual", - "freq": 2.09e-05 - }, - { - "word": "wounded", - "freq": 2.09e-05 - }, - { - "word": "amongst", - "freq": 2.04e-05 - }, - { - "word": "arsenal", - "freq": 2.04e-05 - }, - { - "word": "blocked", - "freq": 2.04e-05 - }, - { - "word": "dynamic", - "freq": 2.04e-05 - }, - { - "word": "explore", - "freq": 2.04e-05 - }, - { - "word": "footage", - "freq": 2.04e-05 - }, - { - "word": "indiana", - "freq": 2.04e-05 - }, - { - "word": "lincoln", - "freq": 2.04e-05 - }, - { - "word": "updates", - "freq": 2.04e-05 - }, - { - "word": "vietnam", - "freq": 2.04e-05 - }, - { - "word": "failing", - "freq": 2e-05 - }, - { - "word": "fortune", - "freq": 2e-05 - }, - { - "word": "goodbye", - "freq": 2e-05 - }, - { - "word": "hillary", - "freq": 2e-05 - }, - { - "word": "touched", - "freq": 2e-05 - }, - { - "word": "awkward", - "freq": 1.95e-05 - }, - { - "word": "carrier", - "freq": 1.95e-05 - }, - { - "word": "default", - "freq": 1.95e-05 - }, - { - "word": "derived", - "freq": 1.95e-05 - }, - { - "word": "existed", - "freq": 1.95e-05 - }, - { - "word": "recover", - "freq": 1.95e-05 - }, - { - "word": "succeed", - "freq": 1.95e-05 - }, - { - "word": "worship", - "freq": 1.95e-05 - }, - { - "word": "creates", - "freq": 1.91e-05 - }, - { - "word": "crucial", - "freq": 1.91e-05 - }, - { - "word": "feeding", - "freq": 1.91e-05 - }, - { - "word": "involve", - "freq": 1.91e-05 - }, - { - "word": "kennedy", - "freq": 1.91e-05 - }, - { - "word": "replied", - "freq": 1.91e-05 - }, - { - "word": "revenge", - "freq": 1.91e-05 - }, - { - "word": "threats", - "freq": 1.91e-05 - }, - { - "word": "tourism", - "freq": 1.91e-05 - }, - { - "word": "turkish", - "freq": 1.91e-05 - }, - { - "word": "auction", - "freq": 1.86e-05 - }, - { - "word": "dispute", - "freq": 1.86e-05 - }, - { - "word": "editing", - "freq": 1.86e-05 - }, - { - "word": "ignored", - "freq": 1.86e-05 - }, - { - "word": "passage", - "freq": 1.86e-05 - }, - { - "word": "shocked", - "freq": 1.86e-05 - }, - { - "word": "utility", - "freq": 1.86e-05 - }, - { - "word": "peoples", - "freq": 1.82e-05 - }, - { - "word": "alabama", - "freq": 1.82e-05 - }, - { - "word": "breathe", - "freq": 1.82e-05 - }, - { - "word": "cameron", - "freq": 1.82e-05 - }, - { - "word": "coaches", - "freq": 1.82e-05 - }, - { - "word": "mounted", - "freq": 1.82e-05 - }, - { - "word": "offense", - "freq": 1.82e-05 - }, - { - "word": "realise", - "freq": 1.82e-05 - }, - { - "word": "segment", - "freq": 1.82e-05 - }, - { - "word": "venture", - "freq": 1.82e-05 - }, - { - "word": "arguing", - "freq": 1.78e-05 - }, - { - "word": "beliefs", - "freq": 1.78e-05 - }, - { - "word": "emperor", - "freq": 1.78e-05 - }, - { - "word": "forgive", - "freq": 1.78e-05 - }, - { - "word": "handled", - "freq": 1.78e-05 - }, - { - "word": "inquiry", - "freq": 1.78e-05 - }, - { - "word": "powered", - "freq": 1.78e-05 - }, - { - "word": "ratings", - "freq": 1.78e-05 - }, - { - "word": "seventh", - "freq": 1.78e-05 - }, - { - "word": "shelter", - "freq": 1.78e-05 - }, - { - "word": "stewart", - "freq": 1.78e-05 - }, - { - "word": "tribute", - "freq": 1.78e-05 - }, - { - "word": "trigger", - "freq": 1.78e-05 - }, - { - "word": "belongs", - "freq": 1.74e-05 - }, - { - "word": "beneath", - "freq": 1.74e-05 - }, - { - "word": "bitcoin", - "freq": 1.74e-05 - }, - { - "word": "deposit", - "freq": 1.74e-05 - }, - { - "word": "diverse", - "freq": 1.74e-05 - }, - { - "word": "fastest", - "freq": 1.74e-05 - }, - { - "word": "harvard", - "freq": 1.74e-05 - }, - { - "word": "jealous", - "freq": 1.74e-05 - }, - { - "word": "knocked", - "freq": 1.74e-05 - }, - { - "word": "laughed", - "freq": 1.74e-05 - }, - { - "word": "neutral", - "freq": 1.74e-05 - }, - { - "word": "upgrade", - "freq": 1.74e-05 - }, - { - "word": "warrant", - "freq": 1.74e-05 - }, - { - "word": "applies", - "freq": 1.7e-05 - }, - { - "word": "backing", - "freq": 1.7e-05 - }, - { - "word": "blessed", - "freq": 1.7e-05 - }, - { - "word": "charter", - "freq": 1.7e-05 - }, - { - "word": "earning", - "freq": 1.7e-05 - }, - { - "word": "expense", - "freq": 1.7e-05 - }, - { - "word": "graphic", - "freq": 1.7e-05 - }, - { - "word": "healing", - "freq": 1.7e-05 - }, - { - "word": "jumping", - "freq": 1.7e-05 - }, - { - "word": "outdoor", - "freq": 1.7e-05 - }, - { - "word": "secured", - "freq": 1.7e-05 - }, - { - "word": "amateur", - "freq": 1.66e-05 - }, - { - "word": "bearing", - "freq": 1.66e-05 - }, - { - "word": "biology", - "freq": 1.66e-05 - }, - { - "word": "briefly", - "freq": 1.66e-05 - }, - { - "word": "cheaper", - "freq": 1.66e-05 - }, - { - "word": "custody", - "freq": 1.66e-05 - }, - { - "word": "longest", - "freq": 1.66e-05 - }, - { - "word": "magical", - "freq": 1.66e-05 - }, - { - "word": "pension", - "freq": 1.66e-05 - }, - { - "word": "reminds", - "freq": 1.66e-05 - }, - { - "word": "shorter", - "freq": 1.66e-05 - }, - { - "word": "tension", - "freq": 1.66e-05 - }, - { - "word": "useless", - "freq": 1.66e-05 - }, - { - "word": "closest", - "freq": 1.62e-05 - }, - { - "word": "creator", - "freq": 1.62e-05 - }, - { - "word": "douglas", - "freq": 1.62e-05 - }, - { - "word": "farming", - "freq": 1.62e-05 - }, - { - "word": "forcing", - "freq": 1.62e-05 - }, - { - "word": "forming", - "freq": 1.62e-05 - }, - { - "word": "gravity", - "freq": 1.62e-05 - }, - { - "word": "legally", - "freq": 1.62e-05 - }, - { - "word": "ontario", - "freq": 1.62e-05 - }, - { - "word": "orleans", - "freq": 1.62e-05 - }, - { - "word": "phoenix", - "freq": 1.62e-05 - }, - { - "word": "slavery", - "freq": 1.62e-05 - }, - { - "word": "swedish", - "freq": 1.62e-05 - }, - { - "word": "veteran", - "freq": 1.62e-05 - }, - { - "word": "wealthy", - "freq": 1.62e-05 - }, - { - "word": "attract", - "freq": 1.58e-05 - }, - { - "word": "barbara", - "freq": 1.58e-05 - }, - { - "word": "blowing", - "freq": 1.58e-05 - }, - { - "word": "chronic", - "freq": 1.58e-05 - }, - { - "word": "cleared", - "freq": 1.58e-05 - }, - { - "word": "delayed", - "freq": 1.58e-05 - }, - { - "word": "kidding", - "freq": 1.58e-05 - }, - { - "word": "regards", - "freq": 1.58e-05 - }, - { - "word": "stepped", - "freq": 1.58e-05 - }, - { - "word": "tourist", - "freq": 1.58e-05 - }, - { - "word": "transit", - "freq": 1.58e-05 - }, - { - "word": "trusted", - "freq": 1.58e-05 - }, - { - "word": "volumes", - "freq": 1.58e-05 - }, - { - "word": "anytime", - "freq": 1.55e-05 - }, - { - "word": "coastal", - "freq": 1.55e-05 - }, - { - "word": "colored", - "freq": 1.55e-05 - }, - { - "word": "destiny", - "freq": 1.55e-05 - }, - { - "word": "distant", - "freq": 1.55e-05 - }, - { - "word": "emotion", - "freq": 1.55e-05 - }, - { - "word": "filling", - "freq": 1.55e-05 - }, - { - "word": "filming", - "freq": 1.55e-05 - }, - { - "word": "glasgow", - "freq": 1.55e-05 - }, - { - "word": "insight", - "freq": 1.55e-05 - }, - { - "word": "netflix", - "freq": 1.55e-05 - }, - { - "word": "qualify", - "freq": 1.55e-05 - }, - { - "word": "ranging", - "freq": 1.55e-05 - }, - { - "word": "ranking", - "freq": 1.55e-05 - }, - { - "word": "spotted", - "freq": 1.55e-05 - }, - { - "word": "stanley", - "freq": 1.55e-05 - }, - { - "word": "tobacco", - "freq": 1.55e-05 - }, - { - "word": "trapped", - "freq": 1.55e-05 - }, - { - "word": "advised", - "freq": 1.51e-05 - }, - { - "word": "ceiling", - "freq": 1.51e-05 - }, - { - "word": "costume", - "freq": 1.51e-05 - }, - { - "word": "deleted", - "freq": 1.51e-05 - }, - { - "word": "devoted", - "freq": 1.51e-05 - }, - { - "word": "endless", - "freq": 1.51e-05 - }, - { - "word": "escaped", - "freq": 1.51e-05 - }, - { - "word": "examine", - "freq": 1.51e-05 - }, - { - "word": "garbage", - "freq": 1.51e-05 - }, - { - "word": "heating", - "freq": 1.51e-05 - }, - { - "word": "mixture", - "freq": 1.51e-05 - }, - { - "word": "proceed", - "freq": 1.51e-05 - }, - { - "word": "restore", - "freq": 1.51e-05 - }, - { - "word": "vintage", - "freq": 1.51e-05 - }, - { - "word": "adapted", - "freq": 1.48e-05 - }, - { - "word": "antonio", - "freq": 1.48e-05 - }, - { - "word": "beloved", - "freq": 1.48e-05 - }, - { - "word": "grammar", - "freq": 1.48e-05 - }, - { - "word": "jessica", - "freq": 1.48e-05 - }, - { - "word": "loyalty", - "freq": 1.48e-05 - }, - { - "word": "madison", - "freq": 1.48e-05 - }, - { - "word": "partial", - "freq": 1.48e-05 - }, - { - "word": "placing", - "freq": 1.48e-05 - }, - { - "word": "resolve", - "freq": 1.48e-05 - }, - { - "word": "scandal", - "freq": 1.48e-05 - }, - { - "word": "tactics", - "freq": 1.48e-05 - }, - { - "word": "affects", - "freq": 1.45e-05 - }, - { - "word": "counsel", - "freq": 1.45e-05 - }, - { - "word": "decides", - "freq": 1.45e-05 - }, - { - "word": "desired", - "freq": 1.45e-05 - }, - { - "word": "embrace", - "freq": 1.45e-05 - }, - { - "word": "emerged", - "freq": 1.45e-05 - }, - { - "word": "exhibit", - "freq": 1.45e-05 - }, - { - "word": "hosting", - "freq": 1.45e-05 - }, - { - "word": "imposed", - "freq": 1.45e-05 - }, - { - "word": "iranian", - "freq": 1.45e-05 - }, - { - "word": "kicking", - "freq": 1.45e-05 - }, - { - "word": "reaches", - "freq": 1.45e-05 - }, - { - "word": "remarks", - "freq": 1.45e-05 - }, - { - "word": "scratch", - "freq": 1.45e-05 - }, - { - "word": "sheriff", - "freq": 1.45e-05 - }, - { - "word": "warrior", - "freq": 1.45e-05 - }, - { - "word": "worries", - "freq": 1.45e-05 - }, - { - "word": "barrier", - "freq": 1.41e-05 - }, - { - "word": "belgium", - "freq": 1.41e-05 - }, - { - "word": "casting", - "freq": 1.41e-05 - }, - { - "word": "colours", - "freq": 1.41e-05 - }, - { - "word": "elderly", - "freq": 1.41e-05 - }, - { - "word": "lesbian", - "freq": 1.41e-05 - }, - { - "word": "podcast", - "freq": 1.41e-05 - }, - { - "word": "quietly", - "freq": 1.41e-05 - }, - { - "word": "smiling", - "freq": 1.41e-05 - }, - { - "word": "stating", - "freq": 1.41e-05 - }, - { - "word": "torture", - "freq": 1.41e-05 - }, - { - "word": "wrapped", - "freq": 1.41e-05 - }, - { - "word": "binding", - "freq": 1.38e-05 - }, - { - "word": "buffalo", - "freq": 1.38e-05 - }, - { - "word": "corrupt", - "freq": 1.38e-05 - }, - { - "word": "fifteen", - "freq": 1.38e-05 - }, - { - "word": "heights", - "freq": 1.38e-05 - }, - { - "word": "install", - "freq": 1.38e-05 - }, - { - "word": "justify", - "freq": 1.38e-05 - }, - { - "word": "lecture", - "freq": 1.38e-05 - }, - { - "word": "logical", - "freq": 1.38e-05 - }, - { - "word": "missile", - "freq": 1.38e-05 - }, - { - "word": "muscles", - "freq": 1.38e-05 - }, - { - "word": "revised", - "freq": 1.38e-05 - }, - { - "word": "staring", - "freq": 1.38e-05 - }, - { - "word": "teenage", - "freq": 1.38e-05 - }, - { - "word": "thunder", - "freq": 1.38e-05 - }, - { - "word": "tragedy", - "freq": 1.38e-05 - }, - { - "word": "vincent", - "freq": 1.38e-05 - }, - { - "word": "acquire", - "freq": 1.35e-05 - }, - { - "word": "combine", - "freq": 1.35e-05 - }, - { - "word": "damages", - "freq": 1.35e-05 - }, - { - "word": "embassy", - "freq": 1.35e-05 - }, - { - "word": "gaining", - "freq": 1.35e-05 - }, - { - "word": "miracle", - "freq": 1.35e-05 - }, - { - "word": "playoff", - "freq": 1.35e-05 - }, - { - "word": "precise", - "freq": 1.35e-05 - }, - { - "word": "retreat", - "freq": 1.35e-05 - }, - { - "word": "skilled", - "freq": 1.35e-05 - }, - { - "word": "surgeon", - "freq": 1.35e-05 - }, - { - "word": "washing", - "freq": 1.35e-05 - }, - { - "word": "beijing", - "freq": 1.32e-05 - }, - { - "word": "chasing", - "freq": 1.32e-05 - }, - { - "word": "jewelry", - "freq": 1.32e-05 - }, - { - "word": "prayers", - "freq": 1.32e-05 - }, - { - "word": "pressed", - "freq": 1.32e-05 - }, - { - "word": "pursuit", - "freq": 1.32e-05 - }, - { - "word": "samsung", - "freq": 1.32e-05 - }, - { - "word": "sounded", - "freq": 1.32e-05 - }, - { - "word": "arrives", - "freq": 1.29e-05 - }, - { - "word": "artwork", - "freq": 1.29e-05 - }, - { - "word": "athlete", - "freq": 1.29e-05 - }, - { - "word": "closure", - "freq": 1.29e-05 - }, - { - "word": "convert", - "freq": 1.29e-05 - }, - { - "word": "enabled", - "freq": 1.29e-05 - }, - { - "word": "eternal", - "freq": 1.29e-05 - }, - { - "word": "generic", - "freq": 1.29e-05 - }, - { - "word": "grandma", - "freq": 1.29e-05 - }, - { - "word": "handful", - "freq": 1.29e-05 - }, - { - "word": "happily", - "freq": 1.29e-05 - }, - { - "word": "harmony", - "freq": 1.29e-05 - }, - { - "word": "hurting", - "freq": 1.29e-05 - }, - { - "word": "lasting", - "freq": 1.29e-05 - }, - { - "word": "locally", - "freq": 1.29e-05 - }, - { - "word": "minimal", - "freq": 1.29e-05 - }, - { - "word": "nearest", - "freq": 1.29e-05 - }, - { - "word": "selfish", - "freq": 1.29e-05 - }, - { - "word": "wasting", - "freq": 1.29e-05 - }, - { - "word": "cycling", - "freq": 1.26e-05 - }, - { - "word": "fitting", - "freq": 1.26e-05 - }, - { - "word": "hardest", - "freq": 1.26e-05 - }, - { - "word": "holland", - "freq": 1.26e-05 - }, - { - "word": "honored", - "freq": 1.26e-05 - }, - { - "word": "loading", - "freq": 1.26e-05 - }, - { - "word": "publish", - "freq": 1.26e-05 - }, - { - "word": "rewards", - "freq": 1.26e-05 - }, - { - "word": "watches", - "freq": 1.26e-05 - }, - { - "word": "anxious", - "freq": 1.23e-05 - }, - { - "word": "bombing", - "freq": 1.23e-05 - }, - { - "word": "darling", - "freq": 1.23e-05 - }, - { - "word": "entries", - "freq": 1.23e-05 - }, - { - "word": "evolved", - "freq": 1.23e-05 - }, - { - "word": "exports", - "freq": 1.23e-05 - }, - { - "word": "lawsuit", - "freq": 1.23e-05 - }, - { - "word": "lighter", - "freq": 1.23e-05 - }, - { - "word": "servant", - "freq": 1.23e-05 - }, - { - "word": "tweeted", - "freq": 1.23e-05 - }, - { - "word": "fathers", - "freq": 1.2e-05 - }, - { - "word": "approve", - "freq": 1.2e-05 - }, - { - "word": "cartoon", - "freq": 1.2e-05 - }, - { - "word": "console", - "freq": 1.2e-05 - }, - { - "word": "focuses", - "freq": 1.2e-05 - }, - { - "word": "lacking", - "freq": 1.2e-05 - }, - { - "word": "pockets", - "freq": 1.2e-05 - }, - { - "word": "predict", - "freq": 1.2e-05 - }, - { - "word": "repairs", - "freq": 1.2e-05 - }, - { - "word": "shaking", - "freq": 1.2e-05 - }, - { - "word": "trainer", - "freq": 1.2e-05 - }, - { - "word": "viewing", - "freq": 1.2e-05 - }, - { - "word": "assured", - "freq": 1.17e-05 - }, - { - "word": "austria", - "freq": 1.17e-05 - }, - { - "word": "avoided", - "freq": 1.17e-05 - }, - { - "word": "blanket", - "freq": 1.17e-05 - }, - { - "word": "ethical", - "freq": 1.17e-05 - }, - { - "word": "grabbed", - "freq": 1.17e-05 - }, - { - "word": "horizon", - "freq": 1.17e-05 - }, - { - "word": "hostile", - "freq": 1.17e-05 - }, - { - "word": "notable", - "freq": 1.17e-05 - }, - { - "word": "optical", - "freq": 1.17e-05 - }, - { - "word": "outlook", - "freq": 1.17e-05 - }, - { - "word": "quantum", - "freq": 1.17e-05 - }, - { - "word": "rainbow", - "freq": 1.17e-05 - }, - { - "word": "spencer", - "freq": 1.17e-05 - }, - { - "word": "ashamed", - "freq": 1.15e-05 - }, - { - "word": "compact", - "freq": 1.15e-05 - }, - { - "word": "cooling", - "freq": 1.15e-05 - }, - { - "word": "corners", - "freq": 1.15e-05 - }, - { - "word": "deficit", - "freq": 1.15e-05 - }, - { - "word": "donated", - "freq": 1.15e-05 - }, - { - "word": "grocery", - "freq": 1.15e-05 - }, - { - "word": "halfway", - "freq": 1.15e-05 - }, - { - "word": "happier", - "freq": 1.15e-05 - }, - { - "word": "laundry", - "freq": 1.15e-05 - }, - { - "word": "lifting", - "freq": 1.15e-05 - }, - { - "word": "martial", - "freq": 1.15e-05 - }, - { - "word": "observe", - "freq": 1.15e-05 - }, - { - "word": "packing", - "freq": 1.15e-05 - }, - { - "word": "pokemon", - "freq": 1.15e-05 - }, - { - "word": "reforms", - "freq": 1.15e-05 - }, - { - "word": "unhappy", - "freq": 1.15e-05 - }, - { - "word": "apology", - "freq": 1.12e-05 - }, - { - "word": "bowling", - "freq": 1.12e-05 - }, - { - "word": "declare", - "freq": 1.12e-05 - }, - { - "word": "dresses", - "freq": 1.12e-05 - }, - { - "word": "frankly", - "freq": 1.12e-05 - }, - { - "word": "judging", - "freq": 1.12e-05 - }, - { - "word": "majesty", - "freq": 1.12e-05 - }, - { - "word": "montana", - "freq": 1.12e-05 - }, - { - "word": "murders", - "freq": 1.12e-05 - }, - { - "word": "shooter", - "freq": 1.12e-05 - }, - { - "word": "someday", - "freq": 1.12e-05 - }, - { - "word": "symbols", - "freq": 1.12e-05 - }, - { - "word": "wallace", - "freq": 1.12e-05 - }, - { - "word": "warfare", - "freq": 1.12e-05 - }, - { - "word": "warming", - "freq": 1.12e-05 - }, - { - "word": "persons", - "freq": 1.1e-05 - }, - { - "word": "airline", - "freq": 1.1e-05 - }, - { - "word": "anyways", - "freq": 1.1e-05 - }, - { - "word": "counted", - "freq": 1.1e-05 - }, - { - "word": "crashed", - "freq": 1.1e-05 - }, - { - "word": "denmark", - "freq": 1.1e-05 - }, - { - "word": "enhance", - "freq": 1.1e-05 - }, - { - "word": "induced", - "freq": 1.1e-05 - }, - { - "word": "orlando", - "freq": 1.1e-05 - }, - { - "word": "planted", - "freq": 1.1e-05 - }, - { - "word": "pricing", - "freq": 1.1e-05 - }, - { - "word": "renewed", - "freq": 1.1e-05 - }, - { - "word": "shallow", - "freq": 1.1e-05 - }, - { - "word": "sponsor", - "freq": 1.1e-05 - }, - { - "word": "strings", - "freq": 1.1e-05 - }, - { - "word": "thermal", - "freq": 1.1e-05 - }, - { - "word": "yelling", - "freq": 1.1e-05 - }, - { - "word": "analyst", - "freq": 1.07e-05 - }, - { - "word": "assists", - "freq": 1.07e-05 - }, - { - "word": "bennett", - "freq": 1.07e-05 - }, - { - "word": "bristol", - "freq": 1.07e-05 - }, - { - "word": "crushed", - "freq": 1.07e-05 - }, - { - "word": "essence", - "freq": 1.07e-05 - }, - { - "word": "harvest", - "freq": 1.07e-05 - }, - { - "word": "impacts", - "freq": 1.07e-05 - }, - { - "word": "mineral", - "freq": 1.07e-05 - }, - { - "word": "passive", - "freq": 1.07e-05 - }, - { - "word": "shipped", - "freq": 1.07e-05 - }, - { - "word": "thereby", - "freq": 1.07e-05 - }, - { - "word": "vampire", - "freq": 1.07e-05 - }, - { - "word": "verdict", - "freq": 1.07e-05 - }, - { - "word": "abandon", - "freq": 1.05e-05 - }, - { - "word": "altered", - "freq": 1.05e-05 - }, - { - "word": "bernard", - "freq": 1.05e-05 - }, - { - "word": "bizarre", - "freq": 1.05e-05 - }, - { - "word": "cleaned", - "freq": 1.05e-05 - }, - { - "word": "dignity", - "freq": 1.05e-05 - }, - { - "word": "extract", - "freq": 1.05e-05 - }, - { - "word": "flowing", - "freq": 1.05e-05 - }, - { - "word": "innings", - "freq": 1.05e-05 - }, - { - "word": "mansion", - "freq": 1.05e-05 - }, - { - "word": "mercury", - "freq": 1.05e-05 - }, - { - "word": "needing", - "freq": 1.05e-05 - }, - { - "word": "pending", - "freq": 1.05e-05 - }, - { - "word": "possess", - "freq": 1.05e-05 - }, - { - "word": "praised", - "freq": 1.05e-05 - }, - { - "word": "refuses", - "freq": 1.05e-05 - }, - { - "word": "starter", - "freq": 1.05e-05 - }, - { - "word": "utterly", - "freq": 1.05e-05 - }, - { - "word": "voltage", - "freq": 1.05e-05 - }, - { - "word": "workout", - "freq": 1.05e-05 - }, - { - "word": "advisor", - "freq": 1.02e-05 - }, - { - "word": "bradley", - "freq": 1.02e-05 - }, - { - "word": "brandon", - "freq": 1.02e-05 - }, - { - "word": "broader", - "freq": 1.02e-05 - }, - { - "word": "desires", - "freq": 1.02e-05 - }, - { - "word": "goddess", - "freq": 1.02e-05 - }, - { - "word": "lebanon", - "freq": 1.02e-05 - }, - { - "word": "leonard", - "freq": 1.02e-05 - }, - { - "word": "malcolm", - "freq": 1.02e-05 - }, - { - "word": "massage", - "freq": 1.02e-05 - }, - { - "word": "matched", - "freq": 1.02e-05 - }, - { - "word": "notably", - "freq": 1.02e-05 - }, - { - "word": "relaxed", - "freq": 1.02e-05 - }, - { - "word": "simpson", - "freq": 1.02e-05 - }, - { - "word": "visitor", - "freq": 1.02e-05 - }, - { - "word": "vitamin", - "freq": 1.02e-05 - }, - { - "word": "admiral", - "freq": 1e-05 - }, - { - "word": "arrange", - "freq": 1e-05 - }, - { - "word": "betting", - "freq": 1e-05 - }, - { - "word": "camping", - "freq": 1e-05 - }, - { - "word": "capitol", - "freq": 1e-05 - }, - { - "word": "cottage", - "freq": 1e-05 - }, - { - "word": "dragged", - "freq": 1e-05 - }, - { - "word": "inspire", - "freq": 1e-05 - }, - { - "word": "interim", - "freq": 1e-05 - }, - { - "word": "lottery", - "freq": 1e-05 - }, - { - "word": "outlets", - "freq": 1e-05 - }, - { - "word": "proving", - "freq": 1e-05 - }, - { - "word": "screwed", - "freq": 1e-05 - }, - { - "word": "silicon", - "freq": 1e-05 - } - ], - "9": [ - { - "word": "something", - "freq": 0.000646 - }, - { - "word": "different", - "freq": 0.000389 - }, - { - "word": "including", - "freq": 0.000331 - }, - { - "word": "following", - "freq": 0.000288 - }, - { - "word": "president", - "freq": 0.000282 - }, - { - "word": "important", - "freq": 0.000275 - }, - { - "word": "community", - "freq": 0.000219 - }, - { - "word": "political", - "freq": 0.000195 - }, - { - "word": "according", - "freq": 0.000191 - }, - { - "word": "available", - "freq": 0.000191 - }, - { - "word": "education", - "freq": 0.000191 - }, - { - "word": "beautiful", - "freq": 0.000166 - }, - { - "word": "companies", - "freq": 0.000151 - }, - { - "word": "september", - "freq": 0.000141 - }, - { - "word": "countries", - "freq": 0.000135 - }, - { - "word": "attention", - "freq": 0.000129 - }, - { - "word": "character", - "freq": 0.000129 - }, - { - "word": "situation", - "freq": 0.000123 - }, - { - "word": "currently", - "freq": 0.00012 - }, - { - "word": "financial", - "freq": 0.00012 - }, - { - "word": "difficult", - "freq": 0.000117 - }, - { - "word": "published", - "freq": 0.000117 - }, - { - "word": "australia", - "freq": 0.000115 - }, - { - "word": "committee", - "freq": 0.000102 - }, - { - "word": "potential", - "freq": 0.000102 - }, - { - "word": "treatment", - "freq": 0.000102 - }, - { - "word": "beginning", - "freq": 0.0001 - }, - { - "word": "certainly", - "freq": 0.0001 - }, - { - "word": "described", - "freq": 0.0001 - }, - { - "word": "statement", - "freq": 9.33e-05 - }, - { - "word": "announced", - "freq": 9.12e-05 - }, - { - "word": "continued", - "freq": 9.12e-05 - }, - { - "word": "knowledge", - "freq": 9.12e-05 - }, - { - "word": "developed", - "freq": 8.91e-05 - }, - { - "word": "generally", - "freq": 8.91e-05 - }, - { - "word": "secretary", - "freq": 8.91e-05 - }, - { - "word": "insurance", - "freq": 8.71e-05 - }, - { - "word": "seriously", - "freq": 8.71e-05 - }, - { - "word": "direction", - "freq": 8.51e-05 - }, - { - "word": "operation", - "freq": 8.32e-05 - }, - { - "word": "christmas", - "freq": 8.13e-05 - }, - { - "word": "increased", - "freq": 8.13e-05 - }, - { - "word": "literally", - "freq": 8.13e-05 - }, - { - "word": "necessary", - "freq": 8.13e-05 - }, - { - "word": "resources", - "freq": 8.13e-05 - }, - { - "word": "yesterday", - "freq": 8.13e-05 - }, - { - "word": "professor", - "freq": 7.94e-05 - }, - { - "word": "effective", - "freq": 7.76e-05 - }, - { - "word": "agreement", - "freq": 7.59e-05 - }, - { - "word": "challenge", - "freq": 7.59e-05 - }, - { - "word": "christian", - "freq": 7.59e-05 - }, - { - "word": "equipment", - "freq": 7.59e-05 - }, - { - "word": "otherwise", - "freq": 7.59e-05 - }, - { - "word": "executive", - "freq": 7.41e-05 - }, - { - "word": "therefore", - "freq": 7.41e-05 - }, - { - "word": "condition", - "freq": 7.24e-05 - }, - { - "word": "interview", - "freq": 7.24e-05 - }, - { - "word": "religious", - "freq": 7.08e-05 - }, - { - "word": "wonderful", - "freq": 7.08e-05 - }, - { - "word": "everybody", - "freq": 6.92e-05 - }, - { - "word": "structure", - "freq": 6.92e-05 - }, - { - "word": "mentioned", - "freq": 6.76e-05 - }, - { - "word": "authority", - "freq": 6.46e-05 - }, - { - "word": "happening", - "freq": 6.31e-05 - }, - { - "word": "institute", - "freq": 6.31e-05 - }, - { - "word": "obviously", - "freq": 6.31e-05 - }, - { - "word": "continues", - "freq": 6.17e-05 - }, - { - "word": "dangerous", - "freq": 6.17e-05 - }, - { - "word": "extremely", - "freq": 6.17e-05 - }, - { - "word": "advantage", - "freq": 6.03e-05 - }, - { - "word": "influence", - "freq": 6.03e-05 - }, - { - "word": "marketing", - "freq": 6.03e-05 - }, - { - "word": "completed", - "freq": 5.89e-05 - }, - { - "word": "thousands", - "freq": 5.89e-05 - }, - { - "word": "concerned", - "freq": 5.62e-05 - }, - { - "word": "operating", - "freq": 5.62e-05 - }, - { - "word": "presented", - "freq": 5.62e-05 - }, - { - "word": "technical", - "freq": 5.62e-05 - }, - { - "word": "reference", - "freq": 5.5e-05 - }, - { - "word": "somewhere", - "freq": 5.5e-05 - }, - { - "word": "excellent", - "freq": 5.37e-05 - }, - { - "word": "afternoon", - "freq": 5.25e-05 - }, - { - "word": "assistant", - "freq": 5.25e-05 - }, - { - "word": "emergency", - "freq": 5.25e-05 - }, - { - "word": "providing", - "freq": 5.25e-05 - }, - { - "word": "fantastic", - "freq": 5.13e-05 - }, - { - "word": "expensive", - "freq": 4.9e-05 - }, - { - "word": "connected", - "freq": 4.79e-05 - }, - { - "word": "performed", - "freq": 4.79e-05 - }, - { - "word": "suggested", - "freq": 4.79e-05 - }, - { - "word": "supported", - "freq": 4.79e-05 - }, - { - "word": "surprised", - "freq": 4.79e-05 - }, - { - "word": "transport", - "freq": 4.79e-05 - }, - { - "word": "confirmed", - "freq": 4.68e-05 - }, - { - "word": "regarding", - "freq": 4.68e-05 - }, - { - "word": "relations", - "freq": 4.68e-05 - }, - { - "word": "candidate", - "freq": 4.57e-05 - }, - { - "word": "emotional", - "freq": 4.57e-05 - }, - { - "word": "interests", - "freq": 4.57e-05 - }, - { - "word": "listening", - "freq": 4.57e-05 - }, - { - "word": "apartment", - "freq": 4.47e-05 - }, - { - "word": "committed", - "freq": 4.47e-05 - }, - { - "word": "corporate", - "freq": 4.37e-05 - }, - { - "word": "basically", - "freq": 4.27e-05 - }, - { - "word": "collected", - "freq": 4.27e-05 - }, - { - "word": "determine", - "freq": 4.27e-05 - }, - { - "word": "remaining", - "freq": 4.27e-05 - }, - { - "word": "delivered", - "freq": 4.17e-05 - }, - { - "word": "estimated", - "freq": 4.17e-05 - }, - { - "word": "ourselves", - "freq": 4.17e-05 - }, - { - "word": "selection", - "freq": 4.17e-05 - }, - { - "word": "typically", - "freq": 4.17e-05 - }, - { - "word": "breakfast", - "freq": 4.07e-05 - }, - { - "word": "destroyed", - "freq": 4.07e-05 - }, - { - "word": "essential", - "freq": 4.07e-05 - }, - { - "word": "perfectly", - "freq": 4.07e-05 - }, - { - "word": "recommend", - "freq": 4.07e-05 - }, - { - "word": "newspaper", - "freq": 3.98e-05 - }, - { - "word": "territory", - "freq": 3.98e-05 - }, - { - "word": "appointed", - "freq": 3.89e-05 - }, - { - "word": "boyfriend", - "freq": 3.89e-05 - }, - { - "word": "explained", - "freq": 3.89e-05 - }, - { - "word": "receiving", - "freq": 3.89e-05 - }, - { - "word": "wednesday", - "freq": 3.89e-05 - }, - { - "word": "conducted", - "freq": 3.8e-05 - }, - { - "word": "dedicated", - "freq": 3.8e-05 - }, - { - "word": "represent", - "freq": 3.8e-05 - }, - { - "word": "favourite", - "freq": 3.72e-05 - }, - { - "word": "permanent", - "freq": 3.72e-05 - }, - { - "word": "programme", - "freq": 3.72e-05 - }, - { - "word": "depending", - "freq": 3.63e-05 - }, - { - "word": "exclusive", - "freq": 3.63e-05 - }, - { - "word": "hopefully", - "freq": 3.63e-05 - }, - { - "word": "personnel", - "freq": 3.63e-05 - }, - { - "word": "brilliant", - "freq": 3.55e-05 - }, - { - "word": "existence", - "freq": 3.55e-05 - }, - { - "word": "expansion", - "freq": 3.47e-05 - }, - { - "word": "reporting", - "freq": 3.47e-05 - }, - { - "word": "worldwide", - "freq": 3.47e-05 - }, - { - "word": "francisco", - "freq": 3.39e-05 - }, - { - "word": "secondary", - "freq": 3.39e-05 - }, - { - "word": "suffering", - "freq": 3.39e-05 - }, - { - "word": "wondering", - "freq": 3.39e-05 - }, - { - "word": "expressed", - "freq": 3.31e-05 - }, - { - "word": "hollywood", - "freq": 3.31e-05 - }, - { - "word": "immediate", - "freq": 3.31e-05 - }, - { - "word": "principal", - "freq": 3.31e-05 - }, - { - "word": "recognize", - "freq": 3.31e-05 - }, - { - "word": "regularly", - "freq": 3.31e-05 - }, - { - "word": "childhood", - "freq": 3.24e-05 - }, - { - "word": "commander", - "freq": 3.24e-05 - }, - { - "word": "democracy", - "freq": 3.24e-05 - }, - { - "word": "organized", - "freq": 3.24e-05 - }, - { - "word": "protected", - "freq": 3.24e-05 - }, - { - "word": "recording", - "freq": 3.24e-05 - }, - { - "word": "solutions", - "freq": 3.16e-05 - }, - { - "word": "tradition", - "freq": 3.16e-05 - }, - { - "word": "celebrate", - "freq": 3.09e-05 - }, - { - "word": "chocolate", - "freq": 3.09e-05 - }, - { - "word": "criticism", - "freq": 3.09e-05 - }, - { - "word": "extensive", - "freq": 3.09e-05 - }, - { - "word": "formation", - "freq": 3.09e-05 - }, - { - "word": "initially", - "freq": 3.09e-05 - }, - { - "word": "returning", - "freq": 3.09e-05 - }, - { - "word": "universal", - "freq": 3.09e-05 - }, - { - "word": "involving", - "freq": 3.02e-05 - }, - { - "word": "meanwhile", - "freq": 3.02e-05 - }, - { - "word": "naturally", - "freq": 3.02e-05 - }, - { - "word": "practical", - "freq": 3.02e-05 - }, - { - "word": "primarily", - "freq": 3.02e-05 - }, - { - "word": "resulting", - "freq": 3.02e-05 - }, - { - "word": "temporary", - "freq": 3.02e-05 - }, - { - "word": "elizabeth", - "freq": 2.95e-05 - }, - { - "word": "household", - "freq": 2.95e-05 - }, - { - "word": "purchased", - "freq": 2.95e-05 - }, - { - "word": "technique", - "freq": 2.95e-05 - }, - { - "word": "adventure", - "freq": 2.88e-05 - }, - { - "word": "carefully", - "freq": 2.88e-05 - }, - { - "word": "elsewhere", - "freq": 2.88e-05 - }, - { - "word": "establish", - "freq": 2.88e-05 - }, - { - "word": "extension", - "freq": 2.88e-05 - }, - { - "word": "increases", - "freq": 2.88e-05 - }, - { - "word": "offensive", - "freq": 2.88e-05 - }, - { - "word": "processes", - "freq": 2.88e-05 - }, - { - "word": "qualified", - "freq": 2.88e-05 - }, - { - "word": "sensitive", - "freq": 2.88e-05 - }, - { - "word": "alongside", - "freq": 2.82e-05 - }, - { - "word": "contained", - "freq": 2.82e-05 - }, - { - "word": "discovery", - "freq": 2.82e-05 - }, - { - "word": "discussed", - "freq": 2.82e-05 - }, - { - "word": "encourage", - "freq": 2.82e-05 - }, - { - "word": "featuring", - "freq": 2.82e-05 - }, - { - "word": "producing", - "freq": 2.82e-05 - }, - { - "word": "scheduled", - "freq": 2.82e-05 - }, - { - "word": "awareness", - "freq": 2.75e-05 - }, - { - "word": "guarantee", - "freq": 2.75e-05 - }, - { - "word": "happiness", - "freq": 2.75e-05 - }, - { - "word": "procedure", - "freq": 2.75e-05 - }, - { - "word": "confident", - "freq": 2.69e-05 - }, - { - "word": "liverpool", - "freq": 2.69e-05 - }, - { - "word": "strategic", - "freq": 2.69e-05 - }, - { - "word": "attempted", - "freq": 2.63e-05 - }, - { - "word": "economics", - "freq": 2.63e-05 - }, - { - "word": "efficient", - "freq": 2.63e-05 - }, - { - "word": "expecting", - "freq": 2.63e-05 - }, - { - "word": "evolution", - "freq": 2.57e-05 - }, - { - "word": "promotion", - "freq": 2.57e-05 - }, - { - "word": "telephone", - "freq": 2.57e-05 - }, - { - "word": "abandoned", - "freq": 2.51e-05 - }, - { - "word": "alexander", - "freq": 2.51e-05 - }, - { - "word": "convinced", - "freq": 2.51e-05 - }, - { - "word": "describes", - "freq": 2.51e-05 - }, - { - "word": "forgotten", - "freq": 2.51e-05 - }, - { - "word": "installed", - "freq": 2.51e-05 - }, - { - "word": "ownership", - "freq": 2.51e-05 - }, - { - "word": "spiritual", - "freq": 2.51e-05 - }, - { - "word": "associate", - "freq": 2.45e-05 - }, - { - "word": "broadcast", - "freq": 2.45e-05 - }, - { - "word": "cambridge", - "freq": 2.45e-05 - }, - { - "word": "narrative", - "freq": 2.45e-05 - }, - { - "word": "reduction", - "freq": 2.45e-05 - }, - { - "word": "amendment", - "freq": 2.4e-05 - }, - { - "word": "defensive", - "freq": 2.4e-05 - }, - { - "word": "passenger", - "freq": 2.4e-05 - }, - { - "word": "improving", - "freq": 2.34e-05 - }, - { - "word": "introduce", - "freq": 2.34e-05 - }, - { - "word": "automatic", - "freq": 2.29e-05 - }, - { - "word": "behaviour", - "freq": 2.29e-05 - }, - { - "word": "frequency", - "freq": 2.29e-05 - }, - { - "word": "landscape", - "freq": 2.29e-05 - }, - { - "word": "melbourne", - "freq": 2.29e-05 - }, - { - "word": "microsoft", - "freq": 2.29e-05 - }, - { - "word": "objective", - "freq": 2.29e-05 - }, - { - "word": "residence", - "freq": 2.29e-05 - }, - { - "word": "searching", - "freq": 2.29e-05 - }, - { - "word": "wisconsin", - "freq": 2.29e-05 - }, - { - "word": "chemistry", - "freq": 2.24e-05 - }, - { - "word": "concluded", - "freq": 2.24e-05 - }, - { - "word": "exception", - "freq": 2.24e-05 - }, - { - "word": "preferred", - "freq": 2.24e-05 - }, - { - "word": "referring", - "freq": 2.24e-05 - }, - { - "word": "screaming", - "freq": 2.24e-05 - }, - { - "word": "singapore", - "freq": 2.24e-05 - }, - { - "word": "terrorist", - "freq": 2.24e-05 - }, - { - "word": "delicious", - "freq": 2.19e-05 - }, - { - "word": "generated", - "freq": 2.19e-05 - }, - { - "word": "impressed", - "freq": 2.19e-05 - }, - { - "word": "indicated", - "freq": 2.19e-05 - }, - { - "word": "principle", - "freq": 2.19e-05 - }, - { - "word": "defending", - "freq": 2.14e-05 - }, - { - "word": "infection", - "freq": 2.14e-05 - }, - { - "word": "instagram", - "freq": 2.14e-05 - }, - { - "word": "intention", - "freq": 2.14e-05 - }, - { - "word": "pregnancy", - "freq": 2.14e-05 - }, - { - "word": "preparing", - "freq": 2.14e-05 - }, - { - "word": "prominent", - "freq": 2.14e-05 - }, - { - "word": "requested", - "freq": 2.14e-05 - }, - { - "word": "satellite", - "freq": 2.14e-05 - }, - { - "word": "centuries", - "freq": 2.09e-05 - }, - { - "word": "communist", - "freq": 2.09e-05 - }, - { - "word": "complaint", - "freq": 2.09e-05 - }, - { - "word": "component", - "freq": 2.09e-05 - }, - { - "word": "desperate", - "freq": 2.09e-05 - }, - { - "word": "diversity", - "freq": 2.09e-05 - }, - { - "word": "submitted", - "freq": 2.09e-05 - }, - { - "word": "suspended", - "freq": 2.09e-05 - }, - { - "word": "attending", - "freq": 2.04e-05 - }, - { - "word": "attracted", - "freq": 2.04e-05 - }, - { - "word": "minnesota", - "freq": 2.04e-05 - }, - { - "word": "stability", - "freq": 2.04e-05 - }, - { - "word": "estimates", - "freq": 2e-05 - }, - { - "word": "finishing", - "freq": 2e-05 - }, - { - "word": "separated", - "freq": 2e-05 - }, - { - "word": "similarly", - "freq": 2e-05 - }, - { - "word": "attacking", - "freq": 1.95e-05 - }, - { - "word": "celebrity", - "freq": 1.95e-05 - }, - { - "word": "execution", - "freq": 1.95e-05 - }, - { - "word": "followers", - "freq": 1.95e-05 - }, - { - "word": "framework", - "freq": 1.95e-05 - }, - { - "word": "franchise", - "freq": 1.95e-05 - }, - { - "word": "furniture", - "freq": 1.95e-05 - }, - { - "word": "lifestyle", - "freq": 1.95e-05 - }, - { - "word": "responses", - "freq": 1.95e-05 - }, - { - "word": "sacrifice", - "freq": 1.95e-05 - }, - { - "word": "witnesses", - "freq": 1.95e-05 - }, - { - "word": "breathing", - "freq": 1.91e-05 - }, - { - "word": "dependent", - "freq": 1.91e-05 - }, - { - "word": "edinburgh", - "freq": 1.91e-05 - }, - { - "word": "promoting", - "freq": 1.91e-05 - }, - { - "word": "satisfied", - "freq": 1.91e-05 - }, - { - "word": "volunteer", - "freq": 1.91e-05 - }, - { - "word": "cleveland", - "freq": 1.86e-05 - }, - { - "word": "hilarious", - "freq": 1.86e-05 - }, - { - "word": "mechanism", - "freq": 1.86e-05 - }, - { - "word": "radiation", - "freq": 1.86e-05 - }, - { - "word": "traveling", - "freq": 1.86e-05 - }, - { - "word": "addressed", - "freq": 1.82e-05 - }, - { - "word": "classical", - "freq": 1.82e-05 - }, - { - "word": "encounter", - "freq": 1.82e-05 - }, - { - "word": "occasions", - "freq": 1.82e-05 - }, - { - "word": "responded", - "freq": 1.82e-05 - }, - { - "word": "virtually", - "freq": 1.82e-05 - }, - { - "word": "gathering", - "freq": 1.78e-05 - }, - { - "word": "indonesia", - "freq": 1.78e-05 - }, - { - "word": "inspector", - "freq": 1.78e-05 - }, - { - "word": "recovered", - "freq": 1.78e-05 - }, - { - "word": "signature", - "freq": 1.78e-05 - }, - { - "word": "copyright", - "freq": 1.74e-05 - }, - { - "word": "indicates", - "freq": 1.74e-05 - }, - { - "word": "municipal", - "freq": 1.74e-05 - }, - { - "word": "reactions", - "freq": 1.74e-05 - }, - { - "word": "terrorism", - "freq": 1.74e-05 - }, - { - "word": "barcelona", - "freq": 1.7e-05 - }, - { - "word": "brazilian", - "freq": 1.7e-05 - }, - { - "word": "certified", - "freq": 1.7e-05 - }, - { - "word": "coalition", - "freq": 1.7e-05 - }, - { - "word": "instantly", - "freq": 1.7e-05 - }, - { - "word": "legendary", - "freq": 1.7e-05 - }, - { - "word": "reception", - "freq": 1.7e-05 - }, - { - "word": "sponsored", - "freq": 1.7e-05 - }, - { - "word": "substance", - "freq": 1.7e-05 - }, - { - "word": "argentina", - "freq": 1.66e-05 - }, - { - "word": "baltimore", - "freq": 1.66e-05 - }, - { - "word": "cancelled", - "freq": 1.66e-05 - }, - { - "word": "charlotte", - "freq": 1.66e-05 - }, - { - "word": "competing", - "freq": 1.66e-05 - }, - { - "word": "departure", - "freq": 1.66e-05 - }, - { - "word": "explosion", - "freq": 1.66e-05 - }, - { - "word": "integrity", - "freq": 1.66e-05 - }, - { - "word": "lightning", - "freq": 1.66e-05 - }, - { - "word": "socialist", - "freq": 1.66e-05 - }, - { - "word": "streaming", - "freq": 1.66e-05 - }, - { - "word": "abilities", - "freq": 1.62e-05 - }, - { - "word": "converted", - "freq": 1.62e-05 - }, - { - "word": "correctly", - "freq": 1.62e-05 - }, - { - "word": "detective", - "freq": 1.62e-05 - }, - { - "word": "gradually", - "freq": 1.62e-05 - }, - { - "word": "highlight", - "freq": 1.62e-05 - }, - { - "word": "identical", - "freq": 1.62e-05 - }, - { - "word": "scientist", - "freq": 1.62e-05 - }, - { - "word": "tennessee", - "freq": 1.62e-05 - }, - { - "word": "convicted", - "freq": 1.58e-05 - }, - { - "word": "developer", - "freq": 1.58e-05 - }, - { - "word": "diagnosis", - "freq": 1.58e-05 - }, - { - "word": "dismissed", - "freq": 1.58e-05 - }, - { - "word": "implement", - "freq": 1.58e-05 - }, - { - "word": "jerusalem", - "freq": 1.58e-05 - }, - { - "word": "marijuana", - "freq": 1.58e-05 - }, - { - "word": "pollution", - "freq": 1.58e-05 - }, - { - "word": "precisely", - "freq": 1.58e-05 - }, - { - "word": "privilege", - "freq": 1.58e-05 - }, - { - "word": "proposals", - "freq": 1.58e-05 - }, - { - "word": "confusion", - "freq": 1.55e-05 - }, - { - "word": "louisiana", - "freq": 1.55e-05 - }, - { - "word": "nightmare", - "freq": 1.55e-05 - }, - { - "word": "overnight", - "freq": 1.55e-05 - }, - { - "word": "partially", - "freq": 1.55e-05 - }, - { - "word": "spreading", - "freq": 1.55e-05 - }, - { - "word": "sustained", - "freq": 1.55e-05 - }, - { - "word": "accepting", - "freq": 1.51e-05 - }, - { - "word": "animation", - "freq": 1.51e-05 - }, - { - "word": "conscious", - "freq": 1.51e-05 - }, - { - "word": "displayed", - "freq": 1.51e-05 - }, - { - "word": "dominated", - "freq": 1.51e-05 - }, - { - "word": "nominated", - "freq": 1.51e-05 - }, - { - "word": "physician", - "freq": 1.51e-05 - }, - { - "word": "shoulders", - "freq": 1.51e-05 - }, - { - "word": "ukrainian", - "freq": 1.51e-05 - }, - { - "word": "anonymous", - "freq": 1.48e-05 - }, - { - "word": "chemicals", - "freq": 1.48e-05 - }, - { - "word": "expanding", - "freq": 1.48e-05 - }, - { - "word": "testimony", - "freq": 1.48e-05 - }, - { - "word": "accidents", - "freq": 1.45e-05 - }, - { - "word": "apologize", - "freq": 1.45e-05 - }, - { - "word": "gentleman", - "freq": 1.45e-05 - }, - { - "word": "liability", - "freq": 1.45e-05 - }, - { - "word": "manhattan", - "freq": 1.45e-05 - }, - { - "word": "perceived", - "freq": 1.45e-05 - }, - { - "word": "realistic", - "freq": 1.45e-05 - }, - { - "word": "vancouver", - "freq": 1.45e-05 - }, - { - "word": "admission", - "freq": 1.41e-05 - }, - { - "word": "appearing", - "freq": 1.41e-05 - }, - { - "word": "believing", - "freq": 1.41e-05 - }, - { - "word": "classroom", - "freq": 1.41e-05 - }, - { - "word": "eliminate", - "freq": 1.41e-05 - }, - { - "word": "incidents", - "freq": 1.41e-05 - }, - { - "word": "portfolio", - "freq": 1.41e-05 - }, - { - "word": "replacing", - "freq": 1.41e-05 - }, - { - "word": "screening", - "freq": 1.41e-05 - }, - { - "word": "southeast", - "freq": 1.41e-05 - }, - { - "word": "suspected", - "freq": 1.41e-05 - }, - { - "word": "violation", - "freq": 1.41e-05 - }, - { - "word": "addiction", - "freq": 1.38e-05 - }, - { - "word": "depressed", - "freq": 1.38e-05 - }, - { - "word": "disorders", - "freq": 1.38e-05 - }, - { - "word": "graduated", - "freq": 1.38e-05 - }, - { - "word": "inflation", - "freq": 1.38e-05 - }, - { - "word": "intensity", - "freq": 1.38e-05 - }, - { - "word": "inventory", - "freq": 1.38e-05 - }, - { - "word": "libraries", - "freq": 1.38e-05 - }, - { - "word": "migration", - "freq": 1.38e-05 - }, - { - "word": "motivated", - "freq": 1.38e-05 - }, - { - "word": "northwest", - "freq": 1.38e-05 - }, - { - "word": "provision", - "freq": 1.38e-05 - }, - { - "word": "releasing", - "freq": 1.38e-05 - }, - { - "word": "requiring", - "freq": 1.38e-05 - }, - { - "word": "succeeded", - "freq": 1.38e-05 - }, - { - "word": "wrestling", - "freq": 1.38e-05 - }, - { - "word": "addresses", - "freq": 1.35e-05 - }, - { - "word": "companion", - "freq": 1.35e-05 - }, - { - "word": "comparing", - "freq": 1.35e-05 - }, - { - "word": "demanding", - "freq": 1.35e-05 - }, - { - "word": "financing", - "freq": 1.35e-05 - }, - { - "word": "gentlemen", - "freq": 1.35e-05 - }, - { - "word": "mandatory", - "freq": 1.35e-05 - }, - { - "word": "permitted", - "freq": 1.35e-05 - }, - { - "word": "publisher", - "freq": 1.35e-05 - }, - { - "word": "sentences", - "freq": 1.35e-05 - }, - { - "word": "caribbean", - "freq": 1.32e-05 - }, - { - "word": "electoral", - "freq": 1.32e-05 - }, - { - "word": "excessive", - "freq": 1.32e-05 - }, - { - "word": "exercises", - "freq": 1.32e-05 - }, - { - "word": "governing", - "freq": 1.32e-05 - }, - { - "word": "interface", - "freq": 1.32e-05 - }, - { - "word": "predicted", - "freq": 1.32e-05 - }, - { - "word": "reflected", - "freq": 1.32e-05 - }, - { - "word": "strongest", - "freq": 1.32e-05 - }, - { - "word": "victorian", - "freq": 1.32e-05 - }, - { - "word": "alternate", - "freq": 1.29e-05 - }, - { - "word": "catherine", - "freq": 1.29e-05 - }, - { - "word": "cognitive", - "freq": 1.29e-05 - }, - { - "word": "editorial", - "freq": 1.29e-05 - }, - { - "word": "investing", - "freq": 1.29e-05 - }, - { - "word": "molecular", - "freq": 1.29e-05 - }, - { - "word": "promising", - "freq": 1.29e-05 - }, - { - "word": "purchases", - "freq": 1.29e-05 - }, - { - "word": "respected", - "freq": 1.29e-05 - }, - { - "word": "breakdown", - "freq": 1.26e-05 - }, - { - "word": "civilians", - "freq": 1.26e-05 - }, - { - "word": "conflicts", - "freq": 1.26e-05 - }, - { - "word": "consensus", - "freq": 1.26e-05 - }, - { - "word": "donations", - "freq": 1.26e-05 - }, - { - "word": "genuinely", - "freq": 1.26e-05 - }, - { - "word": "hurricane", - "freq": 1.26e-05 - }, - { - "word": "nutrition", - "freq": 1.26e-05 - }, - { - "word": "seemingly", - "freq": 1.26e-05 - }, - { - "word": "southwest", - "freq": 1.26e-05 - }, - { - "word": "unlimited", - "freq": 1.26e-05 - }, - { - "word": "delighted", - "freq": 1.23e-05 - }, - { - "word": "disappear", - "freq": 1.23e-05 - }, - { - "word": "invisible", - "freq": 1.23e-05 - }, - { - "word": "prevented", - "freq": 1.23e-05 - }, - { - "word": "sentenced", - "freq": 1.23e-05 - }, - { - "word": "surrender", - "freq": 1.23e-05 - }, - { - "word": "architect", - "freq": 1.2e-05 - }, - { - "word": "exhausted", - "freq": 1.2e-05 - }, - { - "word": "organised", - "freq": 1.2e-05 - }, - { - "word": "particles", - "freq": 1.2e-05 - }, - { - "word": "penalties", - "freq": 1.2e-05 - }, - { - "word": "societies", - "freq": 1.2e-05 - }, - { - "word": "struggles", - "freq": 1.2e-05 - }, - { - "word": "variation", - "freq": 1.2e-05 - }, - { - "word": "warehouse", - "freq": 1.2e-05 - }, - { - "word": "affecting", - "freq": 1.17e-05 - }, - { - "word": "answering", - "freq": 1.17e-05 - }, - { - "word": "commented", - "freq": 1.17e-05 - }, - { - "word": "computing", - "freq": 1.17e-05 - }, - { - "word": "continent", - "freq": 1.17e-05 - }, - { - "word": "emissions", - "freq": 1.17e-05 - }, - { - "word": "measuring", - "freq": 1.17e-05 - }, - { - "word": "miserable", - "freq": 1.17e-05 - }, - { - "word": "newcastle", - "freq": 1.17e-05 - }, - { - "word": "preserved", - "freq": 1.17e-05 - }, - { - "word": "prospects", - "freq": 1.17e-05 - }, - { - "word": "supporter", - "freq": 1.17e-05 - }, - { - "word": "testament", - "freq": 1.17e-05 - }, - { - "word": "allegedly", - "freq": 1.15e-05 - }, - { - "word": "ambulance", - "freq": 1.15e-05 - }, - { - "word": "batteries", - "freq": 1.15e-05 - }, - { - "word": "cigarette", - "freq": 1.15e-05 - }, - { - "word": "detection", - "freq": 1.15e-05 - }, - { - "word": "elaborate", - "freq": 1.15e-05 - }, - { - "word": "expertise", - "freq": 1.15e-05 - }, - { - "word": "exploring", - "freq": 1.15e-05 - }, - { - "word": "instances", - "freq": 1.15e-05 - }, - { - "word": "intensive", - "freq": 1.15e-05 - }, - { - "word": "northeast", - "freq": 1.15e-05 - }, - { - "word": "qualities", - "freq": 1.15e-05 - }, - { - "word": "specified", - "freq": 1.15e-05 - }, - { - "word": "switching", - "freq": 1.15e-05 - }, - { - "word": "tolerance", - "freq": 1.15e-05 - }, - { - "word": "belonging", - "freq": 1.12e-05 - }, - { - "word": "diagnosed", - "freq": 1.12e-05 - }, - { - "word": "authentic", - "freq": 1.1e-05 - }, - { - "word": "backwards", - "freq": 1.1e-05 - }, - { - "word": "extending", - "freq": 1.1e-05 - }, - { - "word": "ignorance", - "freq": 1.1e-05 - }, - { - "word": "immigrant", - "freq": 1.1e-05 - }, - { - "word": "inspiring", - "freq": 1.1e-05 - }, - { - "word": "invention", - "freq": 1.1e-05 - }, - { - "word": "placement", - "freq": 1.1e-05 - }, - { - "word": "transform", - "freq": 1.1e-05 - }, - { - "word": "witnessed", - "freq": 1.1e-05 - }, - { - "word": "workplace", - "freq": 1.1e-05 - }, - { - "word": "yorkshire", - "freq": 1.1e-05 - }, - { - "word": "achieving", - "freq": 1.07e-05 - }, - { - "word": "amsterdam", - "freq": 1.07e-05 - }, - { - "word": "considers", - "freq": 1.07e-05 - }, - { - "word": "container", - "freq": 1.07e-05 - }, - { - "word": "paragraph", - "freq": 1.07e-05 - }, - { - "word": "peninsula", - "freq": 1.07e-05 - }, - { - "word": "remainder", - "freq": 1.07e-05 - }, - { - "word": "sentiment", - "freq": 1.07e-05 - }, - { - "word": "surviving", - "freq": 1.07e-05 - }, - { - "word": "threshold", - "freq": 1.07e-05 - }, - { - "word": "aesthetic", - "freq": 1.05e-05 - }, - { - "word": "algorithm", - "freq": 1.05e-05 - }, - { - "word": "confusing", - "freq": 1.05e-05 - }, - { - "word": "dimension", - "freq": 1.05e-05 - }, - { - "word": "favorites", - "freq": 1.05e-05 - }, - { - "word": "graduates", - "freq": 1.05e-05 - }, - { - "word": "inclusion", - "freq": 1.05e-05 - }, - { - "word": "isolation", - "freq": 1.05e-05 - }, - { - "word": "justified", - "freq": 1.05e-05 - }, - { - "word": "machinery", - "freq": 1.05e-05 - }, - { - "word": "subscribe", - "freq": 1.05e-05 - }, - { - "word": "transfers", - "freq": 1.05e-05 - }, - { - "word": "activated", - "freq": 1.02e-05 - }, - { - "word": "attitudes", - "freq": 1.02e-05 - }, - { - "word": "hampshire", - "freq": 1.02e-05 - }, - { - "word": "milwaukee", - "freq": 1.02e-05 - }, - { - "word": "orchestra", - "freq": 1.02e-05 - }, - { - "word": "pakistani", - "freq": 1.02e-05 - }, - { - "word": "precision", - "freq": 1.02e-05 - }, - { - "word": "privately", - "freq": 1.02e-05 - }, - { - "word": "reasoning", - "freq": 1.02e-05 - }, - { - "word": "specially", - "freq": 1.02e-05 - }, - { - "word": "struggled", - "freq": 1.02e-05 - }, - { - "word": "voluntary", - "freq": 1.02e-05 - }, - { - "word": "contacted", - "freq": 1e-05 - }, - { - "word": "decreased", - "freq": 1e-05 - }, - { - "word": "jefferson", - "freq": 1e-05 - }, - { - "word": "magnitude", - "freq": 1e-05 - }, - { - "word": "publicity", - "freq": 1e-05 - }, - { - "word": "telegraph", - "freq": 1e-05 - }, - { - "word": "affiliate", - "freq": 9.77e-06 - }, - { - "word": "cathedral", - "freq": 9.77e-06 - }, - { - "word": "initiated", - "freq": 9.77e-06 - }, - { - "word": "injection", - "freq": 9.77e-06 - }, - { - "word": "launching", - "freq": 9.77e-06 - }, - { - "word": "negotiate", - "freq": 9.77e-06 - }, - { - "word": "palestine", - "freq": 9.77e-06 - }, - { - "word": "projected", - "freq": 9.77e-06 - }, - { - "word": "quarterly", - "freq": 9.77e-06 - }, - { - "word": "resistant", - "freq": 9.77e-06 - }, - { - "word": "successor", - "freq": 9.77e-06 - }, - { - "word": "targeting", - "freq": 9.77e-06 - }, - { - "word": "triggered", - "freq": 9.77e-06 - }, - { - "word": "uncertain", - "freq": 9.77e-06 - }, - { - "word": "colleague", - "freq": 9.55e-06 - }, - { - "word": "construct", - "freq": 9.55e-06 - }, - { - "word": "defendant", - "freq": 9.55e-06 - }, - { - "word": "geography", - "freq": 9.55e-06 - }, - { - "word": "nashville", - "freq": 9.55e-06 - }, - { - "word": "regulated", - "freq": 9.55e-06 - }, - { - "word": "travelled", - "freq": 9.55e-06 - }, - { - "word": "condemned", - "freq": 9.33e-06 - }, - { - "word": "curiosity", - "freq": 9.33e-06 - }, - { - "word": "explosive", - "freq": 9.33e-06 - }, - { - "word": "fortunate", - "freq": 9.33e-06 - }, - { - "word": "incentive", - "freq": 9.33e-06 - }, - { - "word": "inclusive", - "freq": 9.33e-06 - }, - { - "word": "memorable", - "freq": 9.33e-06 - }, - { - "word": "occurring", - "freq": 9.33e-06 - }, - { - "word": "realizing", - "freq": 9.33e-06 - }, - { - "word": "revealing", - "freq": 9.33e-06 - }, - { - "word": "scattered", - "freq": 9.33e-06 - }, - { - "word": "sexuality", - "freq": 9.33e-06 - }, - { - "word": "suspicion", - "freq": 9.33e-06 - }, - { - "word": "therapist", - "freq": 9.33e-06 - }, - { - "word": "variables", - "freq": 9.33e-06 - }, - { - "word": "wholesale", - "freq": 9.33e-06 - }, - { - "word": "artillery", - "freq": 9.12e-06 - }, - { - "word": "assembled", - "freq": 9.12e-06 - }, - { - "word": "clearance", - "freq": 9.12e-06 - }, - { - "word": "countless", - "freq": 9.12e-06 - }, - { - "word": "detention", - "freq": 9.12e-06 - }, - { - "word": "forbidden", - "freq": 9.12e-06 - }, - { - "word": "kidnapped", - "freq": 9.12e-06 - }, - { - "word": "maintains", - "freq": 9.12e-06 - }, - { - "word": "packaging", - "freq": 9.12e-06 - }, - { - "word": "processed", - "freq": 9.12e-06 - }, - { - "word": "touchdown", - "freq": 9.12e-06 - }, - { - "word": "underwear", - "freq": 9.12e-06 - }, - { - "word": "ambitious", - "freq": 8.91e-06 - }, - { - "word": "appealing", - "freq": 8.91e-06 - }, - { - "word": "collision", - "freq": 8.91e-06 - }, - { - "word": "corrected", - "freq": 8.91e-06 - }, - { - "word": "factories", - "freq": 8.91e-06 - }, - { - "word": "frederick", - "freq": 8.91e-06 - }, - { - "word": "licensing", - "freq": 8.91e-06 - }, - { - "word": "messenger", - "freq": 8.91e-06 - }, - { - "word": "norwegian", - "freq": 8.91e-06 - }, - { - "word": "salvation", - "freq": 8.91e-06 - }, - { - "word": "sanctions", - "freq": 8.91e-06 - }, - { - "word": "sovereign", - "freq": 8.91e-06 - }, - { - "word": "synthetic", - "freq": 8.91e-06 - }, - { - "word": "varieties", - "freq": 8.91e-06 - }, - { - "word": "aggregate", - "freq": 8.71e-06 - }, - { - "word": "announces", - "freq": 8.71e-06 - }, - { - "word": "composite", - "freq": 8.71e-06 - }, - { - "word": "decorated", - "freq": 8.71e-06 - }, - { - "word": "delegates", - "freq": 8.71e-06 - }, - { - "word": "fashioned", - "freq": 8.71e-06 - }, - { - "word": "generator", - "freq": 8.71e-06 - }, - { - "word": "incorrect", - "freq": 8.71e-06 - }, - { - "word": "rebellion", - "freq": 8.71e-06 - }, - { - "word": "recipient", - "freq": 8.71e-06 - }, - { - "word": "terrified", - "freq": 8.71e-06 - }, - { - "word": "vegetable", - "freq": 8.71e-06 - }, - { - "word": "workforce", - "freq": 8.71e-06 - }, - { - "word": "butterfly", - "freq": 8.51e-06 - }, - { - "word": "directory", - "freq": 8.51e-06 - }, - { - "word": "discharge", - "freq": 8.51e-06 - }, - { - "word": "discusses", - "freq": 8.51e-06 - }, - { - "word": "henderson", - "freq": 8.51e-06 - }, - { - "word": "inability", - "freq": 8.51e-06 - }, - { - "word": "leicester", - "freq": 8.51e-06 - }, - { - "word": "obtaining", - "freq": 8.51e-06 - }, - { - "word": "remembers", - "freq": 8.51e-06 - }, - { - "word": "sanctuary", - "freq": 8.51e-06 - }, - { - "word": "translate", - "freq": 8.51e-06 - }, - { - "word": "treasurer", - "freq": 8.51e-06 - }, - { - "word": "venezuela", - "freq": 8.51e-06 - }, - { - "word": "affection", - "freq": 8.32e-06 - }, - { - "word": "collapsed", - "freq": 8.32e-06 - }, - { - "word": "competent", - "freq": 8.32e-06 - }, - { - "word": "excluding", - "freq": 8.32e-06 - }, - { - "word": "gratitude", - "freq": 8.32e-06 - }, - { - "word": "indicator", - "freq": 8.32e-06 - }, - { - "word": "molecules", - "freq": 8.32e-06 - }, - { - "word": "recognise", - "freq": 8.32e-06 - }, - { - "word": "reviewing", - "freq": 8.32e-06 - }, - { - "word": "sculpture", - "freq": 8.32e-06 - }, - { - "word": "wikipedia", - "freq": 8.32e-06 - }, - { - "word": "alcoholic", - "freq": 8.13e-06 - }, - { - "word": "automated", - "freq": 8.13e-06 - }, - { - "word": "catalogue", - "freq": 8.13e-06 - }, - { - "word": "christine", - "freq": 8.13e-06 - }, - { - "word": "collector", - "freq": 8.13e-06 - }, - { - "word": "consisted", - "freq": 8.13e-06 - }, - { - "word": "enjoyable", - "freq": 8.13e-06 - }, - { - "word": "headlines", - "freq": 8.13e-06 - }, - { - "word": "inherited", - "freq": 8.13e-06 - }, - { - "word": "necessity", - "freq": 8.13e-06 - }, - { - "word": "renewable", - "freq": 8.13e-06 - }, - { - "word": "sheffield", - "freq": 8.13e-06 - }, - { - "word": "aftermath", - "freq": 7.94e-06 - }, - { - "word": "armstrong", - "freq": 7.94e-06 - }, - { - "word": "champagne", - "freq": 7.94e-06 - }, - { - "word": "combining", - "freq": 7.94e-06 - }, - { - "word": "directing", - "freq": 7.94e-06 - }, - { - "word": "elevation", - "freq": 7.94e-06 - }, - { - "word": "historian", - "freq": 7.94e-06 - }, - { - "word": "marriages", - "freq": 7.94e-06 - }, - { - "word": "mortality", - "freq": 7.94e-06 - }, - { - "word": "obsession", - "freq": 7.94e-06 - }, - { - "word": "petroleum", - "freq": 7.94e-06 - }, - { - "word": "rejection", - "freq": 7.94e-06 - }, - { - "word": "reservoir", - "freq": 7.94e-06 - }, - { - "word": "sebastian", - "freq": 7.94e-06 - }, - { - "word": "sensation", - "freq": 7.94e-06 - }, - { - "word": "spotlight", - "freq": 7.94e-06 - }, - { - "word": "withdrawn", - "freq": 7.94e-06 - }, - { - "word": "behaviors", - "freq": 7.76e-06 - }, - { - "word": "biography", - "freq": 7.76e-06 - }, - { - "word": "consuming", - "freq": 7.76e-06 - }, - { - "word": "designing", - "freq": 7.76e-06 - }, - { - "word": "economies", - "freq": 7.76e-06 - }, - { - "word": "holocaust", - "freq": 7.76e-06 - }, - { - "word": "obamacare", - "freq": 7.76e-06 - }, - { - "word": "roosevelt", - "freq": 7.76e-06 - }, - { - "word": "sincerely", - "freq": 7.76e-06 - }, - { - "word": "specialty", - "freq": 7.76e-06 - }, - { - "word": "surprises", - "freq": 7.76e-06 - }, - { - "word": "trademark", - "freq": 7.76e-06 - }, - { - "word": "utilities", - "freq": 7.76e-06 - }, - { - "word": "interfere", - "freq": 7.59e-06 - }, - { - "word": "obstacles", - "freq": 7.59e-06 - }, - { - "word": "pointless", - "freq": 7.59e-06 - }, - { - "word": "proximity", - "freq": 7.59e-06 - }, - { - "word": "scenarios", - "freq": 7.59e-06 - }, - { - "word": "selective", - "freq": 7.59e-06 - }, - { - "word": "socialism", - "freq": 7.59e-06 - }, - { - "word": "stressful", - "freq": 7.59e-06 - }, - { - "word": "stretched", - "freq": 7.59e-06 - }, - { - "word": "billboard", - "freq": 7.41e-06 - }, - { - "word": "calculate", - "freq": 7.41e-06 - }, - { - "word": "conceived", - "freq": 7.41e-06 - }, - { - "word": "dissolved", - "freq": 7.41e-06 - }, - { - "word": "economist", - "freq": 7.41e-06 - }, - { - "word": "europeans", - "freq": 7.41e-06 - }, - { - "word": "examining", - "freq": 7.41e-06 - }, - { - "word": "illegally", - "freq": 7.41e-06 - }, - { - "word": "parenting", - "freq": 7.41e-06 - }, - { - "word": "proceeded", - "freq": 7.41e-06 - }, - { - "word": "processor", - "freq": 7.41e-06 - }, - { - "word": "robertson", - "freq": 7.41e-06 - }, - { - "word": "seventeen", - "freq": 7.41e-06 - }, - { - "word": "abundance", - "freq": 7.24e-06 - }, - { - "word": "advancing", - "freq": 7.24e-06 - }, - { - "word": "commodity", - "freq": 7.24e-06 - }, - { - "word": "exhibited", - "freq": 7.24e-06 - }, - { - "word": "fictional", - "freq": 7.24e-06 - }, - { - "word": "judgement", - "freq": 7.24e-06 - }, - { - "word": "judiciary", - "freq": 7.24e-06 - }, - { - "word": "logistics", - "freq": 7.24e-06 - }, - { - "word": "nonprofit", - "freq": 7.24e-06 - }, - { - "word": "operative", - "freq": 7.24e-06 - }, - { - "word": "portraits", - "freq": 7.24e-06 - }, - { - "word": "subjected", - "freq": 7.24e-06 - }, - { - "word": "allowance", - "freq": 7.08e-06 - }, - { - "word": "apologies", - "freq": 7.08e-06 - }, - { - "word": "arbitrary", - "freq": 7.08e-06 - }, - { - "word": "comprises", - "freq": 7.08e-06 - }, - { - "word": "desirable", - "freq": 7.08e-06 - }, - { - "word": "favorable", - "freq": 7.08e-06 - }, - { - "word": "galleries", - "freq": 7.08e-06 - }, - { - "word": "portrayed", - "freq": 7.08e-06 - }, - { - "word": "possessed", - "freq": 7.08e-06 - }, - { - "word": "princeton", - "freq": 7.08e-06 - }, - { - "word": "recession", - "freq": 7.08e-06 - }, - { - "word": "sequences", - "freq": 7.08e-06 - }, - { - "word": "superhero", - "freq": 7.08e-06 - }, - { - "word": "catholics", - "freq": 6.92e-06 - }, - { - "word": "malaysian", - "freq": 6.92e-06 - }, - { - "word": "paperwork", - "freq": 6.92e-06 - }, - { - "word": "poisoning", - "freq": 6.92e-06 - }, - { - "word": "repeating", - "freq": 6.92e-06 - }, - { - "word": "slaughter", - "freq": 6.92e-06 - }, - { - "word": "synthesis", - "freq": 6.92e-06 - }, - { - "word": "afterward", - "freq": 6.76e-06 - }, - { - "word": "allocated", - "freq": 6.76e-06 - }, - { - "word": "charities", - "freq": 6.76e-06 - }, - { - "word": "churchill", - "freq": 6.76e-06 - }, - { - "word": "declining", - "freq": 6.76e-06 - }, - { - "word": "discourse", - "freq": 6.76e-06 - }, - { - "word": "distances", - "freq": 6.76e-06 - }, - { - "word": "dominance", - "freq": 6.76e-06 - }, - { - "word": "entertain", - "freq": 6.76e-06 - }, - { - "word": "evaluated", - "freq": 6.76e-06 - }, - { - "word": "fireworks", - "freq": 6.76e-06 - }, - { - "word": "innocence", - "freq": 6.76e-06 - }, - { - "word": "katherine", - "freq": 6.76e-06 - }, - { - "word": "livestock", - "freq": 6.76e-06 - }, - { - "word": "notorious", - "freq": 6.76e-06 - }, - { - "word": "oversight", - "freq": 6.76e-06 - }, - { - "word": "prototype", - "freq": 6.76e-06 - }, - { - "word": "strengths", - "freq": 6.76e-06 - }, - { - "word": "superstar", - "freq": 6.76e-06 - }, - { - "word": "victories", - "freq": 6.76e-06 - }, - { - "word": "accounted", - "freq": 6.61e-06 - }, - { - "word": "certainty", - "freq": 6.61e-06 - }, - { - "word": "christina", - "freq": 6.61e-06 - }, - { - "word": "comprised", - "freq": 6.61e-06 - }, - { - "word": "declaring", - "freq": 6.61e-06 - }, - { - "word": "educators", - "freq": 6.61e-06 - }, - { - "word": "fragments", - "freq": 6.61e-06 - }, - { - "word": "offerings", - "freq": 6.61e-06 - }, - { - "word": "practiced", - "freq": 6.61e-06 - }, - { - "word": "testified", - "freq": 6.61e-06 - }, - { - "word": "worthless", - "freq": 6.61e-06 - }, - { - "word": "accompany", - "freq": 6.46e-06 - }, - { - "word": "assurance", - "freq": 6.46e-06 - }, - { - "word": "battalion", - "freq": 6.46e-06 - }, - { - "word": "bulgarian", - "freq": 6.46e-06 - }, - { - "word": "carpenter", - "freq": 6.46e-06 - }, - { - "word": "enjoyment", - "freq": 6.46e-06 - }, - { - "word": "healthier", - "freq": 6.46e-06 - }, - { - "word": "honorable", - "freq": 6.46e-06 - }, - { - "word": "injustice", - "freq": 6.46e-06 - }, - { - "word": "inquiries", - "freq": 6.46e-06 - }, - { - "word": "interpret", - "freq": 6.46e-06 - }, - { - "word": "prolonged", - "freq": 6.46e-06 - }, - { - "word": "recruited", - "freq": 6.46e-06 - }, - { - "word": "reluctant", - "freq": 6.46e-06 - }, - { - "word": "retention", - "freq": 6.46e-06 - }, - { - "word": "rochester", - "freq": 6.46e-06 - }, - { - "word": "schedules", - "freq": 6.46e-06 - }, - { - "word": "selecting", - "freq": 6.46e-06 - }, - { - "word": "stephanie", - "freq": 6.46e-06 - }, - { - "word": "submarine", - "freq": 6.46e-06 - }, - { - "word": "acquiring", - "freq": 6.31e-06 - }, - { - "word": "additions", - "freq": 6.31e-06 - }, - { - "word": "admitting", - "freq": 6.31e-06 - }, - { - "word": "balancing", - "freq": 6.31e-06 - }, - { - "word": "communism", - "freq": 6.31e-06 - }, - { - "word": "conductor", - "freq": 6.31e-06 - }, - { - "word": "disclosed", - "freq": 6.31e-06 - }, - { - "word": "displaced", - "freq": 6.31e-06 - }, - { - "word": "disturbed", - "freq": 6.31e-06 - }, - { - "word": "freestyle", - "freq": 6.31e-06 - }, - { - "word": "messaging", - "freq": 6.31e-06 - }, - { - "word": "microwave", - "freq": 6.31e-06 - }, - { - "word": "performer", - "freq": 6.31e-06 - }, - { - "word": "primitive", - "freq": 6.31e-06 - }, - { - "word": "retrieved", - "freq": 6.31e-06 - }, - { - "word": "righteous", - "freq": 6.31e-06 - }, - { - "word": "twentieth", - "freq": 6.31e-06 - }, - { - "word": "unrelated", - "freq": 6.31e-06 - }, - { - "word": "wandering", - "freq": 6.31e-06 - }, - { - "word": "assisting", - "freq": 6.17e-06 - }, - { - "word": "constable", - "freq": 6.17e-06 - }, - { - "word": "cooperate", - "freq": 6.17e-06 - }, - { - "word": "counselor", - "freq": 6.17e-06 - }, - { - "word": "discounts", - "freq": 6.17e-06 - }, - { - "word": "hungarian", - "freq": 6.17e-06 - }, - { - "word": "imaginary", - "freq": 6.17e-06 - }, - { - "word": "patriotic", - "freq": 6.17e-06 - }, - { - "word": "populated", - "freq": 6.17e-06 - }, - { - "word": "prejudice", - "freq": 6.17e-06 - }, - { - "word": "probation", - "freq": 6.17e-06 - }, - { - "word": "rendering", - "freq": 6.17e-06 - }, - { - "word": "spokesman", - "freq": 6.17e-06 - }, - { - "word": "traumatic", - "freq": 6.17e-06 - }, - { - "word": "daughters", - "freq": 6.03e-06 - }, - { - "word": "academics", - "freq": 6.03e-06 - }, - { - "word": "alignment", - "freq": 6.03e-06 - }, - { - "word": "apparatus", - "freq": 6.03e-06 - }, - { - "word": "commenced", - "freq": 6.03e-06 - }, - { - "word": "ecosystem", - "freq": 6.03e-06 - }, - { - "word": "fertility", - "freq": 6.03e-06 - }, - { - "word": "hierarchy", - "freq": 6.03e-06 - }, - { - "word": "lancaster", - "freq": 6.03e-06 - }, - { - "word": "neglected", - "freq": 6.03e-06 - }, - { - "word": "photoshop", - "freq": 6.03e-06 - }, - { - "word": "precedent", - "freq": 6.03e-06 - }, - { - "word": "prevalent", - "freq": 6.03e-06 - }, - { - "word": "retaining", - "freq": 6.03e-06 - }, - { - "word": "sociology", - "freq": 6.03e-06 - }, - { - "word": "splitting", - "freq": 6.03e-06 - }, - { - "word": "analytics", - "freq": 5.89e-06 - }, - { - "word": "attribute", - "freq": 5.89e-06 - }, - { - "word": "commanded", - "freq": 5.89e-06 - }, - { - "word": "contested", - "freq": 5.89e-06 - }, - { - "word": "equations", - "freq": 5.89e-06 - }, - { - "word": "fulfilled", - "freq": 5.89e-06 - }, - { - "word": "incumbent", - "freq": 5.89e-06 - }, - { - "word": "objection", - "freq": 5.89e-06 - }, - { - "word": "offspring", - "freq": 5.89e-06 - }, - { - "word": "persuaded", - "freq": 5.89e-06 - }, - { - "word": "presenter", - "freq": 5.89e-06 - }, - { - "word": "scripture", - "freq": 5.89e-06 - }, - { - "word": "slightest", - "freq": 5.89e-06 - }, - { - "word": "specimens", - "freq": 5.89e-06 - }, - { - "word": "valentine", - "freq": 5.89e-06 - }, - { - "word": "welcoming", - "freq": 5.89e-06 - }, - { - "word": "capturing", - "freq": 5.75e-06 - }, - { - "word": "concludes", - "freq": 5.75e-06 - }, - { - "word": "disasters", - "freq": 5.75e-06 - }, - { - "word": "mentality", - "freq": 5.75e-06 - }, - { - "word": "minecraft", - "freq": 5.75e-06 - }, - { - "word": "protocols", - "freq": 5.75e-06 - }, - { - "word": "recycling", - "freq": 5.75e-06 - }, - { - "word": "stainless", - "freq": 5.75e-06 - }, - { - "word": "statutory", - "freq": 5.75e-06 - }, - { - "word": "stockholm", - "freq": 5.75e-06 - }, - { - "word": "teachings", - "freq": 5.75e-06 - }, - { - "word": "unusually", - "freq": 5.75e-06 - }, - { - "word": "assaulted", - "freq": 5.62e-06 - }, - { - "word": "blessings", - "freq": 5.62e-06 - }, - { - "word": "bluetooth", - "freq": 5.62e-06 - }, - { - "word": "borrowing", - "freq": 5.62e-06 - }, - { - "word": "limestone", - "freq": 5.62e-06 - }, - { - "word": "monitored", - "freq": 5.62e-06 - }, - { - "word": "observing", - "freq": 5.62e-06 - }, - { - "word": "relevance", - "freq": 5.62e-06 - }, - { - "word": "shattered", - "freq": 5.62e-06 - }, - { - "word": "successes", - "freq": 5.62e-06 - }, - { - "word": "supplying", - "freq": 5.62e-06 - }, - { - "word": "telescope", - "freq": 5.62e-06 - }, - { - "word": "thickness", - "freq": 5.62e-06 - }, - { - "word": "threatens", - "freq": 5.62e-06 - }, - { - "word": "valuation", - "freq": 5.62e-06 - }, - { - "word": "villagers", - "freq": 5.62e-06 - }, - { - "word": "amusement", - "freq": 5.5e-06 - }, - { - "word": "assessing", - "freq": 5.5e-06 - }, - { - "word": "auxiliary", - "freq": 5.5e-06 - }, - { - "word": "descended", - "freq": 5.5e-06 - }, - { - "word": "emergence", - "freq": 5.5e-06 - }, - { - "word": "endurance", - "freq": 5.5e-06 - }, - { - "word": "exchanged", - "freq": 5.5e-06 - }, - { - "word": "jewellery", - "freq": 5.5e-06 - }, - { - "word": "phenomena", - "freq": 5.5e-06 - }, - { - "word": "pneumonia", - "freq": 5.5e-06 - }, - { - "word": "policeman", - "freq": 5.5e-06 - }, - { - "word": "postponed", - "freq": 5.5e-06 - }, - { - "word": "preceding", - "freq": 5.5e-06 - }, - { - "word": "rewarding", - "freq": 5.5e-06 - }, - { - "word": "storyline", - "freq": 5.5e-06 - }, - { - "word": "subsidies", - "freq": 5.5e-06 - }, - { - "word": "unchanged", - "freq": 5.5e-06 - }, - { - "word": "aerospace", - "freq": 5.37e-06 - }, - { - "word": "aluminium", - "freq": 5.37e-06 - }, - { - "word": "arlington", - "freq": 5.37e-06 - }, - { - "word": "averaging", - "freq": 5.37e-06 - }, - { - "word": "bacterial", - "freq": 5.37e-06 - }, - { - "word": "confessed", - "freq": 5.37e-06 - }, - { - "word": "employing", - "freq": 5.37e-06 - }, - { - "word": "ethnicity", - "freq": 5.37e-06 - }, - { - "word": "mysteries", - "freq": 5.37e-06 - }, - { - "word": "paramount", - "freq": 5.37e-06 - }, - { - "word": "reminding", - "freq": 5.37e-06 - }, - { - "word": "schooling", - "freq": 5.37e-06 - }, - { - "word": "uncovered", - "freq": 5.37e-06 - }, - { - "word": "undertake", - "freq": 5.37e-06 - }, - { - "word": "violating", - "freq": 5.37e-06 - }, - { - "word": "artifacts", - "freq": 5.25e-06 - }, - { - "word": "awakening", - "freq": 5.25e-06 - }, - { - "word": "bilateral", - "freq": 5.25e-06 - }, - { - "word": "compelled", - "freq": 5.25e-06 - }, - { - "word": "concealed", - "freq": 5.25e-06 - }, - { - "word": "dismissal", - "freq": 5.25e-06 - }, - { - "word": "hydraulic", - "freq": 5.25e-06 - }, - { - "word": "incapable", - "freq": 5.25e-06 - }, - { - "word": "integrate", - "freq": 5.25e-06 - }, - { - "word": "miniature", - "freq": 5.25e-06 - }, - { - "word": "murdering", - "freq": 5.25e-06 - }, - { - "word": "presently", - "freq": 5.25e-06 - }, - { - "word": "restoring", - "freq": 5.25e-06 - }, - { - "word": "unhealthy", - "freq": 5.25e-06 - }, - { - "word": "unpopular", - "freq": 5.25e-06 - }, - { - "word": "adjusting", - "freq": 5.13e-06 - }, - { - "word": "analyzing", - "freq": 5.13e-06 - }, - { - "word": "diplomacy", - "freq": 5.13e-06 - }, - { - "word": "directive", - "freq": 5.13e-06 - }, - { - "word": "energetic", - "freq": 5.13e-06 - }, - { - "word": "greatness", - "freq": 5.13e-06 - }, - { - "word": "hazardous", - "freq": 5.13e-06 - }, - { - "word": "induction", - "freq": 5.13e-06 - }, - { - "word": "masculine", - "freq": 5.13e-06 - }, - { - "word": "milestone", - "freq": 5.13e-06 - }, - { - "word": "mushrooms", - "freq": 5.13e-06 - }, - { - "word": "nutrients", - "freq": 5.13e-06 - }, - { - "word": "recurring", - "freq": 5.13e-06 - }, - { - "word": "resembles", - "freq": 5.13e-06 - }, - { - "word": "rodriguez", - "freq": 5.13e-06 - }, - { - "word": "routinely", - "freq": 5.13e-06 - }, - { - "word": "stationed", - "freq": 5.13e-06 - }, - { - "word": "acclaimed", - "freq": 5.01e-06 - }, - { - "word": "boulevard", - "freq": 5.01e-06 - }, - { - "word": "chronicle", - "freq": 5.01e-06 - }, - { - "word": "dividends", - "freq": 5.01e-06 - }, - { - "word": "histories", - "freq": 5.01e-06 - }, - { - "word": "insulting", - "freq": 5.01e-06 - }, - { - "word": "irregular", - "freq": 5.01e-06 - }, - { - "word": "modelling", - "freq": 5.01e-06 - }, - { - "word": "premature", - "freq": 5.01e-06 - }, - { - "word": "residency", - "freq": 5.01e-06 - }, - { - "word": "stretches", - "freq": 5.01e-06 - }, - { - "word": "unwilling", - "freq": 5.01e-06 - }, - { - "word": "whichever", - "freq": 5.01e-06 - }, - { - "word": "bangalore", - "freq": 4.9e-06 - }, - { - "word": "broadband", - "freq": 4.9e-06 - }, - { - "word": "emphasize", - "freq": 4.9e-06 - }, - { - "word": "everytime", - "freq": 4.9e-06 - }, - { - "word": "fisheries", - "freq": 4.9e-06 - }, - { - "word": "footsteps", - "freq": 4.9e-06 - }, - { - "word": "intervals", - "freq": 4.9e-06 - }, - { - "word": "liberties", - "freq": 4.9e-06 - }, - { - "word": "macdonald", - "freq": 4.9e-06 - }, - { - "word": "mortgages", - "freq": 4.9e-06 - }, - { - "word": "neighbour", - "freq": 4.9e-06 - }, - { - "word": "patterson", - "freq": 4.9e-06 - }, - { - "word": "preaching", - "freq": 4.9e-06 - }, - { - "word": "proposing", - "freq": 4.9e-06 - }, - { - "word": "shootings", - "freq": 4.9e-06 - }, - { - "word": "solicitor", - "freq": 4.9e-06 - }, - { - "word": "sophomore", - "freq": 4.9e-06 - }, - { - "word": "wallpaper", - "freq": 4.9e-06 - }, - { - "word": "countdown", - "freq": 4.79e-06 - }, - { - "word": "exclusion", - "freq": 4.79e-06 - }, - { - "word": "exploited", - "freq": 4.79e-06 - }, - { - "word": "extracted", - "freq": 4.79e-06 - }, - { - "word": "freelance", - "freq": 4.79e-06 - }, - { - "word": "headaches", - "freq": 4.79e-06 - }, - { - "word": "honeymoon", - "freq": 4.79e-06 - }, - { - "word": "perimeter", - "freq": 4.79e-06 - }, - { - "word": "protector", - "freq": 4.79e-06 - }, - { - "word": "rehearsal", - "freq": 4.79e-06 - }, - { - "word": "reinforce", - "freq": 4.79e-06 - }, - { - "word": "skeptical", - "freq": 4.79e-06 - }, - { - "word": "unanimous", - "freq": 4.79e-06 - }, - { - "word": "vengeance", - "freq": 4.79e-06 - }, - { - "word": "bathrooms", - "freq": 4.68e-06 - }, - { - "word": "benefited", - "freq": 4.68e-06 - }, - { - "word": "cosmetics", - "freq": 4.68e-06 - }, - { - "word": "embracing", - "freq": 4.68e-06 - }, - { - "word": "gardening", - "freq": 4.68e-06 - }, - { - "word": "generates", - "freq": 4.68e-06 - } - ], - "10": [ - { - "word": "government", - "freq": 0.000372 - }, - { - "word": "everything", - "freq": 0.000347 - }, - { - "word": "university", - "freq": 0.000245 - }, - { - "word": "understand", - "freq": 0.000234 - }, - { - "word": "experience", - "freq": 0.000186 - }, - { - "word": "department", - "freq": 0.00017 - }, - { - "word": "especially", - "freq": 0.000162 - }, - { - "word": "themselves", - "freq": 0.000145 - }, - { - "word": "production", - "freq": 0.000138 - }, - { - "word": "management", - "freq": 0.000135 - }, - { - "word": "technology", - "freq": 0.000123 - }, - { - "word": "considered", - "freq": 0.00012 - }, - { - "word": "washington", - "freq": 0.00012 - }, - { - "word": "conference", - "freq": 0.000102 - }, - { - "word": "difference", - "freq": 0.000102 - }, - { - "word": "population", - "freq": 0.000102 - }, - { - "word": "california", - "freq": 0.0001 - }, - { - "word": "completely", - "freq": 0.0001 - }, - { - "word": "individual", - "freq": 0.0001 - }, - { - "word": "particular", - "freq": 0.0001 - }, - { - "word": "throughout", - "freq": 9.77e-05 - }, - { - "word": "absolutely", - "freq": 9.55e-05 - }, - { - "word": "additional", - "freq": 9.55e-05 - }, - { - "word": "conditions", - "freq": 9.55e-05 - }, - { - "word": "collection", - "freq": 9.12e-05 - }, - { - "word": "definitely", - "freq": 9.12e-05 - }, - { - "word": "interested", - "freq": 8.91e-05 - }, - { - "word": "successful", - "freq": 8.71e-05 - }, - { - "word": "australian", - "freq": 8.51e-05 - }, - { - "word": "commercial", - "freq": 8.32e-05 - }, - { - "word": "activities", - "freq": 8.13e-05 - }, - { - "word": "commission", - "freq": 8.13e-05 - }, - { - "word": "associated", - "freq": 7.76e-05 - }, - { - "word": "eventually", - "freq": 7.59e-05 - }, - { - "word": "protection", - "freq": 7.08e-05 - }, - { - "word": "investment", - "freq": 6.92e-05 - }, - { - "word": "previously", - "freq": 6.76e-05 - }, - { - "word": "generation", - "freq": 6.61e-05 - }, - { - "word": "foundation", - "freq": 6.46e-05 - }, - { - "word": "apparently", - "freq": 6.31e-05 - }, - { - "word": "television", - "freq": 6.17e-05 - }, - { - "word": "impossible", - "freq": 6.03e-05 - }, - { - "word": "background", - "freq": 5.89e-05 - }, - { - "word": "leadership", - "freq": 5.89e-05 - }, - { - "word": "connection", - "freq": 5.75e-05 - }, - { - "word": "appreciate", - "freq": 5.5e-05 - }, - { - "word": "discovered", - "freq": 5.5e-05 - }, - { - "word": "parliament", - "freq": 5.5e-05 - }, - { - "word": "democratic", - "freq": 5.37e-05 - }, - { - "word": "introduced", - "freq": 5.25e-05 - }, - { - "word": "discussion", - "freq": 5.13e-05 - }, - { - "word": "industrial", - "freq": 5.13e-05 - }, - { - "word": "supporting", - "freq": 5.13e-05 - }, - { - "word": "republican", - "freq": 5.01e-05 - }, - { - "word": "appearance", - "freq": 4.9e-05 - }, - { - "word": "historical", - "freq": 4.9e-05 - }, - { - "word": "originally", - "freq": 4.9e-05 - }, - { - "word": "girlfriend", - "freq": 4.79e-05 - }, - { - "word": "increasing", - "freq": 4.79e-05 - }, - { - "word": "restaurant", - "freq": 4.79e-05 - }, - { - "word": "scientific", - "freq": 4.68e-05 - }, - { - "word": "businesses", - "freq": 4.57e-05 - }, - { - "word": "developing", - "freq": 4.57e-05 - }, - { - "word": "everywhere", - "freq": 4.57e-05 - }, - { - "word": "facilities", - "freq": 4.57e-05 - }, - { - "word": "relatively", - "freq": 4.57e-05 - }, - { - "word": "confidence", - "freq": 4.47e-05 - }, - { - "word": "properties", - "freq": 4.47e-05 - }, - { - "word": "determined", - "freq": 4.37e-05 - }, - { - "word": "identified", - "freq": 4.27e-05 - }, - { - "word": "incredible", - "freq": 4.27e-05 - }, - { - "word": "literature", - "freq": 4.17e-05 - }, - { - "word": "statistics", - "freq": 3.98e-05 - }, - { - "word": "assistance", - "freq": 3.89e-05 - }, - { - "word": "controlled", - "freq": 3.89e-05 - }, - { - "word": "reasonable", - "freq": 3.89e-05 - }, - { - "word": "resolution", - "freq": 3.89e-05 - }, - { - "word": "definition", - "freq": 3.8e-05 - }, - { - "word": "understood", - "freq": 3.8e-05 - }, - { - "word": "opposition", - "freq": 3.72e-05 - }, - { - "word": "personally", - "freq": 3.72e-05 - }, - { - "word": "ultimately", - "freq": 3.72e-05 - }, - { - "word": "basketball", - "freq": 3.63e-05 - }, - { - "word": "depression", - "freq": 3.63e-05 - }, - { - "word": "employment", - "freq": 3.63e-05 - }, - { - "word": "frequently", - "freq": 3.63e-05 - }, - { - "word": "importance", - "freq": 3.63e-05 - }, - { - "word": "performing", - "freq": 3.63e-05 - }, - { - "word": "revolution", - "freq": 3.63e-05 - }, - { - "word": "tournament", - "freq": 3.63e-05 - }, - { - "word": "electronic", - "freq": 3.55e-05 - }, - { - "word": "expression", - "freq": 3.55e-05 - }, - { - "word": "resistance", - "freq": 3.55e-05 - }, - { - "word": "attractive", - "freq": 3.39e-05 - }, - { - "word": "constantly", - "freq": 3.39e-05 - }, - { - "word": "manchester", - "freq": 3.39e-05 - }, - { - "word": "officially", - "freq": 3.39e-05 - }, - { - "word": "retirement", - "freq": 3.39e-05 - }, - { - "word": "recognized", - "freq": 3.31e-05 - }, - { - "word": "registered", - "freq": 3.31e-05 - }, - { - "word": "comparison", - "freq": 3.24e-05 - }, - { - "word": "techniques", - "freq": 3.24e-05 - }, - { - "word": "convention", - "freq": 3.16e-05 - }, - { - "word": "equivalent", - "freq": 3.16e-05 - }, - { - "word": "permission", - "freq": 3.16e-05 - }, - { - "word": "challenges", - "freq": 3.09e-05 - }, - { - "word": "philosophy", - "freq": 3.09e-05 - }, - { - "word": "settlement", - "freq": 3.09e-05 - }, - { - "word": "consistent", - "freq": 3.02e-05 - }, - { - "word": "continuing", - "freq": 3.02e-05 - }, - { - "word": "percentage", - "freq": 3.02e-05 - }, - { - "word": "regardless", - "freq": 3.02e-05 - }, - { - "word": "represents", - "freq": 3.02e-05 - }, - { - "word": "healthcare", - "freq": 2.95e-05 - }, - { - "word": "impressive", - "freq": 2.95e-05 - }, - { - "word": "membership", - "freq": 2.95e-05 - }, - { - "word": "reputation", - "freq": 2.95e-05 - }, - { - "word": "situations", - "freq": 2.95e-05 - }, - { - "word": "assessment", - "freq": 2.88e-05 - }, - { - "word": "atmosphere", - "freq": 2.88e-05 - }, - { - "word": "processing", - "freq": 2.88e-05 - }, - { - "word": "ridiculous", - "freq": 2.88e-05 - }, - { - "word": "transition", - "freq": 2.88e-05 - }, - { - "word": "components", - "freq": 2.75e-05 - }, - { - "word": "lieutenant", - "freq": 2.75e-05 - }, - { - "word": "commitment", - "freq": 2.69e-05 - }, - { - "word": "containing", - "freq": 2.69e-05 - }, - { - "word": "afterwards", - "freq": 2.63e-05 - }, - { - "word": "electrical", - "freq": 2.63e-05 - }, - { - "word": "industries", - "freq": 2.63e-05 - }, - { - "word": "principles", - "freq": 2.63e-05 - }, - { - "word": "references", - "freq": 2.63e-05 - }, - { - "word": "conclusion", - "freq": 2.51e-05 - }, - { - "word": "friendship", - "freq": 2.45e-05 - }, - { - "word": "subsequent", - "freq": 2.45e-05 - }, - { - "word": "efficiency", - "freq": 2.4e-05 - }, - { - "word": "enterprise", - "freq": 2.4e-05 - }, - { - "word": "experiment", - "freq": 2.4e-05 - }, - { - "word": "incredibly", - "freq": 2.4e-05 - }, - { - "word": "journalist", - "freq": 2.4e-05 - }, - { - "word": "maintained", - "freq": 2.4e-05 - }, - { - "word": "possession", - "freq": 2.4e-05 - }, - { - "word": "regulation", - "freq": 2.4e-05 - }, - { - "word": "exhibition", - "freq": 2.34e-05 - }, - { - "word": "publishing", - "freq": 2.34e-05 - }, - { - "word": "initiative", - "freq": 2.29e-05 - }, - { - "word": "interviews", - "freq": 2.29e-05 - }, - { - "word": "procedures", - "freq": 2.29e-05 - }, - { - "word": "surrounded", - "freq": 2.29e-05 - }, - { - "word": "threatened", - "freq": 2.29e-05 - }, - { - "word": "ambassador", - "freq": 2.24e-05 - }, - { - "word": "corruption", - "freq": 2.24e-05 - }, - { - "word": "impression", - "freq": 2.24e-05 - }, - { - "word": "contribute", - "freq": 2.19e-05 - }, - { - "word": "monitoring", - "freq": 2.19e-05 - }, - { - "word": "punishment", - "freq": 2.19e-05 - }, - { - "word": "difficulty", - "freq": 2.14e-05 - }, - { - "word": "elementary", - "freq": 2.14e-05 - }, - { - "word": "mechanical", - "freq": 2.14e-05 - }, - { - "word": "remembered", - "freq": 2.14e-05 - }, - { - "word": "struggling", - "freq": 2.14e-05 - }, - { - "word": "aggressive", - "freq": 2.09e-05 - }, - { - "word": "encouraged", - "freq": 2.09e-05 - }, - { - "word": "innovation", - "freq": 2.09e-05 - }, - { - "word": "sufficient", - "freq": 2.09e-05 - }, - { - "word": "biological", - "freq": 2.04e-05 - }, - { - "word": "categories", - "freq": 2.04e-05 - }, - { - "word": "concerning", - "freq": 2.04e-05 - }, - { - "word": "engagement", - "freq": 2.04e-05 - }, - { - "word": "laboratory", - "freq": 2.04e-05 - }, - { - "word": "psychology", - "freq": 2.04e-05 - }, - { - "word": "collective", - "freq": 2e-05 - }, - { - "word": "physically", - "freq": 2e-05 - }, - { - "word": "protecting", - "freq": 2e-05 - }, - { - "word": "accounting", - "freq": 1.95e-05 - }, - { - "word": "guaranteed", - "freq": 1.95e-05 - }, - { - "word": "integrated", - "freq": 1.95e-05 - }, - { - "word": "remarkable", - "freq": 1.95e-05 - }, - { - "word": "strategies", - "freq": 1.95e-05 - }, - { - "word": "highlights", - "freq": 1.91e-05 - }, - { - "word": "prevention", - "freq": 1.91e-05 - }, - { - "word": "specialist", - "freq": 1.91e-05 - }, - { - "word": "surprising", - "freq": 1.91e-05 - }, - { - "word": "acceptable", - "freq": 1.86e-05 - }, - { - "word": "attempting", - "freq": 1.86e-05 - }, - { - "word": "classified", - "freq": 1.82e-05 - }, - { - "word": "conspiracy", - "freq": 1.82e-05 - }, - { - "word": "federation", - "freq": 1.82e-05 - }, - { - "word": "instrument", - "freq": 1.82e-05 - }, - { - "word": "mainstream", - "freq": 1.82e-05 - }, - { - "word": "approaches", - "freq": 1.78e-05 - }, - { - "word": "boundaries", - "freq": 1.78e-05 - }, - { - "word": "designated", - "freq": 1.78e-05 - }, - { - "word": "guidelines", - "freq": 1.78e-05 - }, - { - "word": "suggesting", - "freq": 1.78e-05 - }, - { - "word": "artificial", - "freq": 1.74e-05 - }, - { - "word": "celebrated", - "freq": 1.74e-05 - }, - { - "word": "conversion", - "freq": 1.74e-05 - }, - { - "word": "functional", - "freq": 1.74e-05 - }, - { - "word": "popularity", - "freq": 1.74e-05 - }, - { - "word": "securities", - "freq": 1.74e-05 - }, - { - "word": "suspension", - "freq": 1.74e-05 - }, - { - "word": "complaints", - "freq": 1.7e-05 - }, - { - "word": "describing", - "freq": 1.7e-05 - }, - { - "word": "discipline", - "freq": 1.7e-05 - }, - { - "word": "discussing", - "freq": 1.7e-05 - }, - { - "word": "disgusting", - "freq": 1.7e-05 - }, - { - "word": "explaining", - "freq": 1.7e-05 - }, - { - "word": "photograph", - "freq": 1.7e-05 - }, - { - "word": "queensland", - "freq": 1.7e-05 - }, - { - "word": "regulatory", - "freq": 1.7e-05 - }, - { - "word": "suggestion", - "freq": 1.7e-05 - }, - { - "word": "unexpected", - "freq": 1.7e-05 - }, - { - "word": "affordable", - "freq": 1.66e-05 - }, - { - "word": "completion", - "freq": 1.66e-05 - }, - { - "word": "legitimate", - "freq": 1.66e-05 - }, - { - "word": "motivation", - "freq": 1.66e-05 - }, - { - "word": "productive", - "freq": 1.66e-05 - }, - { - "word": "continuous", - "freq": 1.62e-05 - }, - { - "word": "disability", - "freq": 1.62e-05 - }, - { - "word": "evaluation", - "freq": 1.62e-05 - }, - { - "word": "repeatedly", - "freq": 1.62e-05 - }, - { - "word": "vulnerable", - "freq": 1.62e-05 - }, - { - "word": "influenced", - "freq": 1.58e-05 - }, - { - "word": "occupation", - "freq": 1.58e-05 - }, - { - "word": "commentary", - "freq": 1.55e-05 - }, - { - "word": "excitement", - "freq": 1.55e-05 - }, - { - "word": "respective", - "freq": 1.55e-05 - }, - { - "word": "restricted", - "freq": 1.55e-05 - }, - { - "word": "widespread", - "freq": 1.55e-05 - }, - { - "word": "accessible", - "freq": 1.51e-05 - }, - { - "word": "assignment", - "freq": 1.51e-05 - }, - { - "word": "birmingham", - "freq": 1.51e-05 - }, - { - "word": "collecting", - "freq": 1.51e-05 - }, - { - "word": "perception", - "freq": 1.51e-05 - }, - { - "word": "structural", - "freq": 1.51e-05 - }, - { - "word": "attendance", - "freq": 1.48e-05 - }, - { - "word": "compliance", - "freq": 1.48e-05 - }, - { - "word": "mysterious", - "freq": 1.48e-05 - }, - { - "word": "propaganda", - "freq": 1.48e-05 - }, - { - "word": "reflection", - "freq": 1.48e-05 - }, - { - "word": "substitute", - "freq": 1.48e-05 - }, - { - "word": "underlying", - "freq": 1.48e-05 - }, - { - "word": "acceptance", - "freq": 1.45e-05 - }, - { - "word": "approached", - "freq": 1.45e-05 - }, - { - "word": "connecting", - "freq": 1.45e-05 - }, - { - "word": "indigenous", - "freq": 1.45e-05 - }, - { - "word": "politician", - "freq": 1.45e-05 - }, - { - "word": "presidency", - "freq": 1.45e-05 - }, - { - "word": "travelling", - "freq": 1.45e-05 - }, - { - "word": "compromise", - "freq": 1.41e-05 - }, - { - "word": "convenient", - "freq": 1.41e-05 - }, - { - "word": "earthquake", - "freq": 1.41e-05 - }, - { - "word": "medication", - "freq": 1.41e-05 - }, - { - "word": "translated", - "freq": 1.41e-05 - }, - { - "word": "vegetables", - "freq": 1.41e-05 - }, - { - "word": "conviction", - "freq": 1.38e-05 - }, - { - "word": "inspection", - "freq": 1.38e-05 - }, - { - "word": "invitation", - "freq": 1.38e-05 - }, - { - "word": "meaningful", - "freq": 1.38e-05 - }, - { - "word": "accordance", - "freq": 1.35e-05 - }, - { - "word": "applicable", - "freq": 1.35e-05 - }, - { - "word": "chancellor", - "freq": 1.35e-05 - }, - { - "word": "consultant", - "freq": 1.35e-05 - }, - { - "word": "controller", - "freq": 1.35e-05 - }, - { - "word": "helicopter", - "freq": 1.35e-05 - }, - { - "word": "phenomenon", - "freq": 1.35e-05 - }, - { - "word": "pittsburgh", - "freq": 1.35e-05 - }, - { - "word": "profession", - "freq": 1.35e-05 - }, - { - "word": "protective", - "freq": 1.35e-05 - }, - { - "word": "reportedly", - "freq": 1.35e-05 - }, - { - "word": "separation", - "freq": 1.35e-05 - }, - { - "word": "authorized", - "freq": 1.32e-05 - }, - { - "word": "curriculum", - "freq": 1.32e-05 - }, - { - "word": "journalism", - "freq": 1.32e-05 - }, - { - "word": "occasional", - "freq": 1.32e-05 - }, - { - "word": "preventing", - "freq": 1.32e-05 - }, - { - "word": "provisions", - "freq": 1.32e-05 - }, - { - "word": "attraction", - "freq": 1.29e-05 - }, - { - "word": "bankruptcy", - "freq": 1.29e-05 - }, - { - "word": "diplomatic", - "freq": 1.29e-05 - }, - { - "word": "intentions", - "freq": 1.29e-05 - }, - { - "word": "preference", - "freq": 1.29e-05 - }, - { - "word": "proportion", - "freq": 1.29e-05 - }, - { - "word": "advantages", - "freq": 1.26e-05 - }, - { - "word": "calculated", - "freq": 1.26e-05 - }, - { - "word": "innovative", - "freq": 1.26e-05 - }, - { - "word": "traditions", - "freq": 1.26e-05 - }, - { - "word": "challenged", - "freq": 1.23e-05 - }, - { - "word": "cigarettes", - "freq": 1.23e-05 - }, - { - "word": "consisting", - "freq": 1.23e-05 - }, - { - "word": "delivering", - "freq": 1.23e-05 - }, - { - "word": "destroying", - "freq": 1.23e-05 - }, - { - "word": "governance", - "freq": 1.23e-05 - }, - { - "word": "indicating", - "freq": 1.23e-05 - }, - { - "word": "passionate", - "freq": 1.23e-05 - }, - { - "word": "suspicious", - "freq": 1.23e-05 - }, - { - "word": "thoroughly", - "freq": 1.23e-05 - }, - { - "word": "treatments", - "freq": 1.23e-05 - }, - { - "word": "variations", - "freq": 1.23e-05 - }, - { - "word": "beneficial", - "freq": 1.2e-05 - }, - { - "word": "comparable", - "freq": 1.2e-05 - }, - { - "word": "contractor", - "freq": 1.2e-05 - }, - { - "word": "frustrated", - "freq": 1.2e-05 - }, - { - "word": "inevitable", - "freq": 1.2e-05 - }, - { - "word": "objectives", - "freq": 1.2e-05 - }, - { - "word": "presenting", - "freq": 1.2e-05 - }, - { - "word": "provincial", - "freq": 1.2e-05 - }, - { - "word": "separately", - "freq": 1.2e-05 - }, - { - "word": "underneath", - "freq": 1.2e-05 - }, - { - "word": "altogether", - "freq": 1.17e-05 - }, - { - "word": "assumption", - "freq": 1.17e-05 - }, - { - "word": "capability", - "freq": 1.17e-05 - }, - { - "word": "conducting", - "freq": 1.17e-05 - }, - { - "word": "excellence", - "freq": 1.17e-05 - }, - { - "word": "graduation", - "freq": 1.17e-05 - }, - { - "word": "motorcycle", - "freq": 1.17e-05 - }, - { - "word": "nationwide", - "freq": 1.17e-05 - }, - { - "word": "nomination", - "freq": 1.17e-05 - }, - { - "word": "obligation", - "freq": 1.17e-05 - }, - { - "word": "recognised", - "freq": 1.17e-05 - }, - { - "word": "responding", - "freq": 1.17e-05 - }, - { - "word": "submission", - "freq": 1.17e-05 - }, - { - "word": "tremendous", - "freq": 1.17e-05 - }, - { - "word": "addressing", - "freq": 1.15e-05 - }, - { - "word": "completing", - "freq": 1.15e-05 - }, - { - "word": "consulting", - "freq": 1.15e-05 - }, - { - "word": "indication", - "freq": 1.15e-05 - }, - { - "word": "presumably", - "freq": 1.15e-05 - }, - { - "word": "pretending", - "freq": 1.15e-05 - }, - { - "word": "priorities", - "freq": 1.15e-05 - }, - { - "word": "pronounced", - "freq": 1.15e-05 - }, - { - "word": "purchasing", - "freq": 1.15e-05 - }, - { - "word": "smartphone", - "freq": 1.15e-05 - }, - { - "word": "accomplish", - "freq": 1.12e-05 - }, - { - "word": "attributed", - "freq": 1.12e-05 - }, - { - "word": "dimensions", - "freq": 1.12e-05 - }, - { - "word": "disturbing", - "freq": 1.12e-05 - }, - { - "word": "eliminated", - "freq": 1.12e-05 - }, - { - "word": "influences", - "freq": 1.12e-05 - }, - { - "word": "supportive", - "freq": 1.12e-05 - }, - { - "word": "withdrawal", - "freq": 1.12e-05 - }, - { - "word": "recreation", - "freq": 1.1e-05 - }, - { - "word": "strengthen", - "freq": 1.1e-05 - }, - { - "word": "mechanisms", - "freq": 1.07e-05 - }, - { - "word": "navigation", - "freq": 1.07e-05 - }, - { - "word": "portuguese", - "freq": 1.07e-05 - }, - { - "word": "profitable", - "freq": 1.07e-05 - }, - { - "word": "reasonably", - "freq": 1.07e-05 - }, - { - "word": "supplement", - "freq": 1.07e-05 - }, - { - "word": "complexity", - "freq": 1.05e-05 - }, - { - "word": "dictionary", - "freq": 1.05e-05 - }, - { - "word": "enthusiasm", - "freq": 1.05e-05 - }, - { - "word": "instructor", - "freq": 1.05e-05 - }, - { - "word": "questioned", - "freq": 1.05e-05 - }, - { - "word": "adaptation", - "freq": 1.02e-05 - }, - { - "word": "creativity", - "freq": 1.02e-05 - }, - { - "word": "harassment", - "freq": 1.02e-05 - }, - { - "word": "qualifying", - "freq": 1.02e-05 - }, - { - "word": "criticized", - "freq": 1e-05 - }, - { - "word": "disclosure", - "freq": 1e-05 - }, - { - "word": "documented", - "freq": 1e-05 - }, - { - "word": "encounters", - "freq": 1e-05 - }, - { - "word": "parameters", - "freq": 1e-05 - }, - { - "word": "protesters", - "freq": 1e-05 - }, - { - "word": "accurately", - "freq": 9.77e-06 - }, - { - "word": "complained", - "freq": 9.77e-06 - }, - { - "word": "expedition", - "freq": 9.77e-06 - }, - { - "word": "expressing", - "freq": 9.77e-06 - }, - { - "word": "facilitate", - "freq": 9.77e-06 - }, - { - "word": "generating", - "freq": 9.77e-06 - }, - { - "word": "interstate", - "freq": 9.77e-06 - }, - { - "word": "perfection", - "freq": 9.77e-06 - }, - { - "word": "practicing", - "freq": 9.77e-06 - }, - { - "word": "prohibited", - "freq": 9.77e-06 - }, - { - "word": "recruiting", - "freq": 9.77e-06 - }, - { - "word": "violations", - "freq": 9.77e-06 - }, - { - "word": "whatsoever", - "freq": 9.77e-06 - }, - { - "word": "compelling", - "freq": 9.55e-06 - }, - { - "word": "irrelevant", - "freq": 9.55e-06 - }, - { - "word": "referendum", - "freq": 9.55e-06 - }, - { - "word": "capitalism", - "freq": 9.33e-06 - }, - { - "word": "compatible", - "freq": 9.33e-06 - }, - { - "word": "convincing", - "freq": 9.33e-06 - }, - { - "word": "exceptions", - "freq": 9.33e-06 - }, - { - "word": "geographic", - "freq": 9.33e-06 - }, - { - "word": "infections", - "freq": 9.33e-06 - }, - { - "word": "minorities", - "freq": 9.33e-06 - }, - { - "word": "organizing", - "freq": 9.33e-06 - }, - { - "word": "succession", - "freq": 9.33e-06 - }, - { - "word": "thereafter", - "freq": 9.33e-06 - }, - { - "word": "affiliated", - "freq": 9.12e-06 - }, - { - "word": "bangladesh", - "freq": 9.12e-06 - }, - { - "word": "cincinnati", - "freq": 9.12e-06 - }, - { - "word": "conscience", - "freq": 9.12e-06 - }, - { - "word": "dedication", - "freq": 9.12e-06 - }, - { - "word": "explicitly", - "freq": 9.12e-06 - }, - { - "word": "prediction", - "freq": 9.12e-06 - }, - { - "word": "revelation", - "freq": 9.12e-06 - }, - { - "word": "supposedly", - "freq": 9.12e-06 - }, - { - "word": "compassion", - "freq": 8.91e-06 - }, - { - "word": "correction", - "freq": 8.91e-06 - }, - { - "word": "meditation", - "freq": 8.91e-06 - }, - { - "word": "supervisor", - "freq": 8.91e-06 - }, - { - "word": "terrifying", - "freq": 8.91e-06 - }, - { - "word": "wilderness", - "freq": 8.91e-06 - }, - { - "word": "presidents", - "freq": 8.71e-06 - }, - { - "word": "automobile", - "freq": 8.71e-06 - }, - { - "word": "networking", - "freq": 8.71e-06 - }, - { - "word": "prosecutor", - "freq": 8.71e-06 - }, - { - "word": "simulation", - "freq": 8.71e-06 - }, - { - "word": "automotive", - "freq": 8.51e-06 - }, - { - "word": "casualties", - "freq": 8.51e-06 - }, - { - "word": "litigation", - "freq": 8.51e-06 - }, - { - "word": "reflecting", - "freq": 8.51e-06 - }, - { - "word": "satisfying", - "freq": 8.51e-06 - }, - { - "word": "soundtrack", - "freq": 8.51e-06 - }, - { - "word": "substances", - "freq": 8.51e-06 - }, - { - "word": "attributes", - "freq": 8.32e-06 - }, - { - "word": "delegation", - "freq": 8.32e-06 - }, - { - "word": "enrollment", - "freq": 8.32e-06 - }, - { - "word": "forgetting", - "freq": 8.32e-06 - }, - { - "word": "inequality", - "freq": 8.32e-06 - }, - { - "word": "manuscript", - "freq": 8.32e-06 - }, - { - "word": "montgomery", - "freq": 8.32e-06 - }, - { - "word": "researcher", - "freq": 8.32e-06 - }, - { - "word": "subsidiary", - "freq": 8.32e-06 - }, - { - "word": "underwater", - "freq": 8.32e-06 - }, - { - "word": "ammunition", - "freq": 8.13e-06 - }, - { - "word": "charitable", - "freq": 8.13e-06 - }, - { - "word": "compliment", - "freq": 8.13e-06 - }, - { - "word": "deployment", - "freq": 8.13e-06 - }, - { - "word": "liberation", - "freq": 8.13e-06 - }, - { - "word": "likelihood", - "freq": 8.13e-06 - }, - { - "word": "prescribed", - "freq": 8.13e-06 - }, - { - "word": "prosperity", - "freq": 8.13e-06 - }, - { - "word": "richardson", - "freq": 8.13e-06 - }, - { - "word": "aggression", - "freq": 7.94e-06 - }, - { - "word": "discretion", - "freq": 7.94e-06 - }, - { - "word": "horizontal", - "freq": 7.94e-06 - }, - { - "word": "inevitably", - "freq": 7.94e-06 - }, - { - "word": "misleading", - "freq": 7.94e-06 - }, - { - "word": "persistent", - "freq": 7.94e-06 - }, - { - "word": "recordings", - "freq": 7.94e-06 - }, - { - "word": "unemployed", - "freq": 7.94e-06 - }, - { - "word": "contracted", - "freq": 7.76e-06 - }, - { - "word": "counseling", - "freq": 7.76e-06 - }, - { - "word": "indonesian", - "freq": 7.76e-06 - }, - { - "word": "positively", - "freq": 7.76e-06 - }, - { - "word": "solidarity", - "freq": 7.76e-06 - }, - { - "word": "adjustment", - "freq": 7.59e-06 - }, - { - "word": "attachment", - "freq": 7.59e-06 - }, - { - "word": "committing", - "freq": 7.59e-06 - }, - { - "word": "comprising", - "freq": 7.59e-06 - }, - { - "word": "confession", - "freq": 7.59e-06 - }, - { - "word": "critically", - "freq": 7.59e-06 - }, - { - "word": "distracted", - "freq": 7.59e-06 - }, - { - "word": "headphones", - "freq": 7.59e-06 - }, - { - "word": "incentives", - "freq": 7.59e-06 - }, - { - "word": "announcing", - "freq": 7.41e-06 - }, - { - "word": "hypothesis", - "freq": 7.41e-06 - }, - { - "word": "optimistic", - "freq": 7.41e-06 - }, - { - "word": "systematic", - "freq": 7.41e-06 - }, - { - "word": "behavioral", - "freq": 7.24e-06 - }, - { - "word": "containers", - "freq": 7.24e-06 - }, - { - "word": "endangered", - "freq": 7.24e-06 - }, - { - "word": "fellowship", - "freq": 7.24e-06 - }, - { - "word": "midfielder", - "freq": 7.24e-06 - }, - { - "word": "quantities", - "freq": 7.24e-06 - }, - { - "word": "sacramento", - "freq": 7.24e-06 - }, - { - "word": "wheelchair", - "freq": 7.24e-06 - }, - { - "word": "yourselves", - "freq": 7.24e-06 - }, - { - "word": "autonomous", - "freq": 7.08e-06 - }, - { - "word": "censorship", - "freq": 7.08e-06 - }, - { - "word": "constitute", - "freq": 7.08e-06 - }, - { - "word": "incomplete", - "freq": 7.08e-06 - }, - { - "word": "stretching", - "freq": 7.08e-06 - }, - { - "word": "successive", - "freq": 7.08e-06 - }, - { - "word": "undertaken", - "freq": 7.08e-06 - }, - { - "word": "vietnamese", - "freq": 7.08e-06 - }, - { - "word": "volleyball", - "freq": 7.08e-06 - }, - { - "word": "commanding", - "freq": 6.92e-06 - }, - { - "word": "confronted", - "freq": 6.92e-06 - }, - { - "word": "encourages", - "freq": 6.92e-06 - }, - { - "word": "instructed", - "freq": 6.92e-06 - }, - { - "word": "louisville", - "freq": 6.92e-06 - }, - { - "word": "nationally", - "freq": 6.92e-06 - }, - { - "word": "recovering", - "freq": 6.92e-06 - }, - { - "word": "activation", - "freq": 6.76e-06 - }, - { - "word": "commenting", - "freq": 6.76e-06 - }, - { - "word": "depressing", - "freq": 6.76e-06 - }, - { - "word": "diagnostic", - "freq": 6.76e-06 - }, - { - "word": "downloaded", - "freq": 6.76e-06 - }, - { - "word": "guarantees", - "freq": 6.76e-06 - }, - { - "word": "indicators", - "freq": 6.76e-06 - }, - { - "word": "missionary", - "freq": 6.76e-06 - }, - { - "word": "refreshing", - "freq": 6.76e-06 - }, - { - "word": "reinforced", - "freq": 6.76e-06 - }, - { - "word": "thoughtful", - "freq": 6.76e-06 - }, - { - "word": "accidental", - "freq": 6.61e-06 - }, - { - "word": "archbishop", - "freq": 6.61e-06 - }, - { - "word": "coordinate", - "freq": 6.61e-06 - }, - { - "word": "decoration", - "freq": 6.61e-06 - }, - { - "word": "deliberate", - "freq": 6.61e-06 - }, - { - "word": "extensions", - "freq": 6.61e-06 - }, - { - "word": "geological", - "freq": 6.61e-06 - }, - { - "word": "inadequate", - "freq": 6.61e-06 - }, - { - "word": "kilometers", - "freq": 6.61e-06 - }, - { - "word": "overlooked", - "freq": 6.61e-06 - }, - { - "word": "redemption", - "freq": 6.61e-06 - }, - { - "word": "structured", - "freq": 6.61e-06 - }, - { - "word": "vocabulary", - "freq": 6.61e-06 - }, - { - "word": "wellington", - "freq": 6.61e-06 - }, - { - "word": "algorithms", - "freq": 6.46e-06 - }, - { - "word": "competitor", - "freq": 6.46e-06 - }, - { - "word": "infectious", - "freq": 6.46e-06 - }, - { - "word": "privileged", - "freq": 6.46e-06 - }, - { - "word": "protestant", - "freq": 6.46e-06 - }, - { - "word": "automation", - "freq": 6.31e-06 - }, - { - "word": "decorative", - "freq": 6.31e-06 - }, - { - "word": "definitive", - "freq": 6.31e-06 - }, - { - "word": "extraction", - "freq": 6.31e-06 - }, - { - "word": "introduces", - "freq": 6.31e-06 - }, - { - "word": "originated", - "freq": 6.31e-06 - }, - { - "word": "providence", - "freq": 6.31e-06 - }, - { - "word": "requesting", - "freq": 6.31e-06 - }, - { - "word": "thankfully", - "freq": 6.31e-06 - }, - { - "word": "unpleasant", - "freq": 6.31e-06 - }, - { - "word": "weaknesses", - "freq": 6.31e-06 - }, - { - "word": "capitalist", - "freq": 6.17e-06 - }, - { - "word": "distribute", - "freq": 6.17e-06 - }, - { - "word": "explosives", - "freq": 6.17e-06 - }, - { - "word": "goalkeeper", - "freq": 6.17e-06 - }, - { - "word": "imprisoned", - "freq": 6.17e-06 - }, - { - "word": "oppression", - "freq": 6.17e-06 - }, - { - "word": "playground", - "freq": 6.17e-06 - }, - { - "word": "positioned", - "freq": 6.17e-06 - }, - { - "word": "projection", - "freq": 6.17e-06 - }, - { - "word": "subjective", - "freq": 6.17e-06 - }, - { - "word": "aboriginal", - "freq": 6.03e-06 - }, - { - "word": "compensate", - "freq": 6.03e-06 - }, - { - "word": "ecological", - "freq": 6.03e-06 - }, - { - "word": "greenhouse", - "freq": 6.03e-06 - }, - { - "word": "identities", - "freq": 6.03e-06 - }, - { - "word": "metabolism", - "freq": 6.03e-06 - }, - { - "word": "negotiated", - "freq": 6.03e-06 - }, - { - "word": "promotions", - "freq": 6.03e-06 - }, - { - "word": "vegetarian", - "freq": 6.03e-06 - }, - { - "word": "visibility", - "freq": 6.03e-06 - }, - { - "word": "alexandria", - "freq": 5.89e-06 - }, - { - "word": "charleston", - "freq": 5.89e-06 - }, - { - "word": "complement", - "freq": 5.89e-06 - }, - { - "word": "continuity", - "freq": 5.89e-06 - }, - { - "word": "delightful", - "freq": 5.89e-06 - }, - { - "word": "determines", - "freq": 5.89e-06 - }, - { - "word": "kidnapping", - "freq": 5.89e-06 - }, - { - "word": "kilometres", - "freq": 5.89e-06 - }, - { - "word": "occurrence", - "freq": 5.89e-06 - }, - { - "word": "outrageous", - "freq": 5.89e-06 - }, - { - "word": "proclaimed", - "freq": 5.89e-06 - }, - { - "word": "recommends", - "freq": 5.89e-06 - }, - { - "word": "remarkably", - "freq": 5.89e-06 - }, - { - "word": "sandwiches", - "freq": 5.89e-06 - }, - { - "word": "simplicity", - "freq": 5.89e-06 - }, - { - "word": "undercover", - "freq": 5.89e-06 - }, - { - "word": "vegetation", - "freq": 5.89e-06 - }, - { - "word": "accountant", - "freq": 5.75e-06 - }, - { - "word": "admissions", - "freq": 5.75e-06 - }, - { - "word": "celebrates", - "freq": 5.75e-06 - }, - { - "word": "discharged", - "freq": 5.75e-06 - }, - { - "word": "extinction", - "freq": 5.75e-06 - }, - { - "word": "graduating", - "freq": 5.75e-06 - }, - { - "word": "newsletter", - "freq": 5.75e-06 - }, - { - "word": "nineteenth", - "freq": 5.75e-06 - }, - { - "word": "phenomenal", - "freq": 5.75e-06 - }, - { - "word": "philippine", - "freq": 5.75e-06 - }, - { - "word": "privileges", - "freq": 5.75e-06 - }, - { - "word": "protesting", - "freq": 5.75e-06 - }, - { - "word": "transplant", - "freq": 5.75e-06 - }, - { - "word": "advertised", - "freq": 5.62e-06 - }, - { - "word": "communists", - "freq": 5.62e-06 - }, - { - "word": "conception", - "freq": 5.62e-06 - }, - { - "word": "identifies", - "freq": 5.62e-06 - }, - { - "word": "internally", - "freq": 5.62e-06 - }, - { - "word": "mentioning", - "freq": 5.62e-06 - }, - { - "word": "noticeable", - "freq": 5.62e-06 - }, - { - "word": "screenshot", - "freq": 5.62e-06 - }, - { - "word": "signatures", - "freq": 5.62e-06 - }, - { - "word": "spacecraft", - "freq": 5.62e-06 - }, - { - "word": "terminated", - "freq": 5.62e-06 - }, - { - "word": "veterinary", - "freq": 5.62e-06 - }, - { - "word": "allocation", - "freq": 5.5e-06 - }, - { - "word": "canterbury", - "freq": 5.5e-06 - }, - { - "word": "challenger", - "freq": 5.5e-06 - }, - { - "word": "evacuation", - "freq": 5.5e-06 - }, - { - "word": "frightened", - "freq": 5.5e-06 - }, - { - "word": "ingredient", - "freq": 5.5e-06 - }, - { - "word": "ironically", - "freq": 5.5e-06 - }, - { - "word": "overweight", - "freq": 5.5e-06 - }, - { - "word": "recognizes", - "freq": 5.5e-06 - }, - { - "word": "renovation", - "freq": 5.5e-06 - }, - { - "word": "sweetheart", - "freq": 5.5e-06 - }, - { - "word": "worthwhile", - "freq": 5.5e-06 - }, - { - "word": "analytical", - "freq": 5.37e-06 - }, - { - "word": "anticipate", - "freq": 5.37e-06 - }, - { - "word": "ceremonies", - "freq": 5.37e-06 - }, - { - "word": "contention", - "freq": 5.37e-06 - }, - { - "word": "converting", - "freq": 5.37e-06 - }, - { - "word": "exercising", - "freq": 5.37e-06 - }, - { - "word": "nightmares", - "freq": 5.37e-06 - }, - { - "word": "preserving", - "freq": 5.37e-06 - }, - { - "word": "devastated", - "freq": 5.25e-06 - }, - { - "word": "downstairs", - "freq": 5.25e-06 - }, - { - "word": "homosexual", - "freq": 5.25e-06 - }, - { - "word": "landscapes", - "freq": 5.25e-06 - }, - { - "word": "microphone", - "freq": 5.25e-06 - }, - { - "word": "nottingham", - "freq": 5.25e-06 - }, - { - "word": "plantation", - "freq": 5.25e-06 - }, - { - "word": "sacrifices", - "freq": 5.25e-06 - }, - { - "word": "strawberry", - "freq": 5.25e-06 - }, - { - "word": "sunglasses", - "freq": 5.25e-06 - }, - { - "word": "temptation", - "freq": 5.25e-06 - }, - { - "word": "unfinished", - "freq": 5.25e-06 - }, - { - "word": "accredited", - "freq": 5.13e-06 - }, - { - "word": "apocalypse", - "freq": 5.13e-06 - }, - { - "word": "appliances", - "freq": 5.13e-06 - }, - { - "word": "disruption", - "freq": 5.13e-06 - }, - { - "word": "emphasized", - "freq": 5.13e-06 - }, - { - "word": "engineered", - "freq": 5.13e-06 - }, - { - "word": "fulfilling", - "freq": 5.13e-06 - }, - { - "word": "illustrate", - "freq": 5.13e-06 - }, - { - "word": "indirectly", - "freq": 5.13e-06 - }, - { - "word": "installing", - "freq": 5.13e-06 - }, - { - "word": "limitation", - "freq": 5.13e-06 - }, - { - "word": "linguistic", - "freq": 5.13e-06 - }, - { - "word": "magistrate", - "freq": 5.13e-06 - }, - { - "word": "pedestrian", - "freq": 5.13e-06 - }, - { - "word": "preferably", - "freq": 5.13e-06 - }, - { - "word": "programmed", - "freq": 5.13e-06 - }, - { - "word": "rebuilding", - "freq": 5.13e-06 - }, - { - "word": "relaxation", - "freq": 5.13e-06 - }, - { - "word": "respectful", - "freq": 5.13e-06 - }, - { - "word": "undergoing", - "freq": 5.13e-06 - }, - { - "word": "apprentice", - "freq": 5.01e-06 - }, - { - "word": "comprehend", - "freq": 5.01e-06 - }, - { - "word": "compulsory", - "freq": 5.01e-06 - }, - { - "word": "domination", - "freq": 5.01e-06 - }, - { - "word": "evaluating", - "freq": 5.01e-06 - }, - { - "word": "indictment", - "freq": 5.01e-06 - }, - { - "word": "kardashian", - "freq": 5.01e-06 - }, - { - "word": "millennium", - "freq": 5.01e-06 - }, - { - "word": "petersburg", - "freq": 5.01e-06 - }, - { - "word": "responsive", - "freq": 5.01e-06 - }, - { - "word": "songwriter", - "freq": 5.01e-06 - }, - { - "word": "technician", - "freq": 5.01e-06 - }, - { - "word": "transcript", - "freq": 5.01e-06 - }, - { - "word": "allegiance", - "freq": 4.9e-06 - }, - { - "word": "attracting", - "freq": 4.9e-06 - }, - { - "word": "contingent", - "freq": 4.9e-06 - }, - { - "word": "councillor", - "freq": 4.9e-06 - }, - { - "word": "explosions", - "freq": 4.9e-06 - }, - { - "word": "footballer", - "freq": 4.9e-06 - }, - { - "word": "hemisphere", - "freq": 4.9e-06 - }, - { - "word": "intriguing", - "freq": 4.9e-06 - }, - { - "word": "irrigation", - "freq": 4.9e-06 - }, - { - "word": "manipulate", - "freq": 4.9e-06 - }, - { - "word": "negatively", - "freq": 4.9e-06 - }, - { - "word": "objections", - "freq": 4.9e-06 - }, - { - "word": "scheduling", - "freq": 4.9e-06 - }, - { - "word": "separating", - "freq": 4.9e-06 - }, - { - "word": "simplified", - "freq": 4.9e-06 - }, - { - "word": "consortium", - "freq": 4.79e-06 - }, - { - "word": "decreasing", - "freq": 4.79e-06 - }, - { - "word": "disastrous", - "freq": 4.79e-06 - }, - { - "word": "displaying", - "freq": 4.79e-06 - }, - { - "word": "selections", - "freq": 4.79e-06 - }, - { - "word": "theatrical", - "freq": 4.79e-06 - }, - { - "word": "validation", - "freq": 4.79e-06 - }, - { - "word": "classrooms", - "freq": 4.68e-06 - }, - { - "word": "confirming", - "freq": 4.68e-06 - }, - { - "word": "copenhagen", - "freq": 4.68e-06 - }, - { - "word": "diminished", - "freq": 4.68e-06 - }, - { - "word": "disappears", - "freq": 4.68e-06 - }, - { - "word": "disappoint", - "freq": 4.68e-06 - }, - { - "word": "honourable", - "freq": 4.68e-06 - }, - { - "word": "insulation", - "freq": 4.68e-06 - }, - { - "word": "neutrality", - "freq": 4.68e-06 - }, - { - "word": "referenced", - "freq": 4.68e-06 - }, - { - "word": "sacrificed", - "freq": 4.68e-06 - }, - { - "word": "translates", - "freq": 4.68e-06 - }, - { - "word": "translator", - "freq": 4.68e-06 - }, - { - "word": "absorption", - "freq": 4.57e-06 - }, - { - "word": "accelerate", - "freq": 4.57e-06 - }, - { - "word": "blockchain", - "freq": 4.57e-06 - }, - { - "word": "collateral", - "freq": 4.57e-06 - }, - { - "word": "congestion", - "freq": 4.57e-06 - }, - { - "word": "criticised", - "freq": 4.57e-06 - }, - { - "word": "criticisms", - "freq": 4.57e-06 - }, - { - "word": "deliveries", - "freq": 4.57e-06 - }, - { - "word": "dependence", - "freq": 4.57e-06 - }, - { - "word": "imperative", - "freq": 4.57e-06 - }, - { - "word": "misconduct", - "freq": 4.57e-06 - }, - { - "word": "peripheral", - "freq": 4.57e-06 - }, - { - "word": "prevalence", - "freq": 4.57e-06 - }, - { - "word": "proceeding", - "freq": 4.57e-06 - }, - { - "word": "unofficial", - "freq": 4.57e-06 - }, - { - "word": "blackberry", - "freq": 4.47e-06 - }, - { - "word": "derivative", - "freq": 4.47e-06 - }, - { - "word": "discomfort", - "freq": 4.47e-06 - }, - { - "word": "formidable", - "freq": 4.47e-06 - }, - { - "word": "inaccurate", - "freq": 4.47e-06 - }, - { - "word": "loneliness", - "freq": 4.47e-06 - }, - { - "word": "negligence", - "freq": 4.47e-06 - }, - { - "word": "standpoint", - "freq": 4.47e-06 - }, - { - "word": "vocational", - "freq": 4.47e-06 - }, - { - "word": "accustomed", - "freq": 4.37e-06 - }, - { - "word": "adequately", - "freq": 4.37e-06 - }, - { - "word": "bargaining", - "freq": 4.37e-06 - }, - { - "word": "beginnings", - "freq": 4.37e-06 - }, - { - "word": "culturally", - "freq": 4.37e-06 - }, - { - "word": "deficiency", - "freq": 4.37e-06 - }, - { - "word": "electorate", - "freq": 4.37e-06 - }, - { - "word": "favourites", - "freq": 4.37e-06 - }, - { - "word": "fitzgerald", - "freq": 4.37e-06 - }, - { - "word": "generators", - "freq": 4.37e-06 - }, - { - "word": "quarantine", - "freq": 4.37e-06 - }, - { - "word": "advocating", - "freq": 4.27e-06 - }, - { - "word": "apologized", - "freq": 4.27e-06 - }, - { - "word": "disrespect", - "freq": 4.27e-06 - }, - { - "word": "legitimacy", - "freq": 4.27e-06 - }, - { - "word": "organizers", - "freq": 4.27e-06 - }, - { - "word": "peacefully", - "freq": 4.27e-06 - }, - { - "word": "progressed", - "freq": 4.27e-06 - }, - { - "word": "reconsider", - "freq": 4.27e-06 - }, - { - "word": "reductions", - "freq": 4.27e-06 - }, - { - "word": "stationary", - "freq": 4.27e-06 - }, - { - "word": "succeeding", - "freq": 4.27e-06 - }, - { - "word": "sunderland", - "freq": 4.27e-06 - }, - { - "word": "beforehand", - "freq": 4.17e-06 - }, - { - "word": "compressed", - "freq": 4.17e-06 - }, - { - "word": "conceptual", - "freq": 4.17e-06 - }, - { - "word": "currencies", - "freq": 4.17e-06 - }, - { - "word": "demolition", - "freq": 4.17e-06 - }, - { - "word": "downstream", - "freq": 4.17e-06 - }, - { - "word": "formations", - "freq": 4.17e-06 - }, - { - "word": "generosity", - "freq": 4.17e-06 - }, - { - "word": "humanities", - "freq": 4.17e-06 - }, - { - "word": "predicting", - "freq": 4.17e-06 - }, - { - "word": "sanctioned", - "freq": 4.17e-06 - }, - { - "word": "sentencing", - "freq": 4.17e-06 - }, - { - "word": "undefeated", - "freq": 4.17e-06 - }, - { - "word": "unfamiliar", - "freq": 4.17e-06 - }, - { - "word": "authorised", - "freq": 4.07e-06 - }, - { - "word": "comforting", - "freq": 4.07e-06 - }, - { - "word": "courthouse", - "freq": 4.07e-06 - }, - { - "word": "dispatched", - "freq": 4.07e-06 - }, - { - "word": "fraudulent", - "freq": 4.07e-06 - }, - { - "word": "internship", - "freq": 4.07e-06 - }, - { - "word": "irritating", - "freq": 4.07e-06 - }, - { - "word": "narratives", - "freq": 4.07e-06 - }, - { - "word": "physiology", - "freq": 4.07e-06 - }, - { - "word": "possessing", - "freq": 4.07e-06 - }, - { - "word": "prosecuted", - "freq": 4.07e-06 - }, - { - "word": "resentment", - "freq": 4.07e-06 - }, - { - "word": "trajectory", - "freq": 4.07e-06 - }, - { - "word": "underrated", - "freq": 4.07e-06 - }, - { - "word": "accusation", - "freq": 3.98e-06 - }, - { - "word": "adjustable", - "freq": 3.98e-06 - }, - { - "word": "affiliates", - "freq": 3.98e-06 - }, - { - "word": "cultivated", - "freq": 3.98e-06 - }, - { - "word": "exhausting", - "freq": 3.98e-06 - }, - { - "word": "fascinated", - "freq": 3.98e-06 - }, - { - "word": "gymnastics", - "freq": 3.98e-06 - }, - { - "word": "lancashire", - "freq": 3.98e-06 - }, - { - "word": "ministries", - "freq": 3.98e-06 - }, - { - "word": "pertaining", - "freq": 3.98e-06 - }, - { - "word": "portsmouth", - "freq": 3.98e-06 - }, - { - "word": "prosperous", - "freq": 3.98e-06 - }, - { - "word": "respecting", - "freq": 3.98e-06 - }, - { - "word": "suppressed", - "freq": 3.98e-06 - }, - { - "word": "williamson", - "freq": 3.98e-06 - }, - { - "word": "admiration", - "freq": 3.89e-06 - }, - { - "word": "aesthetics", - "freq": 3.89e-06 - }, - { - "word": "courageous", - "freq": 3.89e-06 - }, - { - "word": "economical", - "freq": 3.89e-06 - }, - { - "word": "exposition", - "freq": 3.89e-06 - }, - { - "word": "fundraiser", - "freq": 3.89e-06 - }, - { - "word": "inherently", - "freq": 3.89e-06 - }, - { - "word": "patriotism", - "freq": 3.89e-06 - }, - { - "word": "socialists", - "freq": 3.89e-06 - }, - { - "word": "supervised", - "freq": 3.89e-06 - }, - { - "word": "tendencies", - "freq": 3.89e-06 - }, - { - "word": "adolescent", - "freq": 3.8e-06 - }, - { - "word": "competence", - "freq": 3.8e-06 - }, - { - "word": "contacting", - "freq": 3.8e-06 - }, - { - "word": "contagious", - "freq": 3.8e-06 - }, - { - "word": "discounted", - "freq": 3.8e-06 - }, - { - "word": "dominating", - "freq": 3.8e-06 - }, - { - "word": "projecting", - "freq": 3.8e-06 - }, - { - "word": "prostitute", - "freq": 3.8e-06 - }, - { - "word": "reflective", - "freq": 3.8e-06 - }, - { - "word": "resilience", - "freq": 3.8e-06 - }, - { - "word": "similarity", - "freq": 3.8e-06 - }, - { - "word": "touchdowns", - "freq": 3.8e-06 - }, - { - "word": "brightness", - "freq": 3.72e-06 - }, - { - "word": "combustion", - "freq": 3.72e-06 - }, - { - "word": "concession", - "freq": 3.72e-06 - }, - { - "word": "discourage", - "freq": 3.72e-06 - }, - { - "word": "disposable", - "freq": 3.72e-06 - }, - { - "word": "distressed", - "freq": 3.72e-06 - }, - { - "word": "essentials", - "freq": 3.72e-06 - }, - { - "word": "georgetown", - "freq": 3.72e-06 - }, - { - "word": "indicative", - "freq": 3.72e-06 - }, - { - "word": "kazakhstan", - "freq": 3.72e-06 - }, - { - "word": "luxembourg", - "freq": 3.72e-06 - }, - { - "word": "metropolis", - "freq": 3.72e-06 - }, - { - "word": "paragraphs", - "freq": 3.72e-06 - }, - { - "word": "procession", - "freq": 3.72e-06 - }, - { - "word": "relocation", - "freq": 3.72e-06 - }, - { - "word": "sanitation", - "freq": 3.72e-06 - }, - { - "word": "sculptures", - "freq": 3.72e-06 - }, - { - "word": "victorious", - "freq": 3.72e-06 - }, - { - "word": "antibodies", - "freq": 3.63e-06 - }, - { - "word": "belongings", - "freq": 3.63e-06 - }, - { - "word": "calculator", - "freq": 3.63e-06 - }, - { - "word": "concussion", - "freq": 3.63e-06 - }, - { - "word": "encryption", - "freq": 3.63e-06 - }, - { - "word": "fraternity", - "freq": 3.63e-06 - }, - { - "word": "insecurity", - "freq": 3.63e-06 - }, - { - "word": "inventions", - "freq": 3.63e-06 - }, - { - "word": "irrational", - "freq": 3.63e-06 - }, - { - "word": "managerial", - "freq": 3.63e-06 - }, - { - "word": "moderately", - "freq": 3.63e-06 - }, - { - "word": "multimedia", - "freq": 3.63e-06 - }, - { - "word": "programmer", - "freq": 3.63e-06 - }, - { - "word": "psychiatry", - "freq": 3.63e-06 - }, - { - "word": "repetitive", - "freq": 3.63e-06 - }, - { - "word": "researched", - "freq": 3.63e-06 - }, - { - "word": "scratching", - "freq": 3.63e-06 - }, - { - "word": "submitting", - "freq": 3.63e-06 - }, - { - "word": "waterfront", - "freq": 3.63e-06 - }, - { - "word": "winchester", - "freq": 3.63e-06 - }, - { - "word": "circulated", - "freq": 3.55e-06 - }, - { - "word": "cumulative", - "freq": 3.55e-06 - }, - { - "word": "distortion", - "freq": 3.55e-06 - }, - { - "word": "hesitation", - "freq": 3.55e-06 - }, - { - "word": "impairment", - "freq": 3.55e-06 - }, - { - "word": "lighthouse", - "freq": 3.55e-06 - }, - { - "word": "overcoming", - "freq": 3.55e-06 - }, - { - "word": "prevailing", - "freq": 3.55e-06 - }, - { - "word": "regulating", - "freq": 3.55e-06 - }, - { - "word": "sentiments", - "freq": 3.55e-06 - }, - { - "word": "sustaining", - "freq": 3.55e-06 - }, - { - "word": "turbulence", - "freq": 3.55e-06 - }, - { - "word": "waterproof", - "freq": 3.55e-06 - }, - { - "word": "administer", - "freq": 3.47e-06 - }, - { - "word": "admittedly", - "freq": 3.47e-06 - }, - { - "word": "articulate", - "freq": 3.47e-06 - }, - { - "word": "concluding", - "freq": 3.47e-06 - }, - { - "word": "cunningham", - "freq": 3.47e-06 - }, - { - "word": "homecoming", - "freq": 3.47e-06 - }, - { - "word": "invaluable", - "freq": 3.47e-06 - }, - { - "word": "pioneering", - "freq": 3.47e-06 - }, - { - "word": "prominence", - "freq": 3.47e-06 - }, - { - "word": "screenplay", - "freq": 3.47e-06 - }, - { - "word": "scriptures", - "freq": 3.47e-06 - }, - { - "word": "antarctica", - "freq": 3.39e-06 - }, - { - "word": "atrocities", - "freq": 3.39e-06 - }, - { - "word": "conversely", - "freq": 3.39e-06 - }, - { - "word": "distinctly", - "freq": 3.39e-06 - }, - { - "word": "favourable", - "freq": 3.39e-06 - }, - { - "word": "gloucester", - "freq": 3.39e-06 - }, - { - "word": "harvesting", - "freq": 3.39e-06 - }, - { - "word": "localities", - "freq": 3.39e-06 - }, - { - "word": "subscribed", - "freq": 3.39e-06 - }, - { - "word": "unreliable", - "freq": 3.39e-06 - }, - { - "word": "adrenaline", - "freq": 3.31e-06 - }, - { - "word": "buckingham", - "freq": 3.31e-06 - }, - { - "word": "demolished", - "freq": 3.31e-06 - }, - { - "word": "dependency", - "freq": 3.31e-06 - }, - { - "word": "ecosystems", - "freq": 3.31e-06 - }, - { - "word": "enrichment", - "freq": 3.31e-06 - }, - { - "word": "formulated", - "freq": 3.31e-06 - }, - { - "word": "freshwater", - "freq": 3.31e-06 - }, - { - "word": "huntington", - "freq": 3.31e-06 - }, - { - "word": "initiation", - "freq": 3.31e-06 - }, - { - "word": "injections", - "freq": 3.31e-06 - }, - { - "word": "kensington", - "freq": 3.31e-06 - }, - { - "word": "resembling", - "freq": 3.31e-06 - }, - { - "word": "starvation", - "freq": 3.31e-06 - }, - { - "word": "subscriber", - "freq": 3.31e-06 - }, - { - "word": "wonderland", - "freq": 3.31e-06 - }, - { - "word": "abandoning", - "freq": 3.24e-06 - }, - { - "word": "acquainted", - "freq": 3.24e-06 - }, - { - "word": "auditorium", - "freq": 3.24e-06 - }, - { - "word": "delusional", - "freq": 3.24e-06 - }, - { - "word": "deposition", - "freq": 3.24e-06 - }, - { - "word": "descending", - "freq": 3.24e-06 - }, - { - "word": "fabricated", - "freq": 3.24e-06 - }, - { - "word": "gatherings", - "freq": 3.24e-06 - }, - { - "word": "infinitely", - "freq": 3.24e-06 - }, - { - "word": "parenthood", - "freq": 3.24e-06 - }, - { - "word": "procedural", - "freq": 3.24e-06 - }, - { - "word": "profoundly", - "freq": 3.24e-06 - }, - { - "word": "relentless", - "freq": 3.24e-06 - }, - { - "word": "repression", - "freq": 3.24e-06 - }, - { - "word": "ultrasound", - "freq": 3.24e-06 - }, - { - "word": "witnessing", - "freq": 3.24e-06 - }, - { - "word": "allegation", - "freq": 3.16e-06 - }, - { - "word": "antibiotic", - "freq": 3.16e-06 - }, - { - "word": "broadcasts", - "freq": 3.16e-06 - }, - { - "word": "burlington", - "freq": 3.16e-06 - }, - { - "word": "correlated", - "freq": 3.16e-06 - }, - { - "word": "correspond", - "freq": 3.16e-06 - }, - { - "word": "homophobic", - "freq": 3.16e-06 - }, - { - "word": "javascript", - "freq": 3.16e-06 - }, - { - "word": "liberalism", - "freq": 3.16e-06 - }, - { - "word": "locomotive", - "freq": 3.16e-06 - }, - { - "word": "microscope", - "freq": 3.16e-06 - }, - { - "word": "monumental", - "freq": 3.16e-06 - }, - { - "word": "pilgrimage", - "freq": 3.16e-06 - }, - { - "word": "preventive", - "freq": 3.16e-06 - }, - { - "word": "regression", - "freq": 3.16e-06 - }, - { - "word": "staggering", - "freq": 3.16e-06 - }, - { - "word": "synonymous", - "freq": 3.16e-06 - }, - { - "word": "volkswagen", - "freq": 3.16e-06 - }, - { - "word": "yugoslavia", - "freq": 3.16e-06 - }, - { - "word": "ceremonial", - "freq": 3.09e-06 - }, - { - "word": "concurrent", - "freq": 3.09e-06 - }, - { - "word": "exhaustion", - "freq": 3.09e-06 - }, - { - "word": "expectancy", - "freq": 3.09e-06 - }, - { - "word": "grassroots", - "freq": 3.09e-06 - }, - { - "word": "hereditary", - "freq": 3.09e-06 - }, - { - "word": "horsepower", - "freq": 3.09e-06 - }, - { - "word": "laundering", - "freq": 3.09e-06 - }, - { - "word": "negativity", - "freq": 3.09e-06 - }, - { - "word": "noteworthy", - "freq": 3.09e-06 - }, - { - "word": "organising", - "freq": 3.09e-06 - }, - { - "word": "overturned", - "freq": 3.09e-06 - }, - { - "word": "pesticides", - "freq": 3.09e-06 - }, - { - "word": "suspicions", - "freq": 3.09e-06 - }, - { - "word": "volatility", - "freq": 3.09e-06 - }, - { - "word": "accumulate", - "freq": 3.02e-06 - }, - { - "word": "assemblies", - "freq": 3.02e-06 - }, - { - "word": "azerbaijan", - "freq": 3.02e-06 - }, - { - "word": "chromosome", - "freq": 3.02e-06 - }, - { - "word": "contestant", - "freq": 3.02e-06 - }, - { - "word": "correcting", - "freq": 3.02e-06 - }, - { - "word": "crossroads", - "freq": 3.02e-06 - }, - { - "word": "disneyland", - "freq": 3.02e-06 - }, - { - "word": "eighteenth", - "freq": 3.02e-06 - }, - { - "word": "emphasizes", - "freq": 3.02e-06 - }, - { - "word": "empowering", - "freq": 3.02e-06 - }, - { - "word": "expiration", - "freq": 3.02e-06 - }, - { - "word": "exploiting", - "freq": 3.02e-06 - }, - { - "word": "hysterical", - "freq": 3.02e-06 - }, - { - "word": "injunction", - "freq": 3.02e-06 - }, - { - "word": "instituted", - "freq": 3.02e-06 - }, - { - "word": "repetition", - "freq": 3.02e-06 - }, - { - "word": "triggering", - "freq": 3.02e-06 - }, - { - "word": "aggravated", - "freq": 2.95e-06 - }, - { - "word": "biomedical", - "freq": 2.95e-06 - }, - { - "word": "extremists", - "freq": 2.95e-06 - }, - { - "word": "heightened", - "freq": 2.95e-06 - }, - { - "word": "interfaces", - "freq": 2.95e-06 - }, - { - "word": "memorandum", - "freq": 2.95e-06 - }, - { - "word": "moderation", - "freq": 2.95e-06 - }, - { - "word": "paranormal", - "freq": 2.95e-06 - }, - { - "word": "sutherland", - "freq": 2.95e-06 - }, - { - "word": "unbearable", - "freq": 2.95e-06 - }, - { - "word": "despicable", - "freq": 2.88e-06 - }, - { - "word": "detachment", - "freq": 2.88e-06 - }, - { - "word": "disclaimer", - "freq": 2.88e-06 - }, - { - "word": "disconnect", - "freq": 2.88e-06 - }, - { - "word": "disruptive", - "freq": 2.88e-06 - }, - { - "word": "enthusiast", - "freq": 2.88e-06 - }, - { - "word": "estimation", - "freq": 2.88e-06 - }, - { - "word": "excavation", - "freq": 2.88e-06 - }, - { - "word": "flashlight", - "freq": 2.88e-06 - }, - { - "word": "flattering", - "freq": 2.88e-06 - }, - { - "word": "horrifying", - "freq": 2.88e-06 - }, - { - "word": "implicated", - "freq": 2.88e-06 - }, - { - "word": "mitigation", - "freq": 2.88e-06 - }, - { - "word": "operatives", - "freq": 2.88e-06 - }, - { - "word": "permitting", - "freq": 2.88e-06 - }, - { - "word": "postseason", - "freq": 2.88e-06 - }, - { - "word": "propulsion", - "freq": 2.88e-06 - }, - { - "word": "reproduced", - "freq": 2.88e-06 - }, - { - "word": "underworld", - "freq": 2.88e-06 - }, - { - "word": "vertically", - "freq": 2.88e-06 - }, - { - "word": "characters", - "freq": 2.82e-06 - }, - { - "word": "alcoholism", - "freq": 2.82e-06 - }, - { - "word": "astounding", - "freq": 2.82e-06 - }, - { - "word": "bitterness", - "freq": 2.82e-06 - }, - { - "word": "cinderella", - "freq": 2.82e-06 - }, - { - "word": "coronation", - "freq": 2.82e-06 - }, - { - "word": "cumberland", - "freq": 2.82e-06 - }, - { - "word": "durability", - "freq": 2.82e-06 - }, - { - "word": "fatalities", - "freq": 2.82e-06 - }, - { - "word": "mistakenly", - "freq": 2.82e-06 - } - ], - "8": [ - { - "word": "business", - "freq": 0.000363 - }, - { - "word": "anything", - "freq": 0.000355 - }, - { - "word": "national", - "freq": 0.000324 - }, - { - "word": "actually", - "freq": 0.000309 - }, - { - "word": "american", - "freq": 0.000309 - }, - { - "word": "children", - "freq": 0.000295 - }, - { - "word": "everyone", - "freq": 0.000295 - }, - { - "word": "together", - "freq": 0.000288 - }, - { - "word": "research", - "freq": 0.000245 - }, - { - "word": "remember", - "freq": 0.00024 - }, - { - "word": "probably", - "freq": 0.000234 - }, - { - "word": "possible", - "freq": 0.000229 - }, - { - "word": "question", - "freq": 0.000224 - }, - { - "word": "yourself", - "freq": 0.000204 - }, - { - "word": "although", - "freq": 0.0002 - }, - { - "word": "building", - "freq": 0.000195 - }, - { - "word": "thinking", - "freq": 0.000174 - }, - { - "word": "position", - "freq": 0.000162 - }, - { - "word": "happened", - "freq": 0.000158 - }, - { - "word": "military", - "freq": 0.000158 - }, - { - "word": "personal", - "freq": 0.000158 - }, - { - "word": "security", - "freq": 0.000158 - }, - { - "word": "industry", - "freq": 0.000155 - }, - { - "word": "training", - "freq": 0.000151 - }, - { - "word": "interest", - "freq": 0.000148 - }, - { - "word": "original", - "freq": 0.000145 - }, - { - "word": "received", - "freq": 0.000145 - }, - { - "word": "director", - "freq": 0.000141 - }, - { - "word": "evidence", - "freq": 0.000138 - }, - { - "word": "official", - "freq": 0.000138 - }, - { - "word": "whatever", - "freq": 0.000138 - }, - { - "word": "football", - "freq": 0.000129 - }, - { - "word": "property", - "freq": 0.000129 - }, - { - "word": "complete", - "freq": 0.000126 - }, - { - "word": "economic", - "freq": 0.000126 - }, - { - "word": "involved", - "freq": 0.000126 - }, - { - "word": "language", - "freq": 0.000126 - }, - { - "word": "november", - "freq": 0.000126 - }, - { - "word": "decision", - "freq": 0.000123 - }, - { - "word": "continue", - "freq": 0.00012 - }, - { - "word": "election", - "freq": 0.00012 - }, - { - "word": "european", - "freq": 0.00012 - }, - { - "word": "increase", - "freq": 0.00012 - }, - { - "word": "daughter", - "freq": 0.000117 - }, - { - "word": "december", - "freq": 0.000117 - }, - { - "word": "hospital", - "freq": 0.000117 - }, - { - "word": "starting", - "freq": 0.000117 - }, - { - "word": "internet", - "freq": 0.000115 - }, - { - "word": "practice", - "freq": 0.000115 - }, - { - "word": "followed", - "freq": 0.000112 - }, - { - "word": "released", - "freq": 0.000112 - }, - { - "word": "district", - "freq": 0.00011 - }, - { - "word": "minister", - "freq": 0.00011 - }, - { - "word": "straight", - "freq": 0.00011 - }, - { - "word": "february", - "freq": 0.000107 - }, - { - "word": "included", - "freq": 0.000107 - }, - { - "word": "response", - "freq": 0.000107 - }, - { - "word": "specific", - "freq": 0.000107 - }, - { - "word": "standard", - "freq": 0.000107 - }, - { - "word": "provided", - "freq": 0.000105 - }, - { - "word": "recently", - "freq": 0.000105 - }, - { - "word": "required", - "freq": 0.000105 - }, - { - "word": "tomorrow", - "freq": 0.000105 - }, - { - "word": "watching", - "freq": 0.000105 - }, - { - "word": "addition", - "freq": 0.000102 - }, - { - "word": "pressure", - "freq": 0.000102 - }, - { - "word": "campaign", - "freq": 0.0001 - }, - { - "word": "previous", - "freq": 0.0001 - }, - { - "word": "reported", - "freq": 0.0001 - }, - { - "word": "consider", - "freq": 9.77e-05 - }, - { - "word": "positive", - "freq": 9.77e-05 - }, - { - "word": "computer", - "freq": 9.33e-05 - }, - { - "word": "favorite", - "freq": 9.33e-05 - }, - { - "word": "movement", - "freq": 9.33e-05 - }, - { - "word": "designed", - "freq": 9.12e-05 - }, - { - "word": "expected", - "freq": 9.12e-05 - }, - { - "word": "includes", - "freq": 9.12e-05 - }, - { - "word": "material", - "freq": 8.91e-05 - }, - { - "word": "contract", - "freq": 8.71e-05 - }, - { - "word": "families", - "freq": 8.71e-05 - }, - { - "word": "features", - "freq": 8.71e-05 - }, - { - "word": "finished", - "freq": 8.71e-05 - }, - { - "word": "majority", - "freq": 8.71e-05 - }, - { - "word": "physical", - "freq": 8.71e-05 - }, - { - "word": "approach", - "freq": 8.51e-05 - }, - { - "word": "compared", - "freq": 8.32e-05 - }, - { - "word": "fighting", - "freq": 8.32e-05 - }, - { - "word": "learning", - "freq": 8.32e-05 - }, - { - "word": "multiple", - "freq": 8.32e-05 - }, - { - "word": "analysis", - "freq": 8.13e-05 - }, - { - "word": "marriage", - "freq": 8.13e-05 - }, - { - "word": "speaking", - "freq": 8.13e-05 - }, - { - "word": "supposed", - "freq": 8.13e-05 - }, - { - "word": "congress", - "freq": 7.94e-05 - }, - { - "word": "directly", - "freq": 7.94e-05 - }, - { - "word": "facebook", - "freq": 7.94e-05 - }, - { - "word": "planning", - "freq": 7.94e-05 - }, - { - "word": "comments", - "freq": 7.41e-05 - }, - { - "word": "politics", - "freq": 7.41e-05 - }, - { - "word": "produced", - "freq": 7.41e-05 - }, - { - "word": "saturday", - "freq": 7.41e-05 - }, - { - "word": "activity", - "freq": 7.24e-05 - }, - { - "word": "division", - "freq": 7.24e-05 - }, - { - "word": "location", - "freq": 7.24e-05 - }, - { - "word": "standing", - "freq": 7.24e-05 - }, - { - "word": "distance", - "freq": 7.08e-05 - }, - { - "word": "exchange", - "freq": 7.08e-05 - }, - { - "word": "northern", - "freq": 7.08e-05 - }, - { - "word": "powerful", - "freq": 7.08e-05 - }, - { - "word": "benefits", - "freq": 6.92e-05 - }, - { - "word": "solution", - "freq": 6.92e-05 - }, - { - "word": "southern", - "freq": 6.92e-05 - }, - { - "word": "appeared", - "freq": 6.76e-05 - }, - { - "word": "critical", - "freq": 6.76e-05 - }, - { - "word": "separate", - "freq": 6.76e-05 - }, - { - "word": "returned", - "freq": 6.61e-05 - }, - { - "word": "becoming", - "freq": 6.46e-05 - }, - { - "word": "japanese", - "freq": 6.46e-05 - }, - { - "word": "chairman", - "freq": 6.31e-05 - }, - { - "word": "provides", - "freq": 6.31e-05 - }, - { - "word": "somebody", - "freq": 6.31e-05 - }, - { - "word": "strength", - "freq": 6.31e-05 - }, - { - "word": "greatest", - "freq": 6.17e-05 - }, - { - "word": "negative", - "freq": 6.17e-05 - }, - { - "word": "function", - "freq": 6.03e-05 - }, - { - "word": "progress", - "freq": 6.03e-05 - }, - { - "word": "shooting", - "freq": 6.03e-05 - }, - { - "word": "possibly", - "freq": 5.89e-05 - }, - { - "word": "software", - "freq": 5.89e-05 - }, - { - "word": "birthday", - "freq": 5.75e-05 - }, - { - "word": "changing", - "freq": 5.75e-05 - }, - { - "word": "believed", - "freq": 5.62e-05 - }, - { - "word": "criminal", - "freq": 5.62e-05 - }, - { - "word": "cultural", - "freq": 5.62e-05 - }, - { - "word": "existing", - "freq": 5.62e-05 - }, - { - "word": "slightly", - "freq": 5.62e-05 - }, - { - "word": "surprise", - "freq": 5.62e-05 - }, - { - "word": "thoughts", - "freq": 5.62e-05 - }, - { - "word": "violence", - "freq": 5.62e-05 - }, - { - "word": "breaking", - "freq": 5.5e-05 - }, - { - "word": "magazine", - "freq": 5.5e-05 - }, - { - "word": "prepared", - "freq": 5.5e-05 - }, - { - "word": "religion", - "freq": 5.5e-05 - }, - { - "word": "strategy", - "freq": 5.5e-05 - }, - { - "word": "audience", - "freq": 5.37e-05 - }, - { - "word": "medicine", - "freq": 5.37e-05 - }, - { - "word": "mountain", - "freq": 5.37e-05 - }, - { - "word": "presence", - "freq": 5.37e-05 - }, - { - "word": "reaction", - "freq": 5.37e-05 - }, - { - "word": "electric", - "freq": 5.25e-05 - }, - { - "word": "entirely", - "freq": 5.25e-05 - }, - { - "word": "festival", - "freq": 5.25e-05 - }, - { - "word": "regional", - "freq": 5.25e-05 - }, - { - "word": "teaching", - "freq": 5.25e-05 - }, - { - "word": "transfer", - "freq": 5.25e-05 - }, - { - "word": "accident", - "freq": 5.13e-05 - }, - { - "word": "advanced", - "freq": 5.13e-05 - }, - { - "word": "anywhere", - "freq": 5.13e-05 - }, - { - "word": "bringing", - "freq": 5.13e-05 - }, - { - "word": "capacity", - "freq": 5.13e-05 - }, - { - "word": "drinking", - "freq": 5.13e-05 - }, - { - "word": "governor", - "freq": 5.13e-05 - }, - { - "word": "policies", - "freq": 5.13e-05 - }, - { - "word": "proposed", - "freq": 5.13e-05 - }, - { - "word": "purchase", - "freq": 5.13e-05 - }, - { - "word": "spending", - "freq": 5.13e-05 - }, - { - "word": "terrible", - "freq": 5.13e-05 - }, - { - "word": "canadian", - "freq": 5.01e-05 - }, - { - "word": "intended", - "freq": 5.01e-05 - }, - { - "word": "attorney", - "freq": 4.9e-05 - }, - { - "word": "behavior", - "freq": 4.9e-05 - }, - { - "word": "creating", - "freq": 4.9e-05 - }, - { - "word": "domestic", - "freq": 4.9e-05 - }, - { - "word": "honestly", - "freq": 4.9e-05 - }, - { - "word": "suddenly", - "freq": 4.9e-05 - }, - { - "word": "combined", - "freq": 4.79e-05 - }, - { - "word": "contains", - "freq": 4.79e-05 - }, - { - "word": "download", - "freq": 4.79e-05 - }, - { - "word": "exercise", - "freq": 4.79e-05 - }, - { - "word": "scotland", - "freq": 4.79e-05 - }, - { - "word": "selected", - "freq": 4.79e-05 - }, - { - "word": "shopping", - "freq": 4.79e-05 - }, - { - "word": "accepted", - "freq": 4.68e-05 - }, - { - "word": "measures", - "freq": 4.68e-05 - }, - { - "word": "platform", - "freq": 4.68e-05 - }, - { - "word": "requires", - "freq": 4.68e-05 - }, - { - "word": "schedule", - "freq": 4.68e-05 - }, - { - "word": "internal", - "freq": 4.57e-05 - }, - { - "word": "recorded", - "freq": 4.57e-05 - }, - { - "word": "identity", - "freq": 4.47e-05 - }, - { - "word": "maintain", - "freq": 4.47e-05 - }, - { - "word": "numerous", - "freq": 4.47e-05 - }, - { - "word": "revealed", - "freq": 4.47e-05 - }, - { - "word": "affected", - "freq": 4.37e-05 - }, - { - "word": "aircraft", - "freq": 4.37e-05 - }, - { - "word": "approved", - "freq": 4.37e-05 - }, - { - "word": "argument", - "freq": 4.37e-05 - }, - { - "word": "arrested", - "freq": 4.37e-05 - }, - { - "word": "conflict", - "freq": 4.37e-05 - }, - { - "word": "extended", - "freq": 4.37e-05 - }, - { - "word": "friendly", - "freq": 4.37e-05 - }, - { - "word": "properly", - "freq": 4.37e-05 - }, - { - "word": "thousand", - "freq": 4.37e-05 - }, - { - "word": "coverage", - "freq": 4.27e-05 - }, - { - "word": "examples", - "freq": 4.27e-05 - }, - { - "word": "inspired", - "freq": 4.27e-05 - }, - { - "word": "launched", - "freq": 4.27e-05 - }, - { - "word": "ministry", - "freq": 4.27e-05 - }, - { - "word": "whenever", - "freq": 4.27e-05 - }, - { - "word": "allowing", - "freq": 4.17e-05 - }, - { - "word": "champion", - "freq": 4.17e-05 - }, - { - "word": "opposite", - "freq": 4.17e-05 - }, - { - "word": "remained", - "freq": 4.17e-05 - }, - { - "word": "struggle", - "freq": 4.17e-05 - }, - { - "word": "thursday", - "freq": 4.17e-05 - }, - { - "word": "virginia", - "freq": 4.17e-05 - }, - { - "word": "assembly", - "freq": 4.07e-05 - }, - { - "word": "carrying", - "freq": 4.07e-05 - }, - { - "word": "customer", - "freq": 4.07e-05 - }, - { - "word": "familiar", - "freq": 4.07e-05 - }, - { - "word": "hundreds", - "freq": 4.07e-05 - }, - { - "word": "improved", - "freq": 4.07e-05 - }, - { - "word": "laughing", - "freq": 4.07e-05 - }, - { - "word": "referred", - "freq": 4.07e-05 - }, - { - "word": "relevant", - "freq": 4.07e-05 - }, - { - "word": "creative", - "freq": 3.98e-05 - }, - { - "word": "directed", - "freq": 3.98e-05 - }, - { - "word": "facility", - "freq": 3.98e-05 - }, - { - "word": "offering", - "freq": 3.98e-05 - }, - { - "word": "painting", - "freq": 3.98e-05 - }, - { - "word": "republic", - "freq": 3.98e-05 - }, - { - "word": "scottish", - "freq": 3.98e-05 - }, - { - "word": "concerns", - "freq": 3.89e-05 - }, - { - "word": "delivery", - "freq": 3.89e-05 - }, - { - "word": "instance", - "freq": 3.89e-05 - }, - { - "word": "realized", - "freq": 3.89e-05 - }, - { - "word": "register", - "freq": 3.89e-05 - }, - { - "word": "universe", - "freq": 3.89e-05 - }, - { - "word": "attitude", - "freq": 3.8e-05 - }, - { - "word": "recovery", - "freq": 3.8e-05 - }, - { - "word": "sentence", - "freq": 3.8e-05 - }, - { - "word": "academic", - "freq": 3.72e-05 - }, - { - "word": "accurate", - "freq": 3.72e-05 - }, - { - "word": "category", - "freq": 3.72e-05 - }, - { - "word": "chemical", - "freq": 3.72e-05 - }, - { - "word": "normally", - "freq": 3.72e-05 - }, - { - "word": "occurred", - "freq": 3.72e-05 - }, - { - "word": "pleasure", - "freq": 3.72e-05 - }, - { - "word": "consumer", - "freq": 3.63e-05 - }, - { - "word": "creation", - "freq": 3.63e-05 - }, - { - "word": "describe", - "freq": 3.63e-05 - }, - { - "word": "identify", - "freq": 3.63e-05 - }, - { - "word": "pregnant", - "freq": 3.63e-05 - }, - { - "word": "sleeping", - "freq": 3.63e-05 - }, - { - "word": "catholic", - "freq": 3.55e-05 - }, - { - "word": "declared", - "freq": 3.55e-05 - }, - { - "word": "interior", - "freq": 3.55e-05 - }, - { - "word": "pakistan", - "freq": 3.55e-05 - }, - { - "word": "replaced", - "freq": 3.55e-05 - }, - { - "word": "somewhat", - "freq": 3.55e-05 - }, - { - "word": "stronger", - "freq": 3.55e-05 - }, - { - "word": "absolute", - "freq": 3.47e-05 - }, - { - "word": "agencies", - "freq": 3.47e-05 - }, - { - "word": "baseball", - "freq": 3.47e-05 - }, - { - "word": "bathroom", - "freq": 3.47e-05 - }, - { - "word": "constant", - "freq": 3.47e-05 - }, - { - "word": "exciting", - "freq": 3.47e-05 - }, - { - "word": "incident", - "freq": 3.47e-05 - }, - { - "word": "messages", - "freq": 3.47e-05 - }, - { - "word": "michigan", - "freq": 3.47e-05 - }, - { - "word": "princess", - "freq": 3.39e-05 - }, - { - "word": "ultimate", - "freq": 3.39e-05 - }, - { - "word": "attached", - "freq": 3.31e-05 - }, - { - "word": "attacked", - "freq": 3.31e-05 - }, - { - "word": "carolina", - "freq": 3.31e-05 - }, - { - "word": "external", - "freq": 3.31e-05 - }, - { - "word": "shipping", - "freq": 3.31e-05 - }, - { - "word": "suffered", - "freq": 3.31e-05 - }, - { - "word": "clinical", - "freq": 3.24e-05 - }, - { - "word": "detailed", - "freq": 3.24e-05 - }, - { - "word": "entitled", - "freq": 3.24e-05 - }, - { - "word": "purposes", - "freq": 3.24e-05 - }, - { - "word": "valuable", - "freq": 3.24e-05 - }, - { - "word": "approval", - "freq": 3.16e-05 - }, - { - "word": "attempts", - "freq": 3.16e-05 - }, - { - "word": "document", - "freq": 3.16e-05 - }, - { - "word": "employee", - "freq": 3.16e-05 - }, - { - "word": "engineer", - "freq": 3.16e-05 - }, - { - "word": "graduate", - "freq": 3.16e-05 - }, - { - "word": "memories", - "freq": 3.16e-05 - }, - { - "word": "shoulder", - "freq": 3.16e-05 - }, - { - "word": "achieved", - "freq": 3.09e-05 - }, - { - "word": "admitted", - "freq": 3.09e-05 - }, - { - "word": "historic", - "freq": 3.09e-05 - }, - { - "word": "obtained", - "freq": 3.09e-05 - }, - { - "word": "promised", - "freq": 3.09e-05 - }, - { - "word": "suggests", - "freq": 3.09e-05 - }, - { - "word": "payments", - "freq": 3.02e-05 - }, - { - "word": "relative", - "freq": 3.02e-05 - }, - { - "word": "supplies", - "freq": 3.02e-05 - }, - { - "word": "symptoms", - "freq": 3.02e-05 - }, - { - "word": "attended", - "freq": 2.95e-05 - }, - { - "word": "bullshit", - "freq": 2.95e-05 - }, - { - "word": "clothing", - "freq": 2.95e-05 - }, - { - "word": "confused", - "freq": 2.95e-05 - }, - { - "word": "everyday", - "freq": 2.95e-05 - }, - { - "word": "proposal", - "freq": 2.95e-05 - }, - { - "word": "province", - "freq": 2.95e-05 - }, - { - "word": "strongly", - "freq": 2.95e-05 - }, - { - "word": "colorado", - "freq": 2.88e-05 - }, - { - "word": "contrast", - "freq": 2.88e-05 - }, - { - "word": "reaching", - "freq": 2.88e-05 - }, - { - "word": "superior", - "freq": 2.88e-05 - }, - { - "word": "covering", - "freq": 2.82e-05 - }, - { - "word": "informed", - "freq": 2.82e-05 - }, - { - "word": "innocent", - "freq": 2.82e-05 - }, - { - "word": "mistakes", - "freq": 2.82e-05 - }, - { - "word": "olympics", - "freq": 2.82e-05 - }, - { - "word": "captured", - "freq": 2.75e-05 - }, - { - "word": "concrete", - "freq": 2.75e-05 - }, - { - "word": "exposure", - "freq": 2.75e-05 - }, - { - "word": "featured", - "freq": 2.75e-05 - }, - { - "word": "horrible", - "freq": 2.75e-05 - }, - { - "word": "illinois", - "freq": 2.75e-05 - }, - { - "word": "injuries", - "freq": 2.75e-05 - }, - { - "word": "producer", - "freq": 2.75e-05 - }, - { - "word": "victoria", - "freq": 2.75e-05 - }, - { - "word": "visiting", - "freq": 2.75e-05 - }, - { - "word": "believes", - "freq": 2.69e-05 - }, - { - "word": "checking", - "freq": 2.69e-05 - }, - { - "word": "romantic", - "freq": 2.69e-05 - }, - { - "word": "swimming", - "freq": 2.69e-05 - }, - { - "word": "ceremony", - "freq": 2.63e-05 - }, - { - "word": "designer", - "freq": 2.63e-05 - }, - { - "word": "employed", - "freq": 2.63e-05 - }, - { - "word": "enjoying", - "freq": 2.63e-05 - }, - { - "word": "entering", - "freq": 2.63e-05 - }, - { - "word": "explains", - "freq": 2.63e-05 - }, - { - "word": "ordinary", - "freq": 2.63e-05 - }, - { - "word": "studying", - "freq": 2.63e-05 - }, - { - "word": "dramatic", - "freq": 2.57e-05 - }, - { - "word": "memorial", - "freq": 2.57e-05 - }, - { - "word": "minority", - "freq": 2.57e-05 - }, - { - "word": "opinions", - "freq": 2.57e-05 - }, - { - "word": "patterns", - "freq": 2.57e-05 - }, - { - "word": "presents", - "freq": 2.57e-05 - }, - { - "word": "priority", - "freq": 2.57e-05 - }, - { - "word": "acquired", - "freq": 2.51e-05 - }, - { - "word": "alliance", - "freq": 2.51e-05 - }, - { - "word": "annoying", - "freq": 2.51e-05 - }, - { - "word": "columbia", - "freq": 2.51e-05 - }, - { - "word": "downtown", - "freq": 2.51e-05 - }, - { - "word": "managing", - "freq": 2.51e-05 - }, - { - "word": "throwing", - "freq": 2.51e-05 - }, - { - "word": "vacation", - "freq": 2.51e-05 - }, - { - "word": "assigned", - "freq": 2.45e-05 - }, - { - "word": "atlantic", - "freq": 2.45e-05 - }, - { - "word": "cleaning", - "freq": 2.45e-05 - }, - { - "word": "consists", - "freq": 2.45e-05 - }, - { - "word": "disaster", - "freq": 2.45e-05 - }, - { - "word": "discover", - "freq": 2.45e-05 - }, - { - "word": "entrance", - "freq": 2.45e-05 - }, - { - "word": "handling", - "freq": 2.45e-05 - }, - { - "word": "lifetime", - "freq": 2.45e-05 - }, - { - "word": "mortgage", - "freq": 2.45e-05 - }, - { - "word": "observed", - "freq": 2.45e-05 - }, - { - "word": "resource", - "freq": 2.45e-05 - }, - { - "word": "commonly", - "freq": 2.4e-05 - }, - { - "word": "findings", - "freq": 2.4e-05 - }, - { - "word": "occasion", - "freq": 2.4e-05 - }, - { - "word": "resident", - "freq": 2.4e-05 - }, - { - "word": "suitable", - "freq": 2.4e-05 - }, - { - "word": "commerce", - "freq": 2.34e-05 - }, - { - "word": "currency", - "freq": 2.34e-05 - }, - { - "word": "emotions", - "freq": 2.34e-05 - }, - { - "word": "rejected", - "freq": 2.34e-05 - }, - { - "word": "resulted", - "freq": 2.34e-05 - }, - { - "word": "survival", - "freq": 2.34e-05 - }, - { - "word": "anderson", - "freq": 2.29e-05 - }, - { - "word": "heritage", - "freq": 2.29e-05 - }, - { - "word": "reducing", - "freq": 2.29e-05 - }, - { - "word": "discount", - "freq": 2.24e-05 - }, - { - "word": "gorgeous", - "freq": 2.24e-05 - }, - { - "word": "grateful", - "freq": 2.24e-05 - }, - { - "word": "indicate", - "freq": 2.24e-05 - }, - { - "word": "operated", - "freq": 2.24e-05 - }, - { - "word": "reporter", - "freq": 2.24e-05 - }, - { - "word": "sequence", - "freq": 2.24e-05 - }, - { - "word": "deserves", - "freq": 2.19e-05 - }, - { - "word": "involves", - "freq": 2.19e-05 - }, - { - "word": "upcoming", - "freq": 2.19e-05 - }, - { - "word": "claiming", - "freq": 2.14e-05 - }, - { - "word": "crossing", - "freq": 2.14e-05 - }, - { - "word": "dropping", - "freq": 2.14e-05 - }, - { - "word": "expenses", - "freq": 2.14e-05 - }, - { - "word": "guidance", - "freq": 2.14e-05 - }, - { - "word": "precious", - "freq": 2.14e-05 - }, - { - "word": "wildlife", - "freq": 2.14e-05 - }, - { - "word": "answered", - "freq": 2.09e-05 - }, - { - "word": "apparent", - "freq": 2.09e-05 - }, - { - "word": "feedback", - "freq": 2.09e-05 - }, - { - "word": "humanity", - "freq": 2.09e-05 - }, - { - "word": "murdered", - "freq": 2.09e-05 - }, - { - "word": "occupied", - "freq": 2.09e-05 - }, - { - "word": "operator", - "freq": 2.09e-05 - }, - { - "word": "railroad", - "freq": 2.09e-05 - }, - { - "word": "releases", - "freq": 2.09e-05 - }, - { - "word": "survived", - "freq": 2.09e-05 - }, - { - "word": "arranged", - "freq": 2.04e-05 - }, - { - "word": "database", - "freq": 2.04e-05 - }, - { - "word": "disorder", - "freq": 2.04e-05 - }, - { - "word": "hamilton", - "freq": 2.04e-05 - }, - { - "word": "jonathan", - "freq": 2.04e-05 - }, - { - "word": "lawrence", - "freq": 2.04e-05 - }, - { - "word": "literary", - "freq": 2.04e-05 - }, - { - "word": "midnight", - "freq": 2.04e-05 - }, - { - "word": "relation", - "freq": 2.04e-05 - }, - { - "word": "terminal", - "freq": 2.04e-05 - }, - { - "word": "unlikely", - "freq": 2.04e-05 - }, - { - "word": "calendar", - "freq": 2e-05 - }, - { - "word": "darkness", - "freq": 2e-05 - }, - { - "word": "hardware", - "freq": 2e-05 - }, - { - "word": "kentucky", - "freq": 2e-05 - }, - { - "word": "petition", - "freq": 2e-05 - }, - { - "word": "talented", - "freq": 2e-05 - }, - { - "word": "coaching", - "freq": 1.95e-05 - }, - { - "word": "dialogue", - "freq": 1.95e-05 - }, - { - "word": "disabled", - "freq": 1.95e-05 - }, - { - "word": "distinct", - "freq": 1.95e-05 - }, - { - "word": "educated", - "freq": 1.95e-05 - }, - { - "word": "eligible", - "freq": 1.95e-05 - }, - { - "word": "estimate", - "freq": 1.95e-05 - }, - { - "word": "lighting", - "freq": 1.95e-05 - }, - { - "word": "overseas", - "freq": 1.95e-05 - }, - { - "word": "regarded", - "freq": 1.95e-05 - }, - { - "word": "reliable", - "freq": 1.95e-05 - }, - { - "word": "stopping", - "freq": 1.95e-05 - }, - { - "word": "equipped", - "freq": 1.91e-05 - }, - { - "word": "expanded", - "freq": 1.91e-05 - }, - { - "word": "judgment", - "freq": 1.91e-05 - }, - { - "word": "malaysia", - "freq": 1.91e-05 - }, - { - "word": "peaceful", - "freq": 1.91e-05 - }, - { - "word": "printing", - "freq": 1.91e-05 - }, - { - "word": "publicly", - "freq": 1.91e-05 - }, - { - "word": "repeated", - "freq": 1.91e-05 - }, - { - "word": "requests", - "freq": 1.91e-05 - }, - { - "word": "stranger", - "freq": 1.91e-05 - }, - { - "word": "thompson", - "freq": 1.91e-05 - }, - { - "word": "churches", - "freq": 1.86e-05 - }, - { - "word": "composed", - "freq": 1.86e-05 - }, - { - "word": "counting", - "freq": 1.86e-05 - }, - { - "word": "earnings", - "freq": 1.86e-05 - }, - { - "word": "executed", - "freq": 1.86e-05 - }, - { - "word": "frequent", - "freq": 1.86e-05 - }, - { - "word": "gathered", - "freq": 1.86e-05 - }, - { - "word": "maryland", - "freq": 1.86e-05 - }, - { - "word": "moderate", - "freq": 1.86e-05 - }, - { - "word": "oklahoma", - "freq": 1.86e-05 - }, - { - "word": "overcome", - "freq": 1.86e-05 - }, - { - "word": "parallel", - "freq": 1.86e-05 - }, - { - "word": "stunning", - "freq": 1.86e-05 - }, - { - "word": "treating", - "freq": 1.86e-05 - }, - { - "word": "wherever", - "freq": 1.86e-05 - }, - { - "word": "announce", - "freq": 1.82e-05 - }, - { - "word": "choosing", - "freq": 1.82e-05 - }, - { - "word": "concepts", - "freq": 1.82e-05 - }, - { - "word": "convince", - "freq": 1.82e-05 - }, - { - "word": "equality", - "freq": 1.82e-05 - }, - { - "word": "guardian", - "freq": 1.82e-05 - }, - { - "word": "homeless", - "freq": 1.82e-05 - }, - { - "word": "missouri", - "freq": 1.82e-05 - }, - { - "word": "refugees", - "freq": 1.82e-05 - }, - { - "word": "removing", - "freq": 1.82e-05 - }, - { - "word": "spectrum", - "freq": 1.82e-05 - }, - { - "word": "brooklyn", - "freq": 1.78e-05 - }, - { - "word": "enormous", - "freq": 1.78e-05 - }, - { - "word": "focusing", - "freq": 1.78e-05 - }, - { - "word": "measured", - "freq": 1.78e-05 - }, - { - "word": "promises", - "freq": 1.78e-05 - }, - { - "word": "tracking", - "freq": 1.78e-05 - }, - { - "word": "abortion", - "freq": 1.74e-05 - }, - { - "word": "accuracy", - "freq": 1.74e-05 - }, - { - "word": "applying", - "freq": 1.74e-05 - }, - { - "word": "counties", - "freq": 1.74e-05 - }, - { - "word": "democrat", - "freq": 1.74e-05 - }, - { - "word": "formerly", - "freq": 1.74e-05 - }, - { - "word": "isolated", - "freq": 1.74e-05 - }, - { - "word": "marshall", - "freq": 1.74e-05 - }, - { - "word": "mitchell", - "freq": 1.74e-05 - }, - { - "word": "modified", - "freq": 1.74e-05 - }, - { - "word": "supplied", - "freq": 1.74e-05 - }, - { - "word": "treasury", - "freq": 1.74e-05 - }, - { - "word": "actively", - "freq": 1.7e-05 - }, - { - "word": "assuming", - "freq": 1.7e-05 - }, - { - "word": "campbell", - "freq": 1.7e-05 - }, - { - "word": "civilian", - "freq": 1.7e-05 - }, - { - "word": "complain", - "freq": 1.7e-05 - }, - { - "word": "dominant", - "freq": 1.7e-05 - }, - { - "word": "invasion", - "freq": 1.7e-05 - }, - { - "word": "margaret", - "freq": 1.7e-05 - }, - { - "word": "reviewed", - "freq": 1.7e-05 - }, - { - "word": "settings", - "freq": 1.7e-05 - }, - { - "word": "stealing", - "freq": 1.7e-05 - }, - { - "word": "syndrome", - "freq": 1.7e-05 - }, - { - "word": "employer", - "freq": 1.66e-05 - }, - { - "word": "generate", - "freq": 1.66e-05 - }, - { - "word": "handsome", - "freq": 1.66e-05 - }, - { - "word": "pleasant", - "freq": 1.66e-05 - }, - { - "word": "portrait", - "freq": 1.66e-05 - }, - { - "word": "targeted", - "freq": 1.66e-05 - }, - { - "word": "thailand", - "freq": 1.66e-05 - }, - { - "word": "theories", - "freq": 1.66e-05 - }, - { - "word": "touching", - "freq": 1.66e-05 - }, - { - "word": "advocate", - "freq": 1.62e-05 - }, - { - "word": "branches", - "freq": 1.62e-05 - }, - { - "word": "criteria", - "freq": 1.62e-05 - }, - { - "word": "declined", - "freq": 1.62e-05 - }, - { - "word": "egyptian", - "freq": 1.62e-05 - }, - { - "word": "franklin", - "freq": 1.62e-05 - }, - { - "word": "imperial", - "freq": 1.62e-05 - }, - { - "word": "listened", - "freq": 1.62e-05 - }, - { - "word": "nonsense", - "freq": 1.62e-05 - }, - { - "word": "playoffs", - "freq": 1.62e-05 - }, - { - "word": "relating", - "freq": 1.62e-05 - }, - { - "word": "robinson", - "freq": 1.62e-05 - }, - { - "word": "catching", - "freq": 1.58e-05 - }, - { - "word": "cheating", - "freq": 1.58e-05 - }, - { - "word": "generous", - "freq": 1.58e-05 - }, - { - "word": "mentally", - "freq": 1.58e-05 - }, - { - "word": "opponent", - "freq": 1.58e-05 - }, - { - "word": "patience", - "freq": 1.58e-05 - }, - { - "word": "pointing", - "freq": 1.58e-05 - }, - { - "word": "prisoner", - "freq": 1.58e-05 - }, - { - "word": "protests", - "freq": 1.58e-05 - }, - { - "word": "striking", - "freq": 1.58e-05 - }, - { - "word": "wireless", - "freq": 1.58e-05 - }, - { - "word": "wondered", - "freq": 1.58e-05 - }, - { - "word": "bacteria", - "freq": 1.55e-05 - }, - { - "word": "emerging", - "freq": 1.55e-05 - }, - { - "word": "emphasis", - "freq": 1.55e-05 - }, - { - "word": "graphics", - "freq": 1.55e-05 - }, - { - "word": "invested", - "freq": 1.55e-05 - }, - { - "word": "jennifer", - "freq": 1.55e-05 - }, - { - "word": "preserve", - "freq": 1.55e-05 - }, - { - "word": "produces", - "freq": 1.55e-05 - }, - { - "word": "receives", - "freq": 1.55e-05 - }, - { - "word": "scenario", - "freq": 1.55e-05 - }, - { - "word": "situated", - "freq": 1.55e-05 - }, - { - "word": "weakness", - "freq": 1.55e-05 - }, - { - "word": "advisory", - "freq": 1.51e-05 - }, - { - "word": "balanced", - "freq": 1.51e-05 - }, - { - "word": "basement", - "freq": 1.51e-05 - }, - { - "word": "collapse", - "freq": 1.51e-05 - }, - { - "word": "compound", - "freq": 1.51e-05 - }, - { - "word": "floating", - "freq": 1.51e-05 - }, - { - "word": "portland", - "freq": 1.51e-05 - }, - { - "word": "reserved", - "freq": 1.51e-05 - }, - { - "word": "stressed", - "freq": 1.51e-05 - }, - { - "word": "tropical", - "freq": 1.51e-05 - }, - { - "word": "adoption", - "freq": 1.48e-05 - }, - { - "word": "artistic", - "freq": 1.48e-05 - }, - { - "word": "aviation", - "freq": 1.48e-05 - }, - { - "word": "charging", - "freq": 1.48e-05 - }, - { - "word": "colonial", - "freq": 1.48e-05 - }, - { - "word": "contrary", - "freq": 1.48e-05 - }, - { - "word": "decrease", - "freq": 1.48e-05 - }, - { - "word": "defeated", - "freq": 1.48e-05 - }, - { - "word": "diabetes", - "freq": 1.48e-05 - }, - { - "word": "dressing", - "freq": 1.48e-05 - }, - { - "word": "invented", - "freq": 1.48e-05 - }, - { - "word": "licensed", - "freq": 1.48e-05 - }, - { - "word": "magnetic", - "freq": 1.48e-05 - }, - { - "word": "reminded", - "freq": 1.48e-05 - }, - { - "word": "treasure", - "freq": 1.48e-05 - }, - { - "word": "annually", - "freq": 1.45e-05 - }, - { - "word": "arriving", - "freq": 1.45e-05 - }, - { - "word": "benjamin", - "freq": 1.45e-05 - }, - { - "word": "creature", - "freq": 1.45e-05 - }, - { - "word": "infinite", - "freq": 1.45e-05 - }, - { - "word": "marathon", - "freq": 1.45e-05 - }, - { - "word": "moreover", - "freq": 1.45e-05 - }, - { - "word": "paradise", - "freq": 1.45e-05 - }, - { - "word": "premiere", - "freq": 1.45e-05 - }, - { - "word": "sometime", - "freq": 1.45e-05 - }, - { - "word": "sporting", - "freq": 1.45e-05 - }, - { - "word": "strictly", - "freq": 1.45e-05 - }, - { - "word": "sunshine", - "freq": 1.45e-05 - }, - { - "word": "promoted", - "freq": 1.41e-05 - }, - { - "word": "protocol", - "freq": 1.41e-05 - }, - { - "word": "timeline", - "freq": 1.41e-05 - }, - { - "word": "vertical", - "freq": 1.41e-05 - }, - { - "word": "workshop", - "freq": 1.41e-05 - }, - { - "word": "abstract", - "freq": 1.38e-05 - }, - { - "word": "deserved", - "freq": 1.38e-05 - }, - { - "word": "duration", - "freq": 1.38e-05 - }, - { - "word": "judicial", - "freq": 1.38e-05 - }, - { - "word": "switched", - "freq": 1.38e-05 - }, - { - "word": "activist", - "freq": 1.35e-05 - }, - { - "word": "boundary", - "freq": 1.35e-05 - }, - { - "word": "courtesy", - "freq": 1.35e-05 - }, - { - "word": "engaging", - "freq": 1.35e-05 - }, - { - "word": "flexible", - "freq": 1.35e-05 - }, - { - "word": "goodness", - "freq": 1.35e-05 - }, - { - "word": "homework", - "freq": 1.35e-05 - }, - { - "word": "infected", - "freq": 1.35e-05 - }, - { - "word": "operates", - "freq": 1.35e-05 - }, - { - "word": "prospect", - "freq": 1.35e-05 - }, - { - "word": "sandwich", - "freq": 1.35e-05 - }, - { - "word": "sexually", - "freq": 1.35e-05 - }, - { - "word": "sterling", - "freq": 1.35e-05 - }, - { - "word": "adjacent", - "freq": 1.32e-05 - }, - { - "word": "athletic", - "freq": 1.32e-05 - }, - { - "word": "blocking", - "freq": 1.32e-05 - }, - { - "word": "climbing", - "freq": 1.32e-05 - }, - { - "word": "deadline", - "freq": 1.32e-05 - }, - { - "word": "demanded", - "freq": 1.32e-05 - }, - { - "word": "feminist", - "freq": 1.32e-05 - }, - { - "word": "oriented", - "freq": 1.32e-05 - }, - { - "word": "reminder", - "freq": 1.32e-05 - }, - { - "word": "restored", - "freq": 1.32e-05 - }, - { - "word": "richmond", - "freq": 1.32e-05 - }, - { - "word": "variable", - "freq": 1.32e-05 - }, - { - "word": "worrying", - "freq": 1.32e-05 - }, - { - "word": "adjusted", - "freq": 1.29e-05 - }, - { - "word": "deciding", - "freq": 1.29e-05 - }, - { - "word": "defender", - "freq": 1.29e-05 - }, - { - "word": "keyboard", - "freq": 1.29e-05 - }, - { - "word": "neighbor", - "freq": 1.29e-05 - }, - { - "word": "nowadays", - "freq": 1.29e-05 - }, - { - "word": "overview", - "freq": 1.29e-05 - }, - { - "word": "pathetic", - "freq": 1.29e-05 - }, - { - "word": "reflects", - "freq": 1.29e-05 - }, - { - "word": "sergeant", - "freq": 1.29e-05 - }, - { - "word": "assisted", - "freq": 1.26e-05 - }, - { - "word": "examined", - "freq": 1.26e-05 - }, - { - "word": "faithful", - "freq": 1.26e-05 - }, - { - "word": "laughter", - "freq": 1.26e-05 - }, - { - "word": "matching", - "freq": 1.26e-05 - }, - { - "word": "monetary", - "freq": 1.26e-05 - }, - { - "word": "outcomes", - "freq": 1.26e-05 - }, - { - "word": "portugal", - "freq": 1.26e-05 - }, - { - "word": "provider", - "freq": 1.26e-05 - }, - { - "word": "resolved", - "freq": 1.26e-05 - }, - { - "word": "severely", - "freq": 1.26e-05 - }, - { - "word": "shocking", - "freq": 1.26e-05 - }, - { - "word": "disagree", - "freq": 1.23e-05 - }, - { - "word": "earliest", - "freq": 1.23e-05 - }, - { - "word": "forecast", - "freq": 1.23e-05 - }, - { - "word": "mentions", - "freq": 1.23e-05 - }, - { - "word": "potatoes", - "freq": 1.23e-05 - }, - { - "word": "receiver", - "freq": 1.23e-05 - }, - { - "word": "teenager", - "freq": 1.23e-05 - }, - { - "word": "advances", - "freq": 1.2e-05 - }, - { - "word": "bleeding", - "freq": 1.2e-05 - }, - { - "word": "breeding", - "freq": 1.2e-05 - }, - { - "word": "broadway", - "freq": 1.2e-05 - }, - { - "word": "diameter", - "freq": 1.2e-05 - }, - { - "word": "elephant", - "freq": 1.2e-05 - }, - { - "word": "enhanced", - "freq": 1.2e-05 - }, - { - "word": "fabulous", - "freq": 1.2e-05 - }, - { - "word": "gambling", - "freq": 1.2e-05 - }, - { - "word": "glorious", - "freq": 1.2e-05 - }, - { - "word": "harrison", - "freq": 1.2e-05 - }, - { - "word": "merchant", - "freq": 1.2e-05 - }, - { - "word": "nintendo", - "freq": 1.2e-05 - }, - { - "word": "obsessed", - "freq": 1.2e-05 - }, - { - "word": "pressing", - "freq": 1.2e-05 - }, - { - "word": "realised", - "freq": 1.2e-05 - }, - { - "word": "rotation", - "freq": 1.2e-05 - }, - { - "word": "starring", - "freq": 1.2e-05 - }, - { - "word": "animated", - "freq": 1.17e-05 - }, - { - "word": "avoiding", - "freq": 1.17e-05 - }, - { - "word": "charming", - "freq": 1.17e-05 - }, - { - "word": "displays", - "freq": 1.17e-05 - }, - { - "word": "imagined", - "freq": 1.17e-05 - }, - { - "word": "momentum", - "freq": 1.17e-05 - }, - { - "word": "montreal", - "freq": 1.17e-05 - }, - { - "word": "quantity", - "freq": 1.17e-05 - }, - { - "word": "retained", - "freq": 1.17e-05 - }, - { - "word": "adorable", - "freq": 1.15e-05 - }, - { - "word": "blessing", - "freq": 1.15e-05 - }, - { - "word": "cemetery", - "freq": 1.15e-05 - }, - { - "word": "detected", - "freq": 1.15e-05 - }, - { - "word": "insisted", - "freq": 1.15e-05 - }, - { - "word": "intimate", - "freq": 1.15e-05 - }, - { - "word": "nigerian", - "freq": 1.15e-05 - }, - { - "word": "password", - "freq": 1.15e-05 - }, - { - "word": "rational", - "freq": 1.15e-05 - }, - { - "word": "revenues", - "freq": 1.15e-05 - }, - { - "word": "traveled", - "freq": 1.15e-05 - }, - { - "word": "adequate", - "freq": 1.12e-05 - }, - { - "word": "arkansas", - "freq": 1.12e-05 - }, - { - "word": "comeback", - "freq": 1.12e-05 - }, - { - "word": "freezing", - "freq": 1.12e-05 - }, - { - "word": "ignorant", - "freq": 1.12e-05 - }, - { - "word": "interact", - "freq": 1.12e-05 - }, - { - "word": "medieval", - "freq": 1.12e-05 - }, - { - "word": "mobility", - "freq": 1.12e-05 - }, - { - "word": "passport", - "freq": 1.12e-05 - }, - { - "word": "proceeds", - "freq": 1.12e-05 - }, - { - "word": "surgical", - "freq": 1.12e-05 - }, - { - "word": "withdraw", - "freq": 1.12e-05 - }, - { - "word": "youngest", - "freq": 1.12e-05 - }, - { - "word": "clearing", - "freq": 1.1e-05 - }, - { - "word": "columbus", - "freq": 1.1e-05 - }, - { - "word": "divorced", - "freq": 1.1e-05 - }, - { - "word": "drawings", - "freq": 1.1e-05 - }, - { - "word": "freaking", - "freq": 1.1e-05 - }, - { - "word": "ignoring", - "freq": 1.1e-05 - }, - { - "word": "likewise", - "freq": 1.1e-05 - }, - { - "word": "meantime", - "freq": 1.1e-05 - }, - { - "word": "opposing", - "freq": 1.1e-05 - }, - { - "word": "pipeline", - "freq": 1.1e-05 - }, - { - "word": "resigned", - "freq": 1.1e-05 - }, - { - "word": "shanghai", - "freq": 1.1e-05 - }, - { - "word": "calories", - "freq": 1.07e-05 - }, - { - "word": "cannabis", - "freq": 1.07e-05 - }, - { - "word": "deployed", - "freq": 1.07e-05 - }, - { - "word": "elevated", - "freq": 1.07e-05 - }, - { - "word": "headline", - "freq": 1.07e-05 - }, - { - "word": "nicholas", - "freq": 1.07e-05 - }, - { - "word": "semester", - "freq": 1.07e-05 - }, - { - "word": "equation", - "freq": 1.05e-05 - }, - { - "word": "ideology", - "freq": 1.05e-05 - }, - { - "word": "ordering", - "freq": 1.05e-05 - }, - { - "word": "platinum", - "freq": 1.05e-05 - }, - { - "word": "premises", - "freq": 1.05e-05 - }, - { - "word": "sticking", - "freq": 1.05e-05 - }, - { - "word": "superman", - "freq": 1.05e-05 - }, - { - "word": "surfaces", - "freq": 1.05e-05 - }, - { - "word": "aluminum", - "freq": 1.02e-05 - }, - { - "word": "barriers", - "freq": 1.02e-05 - }, - { - "word": "belonged", - "freq": 1.02e-05 - }, - { - "word": "caroline", - "freq": 1.02e-05 - }, - { - "word": "congrats", - "freq": 1.02e-05 - }, - { - "word": "delicate", - "freq": 1.02e-05 - }, - { - "word": "evaluate", - "freq": 1.02e-05 - }, - { - "word": "formally", - "freq": 1.02e-05 - }, - { - "word": "musician", - "freq": 1.02e-05 - }, - { - "word": "packages", - "freq": 1.02e-05 - }, - { - "word": "secretly", - "freq": 1.02e-05 - }, - { - "word": "smallest", - "freq": 1.02e-05 - }, - { - "word": "sympathy", - "freq": 1.02e-05 - }, - { - "word": "defended", - "freq": 1e-05 - }, - { - "word": "deposits", - "freq": 1e-05 - }, - { - "word": "disposal", - "freq": 1e-05 - }, - { - "word": "donation", - "freq": 1e-05 - }, - { - "word": "ensuring", - "freq": 1e-05 - }, - { - "word": "holdings", - "freq": 1e-05 - }, - { - "word": "indirect", - "freq": 1e-05 - }, - { - "word": "kindness", - "freq": 1e-05 - }, - { - "word": "punished", - "freq": 1e-05 - }, - { - "word": "spelling", - "freq": 1e-05 - }, - { - "word": "survivor", - "freq": 1e-05 - }, - { - "word": "adelaide", - "freq": 9.77e-06 - }, - { - "word": "brussels", - "freq": 9.77e-06 - }, - { - "word": "centered", - "freq": 9.77e-06 - }, - { - "word": "cylinder", - "freq": 9.77e-06 - }, - { - "word": "failures", - "freq": 9.77e-06 - }, - { - "word": "founding", - "freq": 9.77e-06 - }, - { - "word": "outbreak", - "freq": 9.77e-06 - }, - { - "word": "refusing", - "freq": 9.77e-06 - }, - { - "word": "reynolds", - "freq": 9.77e-06 - }, - { - "word": "acoustic", - "freq": 9.55e-06 - }, - { - "word": "compiled", - "freq": 9.55e-06 - }, - { - "word": "doctrine", - "freq": 9.55e-06 - }, - { - "word": "freshman", - "freq": 9.55e-06 - }, - { - "word": "gameplay", - "freq": 9.55e-06 - }, - { - "word": "hydrogen", - "freq": 9.55e-06 - }, - { - "word": "mercedes", - "freq": 9.55e-06 - }, - { - "word": "mistaken", - "freq": 9.55e-06 - }, - { - "word": "nebraska", - "freq": 9.55e-06 - }, - { - "word": "organize", - "freq": 9.55e-06 - }, - { - "word": "portions", - "freq": 9.55e-06 - }, - { - "word": "recalled", - "freq": 9.55e-06 - }, - { - "word": "seasonal", - "freq": 9.55e-06 - }, - { - "word": "sensible", - "freq": 9.55e-06 - }, - { - "word": "shifting", - "freq": 9.55e-06 - }, - { - "word": "spinning", - "freq": 9.55e-06 - }, - { - "word": "stanford", - "freq": 9.55e-06 - }, - { - "word": "stepping", - "freq": 9.55e-06 - }, - { - "word": "township", - "freq": 9.55e-06 - }, - { - "word": "bachelor", - "freq": 9.33e-06 - }, - { - "word": "billions", - "freq": 9.33e-06 - }, - { - "word": "brisbane", - "freq": 9.33e-06 - }, - { - "word": "bullying", - "freq": 9.33e-06 - }, - { - "word": "entities", - "freq": 9.33e-06 - }, - { - "word": "flooding", - "freq": 9.33e-06 - }, - { - "word": "frontier", - "freq": 9.33e-06 - }, - { - "word": "hardcore", - "freq": 9.33e-06 - }, - { - "word": "headache", - "freq": 9.33e-06 - }, - { - "word": "hispanic", - "freq": 9.33e-06 - }, - { - "word": "performs", - "freq": 9.33e-06 - }, - { - "word": "portable", - "freq": 9.33e-06 - }, - { - "word": "randomly", - "freq": 9.33e-06 - }, - { - "word": "rankings", - "freq": 9.33e-06 - }, - { - "word": "searched", - "freq": 9.33e-06 - }, - { - "word": "shouting", - "freq": 9.33e-06 - }, - { - "word": "tactical", - "freq": 9.33e-06 - }, - { - "word": "thorough", - "freq": 9.33e-06 - }, - { - "word": "boarding", - "freq": 9.12e-06 - }, - { - "word": "bothered", - "freq": 9.12e-06 - }, - { - "word": "circular", - "freq": 9.12e-06 - }, - { - "word": "comedian", - "freq": 9.12e-06 - }, - { - "word": "deceased", - "freq": 9.12e-06 - }, - { - "word": "defining", - "freq": 9.12e-06 - }, - { - "word": "disputes", - "freq": 9.12e-06 - }, - { - "word": "explicit", - "freq": 9.12e-06 - }, - { - "word": "florence", - "freq": 9.12e-06 - }, - { - "word": "fraction", - "freq": 9.12e-06 - }, - { - "word": "infantry", - "freq": 9.12e-06 - }, - { - "word": "integral", - "freq": 9.12e-06 - }, - { - "word": "investor", - "freq": 9.12e-06 - }, - { - "word": "lectures", - "freq": 9.12e-06 - }, - { - "word": "maritime", - "freq": 9.12e-06 - }, - { - "word": "pursuing", - "freq": 9.12e-06 - }, - { - "word": "renowned", - "freq": 9.12e-06 - }, - { - "word": "socially", - "freq": 9.12e-06 - }, - { - "word": "tendency", - "freq": 9.12e-06 - }, - { - "word": "welcomed", - "freq": 9.12e-06 - }, - { - "word": "colombia", - "freq": 8.91e-06 - }, - { - "word": "consumed", - "freq": 8.91e-06 - }, - { - "word": "distress", - "freq": 8.91e-06 - }, - { - "word": "elevator", - "freq": 8.91e-06 - }, - { - "word": "homeland", - "freq": 8.91e-06 - }, - { - "word": "imported", - "freq": 8.91e-06 - }, - { - "word": "limiting", - "freq": 8.91e-06 - }, - { - "word": "mainland", - "freq": 8.91e-06 - }, - { - "word": "relieved", - "freq": 8.91e-06 - }, - { - "word": "rhetoric", - "freq": 8.91e-06 - }, - { - "word": "colonies", - "freq": 8.71e-06 - }, - { - "word": "dreaming", - "freq": 8.71e-06 - }, - { - "word": "grinding", - "freq": 8.71e-06 - }, - { - "word": "guessing", - "freq": 8.71e-06 - }, - { - "word": "illusion", - "freq": 8.71e-06 - }, - { - "word": "junction", - "freq": 8.71e-06 - }, - { - "word": "medicare", - "freq": 8.71e-06 - }, - { - "word": "modeling", - "freq": 8.71e-06 - }, - { - "word": "overtime", - "freq": 8.71e-06 - }, - { - "word": "profound", - "freq": 8.71e-06 - }, - { - "word": "threaten", - "freq": 8.71e-06 - }, - { - "word": "thrilled", - "freq": 8.71e-06 - }, - { - "word": "verified", - "freq": 8.71e-06 - }, - { - "word": "berkeley", - "freq": 8.51e-06 - }, - { - "word": "drilling", - "freq": 8.51e-06 - }, - { - "word": "incoming", - "freq": 8.51e-06 - }, - { - "word": "minerals", - "freq": 8.51e-06 - }, - { - "word": "offended", - "freq": 8.51e-06 - }, - { - "word": "orthodox", - "freq": 8.51e-06 - }, - { - "word": "overhead", - "freq": 8.51e-06 - }, - { - "word": "regiment", - "freq": 8.51e-06 - }, - { - "word": "securing", - "freq": 8.51e-06 - }, - { - "word": "speeches", - "freq": 8.51e-06 - }, - { - "word": "steering", - "freq": 8.51e-06 - }, - { - "word": "sullivan", - "freq": 8.51e-06 - }, - { - "word": "thankful", - "freq": 8.51e-06 - }, - { - "word": "triangle", - "freq": 8.51e-06 - }, - { - "word": "upgraded", - "freq": 8.51e-06 - }, - { - "word": "vladimir", - "freq": 8.51e-06 - }, - { - "word": "absorbed", - "freq": 8.32e-06 - }, - { - "word": "airplane", - "freq": 8.32e-06 - }, - { - "word": "altitude", - "freq": 8.32e-06 - }, - { - "word": "biblical", - "freq": 8.32e-06 - }, - { - "word": "coloured", - "freq": 8.32e-06 - }, - { - "word": "cracking", - "freq": 8.32e-06 - }, - { - "word": "enabling", - "freq": 8.32e-06 - }, - { - "word": "enrolled", - "freq": 8.32e-06 - }, - { - "word": "showcase", - "freq": 8.32e-06 - }, - { - "word": "theology", - "freq": 8.32e-06 - }, - { - "word": "uploaded", - "freq": 8.32e-06 - }, - { - "word": "velocity", - "freq": 8.32e-06 - }, - { - "word": "ambition", - "freq": 8.13e-06 - }, - { - "word": "borrowed", - "freq": 8.13e-06 - }, - { - "word": "clicking", - "freq": 8.13e-06 - }, - { - "word": "damaging", - "freq": 8.13e-06 - }, - { - "word": "exterior", - "freq": 8.13e-06 - }, - { - "word": "feminine", - "freq": 8.13e-06 - }, - { - "word": "firearms", - "freq": 8.13e-06 - }, - { - "word": "fountain", - "freq": 8.13e-06 - }, - { - "word": "genocide", - "freq": 8.13e-06 - }, - { - "word": "hometown", - "freq": 8.13e-06 - }, - { - "word": "immunity", - "freq": 8.13e-06 - }, - { - "word": "massacre", - "freq": 8.13e-06 - }, - { - "word": "nickname", - "freq": 8.13e-06 - }, - { - "word": "observer", - "freq": 8.13e-06 - }, - { - "word": "offshore", - "freq": 8.13e-06 - }, - { - "word": "optional", - "freq": 8.13e-06 - }, - { - "word": "shortage", - "freq": 8.13e-06 - }, - { - "word": "suburban", - "freq": 8.13e-06 - }, - { - "word": "terribly", - "freq": 8.13e-06 - }, - { - "word": "thriller", - "freq": 8.13e-06 - }, - { - "word": "troubled", - "freq": 8.13e-06 - }, - { - "word": "violated", - "freq": 8.13e-06 - }, - { - "word": "advocacy", - "freq": 7.94e-06 - }, - { - "word": "analyzed", - "freq": 7.94e-06 - }, - { - "word": "arguably", - "freq": 7.94e-06 - }, - { - "word": "assessed", - "freq": 7.94e-06 - }, - { - "word": "bulgaria", - "freq": 7.94e-06 - }, - { - "word": "canceled", - "freq": 7.94e-06 - }, - { - "word": "cardinal", - "freq": 7.94e-06 - }, - { - "word": "classics", - "freq": 7.94e-06 - }, - { - "word": "conclude", - "freq": 7.94e-06 - }, - { - "word": "delaware", - "freq": 7.94e-06 - }, - { - "word": "explored", - "freq": 7.94e-06 - }, - { - "word": "finishes", - "freq": 7.94e-06 - }, - { - "word": "listings", - "freq": 7.94e-06 - }, - { - "word": "literacy", - "freq": 7.94e-06 - }, - { - "word": "migrants", - "freq": 7.94e-06 - }, - { - "word": "moisture", - "freq": 7.94e-06 - }, - { - "word": "monument", - "freq": 7.94e-06 - }, - { - "word": "particle", - "freq": 7.94e-06 - }, - { - "word": "relaxing", - "freq": 7.94e-06 - }, - { - "word": "respects", - "freq": 7.94e-06 - }, - { - "word": "shepherd", - "freq": 7.94e-06 - }, - { - "word": "sounding", - "freq": 7.94e-06 - }, - { - "word": "terrific", - "freq": 7.94e-06 - }, - { - "word": "tomatoes", - "freq": 7.94e-06 - }, - { - "word": "accessed", - "freq": 7.76e-06 - }, - { - "word": "cellular", - "freq": 7.76e-06 - }, - { - "word": "cocktail", - "freq": 7.76e-06 - }, - { - "word": "costumes", - "freq": 7.76e-06 - }, - { - "word": "develops", - "freq": 7.76e-06 - }, - { - "word": "embedded", - "freq": 7.76e-06 - }, - { - "word": "excluded", - "freq": 7.76e-06 - }, - { - "word": "farewell", - "freq": 7.76e-06 - }, - { - "word": "landlord", - "freq": 7.76e-06 - }, - { - "word": "landmark", - "freq": 7.76e-06 - }, - { - "word": "launches", - "freq": 7.76e-06 - }, - { - "word": "prevents", - "freq": 7.76e-06 - }, - { - "word": "profiles", - "freq": 7.76e-06 - }, - { - "word": "salaries", - "freq": 7.76e-06 - }, - { - "word": "thirteen", - "freq": 7.76e-06 - }, - { - "word": "umbrella", - "freq": 7.76e-06 - }, - { - "word": "corridor", - "freq": 7.59e-06 - }, - { - "word": "credited", - "freq": 7.59e-06 - }, - { - "word": "ferguson", - "freq": 7.59e-06 - }, - { - "word": "fourteen", - "freq": 7.59e-06 - }, - { - "word": "geometry", - "freq": 7.59e-06 - }, - { - "word": "juvenile", - "freq": 7.59e-06 - }, - { - "word": "knocking", - "freq": 7.59e-06 - }, - { - "word": "leverage", - "freq": 7.59e-06 - }, - { - "word": "prompted", - "freq": 7.59e-06 - }, - { - "word": "rendered", - "freq": 7.59e-06 - }, - { - "word": "reversed", - "freq": 7.59e-06 - }, - { - "word": "tribunal", - "freq": 7.59e-06 - }, - { - "word": "uniforms", - "freq": 7.59e-06 - }, - { - "word": "appetite", - "freq": 7.41e-06 - }, - { - "word": "backyard", - "freq": 7.41e-06 - }, - { - "word": "dominate", - "freq": 7.41e-06 - }, - { - "word": "endorsed", - "freq": 7.41e-06 - }, - { - "word": "forehead", - "freq": 7.41e-06 - }, - { - "word": "inclined", - "freq": 7.41e-06 - }, - { - "word": "informal", - "freq": 7.41e-06 - }, - { - "word": "maturity", - "freq": 7.41e-06 - }, - { - "word": "morrison", - "freq": 7.41e-06 - }, - { - "word": "muhammad", - "freq": 7.41e-06 - }, - { - "word": "outlined", - "freq": 7.41e-06 - }, - { - "word": "pharmacy", - "freq": 7.41e-06 - }, - { - "word": "regulate", - "freq": 7.41e-06 - }, - { - "word": "uncommon", - "freq": 7.41e-06 - }, - { - "word": "underway", - "freq": 7.41e-06 - }, - { - "word": "unstable", - "freq": 7.41e-06 - }, - { - "word": "upstairs", - "freq": 7.41e-06 - }, - { - "word": "autonomy", - "freq": 7.24e-06 - }, - { - "word": "carnival", - "freq": 7.24e-06 - }, - { - "word": "delivers", - "freq": 7.24e-06 - }, - { - "word": "envelope", - "freq": 7.24e-06 - }, - { - "word": "handbook", - "freq": 7.24e-06 - }, - { - "word": "insights", - "freq": 7.24e-06 - }, - { - "word": "instinct", - "freq": 7.24e-06 - }, - { - "word": "inviting", - "freq": 7.24e-06 - }, - { - "word": "mistress", - "freq": 7.24e-06 - }, - { - "word": "morality", - "freq": 7.24e-06 - }, - { - "word": "mounting", - "freq": 7.24e-06 - }, - { - "word": "searches", - "freq": 7.24e-06 - }, - { - "word": "sunlight", - "freq": 7.24e-06 - }, - { - "word": "symbolic", - "freq": 7.24e-06 - }, - { - "word": "taxpayer", - "freq": 7.24e-06 - }, - { - "word": "averaged", - "freq": 7.08e-06 - }, - { - "word": "brighton", - "freq": 7.08e-06 - }, - { - "word": "buddhist", - "freq": 7.08e-06 - }, - { - "word": "carriage", - "freq": 7.08e-06 - }, - { - "word": "composer", - "freq": 7.08e-06 - }, - { - "word": "explorer", - "freq": 7.08e-06 - }, - { - "word": "feminism", - "freq": 7.08e-06 - }, - { - "word": "gasoline", - "freq": 7.08e-06 - }, - { - "word": "governed", - "freq": 7.08e-06 - }, - { - "word": "grandson", - "freq": 7.08e-06 - }, - { - "word": "necklace", - "freq": 7.08e-06 - }, - { - "word": "peterson", - "freq": 7.08e-06 - }, - { - "word": "secondly", - "freq": 7.08e-06 - }, - { - "word": "settling", - "freq": 7.08e-06 - }, - { - "word": "confirms", - "freq": 6.92e-06 - }, - { - "word": "crashing", - "freq": 6.92e-06 - }, - { - "word": "crawford", - "freq": 6.92e-06 - }, - { - "word": "daylight", - "freq": 6.92e-06 - }, - { - "word": "disclose", - "freq": 6.92e-06 - }, - { - "word": "genetics", - "freq": 6.92e-06 - }, - { - "word": "grounded", - "freq": 6.92e-06 - }, - { - "word": "monopoly", - "freq": 6.92e-06 - } - ], - "11": [ - { - "word": "information", - "freq": 0.000269 - }, - { - "word": "development", - "freq": 0.000204 - }, - { - "word": "performance", - "freq": 0.000145 - }, - { - "word": "association", - "freq": 0.000102 - }, - { - "word": "interesting", - "freq": 0.0001 - }, - { - "word": "immediately", - "freq": 9.55e-05 - }, - { - "word": "significant", - "freq": 9.55e-05 - }, - { - "word": "opportunity", - "freq": 8.91e-05 - }, - { - "word": "independent", - "freq": 8.51e-05 - }, - { - "word": "competition", - "freq": 8.13e-05 - }, - { - "word": "established", - "freq": 7.94e-05 - }, - { - "word": "responsible", - "freq": 7.59e-05 - }, - { - "word": "environment", - "freq": 7.41e-05 - }, - { - "word": "application", - "freq": 7.24e-05 - }, - { - "word": "traditional", - "freq": 6.92e-05 - }, - { - "word": "engineering", - "freq": 6.31e-05 - }, - { - "word": "description", - "freq": 5.37e-05 - }, - { - "word": "alternative", - "freq": 5.13e-05 - }, - { - "word": "communities", - "freq": 5.13e-05 - }, - { - "word": "appropriate", - "freq": 4.68e-05 - }, - { - "word": "comfortable", - "freq": 4.57e-05 - }, - { - "word": "considering", - "freq": 4.37e-05 - }, - { - "word": "temperature", - "freq": 4.37e-05 - }, - { - "word": "authorities", - "freq": 4.27e-05 - }, - { - "word": "experienced", - "freq": 4.27e-05 - }, - { - "word": "combination", - "freq": 4.07e-05 - }, - { - "word": "educational", - "freq": 3.98e-05 - }, - { - "word": "corporation", - "freq": 3.89e-05 - }, - { - "word": "possibility", - "freq": 3.8e-05 - }, - { - "word": "competitive", - "freq": 3.72e-05 - }, - { - "word": "perspective", - "freq": 3.63e-05 - }, - { - "word": "experiences", - "freq": 3.55e-05 - }, - { - "word": "legislation", - "freq": 3.55e-05 - }, - { - "word": "maintenance", - "freq": 3.55e-05 - }, - { - "word": "personality", - "freq": 3.55e-05 - }, - { - "word": "advertising", - "freq": 3.47e-05 - }, - { - "word": "anniversary", - "freq": 3.39e-05 - }, - { - "word": "represented", - "freq": 3.39e-05 - }, - { - "word": "differences", - "freq": 3.31e-05 - }, - { - "word": "outstanding", - "freq": 3.16e-05 - }, - { - "word": "recommended", - "freq": 3.16e-05 - }, - { - "word": "regulations", - "freq": 3.16e-05 - }, - { - "word": "appointment", - "freq": 3.09e-05 - }, - { - "word": "effectively", - "freq": 3.09e-05 - }, - { - "word": "improvement", - "freq": 3.09e-05 - }, - { - "word": "surrounding", - "freq": 3.09e-05 - }, - { - "word": "necessarily", - "freq": 3.02e-05 - }, - { - "word": "partnership", - "freq": 3.02e-05 - }, - { - "word": "complicated", - "freq": 2.95e-05 - }, - { - "word": "immigration", - "freq": 2.95e-05 - }, - { - "word": "recognition", - "freq": 2.95e-05 - }, - { - "word": "enforcement", - "freq": 2.82e-05 - }, - { - "word": "photography", - "freq": 2.82e-05 - }, - { - "word": "publication", - "freq": 2.82e-05 - }, - { - "word": "explanation", - "freq": 2.75e-05 - }, - { - "word": "replacement", - "freq": 2.75e-05 - }, - { - "word": "electricity", - "freq": 2.69e-05 - }, - { - "word": "essentially", - "freq": 2.63e-05 - }, - { - "word": "participate", - "freq": 2.63e-05 - }, - { - "word": "inspiration", - "freq": 2.57e-05 - }, - { - "word": "institution", - "freq": 2.57e-05 - }, - { - "word": "contributed", - "freq": 2.45e-05 - }, - { - "word": "potentially", - "freq": 2.45e-05 - }, - { - "word": "translation", - "freq": 2.45e-05 - }, - { - "word": "agriculture", - "freq": 2.34e-05 - }, - { - "word": "programming", - "freq": 2.34e-05 - }, - { - "word": "achievement", - "freq": 2.29e-05 - }, - { - "word": "destruction", - "freq": 2.29e-05 - }, - { - "word": "transferred", - "freq": 2.29e-05 - }, - { - "word": "consumption", - "freq": 2.24e-05 - }, - { - "word": "photographs", - "freq": 2.19e-05 - }, - { - "word": "progressive", - "freq": 2.19e-05 - }, - { - "word": "composition", - "freq": 2.14e-05 - }, - { - "word": "fundamental", - "freq": 2.14e-05 - }, - { - "word": "residential", - "freq": 2.14e-05 - }, - { - "word": "substantial", - "freq": 2.14e-05 - }, - { - "word": "legislative", - "freq": 2.09e-05 - }, - { - "word": "preparation", - "freq": 2.09e-05 - }, - { - "word": "underground", - "freq": 2.09e-05 - }, - { - "word": "distributed", - "freq": 2.04e-05 - }, - { - "word": "documentary", - "freq": 2.04e-05 - }, - { - "word": "investigate", - "freq": 2.04e-05 - }, - { - "word": "cooperation", - "freq": 2e-05 - }, - { - "word": "involvement", - "freq": 2e-05 - }, - { - "word": "celebration", - "freq": 1.95e-05 - }, - { - "word": "certificate", - "freq": 1.95e-05 - }, - { - "word": "constructed", - "freq": 1.95e-05 - }, - { - "word": "intelligent", - "freq": 1.95e-05 - }, - { - "word": "interaction", - "freq": 1.95e-05 - }, - { - "word": "discussions", - "freq": 1.91e-05 - }, - { - "word": "netherlands", - "freq": 1.91e-05 - }, - { - "word": "challenging", - "freq": 1.86e-05 - }, - { - "word": "investments", - "freq": 1.86e-05 - }, - { - "word": "acquisition", - "freq": 1.82e-05 - }, - { - "word": "controversy", - "freq": 1.82e-05 - }, - { - "word": "disappeared", - "freq": 1.82e-05 - }, - { - "word": "examination", - "freq": 1.82e-05 - }, - { - "word": "requirement", - "freq": 1.82e-05 - }, - { - "word": "accompanied", - "freq": 1.78e-05 - }, - { - "word": "arrangement", - "freq": 1.78e-05 - }, - { - "word": "maintaining", - "freq": 1.78e-05 - }, - { - "word": "destination", - "freq": 1.74e-05 - }, - { - "word": "exclusively", - "freq": 1.74e-05 - }, - { - "word": "grandfather", - "freq": 1.74e-05 - }, - { - "word": "suggestions", - "freq": 1.74e-05 - }, - { - "word": "afghanistan", - "freq": 1.7e-05 - }, - { - "word": "differently", - "freq": 1.7e-05 - }, - { - "word": "furthermore", - "freq": 1.7e-05 - }, - { - "word": "implemented", - "freq": 1.7e-05 - }, - { - "word": "switzerland", - "freq": 1.7e-05 - }, - { - "word": "christopher", - "freq": 1.66e-05 - }, - { - "word": "imagination", - "freq": 1.66e-05 - }, - { - "word": "integration", - "freq": 1.66e-05 - }, - { - "word": "operational", - "freq": 1.62e-05 - }, - { - "word": "transaction", - "freq": 1.62e-05 - }, - { - "word": "communicate", - "freq": 1.58e-05 - }, - { - "word": "demonstrate", - "freq": 1.58e-05 - }, - { - "word": "electronics", - "freq": 1.55e-05 - }, - { - "word": "exploration", - "freq": 1.55e-05 - }, - { - "word": "mississippi", - "freq": 1.55e-05 - }, - { - "word": "practically", - "freq": 1.55e-05 - }, - { - "word": "sustainable", - "freq": 1.55e-05 - }, - { - "word": "threatening", - "freq": 1.55e-05 - }, - { - "word": "acknowledge", - "freq": 1.51e-05 - }, - { - "word": "consecutive", - "freq": 1.51e-05 - }, - { - "word": "proceedings", - "freq": 1.51e-05 - }, - { - "word": "unnecessary", - "freq": 1.51e-05 - }, - { - "word": "approaching", - "freq": 1.48e-05 - }, - { - "word": "celebrating", - "freq": 1.48e-05 - }, - { - "word": "controlling", - "freq": 1.48e-05 - }, - { - "word": "illustrated", - "freq": 1.48e-05 - }, - { - "word": "appreciated", - "freq": 1.45e-05 - }, - { - "word": "introducing", - "freq": 1.45e-05 - }, - { - "word": "legislature", - "freq": 1.45e-05 - }, - { - "word": "preliminary", - "freq": 1.45e-05 - }, - { - "word": "mathematics", - "freq": 1.41e-05 - }, - { - "word": "scholarship", - "freq": 1.41e-05 - }, - { - "word": "encouraging", - "freq": 1.38e-05 - }, - { - "word": "grandmother", - "freq": 1.38e-05 - }, - { - "word": "ingredients", - "freq": 1.38e-05 - }, - { - "word": "instruction", - "freq": 1.38e-05 - }, - { - "word": "statistical", - "freq": 1.38e-05 - }, - { - "word": "fascinating", - "freq": 1.35e-05 - }, - { - "word": "observation", - "freq": 1.35e-05 - }, - { - "word": "understands", - "freq": 1.35e-05 - }, - { - "word": "complaining", - "freq": 1.32e-05 - }, - { - "word": "unfortunate", - "freq": 1.32e-05 - }, - { - "word": "connecticut", - "freq": 1.29e-05 - }, - { - "word": "palestinian", - "freq": 1.29e-05 - }, - { - "word": "restoration", - "freq": 1.29e-05 - }, - { - "word": "citizenship", - "freq": 1.26e-05 - }, - { - "word": "declaration", - "freq": 1.26e-05 - }, - { - "word": "distinction", - "freq": 1.26e-05 - }, - { - "word": "technically", - "freq": 1.26e-05 - }, - { - "word": "appearances", - "freq": 1.23e-05 - }, - { - "word": "importantly", - "freq": 1.23e-05 - }, - { - "word": "influential", - "freq": 1.23e-05 - }, - { - "word": "allegations", - "freq": 1.2e-05 - }, - { - "word": "anticipated", - "freq": 1.2e-05 - }, - { - "word": "celebrities", - "freq": 1.2e-05 - }, - { - "word": "permanently", - "freq": 1.2e-05 - }, - { - "word": "transformed", - "freq": 1.2e-05 - }, - { - "word": "concentrate", - "freq": 1.17e-05 - }, - { - "word": "consequence", - "freq": 1.17e-05 - }, - { - "word": "inhabitants", - "freq": 1.17e-05 - }, - { - "word": "specialized", - "freq": 1.17e-05 - }, - { - "word": "encountered", - "freq": 1.15e-05 - }, - { - "word": "interactive", - "freq": 1.15e-05 - }, - { - "word": "politically", - "freq": 1.15e-05 - }, - { - "word": "prosecution", - "freq": 1.15e-05 - }, - { - "word": "spectacular", - "freq": 1.15e-05 - }, - { - "word": "temporarily", - "freq": 1.15e-05 - }, - { - "word": "embarrassed", - "freq": 1.12e-05 - }, - { - "word": "exceptional", - "freq": 1.12e-05 - }, - { - "word": "limitations", - "freq": 1.12e-05 - }, - { - "word": "measurement", - "freq": 1.12e-05 - }, - { - "word": "orientation", - "freq": 1.12e-05 - }, - { - "word": "emotionally", - "freq": 1.1e-05 - }, - { - "word": "magnificent", - "freq": 1.1e-05 - }, - { - "word": "nonetheless", - "freq": 1.1e-05 - }, - { - "word": "questioning", - "freq": 1.1e-05 - }, - { - "word": "dimensional", - "freq": 1.07e-05 - }, - { - "word": "identifying", - "freq": 1.07e-05 - }, - { - "word": "uncertainty", - "freq": 1.07e-05 - }, - { - "word": "accommodate", - "freq": 1.05e-05 - }, - { - "word": "accordingly", - "freq": 1.05e-05 - }, - { - "word": "continental", - "freq": 1.05e-05 - }, - { - "word": "convenience", - "freq": 1.05e-05 - }, - { - "word": "flexibility", - "freq": 1.05e-05 - }, - { - "word": "functioning", - "freq": 1.05e-05 - }, - { - "word": "probability", - "freq": 1.05e-05 - }, - { - "word": "resignation", - "freq": 1.05e-05 - }, - { - "word": "territories", - "freq": 1.05e-05 - }, - { - "word": "theoretical", - "freq": 1.02e-05 - }, - { - "word": "transparent", - "freq": 1.02e-05 - }, - { - "word": "conclusions", - "freq": 1e-05 - }, - { - "word": "distinctive", - "freq": 1e-05 - }, - { - "word": "interviewed", - "freq": 1e-05 - }, - { - "word": "recruitment", - "freq": 1e-05 - }, - { - "word": "shakespeare", - "freq": 1e-05 - }, - { - "word": "westminster", - "freq": 1e-05 - }, - { - "word": "consistency", - "freq": 9.77e-06 - }, - { - "word": "expectation", - "freq": 9.77e-06 - }, - { - "word": "obligations", - "freq": 9.77e-06 - }, - { - "word": "speculation", - "freq": 9.77e-06 - }, - { - "word": "governments", - "freq": 9.55e-06 - }, - { - "word": "desperately", - "freq": 9.55e-06 - }, - { - "word": "financially", - "freq": 9.55e-06 - }, - { - "word": "manufacture", - "freq": 9.55e-06 - }, - { - "word": "determining", - "freq": 9.33e-06 - }, - { - "word": "fortunately", - "freq": 9.33e-06 - }, - { - "word": "frustrating", - "freq": 9.33e-06 - }, - { - "word": "frustration", - "freq": 9.33e-06 - }, - { - "word": "circulation", - "freq": 9.12e-06 - }, - { - "word": "coincidence", - "freq": 9.12e-06 - }, - { - "word": "accessories", - "freq": 8.91e-06 - }, - { - "word": "assumptions", - "freq": 8.91e-06 - }, - { - "word": "businessman", - "freq": 8.91e-06 - }, - { - "word": "quarterback", - "freq": 8.91e-06 - }, - { - "word": "reservation", - "freq": 8.91e-06 - }, - { - "word": "sensitivity", - "freq": 8.91e-06 - }, - { - "word": "playstation", - "freq": 8.71e-06 - }, - { - "word": "predictions", - "freq": 8.71e-06 - }, - { - "word": "remembering", - "freq": 8.71e-06 - }, - { - "word": "supervision", - "freq": 8.71e-06 - }, - { - "word": "unconscious", - "freq": 8.71e-06 - }, - { - "word": "battlefield", - "freq": 8.51e-06 - }, - { - "word": "conjunction", - "freq": 8.51e-06 - }, - { - "word": "elimination", - "freq": 8.51e-06 - }, - { - "word": "merchandise", - "freq": 8.51e-06 - }, - { - "word": "beautifully", - "freq": 8.32e-06 - }, - { - "word": "countryside", - "freq": 8.32e-06 - }, - { - "word": "demographic", - "freq": 8.32e-06 - }, - { - "word": "expressions", - "freq": 8.32e-06 - }, - { - "word": "interpreted", - "freq": 8.32e-06 - }, - { - "word": "reliability", - "freq": 8.32e-06 - }, - { - "word": "continually", - "freq": 8.13e-06 - }, - { - "word": "coordinator", - "freq": 8.13e-06 - }, - { - "word": "nationalist", - "freq": 8.13e-06 - }, - { - "word": "territorial", - "freq": 8.13e-06 - }, - { - "word": "transgender", - "freq": 8.13e-06 - }, - { - "word": "accountable", - "freq": 7.94e-06 - }, - { - "word": "attractions", - "freq": 7.94e-06 - }, - { - "word": "hospitality", - "freq": 7.94e-06 - }, - { - "word": "progression", - "freq": 7.94e-06 - }, - { - "word": "specialists", - "freq": 7.94e-06 - }, - { - "word": "trafficking", - "freq": 7.94e-06 - }, - { - "word": "destructive", - "freq": 7.76e-06 - }, - { - "word": "highlighted", - "freq": 7.76e-06 - }, - { - "word": "assignments", - "freq": 7.59e-06 - }, - { - "word": "credibility", - "freq": 7.59e-06 - }, - { - "word": "overwhelmed", - "freq": 7.59e-06 - }, - { - "word": "preferences", - "freq": 7.59e-06 - }, - { - "word": "transported", - "freq": 7.59e-06 - }, - { - "word": "undoubtedly", - "freq": 7.59e-06 - }, - { - "word": "distinguish", - "freq": 7.41e-06 - }, - { - "word": "extensively", - "freq": 7.41e-06 - }, - { - "word": "forgiveness", - "freq": 7.41e-06 - }, - { - "word": "minneapolis", - "freq": 7.41e-06 - }, - { - "word": "neighboring", - "freq": 7.41e-06 - }, - { - "word": "problematic", - "freq": 7.41e-06 - }, - { - "word": "promotional", - "freq": 7.41e-06 - }, - { - "word": "prospective", - "freq": 7.41e-06 - }, - { - "word": "psychiatric", - "freq": 7.41e-06 - }, - { - "word": "renaissance", - "freq": 7.41e-06 - }, - { - "word": "transmitted", - "freq": 7.41e-06 - }, - { - "word": "congressman", - "freq": 7.24e-06 - }, - { - "word": "cooperative", - "freq": 7.24e-06 - }, - { - "word": "correlation", - "freq": 7.24e-06 - }, - { - "word": "prestigious", - "freq": 7.24e-06 - }, - { - "word": "sovereignty", - "freq": 7.24e-06 - }, - { - "word": "accusations", - "freq": 7.08e-06 - }, - { - "word": "brotherhood", - "freq": 7.08e-06 - }, - { - "word": "compilation", - "freq": 7.08e-06 - }, - { - "word": "devastating", - "freq": 7.08e-06 - }, - { - "word": "incorporate", - "freq": 7.08e-06 - }, - { - "word": "interrupted", - "freq": 7.08e-06 - }, - { - "word": "proposition", - "freq": 7.08e-06 - }, - { - "word": "therapeutic", - "freq": 7.08e-06 - }, - { - "word": "atmospheric", - "freq": 6.92e-06 - }, - { - "word": "nationalism", - "freq": 6.76e-06 - }, - { - "word": "adjustments", - "freq": 6.61e-06 - }, - { - "word": "commercials", - "freq": 6.61e-06 - }, - { - "word": "compression", - "freq": 6.61e-06 - }, - { - "word": "coordinates", - "freq": 6.61e-06 - }, - { - "word": "definitions", - "freq": 6.61e-06 - }, - { - "word": "discovering", - "freq": 6.61e-06 - }, - { - "word": "marketplace", - "freq": 6.61e-06 - }, - { - "word": "methodology", - "freq": 6.61e-06 - }, - { - "word": "nominations", - "freq": 6.61e-06 - }, - { - "word": "predecessor", - "freq": 6.61e-06 - }, - { - "word": "willingness", - "freq": 6.61e-06 - }, - { - "word": "advancement", - "freq": 6.46e-06 - }, - { - "word": "fundraising", - "freq": 6.46e-06 - }, - { - "word": "masterpiece", - "freq": 6.46e-06 - }, - { - "word": "possessions", - "freq": 6.46e-06 - }, - { - "word": "respiratory", - "freq": 6.46e-06 - }, - { - "word": "southampton", - "freq": 6.46e-06 - }, - { - "word": "sympathetic", - "freq": 6.46e-06 - }, - { - "word": "constraints", - "freq": 6.31e-06 - }, - { - "word": "inheritance", - "freq": 6.31e-06 - }, - { - "word": "assessments", - "freq": 6.17e-06 - }, - { - "word": "backgrounds", - "freq": 6.17e-06 - }, - { - "word": "commitments", - "freq": 6.17e-06 - }, - { - "word": "comparisons", - "freq": 6.17e-06 - }, - { - "word": "coordinated", - "freq": 6.17e-06 - }, - { - "word": "efficiently", - "freq": 6.17e-06 - }, - { - "word": "eliminating", - "freq": 6.17e-06 - }, - { - "word": "springfield", - "freq": 6.17e-06 - }, - { - "word": "compromised", - "freq": 6.03e-06 - }, - { - "word": "distraction", - "freq": 6.03e-06 - }, - { - "word": "lightweight", - "freq": 6.03e-06 - }, - { - "word": "negotiating", - "freq": 6.03e-06 - }, - { - "word": "negotiation", - "freq": 6.03e-06 - }, - { - "word": "participant", - "freq": 6.03e-06 - }, - { - "word": "supermarket", - "freq": 6.03e-06 - }, - { - "word": "universitys", - "freq": 6.03e-06 - }, - { - "word": "comparative", - "freq": 5.89e-06 - }, - { - "word": "ideological", - "freq": 5.89e-06 - }, - { - "word": "prohibition", - "freq": 5.89e-06 - }, - { - "word": "recognizing", - "freq": 5.89e-06 - }, - { - "word": "supplements", - "freq": 5.89e-06 - }, - { - "word": "theological", - "freq": 5.89e-06 - }, - { - "word": "billionaire", - "freq": 5.75e-06 - }, - { - "word": "calculation", - "freq": 5.75e-06 - }, - { - "word": "decorations", - "freq": 5.75e-06 - }, - { - "word": "designation", - "freq": 5.75e-06 - }, - { - "word": "medications", - "freq": 5.75e-06 - }, - { - "word": "predictable", - "freq": 5.75e-06 - }, - { - "word": "restriction", - "freq": 5.75e-06 - }, - { - "word": "accelerated", - "freq": 5.62e-06 - }, - { - "word": "eligibility", - "freq": 5.62e-06 - }, - { - "word": "endorsement", - "freq": 5.62e-06 - }, - { - "word": "forthcoming", - "freq": 5.62e-06 - }, - { - "word": "antibiotics", - "freq": 5.5e-06 - }, - { - "word": "comfortably", - "freq": 5.5e-06 - }, - { - "word": "contributes", - "freq": 5.5e-06 - }, - { - "word": "credentials", - "freq": 5.5e-06 - }, - { - "word": "expenditure", - "freq": 5.5e-06 - }, - { - "word": "frequencies", - "freq": 5.5e-06 - }, - { - "word": "commodities", - "freq": 5.37e-06 - }, - { - "word": "discoveries", - "freq": 5.37e-06 - }, - { - "word": "innovations", - "freq": 5.37e-06 - }, - { - "word": "millionaire", - "freq": 5.37e-06 - }, - { - "word": "positioning", - "freq": 5.37e-06 - }, - { - "word": "termination", - "freq": 5.37e-06 - }, - { - "word": "arbitration", - "freq": 5.25e-06 - }, - { - "word": "cholesterol", - "freq": 5.25e-06 - }, - { - "word": "constitutes", - "freq": 5.25e-06 - }, - { - "word": "contributor", - "freq": 5.25e-06 - }, - { - "word": "intentional", - "freq": 5.25e-06 - }, - { - "word": "nationality", - "freq": 5.25e-06 - }, - { - "word": "persecution", - "freq": 5.25e-06 - }, - { - "word": "philosopher", - "freq": 5.25e-06 - }, - { - "word": "radioactive", - "freq": 5.25e-06 - }, - { - "word": "realization", - "freq": 5.25e-06 - }, - { - "word": "sponsorship", - "freq": 5.25e-06 - }, - { - "word": "undertaking", - "freq": 5.25e-06 - }, - { - "word": "voluntarily", - "freq": 5.25e-06 - }, - { - "word": "convictions", - "freq": 5.13e-06 - }, - { - "word": "descendants", - "freq": 5.13e-06 - }, - { - "word": "impressions", - "freq": 5.13e-06 - }, - { - "word": "instability", - "freq": 5.13e-06 - }, - { - "word": "observatory", - "freq": 5.13e-06 - }, - { - "word": "penetration", - "freq": 5.13e-06 - }, - { - "word": "projections", - "freq": 5.13e-06 - }, - { - "word": "respectable", - "freq": 5.13e-06 - }, - { - "word": "spontaneous", - "freq": 5.13e-06 - }, - { - "word": "submissions", - "freq": 5.13e-06 - }, - { - "word": "accumulated", - "freq": 5.01e-06 - }, - { - "word": "confederate", - "freq": 5.01e-06 - }, - { - "word": "counterpart", - "freq": 5.01e-06 - }, - { - "word": "downloading", - "freq": 5.01e-06 - }, - { - "word": "meaningless", - "freq": 5.01e-06 - }, - { - "word": "resolutions", - "freq": 5.01e-06 - }, - { - "word": "stimulation", - "freq": 5.01e-06 - }, - { - "word": "butterflies", - "freq": 4.9e-06 - }, - { - "word": "corrections", - "freq": 4.9e-06 - }, - { - "word": "disciplines", - "freq": 4.9e-06 - }, - { - "word": "compliments", - "freq": 4.79e-06 - }, - { - "word": "exaggerated", - "freq": 4.79e-06 - }, - { - "word": "overlooking", - "freq": 4.79e-06 - }, - { - "word": "perceptions", - "freq": 4.79e-06 - }, - { - "word": "procurement", - "freq": 4.79e-06 - }, - { - "word": "stereotypes", - "freq": 4.79e-06 - }, - { - "word": "suppression", - "freq": 4.79e-06 - }, - { - "word": "terminology", - "freq": 4.79e-06 - }, - { - "word": "astonishing", - "freq": 4.68e-06 - }, - { - "word": "commentator", - "freq": 4.68e-06 - }, - { - "word": "friendships", - "freq": 4.68e-06 - }, - { - "word": "frightening", - "freq": 4.68e-06 - }, - { - "word": "proprietary", - "freq": 4.68e-06 - }, - { - "word": "protagonist", - "freq": 4.68e-06 - }, - { - "word": "reflections", - "freq": 4.68e-06 - }, - { - "word": "susceptible", - "freq": 4.68e-06 - }, - { - "word": "aspirations", - "freq": 4.57e-06 - }, - { - "word": "distributor", - "freq": 4.57e-06 - }, - { - "word": "genetically", - "freq": 4.57e-06 - }, - { - "word": "ineffective", - "freq": 4.57e-06 - }, - { - "word": "interacting", - "freq": 4.57e-06 - }, - { - "word": "pornography", - "freq": 4.57e-06 - }, - { - "word": "proportions", - "freq": 4.57e-06 - }, - { - "word": "provisional", - "freq": 4.57e-06 - }, - { - "word": "concessions", - "freq": 4.47e-06 - }, - { - "word": "contracting", - "freq": 4.47e-06 - }, - { - "word": "drastically", - "freq": 4.47e-06 - }, - { - "word": "fashionable", - "freq": 4.47e-06 - }, - { - "word": "incompetent", - "freq": 4.47e-06 - }, - { - "word": "legislators", - "freq": 4.47e-06 - }, - { - "word": "manuscripts", - "freq": 4.47e-06 - }, - { - "word": "approximate", - "freq": 4.37e-06 - }, - { - "word": "compartment", - "freq": 4.37e-06 - }, - { - "word": "conditioned", - "freq": 4.37e-06 - }, - { - "word": "derivatives", - "freq": 4.37e-06 - }, - { - "word": "entertained", - "freq": 4.37e-06 - }, - { - "word": "multiplayer", - "freq": 4.37e-06 - }, - { - "word": "nutritional", - "freq": 4.37e-06 - }, - { - "word": "protections", - "freq": 4.37e-06 - }, - { - "word": "affiliation", - "freq": 4.27e-06 - }, - { - "word": "broadcaster", - "freq": 4.27e-06 - }, - { - "word": "conflicting", - "freq": 4.27e-06 - }, - { - "word": "cultivation", - "freq": 4.27e-06 - }, - { - "word": "enhancement", - "freq": 4.27e-06 - }, - { - "word": "illustrates", - "freq": 4.27e-06 - }, - { - "word": "inspections", - "freq": 4.27e-06 - }, - { - "word": "researching", - "freq": 4.27e-06 - }, - { - "word": "shareholder", - "freq": 4.27e-06 - }, - { - "word": "subdivision", - "freq": 4.27e-06 - }, - { - "word": "surrendered", - "freq": 4.27e-06 - }, - { - "word": "unavailable", - "freq": 4.27e-06 - }, - { - "word": "universally", - "freq": 4.27e-06 - }, - { - "word": "volunteered", - "freq": 4.27e-06 - }, - { - "word": "campaigning", - "freq": 4.17e-06 - }, - { - "word": "discouraged", - "freq": 4.17e-06 - }, - { - "word": "earthquakes", - "freq": 4.17e-06 - }, - { - "word": "heavyweight", - "freq": 4.17e-06 - }, - { - "word": "rectangular", - "freq": 4.17e-06 - }, - { - "word": "unanimously", - "freq": 4.17e-06 - }, - { - "word": "dissolution", - "freq": 4.07e-06 - }, - { - "word": "disturbance", - "freq": 4.07e-06 - }, - { - "word": "evangelical", - "freq": 4.07e-06 - }, - { - "word": "informative", - "freq": 4.07e-06 - }, - { - "word": "premiership", - "freq": 4.07e-06 - }, - { - "word": "remembrance", - "freq": 4.07e-06 - }, - { - "word": "reminiscent", - "freq": 4.07e-06 - }, - { - "word": "degradation", - "freq": 3.98e-06 - }, - { - "word": "equilibrium", - "freq": 3.98e-06 - }, - { - "word": "indications", - "freq": 3.98e-06 - }, - { - "word": "intercourse", - "freq": 3.98e-06 - }, - { - "word": "manipulated", - "freq": 3.98e-06 - }, - { - "word": "segregation", - "freq": 3.98e-06 - }, - { - "word": "ventilation", - "freq": 3.98e-06 - }, - { - "word": "chamberlain", - "freq": 3.89e-06 - }, - { - "word": "conditional", - "freq": 3.89e-06 - }, - { - "word": "impeachment", - "freq": 3.89e-06 - }, - { - "word": "kickstarter", - "freq": 3.89e-06 - }, - { - "word": "precautions", - "freq": 3.89e-06 - }, - { - "word": "resemblance", - "freq": 3.89e-06 - }, - { - "word": "superiority", - "freq": 3.89e-06 - }, - { - "word": "transitions", - "freq": 3.89e-06 - }, - { - "word": "transmitter", - "freq": 3.89e-06 - }, - { - "word": "vaccination", - "freq": 3.89e-06 - }, - { - "word": "condolences", - "freq": 3.8e-06 - }, - { - "word": "constituent", - "freq": 3.8e-06 - }, - { - "word": "constituted", - "freq": 3.8e-06 - }, - { - "word": "installment", - "freq": 3.8e-06 - }, - { - "word": "affirmative", - "freq": 3.72e-06 - }, - { - "word": "archaeology", - "freq": 3.72e-06 - }, - { - "word": "calculating", - "freq": 3.72e-06 - }, - { - "word": "criticizing", - "freq": 3.72e-06 - }, - { - "word": "deportation", - "freq": 3.72e-06 - }, - { - "word": "handwriting", - "freq": 3.72e-06 - }, - { - "word": "incorrectly", - "freq": 3.72e-06 - }, - { - "word": "inexpensive", - "freq": 3.72e-06 - }, - { - "word": "libertarian", - "freq": 3.72e-06 - }, - { - "word": "technicians", - "freq": 3.72e-06 - }, - { - "word": "businessmen", - "freq": 3.63e-06 - }, - { - "word": "catastrophe", - "freq": 3.63e-06 - }, - { - "word": "circulating", - "freq": 3.63e-06 - }, - { - "word": "emergencies", - "freq": 3.63e-06 - }, - { - "word": "enthusiasts", - "freq": 3.63e-06 - }, - { - "word": "implication", - "freq": 3.63e-06 - }, - { - "word": "liabilities", - "freq": 3.63e-06 - }, - { - "word": "overlapping", - "freq": 3.63e-06 - }, - { - "word": "revelations", - "freq": 3.63e-06 - }, - { - "word": "seriousness", - "freq": 3.63e-06 - }, - { - "word": "superficial", - "freq": 3.63e-06 - }, - { - "word": "bureaucracy", - "freq": 3.55e-06 - }, - { - "word": "convertible", - "freq": 3.55e-06 - }, - { - "word": "desperation", - "freq": 3.55e-06 - }, - { - "word": "detrimental", - "freq": 3.55e-06 - }, - { - "word": "entitlement", - "freq": 3.55e-06 - }, - { - "word": "humiliation", - "freq": 3.55e-06 - }, - { - "word": "ministerial", - "freq": 3.55e-06 - }, - { - "word": "obstruction", - "freq": 3.55e-06 - }, - { - "word": "prostitutes", - "freq": 3.55e-06 - }, - { - "word": "retaliation", - "freq": 3.55e-06 - }, - { - "word": "wonderfully", - "freq": 3.55e-06 - }, - { - "word": "alterations", - "freq": 3.47e-06 - }, - { - "word": "consolation", - "freq": 3.47e-06 - }, - { - "word": "corresponds", - "freq": 3.47e-06 - }, - { - "word": "descriptive", - "freq": 3.47e-06 - }, - { - "word": "empowerment", - "freq": 3.47e-06 - }, - { - "word": "inscription", - "freq": 3.47e-06 - }, - { - "word": "interpreter", - "freq": 3.47e-06 - }, - { - "word": "restrictive", - "freq": 3.47e-06 - }, - { - "word": "stimulating", - "freq": 3.47e-06 - }, - { - "word": "unrealistic", - "freq": 3.47e-06 - }, - { - "word": "whereabouts", - "freq": 3.47e-06 - }, - { - "word": "adolescents", - "freq": 3.39e-06 - }, - { - "word": "confessions", - "freq": 3.39e-06 - }, - { - "word": "intercepted", - "freq": 3.39e-06 - }, - { - "word": "interfering", - "freq": 3.39e-06 - }, - { - "word": "reformation", - "freq": 3.39e-06 - }, - { - "word": "screenshots", - "freq": 3.39e-06 - }, - { - "word": "sentimental", - "freq": 3.39e-06 - }, - { - "word": "slaughtered", - "freq": 3.39e-06 - }, - { - "word": "dysfunction", - "freq": 3.31e-06 - }, - { - "word": "integrating", - "freq": 3.31e-06 - }, - { - "word": "restricting", - "freq": 3.31e-06 - }, - { - "word": "sensational", - "freq": 3.31e-06 - }, - { - "word": "collaborate", - "freq": 3.24e-06 - }, - { - "word": "compensated", - "freq": 3.24e-06 - }, - { - "word": "councillors", - "freq": 3.24e-06 - }, - { - "word": "disciplined", - "freq": 3.24e-06 - }, - { - "word": "interviewer", - "freq": 3.24e-06 - }, - { - "word": "millennials", - "freq": 3.24e-06 - }, - { - "word": "persistence", - "freq": 3.24e-06 - }, - { - "word": "simulations", - "freq": 3.24e-06 - }, - { - "word": "speculative", - "freq": 3.24e-06 - }, - { - "word": "trustworthy", - "freq": 3.24e-06 - }, - { - "word": "albuquerque", - "freq": 3.16e-06 - }, - { - "word": "alternating", - "freq": 3.16e-06 - }, - { - "word": "consciously", - "freq": 3.16e-06 - }, - { - "word": "illuminated", - "freq": 3.16e-06 - }, - { - "word": "influencing", - "freq": 3.16e-06 - }, - { - "word": "picturesque", - "freq": 3.16e-06 - }, - { - "word": "progressing", - "freq": 3.16e-06 - }, - { - "word": "secretaries", - "freq": 3.16e-06 - }, - { - "word": "specializes", - "freq": 3.16e-06 - }, - { - "word": "utilization", - "freq": 3.16e-06 - }, - { - "word": "automobiles", - "freq": 3.09e-06 - }, - { - "word": "commemorate", - "freq": 3.09e-06 - }, - { - "word": "enlightened", - "freq": 3.09e-06 - }, - { - "word": "fingerprint", - "freq": 3.09e-06 - }, - { - "word": "interchange", - "freq": 3.09e-06 - }, - { - "word": "motorcycles", - "freq": 3.09e-06 - }, - { - "word": "northampton", - "freq": 3.09e-06 - }, - { - "word": "translating", - "freq": 3.09e-06 - }, - { - "word": "adventurous", - "freq": 3.02e-06 - }, - { - "word": "blockbuster", - "freq": 3.02e-06 - }, - { - "word": "charismatic", - "freq": 3.02e-06 - }, - { - "word": "confiscated", - "freq": 3.02e-06 - }, - { - "word": "disposition", - "freq": 3.02e-06 - }, - { - "word": "engagements", - "freq": 3.02e-06 - }, - { - "word": "fabrication", - "freq": 3.02e-06 - }, - { - "word": "facilitated", - "freq": 3.02e-06 - }, - { - "word": "fascination", - "freq": 3.02e-06 - }, - { - "word": "formulation", - "freq": 3.02e-06 - }, - { - "word": "originating", - "freq": 3.02e-06 - }, - { - "word": "restraining", - "freq": 3.02e-06 - }, - { - "word": "terrestrial", - "freq": 3.02e-06 - }, - { - "word": "unstoppable", - "freq": 3.02e-06 - }, - { - "word": "centralized", - "freq": 2.95e-06 - }, - { - "word": "consolidate", - "freq": 2.95e-06 - }, - { - "word": "containment", - "freq": 2.95e-06 - }, - { - "word": "dangerously", - "freq": 2.95e-06 - }, - { - "word": "establishes", - "freq": 2.95e-06 - }, - { - "word": "existential", - "freq": 2.95e-06 - }, - { - "word": "forecasting", - "freq": 2.95e-06 - }, - { - "word": "substituted", - "freq": 2.95e-06 - }, - { - "word": "brilliantly", - "freq": 2.88e-06 - }, - { - "word": "confinement", - "freq": 2.88e-06 - }, - { - "word": "confronting", - "freq": 2.88e-06 - }, - { - "word": "consultancy", - "freq": 2.88e-06 - }, - { - "word": "contraction", - "freq": 2.88e-06 - }, - { - "word": "contrasting", - "freq": 2.88e-06 - }, - { - "word": "convergence", - "freq": 2.88e-06 - }, - { - "word": "humiliating", - "freq": 2.88e-06 - }, - { - "word": "illustrator", - "freq": 2.88e-06 - }, - { - "word": "inefficient", - "freq": 2.88e-06 - }, - { - "word": "intensified", - "freq": 2.88e-06 - }, - { - "word": "intolerance", - "freq": 2.88e-06 - }, - { - "word": "plantations", - "freq": 2.88e-06 - }, - { - "word": "registering", - "freq": 2.88e-06 - }, - { - "word": "counselling", - "freq": 2.82e-06 - }, - { - "word": "entertainer", - "freq": 2.82e-06 - }, - { - "word": "festivities", - "freq": 2.82e-06 - }, - { - "word": "imaginative", - "freq": 2.82e-06 - }, - { - "word": "insensitive", - "freq": 2.82e-06 - }, - { - "word": "qualitative", - "freq": 2.82e-06 - }, - { - "word": "reluctantly", - "freq": 2.82e-06 - }, - { - "word": "secretariat", - "freq": 2.82e-06 - }, - { - "word": "specialised", - "freq": 2.82e-06 - }, - { - "word": "subordinate", - "freq": 2.82e-06 - }, - { - "word": "contingency", - "freq": 2.75e-06 - }, - { - "word": "deprivation", - "freq": 2.75e-06 - }, - { - "word": "diversified", - "freq": 2.75e-06 - }, - { - "word": "documenting", - "freq": 2.75e-06 - }, - { - "word": "everlasting", - "freq": 2.75e-06 - }, - { - "word": "feasibility", - "freq": 2.75e-06 - }, - { - "word": "fulfillment", - "freq": 2.75e-06 - }, - { - "word": "groundwater", - "freq": 2.75e-06 - }, - { - "word": "hostilities", - "freq": 2.75e-06 - }, - { - "word": "indifferent", - "freq": 2.75e-06 - }, - { - "word": "intimidated", - "freq": 2.75e-06 - }, - { - "word": "occupations", - "freq": 2.75e-06 - }, - { - "word": "pedestrians", - "freq": 2.75e-06 - }, - { - "word": "preparatory", - "freq": 2.75e-06 - }, - { - "word": "provocative", - "freq": 2.75e-06 - }, - { - "word": "rockefeller", - "freq": 2.75e-06 - }, - { - "word": "sacrificing", - "freq": 2.75e-06 - }, - { - "word": "apocalyptic", - "freq": 2.69e-06 - }, - { - "word": "contractual", - "freq": 2.69e-06 - }, - { - "word": "distracting", - "freq": 2.69e-06 - }, - { - "word": "evaluations", - "freq": 2.69e-06 - }, - { - "word": "generalized", - "freq": 2.69e-06 - }, - { - "word": "linguistics", - "freq": 2.69e-06 - }, - { - "word": "proficiency", - "freq": 2.69e-06 - }, - { - "word": "accelerator", - "freq": 2.63e-06 - }, - { - "word": "handicapped", - "freq": 2.63e-06 - }, - { - "word": "incarnation", - "freq": 2.63e-06 - }, - { - "word": "motivations", - "freq": 2.63e-06 - }, - { - "word": "prehistoric", - "freq": 2.63e-06 - }, - { - "word": "replication", - "freq": 2.63e-06 - }, - { - "word": "withdrawals", - "freq": 2.63e-06 - }, - { - "word": "withdrawing", - "freq": 2.63e-06 - }, - { - "word": "anonymously", - "freq": 2.57e-06 - }, - { - "word": "commonplace", - "freq": 2.57e-06 - }, - { - "word": "confidently", - "freq": 2.57e-06 - }, - { - "word": "constrained", - "freq": 2.57e-06 - }, - { - "word": "contemplate", - "freq": 2.57e-06 - }, - { - "word": "cooperating", - "freq": 2.57e-06 - }, - { - "word": "directorate", - "freq": 2.57e-06 - }, - { - "word": "encompasses", - "freq": 2.57e-06 - }, - { - "word": "foreclosure", - "freq": 2.57e-06 - }, - { - "word": "heartbroken", - "freq": 2.57e-06 - }, - { - "word": "immortality", - "freq": 2.57e-06 - }, - { - "word": "invitations", - "freq": 2.57e-06 - }, - { - "word": "mindfulness", - "freq": 2.57e-06 - }, - { - "word": "percentages", - "freq": 2.57e-06 - }, - { - "word": "prominently", - "freq": 2.57e-06 - }, - { - "word": "substantive", - "freq": 2.57e-06 - }, - { - "word": "transcripts", - "freq": 2.57e-06 - }, - { - "word": "unpublished", - "freq": 2.57e-06 - }, - { - "word": "abandonment", - "freq": 2.51e-06 - }, - { - "word": "astronomers", - "freq": 2.51e-06 - }, - { - "word": "extravagant", - "freq": 2.51e-06 - }, - { - "word": "familiarity", - "freq": 2.51e-06 - }, - { - "word": "principally", - "freq": 2.51e-06 - }, - { - "word": "renovations", - "freq": 2.51e-06 - }, - { - "word": "smithsonian", - "freq": 2.51e-06 - }, - { - "word": "superheroes", - "freq": 2.51e-06 - }, - { - "word": "articulated", - "freq": 2.45e-06 - }, - { - "word": "bournemouth", - "freq": 2.45e-06 - }, - { - "word": "coefficient", - "freq": 2.45e-06 - }, - { - "word": "conditioner", - "freq": 2.45e-06 - }, - { - "word": "conversions", - "freq": 2.45e-06 - }, - { - "word": "cornerstone", - "freq": 2.45e-06 - }, - { - "word": "correctness", - "freq": 2.45e-06 - }, - { - "word": "counterfeit", - "freq": 2.45e-06 - }, - { - "word": "refurbished", - "freq": 2.45e-06 - }, - { - "word": "troublesome", - "freq": 2.45e-06 - }, - { - "word": "departments", - "freq": 2.4e-06 - }, - { - "word": "adaptations", - "freq": 2.4e-06 - }, - { - "word": "appreciates", - "freq": 2.4e-06 - }, - { - "word": "attachments", - "freq": 2.4e-06 - }, - { - "word": "caterpillar", - "freq": 2.4e-06 - }, - { - "word": "diminishing", - "freq": 2.4e-06 - }, - { - "word": "directional", - "freq": 2.4e-06 - }, - { - "word": "imperialism", - "freq": 2.4e-06 - }, - { - "word": "incremental", - "freq": 2.4e-06 - }, - { - "word": "misdemeanor", - "freq": 2.4e-06 - }, - { - "word": "mountainous", - "freq": 2.4e-06 - }, - { - "word": "punishments", - "freq": 2.4e-06 - }, - { - "word": "retribution", - "freq": 2.4e-06 - }, - { - "word": "variability", - "freq": 2.4e-06 - }, - { - "word": "apologizing", - "freq": 2.34e-06 - }, - { - "word": "beneficiary", - "freq": 2.34e-06 - }, - { - "word": "catholicism", - "freq": 2.34e-06 - }, - { - "word": "firefighter", - "freq": 2.34e-06 - }, - { - "word": "fluorescent", - "freq": 2.34e-06 - }, - { - "word": "inclination", - "freq": 2.34e-06 - }, - { - "word": "interracial", - "freq": 2.34e-06 - }, - { - "word": "masculinity", - "freq": 2.34e-06 - }, - { - "word": "microscopic", - "freq": 2.34e-06 - }, - { - "word": "notoriously", - "freq": 2.34e-06 - }, - { - "word": "transformer", - "freq": 2.34e-06 - }, - { - "word": "undisclosed", - "freq": 2.34e-06 - }, - { - "word": "adolescence", - "freq": 2.29e-06 - }, - { - "word": "attribution", - "freq": 2.29e-06 - }, - { - "word": "corinthians", - "freq": 2.29e-06 - }, - { - "word": "emphasizing", - "freq": 2.29e-06 - }, - { - "word": "necessities", - "freq": 2.29e-06 - }, - { - "word": "outsourcing", - "freq": 2.29e-06 - }, - { - "word": "prosecuting", - "freq": 2.29e-06 - }, - { - "word": "referencing", - "freq": 2.29e-06 - }, - { - "word": "temperament", - "freq": 2.29e-06 - }, - { - "word": "undesirable", - "freq": 2.29e-06 - }, - { - "word": "unification", - "freq": 2.29e-06 - }, - { - "word": "withholding", - "freq": 2.29e-06 - }, - { - "word": "computation", - "freq": 2.24e-06 - }, - { - "word": "conspicuous", - "freq": 2.24e-06 - }, - { - "word": "constantine", - "freq": 2.24e-06 - }, - { - "word": "exceedingly", - "freq": 2.24e-06 - }, - { - "word": "excessively", - "freq": 2.24e-06 - }, - { - "word": "grammatical", - "freq": 2.24e-06 - }, - { - "word": "inquisition", - "freq": 2.24e-06 - }, - { - "word": "outnumbered", - "freq": 2.24e-06 - }, - { - "word": "protestants", - "freq": 2.24e-06 - }, - { - "word": "reinforcing", - "freq": 2.24e-06 - }, - { - "word": "seventeenth", - "freq": 2.24e-06 - }, - { - "word": "unavoidable", - "freq": 2.24e-06 - }, - { - "word": "bombardment", - "freq": 2.19e-06 - }, - { - "word": "calibration", - "freq": 2.19e-06 - }, - { - "word": "cylindrical", - "freq": 2.19e-06 - }, - { - "word": "devastation", - "freq": 2.19e-06 - }, - { - "word": "embroidered", - "freq": 2.19e-06 - }, - { - "word": "foreseeable", - "freq": 2.19e-06 - }, - { - "word": "intoxicated", - "freq": 2.19e-06 - }, - { - "word": "involuntary", - "freq": 2.19e-06 - }, - { - "word": "maharashtra", - "freq": 2.19e-06 - }, - { - "word": "originality", - "freq": 2.19e-06 - }, - { - "word": "propagation", - "freq": 2.19e-06 - }, - { - "word": "psychedelic", - "freq": 2.19e-06 - }, - { - "word": "archipelago", - "freq": 2.14e-06 - }, - { - "word": "cheerleader", - "freq": 2.14e-06 - }, - { - "word": "colonialism", - "freq": 2.14e-06 - }, - { - "word": "disgraceful", - "freq": 2.14e-06 - }, - { - "word": "exponential", - "freq": 2.14e-06 - }, - { - "word": "handwritten", - "freq": 2.14e-06 - }, - { - "word": "intervening", - "freq": 2.14e-06 - }, - { - "word": "matchmaking", - "freq": 2.14e-06 - }, - { - "word": "penetrating", - "freq": 2.14e-06 - }, - { - "word": "ultraviolet", - "freq": 2.14e-06 - }, - { - "word": "behavioural", - "freq": 2.09e-06 - }, - { - "word": "furnishings", - "freq": 2.09e-06 - }, - { - "word": "inaugurated", - "freq": 2.09e-06 - }, - { - "word": "miscarriage", - "freq": 2.09e-06 - }, - { - "word": "perpetrator", - "freq": 2.09e-06 - }, - { - "word": "prohibiting", - "freq": 2.09e-06 - }, - { - "word": "selectively", - "freq": 2.09e-06 - }, - { - "word": "substitutes", - "freq": 2.09e-06 - }, - { - "word": "supervising", - "freq": 2.09e-06 - }, - { - "word": "supervisory", - "freq": 2.09e-06 - }, - { - "word": "treacherous", - "freq": 2.09e-06 - }, - { - "word": "undermining", - "freq": 2.09e-06 - }, - { - "word": "versatility", - "freq": 2.09e-06 - }, - { - "word": "individuals", - "freq": 2.04e-06 - }, - { - "word": "apprehended", - "freq": 2.04e-06 - }, - { - "word": "capitalists", - "freq": 2.04e-06 - }, - { - "word": "categorized", - "freq": 2.04e-06 - }, - { - "word": "chromosomes", - "freq": 2.04e-06 - }, - { - "word": "contentious", - "freq": 2.04e-06 - }, - { - "word": "dehydration", - "freq": 2.04e-06 - }, - { - "word": "explanatory", - "freq": 2.04e-06 - }, - { - "word": "homosexuals", - "freq": 2.04e-06 - }, - { - "word": "illustrious", - "freq": 2.04e-06 - }, - { - "word": "memorabilia", - "freq": 2.04e-06 - }, - { - "word": "pregnancies", - "freq": 2.04e-06 - }, - { - "word": "prematurely", - "freq": 2.04e-06 - }, - { - "word": "scientology", - "freq": 2.04e-06 - }, - { - "word": "specialties", - "freq": 2.04e-06 - }, - { - "word": "spreadsheet", - "freq": 2.04e-06 - }, - { - "word": "abstraction", - "freq": 2e-06 - }, - { - "word": "considerate", - "freq": 2e-06 - }, - { - "word": "unspecified", - "freq": 2e-06 - }, - { - "word": "cultivating", - "freq": 1.95e-06 - }, - { - "word": "discrepancy", - "freq": 1.95e-06 - }, - { - "word": "flourishing", - "freq": 1.95e-06 - }, - { - "word": "hardworking", - "freq": 1.95e-06 - }, - { - "word": "housekeeper", - "freq": 1.95e-06 - }, - { - "word": "malfunction", - "freq": 1.95e-06 - }, - { - "word": "nightingale", - "freq": 1.95e-06 - }, - { - "word": "punctuation", - "freq": 1.95e-06 - }, - { - "word": "spiritually", - "freq": 1.95e-06 - }, - { - "word": "unprotected", - "freq": 1.95e-06 - }, - { - "word": "girlfriends", - "freq": 1.91e-06 - }, - { - "word": "compromises", - "freq": 1.91e-06 - }, - { - "word": "culminating", - "freq": 1.91e-06 - }, - { - "word": "defensively", - "freq": 1.91e-06 - }, - { - "word": "disapproval", - "freq": 1.91e-06 - }, - { - "word": "extradition", - "freq": 1.91e-06 - }, - { - "word": "impractical", - "freq": 1.91e-06 - }, - { - "word": "locomotives", - "freq": 1.91e-06 - }, - { - "word": "mercenaries", - "freq": 1.91e-06 - }, - { - "word": "objectively", - "freq": 1.91e-06 - }, - { - "word": "predicament", - "freq": 1.91e-06 - }, - { - "word": "predominant", - "freq": 1.91e-06 - }, - { - "word": "strengthens", - "freq": 1.91e-06 - }, - { - "word": "suppressing", - "freq": 1.91e-06 - }, - { - "word": "symmetrical", - "freq": 1.91e-06 - }, - { - "word": "unexplained", - "freq": 1.91e-06 - }, - { - "word": "yellowstone", - "freq": 1.91e-06 - }, - { - "word": "disclosures", - "freq": 1.86e-06 - }, - { - "word": "facilitates", - "freq": 1.86e-06 - }, - { - "word": "reassurance", - "freq": 1.86e-06 - }, - { - "word": "scarborough", - "freq": 1.86e-06 - }, - { - "word": "streamlined", - "freq": 1.86e-06 - }, - { - "word": "unthinkable", - "freq": 1.86e-06 - }, - { - "word": "antiquities", - "freq": 1.82e-06 - }, - { - "word": "brainwashed", - "freq": 1.82e-06 - }, - { - "word": "chattanooga", - "freq": 1.82e-06 - }, - { - "word": "cleanliness", - "freq": 1.82e-06 - }, - { - "word": "culmination", - "freq": 1.82e-06 - }, - { - "word": "democracies", - "freq": 1.82e-06 - }, - { - "word": "electrician", - "freq": 1.82e-06 - }, - { - "word": "internships", - "freq": 1.82e-06 - }, - { - "word": "liquidation", - "freq": 1.82e-06 - }, - { - "word": "occurrences", - "freq": 1.82e-06 - }, - { - "word": "preoccupied", - "freq": 1.82e-06 - }, - { - "word": "scandinavia", - "freq": 1.82e-06 - }, - { - "word": "supremacist", - "freq": 1.82e-06 - }, - { - "word": "aggregation", - "freq": 1.78e-06 - }, - { - "word": "appalachian", - "freq": 1.78e-06 - }, - { - "word": "bulletproof", - "freq": 1.78e-06 - }, - { - "word": "excavations", - "freq": 1.78e-06 - }, - { - "word": "fitzpatrick", - "freq": 1.78e-06 - }, - { - "word": "malpractice", - "freq": 1.78e-06 - }, - { - "word": "memberships", - "freq": 1.78e-06 - }, - { - "word": "perpetrated", - "freq": 1.78e-06 - }, - { - "word": "pessimistic", - "freq": 1.78e-06 - }, - { - "word": "affirmation", - "freq": 1.74e-06 - }, - { - "word": "bittersweet", - "freq": 1.74e-06 - }, - { - "word": "centimeters", - "freq": 1.74e-06 - }, - { - "word": "collingwood", - "freq": 1.74e-06 - }, - { - "word": "crystalline", - "freq": 1.74e-06 - }, - { - "word": "dismantling", - "freq": 1.74e-06 - }, - { - "word": "equivalents", - "freq": 1.74e-06 - }, - { - "word": "patriarchal", - "freq": 1.74e-06 - }, - { - "word": "religiously", - "freq": 1.74e-06 - }, - { - "word": "responsibly", - "freq": 1.74e-06 - }, - { - "word": "resurrected", - "freq": 1.74e-06 - }, - { - "word": "synthesized", - "freq": 1.74e-06 - }, - { - "word": "bestselling", - "freq": 1.7e-06 - }, - { - "word": "biographies", - "freq": 1.7e-06 - }, - { - "word": "confederacy", - "freq": 1.7e-06 - }, - { - "word": "lamborghini", - "freq": 1.7e-06 - }, - { - "word": "overflowing", - "freq": 1.7e-06 - }, - { - "word": "unimportant", - "freq": 1.7e-06 - }, - { - "word": "alternately", - "freq": 1.66e-06 - }, - { - "word": "arbitrarily", - "freq": 1.66e-06 - }, - { - "word": "bloomington", - "freq": 1.66e-06 - }, - { - "word": "coronavirus", - "freq": 1.66e-06 - }, - { - "word": "exacerbated", - "freq": 1.66e-06 - }, - { - "word": "homogeneous", - "freq": 1.66e-06 - }, - { - "word": "landscaping", - "freq": 1.66e-06 - }, - { - "word": "meteorology", - "freq": 1.66e-06 - }, - { - "word": "momentarily", - "freq": 1.66e-06 - }, - { - "word": "presumption", - "freq": 1.66e-06 - }, - { - "word": "proclaiming", - "freq": 1.66e-06 - }, - { - "word": "reactionary", - "freq": 1.66e-06 - }, - { - "word": "reconstruct", - "freq": 1.66e-06 - }, - { - "word": "selfishness", - "freq": 1.66e-06 - }, - { - "word": "specificity", - "freq": 1.66e-06 - }, - { - "word": "stewardship", - "freq": 1.66e-06 - }, - { - "word": "suspensions", - "freq": 1.66e-06 - }, - { - "word": "terminating", - "freq": 1.66e-06 - }, - { - "word": "thermometer", - "freq": 1.66e-06 - }, - { - "word": "adversaries", - "freq": 1.62e-06 - }, - { - "word": "aristocracy", - "freq": 1.62e-06 - }, - { - "word": "babysitting", - "freq": 1.62e-06 - }, - { - "word": "biochemical", - "freq": 1.62e-06 - }, - { - "word": "clandestine", - "freq": 1.62e-06 - }, - { - "word": "diagnostics", - "freq": 1.62e-06 - }, - { - "word": "prescribing", - "freq": 1.62e-06 - }, - { - "word": "shenanigans", - "freq": 1.62e-06 - }, - { - "word": "suitability", - "freq": 1.62e-06 - }, - { - "word": "translucent", - "freq": 1.62e-06 - }, - { - "word": "unfavorable", - "freq": 1.62e-06 - }, - { - "word": "accompanies", - "freq": 1.58e-06 - }, - { - "word": "assassinate", - "freq": 1.58e-06 - }, - { - "word": "cauliflower", - "freq": 1.58e-06 - }, - { - "word": "christensen", - "freq": 1.58e-06 - }, - { - "word": "distressing", - "freq": 1.58e-06 - }, - { - "word": "enlargement", - "freq": 1.58e-06 - }, - { - "word": "fingernails", - "freq": 1.58e-06 - }, - { - "word": "infiltrated", - "freq": 1.58e-06 - }, - { - "word": "intertwined", - "freq": 1.58e-06 - }, - { - "word": "inventories", - "freq": 1.58e-06 - }, - { - "word": "midfielders", - "freq": 1.58e-06 - }, - { - "word": "oxfordshire", - "freq": 1.58e-06 - }, - { - "word": "paralympics", - "freq": 1.58e-06 - }, - { - "word": "permissible", - "freq": 1.58e-06 - }, - { - "word": "realisation", - "freq": 1.58e-06 - }, - { - "word": "reparations", - "freq": 1.58e-06 - }, - { - "word": "sensibility", - "freq": 1.58e-06 - }, - { - "word": "tallahassee", - "freq": 1.58e-06 - }, - { - "word": "unsolicited", - "freq": 1.58e-06 - }, - { - "word": "commissions", - "freq": 1.55e-06 - }, - { - "word": "abbreviated", - "freq": 1.55e-06 - }, - { - "word": "aerodynamic", - "freq": 1.55e-06 - }, - { - "word": "copyrighted", - "freq": 1.55e-06 - }, - { - "word": "directories", - "freq": 1.55e-06 - }, - { - "word": "disparities", - "freq": 1.55e-06 - }, - { - "word": "nonexistent", - "freq": 1.55e-06 - }, - { - "word": "provocation", - "freq": 1.55e-06 - }, - { - "word": "restitution", - "freq": 1.55e-06 - }, - { - "word": "songwriting", - "freq": 1.55e-06 - }, - { - "word": "transporter", - "freq": 1.55e-06 - }, - { - "word": "unqualified", - "freq": 1.55e-06 - }, - { - "word": "wavelengths", - "freq": 1.55e-06 - }, - { - "word": "foundations", - "freq": 1.51e-06 - }, - { - "word": "bureaucrats", - "freq": 1.51e-06 - }, - { - "word": "exploratory", - "freq": 1.51e-06 - }, - { - "word": "frantically", - "freq": 1.51e-06 - }, - { - "word": "infertility", - "freq": 1.51e-06 - }, - { - "word": "periodicals", - "freq": 1.51e-06 - }, - { - "word": "polytechnic", - "freq": 1.51e-06 - }, - { - "word": "recognising", - "freq": 1.51e-06 - }, - { - "word": "tablespoons", - "freq": 1.51e-06 - }, - { - "word": "captivating", - "freq": 1.48e-06 - }, - { - "word": "commandment", - "freq": 1.48e-06 - }, - { - "word": "conceivable", - "freq": 1.48e-06 - }, - { - "word": "consecrated", - "freq": 1.48e-06 - }, - { - "word": "disarmament", - "freq": 1.48e-06 - }, - { - "word": "equivalence", - "freq": 1.48e-06 - }, - { - "word": "hairdresser", - "freq": 1.48e-06 - }, - { - "word": "infestation", - "freq": 1.48e-06 - }, - { - "word": "intolerable", - "freq": 1.48e-06 - }, - { - "word": "particulars", - "freq": 1.48e-06 - }, - { - "word": "pretentious", - "freq": 1.48e-06 - }, - { - "word": "rudimentary", - "freq": 1.48e-06 - }, - { - "word": "traumatized", - "freq": 1.48e-06 - }, - { - "word": "westchester", - "freq": 1.48e-06 - }, - { - "word": "bloodstream", - "freq": 1.45e-06 - }, - { - "word": "capitalized", - "freq": 1.45e-06 - }, - { - "word": "contradicts", - "freq": 1.45e-06 - }, - { - "word": "deformation", - "freq": 1.45e-06 - }, - { - "word": "duplication", - "freq": 1.45e-06 - }, - { - "word": "motherboard", - "freq": 1.45e-06 - }, - { - "word": "perpetually", - "freq": 1.45e-06 - }, - { - "word": "shortlisted", - "freq": 1.45e-06 - }, - { - "word": "singularity", - "freq": 1.45e-06 - }, - { - "word": "springsteen", - "freq": 1.45e-06 - }, - { - "word": "temptations", - "freq": 1.45e-06 - }, - { - "word": "transcribed", - "freq": 1.45e-06 - }, - { - "word": "worthington", - "freq": 1.45e-06 - }, - { - "word": "apprentices", - "freq": 1.41e-06 - }, - { - "word": "bridgewater", - "freq": 1.41e-06 - }, - { - "word": "chairperson", - "freq": 1.41e-06 - }, - { - "word": "deployments", - "freq": 1.41e-06 - }, - { - "word": "deteriorate", - "freq": 1.41e-06 - }, - { - "word": "discredited", - "freq": 1.41e-06 - }, - { - "word": "distributes", - "freq": 1.41e-06 - }, - { - "word": "marshmallow", - "freq": 1.41e-06 - }, - { - "word": "microphones", - "freq": 1.41e-06 - }, - { - "word": "mischievous", - "freq": 1.41e-06 - }, - { - "word": "officiating", - "freq": 1.41e-06 - }, - { - "word": "overarching", - "freq": 1.41e-06 - }, - { - "word": "pathologist", - "freq": 1.41e-06 - }, - { - "word": "preventable", - "freq": 1.41e-06 - }, - { - "word": "testimonies", - "freq": 1.41e-06 - }, - { - "word": "transplants", - "freq": 1.41e-06 - }, - { - "word": "tributaries", - "freq": 1.41e-06 - }, - { - "word": "unhappiness", - "freq": 1.41e-06 - }, - { - "word": "collectible", - "freq": 1.38e-06 - }, - { - "word": "displeasure", - "freq": 1.38e-06 - }, - { - "word": "fellowships", - "freq": 1.38e-06 - }, - { - "word": "imperialist", - "freq": 1.38e-06 - }, - { - "word": "justifiable", - "freq": 1.38e-06 - }, - { - "word": "reclamation", - "freq": 1.38e-06 - }, - { - "word": "sightseeing", - "freq": 1.38e-06 - }, - { - "word": "situational", - "freq": 1.38e-06 - }, - { - "word": "superpowers", - "freq": 1.38e-06 - }, - { - "word": "tentatively", - "freq": 1.38e-06 - }, - { - "word": "trespassing", - "freq": 1.38e-06 - }, - { - "word": "abomination", - "freq": 1.35e-06 - }, - { - "word": "associating", - "freq": 1.35e-06 - }, - { - "word": "checkpoints", - "freq": 1.35e-06 - }, - { - "word": "congressmen", - "freq": 1.35e-06 - }, - { - "word": "denominator", - "freq": 1.35e-06 - }, - { - "word": "exemplified", - "freq": 1.35e-06 - }, - { - "word": "inseparable", - "freq": 1.35e-06 - }, - { - "word": "instructing", - "freq": 1.35e-06 - }, - { - "word": "intravenous", - "freq": 1.35e-06 - }, - { - "word": "monasteries", - "freq": 1.35e-06 - }, - { - "word": "parentheses", - "freq": 1.35e-06 - }, - { - "word": "screwdriver", - "freq": 1.35e-06 - }, - { - "word": "transfusion", - "freq": 1.35e-06 - }, - { - "word": "unbreakable", - "freq": 1.35e-06 - }, - { - "word": "aggravating", - "freq": 1.32e-06 - }, - { - "word": "altercation", - "freq": 1.32e-06 - }, - { - "word": "authorizing", - "freq": 1.32e-06 - }, - { - "word": "bakersfield", - "freq": 1.32e-06 - }, - { - "word": "bangladeshi", - "freq": 1.32e-06 - }, - { - "word": "bartholomew", - "freq": 1.32e-06 - }, - { - "word": "californian", - "freq": 1.32e-06 - }, - { - "word": "eradication", - "freq": 1.32e-06 - }, - { - "word": "glastonbury", - "freq": 1.32e-06 - }, - { - "word": "nickelodeon", - "freq": 1.32e-06 - }, - { - "word": "painkillers", - "freq": 1.32e-06 - }, - { - "word": "skyscrapers", - "freq": 1.32e-06 - }, - { - "word": "spokeswoman", - "freq": 1.32e-06 - }, - { - "word": "stabilizing", - "freq": 1.32e-06 - }, - { - "word": "theologians", - "freq": 1.32e-06 - }, - { - "word": "unspeakable", - "freq": 1.32e-06 - }, - { - "word": "bridesmaids", - "freq": 1.29e-06 - }, - { - "word": "cockroaches", - "freq": 1.29e-06 - }, - { - "word": "discontinue", - "freq": 1.29e-06 - } - ], - "13": [ - { - "word": "international", - "freq": 0.000229 - }, - { - "word": "understanding", - "freq": 6.61e-05 - }, - { - "word": "investigation", - "freq": 5.62e-05 - }, - { - "word": "environmental", - "freq": 5.01e-05 - }, - { - "word": "communication", - "freq": 4.79e-05 - }, - { - "word": "approximately", - "freq": 4.37e-05 - }, - { - "word": "unfortunately", - "freq": 4.17e-05 - }, - { - "word": "opportunities", - "freq": 4.07e-05 - }, - { - "word": "entertainment", - "freq": 3.98e-05 - }, - { - "word": "circumstances", - "freq": 3.89e-05 - }, - { - "word": "manufacturing", - "freq": 3.63e-05 - }, - { - "word": "significantly", - "freq": 3.47e-05 - }, - { - "word": "automatically", - "freq": 3.31e-05 - }, - { - "word": "establishment", - "freq": 2.63e-05 - }, - { - "word": "comprehensive", - "freq": 2.29e-05 - }, - { - "word": "extraordinary", - "freq": 2.29e-05 - }, - { - "word": "contributions", - "freq": 2.19e-05 - }, - { - "word": "participation", - "freq": 2.14e-05 - }, - { - "word": "massachusetts", - "freq": 2.04e-05 - }, - { - "word": "conversations", - "freq": 2e-05 - }, - { - "word": "collaboration", - "freq": 1.91e-05 - }, - { - "word": "consideration", - "freq": 1.91e-05 - }, - { - "word": "concentration", - "freq": 1.86e-05 - }, - { - "word": "psychological", - "freq": 1.86e-05 - }, - { - "word": "controversial", - "freq": 1.7e-05 - }, - { - "word": "distinguished", - "freq": 1.58e-05 - }, - { - "word": "congressional", - "freq": 1.55e-05 - }, - { - "word": "participating", - "freq": 1.55e-05 - }, - { - "word": "uncomfortable", - "freq": 1.55e-05 - }, - { - "word": "parliamentary", - "freq": 1.51e-05 - }, - { - "word": "revolutionary", - "freq": 1.48e-05 - }, - { - "word": "determination", - "freq": 1.45e-05 - }, - { - "word": "consciousness", - "freq": 1.35e-05 - }, - { - "word": "corresponding", - "freq": 1.35e-05 - }, - { - "word": "possibilities", - "freq": 1.29e-05 - }, - { - "word": "investigating", - "freq": 1.2e-05 - }, - { - "word": "administrator", - "freq": 1.17e-05 - }, - { - "word": "accommodation", - "freq": 1.15e-05 - }, - { - "word": "demonstration", - "freq": 1.15e-05 - }, - { - "word": "independently", - "freq": 1.15e-05 - }, - { - "word": "technological", - "freq": 1.15e-05 - }, - { - "word": "traditionally", - "freq": 1.15e-05 - }, - { - "word": "effectiveness", - "freq": 1.12e-05 - }, - { - "word": "sophisticated", - "freq": 1.12e-05 - }, - { - "word": "disappointing", - "freq": 1.05e-05 - }, - { - "word": "characterized", - "freq": 1.02e-05 - }, - { - "word": "institutional", - "freq": 1e-05 - }, - { - "word": "inappropriate", - "freq": 9.77e-06 - }, - { - "word": "mediterranean", - "freq": 9.77e-06 - }, - { - "word": "complications", - "freq": 9.55e-06 - }, - { - "word": "certification", - "freq": 9.33e-06 - }, - { - "word": "configuration", - "freq": 9.33e-06 - }, - { - "word": "architectural", - "freq": 9.12e-06 - }, - { - "word": "substantially", - "freq": 9.12e-06 - }, - { - "word": "documentation", - "freq": 8.91e-06 - }, - { - "word": "philosophical", - "freq": 8.91e-06 - }, - { - "word": "neighbourhood", - "freq": 8.71e-06 - }, - { - "word": "personalities", - "freq": 7.94e-06 - }, - { - "word": "qualification", - "freq": 7.59e-06 - }, - { - "word": "illustrations", - "freq": 7.41e-06 - }, - { - "word": "correspondent", - "freq": 7.24e-06 - }, - { - "word": "undergraduate", - "freq": 7.08e-06 - }, - { - "word": "advertisement", - "freq": 6.92e-06 - }, - { - "word": "justification", - "freq": 6.76e-06 - }, - { - "word": "assassination", - "freq": 6.61e-06 - }, - { - "word": "intentionally", - "freq": 6.61e-06 - }, - { - "word": "modifications", - "freq": 6.61e-06 - }, - { - "word": "strengthening", - "freq": 6.61e-06 - }, - { - "word": "unprecedented", - "freq": 6.61e-06 - }, - { - "word": "alternatively", - "freq": 6.46e-06 - }, - { - "word": "predominantly", - "freq": 6.31e-06 - }, - { - "word": "encouragement", - "freq": 6.17e-06 - }, - { - "word": "grandchildren", - "freq": 6.17e-06 - }, - { - "word": "collaborative", - "freq": 6.03e-06 - }, - { - "word": "developmental", - "freq": 6.03e-06 - }, - { - "word": "installations", - "freq": 6.03e-06 - }, - { - "word": "communicating", - "freq": 5.89e-06 - }, - { - "word": "embarrassment", - "freq": 5.89e-06 - }, - { - "word": "fundamentally", - "freq": 5.89e-06 - }, - { - "word": "demonstrating", - "freq": 5.75e-06 - }, - { - "word": "inspirational", - "freq": 5.62e-06 - }, - { - "word": "specification", - "freq": 5.62e-06 - }, - { - "word": "appropriately", - "freq": 5.5e-06 - }, - { - "word": "authorization", - "freq": 5.5e-06 - }, - { - "word": "disappearance", - "freq": 5.5e-06 - }, - { - "word": "exceptionally", - "freq": 5.5e-06 - }, - { - "word": "homosexuality", - "freq": 5.5e-06 - }, - { - "word": "interventions", - "freq": 5.5e-06 - }, - { - "word": "confrontation", - "freq": 5.25e-06 - }, - { - "word": "consolidation", - "freq": 5.13e-06 - }, - { - "word": "announcements", - "freq": 5.01e-06 - }, - { - "word": "contamination", - "freq": 5.01e-06 - }, - { - "word": "functionality", - "freq": 5.01e-06 - }, - { - "word": "vulnerability", - "freq": 5.01e-06 - }, - { - "word": "inconvenience", - "freq": 4.9e-06 - }, - { - "word": "incorporating", - "freq": 4.9e-06 - }, - { - "word": "underestimate", - "freq": 4.9e-06 - }, - { - "word": "investigative", - "freq": 4.79e-06 - }, - { - "word": "unpredictable", - "freq": 4.79e-06 - }, - { - "word": "enlightenment", - "freq": 4.68e-06 - }, - { - "word": "irresponsible", - "freq": 4.68e-06 - }, - { - "word": "statistically", - "freq": 4.68e-06 - }, - { - "word": "notifications", - "freq": 4.57e-06 - }, - { - "word": "acknowledging", - "freq": 4.47e-06 - }, - { - "word": "disrespectful", - "freq": 4.37e-06 - }, - { - "word": "precipitation", - "freq": 4.37e-06 - }, - { - "word": "theoretically", - "freq": 4.37e-06 - }, - { - "word": "autobiography", - "freq": 4.27e-06 - }, - { - "word": "computational", - "freq": 4.17e-06 - }, - { - "word": "differentiate", - "freq": 4.17e-06 - }, - { - "word": "restructuring", - "freq": 4.17e-06 - }, - { - "word": "misunderstood", - "freq": 4.07e-06 - }, - { - "word": "presentations", - "freq": 4.07e-06 - }, - { - "word": "proliferation", - "freq": 4.07e-06 - }, - { - "word": "granddaughter", - "freq": 3.98e-06 - }, - { - "word": "interestingly", - "freq": 3.98e-06 - }, - { - "word": "jurisdictions", - "freq": 3.98e-06 - }, - { - "word": "authoritarian", - "freq": 3.89e-06 - }, - { - "word": "compatibility", - "freq": 3.89e-06 - }, - { - "word": "comprehension", - "freq": 3.72e-06 - }, - { - "word": "heartbreaking", - "freq": 3.72e-06 - }, - { - "word": "complementary", - "freq": 3.63e-06 - }, - { - "word": "interrogation", - "freq": 3.63e-06 - }, - { - "word": "multinational", - "freq": 3.63e-06 - }, - { - "word": "schizophrenia", - "freq": 3.63e-06 - }, - { - "word": "compassionate", - "freq": 3.55e-06 - }, - { - "word": "concentrating", - "freq": 3.55e-06 - }, - { - "word": "accreditation", - "freq": 3.47e-06 - }, - { - "word": "clarification", - "freq": 3.47e-06 - }, - { - "word": "physiological", - "freq": 3.47e-06 - }, - { - "word": "transcription", - "freq": 3.47e-06 - }, - { - "word": "experimenting", - "freq": 3.39e-06 - }, - { - "word": "insignificant", - "freq": 3.39e-06 - }, - { - "word": "knowledgeable", - "freq": 3.39e-06 - }, - { - "word": "semiconductor", - "freq": 3.39e-06 - }, - { - "word": "contemplating", - "freq": 3.31e-06 - }, - { - "word": "accessibility", - "freq": 3.24e-06 - }, - { - "word": "comparatively", - "freq": 3.24e-06 - }, - { - "word": "distributions", - "freq": 3.24e-06 - }, - { - "word": "instructional", - "freq": 3.24e-06 - }, - { - "word": "pronunciation", - "freq": 3.24e-06 - }, - { - "word": "breastfeeding", - "freq": 3.16e-06 - }, - { - "word": "inexperienced", - "freq": 3.16e-06 - }, - { - "word": "profitability", - "freq": 3.16e-06 - }, - { - "word": "disadvantaged", - "freq": 3.09e-06 - }, - { - "word": "disadvantages", - "freq": 3.09e-06 - }, - { - "word": "gravitational", - "freq": 3.09e-06 - }, - { - "word": "intellectuals", - "freq": 3.09e-06 - }, - { - "word": "subscriptions", - "freq": 3.09e-06 - }, - { - "word": "unconditional", - "freq": 3.09e-06 - }, - { - "word": "unforgettable", - "freq": 3.09e-06 - }, - { - "word": "contradictory", - "freq": 3.02e-06 - }, - { - "word": "documentaries", - "freq": 3.02e-06 - }, - { - "word": "progressively", - "freq": 3.02e-06 - }, - { - "word": "retrospective", - "freq": 3.02e-06 - }, - { - "word": "righteousness", - "freq": 3.02e-06 - }, - { - "word": "globalization", - "freq": 2.88e-06 - }, - { - "word": "beneficiaries", - "freq": 2.82e-06 - }, - { - "word": "confederation", - "freq": 2.82e-06 - }, - { - "word": "contradiction", - "freq": 2.82e-06 - }, - { - "word": "strategically", - "freq": 2.82e-06 - }, - { - "word": "inadvertently", - "freq": 2.75e-06 - }, - { - "word": "questionnaire", - "freq": 2.75e-06 - }, - { - "word": "redevelopment", - "freq": 2.75e-06 - }, - { - "word": "deterioration", - "freq": 2.69e-06 - }, - { - "word": "manifestation", - "freq": 2.69e-06 - }, - { - "word": "prescriptions", - "freq": 2.69e-06 - }, - { - "word": "reinforcement", - "freq": 2.69e-06 - }, - { - "word": "biotechnology", - "freq": 2.63e-06 - }, - { - "word": "collaborating", - "freq": 2.63e-06 - }, - { - "word": "headquartered", - "freq": 2.63e-06 - }, - { - "word": "miscellaneous", - "freq": 2.63e-06 - }, - { - "word": "unnecessarily", - "freq": 2.63e-06 - }, - { - "word": "organizations", - "freq": 2.57e-06 - }, - { - "word": "acquaintances", - "freq": 2.51e-06 - }, - { - "word": "authoritative", - "freq": 2.51e-06 - }, - { - "word": "characterised", - "freq": 2.51e-06 - }, - { - "word": "chronological", - "freq": 2.51e-06 - }, - { - "word": "controversies", - "freq": 2.51e-06 - }, - { - "word": "incorporation", - "freq": 2.51e-06 - }, - { - "word": "appropriation", - "freq": 2.45e-06 - }, - { - "word": "consultations", - "freq": 2.45e-06 - }, - { - "word": "multicultural", - "freq": 2.45e-06 - }, - { - "word": "repercussions", - "freq": 2.45e-06 - }, - { - "word": "uncertainties", - "freq": 2.45e-06 - }, - { - "word": "disagreements", - "freq": 2.4e-06 - }, - { - "word": "constellation", - "freq": 2.34e-06 - }, - { - "word": "interpersonal", - "freq": 2.34e-06 - }, - { - "word": "dysfunctional", - "freq": 2.29e-06 - }, - { - "word": "incarceration", - "freq": 2.29e-06 - }, - { - "word": "modernization", - "freq": 2.29e-06 - }, - { - "word": "supplementary", - "freq": 2.29e-06 - }, - { - "word": "complimentary", - "freq": 2.24e-06 - }, - { - "word": "cybersecurity", - "freq": 2.24e-06 - }, - { - "word": "reimbursement", - "freq": 2.24e-06 - }, - { - "word": "transmissions", - "freq": 2.24e-06 - }, - { - "word": "indispensable", - "freq": 2.19e-06 - }, - { - "word": "middlesbrough", - "freq": 2.19e-06 - }, - { - "word": "socioeconomic", - "freq": 2.19e-06 - }, - { - "word": "spontaneously", - "freq": 2.19e-06 - }, - { - "word": "realistically", - "freq": 2.14e-06 - }, - { - "word": "staffordshire", - "freq": 2.14e-06 - }, - { - "word": "thunderstorms", - "freq": 2.14e-06 - }, - { - "word": "approximation", - "freq": 2.09e-06 - }, - { - "word": "collaborators", - "freq": 2.09e-06 - }, - { - "word": "commissioning", - "freq": 2.09e-06 - }, - { - "word": "visualization", - "freq": 2.09e-06 - }, - { - "word": "abnormalities", - "freq": 2.04e-06 - }, - { - "word": "nationalities", - "freq": 2.04e-06 - }, - { - "word": "administering", - "freq": 2e-06 - }, - { - "word": "carbohydrates", - "freq": 2e-06 - }, - { - "word": "constructions", - "freq": 2e-06 - }, - { - "word": "exponentially", - "freq": 2e-06 - }, - { - "word": "introductions", - "freq": 2e-06 - }, - { - "word": "predetermined", - "freq": 2e-06 - }, - { - "word": "stabilization", - "freq": 2e-06 - }, - { - "word": "commemoration", - "freq": 1.95e-06 - }, - { - "word": "decentralized", - "freq": 1.95e-06 - }, - { - "word": "denominations", - "freq": 1.95e-06 - }, - { - "word": "imperfections", - "freq": 1.95e-06 - }, - { - "word": "perpendicular", - "freq": 1.95e-06 - }, - { - "word": "ramifications", - "freq": 1.95e-06 - }, - { - "word": "demonstrators", - "freq": 1.91e-06 - }, - { - "word": "reconstructed", - "freq": 1.91e-06 - }, - { - "word": "gratification", - "freq": 1.86e-06 - }, - { - "word": "intersections", - "freq": 1.86e-06 - }, - { - "word": "mitochondrial", - "freq": 1.86e-06 - }, - { - "word": "privatization", - "freq": 1.86e-06 - }, - { - "word": "contraception", - "freq": 1.82e-06 - }, - { - "word": "decomposition", - "freq": 1.82e-06 - }, - { - "word": "discretionary", - "freq": 1.82e-06 - }, - { - "word": "dissemination", - "freq": 1.82e-06 - }, - { - "word": "transitioning", - "freq": 1.82e-06 - }, - { - "word": "accommodating", - "freq": 1.78e-06 - }, - { - "word": "customization", - "freq": 1.78e-06 - }, - { - "word": "deteriorating", - "freq": 1.78e-06 - }, - { - "word": "instinctively", - "freq": 1.78e-06 - }, - { - "word": "motherfuckers", - "freq": 1.78e-06 - }, - { - "word": "psychotherapy", - "freq": 1.78e-06 - }, - { - "word": "uninterrupted", - "freq": 1.78e-06 - }, - { - "word": "conscientious", - "freq": 1.74e-06 - }, - { - "word": "discriminated", - "freq": 1.74e-06 - }, - { - "word": "mathematician", - "freq": 1.74e-06 - }, - { - "word": "motherfucking", - "freq": 1.74e-06 - }, - { - "word": "accomplishing", - "freq": 1.7e-06 - }, - { - "word": "commemorative", - "freq": 1.7e-06 - }, - { - "word": "fragmentation", - "freq": 1.7e-06 - }, - { - "word": "gubernatorial", - "freq": 1.7e-06 - }, - { - "word": "inconsistency", - "freq": 1.7e-06 - }, - { - "word": "accompaniment", - "freq": 1.66e-06 - }, - { - "word": "interceptions", - "freq": 1.66e-06 - }, - { - "word": "misconception", - "freq": 1.66e-06 - }, - { - "word": "congratulated", - "freq": 1.62e-06 - }, - { - "word": "philanthropic", - "freq": 1.62e-06 - }, - { - "word": "deforestation", - "freq": 1.58e-06 - }, - { - "word": "hertfordshire", - "freq": 1.58e-06 - }, - { - "word": "individuality", - "freq": 1.58e-06 - }, - { - "word": "transatlantic", - "freq": 1.58e-06 - }, - { - "word": "aesthetically", - "freq": 1.55e-06 - }, - { - "word": "companionship", - "freq": 1.55e-06 - }, - { - "word": "discrepancies", - "freq": 1.55e-06 - }, - { - "word": "photographing", - "freq": 1.55e-06 - }, - { - "word": "circumference", - "freq": 1.51e-06 - }, - { - "word": "disillusioned", - "freq": 1.51e-06 - }, - { - "word": "informational", - "freq": 1.51e-06 - }, - { - "word": "refrigeration", - "freq": 1.51e-06 - }, - { - "word": "transnational", - "freq": 1.51e-06 - }, - { - "word": "whistleblower", - "freq": 1.51e-06 - }, - { - "word": "deliberations", - "freq": 1.48e-06 - }, - { - "word": "stereotypical", - "freq": 1.48e-06 - }, - { - "word": "affordability", - "freq": 1.45e-06 - }, - { - "word": "consolidating", - "freq": 1.45e-06 - }, - { - "word": "distinguishes", - "freq": 1.45e-06 - }, - { - "word": "probabilities", - "freq": 1.45e-06 - }, - { - "word": "contemplation", - "freq": 1.41e-06 - }, - { - "word": "merchandising", - "freq": 1.41e-06 - }, - { - "word": "misunderstand", - "freq": 1.41e-06 - }, - { - "word": "morphological", - "freq": 1.41e-06 - }, - { - "word": "reincarnation", - "freq": 1.41e-06 - }, - { - "word": "rollercoaster", - "freq": 1.41e-06 - }, - { - "word": "skateboarding", - "freq": 1.41e-06 - }, - { - "word": "unsustainable", - "freq": 1.41e-06 - }, - { - "word": "commemorating", - "freq": 1.38e-06 - }, - { - "word": "horticultural", - "freq": 1.38e-06 - }, - { - "word": "instantaneous", - "freq": 1.38e-06 - }, - { - "word": "jurisprudence", - "freq": 1.38e-06 - }, - { - "word": "observational", - "freq": 1.38e-06 - }, - { - "word": "quarterfinals", - "freq": 1.38e-06 - }, - { - "word": "superstitious", - "freq": 1.38e-06 - }, - { - "word": "choreographer", - "freq": 1.35e-06 - }, - { - "word": "extermination", - "freq": 1.35e-06 - }, - { - "word": "methodologies", - "freq": 1.35e-06 - }, - { - "word": "registrations", - "freq": 1.35e-06 - }, - { - "word": "schizophrenic", - "freq": 1.35e-06 - }, - { - "word": "amplification", - "freq": 1.32e-06 - }, - { - "word": "archaeologist", - "freq": 1.32e-06 - }, - { - "word": "interruptions", - "freq": 1.32e-06 - }, - { - "word": "unintentional", - "freq": 1.32e-06 - }, - { - "word": "contraceptive", - "freq": 1.29e-06 - }, - { - "word": "hydroelectric", - "freq": 1.29e-06 - }, - { - "word": "nanoparticles", - "freq": 1.29e-06 - }, - { - "word": "participatory", - "freq": 1.29e-06 - }, - { - "word": "refurbishment", - "freq": 1.29e-06 - }, - { - "word": "unwillingness", - "freq": 1.29e-06 - }, - { - "word": "condescending", - "freq": 1.26e-06 - }, - { - "word": "craftsmanship", - "freq": 1.26e-06 - }, - { - "word": "improvisation", - "freq": 1.26e-06 - }, - { - "word": "privatisation", - "freq": 1.26e-06 - }, - { - "word": "sensibilities", - "freq": 1.26e-06 - }, - { - "word": "sterilization", - "freq": 1.26e-06 - }, - { - "word": "cancellations", - "freq": 1.23e-06 - }, - { - "word": "incapacitated", - "freq": 1.23e-06 - }, - { - "word": "mismanagement", - "freq": 1.23e-06 - }, - { - "word": "reunification", - "freq": 1.23e-06 - }, - { - "word": "heterogeneous", - "freq": 1.2e-06 - }, - { - "word": "choreographed", - "freq": 1.17e-06 - }, - { - "word": "competitively", - "freq": 1.17e-06 - }, - { - "word": "inconceivable", - "freq": 1.17e-06 - }, - { - "word": "objectionable", - "freq": 1.17e-06 - }, - { - "word": "opportunistic", - "freq": 1.17e-06 - }, - { - "word": "dermatologist", - "freq": 1.15e-06 - }, - { - "word": "intrinsically", - "freq": 1.15e-06 - }, - { - "word": "unequivocally", - "freq": 1.15e-06 - }, - { - "word": "breakthroughs", - "freq": 1.12e-06 - }, - { - "word": "extracellular", - "freq": 1.12e-06 - }, - { - "word": "fertilization", - "freq": 1.12e-06 - }, - { - "word": "intelligently", - "freq": 1.12e-06 - }, - { - "word": "macroeconomic", - "freq": 1.12e-06 - }, - { - "word": "weightlifting", - "freq": 1.12e-06 - }, - { - "word": "wolverhampton", - "freq": 1.12e-06 - }, - { - "word": "abbreviations", - "freq": 1.1e-06 - }, - { - "word": "impossibility", - "freq": 1.1e-06 - }, - { - "word": "inconsiderate", - "freq": 1.1e-06 - }, - { - "word": "nationalistic", - "freq": 1.1e-06 - }, - { - "word": "proportionate", - "freq": 1.1e-06 - }, - { - "word": "quartermaster", - "freq": 1.1e-06 - }, - { - "word": "recollections", - "freq": 1.1e-06 - }, - { - "word": "unconsciously", - "freq": 1.1e-06 - }, - { - "word": "authorisation", - "freq": 1.07e-06 - }, - { - "word": "categorically", - "freq": 1.07e-06 - }, - { - "word": "consequential", - "freq": 1.07e-06 - }, - { - "word": "incriminating", - "freq": 1.07e-06 - }, - { - "word": "metamorphosis", - "freq": 1.07e-06 - }, - { - "word": "fantastically", - "freq": 1.05e-06 - }, - { - "word": "intracellular", - "freq": 1.05e-06 - }, - { - "word": "socialization", - "freq": 1.05e-06 - }, - { - "word": "spectacularly", - "freq": 1.05e-06 - }, - { - "word": "antimicrobial", - "freq": 1.02e-06 - }, - { - "word": "irreplaceable", - "freq": 1.02e-06 - }, - { - "word": "sportsmanship", - "freq": 1.02e-06 - }, - { - "word": "contradicting", - "freq": 1e-06 - }, - { - "word": "ideologically", - "freq": 1e-06 - }, - { - "word": "individualism", - "freq": 1e-06 - }, - { - "word": "translational", - "freq": 1e-06 - }, - { - "word": "uncomfortably", - "freq": 1e-06 - }, - { - "word": "materialistic", - "freq": 9.77e-07 - }, - { - "word": "normalization", - "freq": 9.77e-07 - }, - { - "word": "precautionary", - "freq": 9.77e-07 - }, - { - "word": "reinstatement", - "freq": 9.77e-07 - }, - { - "word": "introspection", - "freq": 9.55e-07 - }, - { - "word": "schoolteacher", - "freq": 9.55e-07 - }, - { - "word": "substitutions", - "freq": 9.55e-07 - }, - { - "word": "unaccompanied", - "freq": 9.55e-07 - }, - { - "word": "impersonating", - "freq": 9.33e-07 - }, - { - "word": "modernisation", - "freq": 9.33e-07 - }, - { - "word": "paraphernalia", - "freq": 9.33e-07 - }, - { - "word": "petrochemical", - "freq": 9.33e-07 - }, - { - "word": "protestantism", - "freq": 9.33e-07 - }, - { - "word": "recombination", - "freq": 9.33e-07 - }, - { - "word": "rehabilitated", - "freq": 9.33e-07 - }, - { - "word": "reprehensible", - "freq": 9.33e-07 - }, - { - "word": "confectionery", - "freq": 9.12e-07 - }, - { - "word": "disintegrated", - "freq": 9.12e-07 - }, - { - "word": "invertebrates", - "freq": 9.12e-07 - }, - { - "word": "juxtaposition", - "freq": 9.12e-07 - }, - { - "word": "prerequisites", - "freq": 9.12e-07 - }, - { - "word": "refrigerators", - "freq": 9.12e-07 - }, - { - "word": "businesswoman", - "freq": 8.91e-07 - }, - { - "word": "disconcerting", - "freq": 8.91e-07 - }, - { - "word": "globalisation", - "freq": 8.91e-07 - }, - { - "word": "communicative", - "freq": 8.71e-07 - }, - { - "word": "electrostatic", - "freq": 8.71e-07 - }, - { - "word": "idiosyncratic", - "freq": 8.71e-07 - }, - { - "word": "paradoxically", - "freq": 8.71e-07 - }, - { - "word": "retroactively", - "freq": 8.71e-07 - }, - { - "word": "sarcastically", - "freq": 8.71e-07 - }, - { - "word": "underwhelming", - "freq": 8.71e-07 - }, - { - "word": "archeological", - "freq": 8.51e-07 - }, - { - "word": "authenticated", - "freq": 8.51e-07 - }, - { - "word": "consecutively", - "freq": 8.51e-07 - }, - { - "word": "decompression", - "freq": 8.51e-07 - }, - { - "word": "deterministic", - "freq": 8.51e-07 - }, - { - "word": "magnification", - "freq": 8.51e-07 - }, - { - "word": "ophthalmology", - "freq": 8.51e-07 - }, - { - "word": "reproductions", - "freq": 8.51e-07 - }, - { - "word": "resuscitation", - "freq": 8.51e-07 - }, - { - "word": "sensitivities", - "freq": 8.51e-07 - }, - { - "word": "sequestration", - "freq": 8.51e-07 - }, - { - "word": "straightening", - "freq": 8.51e-07 - }, - { - "word": "thermodynamic", - "freq": 8.51e-07 - }, - { - "word": "brainstorming", - "freq": 8.32e-07 - }, - { - "word": "carboniferous", - "freq": 8.32e-07 - }, - { - "word": "congresswoman", - "freq": 8.32e-07 - }, - { - "word": "meteorologist", - "freq": 8.32e-07 - }, - { - "word": "pembrokeshire", - "freq": 8.32e-07 - }, - { - "word": "aberdeenshire", - "freq": 8.13e-07 - }, - { - "word": "anniversaries", - "freq": 8.13e-07 - }, - { - "word": "applicability", - "freq": 8.13e-07 - }, - { - "word": "characterizes", - "freq": 8.13e-07 - }, - { - "word": "disinterested", - "freq": 8.13e-07 - }, - { - "word": "disrespecting", - "freq": 8.13e-07 - }, - { - "word": "involuntarily", - "freq": 8.13e-07 - }, - { - "word": "radioactivity", - "freq": 8.13e-07 - }, - { - "word": "indescribable", - "freq": 7.94e-07 - }, - { - "word": "inevitability", - "freq": 7.94e-07 - }, - { - "word": "introspective", - "freq": 7.94e-07 - }, - { - "word": "stratigraphic", - "freq": 7.94e-07 - }, - { - "word": "superficially", - "freq": 7.94e-07 - }, - { - "word": "antibacterial", - "freq": 7.76e-07 - }, - { - "word": "argumentative", - "freq": 7.76e-07 - }, - { - "word": "baccalaureate", - "freq": 7.76e-07 - }, - { - "word": "contemplative", - "freq": 7.76e-07 - }, - { - "word": "hallucination", - "freq": 7.76e-07 - }, - { - "word": "perfectionist", - "freq": 7.76e-07 - }, - { - "word": "transactional", - "freq": 7.76e-07 - }, - { - "word": "transcendence", - "freq": 7.76e-07 - }, - { - "word": "transgression", - "freq": 7.76e-07 - }, - { - "word": "veterinarians", - "freq": 7.76e-07 - }, - { - "word": "commissioners", - "freq": 7.59e-07 - }, - { - "word": "conspicuously", - "freq": 7.59e-07 - }, - { - "word": "counterattack", - "freq": 7.59e-07 - }, - { - "word": "expeditionary", - "freq": 7.59e-07 - }, - { - "word": "indeterminate", - "freq": 7.59e-07 - }, - { - "word": "shakespearean", - "freq": 7.59e-07 - }, - { - "word": "dehydrogenase", - "freq": 7.41e-07 - }, - { - "word": "impersonation", - "freq": 7.41e-07 - }, - { - "word": "intercultural", - "freq": 7.41e-07 - }, - { - "word": "interrogating", - "freq": 7.41e-07 - }, - { - "word": "physiotherapy", - "freq": 7.41e-07 - }, - { - "word": "preoccupation", - "freq": 7.41e-07 - }, - { - "word": "uninteresting", - "freq": 7.41e-07 - }, - { - "word": "astonishingly", - "freq": 7.24e-07 - }, - { - "word": "complimenting", - "freq": 7.24e-07 - }, - { - "word": "compositional", - "freq": 7.24e-07 - }, - { - "word": "conglomerates", - "freq": 7.24e-07 - }, - { - "word": "disheartening", - "freq": 7.24e-07 - }, - { - "word": "eavesdropping", - "freq": 7.24e-07 - }, - { - "word": "hyperactivity", - "freq": 7.24e-07 - }, - { - "word": "intergalactic", - "freq": 7.24e-07 - }, - { - "word": "probabilistic", - "freq": 7.24e-07 - }, - { - "word": "impressionist", - "freq": 7.08e-07 - }, - { - "word": "interpolation", - "freq": 7.08e-07 - }, - { - "word": "metallurgical", - "freq": 7.08e-07 - }, - { - "word": "revolutionize", - "freq": 7.08e-07 - }, - { - "word": "biodegradable", - "freq": 6.92e-07 - }, - { - "word": "contingencies", - "freq": 6.92e-07 - }, - { - "word": "fortification", - "freq": 6.92e-07 - }, - { - "word": "painstakingly", - "freq": 6.92e-07 - }, - { - "word": "protectionist", - "freq": 6.92e-07 - }, - { - "word": "substantiated", - "freq": 6.92e-07 - }, - { - "word": "superstitions", - "freq": 6.92e-07 - }, - { - "word": "disseminating", - "freq": 6.76e-07 - }, - { - "word": "industrialist", - "freq": 6.76e-07 - }, - { - "word": "instrumentals", - "freq": 6.76e-07 - }, - { - "word": "manipulations", - "freq": 6.76e-07 - }, - { - "word": "oceanographic", - "freq": 6.76e-07 - }, - { - "word": "predominately", - "freq": 6.76e-07 - }, - { - "word": "supplementing", - "freq": 6.76e-07 - }, - { - "word": "uncomplicated", - "freq": 6.76e-07 - }, - { - "word": "untrustworthy", - "freq": 6.76e-07 - }, - { - "word": "hybridization", - "freq": 6.61e-07 - }, - { - "word": "preservatives", - "freq": 6.61e-07 - }, - { - "word": "reconstituted", - "freq": 6.61e-07 - }, - { - "word": "victimization", - "freq": 6.61e-07 - }, - { - "word": "consternation", - "freq": 6.46e-07 - }, - { - "word": "discoloration", - "freq": 6.46e-07 - }, - { - "word": "encyclopaedia", - "freq": 6.46e-07 - }, - { - "word": "protectionism", - "freq": 6.46e-07 - }, - { - "word": "manufacturers", - "freq": 6.31e-07 - }, - { - "word": "anthropogenic", - "freq": 6.31e-07 - }, - { - "word": "redistricting", - "freq": 6.31e-07 - }, - { - "word": "screenwriting", - "freq": 6.31e-07 - }, - { - "word": "statisticians", - "freq": 6.31e-07 - }, - { - "word": "technologists", - "freq": 6.31e-07 - }, - { - "word": "topographical", - "freq": 6.31e-07 - }, - { - "word": "organisations", - "freq": 6.17e-07 - }, - { - "word": "appropriating", - "freq": 6.17e-07 - }, - { - "word": "dictatorships", - "freq": 6.17e-07 - }, - { - "word": "dissertations", - "freq": 6.17e-07 - }, - { - "word": "neoliberalism", - "freq": 6.17e-07 - }, - { - "word": "prefabricated", - "freq": 6.17e-07 - }, - { - "word": "provisionally", - "freq": 6.17e-07 - }, - { - "word": "cheeseburgers", - "freq": 6.03e-07 - }, - { - "word": "liechtenstein", - "freq": 5.89e-07 - }, - { - "word": "magnificently", - "freq": 5.89e-07 - }, - { - "word": "ornamentation", - "freq": 5.89e-07 - }, - { - "word": "postsecondary", - "freq": 5.89e-07 - }, - { - "word": "redistributed", - "freq": 5.89e-07 - }, - { - "word": "reminiscences", - "freq": 5.89e-07 - }, - { - "word": "typographical", - "freq": 5.89e-07 - }, - { - "word": "desegregation", - "freq": 5.75e-07 - }, - { - "word": "distinctively", - "freq": 5.75e-07 - }, - { - "word": "endocrinology", - "freq": 5.75e-07 - }, - { - "word": "energetically", - "freq": 5.75e-07 - }, - { - "word": "foreshadowing", - "freq": 5.75e-07 - }, - { - "word": "heterogeneity", - "freq": 5.75e-07 - }, - { - "word": "immunotherapy", - "freq": 5.75e-07 - }, - { - "word": "inconspicuous", - "freq": 5.75e-07 - }, - { - "word": "overestimated", - "freq": 5.75e-07 - }, - { - "word": "strangulation", - "freq": 5.75e-07 - }, - { - "word": "supercomputer", - "freq": 5.75e-07 - }, - { - "word": "destabilizing", - "freq": 5.62e-07 - }, - { - "word": "intermediates", - "freq": 5.62e-07 - }, - { - "word": "spectroscopic", - "freq": 5.62e-07 - }, - { - "word": "teleportation", - "freq": 5.62e-07 - }, - { - "word": "temperamental", - "freq": 5.62e-07 - }, - { - "word": "domestication", - "freq": 5.5e-07 - }, - { - "word": "harpercollins", - "freq": 5.5e-07 - }, - { - "word": "homeschooling", - "freq": 5.5e-07 - }, - { - "word": "orchestration", - "freq": 5.5e-07 - }, - { - "word": "replenishment", - "freq": 5.5e-07 - }, - { - "word": "photographers", - "freq": 5.37e-07 - }, - { - "word": "acidification", - "freq": 5.37e-07 - }, - { - "word": "congratulates", - "freq": 5.37e-07 - }, - { - "word": "cryptographic", - "freq": 5.37e-07 - }, - { - "word": "peculiarities", - "freq": 5.37e-07 - }, - { - "word": "phenomenology", - "freq": 5.37e-07 - }, - { - "word": "contaminating", - "freq": 5.25e-07 - }, - { - "word": "disengagement", - "freq": 5.25e-07 - }, - { - "word": "endometriosis", - "freq": 5.25e-07 - }, - { - "word": "hallucinating", - "freq": 5.25e-07 - }, - { - "word": "monochromatic", - "freq": 5.25e-07 - }, - { - "word": "postoperative", - "freq": 5.25e-07 - }, - { - "word": "professorship", - "freq": 5.25e-07 - }, - { - "word": "rearrangement", - "freq": 5.25e-07 - }, - { - "word": "subcontractor", - "freq": 5.25e-07 - }, - { - "word": "translocation", - "freq": 5.25e-07 - }, - { - "word": "unanticipated", - "freq": 5.25e-07 - }, - { - "word": "valedictorian", - "freq": 5.25e-07 - }, - { - "word": "condescension", - "freq": 5.13e-07 - }, - { - "word": "herefordshire", - "freq": 5.13e-07 - }, - { - "word": "incrementally", - "freq": 5.13e-07 - }, - { - "word": "postmodernism", - "freq": 5.13e-07 - }, - { - "word": "procrastinate", - "freq": 5.13e-07 - }, - { - "word": "reciprocating", - "freq": 5.13e-07 - }, - { - "word": "unambiguously", - "freq": 5.13e-07 - }, - { - "word": "underpinnings", - "freq": 5.13e-07 - }, - { - "word": "unenforceable", - "freq": 5.13e-07 - }, - { - "word": "uninhabitable", - "freq": 5.13e-07 - }, - { - "word": "complementing", - "freq": 5.01e-07 - }, - { - "word": "corroboration", - "freq": 5.01e-07 - }, - { - "word": "grammatically", - "freq": 5.01e-07 - }, - { - "word": "hollingsworth", - "freq": 5.01e-07 - }, - { - "word": "homeownership", - "freq": 5.01e-07 - }, - { - "word": "necessitating", - "freq": 5.01e-07 - }, - { - "word": "operationally", - "freq": 5.01e-07 - }, - { - "word": "preliminaries", - "freq": 5.01e-07 - }, - { - "word": "preponderance", - "freq": 5.01e-07 - }, - { - "word": "presbyterians", - "freq": 5.01e-07 - }, - { - "word": "acetaminophen", - "freq": 4.9e-07 - }, - { - "word": "anachronistic", - "freq": 4.9e-07 - }, - { - "word": "bibliographic", - "freq": 4.9e-07 - }, - { - "word": "crowdsourcing", - "freq": 4.9e-07 - }, - { - "word": "cyberbullying", - "freq": 4.9e-07 - }, - { - "word": "differentials", - "freq": 4.9e-07 - }, - { - "word": "embellishment", - "freq": 4.9e-07 - }, - { - "word": "flabbergasted", - "freq": 4.9e-07 - }, - { - "word": "insufficiency", - "freq": 4.9e-07 - }, - { - "word": "polypropylene", - "freq": 4.9e-07 - }, - { - "word": "stabilisation", - "freq": 4.9e-07 - }, - { - "word": "triangulation", - "freq": 4.9e-07 - }, - { - "word": "authentically", - "freq": 4.79e-07 - }, - { - "word": "policyholders", - "freq": 4.79e-07 - }, - { - "word": "reconsidering", - "freq": 4.79e-07 - }, - { - "word": "republicanism", - "freq": 4.79e-07 - }, - { - "word": "transparently", - "freq": 4.79e-07 - }, - { - "word": "civilisations", - "freq": 4.68e-07 - }, - { - "word": "contractually", - "freq": 4.68e-07 - }, - { - "word": "contravention", - "freq": 4.68e-07 - }, - { - "word": "disconnecting", - "freq": 4.68e-07 - }, - { - "word": "extrajudicial", - "freq": 4.68e-07 - }, - { - "word": "neuromuscular", - "freq": 4.68e-07 - }, - { - "word": "thermonuclear", - "freq": 4.68e-07 - }, - { - "word": "unadulterated", - "freq": 4.68e-07 - }, - { - "word": "unsympathetic", - "freq": 4.68e-07 - }, - { - "word": "combinatorial", - "freq": 4.57e-07 - }, - { - "word": "counterweight", - "freq": 4.57e-07 - }, - { - "word": "decentralised", - "freq": 4.57e-07 - }, - { - "word": "defibrillator", - "freq": 4.57e-07 - }, - { - "word": "disconnection", - "freq": 4.57e-07 - }, - { - "word": "insensitivity", - "freq": 4.57e-07 - }, - { - "word": "observatories", - "freq": 4.57e-07 - }, - { - "word": "sedimentation", - "freq": 4.57e-07 - }, - { - "word": "unaccountable", - "freq": 4.57e-07 - }, - { - "word": "abolitionists", - "freq": 4.47e-07 - }, - { - "word": "argumentation", - "freq": 4.47e-07 - }, - { - "word": "confirmations", - "freq": 4.47e-07 - }, - { - "word": "featherweight", - "freq": 4.47e-07 - }, - { - "word": "matriculation", - "freq": 4.47e-07 - }, - { - "word": "propagandists", - "freq": 4.47e-07 - }, - { - "word": "stylistically", - "freq": 4.47e-07 - }, - { - "word": "triglycerides", - "freq": 4.47e-07 - }, - { - "word": "uncooperative", - "freq": 4.47e-07 - }, - { - "word": "undisciplined", - "freq": 4.47e-07 - }, - { - "word": "communicators", - "freq": 4.37e-07 - }, - { - "word": "discontinuous", - "freq": 4.37e-07 - }, - { - "word": "expropriation", - "freq": 4.37e-07 - }, - { - "word": "extinguishers", - "freq": 4.37e-07 - }, - { - "word": "glorification", - "freq": 4.37e-07 - }, - { - "word": "impressionism", - "freq": 4.37e-07 - }, - { - "word": "noncommercial", - "freq": 4.37e-07 - }, - { - "word": "pediatricians", - "freq": 4.37e-07 - }, - { - "word": "pennsylvanias", - "freq": 4.37e-07 - }, - { - "word": "philadelphias", - "freq": 4.37e-07 - }, - { - "word": "phytoplankton", - "freq": 4.37e-07 - }, - { - "word": "rediscovering", - "freq": 4.37e-07 - }, - { - "word": "relinquishing", - "freq": 4.37e-07 - }, - { - "word": "screenwriters", - "freq": 4.37e-07 - }, - { - "word": "troublemakers", - "freq": 4.37e-07 - }, - { - "word": "battlegrounds", - "freq": 4.27e-07 - }, - { - "word": "demonstrative", - "freq": 4.27e-07 - }, - { - "word": "dismemberment", - "freq": 4.27e-07 - }, - { - "word": "infinitesimal", - "freq": 4.27e-07 - }, - { - "word": "orchestrating", - "freq": 4.27e-07 - }, - { - "word": "preconditions", - "freq": 4.27e-07 - }, - { - "word": "reintegration", - "freq": 4.27e-07 - }, - { - "word": "renegotiation", - "freq": 4.27e-07 - }, - { - "word": "repositioning", - "freq": 4.27e-07 - }, - { - "word": "thermoplastic", - "freq": 4.27e-07 - }, - { - "word": "acceptability", - "freq": 4.17e-07 - }, - { - "word": "assertiveness", - "freq": 4.17e-07 - }, - { - "word": "hydrochloride", - "freq": 4.17e-07 - }, - { - "word": "infringements", - "freq": 4.17e-07 - }, - { - "word": "motorcyclists", - "freq": 4.17e-07 - }, - { - "word": "proclamations", - "freq": 4.17e-07 - }, - { - "word": "prohibitively", - "freq": 4.17e-07 - }, - { - "word": "rapprochement", - "freq": 4.17e-07 - }, - { - "word": "scintillating", - "freq": 4.17e-07 - }, - { - "word": "circumscribed", - "freq": 4.07e-07 - }, - { - "word": "comprehending", - "freq": 4.07e-07 - }, - { - "word": "connectedness", - "freq": 4.07e-07 - }, - { - "word": "cooperatively", - "freq": 4.07e-07 - }, - { - "word": "encapsulation", - "freq": 4.07e-07 - }, - { - "word": "inclusiveness", - "freq": 4.07e-07 - }, - { - "word": "waterproofing", - "freq": 4.07e-07 - }, - { - "word": "acetylcholine", - "freq": 3.98e-07 - }, - { - "word": "astrophysical", - "freq": 3.98e-07 - }, - { - "word": "encyclopedias", - "freq": 3.98e-07 - }, - { - "word": "indoctrinated", - "freq": 3.98e-07 - }, - { - "word": "inflorescence", - "freq": 3.98e-07 - }, - { - "word": "interactivity", - "freq": 3.98e-07 - }, - { - "word": "kindergartens", - "freq": 3.98e-07 - }, - { - "word": "piezoelectric", - "freq": 3.98e-07 - }, - { - "word": "prosecutorial", - "freq": 3.98e-07 - }, - { - "word": "reprogramming", - "freq": 3.98e-07 - }, - { - "word": "subordination", - "freq": 3.98e-07 - }, - { - "word": "survivability", - "freq": 3.98e-07 - }, - { - "word": "unjustifiable", - "freq": 3.98e-07 - }, - { - "word": "vegetarianism", - "freq": 3.98e-07 - }, - { - "word": "clearinghouse", - "freq": 3.89e-07 - }, - { - "word": "conceptualize", - "freq": 3.89e-07 - }, - { - "word": "corroborating", - "freq": 3.89e-07 - }, - { - "word": "diametrically", - "freq": 3.89e-07 - }, - { - "word": "extinguishing", - "freq": 3.89e-07 - }, - { - "word": "optimizations", - "freq": 3.89e-07 - }, - { - "word": "stratospheric", - "freq": 3.89e-07 - }, - { - "word": "superposition", - "freq": 3.89e-07 - }, - { - "word": "tyrannosaurus", - "freq": 3.89e-07 - }, - { - "word": "unexplainable", - "freq": 3.89e-07 - }, - { - "word": "unpretentious", - "freq": 3.89e-07 - }, - { - "word": "discontinuing", - "freq": 3.8e-07 - }, - { - "word": "disqualifying", - "freq": 3.8e-07 - }, - { - "word": "electrocution", - "freq": 3.8e-07 - }, - { - "word": "forgetfulness", - "freq": 3.8e-07 - }, - { - "word": "sanctimonious", - "freq": 3.8e-07 - }, - { - "word": "thoroughfares", - "freq": 3.8e-07 - }, - { - "word": "unappreciated", - "freq": 3.8e-07 - }, - { - "word": "antipsychotic", - "freq": 3.72e-07 - }, - { - "word": "chrysanthemum", - "freq": 3.72e-07 - }, - { - "word": "conflagration", - "freq": 3.72e-07 - }, - { - "word": "discriminates", - "freq": 3.72e-07 - }, - { - "word": "employability", - "freq": 3.72e-07 - }, - { - "word": "entanglements", - "freq": 3.72e-07 - }, - { - "word": "expressionism", - "freq": 3.72e-07 - }, - { - "word": "externalities", - "freq": 3.72e-07 - }, - { - "word": "inexhaustible", - "freq": 3.72e-07 - }, - { - "word": "malfunctioned", - "freq": 3.72e-07 - }, - { - "word": "nullification", - "freq": 3.72e-07 - }, - { - "word": "qualitatively", - "freq": 3.72e-07 - }, - { - "word": "transmutation", - "freq": 3.72e-07 - }, - { - "word": "undergarments", - "freq": 3.72e-07 - }, - { - "word": "irrepressible", - "freq": 3.63e-07 - }, - { - "word": "misadventures", - "freq": 3.63e-07 - }, - { - "word": "perfectionism", - "freq": 3.63e-07 - }, - { - "word": "pseudoscience", - "freq": 3.63e-07 - }, - { - "word": "neighborhoods", - "freq": 3.55e-07 - }, - { - "word": "accelerometer", - "freq": 3.55e-07 - }, - { - "word": "bidirectional", - "freq": 3.55e-07 - }, - { - "word": "bureaucracies", - "freq": 3.55e-07 - }, - { - "word": "deconstructed", - "freq": 3.55e-07 - }, - { - "word": "dependability", - "freq": 3.55e-07 - }, - { - "word": "extrapolation", - "freq": 3.55e-07 - }, - { - "word": "grandstanding", - "freq": 3.55e-07 - }, - { - "word": "handkerchiefs", - "freq": 3.55e-07 - }, - { - "word": "immunological", - "freq": 3.55e-07 - }, - { - "word": "indefatigable", - "freq": 3.55e-07 - }, - { - "word": "individualist", - "freq": 3.55e-07 - }, - { - "word": "intravenously", - "freq": 3.55e-07 - }, - { - "word": "irrationality", - "freq": 3.55e-07 - }, - { - "word": "nutritionally", - "freq": 3.55e-07 - }, - { - "word": "obstetricians", - "freq": 3.55e-07 - }, - { - "word": "rectification", - "freq": 3.55e-07 - }, - { - "word": "accumulations", - "freq": 3.47e-07 - }, - { - "word": "fertilisation", - "freq": 3.47e-07 - }, - { - "word": "inventiveness", - "freq": 3.47e-07 - }, - { - "word": "monmouthshire", - "freq": 3.47e-07 - }, - { - "word": "nutritionists", - "freq": 3.47e-07 - }, - { - "word": "progressivism", - "freq": 3.47e-07 - }, - { - "word": "pronouncement", - "freq": 3.47e-07 - }, - { - "word": "psychosomatic", - "freq": 3.47e-07 - }, - { - "word": "transposition", - "freq": 3.47e-07 - }, - { - "word": "undercarriage", - "freq": 3.47e-07 - }, - { - "word": "unimaginative", - "freq": 3.47e-07 - }, - { - "word": "agglomeration", - "freq": 3.39e-07 - }, - { - "word": "commendations", - "freq": 3.39e-07 - }, - { - "word": "dispassionate", - "freq": 3.39e-07 - }, - { - "word": "entomological", - "freq": 3.39e-07 - }, - { - "word": "expressionist", - "freq": 3.39e-07 - }, - { - "word": "frustratingly", - "freq": 3.39e-07 - }, - { - "word": "investigatory", - "freq": 3.39e-07 - }, - { - "word": "powerlessness", - "freq": 3.39e-07 - }, - { - "word": "psychoanalyst", - "freq": 3.39e-07 - }, - { - "word": "semiautomatic", - "freq": 3.39e-07 - }, - { - "word": "streptococcus", - "freq": 3.39e-07 - }, - { - "word": "thessalonians", - "freq": 3.39e-07 - }, - { - "word": "visualisation", - "freq": 3.39e-07 - }, - { - "word": "cerebrospinal", - "freq": 3.31e-07 - }, - { - "word": "circumventing", - "freq": 3.31e-07 - }, - { - "word": "commonalities", - "freq": 3.31e-07 - }, - { - "word": "conditionally", - "freq": 3.31e-07 - }, - { - "word": "displacements", - "freq": 3.31e-07 - }, - { - "word": "hematopoietic", - "freq": 3.31e-07 - }, - { - "word": "intermarriage", - "freq": 3.31e-07 - }, - { - "word": "knightsbridge", - "freq": 3.31e-07 - }, - { - "word": "machiavellian", - "freq": 3.31e-07 - }, - { - "word": "protestations", - "freq": 3.31e-07 - }, - { - "word": "reestablished", - "freq": 3.31e-07 - }, - { - "word": "requisitioned", - "freq": 3.31e-07 - }, - { - "word": "underutilized", - "freq": 3.31e-07 - }, - { - "word": "assassinating", - "freq": 3.24e-07 - }, - { - "word": "falsification", - "freq": 3.24e-07 - }, - { - "word": "frighteningly", - "freq": 3.24e-07 - }, - { - "word": "hieroglyphics", - "freq": 3.24e-07 - }, - { - "word": "irresponsibly", - "freq": 3.24e-07 - }, - { - "word": "mississippian", - "freq": 3.24e-07 - }, - { - "word": "polycarbonate", - "freq": 3.24e-07 - }, - { - "word": "proliferating", - "freq": 3.24e-07 - }, - { - "word": "theologically", - "freq": 3.24e-07 - }, - { - "word": "transmembrane", - "freq": 3.24e-07 - }, - { - "word": "waterboarding", - "freq": 3.24e-07 - }, - { - "word": "chiropractors", - "freq": 3.16e-07 - }, - { - "word": "cruiserweight", - "freq": 3.16e-07 - }, - { - "word": "discontinuity", - "freq": 3.16e-07 - }, - { - "word": "miscalculated", - "freq": 3.16e-07 - }, - { - "word": "reforestation", - "freq": 3.16e-07 - }, - { - "word": "uncoordinated", - "freq": 3.16e-07 - }, - { - "word": "archeologists", - "freq": 3.09e-07 - }, - { - "word": "expeditiously", - "freq": 3.09e-07 - }, - { - "word": "grandfathered", - "freq": 3.09e-07 - }, - { - "word": "imperceptible", - "freq": 3.09e-07 - }, - { - "word": "indiscretions", - "freq": 3.09e-07 - }, - { - "word": "malformations", - "freq": 3.09e-07 - }, - { - "word": "mycobacterium", - "freq": 3.09e-07 - }, - { - "word": "overstatement", - "freq": 3.09e-07 - }, - { - "word": "perturbations", - "freq": 3.09e-07 - }, - { - "word": "polymorphisms", - "freq": 3.09e-07 - }, - { - "word": "symmetrically", - "freq": 3.09e-07 - }, - { - "word": "telemarketing", - "freq": 3.09e-07 - }, - { - "word": "unintelligent", - "freq": 3.09e-07 - }, - { - "word": "apportionment", - "freq": 3.02e-07 - }, - { - "word": "criminalizing", - "freq": 3.02e-07 - }, - { - "word": "extrapolating", - "freq": 3.02e-07 - }, - { - "word": "geometrically", - "freq": 3.02e-07 - }, - { - "word": "hermaphrodite", - "freq": 3.02e-07 - }, - { - "word": "heterosexuals", - "freq": 3.02e-07 - }, - { - "word": "precipitating", - "freq": 3.02e-07 - }, - { - "word": "stormtroopers", - "freq": 3.02e-07 - }, - { - "word": "demilitarized", - "freq": 2.95e-07 - }, - { - "word": "interrogators", - "freq": 2.95e-07 - }, - { - "word": "invincibility", - "freq": 2.95e-07 - }, - { - "word": "outperforming", - "freq": 2.95e-07 - }, - { - "word": "proselytizing", - "freq": 2.95e-07 - }, - { - "word": "randomization", - "freq": 2.95e-07 - }, - { - "word": "sociocultural", - "freq": 2.95e-07 - }, - { - "word": "actualization", - "freq": 2.88e-07 - }, - { - "word": "deliciousness", - "freq": 2.88e-07 - }, - { - "word": "disfigurement", - "freq": 2.88e-07 - }, - { - "word": "exterminating", - "freq": 2.88e-07 - }, - { - "word": "extravagantly", - "freq": 2.88e-07 - }, - { - "word": "fictionalized", - "freq": 2.88e-07 - }, - { - "word": "globetrotters", - "freq": 2.88e-07 - }, - { - "word": "gynecological", - "freq": 2.88e-07 - }, - { - "word": "harmonization", - "freq": 2.88e-07 - }, - { - "word": "heartbreakers", - "freq": 2.88e-07 - }, - { - "word": "holidaymakers", - "freq": 2.88e-07 - }, - { - "word": "illuminations", - "freq": 2.88e-07 - }, - { - "word": "incorruptible", - "freq": 2.88e-07 - }, - { - "word": "overconfident", - "freq": 2.88e-07 - }, - { - "word": "paternalistic", - "freq": 2.88e-07 - }, - { - "word": "supranational", - "freq": 2.88e-07 - }, - { - "word": "thoroughbreds", - "freq": 2.88e-07 - }, - { - "word": "trainspotting", - "freq": 2.88e-07 - }, - { - "word": "transplanting", - "freq": 2.88e-07 - }, - { - "word": "charlottetown", - "freq": 2.82e-07 - }, - { - "word": "customisation", - "freq": 2.82e-07 - }, - { - "word": "disbursements", - "freq": 2.82e-07 - }, - { - "word": "frankensteins", - "freq": 2.82e-07 - }, - { - "word": "immunizations", - "freq": 2.82e-07 - }, - { - "word": "multicellular", - "freq": 2.82e-07 - }, - { - "word": "noncompliance", - "freq": 2.82e-07 - }, - { - "word": "percussionist", - "freq": 2.82e-07 - }, - { - "word": "restaurateurs", - "freq": 2.82e-07 - }, - { - "word": "ventriloquist", - "freq": 2.82e-07 - }, - { - "word": "approximating", - "freq": 2.75e-07 - }, - { - "word": "biomechanical", - "freq": 2.75e-07 - }, - { - "word": "commercialism", - "freq": 2.75e-07 - }, - { - "word": "cyanobacteria", - "freq": 2.75e-07 - }, - { - "word": "knickerbocker", - "freq": 2.75e-07 - }, - { - "word": "magnetization", - "freq": 2.75e-07 - }, - { - "word": "propositional", - "freq": 2.75e-07 - }, - { - "word": "rationalizing", - "freq": 2.75e-07 - }, - { - "word": "scandinavians", - "freq": 2.75e-07 - }, - { - "word": "singularities", - "freq": 2.75e-07 - }, - { - "word": "synchronicity", - "freq": 2.75e-07 - }, - { - "word": "trigonometric", - "freq": 2.75e-07 - }, - { - "word": "unfashionable", - "freq": 2.75e-07 - }, - { - "word": "dramatization", - "freq": 2.69e-07 - }, - { - "word": "fontainebleau", - "freq": 2.69e-07 - }, - { - "word": "infallibility", - "freq": 2.69e-07 - }, - { - "word": "nanomaterials", - "freq": 2.69e-07 - }, - { - "word": "schadenfreude", - "freq": 2.69e-07 - }, - { - "word": "solicitations", - "freq": 2.69e-07 - }, - { - "word": "transgendered", - "freq": 2.69e-07 - }, - { - "word": "uncircumcised", - "freq": 2.69e-07 - }, - { - "word": "underemployed", - "freq": 2.69e-07 - }, - { - "word": "constitutions", - "freq": 2.63e-07 - }, - { - "word": "anticoagulant", - "freq": 2.63e-07 - }, - { - "word": "exaggerations", - "freq": 2.63e-07 - }, - { - "word": "exhibitionist", - "freq": 2.63e-07 - }, - { - "word": "intelligencer", - "freq": 2.63e-07 - }, - { - "word": "metamorphoses", - "freq": 2.63e-07 - }, - { - "word": "nitroglycerin", - "freq": 2.63e-07 - }, - { - "word": "reactionaries", - "freq": 2.63e-07 - }, - { - "word": "reinterpreted", - "freq": 2.63e-07 - }, - { - "word": "reverberation", - "freq": 2.63e-07 - }, - { - "word": "serialization", - "freq": 2.63e-07 - }, - { - "word": "transgressive", - "freq": 2.63e-07 - }, - { - "word": "calcification", - "freq": 2.57e-07 - }, - { - "word": "disintegrates", - "freq": 2.57e-07 - }, - { - "word": "factorization", - "freq": 2.57e-07 - }, - { - "word": "incrimination", - "freq": 2.57e-07 - }, - { - "word": "intramuscular", - "freq": 2.57e-07 - }, - { - "word": "lawrenceville", - "freq": 2.57e-07 - }, - { - "word": "mechanization", - "freq": 2.57e-07 - }, - { - "word": "premeditation", - "freq": 2.57e-07 - }, - { - "word": "reinvigorated", - "freq": 2.57e-07 - }, - { - "word": "transportable", - "freq": 2.57e-07 - }, - { - "word": "commercialize", - "freq": 2.51e-07 - }, - { - "word": "conservatoire", - "freq": 2.51e-07 - }, - { - "word": "geostationary", - "freq": 2.51e-07 - }, - { - "word": "gynaecologist", - "freq": 2.51e-07 - }, - { - "word": "mouthwatering", - "freq": 2.51e-07 - }, - { - "word": "peacebuilding", - "freq": 2.51e-07 - }, - { - "word": "provocatively", - "freq": 2.51e-07 - }, - { - "word": "reverberating", - "freq": 2.51e-07 - }, - { - "word": "unreliability", - "freq": 2.51e-07 - }, - { - "word": "elizabethtown", - "freq": 2.45e-07 - }, - { - "word": "functionaries", - "freq": 2.45e-07 - }, - { - "word": "instabilities", - "freq": 2.45e-07 - }, - { - "word": "intelligences", - "freq": 2.45e-07 - }, - { - "word": "marketability", - "freq": 2.45e-07 - }, - { - "word": "photoshopping", - "freq": 2.45e-07 - }, - { - "word": "precipitously", - "freq": 2.45e-07 - }, - { - "word": "regurgitation", - "freq": 2.45e-07 - }, - { - "word": "saccharomyces", - "freq": 2.45e-07 - }, - { - "word": "sensitization", - "freq": 2.45e-07 - }, - { - "word": "sharpshooters", - "freq": 2.45e-07 - }, - { - "word": "sterilisation", - "freq": 2.45e-07 - }, - { - "word": "supercritical", - "freq": 2.45e-07 - }, - { - "word": "supermajority", - "freq": 2.45e-07 - }, - { - "word": "synchronizing", - "freq": 2.45e-07 - }, - { - "word": "witwatersrand", - "freq": 2.45e-07 - }, - { - "word": "anthropologie", - "freq": 2.4e-07 - }, - { - "word": "convalescence", - "freq": 2.4e-07 - }, - { - "word": "gynecologists", - "freq": 2.4e-07 - }, - { - "word": "hydraulically", - "freq": 2.4e-07 - }, - { - "word": "internacional", - "freq": 2.4e-07 - }, - { - "word": "lactobacillus", - "freq": 2.4e-07 - }, - { - "word": "mainstreaming", - "freq": 2.4e-07 - }, - { - "word": "overshadowing", - "freq": 2.4e-07 - }, - { - "word": "pennsylvanian", - "freq": 2.4e-07 - }, - { - "word": "reintroducing", - "freq": 2.4e-07 - }, - { - "word": "unconstrained", - "freq": 2.4e-07 - }, - { - "word": "acculturation", - "freq": 2.34e-07 - }, - { - "word": "defensiveness", - "freq": 2.34e-07 - }, - { - "word": "denunciations", - "freq": 2.34e-07 - }, - { - "word": "fractionation", - "freq": 2.34e-07 - }, - { - "word": "hallucinatory", - "freq": 2.34e-07 - }, - { - "word": "intermountain", - "freq": 2.34e-07 - }, - { - "word": "kidderminster", - "freq": 2.34e-07 - }, - { - "word": "librarianship", - "freq": 2.34e-07 - }, - { - "word": "magnetosphere", - "freq": 2.34e-07 - }, - { - "word": "maxillofacial", - "freq": 2.34e-07 - }, - { - "word": "michelangelos", - "freq": 2.34e-07 - }, - { - "word": "neuroblastoma", - "freq": 2.34e-07 - }, - { - "word": "nonconformist", - "freq": 2.34e-07 - }, - { - "word": "quadrilateral", - "freq": 2.34e-07 - }, - { - "word": "transmissible", - "freq": 2.34e-07 - }, - { - "word": "antihistamine", - "freq": 2.29e-07 - }, - { - "word": "cardiologists", - "freq": 2.29e-07 - }, - { - "word": "compensations", - "freq": 2.29e-07 - }, - { - "word": "insubstantial", - "freq": 2.29e-07 - }, - { - "word": "posttraumatic", - "freq": 2.29e-07 - }, - { - "word": "revolutionise", - "freq": 2.29e-07 - }, - { - "word": "skateboarders", - "freq": 2.29e-07 - }, - { - "word": "tortoiseshell", - "freq": 2.29e-07 - }, - { - "word": "apprehensions", - "freq": 2.24e-07 - }, - { - "word": "christmastime", - "freq": 2.24e-07 - }, - { - "word": "devastatingly", - "freq": 2.24e-07 - }, - { - "word": "disinfectants", - "freq": 2.24e-07 - }, - { - "word": "educationally", - "freq": 2.24e-07 - }, - { - "word": "experimenters", - "freq": 2.24e-07 - }, - { - "word": "hallucinogens", - "freq": 2.24e-07 - }, - { - "word": "impermissible", - "freq": 2.24e-07 - }, - { - "word": "interrogative", - "freq": 2.24e-07 - }, - { - "word": "intransigence", - "freq": 2.24e-07 - }, - { - "word": "subcategories", - "freq": 2.24e-07 - }, - { - "word": "tranquilizers", - "freq": 2.24e-07 - }, - { - "word": "unforeseeable", - "freq": 2.24e-07 - }, - { - "word": "visakhapatnam", - "freq": 2.24e-07 - }, - { - "word": "accoutrements", - "freq": 2.19e-07 - }, - { - "word": "carthaginians", - "freq": 2.19e-07 - }, - { - "word": "clandestinely", - "freq": 2.19e-07 - }, - { - "word": "fossiliferous", - "freq": 2.19e-07 - }, - { - "word": "geomorphology", - "freq": 2.19e-07 - }, - { - "word": "hydrogenation", - "freq": 2.19e-07 - }, - { - "word": "multifunction", - "freq": 2.19e-07 - }, - { - "word": "northeasterly", - "freq": 2.19e-07 - }, - { - "word": "serendipitous", - "freq": 2.19e-07 - }, - { - "word": "affirmatively", - "freq": 2.14e-07 - }, - { - "word": "biostatistics", - "freq": 2.14e-07 - }, - { - "word": "comparability", - "freq": 2.14e-07 - }, - { - "word": "dexamethasone", - "freq": 2.14e-07 - }, - { - "word": "fingerprinted", - "freq": 2.14e-07 - }, - { - "word": "imaginatively", - "freq": 2.14e-07 - }, - { - "word": "neurosciences", - "freq": 2.14e-07 - }, - { - "word": "outstandingly", - "freq": 2.14e-07 - }, - { - "word": "pragmatically", - "freq": 2.14e-07 - }, - { - "word": "standardizing", - "freq": 2.14e-07 - }, - { - "word": "subcommittees", - "freq": 2.14e-07 - }, - { - "word": "substantively", - "freq": 2.14e-07 - }, - { - "word": "uncompetitive", - "freq": 2.14e-07 - }, - { - "word": "characterises", - "freq": 2.09e-07 - }, - { - "word": "dimensionless", - "freq": 2.09e-07 - }, - { - "word": "hemispherical", - "freq": 2.09e-07 - }, - { - "word": "hydrocephalus", - "freq": 2.09e-07 - }, - { - "word": "kaleidoscopic", - "freq": 2.09e-07 - }, - { - "word": "kristallnacht", - "freq": 2.09e-07 - }, - { - "word": "microorganism", - "freq": 2.09e-07 - }, - { - "word": "misidentified", - "freq": 2.09e-07 - }, - { - "word": "nonconforming", - "freq": 2.09e-07 - }, - { - "word": "overabundance", - "freq": 2.09e-07 - }, - { - "word": "peloponnesian", - "freq": 2.09e-07 - }, - { - "word": "swashbuckling", - "freq": 2.09e-07 - }, - { - "word": "upperclassmen", - "freq": 2.09e-07 - }, - { - "word": "vocalizations", - "freq": 2.09e-07 - }, - { - "word": "airworthiness", - "freq": 2.04e-07 - }, - { - "word": "brokenhearted", - "freq": 2.04e-07 - }, - { - "word": "cartilaginous", - "freq": 2.04e-07 - }, - { - "word": "condemnations", - "freq": 2.04e-07 - }, - { - "word": "crossdressing", - "freq": 2.04e-07 - }, - { - "word": "dispossession", - "freq": 2.04e-07 - }, - { - "word": "hyperglycemia", - "freq": 2.04e-07 - }, - { - "word": "imperialistic", - "freq": 2.04e-07 - }, - { - "word": "meningococcal", - "freq": 2.04e-07 - }, - { - "word": "mineralogical", - "freq": 2.04e-07 - }, - { - "word": "normalisation", - "freq": 2.04e-07 - }, - { - "word": "proliferative", - "freq": 2.04e-07 - }, - { - "word": "prostaglandin", - "freq": 2.04e-07 - }, - { - "word": "radionuclides", - "freq": 2.04e-07 - }, - { - "word": "theatricality", - "freq": 2.04e-07 - }, - { - "word": "attentiveness", - "freq": 2e-07 - }, - { - "word": "circumvention", - "freq": 2e-07 - }, - { - "word": "conquistadors", - "freq": 2e-07 - }, - { - "word": "decriminalize", - "freq": 2e-07 - }, - { - "word": "ferromagnetic", - "freq": 2e-07 - }, - { - "word": "glycoproteins", - "freq": 2e-07 - }, - { - "word": "hypochondriac", - "freq": 2e-07 - }, - { - "word": "metamorphosed", - "freq": 2e-07 - }, - { - "word": "microcomputer", - "freq": 2e-07 - } - ], - "12": [ - { - "word": "relationship", - "freq": 0.000141 - }, - { - "word": "professional", - "freq": 0.000112 - }, - { - "word": "construction", - "freq": 9.33e-05 - }, - { - "word": "particularly", - "freq": 9.12e-05 - }, - { - "word": "organization", - "freq": 8.32e-05 - }, - { - "word": "conversation", - "freq": 5.62e-05 - }, - { - "word": "intelligence", - "freq": 5.01e-05 - }, - { - "word": "specifically", - "freq": 4.47e-05 - }, - { - "word": "distribution", - "freq": 4.37e-05 - }, - { - "word": "requirements", - "freq": 4.37e-05 - }, - { - "word": "conservative", - "freq": 4.07e-05 - }, - { - "word": "independence", - "freq": 3.8e-05 - }, - { - "word": "constitution", - "freq": 3.63e-05 - }, - { - "word": "championship", - "freq": 3.47e-05 - }, - { - "word": "introduction", - "freq": 3.31e-05 - }, - { - "word": "presidential", - "freq": 3.31e-05 - }, - { - "word": "neighborhood", - "freq": 3.16e-05 - }, - { - "word": "contemporary", - "freq": 3.09e-05 - }, - { - "word": "consequences", - "freq": 2.95e-05 - }, - { - "word": "respectively", - "freq": 2.82e-05 - }, - { - "word": "successfully", - "freq": 2.82e-05 - }, - { - "word": "expectations", - "freq": 2.75e-05 - }, - { - "word": "commissioner", - "freq": 2.69e-05 - }, - { - "word": "architecture", - "freq": 2.63e-05 - }, - { - "word": "disappointed", - "freq": 2.63e-05 - }, - { - "word": "philadelphia", - "freq": 2.63e-05 - }, - { - "word": "pennsylvania", - "freq": 2.51e-05 - }, - { - "word": "occasionally", - "freq": 2.45e-05 - }, - { - "word": "increasingly", - "freq": 2.4e-05 - }, - { - "word": "instructions", - "freq": 2.34e-05 - }, - { - "word": "headquarters", - "freq": 2.29e-05 - }, - { - "word": "organisation", - "freq": 2.29e-05 - }, - { - "word": "representing", - "freq": 2.29e-05 - }, - { - "word": "universities", - "freq": 2.29e-05 - }, - { - "word": "agricultural", - "freq": 2.19e-05 - }, - { - "word": "commonwealth", - "freq": 2.19e-05 - }, - { - "word": "contribution", - "freq": 2.19e-05 - }, - { - "word": "compensation", - "freq": 2.14e-05 - }, - { - "word": "conservation", - "freq": 2.14e-05 - }, - { - "word": "temperatures", - "freq": 2.14e-05 - }, - { - "word": "transmission", - "freq": 2.14e-05 - }, - { - "word": "registration", - "freq": 2.09e-05 - }, - { - "word": "technologies", - "freq": 2.09e-05 - }, - { - "word": "announcement", - "freq": 2.04e-05 - }, - { - "word": "presentation", - "freq": 2.04e-05 - }, - { - "word": "restrictions", - "freq": 2.04e-05 - }, - { - "word": "intellectual", - "freq": 2e-05 - }, - { - "word": "performances", - "freq": 1.95e-05 - }, - { - "word": "experimental", - "freq": 1.91e-05 - }, - { - "word": "photographer", - "freq": 1.91e-05 - }, - { - "word": "improvements", - "freq": 1.86e-05 - }, - { - "word": "intervention", - "freq": 1.82e-05 - }, - { - "word": "considerable", - "freq": 1.78e-05 - }, - { - "word": "conventional", - "freq": 1.78e-05 - }, - { - "word": "nevertheless", - "freq": 1.78e-05 - }, - { - "word": "consistently", - "freq": 1.74e-05 - }, - { - "word": "arrangements", - "freq": 1.7e-05 - }, - { - "word": "subsequently", - "freq": 1.7e-05 - }, - { - "word": "accidentally", - "freq": 1.66e-05 - }, - { - "word": "demonstrated", - "freq": 1.66e-05 - }, - { - "word": "transactions", - "freq": 1.66e-05 - }, - { - "word": "unemployment", - "freq": 1.66e-05 - }, - { - "word": "difficulties", - "freq": 1.62e-05 - }, - { - "word": "manufacturer", - "freq": 1.62e-05 - }, - { - "word": "negotiations", - "freq": 1.62e-05 - }, - { - "word": "additionally", - "freq": 1.58e-05 - }, - { - "word": "incorporated", - "freq": 1.58e-05 - }, - { - "word": "christianity", - "freq": 1.55e-05 - }, - { - "word": "metropolitan", - "freq": 1.51e-05 - }, - { - "word": "significance", - "freq": 1.51e-05 - }, - { - "word": "surveillance", - "freq": 1.48e-05 - }, - { - "word": "installation", - "freq": 1.45e-05 - }, - { - "word": "interactions", - "freq": 1.45e-05 - }, - { - "word": "satisfaction", - "freq": 1.45e-05 - }, - { - "word": "accomplished", - "freq": 1.41e-05 - }, - { - "word": "embarrassing", - "freq": 1.41e-05 - }, - { - "word": "productivity", - "freq": 1.41e-05 - }, - { - "word": "investigated", - "freq": 1.38e-05 - }, - { - "word": "availability", - "freq": 1.35e-05 - }, - { - "word": "manufactured", - "freq": 1.35e-05 - }, - { - "word": "appreciation", - "freq": 1.32e-05 - }, - { - "word": "capabilities", - "freq": 1.29e-05 - }, - { - "word": "entertaining", - "freq": 1.29e-05 - }, - { - "word": "establishing", - "freq": 1.29e-05 - }, - { - "word": "implications", - "freq": 1.26e-05 - }, - { - "word": "jurisdiction", - "freq": 1.26e-05 - }, - { - "word": "surprisingly", - "freq": 1.23e-05 - }, - { - "word": "acknowledged", - "freq": 1.2e-05 - }, - { - "word": "confirmation", - "freq": 1.2e-05 - }, - { - "word": "contributing", - "freq": 1.2e-05 - }, - { - "word": "historically", - "freq": 1.2e-05 - }, - { - "word": "overwhelming", - "freq": 1.2e-05 - }, - { - "word": "unbelievable", - "freq": 1.2e-05 - }, - { - "word": "achievements", - "freq": 1.15e-05 - }, - { - "word": "subscription", - "freq": 1.15e-05 - }, - { - "word": "measurements", - "freq": 1.12e-05 - }, - { - "word": "alternatives", - "freq": 1.1e-05 - }, - { - "word": "experiencing", - "freq": 1.1e-05 - }, - { - "word": "intermediate", - "freq": 1.1e-05 - }, - { - "word": "mathematical", - "freq": 1.1e-05 - }, - { - "word": "thanksgiving", - "freq": 1.1e-05 - }, - { - "word": "broadcasting", - "freq": 1.05e-05 - }, - { - "word": "consultation", - "freq": 1.05e-05 - }, - { - "word": "deliberately", - "freq": 1.05e-05 - }, - { - "word": "observations", - "freq": 1.05e-05 - }, - { - "word": "civilization", - "freq": 1.02e-05 - }, - { - "word": "participated", - "freq": 1.02e-05 - }, - { - "word": "preservation", - "freq": 1.02e-05 - }, - { - "word": "considerably", - "freq": 1e-05 - }, - { - "word": "prescription", - "freq": 1e-05 - }, - { - "word": "entrepreneur", - "freq": 9.77e-06 - }, - { - "word": "instrumental", - "freq": 9.77e-06 - }, - { - "word": "interference", - "freq": 9.77e-06 - }, - { - "word": "continuously", - "freq": 9.33e-06 - }, - { - "word": "administered", - "freq": 9.12e-06 - }, - { - "word": "commissioned", - "freq": 9.12e-06 - }, - { - "word": "concentrated", - "freq": 9.12e-06 - }, - { - "word": "appointments", - "freq": 8.91e-06 - }, - { - "word": "dramatically", - "freq": 8.91e-06 - }, - { - "word": "consequently", - "freq": 8.71e-06 - }, - { - "word": "disabilities", - "freq": 8.51e-06 - }, - { - "word": "descriptions", - "freq": 8.32e-06 - }, - { - "word": "illustration", - "freq": 8.32e-06 - }, - { - "word": "notification", - "freq": 8.32e-06 - }, - { - "word": "humanitarian", - "freq": 8.13e-06 - }, - { - "word": "implementing", - "freq": 8.13e-06 - }, - { - "word": "recreational", - "freq": 8.13e-06 - }, - { - "word": "confidential", - "freq": 7.94e-06 - }, - { - "word": "coordination", - "freq": 7.94e-06 - }, - { - "word": "individually", - "freq": 7.94e-06 - }, - { - "word": "transparency", - "freq": 7.94e-06 - }, - { - "word": "conditioning", - "freq": 7.76e-06 - }, - { - "word": "imprisonment", - "freq": 7.76e-06 - }, - { - "word": "perspectives", - "freq": 7.76e-06 - }, - { - "word": "supernatural", - "freq": 7.76e-06 - }, - { - "word": "intersection", - "freq": 7.59e-06 - }, - { - "word": "calculations", - "freq": 7.41e-06 - }, - { - "word": "preparations", - "freq": 7.41e-06 - }, - { - "word": "unacceptable", - "freq": 7.41e-06 - }, - { - "word": "demonstrates", - "freq": 7.24e-06 - }, - { - "word": "accompanying", - "freq": 7.08e-06 - }, - { - "word": "celebrations", - "freq": 7.08e-06 - }, - { - "word": "geographical", - "freq": 7.08e-06 - }, - { - "word": "governmental", - "freq": 7.08e-06 - }, - { - "word": "manipulation", - "freq": 7.08e-06 - }, - { - "word": "enthusiastic", - "freq": 6.92e-06 - }, - { - "word": "exploitation", - "freq": 6.92e-06 - }, - { - "word": "breakthrough", - "freq": 6.76e-06 - }, - { - "word": "combinations", - "freq": 6.76e-06 - }, - { - "word": "destinations", - "freq": 6.76e-06 - }, - { - "word": "differential", - "freq": 6.76e-06 - }, - { - "word": "economically", - "freq": 6.76e-06 - }, - { - "word": "investigator", - "freq": 6.76e-06 - }, - { - "word": "bibliography", - "freq": 6.61e-06 - }, - { - "word": "collectively", - "freq": 6.61e-06 - }, - { - "word": "congregation", - "freq": 6.61e-06 - }, - { - "word": "consolidated", - "freq": 6.61e-06 - }, - { - "word": "evolutionary", - "freq": 6.61e-06 - }, - { - "word": "indianapolis", - "freq": 6.61e-06 - }, - { - "word": "psychologist", - "freq": 6.31e-06 - }, - { - "word": "reproductive", - "freq": 6.31e-06 - }, - { - "word": "sufficiently", - "freq": 6.31e-06 - }, - { - "word": "inconsistent", - "freq": 6.17e-06 - }, - { - "word": "kindergarten", - "freq": 6.17e-06 - }, - { - "word": "northwestern", - "freq": 6.17e-06 - }, - { - "word": "reproduction", - "freq": 6.17e-06 - }, - { - "word": "reservations", - "freq": 6.17e-06 - }, - { - "word": "similarities", - "freq": 6.17e-06 - }, - { - "word": "surroundings", - "freq": 6.17e-06 - }, - { - "word": "constructive", - "freq": 6.03e-06 - }, - { - "word": "questionable", - "freq": 6.03e-06 - }, - { - "word": "certificates", - "freq": 5.89e-06 - }, - { - "word": "insufficient", - "freq": 5.89e-06 - }, - { - "word": "modification", - "freq": 5.89e-06 - }, - { - "word": "neighbouring", - "freq": 5.89e-06 - }, - { - "word": "cancellation", - "freq": 5.75e-06 - }, - { - "word": "explanations", - "freq": 5.75e-06 - }, - { - "word": "photographic", - "freq": 5.75e-06 - }, - { - "word": "resurrection", - "freq": 5.75e-06 - }, - { - "word": "scholarships", - "freq": 5.75e-06 - }, - { - "word": "counterparts", - "freq": 5.62e-06 - }, - { - "word": "disciplinary", - "freq": 5.62e-06 - }, - { - "word": "palestinians", - "freq": 5.62e-06 - }, - { - "word": "unreasonable", - "freq": 5.62e-06 - }, - { - "word": "anticipation", - "freq": 5.5e-06 - }, - { - "word": "transferring", - "freq": 5.5e-06 - }, - { - "word": "acceleration", - "freq": 5.37e-06 - }, - { - "word": "constituents", - "freq": 5.37e-06 - }, - { - "word": "inflammation", - "freq": 5.37e-06 - }, - { - "word": "quantitative", - "freq": 5.37e-06 - }, - { - "word": "unsuccessful", - "freq": 5.37e-06 - }, - { - "word": "inflammatory", - "freq": 5.25e-06 - }, - { - "word": "laboratories", - "freq": 5.25e-06 - }, - { - "word": "occupational", - "freq": 5.25e-06 - }, - { - "word": "photographed", - "freq": 5.25e-06 - }, - { - "word": "prostitution", - "freq": 5.25e-06 - }, - { - "word": "translations", - "freq": 5.25e-06 - }, - { - "word": "commentators", - "freq": 5.13e-06 - }, - { - "word": "continuation", - "freq": 5.13e-06 - }, - { - "word": "disadvantage", - "freq": 5.13e-06 - }, - { - "word": "municipality", - "freq": 5.13e-06 - }, - { - "word": "unexpectedly", - "freq": 5.13e-06 - }, - { - "word": "contaminated", - "freq": 5.01e-06 - }, - { - "word": "dissertation", - "freq": 5.01e-06 - }, - { - "word": "psychiatrist", - "freq": 5.01e-06 - }, - { - "word": "verification", - "freq": 5.01e-06 - }, - { - "word": "acquisitions", - "freq": 4.9e-06 - }, - { - "word": "constituency", - "freq": 4.9e-06 - }, - { - "word": "strengthened", - "freq": 4.9e-06 - }, - { - "word": "commercially", - "freq": 4.68e-06 - }, - { - "word": "contributors", - "freq": 4.68e-06 - }, - { - "word": "highlighting", - "freq": 4.68e-06 - }, - { - "word": "johannesburg", - "freq": 4.68e-06 - }, - { - "word": "circumstance", - "freq": 4.57e-06 - }, - { - "word": "disagreement", - "freq": 4.57e-06 - }, - { - "word": "optimization", - "freq": 4.57e-06 - }, - { - "word": "southeastern", - "freq": 4.57e-06 - }, - { - "word": "storytelling", - "freq": 4.57e-06 - }, - { - "word": "anthropology", - "freq": 4.47e-06 - }, - { - "word": "indefinitely", - "freq": 4.47e-06 - }, - { - "word": "transforming", - "freq": 4.47e-06 - }, - { - "word": "compositions", - "freq": 4.37e-06 - }, - { - "word": "dictatorship", - "freq": 4.37e-06 - }, - { - "word": "northeastern", - "freq": 4.37e-06 - }, - { - "word": "southwestern", - "freq": 4.37e-06 - }, - { - "word": "spokesperson", - "freq": 4.37e-06 - }, - { - "word": "standardized", - "freq": 4.37e-06 - }, - { - "word": "transitional", - "freq": 4.37e-06 - }, - { - "word": "aggressively", - "freq": 4.27e-06 - }, - { - "word": "discontinued", - "freq": 4.27e-06 - }, - { - "word": "displacement", - "freq": 4.27e-06 - }, - { - "word": "practitioner", - "freq": 4.27e-06 - }, - { - "word": "interviewing", - "freq": 4.17e-06 - }, - { - "word": "missionaries", - "freq": 4.17e-06 - }, - { - "word": "examinations", - "freq": 4.07e-06 - }, - { - "word": "hypothetical", - "freq": 4.07e-06 - }, - { - "word": "infringement", - "freq": 4.07e-06 - }, - { - "word": "jacksonville", - "freq": 4.07e-06 - }, - { - "word": "motherfucker", - "freq": 4.07e-06 - }, - { - "word": "refrigerator", - "freq": 4.07e-06 - }, - { - "word": "regeneration", - "freq": 4.07e-06 - }, - { - "word": "unidentified", - "freq": 4.07e-06 - }, - { - "word": "authenticity", - "freq": 3.98e-06 - }, - { - "word": "breathtaking", - "freq": 3.98e-06 - }, - { - "word": "disappearing", - "freq": 3.98e-06 - }, - { - "word": "distributors", - "freq": 3.98e-06 - }, - { - "word": "presbyterian", - "freq": 3.98e-06 - }, - { - "word": "proportional", - "freq": 3.98e-06 - }, - { - "word": "testosterone", - "freq": 3.98e-06 - }, - { - "word": "accumulation", - "freq": 3.89e-06 - }, - { - "word": "congratulate", - "freq": 3.89e-06 - }, - { - "word": "constructing", - "freq": 3.89e-06 - }, - { - "word": "coordinating", - "freq": 3.89e-06 - }, - { - "word": "fundamentals", - "freq": 3.89e-06 - }, - { - "word": "periodically", - "freq": 3.89e-06 - }, - { - "word": "transporting", - "freq": 3.89e-06 - }, - { - "word": "catastrophic", - "freq": 3.8e-06 - }, - { - "word": "conveniently", - "freq": 3.8e-06 - }, - { - "word": "distributing", - "freq": 3.8e-06 - }, - { - "word": "subsidiaries", - "freq": 3.8e-06 - }, - { - "word": "tuberculosis", - "freq": 3.8e-06 - }, - { - "word": "inauguration", - "freq": 3.72e-06 - }, - { - "word": "satisfactory", - "freq": 3.72e-06 - }, - { - "word": "transformers", - "freq": 3.72e-06 - }, - { - "word": "unauthorized", - "freq": 3.72e-06 - }, - { - "word": "chemotherapy", - "freq": 3.63e-06 - }, - { - "word": "connectivity", - "freq": 3.63e-06 - }, - { - "word": "demographics", - "freq": 3.63e-06 - }, - { - "word": "intimidating", - "freq": 3.63e-06 - }, - { - "word": "nationalists", - "freq": 3.63e-06 - }, - { - "word": "stakeholders", - "freq": 3.63e-06 - }, - { - "word": "acquaintance", - "freq": 3.55e-06 - }, - { - "word": "incorporates", - "freq": 3.55e-06 - }, - { - "word": "recommending", - "freq": 3.55e-06 - }, - { - "word": "spirituality", - "freq": 3.55e-06 - }, - { - "word": "neurological", - "freq": 3.47e-06 - }, - { - "word": "strawberries", - "freq": 3.47e-06 - }, - { - "word": "acknowledges", - "freq": 3.39e-06 - }, - { - "word": "communicated", - "freq": 3.39e-06 - }, - { - "word": "personalized", - "freq": 3.39e-06 - }, - { - "word": "replacements", - "freq": 3.39e-06 - }, - { - "word": "simultaneous", - "freq": 3.39e-06 - }, - { - "word": "condemnation", - "freq": 3.31e-06 - }, - { - "word": "disconnected", - "freq": 3.31e-06 - }, - { - "word": "encyclopedia", - "freq": 3.31e-06 - }, - { - "word": "expenditures", - "freq": 3.31e-06 - }, - { - "word": "volunteering", - "freq": 3.31e-06 - }, - { - "word": "discriminate", - "freq": 3.24e-06 - }, - { - "word": "incidentally", - "freq": 3.24e-06 - }, - { - "word": "introductory", - "freq": 3.24e-06 - }, - { - "word": "ridiculously", - "freq": 3.24e-06 - }, - { - "word": "specializing", - "freq": 3.24e-06 - }, - { - "word": "astronomical", - "freq": 3.09e-06 - }, - { - "word": "choreography", - "freq": 3.09e-06 - }, - { - "word": "scandinavian", - "freq": 3.09e-06 - }, - { - "word": "supplemental", - "freq": 3.09e-06 - }, - { - "word": "commencement", - "freq": 3.02e-06 - }, - { - "word": "incompatible", - "freq": 3.02e-06 - }, - { - "word": "motivational", - "freq": 3.02e-06 - }, - { - "word": "biodiversity", - "freq": 2.95e-06 - }, - { - "word": "fluctuations", - "freq": 2.95e-06 - }, - { - "word": "inconvenient", - "freq": 2.95e-06 - }, - { - "word": "irresistible", - "freq": 2.95e-06 - }, - { - "word": "respectfully", - "freq": 2.95e-06 - }, - { - "word": "accelerating", - "freq": 2.88e-06 - }, - { - "word": "masturbation", - "freq": 2.88e-06 - }, - { - "word": "subcommittee", - "freq": 2.88e-06 - }, - { - "word": "distractions", - "freq": 2.82e-06 - }, - { - "word": "interpreting", - "freq": 2.82e-06 - }, - { - "word": "manipulating", - "freq": 2.82e-06 - }, - { - "word": "neuroscience", - "freq": 2.82e-06 - }, - { - "word": "recognizable", - "freq": 2.82e-06 - }, - { - "word": "saskatchewan", - "freq": 2.82e-06 - }, - { - "word": "shortcomings", - "freq": 2.82e-06 - }, - { - "word": "artificially", - "freq": 2.75e-06 - }, - { - "word": "disqualified", - "freq": 2.75e-06 - }, - { - "word": "hospitalized", - "freq": 2.75e-06 - }, - { - "word": "proclamation", - "freq": 2.75e-06 - }, - { - "word": "undocumented", - "freq": 2.75e-06 - }, - { - "word": "correctional", - "freq": 2.69e-06 - }, - { - "word": "facilitating", - "freq": 2.69e-06 - }, - { - "word": "homelessness", - "freq": 2.69e-06 - }, - { - "word": "illegitimate", - "freq": 2.69e-06 - }, - { - "word": "incompetence", - "freq": 2.69e-06 - }, - { - "word": "interception", - "freq": 2.69e-06 - }, - { - "word": "manufactures", - "freq": 2.69e-06 - }, - { - "word": "transmitting", - "freq": 2.69e-06 - }, - { - "word": "conservatism", - "freq": 2.63e-06 - }, - { - "word": "supermarkets", - "freq": 2.63e-06 - }, - { - "word": "unbelievably", - "freq": 2.63e-06 - }, - { - "word": "hypertension", - "freq": 2.57e-06 - }, - { - "word": "irrespective", - "freq": 2.57e-06 - }, - { - "word": "substitution", - "freq": 2.57e-06 - }, - { - "word": "tremendously", - "freq": 2.57e-06 - }, - { - "word": "bureaucratic", - "freq": 2.51e-06 - }, - { - "word": "commandments", - "freq": 2.51e-06 - }, - { - "word": "legalization", - "freq": 2.51e-06 - }, - { - "word": "anticipating", - "freq": 2.45e-06 - }, - { - "word": "assassinated", - "freq": 2.45e-06 - }, - { - "word": "conglomerate", - "freq": 2.45e-06 - }, - { - "word": "heterosexual", - "freq": 2.45e-06 - }, - { - "word": "intermittent", - "freq": 2.45e-06 - }, - { - "word": "intimidation", - "freq": 2.45e-06 - }, - { - "word": "subconscious", - "freq": 2.45e-06 - }, - { - "word": "biographical", - "freq": 2.4e-06 - }, - { - "word": "manslaughter", - "freq": 2.4e-06 - }, - { - "word": "newfoundland", - "freq": 2.4e-06 - }, - { - "word": "civilisation", - "freq": 2.34e-06 - }, - { - "word": "collaborated", - "freq": 2.34e-06 - }, - { - "word": "depreciation", - "freq": 2.34e-06 - }, - { - "word": "identifiable", - "freq": 2.34e-06 - }, - { - "word": "longitudinal", - "freq": 2.34e-06 - }, - { - "word": "biochemistry", - "freq": 2.29e-06 - }, - { - "word": "colonization", - "freq": 2.29e-06 - }, - { - "word": "cosmopolitan", - "freq": 2.29e-06 - }, - { - "word": "interruption", - "freq": 2.29e-06 - }, - { - "word": "legitimately", - "freq": 2.29e-06 - }, - { - "word": "pathological", - "freq": 2.29e-06 - }, - { - "word": "unattractive", - "freq": 2.29e-06 - }, - { - "word": "affectionate", - "freq": 2.24e-06 - }, - { - "word": "deteriorated", - "freq": 2.24e-06 - }, - { - "word": "encompassing", - "freq": 2.24e-06 - }, - { - "word": "illumination", - "freq": 2.24e-06 - }, - { - "word": "impoverished", - "freq": 2.24e-06 - }, - { - "word": "mechanically", - "freq": 2.24e-06 - }, - { - "word": "deficiencies", - "freq": 2.19e-06 - }, - { - "word": "disturbances", - "freq": 2.19e-06 - }, - { - "word": "indifference", - "freq": 2.19e-06 - }, - { - "word": "interstellar", - "freq": 2.19e-06 - }, - { - "word": "marginalized", - "freq": 2.19e-06 - }, - { - "word": "perseverance", - "freq": 2.19e-06 - }, - { - "word": "progressives", - "freq": 2.19e-06 - }, - { - "word": "advantageous", - "freq": 2.14e-06 - }, - { - "word": "compromising", - "freq": 2.14e-06 - }, - { - "word": "fingerprints", - "freq": 2.14e-06 - }, - { - "word": "frankenstein", - "freq": 2.14e-06 - }, - { - "word": "investigates", - "freq": 2.14e-06 - }, - { - "word": "passionately", - "freq": 2.14e-06 - }, - { - "word": "shipbuilding", - "freq": 2.14e-06 - }, - { - "word": "supplemented", - "freq": 2.14e-06 - }, - { - "word": "characterize", - "freq": 2.09e-06 - }, - { - "word": "crowdfunding", - "freq": 2.09e-06 - }, - { - "word": "illustrating", - "freq": 2.09e-06 - }, - { - "word": "philanthropy", - "freq": 2.09e-06 - }, - { - "word": "preparedness", - "freq": 2.09e-06 - }, - { - "word": "attributable", - "freq": 2.04e-06 - }, - { - "word": "complication", - "freq": 2.04e-06 - }, - { - "word": "denomination", - "freq": 2.04e-06 - }, - { - "word": "dissatisfied", - "freq": 2.04e-06 - }, - { - "word": "distinctions", - "freq": 2.04e-06 - }, - { - "word": "hypocritical", - "freq": 2.04e-06 - }, - { - "word": "inscriptions", - "freq": 2.04e-06 - }, - { - "word": "spectroscopy", - "freq": 2.04e-06 - }, - { - "word": "conservatory", - "freq": 2e-06 - }, - { - "word": "epidemiology", - "freq": 2e-06 - }, - { - "word": "exaggeration", - "freq": 2e-06 - }, - { - "word": "fermentation", - "freq": 2e-06 - }, - { - "word": "horizontally", - "freq": 2e-06 - }, - { - "word": "inaccessible", - "freq": 2e-06 - }, - { - "word": "masturbating", - "freq": 2e-06 - }, - { - "word": "incarcerated", - "freq": 1.95e-06 - }, - { - "word": "journalistic", - "freq": 1.95e-06 - }, - { - "word": "lincolnshire", - "freq": 1.95e-06 - }, - { - "word": "purification", - "freq": 1.95e-06 - }, - { - "word": "complexities", - "freq": 1.91e-06 - }, - { - "word": "disobedience", - "freq": 1.91e-06 - }, - { - "word": "emancipation", - "freq": 1.91e-06 - }, - { - "word": "generational", - "freq": 1.91e-06 - }, - { - "word": "insecurities", - "freq": 1.91e-06 - }, - { - "word": "interrupting", - "freq": 1.91e-06 - }, - { - "word": "irreversible", - "freq": 1.91e-06 - }, - { - "word": "orchestrated", - "freq": 1.91e-06 - }, - { - "word": "participates", - "freq": 1.91e-06 - }, - { - "word": "postgraduate", - "freq": 1.91e-06 - }, - { - "word": "recollection", - "freq": 1.91e-06 - }, - { - "word": "departmental", - "freq": 1.86e-06 - }, - { - "word": "experimented", - "freq": 1.86e-06 - }, - { - "word": "localization", - "freq": 1.86e-06 - }, - { - "word": "mobilization", - "freq": 1.86e-06 - }, - { - "word": "unrestricted", - "freq": 1.86e-06 - }, - { - "word": "associations", - "freq": 1.82e-06 - }, - { - "word": "christchurch", - "freq": 1.82e-06 - }, - { - "word": "commentaries", - "freq": 1.82e-06 - }, - { - "word": "concurrently", - "freq": 1.82e-06 - }, - { - "word": "domestically", - "freq": 1.82e-06 - }, - { - "word": "endorsements", - "freq": 1.82e-06 - }, - { - "word": "frustrations", - "freq": 1.82e-06 - }, - { - "word": "hierarchical", - "freq": 1.82e-06 - }, - { - "word": "mysteriously", - "freq": 1.82e-06 - }, - { - "word": "polarization", - "freq": 1.82e-06 - }, - { - "word": "receptionist", - "freq": 1.82e-06 - }, - { - "word": "remuneration", - "freq": 1.82e-06 - }, - { - "word": "sociological", - "freq": 1.82e-06 - }, - { - "word": "subdivisions", - "freq": 1.82e-06 - }, - { - "word": "contemplated", - "freq": 1.78e-06 - }, - { - "word": "manipulative", - "freq": 1.78e-06 - }, - { - "word": "microbiology", - "freq": 1.78e-06 - }, - { - "word": "thunderstorm", - "freq": 1.78e-06 - }, - { - "word": "wrestlemania", - "freq": 1.78e-06 - }, - { - "word": "appreciative", - "freq": 1.74e-06 - }, - { - "word": "compartments", - "freq": 1.74e-06 - }, - { - "word": "fluorescence", - "freq": 1.74e-06 - }, - { - "word": "housekeeping", - "freq": 1.74e-06 - }, - { - "word": "inequalities", - "freq": 1.74e-06 - }, - { - "word": "infiltration", - "freq": 1.74e-06 - }, - { - "word": "malnutrition", - "freq": 1.74e-06 - }, - { - "word": "masterpieces", - "freq": 1.74e-06 - }, - { - "word": "prerequisite", - "freq": 1.74e-06 - }, - { - "word": "accumulating", - "freq": 1.7e-06 - }, - { - "word": "appreciating", - "freq": 1.7e-06 - }, - { - "word": "aristocratic", - "freq": 1.7e-06 - }, - { - "word": "biologically", - "freq": 1.7e-06 - }, - { - "word": "declarations", - "freq": 1.7e-06 - }, - { - "word": "encountering", - "freq": 1.7e-06 - }, - { - "word": "overshadowed", - "freq": 1.7e-06 - }, - { - "word": "peterborough", - "freq": 1.7e-06 - }, - { - "word": "philosophies", - "freq": 1.7e-06 - }, - { - "word": "safeguarding", - "freq": 1.7e-06 - }, - { - "word": "segmentation", - "freq": 1.7e-06 - }, - { - "word": "alphabetical", - "freq": 1.66e-06 - }, - { - "word": "annihilation", - "freq": 1.66e-06 - }, - { - "word": "cheerleaders", - "freq": 1.66e-06 - }, - { - "word": "coefficients", - "freq": 1.66e-06 - }, - { - "word": "discouraging", - "freq": 1.66e-06 - }, - { - "word": "effortlessly", - "freq": 1.66e-06 - }, - { - "word": "metaphysical", - "freq": 1.66e-06 - }, - { - "word": "narcissistic", - "freq": 1.66e-06 - }, - { - "word": "shakespeares", - "freq": 1.66e-06 - }, - { - "word": "circumcision", - "freq": 1.62e-06 - }, - { - "word": "hillsborough", - "freq": 1.62e-06 - }, - { - "word": "illuminating", - "freq": 1.62e-06 - }, - { - "word": "nomenclature", - "freq": 1.62e-06 - }, - { - "word": "preferential", - "freq": 1.62e-06 - }, - { - "word": "relentlessly", - "freq": 1.62e-06 - }, - { - "word": "superstition", - "freq": 1.62e-06 - }, - { - "word": "totalitarian", - "freq": 1.62e-06 - }, - { - "word": "guaranteeing", - "freq": 1.58e-06 - }, - { - "word": "paramilitary", - "freq": 1.58e-06 - }, - { - "word": "synchronized", - "freq": 1.58e-06 - }, - { - "word": "therapeutics", - "freq": 1.58e-06 - }, - { - "word": "uncontrolled", - "freq": 1.58e-06 - }, - { - "word": "unparalleled", - "freq": 1.58e-06 - }, - { - "word": "williamsburg", - "freq": 1.58e-06 - }, - { - "word": "assimilation", - "freq": 1.55e-06 - }, - { - "word": "concentrates", - "freq": 1.55e-06 - }, - { - "word": "contractions", - "freq": 1.55e-06 - }, - { - "word": "debilitating", - "freq": 1.55e-06 - }, - { - "word": "dependencies", - "freq": 1.55e-06 - }, - { - "word": "efficiencies", - "freq": 1.55e-06 - }, - { - "word": "electrically", - "freq": 1.55e-06 - }, - { - "word": "exaggerating", - "freq": 1.55e-06 - }, - { - "word": "extinguished", - "freq": 1.55e-06 - }, - { - "word": "functionally", - "freq": 1.55e-06 - }, - { - "word": "longstanding", - "freq": 1.55e-06 - }, - { - "word": "miraculously", - "freq": 1.55e-06 - }, - { - "word": "philharmonic", - "freq": 1.55e-06 - }, - { - "word": "structurally", - "freq": 1.55e-06 - }, - { - "word": "veterinarian", - "freq": 1.55e-06 - }, - { - "word": "academically", - "freq": 1.51e-06 - }, - { - "word": "bachelorette", - "freq": 1.51e-06 - }, - { - "word": "computerized", - "freq": 1.51e-06 - }, - { - "word": "dictionaries", - "freq": 1.51e-06 - }, - { - "word": "handkerchief", - "freq": 1.51e-06 - }, - { - "word": "horticulture", - "freq": 1.51e-06 - }, - { - "word": "huddersfield", - "freq": 1.51e-06 - }, - { - "word": "intermediary", - "freq": 1.51e-06 - }, - { - "word": "interrogated", - "freq": 1.51e-06 - }, - { - "word": "penitentiary", - "freq": 1.51e-06 - }, - { - "word": "pornographic", - "freq": 1.51e-06 - }, - { - "word": "carbohydrate", - "freq": 1.48e-06 - }, - { - "word": "complimented", - "freq": 1.48e-06 - }, - { - "word": "contaminants", - "freq": 1.48e-06 - }, - { - "word": "definitively", - "freq": 1.48e-06 - }, - { - "word": "deregulation", - "freq": 1.48e-06 - }, - { - "word": "domesticated", - "freq": 1.48e-06 - }, - { - "word": "insurrection", - "freq": 1.48e-06 - }, - { - "word": "personalised", - "freq": 1.48e-06 - }, - { - "word": "policymakers", - "freq": 1.48e-06 - }, - { - "word": "screenwriter", - "freq": 1.48e-06 - }, - { - "word": "solicitation", - "freq": 1.48e-06 - }, - { - "word": "accommodated", - "freq": 1.45e-06 - }, - { - "word": "cheerleading", - "freq": 1.45e-06 - }, - { - "word": "collaborator", - "freq": 1.45e-06 - }, - { - "word": "downloadable", - "freq": 1.45e-06 - }, - { - "word": "enhancements", - "freq": 1.45e-06 - }, - { - "word": "ghostbusters", - "freq": 1.45e-06 - }, - { - "word": "invitational", - "freq": 1.45e-06 - }, - { - "word": "michelangelo", - "freq": 1.45e-06 - }, - { - "word": "photoshopped", - "freq": 1.45e-06 - }, - { - "word": "antisemitism", - "freq": 1.41e-06 - }, - { - "word": "entertainers", - "freq": 1.41e-06 - }, - { - "word": "geopolitical", - "freq": 1.41e-06 - }, - { - "word": "installments", - "freq": 1.41e-06 - }, - { - "word": "peacekeeping", - "freq": 1.41e-06 - }, - { - "word": "pharmacology", - "freq": 1.41e-06 - }, - { - "word": "snowboarding", - "freq": 1.41e-06 - }, - { - "word": "unimaginable", - "freq": 1.41e-06 - }, - { - "word": "abbreviation", - "freq": 1.38e-06 - }, - { - "word": "appropriated", - "freq": 1.38e-06 - }, - { - "word": "bodybuilding", - "freq": 1.38e-06 - }, - { - "word": "conductivity", - "freq": 1.38e-06 - }, - { - "word": "contradicted", - "freq": 1.38e-06 - }, - { - "word": "ratification", - "freq": 1.38e-06 - }, - { - "word": "resettlement", - "freq": 1.38e-06 - }, - { - "word": "specialising", - "freq": 1.38e-06 - }, - { - "word": "underwriting", - "freq": 1.38e-06 - }, - { - "word": "unsuspecting", - "freq": 1.38e-06 - }, - { - "word": "affiliations", - "freq": 1.35e-06 - }, - { - "word": "communicates", - "freq": 1.35e-06 - }, - { - "word": "completeness", - "freq": 1.35e-06 - }, - { - "word": "inconclusive", - "freq": 1.35e-06 - }, - { - "word": "inexplicable", - "freq": 1.35e-06 - }, - { - "word": "postdoctoral", - "freq": 1.35e-06 - }, - { - "word": "preposterous", - "freq": 1.35e-06 - }, - { - "word": "preventative", - "freq": 1.35e-06 - }, - { - "word": "straightened", - "freq": 1.35e-06 - }, - { - "word": "surrendering", - "freq": 1.35e-06 - }, - { - "word": "vaccinations", - "freq": 1.35e-06 - }, - { - "word": "advancements", - "freq": 1.32e-06 - }, - { - "word": "cheeseburger", - "freq": 1.32e-06 - }, - { - "word": "condensation", - "freq": 1.32e-06 - }, - { - "word": "constipation", - "freq": 1.32e-06 - }, - { - "word": "consultative", - "freq": 1.32e-06 - }, - { - "word": "degeneration", - "freq": 1.32e-06 - }, - { - "word": "evangelicals", - "freq": 1.32e-06 - }, - { - "word": "exhilarating", - "freq": 1.32e-06 - }, - { - "word": "intoxication", - "freq": 1.32e-06 - }, - { - "word": "subordinates", - "freq": 1.32e-06 - }, - { - "word": "unilaterally", - "freq": 1.32e-06 - }, - { - "word": "chesterfield", - "freq": 1.29e-06 - }, - { - "word": "collectibles", - "freq": 1.29e-06 - }, - { - "word": "conspirators", - "freq": 1.29e-06 - }, - { - "word": "counterpoint", - "freq": 1.29e-06 - }, - { - "word": "subterranean", - "freq": 1.29e-06 - }, - { - "word": "warwickshire", - "freq": 1.29e-06 - }, - { - "word": "convincingly", - "freq": 1.26e-06 - }, - { - "word": "explorations", - "freq": 1.26e-06 - }, - { - "word": "interspersed", - "freq": 1.26e-06 - }, - { - "word": "metaphorical", - "freq": 1.26e-06 - }, - { - "word": "multilateral", - "freq": 1.26e-06 - }, - { - "word": "overreacting", - "freq": 1.26e-06 - }, - { - "word": "refrigerated", - "freq": 1.26e-06 - }, - { - "word": "stockholders", - "freq": 1.26e-06 - }, - { - "word": "unproductive", - "freq": 1.26e-06 - }, - { - "word": "aeronautical", - "freq": 1.23e-06 - }, - { - "word": "apprehension", - "freq": 1.23e-06 - }, - { - "word": "articulation", - "freq": 1.23e-06 - }, - { - "word": "complemented", - "freq": 1.23e-06 - }, - { - "word": "connotations", - "freq": 1.23e-06 - }, - { - "word": "correlations", - "freq": 1.23e-06 - }, - { - "word": "enlightening", - "freq": 1.23e-06 - }, - { - "word": "interpreters", - "freq": 1.23e-06 - }, - { - "word": "mitochondria", - "freq": 1.23e-06 - }, - { - "word": "romantically", - "freq": 1.23e-06 - }, - { - "word": "transitioned", - "freq": 1.23e-06 - }, - { - "word": "transmitters", - "freq": 1.23e-06 - }, - { - "word": "amalgamation", - "freq": 1.2e-06 - }, - { - "word": "conspiracies", - "freq": 1.2e-06 - }, - { - "word": "inspirations", - "freq": 1.2e-06 - }, - { - "word": "meticulously", - "freq": 1.2e-06 - }, - { - "word": "purposefully", - "freq": 1.2e-06 - }, - { - "word": "radiotherapy", - "freq": 1.2e-06 - }, - { - "word": "suspiciously", - "freq": 1.2e-06 - }, - { - "word": "unmistakable", - "freq": 1.2e-06 - }, - { - "word": "battleground", - "freq": 1.17e-06 - }, - { - "word": "emphatically", - "freq": 1.17e-06 - }, - { - "word": "formulations", - "freq": 1.17e-06 - }, - { - "word": "impenetrable", - "freq": 1.17e-06 - }, - { - "word": "pediatrician", - "freq": 1.17e-06 - }, - { - "word": "propositions", - "freq": 1.17e-06 - }, - { - "word": "unscrupulous", - "freq": 1.17e-06 - }, - { - "word": "cooperatives", - "freq": 1.15e-06 - }, - { - "word": "deliberation", - "freq": 1.15e-06 - }, - { - "word": "excruciating", - "freq": 1.15e-06 - }, - { - "word": "foundational", - "freq": 1.15e-06 - }, - { - "word": "hydrocarbons", - "freq": 1.15e-06 - }, - { - "word": "mythological", - "freq": 1.15e-06 - }, - { - "word": "parishioners", - "freq": 1.15e-06 - }, - { - "word": "regenerative", - "freq": 1.15e-06 - }, - { - "word": "repatriation", - "freq": 1.15e-06 - }, - { - "word": "transferable", - "freq": 1.15e-06 - }, - { - "word": "transplanted", - "freq": 1.15e-06 - }, - { - "word": "asymmetrical", - "freq": 1.12e-06 - }, - { - "word": "augmentation", - "freq": 1.12e-06 - }, - { - "word": "confessional", - "freq": 1.12e-06 - }, - { - "word": "heartwarming", - "freq": 1.12e-06 - }, - { - "word": "overcrowding", - "freq": 1.12e-06 - }, - { - "word": "persistently", - "freq": 1.12e-06 - }, - { - "word": "corresponded", - "freq": 1.1e-06 - }, - { - "word": "designations", - "freq": 1.1e-06 - }, - { - "word": "fayetteville", - "freq": 1.1e-06 - }, - { - "word": "genealogical", - "freq": 1.1e-06 - }, - { - "word": "imaginations", - "freq": 1.1e-06 - }, - { - "word": "interpretive", - "freq": 1.1e-06 - }, - { - "word": "urbanization", - "freq": 1.1e-06 - }, - { - "word": "apprehensive", - "freq": 1.07e-06 - }, - { - "word": "marshmallows", - "freq": 1.07e-06 - }, - { - "word": "middleweight", - "freq": 1.07e-06 - }, - { - "word": "multilingual", - "freq": 1.07e-06 - }, - { - "word": "postponement", - "freq": 1.07e-06 - }, - { - "word": "programmable", - "freq": 1.07e-06 - }, - { - "word": "slaughtering", - "freq": 1.07e-06 - }, - { - "word": "substituting", - "freq": 1.07e-06 - }, - { - "word": "unregistered", - "freq": 1.07e-06 - }, - { - "word": "antagonistic", - "freq": 1.05e-06 - }, - { - "word": "embezzlement", - "freq": 1.05e-06 - }, - { - "word": "hypothesized", - "freq": 1.05e-06 - }, - { - "word": "illustrative", - "freq": 1.05e-06 - }, - { - "word": "incandescent", - "freq": 1.05e-06 - }, - { - "word": "photovoltaic", - "freq": 1.05e-06 - }, - { - "word": "successively", - "freq": 1.05e-06 - }, - { - "word": "uninterested", - "freq": 1.05e-06 - }, - { - "word": "degenerative", - "freq": 1.02e-06 - }, - { - "word": "distillation", - "freq": 1.02e-06 - }, - { - "word": "immunization", - "freq": 1.02e-06 - }, - { - "word": "implantation", - "freq": 1.02e-06 - }, - { - "word": "inaccuracies", - "freq": 1.02e-06 - }, - { - "word": "inexplicably", - "freq": 1.02e-06 - }, - { - "word": "intermission", - "freq": 1.02e-06 - }, - { - "word": "progesterone", - "freq": 1.02e-06 - }, - { - "word": "refreshments", - "freq": 1.02e-06 - }, - { - "word": "unauthorised", - "freq": 1.02e-06 - }, - { - "word": "unforgivable", - "freq": 1.02e-06 - }, - { - "word": "commendation", - "freq": 1e-06 - }, - { - "word": "compensating", - "freq": 1e-06 - }, - { - "word": "condominiums", - "freq": 1e-06 - }, - { - "word": "diamondbacks", - "freq": 1e-06 - }, - { - "word": "disorganized", - "freq": 1e-06 - }, - { - "word": "disseminated", - "freq": 1e-06 - }, - { - "word": "faithfulness", - "freq": 1e-06 - }, - { - "word": "infrequently", - "freq": 1e-06 - }, - { - "word": "rehabilitate", - "freq": 1e-06 - }, - { - "word": "undiscovered", - "freq": 1e-06 - }, - { - "word": "grandmothers", - "freq": 9.77e-07 - }, - { - "word": "astrophysics", - "freq": 9.77e-07 - }, - { - "word": "competencies", - "freq": 9.77e-07 - }, - { - "word": "confiscation", - "freq": 9.77e-07 - }, - { - "word": "conscription", - "freq": 9.77e-07 - }, - { - "word": "ethnographic", - "freq": 9.77e-07 - }, - { - "word": "incomparable", - "freq": 9.77e-07 - }, - { - "word": "libertarians", - "freq": 9.77e-07 - }, - { - "word": "navigational", - "freq": 9.77e-07 - }, - { - "word": "osteoporosis", - "freq": 9.77e-07 - }, - { - "word": "perpetuating", - "freq": 9.77e-07 - }, - { - "word": "precipitated", - "freq": 9.77e-07 - }, - { - "word": "relinquished", - "freq": 9.77e-07 - }, - { - "word": "unresponsive", - "freq": 9.77e-07 - }, - { - "word": "corporations", - "freq": 9.55e-07 - }, - { - "word": "chairmanship", - "freq": 9.55e-07 - }, - { - "word": "conclusively", - "freq": 9.55e-07 - }, - { - "word": "electrolytes", - "freq": 9.55e-07 - }, - { - "word": "experiential", - "freq": 9.55e-07 - }, - { - "word": "figuratively", - "freq": 9.55e-07 - }, - { - "word": "interlocking", - "freq": 9.55e-07 - }, - { - "word": "mademoiselle", - "freq": 9.55e-07 - }, - { - "word": "misogynistic", - "freq": 9.55e-07 - }, - { - "word": "mistreatment", - "freq": 9.55e-07 - }, - { - "word": "overpowering", - "freq": 9.55e-07 - }, - { - "word": "rediscovered", - "freq": 9.55e-07 - }, - { - "word": "restructured", - "freq": 9.55e-07 - }, - { - "word": "thoroughbred", - "freq": 9.55e-07 - }, - { - "word": "amortization", - "freq": 9.33e-07 - }, - { - "word": "californians", - "freq": 9.33e-07 - }, - { - "word": "confederates", - "freq": 9.33e-07 - }, - { - "word": "constabulary", - "freq": 9.33e-07 - }, - { - "word": "coordinators", - "freq": 9.33e-07 - }, - { - "word": "entitlements", - "freq": 9.33e-07 - }, - { - "word": "formaldehyde", - "freq": 9.33e-07 - }, - { - "word": "impressively", - "freq": 9.33e-07 - }, - { - "word": "inexperience", - "freq": 9.33e-07 - }, - { - "word": "intoxicating", - "freq": 9.33e-07 - }, - { - "word": "polyethylene", - "freq": 9.33e-07 - }, - { - "word": "recognisable", - "freq": 9.33e-07 - }, - { - "word": "speculations", - "freq": 9.33e-07 - }, - { - "word": "supremacists", - "freq": 9.33e-07 - }, - { - "word": "symbolically", - "freq": 9.33e-07 - }, - { - "word": "thoughtfully", - "freq": 9.33e-07 - }, - { - "word": "coincidences", - "freq": 9.12e-07 - }, - { - "word": "communicator", - "freq": 9.12e-07 - }, - { - "word": "deportations", - "freq": 9.12e-07 - }, - { - "word": "disregarding", - "freq": 9.12e-07 - }, - { - "word": "necessitated", - "freq": 9.12e-07 - }, - { - "word": "practicality", - "freq": 9.12e-07 - }, - { - "word": "spectrometry", - "freq": 9.12e-07 - }, - { - "word": "turkmenistan", - "freq": 9.12e-07 - }, - { - "word": "westinghouse", - "freq": 9.12e-07 - }, - { - "word": "antioxidants", - "freq": 8.91e-07 - }, - { - "word": "coincidental", - "freq": 8.91e-07 - }, - { - "word": "constituting", - "freq": 8.91e-07 - }, - { - "word": "disingenuous", - "freq": 8.91e-07 - }, - { - "word": "enterprising", - "freq": 8.91e-07 - }, - { - "word": "extravaganza", - "freq": 8.91e-07 - }, - { - "word": "invisibility", - "freq": 8.91e-07 - }, - { - "word": "multipurpose", - "freq": 8.91e-07 - }, - { - "word": "transcendent", - "freq": 8.91e-07 - }, - { - "word": "complicating", - "freq": 8.71e-07 - }, - { - "word": "customizable", - "freq": 8.71e-07 - }, - { - "word": "hopelessness", - "freq": 8.71e-07 - }, - { - "word": "hysterically", - "freq": 8.71e-07 - }, - { - "word": "melodramatic", - "freq": 8.71e-07 - }, - { - "word": "premeditated", - "freq": 8.71e-07 - }, - { - "word": "sociologists", - "freq": 8.71e-07 - }, - { - "word": "stereotyping", - "freq": 8.71e-07 - }, - { - "word": "unofficially", - "freq": 8.71e-07 - }, - { - "word": "aerodynamics", - "freq": 8.51e-07 - }, - { - "word": "brainwashing", - "freq": 8.51e-07 - }, - { - "word": "chiropractic", - "freq": 8.51e-07 - }, - { - "word": "controllable", - "freq": 8.51e-07 - }, - { - "word": "disrespected", - "freq": 8.51e-07 - }, - { - "word": "friendliness", - "freq": 8.51e-07 - }, - { - "word": "guardianship", - "freq": 8.51e-07 - }, - { - "word": "multitasking", - "freq": 8.51e-07 - }, - { - "word": "naturalistic", - "freq": 8.51e-07 - }, - { - "word": "sledgehammer", - "freq": 8.51e-07 - }, - { - "word": "subcontinent", - "freq": 8.51e-07 - }, - { - "word": "artistically", - "freq": 8.32e-07 - }, - { - "word": "battlefields", - "freq": 8.32e-07 - }, - { - "word": "compilations", - "freq": 8.32e-07 - }, - { - "word": "conceptually", - "freq": 8.32e-07 - }, - { - "word": "corroborated", - "freq": 8.32e-07 - }, - { - "word": "extinguisher", - "freq": 8.32e-07 - }, - { - "word": "facilitation", - "freq": 8.32e-07 - }, - { - "word": "firefighting", - "freq": 8.32e-07 - }, - { - "word": "governorship", - "freq": 8.32e-07 - }, - { - "word": "incontinence", - "freq": 8.32e-07 - }, - { - "word": "orientations", - "freq": 8.32e-07 - }, - { - "word": "permeability", - "freq": 8.32e-07 - }, - { - "word": "rechargeable", - "freq": 8.32e-07 - }, - { - "word": "sporadically", - "freq": 8.32e-07 - }, - { - "word": "superimposed", - "freq": 8.32e-07 - }, - { - "word": "trajectories", - "freq": 8.32e-07 - }, - { - "word": "transylvania", - "freq": 8.32e-07 - }, - { - "word": "unreasonably", - "freq": 8.32e-07 - }, - { - "word": "unsupervised", - "freq": 8.32e-07 - }, - { - "word": "approachable", - "freq": 8.13e-07 - }, - { - "word": "commemorated", - "freq": 8.13e-07 - }, - { - "word": "cryptography", - "freq": 8.13e-07 - }, - { - "word": "delightfully", - "freq": 8.13e-07 - }, - { - "word": "determinants", - "freq": 8.13e-07 - }, - { - "word": "dispensaries", - "freq": 8.13e-07 - }, - { - "word": "encapsulated", - "freq": 8.13e-07 - }, - { - "word": "eyewitnesses", - "freq": 8.13e-07 - }, - { - "word": "helplessness", - "freq": 8.13e-07 - }, - { - "word": "impartiality", - "freq": 8.13e-07 - }, - { - "word": "outstretched", - "freq": 8.13e-07 - }, - { - "word": "prohibitions", - "freq": 8.13e-07 - }, - { - "word": "relativistic", - "freq": 8.13e-07 - }, - { - "word": "standardised", - "freq": 8.13e-07 - }, - { - "word": "thoroughfare", - "freq": 8.13e-07 - }, - { - "word": "unfathomable", - "freq": 8.13e-07 - }, - { - "word": "unprofitable", - "freq": 8.13e-07 - }, - { - "word": "capitulation", - "freq": 7.94e-07 - }, - { - "word": "cardiologist", - "freq": 7.94e-07 - }, - { - "word": "declassified", - "freq": 7.94e-07 - }, - { - "word": "demonstrator", - "freq": 7.94e-07 - }, - { - "word": "materialized", - "freq": 7.94e-07 - }, - { - "word": "menstruation", - "freq": 7.94e-07 - }, - { - "word": "nutritionist", - "freq": 7.94e-07 - }, - { - "word": "oscillations", - "freq": 7.94e-07 - }, - { - "word": "protectorate", - "freq": 7.94e-07 - }, - { - "word": "psychopathic", - "freq": 7.94e-07 - }, - { - "word": "quarterfinal", - "freq": 7.94e-07 - }, - { - "word": "reconsidered", - "freq": 7.94e-07 - }, - { - "word": "stratosphere", - "freq": 7.94e-07 - }, - { - "word": "testimonials", - "freq": 7.94e-07 - }, - { - "word": "asymptomatic", - "freq": 7.76e-07 - }, - { - "word": "compensatory", - "freq": 7.76e-07 - }, - { - "word": "epistemology", - "freq": 7.76e-07 - }, - { - "word": "fraudulently", - "freq": 7.76e-07 - }, - { - "word": "inefficiency", - "freq": 7.76e-07 - }, - { - "word": "inflationary", - "freq": 7.76e-07 - }, - { - "word": "intersecting", - "freq": 7.76e-07 - }, - { - "word": "machinations", - "freq": 7.76e-07 - }, - { - "word": "reassignment", - "freq": 7.76e-07 - }, - { - "word": "spectrometer", - "freq": 7.76e-07 - }, - { - "word": "sympathizers", - "freq": 7.76e-07 - }, - { - "word": "timberwolves", - "freq": 7.76e-07 - }, - { - "word": "undertakings", - "freq": 7.76e-07 - }, - { - "word": "undetermined", - "freq": 7.76e-07 - }, - { - "word": "westmoreland", - "freq": 7.76e-07 - }, - { - "word": "afterthought", - "freq": 7.59e-07 - }, - { - "word": "asynchronous", - "freq": 7.59e-07 - }, - { - "word": "consecration", - "freq": 7.59e-07 - }, - { - "word": "disintegrate", - "freq": 7.59e-07 - }, - { - "word": "entanglement", - "freq": 7.59e-07 - }, - { - "word": "milliseconds", - "freq": 7.59e-07 - }, - { - "word": "neanderthals", - "freq": 7.59e-07 - }, - { - "word": "prioritizing", - "freq": 7.59e-07 - }, - { - "word": "psychosocial", - "freq": 7.59e-07 - }, - { - "word": "radiological", - "freq": 7.59e-07 - }, - { - "word": "reintroduced", - "freq": 7.59e-07 - }, - { - "word": "subordinated", - "freq": 7.59e-07 - }, - { - "word": "unattainable", - "freq": 7.59e-07 - }, - { - "word": "underpinning", - "freq": 7.59e-07 - }, - { - "word": "attenborough", - "freq": 7.41e-07 - }, - { - "word": "bedfordshire", - "freq": 7.41e-07 - }, - { - "word": "commemorates", - "freq": 7.41e-07 - }, - { - "word": "constructors", - "freq": 7.41e-07 - }, - { - "word": "electrifying", - "freq": 7.41e-07 - }, - { - "word": "infiltrating", - "freq": 7.41e-07 - }, - { - "word": "intensifying", - "freq": 7.41e-07 - }, - { - "word": "marketplaces", - "freq": 7.41e-07 - }, - { - "word": "masquerading", - "freq": 7.41e-07 - }, - { - "word": "meaningfully", - "freq": 7.41e-07 - }, - { - "word": "oceanography", - "freq": 7.41e-07 - }, - { - "word": "partisanship", - "freq": 7.41e-07 - }, - { - "word": "phylogenetic", - "freq": 7.41e-07 - }, - { - "word": "pigmentation", - "freq": 7.41e-07 - }, - { - "word": "posthumously", - "freq": 7.41e-07 - }, - { - "word": "programmatic", - "freq": 7.41e-07 - }, - { - "word": "racketeering", - "freq": 7.41e-07 - }, - { - "word": "sequentially", - "freq": 7.41e-07 - }, - { - "word": "sponsorships", - "freq": 7.41e-07 - }, - { - "word": "statistician", - "freq": 7.41e-07 - }, - { - "word": "turbocharged", - "freq": 7.41e-07 - }, - { - "word": "unchallenged", - "freq": 7.41e-07 - }, - { - "word": "adaptability", - "freq": 7.24e-07 - }, - { - "word": "astonishment", - "freq": 7.24e-07 - }, - { - "word": "bloodthirsty", - "freq": 7.24e-07 - }, - { - "word": "encroachment", - "freq": 7.24e-07 - }, - { - "word": "internalized", - "freq": 7.24e-07 - }, - { - "word": "lighthearted", - "freq": 7.24e-07 - }, - { - "word": "loughborough", - "freq": 7.24e-07 - }, - { - "word": "multivariate", - "freq": 7.24e-07 - }, - { - "word": "preconceived", - "freq": 7.24e-07 - }, - { - "word": "presumptuous", - "freq": 7.24e-07 - }, - { - "word": "spreadsheets", - "freq": 7.24e-07 - }, - { - "word": "streamlining", - "freq": 7.24e-07 - }, - { - "word": "welterweight", - "freq": 7.24e-07 - }, - { - "word": "accomplishes", - "freq": 7.08e-07 - }, - { - "word": "articulating", - "freq": 7.08e-07 - }, - { - "word": "chiropractor", - "freq": 7.08e-07 - }, - { - "word": "conformation", - "freq": 7.08e-07 - }, - { - "word": "conveniences", - "freq": 7.08e-07 - }, - { - "word": "dispensation", - "freq": 7.08e-07 - }, - { - "word": "exploitative", - "freq": 7.08e-07 - }, - { - "word": "immeasurable", - "freq": 7.08e-07 - }, - { - "word": "indisputable", - "freq": 7.08e-07 - }, - { - "word": "overthinking", - "freq": 7.08e-07 - }, - { - "word": "undemocratic", - "freq": 7.08e-07 - }, - { - "word": "unrecognized", - "freq": 7.08e-07 - }, - { - "word": "amphitheatre", - "freq": 6.92e-07 - }, - { - "word": "biosynthesis", - "freq": 6.92e-07 - }, - { - "word": "dissociation", - "freq": 6.92e-07 - }, - { - "word": "eccentricity", - "freq": 6.92e-07 - }, - { - "word": "electricians", - "freq": 6.92e-07 - }, - { - "word": "electrocuted", - "freq": 6.92e-07 - }, - { - "word": "fraternities", - "freq": 6.92e-07 - }, - { - "word": "islamophobia", - "freq": 6.92e-07 - }, - { - "word": "kaleidoscope", - "freq": 6.92e-07 - }, - { - "word": "neurosurgery", - "freq": 6.92e-07 - }, - { - "word": "otherworldly", - "freq": 6.92e-07 - }, - { - "word": "repositories", - "freq": 6.92e-07 - }, - { - "word": "subjectivity", - "freq": 6.92e-07 - }, - { - "word": "underwriters", - "freq": 6.92e-07 - }, - { - "word": "carelessness", - "freq": 6.76e-07 - }, - { - "word": "commensurate", - "freq": 6.76e-07 - }, - { - "word": "incarnations", - "freq": 6.76e-07 - }, - { - "word": "indefensible", - "freq": 6.76e-07 - }, - { - "word": "inextricably", - "freq": 6.76e-07 - }, - { - "word": "insecticides", - "freq": 6.76e-07 - }, - { - "word": "overestimate", - "freq": 6.76e-07 - }, - { - "word": "peacekeepers", - "freq": 6.76e-07 - }, - { - "word": "psychoactive", - "freq": 6.76e-07 - }, - { - "word": "stubbornness", - "freq": 6.76e-07 - }, - { - "word": "subcutaneous", - "freq": 6.76e-07 - }, - { - "word": "substantiate", - "freq": 6.76e-07 - }, - { - "word": "technicality", - "freq": 6.76e-07 - }, - { - "word": "thunderbirds", - "freq": 6.76e-07 - }, - { - "word": "tribulations", - "freq": 6.76e-07 - }, - { - "word": "undetectable", - "freq": 6.76e-07 - }, - { - "word": "unremarkable", - "freq": 6.76e-07 - }, - { - "word": "grandfathers", - "freq": 6.61e-07 - }, - { - "word": "accommodates", - "freq": 6.61e-07 - }, - { - "word": "amphetamines", - "freq": 6.61e-07 - }, - { - "word": "fibrillation", - "freq": 6.61e-07 - }, - { - "word": "multimillion", - "freq": 6.61e-07 - }, - { - "word": "reincarnated", - "freq": 6.61e-07 - }, - { - "word": "resignations", - "freq": 6.61e-07 - }, - { - "word": "supercharged", - "freq": 6.61e-07 - }, - { - "word": "workstations", - "freq": 6.61e-07 - }, - { - "word": "australasian", - "freq": 6.46e-07 - }, - { - "word": "disinfectant", - "freq": 6.46e-07 - }, - { - "word": "exterminated", - "freq": 6.46e-07 - }, - { - "word": "extravagance", - "freq": 6.46e-07 - }, - { - "word": "imperfection", - "freq": 6.46e-07 - }, - { - "word": "paratroopers", - "freq": 6.46e-07 - }, - { - "word": "partitioning", - "freq": 6.46e-07 - }, - { - "word": "pathogenesis", - "freq": 6.46e-07 - }, - { - "word": "redesignated", - "freq": 6.46e-07 - }, - { - "word": "transporters", - "freq": 6.46e-07 - }, - { - "word": "amphitheater", - "freq": 6.31e-07 - }, - { - "word": "bicentennial", - "freq": 6.31e-07 - }, - { - "word": "blackberries", - "freq": 6.31e-07 - }, - { - "word": "capitalizing", - "freq": 6.31e-07 - }, - { - "word": "communicable", - "freq": 6.31e-07 - }, - { - "word": "computations", - "freq": 6.31e-07 - }, - { - "word": "cosmological", - "freq": 6.31e-07 - }, - { - "word": "ecologically", - "freq": 6.31e-07 - }, - { - "word": "foreclosures", - "freq": 6.31e-07 - }, - { - "word": "intercepting", - "freq": 6.31e-07 - }, - { - "word": "malnourished", - "freq": 6.31e-07 - }, - { - "word": "miscarriages", - "freq": 6.31e-07 - }, - { - "word": "multifaceted", - "freq": 6.31e-07 - }, - { - "word": "multiplicity", - "freq": 6.31e-07 - }, - { - "word": "neurosurgeon", - "freq": 6.31e-07 - }, - { - "word": "outrageously", - "freq": 6.31e-07 - }, - { - "word": "paraphrasing", - "freq": 6.31e-07 - }, - { - "word": "restlessness", - "freq": 6.31e-07 - }, - { - "word": "togetherness", - "freq": 6.31e-07 - }, - { - "word": "carcinogenic", - "freq": 6.17e-07 - }, - { - "word": "conditioners", - "freq": 6.17e-07 - }, - { - "word": "desalination", - "freq": 6.17e-07 - }, - { - "word": "illustrators", - "freq": 6.17e-07 - }, - { - "word": "insufferable", - "freq": 6.17e-07 - }, - { - "word": "loudspeakers", - "freq": 6.17e-07 - }, - { - "word": "magnificence", - "freq": 6.17e-07 - }, - { - "word": "malfunctions", - "freq": 6.17e-07 - }, - { - "word": "neoclassical", - "freq": 6.17e-07 - }, - { - "word": "paleontology", - "freq": 6.17e-07 - }, - { - "word": "permutations", - "freq": 6.17e-07 - }, - { - "word": "preservative", - "freq": 6.17e-07 - }, - { - "word": "rejuvenation", - "freq": 6.17e-07 - }, - { - "word": "technologist", - "freq": 6.17e-07 - }, - { - "word": "transfusions", - "freq": 6.17e-07 - }, - { - "word": "unapologetic", - "freq": 6.17e-07 - }, - { - "word": "unclassified", - "freq": 6.17e-07 - }, - { - "word": "unfavourable", - "freq": 6.17e-07 - }, - { - "word": "affirmations", - "freq": 6.03e-07 - }, - { - "word": "bullshitting", - "freq": 6.03e-07 - }, - { - "word": "demonstrably", - "freq": 6.03e-07 - }, - { - "word": "encephalitis", - "freq": 6.03e-07 - }, - { - "word": "grasshoppers", - "freq": 6.03e-07 - }, - { - "word": "gynecologist", - "freq": 6.03e-07 - }, - { - "word": "inspectorate", - "freq": 6.03e-07 - }, - { - "word": "interstitial", - "freq": 6.03e-07 - }, - { - "word": "mountaineers", - "freq": 6.03e-07 - }, - { - "word": "obstructions", - "freq": 6.03e-07 - }, - { - "word": "outperformed", - "freq": 6.03e-07 - }, - { - "word": "principality", - "freq": 6.03e-07 - }, - { - "word": "recklessness", - "freq": 6.03e-07 - }, - { - "word": "regenerating", - "freq": 6.03e-07 - }, - { - "word": "restorations", - "freq": 6.03e-07 - }, - { - "word": "stepdaughter", - "freq": 6.03e-07 - }, - { - "word": "accelerators", - "freq": 5.89e-07 - }, - { - "word": "agribusiness", - "freq": 5.89e-07 - }, - { - "word": "astrological", - "freq": 5.89e-07 - }, - { - "word": "bankruptcies", - "freq": 5.89e-07 - }, - { - "word": "catastrophes", - "freq": 5.89e-07 - }, - { - "word": "inadmissible", - "freq": 5.89e-07 - }, - { - "word": "insemination", - "freq": 5.89e-07 - }, - { - "word": "intelligible", - "freq": 5.89e-07 - }, - { - "word": "methodically", - "freq": 5.89e-07 - }, - { - "word": "overreaction", - "freq": 5.89e-07 - }, - { - "word": "pathologists", - "freq": 5.89e-07 - }, - { - "word": "prescriptive", - "freq": 5.89e-07 - }, - { - "word": "redistribute", - "freq": 5.89e-07 - }, - { - "word": "southernmost", - "freq": 5.89e-07 - }, - { - "word": "stipulations", - "freq": 5.89e-07 - }, - { - "word": "wittgenstein", - "freq": 5.89e-07 - } - ], - "14": [ - { - "word": "administration", - "freq": 8.51e-05 - }, - { - "word": "responsibility", - "freq": 5.62e-05 - }, - { - "word": "communications", - "freq": 3.89e-05 - }, - { - "word": "representative", - "freq": 3.72e-05 - }, - { - "word": "transportation", - "freq": 3.72e-05 - }, - { - "word": "infrastructure", - "freq": 2.88e-05 - }, - { - "word": "administrative", - "freq": 2.82e-05 - }, - { - "word": "representation", - "freq": 2.19e-05 - }, - { - "word": "constitutional", - "freq": 2.14e-05 - }, - { - "word": "discrimination", - "freq": 2.04e-05 - }, - { - "word": "implementation", - "freq": 2.04e-05 - }, - { - "word": "interpretation", - "freq": 1.66e-05 - }, - { - "word": "transformation", - "freq": 1.62e-05 - }, - { - "word": "classification", - "freq": 1.51e-05 - }, - { - "word": "identification", - "freq": 1.51e-05 - }, - { - "word": "simultaneously", - "freq": 1.48e-05 - }, - { - "word": "recommendation", - "freq": 1.23e-05 - }, - { - "word": "disappointment", - "freq": 1.02e-05 - }, - { - "word": "rehabilitation", - "freq": 9.77e-06 - }, - { - "word": "characteristic", - "freq": 9.33e-06 - }, - { - "word": "superintendent", - "freq": 9.33e-06 - }, - { - "word": "reconstruction", - "freq": 9.12e-06 - }, - { - "word": "specifications", - "freq": 8.91e-06 - }, - { - "word": "accountability", - "freq": 8.13e-06 - }, - { - "word": "pharmaceutical", - "freq": 7.94e-06 - }, - { - "word": "qualifications", - "freq": 7.59e-06 - }, - { - "word": "correspondence", - "freq": 7.08e-06 - }, - { - "word": "organizational", - "freq": 6.76e-06 - }, - { - "word": "demonstrations", - "freq": 6.03e-06 - }, - { - "word": "sustainability", - "freq": 5.89e-06 - }, - { - "word": "concentrations", - "freq": 5.75e-06 - }, - { - "word": "professionally", - "freq": 5.75e-06 - }, - { - "word": "advertisements", - "freq": 5.62e-06 - }, - { - "word": "considerations", - "freq": 5.5e-06 - }, - { - "word": "understandable", - "freq": 5.5e-06 - }, - { - "word": "reconciliation", - "freq": 5.25e-06 - }, - { - "word": "accomplishment", - "freq": 4.9e-06 - }, - { - "word": "archaeological", - "freq": 4.79e-06 - }, - { - "word": "cardiovascular", - "freq": 4.79e-06 - }, - { - "word": "municipalities", - "freq": 4.37e-06 - }, - { - "word": "aforementioned", - "freq": 3.47e-06 - }, - { - "word": "overwhelmingly", - "freq": 3.47e-06 - }, - { - "word": "systematically", - "freq": 3.31e-06 - }, - { - "word": "ecclesiastical", - "freq": 3.09e-06 - }, - { - "word": "accommodations", - "freq": 3.02e-06 - }, - { - "word": "reinforcements", - "freq": 3.02e-06 - }, - { - "word": "apprenticeship", - "freq": 2.95e-06 - }, - { - "word": "discriminatory", - "freq": 2.88e-06 - }, - { - "word": "groundbreaking", - "freq": 2.88e-06 - }, - { - "word": "configurations", - "freq": 2.82e-06 - }, - { - "word": "reconnaissance", - "freq": 2.82e-06 - }, - { - "word": "scientifically", - "freq": 2.82e-06 - }, - { - "word": "unconventional", - "freq": 2.63e-06 - }, - { - "word": "contemporaries", - "freq": 2.51e-06 - }, - { - "word": "meteorological", - "freq": 2.45e-06 - }, - { - "word": "underestimated", - "freq": 2.45e-06 - }, - { - "word": "constantinople", - "freq": 2.4e-06 - }, - { - "word": "czechoslovakia", - "freq": 2.4e-06 - }, - { - "word": "archaeologists", - "freq": 2.34e-06 - }, - { - "word": "appropriations", - "freq": 2.29e-06 - }, - { - "word": "understatement", - "freq": 2.29e-06 - }, - { - "word": "authentication", - "freq": 2.24e-06 - }, - { - "word": "distinguishing", - "freq": 2.24e-06 - }, - { - "word": "geographically", - "freq": 2.24e-06 - }, - { - "word": "intellectually", - "freq": 2.19e-06 - }, - { - "word": "reorganization", - "freq": 2.14e-06 - }, - { - "word": "collaborations", - "freq": 2.09e-06 - }, - { - "word": "constituencies", - "freq": 2.04e-06 - }, - { - "word": "irregularities", - "freq": 2.04e-06 - }, - { - "word": "cryptocurrency", - "freq": 2e-06 - }, - { - "word": "certifications", - "freq": 1.95e-06 - }, - { - "word": "differentiated", - "freq": 1.95e-06 - }, - { - "word": "specialization", - "freq": 1.95e-06 - }, - { - "word": "contradictions", - "freq": 1.91e-06 - }, - { - "word": "electronically", - "freq": 1.91e-06 - }, - { - "word": "hallucinations", - "freq": 1.91e-06 - }, - { - "word": "unsuccessfully", - "freq": 1.91e-06 - }, - { - "word": "misinformation", - "freq": 1.86e-06 - }, - { - "word": "northumberland", - "freq": 1.86e-06 - }, - { - "word": "redistribution", - "freq": 1.86e-06 - }, - { - "word": "sophistication", - "freq": 1.86e-06 - }, - { - "word": "multiplication", - "freq": 1.82e-06 - }, - { - "word": "understandably", - "freq": 1.82e-06 - }, - { - "word": "unprofessional", - "freq": 1.82e-06 - }, - { - "word": "attractiveness", - "freq": 1.78e-06 - }, - { - "word": "interconnected", - "freq": 1.78e-06 - }, - { - "word": "cinematography", - "freq": 1.74e-06 - }, - { - "word": "coincidentally", - "freq": 1.74e-06 - }, - { - "word": "manifestations", - "freq": 1.66e-06 - }, - { - "word": "generalization", - "freq": 1.62e-06 - }, - { - "word": "organisational", - "freq": 1.58e-06 - }, - { - "word": "unquestionably", - "freq": 1.55e-06 - }, - { - "word": "mathematically", - "freq": 1.51e-06 - }, - { - "word": "anthropologist", - "freq": 1.45e-06 - }, - { - "word": "fundamentalist", - "freq": 1.45e-06 - }, - { - "word": "misconceptions", - "freq": 1.45e-06 - }, - { - "word": "uncontrollable", - "freq": 1.45e-06 - }, - { - "word": "wholeheartedly", - "freq": 1.41e-06 - }, - { - "word": "circumstantial", - "freq": 1.38e-06 - }, - { - "word": "discriminating", - "freq": 1.38e-06 - }, - { - "word": "transformative", - "freq": 1.38e-06 - }, - { - "word": "undergraduates", - "freq": 1.38e-06 - }, - { - "word": "mathematicians", - "freq": 1.35e-06 - }, - { - "word": "microorganisms", - "freq": 1.35e-06 - }, - { - "word": "schwarzenegger", - "freq": 1.35e-06 - }, - { - "word": "capitalization", - "freq": 1.32e-06 - }, - { - "word": "democratically", - "freq": 1.32e-06 - }, - { - "word": "industrialized", - "freq": 1.32e-06 - }, - { - "word": "philanthropist", - "freq": 1.32e-06 - }, - { - "word": "acknowledgment", - "freq": 1.29e-06 - }, - { - "word": "affectionately", - "freq": 1.29e-06 - }, - { - "word": "conversational", - "freq": 1.29e-06 - }, - { - "word": "susceptibility", - "freq": 1.26e-06 - }, - { - "word": "thermodynamics", - "freq": 1.26e-06 - }, - { - "word": "cambridgeshire", - "freq": 1.23e-06 - }, - { - "word": "psychoanalysis", - "freq": 1.2e-06 - }, - { - "word": "uncompromising", - "freq": 1.2e-06 - }, - { - "word": "worcestershire", - "freq": 1.2e-06 - }, - { - "word": "conventionally", - "freq": 1.17e-06 - }, - { - "word": "fortifications", - "freq": 1.17e-06 - }, - { - "word": "congregational", - "freq": 1.15e-06 - }, - { - "word": "indestructible", - "freq": 1.15e-06 - }, - { - "word": "leicestershire", - "freq": 1.15e-06 - }, - { - "word": "individualized", - "freq": 1.12e-06 - }, - { - "word": "intermittently", - "freq": 1.12e-06 - }, - { - "word": "unsatisfactory", - "freq": 1.12e-06 - }, - { - "word": "responsiveness", - "freq": 1.1e-06 - }, - { - "word": "alphabetically", - "freq": 1.07e-06 - }, - { - "word": "gentrification", - "freq": 1.07e-06 - }, - { - "word": "insurmountable", - "freq": 1.07e-06 - }, - { - "word": "methodological", - "freq": 1.07e-06 - }, - { - "word": "misinterpreted", - "freq": 1.07e-06 - }, - { - "word": "photosynthesis", - "freq": 1.07e-06 - }, - { - "word": "questionnaires", - "freq": 1.07e-06 - }, - { - "word": "quintessential", - "freq": 1.07e-06 - }, - { - "word": "contraceptives", - "freq": 1.05e-06 - }, - { - "word": "disintegration", - "freq": 1.05e-06 - }, - { - "word": "nanotechnology", - "freq": 1.05e-06 - }, - { - "word": "experimentally", - "freq": 1.02e-06 - }, - { - "word": "superannuation", - "freq": 1.02e-06 - }, - { - "word": "unsurprisingly", - "freq": 1.02e-06 - }, - { - "word": "congratulating", - "freq": 1e-06 - }, - { - "word": "indiscriminate", - "freq": 1e-06 - }, - { - "word": "transcendental", - "freq": 1e-06 - }, - { - "word": "assassinations", - "freq": 9.77e-07 - }, - { - "word": "underdeveloped", - "freq": 9.77e-07 - }, - { - "word": "constellations", - "freq": 9.55e-07 - }, - { - "word": "simplification", - "freq": 9.55e-07 - }, - { - "word": "uncontrollably", - "freq": 9.55e-07 - }, - { - "word": "unincorporated", - "freq": 9.55e-07 - }, - { - "word": "confrontations", - "freq": 9.12e-07 - }, - { - "word": "disinformation", - "freq": 9.12e-07 - }, - { - "word": "intermediaries", - "freq": 9.12e-07 - }, - { - "word": "metaphorically", - "freq": 9.12e-07 - }, - { - "word": "misrepresented", - "freq": 9.12e-07 - }, - { - "word": "understandings", - "freq": 9.12e-07 - }, - { - "word": "chromatography", - "freq": 8.91e-07 - }, - { - "word": "malfunctioning", - "freq": 8.71e-07 - }, - { - "word": "proportionally", - "freq": 8.71e-07 - }, - { - "word": "slaughterhouse", - "freq": 8.71e-07 - }, - { - "word": "subconsciously", - "freq": 8.71e-07 - }, - { - "word": "antidepressant", - "freq": 8.51e-07 - }, - { - "word": "denominational", - "freq": 8.51e-07 - }, - { - "word": "hypothetically", - "freq": 8.51e-07 - }, - { - "word": "schoolchildren", - "freq": 8.51e-07 - }, - { - "word": "semiconductors", - "freq": 8.51e-07 - }, - { - "word": "fundamentalism", - "freq": 8.32e-07 - }, - { - "word": "microprocessor", - "freq": 8.32e-07 - }, - { - "word": "transgressions", - "freq": 8.32e-07 - }, - { - "word": "indoctrination", - "freq": 7.94e-07 - }, - { - "word": "subcontractors", - "freq": 7.94e-07 - }, - { - "word": "industrialists", - "freq": 7.76e-07 - }, - { - "word": "internationale", - "freq": 7.76e-07 - }, - { - "word": "justifications", - "freq": 7.76e-07 - }, - { - "word": "naturalization", - "freq": 7.76e-07 - }, - { - "word": "revitalization", - "freq": 7.76e-07 - }, - { - "word": "superstructure", - "freq": 7.76e-07 - }, - { - "word": "reorganisation", - "freq": 7.59e-07 - }, - { - "word": "whistleblowers", - "freq": 7.41e-07 - }, - { - "word": "aggressiveness", - "freq": 7.24e-07 - }, - { - "word": "characterizing", - "freq": 7.24e-07 - }, - { - "word": "deconstruction", - "freq": 7.24e-07 - }, - { - "word": "revolutionized", - "freq": 7.24e-07 - }, - { - "word": "claustrophobic", - "freq": 7.08e-07 - }, - { - "word": "impressionable", - "freq": 7.08e-07 - }, - { - "word": "polymerization", - "freq": 7.08e-07 - }, - { - "word": "predictability", - "freq": 7.08e-07 - }, - { - "word": "reconstructive", - "freq": 7.08e-07 - }, - { - "word": "fredericksburg", - "freq": 6.92e-07 - }, - { - "word": "liberalization", - "freq": 6.92e-07 - }, - { - "word": "mountaineering", - "freq": 6.92e-07 - }, - { - "word": "quantification", - "freq": 6.92e-07 - }, - { - "word": "counterfeiting", - "freq": 6.76e-07 - }, - { - "word": "satisfactorily", - "freq": 6.76e-07 - }, - { - "word": "bioinformatics", - "freq": 6.61e-07 - }, - { - "word": "categorization", - "freq": 6.61e-07 - }, - { - "word": "conservatively", - "freq": 6.61e-07 - }, - { - "word": "disappearances", - "freq": 6.61e-07 - }, - { - "word": "historiography", - "freq": 6.61e-07 - }, - { - "word": "interplanetary", - "freq": 6.61e-07 - }, - { - "word": "predisposition", - "freq": 6.61e-07 - }, - { - "word": "psychoanalytic", - "freq": 6.61e-07 - }, - { - "word": "respectability", - "freq": 6.61e-07 - }, - { - "word": "undersecretary", - "freq": 6.61e-07 - }, - { - "word": "unintelligible", - "freq": 6.61e-07 - }, - { - "word": "decommissioned", - "freq": 6.46e-07 - }, - { - "word": "differentiates", - "freq": 6.46e-07 - }, - { - "word": "excommunicated", - "freq": 6.46e-07 - }, - { - "word": "pronouncements", - "freq": 6.46e-07 - }, - { - "word": "sentimentality", - "freq": 6.46e-07 - }, - { - "word": "determinations", - "freq": 6.17e-07 - }, - { - "word": "interrogations", - "freq": 6.17e-07 - }, - { - "word": "reconstructing", - "freq": 6.17e-07 - }, - { - "word": "constructively", - "freq": 6.03e-07 - }, - { - "word": "virtualization", - "freq": 6.03e-07 - }, - { - "word": "embarrassingly", - "freq": 5.89e-07 - }, - { - "word": "jurisdictional", - "freq": 5.89e-07 - }, - { - "word": "insufficiently", - "freq": 5.75e-07 - }, - { - "word": "osteoarthritis", - "freq": 5.75e-07 - }, - { - "word": "stratification", - "freq": 5.75e-07 - }, - { - "word": "unconscionable", - "freq": 5.75e-07 - }, - { - "word": "unrecognizable", - "freq": 5.75e-07 - }, - { - "word": "multinationals", - "freq": 5.62e-07 - }, - { - "word": "traditionalist", - "freq": 5.62e-07 - }, - { - "word": "counterbalance", - "freq": 5.5e-07 - }, - { - "word": "gerrymandering", - "freq": 5.5e-07 - }, - { - "word": "congratulation", - "freq": 5.37e-07 - }, - { - "word": "congratulatory", - "freq": 5.37e-07 - }, - { - "word": "disintegrating", - "freq": 5.25e-07 - }, - { - "word": "approximations", - "freq": 5.13e-07 - }, - { - "word": "comprehensible", - "freq": 5.13e-07 - }, - { - "word": "inconveniences", - "freq": 5.13e-07 - }, - { - "word": "inefficiencies", - "freq": 5.13e-07 - }, - { - "word": "overpopulation", - "freq": 5.13e-07 - }, - { - "word": "preconceptions", - "freq": 5.13e-07 - }, - { - "word": "reintroduction", - "freq": 5.13e-07 - }, - { - "word": "technicalities", - "freq": 5.13e-07 - }, - { - "word": "confederations", - "freq": 5.01e-07 - }, - { - "word": "intelligentsia", - "freq": 5.01e-07 - }, - { - "word": "neuroscientist", - "freq": 5.01e-07 - }, - { - "word": "roethlisberger", - "freq": 5.01e-07 - }, - { - "word": "centralization", - "freq": 4.9e-07 - }, - { - "word": "disorientation", - "freq": 4.9e-07 - }, - { - "word": "linguistically", - "freq": 4.9e-07 - }, - { - "word": "hypothyroidism", - "freq": 4.79e-07 - }, - { - "word": "irreconcilable", - "freq": 4.79e-07 - }, - { - "word": "liberalisation", - "freq": 4.79e-07 - }, - { - "word": "macroeconomics", - "freq": 4.79e-07 - }, - { - "word": "internationals", - "freq": 4.68e-07 - }, - { - "word": "encephalopathy", - "freq": 4.68e-07 - }, - { - "word": "cardiomyopathy", - "freq": 4.57e-07 - }, - { - "word": "exceptionalism", - "freq": 4.57e-07 - }, - { - "word": "industrialised", - "freq": 4.57e-07 - }, - { - "word": "overprotective", - "freq": 4.57e-07 - }, - { - "word": "extraordinaire", - "freq": 4.47e-07 - }, - { - "word": "immunoglobulin", - "freq": 4.47e-07 - }, - { - "word": "preferentially", - "freq": 4.47e-07 - }, - { - "word": "staphylococcus", - "freq": 4.47e-07 - }, - { - "word": "commercialized", - "freq": 4.37e-07 - }, - { - "word": "conceptualized", - "freq": 4.37e-07 - }, - { - "word": "fingerprinting", - "freq": 4.37e-07 - }, - { - "word": "interdependent", - "freq": 4.37e-07 - }, - { - "word": "radicalization", - "freq": 4.37e-07 - }, - { - "word": "photosynthetic", - "freq": 4.27e-07 - }, - { - "word": "quantitatively", - "freq": 4.27e-07 - }, - { - "word": "singlehandedly", - "freq": 4.27e-07 - }, - { - "word": "astrophysicist", - "freq": 4.17e-07 - }, - { - "word": "libertarianism", - "freq": 4.17e-07 - }, - { - "word": "meteorologists", - "freq": 4.17e-07 - }, - { - "word": "schweinsteiger", - "freq": 4.17e-07 - }, - { - "word": "unquestionable", - "freq": 4.17e-07 - }, - { - "word": "antiretroviral", - "freq": 4.07e-07 - }, - { - "word": "businesspeople", - "freq": 4.07e-07 - }, - { - "word": "commemorations", - "freq": 4.07e-07 - }, - { - "word": "confidentially", - "freq": 4.07e-07 - }, - { - "word": "miscalculation", - "freq": 4.07e-07 - }, - { - "word": "norepinephrine", - "freq": 4.07e-07 - }, - { - "word": "rehabilitating", - "freq": 4.07e-07 - }, - { - "word": "bibliographies", - "freq": 3.98e-07 - }, - { - "word": "hallucinogenic", - "freq": 3.98e-07 - }, - { - "word": "inconvenienced", - "freq": 3.98e-07 - }, - { - "word": "nontraditional", - "freq": 3.98e-07 - }, - { - "word": "embellishments", - "freq": 3.89e-07 - }, - { - "word": "existentialism", - "freq": 3.89e-07 - }, - { - "word": "principalities", - "freq": 3.89e-07 - }, - { - "word": "reimbursements", - "freq": 3.89e-07 - }, - { - "word": "choreographers", - "freq": 3.8e-07 - }, - { - "word": "counterculture", - "freq": 3.8e-07 - }, - { - "word": "detoxification", - "freq": 3.8e-07 - }, - { - "word": "diplomatically", - "freq": 3.8e-07 - }, - { - "word": "prioritization", - "freq": 3.8e-07 - }, - { - "word": "specialisation", - "freq": 3.8e-07 - }, - { - "word": "transcriptions", - "freq": 3.8e-07 - }, - { - "word": "militarization", - "freq": 3.72e-07 - }, - { - "word": "claustrophobia", - "freq": 3.63e-07 - }, - { - "word": "conspiratorial", - "freq": 3.63e-07 - }, - { - "word": "hyperinflation", - "freq": 3.63e-07 - }, - { - "word": "idiosyncrasies", - "freq": 3.63e-07 - }, - { - "word": "initialization", - "freq": 3.63e-07 - }, - { - "word": "ridiculousness", - "freq": 3.63e-07 - }, - { - "word": "sanctification", - "freq": 3.63e-07 - }, - { - "word": "bioengineering", - "freq": 3.55e-07 - }, - { - "word": "clarifications", - "freq": 3.55e-07 - }, - { - "word": "thoughtfulness", - "freq": 3.55e-07 - }, - { - "word": "petrochemicals", - "freq": 3.47e-07 - }, - { - "word": "unavailability", - "freq": 3.47e-07 - }, - { - "word": "differentially", - "freq": 3.39e-07 - }, - { - "word": "discouragement", - "freq": 3.39e-07 - }, - { - "word": "interventional", - "freq": 3.39e-07 - }, - { - "word": "longitudinally", - "freq": 3.39e-07 - }, - { - "word": "multiplicative", - "freq": 3.39e-07 - }, - { - "word": "reasonableness", - "freq": 3.39e-07 - }, - { - "word": "underestimates", - "freq": 3.39e-07 - }, - { - "word": "beautification", - "freq": 3.31e-07 - }, - { - "word": "deconstructing", - "freq": 3.31e-07 - }, - { - "word": "egalitarianism", - "freq": 3.31e-07 - }, - { - "word": "paleontologist", - "freq": 3.31e-07 - }, - { - "word": "sensationalism", - "freq": 3.31e-07 - }, - { - "word": "unpleasantness", - "freq": 3.31e-07 - }, - { - "word": "anesthesiology", - "freq": 3.24e-07 - }, - { - "word": "intersectional", - "freq": 3.24e-07 - }, - { - "word": "predestination", - "freq": 3.24e-07 - }, - { - "word": "underperformed", - "freq": 3.24e-07 - }, - { - "word": "utilitarianism", - "freq": 3.24e-07 - }, - { - "word": "arrondissement", - "freq": 3.16e-07 - }, - { - "word": "interferometer", - "freq": 3.16e-07 - }, - { - "word": "postmenopausal", - "freq": 3.16e-07 - }, - { - "word": "pronunciations", - "freq": 3.16e-07 - }, - { - "word": "breathtakingly", - "freq": 3.09e-07 - }, - { - "word": "epidemiologist", - "freq": 3.09e-07 - }, - { - "word": "microstructure", - "freq": 3.09e-07 - }, - { - "word": "mineralization", - "freq": 3.09e-07 - }, - { - "word": "nebuchadnezzar", - "freq": 3.09e-07 - }, - { - "word": "antihistamines", - "freq": 3.02e-07 - }, - { - "word": "authorizations", - "freq": 3.02e-07 - }, - { - "word": "conformational", - "freq": 3.02e-07 - }, - { - "word": "eccentricities", - "freq": 3.02e-07 - }, - { - "word": "phosphorylated", - "freq": 3.02e-07 - }, - { - "word": "sociopolitical", - "freq": 3.02e-07 - }, - { - "word": "supercomputers", - "freq": 3.02e-07 - }, - { - "word": "adenocarcinoma", - "freq": 2.95e-07 - }, - { - "word": "capitalisation", - "freq": 2.95e-07 - }, - { - "word": "generalisation", - "freq": 2.95e-07 - }, - { - "word": "insignificance", - "freq": 2.95e-07 - }, - { - "word": "thermoelectric", - "freq": 2.95e-07 - }, - { - "word": "constructivist", - "freq": 2.88e-07 - }, - { - "word": "dermatologists", - "freq": 2.88e-07 - }, - { - "word": "disenchantment", - "freq": 2.88e-07 - }, - { - "word": "evangelization", - "freq": 2.88e-07 - }, - { - "word": "excruciatingly", - "freq": 2.88e-07 - }, - { - "word": "hypersensitive", - "freq": 2.88e-07 - }, - { - "word": "paramilitaries", - "freq": 2.88e-07 - }, - { - "word": "sensationalist", - "freq": 2.88e-07 - }, - { - "word": "telepathically", - "freq": 2.88e-07 - }, - { - "word": "optimistically", - "freq": 2.75e-07 - }, - { - "word": "benzodiazepine", - "freq": 2.69e-07 - }, - { - "word": "decolonization", - "freq": 2.69e-07 - }, - { - "word": "weightlessness", - "freq": 2.69e-07 - }, - { - "word": "entertainments", - "freq": 2.63e-07 - }, - { - "word": "antipsychotics", - "freq": 2.63e-07 - }, - { - "word": "corticosteroid", - "freq": 2.63e-07 - }, - { - "word": "impressionists", - "freq": 2.63e-07 - }, - { - "word": "inconsistently", - "freq": 2.63e-07 - }, - { - "word": "interpretative", - "freq": 2.63e-07 - }, - { - "word": "preoccupations", - "freq": 2.63e-07 - }, - { - "word": "dimensionality", - "freq": 2.57e-07 - }, - { - "word": "overexpression", - "freq": 2.57e-07 - }, - { - "word": "scientologists", - "freq": 2.57e-07 - }, - { - "word": "visualizations", - "freq": 2.57e-07 - }, - { - "word": "microbiologist", - "freq": 2.51e-07 - }, - { - "word": "rehabilitative", - "freq": 2.51e-07 - }, - { - "word": "superconductor", - "freq": 2.51e-07 - }, - { - "word": "unidirectional", - "freq": 2.51e-07 - }, - { - "word": "countermeasure", - "freq": 2.45e-07 - }, - { - "word": "disciplinarian", - "freq": 2.45e-07 - }, - { - "word": "evolutionarily", - "freq": 2.45e-07 - }, - { - "word": "politicization", - "freq": 2.45e-07 - }, - { - "word": "practicalities", - "freq": 2.45e-07 - }, - { - "word": "proprietorship", - "freq": 2.45e-07 - }, - { - "word": "redistributing", - "freq": 2.45e-07 - }, - { - "word": "revolutionised", - "freq": 2.45e-07 - }, - { - "word": "conjunctivitis", - "freq": 2.4e-07 - }, - { - "word": "existentialist", - "freq": 2.4e-07 - }, - { - "word": "micronutrients", - "freq": 2.4e-07 - }, - { - "word": "neutralization", - "freq": 2.4e-07 - }, - { - "word": "overproduction", - "freq": 2.4e-07 - }, - { - "word": "whistleblowing", - "freq": 2.4e-07 - }, - { - "word": "conservatories", - "freq": 2.34e-07 - }, - { - "word": "interferometry", - "freq": 2.34e-07 - }, - { - "word": "reconstitution", - "freq": 2.34e-07 - }, - { - "word": "scaremongering", - "freq": 2.34e-07 - }, - { - "word": "secularization", - "freq": 2.34e-07 - }, - { - "word": "unidentifiable", - "freq": 2.34e-07 - }, - { - "word": "centralisation", - "freq": 2.29e-07 - }, - { - "word": "geoengineering", - "freq": 2.29e-07 - }, - { - "word": "retransmission", - "freq": 2.29e-07 - }, - { - "word": "constructivism", - "freq": 2.24e-07 - }, - { - "word": "decriminalized", - "freq": 2.24e-07 - }, - { - "word": "electioneering", - "freq": 2.24e-07 - }, - { - "word": "evangelicalism", - "freq": 2.24e-07 - }, - { - "word": "improvisations", - "freq": 2.24e-07 - }, - { - "word": "overconfidence", - "freq": 2.24e-07 - }, - { - "word": "rearrangements", - "freq": 2.24e-07 - }, - { - "word": "unacknowledged", - "freq": 2.24e-07 - }, - { - "word": "bipartisanship", - "freq": 2.19e-07 - }, - { - "word": "differentiable", - "freq": 2.19e-07 - }, - { - "word": "dunbartonshire", - "freq": 2.19e-07 - }, - { - "word": "electroplating", - "freq": 2.19e-07 - }, - { - "word": "nanostructures", - "freq": 2.19e-07 - }, - { - "word": "neuroendocrine", - "freq": 2.19e-07 - }, - { - "word": "oversimplified", - "freq": 2.19e-07 - }, - { - "word": "radicalisation", - "freq": 2.19e-07 - }, - { - "word": "teleconference", - "freq": 2.19e-07 - }, - { - "word": "unapproachable", - "freq": 2.19e-07 - }, - { - "word": "accompaniments", - "freq": 2.14e-07 - }, - { - "word": "chrysanthemums", - "freq": 2.14e-07 - }, - { - "word": "glucocorticoid", - "freq": 2.14e-07 - }, - { - "word": "securitization", - "freq": 2.14e-07 - }, - { - "word": "counterfactual", - "freq": 2.09e-07 - }, - { - "word": "dehumanization", - "freq": 2.09e-07 - }, - { - "word": "incompleteness", - "freq": 2.09e-07 - }, - { - "word": "reconditioning", - "freq": 2.09e-07 - }, - { - "word": "traditionalism", - "freq": 2.09e-07 - }, - { - "word": "demobilization", - "freq": 2.04e-07 - }, - { - "word": "expressiveness", - "freq": 2.04e-07 - }, - { - "word": "macromolecular", - "freq": 2.04e-07 - }, - { - "word": "organometallic", - "freq": 2.04e-07 - }, - { - "word": "papillomavirus", - "freq": 2.04e-07 - }, - { - "word": "pathologically", - "freq": 2.04e-07 - }, - { - "word": "counterfeiters", - "freq": 2e-07 - }, - { - "word": "internazionale", - "freq": 2e-07 - }, - { - "word": "otolaryngology", - "freq": 2e-07 - }, - { - "word": "photosensitive", - "freq": 2e-07 - }, - { - "word": "distributional", - "freq": 1.95e-07 - }, - { - "word": "impersonations", - "freq": 1.95e-07 - }, - { - "word": "macromolecules", - "freq": 1.95e-07 - }, - { - "word": "overestimating", - "freq": 1.95e-07 - }, - { - "word": "pressurization", - "freq": 1.95e-07 - }, - { - "word": "radiofrequency", - "freq": 1.95e-07 - }, - { - "word": "recriminations", - "freq": 1.95e-07 - }, - { - "word": "reestablishing", - "freq": 1.95e-07 - }, - { - "word": "schoolteachers", - "freq": 1.95e-07 - }, - { - "word": "undernourished", - "freq": 1.95e-07 - }, - { - "word": "accelerometers", - "freq": 1.91e-07 - }, - { - "word": "conglomeration", - "freq": 1.91e-07 - }, - { - "word": "disenfranchise", - "freq": 1.91e-07 - }, - { - "word": "expressionless", - "freq": 1.91e-07 - }, - { - "word": "hepatocellular", - "freq": 1.91e-07 - }, - { - "word": "horticulturist", - "freq": 1.91e-07 - }, - { - "word": "hypoallergenic", - "freq": 1.91e-07 - }, - { - "word": "immobilization", - "freq": 1.91e-07 - }, - { - "word": "schizophrenics", - "freq": 1.91e-07 - }, - { - "word": "asymptotically", - "freq": 1.86e-07 - }, - { - "word": "eschatological", - "freq": 1.86e-07 - }, - { - "word": "intentionality", - "freq": 1.86e-07 - }, - { - "word": "microeconomics", - "freq": 1.86e-07 - }, - { - "word": "polysaccharide", - "freq": 1.86e-07 - }, - { - "word": "stigmatization", - "freq": 1.86e-07 - }, - { - "word": "categorisation", - "freq": 1.82e-07 - }, - { - "word": "circumnavigate", - "freq": 1.82e-07 - }, - { - "word": "disambiguation", - "freq": 1.82e-07 - }, - { - "word": "incapacitating", - "freq": 1.82e-07 - }, - { - "word": "regularization", - "freq": 1.82e-07 - }, - { - "word": "wollstonecraft", - "freq": 1.82e-07 - }, - { - "word": "zoroastrianism", - "freq": 1.82e-07 - }, - { - "word": "cardiothoracic", - "freq": 1.78e-07 - }, - { - "word": "counterattacks", - "freq": 1.78e-07 - }, - { - "word": "ornithological", - "freq": 1.78e-07 - }, - { - "word": "servicemembers", - "freq": 1.78e-07 - }, - { - "word": "unenthusiastic", - "freq": 1.78e-07 - }, - { - "word": "astronomically", - "freq": 1.74e-07 - }, - { - "word": "customizations", - "freq": 1.74e-07 - }, - { - "word": "impoverishment", - "freq": 1.74e-07 - }, - { - "word": "indecipherable", - "freq": 1.74e-07 - }, - { - "word": "intermolecular", - "freq": 1.74e-07 - }, - { - "word": "reverberations", - "freq": 1.74e-07 - }, - { - "word": "mephistopheles", - "freq": 1.7e-07 - }, - { - "word": "popularization", - "freq": 1.7e-07 - }, - { - "word": "psychoanalysts", - "freq": 1.7e-07 - }, - { - "word": "theresienstadt", - "freq": 1.7e-07 - }, - { - "word": "anticoagulants", - "freq": 1.66e-07 - }, - { - "word": "carcinogenesis", - "freq": 1.66e-07 - }, - { - "word": "centrifugation", - "freq": 1.66e-07 - }, - { - "word": "homogenization", - "freq": 1.66e-07 - }, - { - "word": "obstructionist", - "freq": 1.66e-07 - }, - { - "word": "phosphorescent", - "freq": 1.66e-07 - }, - { - "word": "recapitulation", - "freq": 1.66e-07 - }, - { - "word": "recreationally", - "freq": 1.66e-07 - }, - { - "word": "stephanopoulos", - "freq": 1.66e-07 - }, - { - "word": "subpopulations", - "freq": 1.66e-07 - }, - { - "word": "depolarization", - "freq": 1.62e-07 - }, - { - "word": "dnipropetrovsk", - "freq": 1.62e-07 - }, - { - "word": "gynaecological", - "freq": 1.62e-07 - }, - { - "word": "misunderstands", - "freq": 1.62e-07 - }, - { - "word": "supercomputing", - "freq": 1.62e-07 - }, - { - "word": "authenticating", - "freq": 1.58e-07 - }, - { - "word": "collateralized", - "freq": 1.58e-07 - }, - { - "word": "countervailing", - "freq": 1.58e-07 - }, - { - "word": "spironolactone", - "freq": 1.58e-07 - }, - { - "word": "advantageously", - "freq": 1.55e-07 - }, - { - "word": "asymmetrically", - "freq": 1.55e-07 - }, - { - "word": "hendersonville", - "freq": 1.55e-07 - }, - { - "word": "hydrocortisone", - "freq": 1.55e-07 - }, - { - "word": "inflorescences", - "freq": 1.55e-07 - }, - { - "word": "intraoperative", - "freq": 1.55e-07 - }, - { - "word": "overcompensate", - "freq": 1.55e-07 - }, - { - "word": "participations", - "freq": 1.55e-07 - }, - { - "word": "photogrammetry", - "freq": 1.55e-07 - }, - { - "word": "underachieving", - "freq": 1.55e-07 - }, - { - "word": "apologetically", - "freq": 1.51e-07 - }, - { - "word": "counterexample", - "freq": 1.51e-07 - }, - { - "word": "embarrassments", - "freq": 1.51e-07 - }, - { - "word": "indecisiveness", - "freq": 1.51e-07 - }, - { - "word": "misperceptions", - "freq": 1.51e-07 - }, - { - "word": "ornithologists", - "freq": 1.51e-07 - }, - { - "word": "segregationist", - "freq": 1.51e-07 - }, - { - "word": "solidification", - "freq": 1.51e-07 - }, - { - "word": "verisimilitude", - "freq": 1.51e-07 - }, - { - "word": "choreographing", - "freq": 1.48e-07 - }, - { - "word": "defibrillators", - "freq": 1.48e-07 - }, - { - "word": "differentiator", - "freq": 1.48e-07 - }, - { - "word": "enforceability", - "freq": 1.48e-07 - }, - { - "word": "hierarchically", - "freq": 1.48e-07 - }, - { - "word": "incapacitation", - "freq": 1.48e-07 - }, - { - "word": "incompressible", - "freq": 1.48e-07 - }, - { - "word": "jeffersonville", - "freq": 1.48e-07 - }, - { - "word": "pasteurization", - "freq": 1.48e-07 - }, - { - "word": "photoreceptors", - "freq": 1.48e-07 - }, - { - "word": "professorships", - "freq": 1.48e-07 - }, - { - "word": "refurbishments", - "freq": 1.48e-07 - }, - { - "word": "subcontracting", - "freq": 1.48e-07 - }, - { - "word": "unrecognisable", - "freq": 1.48e-07 - }, - { - "word": "untersuchungen", - "freq": 1.48e-07 - }, - { - "word": "aggrandizement", - "freq": 1.45e-07 - }, - { - "word": "authoritarians", - "freq": 1.45e-07 - }, - { - "word": "dermatological", - "freq": 1.45e-07 - }, - { - "word": "eutrophication", - "freq": 1.45e-07 - }, - { - "word": "hermaphrodites", - "freq": 1.45e-07 - }, - { - "word": "nitrocellulose", - "freq": 1.45e-07 - }, - { - "word": "parapsychology", - "freq": 1.45e-07 - }, - { - "word": "photorealistic", - "freq": 1.45e-07 - }, - { - "word": "presupposition", - "freq": 1.45e-07 - }, - { - "word": "stoichiometric", - "freq": 1.45e-07 - }, - { - "word": "superficiality", - "freq": 1.45e-07 - }, - { - "word": "investigations", - "freq": 1.41e-07 - }, - { - "word": "bioluminescent", - "freq": 1.41e-07 - }, - { - "word": "breathlessness", - "freq": 1.41e-07 - }, - { - "word": "contextualized", - "freq": 1.41e-07 - }, - { - "word": "directionality", - "freq": 1.41e-07 - }, - { - "word": "gynaecologists", - "freq": 1.41e-07 - }, - { - "word": "intervertebral", - "freq": 1.41e-07 - }, - { - "word": "kindergartners", - "freq": 1.41e-07 - }, - { - "word": "margaritaville", - "freq": 1.41e-07 - }, - { - "word": "optoelectronic", - "freq": 1.41e-07 - }, - { - "word": "oversubscribed", - "freq": 1.41e-07 - }, - { - "word": "retrospectives", - "freq": 1.41e-07 - }, - { - "word": "westernization", - "freq": 1.41e-07 - }, - { - "word": "establishments", - "freq": 1.38e-07 - }, - { - "word": "antimicrobials", - "freq": 1.38e-07 - }, - { - "word": "characterising", - "freq": 1.38e-07 - }, - { - "word": "criminologists", - "freq": 1.38e-07 - }, - { - "word": "intramolecular", - "freq": 1.38e-07 - }, - { - "word": "substantiation", - "freq": 1.38e-07 - }, - { - "word": "agriculturally", - "freq": 1.35e-07 - }, - { - "word": "biogeochemical", - "freq": 1.35e-07 - }, - { - "word": "contemptuously", - "freq": 1.35e-07 - }, - { - "word": "cybercriminals", - "freq": 1.35e-07 - }, - { - "word": "neurologically", - "freq": 1.35e-07 - }, - { - "word": "ostentatiously", - "freq": 1.35e-07 - }, - { - "word": "consolidations", - "freq": 1.32e-07 - }, - { - "word": "counterparties", - "freq": 1.32e-07 - }, - { - "word": "etymologically", - "freq": 1.32e-07 - }, - { - "word": "geosynchronous", - "freq": 1.32e-07 - }, - { - "word": "histopathology", - "freq": 1.32e-07 - }, - { - "word": "perfectionists", - "freq": 1.32e-07 - }, - { - "word": "philanthropies", - "freq": 1.32e-07 - }, - { - "word": "abovementioned", - "freq": 1.29e-07 - }, - { - "word": "autoantibodies", - "freq": 1.29e-07 - }, - { - "word": "businessperson", - "freq": 1.29e-07 - }, - { - "word": "decisionmaking", - "freq": 1.29e-07 - }, - { - "word": "demonetisation", - "freq": 1.29e-07 - }, - { - "word": "inconveniently", - "freq": 1.29e-07 - }, - { - "word": "individualised", - "freq": 1.29e-07 - }, - { - "word": "potentialities", - "freq": 1.29e-07 - }, - { - "word": "prostaglandins", - "freq": 1.29e-07 - }, - { - "word": "reconfigurable", - "freq": 1.29e-07 - }, - { - "word": "supernaturally", - "freq": 1.29e-07 - }, - { - "word": "transparencies", - "freq": 1.29e-07 - }, - { - "word": "wellingborough", - "freq": 1.29e-07 - }, - { - "word": "anticonvulsant", - "freq": 1.26e-07 - }, - { - "word": "bacteriologist", - "freq": 1.26e-07 - }, - { - "word": "bioremediation", - "freq": 1.26e-07 - }, - { - "word": "decontaminated", - "freq": 1.26e-07 - }, - { - "word": "disequilibrium", - "freq": 1.26e-07 - }, - { - "word": "diverticulitis", - "freq": 1.26e-07 - }, - { - "word": "functionalized", - "freq": 1.26e-07 - }, - { - "word": "hahahahahahaha", - "freq": 1.26e-07 - }, - { - "word": "interreligious", - "freq": 1.26e-07 - }, - { - "word": "obstructionism", - "freq": 1.26e-07 - }, - { - "word": "redistributive", - "freq": 1.26e-07 - }, - { - "word": "unconsolidated", - "freq": 1.26e-07 - }, - { - "word": "uncontaminated", - "freq": 1.26e-07 - }, - { - "word": "climatologists", - "freq": 1.23e-07 - }, - { - "word": "conocophillips", - "freq": 1.23e-07 - }, - { - "word": "digitalization", - "freq": 1.23e-07 - }, - { - "word": "discontinuance", - "freq": 1.23e-07 - }, - { - "word": "gopalakrishnan", - "freq": 1.23e-07 - }, - { - "word": "hypocritically", - "freq": 1.23e-07 - }, - { - "word": "juxtapositions", - "freq": 1.23e-07 - }, - { - "word": "pennsylvanians", - "freq": 1.23e-07 - }, - { - "word": "reinterpreting", - "freq": 1.23e-07 - }, - { - "word": "serviceability", - "freq": 1.23e-07 - }, - { - "word": "transmigration", - "freq": 1.23e-07 - }, - { - "word": "anticorruption", - "freq": 1.2e-07 - }, - { - "word": "disassociation", - "freq": 1.2e-07 - }, - { - "word": "instrumentally", - "freq": 1.2e-07 - }, - { - "word": "naturalisation", - "freq": 1.2e-07 - }, - { - "word": "neurocognitive", - "freq": 1.2e-07 - }, - { - "word": "rheumatologist", - "freq": 1.2e-07 - }, - { - "word": "transliterated", - "freq": 1.2e-07 - }, - { - "word": "biodegradation", - "freq": 1.17e-07 - }, - { - "word": "civilizational", - "freq": 1.17e-07 - }, - { - "word": "nondestructive", - "freq": 1.17e-07 - }, - { - "word": "procrastinated", - "freq": 1.17e-07 - }, - { - "word": "procrastinator", - "freq": 1.17e-07 - }, - { - "word": "proprioception", - "freq": 1.17e-07 - }, - { - "word": "revitalisation", - "freq": 1.17e-07 - }, - { - "word": "concessionaire", - "freq": 1.15e-07 - }, - { - "word": "conditionality", - "freq": 1.15e-07 - }, - { - "word": "discolouration", - "freq": 1.15e-07 - }, - { - "word": "electromagnets", - "freq": 1.15e-07 - }, - { - "word": "erythropoietin", - "freq": 1.15e-07 - }, - { - "word": "histologically", - "freq": 1.15e-07 - }, - { - "word": "inconsiderable", - "freq": 1.15e-07 - }, - { - "word": "intermediation", - "freq": 1.15e-07 - }, - { - "word": "microcomputers", - "freq": 1.15e-07 - }, - { - "word": "microsatellite", - "freq": 1.15e-07 - }, - { - "word": "presentational", - "freq": 1.15e-07 - }, - { - "word": "subcutaneously", - "freq": 1.15e-07 - }, - { - "word": "absentmindedly", - "freq": 1.12e-07 - }, - { - "word": "commercialised", - "freq": 1.12e-07 - }, - { - "word": "mistranslation", - "freq": 1.12e-07 - }, - { - "word": "possessiveness", - "freq": 1.12e-07 - }, - { - "word": "rollercoasters", - "freq": 1.12e-07 - }, - { - "word": "semiconducting", - "freq": 1.12e-07 - }, - { - "word": "underachievers", - "freq": 1.12e-07 - }, - { - "word": "vindictiveness", - "freq": 1.12e-07 - }, - { - "word": "demonetization", - "freq": 1.1e-07 - }, - { - "word": "hyperventilate", - "freq": 1.1e-07 - }, - { - "word": "unappreciative", - "freq": 1.1e-07 - }, - { - "word": "granddaughters", - "freq": 1.07e-07 - }, - { - "word": "anthropometric", - "freq": 1.07e-07 - }, - { - "word": "caenorhabditis", - "freq": 1.07e-07 - }, - { - "word": "crawfordsville", - "freq": 1.07e-07 - }, - { - "word": "extinguishment", - "freq": 1.07e-07 - }, - { - "word": "metaphysically", - "freq": 1.07e-07 - }, - { - "word": "multithreading", - "freq": 1.07e-07 - }, - { - "word": "radiotelephone", - "freq": 1.07e-07 - }, - { - "word": "accreditations", - "freq": 1.05e-07 - }, - { - "word": "ambassadorship", - "freq": 1.05e-07 - }, - { - "word": "echocardiogram", - "freq": 1.05e-07 - }, - { - "word": "indoctrinating", - "freq": 1.05e-07 - }, - { - "word": "interpolations", - "freq": 1.05e-07 - }, - { - "word": "meaningfulness", - "freq": 1.05e-07 - }, - { - "word": "multifactorial", - "freq": 1.05e-07 - }, - { - "word": "multiprocessor", - "freq": 1.05e-07 - }, - { - "word": "philosophizing", - "freq": 1.05e-07 - }, - { - "word": "phytochemicals", - "freq": 1.05e-07 - }, - { - "word": "remanufactured", - "freq": 1.05e-07 - }, - { - "word": "superintending", - "freq": 1.05e-07 - }, - { - "word": "troubleshooter", - "freq": 1.05e-07 - }, - { - "word": "apolipoprotein", - "freq": 1.02e-07 - }, - { - "word": "climatological", - "freq": 1.02e-07 - }, - { - "word": "discriminative", - "freq": 1.02e-07 - }, - { - "word": "extemporaneous", - "freq": 1.02e-07 - }, - { - "word": "hypnotherapist", - "freq": 1.02e-07 - }, - { - "word": "immunogenicity", - "freq": 1.02e-07 - }, - { - "word": "mechanicsville", - "freq": 1.02e-07 - }, - { - "word": "microbreweries", - "freq": 1.02e-07 - }, - { - "word": "noncommutative", - "freq": 1.02e-07 - }, - { - "word": "orchestrations", - "freq": 1.02e-07 - }, - { - "word": "propagandistic", - "freq": 1.02e-07 - }, - { - "word": "spatiotemporal", - "freq": 1.02e-07 - }, - { - "word": "territoriality", - "freq": 1.02e-07 - }, - { - "word": "translocations", - "freq": 1.02e-07 - }, - { - "word": "bacteriophages", - "freq": 1e-07 - }, - { - "word": "entertainingly", - "freq": 1e-07 - }, - { - "word": "individualists", - "freq": 1e-07 - }, - { - "word": "kaiserslautern", - "freq": 1e-07 - }, - { - "word": "malnourishment", - "freq": 1e-07 - }, - { - "word": "overestimation", - "freq": 1e-07 - }, - { - "word": "postproduction", - "freq": 1e-07 - }, - { - "word": "prohibitionist", - "freq": 1e-07 - }, - { - "word": "rebelliousness", - "freq": 1e-07 - }, - { - "word": "supramolecular", - "freq": 1e-07 - }, - { - "word": "thermoplastics", - "freq": 1e-07 - }, - { - "word": "administrators", - "freq": 9.77e-08 - }, - { - "word": "pentecostalism", - "freq": 9.77e-08 - }, - { - "word": "restructurings", - "freq": 9.77e-08 - }, - { - "word": "supersymmetric", - "freq": 9.77e-08 - }, - { - "word": "underreporting", - "freq": 9.77e-08 - }, - { - "word": "chandrashekhar", - "freq": 9.55e-08 - }, - { - "word": "conceptualised", - "freq": 9.55e-08 - }, - { - "word": "counterweights", - "freq": 9.55e-08 - }, - { - "word": "defibrillation", - "freq": 9.55e-08 - }, - { - "word": "disembarkation", - "freq": 9.55e-08 - }, - { - "word": "neonicotinoids", - "freq": 9.55e-08 - }, - { - "word": "untouchability", - "freq": 9.55e-08 - }, - { - "word": "administrating", - "freq": 9.33e-08 - }, - { - "word": "constitutively", - "freq": 9.33e-08 - }, - { - "word": "downregulation", - "freq": 9.33e-08 - }, - { - "word": "nanostructured", - "freq": 9.33e-08 - }, - { - "word": "nasopharyngeal", - "freq": 9.33e-08 - }, - { - "word": "neurochemistry", - "freq": 9.33e-08 - }, - { - "word": "nitroglycerine", - "freq": 9.33e-08 - }, - { - "word": "photochemistry", - "freq": 9.33e-08 - }, - { - "word": "retinoblastoma", - "freq": 9.33e-08 - }, - { - "word": "disapprovingly", - "freq": 9.12e-08 - }, - { - "word": "extrapolations", - "freq": 9.12e-08 - }, - { - "word": "macronutrients", - "freq": 9.12e-08 - }, - { - "word": "nonconformists", - "freq": 9.12e-08 - }, - { - "word": "wissenschaften", - "freq": 9.12e-08 - }, - { - "word": "agustawestland", - "freq": 8.91e-08 - }, - { - "word": "choreographies", - "freq": 8.91e-08 - }, - { - "word": "colloquialisms", - "freq": 8.91e-08 - }, - { - "word": "decolonisation", - "freq": 8.91e-08 - }, - { - "word": "federalization", - "freq": 8.91e-08 - }, - { - "word": "hyperlipidemia", - "freq": 8.91e-08 - }, - { - "word": "illegitimately", - "freq": 8.91e-08 - }, - { - "word": "mispronouncing", - "freq": 8.91e-08 - }, - { - "word": "nanocomposites", - "freq": 8.91e-08 - }, - { - "word": "noncompetitive", - "freq": 8.91e-08 - }, - { - "word": "nonresidential", - "freq": 8.91e-08 - }, - { - "word": "oceanographers", - "freq": 8.91e-08 - }, - { - "word": "percussionists", - "freq": 8.91e-08 - }, - { - "word": "philadelphians", - "freq": 8.91e-08 - }, - { - "word": "prioritisation", - "freq": 8.91e-08 - }, - { - "word": "reincarnations", - "freq": 8.91e-08 - }, - { - "word": "reinvigorating", - "freq": 8.91e-08 - }, - { - "word": "rhabdomyolysis", - "freq": 8.91e-08 - }, - { - "word": "substantiating", - "freq": 8.91e-08 - }, - { - "word": "uncorroborated", - "freq": 8.91e-08 - }, - { - "word": "unfaithfulness", - "freq": 8.91e-08 - }, - { - "word": "agglomerations", - "freq": 8.71e-08 - }, - { - "word": "alexanderplatz", - "freq": 8.71e-08 - }, - { - "word": "chancellorship", - "freq": 8.71e-08 - }, - { - "word": "criminological", - "freq": 8.71e-08 - }, - { - "word": "disconnections", - "freq": 8.71e-08 - }, - { - "word": "extracorporeal", - "freq": 8.71e-08 - }, - { - "word": "phantasmagoria", - "freq": 8.71e-08 - }, - { - "word": "polyacrylamide", - "freq": 8.71e-08 - }, - { - "word": "productiveness", - "freq": 8.71e-08 - }, - { - "word": "sociologically", - "freq": 8.71e-08 - }, - { - "word": "antiperspirant", - "freq": 8.51e-08 - }, - { - "word": "appreciatively", - "freq": 8.51e-08 - }, - { - "word": "asynchronously", - "freq": 8.51e-08 - }, - { - "word": "christological", - "freq": 8.51e-08 - }, - { - "word": "clarithromycin", - "freq": 8.51e-08 - }, - { - "word": "discretization", - "freq": 8.51e-08 - }, - { - "word": "hydroxyapatite", - "freq": 8.51e-08 - }, - { - "word": "monopolization", - "freq": 8.51e-08 - }, - { - "word": "submissiveness", - "freq": 8.51e-08 - }, - { - "word": "battlecruisers", - "freq": 8.32e-08 - }, - { - "word": "constructional", - "freq": 8.32e-08 - }, - { - "word": "convertibility", - "freq": 8.32e-08 - }, - { - "word": "fraternization", - "freq": 8.32e-08 - }, - { - "word": "herpetological", - "freq": 8.32e-08 - }, - { - "word": "inflammatories", - "freq": 8.32e-08 - }, - { - "word": "pedestrianised", - "freq": 8.32e-08 - }, - { - "word": "reconstituting", - "freq": 8.32e-08 - }, - { - "word": "transgenderism", - "freq": 8.32e-08 - }, - { - "word": "catecholamines", - "freq": 8.13e-08 - }, - { - "word": "conquistadores", - "freq": 8.13e-08 - }, - { - "word": "conservatorium", - "freq": 8.13e-08 - }, - { - "word": "correspondance", - "freq": 8.13e-08 - }, - { - "word": "demoralization", - "freq": 8.13e-08 - }, - { - "word": "intramedullary", - "freq": 8.13e-08 - }, - { - "word": "irreproachable", - "freq": 8.13e-08 - }, - { - "word": "legitimization", - "freq": 8.13e-08 - }, - { - "word": "licentiousness", - "freq": 8.13e-08 - }, - { - "word": "misapplication", - "freq": 8.13e-08 - }, - { - "word": "mississippians", - "freq": 8.13e-08 - }, - { - "word": "neuropathology", - "freq": 8.13e-08 - }, - { - "word": "permissiveness", - "freq": 8.13e-08 - }, - { - "word": "relinquishment", - "freq": 8.13e-08 - }, - { - "word": "supercontinent", - "freq": 8.13e-08 - }, - { - "word": "weatherization", - "freq": 8.13e-08 - }, - { - "word": "antigovernment", - "freq": 7.94e-08 - }, - { - "word": "blaxploitation", - "freq": 7.94e-08 - }, - { - "word": "disaggregation", - "freq": 7.94e-08 - }, - { - "word": "dnepropetrovsk", - "freq": 7.94e-08 - }, - { - "word": "hermaphroditic", - "freq": 7.94e-08 - }, - { - "word": "hypergeometric", - "freq": 7.94e-08 - }, - { - "word": "lexicographers", - "freq": 7.94e-08 - }, - { - "word": "mineralisation", - "freq": 7.94e-08 - }, - { - "word": "pharmacologist", - "freq": 7.94e-08 - }, - { - "word": "politicisation", - "freq": 7.94e-08 - }, - { - "word": "proprioceptive", - "freq": 7.94e-08 - }, - { - "word": "protectiveness", - "freq": 7.94e-08 - }, - { - "word": "simplistically", - "freq": 7.94e-08 - }, - { - "word": "transpositions", - "freq": 7.94e-08 - }, - { - "word": "universitaires", - "freq": 7.94e-08 - }, - { - "word": "commiserations", - "freq": 7.76e-08 - }, - { - "word": "contemplations", - "freq": 7.76e-08 - }, - { - "word": "decentralizing", - "freq": 7.76e-08 - }, - { - "word": "demobilisation", - "freq": 7.76e-08 - }, - { - "word": "expressionists", - "freq": 7.76e-08 - }, - { - "word": "grandfathering", - "freq": 7.76e-08 - }, - { - "word": "hepatotoxicity", - "freq": 7.76e-08 - }, - { - "word": "neuschwanstein", - "freq": 7.76e-08 - }, - { - "word": "overindulgence", - "freq": 7.76e-08 - }, - { - "word": "precariousness", - "freq": 7.76e-08 - }, - { - "word": "repetitiveness", - "freq": 7.76e-08 - }, - { - "word": "unhesitatingly", - "freq": 7.76e-08 - }, - { - "word": "cephalosporins", - "freq": 7.59e-08 - }, - { - "word": "chlorpromazine", - "freq": 7.59e-08 - }, - { - "word": "decriminalised", - "freq": 7.59e-08 - }, - { - "word": "disingenuously", - "freq": 7.59e-08 - }, - { - "word": "geopolitically", - "freq": 7.59e-08 - }, - { - "word": "requisitioning", - "freq": 7.59e-08 - }, - { - "word": "sterilizations", - "freq": 7.59e-08 - }, - { - "word": "transistorized", - "freq": 7.59e-08 - }, - { - "word": "untranslatable", - "freq": 7.59e-08 - }, - { - "word": "washingtonians", - "freq": 7.59e-08 - }, - { - "word": "campbellsville", - "freq": 7.41e-08 - }, - { - "word": "decompositions", - "freq": 7.41e-08 - }, - { - "word": "frontotemporal", - "freq": 7.41e-08 - }, - { - "word": "gerontological", - "freq": 7.41e-08 - }, - { - "word": "penitentiaries", - "freq": 7.41e-08 - }, - { - "word": "photocatalytic", - "freq": 7.41e-08 - }, - { - "word": "potentiometers", - "freq": 7.41e-08 - }, - { - "word": "superdelegates", - "freq": 7.41e-08 - }, - { - "word": "antineoplastic", - "freq": 7.24e-08 - }, - { - "word": "authorisations", - "freq": 7.24e-08 - }, - { - "word": "christopherson", - "freq": 7.24e-08 - }, - { - "word": "dissapointment", - "freq": 7.24e-08 - }, - { - "word": "interrelations", - "freq": 7.24e-08 - }, - { - "word": "levonorgestrel", - "freq": 7.24e-08 - }, - { - "word": "thermochemical", - "freq": 7.24e-08 - }, - { - "word": "defenestration", - "freq": 7.08e-08 - }, - { - "word": "microparticles", - "freq": 7.08e-08 - }, - { - "word": "middlesborough", - "freq": 7.08e-08 - }, - { - "word": "multicomponent", - "freq": 7.08e-08 - }, - { - "word": "preposterously", - "freq": 7.08e-08 - }, - { - "word": "securitisation", - "freq": 7.08e-08 - }, - { - "word": "symptomatology", - "freq": 7.08e-08 - }, - { - "word": "disinclination", - "freq": 6.92e-08 - }, - { - "word": "euroscepticism", - "freq": 6.92e-08 - }, - { - "word": "exhibitionists", - "freq": 6.92e-08 - }, - { - "word": "megalomaniacal", - "freq": 6.92e-08 - }, - { - "word": "nonthreatening", - "freq": 6.92e-08 - }, - { - "word": "overemphasized", - "freq": 6.92e-08 - }, - { - "word": "overstimulated", - "freq": 6.92e-08 - }, - { - "word": "quarterbacking", - "freq": 6.92e-08 - }, - { - "word": "reproductively", - "freq": 6.92e-08 - }, - { - "word": "responsability", - "freq": 6.92e-08 - }, - { - "word": "scatterbrained", - "freq": 6.92e-08 - }, - { - "word": "septuagenarian", - "freq": 6.92e-08 - }, - { - "word": "terminological", - "freq": 6.92e-08 - }, - { - "word": "unquantifiable", - "freq": 6.92e-08 - }, - { - "word": "neighbourhoods", - "freq": 6.76e-08 - }, - { - "word": "grandchildrens", - "freq": 6.76e-08 - }, - { - "word": "hydrophobicity", - "freq": 6.76e-08 - }, - { - "word": "hysterectomies", - "freq": 6.76e-08 - }, - { - "word": "kindergartener", - "freq": 6.76e-08 - }, - { - "word": "paediatricians", - "freq": 6.76e-08 - }, - { - "word": "psychophysical", - "freq": 6.76e-08 - }, - { - "word": "shankaracharya", - "freq": 6.76e-08 - }, - { - "word": "transsexualism", - "freq": 6.76e-08 - }, - { - "word": "cardiomyocytes", - "freq": 6.61e-08 - }, - { - "word": "congressperson", - "freq": 6.61e-08 - }, - { - "word": "councilmembers", - "freq": 6.61e-08 - }, - { - "word": "cryptographers", - "freq": 6.61e-08 - }, - { - "word": "nonequilibrium", - "freq": 6.61e-08 - }, - { - "word": "operationalize", - "freq": 6.61e-08 - }, - { - "word": "polyneuropathy", - "freq": 6.61e-08 - }, - { - "word": "reincorporated", - "freq": 6.61e-08 - }, - { - "word": "superintendant", - "freq": 6.61e-08 - }, - { - "word": "tetragrammaton", - "freq": 6.61e-08 - }, - { - "word": "charlottenburg", - "freq": 6.46e-08 - }, - { - "word": "concentrically", - "freq": 6.46e-08 - }, - { - "word": "contraventions", - "freq": 6.46e-08 - }, - { - "word": "corticosterone", - "freq": 6.46e-08 - }, - { - "word": "editorializing", - "freq": 6.46e-08 - }, - { - "word": "hillaryclinton", - "freq": 6.46e-08 - }, - { - "word": "interconnector", - "freq": 6.46e-08 - }, - { - "word": "lovingkindness", - "freq": 6.46e-08 - }, - { - "word": "militarisation", - "freq": 6.46e-08 - }, - { - "word": "perpendiculars", - "freq": 6.46e-08 - }, - { - "word": "phenotypically", - "freq": 6.46e-08 - }, - { - "word": "schleiermacher", - "freq": 6.46e-08 - }, - { - "word": "sentimentalist", - "freq": 6.46e-08 - }, - { - "word": "staphylococcal", - "freq": 6.46e-08 - }, - { - "word": "straightjacket", - "freq": 6.46e-08 - }, - { - "word": "supersaturated", - "freq": 6.46e-08 - }, - { - "word": "cholinesterase", - "freq": 6.31e-08 - }, - { - "word": "contaminations", - "freq": 6.31e-08 - }, - { - "word": "disassociating", - "freq": 6.31e-08 - }, - { - "word": "esterification", - "freq": 6.31e-08 - }, - { - "word": "heterojunction", - "freq": 6.31e-08 - }, - { - "word": "impracticality", - "freq": 6.31e-08 - }, - { - "word": "outperformance", - "freq": 6.31e-08 - }, - { - "word": "sentimentalism", - "freq": 6.31e-08 - }, - { - "word": "transcutaneous", - "freq": 6.31e-08 - }, - { - "word": "whippersnapper", - "freq": 6.31e-08 - }, - { - "word": "cyclooxygenase", - "freq": 6.17e-08 - }, - { - "word": "electrostatics", - "freq": 6.17e-08 - }, - { - "word": "emulsification", - "freq": 6.17e-08 - }, - { - "word": "heterozygosity", - "freq": 6.17e-08 - }, - { - "word": "hinchingbrooke", - "freq": 6.17e-08 - }, - { - "word": "paddleboarding", - "freq": 6.17e-08 - }, - { - "word": "pavlyuchenkova", - "freq": 6.17e-08 - }, - { - "word": "phonologically", - "freq": 6.17e-08 - }, - { - "word": "plasmapheresis", - "freq": 6.17e-08 - }, - { - "word": "revolutionists", - "freq": 6.17e-08 - }, - { - "word": "secularisation", - "freq": 6.17e-08 - }, - { - "word": "suggestibility", - "freq": 6.17e-08 - }, - { - "word": "undernutrition", - "freq": 6.17e-08 - }, - { - "word": "agriculturists", - "freq": 6.03e-08 - }, - { - "word": "bronchiectasis", - "freq": 6.03e-08 - }, - { - "word": "disarticulated", - "freq": 6.03e-08 - }, - { - "word": "discontentment", - "freq": 6.03e-08 - }, - { - "word": "einsatzgruppen", - "freq": 6.03e-08 - }, - { - "word": "foreshortening", - "freq": 6.03e-08 - }, - { - "word": "humidification", - "freq": 6.03e-08 - }, - { - "word": "knickerbockers", - "freq": 6.03e-08 - }, - { - "word": "pronounciation", - "freq": 6.03e-08 - }, - { - "word": "screenshotting", - "freq": 6.03e-08 - }, - { - "word": "showerthoughts", - "freq": 6.03e-08 - }, - { - "word": "correspondents", - "freq": 5.89e-08 - }, - { - "word": "assistantships", - "freq": 5.89e-08 - }, - { - "word": "availabilities", - "freq": 5.89e-08 - }, - { - "word": "circumspection", - "freq": 5.89e-08 - }, - { - "word": "documentations", - "freq": 5.89e-08 - }, - { - "word": "encouragements", - "freq": 5.89e-08 - }, - { - "word": "ethnographical", - "freq": 5.89e-08 - }, - { - "word": "particularized", - "freq": 5.89e-08 - }, - { - "word": "cyanobacterial", - "freq": 5.75e-08 - }, - { - "word": "demonstratives", - "freq": 5.75e-08 - }, - { - "word": "implausibility", - "freq": 5.75e-08 - }, - { - "word": "incorporations", - "freq": 5.75e-08 - }, - { - "word": "interactionism", - "freq": 5.75e-08 - }, - { - "word": "medicalization", - "freq": 5.75e-08 - }, - { - "word": "phthalocyanine", - "freq": 5.75e-08 - }, - { - "word": "phytoestrogens", - "freq": 5.75e-08 - }, - { - "word": "postmodernists", - "freq": 5.75e-08 - }, - { - "word": "visualisations", - "freq": 5.75e-08 - }, - { - "word": "comfortability", - "freq": 5.62e-08 - }, - { - "word": "disorientating", - "freq": 5.62e-08 - }, - { - "word": "glyceraldehyde", - "freq": 5.62e-08 - }, - { - "word": "metaphysicians", - "freq": 5.62e-08 - }, - { - "word": "persuasiveness", - "freq": 5.62e-08 - }, - { - "word": "privatizations", - "freq": 5.62e-08 - }, - { - "word": "subspecialties", - "freq": 5.62e-08 - }, - { - "word": "telangiectasia", - "freq": 5.62e-08 - }, - { - "word": "ultrastructure", - "freq": 5.62e-08 - }, - { - "word": "aguascalientes", - "freq": 5.5e-08 - }, - { - "word": "archiepiscopal", - "freq": 5.5e-08 - }, - { - "word": "encyclopaedias", - "freq": 5.5e-08 - }, - { - "word": "glamorganshire", - "freq": 5.5e-08 - }, - { - "word": "innovativeness", - "freq": 5.5e-08 - }, - { - "word": "paraneoplastic", - "freq": 5.5e-08 - }, - { - "word": "permissibility", - "freq": 5.5e-08 - }, - { - "word": "photodetectors", - "freq": 5.5e-08 - }, - { - "word": "recommissioned", - "freq": 5.5e-08 - }, - { - "word": "solubilization", - "freq": 5.5e-08 - }, - { - "word": "subcontinental", - "freq": 5.5e-08 - }, - { - "word": "thromboembolic", - "freq": 5.5e-08 - }, - { - "word": "unaccomplished", - "freq": 5.5e-08 - }, - { - "word": "unclassifiable", - "freq": 5.5e-08 - }, - { - "word": "bacteriostatic", - "freq": 5.37e-08 - }, - { - "word": "dinoflagellate", - "freq": 5.37e-08 - }, - { - "word": "disempowerment", - "freq": 5.37e-08 - }, - { - "word": "dramatizations", - "freq": 5.37e-08 - }, - { - "word": "metoclopramide", - "freq": 5.37e-08 - }, - { - "word": "polymerisation", - "freq": 5.37e-08 - }, - { - "word": "propagandizing", - "freq": 5.37e-08 - }, - { - "word": "renegotiations", - "freq": 5.37e-08 - }, - { - "word": "sensationalize", - "freq": 5.37e-08 - }, - { - "word": "socioeconomics", - "freq": 5.37e-08 - }, - { - "word": "ubiquitination", - "freq": 5.37e-08 - }, - { - "word": "aggrandisement", - "freq": 5.25e-08 - }, - { - "word": "airconditioned", - "freq": 5.25e-08 - }, - { - "word": "autoregressive", - "freq": 5.25e-08 - }, - { - "word": "chamillionaire", - "freq": 5.25e-08 - }, - { - "word": "cruiserweights", - "freq": 5.25e-08 - }, - { - "word": "deliverability", - "freq": 5.25e-08 - }, - { - "word": "diacylglycerol", - "freq": 5.25e-08 - }, - { - "word": "educationalist", - "freq": 5.25e-08 - }, - { - "word": "fremantlemedia", - "freq": 5.25e-08 - }, - { - "word": "groundskeepers", - "freq": 5.25e-08 - }, - { - "word": "hyperextension", - "freq": 5.25e-08 - }, - { - "word": "incrementalism", - "freq": 5.25e-08 - }, - { - "word": "intuitionistic", - "freq": 5.25e-08 - }, - { - "word": "magnifications", - "freq": 5.25e-08 - }, - { - "word": "microelectrode", - "freq": 5.25e-08 - }, - { - "word": "neocolonialism", - "freq": 5.25e-08 - }, - { - "word": "providentially", - "freq": 5.25e-08 - }, - { - "word": "quartermasters", - "freq": 5.25e-08 - }, - { - "word": "schoolmistress", - "freq": 5.25e-08 - } - ], - "15": [ - { - "word": "congratulations", - "freq": 2.51e-05 - }, - { - "word": "recommendations", - "freq": 1.95e-05 - }, - { - "word": "characteristics", - "freq": 1.91e-05 - }, - { - "word": "internationally", - "freq": 8.91e-06 - }, - { - "word": "straightforward", - "freq": 6.76e-06 - }, - { - "word": "accomplishments", - "freq": 5.62e-06 - }, - { - "word": "representations", - "freq": 4.68e-06 - }, - { - "word": "interpretations", - "freq": 4.27e-06 - }, - { - "word": "electromagnetic", - "freq": 3.8e-06 - }, - { - "word": "differentiation", - "freq": 3.09e-06 - }, - { - "word": "notwithstanding", - "freq": 3.02e-06 - }, - { - "word": "pharmaceuticals", - "freq": 3.02e-06 - }, - { - "word": "experimentation", - "freq": 2.95e-06 - }, - { - "word": "instrumentation", - "freq": 2.88e-06 - }, - { - "word": "competitiveness", - "freq": 2.82e-06 - }, - { - "word": "confidentiality", - "freq": 2.82e-06 - }, - { - "word": "environmentally", - "freq": 2.75e-06 - }, - { - "word": "extraordinarily", - "freq": 2.63e-06 - }, - { - "word": "entrepreneurial", - "freq": 2.51e-06 - }, - { - "word": "professionalism", - "freq": 2.51e-06 - }, - { - "word": "transformations", - "freq": 2.51e-06 - }, - { - "word": "psychologically", - "freq": 2.24e-06 - }, - { - "word": "administrations", - "freq": 2.19e-06 - }, - { - "word": "acknowledgement", - "freq": 2.09e-06 - }, - { - "word": "dissatisfaction", - "freq": 2.09e-06 - }, - { - "word": "interchangeable", - "freq": 1.91e-06 - }, - { - "word": "gloucestershire", - "freq": 1.82e-06 - }, - { - "word": "charlottesville", - "freq": 1.78e-06 - }, - { - "word": "inconsistencies", - "freq": 1.78e-06 - }, - { - "word": "transplantation", - "freq": 1.7e-06 - }, - { - "word": "vulnerabilities", - "freq": 1.7e-06 - }, - { - "word": "diversification", - "freq": 1.66e-06 - }, - { - "word": "revolutionaries", - "freq": 1.62e-06 - }, - { - "word": "unintentionally", - "freq": 1.62e-06 - }, - { - "word": "implementations", - "freq": 1.55e-06 - }, - { - "word": "classifications", - "freq": 1.51e-06 - }, - { - "word": "antidepressants", - "freq": 1.45e-06 - }, - { - "word": "unconditionally", - "freq": 1.45e-06 - }, - { - "word": "technologically", - "freq": 1.41e-06 - }, - { - "word": "disappointments", - "freq": 1.32e-06 - }, - { - "word": "synchronization", - "freq": 1.29e-06 - }, - { - "word": "anthropological", - "freq": 1.23e-06 - }, - { - "word": "hospitalization", - "freq": 1.23e-06 - }, - { - "word": "nottinghamshire", - "freq": 1.23e-06 - }, - { - "word": "standardization", - "freq": 1.23e-06 - }, - { - "word": "generalizations", - "freq": 1.17e-06 - }, - { - "word": "buckinghamshire", - "freq": 1.07e-06 - }, - { - "word": "confrontational", - "freq": 1.07e-06 - }, - { - "word": "anthropologists", - "freq": 1.05e-06 - }, - { - "word": "inappropriately", - "freq": 1.05e-06 - }, - { - "word": "electrification", - "freq": 1e-06 - }, - { - "word": "extracurricular", - "freq": 9.77e-07 - }, - { - "word": "phosphorylation", - "freq": 9.77e-07 - }, - { - "word": "methamphetamine", - "freq": 9.33e-07 - }, - { - "word": "comprehensively", - "freq": 9.12e-07 - }, - { - "word": "procrastination", - "freq": 9.12e-07 - }, - { - "word": "troubleshooting", - "freq": 9.12e-07 - }, - { - "word": "differentiating", - "freq": 8.91e-07 - }, - { - "word": "supplementation", - "freq": 8.91e-07 - }, - { - "word": "pharmacological", - "freq": 8.32e-07 - }, - { - "word": "underprivileged", - "freq": 8.32e-07 - }, - { - "word": "chronologically", - "freq": 8.13e-07 - }, - { - "word": "disenfranchised", - "freq": 7.94e-07 - }, - { - "word": "instantaneously", - "freq": 7.94e-07 - }, - { - "word": "interchangeably", - "freq": 7.94e-07 - }, - { - "word": "apprenticeships", - "freq": 7.76e-07 - }, - { - "word": "countermeasures", - "freq": 7.76e-07 - }, - { - "word": "cinematographer", - "freq": 7.59e-07 - }, - { - "word": "electrochemical", - "freq": 7.59e-07 - }, - { - "word": "unsubstantiated", - "freq": 7.59e-07 - }, - { - "word": "distinguishable", - "freq": 7.41e-07 - }, - { - "word": "epidemiological", - "freq": 7.41e-07 - }, - { - "word": "underestimating", - "freq": 7.41e-07 - }, - { - "word": "inconsequential", - "freq": 7.24e-07 - }, - { - "word": "fundamentalists", - "freq": 7.08e-07 - }, - { - "word": "contemporaneous", - "freq": 6.92e-07 - }, - { - "word": "decommissioning", - "freq": 6.92e-07 - }, - { - "word": "infrastructures", - "freq": 6.92e-07 - }, - { - "word": "interconnection", - "freq": 6.76e-07 - }, - { - "word": "disillusionment", - "freq": 6.61e-07 - }, - { - "word": "personification", - "freq": 6.61e-07 - }, - { - "word": "retrospectively", - "freq": 6.61e-07 - }, - { - "word": "totalitarianism", - "freq": 6.61e-07 - }, - { - "word": "intensification", - "freq": 6.46e-07 - }, - { - "word": "reconstructions", - "freq": 6.46e-07 - }, - { - "word": "parliamentarian", - "freq": 6.31e-07 - }, - { - "word": "photojournalist", - "freq": 6.31e-07 - }, - { - "word": "atherosclerosis", - "freq": 6.03e-07 - }, - { - "word": "decontamination", - "freq": 6.03e-07 - }, - { - "word": "philosophically", - "freq": 6.03e-07 - }, - { - "word": "transcriptional", - "freq": 6.03e-07 - }, - { - "word": "controversially", - "freq": 5.89e-07 - }, - { - "word": "democratization", - "freq": 5.89e-07 - }, - { - "word": "appropriateness", - "freq": 5.75e-07 - }, - { - "word": "correspondingly", - "freq": 5.75e-07 - }, - { - "word": "incompatibility", - "freq": 5.62e-07 - }, - { - "word": "musculoskeletal", - "freq": 5.62e-07 - }, - { - "word": "individualistic", - "freq": 5.5e-07 - }, - { - "word": "underperforming", - "freq": 5.5e-07 - }, - { - "word": "anthropomorphic", - "freq": 5.37e-07 - }, - { - "word": "developmentally", - "freq": 5.37e-07 - }, - { - "word": "psychotherapist", - "freq": 5.37e-07 - }, - { - "word": "nationalization", - "freq": 5.13e-07 - }, - { - "word": "rationalization", - "freq": 5.13e-07 - }, - { - "word": "superconducting", - "freq": 5.13e-07 - }, - { - "word": "conservationist", - "freq": 5.01e-07 - }, - { - "word": "excommunication", - "freq": 5.01e-07 - }, - { - "word": "ophthalmologist", - "freq": 5.01e-07 - }, - { - "word": "procrastinating", - "freq": 5.01e-07 - }, - { - "word": "interdependence", - "freq": 4.9e-07 - }, - { - "word": "philanthropists", - "freq": 4.9e-07 - }, - { - "word": "surreptitiously", - "freq": 4.9e-07 - }, - { - "word": "unconsciousness", - "freq": 4.9e-07 - }, - { - "word": "collaboratively", - "freq": 4.79e-07 - }, - { - "word": "corticosteroids", - "freq": 4.68e-07 - }, - { - "word": "physiotherapist", - "freq": 4.68e-07 - }, - { - "word": "trustworthiness", - "freq": 4.68e-07 - }, - { - "word": "insubordination", - "freq": 4.57e-07 - }, - { - "word": "nationalisation", - "freq": 4.57e-07 - }, - { - "word": "pathophysiology", - "freq": 4.57e-07 - }, - { - "word": "benzodiazepines", - "freq": 4.47e-07 - }, - { - "word": "marginalization", - "freq": 4.47e-07 - }, - { - "word": "misrepresenting", - "freq": 4.47e-07 - }, - { - "word": "proportionality", - "freq": 4.47e-07 - }, - { - "word": "proportionately", - "freq": 4.47e-07 - }, - { - "word": "reconsideration", - "freq": 4.47e-07 - }, - { - "word": "crystallization", - "freq": 4.37e-07 - }, - { - "word": "intercollegiate", - "freq": 4.37e-07 - }, - { - "word": "maneuverability", - "freq": 4.37e-07 - }, - { - "word": "objectification", - "freq": 4.37e-07 - }, - { - "word": "discontinuation", - "freq": 4.27e-07 - }, - { - "word": "plenipotentiary", - "freq": 4.27e-07 - }, - { - "word": "architecturally", - "freq": 4.17e-07 - }, - { - "word": "interventionist", - "freq": 4.17e-07 - }, - { - "word": "traditionalists", - "freq": 4.17e-07 - }, - { - "word": "epistemological", - "freq": 4.07e-07 - }, - { - "word": "physiologically", - "freq": 4.07e-07 - }, - { - "word": "crystallography", - "freq": 3.98e-07 - }, - { - "word": "carmarthenshire", - "freq": 3.89e-07 - }, - { - "word": "nongovernmental", - "freq": 3.89e-07 - }, - { - "word": "revolutionizing", - "freq": 3.89e-07 - }, - { - "word": "transfiguration", - "freq": 3.89e-07 - }, - { - "word": "bioavailability", - "freq": 3.72e-07 - }, - { - "word": "personalization", - "freq": 3.72e-07 - }, - { - "word": "specializations", - "freq": 3.72e-07 - }, - { - "word": "unsophisticated", - "freq": 3.72e-07 - }, - { - "word": "computationally", - "freq": 3.63e-07 - }, - { - "word": "electrophoresis", - "freq": 3.63e-07 - }, - { - "word": "identifications", - "freq": 3.63e-07 - }, - { - "word": "infrastructural", - "freq": 3.63e-07 - }, - { - "word": "instrumentalist", - "freq": 3.55e-07 - }, - { - "word": "investigational", - "freq": 3.55e-07 - }, - { - "word": "neuroscientists", - "freq": 3.55e-07 - }, - { - "word": "resourcefulness", - "freq": 3.55e-07 - }, - { - "word": "microprocessors", - "freq": 3.47e-07 - }, - { - "word": "reauthorization", - "freq": 3.47e-07 - }, - { - "word": "unceremoniously", - "freq": 3.47e-07 - }, - { - "word": "criminalization", - "freq": 3.39e-07 - }, - { - "word": "heterosexuality", - "freq": 3.31e-07 - }, - { - "word": "improvisational", - "freq": 3.31e-07 - }, - { - "word": "correspondences", - "freq": 3.24e-07 - }, - { - "word": "destabilization", - "freq": 3.24e-07 - }, - { - "word": "sympathetically", - "freq": 3.24e-07 - }, - { - "word": "intellectualism", - "freq": 3.16e-07 - }, - { - "word": "morphologically", - "freq": 3.16e-07 - }, - { - "word": "reconfiguration", - "freq": 3.16e-07 - }, - { - "word": "standardisation", - "freq": 3.16e-07 - }, - { - "word": "cardiopulmonary", - "freq": 3.09e-07 - }, - { - "word": "disappointingly", - "freq": 3.02e-07 - }, - { - "word": "indemnification", - "freq": 3.02e-07 - }, - { - "word": "paleontologists", - "freq": 3.02e-07 - }, - { - "word": "psychopathology", - "freq": 3.02e-07 - }, - { - "word": "multifunctional", - "freq": 2.95e-07 - }, - { - "word": "unsportsmanlike", - "freq": 2.95e-07 - }, - { - "word": "autobiographies", - "freq": 2.88e-07 - }, - { - "word": "bibliographical", - "freq": 2.88e-07 - }, - { - "word": "ineffectiveness", - "freq": 2.88e-07 - }, - { - "word": "polyunsaturated", - "freq": 2.88e-07 - }, - { - "word": "reproducibility", - "freq": 2.88e-07 - }, - { - "word": "desertification", - "freq": 2.82e-07 - }, - { - "word": "endocrinologist", - "freq": 2.82e-07 - }, - { - "word": "impressionistic", - "freq": 2.82e-07 - }, - { - "word": "microbiological", - "freq": 2.82e-07 - }, - { - "word": "photojournalism", - "freq": 2.82e-07 - }, - { - "word": "superconductors", - "freq": 2.82e-07 - }, - { - "word": "microcontroller", - "freq": 2.75e-07 - }, - { - "word": "slaughterhouses", - "freq": 2.75e-07 - }, - { - "word": "distinctiveness", - "freq": 2.69e-07 - }, - { - "word": "functionalities", - "freq": 2.69e-07 - }, - { - "word": "transliteration", - "freq": 2.69e-07 - }, - { - "word": "institutionally", - "freq": 2.63e-07 - }, - { - "word": "glaxosmithkline", - "freq": 2.51e-07 - }, - { - "word": "contraindicated", - "freq": 2.45e-07 - }, - { - "word": "gastroenteritis", - "freq": 2.45e-07 - }, - { - "word": "demographically", - "freq": 2.4e-07 - }, - { - "word": "interconnecting", - "freq": 2.4e-07 - }, - { - "word": "rationalisation", - "freq": 2.4e-07 - }, - { - "word": "cerebrovascular", - "freq": 2.29e-07 - }, - { - "word": "conscientiously", - "freq": 2.29e-07 - }, - { - "word": "interventionism", - "freq": 2.29e-07 - }, - { - "word": "neuropsychology", - "freq": 2.29e-07 - }, - { - "word": "uncontroversial", - "freq": 2.24e-07 - }, - { - "word": "circumferential", - "freq": 2.19e-07 - }, - { - "word": "disadvantageous", - "freq": 2.19e-07 - }, - { - "word": "epidemiologists", - "freq": 2.19e-07 - }, - { - "word": "hyperthyroidism", - "freq": 2.19e-07 - }, - { - "word": "polycrystalline", - "freq": 2.19e-07 - }, - { - "word": "catheterization", - "freq": 2.14e-07 - }, - { - "word": "stereotypically", - "freq": 2.14e-07 - }, - { - "word": "unrealistically", - "freq": 2.14e-07 - }, - { - "word": "commodification", - "freq": 2.09e-07 - }, - { - "word": "desensitization", - "freq": 2.09e-07 - }, - { - "word": "disorganization", - "freq": 2.09e-07 - }, - { - "word": "electrodynamics", - "freq": 2.04e-07 - }, - { - "word": "generalisations", - "freq": 2.04e-07 - }, - { - "word": "misappropriated", - "freq": 2.04e-07 - }, - { - "word": "underemployment", - "freq": 2.04e-07 - }, - { - "word": "californication", - "freq": 2e-07 - }, - { - "word": "misinterpreting", - "freq": 2e-07 - }, - { - "word": "undistinguished", - "freq": 2e-07 - }, - { - "word": "complementarity", - "freq": 1.95e-07 - }, - { - "word": "intelligibility", - "freq": 1.95e-07 - }, - { - "word": "internalization", - "freq": 1.95e-07 - }, - { - "word": "synchronisation", - "freq": 1.95e-07 - }, - { - "word": "parasympathetic", - "freq": 1.91e-07 - }, - { - "word": "presuppositions", - "freq": 1.91e-07 - }, - { - "word": "acknowledgments", - "freq": 1.82e-07 - }, - { - "word": "miniaturization", - "freq": 1.82e-07 - }, - { - "word": "neoconservative", - "freq": 1.82e-07 - }, - { - "word": "authoritatively", - "freq": 1.78e-07 - }, - { - "word": "conceptualizing", - "freq": 1.78e-07 - }, - { - "word": "democratisation", - "freq": 1.78e-07 - }, - { - "word": "glucocorticoids", - "freq": 1.78e-07 - }, - { - "word": "humanitarianism", - "freq": 1.78e-07 - }, - { - "word": "paleontological", - "freq": 1.78e-07 - }, - { - "word": "polysaccharides", - "freq": 1.78e-07 - }, - { - "word": "therapeutically", - "freq": 1.78e-07 - }, - { - "word": "instrumentality", - "freq": 1.74e-07 - }, - { - "word": "neurophysiology", - "freq": 1.74e-07 - }, - { - "word": "overrepresented", - "freq": 1.74e-07 - }, - { - "word": "discontinuities", - "freq": 1.7e-07 - }, - { - "word": "invulnerability", - "freq": 1.7e-07 - }, - { - "word": "omnidirectional", - "freq": 1.7e-07 - }, - { - "word": "pharmacokinetic", - "freq": 1.7e-07 - }, - { - "word": "ultrasonography", - "freq": 1.7e-07 - }, - { - "word": "hospitalisation", - "freq": 1.66e-07 - }, - { - "word": "methylphenidate", - "freq": 1.66e-07 - }, - { - "word": "microscopically", - "freq": 1.66e-07 - }, - { - "word": "oligonucleotide", - "freq": 1.66e-07 - }, - { - "word": "atherosclerotic", - "freq": 1.62e-07 - }, - { - "word": "conservatorship", - "freq": 1.62e-07 - }, - { - "word": "disrespectfully", - "freq": 1.62e-07 - }, - { - "word": "unrighteousness", - "freq": 1.62e-07 - }, - { - "word": "cinematographic", - "freq": 1.58e-07 - }, - { - "word": "inaccessibility", - "freq": 1.58e-07 - }, - { - "word": "underestimation", - "freq": 1.58e-07 - }, - { - "word": "cosmopolitanism", - "freq": 1.55e-07 - }, - { - "word": "czechoslovakian", - "freq": 1.55e-07 - }, - { - "word": "euphemistically", - "freq": 1.55e-07 - }, - { - "word": "marginalisation", - "freq": 1.55e-07 - }, - { - "word": "pseudoephedrine", - "freq": 1.55e-07 - }, - { - "word": "condescendingly", - "freq": 1.51e-07 - }, - { - "word": "interscholastic", - "freq": 1.51e-07 - }, - { - "word": "neurobiological", - "freq": 1.51e-07 - }, - { - "word": "personalisation", - "freq": 1.51e-07 - }, - { - "word": "americanization", - "freq": 1.48e-07 - }, - { - "word": "anticoagulation", - "freq": 1.48e-07 - }, - { - "word": "perpendicularly", - "freq": 1.48e-07 - }, - { - "word": "infinitesimally", - "freq": 1.45e-07 - }, - { - "word": "astrophysicists", - "freq": 1.41e-07 - }, - { - "word": "counterbalanced", - "freq": 1.41e-07 - }, - { - "word": "predispositions", - "freq": 1.41e-07 - }, - { - "word": "autocorrelation", - "freq": 1.38e-07 - }, - { - "word": "congressionally", - "freq": 1.38e-07 - }, - { - "word": "fivethirtyeight", - "freq": 1.38e-07 - }, - { - "word": "monounsaturated", - "freq": 1.38e-07 - }, - { - "word": "sociolinguistic", - "freq": 1.38e-07 - }, - { - "word": "bioluminescence", - "freq": 1.35e-07 - }, - { - "word": "gravitationally", - "freq": 1.35e-07 - }, - { - "word": "maintainability", - "freq": 1.35e-07 - }, - { - "word": "meaninglessness", - "freq": 1.35e-07 - }, - { - "word": "physicochemical", - "freq": 1.35e-07 - }, - { - "word": "simplifications", - "freq": 1.35e-07 - }, - { - "word": "superintendents", - "freq": 1.32e-07 - }, - { - "word": "compassionately", - "freq": 1.32e-07 - }, - { - "word": "dispassionately", - "freq": 1.32e-07 - }, - { - "word": "heteronormative", - "freq": 1.32e-07 - }, - { - "word": "multilingualism", - "freq": 1.32e-07 - }, - { - "word": "particularities", - "freq": 1.32e-07 - }, - { - "word": "sensationalized", - "freq": 1.32e-07 - }, - { - "word": "palaeontologist", - "freq": 1.29e-07 - }, - { - "word": "aerodynamically", - "freq": 1.26e-07 - }, - { - "word": "commercializing", - "freq": 1.26e-07 - }, - { - "word": "leagueoflegends", - "freq": 1.26e-07 - }, - { - "word": "manoeuvrability", - "freq": 1.26e-07 - }, - { - "word": "reapportionment", - "freq": 1.26e-07 - }, - { - "word": "reestablishment", - "freq": 1.26e-07 - }, - { - "word": "enfranchisement", - "freq": 1.23e-07 - }, - { - "word": "neuroplasticity", - "freq": 1.23e-07 - }, - { - "word": "overconsumption", - "freq": 1.23e-07 - }, - { - "word": "schistosomiasis", - "freq": 1.23e-07 - }, - { - "word": "chromatographic", - "freq": 1.2e-07 - }, - { - "word": "decriminalizing", - "freq": 1.2e-07 - }, - { - "word": "kindergarteners", - "freq": 1.2e-07 - }, - { - "word": "personalfinance", - "freq": 1.2e-07 - }, - { - "word": "realdonaldtrump", - "freq": 1.2e-07 - }, - { - "word": "renormalization", - "freq": 1.2e-07 - }, - { - "word": "airconditioning", - "freq": 1.17e-07 - }, - { - "word": "discombobulated", - "freq": 1.17e-07 - }, - { - "word": "micromanagement", - "freq": 1.17e-07 - }, - { - "word": "miscalculations", - "freq": 1.17e-07 - }, - { - "word": "anticompetitive", - "freq": 1.15e-07 - }, - { - "word": "countercultural", - "freq": 1.15e-07 - }, - { - "word": "destructiveness", - "freq": 1.15e-07 - }, - { - "word": "diphenhydramine", - "freq": 1.15e-07 - }, - { - "word": "gluconeogenesis", - "freq": 1.15e-07 - }, - { - "word": "misapprehension", - "freq": 1.15e-07 - }, - { - "word": "recertification", - "freq": 1.15e-07 - }, - { - "word": "reconciliations", - "freq": 1.15e-07 - }, - { - "word": "spermatogenesis", - "freq": 1.15e-07 - }, - { - "word": "unquestioningly", - "freq": 1.15e-07 - }, - { - "word": "noncommissioned", - "freq": 1.12e-07 - }, - { - "word": "reorganizations", - "freq": 1.12e-07 - }, - { - "word": "stereochemistry", - "freq": 1.12e-07 - }, - { - "word": "counterexamples", - "freq": 1.1e-07 - }, - { - "word": "cytomegalovirus", - "freq": 1.1e-07 - }, - { - "word": "inconveniencing", - "freq": 1.1e-07 - }, - { - "word": "internationales", - "freq": 1.1e-07 - }, - { - "word": "neuroprotective", - "freq": 1.1e-07 - }, - { - "word": "optoelectronics", - "freq": 1.1e-07 - }, - { - "word": "pharmacotherapy", - "freq": 1.1e-07 - }, - { - "word": "rumpelstiltskin", - "freq": 1.1e-07 - }, - { - "word": "criminalisation", - "freq": 1.07e-07 - }, - { - "word": "heartbreakingly", - "freq": 1.07e-07 - }, - { - "word": "horticulturists", - "freq": 1.07e-07 - }, - { - "word": "incomprehension", - "freq": 1.07e-07 - }, - { - "word": "interferometric", - "freq": 1.07e-07 - }, - { - "word": "bacteriological", - "freq": 1.05e-07 - }, - { - "word": "chloramphenicol", - "freq": 1.05e-07 - }, - { - "word": "familiarization", - "freq": 1.05e-07 - }, - { - "word": "microbiologists", - "freq": 1.05e-07 - }, - { - "word": "microelectronic", - "freq": 1.05e-07 - }, - { - "word": "microstructures", - "freq": 1.05e-07 - }, - { - "word": "multilateralism", - "freq": 1.05e-07 - }, - { - "word": "sadomasochistic", - "freq": 1.05e-07 - }, - { - "word": "schwarzeneggers", - "freq": 1.05e-07 - }, - { - "word": "acclimatization", - "freq": 1.02e-07 - }, - { - "word": "compressibility", - "freq": 1.02e-07 - }, - { - "word": "electrophoretic", - "freq": 1.02e-07 - }, - { - "word": "interprovincial", - "freq": 1.02e-07 - }, - { - "word": "presbyterianism", - "freq": 1.02e-07 - }, - { - "word": "temperamentally", - "freq": 1.02e-07 - }, - { - "word": "topographically", - "freq": 1.02e-07 - }, - { - "word": "anticholinergic", - "freq": 1e-07 - }, - { - "word": "computerization", - "freq": 1e-07 - }, - { - "word": "cryptosporidium", - "freq": 1e-07 - }, - { - "word": "impossibilities", - "freq": 1e-07 - }, - { - "word": "schizoaffective", - "freq": 1e-07 - }, - { - "word": "immunoglobulins", - "freq": 9.77e-08 - }, - { - "word": "parthenogenesis", - "freq": 9.77e-08 - }, - { - "word": "polychlorinated", - "freq": 9.77e-08 - }, - { - "word": "pretentiousness", - "freq": 9.77e-08 - }, - { - "word": "procrastinators", - "freq": 9.77e-08 - }, - { - "word": "revolutionising", - "freq": 9.77e-08 - }, - { - "word": "controllability", - "freq": 9.55e-08 - }, - { - "word": "disconcertingly", - "freq": 9.55e-08 - }, - { - "word": "inconspicuously", - "freq": 9.33e-08 - }, - { - "word": "microstructural", - "freq": 9.33e-08 - }, - { - "word": "supercapacitors", - "freq": 9.33e-08 - }, - { - "word": "synergistically", - "freq": 9.33e-08 - }, - { - "word": "counterargument", - "freq": 9.12e-08 - }, - { - "word": "ethnomusicology", - "freq": 9.12e-08 - }, - { - "word": "prekindergarten", - "freq": 9.12e-08 - }, - { - "word": "proinflammatory", - "freq": 9.12e-08 - }, - { - "word": "thromboembolism", - "freq": 9.12e-08 - }, - { - "word": "consciousnesses", - "freq": 8.91e-08 - }, - { - "word": "consequentially", - "freq": 8.91e-08 - }, - { - "word": "oligosaccharide", - "freq": 8.91e-08 - }, - { - "word": "organophosphate", - "freq": 8.91e-08 - }, - { - "word": "oversimplifying", - "freq": 8.91e-08 - }, - { - "word": "unprecedentedly", - "freq": 8.91e-08 - }, - { - "word": "intraperitoneal", - "freq": 8.71e-08 - }, - { - "word": "multiplications", - "freq": 8.71e-08 - }, - { - "word": "transportations", - "freq": 8.71e-08 - }, - { - "word": "unpronounceable", - "freq": 8.71e-08 - }, - { - "word": "algorithmically", - "freq": 8.51e-08 - }, - { - "word": "contextualizing", - "freq": 8.51e-08 - }, - { - "word": "electroacoustic", - "freq": 8.51e-08 - }, - { - "word": "industrializing", - "freq": 8.51e-08 - }, - { - "word": "interferometers", - "freq": 8.51e-08 - }, - { - "word": "anthropocentric", - "freq": 8.32e-08 - }, - { - "word": "complementation", - "freq": 8.32e-08 - }, - { - "word": "expressionistic", - "freq": 8.32e-08 - }, - { - "word": "lightheadedness", - "freq": 8.32e-08 - }, - { - "word": "progressiveness", - "freq": 8.32e-08 - }, - { - "word": "superintendence", - "freq": 8.32e-08 - }, - { - "word": "superstructures", - "freq": 8.32e-08 - }, - { - "word": "videoconference", - "freq": 8.32e-08 - }, - { - "word": "circumnavigated", - "freq": 8.13e-08 - }, - { - "word": "distributorship", - "freq": 8.13e-08 - }, - { - "word": "educationalists", - "freq": 8.13e-08 - }, - { - "word": "montgomeryshire", - "freq": 8.13e-08 - }, - { - "word": "anticonvulsants", - "freq": 7.94e-08 - }, - { - "word": "decarboxylation", - "freq": 7.94e-08 - }, - { - "word": "denitrification", - "freq": 7.94e-08 - }, - { - "word": "huntingdonshire", - "freq": 7.76e-08 - }, - { - "word": "materialization", - "freq": 7.76e-08 - }, - { - "word": "transferability", - "freq": 7.76e-08 - }, - { - "word": "carcinogenicity", - "freq": 7.59e-08 - }, - { - "word": "discriminations", - "freq": 7.59e-08 - }, - { - "word": "hemochromatosis", - "freq": 7.59e-08 - }, - { - "word": "heterochromatin", - "freq": 7.59e-08 - }, - { - "word": "phosphorescence", - "freq": 7.59e-08 - }, - { - "word": "postoperatively", - "freq": 7.59e-08 - }, - { - "word": "segregationists", - "freq": 7.59e-08 - }, - { - "word": "acclimatisation", - "freq": 7.41e-08 - }, - { - "word": "biogeochemistry", - "freq": 7.41e-08 - }, - { - "word": "concessionaires", - "freq": 7.41e-08 - }, - { - "word": "investigaciones", - "freq": 7.41e-08 - }, - { - "word": "myelodysplastic", - "freq": 7.41e-08 - }, - { - "word": "neuropsychiatry", - "freq": 7.41e-08 - }, - { - "word": "rumplestiltskin", - "freq": 7.41e-08 - }, - { - "word": "suburbanization", - "freq": 7.41e-08 - }, - { - "word": "uncommunicative", - "freq": 7.41e-08 - }, - { - "word": "categorizations", - "freq": 7.24e-08 - }, - { - "word": "littlebigplanet", - "freq": 7.24e-08 - }, - { - "word": "overstimulation", - "freq": 7.24e-08 - }, - { - "word": "parallelization", - "freq": 7.24e-08 - }, - { - "word": "preconditioning", - "freq": 7.24e-08 - }, - { - "word": "serendipitously", - "freq": 7.24e-08 - }, - { - "word": "uninterruptible", - "freq": 7.24e-08 - }, - { - "word": "bioaccumulation", - "freq": 7.08e-08 - }, - { - "word": "biotechnologies", - "freq": 7.08e-08 - }, - { - "word": "dinoflagellates", - "freq": 7.08e-08 - }, - { - "word": "merchantability", - "freq": 7.08e-08 - }, - { - "word": "preservationist", - "freq": 7.08e-08 - }, - { - "word": "prognostication", - "freq": 7.08e-08 - }, - { - "word": "prohibitionists", - "freq": 7.08e-08 - }, - { - "word": "regionalization", - "freq": 7.08e-08 - }, - { - "word": "systematization", - "freq": 7.08e-08 - }, - { - "word": "representatives", - "freq": 6.92e-08 - }, - { - "word": "bisphosphonates", - "freq": 6.92e-08 - }, - { - "word": "insurrectionary", - "freq": 6.92e-08 - }, - { - "word": "intertextuality", - "freq": 6.92e-08 - }, - { - "word": "lymphadenopathy", - "freq": 6.92e-08 - }, - { - "word": "photomultiplier", - "freq": 6.92e-08 - }, - { - "word": "thirtysomething", - "freq": 6.92e-08 - }, - { - "word": "thoughtlessness", - "freq": 6.92e-08 - }, - { - "word": "compositionally", - "freq": 6.76e-08 - }, - { - "word": "electroporation", - "freq": 6.76e-08 - }, - { - "word": "interdependency", - "freq": 6.76e-08 - }, - { - "word": "nonprescription", - "freq": 6.76e-08 - }, - { - "word": "nucleosynthesis", - "freq": 6.76e-08 - }, - { - "word": "preternaturally", - "freq": 6.76e-08 - }, - { - "word": "twentysomething", - "freq": 6.76e-08 - }, - { - "word": "crystallisation", - "freq": 6.61e-08 - }, - { - "word": "disproportional", - "freq": 6.61e-08 - }, - { - "word": "constructionist", - "freq": 6.46e-08 - }, - { - "word": "counterattacked", - "freq": 6.46e-08 - }, - { - "word": "inquisitiveness", - "freq": 6.46e-08 - }, - { - "word": "intramuscularly", - "freq": 6.46e-08 - }, - { - "word": "kindertransport", - "freq": 6.46e-08 - }, - { - "word": "monosaccharides", - "freq": 6.46e-08 - }, - { - "word": "neoconservatism", - "freq": 6.46e-08 - }, - { - "word": "specialisations", - "freq": 6.46e-08 - }, - { - "word": "uninterruptedly", - "freq": 6.46e-08 - }, - { - "word": "cholecystectomy", - "freq": 6.31e-08 - }, - { - "word": "dissimilarities", - "freq": 6.31e-08 - }, - { - "word": "interrogatories", - "freq": 6.31e-08 - }, - { - "word": "medulloblastoma", - "freq": 6.31e-08 - }, - { - "word": "neuroscientific", - "freq": 6.31e-08 - }, - { - "word": "proprietorships", - "freq": 6.31e-08 - }, - { - "word": "trypanosomiasis", - "freq": 6.31e-08 - }, - { - "word": "adenocarcinomas", - "freq": 6.17e-08 - }, - { - "word": "destabilisation", - "freq": 6.17e-08 - }, - { - "word": "parametrization", - "freq": 6.17e-08 - }, - { - "word": "postcolonialism", - "freq": 6.17e-08 - }, - { - "word": "problematically", - "freq": 6.17e-08 - }, - { - "word": "superimposition", - "freq": 6.17e-08 - }, - { - "word": "endocannabinoid", - "freq": 6.03e-08 - }, - { - "word": "existentialists", - "freq": 6.03e-08 - }, - { - "word": "jurisprudential", - "freq": 6.03e-08 - }, - { - "word": "logarithmically", - "freq": 6.03e-08 - }, - { - "word": "operationalized", - "freq": 6.03e-08 - }, - { - "word": "retroperitoneal", - "freq": 6.03e-08 - }, - { - "word": "ultrafiltration", - "freq": 6.03e-08 - }, - { - "word": "unprepossessing", - "freq": 6.03e-08 - }, - { - "word": "desulfurization", - "freq": 5.89e-08 - }, - { - "word": "experimentalist", - "freq": 5.89e-08 - }, - { - "word": "friedrichshafen", - "freq": 5.89e-08 - }, - { - "word": "professionalize", - "freq": 5.89e-08 - }, - { - "word": "daimlerchrysler", - "freq": 5.75e-08 - }, - { - "word": "electronegative", - "freq": 5.75e-08 - }, - { - "word": "exemplification", - "freq": 5.75e-08 - }, - { - "word": "insignificantly", - "freq": 5.75e-08 - }, - { - "word": "obstructionists", - "freq": 5.75e-08 - }, - { - "word": "superconductive", - "freq": 5.75e-08 - }, - { - "word": "unreconstructed", - "freq": 5.75e-08 - }, - { - "word": "hydroxybutyrate", - "freq": 5.62e-08 - }, - { - "word": "immunotherapies", - "freq": 5.62e-08 - }, - { - "word": "nanocrystalline", - "freq": 5.62e-08 - }, - { - "word": "neuromodulation", - "freq": 5.62e-08 - }, - { - "word": "photoionization", - "freq": 5.62e-08 - }, - { - "word": "vascularization", - "freq": 5.62e-08 - }, - { - "word": "constructionism", - "freq": 5.5e-08 - }, - { - "word": "counterfactuals", - "freq": 5.5e-08 - }, - { - "word": "docosahexaenoic", - "freq": 5.5e-08 - }, - { - "word": "immunologically", - "freq": 5.5e-08 - }, - { - "word": "industriousness", - "freq": 5.5e-08 - }, - { - "word": "overdevelopment", - "freq": 5.5e-08 - }, - { - "word": "pharmacodynamic", - "freq": 5.5e-08 - }, - { - "word": "configurational", - "freq": 5.37e-08 - }, - { - "word": "superintendency", - "freq": 5.37e-08 - }, - { - "word": "biopsychosocial", - "freq": 5.25e-08 - }, - { - "word": "dichloromethane", - "freq": 5.25e-08 - }, - { - "word": "experimentalism", - "freq": 5.25e-08 - }, - { - "word": "mechanistically", - "freq": 5.25e-08 - }, - { - "word": "nonprofessional", - "freq": 5.25e-08 - }, - { - "word": "tetrahydrofuran", - "freq": 5.25e-08 - }, - { - "word": "bronchodilators", - "freq": 5.13e-08 - }, - { - "word": "macroscopically", - "freq": 5.13e-08 - }, - { - "word": "ultrastructural", - "freq": 5.13e-08 - }, - { - "word": "africanamerican", - "freq": 5.01e-08 - }, - { - "word": "decontaminating", - "freq": 5.01e-08 - }, - { - "word": "demonstratively", - "freq": 5.01e-08 - }, - { - "word": "excommunicating", - "freq": 5.01e-08 - }, - { - "word": "internationalen", - "freq": 5.01e-08 - }, - { - "word": "microelectrodes", - "freq": 5.01e-08 - }, - { - "word": "nearsightedness", - "freq": 5.01e-08 - }, - { - "word": "oligomerization", - "freq": 5.01e-08 - }, - { - "word": "preimplantation", - "freq": 5.01e-08 - }, - { - "word": "remanufacturing", - "freq": 5.01e-08 - }, - { - "word": "underinvestment", - "freq": 5.01e-08 - }, - { - "word": "cannibalization", - "freq": 4.9e-08 - }, - { - "word": "conventionality", - "freq": 4.9e-08 - }, - { - "word": "irreversibility", - "freq": 4.9e-08 - }, - { - "word": "masculinization", - "freq": 4.9e-08 - }, - { - "word": "ritualistically", - "freq": 4.9e-08 - }, - { - "word": "approachability", - "freq": 4.79e-08 - }, - { - "word": "dehydrogenation", - "freq": 4.79e-08 - }, - { - "word": "discoverability", - "freq": 4.79e-08 - }, - { - "word": "intraepithelial", - "freq": 4.79e-08 - }, - { - "word": "lexicographical", - "freq": 4.79e-08 - }, - { - "word": "uncharacterized", - "freq": 4.79e-08 - }, - { - "word": "vasoconstrictor", - "freq": 4.79e-08 - }, - { - "word": "assimilationist", - "freq": 4.68e-08 - }, - { - "word": "circumscription", - "freq": 4.68e-08 - }, - { - "word": "inadmissibility", - "freq": 4.68e-08 - }, - { - "word": "insurrectionist", - "freq": 4.68e-08 - }, - { - "word": "intussusception", - "freq": 4.68e-08 - }, - { - "word": "uncomprehending", - "freq": 4.68e-08 - }, - { - "word": "unobjectionable", - "freq": 4.68e-08 - }, - { - "word": "biostratigraphy", - "freq": 4.57e-08 - }, - { - "word": "externalization", - "freq": 4.57e-08 - }, - { - "word": "historiographic", - "freq": 4.57e-08 - }, - { - "word": "inattentiveness", - "freq": 4.57e-08 - }, - { - "word": "neuroanatomical", - "freq": 4.57e-08 - }, - { - "word": "reinvestigation", - "freq": 4.57e-08 - }, - { - "word": "supersaturation", - "freq": 4.57e-08 - }, - { - "word": "connoisseurship", - "freq": 4.47e-08 - }, - { - "word": "ecclesiological", - "freq": 4.47e-08 - }, - { - "word": "histopathologic", - "freq": 4.47e-08 - }, - { - "word": "historiographer", - "freq": 4.47e-08 - }, - { - "word": "hydrogeological", - "freq": 4.47e-08 - }, - { - "word": "aristotelianism", - "freq": 4.37e-08 - }, - { - "word": "corynebacterium", - "freq": 4.37e-08 - }, - { - "word": "hermaphroditism", - "freq": 4.37e-08 - }, - { - "word": "intersubjective", - "freq": 4.37e-08 - }, - { - "word": "pessimistically", - "freq": 4.27e-08 - }, - { - "word": "photosynthesize", - "freq": 4.27e-08 - }, - { - "word": "atmospherically", - "freq": 4.17e-08 - }, - { - "word": "biogeographical", - "freq": 4.17e-08 - }, - { - "word": "counterproposal", - "freq": 4.17e-08 - }, - { - "word": "sympathomimetic", - "freq": 4.17e-08 - }, - { - "word": "anteroposterior", - "freq": 4.07e-08 - }, - { - "word": "discontinuously", - "freq": 4.07e-08 - }, - { - "word": "intermodulation", - "freq": 4.07e-08 - }, - { - "word": "memorialization", - "freq": 4.07e-08 - }, - { - "word": "preconstruction", - "freq": 4.07e-08 - }, - { - "word": "preregistration", - "freq": 4.07e-08 - }, - { - "word": "semitransparent", - "freq": 4.07e-08 - }, - { - "word": "parthenogenetic", - "freq": 3.98e-08 - }, - { - "word": "substitutionary", - "freq": 3.98e-08 - }, - { - "word": "symptomatically", - "freq": 3.98e-08 - }, - { - "word": "incommensurable", - "freq": 3.8e-08 - }, - { - "word": "parliamentarism", - "freq": 3.8e-08 - }, - { - "word": "nontransferable", - "freq": 3.72e-08 - }, - { - "word": "parenthetically", - "freq": 3.72e-08 - }, - { - "word": "supernaturalism", - "freq": 3.72e-08 - }, - { - "word": "adventurousness", - "freq": 3.63e-08 - }, - { - "word": "agriculturalist", - "freq": 3.63e-08 - }, - { - "word": "noncommunicable", - "freq": 3.63e-08 - }, - { - "word": "phenolphthalein", - "freq": 3.63e-08 - }, - { - "word": "superheterodyne", - "freq": 3.63e-08 - }, - { - "word": "inconsiderately", - "freq": 3.55e-08 - }, - { - "word": "intracellularly", - "freq": 3.55e-08 - }, - { - "word": "reconsolidation", - "freq": 3.55e-08 - }, - { - "word": "translationally", - "freq": 3.55e-08 - }, - { - "word": "decarbonization", - "freq": 3.47e-08 - }, - { - "word": "thalamocortical", - "freq": 3.39e-08 - }, - { - "word": "unauthenticated", - "freq": 3.39e-08 - }, - { - "word": "aluminosilicate", - "freq": 3.31e-08 - }, - { - "word": "draughtsmanship", - "freq": 3.31e-08 - }, - { - "word": "intercomparison", - "freq": 3.31e-08 - }, - { - "word": "perfectionistic", - "freq": 3.31e-08 - }, - { - "word": "trigonometrical", - "freq": 3.31e-08 - }, - { - "word": "unchallengeable", - "freq": 3.31e-08 - }, - { - "word": "unparliamentary", - "freq": 3.31e-08 - }, - { - "word": "europeanization", - "freq": 3.24e-08 - }, - { - "word": "reincorporation", - "freq": 3.24e-08 - }, - { - "word": "spinocerebellar", - "freq": 3.24e-08 - }, - { - "word": "autoradiography", - "freq": 3.16e-08 - }, - { - "word": "thermochemistry", - "freq": 3.16e-08 - }, - { - "word": "cholecystokinin", - "freq": 3.09e-08 - }, - { - "word": "hypopituitarism", - "freq": 3.09e-08 - }, - { - "word": "intellectualize", - "freq": 3.09e-08 - }, - { - "word": "interconversion", - "freq": 3.09e-08 - }, - { - "word": "proselytization", - "freq": 3.09e-08 - }, - { - "word": "disinterestedly", - "freq": 3.02e-08 - }, - { - "word": "ethylenediamine", - "freq": 3.02e-08 - }, - { - "word": "interfraternity", - "freq": 3.02e-08 - }, - { - "word": "observationally", - "freq": 3.02e-08 - }, - { - "word": "uncomplimentary", - "freq": 3.02e-08 - }, - { - "word": "agranulocytosis", - "freq": 2.95e-08 - }, - { - "word": "metasedimentary", - "freq": 2.95e-08 - }, - { - "word": "electropositive", - "freq": 2.88e-08 - }, - { - "word": "extrajudicially", - "freq": 2.88e-08 - }, - { - "word": "stratigraphical", - "freq": 2.88e-08 - }, - { - "word": "superstitiously", - "freq": 2.88e-08 - }, - { - "word": "undemonstrative", - "freq": 2.88e-08 - }, - { - "word": "antepenultimate", - "freq": 2.82e-08 - }, - { - "word": "distractibility", - "freq": 2.82e-08 - }, - { - "word": "electrosurgical", - "freq": 2.82e-08 - }, - { - "word": "intellectuality", - "freq": 2.82e-08 - }, - { - "word": "interuniversity", - "freq": 2.82e-08 - }, - { - "word": "mischievousness", - "freq": 2.82e-08 - }, - { - "word": "photogrammetric", - "freq": 2.82e-08 - }, - { - "word": "supraclavicular", - "freq": 2.82e-08 - }, - { - "word": "typographically", - "freq": 2.82e-08 - }, - { - "word": "bronchoalveolar", - "freq": 2.75e-08 - }, - { - "word": "contemporaneity", - "freq": 2.75e-08 - }, - { - "word": "weatherproofing", - "freq": 2.75e-08 - }, - { - "word": "interphalangeal", - "freq": 2.69e-08 - }, - { - "word": "recognizability", - "freq": 2.69e-08 - }, - { - "word": "choriocarcinoma", - "freq": 2.63e-08 - }, - { - "word": "impenetrability", - "freq": 2.63e-08 - }, - { - "word": "introspectively", - "freq": 2.63e-08 - }, - { - "word": "radiotelegraphy", - "freq": 2.63e-08 - }, - { - "word": "mischaracterize", - "freq": 2.57e-08 - }, - { - "word": "autotransformer", - "freq": 2.51e-08 - }, - { - "word": "brachiocephalic", - "freq": 2.51e-08 - }, - { - "word": "disentanglement", - "freq": 2.51e-08 - }, - { - "word": "electrodialysis", - "freq": 2.51e-08 - }, - { - "word": "psychiatrically", - "freq": 2.51e-08 - }, - { - "word": "nonconventional", - "freq": 2.45e-08 - }, - { - "word": "pentaerythritol", - "freq": 2.45e-08 - }, - { - "word": "reappropriation", - "freq": 2.45e-08 - }, - { - "word": "temporoparietal", - "freq": 2.45e-08 - }, - { - "word": "contradictorily", - "freq": 2.4e-08 - }, - { - "word": "heterogeneously", - "freq": 2.4e-08 - }, - { - "word": "hypochondriasis", - "freq": 2.4e-08 - }, - { - "word": "retroreflective", - "freq": 2.4e-08 - }, - { - "word": "contentiousness", - "freq": 2.34e-08 - }, - { - "word": "disarticulation", - "freq": 2.34e-08 - }, - { - "word": "demagnetization", - "freq": 2.29e-08 - }, - { - "word": "photosensitizer", - "freq": 2.29e-08 - }, - { - "word": "sanctimoniously", - "freq": 2.29e-08 - }, - { - "word": "anticlericalism", - "freq": 2.24e-08 - }, - { - "word": "trinitrotoluene", - "freq": 2.24e-08 - }, - { - "word": "unacceptability", - "freq": 2.24e-08 - }, - { - "word": "deuteronomistic", - "freq": 2.19e-08 - }, - { - "word": "nonintervention", - "freq": 2.19e-08 - }, - { - "word": "conventionalism", - "freq": 2.14e-08 - }, - { - "word": "instrumentalism", - "freq": 2.14e-08 - }, - { - "word": "noninterference", - "freq": 2.14e-08 - }, - { - "word": "thermodynamical", - "freq": 2.14e-08 - }, - { - "word": "unimaginatively", - "freq": 2.14e-08 - }, - { - "word": "acquisitiveness", - "freq": 2.09e-08 - }, - { - "word": "heterochromatic", - "freq": 2.09e-08 - }, - { - "word": "interestingness", - "freq": 2.09e-08 - }, - { - "word": "requalification", - "freq": 2.09e-08 - }, - { - "word": "leatherstocking", - "freq": 2.04e-08 - }, - { - "word": "subconjunctival", - "freq": 2.04e-08 - }, - { - "word": "ultracentrifuge", - "freq": 2.04e-08 - }, - { - "word": "contemplatively", - "freq": 2e-08 - }, - { - "word": "prehistorically", - "freq": 2e-08 - }, - { - "word": "brachioradialis", - "freq": 1.95e-08 - }, - { - "word": "gigantopithecus", - "freq": 1.95e-08 - }, - { - "word": "mineralogically", - "freq": 1.95e-08 - }, - { - "word": "unknowledgeable", - "freq": 1.95e-08 - }, - { - "word": "immortalization", - "freq": 1.91e-08 - }, - { - "word": "microdissection", - "freq": 1.91e-08 - }, - { - "word": "ophthalmoplegia", - "freq": 1.91e-08 - }, - { - "word": "understandingly", - "freq": 1.91e-08 - }, - { - "word": "circularization", - "freq": 1.86e-08 - }, - { - "word": "interindividual", - "freq": 1.86e-08 - }, - { - "word": "isothiocyanates", - "freq": 1.86e-08 - }, - { - "word": "nasopharyngitis", - "freq": 1.86e-08 - }, - { - "word": "photomechanical", - "freq": 1.86e-08 - }, - { - "word": "pulchritudinous", - "freq": 1.86e-08 - }, - { - "word": "triethanolamine", - "freq": 1.86e-08 - }, - { - "word": "photochemically", - "freq": 1.82e-08 - }, - { - "word": "pithecanthropus", - "freq": 1.82e-08 - }, - { - "word": "sociobiological", - "freq": 1.82e-08 - }, - { - "word": "apocalyptically", - "freq": 1.78e-08 - }, - { - "word": "countermovement", - "freq": 1.78e-08 - }, - { - "word": "dolichocephalic", - "freq": 1.78e-08 - }, - { - "word": "immunochemistry", - "freq": 1.78e-08 - }, - { - "word": "psychosynthesis", - "freq": 1.78e-08 - }, - { - "word": "redetermination", - "freq": 1.78e-08 - }, - { - "word": "communicatively", - "freq": 1.74e-08 - }, - { - "word": "exteriorization", - "freq": 1.74e-08 - }, - { - "word": "platyhelminthes", - "freq": 1.74e-08 - }, - { - "word": "trichloroacetic", - "freq": 1.74e-08 - }, - { - "word": "conspicuousness", - "freq": 1.7e-08 - }, - { - "word": "nonagricultural", - "freq": 1.7e-08 - }, - { - "word": "hydrostatically", - "freq": 1.66e-08 - }, - { - "word": "inconsideration", - "freq": 1.66e-08 - }, - { - "word": "indeterminately", - "freq": 1.66e-08 - }, - { - "word": "interrogatively", - "freq": 1.66e-08 - }, - { - "word": "palaeogeography", - "freq": 1.66e-08 - }, - { - "word": "thermostability", - "freq": 1.66e-08 - }, - { - "word": "unaccommodating", - "freq": 1.66e-08 - }, - { - "word": "circumvallation", - "freq": 1.62e-08 - }, - { - "word": "decarburization", - "freq": 1.62e-08 - }, - { - "word": "flibbertigibbet", - "freq": 1.62e-08 - }, - { - "word": "indeterministic", - "freq": 1.62e-08 - }, - { - "word": "indissolubility", - "freq": 1.62e-08 - }, - { - "word": "uncompassionate", - "freq": 1.62e-08 - }, - { - "word": "centrosymmetric", - "freq": 1.58e-08 - }, - { - "word": "cyclopentadiene", - "freq": 1.58e-08 - }, - { - "word": "hypercoagulable", - "freq": 1.58e-08 - }, - { - "word": "overzealousness", - "freq": 1.58e-08 - }, - { - "word": "hypochondriacal", - "freq": 1.55e-08 - }, - { - "word": "noninflammatory", - "freq": 1.55e-08 - }, - { - "word": "paleogeographic", - "freq": 1.55e-08 - }, - { - "word": "unexceptionable", - "freq": 1.55e-08 - }, - { - "word": "argumentatively", - "freq": 1.51e-08 - }, - { - "word": "exhibitionistic", - "freq": 1.51e-08 - }, - { - "word": "extracellularly", - "freq": 1.51e-08 - }, - { - "word": "oligohydramnios", - "freq": 1.51e-08 - }, - { - "word": "restrictiveness", - "freq": 1.51e-08 - }, - { - "word": "decalcification", - "freq": 1.48e-08 - }, - { - "word": "osteochondritis", - "freq": 1.48e-08 - }, - { - "word": "thalassotherapy", - "freq": 1.48e-08 - }, - { - "word": "conventionalist", - "freq": 1.45e-08 - }, - { - "word": "nonmetropolitan", - "freq": 1.45e-08 - }, - { - "word": "plethysmography", - "freq": 1.45e-08 - }, - { - "word": "uncomplainingly", - "freq": 1.45e-08 - }, - { - "word": "confessionalism", - "freq": 1.41e-08 - }, - { - "word": "gastronomically", - "freq": 1.41e-08 - }, - { - "word": "phosphocreatine", - "freq": 1.41e-08 - }, - { - "word": "resurrectionist", - "freq": 1.41e-08 - }, - { - "word": "alphabetization", - "freq": 1.38e-08 - }, - { - "word": "approximatively", - "freq": 1.38e-08 - }, - { - "word": "exchangeability", - "freq": 1.38e-08 - }, - { - "word": "flirtatiousness", - "freq": 1.38e-08 - }, - { - "word": "maldistribution", - "freq": 1.38e-08 - }, - { - "word": "annihilationism", - "freq": 1.35e-08 - }, - { - "word": "counterweighted", - "freq": 1.35e-08 - }, - { - "word": "hemangiosarcoma", - "freq": 1.35e-08 - }, - { - "word": "neuroepithelial", - "freq": 1.35e-08 - }, - { - "word": "orthophosphoric", - "freq": 1.35e-08 - }, - { - "word": "picturesqueness", - "freq": 1.35e-08 - }, - { - "word": "underproduction", - "freq": 1.35e-08 - }, - { - "word": "uninterpretable", - "freq": 1.35e-08 - }, - { - "word": "cataclysmically", - "freq": 1.32e-08 - }, - { - "word": "deacidification", - "freq": 1.32e-08 - }, - { - "word": "lackadaisically", - "freq": 1.32e-08 - }, - { - "word": "magnetoelectric", - "freq": 1.32e-08 - }, - { - "word": "retropharyngeal", - "freq": 1.32e-08 - }, - { - "word": "unpretentiously", - "freq": 1.32e-08 - }, - { - "word": "blameworthiness", - "freq": 1.29e-08 - }, - { - "word": "horticulturally", - "freq": 1.29e-08 - }, - { - "word": "purposelessness", - "freq": 1.29e-08 - }, - { - "word": "ontogenetically", - "freq": 1.26e-08 - }, - { - "word": "parasitological", - "freq": 1.26e-08 - }, - { - "word": "particularistic", - "freq": 1.26e-08 - }, - { - "word": "supernaturalist", - "freq": 1.26e-08 - }, - { - "word": "defenselessness", - "freq": 1.23e-08 - }, - { - "word": "intellectualist", - "freq": 1.23e-08 - }, - { - "word": "oceanographical", - "freq": 1.23e-08 - }, - { - "word": "christadelphian", - "freq": 1.2e-08 - }, - { - "word": "misconstruction", - "freq": 1.2e-08 - }, - { - "word": "porphyrogenitus", - "freq": 1.2e-08 - }, - { - "word": "syllabification", - "freq": 1.2e-08 - }, - { - "word": "unemployability", - "freq": 1.2e-08 - }, - { - "word": "autotransfusion", - "freq": 1.17e-08 - }, - { - "word": "caryophyllaceae", - "freq": 1.17e-08 - }, - { - "word": "communicability", - "freq": 1.17e-08 - }, - { - "word": "radiometrically", - "freq": 1.17e-08 - }, - { - "word": "skeletonization", - "freq": 1.17e-08 - }, - { - "word": "hydrometallurgy", - "freq": 1.15e-08 - }, - { - "word": "inspirationally", - "freq": 1.15e-08 - }, - { - "word": "irresistibility", - "freq": 1.15e-08 - }, - { - "word": "phytogeographic", - "freq": 1.15e-08 - }, - { - "word": "pterygopalatine", - "freq": 1.15e-08 - }, - { - "word": "erythromelalgia", - "freq": 1.12e-08 - }, - { - "word": "ornithorhynchus", - "freq": 1.12e-08 - }, - { - "word": "phytopathogenic", - "freq": 1.12e-08 - }, - { - "word": "rhombencephalon", - "freq": 1.12e-08 - }, - { - "word": "devitrification", - "freq": 1.1e-08 - }, - { - "word": "gentlemanliness", - "freq": 1.1e-08 - }, - { - "word": "hypercorrection", - "freq": 1.1e-08 - }, - { - "word": "nonconstructive", - "freq": 1.1e-08 - }, - { - "word": "photomicrograph", - "freq": 1.1e-08 - }, - { - "word": "pleuropneumonia", - "freq": 1.1e-08 - }, - { - "word": "transpositional", - "freq": 1.1e-08 - }, - { - "word": "professionality", - "freq": 1.07e-08 - }, - { - "word": "coprecipitation", - "freq": 1.05e-08 - }, - { - "word": "incomparability", - "freq": 1.05e-08 - }, - { - "word": "interlaboratory", - "freq": 1.05e-08 - }, - { - "word": "photoactivation", - "freq": 1.05e-08 - }, - { - "word": "comfortableness", - "freq": 1.02e-08 - }, - { - "word": "dermatophytosis", - "freq": 1.02e-08 - }, - { - "word": "inapplicability", - "freq": 1.02e-08 - } - ], - "16": [ - { - "word": "responsibilities", - "freq": 1.41e-05 - }, - { - "word": "misunderstanding", - "freq": 5.01e-06 - }, - { - "word": "unconstitutional", - "freq": 4.47e-06 - }, - { - "word": "entrepreneurship", - "freq": 3.72e-06 - }, - { - "word": "characterization", - "freq": 3.39e-06 - }, - { - "word": "disproportionate", - "freq": 2.19e-06 - }, - { - "word": "gastrointestinal", - "freq": 1.86e-06 - }, - { - "word": "enthusiastically", - "freq": 1.78e-06 - }, - { - "word": "incomprehensible", - "freq": 1.48e-06 - }, - { - "word": "intercontinental", - "freq": 1.41e-06 - }, - { - "word": "autobiographical", - "freq": 1.38e-06 - }, - { - "word": "disqualification", - "freq": 1.29e-06 - }, - { - "word": "constitutionally", - "freq": 1.26e-06 - }, - { - "word": "extraterrestrial", - "freq": 1.26e-06 - }, - { - "word": "multiculturalism", - "freq": 1.23e-06 - }, - { - "word": "authoritarianism", - "freq": 1e-06 - }, - { - "word": "transformational", - "freq": 1e-06 - }, - { - "word": "indiscriminately", - "freq": 9.55e-07 - }, - { - "word": "northamptonshire", - "freq": 9.12e-07 - }, - { - "word": "parliamentarians", - "freq": 8.91e-07 - }, - { - "word": "interoperability", - "freq": 8.71e-07 - }, - { - "word": "environmentalist", - "freq": 8.32e-07 - }, - { - "word": "underrepresented", - "freq": 8.13e-07 - }, - { - "word": "characterisation", - "freq": 7.76e-07 - }, - { - "word": "decentralization", - "freq": 7.41e-07 - }, - { - "word": "counterterrorism", - "freq": 7.08e-07 - }, - { - "word": "neurotransmitter", - "freq": 6.76e-07 - }, - { - "word": "multidimensional", - "freq": 6.17e-07 - }, - { - "word": "conservationists", - "freq": 5.89e-07 - }, - { - "word": "hypersensitivity", - "freq": 5.89e-07 - }, - { - "word": "transcontinental", - "freq": 5.89e-07 - }, - { - "word": "unpredictability", - "freq": 5.5e-07 - }, - { - "word": "immunodeficiency", - "freq": 5.13e-07 - }, - { - "word": "miscommunication", - "freq": 5.01e-07 - }, - { - "word": "administratively", - "freq": 4.9e-07 - }, - { - "word": "counterintuitive", - "freq": 4.9e-07 - }, - { - "word": "cryptocurrencies", - "freq": 4.9e-07 - }, - { - "word": "environmentalism", - "freq": 4.9e-07 - }, - { - "word": "representational", - "freq": 4.79e-07 - }, - { - "word": "irresponsibility", - "freq": 4.47e-07 - }, - { - "word": "underappreciated", - "freq": 4.47e-07 - }, - { - "word": "gastroenterology", - "freq": 4.27e-07 - }, - { - "word": "anesthesiologist", - "freq": 4.17e-07 - }, - { - "word": "counterclockwise", - "freq": 4.17e-07 - }, - { - "word": "unapologetically", - "freq": 4.07e-07 - }, - { - "word": "misappropriation", - "freq": 3.98e-07 - }, - { - "word": "hospitalizations", - "freq": 3.89e-07 - }, - { - "word": "uncharacteristic", - "freq": 3.8e-07 - }, - { - "word": "hyperventilating", - "freq": 3.47e-07 - }, - { - "word": "phenomenological", - "freq": 3.31e-07 - }, - { - "word": "internationalist", - "freq": 3.24e-07 - }, - { - "word": "reinterpretation", - "freq": 3.24e-07 - }, - { - "word": "quintessentially", - "freq": 3.16e-07 - }, - { - "word": "undifferentiated", - "freq": 3.09e-07 - }, - { - "word": "microelectronics", - "freq": 3.02e-07 - }, - { - "word": "nonproliferation", - "freq": 3.02e-07 - }, - { - "word": "incontrovertible", - "freq": 2.88e-07 - }, - { - "word": "pharmacokinetics", - "freq": 2.88e-07 - }, - { - "word": "reclassification", - "freq": 2.88e-07 - }, - { - "word": "internationalism", - "freq": 2.82e-07 - }, - { - "word": "acknowledgements", - "freq": 2.69e-07 - }, - { - "word": "decentralisation", - "freq": 2.69e-07 - }, - { - "word": "catastrophically", - "freq": 2.63e-07 - }, - { - "word": "electromagnetism", - "freq": 2.57e-07 - }, - { - "word": "multimillionaire", - "freq": 2.51e-07 - }, - { - "word": "interconnections", - "freq": 2.45e-07 - }, - { - "word": "neuropsychiatric", - "freq": 2.24e-07 - }, - { - "word": "creditworthiness", - "freq": 2.04e-07 - }, - { - "word": "instrumentalists", - "freq": 2.04e-07 - }, - { - "word": "crystallographic", - "freq": 1.95e-07 - }, - { - "word": "declassification", - "freq": 1.91e-07 - }, - { - "word": "echocardiography", - "freq": 1.91e-07 - }, - { - "word": "ophthalmologists", - "freq": 1.91e-07 - }, - { - "word": "unrepresentative", - "freq": 1.91e-07 - }, - { - "word": "collectivization", - "freq": 1.82e-07 - }, - { - "word": "microcontrollers", - "freq": 1.82e-07 - }, - { - "word": "physiotherapists", - "freq": 1.82e-07 - }, - { - "word": "psychotherapists", - "freq": 1.74e-07 - }, - { - "word": "thrombocytopenia", - "freq": 1.74e-07 - }, - { - "word": "cinematographers", - "freq": 1.7e-07 - }, - { - "word": "extracurriculars", - "freq": 1.7e-07 - }, - { - "word": "extraterritorial", - "freq": 1.7e-07 - }, - { - "word": "underdevelopment", - "freq": 1.7e-07 - }, - { - "word": "counteroffensive", - "freq": 1.66e-07 - }, - { - "word": "electrochemistry", - "freq": 1.66e-07 - }, - { - "word": "chemotherapeutic", - "freq": 1.58e-07 - }, - { - "word": "photojournalists", - "freq": 1.58e-07 - }, - { - "word": "circumnavigation", - "freq": 1.55e-07 - }, - { - "word": "microenvironment", - "freq": 1.51e-07 - }, - { - "word": "pietermaritzburg", - "freq": 1.51e-07 - }, - { - "word": "rationalizations", - "freq": 1.51e-07 - }, - { - "word": "interdimensional", - "freq": 1.48e-07 - }, - { - "word": "denuclearization", - "freq": 1.45e-07 - }, - { - "word": "disestablishment", - "freq": 1.45e-07 - }, - { - "word": "sociolinguistics", - "freq": 1.45e-07 - }, - { - "word": "antihypertensive", - "freq": 1.38e-07 - }, - { - "word": "astrophotography", - "freq": 1.38e-07 - }, - { - "word": "institutionalize", - "freq": 1.38e-07 - }, - { - "word": "neoconservatives", - "freq": 1.35e-07 - }, - { - "word": "demilitarization", - "freq": 1.32e-07 - }, - { - "word": "oligonucleotides", - "freq": 1.32e-07 - }, - { - "word": "vasoconstriction", - "freq": 1.32e-07 - }, - { - "word": "preservationists", - "freq": 1.29e-07 - }, - { - "word": "compartmentalize", - "freq": 1.26e-07 - }, - { - "word": "chancellorsville", - "freq": 1.2e-07 - }, - { - "word": "cyclophosphamide", - "freq": 1.2e-07 - }, - { - "word": "gastroesophageal", - "freq": 1.2e-07 - }, - { - "word": "underperformance", - "freq": 1.2e-07 - }, - { - "word": "aminotransferase", - "freq": 1.17e-07 - }, - { - "word": "cryopreservation", - "freq": 1.17e-07 - }, - { - "word": "recapitalization", - "freq": 1.17e-07 - }, - { - "word": "australopithecus", - "freq": 1.15e-07 - }, - { - "word": "hyperventilation", - "freq": 1.15e-07 - }, - { - "word": "biotechnological", - "freq": 1.12e-07 - }, - { - "word": "overcompensating", - "freq": 1.12e-07 - }, - { - "word": "clackmannanshire", - "freq": 1.1e-07 - }, - { - "word": "photographically", - "freq": 1.1e-07 - }, - { - "word": "programmatically", - "freq": 1.1e-07 - }, - { - "word": "psychoanalytical", - "freq": 1.1e-07 - }, - { - "word": "anthropomorphism", - "freq": 1.07e-07 - }, - { - "word": "methodologically", - "freq": 1.07e-07 - }, - { - "word": "pseudoscientific", - "freq": 1.07e-07 - }, - { - "word": "organizationally", - "freq": 1.05e-07 - }, - { - "word": "sesquicentennial", - "freq": 1e-07 - }, - { - "word": "agriculturalists", - "freq": 9.77e-08 - }, - { - "word": "oligosaccharides", - "freq": 9.77e-08 - }, - { - "word": "electromagnetics", - "freq": 9.55e-08 - }, - { - "word": "pharmacodynamics", - "freq": 9.33e-08 - }, - { - "word": "phylogenetically", - "freq": 9.33e-08 - }, - { - "word": "teleconferencing", - "freq": 9.33e-08 - }, - { - "word": "archaeologically", - "freq": 9.12e-08 - }, - { - "word": "arteriosclerosis", - "freq": 9.12e-08 - }, - { - "word": "blacklivesmatter", - "freq": 9.12e-08 - }, - { - "word": "hydroelectricity", - "freq": 9.12e-08 - }, - { - "word": "personifications", - "freq": 9.12e-08 - }, - { - "word": "uncompromisingly", - "freq": 9.12e-08 - }, - { - "word": "unconventionally", - "freq": 9.12e-08 - }, - { - "word": "misappropriating", - "freq": 8.91e-08 - }, - { - "word": "professionalized", - "freq": 8.91e-08 - }, - { - "word": "thermoregulation", - "freq": 8.91e-08 - }, - { - "word": "geomorphological", - "freq": 8.71e-08 - }, - { - "word": "palaeontologists", - "freq": 8.71e-08 - }, - { - "word": "biocompatibility", - "freq": 8.51e-08 - }, - { - "word": "disenfranchising", - "freq": 8.51e-08 - }, - { - "word": "experimentalists", - "freq": 8.51e-08 - }, - { - "word": "incomprehensibly", - "freq": 8.51e-08 - }, - { - "word": "microaggressions", - "freq": 8.51e-08 - }, - { - "word": "depressurization", - "freq": 8.32e-08 - }, - { - "word": "electrotechnical", - "freq": 8.32e-08 - }, - { - "word": "consequentialist", - "freq": 8.13e-08 - }, - { - "word": "dextromethorphan", - "freq": 8.13e-08 - }, - { - "word": "endocrinologists", - "freq": 8.13e-08 - }, - { - "word": "methamphetamines", - "freq": 8.13e-08 - }, - { - "word": "hahahahahahahaha", - "freq": 7.94e-08 - }, - { - "word": "interventionists", - "freq": 7.94e-08 - }, - { - "word": "nanotechnologies", - "freq": 7.94e-08 - }, - { - "word": "photolithography", - "freq": 7.94e-08 - }, - { - "word": "underachievement", - "freq": 7.94e-08 - }, - { - "word": "christianization", - "freq": 7.76e-08 - }, - { - "word": "contraindication", - "freq": 7.76e-08 - }, - { - "word": "conversationally", - "freq": 7.76e-08 - }, - { - "word": "electromyography", - "freq": 7.76e-08 - }, - { - "word": "microcrystalline", - "freq": 7.76e-08 - }, - { - "word": "mispronunciation", - "freq": 7.76e-08 - }, - { - "word": "consequentialism", - "freq": 7.59e-08 - }, - { - "word": "sensationalistic", - "freq": 7.59e-08 - }, - { - "word": "ultranationalist", - "freq": 7.59e-08 - }, - { - "word": "palaeontological", - "freq": 7.41e-08 - }, - { - "word": "parameterization", - "freq": 7.41e-08 - }, - { - "word": "photosensitivity", - "freq": 7.41e-08 - }, - { - "word": "atrioventricular", - "freq": 7.08e-08 - }, - { - "word": "shortsightedness", - "freq": 7.08e-08 - }, - { - "word": "counterbalancing", - "freq": 6.92e-08 - }, - { - "word": "organophosphates", - "freq": 6.92e-08 - }, - { - "word": "deoxyribonucleic", - "freq": 6.76e-08 - }, - { - "word": "mischaracterized", - "freq": 6.61e-08 - }, - { - "word": "multidirectional", - "freq": 6.61e-08 - }, - { - "word": "pheochromocytoma", - "freq": 6.61e-08 - }, - { - "word": "counterarguments", - "freq": 6.46e-08 - }, - { - "word": "counterattacking", - "freq": 6.46e-08 - }, - { - "word": "ophthalmological", - "freq": 6.46e-08 - }, - { - "word": "paraprofessional", - "freq": 6.46e-08 - }, - { - "word": "sociodemographic", - "freq": 6.31e-08 - }, - { - "word": "insurrectionists", - "freq": 6.17e-08 - }, - { - "word": "oligodendrocytes", - "freq": 6.17e-08 - }, - { - "word": "unprofessionally", - "freq": 6.17e-08 - }, - { - "word": "circumnavigating", - "freq": 6.03e-08 - }, - { - "word": "prognostications", - "freq": 6.03e-08 - }, - { - "word": "rhabdomyosarcoma", - "freq": 6.03e-08 - }, - { - "word": "psychophysiology", - "freq": 5.89e-08 - }, - { - "word": "containerization", - "freq": 5.75e-08 - }, - { - "word": "institutionalism", - "freq": 5.75e-08 - }, - { - "word": "trichotillomania", - "freq": 5.75e-08 - }, - { - "word": "unpopularopinion", - "freq": 5.62e-08 - }, - { - "word": "counterterrorist", - "freq": 5.5e-08 - }, - { - "word": "fluoroquinolones", - "freq": 5.5e-08 - }, - { - "word": "immunoreactivity", - "freq": 5.5e-08 - }, - { - "word": "nondeterministic", - "freq": 5.5e-08 - }, - { - "word": "transnationalism", - "freq": 5.5e-08 - }, - { - "word": "experimentations", - "freq": 5.37e-08 - }, - { - "word": "generalizability", - "freq": 5.37e-08 - }, - { - "word": "conspiratorially", - "freq": 5.25e-08 - }, - { - "word": "horticulturalist", - "freq": 5.25e-08 - }, - { - "word": "microcirculation", - "freq": 5.25e-08 - }, - { - "word": "overexploitation", - "freq": 5.25e-08 - }, - { - "word": "sensationalizing", - "freq": 5.25e-08 - }, - { - "word": "subconsciousness", - "freq": 5.25e-08 - }, - { - "word": "unitedhealthcare", - "freq": 5.25e-08 - }, - { - "word": "immunomodulatory", - "freq": 5.13e-08 - }, - { - "word": "immunosuppressed", - "freq": 5.13e-08 - }, - { - "word": "underutilization", - "freq": 5.13e-08 - }, - { - "word": "circumstantially", - "freq": 4.9e-08 - }, - { - "word": "incontrovertibly", - "freq": 4.9e-08 - }, - { - "word": "otolaryngologist", - "freq": 4.9e-08 - }, - { - "word": "collaborationist", - "freq": 4.79e-08 - }, - { - "word": "counterespionage", - "freq": 4.79e-08 - }, - { - "word": "overenthusiastic", - "freq": 4.79e-08 - }, - { - "word": "controversialist", - "freq": 4.68e-08 - }, - { - "word": "overcompensation", - "freq": 4.68e-08 - }, - { - "word": "bureaucratically", - "freq": 4.57e-08 - }, - { - "word": "prequalification", - "freq": 4.57e-08 - }, - { - "word": "unresponsiveness", - "freq": 4.57e-08 - }, - { - "word": "disfranchisement", - "freq": 4.47e-08 - }, - { - "word": "internationalize", - "freq": 4.47e-08 - }, - { - "word": "transmissibility", - "freq": 4.47e-08 - }, - { - "word": "extemporaneously", - "freq": 4.37e-08 - }, - { - "word": "unreasonableness", - "freq": 4.37e-08 - }, - { - "word": "machiavellianism", - "freq": 4.27e-08 - }, - { - "word": "lightheartedness", - "freq": 4.07e-08 - }, - { - "word": "dendrochronology", - "freq": 3.98e-08 - }, - { - "word": "journalistically", - "freq": 3.98e-08 - }, - { - "word": "paraformaldehyde", - "freq": 3.98e-08 - }, - { - "word": "pharmaceutically", - "freq": 3.98e-08 - }, - { - "word": "thermostatically", - "freq": 3.98e-08 - }, - { - "word": "demineralization", - "freq": 3.89e-08 - }, - { - "word": "dehumidification", - "freq": 3.8e-08 - }, - { - "word": "interpenetration", - "freq": 3.8e-08 - }, - { - "word": "acquaintanceship", - "freq": 3.72e-08 - }, - { - "word": "depolymerization", - "freq": 3.72e-08 - }, - { - "word": "ecclesiastically", - "freq": 3.72e-08 - }, - { - "word": "melodramatically", - "freq": 3.72e-08 - }, - { - "word": "bronchopneumonia", - "freq": 3.63e-08 - }, - { - "word": "prestidigitation", - "freq": 3.55e-08 - }, - { - "word": "semiprofessional", - "freq": 3.55e-08 - }, - { - "word": "supraventricular", - "freq": 3.55e-08 - }, - { - "word": "undernourishment", - "freq": 3.55e-08 - }, - { - "word": "intraventricular", - "freq": 3.47e-08 - }, - { - "word": "thrombophlebitis", - "freq": 3.47e-08 - }, - { - "word": "universalization", - "freq": 3.47e-08 - }, - { - "word": "anthropocentrism", - "freq": 3.39e-08 - }, - { - "word": "unsatisfactorily", - "freq": 3.39e-08 - }, - { - "word": "disingenuousness", - "freq": 3.31e-08 - }, - { - "word": "orthographically", - "freq": 3.24e-08 - }, - { - "word": "predetermination", - "freq": 3.24e-08 - }, - { - "word": "copolymerization", - "freq": 3.16e-08 - }, - { - "word": "noncontroversial", - "freq": 3.16e-08 - }, - { - "word": "interpretability", - "freq": 3.09e-08 - }, - { - "word": "prophylactically", - "freq": 3.09e-08 - }, - { - "word": "radiosensitivity", - "freq": 3.09e-08 - }, - { - "word": "incorruptibility", - "freq": 3.02e-08 - }, - { - "word": "piezoelectricity", - "freq": 3.02e-08 - }, - { - "word": "transconductance", - "freq": 3.02e-08 - }, - { - "word": "indispensability", - "freq": 2.95e-08 - }, - { - "word": "anthropomorphize", - "freq": 2.88e-08 - }, - { - "word": "bronchopulmonary", - "freq": 2.88e-08 - }, - { - "word": "neuropathologist", - "freq": 2.88e-08 - }, - { - "word": "remineralization", - "freq": 2.88e-08 - }, - { - "word": "glossopharyngeal", - "freq": 2.82e-08 - }, - { - "word": "circumambulation", - "freq": 2.75e-08 - }, - { - "word": "inextinguishable", - "freq": 2.75e-08 - }, - { - "word": "sphygmomanometer", - "freq": 2.75e-08 - }, - { - "word": "unattractiveness", - "freq": 2.75e-08 - }, - { - "word": "coadministration", - "freq": 2.63e-08 - }, - { - "word": "denaturalization", - "freq": 2.57e-08 - }, - { - "word": "hemagglutination", - "freq": 2.57e-08 - }, - { - "word": "phenylenediamine", - "freq": 2.57e-08 - }, - { - "word": "electrolytically", - "freq": 2.51e-08 - }, - { - "word": "interventricular", - "freq": 2.51e-08 - }, - { - "word": "transcendentally", - "freq": 2.51e-08 - }, - { - "word": "monocotyledonous", - "freq": 2.45e-08 - }, - { - "word": "antagonistically", - "freq": 2.4e-08 - }, - { - "word": "phosphoglycerate", - "freq": 2.4e-08 - }, - { - "word": "myelomeningocele", - "freq": 2.34e-08 - }, - { - "word": "phantasmagorical", - "freq": 2.34e-08 - }, - { - "word": "saccharification", - "freq": 2.34e-08 - }, - { - "word": "benzylpenicillin", - "freq": 2.29e-08 - }, - { - "word": "paleoclimatology", - "freq": 2.29e-08 - }, - { - "word": "remilitarization", - "freq": 2.29e-08 - }, - { - "word": "anthroposophical", - "freq": 2.24e-08 - }, - { - "word": "interrelatedness", - "freq": 2.24e-08 - }, - { - "word": "serpentinization", - "freq": 2.24e-08 - }, - { - "word": "institutionalist", - "freq": 2.19e-08 - }, - { - "word": "multiplicatively", - "freq": 2.14e-08 - }, - { - "word": "naturalistically", - "freq": 2.14e-08 - }, - { - "word": "transportability", - "freq": 2.14e-08 - }, - { - "word": "oversubscription", - "freq": 2.09e-08 - }, - { - "word": "premillennialism", - "freq": 2.09e-08 - }, - { - "word": "psychobiological", - "freq": 2.04e-08 - }, - { - "word": "ultranationalism", - "freq": 2.04e-08 - }, - { - "word": "paradigmatically", - "freq": 2e-08 - }, - { - "word": "prerevolutionary", - "freq": 2e-08 - }, - { - "word": "radiographically", - "freq": 2e-08 - }, - { - "word": "unaccountability", - "freq": 2e-08 - }, - { - "word": "endocrinological", - "freq": 1.95e-08 - }, - { - "word": "interhemispheric", - "freq": 1.95e-08 - }, - { - "word": "disconnectedness", - "freq": 1.91e-08 - }, - { - "word": "otherworldliness", - "freq": 1.91e-08 - }, - { - "word": "ethnographically", - "freq": 1.86e-08 - }, - { - "word": "scrophulariaceae", - "freq": 1.86e-08 - }, - { - "word": "complexification", - "freq": 1.82e-08 - }, - { - "word": "electrocatalytic", - "freq": 1.82e-08 - }, - { - "word": "misconfiguration", - "freq": 1.82e-08 - }, - { - "word": "undemocratically", - "freq": 1.82e-08 - }, - { - "word": "presumptuousness", - "freq": 1.78e-08 - }, - { - "word": "semiquantitative", - "freq": 1.78e-08 - }, - { - "word": "vasoconstrictive", - "freq": 1.78e-08 - }, - { - "word": "constructiveness", - "freq": 1.74e-08 - }, - { - "word": "crystallographer", - "freq": 1.74e-08 - }, - { - "word": "meteorologically", - "freq": 1.74e-08 - }, - { - "word": "municipalization", - "freq": 1.74e-08 - }, - { - "word": "paleoceanography", - "freq": 1.74e-08 - }, - { - "word": "dermatopathology", - "freq": 1.7e-08 - }, - { - "word": "deuterocanonical", - "freq": 1.7e-08 - }, - { - "word": "discriminability", - "freq": 1.7e-08 - }, - { - "word": "interpretational", - "freq": 1.7e-08 - }, - { - "word": "tracheobronchial", - "freq": 1.7e-08 - }, - { - "word": "internationality", - "freq": 1.66e-08 - }, - { - "word": "electrohydraulic", - "freq": 1.62e-08 - }, - { - "word": "undiscriminating", - "freq": 1.62e-08 - }, - { - "word": "macrophotography", - "freq": 1.58e-08 - }, - { - "word": "pseudomembranous", - "freq": 1.58e-08 - }, - { - "word": "commissionership", - "freq": 1.55e-08 - }, - { - "word": "petrographically", - "freq": 1.55e-08 - }, - { - "word": "transatlanticism", - "freq": 1.55e-08 - }, - { - "word": "unscientifically", - "freq": 1.55e-08 - }, - { - "word": "representatively", - "freq": 1.51e-08 - }, - { - "word": "arteriosclerotic", - "freq": 1.48e-08 - }, - { - "word": "commensurability", - "freq": 1.48e-08 - }, - { - "word": "electrocatalysis", - "freq": 1.48e-08 - }, - { - "word": "interministerial", - "freq": 1.48e-08 - }, - { - "word": "bloodthirstiness", - "freq": 1.45e-08 - }, - { - "word": "hypervitaminosis", - "freq": 1.45e-08 - }, - { - "word": "magnetostriction", - "freq": 1.45e-08 - }, - { - "word": "antituberculosis", - "freq": 1.41e-08 - }, - { - "word": "interdependently", - "freq": 1.38e-08 - }, - { - "word": "microphotography", - "freq": 1.38e-08 - }, - { - "word": "paratuberculosis", - "freq": 1.38e-08 - }, - { - "word": "apprehensiveness", - "freq": 1.35e-08 - }, - { - "word": "perpendicularity", - "freq": 1.35e-08 - }, - { - "word": "psychometrically", - "freq": 1.35e-08 - }, - { - "word": "epiphenomenalism", - "freq": 1.32e-08 - }, - { - "word": "impracticability", - "freq": 1.32e-08 - }, - { - "word": "photomicrography", - "freq": 1.32e-08 - }, - { - "word": "underconsumption", - "freq": 1.29e-08 - }, - { - "word": "autoradiographic", - "freq": 1.26e-08 - }, - { - "word": "conservativeness", - "freq": 1.26e-08 - }, - { - "word": "denominationally", - "freq": 1.23e-08 - }, - { - "word": "hydrometeorology", - "freq": 1.23e-08 - }, - { - "word": "jurisdictionally", - "freq": 1.23e-08 - }, - { - "word": "climatologically", - "freq": 1.2e-08 - }, - { - "word": "developmentalist", - "freq": 1.2e-08 - }, - { - "word": "diphthongization", - "freq": 1.17e-08 - }, - { - "word": "nonparticipation", - "freq": 1.15e-08 - }, - { - "word": "polyoxymethylene", - "freq": 1.15e-08 - }, - { - "word": "chryselephantine", - "freq": 1.12e-08 - }, - { - "word": "countersignature", - "freq": 1.12e-08 - }, - { - "word": "mesembryanthemum", - "freq": 1.12e-08 - }, - { - "word": "preposterousness", - "freq": 1.12e-08 - }, - { - "word": "swedenborgianism", - "freq": 1.12e-08 - }, - { - "word": "lithographically", - "freq": 1.1e-08 - }, - { - "word": "microlepidoptera", - "freq": 1.1e-08 - }, - { - "word": "photoluminescent", - "freq": 1.1e-08 - }, - { - "word": "quadricentennial", - "freq": 1.1e-08 - }, - { - "word": "sternoclavicular", - "freq": 1.07e-08 - }, - { - "word": "aristocratically", - "freq": 1.05e-08 - }, - { - "word": "desulphurization", - "freq": 1.05e-08 - }, - { - "word": "nonparticipating", - "freq": 1.05e-08 - }, - { - "word": "unscrupulousness", - "freq": 1.05e-08 - }, - { - "word": "hemorrhoidectomy", - "freq": 1.02e-08 - }, - { - "word": "imperturbability", - "freq": 1.02e-08 - } - ], - "18": [ - { - "word": "telecommunications", - "freq": 6.76e-06 - }, - { - "word": "disproportionately", - "freq": 2e-06 - }, - { - "word": "characteristically", - "freq": 7.08e-07 - }, - { - "word": "disenfranchisement", - "freq": 3.09e-07 - }, - { - "word": "misrepresentations", - "freq": 3.09e-07 - }, - { - "word": "neuropsychological", - "freq": 2.63e-07 - }, - { - "word": "oversimplification", - "freq": 2.45e-07 - }, - { - "word": "unconstitutionally", - "freq": 2.45e-07 - }, - { - "word": "interconnectedness", - "freq": 2.04e-07 - }, - { - "word": "thiruvananthapuram", - "freq": 1.91e-07 - }, - { - "word": "neurodevelopmental", - "freq": 1.86e-07 - }, - { - "word": "gastroenterologist", - "freq": 1.66e-07 - }, - { - "word": "immunofluorescence", - "freq": 1.66e-07 - }, - { - "word": "transubstantiation", - "freq": 1.35e-07 - }, - { - "word": "interrelationships", - "freq": 1.29e-07 - }, - { - "word": "psychopharmacology", - "freq": 1.23e-07 - }, - { - "word": "misinterpretations", - "freq": 1.17e-07 - }, - { - "word": "lipopolysaccharide", - "freq": 1.1e-07 - }, - { - "word": "neurophysiological", - "freq": 1.1e-07 - }, - { - "word": "evapotranspiration", - "freq": 1.05e-07 - }, - { - "word": "congregationalists", - "freq": 9.55e-08 - }, - { - "word": "histocompatibility", - "freq": 9.33e-08 - }, - { - "word": "interchangeability", - "freq": 9.12e-08 - }, - { - "word": "constitutionalists", - "freq": 8.91e-08 - }, - { - "word": "pathophysiological", - "freq": 8.91e-08 - }, - { - "word": "institutionalizing", - "freq": 7.76e-08 - }, - { - "word": "aktiengesellschaft", - "freq": 7.59e-08 - }, - { - "word": "biopharmaceuticals", - "freq": 7.59e-08 - }, - { - "word": "immunosuppressants", - "freq": 7.41e-08 - }, - { - "word": "enterobacteriaceae", - "freq": 6.92e-08 - }, - { - "word": "methylprednisolone", - "freq": 6.92e-08 - }, - { - "word": "representativeness", - "freq": 6.61e-08 - }, - { - "word": "conceptualizations", - "freq": 6.31e-08 - }, - { - "word": "electroluminescent", - "freq": 6.31e-08 - }, - { - "word": "hydroxychloroquine", - "freq": 6.31e-08 - }, - { - "word": "glomerulonephritis", - "freq": 6.17e-08 - }, - { - "word": "entrepreneurialism", - "freq": 5.75e-08 - }, - { - "word": "compartmentalizing", - "freq": 5.62e-08 - }, - { - "word": "overrepresentation", - "freq": 5.62e-08 - }, - { - "word": "neovascularization", - "freq": 5.5e-08 - }, - { - "word": "myeloproliferative", - "freq": 5.37e-08 - }, - { - "word": "disproportionality", - "freq": 5.13e-08 - }, - { - "word": "interparliamentary", - "freq": 4.68e-08 - }, - { - "word": "thermoluminescence", - "freq": 4.37e-08 - }, - { - "word": "psychopathological", - "freq": 4.17e-08 - }, - { - "word": "transmogrification", - "freq": 3.98e-08 - }, - { - "word": "diethylstilbestrol", - "freq": 3.89e-08 - }, - { - "word": "disproportionation", - "freq": 3.63e-08 - }, - { - "word": "intercommunication", - "freq": 3.55e-08 - }, - { - "word": "spectrophotometric", - "freq": 3.31e-08 - }, - { - "word": "triphenylphosphine", - "freq": 2.82e-08 - }, - { - "word": "constantinopolitan", - "freq": 2.57e-08 - }, - { - "word": "unenthusiastically", - "freq": 2.51e-08 - }, - { - "word": "parliamentarianism", - "freq": 2.24e-08 - }, - { - "word": "incommensurability", - "freq": 2.14e-08 - }, - { - "word": "phenomenologically", - "freq": 2.14e-08 - }, - { - "word": "photosynthetically", - "freq": 2.09e-08 - }, - { - "word": "autobiographically", - "freq": 2e-08 - }, - { - "word": "pericardiocentesis", - "freq": 2e-08 - }, - { - "word": "electrocardiograph", - "freq": 1.86e-08 - }, - { - "word": "hydrometallurgical", - "freq": 1.86e-08 - }, - { - "word": "pseudotuberculosis", - "freq": 1.29e-08 - }, - { - "word": "stoichiometrically", - "freq": 1.17e-08 - }, - { - "word": "hypercoagulability", - "freq": 1.12e-08 - }, - { - "word": "unsatisfactoriness", - "freq": 1.12e-08 - }, - { - "word": "psychoanalytically", - "freq": 1.05e-08 - } - ], - "17": [ - { - "word": "interdisciplinary", - "freq": 2.45e-06 - }, - { - "word": "indistinguishable", - "freq": 1.45e-06 - }, - { - "word": "telecommunication", - "freq": 1.45e-06 - }, - { - "word": "institutionalized", - "freq": 1.35e-06 - }, - { - "word": "misunderstandings", - "freq": 1.29e-06 - }, - { - "word": "intergovernmental", - "freq": 1.26e-06 - }, - { - "word": "environmentalists", - "freq": 1.2e-06 - }, - { - "word": "industrialization", - "freq": 1.17e-06 - }, - { - "word": "multidisciplinary", - "freq": 1.15e-06 - }, - { - "word": "counterproductive", - "freq": 1.12e-06 - }, - { - "word": "commercialization", - "freq": 9.55e-07 - }, - { - "word": "misrepresentation", - "freq": 9.55e-07 - }, - { - "word": "constitutionality", - "freq": 8.71e-07 - }, - { - "word": "neurotransmitters", - "freq": 5.62e-07 - }, - { - "word": "intergenerational", - "freq": 5.37e-07 - }, - { - "word": "industrialisation", - "freq": 5.01e-07 - }, - { - "word": "misinterpretation", - "freq": 4.79e-07 - }, - { - "word": "neurodegenerative", - "freq": 4.79e-07 - }, - { - "word": "characterizations", - "freq": 3.89e-07 - }, - { - "word": "decriminalization", - "freq": 3.89e-07 - }, - { - "word": "electromechanical", - "freq": 3.55e-07 - }, - { - "word": "counterinsurgency", - "freq": 3.39e-07 - }, - { - "word": "conceptualization", - "freq": 3.02e-07 - }, - { - "word": "superconductivity", - "freq": 3.02e-07 - }, - { - "word": "contraindications", - "freq": 2.88e-07 - }, - { - "word": "intersectionality", - "freq": 2.82e-07 - }, - { - "word": "institutionalised", - "freq": 2.69e-07 - }, - { - "word": "biopharmaceutical", - "freq": 2.63e-07 - }, - { - "word": "commercialisation", - "freq": 2.51e-07 - }, - { - "word": "extraterrestrials", - "freq": 2.51e-07 - }, - { - "word": "immunosuppressive", - "freq": 2.45e-07 - }, - { - "word": "conversationalist", - "freq": 2.19e-07 - }, - { - "word": "constitutionalism", - "freq": 2.14e-07 - }, - { - "word": "immunocompromised", - "freq": 2.09e-07 - }, - { - "word": "straightforwardly", - "freq": 2.04e-07 - }, - { - "word": "compartmentalized", - "freq": 2e-07 - }, - { - "word": "conscientiousness", - "freq": 1.91e-07 - }, - { - "word": "nondiscrimination", - "freq": 1.91e-07 - }, - { - "word": "electrophysiology", - "freq": 1.78e-07 - }, - { - "word": "videoconferencing", - "freq": 1.66e-07 - }, - { - "word": "anesthesiologists", - "freq": 1.58e-07 - }, - { - "word": "bringbackourgirls", - "freq": 1.58e-07 - }, - { - "word": "contemporaneously", - "freq": 1.55e-07 - }, - { - "word": "electrocardiogram", - "freq": 1.55e-07 - }, - { - "word": "immunosuppression", - "freq": 1.55e-07 - }, - { - "word": "interdepartmental", - "freq": 1.48e-07 - }, - { - "word": "incompatibilities", - "freq": 1.45e-07 - }, - { - "word": "neurodegeneration", - "freq": 1.38e-07 - }, - { - "word": "neurofibromatosis", - "freq": 1.38e-07 - }, - { - "word": "depersonalization", - "freq": 1.32e-07 - }, - { - "word": "multigenerational", - "freq": 1.29e-07 - }, - { - "word": "historiographical", - "freq": 1.26e-07 - }, - { - "word": "hyperpigmentation", - "freq": 1.26e-07 - }, - { - "word": "constitutionalist", - "freq": 1.17e-07 - }, - { - "word": "decriminalisation", - "freq": 1.17e-07 - }, - { - "word": "internationalists", - "freq": 1.17e-07 - }, - { - "word": "pharmacologically", - "freq": 1.17e-07 - }, - { - "word": "opportunistically", - "freq": 1.15e-07 - }, - { - "word": "phosphodiesterase", - "freq": 1.15e-07 - }, - { - "word": "disqualifications", - "freq": 1.12e-07 - }, - { - "word": "spectrophotometer", - "freq": 1.12e-07 - }, - { - "word": "electroconvulsive", - "freq": 1.1e-07 - }, - { - "word": "interrelationship", - "freq": 1.1e-07 - }, - { - "word": "histopathological", - "freq": 1.07e-07 - }, - { - "word": "misidentification", - "freq": 1.07e-07 - }, - { - "word": "maladministration", - "freq": 1.05e-07 - }, - { - "word": "psychotherapeutic", - "freq": 1.05e-07 - }, - { - "word": "temporomandibular", - "freq": 1.05e-07 - }, - { - "word": "thermodynamically", - "freq": 1.05e-07 - }, - { - "word": "microtransactions", - "freq": 1.02e-07 - }, - { - "word": "methyltransferase", - "freq": 9.77e-08 - }, - { - "word": "nondenominational", - "freq": 9.77e-08 - }, - { - "word": "transdisciplinary", - "freq": 9.55e-08 - }, - { - "word": "comprehensiveness", - "freq": 9.33e-08 - }, - { - "word": "misclassification", - "freq": 9.33e-08 - }, - { - "word": "neurotransmission", - "freq": 9.33e-08 - }, - { - "word": "inappropriateness", - "freq": 9.12e-08 - }, - { - "word": "neuropsychologist", - "freq": 9.12e-08 - }, - { - "word": "revascularization", - "freq": 9.12e-08 - }, - { - "word": "disproportionally", - "freq": 8.91e-08 - }, - { - "word": "heteronormativity", - "freq": 8.91e-08 - }, - { - "word": "photoluminescence", - "freq": 8.91e-08 - }, - { - "word": "cardiorespiratory", - "freq": 8.71e-08 - }, - { - "word": "electronegativity", - "freq": 8.71e-08 - }, - { - "word": "internationalized", - "freq": 8.71e-08 - }, - { - "word": "microdermabrasion", - "freq": 8.71e-08 - }, - { - "word": "congregationalist", - "freq": 8.51e-08 - }, - { - "word": "interdependencies", - "freq": 8.51e-08 - }, - { - "word": "psycholinguistics", - "freq": 8.51e-08 - }, - { - "word": "contextualization", - "freq": 8.32e-08 - }, - { - "word": "encephalomyelitis", - "freq": 8.32e-08 - }, - { - "word": "interconnectivity", - "freq": 8.32e-08 - }, - { - "word": "interprofessional", - "freq": 8.32e-08 - }, - { - "word": "transcendentalism", - "freq": 8.32e-08 - }, - { - "word": "immunosuppressant", - "freq": 8.13e-08 - }, - { - "word": "realclearpolitics", - "freq": 8.13e-08 - }, - { - "word": "recrystallization", - "freq": 8.13e-08 - }, - { - "word": "individualization", - "freq": 7.41e-08 - }, - { - "word": "anthropomorphized", - "freq": 7.24e-08 - }, - { - "word": "reconstructionist", - "freq": 7.24e-08 - }, - { - "word": "counterrevolution", - "freq": 7.08e-08 - }, - { - "word": "dephosphorylation", - "freq": 7.08e-08 - }, - { - "word": "multimillionaires", - "freq": 7.08e-08 - }, - { - "word": "acetyltransferase", - "freq": 6.92e-08 - }, - { - "word": "transcendentalist", - "freq": 6.92e-08 - }, - { - "word": "miscommunications", - "freq": 6.76e-08 - }, - { - "word": "pharmacovigilance", - "freq": 6.76e-08 - }, - { - "word": "cryptographically", - "freq": 6.31e-08 - }, - { - "word": "reinterpretations", - "freq": 6.31e-08 - }, - { - "word": "socioeconomically", - "freq": 6.31e-08 - }, - { - "word": "ultraconservative", - "freq": 6.31e-08 - }, - { - "word": "characterisations", - "freq": 6.03e-08 - }, - { - "word": "superintelligence", - "freq": 6.03e-08 - }, - { - "word": "conceptualisation", - "freq": 5.89e-08 - }, - { - "word": "functionalization", - "freq": 5.89e-08 - }, - { - "word": "electrochemically", - "freq": 5.75e-08 - }, - { - "word": "dextroamphetamine", - "freq": 5.62e-08 - }, - { - "word": "trichloroethylene", - "freq": 5.62e-08 - }, - { - "word": "instrumentalities", - "freq": 5.5e-08 - }, - { - "word": "nondiscriminatory", - "freq": 5.5e-08 - }, - { - "word": "chemiluminescence", - "freq": 5.37e-08 - }, - { - "word": "electrostatically", - "freq": 5.37e-08 - }, - { - "word": "metalloproteinase", - "freq": 5.37e-08 - }, - { - "word": "anthropologically", - "freq": 5.25e-08 - }, - { - "word": "transgenerational", - "freq": 5.25e-08 - }, - { - "word": "contradistinction", - "freq": 5.01e-08 - }, - { - "word": "transcriptionally", - "freq": 4.9e-08 - }, - { - "word": "anachronistically", - "freq": 4.79e-08 - }, - { - "word": "unprofessionalism", - "freq": 4.79e-08 - }, - { - "word": "spectrophotometry", - "freq": 4.68e-08 - }, - { - "word": "spondylolisthesis", - "freq": 4.68e-08 - }, - { - "word": "comprehensibility", - "freq": 3.89e-08 - }, - { - "word": "intraperitoneally", - "freq": 3.8e-08 - }, - { - "word": "spectroscopically", - "freq": 3.8e-08 - }, - { - "word": "congregationalism", - "freq": 3.63e-08 - }, - { - "word": "stratigraphically", - "freq": 3.63e-08 - }, - { - "word": "indestructibility", - "freq": 3.39e-08 - }, - { - "word": "methemoglobinemia", - "freq": 3.31e-08 - }, - { - "word": "psychoeducational", - "freq": 3.16e-08 - }, - { - "word": "parapsychological", - "freq": 3.09e-08 - }, - { - "word": "spectroradiometer", - "freq": 3.09e-08 - }, - { - "word": "misrepresentative", - "freq": 2.95e-08 - }, - { - "word": "electrodeposition", - "freq": 2.88e-08 - }, - { - "word": "paleoanthropology", - "freq": 2.88e-08 - }, - { - "word": "propionibacterium", - "freq": 2.88e-08 - }, - { - "word": "neuropathological", - "freq": 2.82e-08 - }, - { - "word": "circumferentially", - "freq": 2.75e-08 - }, - { - "word": "dematerialization", - "freq": 2.69e-08 - }, - { - "word": "idiosyncratically", - "freq": 2.69e-08 - }, - { - "word": "acromioclavicular", - "freq": 2.57e-08 - }, - { - "word": "australopithecine", - "freq": 2.51e-08 - }, - { - "word": "epistemologically", - "freq": 2.51e-08 - }, - { - "word": "polymorphonuclear", - "freq": 2.45e-08 - }, - { - "word": "uncomfortableness", - "freq": 2.4e-08 - }, - { - "word": "denationalization", - "freq": 2.34e-08 - }, - { - "word": "phytopathological", - "freq": 2.34e-08 - }, - { - "word": "uniformitarianism", - "freq": 2.34e-08 - }, - { - "word": "bureaucratization", - "freq": 2.29e-08 - }, - { - "word": "neuropsychiatrist", - "freq": 2.29e-08 - }, - { - "word": "indistinguishably", - "freq": 2.24e-08 - }, - { - "word": "denominationalism", - "freq": 2.19e-08 - }, - { - "word": "disinterestedness", - "freq": 2.19e-08 - }, - { - "word": "hyperexcitability", - "freq": 2.14e-08 - }, - { - "word": "understandability", - "freq": 2.04e-08 - }, - { - "word": "untrustworthiness", - "freq": 2.04e-08 - }, - { - "word": "chemotherapeutics", - "freq": 2e-08 - }, - { - "word": "photolithographic", - "freq": 2e-08 - }, - { - "word": "undistinguishable", - "freq": 2e-08 - }, - { - "word": "intertrochanteric", - "freq": 1.95e-08 - }, - { - "word": "materialistically", - "freq": 1.95e-08 - }, - { - "word": "philanthropically", - "freq": 1.95e-08 - }, - { - "word": "thermoluminescent", - "freq": 1.95e-08 - }, - { - "word": "electromyographic", - "freq": 1.91e-08 - }, - { - "word": "photodissociation", - "freq": 1.91e-08 - }, - { - "word": "unconventionality", - "freq": 1.86e-08 - }, - { - "word": "carboxyhemoglobin", - "freq": 1.82e-08 - }, - { - "word": "cryptocrystalline", - "freq": 1.74e-08 - }, - { - "word": "dedifferentiation", - "freq": 1.7e-08 - }, - { - "word": "perchloroethylene", - "freq": 1.7e-08 - }, - { - "word": "unsympathetically", - "freq": 1.62e-08 - }, - { - "word": "photoconductivity", - "freq": 1.55e-08 - }, - { - "word": "authoritativeness", - "freq": 1.51e-08 - }, - { - "word": "uncontroversially", - "freq": 1.48e-08 - }, - { - "word": "oligodendroglioma", - "freq": 1.45e-08 - }, - { - "word": "paternalistically", - "freq": 1.45e-08 - }, - { - "word": "electrotechnology", - "freq": 1.38e-08 - }, - { - "word": "lexicographically", - "freq": 1.38e-08 - }, - { - "word": "unintelligibility", - "freq": 1.35e-08 - }, - { - "word": "micropaleontology", - "freq": 1.32e-08 - }, - { - "word": "incompressibility", - "freq": 1.26e-08 - }, - { - "word": "particularization", - "freq": 1.26e-08 - }, - { - "word": "consubstantiation", - "freq": 1.23e-08 - }, - { - "word": "parathyroidectomy", - "freq": 1.2e-08 - }, - { - "word": "disadvantageously", - "freq": 1.15e-08 - }, - { - "word": "microbiologically", - "freq": 1.15e-08 - }, - { - "word": "sanctimoniousness", - "freq": 1.15e-08 - }, - { - "word": "inconsequentially", - "freq": 1.1e-08 - }, - { - "word": "palaeoclimatology", - "freq": 1.1e-08 - }, - { - "word": "premonstratensian", - "freq": 1.1e-08 - }, - { - "word": "electroanalytical", - "freq": 1.07e-08 - }, - { - "word": "nationalistically", - "freq": 1.07e-08 - }, - { - "word": "thermoelectricity", - "freq": 1.05e-08 - }, - { - "word": "transillumination", - "freq": 1.05e-08 - } - ], - "19": [ - { - "word": "counterintelligence", - "freq": 4.37e-07 - }, - { - "word": "immunohistochemical", - "freq": 1.29e-07 - }, - { - "word": "interdenominational", - "freq": 1.12e-07 - }, - { - "word": "professionalization", - "freq": 1.07e-07 - }, - { - "word": "hydrochlorothiazide", - "freq": 8.32e-08 - }, - { - "word": "underrepresentation", - "freq": 8.32e-08 - }, - { - "word": "immunoprecipitation", - "freq": 7.76e-08 - }, - { - "word": "hyperparathyroidism", - "freq": 7.59e-08 - }, - { - "word": "unconstitutionality", - "freq": 7.59e-08 - }, - { - "word": "straightforwardness", - "freq": 7.41e-08 - }, - { - "word": "deindustrialization", - "freq": 6.76e-08 - }, - { - "word": "dihydrotestosterone", - "freq": 6.46e-08 - }, - { - "word": "electrocardiography", - "freq": 6.17e-08 - }, - { - "word": "chlorofluorocarbons", - "freq": 6.03e-08 - }, - { - "word": "electromagnetically", - "freq": 5.62e-08 - }, - { - "word": "interdisciplinarity", - "freq": 5.62e-08 - }, - { - "word": "phosphatidylcholine", - "freq": 5.5e-08 - }, - { - "word": "extraterritoriality", - "freq": 4.68e-08 - }, - { - "word": "psychophysiological", - "freq": 4.47e-08 - }, - { - "word": "mischaracterization", - "freq": 3.98e-08 - }, - { - "word": "otorhinolaryngology", - "freq": 3.98e-08 - }, - { - "word": "adrenocorticotropic", - "freq": 3.72e-08 - }, - { - "word": "meningoencephalitis", - "freq": 3.47e-08 - }, - { - "word": "gastroenterological", - "freq": 3.39e-08 - }, - { - "word": "incomprehensibility", - "freq": 3.31e-08 - }, - { - "word": "countertransference", - "freq": 3.24e-08 - }, - { - "word": "hydrometeorological", - "freq": 2.95e-08 - }, - { - "word": "sternocleidomastoid", - "freq": 2.82e-08 - }, - { - "word": "clinicopathological", - "freq": 2.69e-08 - }, - { - "word": "bronchoconstriction", - "freq": 2.51e-08 - }, - { - "word": "intellectualization", - "freq": 2.45e-08 - }, - { - "word": "paleoanthropologist", - "freq": 2.4e-08 - }, - { - "word": "metacarpophalangeal", - "freq": 2.04e-08 - }, - { - "word": "tetrachloroethylene", - "freq": 2.04e-08 - }, - { - "word": "electroluminescence", - "freq": 1.95e-08 - }, - { - "word": "cathodoluminescence", - "freq": 1.91e-08 - }, - { - "word": "photopolymerization", - "freq": 1.74e-08 - }, - { - "word": "dendrochronological", - "freq": 1.62e-08 - }, - { - "word": "metatarsophalangeal", - "freq": 1.55e-08 - }, - { - "word": "tetramethylammonium", - "freq": 1.35e-08 - }, - { - "word": "electrophysiologist", - "freq": 1.32e-08 - }, - { - "word": "representationalism", - "freq": 1.2e-08 - }, - { - "word": "departmentalization", - "freq": 1.15e-08 - } - ], - "20": [ - { - "word": "internationalization", - "freq": 3.63e-07 - }, - { - "word": "uncharacteristically", - "freq": 3.39e-07 - }, - { - "word": "institutionalization", - "freq": 2.14e-07 - }, - { - "word": "internationalisation", - "freq": 1.41e-07 - }, - { - "word": "electrophysiological", - "freq": 1.29e-07 - }, - { - "word": "immunohistochemistry", - "freq": 1.29e-07 - }, - { - "word": "compartmentalization", - "freq": 1.23e-07 - }, - { - "word": "counterrevolutionary", - "freq": 1.2e-07 - }, - { - "word": "tetrahydrocannabinol", - "freq": 1.02e-07 - }, - { - "word": "hypercholesterolemia", - "freq": 9.77e-08 - }, - { - "word": "acetylcholinesterase", - "freq": 9.55e-08 - }, - { - "word": "phosphatidylinositol", - "freq": 9.12e-08 - }, - { - "word": "electroencephalogram", - "freq": 7.59e-08 - }, - { - "word": "institutionalisation", - "freq": 5.5e-08 - }, - { - "word": "radiopharmaceuticals", - "freq": 5.5e-08 - }, - { - "word": "electrocardiographic", - "freq": 2.95e-08 - }, - { - "word": "indistinguishability", - "freq": 2.14e-08 - }, - { - "word": "keratoconjunctivitis", - "freq": 2.14e-08 - }, - { - "word": "anthropomorphization", - "freq": 1.35e-08 - }, - { - "word": "crystallographically", - "freq": 1.26e-08 - } - ] - }, - "common_words": [ - "performing", - "fig", - "trains", - "slam", - "prize", - "europe", - "did", - "gravity", - "finest", - "unlike", - "storage", - "warehouse", - "roses", - "two", - "american", - "origins", - "dropping", - "struggling", - "boats", - "eliminate", - "rainbow", - "torn", - "taylor", - "spare", - "fuck", - "tops", - "budget", - "area", - "broadcasting", - "statements", - "harper", - "mixture", - "revolutionary", - "injury", - "arm", - "ion", - "northwest", - "screen", - "stopped", - "test", - "politics", - "relatives", - "representative", - "were", - "their", - "divorce", - "exhausted", - "establish", - "jumping", - "dollar", - "oak", - "pupils", - "boy", - "facility", - "draw", - "decline", - "sauce", - "moving", - "alabama", - "whenever", - "revealed", - "notably", - "becoming", - "techniques", - "cuba", - "foul", - "bitcoin", - "partners", - "evolution", - "enjoy", - "merely", - "gods", - "valve", - "resume", - "returning", - "werent", - "loud", - "poison", - "outfit", - "medical", - "park", - "crown", - "colleges", - "arrives", - "category", - "favour", - "der", - "computers", - "victim", - "unnecessary", - "men", - "ones", - "sciences", - "et", - "plan", - "hasnt", - "ugly", - "coverage", - "david", - "logo", - "william", - "canadian", - "worldwide", - "attempts", - "shelter", - "alive", - "hospitals", - "real", - "search", - "daddy", - "older", - "shipped", - "removed", - "functioning", - "spider", - "reality", - "october", - "murray", - "charged", - "physically", - "bottle", - "payments", - "fund", - "describing", - "london", - "useful", - "gather", - "unfortunate", - "transform", - "ownership", - "classified", - "awesome", - "dealer", - "vi", - "assisted", - "fan", - "measures", - "days", - "slight", - "spent", - "administration", - "politicians", - "havent", - "preparing", - "sheet", - "signs", - "other", - "work", - "data", - "suggestions", - "mercury", - "model", - "successfully", - "dried", - "collapse", - "consecutive", - "jones", - "fox", - "bailey", - "million", - "herself", - "vital", - "up", - "response", - "contribute", - "douglas", - "categories", - "solutions", - "quality", - "sending", - "tent", - "volumes", - "thumb", - "screaming", - "transition", - "reforms", - "use", - "base", - "casual", - "ties", - "intelligent", - "mask", - "realm", - "dropped", - "relax", - "attached", - "hiding", - "apr", - "feet", - "leader", - "sun", - "troops", - "samuel", - "easier", - "hardly", - "com", - "sam", - "cable", - "pork", - "inspiring", - "legal", - "approved", - "thailand", - "accordance", - "couple", - "existence", - "haha", - "wallace", - "poorly", - "shaking", - "after", - "plane", - "duke", - "luxury", - "surgical", - "trial", - "radical", - "caring", - "negative", - "losing", - "dubai", - "constantly", - "ambassador", - "measuring", - "alongside", - "chicago", - "necessarily", - "very", - "small", - "stress", - "birmingham", - "promising", - "credit", - "large", - "owns", - "requirements", - "aims", - "rev", - "kicks", - "north", - "michigan", - "pacific", - "guidelines", - "publications", - "releases", - "fridge", - "donations", - "distant", - "finger", - "brings", - "football", - "concerning", - "said", - "play", - "toys", - "the", - "orientation", - "nhl", - "sleep", - "african", - "lot", - "jerusalem", - "radar", - "bout", - "dedicated", - "soon", - "clothing", - "oxford", - "mainstream", - "sorts", - "england", - "server", - "fast", - "dogs", - "mood", - "cruise", - "get", - "ceremony", - "improved", - "soccer", - "constructed", - "hour", - "thats", - "remarkable", - "caroline", - "centre", - "heroes", - "combine", - "definition", - "rental", - "encounter", - "hi", - "cia", - "remembered", - "cup", - "edges", - "uncomfortable", - "charm", - "ten", - "error", - "everyone", - "noise", - "cancel", - "presents", - "frequent", - "beds", - "referred", - "visit", - "few", - "lovers", - "lack", - "excellent", - "accurate", - "minister", - "literary", - "senator", - "worth", - "increased", - "hair", - "poll", - "appear", - "father", - "adds", - "animation", - "habits", - "jet", - "procedure", - "packages", - "bills", - "handful", - "nov", - "representation", - "ga", - "dead", - "massive", - "yards", - "mud", - "hearts", - "si", - "exchange", - "compound", - "respected", - "ruth", - "keeps", - "disk", - "challenged", - "decision", - "wipe", - "widow", - "period", - "values", - "gold", - "finally", - "overview", - "translation", - "performances", - "sold", - "hot", - "lemon", - "musical", - "abstract", - "proposed", - "distance", - "ukraine", - "flat", - "seventh", - "bonus", - "threshold", - "degrees", - "fine", - "warming", - "rail", - "courtesy", - "boundaries", - "duncan", - "thin", - "carter", - "entirely", - "cigarettes", - "nomination", - "hoping", - "rally", - "graduation", - "protecting", - "experts", - "on", - "logic", - "kent", - "peninsula", - "wings", - "incredible", - "initiative", - "audio", - "sucks", - "lucas", - "obligation", - "potentially", - "flight", - "culture", - "shifts", - "surviving", - "companys", - "unless", - "lip", - "creation", - "items", - "sole", - "arrow", - "rip", - "continued", - "joke", - "landing", - "earth", - "no", - "innocent", - "award", - "latin", - "hug", - "asshole", - "operates", - "string", - "vs", - "hills", - "track", - "close", - "conflicts", - "spirit", - "power", - "gym", - "analysis", - "want", - "drove", - "birds", - "brain", - "bolt", - "multiple", - "dog", - "governing", - "induced", - "sad", - "balls", - "identification", - "sky", - "dust", - "warrant", - "relaxed", - "carrier", - "operator", - "participating", - "deer", - "colony", - "variety", - "jon", - "permission", - "alert", - "assets", - "mansion", - "contrary", - "premier", - "hill", - "yesterday", - "assess", - "conduct", - "generous", - "genes", - "jewelry", - "thinking", - "guaranteed", - "jonathan", - "list", - "accidentally", - "modern", - "trick", - "announced", - "pc", - "assessment", - "possibly", - "box", - "quarter", - "door", - "seriously", - "halfway", - "wound", - "facial", - "declined", - "session", - "come", - "travel", - "feels", - "chicken", - "differences", - "decade", - "dvd", - "difficulty", - "generated", - "corporation", - "tv", - "kidney", - "teeth", - "yoga", - "sr", - "critics", - "describes", - "curious", - "monkey", - "even", - "nick", - "create", - "trash", - "urge", - "genuine", - "wasting", - "democratic", - "alternatives", - "puts", - "losses", - "marie", - "invented", - "brass", - "jack", - "junk", - "switched", - "usage", - "speaks", - "tech", - "heels", - "mine", - "vincent", - "rule", - "rep", - "drink", - "guard", - "transit", - "racing", - "engaging", - "figures", - "pay", - "all", - "exit", - "tea", - "highlights", - "rhythm", - "booth", - "sight", - "orbit", - "suspect", - "gospel", - "brad", - "pepper", - "consulting", - "accident", - "cover", - "pointing", - "weird", - "cute", - "nominated", - "till", - "fl", - "resort", - "depth", - "mice", - "copyright", - "miracle", - "sydney", - "competitive", - "washed", - "er", - "horses", - "talked", - "fits", - "consisting", - "modest", - "mere", - "toy", - "friends", - "attracted", - "likewise", - "conservative", - "equipment", - "opponents", - "needing", - "legendary", - "warned", - "thought", - "counted", - "greg", - "ever", - "ore", - "philippines", - "de", - "annual", - "watson", - "posts", - "todd", - "lion", - "say", - "wine", - "sketch", - "whatever", - "invested", - "attraction", - "character", - "entertainment", - "greatly", - "elevated", - "japan", - "models", - "mi", - "are", - "streets", - "sisters", - "often", - "talented", - "latter", - "mark", - "photographs", - "beard", - "careful", - "feeling", - "brandon", - "awarded", - "interaction", - "success", - "consideration", - "down", - "worked", - "none", - "thanksgiving", - "plates", - "churches", - "equality", - "congressional", - "realised", - "every", - "mike", - "schedule", - "dies", - "election", - "grandfather", - "unusual", - "despite", - "juan", - "primary", - "lineup", - "essay", - "listen", - "struck", - "hated", - "owned", - "you", - "professor", - "detection", - "cooked", - "fully", - "flavor", - "nice", - "save", - "st", - "towns", - "complaints", - "number", - "palm", - "murders", - "essentially", - "cash", - "take", - "wearing", - "crazy", - "strategic", - "prayers", - "stored", - "hero", - "conferences", - "write", - "shoe", - "oklahoma", - "maria", - "milan", - "loser", - "challenge", - "terrorism", - "mercy", - "miami", - "starts", - "career", - "titles", - "el", - "relationship", - "nba", - "reputation", - "occurs", - "running", - "feed", - "testing", - "execution", - "fact", - "germans", - "contact", - "board", - "closest", - "receives", - "desired", - "fabulous", - "avoiding", - "exhibition", - "aluminum", - "shoes", - "rare", - "race", - "occur", - "funds", - "print", - "tied", - "moments", - "repairs", - "northeast", - "form", - "providing", - "indicating", - "heavy", - "top", - "savage", - "temperatures", - "dot", - "domestic", - "matched", - "gathered", - "wouldnt", - "build", - "grows", - "stan", - "naturally", - "approximately", - "ferry", - "go", - "posted", - "cam", - "smoke", - "pleased", - "boring", - "throws", - "eventually", - "single", - "ministry", - "early", - "clark", - "task", - "spell", - "mixed", - "mechanical", - "operate", - "variable", - "punk", - "remove", - "game", - "explaining", - "objective", - "russian", - "fraud", - "camps", - "comfortable", - "trucks", - "hillary", - "view", - "services", - "import", - "excuse", - "kenny", - "jumped", - "appeals", - "catching", - "moved", - "pete", - "employee", - "gently", - "modified", - "iv", - "whites", - "amazing", - "iii", - "thompson", - "eric", - "accepted", - "beta", - "influence", - "composed", - "prove", - "medieval", - "judge", - "appropriate", - "males", - "replace", - "swift", - "unemployment", - "sink", - "defeat", - "intensive", - "magic", - "possible", - "todays", - "commonwealth", - "allies", - "laughs", - "burst", - "fiber", - "programmes", - "pension", - "regional", - "delicate", - "excitement", - "colorado", - "hong", - "deadly", - "du", - "hard", - "scientific", - "boston", - "universities", - "loss", - "says", - "stock", - "hungry", - "speak", - "funeral", - "gardens", - "logical", - "fbi", - "follows", - "discovery", - "interpretation", - "shark", - "delighted", - "they", - "division", - "campbell", - "tribes", - "francis", - "projects", - "corruption", - "retail", - "teacher", - "abuse", - "briefly", - "we", - "breach", - "currency", - "something", - "church", - "perfect", - "wider", - "item", - "failing", - "lots", - "muscle", - "sit", - "without", - "bizarre", - "mario", - "tours", - "louis", - "productivity", - "dry", - "welsh", - "petty", - "gentlemen", - "grandmother", - "exposed", - "texas", - "day", - "temporarily", - "nicholas", - "fire", - "roots", - "expanding", - "resolve", - "ron", - "importance", - "planets", - "theft", - "georgia", - "dc", - "battery", - "acres", - "insist", - "appeared", - "stood", - "august", - "nightmare", - "invitation", - "thoroughly", - "inch", - "examination", - "identical", - "age", - "moreover", - "zone", - "operation", - "opposite", - "fa", - "tissue", - "release", - "instance", - "lions", - "at", - "river", - "talks", - "lower", - "centres", - "produce", - "defending", - "prominent", - "meals", - "threatening", - "moore", - "aspects", - "coin", - "survived", - "closed", - "garage", - "profits", - "corner", - "sample", - "hands", - "workout", - "would", - "exercise", - "dictionary", - "barely", - "emotions", - "laid", - "instances", - "produces", - "paragraph", - "advised", - "different", - "crew", - "holy", - "tell", - "reach", - "controller", - "minimal", - "grateful", - "colonial", - "three", - "coming", - "happen", - "workers", - "glasgow", - "planes", - "flexible", - "spectacular", - "consistent", - "reflects", - "carry", - "distribution", - "album", - "reporter", - "continuous", - "cares", - "input", - "guy", - "greater", - "ben", - "lewis", - "life", - "rewards", - "color", - "invention", - "denied", - "enjoyed", - "falling", - "graphic", - "teenage", - "mean", - "everything", - "symbols", - "below", - "cells", - "suggests", - "rear", - "barcelona", - "snap", - "approaches", - "charming", - "isis", - "staring", - "restore", - "overnight", - "method", - "naked", - "review", - "upper", - "kings", - "fix", - "directions", - "allows", - "length", - "angle", - "freedom", - "larry", - "tribute", - "jail", - "britain", - "thirty", - "tunnel", - "adult", - "laboratory", - "drag", - "notice", - "investors", - "vitamin", - "though", - "formula", - "youve", - "bare", - "subsequent", - "formerly", - "created", - "elected", - "craft", - "points", - "bite", - "diego", - "sum", - "constitutional", - "newcastle", - "trends", - "am", - "evans", - "entity", - "exist", - "deeply", - "affordable", - "axis", - "particularly", - "bernard", - "as", - "hospital", - "ca", - "came", - "cum", - "medicine", - "series", - "guinea", - "mobile", - "depression", - "creatures", - "dealers", - "buck", - "provided", - "forgive", - "priest", - "observed", - "acknowledged", - "women", - "theyll", - "tournament", - "suit", - "popular", - "become", - "ruling", - "broke", - "bird", - "cnn", - "pittsburgh", - "cm", - "belongs", - "theres", - "nintendo", - "pursue", - "gauge", - "sean", - "not", - "regularly", - "acquired", - "principal", - "enterprise", - "collective", - "signature", - "concepts", - "conscious", - "she", - "orders", - "moment", - "rage", - "penalties", - "ingredients", - "stuck", - "paintings", - "factor", - "trade", - "pilots", - "bradley", - "opposing", - "documents", - "hits", - "cities", - "attorneys", - "banned", - "mineral", - "airport", - "knowledge", - "jesse", - "meaningful", - "library", - "takes", - "hanging", - "wed", - "athletes", - "suffering", - "mama", - "demo", - "illegal", - "lock", - "stomach", - "phoenix", - "cannot", - "selection", - "transparent", - "basket", - "run", - "buzz", - "cycling", - "characterized", - "style", - "mind", - "total", - "personal", - "treaty", - "atlantic", - "chef", - "otherwise", - "robinson", - "linear", - "adjacent", - "convince", - "impossible", - "settings", - "prepared", - "background", - "sue", - "afternoon", - "captain", - "afford", - "crying", - "heres", - "emperor", - "veteran", - "allen", - "defeated", - "arabia", - "and", - "material", - "doug", - "families", - "eternal", - "another", - "painful", - "womens", - "correct", - "appeal", - "beaten", - "gained", - "locations", - "marks", - "attitude", - "helmet", - "editorial", - "drugs", - "technical", - "declare", - "was", - "tear", - "heights", - "san", - "surveillance", - "business", - "duration", - "honour", - "maps", - "felt", - "vol", - "container", - "fitting", - "suspended", - "elections", - "narrative", - "signed", - "once", - "origin", - "grand", - "eight", - "doctors", - "featured", - "earliest", - "founder", - "name", - "adam", - "earl", - "organisations", - "in", - "lens", - "ranges", - "rogers", - "associate", - "south", - "appearances", - "joy", - "populations", - "assignment", - "suits", - "drinks", - "attacks", - "argues", - "imagined", - "meantime", - "false", - "punishment", - "shoulder", - "male", - "dialogue", - "mississippi", - "rape", - "poem", - "intentions", - "liberal", - "affect", - "numerous", - "laura", - "fortune", - "dawn", - "withdraw", - "cutting", - "cleaning", - "forgotten", - "questioning", - "heat", - "him", - "hammer", - "lying", - "shoot", - "aware", - "killed", - "matching", - "understood", - "materials", - "judgment", - "travelling", - "compared", - "liar", - "somewhat", - "nervous", - "collection", - "height", - "golden", - "suck", - "ad", - "engines", - "rod", - "bored", - "intellectual", - "justify", - "chapters", - "merit", - "dragons", - "tanks", - "moderate", - "them", - "argued", - "pushed", - "shitty", - "army", - "preventing", - "kelly", - "idiots", - "consumption", - "recognized", - "timing", - "lie", - "privately", - "bearing", - "multi", - "dark", - "phone", - "acting", - "taxes", - "deny", - "tables", - "networks", - "customers", - "somehow", - "tales", - "include", - "rotation", - "shes", - "month", - "secondary", - "indicates", - "seems", - "jake", - "henry", - "jamie", - "reserve", - "commented", - "send", - "ltd", - "entries", - "addresses", - "kidding", - "agrees", - "elizabeth", - "host", - "sealed", - "does", - "rates", - "lawyers", - "worn", - "nato", - "offensive", - "needs", - "consultation", - "several", - "has", - "societies", - "volunteer", - "room", - "campaign", - "story", - "restoration", - "belly", - "worlds", - "earnings", - "addiction", - "emerging", - "colored", - "difficulties", - "cookies", - "crop", - "elderly", - "homework", - "little", - "voted", - "carl", - "ended", - "securities", - "mines", - "watching", - "stages", - "grief", - "plans", - "christmas", - "greece", - "interface", - "owen", - "aged", - "supplied", - "theories", - "refuse", - "order", - "luke", - "trail", - "wishes", - "pill", - "trees", - "calculated", - "directors", - "montana", - "reference", - "penny", - "property", - "sadly", - "believed", - "punch", - "practical", - "orlando", - "killer", - "stronger", - "ms", - "em", - "home", - "household", - "usual", - "plug", - "dishes", - "president", - "topics", - "marked", - "reflection", - "missile", - "april", - "substantial", - "jennifer", - "honestly", - "gps", - "when", - "ken", - "cow", - "violence", - "requested", - "shy", - "bodies", - "explore", - "until", - "maine", - "carpet", - "ham", - "tour", - "refers", - "checked", - "pic", - "novels", - "proceedings", - "removal", - "six", - "dominated", - "reduce", - "steam", - "russell", - "spotted", - "paths", - "willing", - "australia", - "november", - "degree", - "hang", - "edinburgh", - "relate", - "bright", - "stairs", - "ripped", - "leads", - "stranger", - "motion", - "integrated", - "users", - "article", - "shadow", - "tolerance", - "interesting", - "frank", - "responding", - "pound", - "black", - "expertise", - "altered", - "field", - "annoying", - "netflix", - "sits", - "knights", - "knee", - "bits", - "cruel", - "humble", - "tips", - "relationships", - "structures", - "infinite", - "pizza", - "translated", - "slip", - "jeans", - "operational", - "experiment", - "fear", - "calm", - "epic", - "regions", - "blowing", - "raid", - "nutrition", - "scare", - "stability", - "reviewed", - "mad", - "user", - "yo", - "prevention", - "amsterdam", - "temperature", - "jury", - "inc", - "shopping", - "archives", - "christian", - "leaf", - "achievements", - "recognised", - "sunny", - "zoo", - "reviews", - "democracy", - "arrested", - "recovery", - "organized", - "awareness", - "ball", - "wealth", - "sexually", - "extract", - "primarily", - "permit", - "finishing", - "fr", - "dealing", - "offering", - "arriving", - "extent", - "al", - "colours", - "anyways", - "gov", - "newest", - "angela", - "genuinely", - "fur", - "bank", - "creek", - "imagination", - "adjusted", - "eastern", - "aka", - "heading", - "wayne", - "instantly", - "quit", - "teachers", - "sleeping", - "anthony", - "broad", - "yellow", - "fucked", - "walks", - "deciding", - "twenty", - "journalist", - "publish", - "competing", - "appreciation", - "cabinet", - "fantasy", - "comparable", - "morgan", - "pressed", - "healthy", - "happier", - "tx", - "profession", - "duck", - "sa", - "leeds", - "chain", - "cognitive", - "mars", - "co", - "extensive", - "nevada", - "submission", - "surprise", - "antonio", - "wildlife", - "rider", - "advocate", - "consumer", - "di", - "idk", - "express", - "coaches", - "minimum", - "placement", - "traffic", - "fires", - "food", - "amazon", - "score", - "forget", - "larger", - "island", - "require", - "challenges", - "genetic", - "old", - "officer", - "doll", - "trades", - "memorial", - "scheme", - "rated", - "foster", - "bro", - "fate", - "unfair", - "throughout", - "homeless", - "seized", - "ah", - "ritual", - "ensure", - "centuries", - "replaced", - "lane", - "deeper", - "hook", - "mar", - "liberals", - "nevertheless", - "challenging", - "discussing", - "james", - "focusing", - "te", - "rides", - "mail", - "resolved", - "testament", - "laptop", - "registered", - "apology", - "apple", - "doc", - "gives", - "engine", - "fusion", - "bother", - "disappeared", - "edit", - "heated", - "perform", - "washington", - "touch", - "dumb", - "draws", - "railway", - "during", - "serve", - "mps", - "electrical", - "fails", - "details", - "press", - "recover", - "coastal", - "questioned", - "wire", - "belonged", - "comment", - "intend", - "dirty", - "hybrid", - "everyday", - "demands", - "methods", - "honey", - "drum", - "strikes", - "bowl", - "winner", - "mt", - "tigers", - "suggest", - "edge", - "faced", - "digital", - "farming", - "traveling", - "songs", - "respond", - "presidential", - "dna", - "whereas", - "pockets", - "films", - "governor", - "joseph", - "edwards", - "gas", - "english", - "stated", - "darling", - "billy", - "told", - "fit", - "comeback", - "unlikely", - "wealthy", - "incredibly", - "addressed", - "baby", - "michelle", - "taiwan", - "vast", - "berlin", - "investigated", - "maker", - "rooms", - "suggestion", - "dated", - "full", - "coalition", - "dance", - "producer", - "underlying", - "protocol", - "many", - "poor", - "steve", - "principle", - "five", - "link", - "margaret", - "detected", - "fixed", - "allied", - "membership", - "sugar", - "beating", - "enhanced", - "marketing", - "instant", - "stand", - "knew", - "stocks", - "cat", - "graham", - "trauma", - "resulted", - "legs", - "innovation", - "participation", - "transactions", - "typical", - "ii", - "imperial", - "letter", - "under", - "beast", - "hes", - "charts", - "blue", - "treatments", - "hire", - "roman", - "weeks", - "humanity", - "anger", - "photos", - "newly", - "pitch", - "strength", - "busy", - "protest", - "loyal", - "woke", - "own", - "panic", - "ink", - "hole", - "closer", - "expansion", - "quick", - "precious", - "responses", - "surrounded", - "harbor", - "shows", - "shorter", - "winners", - "products", - "lease", - "constant", - "rejected", - "theme", - "process", - "christians", - "implement", - "circle", - "fair", - "bridges", - "claimed", - "photo", - "na", - "transaction", - "bugs", - "paying", - "minded", - "content", - "chapel", - "communist", - "truly", - "indication", - "guilty", - "bullets", - "lady", - "cock", - "direct", - "campaigns", - "upgrade", - "sentences", - "commission", - "fee", - "celebrate", - "examples", - "hollywood", - "demon", - "brooks", - "horizon", - "excess", - "raising", - "clothes", - "demonstrated", - "present", - "possession", - "kitchen", - "extend", - "ruin", - "settlement", - "kind", - "displayed", - "effort", - "backs", - "deputy", - "holders", - "giant", - "sounded", - "whats", - "forest", - "tried", - "century", - "vision", - "with", - "fuckin", - "independence", - "honored", - "march", - "begins", - "grown", - "times", - "impact", - "camera", - "database", - "oven", - "else", - "requirement", - "layers", - "attractive", - "can", - "diet", - "spaces", - "cinema", - "appointment", - "streak", - "former", - "kinda", - "upset", - "current", - "insight", - "dirt", - "harmony", - "properly", - "gang", - "par", - "diamond", - "case", - "clouds", - "lied", - "results", - "nursing", - "lung", - "or", - "mistakes", - "pulse", - "slept", - "encountered", - "added", - "generally", - "gift", - "investing", - "tribal", - "favor", - "rumors", - "scientists", - "heck", - "living", - "patterns", - "cancer", - "matters", - "competition", - "smells", - "craig", - "duties", - "ultimately", - "publication", - "popularity", - "marijuana", - "television", - "boards", - "emerged", - "oil", - "faculty", - "bi", - "warfare", - "android", - "pushing", - "bomb", - "embrace", - "hardest", - "privilege", - "mega", - "stake", - "gaining", - "shares", - "closet", - "enhance", - "kevin", - "hidden", - "oliver", - "arch", - "uniform", - "accessible", - "rugby", - "kenya", - "gains", - "productive", - "tune", - "vice", - "shanghai", - "eliminated", - "happy", - "coaching", - "vessels", - "flowing", - "pokemon", - "batman", - "do", - "reasonable", - "jeff", - "cave", - "news", - "bench", - "direction", - "thousands", - "celebration", - "spots", - "intention", - "tropical", - "accordingly", - "julie", - "pour", - "console", - "jeremy", - "strike", - "familys", - "opinions", - "find", - "emails", - "consider", - "network", - "developer", - "managed", - "satellite", - "advances", - "scary", - "hurts", - "pets", - "slightly", - "sees", - "musicians", - "coal", - "sharp", - "pine", - "part", - "representing", - "quotes", - "public", - "rick", - "thomas", - "makes", - "disease", - "association", - "stars", - "adjust", - "original", - "lisa", - "trailer", - "aim", - "easily", - "congratulations", - "parish", - "forces", - "upon", - "introduction", - "pursuit", - "carol", - "breath", - "cloud", - "select", - "features", - "caught", - "movies", - "machinery", - "restaurants", - "connecting", - "commissioner", - "scene", - "relatively", - "emphasis", - "corresponding", - "certainly", - "settled", - "flowers", - "supporting", - "servants", - "allowing", - "promoting", - "don", - "attitudes", - "educational", - "volunteers", - "debt", - "pot", - "holding", - "america", - "included", - "port", - "cure", - "arkansas", - "sentiment", - "agree", - "shade", - "wants", - "globe", - "sentence", - "assault", - "satisfaction", - "facebook", - "rebel", - "employees", - "tale", - "fellow", - "extending", - "sexy", - "entire", - "messages", - "class", - "observation", - "roads", - "done", - "saying", - "arrangement", - "proteins", - "preference", - "julia", - "speed", - "matches", - "frozen", - "wise", - "energy", - "caused", - "communities", - "prince", - "contribution", - "goodbye", - "counter", - "wall", - "tradition", - "facts", - "ships", - "pulling", - "jazz", - "winds", - "government", - "establishment", - "peter", - "ft", - "earthquake", - "alike", - "closure", - "reading", - "clear", - "indeed", - "vary", - "finding", - "grid", - "wells", - "iraq", - "uh", - "disappointed", - "phones", - "freak", - "profile", - "rather", - "scientist", - "always", - "vehicles", - "microsoft", - "yea", - "newspapers", - "acknowledge", - "couch", - "bone", - "bring", - "latest", - "shout", - "ep", - "tweet", - "tbh", - "observations", - "scheduled", - "controversy", - "entry", - "scores", - "ontario", - "memory", - "languages", - "arranged", - "skip", - "capacity", - "motivated", - "jason", - "ace", - "mount", - "crimes", - "vampire", - "liverpool", - "indicate", - "wrote", - "stones", - "regret", - "tires", - "mobility", - "guests", - "arabic", - "isolation", - "fighters", - "sixth", - "any", - "movie", - "shape", - "tears", - "pattern", - "love", - "folks", - "enjoying", - "artistic", - "people", - "environments", - "pictures", - "drunk", - "perry", - "developing", - "flights", - "hopes", - "prisoners", - "friendly", - "elephant", - "insert", - "saints", - "trend", - "writers", - "audit", - "clinic", - "apps", - "guidance", - "sub", - "partial", - "external", - "squad", - "country", - "terror", - "emotional", - "center", - "diving", - "praised", - "appreciate", - "ba", - "york", - "frequency", - "group", - "mysterious", - "hostile", - "seeking", - "threatened", - "internet", - "hence", - "wherever", - "voting", - "road", - "sunday", - "delhi", - "dozen", - "cream", - "inspector", - "ridge", - "americans", - "swiss", - "sin", - "pre", - "cliff", - "fitted", - "institute", - "roster", - "tall", - "reform", - "explanation", - "jump", - "benjamin", - "grace", - "phillips", - "complain", - "roughly", - "mountains", - "arab", - "ann", - "traded", - "scottish", - "self", - "penis", - "hunting", - "concluded", - "quiet", - "pricing", - "funded", - "contractors", - "lately", - "campus", - "served", - "jungle", - "communication", - "normally", - "money", - "journal", - "creature", - "continental", - "shell", - "characteristics", - "located", - "directed", - "stolen", - "contributed", - "weak", - "court", - "line", - "commander", - "eleven", - "violation", - "contracts", - "pan", - "someones", - "severe", - "francisco", - "collins", - "sang", - "serves", - "les", - "pollution", - "beg", - "mass", - "atmosphere", - "ios", - "there", - "biology", - "everywhere", - "noon", - "revenue", - "blonde", - "nurse", - "findings", - "formed", - "choosing", - "ma", - "breakfast", - "ram", - "mystery", - "setting", - "growth", - "us", - "appears", - "chest", - "reward", - "breed", - "transport", - "denmark", - "brought", - "malaysia", - "novel", - "concerns", - "talent", - "salary", - "coast", - "porn", - "hear", - "dimension", - "sticking", - "strings", - "chairs", - "rely", - "molecular", - "infrastructure", - "clinical", - "complex", - "caps", - "iconic", - "principles", - "manager", - "approaching", - "peers", - "act", - "crisis", - "ethics", - "machines", - "crime", - "secret", - "ways", - "freeze", - "record", - "propaganda", - "police", - "mortgage", - "norman", - "ashamed", - "dealt", - "girl", - "fm", - "ballot", - "this", - "flame", - "citizenship", - "mac", - "neighborhood", - "reflected", - "sized", - "note", - "republican", - "protected", - "layout", - "beloved", - "tennessee", - "safety", - "romantic", - "settle", - "static", - "assumption", - "drives", - "linda", - "systems", - "measured", - "report", - "throat", - "dressed", - "blocks", - "expect", - "williams", - "shortly", - "bears", - "segment", - "scan", - "capital", - "diana", - "opened", - "object", - "parent", - "prof", - "yet", - "engineer", - "least", - "cheating", - "emotion", - "economics", - "assistant", - "passes", - "suspension", - "job", - "creative", - "zero", - "separation", - "eve", - "gone", - "ray", - "bat", - "performance", - "crap", - "fill", - "momentum", - "minority", - "eaten", - "convention", - "logan", - "stressed", - "varied", - "italy", - "bristol", - "film", - "runner", - "overcome", - "republicans", - "bang", - "safer", - "surfaces", - "affair", - "recognition", - "across", - "den", - "photographer", - "travis", - "cops", - "declaration", - "develop", - "my", - "indigenous", - "born", - "application", - "tony", - "carolina", - "korean", - "polish", - "certified", - "metres", - "default", - "issue", - "respective", - "eating", - "apart", - "goat", - "lips", - "percent", - "organic", - "accent", - "theoretical", - "non", - "mid", - "formally", - "ridiculous", - "villages", - "circuit", - "colonel", - "wedding", - "excessive", - "aircraft", - "gain", - "published", - "stance", - "thai", - "cooling", - "ali", - "laundry", - "sunset", - "murphy", - "released", - "designated", - "stands", - "guns", - "expanded", - "shared", - "processes", - "iphone", - "wing", - "province", - "differently", - "rational", - "ye", - "swedish", - "historic", - "driving", - "combined", - "ghost", - "biological", - "nigeria", - "architecture", - "explosion", - "bombs", - "copies", - "confusing", - "steps", - "apply", - "estimates", - "recall", - "hotel", - "human", - "denver", - "speaker", - "migration", - "renewed", - "josh", - "wanting", - "literature", - "eggs", - "soviet", - "machine", - "columbia", - "expert", - "load", - "spam", - "hundred", - "purpose", - "isnt", - "considerable", - "possibility", - "beef", - "exclusively", - "wounded", - "bet", - "chile", - "woman", - "border", - "knight", - "preferred", - "ash", - "bio", - "planned", - "va", - "understands", - "nicely", - "fans", - "weekend", - "champion", - "son", - "failed", - "conducting", - "hand", - "bend", - "win", - "launched", - "servant", - "mentally", - "waters", - "restored", - "liquor", - "olympic", - "weapon", - "brief", - "sony", - "significance", - "given", - "terrorists", - "hats", - "pregnant", - "jean", - "torture", - "candidate", - "her", - "persons", - "pending", - "conservatives", - "faith", - "ohio", - "pain", - "expense", - "gay", - "charlotte", - "trump", - "cannon", - "subway", - "left", - "mo", - "graduates", - "airline", - "special", - "oclock", - "sand", - "strategy", - "policies", - "east", - "cost", - "harvest", - "attorney", - "hitler", - "shake", - "keyboard", - "roof", - "workplace", - "grants", - "elite", - "compensation", - "concentrate", - "insisted", - "tag", - "stephen", - "bbc", - "uncertainty", - "fifth", - "heaven", - "batteries", - "sometimes", - "soil", - "built", - "anxiety", - "option", - "executives", - "risks", - "instructor", - "monster", - "inventory", - "destroying", - "lets", - "tyler", - "banks", - "plants", - "nations", - "statue", - "organ", - "orchestra", - "less", - "nine", - "lies", - "criminals", - "arsenal", - "invisible", - "aaron", - "enthusiasm", - "anybody", - "barry", - "wheels", - "arc", - "leak", - "most", - "defend", - "factory", - "surprising", - "appointed", - "storm", - "occurred", - "stories", - "gary", - "onto", - "annually", - "population", - "only", - "brains", - "tourism", - "rising", - "enemies", - "studio", - "meter", - "but", - "condition", - "omg", - "selected", - "hurry", - "adams", - "confirmed", - "therefore", - "purchase", - "samsung", - "going", - "china", - "goes", - "graphics", - "harvey", - "dam", - "extension", - "short", - "ahead", - "acid", - "norway", - "rob", - "richmond", - "studios", - "seconds", - "purchased", - "swing", - "bloody", - "verse", - "championship", - "destiny", - "warrior", - "led", - "poems", - "lucky", - "attempting", - "break", - "timeline", - "licensed", - "shield", - "connect", - "mrs", - "shocking", - "facing", - "excited", - "roll", - "files", - "yeah", - "strain", - "socks", - "mathematical", - "solo", - "twitter", - "component", - "warn", - "foot", - "hadnt", - "intervention", - "retirement", - "pray", - "compete", - "cope", - "records", - "ebay", - "atlanta", - "traditionally", - "victor", - "specially", - "candy", - "ignorance", - "ranked", - "hired", - "must", - "ought", - "estimate", - "connected", - "knock", - "being", - "hosting", - "writing", - "rats", - "knees", - "kids", - "recorded", - "luck", - "burden", - "medal", - "nbc", - "shouldve", - "desires", - "placing", - "interact", - "declared", - "maximum", - "tragic", - "heart", - "designer", - "van", - "won", - "personality", - "claiming", - "unfortunately", - "aug", - "ninth", - "boxes", - "acquisition", - "failure", - "badly", - "remainder", - "personnel", - "commerce", - "awkward", - "ages", - "proper", - "an", - "actions", - "passive", - "seat", - "lord", - "sticks", - "contrast", - "phil", - "summary", - "vertical", - "elaborate", - "decide", - "apparent", - "swim", - "leaving", - "lighter", - "finale", - "first", - "legacy", - "glorious", - "department", - "investigating", - "depend", - "reporting", - "lieutenant", - "walter", - "equivalent", - "territory", - "dick", - "diabetes", - "detect", - "sec", - "accomplished", - "indiana", - "deemed", - "spite", - "invest", - "realistic", - "programming", - "thrown", - "studied", - "visitor", - "scholarship", - "banner", - "ss", - "lifted", - "means", - "rebels", - "british", - "attempt", - "fighting", - "icon", - "product", - "better", - "fish", - "desk", - "divide", - "unknown", - "indians", - "cents", - "walk", - "update", - "nasty", - "bush", - "damaged", - "addition", - "rent", - "seller", - "planted", - "vote", - "islands", - "tube", - "emma", - "borders", - "proposal", - "registration", - "wish", - "horror", - "decided", - "encouraging", - "associates", - "price", - "restrictions", - "asleep", - "consists", - "himself", - "doctor", - "soft", - "parallel", - "traveled", - "whom", - "rounds", - "february", - "net", - "truth", - "cbs", - "main", - "urgent", - "well", - "gates", - "than", - "fascinating", - "radio", - "draft", - "production", - "tracking", - "shirts", - "assists", - "meal", - "los", - "phd", - "deaths", - "liked", - "repeatedly", - "sept", - "retain", - "media", - "restaurant", - "travels", - "natural", - "convinced", - "sen", - "client", - "need", - "fewer", - "lords", - "fence", - "enemy", - "crucial", - "unexpected", - "training", - "religion", - "dozens", - "cool", - "bob", - "flew", - "ads", - "chancellor", - "colleagues", - "justified", - "specifically", - "forced", - "joan", - "perfectly", - "works", - "richard", - "expressed", - "preserved", - "warner", - "crossed", - "coffee", - "themes", - "pale", - "etc", - "sick", - "related", - "climb", - "daily", - "space", - "completion", - "majesty", - "also", - "gallery", - "youll", - "jessica", - "fairy", - "immune", - "organization", - "possess", - "mother", - "snow", - "apparently", - "patent", - "bands", - "playoffs", - "lives", - "water", - "pleasant", - "founded", - "blows", - "passionate", - "cause", - "brian", - "shook", - "venue", - "foundation", - "clubs", - "bow", - "paradise", - "messed", - "true", - "wanted", - "twins", - "divine", - "reflect", - "industrial", - "boys", - "opponent", - "raw", - "lived", - "oxygen", - "cheat", - "contents", - "suspicious", - "urban", - "sometime", - "eagles", - "steady", - "forests", - "weekly", - "sir", - "helping", - "pie", - "samples", - "sources", - "high", - "critical", - "width", - "sex", - "menu", - "queensland", - "ps", - "witness", - "proceed", - "convenience", - "iran", - "transmission", - "sweden", - "photography", - "accompanied", - "prevented", - "corners", - "move", - "effect", - "vegas", - "ha", - "summer", - "birth", - "sponsor", - "chances", - "reasoning", - "bigger", - "fiction", - "choice", - "week", - "proposals", - "processing", - "god", - "ceo", - "speeds", - "namely", - "divided", - "tender", - "abortion", - "mechanisms", - "of", - "funny", - "basement", - "legitimate", - "confidence", - "blank", - "hood", - "catherine", - "complexity", - "eager", - "sister", - "breathe", - "look", - "tennis", - "be", - "accounting", - "equal", - "initiatives", - "libraries", - "derived", - "lay", - "faithful", - "behavior", - "signals", - "centers", - "wife", - "alaska", - "cuts", - "dresses", - "weight", - "eh", - "nowadays", - "private", - "focus", - "prizes", - "political", - "figured", - "thousand", - "laws", - "psychological", - "increase", - "might", - "proof", - "premises", - "sequence", - "publisher", - "virus", - "structural", - "interactive", - "partly", - "types", - "manufactured", - "route", - "late", - "lesson", - "sustained", - "potter", - "associations", - "fred", - "darkness", - "heard", - "distributed", - "treating", - "itll", - "stores", - "podcast", - "square", - "permanent", - "corn", - "cap", - "disorders", - "editors", - "difficult", - "calling", - "athlete", - "floors", - "gulf", - "clarke", - "honor", - "sake", - "columbus", - "equation", - "injured", - "window", - "answering", - "immigrants", - "missed", - "beside", - "drain", - "mistake", - "income", - "initial", - "mum", - "comics", - "gifts", - "sheep", - "succeed", - "ranch", - "courses", - "wore", - "providers", - "program", - "carlos", - "invite", - "arrive", - "religious", - "result", - "suited", - "standard", - "cotton", - "capabilities", - "pregnancy", - "kit", - "pressing", - "responsible", - "simply", - "federal", - "cooperation", - "nobody", - "pipe", - "females", - "company", - "occasional", - "automatically", - "dependent", - "advisory", - "due", - "terminal", - "normal", - "oregon", - "survivors", - "ticket", - "pose", - "os", - "junior", - "evaluation", - "fathers", - "specified", - "austria", - "pics", - "struggled", - "impression", - "loving", - "polls", - "grades", - "boot", - "ski", - "insurance", - "trainer", - "global", - "introducing", - "exam", - "jealous", - "caribbean", - "breakdown", - "interested", - "inevitable", - "siblings", - "followed", - "parties", - "artists", - "applications", - "exact", - "bell", - "tim", - "female", - "ll", - "poet", - "laughing", - "using", - "revenge", - "cookie", - "me", - "academy", - "guarantee", - "expected", - "dublin", - "subscription", - "over", - "ring", - "return", - "touched", - "manchester", - "jacob", - "agenda", - "pearl", - "great", - "smart", - "haven", - "cruz", - "ports", - "conventional", - "dimensions", - "met", - "bound", - "twin", - "routes", - "putting", - "alan", - "debut", - "passing", - "organised", - "obama", - "plastic", - "singapore", - "intimate", - "know", - "before", - "runs", - "corporations", - "hundreds", - "marc", - "beyond", - "promised", - "eu", - "periods", - "motivation", - "roles", - "gear", - "gorgeous", - "sought", - "action", - "unions", - "probably", - "doing", - "leo", - "quest", - "cut", - "gop", - "spray", - "iron", - "dont", - "testimony", - "passage", - "exercises", - "backwards", - "wanna", - "anime", - "elder", - "disney", - "site", - "poland", - "picks", - "landscape", - "inquiry", - "conservation", - "fifty", - "equipped", - "fall", - "districts", - "kid", - "articles", - "explains", - "concert", - "facilities", - "naval", - "died", - "wide", - "final", - "certain", - "problems", - "underground", - "speech", - "description", - "received", - "getting", - "against", - "leaves", - "hughes", - "agricultural", - "knows", - "nothing", - "montreal", - "impressive", - "theater", - "shots", - "asked", - "demand", - "table", - "justice", - "wi", - "arrival", - "israeli", - "wireless", - "respect", - "attendance", - "empty", - "owe", - "cheese", - "electronic", - "presenting", - "positions", - "evil", - "breaking", - "worrying", - "desperate", - "didnt", - "thunder", - "continues", - "wind", - "connections", - "texts", - "discrimination", - "fashion", - "lifetime", - "coach", - "headline", - "legally", - "struggles", - "advisor", - "limited", - "oldest", - "investigate", - "lobby", - "let", - "shore", - "remained", - "tiger", - "activity", - "pennsylvania", - "accept", - "departments", - "apartments", - "pat", - "oscar", - "between", - "measurements", - "picture", - "preservation", - "spring", - "math", - "itd", - "secure", - "kicked", - "fairly", - "looked", - "sacrifice", - "laughed", - "package", - "olympics", - "flexibility", - "corporate", - "call", - "doesnt", - "students", - "meters", - "word", - "manufacturers", - "peer", - "behind", - "ask", - "clinton", - "exploration", - "republic", - "susan", - "trap", - "distinction", - "shirt", - "defense", - "worthy", - "amateur", - "wars", - "pathetic", - "implications", - "parents", - "occupation", - "simultaneously", - "promoted", - "retreat", - "placed", - "date", - "gate", - "angry", - "tl", - "opportunities", - "shower", - "attend", - "dignity", - "pakistan", - "featuring", - "verdict", - "thou", - "reception", - "youtube", - "nelson", - "wonderful", - "dramatic", - "pair", - "afraid", - "involved", - "devil", - "tested", - "jurisdiction", - "surgeon", - "saudi", - "pages", - "whip", - "open", - "shut", - "monetary", - "playing", - "detail", - "difference", - "log", - "good", - "ct", - "unity", - "curriculum", - "law", - "extra", - "goals", - "branches", - "destroyed", - "front", - "lovely", - "legislative", - "nurses", - "friendship", - "rate", - "reign", - "environmental", - "put", - "weekends", - "humor", - "steel", - "performed", - "grey", - "pakistani", - "ted", - "executive", - "buildings", - "shadows", - "immediately", - "red", - "owner", - "seen", - "alternate", - "stops", - "friend", - "member", - "column", - "rank", - "fighter", - "pride", - "dental", - "commons", - "perceived", - "here", - "delivering", - "league", - "advance", - "appearing", - "rapid", - "wood", - "advantages", - "provision", - "useless", - "bed", - "flag", - "releasing", - "sooner", - "treasury", - "silent", - "embassy", - "implementation", - "thank", - "reveals", - "refuses", - "conditions", - "celebrating", - "favourite", - "autumn", - "yes", - "provides", - "tragedy", - "reaction", - "privacy", - "yourself", - "blame", - "flesh", - "toe", - "semester", - "chasing", - "native", - "reasons", - "seattle", - "accounts", - "worker", - "companion", - "earning", - "allegedly", - "while", - "theyre", - "fields", - "smaller", - "insane", - "death", - "jim", - "overwhelming", - "companies", - "legends", - "gray", - "pieces", - "confusion", - "chick", - "beginning", - "speakers", - "counts", - "called", - "instagram", - "new", - "density", - "sail", - "emergency", - "exports", - "guards", - "images", - "joining", - "making", - "suffer", - "worship", - "seeing", - "state", - "distinguished", - "paper", - "describe", - "supported", - "healthcare", - "from", - "complete", - "murdered", - "overall", - "status", - "available", - "completing", - "reserves", - "brand", - "bedroom", - "art", - "further", - "technology", - "yelling", - "issued", - "weather", - "who", - "rolling", - "song", - "office", - "converted", - "completely", - "drops", - "apologize", - "seek", - "activities", - "conversion", - "regarding", - "harsh", - "label", - "introduce", - "minute", - "lecture", - "rap", - "closely", - "round", - "applies", - "myself", - "movement", - "tide", - "uncle", - "allow", - "wasted", - "judging", - "nuclear", - "matrix", - "serving", - "ban", - "martin", - "resistance", - "davis", - "regulation", - "spectrum", - "singer", - "stream", - "informed", - "hat", - "rope", - "both", - "sound", - "dec", - "parking", - "finished", - "gentle", - "bull", - "graph", - "intermediate", - "grocery", - "phrase", - "md", - "see", - "metal", - "skilled", - "cell", - "tough", - "mathematics", - "visa", - "experience", - "pm", - "dying", - "walked", - "figure", - "hurt", - "reported", - "shaw", - "shit", - "hd", - "consensus", - "consequence", - "guilt", - "how", - "bid", - "health", - "add", - "ford", - "nut", - "illinois", - "powered", - "financing", - "evaluate", - "sandwich", - "twice", - "plain", - "golf", - "gaming", - "sense", - "ton", - "course", - "municipal", - "filling", - "federation", - "pills", - "auto", - "boss", - "wheres", - "tin", - "narrow", - "approached", - "cups", - "software", - "cargo", - "limitations", - "support", - "austin", - "ave", - "drawings", - "hilarious", - "lamb", - "fifa", - "hampshire", - "measurement", - "wednesday", - "stole", - "watched", - "permanently", - "priorities", - "preparation", - "rating", - "philip", - "slide", - "generations", - "looks", - "months", - "started", - "journalism", - "shipping", - "stuart", - "nonsense", - "tongue", - "bucket", - "wages", - "mouse", - "flames", - "bath", - "spanish", - "joins", - "chip", - "mandatory", - "cole", - "pole", - "contributing", - "gonna", - "genius", - "professionals", - "ex", - "authority", - "tons", - "anna", - "represent", - "institution", - "mess", - "medication", - "designers", - "youngest", - "assembly", - "purchasing", - "thermal", - "existing", - "whether", - "more", - "disorder", - "span", - "magazines", - "lacking", - "extended", - "treats", - "returned", - "pussy", - "womans", - "lists", - "venture", - "lesser", - "visible", - "transformation", - "nah", - "interior", - "inflation", - "chris", - "favorites", - "cop", - "houses", - "transportation", - "phase", - "range", - "barrier", - "convenient", - "lasted", - "dinner", - "regular", - "where", - "pastor", - "numbers", - "displays", - "introduced", - "egyptian", - "temple", - "committed", - "forcing", - "each", - "surgery", - "satisfied", - "sp", - "sectors", - "advice", - "block", - "deliver", - "saturday", - "pretend", - "notion", - "trace", - "blow", - "body", - "corp", - "miller", - "trigger", - "partner", - "panel", - "behalf", - "serial", - "re", - "backing", - "laying", - "assume", - "hop", - "plays", - "pro", - "toll", - "mining", - "dutch", - "corps", - "nearest", - "core", - "clips", - "parker", - "fundamental", - "qualify", - "santa", - "button", - "states", - "gut", - "spot", - "obamas", - "like", - "standards", - "packed", - "patient", - "custom", - "security", - "website", - "card", - "beautiful", - "fake", - "scott", - "singles", - "bus", - "nancy", - "divorced", - "dining", - "independently", - "fired", - "answers", - "goddess", - "tells", - "shot", - "marcus", - "info", - "excellence", - "immediate", - "significant", - "familiar", - "feel", - "brooklyn", - "ocean", - "gm", - "dressing", - "laugh", - "legend", - "cried", - "situations", - "affecting", - "sins", - "activists", - "pit", - "hoped", - "capability", - "experiences", - "harry", - "purple", - "forever", - "improving", - "behaviour", - "kate", - "openly", - "announcement", - "his", - "min", - "costa", - "die", - "belief", - "captured", - "countries", - "tends", - "our", - "identified", - "gradually", - "ward", - "recently", - "reduced", - "spread", - "utility", - "circles", - "beijing", - "remember", - "person", - "recovered", - "slaves", - "sorry", - "point", - "towards", - "psychology", - "alpha", - "rookie", - "slow", - "nc", - "las", - "morning", - "directly", - "creativity", - "letting", - "separated", - "teenager", - "helpful", - "wrong", - "assumed", - "entrance", - "diverse", - "toward", - "examine", - "such", - "teams", - "silver", - "players", - "taste", - "communicate", - "suitable", - "silk", - "locked", - "artist", - "equally", - "click", - "moscow", - "fuel", - "baseball", - "spend", - "happens", - "sat", - "argue", - "involve", - "beer", - "catholic", - "educated", - "cold", - "specialist", - "invited", - "representatives", - "ate", - "one", - "tight", - "took", - "desire", - "basketball", - "basic", - "anyone", - "candidates", - "collect", - "graduated", - "collected", - "continent", - "portugal", - "encourage", - "depressed", - "suite", - "dimensional", - "strictly", - "composition", - "references", - "conversation", - "au", - "repair", - "smile", - "comfort", - "brown", - "charity", - "pump", - "tone", - "pretending", - "animals", - "selfish", - "aging", - "completed", - "pig", - "delayed", - "path", - "things", - "script", - "united", - "parts", - "streaming", - "sacred", - "team", - "permitted", - "calories", - "additionally", - "tastes", - "hate", - "approve", - "midnight", - "battles", - "holiday", - "meaning", - "surface", - "pace", - "anytime", - "tape", - "laser", - "ultimate", - "management", - "subtle", - "starter", - "classes", - "mills", - "exploring", - "hudson", - "labour", - "shock", - "editing", - "tokyo", - "mechanics", - "lake", - "solve", - "options", - "supports", - "frustrated", - "levels", - "combination", - "rocky", - "magical", - "seeds", - "metropolitan", - "supportive", - "ashley", - "judicial", - "anne", - "fold", - "journalists", - "lamp", - "disappointing", - "virginia", - "owners", - "reached", - "leg", - "boom", - "message", - "childrens", - "turned", - "afghanistan", - "ethical", - "limit", - "improvements", - "observe", - "operated", - "gross", - "weed", - "winning", - "poetry", - "brazil", - "donated", - "relating", - "congress", - "effectiveness", - "fly", - "wolves", - "railroad", - "petition", - "video", - "concept", - "issues", - "grade", - "harassment", - "purposes", - "code", - "enormous", - "per", - "highly", - "changing", - "mexico", - "lee", - "cigarette", - "deserves", - "welfare", - "hannah", - "seeks", - "regulatory", - "bases", - "almost", - "sales", - "tracks", - "resolution", - "loads", - "truck", - "provider", - "best", - "club", - "pairs", - "prayer", - "pool", - "cape", - "married", - "bud", - "individuals", - "arms", - "vacation", - "huge", - "give", - "sort", - "young", - "secretary", - "argument", - "residential", - "street", - "hockey", - "comments", - "stamp", - "scotland", - "lands", - "lgbt", - "talk", - "significantly", - "classic", - "uk", - "louisiana", - "nigerian", - "loop", - "soup", - "revolution", - "ip", - "bars", - "firm", - "much", - "beings", - "disgusting", - "edition", - "xbox", - "depends", - "probability", - "eligible", - "baltimore", - "infection", - "foods", - "remain", - "roberts", - "games", - "exceptional", - "have", - "substitute", - "couldve", - "alcohol", - "equity", - "text", - "channel", - "second", - "waited", - "turns", - "sudden", - "burns", - "households", - "rice", - "smith", - "residents", - "technologies", - "light", - "marry", - "output", - "cant", - "higher", - "practice", - "aid", - "previous", - "lyrics", - "gathering", - "brands", - "countrys", - "lab", - "charges", - "count", - "head", - "weapons", - "th", - "governance", - "magnificent", - "brave", - "wrestling", - "dress", - "realized", - "valley", - "hope", - "stretch", - "believes", - "struggle", - "keys", - "classroom", - "literally", - "markets", - "papers", - "attack", - "role", - "mountain", - "involves", - "cited", - "feature", - "ceiling", - "comply", - "expression", - "practices", - "future", - "obviously", - "subjects", - "armed", - "diseases", - "wisconsin", - "voices", - "notable", - "ive", - "airlines", - "bucks", - "employment", - "stewart", - "civilization", - "cc", - "mans", - "counsel", - "fabric", - "vessel", - "never", - "nerves", - "catch", - "glass", - "reportedly", - "reasonably", - "fought", - "painting", - "town", - "amy", - "weakness", - "fell", - "ease", - "removing", - "cats", - "important", - "africa", - "concerned", - "shorts", - "wrist", - "stanley", - "responded", - "ignored", - "share", - "presence", - "determine", - "hull", - "quickly", - "marvel", - "corrupt", - "availability", - "knocked", - "outside", - "september", - "linked", - "chains", - "tap", - "bags", - "root", - "bar", - "aa", - "absence", - "array", - "installation", - "straight", - "vintage", - "meanwhile", - "km", - "offer", - "oh", - "holmes", - "studying", - "shame", - "wasnt", - "manner", - "reliable", - "achieving", - "exactly", - "accepting", - "automatic", - "lesbian", - "volume", - "recommendation", - "worried", - "nephew", - "flies", - "hosted", - "underneath", - "fight", - "suddenly", - "carrying", - "jewish", - "sympathy", - "baker", - "fail", - "outstanding", - "following", - "tackle", - "recognize", - "broken", - "essential", - "groups", - "commitment", - "sophisticated", - "leave", - "wheel", - "bitch", - "attract", - "updates", - "symptoms", - "various", - "target", - "children", - "partnership", - "bin", - "proud", - "universe", - "outcome", - "seo", - "rivers", - "prefer", - "producers", - "duty", - "champions", - "howard", - "producing", - "reverse", - "labor", - "scenario", - "language", - "bowling", - "highest", - "destruction", - "maryland", - "raised", - "qualifying", - "he", - "society", - "milwaukee", - "dip", - "advantage", - "hype", - "eighth", - "cafe", - "belong", - "streams", - "prior", - "delivered", - "assist", - "existed", - "into", - "ordinary", - "designs", - "beam", - "concentration", - "row", - "andy", - "refused", - "watch", - "sergeant", - "surely", - "assuming", - "join", - "bride", - "efforts", - "increasingly", - "maintained", - "mile", - "moves", - "ryan", - "savings", - "finish", - "cherry", - "react", - "alone", - "hello", - "arguing", - "far", - "anderson", - "writes", - "happily", - "type", - "loan", - "seed", - "chuck", - "shaped", - "instruments", - "years", - "ok", - "poverty", - "saving", - "abroad", - "sizes", - "dynamic", - "guide", - "design", - "teaching", - "viewed", - "identifying", - "puerto", - "rs", - "portion", - "bruce", - "deserved", - "science", - "repeat", - "terrible", - "lazy", - "suppose", - "command", - "quantity", - "ally", - "blown", - "defender", - "interests", - "coins", - "errors", - "highway", - "physician", - "example", - "viewers", - "potatoes", - "cos", - "joined", - "wear", - "covering", - "freaking", - "deserve", - "chair", - "wisdom", - "intel", - "display", - "correctly", - "address", - "nyc", - "rings", - "please", - "assured", - "ship", - "adorable", - "obtained", - "scholars", - "resignation", - "perspective", - "tourist", - "illustrated", - "soldiers", - "noble", - "sweet", - "aw", - "championships", - "bringing", - "lebanon", - "printing", - "christopher", - "install", - "changes", - "nowhere", - "rome", - "melbourne", - "talking", - "setup", - "define", - "surprisingly", - "del", - "teens", - "efficiency", - "western", - "experiments", - "organizations", - "mutual", - "functions", - "roy", - "cleaned", - "shocked", - "inside", - "quote", - "bathroom", - "june", - "prison", - "dancing", - "reply", - "lbs", - "architect", - "detective", - "technically", - "lit", - "year", - "refugees", - "needed", - "clean", - "cultural", - "goal", - "giving", - "page", - "individual", - "tie", - "jane", - "examined", - "gets", - "glory", - "broadcast", - "believe", - "separately", - "potential", - "instruction", - "focuses", - "information", - "able", - "chief", - "proves", - "tool", - "worry", - "problem", - "found", - "attended", - "slim", - "couldnt", - "managing", - "congrats", - "passed", - "spiritual", - "radiation", - "stepped", - "diversity", - "hugh", - "station", - "subject", - "bonds", - "earn", - "dating", - "burned", - "pt", - "spy", - "ours", - "changed", - "commonly", - "wtf", - "last", - "outcomes", - "thick", - "jobs", - "zones", - "smash", - "farmer", - "mounted", - "loses", - "ratio", - "filed", - "officially", - "drama", - "attention", - "perhaps", - "app", - "yard", - "sector", - "experiencing", - "reject", - "receiver", - "disability", - "precise", - "considers", - "half", - "google", - "idea", - "intelligence", - "calendar", - "some", - "gave", - "seemed", - "electricity", - "breeding", - "fruits", - "backup", - "valuable", - "derby", - "finance", - "throwing", - "margin", - "adaptation", - "lift", - "kyle", - "secrets", - "complaining", - "begin", - "op", - "rocket", - "mix", - "feeding", - "miss", - "carries", - "mission", - "lighting", - "exhibit", - "blocking", - "italian", - "chocolate", - "carriers", - "applied", - "navigation", - "jan", - "strongly", - "strategies", - "produced", - "conversations", - "bronze", - "ar", - "visited", - "promises", - "germany", - "rangers", - "lasting", - "lmao", - "manufacturing", - "filming", - "participate", - "relations", - "debate", - "rose", - "value", - "serious", - "likely", - "dismissed", - "your", - "somebody", - "fastest", - "rat", - "anti", - "aids", - "decides", - "profit", - "claim", - "fried", - "having", - "involvement", - "inspired", - "worries", - "coke", - "nearby", - "controls", - "abilities", - "control", - "americas", - "addressing", - "retire", - "medium", - "prints", - "defensive", - "intended", - "sing", - "which", - "drivers", - "genre", - "controversial", - "butler", - "electric", - "amendment", - "social", - "hub", - "legislature", - "fun", - "utterly", - "unit", - "bones", - "solution", - "clock", - "belgium", - "formal", - "dangerous", - "pretty", - "therapy", - "delicious", - "idiot", - "man", - "fees", - "innovative", - "access", - "family", - "cooper", - "wallet", - "favorite", - "improve", - "covered", - "calls", - "websites", - "investigation", - "auction", - "carbon", - "boost", - "celebrities", - "counties", - "nathan", - "tablet", - "december", - "regards", - "protection", - "severely", - "garden", - "blocked", - "franklin", - "muscles", - "paul", - "distinct", - "sierra", - "trophy", - "tweeted", - "floor", - "administrator", - "recommendations", - "survive", - "cricket", - "ice", - "conducted", - "reaches", - "daniel", - "forward", - "customs", - "hamilton", - "alien", - "steven", - "stone", - "disabled", - "guest", - "donald", - "consent", - "components", - "bs", - "picked", - "territories", - "practically", - "chemistry", - "codes", - "walls", - "appearance", - "younger", - "tattoo", - "ear", - "whoever", - "is", - "premium", - "determined", - "voice", - "transfer", - "qualities", - "lead", - "evening", - "achievement", - "hp", - "reports", - "mental", - "witch", - "wooden", - "ac", - "switzerland", - "efficient", - "plant", - "parliamentary", - "diplomatic", - "conflict", - "replacement", - "integrity", - "admit", - "tire", - "booked", - "developed", - "washing", - "procedures", - "applying", - "jr", - "flows", - "peoples", - "its", - "keeping", - "piano", - "monsters", - "marine", - "prime", - "holes", - "band", - "executed", - "breathing", - "escaped", - "make", - "asian", - "scenes", - "buyer", - "similar", - "habit", - "sufficient", - "unlimited", - "motor", - "fort", - "contained", - "tom", - "uses", - "pressure", - "broader", - "percentage", - "sharing", - "successful", - "help", - "patients", - "recent", - "opportunity", - "brothers", - "striking", - "rural", - "fights", - "collections", - "fears", - "targeted", - "admission", - "fluid", - "discussed", - "credits", - "reminded", - "kills", - "strict", - "voters", - "rolls", - "seal", - "gambling", - "format", - "cowboys", - "ruined", - "average", - "supreme", - "big", - "ancient", - "authorized", - "myth", - "maintenance", - "bible", - "rays", - "abandon", - "friday", - "btw", - "war", - "benefits", - "homes", - "parliament", - "disappointment", - "urged", - "cease", - "recording", - "rubber", - "institutions", - "easter", - "employed", - "piss", - "blade", - "fifteen", - "laughter", - "applicable", - "long", - "daughters", - "shed", - "entering", - "stunning", - "buy", - "ultra", - "hurting", - "insects", - "forms", - "depending", - "chill", - "spoken", - "force", - "creates", - "bee", - "cross", - "posting", - "senators", - "robot", - "offered", - "angel", - "already", - "followers", - "outta", - "freezing", - "maintaining", - "joking", - "slavery", - "totally", - "expenses", - "soldier", - "next", - "threw", - "mall", - "activated", - "spending", - "greatest", - "relief", - "chairman", - "circumstances", - "helen", - "jets", - "transfers", - "match", - "danger", - "http", - "manual", - "conference", - "crushed", - "approach", - "guided", - "authorities", - "southern", - "yup", - "glasses", - "listed", - "actress", - "boots", - "awards", - "checking", - "king", - "receive", - "senate", - "arrangements", - "continuing", - "gender", - "dairy", - "festival", - "il", - "passion", - "jo", - "account", - "riot", - "reducing", - "mob", - "shop", - "diameter", - "khan", - "loose", - "tip", - "player", - "publishing", - "starring", - "miserable", - "finds", - "cemetery", - "contest", - "empire", - "prospect", - "asking", - "benefit", - "commit", - "specific", - "arthur", - "amongst", - "download", - "heavily", - "starting", - "courts", - "capture", - "scratch", - "begun", - "colour", - "screening", - "wonder", - "events", - "im", - "bye", - "qualified", - "known", - "wright", - "labels", - "agents", - "publishers", - "managers", - "butter", - "stealing", - "platform", - "actor", - "if", - "lucy", - "chart", - "knife", - "notes", - "instead", - "tobacco", - "pick", - "https", - "chiefs", - "working", - "air", - "development", - "strengthen", - "kingdom", - "prisoner", - "symbol", - "bug", - "reader", - "episodes", - "leading", - "til", - "deposit", - "funding", - "comparing", - "barbara", - "escape", - "tho", - "unbelievable", - "map", - "sweat", - "watches", - "worst", - "lost", - "babe", - "babies", - "temporary", - "confused", - "extremely", - "mp", - "unable", - "ve", - "biggest", - "sentenced", - "throne", - "void", - "shown", - "for", - "image", - "expectations", - "virgin", - "village", - "witnessed", - "offices", - "engage", - "location", - "developers", - "buses", - "buried", - "effectively", - "follow", - "matthew", - "barrel", - "powers", - "magnetic", - "frames", - "blind", - "pissed", - "bunch", - "grip", - "theyve", - "extreme", - "bias", - "show", - "angeles", - "trunk", - "scandal", - "vocal", - "acceptance", - "announce", - "von", - "servers", - "decisions", - "attempted", - "museum", - "manage", - "ideal", - "sports", - "consistently", - "trans", - "odd", - "flow", - "containing", - "grew", - "delay", - "lincoln", - "wheat", - "portuguese", - "protective", - "binding", - "assigned", - "crashed", - "conclusion", - "forth", - "upside", - "oz", - "queens", - "investments", - "rio", - "bros", - "contributions", - "variation", - "romance", - "wild", - "suffered", - "holland", - "parade", - "thee", - "past", - "deals", - "screens", - "requires", - "consumers", - "by", - "drawing", - "manufacturer", - "thy", - "ugh", - "experienced", - "remind", - "anything", - "mentions", - "impressed", - "economic", - "director", - "dose", - "mixing", - "pin", - "cycle", - "veterans", - "sporting", - "damn", - "welcome", - "motorcycle", - "sheer", - "horn", - "establishing", - "active", - "salt", - "brick", - "mph", - "hotels", - "opera", - "branch", - "essence", - "saw", - "albums", - "enters", - "implemented", - "metro", - "attacked", - "freely", - "garbage", - "wow", - "rd", - "oral", - "embarrassing", - "kg", - "creepy", - "finals", - "wrap", - "includes", - "considering", - "simple", - "really", - "houston", - "dispute", - "based", - "printed", - "resident", - "grant", - "vietnam", - "version", - "toronto", - "singh", - "initially", - "stations", - "peaceful", - "financial", - "fled", - "service", - "interview", - "killing", - "hunger", - "bag", - "beneficial", - "prepare", - "try", - "minutes", - "sessions", - "topic", - "context", - "stack", - "planning", - "via", - "double", - "improvement", - "era", - "sheets", - "reveal", - "breast", - "agriculture", - "remote", - "worse", - "surprised", - "decent", - "harder", - "ipad", - "marshall", - "lloyd", - "acts", - "physicians", - "swear", - "supplement", - "stroke", - "whose", - "infected", - "cheaper", - "george", - "ed", - "destination", - "hip", - "could", - "personally", - "triple", - "stable", - "warriors", - "johnny", - "snake", - "refer", - "treat", - "however", - "rush", - "moral", - "influential", - "title", - "happened", - "inhabitants", - "awful", - "largest", - "birthday", - "repeated", - "especially", - "protect", - "defence", - "occasions", - "loved", - "plenty", - "boyfriend", - "beat", - "earned", - "inn", - "focused", - "childhood", - "contain", - "substance", - "id", - "offers", - "bullshit", - "merchant", - "meetings", - "exposure", - "voltage", - "brazilian", - "extraordinary", - "stayed", - "collar", - "dates", - "will", - "actual", - "nights", - "since", - "mild", - "bridge", - "identity", - "presented", - "intense", - "ass", - "superior", - "southeast", - "huh", - "tank", - "opens", - "considered", - "away", - "minor", - "clearly", - "swimming", - "edited", - "harold", - "checks", - "alter", - "research", - "overseas", - "devices", - "major", - "split", - "besides", - "muslim", - "alexander", - "document", - "towers", - "matter", - "platinum", - "tower", - "villa", - "honest", - "pr", - "franchise", - "glad", - "juice", - "inter", - "hates", - "diesel", - "purchases", - "position", - "youd", - "races", - "irish", - "dump", - "wave", - "above", - "house", - "gun", - "grab", - "abc", - "care", - "expecting", - "comic", - "wet", - "arts", - "lights", - "elements", - "submit", - "dad", - "sri", - "child", - "occasionally", - "farm", - "anyway", - "filing", - "silly", - "criteria", - "continue", - "jordan", - "inches", - "nazi", - "nails", - "edward", - "sets", - "jews", - "courage", - "cancelled", - "micro", - "revenues", - "free", - "shift", - "transferred", - "together", - "civil", - "northern", - "university", - "bail", - "nail", - "altogether", - "canal", - "abandoned", - "beliefs", - "factors", - "dr", - "dakota", - "victorian", - "ignore", - "tourists", - "relevant", - "interest", - "patch", - "community", - "looking", - "celebrated", - "employer", - "dean", - "emotionally", - "wa", - "valid", - "driver", - "waves", - "referring", - "creator", - "helicopter", - "export", - "preserve", - "elementary", - "ministers", - "fourth", - "warren", - "martial", - "silence", - "spain", - "hall", - "bought", - "switch", - "warning", - "dan", - "economy", - "threat", - "indoor", - "understanding", - "pa", - "chinese", - "construction", - "recommend", - "soul", - "consultant", - "deadline", - "screw", - "nonetheless", - "thread", - "properties", - "pointed", - "supporter", - "actors", - "massage", - "criticism", - "hr", - "today", - "star", - "jokes", - "documentary", - "wins", - "operations", - "resources", - "meeting", - "market", - "patrick", - "loves", - "virtually", - "lonely", - "breaks", - "flip", - "reason", - "wrapped", - "flower", - "ambulance", - "flood", - "central", - "realize", - "philadelphia", - "roger", - "progressive", - "mitchell", - "chelsea", - "cage", - "out", - "belonging", - "unhappy", - "jersey", - "hide", - "iranian", - "regardless", - "respectively", - "blacks", - "comprehensive", - "discovered", - "dragon", - "reduction", - "element", - "meet", - "flying", - "basically", - "designed", - "desert", - "entitled", - "resist", - "charter", - "actively", - "rescue", - "accuracy", - "statistical", - "pilot", - "bitter", - "creating", - "listened", - "faces", - "charlie", - "choose", - "wake", - "entered", - "florida", - "right", - "lakes", - "halloween", - "bankruptcy", - "dear", - "turkey", - "tail", - "yep", - "woods", - "wont", - "alarm", - "soap", - "rights", - "protests", - "lessons", - "links", - "keith", - "boat", - "chemicals", - "carried", - "farmers", - "trip", - "described", - "independent", - "sarah", - "headed", - "angels", - "returns", - "graduate", - "step", - "ends", - "bond", - "names", - "da", - "secured", - "timber", - "disaster", - "event", - "bass", - "clearing", - "aunt", - "fantastic", - "treatment", - "healing", - "impacts", - "pass", - "tree", - "frequently", - "grow", - "peace", - "nose", - "store", - "deep", - "toilet", - "karen", - "theory", - "consciousness", - "enough", - "blew", - "la", - "email", - "complaint", - "leadership", - "similarly", - "drive", - "comedy", - "embarrassed", - "regime", - "nasa", - "way", - "units", - "made", - "learned", - "understand", - "cult", - "playoff", - "filled", - "widely", - "missing", - "discussion", - "royal", - "cheap", - "hearing", - "magazine", - "predict", - "famous", - "opposition", - "national", - "proportion", - "risk", - "peak", - "handling", - "bold", - "diary", - "sides", - "push", - "realise", - "syndrome", - "nationwide", - "brush", - "grabbed", - "causes", - "technique", - "ellen", - "shallow", - "bennett", - "ups", - "sword", - "officers", - "itself", - "outer", - "cleveland", - "ruins", - "aggressive", - "indicated", - "ladies", - "proved", - "shall", - "patience", - "hart", - "researchers", - "malcolm", - "pulled", - "con", - "furniture", - "attributed", - "audience", - "physical", - "showed", - "shouldnt", - "simpson", - "fork", - "presentation", - "formation", - "oriented", - "computing", - "fi", - "technological", - "anticipated", - "versions", - "alex", - "framework", - "ethnic", - "damages", - "tries", - "rules", - "fucking", - "increases", - "should", - "listing", - "coat", - "ordered", - "sandy", - "trading", - "land", - "ending", - "objectives", - "instrument", - "admitted", - "regard", - "rabbit", - "walker", - "precisely", - "readers", - "ground", - "dynamics", - "chips", - "became", - "grounds", - "fisher", - "confirm", - "pronounced", - "analyst", - "meant", - "adventures", - "taxi", - "nuts", - "lightning", - "retained", - "aint", - "characters", - "pile", - "dollars", - "ho", - "reaching", - "citizens", - "may", - "delete", - "plus", - "remaining", - "project", - "contemporary", - "bacteria", - "tuesday", - "cabin", - "goods", - "jose", - "discussions", - "influenced", - "contacts", - "usa", - "complicated", - "ranks", - "nor", - "john", - "bottles", - "requests", - "contractor", - "apartment", - "reporters", - "massachusetts", - "allowed", - "hmm", - "wears", - "robert", - "partially", - "rest", - "governments", - "winter", - "those", - "cannabis", - "ordering", - "wounds", - "shooting", - "broadway", - "face", - "usually", - "masters", - "census", - "fresh", - "fault", - "programme", - "jacket", - "copy", - "deficit", - "purely", - "pad", - "granted", - "reminds", - "strong", - "turner", - "hint", - "functional", - "promotion", - "noted", - "answer", - "fat", - "electoral", - "victory", - "obsessed", - "ab", - "phenomenon", - "been", - "springs", - "lol", - "place", - "sons", - "subsequently", - "colin", - "stakes", - "furthermore", - "tasks", - "largely", - "iowa", - "guys", - "choices", - "it", - "history", - "piece", - "rival", - "answered", - "supporters", - "endless", - "presidency", - "trials", - "harrison", - "book", - "thinks", - "penalty", - "mighty", - "giants", - "windows", - "replacing", - "knowing", - "damage", - "environment", - "rises", - "basis", - "super", - "grass", - "forum", - "victoria", - "backed", - "fed", - "shelf", - "viewing", - "loyalty", - "rich", - "telephone", - "motors", - "held", - "curve", - "loading", - "optical", - "live", - "assure", - "kong", - "accommodation", - "quietly", - "delta", - "salmon", - "theyd", - "isolated", - "lodge", - "resulting", - "gotten", - "routine", - "nature", - "shine", - "demonstrate", - "decrease", - "thanks", - "rain", - "alright", - "capable", - "unique", - "treasure", - "fever", - "animated", - "alleged", - "arena", - "resource", - "okay", - "russia", - "innings", - "eye", - "set", - "shooter", - "costume", - "system", - "programs", - "hopefully", - "intensity", - "policy", - "written", - "specialized", - "solved", - "mm", - "le", - "keen", - "selling", - "poster", - "bad", - "castle", - "sexual", - "faster", - "heritage", - "actually", - "tonight", - "um", - "dual", - "consequences", - "hed", - "cooking", - "quarters", - "est", - "ride", - "communications", - "stage", - "stuff", - "helps", - "vehicle", - "terms", - "among", - "predicted", - "tiny", - "gentleman", - "july", - "arent", - "minnesota", - "stay", - "causing", - "goodness", - "aside", - "mothers", - "arguments", - "rid", - "mr", - "amounts", - "chamber", - "india", - "taking", - "universal", - "stopping", - "ruled", - "frankly", - "joe", - "packing", - "domain", - "tension", - "racist", - "rocks", - "cards", - "bounce", - "began", - "treated", - "investment", - "drill", - "climate", - "places", - "low", - "structure", - "rough", - "patrol", - "gotta", - "generation", - "bay", - "beach", - "passenger", - "level", - "sections", - "raise", - "banking", - "bullet", - "trust", - "echo", - "eyes", - "strange", - "sell", - "passport", - "controlled", - "attacking", - "pleasure", - "term", - "awake", - "socialist", - "pen", - "promote", - "bike", - "injuries", - "staff", - "boxing", - "previously", - "west", - "departure", - "agencies", - "slowly", - "incidents", - "basin", - "tired", - "elsewhere", - "meat", - "recipe", - "tier", - "industry", - "citizen", - "girlfriend", - "smiling", - "withdrawal", - "vancouver", - "tests", - "vegetables", - "butt", - "wash", - "agent", - "navy", - "submitted", - "used", - "husband", - "ranking", - "cook", - "originally", - "robin", - "safely", - "forecast", - "think", - "superman", - "secretly", - "pure", - "why", - "regarded", - "devoted", - "mainly", - "what", - "theatre", - "integration", - "bleeding", - "terry", - "expand", - "seemingly", - "blanket", - "saves", - "athletic", - "absolutely", - "holidays", - "thereby", - "buddy", - "mayor", - "vulnerable", - "visiting", - "cameron", - "pub", - "french", - "sure", - "visits", - "bless", - "stick", - "aviation", - "slave", - "showing", - "cast", - "conspiracy", - "near", - "studies", - "adoption", - "memories", - "about", - "doors", - "ignorant", - "en", - "chose", - "burger", - "danny", - "sterling", - "falls", - "algorithm", - "lose", - "lined", - "explained", - "post", - "seem", - "charles", - "blessing", - "forming", - "planet", - "lawrence", - "web", - "barriers", - "associated", - "lawyer", - "strip", - "burnt", - "professional", - "andrew", - "music", - "invasion", - "provincial", - "differ", - "nfl", - "diagnosis", - "organisation", - "engaged", - "established", - "negotiations", - "des", - "plot", - "size", - "enter", - "christ", - "casino", - "succeeded", - "milk", - "cent", - "change", - "revised", - "nerve", - "source", - "cheers", - "mouth", - "fallen", - "opposed", - "immigration", - "smooth", - "imagine", - "identify", - "attending", - "local", - "regulations", - "scored", - "cal", - "justin", - "holds", - "council", - "so", - "kept", - "stadium", - "mexican", - "duo", - "cake", - "racial", - "function", - "acceptable", - "cleared", - "filter", - "gene", - "ran", - "climbing", - "illness", - "monday", - "interviews", - "detailed", - "adopt", - "particular", - "skull", - "file", - "spencer", - "australian", - "mill", - "tools", - "monthly", - "likes", - "investigations", - "including", - "joint", - "internal", - "wilson", - "scope", - "too", - "lo", - "wolf", - "remains", - "restricted", - "riding", - "solar", - "sounds", - "senior", - "themselves", - "blake", - "marriage", - "generate", - "end", - "immigrant", - "wales", - "prosecution", - "ready", - "ability", - "engagement", - "canon", - "because", - "madrid", - "ne", - "jackson", - "stays", - "supposed", - "explain", - "se", - "cars", - "presidents", - "listening", - "involving", - "hiv", - "books", - "deliberately", - "cry", - "demonstration", - "musician", - "bottom", - "wait", - "convicted", - "dig", - "liberty", - "missouri", - "participants", - "thesis", - "burning", - "dive", - "parks", - "effective", - "encouraged", - "suggested", - "mature", - "statistics", - "avoid", - "car", - "loaded", - "chaos", - "neutral", - "dominant", - "indian", - "obvious", - "retired", - "brother", - "resigned", - "anchor", - "pope", - "statement", - "median", - "although", - "votes", - "california", - "disagree", - "named", - "smoking", - "deployed", - "european", - "teenagers", - "confirmation", - "fishing", - "schemes", - "appreciated", - "lifestyle", - "virtual", - "driven", - "jerry", - "jay", - "emissions", - "viral", - "elect", - "growing", - "scared", - "vacuum", - "discipline", - "thursday", - "pp", - "touching", - "hawaii", - "classification", - "drop", - "youre", - "hosts", - "index", - "provisions", - "relation", - "jimmy", - "politically", - "conviction", - "skin", - "hardware", - "pants", - "ongoing", - "adults", - "tremendous", - "opinion", - "palace", - "perception", - "destroy", - "affairs", - "democrat", - "makeup", - "commentary", - "legit", - "back", - "muslims", - "camp", - "yorkshire", - "soda", - "stop", - "saved", - "aboard", - "thus", - "bill", - "curse", - "education", - "seasons", - "downtown", - "protein", - "boundary", - "handle", - "asks", - "strangers", - "quite", - "donate", - "interactions", - "controlling", - "classical", - "tweets", - "upcoming", - "offense", - "telling", - "demanded", - "kansas", - "tommy", - "situated", - "accused", - "turn", - "now", - "cousin", - "committee", - "sensitive", - "mate", - "palmer", - "videos", - "influences", - "prospects", - "christianity", - "lean", - "newspaper", - "lines", - "ukrainian", - "hey", - "islam", - "greek", - "tricks", - "makers", - "artificial", - "got", - "delivery", - "voluntary", - "kill", - "stating", - "species", - "heal", - "dj", - "proceeds", - "wondered", - "throw", - "utah", - "priority", - "powder", - "stark", - "industries", - "sponsored", - "ralph", - "train", - "prices", - "device", - "signing", - "connection", - "buying", - "imposed", - "crossing", - "ideology", - "someday", - "dylan", - "harvard", - "balanced", - "chapter", - "yield", - "canada", - "pulls", - "humans", - "january", - "hung", - "gap", - "mostly", - "inform", - "compromise", - "mode", - "provide", - "colors", - "writer", - "prevent", - "hell", - "handsome", - "according", - "outdoor", - "japanese", - "witnesses", - "increasing", - "fleet", - "helped", - "evidence", - "night", - "fool", - "separate", - "ago", - "spirits", - "demanding", - "arrived", - "receiving", - "judges", - "brilliant", - "green", - "jam", - "district", - "whos", - "bobby", - "study", - "positive", - "animal", - "chemical", - "marathon", - "german", - "maintain", - "promise", - "advertising", - "lap", - "nope", - "copper", - "citys", - "plate", - "anniversary", - "battle", - "neil", - "represents", - "chambers", - "dave", - "tooth", - "beats", - "badge", - "played", - "cultures", - "harris", - "inner", - "master", - "school", - "aesthetic", - "beauty", - "charge", - "premiere", - "buffalo", - "side", - "bombing", - "read", - "traditions", - "heating", - "jesus", - "anonymous", - "ya", - "souls", - "painted", - "comes", - "alternative", - "cloth", - "pet", - "alliance", - "singing", - "hit", - "steal", - "leaders", - "smallest", - "pounds", - "happiness", - "speaking", - "editor", - "grandma", - "walking", - "photograph", - "amount", - "shoulders", - "county", - "trained", - "warm", - "hack", - "sc", - "mention", - "odds", - "determination", - "keeper", - "measure", - "clients", - "avenue", - "exception", - "clay", - "filmed", - "mary", - "these", - "request", - "charging", - "albert", - "everyones", - "deleted", - "asia", - "holder", - "acted", - "suggesting", - "typically", - "evolved", - "academic", - "beneath", - "egypt", - "weve", - "frame", - "survival", - "exists", - "payment", - "ranging", - "rock", - "contains", - "rarely", - "lover", - "argentina", - "semi", - "pack", - "channels", - "cattle", - "bread", - "agreement", - "philosophy", - "paid", - "ny", - "third", - "skill", - "password", - "region", - "military", - "victims", - "casting", - "incident", - "commercial", - "toxic", - "fitness", - "union", - "that", - "galaxy", - "portrait", - "ratings", - "layer", - "letters", - "costs", - "discover", - "bacon", - "paris", - "mens", - "abu", - "ears", - "eddie", - "administrative", - "audiences", - "drinking", - "workshop", - "headquarters", - "again", - "diagnosed", - "bust", - "journey", - "wouldve", - "preliminary", - "brutal", - "businesses", - "panels", - "anxious", - "certificate", - "opening", - "forty", - "world", - "kim", - "moon", - "suicide", - "tend", - "remarks", - "lowest", - "landed", - "bear", - "dude", - "section", - "occasion", - "grammar", - "adapted", - "dennis", - "along", - "turkish", - "noticed", - "slot", - "smell", - "zealand", - "crush", - "staying", - "authors", - "farms", - "seven", - "ignoring", - "foreign", - "learn", - "cared", - "profitable", - "celebrity", - "leather", - "ta", - "neck", - "quoted", - "drug", - "precision", - "derek", - "platforms", - "assistance", - "divisions", - "supply", - "employers", - "enable", - "outlook", - "clever", - "priests", - "views", - "murder", - "participated", - "trumps", - "safe", - "sends", - "party", - "others", - "achieved", - "objects", - "sunshine", - "orleans", - "possibilities", - "thing", - "trouble", - "locally", - "fingers", - "dream", - "operators", - "raped", - "fixing", - "crack", - "essays", - "folk", - "morris", - "enabled", - "daughter", - "matt", - "kiss", - "hurricane", - "hunt", - "syria", - "forgot", - "egg", - "adopted", - "inspection", - "aliens", - "closing", - "connecticut", - "mom", - "hitting", - "trapped", - "either", - "bc", - "schools", - "rifle", - "fiscal", - "grave", - "oct", - "experimental", - "ross", - "common", - "sites", - "loans", - "whilst", - "crash", - "publicly", - "electronics", - "feedback", - "sheriff", - "valued", - "represented", - "israel", - "defined", - "situation", - "balance", - "guess", - "korea", - "blast", - "feb", - "sea", - "currently", - "france", - "customer", - "princess", - "cd", - "covers", - "cheer", - "stats", - "authentic", - "rolled", - "deal", - "engineering", - "required", - "picking", - "confident", - "installed", - "southwest", - "disturbing", - "questions", - "burn", - "competitors", - "learning", - "kick", - "simon", - "discount", - "saint", - "beans", - "estimated", - "somewhere", - "proven", - "disappear", - "taught", - "ai", - "register", - "seats", - "areas", - "had", - "becomes", - "engineers", - "johnson", - "criminal", - "firms", - "historically", - "solely", - "drawn", - "accidents", - "affected", - "exclusive", - "widespread", - "estate", - "traditional", - "tickets", - "spreading", - "euro", - "potato", - "maybe", - "surrender", - "pop", - "nest", - "hours", - "international", - "gen", - "lifting", - "concern", - "author", - "building", - "syrian", - "presumably", - "salad", - "kennedy", - "searching", - "reminder", - "instructions", - "tan", - "developments", - "handled", - "blood", - "putin", - "except", - "accommodate", - "cases", - "visitors", - "scale", - "occupied", - "adding", - "liquid", - "season", - "online", - "stupid", - "liability", - "anywhere", - "praise", - "guardian", - "alice", - "approval", - "scream", - "palestinian", - "trips", - "thoughts", - "eat", - "afterwards", - "movements", - "pays", - "sent", - "mirror", - "bubble", - "lawsuit", - "ideas", - "limits", - "orange", - "went", - "check", - "collecting", - "billion", - "chosen", - "episode", - "chat", - "variations", - "detroit", - "progress", - "question", - "gordon", - "kentucky", - "skills", - "adventure", - "responsibilities", - "residence", - "styles", - "paint", - "rt", - "bulk", - "general", - "counting", - "clip", - "feelings", - "twelve", - "harm", - "enforcement", - "max", - "start", - "subscribe", - "necessary", - "advanced", - "asset", - "four", - "additional", - "college", - "millions", - "aspect", - "reactions", - "belt", - "bit", - "convert", - "twist", - "expensive", - "xi", - "leonard", - "computer", - "rise", - "portland", - "crowd", - "key", - "fc", - "pipeline", - "mentioned", - "deck", - "ego", - "blessed", - "earlier", - "longer", - "custody", - "teen", - "gloves", - "dreams", - "everybody", - "violent", - "arizona", - "kinds", - "queen", - "sitting", - "chance", - "signal", - "combat", - "spin", - "agreements", - "dish", - "cambridge", - "disc", - "generic", - "bureau", - "surrounding", - "horse", - "quantum", - "pink", - "historical", - "indonesia", - "tomorrow", - "blog", - "physics", - "fancy", - "responsibility", - "michael", - "neighbor", - "adequate", - "arrest", - "highlight", - "careers", - "pocket", - "obtain", - "official", - "hunter", - "affects", - "hold", - "tactics", - "waste", - "reserved", - "doubt", - "hiring", - "to", - "netherlands", - "agreed", - "concrete", - "flags", - "housing", - "hatred", - "grain", - "chase", - "reed", - "emily", - "ap", - "solid", - "collaboration", - "couples", - "shops", - "islamic", - "dare", - "advise", - "aimed", - "youth", - "diamonds", - "buyers", - "passengers", - "accomplish", - "neighbors", - "compare", - "miles", - "intent", - "still", - "claims", - "lunch", - "artwork", - "avoided", - "nearly", - "neither", - "suspected", - "entertaining", - "just", - "targets", - "inspiration", - "time", - "middle", - "student", - "turning", - "feminist", - "ladder", - "updated", - "summit", - "standing", - "horrible", - "voter", - "members", - "floating", - "launch", - "li", - "cartoon", - "mason", - "then", - "decades", - "replied", - "heads", - "portfolio", - "operating", - "off", - "legislation", - "rude", - "someone", - "pull", - "titled", - "liver", - "inclusion", - "incorporated", - "civilians", - "ourselves", - "whole", - "handed", - "happening", - "survey", - "same", - "fruit", - "supplies", - "compliance", - "spoke", - "easy", - "achieve", - "recreation", - "sign", - "license", - "carefully", - "white", - "raises", - "ill", - "discuss", - "monitor", - "believing", - "meets", - "bishop", - "sustainable", - "eagle", - "absolute", - "keep", - "contract", - "versus", - "anymore", - "clue", - "olive", - "provinces", - "later", - "scoring", - "kicking", - "rapidly", - "arctic", - "chronic", - "trying", - "wage", - "words", - "requiring", - "relative", - "drew", - "agency", - "strongest", - "guitar", - "mini", - "smartphone", - "ian", - "monitoring", - "madison", - "sport", - "politician", - "sells", - "stem", - "dallas", - "transformed", - "yours", - "fame", - "visual", - "allegations", - "importantly", - "un", - "civilian", - "activist", - "tax", - "particles", - "nation", - "powerful", - "recommended", - "firing", - "lt", - "constitution", - "wondering", - "blues", - "acquire", - "crystal", - "ireland", - "terrorist", - "rachel", - "city", - "trusted", - "longest", - "around", - "mg", - "minds", - "fatal", - "sale", - "democrats", - "comparison", - "cameras", - "taken", - "missions", - "manhattan", - "waiting", - "footage", - "effects", - "mechanism", - "racism", - "girls", - "random", - "russians", - "tribe", - "compact", - "wives", - "reads", - "switching", - "crops", - "through", - "exciting", - "threats", - "majority", - "within", - "officials", - "definitely", - "flash", - "teach" - ], - "top_5000": [ - "the", - "to", - "and", - "of", - "for", - "that", - "you", - "on", - "with", - "this", - "be", - "are", - "have", - "at", - "he", - "not", - "by", - "but", - "from", - "my", - "we", - "an", - "all", - "so", - "they", - "me", - "one", - "can", - "will", - "just", - "like", - "about", - "up", - "out", - "what", - "when", - "more", - "do", - "no", - "who", - "had", - "their", - "her", - "which", - "time", - "get", - "been", - "would", - "she", - "new", - "people", - "how", - "some", - "also", - "them", - "now", - "other", - "our", - "than", - "good", - "only", - "after", - "first", - "him", - "into", - "know", - "see", - "two", - "make", - "over", - "think", - "any", - "then", - "could", - "back", - "these", - "because", - "go", - "said", - "way", - "most", - "much", - "very", - "where", - "even", - "should", - "may", - "here", - "need", - "really", - "did", - "right", - "work", - "year", - "being", - "day", - "too", - "going", - "before", - "off", - "why", - "made", - "still", - "take", - "got", - "many", - "never", - "those", - "life", - "say", - "world", - "down", - "great", - "through", - "last", - "while", - "best", - "such", - "love", - "man", - "home", - "long", - "look", - "something", - "use", - "same", - "used", - "both", - "every", - "come", - "part", - "state", - "three", - "around", - "between", - "better", - "find", - "help", - "high", - "little", - "old", - "since", - "another", - "own", - "under", - "during", - "game", - "thing", - "give", - "house", - "place", - "school", - "again", - "next", - "each", - "mr", - "without", - "against", - "end", - "found", - "must", - "show", - "big", - "feel", - "sure", - "team", - "ever", - "family", - "keep", - "might", - "please", - "put", - "money", - "free", - "second", - "someone", - "away", - "left", - "number", - "city", - "lot", - "name", - "night", - "play", - "until", - "company", - "doing", - "few", - "let", - "real", - "called", - "different", - "having", - "set", - "thought", - "done", - "however", - "getting", - "god", - "government", - "group", - "looking", - "public", - "top", - "women", - "business", - "care", - "start", - "system", - "week", - "already", - "anything", - "case", - "nothing", - "person", - "today", - "enough", - "everything", - "full", - "live", - "making", - "point", - "read", - "told", - "yet", - "bad", - "four", - "hard", - "mean", - "once", - "support", - "tell", - "including", - "music", - "power", - "seen", - "stop", - "water", - "based", - "believe", - "call", - "head", - "men", - "national", - "small", - "took", - "white", - "came", - "far", - "job", - "side", - "though", - "try", - "went", - "actually", - "american", - "later", - "line", - "order", - "party", - "run", - "service", - "country", - "open", - "season", - "shit", - "thank", - "children", - "everyone", - "general", - "trying", - "united", - "using", - "area", - "black", - "following", - "law", - "makes", - "together", - "war", - "whole", - "car", - "face", - "five", - "kind", - "maybe", - "per", - "president", - "story", - "working", - "course", - "health", - "hope", - "important", - "least", - "means", - "within", - "able", - "book", - "early", - "information", - "local", - "oh", - "post", - "video", - "young", - "ago", - "social", - "talk", - "court", - "fact", - "given", - "half", - "hand", - "level", - "mind", - "often", - "single", - "were", - "become", - "body", - "coming", - "control", - "death", - "food", - "guy", - "office", - "pay", - "problem", - "south", - "true", - "almost", - "fuck", - "history", - "known", - "large", - "lost", - "research", - "room", - "several", - "started", - "taking", - "university", - "win", - "wrong", - "along", - "anyone", - "else", - "girl", - "john", - "matter", - "pretty", - "remember", - "air", - "bit", - "friend", - "hit", - "nice", - "playing", - "probably", - "saying", - "understand", - "yeah", - "york", - "class", - "close", - "idea", - "international", - "past", - "possible", - "wanted", - "cause", - "due", - "happy", - "human", - "move", - "question", - "series", - "wait", - "woman", - "ask", - "community", - "data", - "late", - "leave", - "north", - "saw", - "special", - "watch", - "either", - "fucking", - "future", - "light", - "low", - "million", - "morning", - "police", - "short", - "stay", - "taken", - "age", - "buy", - "deal", - "rather", - "reason", - "red", - "report", - "soon", - "third", - "turn", - "whether", - "among", - "check", - "development", - "form", - "further", - "heart", - "myself", - "yourself", - "act", - "although", - "asked", - "child", - "fire", - "fun", - "living", - "major", - "media", - "phone", - "art", - "behind", - "building", - "easy", - "gonna", - "market", - "near", - "non", - "plan", - "political", - "quite", - "six", - "talking", - "west", - "according", - "available", - "education", - "final", - "former", - "front", - "list", - "ready", - "son", - "street", - "bring", - "college", - "current", - "example", - "experience", - "heard", - "london", - "meet", - "program", - "type", - "baby", - "chance", - "father", - "march", - "process", - "song", - "study", - "word", - "across", - "action", - "clear", - "gave", - "himself", - "month", - "outside", - "self", - "board", - "cost", - "cut", - "dr", - "field", - "held", - "instead", - "main", - "moment", - "mother", - "road", - "seems", - "thinking", - "town", - "de", - "department", - "energy", - "fight", - "fine", - "force", - "hear", - "issue", - "played", - "price", - "re", - "rest", - "results", - "running", - "space", - "summer", - "term", - "wife", - "america", - "beautiful", - "date", - "goes", - "killed", - "land", - "miss", - "project", - "sex", - "shot", - "site", - "strong", - "account", - "co", - "especially", - "include", - "june", - "period", - "position", - "record", - "similar", - "total", - "above", - "club", - "common", - "died", - "film", - "happened", - "knew", - "lead", - "likely", - "military", - "perfect", - "personal", - "security", - "st", - "tv", - "won", - "april", - "center", - "county", - "couple", - "dead", - "english", - "happen", - "hold", - "industry", - "inside", - "online", - "player", - "private", - "return", - "sense", - "star", - "test", - "view", - "break", - "british", - "companies", - "event", - "higher", - "hour", - "member", - "middle", - "needed", - "present", - "result", - "sorry", - "takes", - "training", - "wish", - "answer", - "boy", - "design", - "finally", - "gold", - "gone", - "guess", - "interest", - "july", - "king", - "learn", - "policy", - "society", - "added", - "al", - "alone", - "average", - "bank", - "brought", - "certain", - "church", - "east", - "hot", - "longer", - "medical", - "movie", - "original", - "park", - "performance", - "press", - "received", - "role", - "sent", - "themselves", - "tried", - "worked", - "worth", - "became", - "bill", - "cool", - "director", - "exactly", - "giving", - "ground", - "meeting", - "provide", - "relationship", - "september", - "sound", - "source", - "usually", - "value", - "evidence", - "follow", - "official", - "ok", - "production", - "rate", - "reading", - "round", - "save", - "stand", - "stuff", - "tax", - "whatever", - "amount", - "blue", - "countries", - "david", - "drive", - "eat", - "fall", - "fast", - "federal", - "feeling", - "felt", - "green", - "league", - "management", - "match", - "model", - "picture", - "size", - "step", - "trust", - "central", - "england", - "forward", - "hey", - "key", - "mom", - "page", - "paid", - "range", - "review", - "science", - "trade", - "uk", - "upon", - "various", - "attention", - "brother", - "cannot", - "character", - "chief", - "cup", - "football", - "hate", - "led", - "looked", - "lower", - "natural", - "october", - "property", - "quality", - "send", - "style", - "vote", - "amazing", - "august", - "blood", - "china", - "complete", - "dog", - "economic", - "involved", - "itself", - "language", - "lord", - "november", - "oil", - "related", - "serious", - "stage", - "title", - "add", - "article", - "attack", - "born", - "damn", - "decided", - "decision", - "enjoy", - "entire", - "french", - "january", - "kill", - "met", - "perhaps", - "poor", - "release", - "situation", - "technology", - "turned", - "website", - "written", - "choice", - "code", - "considered", - "continue", - "council", - "cover", - "currently", - "door", - "election", - "european", - "financial", - "foreign", - "hair", - "increase", - "legal", - "lose", - "michael", - "pick", - "race", - "seem", - "seven", - "sign", - "simple", - "simply", - "staff", - "super", - "union", - "walk", - "washington", - "bed", - "began", - "built", - "career", - "changed", - "crazy", - "daily", - "daughter", - "december", - "die", - "difficult", - "figure", - "hospital", - "loss", - "modern", - "paper", - "popular", - "published", - "safe", - "starting", - "version", - "voice", - "whose", - "writing", - "army", - "australia", - "earth", - "forget", - "goal", - "huge", - "internet", - "listen", - "okay", - "practice", - "sea", - "sir", - "success", - "towards", - "waiting", - "access", - "base", - "below", - "created", - "deep", - "followed", - "la", - "lol", - "mark", - "missing", - "offer", - "pass", - "professional", - "released", - "risk", - "sleep", - "table", - "ten", - "truth", - "ball", - "box", - "build", - "card", - "dark", - "district", - "europe", - "george", - "india", - "mine", - "minister", - "note", - "percent", - "piece", - "recent", - "seeing", - "straight", - "visit", - "wall", - "wanna", - "wrote", - "allowed", - "culture", - "etc", - "february", - "gives", - "growth", - "included", - "married", - "officer", - "pain", - "paul", - "respect", - "response", - "river", - "rock", - "shall", - "speak", - "specific", - "standard", - "tonight", - "write", - "album", - "century", - "charge", - "cold", - "create", - "effect", - "eight", - "except", - "eye", - "funny", - "ii", - "limited", - "moving", - "network", - "peace", - "provided", - "recently", - "required", - "spent", - "store", - "student", - "tomorrow", - "track", - "via", - "watching", - "weight", - "addition", - "ahead", - "allow", - "anti", - "association", - "beat", - "brown", - "capital", - "chinese", - "committee", - "conference", - "difference", - "double", - "expect", - "island", - "moved", - "normal", - "population", - "potential", - "pressure", - "radio", - "russian", - "station", - "text", - "treatment", - "western", - "beginning", - "california", - "campaign", - "certainly", - "completely", - "content", - "credit", - "cross", - "described", - "despite", - "female", - "focus", - "hi", - "husband", - "ice", - "individual", - "interesting", - "join", - "kept", - "leading", - "loved", - "message", - "nearly", - "particular", - "previous", - "quickly", - "region", - "reported", - "section", - "sort", - "speed", - "travel", - "consider", - "contact", - "drop", - "fair", - "feet", - "jesus", - "kid", - "link", - "positive", - "sale", - "throughout", - "tour", - "welcome", - "absolutely", - "additional", - "beyond", - "conditions", - "earlier", - "extra", - "immediately", - "leaving", - "minute", - "nature", - "quick", - "sell", - "significant", - "studies", - "unless", - "winning", - "agree", - "canada", - "clean", - "computer", - "construction", - "episode", - "favorite", - "income", - "justice", - "manager", - "movement", - "photo", - "posted", - "safety", - "san", - "scene", - "sold", - "spend", - "statement", - "sun", - "ability", - "announced", - "asking", - "calling", - "coach", - "collection", - "continued", - "costs", - "definitely", - "designed", - "expected", - "friday", - "gun", - "happens", - "heavy", - "includes", - "knowledge", - "particularly", - "search", - "subject", - "train", - "wide", - "wow", - "author", - "centre", - "claim", - "dad", - "developed", - "fear", - "fit", - "generally", - "german", - "global", - "goals", - "gotta", - "hotel", - "interested", - "judge", - "lady", - "leader", - "letter", - "material", - "named", - "nobody", - "opportunity", - "plus", - "pre", - "product", - "regular", - "secretary", - "sister", - "stories", - "unit", - "annual", - "anymore", - "bar", - "battle", - "brain", - "contract", - "degree", - "families", - "features", - "finished", - "floor", - "france", - "growing", - "hurt", - "image", - "insurance", - "majority", - "opening", - "opinion", - "physical", - "pro", - "reach", - "rule", - "seriously", - "stupid", - "successful", - "active", - "administration", - "approach", - "australian", - "biggest", - "cancer", - "civil", - "dance", - "defense", - "direction", - "independent", - "master", - "none", - "russia", - "ship", - "stock", - "trump", - "weekend", - "wonder", - "worst", - "africa", - "awesome", - "band", - "beach", - "cash", - "clearly", - "commercial", - "compared", - "effort", - "ended", - "fan", - "fighting", - "imagine", - "impact", - "lack", - "latest", - "learning", - "multiple", - "older", - "operation", - "organization", - "passed", - "protect", - "secret", - "senior", - "spring", - "sunday", - "telling", - "wear", - "activities", - "address", - "analysis", - "anyway", - "bought", - "choose", - "christmas", - "color", - "commission", - "competition", - "details", - "direct", - "dream", - "easily", - "finish", - "grand", - "increased", - "indian", - "literally", - "luck", - "marriage", - "necessary", - "resources", - "rich", - "skin", - "speaking", - "supposed", - "sweet", - "thus", - "touch", - "yesterday", - "caught", - "closed", - "congress", - "damage", - "directly", - "disease", - "doctor", - "doubt", - "drink", - "driving", - "established", - "facebook", - "feels", - "fish", - "gay", - "germany", - "glad", - "greater", - "grow", - "largest", - "machine", - "notice", - "overall", - "planning", - "professor", - "shown", - "sit", - "trip", - "well", - "associated", - "basic", - "captain", - "carry", - "crime", - "effective", - "explain", - "fully", - "highly", - "holding", - "japan", - "male", - "parties", - "plant", - "reality", - "smith", - "spot", - "texas", - "winter", - "worse", - "advice", - "agreement", - "award", - "block", - "broken", - "caused", - "challenge", - "christian", - "comment", - "equipment", - "eventually", - "helped", - "holy", - "killing", - "lived", - "nation", - "otherwise", - "peter", - "primary", - "purpose", - "rates", - "responsible", - "shop", - "showing", - "sick", - "teacher", - "theory", - "uses", - "william", - "agency", - "avoid", - "camera", - "catch", - "cell", - "coast", - "comments", - "drug", - "economy", - "environment", - "executive", - "foot", - "hall", - "mass", - "meaning", - "mission", - "nine", - "politics", - "pop", - "produced", - "ran", - "saturday", - "status", - "therefore", - "trial", - "truly", - "weather", - "activity", - "app", - "application", - "claims", - "coffee", - "complex", - "condition", - "division", - "evening", - "flight", - "freedom", - "google", - "heat", - "highest", - "interview", - "library", - "located", - "location", - "murder", - "obama", - "offered", - "putting", - "queen", - "showed", - "sitting", - "standing", - "walking", - "accept", - "actual", - "appear", - "attempt", - "broke", - "channel", - "distance", - "eating", - "exchange", - "fat", - "fell", - "finding", - "glass", - "learned", - "losing", - "mobile", - "northern", - "opened", - "placed", - "powerful", - "prior", - "protection", - "reached", - "receive", - "religious", - "ride", - "robert", - "royal", - "screen", - "serve", - "signed", - "slow", - "species", - "speech", - "traffic", - "tree", - "wearing", - "whom", - "wonderful", - "agreed", - "airport", - "appears", - "begin", - "benefits", - "bottom", - "cities", - "demand", - "engine", - "everybody", - "famous", - "investment", - "keeping", - "lie", - "partner", - "raised", - "solution", - "southern", - "square", - "stopped", - "structure", - "thomas", - "traditional", - "twice", - "wind", - "worry", - "appeared", - "becomes", - "brand", - "cent", - "chicago", - "count", - "covered", - "critical", - "digital", - "forced", - "fourth", - "fresh", - "lake", - "mental", - "mentioned", - "missed", - "mostly", - "mouth", - "owner", - "previously", - "realize", - "remain", - "scale", - "score", - "separate", - "smart", - "starts", - "surface", - "throw", - "tom", - "totally", - "twitter", - "wedding", - "acting", - "african", - "benefit", - "budget", - "click", - "estate", - "failed", - "faith", - "fashion", - "feature", - "fund", - "generation", - "hearing", - "hill", - "jack", - "larger", - "louis", - "metal", - "mid", - "paris", - "profile", - "pull", - "push", - "returned", - "rose", - "seat", - "seemed", - "sexual", - "target", - "understanding", - "village", - "agent", - "animal", - "apply", - "authority", - "basis", - "becoming", - "chris", - "draw", - "dude", - "enter", - "ex", - "follows", - "foundation", - "gain", - "http", - "japanese", - "memory", - "prime", - "ring", - "rise", - "selling", - "served", - "silver", - "soul", - "spread", - "supply", - "waste", - "weird", - "adult", - "apparently", - "artist", - "chairman", - "edition", - "engineering", - "grade", - "happening", - "healthy", - "institute", - "method", - "mike", - "monday", - "obviously", - "option", - "prison", - "provides", - "remains", - "senate", - "smaller", - "somebody", - "stone", - "strength", - "wild", - "window", - "winner", - "arrived", - "bag", - "bet", - "camp", - "cast", - "christ", - "continues", - "correct", - "dangerous", - "extremely", - "firm", - "greatest", - "handle", - "improve", - "indeed", - "negative", - "prevent", - "removed", - "richard", - "spirit", - "television", - "till", - "trouble", - "usa", - "advantage", - "apart", - "aware", - "cat", - "decide", - "dinner", - "eastern", - "fifth", - "function", - "gift", - "helping", - "herself", - "impossible", - "influence", - "joe", - "marketing", - "mary", - "nor", - "produce", - "progress", - "proud", - "require", - "shooting", - "shut", - "tells", - "van", - "background", - "birth", - "bridge", - "carried", - "charles", - "classes", - "completed", - "concept", - "copy", - "dear", - "efforts", - "garden", - "host", - "housing", - "inc", - "israel", - "journal", - "labor", - "leadership", - "length", - "lucky", - "neither", - "onto", - "patient", - "possibly", - "prove", - "rare", - "setting", - "skills", - "software", - "thousands", - "tough", - "ad", - "alive", - "apple", - "balance", - "birthday", - "bitch", - "boss", - "changing", - "connection", - "dress", - "easier", - "fellow", - "florida", - "horse", - "knowing", - "liked", - "magic", - "managed", - "map", - "net", - "owned", - "request", - "stick", - "vehicle", - "volume", - "wake", - "aid", - "beauty", - "believed", - "billion", - "busy", - "buying", - "concerned", - "conversation", - "corner", - "criminal", - "cultural", - "develop", - "driver", - "existing", - "farm", - "file", - "fix", - "fly", - "frank", - "guide", - "investigation", - "mexico", - "operating", - "paying", - "presented", - "raise", - "responsibility", - "roll", - "slightly", - "suggest", - "surprise", - "technical", - "thoughts", - "treat", - "unique", - "variety", - "violence", - "youth", - "appreciate", - "bigger", - "breaking", - "discovered", - "dry", - "edge", - "evil", - "excited", - "forever", - "helps", - "henry", - "injury", - "iron", - "lovely", - "mad", - "magazine", - "martin", - "offers", - "ordered", - "parliament", - "prepared", - "reference", - "religion", - "somewhere", - "stated", - "strategy", - "web", - "wine", - "angeles", - "arm", - "audience", - "bay", - "blog", - "closer", - "core", - "democratic", - "description", - "dropped", - "excellent", - "exist", - "guard", - "honest", - "issued", - "joined", - "lee", - "lies", - "likes", - "medicine", - "mention", - "mountain", - "nuclear", - "port", - "presence", - "reaction", - "reduce", - "shoot", - "solid", - "spanish", - "sport", - "steps", - "stress", - "taste", - "tea", - "victory", - "ill", - "afternoon", - "assistant", - "britain", - "classic", - "clothes", - "electric", - "emergency", - "entered", - "entirely", - "facts", - "failure", - "festival", - "flat", - "fuel", - "harry", - "hello", - "initial", - "introduced", - "johnson", - "kick", - "mail", - "massive", - "pair", - "picked", - "plane", - "plenty", - "prince", - "proper", - "providing", - "quarter", - "regional", - "scott", - "session", - "shape", - "sky", - "teaching", - "toward", - "transfer", - "upper", - "useful", - "valley", - "watched", - "willing", - "zone", - "accident", - "advanced", - "alternative", - "anywhere", - "bear", - "boat", - "bringing", - "capacity", - "cheap", - "climate", - "communities", - "discussion", - "drinking", - "duty", - "fantastic", - "flying", - "governor", - "hundred", - "industrial", - "joint", - "mix", - "museum", - "options", - "path", - "policies", - "promise", - "proposed", - "purchase", - "rain", - "remove", - "spending", - "steel", - "steve", - "supporting", - "terrible", - "tired", - "treated", - "turning", - "vice", - "warm", - "afraid", - "beer", - "border", - "canadian", - "command", - "crew", - "crowd", - "dating", - "dick", - "enemy", - "ensure", - "environmental", - "filled", - "fixed", - "forest", - "intelligence", - "intended", - "labour", - "limit", - "moon", - "ocean", - "profit", - "proof", - "republican", - "suit", - "im", - "appearance", - "asian", - "attorney", - "behavior", - "ben", - "bodies", - "chair", - "creating", - "debt", - "domestic", - "expensive", - "grew", - "historical", - "honestly", - "honor", - "jump", - "launch", - "listed", - "minimum", - "native", - "noted", - "originally", - "planned", - "pm", - "ray", - "suddenly", - "supreme", - "survey", - "tech", - "update", - "user", - "writer", - "yellow", - "younger", - "ancient", - "charges", - "combined", - "communication", - "connected", - "contains", - "download", - "email", - "ending", - "exercise", - "express", - "flow", - "formed", - "girlfriend", - "hero", - "illegal", - "increasing", - "joke", - "loan", - "methods", - "performed", - "planet", - "restaurant", - "scotland", - "selected", - "shared", - "shopping", - "soft", - "stuck", - "sugar", - "suggested", - "supported", - "surprised", - "taught", - "transport", - "accepted", - "adding", - "affairs", - "allows", - "appeal", - "applied", - "appropriate", - "boston", - "ca", - "confirmed", - "device", - "drama", - "entry", - "era", - "factor", - "feed", - "golden", - "grant", - "grown", - "hoping", - "keeps", - "lawyer", - "lying", - "measures", - "mistake", - "muslim", - "platform", - "pool", - "pulled", - "regarding", - "relations", - "requires", - "route", - "saved", - "schedule", - "scientific", - "smoke", - "squad", - "teach", - "testing", - "values", - "walked", - "ya", - "abuse", - "angry", - "businesses", - "candidate", - "comfortable", - "concern", - "developing", - "discuss", - "emotional", - "et", - "everywhere", - "facilities", - "falling", - "fox", - "hole", - "holiday", - "interests", - "internal", - "ireland", - "italian", - "italy", - "jersey", - "laugh", - "leg", - "liberal", - "listening", - "ll", - "lunch", - "max", - "milk", - "pack", - "payment", - "perform", - "recorded", - "relatively", - "sector", - "sharing", - "snow", - "storm", - "strike", - "studio", - "sub", - "weak", - "youtube", - "actor", - "advance", - "apartment", - "asia", - "chain", - "chapter", - "committed", - "confidence", - "cook", - "cute", - "equal", - "fake", - "finance", - "focused", - "identity", - "journey", - "kitchen", - "korea", - "maintain", - "measure", - "mm", - "numerous", - "properties", - "quiet", - "revealed", - "specifically", - "split", - "task", - "taxes", - "taylor", - "twenty", - "urban", - "affected", - "aircraft", - "approved", - "approximately", - "argument", - "arrested", - "claimed", - "conflict", - "considering", - "corporate", - "debate", - "determined", - "distribution", - "escape", - "extended", - "faster", - "fault", - "fill", - "friendly", - "ladies", - "lay", - "mixed", - "phase", - "properly", - "pure", - "reduced", - "requirements", - "revenue", - "sam", - "sat", - "secure", - "smile", - "strange", - "talent", - "temperature", - "thousand", - "tony", - "troops", - "truck", - "ah", - "authorities", - "basically", - "besides", - "bird", - "blame", - "bob", - "bowl", - "causes", - "chicken", - "collected", - "context", - "coverage", - "determine", - "display", - "dying", - "elected", - "examples", - "experienced", - "false", - "fired", - "forgot", - "funding", - "identified", - "iii", - "incredible", - "inspired", - "launched", - "ma", - "meat", - "ministry", - "mode", - "neck", - "noticed", - "novel", - "obvious", - "passing", - "remaining", - "scored", - "shirt", - "slowly", - "stadium", - "surgery", - "trading", - "tuesday", - "vision", - "whenever", - "worried", - "zero", - "alex", - "allowing", - "begins", - "champion", - "charged", - "cream", - "crisis", - "daniel", - "delivered", - "editor", - "estimated", - "eu", - "giant", - "iran", - "jail", - "jim", - "kingdom", - "literature", - "mayor", - "minor", - "opposite", - "orange", - "ourselves", - "remained", - "selection", - "serving", - "signal", - "stream", - "struggle", - "suicide", - "talked", - "theme", - "thursday", - "tiny", - "typically", - "un", - "unfortunately", - "usual", - "virginia", - "voted", - "voting", - "wave", - "id", - "alcohol", - "assembly", - "breakfast", - "bright", - "brings", - "capable", - "carrying", - "chosen", - "combination", - "conservative", - "customer", - "cutting", - "desire", - "destroyed", - "draft", - "drunk", - "essential", - "fail", - "familiar", - "finds", - "granted", - "guilty", - "hundreds", - "improved", - "jewish", - "largely", - "laughing", - "medium", - "ohio", - "opportunities", - "perfectly", - "recommend", - "referred", - "relevant", - "seek", - "sending", - "solo", - "spoke", - "stands", - "ticket", - "unable", - "upset", - "wing", - "bomb", - "creative", - "cycle", - "dealing", - "directed", - "don", - "educational", - "entertainment", - "extreme", - "facility", - "hang", - "holds", - "info", - "mainly", - "maximum", - "newspaper", - "offering", - "painting", - "republic", - "reserve", - "returns", - "row", - "salt", - "scared", - "scottish", - "shares", - "statistics", - "switch", - "territory", - "threat", - "tickets", - "wales", - "affect", - "appointed", - "armed", - "aside", - "assistance", - "bell", - "blow", - "bond", - "boyfriend", - "careful", - "circumstances", - "communications", - "concerns", - "controlled", - "corporation", - "cry", - "danger", - "delivery", - "deserve", - "dollar", - "empty", - "enjoyed", - "explained", - "fucked", - "gender", - "instance", - "kim", - "kinda", - "matches", - "mile", - "motion", - "nick", - "pacific", - "prize", - "realized", - "reasonable", - "receiving", - "register", - "resolution", - "rural", - "ryan", - "saving", - "singing", - "spain", - "typical", - "universe", - "warning", - "wednesday", - "admit", - "attitude", - "branch", - "brazil", - "conducted", - "dedicated", - "definition", - "drawing", - "favor", - "flag", - "frame", - "guest", - "ha", - "heaven", - "independence", - "jackson", - "kiss", - "load", - "plot", - "possibility", - "random", - "recovery", - "rent", - "replace", - "represent", - "seeking", - "senator", - "sentence", - "teeth", - "trained", - "understood", - "academic", - "academy", - "accurate", - "achieve", - "afford", - "andrew", - "assume", - "bbc", - "bottle", - "bunch", - "category", - "chat", - "cheese", - "chemical", - "clinton", - "competitive", - "detail", - "diet", - "em", - "favourite", - "fruit", - "harder", - "index", - "item", - "lane", - "mess", - "navy", - "normally", - "occurred", - "opposition", - "parent", - "permanent", - "personally", - "pleasure", - "prefer", - "programme", - "representative", - "scheme", - "shift", - "stood", - "storage", - "tank", - "tend", - "tight", - "transportation", - "ultimately", - "unlike", - "weekly", - "yard", - "anybody", - "basketball", - "button", - "combat", - "constitution", - "consumer", - "counter", - "creation", - "crown", - "crying", - "dc", - "defined", - "depending", - "depression", - "describe", - "el", - "employment", - "exclusive", - "excuse", - "expert", - "frequently", - "golf", - "grace", - "hopefully", - "identify", - "importance", - "kevin", - "laid", - "latter", - "manufacturing", - "mining", - "object", - "pattern", - "performing", - "personnel", - "perspective", - "pregnant", - "premier", - "promote", - "revolution", - "severe", - "sleeping", - "suppose", - "tool", - "tournament", - "turkey", - "ve", - "victim", - "amazon", - "arrest", - "attend", - "ban", - "brilliant", - "carbon", - "catholic", - "chose", - "circle", - "concert", - "crash", - "declared", - "deliver", - "depth", - "deputy", - "dirty", - "earned", - "electronic", - "error", - "existence", - "experiences", - "expression", - "factory", - "headed", - "interior", - "joy", - "jr", - "legislation", - "maintenance", - "manner", - "mate", - "matt", - "nearby", - "noise", - "origin", - "pakistan", - "panel", - "personality", - "plate", - "prepare", - "relief", - "replaced", - "resistance", - "retail", - "rice", - "roof", - "shame", - "somewhat", - "staying", - "stronger", - "surely", - "tip", - "updated", - "hell", - "absolute", - "advertising", - "agencies", - "baseball", - "bathroom", - "bible", - "cable", - "calm", - "championship", - "checked", - "client", - "constant", - "da", - "degrees", - "driven", - "dumb", - "empire", - "exciting", - "expansion", - "heavily", - "hide", - "incident", - "irish", - "linked", - "manage", - "messages", - "michigan", - "multi", - "nfl", - "print", - "quit", - "refused", - "reporting", - "sight", - "significantly", - "sing", - "soviet", - "weapon", - "wet", - "widely", - "worldwide", - "anniversary", - "attractive", - "bike", - "broad", - "burn", - "cake", - "causing", - "closely", - "constantly", - "contest", - "depends", - "drawn", - "francisco", - "haha", - "hardly", - "hat", - "height", - "hidden", - "hong", - "invited", - "letting", - "loud", - "manchester", - "marine", - "motor", - "officially", - "pc", - "peak", - "portion", - "princess", - "protein", - "puts", - "raw", - "reform", - "represented", - "respond", - "retirement", - "sample", - "secondary", - "solar", - "somehow", - "stayed", - "suffering", - "sydney", - "tries", - "ultimate", - "unknown", - "wilson", - "wondering", - "thats", - "attached", - "attacked", - "automatically", - "battery", - "blind", - "breath", - "brief", - "carolina", - "chest", - "conduct", - "debut", - "decade", - "destroy", - "differences", - "edward", - "engaged", - "expressed", - "external", - "fantasy", - "ft", - "grab", - "hollywood", - "immediate", - "introduction", - "joseph", - "license", - "paint", - "pilot", - "pink", - "presidential", - "principal", - "recognize", - "recognized", - "registered", - "regularly", - "rising", - "shipping", - "singer", - "smoking", - "steam", - "suffered", - "survive", - "tall", - "theatre", - "therapy", - "witness", - "lets", - "adopted", - "aim", - "campus", - "cap", - "childhood", - "clinical", - "comedy", - "commander", - "comparison", - "dan", - "defeat", - "defence", - "democracy", - "detailed", - "entitled", - "exact", - "exposed", - "fed", - "fee", - "injured", - "jan", - "jordan", - "kinds", - "loans", - "lock", - "musical", - "nose", - "opposed", - "organized", - "plastic", - "protected", - "purposes", - "quote", - "recording", - "semi", - "suspect", - "swear", - "techniques", - "tie", - "tim", - "trend", - "valuable", - "wealth", - "wise", - "aged", - "approval", - "aspects", - "attempts", - "bread", - "burning", - "contain", - "convention", - "dancing", - "document", - "employee", - "en", - "engineer", - "equivalent", - "facing", - "fairly", - "ford", - "founded", - "gang", - "graduate", - "greek", - "hanging", - "inner", - "le", - "lift", - "marked", - "memories", - "miller", - "monthly", - "neighborhood", - "operate", - "outstanding", - "permission", - "porn", - "racing", - "recommended", - "regulations", - "reply", - "rid", - "roman", - "shoulder", - "shower", - "solutions", - "stephen", - "tower", - "tradition", - "visited", - "visual", - "wheel", - "zealand", - "achieved", - "admitted", - "appointment", - "barely", - "bc", - "bush", - "cabinet", - "celebrate", - "challenges", - "chocolate", - "coal", - "colour", - "contemporary", - "criticism", - "davis", - "dna", - "effectively", - "eric", - "extensive", - "faced", - "filed", - "formation", - "fought", - "gained", - "gallery", - "highway", - "historic", - "hunt", - "improvement", - "inch", - "initially", - "junior", - "jury", - "kong", - "korean", - "monster", - "obtained", - "olympic", - "philosophy", - "pride", - "promised", - "repeat", - "returning", - "riding", - "rough", - "santa", - "settlement", - "smell", - "sought", - "speaker", - "studied", - "suggests", - "surrounding", - "tone", - "topic", - "toronto", - "universal", - "vast", - "wanting", - "auto", - "consistent", - "continuing", - "earn", - "exists", - "finger", - "grey", - "guitar", - "heading", - "howard", - "ignore", - "involving", - "latin", - "lewis", - "meal", - "meanwhile", - "naturally", - "necessarily", - "partnership", - "payments", - "percentage", - "pocket", - "practical", - "primarily", - "proved", - "rape", - "regardless", - "relative", - "represents", - "rescue", - "resulting", - "rush", - "sarah", - "sharp", - "simon", - "soccer", - "stable", - "supplies", - "symptoms", - "temporary", - "tested", - "trick", - "attended", - "audio", - "bone", - "brian", - "bullshit", - "chamber", - "chart", - "circuit", - "clothing", - "complicated", - "confused", - "consequences", - "defend", - "divided", - "elizabeth", - "everyday", - "extent", - "fishing", - "format", - "gap", - "gate", - "gotten", - "harm", - "healthcare", - "household", - "immigration", - "impressive", - "joining", - "killer", - "lesson", - "limits", - "loving", - "ltd", - "membership", - "miami", - "mirror", - "mount", - "occur", - "parking", - "proposal", - "province", - "purchased", - "recognition", - "reputation", - "rolling", - "shortly", - "situations", - "strongly", - "tears", - "technique", - "thin", - "tied", - "accused", - "adventure", - "argue", - "assessment", - "atmosphere", - "awful", - "bedroom", - "belief", - "bound", - "carefully", - "ceo", - "choices", - "closing", - "cloud", - "colorado", - "contrast", - "donald", - "drew", - "egg", - "element", - "elsewhere", - "establish", - "extension", - "founder", - "gear", - "georgia", - "hip", - "hitting", - "increases", - "infrastructure", - "jason", - "loose", - "moral", - "offensive", - "pa", - "package", - "pointed", - "poverty", - "processes", - "processing", - "qualified", - "railway", - "reaching", - "ridiculous", - "sensitive", - "server", - "shock", - "silence", - "soldier", - "superior", - "thick", - "threw", - "tons", - "transition", - "violent", - "wash", - "acid", - "actress", - "administrative", - "alan", - "alongside", - "angel", - "anxiety", - "babies", - "bonus", - "castle", - "charity", - "compare", - "contained", - "cooking", - "covering", - "curious", - "discovery", - "discussed", - "duke", - "egypt", - "encourage", - "enforcement", - "featuring", - "finals", - "flash", - "formal", - "formula", - "gray", - "gross", - "hungry", - "informed", - "innocent", - "jeff", - "losses", - "luke", - "mac", - "math", - "mistakes", - "mystery", - "olympics", - "palace", - "passes", - "penalty", - "pet", - "photography", - "producing", - "protest", - "publication", - "rating", - "refer", - "respectively", - "rome", - "scheduled", - "select", - "silent", - "spoken", - "successfully", - "suffer", - "temple", - "trail", - "uncle", - "unusual", - "yo", - "arrival", - "asks", - "assault", - "awareness", - "badly", - "bath", - "captured", - "chase", - "components", - "concrete", - "dave", - "deeply", - "expectations", - "explanation", - "exposure", - "featured", - "fiction", - "guarantee", - "happiness", - "harris", - "horrible", - "ideal", - "illinois", - "injuries", - "islamic", - "jimmy", - "kelly", - "legend", - "lieutenant", - "mini", - "mood", - "muscle", - "passion", - "picking", - "pleased", - "procedure", - "producer", - "pushing", - "rank", - "replacement", - "retired", - "roles", - "sand", - "savings", - "settled", - "shadow", - "tag", - "tape", - "thread", - "victoria", - "visiting", - "wage", - "andy", - "avenue", - "beating", - "believes", - "boring", - "charlie", - "checking", - "clock", - "commissioner", - "commitment", - "confident", - "containing", - "copies", - "custom", - "denied", - "desk", - "ear", - "electricity", - "fbi", - "gym", - "helpful", - "horror", - "iphone", - "iraq", - "label", - "liverpool", - "locked", - "naked", - "ny", - "opens", - "output", - "pitch", - "pizza", - "plain", - "pushed", - "raising", - "rear", - "reveal", - "romantic", - "speaks", - "strategic", - "swimming", - "welfare", - "wire", - "worker", - "afterwards", - "alright", - "android", - "anger", - "architecture", - "assist", - "attempted", - "behalf", - "belt", - "capture", - "ceremony", - "comic", - "cuts", - "dallas", - "designer", - "diamond", - "disappointed", - "dressed", - "economics", - "efficient", - "electrical", - "employed", - "enjoying", - "entering", - "essentially", - "establishment", - "expecting", - "explains", - "flower", - "ghost", - "handed", - "hockey", - "houston", - "https", - "hunting", - "industries", - "islam", - "jane", - "kit", - "lab", - "min", - "morgan", - "moscow", - "na", - "nervous", - "newly", - "op", - "ordinary", - "participate", - "philadelphia", - "prayer", - "principles", - "racist", - "rarely", - "references", - "sexy", - "skill", - "soil", - "solve", - "stomach", - "struck", - "studying", - "suck", - "trash", - "ugly", - "virus", - "walker", - "whoever", - "amounts", - "anthony", - "arthur", - "aspect", - "banned", - "boost", - "bureau", - "colonel", - "comfort", - "cousin", - "crack", - "deck", - "demands", - "dies", - "dragon", - "dramatic", - "dust", - "dutch", - "evolution", - "hired", - "illness", - "inspiration", - "institution", - "knife", - "lately", - "lowest", - "memorial", - "mexican", - "minority", - "mum", - "opinions", - "patterns", - "presents", - "priority", - "promotion", - "rail", - "remote", - "repair", - "root", - "saint", - "steal", - "stolen", - "telephone", - "tho", - "trans", - "vol", - "whereas", - "abandoned", - "acquired", - "alexander", - "alliance", - "annoying", - "ap", - "bid", - "bro", - "buddy", - "buried", - "butter", - "columbia", - "conclusion", - "confirm", - "congratulations", - "convinced", - "crap", - "crystal", - "dean", - "decent", - "decline", - "delay", - "describes", - "desert", - "downtown", - "elite", - "enemies", - "forgotten", - "forth", - "hire", - "hop", - "insane", - "installed", - "israeli", - "landing", - "layer", - "managing", - "marry", - "nah", - "nowhere", - "nurse", - "obtain", - "organic", - "ownership", - "pennsylvania", - "poetry", - "pot", - "pray", - "printed", - "recall", - "rugby", - "sake", - "sheet", - "signing", - "smooth", - "spiritual", - "stops", - "string", - "sudden", - "sweden", - "syria", - "throwing", - "thrown", - "vacation", - "ones", - "abroad", - "arab", - "assigned", - "associate", - "assumed", - "atlantic", - "bench", - "bother", - "broadcast", - "bye", - "cambridge", - "citizen", - "cleaning", - "compete", - "consists", - "contributed", - "cricket", - "damaged", - "disaster", - "discover", - "disney", - "entrance", - "equally", - "fallen", - "figured", - "fitness", - "francis", - "friendship", - "gary", - "handling", - "idiot", - "intense", - "lifetime", - "liquid", - "makeup", - "medal", - "mortgage", - "narrative", - "narrow", - "nba", - "observed", - "occasionally", - "pan", - "physics", - "posting", - "potentially", - "reduction", - "reflect", - "refuse", - "resource", - "roger", - "ross", - "seattle", - "serves", - "silly", - "subsequent", - "translation", - "visible", - "yep", - "years", - "adds", - "allen", - "amendment", - "angle", - "arizona", - "arrive", - "belong", - "berlin", - "bishop", - "clark", - "commonly", - "connect", - "defensive", - "efficiency", - "enterprise", - "experiment", - "feb", - "findings", - "forum", - "gifts", - "grass", - "hence", - "increasingly", - "incredibly", - "jay", - "journalist", - "kicked", - "lessons", - "maintained", - "mill", - "mo", - "occasion", - "oxford", - "pace", - "passenger", - "pen", - "pope", - "possession", - "pp", - "rapid", - "regulation", - "resident", - "shaped", - "sixth", - "spin", - "sucks", - "suitable", - "thirty", - "valid", - "vital", - "whilst", - "gods", - "agriculture", - "alleged", - "anna", - "atlanta", - "collect", - "commerce", - "cop", - "creek", - "currency", - "emotions", - "exhibition", - "fraud", - "funeral", - "genuine", - "gordon", - "honey", - "honour", - "hook", - "hunter", - "improving", - "instructions", - "introduce", - "kansas", - "km", - "legacy", - "log", - "matthew", - "merely", - "monitor", - "nov", - "patrick", - "phil", - "programming", - "publishing", - "ratio", - "regret", - "rejected", - "remind", - "resort", - "resulted", - "reverse", - "routine", - "scary", - "seed", - "settle", - "sin", - "spell", - "summary", - "survival", - "sword", - "tongue", - "ward", - "wayne", - "achievement", - "anderson", - "argued", - "asleep", - "austin", - "automatic", - "begun", - "behaviour", - "cd", - "coat", - "comprehensive", - "consent", - "daddy", - "destruction", - "diego", - "divorce", - "doc", - "drove", - "engage", - "extraordinary", - "fate", - "frequency", - "gaming", - "gene", - "glory", - "headquarters", - "heritage", - "initiative", - "interviews", - "jean", - "juice", - "landscape", - "logic", - "meets", - "melbourne", - "microsoft", - "objective", - "organisation", - "privacy", - "procedures", - "profits", - "reducing", - "regard", - "representing", - "residence", - "roughly", - "salary", - "scoring", - "script", - "searching", - "strip", - "surrounded", - "threatened", - "transferred", - "tube", - "universities", - "walter", - "wisconsin", - "writes", - "cant", - "ambassador", - "ann", - "awarded", - "banking", - "breast", - "carter", - "chelsea", - "chemistry", - "concluded", - "consumption", - "corruption", - "cotton", - "crossed", - "detroit", - "discount", - "dozen", - "epic", - "exception", - "exit", - "expand", - "fancy", - "gorgeous", - "grateful", - "heroes", - "impression", - "inches", - "indicate", - "input", - "johnny", - "josh", - "knock", - "leather", - "lips", - "luxury", - "lyrics", - "oct", - "operated", - "ought", - "outcome", - "painted", - "poll", - "preferred", - "pulling", - "ranked", - "referring", - "removal", - "rep", - "reporter", - "rio", - "risks", - "rob", - "screaming", - "sept", - "sequence", - "singapore", - "stretch", - "tear", - "tennis", - "terrorist", - "theater", - "ties", - "twelve", - "virgin", - "wishes", - "wolf", - "absence", - "agricultural", - "asshole", - "ate", - "boxes", - "bruce", - "bull", - "commonwealth", - "contribute", - "contribution", - "contributions", - "delicious", - "deny", - "deserves", - "ease", - "extend", - "fame", - "flood", - "generated", - "genetic", - "glasses", - "impressed", - "indicated", - "instant", - "involves", - "kate", - "kills", - "liberty", - "maria", - "monitoring", - "occurs", - "photographs", - "principle", - "progressive", - "punishment", - "rally", - "rapidly", - "reader", - "representation", - "reveals", - "sum", - "swing", - "tail", - "twin", - "upcoming", - "alert", - "arena", - "aug", - "billy", - "boom", - "brave", - "claiming", - "column", - "commit", - "compensation", - "composition", - "conservation", - "constitutional", - "crossing", - "defending", - "density", - "di", - "difficulty", - "dropping", - "drops", - "elementary", - "ethnic", - "expenses", - "fleet", - "foster", - "fuckin", - "fundamental", - "gen", - "genius", - "greatly", - "guidance", - "infection", - "instagram", - "intention", - "iowa", - "knee", - "mechanical", - "nigeria", - "participation", - "precious", - "pregnancy", - "premium", - "preparing", - "pretend", - "priest", - "prominent", - "proven", - "radical", - "remembered", - "requested", - "residential", - "reward", - "robin", - "russell", - "satellite", - "shake", - "shore", - "stats", - "struggling", - "substantial", - "teen", - "temperatures", - "transmission", - "trap", - "uniform", - "wildlife", - "wooden", - "mothers", - "aggressive", - "anne", - "answered", - "apparent", - "bang", - "blast", - "centuries", - "communist", - "complaint", - "component", - "courage", - "cure", - "del", - "desperate", - "diversity", - "duties", - "encouraged", - "eve", - "faculty", - "feedback", - "fighter", - "frozen", - "hiding", - "humanity", - "ian", - "innovation", - "invest", - "jacket", - "justin", - "legislative", - "listing", - "manual", - "murdered", - "nursing", - "occupied", - "ongoing", - "operator", - "painful", - "pound", - "preparation", - "punch", - "purple", - "railroad", - "registration", - "releases", - "rick", - "romance", - "submitted", - "sufficient", - "survived", - "suspended", - "technologies", - "tissue", - "trailer", - "trends", - "ukraine", - "underground", - "versus", - "virtual", - "walks", - "wounded", - "ali", - "amongst", - "announcement", - "arranged", - "arsenal", - "attending", - "attracted", - "biological", - "bite", - "blocked", - "burned", - "categories", - "checks", - "chip", - "concerning", - "dare", - "database", - "define", - "discrimination", - "disorder", - "distributed", - "documentary", - "domain", - "dynamic", - "edited", - "engagement", - "explore", - "favour", - "fewer", - "footage", - "grave", - "hamilton", - "implementation", - "indiana", - "investigate", - "jazz", - "jon", - "jonathan", - "laboratory", - "lawrence", - "lincoln", - "literary", - "mask", - "massachusetts", - "midnight", - "minnesota", - "mouse", - "oscar", - "packed", - "piano", - "praise", - "presentation", - "psychology", - "relation", - "restrictions", - "rocket", - "ruin", - "saudi", - "sean", - "sec", - "slave", - "stability", - "steady", - "symbol", - "terminal", - "toilet", - "treaty", - "triple", - "unlikely", - "updates", - "vietnam", - "viewed", - "affair", - "agenda", - "bat", - "bow", - "calendar", - "cape", - "collective", - "conversations", - "cooperation", - "craft", - "darkness", - "deeper", - "devil", - "edit", - "enable", - "equity", - "estimates", - "failing", - "finishing", - "fortune", - "goodbye", - "graham", - "hardware", - "hillary", - "hurts", - "intellectual", - "invite", - "involvement", - "kentucky", - "madrid", - "mi", - "nuts", - "oregon", - "partly", - "petition", - "phrase", - "physically", - "protecting", - "racial", - "rated", - "regime", - "ruled", - "sa", - "sauce", - "seal", - "separated", - "shield", - "similarly", - "slide", - "stem", - "summit", - "talented", - "throat", - "tiger", - "touched", - "toy", - "visits", - "wisdom", - "accounting", - "alien", - "attacking", - "awkward", - "beast", - "beef", - "candy", - "carrier", - "celebration", - "celebrity", - "certificate", - "cited", - "clay", - "coaching", - "constructed", - "dated", - "dec", - "default", - "delhi", - "derived", - "dialogue", - "disabled", - "distinct", - "drag", - "educated", - "eligible", - "estimate", - "execution", - "existed", - "fifty", - "followers", - "fool", - "framework", - "franchise", - "funded", - "furniture", - "guaranteed", - "integrated", - "intelligent", - "interaction", - "jet", - "lifestyle", - "lighting", - "lisa", - "loop", - "mall", - "mp", - "overseas", - "performances", - "polish", - "recommendations", - "recover", - "regarded", - "relax", - "reliable", - "rely", - "remarkable", - "responses", - "ruling", - "sacrifice", - "se", - "sole", - "stopping", - "strategies", - "succeed", - "tale", - "timing", - "ton", - "witnesses", - "wore", - "worship", - "worthy", - "acted", - "alarm", - "bass", - "bloody", - "breathing", - "butt", - "characteristics", - "cnn", - "collaboration", - "con", - "consideration", - "creates", - "crucial", - "dependent", - "discussions", - "dual", - "edinburgh", - "equipped", - "expanded", - "experimental", - "feeding", - "filter", - "galaxy", - "globe", - "grades", - "greece", - "gulf", - "highlights", - "hoped", - "intent", - "involve", - "judgment", - "kennedy", - "knight", - "larry", - "lmao", - "logo", - "malaysia", - "mature", - "moore", - "nazi", - "netherlands", - "peaceful", - "philip", - "photographer", - "pin", - "prevention", - "printing", - "promoting", - "publicly", - "pump", - "repeated", - "replied", - "requests", - "revenge", - "satisfied", - "slip", - "spare", - "specialist", - "stranger", - "submit", - "surprising", - "tap", - "thompson", - "threats", - "tourism", - "turkish", - "volunteer", - "acceptable", - "attempting", - "auction", - "challenging", - "churches", - "cleveland", - "cm", - "composed", - "concentration", - "copper", - "corp", - "counting", - "dawn", - "dispute", - "earnings", - "editing", - "executed", - "firing", - "fits", - "frequent", - "gathered", - "hilarious", - "huh", - "ignored", - "improvements", - "investments", - "margin", - "maryland", - "mechanism", - "moderate", - "murray", - "oklahoma", - "opera", - "overcome", - "parallel", - "passage", - "pit", - "psychological", - "quest", - "radiation", - "shocked", - "sized", - "stroke", - "stunning", - "tokyo", - "topics", - "traveling", - "treating", - "tune", - "utility", - "vessel", - "weed", - "wherever", - "peoples", - "acquisition", - "addressed", - "alabama", - "alice", - "anime", - "announce", - "autumn", - "backed", - "barry", - "bold", - "breathe", - "cameron", - "choosing", - "classical", - "classified", - "clip", - "coaches", - "concepts", - "conspiracy", - "controversy", - "convince", - "cooper", - "disappeared", - "eh", - "encounter", - "equality", - "exam", - "examination", - "fails", - "federation", - "fi", - "fiscal", - "guardian", - "hd", - "homeless", - "instrument", - "intervention", - "jerry", - "lover", - "mainstream", - "menu", - "missouri", - "mounted", - "mutual", - "nope", - "occasions", - "offense", - "oral", - "panic", - "pays", - "pursue", - "realise", - "refugees", - "removing", - "requirement", - "responded", - "rip", - "ruined", - "scope", - "segment", - "spectrum", - "ted", - "terror", - "uh", - "va", - "venture", - "virtually", - "waited", - "warren", - "worn", - "yea", - "ac", - "accompanied", - "aimed", - "alpha", - "approaches", - "arguing", - "arrangement", - "beliefs", - "boundaries", - "brick", - "brooklyn", - "considerable", - "conventional", - "danny", - "des", - "designated", - "dvd", - "emperor", - "enormous", - "errors", - "focusing", - "forgive", - "garage", - "gathering", - "guidelines", - "handled", - "hosted", - "indonesia", - "inquiry", - "inspector", - "jumped", - "khan", - "li", - "lion", - "loaded", - "lonely", - "maintaining", - "measured", - "mercy", - "nevertheless", - "outer", - "oxygen", - "pipe", - "pissed", - "poem", - "powder", - "powered", - "promises", - "quotes", - "racism", - "ratings", - "recovered", - "refers", - "roy", - "rude", - "screw", - "seventh", - "shelter", - "signature", - "sooner", - "spider", - "stewart", - "suggesting", - "tracking", - "tribute", - "trigger", - "vary", - "venue", - "wages", - "ye", - "abc", - "abortion", - "accuracy", - "albert", - "applying", - "artificial", - "belongs", - "beneath", - "bitcoin", - "bullet", - "burns", - "carl", - "celebrated", - "consistently", - "conversion", - "copyright", - "counties", - "democrat", - "deposit", - "destination", - "dirt", - "diverse", - "divine", - "emails", - "er", - "exclusively", - "export", - "fastest", - "formerly", - "functional", - "gather", - "grandfather", - "habit", - "harvard", - "indicates", - "isolated", - "jealous", - "knocked", - "landed", - "laughed", - "laura", - "lazy", - "mama", - "marshall", - "mitchell", - "modified", - "municipal", - "naval", - "nelson", - "neutral", - "noble", - "oldest", - "pat", - "picks", - "poland", - "popularity", - "pussy", - "reactions", - "relate", - "robot", - "sacred", - "securities", - "shoe", - "spy", - "steven", - "suggestions", - "supplied", - "susan", - "suspension", - "terrorism", - "terry", - "toxic", - "treasury", - "tunnel", - "upgrade", - "warrant", - "wider", - "wound", - "worlds", - "aaron", - "actively", - "afghanistan", - "ai", - "applies", - "arrangements", - "asset", - "assuming", - "backing", - "baker", - "barcelona", - "blessed", - "brazilian", - "brush", - "burden", - "campbell", - "casual", - "certified", - "charter", - "chef", - "civilian", - "coalition", - "cock", - "complain", - "complaints", - "controversial", - "denver", - "describing", - "differently", - "discipline", - "discussing", - "disgusting", - "dj", - "dominant", - "earning", - "emma", - "essay", - "expense", - "explaining", - "furthermore", - "graphic", - "greg", - "healing", - "hiring", - "implemented", - "instantly", - "invasion", - "jacob", - "jumping", - "laptop", - "legendary", - "leo", - "maker", - "margaret", - "mario", - "outdoor", - "palm", - "parker", - "photograph", - "pole", - "pub", - "queensland", - "ranks", - "reception", - "recipe", - "regulatory", - "reviewed", - "rubber", - "secured", - "serial", - "settings", - "snake", - "sponsored", - "stealing", - "strict", - "subsequently", - "substance", - "suggestion", - "switzerland", - "syndrome", - "tasks", - "ultra", - "unexpected", - "usage", - "utah", - "accidentally", - "affordable", - "amateur", - "argentina", - "baltimore", - "batman", - "bearing", - "bin", - "biology", - "bobby", - "briefly", - "canal", - "cancelled", - "charlotte", - "cheaper", - "christopher", - "climb", - "com", - "competing", - "completion", - "cruise", - "custody", - "delete", - "demonstrated", - "departure", - "dig", - "employer", - "explosion", - "fever", - "fluid", - "folk", - "generate", - "gop", - "handsome", - "ho", - "imagination", - "integration", - "integrity", - "interpretation", - "leaf", - "legitimate", - "lightning", - "loads", - "longest", - "magical", - "motivation", - "nasty", - "oliver", - "outfit", - "pension", - "permit", - "perry", - "pleasant", - "portrait", - "productive", - "reminds", - "ron", - "safely", - "shorter", - "slight", - "socialist", - "streaming", - "sue", - "targeted", - "tension", - "thailand", - "theories", - "touching", - "transactions", - "twist", - "ugh", - "unemployment", - "unity", - "useless", - "woke", - "wtf", - "abilities", - "advocate", - "aims", - "arc", - "backup", - "beaten", - "bitter", - "blown", - "branches", - "cia", - "clever", - "clinic", - "closest", - "continuous", - "converted", - "correctly", - "creator", - "criteria", - "declined", - "detective", - "difficulties", - "disability", - "dish", - "douglas", - "du", - "duck", - "egyptian", - "ep", - "evaluation", - "excess", - "farming", - "fence", - "fifa", - "forcing", - "forming", - "franklin", - "fred", - "gradually", - "gravity", - "habits", - "highlight", - "holder", - "hood", - "hung", - "identical", - "imperial", - "jose", - "ken", - "legally", - "lied", - "listened", - "manufacturer", - "meters", - "nail", - "nasa", - "negotiations", - "nonsense", - "ontario", - "operational", - "orleans", - "owns", - "phoenix", - "playoffs", - "poet", - "quoted", - "relating", - "repeatedly", - "robinson", - "rolled", - "scientist", - "sink", - "skip", - "slavery", - "snap", - "sorts", - "stole", - "swedish", - "swim", - "swiss", - "tennessee", - "transaction", - "transformation", - "veteran", - "vulnerable", - "wealthy", - "additionally", - "amy", - "attract", - "barbara", - "beta", - "blowing", - "bored", - "bronze", - "bug", - "caring", - "catching", - "cave", - "cheating", - "chronic", - "cleared", - "communicate", - "convicted", - "dealt", - "delayed", - "demonstrate", - "depend", - "developer", - "diagnosis", - "dismissed", - "distinguished", - "dose", - "eighth", - "fa", - "flesh", - "flip", - "forty", - "generous", - "hated", - "hr", - "implement", - "incorporated", - "influenced", - "jerusalem", - "kidding", - "laser", - "loyal", - "marijuana", - "md", - "mentally", - "occupation", - "opponent", - "patch", - "patience", - "pic", - "pointing", - "pollution", - "precisely", - "prisoner", - "privilege", - "proposals", - "protests", - "punk", - "radar", - "regards", - "resist", - "solely", - "stepped", - "striking", - "th", - "tourist", - "transit", - "trusted", - "villa", - "volumes", - "wireless", - "wondered", - "wrap", - "wright", - "yoga", - "adopt", - "alaska", - "anytime", - "bacteria", - "beside", - "blade", - "boot", - "bulk", - "cargo", - "census", - "christianity", - "coastal", - "coin", - "colored", - "commentary", - "confusion", - "congressional", - "corn", - "cried", - "dealer", - "deemed", - "destiny", - "distant", - "electronics", - "emerging", - "emotion", - "emphasis", - "ethics", - "excitement", - "exploration", - "filling", - "filming", - "glasgow", - "graphics", - "helen", - "humor", - "insight", - "invested", - "jennifer", - "lit", - "louisiana", - "mar", - "marie", - "meals", - "mississippi", - "nerve", - "netflix", - "nightmare", - "overnight", - "partially", - "participating", - "pie", - "poster", - "pr", - "practically", - "preserve", - "produces", - "qualify", - "raid", - "ram", - "ranging", - "ranking", - "receives", - "respective", - "restricted", - "samuel", - "sandy", - "scenario", - "sheep", - "situated", - "sony", - "spotted", - "spreading", - "stanley", - "sustainable", - "sustained", - "taxi", - "themes", - "threatening", - "tobacco", - "trace", - "trapped", - "turner", - "uncomfortable", - "wasted", - "weakness", - "widespread", - "xbox", - "shell", - "shed", - "accepting", - "accessible", - "acknowledge", - "advised", - "advisory", - "animation", - "assignment", - "balanced", - "bare", - "basement", - "birmingham", - "cancel", - "carpet", - "ceiling", - "cherry", - "chill", - "classification", - "clue", - "cole", - "collapse", - "collecting", - "compound", - "conscious", - "consecutive", - "costume", - "craig", - "deleted", - "devoted", - "displayed", - "dominated", - "earl", - "endless", - "escaped", - "examine", - "floating", - "garbage", - "gospel", - "grain", - "grid", - "grows", - "heating", - "identification", - "lap", - "liver", - "metro", - "metropolitan", - "mixture", - "nominated", - "oak", - "parliamentary", - "patent", - "perception", - "physician", - "portland", - "proceed", - "proceedings", - "reserved", - "restore", - "rifle", - "rival", - "runner", - "sadly", - "sc", - "shoulders", - "significance", - "sits", - "sizes", - "slept", - "soap", - "spray", - "stored", - "stressed", - "structural", - "suite", - "tbh", - "tropical", - "ukrainian", - "unnecessary", - "verse", - "victor", - "vintage", - "warned", - "watson", - "acres", - "adapted", - "adoption", - "anonymous", - "antonio", - "approaching", - "artistic", - "attendance", - "aviation", - "barrel", - "beloved", - "bless", - "boxing", - "celebrating", - "charging", - "chemicals", - "chuck", - "cinema", - "colonial", - "compliance", - "contrary", - "controlling", - "couch", - "crush", - "dam", - "decrease", - "defeated", - "diabetes", - "dressing", - "expanding", - "fears", - "genre", - "gentle", - "grammar", - "hiv", - "idk", - "illustrated", - "invented", - "jake", - "jam", - "jessica", - "keith", - "kent", - "layers", - "lease", - "licensed", - "loyalty", - "madison", - "magnetic", - "metres", - "mysterious", - "notion", - "partial", - "piss", - "placing", - "propaganda", - "rat", - "reflection", - "reminded", - "resolve", - "revolutionary", - "scandal", - "shine", - "si", - "simultaneously", - "substitute", - "surveillance", - "tactics", - "testimony", - "thai", - "treasure", - "trophy", - "tweet", - "tyler", - "underlying", - "unfair", - "von", - "wa", - "acceptance", - "accidents", - "affects", - "annually", - "apologize", - "appreciated", - "approached", - "arriving", - "ash", - "aunt", - "benjamin", - "blake", - "bubble", - "casino", - "connecting", - "counsel", - "creature", - "deadly", - "decides", - "der", - "desired", - "determination", - "embrace", - "emerged", - "exhibit", - "flew", - "gentleman", - "gm", - "hammer", - "hitler", - "hosting", - "icon", - "imposed", - "indigenous", - "infinite", - "installation", - "inter", - "interactions", - "introducing", - "iranian", - "kicking", - "laying", - "legislature", - "liability", - "maine", - "manhattan", - "marathon", - "marvel", - "moreover", - "neil", - "parade", - "paradise", - "perceived", - "politician", - "preliminary", - "premiere", - "presidency", - "reaches", - "react", - "realistic", - "remarks", - "retain", - "rocky", - "satisfaction", - "scratch", - "shade", - "sheets", - "sheriff", - "shy", - "sometime", - "sporting", - "strictly", - "sunshine", - "thou", - "tier", - "tommy", - "travelling", - "vancouver", - "vocal", - "warrior", - "worries", - "yield", - "accomplished", - "admission", - "aka", - "appearing", - "bacon", - "barrier", - "belgium", - "believing", - "burst", - "casting", - "cattle", - "cc", - "classroom", - "colours", - "compromise", - "convenient", - "costa", - "crop", - "earthquake", - "elderly", - "eliminate", - "embarrassing", - "farmer", - "finest", - "harbor", - "harvey", - "hates", - "incidents", - "inform", - "ion", - "jeremy", - "lesbian", - "lt", - "mathematics", - "medication", - "minded", - "morris", - "norway", - "par", - "podcast", - "portfolio", - "productivity", - "promoted", - "protocol", - "quietly", - "rachel", - "replacing", - "responsibilities", - "salad", - "scholarship", - "screening", - "sends", - "smiling", - "soup", - "southeast", - "stake", - "stating", - "strain", - "suspected", - "swift", - "tackle", - "timeline", - "torture", - "traded", - "translated", - "tricks", - "urgent", - "vegetables", - "vertical", - "violation", - "wallet", - "welsh", - "workshop", - "wrapped", - "aboard", - "abstract", - "accent", - "addiction", - "awake", - "beam", - "binding", - "blank", - "buffalo", - "conviction", - "corrupt", - "cow", - "curve", - "depressed", - "deserved", - "dining", - "disorders", - "duration", - "eddie", - "emily", - "encouraging", - "fifteen", - "flows", - "ga", - "graduated", - "grandmother", - "harsh", - "heights", - "horn", - "hurry", - "immune", - "inflation", - "ingredients", - "inspection", - "install", - "instruction", - "intensity", - "inventory", - "investigated", - "invitation", - "judicial", - "justify", - "kyle", - "lean", - "lecture", - "libraries", - "logical", - "mason", - "meaningful", - "migration", - "missile", - "motivated", - "muscles", - "nancy", - "norman", - "northwest", - "organ", - "patrol", - "pearl", - "peer", - "pepper", - "pig", - "pile", - "plug", - "provision" - ], - "keyboard_adjacency": { - "q": [ - "a", - "w", - "s" - ], - "w": [ - "s", - "a", - "q", - "e", - "d" - ], - "e": [ - "s", - "f", - "w", - "r", - "d" - ], - "r": [ - "g", - "f", - "e", - "d", - "t" - ], - "t": [ - "g", - "h", - "f", - "r", - "y" - ], - "y": [ - "g", - "h", - "u", - "j", - "t" - ], - "u": [ - "k", - "h", - "i", - "j", - "y" - ], - "i": [ - "o", - "l", - "k", - "u", - "j" - ], - "o": [ - "i", - "p", - "l", - "k" - ], - "p": [ - "o", - "l" - ], - "a": [ - "x", - "z", - "q", - "w", - "s" - ], - "s": [ - "x", - "a", - "q", - "z", - "e", - "w", - "c", - "d" - ], - "d": [ - "x", - "f", - "v", - "e", - "w", - "r", - "c", - "s" - ], - "f": [ - "b", - "g", - "v", - "e", - "r", - "c", - "d", - "t" - ], - "g": [ - "h", - "f", - "v", - "r", - "y", - "n", - "b", - "t" - ], - "h": [ - "g", - "u", - "m", - "j", - "y", - "n", - "b", - "t" - ], - "j": [ - "k", - "h", - "u", - "i", - "y", - "n", - "m" - ], - "k": [ - "o", - "l", - "u", - "i", - "j", - "m" - ], - "l": [ - "i", - "o", - "k", - "p" - ], - "z": [ - "x", - "a", - "s" - ], - "x": [ - "s", - "z", - "a", - "c", - "d" - ], - "c": [ - "s", - "x", - "f", - "v", - "d" - ], - "v": [ - "b", - "g", - "f", - "c", - "d" - ], - "b": [ - "g", - "h", - "f", - "v", - "n" - ], - "n": [ - "g", - "h", - "j", - "b", - "m" - ], - "m": [ - "j", - "n", - "k", - "h" - ] - }, - "min_frequency_by_length": { - "2": 1e-05, - "3": 1e-06, - "4": 1e-07, - "5": 5e-08, - "6": 1e-08, - "7": 1e-08, - "8": 5e-09, - "9": 1e-09, - "10+": 5e-10 - } +{ + "metadata": { + "total_words": 150252, + "common_words_count": 7002, + "length_distribution": { + "3": 7617, + "2": 671, + "4": 12175, + "5": 17661, + "6": 21921, + "7": 22446, + "9": 16363, + "10": 12123, + "8": 20185, + "11": 8021, + "13": 3036, + "12": 4959, + "14": 1546, + "15": 816, + "16": 380, + "18": 66, + "17": 203, + "19": 43, + "20": 20 + }, + "frequency_thresholds": { + "very_common": 1e-05, + "common": 1e-06, + "uncommon": 1e-07, + "rare": 1e-08 + } + }, + "word_frequencies": { + "the": 0.0537, + "to": 0.0269, + "and": 0.0257, + "of": 0.0251, + "in": 6.46e-08, + "is": 1.29e-06, + "for": 0.0102, + "that": 0.0102, + "you": 0.00955, + "it": 2.63e-08, + "on": 0.00813, + "with": 0.00708, + "this": 0.00661, + "was": 1.07e-07, + "be": 0.00617, + "as": 3.09e-06, + "are": 0.0055, + "have": 0.00513, + "at": 0.00501, + "he": 0.0049, + "not": 0.0049, + "by": 0.00457, + "but": 0.00427, + "from": 0.00427, + "my": 0.00372, + "or": 2.45e-08, + "we": 0.00347, + "an": 0.00339, + "your": 1.95e-07, + "all": 0.00331, + "so": 0.00331, + "his": 4.37e-08, + "they": 0.00316, + "me": 0.00302, + "if": 1.51e-08, + "one": 0.00295, + "can": 0.00288, + "will": 0.00282, + "just": 0.00269, + "like": 0.00257, + "about": 0.00251, + "up": 0.00245, + "out": 0.0024, + "what": 0.0024, + "has": 1.29e-07, + "when": 0.00234, + "more": 0.00229, + "do": 0.00224, + "no": 0.00224, + "were": 0.000251, + "who": 0.00219, + "had": 0.00214, + "its": 8.51e-08, + "their": 0.00214, + "there": 6.03e-08, + "her": 0.002, + "which": 0.002, + "time": 0.00195, + "get": 0.00191, + "been": 0.00186, + "would": 0.00186, + "she": 0.00182, + "new": 0.00178, + "people": 0.00178, + "how": 0.00174, + "dont": 2.29e-08, + "some": 0.00158, + "also": 0.00155, + "them": 0.00155, + "now": 0.00151, + "other": 0.00145, + "im": 4.9e-05, + "our": 0.00138, + "than": 0.00135, + "good": 0.00132, + "only": 0.00132, + "after": 0.00129, + "first": 0.00129, + "him": 0.00129, + "into": 0.00129, + "know": 0.00126, + "see": 0.00126, + "two": 0.00126, + "make": 0.0012, + "over": 0.0012, + "think": 0.0012, + "any": 0.00117, + "then": 0.00117, + "could": 0.00115, + "back": 0.0011, + "these": 0.0011, + "us": 3.39e-07, + "want": 2.57e-07, + "because": 0.00107, + "go": 0.00107, + "well": 7.76e-05, + "said": 0.00102, + "way": 0.00102, + "most": 0.001, + "much": 0.001, + "very": 0.001, + "where": 0.001, + "even": 0.000977, + "should": 0.000977, + "may": 0.000955, + "here": 0.000933, + "need": 0.000933, + "really": 0.000933, + "did": 0.000912, + "right": 0.000912, + "work": 0.000912, + "year": 0.000912, + "years": 2.4e-05, + "being": 0.000891, + "day": 0.000891, + "too": 0.000891, + "going": 0.000871, + "before": 0.000851, + "off": 0.000851, + "why": 0.000851, + "made": 0.000832, + "still": 0.000832, + "take": 0.000832, + "got": 0.000813, + "many": 0.000813, + "never": 0.000813, + "those": 0.000794, + "life": 0.000776, + "say": 0.000776, + "world": 0.000776, + "down": 0.000759, + "great": 0.000759, + "through": 0.000741, + "youre": 1.15e-07, + "last": 0.000724, + "thats": 3.31e-05, + "while": 0.000724, + "best": 0.000692, + "such": 0.000692, + "love": 0.000661, + "man": 0.000661, + "home": 0.000646, + "long": 0.000646, + "look": 0.000646, + "something": 0.000646, + "use": 0.000646, + "cant": 2.24e-05, + "same": 0.000631, + "used": 0.000631, + "both": 0.000617, + "every": 0.000617, + "am": 1.32e-08, + "come": 0.000603, + "part": 0.000603, + "state": 0.000603, + "three": 0.000603, + "around": 0.000589, + "between": 0.000589, + "always": 1.48e-08, + "better": 0.000575, + "find": 0.000575, + "help": 0.000562, + "high": 0.000562, + "little": 0.000562, + "old": 0.000562, + "since": 0.000562, + "another": 0.00055, + "does": 2.14e-07, + "own": 0.00055, + "things": 6.76e-07, + "under": 0.000537, + "during": 0.000525, + "game": 0.000525, + "ive": 1.05e-05, + "thing": 0.000525, + "give": 0.000513, + "house": 0.000513, + "place": 0.000513, + "school": 0.000513, + "again": 0.000501, + "next": 0.000501, + "each": 0.00049, + "mr": 0.00049, + "without": 0.00049, + "against": 0.000479, + "didnt": 9.77e-08, + "end": 0.000479, + "found": 0.000479, + "must": 0.000479, + "show": 0.000479, + "big": 0.000468, + "feel": 0.000468, + "sure": 0.000468, + "team": 0.000468, + "ever": 0.000457, + "family": 0.000457, + "keep": 0.000457, + "might": 0.000457, + "please": 0.000457, + "put": 0.000457, + "money": 0.000437, + "free": 0.000427, + "second": 0.000427, + "someone": 0.000427, + "away": 0.000417, + "left": 0.000417, + "number": 0.000417, + "city": 0.000407, + "days": 5.89e-06, + "lot": 0.000407, + "name": 0.000407, + "night": 0.000407, + "play": 0.000407, + "until": 0.000407, + "company": 0.000398, + "doing": 0.000398, + "few": 0.000398, + "hes": 9.12e-06, + "let": 0.000398, + "real": 0.000398, + "called": 0.000389, + "different": 0.000389, + "having": 0.000389, + "set": 0.000389, + "thought": 0.000389, + "done": 0.00038, + "however": 0.00038, + "getting": 0.000372, + "god": 0.000372, + "government": 0.000372, + "group": 0.000372, + "looking": 0.000372, + "public": 0.000372, + "top": 0.000372, + "women": 0.000372, + "business": 0.000363, + "care": 0.000363, + "start": 0.000363, + "system": 0.000363, + "times": 1.58e-06, + "week": 0.000363, + "already": 0.000355, + "anything": 0.000355, + "case": 0.000355, + "nothing": 0.000355, + "person": 0.000355, + "today": 0.000355, + "change": 1.26e-07, + "enough": 0.000347, + "everything": 0.000347, + "full": 0.000347, + "live": 0.000347, + "making": 0.000347, + "point": 0.000347, + "read": 0.000347, + "theres": 7.94e-06, + "told": 0.000347, + "yet": 0.000347, + "bad": 0.000339, + "doesnt": 5.75e-08, + "four": 0.000339, + "hard": 0.000339, + "mean": 0.000339, + "once": 0.000339, + "support": 0.000339, + "tell": 0.000339, + "including": 0.000331, + "music": 0.000331, + "power": 0.000331, + "seen": 0.000331, + "states": 1.12e-05, + "stop": 0.000331, + "water": 0.000331, + "based": 0.000324, + "believe": 0.000324, + "call": 0.000324, + "head": 0.000324, + "men": 0.000324, + "national": 0.000324, + "small": 0.000324, + "took": 0.000324, + "white": 0.000324, + "came": 0.000316, + "far": 0.000316, + "job": 0.000316, + "side": 0.000316, + "though": 0.000316, + "try": 0.000316, + "went": 0.000316, + "yes": 9.55e-08, + "actually": 0.000309, + "american": 0.000309, + "later": 0.000309, + "less": 2.04e-08, + "line": 0.000309, + "order": 0.000309, + "party": 0.000309, + "run": 0.000309, + "says": 1.7e-07, + "service": 0.000309, + "country": 0.000302, + "open": 0.000302, + "season": 0.000302, + "shit": 0.000302, + "thank": 0.000302, + "children": 0.000295, + "everyone": 0.000295, + "general": 0.000295, + "theyre": 3.09e-06, + "trying": 0.000295, + "united": 0.000295, + "using": 0.000295, + "area": 0.000288, + "black": 0.000288, + "following": 0.000288, + "law": 0.000288, + "makes": 0.000288, + "together": 0.000288, + "war": 0.000288, + "whole": 0.000288, + "car": 0.000282, + "face": 0.000282, + "five": 0.000282, + "kind": 0.000282, + "maybe": 0.000282, + "per": 0.000282, + "president": 0.000282, + "story": 0.000282, + "working": 0.000282, + "course": 0.000275, + "games": 6.76e-06, + "health": 0.000275, + "hope": 0.000275, + "important": 0.000275, + "least": 0.000275, + "means": 0.000275, + "news": 4.79e-08, + "within": 0.000275, + "able": 0.000269, + "book": 0.000269, + "early": 0.000269, + "friends": 8.91e-06, + "ill": 5.25e-05, + "information": 0.000269, + "local": 0.000269, + "oh": 0.000269, + "post": 0.000269, + "thanks": 9.55e-08, + "video": 0.000269, + "young": 0.000269, + "ago": 0.000263, + "others": 8.71e-06, + "social": 0.000263, + "talk": 0.000263, + "court": 0.000257, + "fact": 0.000257, + "given": 0.000257, + "guys": 7.08e-06, + "half": 0.000257, + "hand": 0.000257, + "isnt": 7.76e-06, + "level": 0.000257, + "mind": 0.000257, + "often": 0.000257, + "single": 0.000257, + "become": 0.000251, + "body": 0.000251, + "coming": 0.000251, + "control": 0.000251, + "death": 0.000251, + "food": 0.000251, + "guy": 0.000251, + "hours": 7.41e-07, + "office": 0.000251, + "pay": 0.000251, + "problem": 0.000251, + "south": 0.000251, + "true": 0.000251, + "almost": 0.000245, + "fuck": 0.000245, + "history": 0.000245, + "known": 0.000245, + "large": 0.000245, + "lost": 0.000245, + "research": 0.000245, + "room": 0.000245, + "several": 0.000245, + "started": 0.000245, + "taking": 0.000245, + "university": 0.000245, + "win": 0.000245, + "wrong": 0.000245, + "along": 0.00024, + "anyone": 0.00024, + "else": 0.00024, + "girl": 0.00024, + "john": 0.00024, + "matter": 0.00024, + "pretty": 0.00024, + "remember": 0.00024, + "air": 0.000234, + "bit": 0.000234, + "friend": 0.000234, + "hit": 0.000234, + "needs": 6.61e-08, + "nice": 0.000234, + "playing": 0.000234, + "probably": 0.000234, + "saying": 0.000234, + "understand": 0.000234, + "yeah": 0.000234, + "york": 0.000234, + "class": 0.000229, + "close": 0.000229, + "comes": 2.51e-08, + "id": 4.07e-05, + "idea": 0.000229, + "international": 0.000229, + "looks": 1.05e-07, + "past": 0.000229, + "possible": 0.000229, + "wanted": 0.000229, + "cause": 0.000224, + "due": 0.000224, + "happy": 0.000224, + "human": 0.000224, + "members": 1.2e-06, + "months": 3.47e-06, + "move": 0.000224, + "question": 0.000224, + "series": 0.000224, + "wait": 0.000224, + "woman": 0.000224, + "ask": 0.000219, + "community": 0.000219, + "data": 0.000219, + "late": 0.000219, + "leave": 0.000219, + "north": 0.000219, + "saw": 0.000219, + "special": 0.000219, + "watch": 0.000219, + "wont": 1.23e-05, + "either": 0.000214, + "fucking": 0.000214, + "future": 0.000214, + "light": 0.000214, + "low": 0.000214, + "million": 0.000214, + "morning": 0.000214, + "police": 0.000214, + "short": 0.000214, + "stay": 0.000214, + "taken": 0.000214, + "age": 0.000209, + "buy": 0.000209, + "deal": 0.000209, + "rather": 0.000209, + "reason": 0.000209, + "red": 0.000209, + "report": 0.000209, + "soon": 0.000209, + "third": 0.000209, + "turn": 0.000209, + "whether": 0.000209, + "among": 0.000204, + "check": 0.000204, + "development": 0.000204, + "form": 0.000204, + "further": 0.000204, + "heart": 0.000204, + "minutes": 2.57e-07, + "myself": 0.000204, + "services": 6.92e-07, + "yourself": 0.000204, + "act": 0.0002, + "although": 0.0002, + "asked": 0.0002, + "child": 0.0002, + "fire": 0.0002, + "fun": 0.0002, + "living": 0.0002, + "major": 0.0002, + "media": 0.0002, + "phone": 0.0002, + "players": 3.89e-06, + "art": 0.000195, + "behind": 0.000195, + "building": 0.000195, + "easy": 0.000195, + "gonna": 0.000195, + "market": 0.000195, + "near": 0.000195, + "non": 0.000195, + "plan": 0.000195, + "political": 0.000195, + "quite": 0.000195, + "six": 0.000195, + "talking": 0.000195, + "west": 0.000195, + "works": 5.75e-07, + "according": 0.000191, + "available": 0.000191, + "education": 0.000191, + "final": 0.000191, + "former": 0.000191, + "front": 0.000191, + "kids": 4.07e-06, + "list": 0.000191, + "ready": 0.000191, + "sometimes": 2.14e-08, + "son": 0.000191, + "street": 0.000191, + "wasnt": 2.45e-08, + "bring": 0.000186, + "college": 0.000186, + "current": 0.000186, + "example": 0.000186, + "experience": 0.000186, + "heard": 0.000186, + "london": 0.000186, + "meet": 0.000186, + "program": 0.000186, + "type": 0.000186, + "baby": 0.000182, + "chance": 0.000182, + "father": 0.000182, + "march": 0.000182, + "process": 0.000182, + "shes": 3.89e-06, + "song": 0.000182, + "study": 0.000182, + "word": 0.000182, + "across": 0.000178, + "action": 0.000178, + "clear": 0.000178, + "gave": 0.000178, + "gets": 3.98e-07, + "himself": 0.000178, + "month": 0.000178, + "outside": 0.000178, + "self": 0.000178, + "students": 2.09e-06, + "words": 3.02e-07, + "board": 0.000174, + "cost": 0.000174, + "cut": 0.000174, + "dr": 0.000174, + "field": 0.000174, + "held": 0.000174, + "instead": 0.000174, + "main": 0.000174, + "moment": 0.000174, + "mother": 0.000174, + "road": 0.000174, + "seems": 0.000174, + "thinking": 0.000174, + "town": 0.000174, + "wants": 2.29e-07, + "de": 0.00017, + "department": 0.00017, + "energy": 0.00017, + "fight": 0.00017, + "fine": 0.00017, + "force": 0.00017, + "hear": 0.00017, + "issue": 0.00017, + "played": 0.00017, + "points": 2.24e-07, + "price": 0.00017, + "re": 0.00017, + "rest": 0.00017, + "results": 0.00017, + "running": 0.00017, + "shows": 6.03e-06, + "space": 0.00017, + "summer": 0.00017, + "term": 0.00017, + "wife": 0.00017, + "america": 0.000166, + "beautiful": 0.000166, + "date": 0.000166, + "goes": 0.000166, + "killed": 0.000166, + "land": 0.000166, + "miss": 0.000166, + "project": 0.000166, + "sex": 0.000166, + "shot": 0.000166, + "site": 0.000166, + "strong": 0.000166, + "youll": 1.62e-06, + "account": 0.000162, + "co": 0.000162, + "especially": 0.000162, + "eyes": 3.47e-07, + "include": 0.000162, + "june": 0.000162, + "parents": 1.86e-06, + "period": 0.000162, + "position": 0.000162, + "record": 0.000162, + "similar": 0.000162, + "total": 0.000162, + "above": 0.000158, + "club": 0.000158, + "common": 0.000158, + "died": 0.000158, + "film": 0.000158, + "happened": 0.000158, + "knew": 0.000158, + "lead": 0.000158, + "likely": 0.000158, + "military": 0.000158, + "perfect": 0.000158, + "personal": 0.000158, + "security": 0.000158, + "share": 1.86e-08, + "st": 0.000158, + "tv": 0.000158, + "whats": 7.59e-06, + "won": 0.000158, + "april": 0.000155, + "center": 0.000155, + "county": 0.000155, + "couple": 0.000155, + "dead": 0.000155, + "english": 0.000155, + "happen": 0.000155, + "hold": 0.000155, + "industry": 0.000155, + "inside": 0.000155, + "issues": 1.51e-07, + "online": 0.000155, + "player": 0.000155, + "private": 0.000155, + "problems": 8.32e-08, + "return": 0.000155, + "rights": 3.8e-07, + "sense": 0.000155, + "star": 0.000155, + "test": 0.000155, + "view": 0.000155, + "weeks": 1.12e-05, + "break": 0.000151, + "british": 0.000151, + "companies": 0.000151, + "event": 0.000151, + "higher": 0.000151, + "hour": 0.000151, + "member": 0.000151, + "middle": 0.000151, + "needed": 0.000151, + "present": 0.000151, + "result": 0.000151, + "sorry": 0.000151, + "takes": 0.000151, + "training": 0.000151, + "wish": 0.000151, + "wouldnt": 6.76e-08, + "answer": 0.000148, + "boy": 0.000148, + "design": 0.000148, + "finally": 0.000148, + "girls": 9.12e-06, + "gold": 0.000148, + "gone": 0.000148, + "guess": 0.000148, + "interest": 0.000148, + "july": 0.000148, + "king": 0.000148, + "learn": 0.000148, + "policy": 0.000148, + "society": 0.000148, + "added": 0.000145, + "al": 0.000145, + "alone": 0.000145, + "average": 0.000145, + "bank": 0.000145, + "brought": 0.000145, + "certain": 0.000145, + "church": 0.000145, + "east": 0.000145, + "hands": 2.24e-07, + "hot": 0.000145, + "lets": 3.24e-05, + "longer": 0.000145, + "medical": 0.000145, + "movie": 0.000145, + "original": 0.000145, + "park": 0.000145, + "performance": 0.000145, + "press": 0.000145, + "received": 0.000145, + "role": 0.000145, + "sent": 0.000145, + "themselves": 0.000145, + "tried": 0.000145, + "worked": 0.000145, + "worth": 0.000145, + "areas": 2.4e-06, + "became": 0.000141, + "bill": 0.000141, + "books": 1.91e-06, + "cool": 0.000141, + "director": 0.000141, + "exactly": 0.000141, + "giving": 0.000141, + "ground": 0.000141, + "meeting": 0.000141, + "provide": 0.000141, + "questions": 8.71e-08, + "relationship": 0.000141, + "september": 0.000141, + "sound": 0.000141, + "source": 0.000141, + "usually": 0.000141, + "value": 0.000141, + "evidence": 0.000138, + "follow": 0.000138, + "lives": 1.45e-07, + "official": 0.000138, + "ok": 0.000138, + "production": 0.000138, + "rate": 0.000138, + "reading": 0.000138, + "round": 0.000138, + "save": 0.000138, + "stand": 0.000138, + "stuff": 0.000138, + "tax": 0.000138, + "whatever": 0.000138, + "amount": 0.000135, + "blue": 0.000135, + "countries": 0.000135, + "david": 0.000135, + "drive": 0.000135, + "eat": 0.000135, + "fall": 0.000135, + "fast": 0.000135, + "federal": 0.000135, + "feeling": 0.000135, + "felt": 0.000135, + "green": 0.000135, + "league": 0.000135, + "management": 0.000135, + "match": 0.000135, + "model": 0.000135, + "picture": 0.000135, + "size": 0.000135, + "step": 0.000135, + "trust": 0.000135, + "youve": 1.38e-06, + "central": 0.000132, + "changes": 5.89e-08, + "england": 0.000132, + "forward": 0.000132, + "groups": 7.59e-06, + "hey": 0.000132, + "key": 0.000132, + "mom": 0.000132, + "page": 0.000132, + "paid": 0.000132, + "range": 0.000132, + "review": 0.000132, + "science": 0.000132, + "trade": 0.000132, + "uk": 0.000132, + "upon": 0.000132, + "various": 0.000132, + "attention": 0.000129, + "brother": 0.000129, + "cannot": 0.000129, + "character": 0.000129, + "chief": 0.000129, + "cup": 0.000129, + "football": 0.000129, + "hate": 0.000129, + "havent": 2.04e-08, + "james": 1.38e-08, + "led": 0.000129, + "looked": 0.000129, + "lower": 0.000129, + "natural": 0.000129, + "october": 0.000129, + "property": 0.000129, + "quality": 0.000129, + "send": 0.000129, + "style": 0.000129, + "vote": 0.000129, + "amazing": 0.000126, + "august": 0.000126, + "blood": 0.000126, + "china": 0.000126, + "complete": 0.000126, + "dog": 0.000126, + "economic": 0.000126, + "hell": 3.47e-05, + "involved": 0.000126, + "itself": 0.000126, + "language": 0.000126, + "lord": 0.000126, + "november": 0.000126, + "oil": 0.000126, + "related": 0.000126, + "serious": 0.000126, + "stage": 0.000126, + "terms": 1.29e-07, + "title": 0.000126, + "add": 0.000123, + "article": 0.000123, + "attack": 0.000123, + "born": 0.000123, + "couldnt": 2.69e-06, + "damn": 0.000123, + "decided": 0.000123, + "decision": 0.000123, + "enjoy": 0.000123, + "entire": 0.000123, + "french": 0.000123, + "january": 0.000123, + "kill": 0.000123, + "met": 0.000123, + "perhaps": 0.000123, + "poor": 0.000123, + "release": 0.000123, + "situation": 0.000123, + "technology": 0.000123, + "turned": 0.000123, + "website": 0.000123, + "written": 0.000123, + "choice": 0.00012, + "code": 0.00012, + "considered": 0.00012, + "continue": 0.00012, + "council": 0.00012, + "cover": 0.00012, + "currently": 0.00012, + "door": 0.00012, + "election": 0.00012, + "european": 0.00012, + "events": 5.75e-07, + "financial": 0.00012, + "foreign": 0.00012, + "hair": 0.00012, + "increase": 0.00012, + "legal": 0.00012, + "lose": 0.00012, + "michael": 0.00012, + "pick": 0.00012, + "race": 0.00012, + "seem": 0.00012, + "seven": 0.00012, + "sign": 0.00012, + "simple": 0.00012, + "simply": 0.00012, + "staff": 0.00012, + "super": 0.00012, + "union": 0.00012, + "walk": 0.00012, + "washington": 0.00012, + "bed": 0.000117, + "began": 0.000117, + "built": 0.000117, + "career": 0.000117, + "changed": 0.000117, + "crazy": 0.000117, + "daily": 0.000117, + "daughter": 0.000117, + "december": 0.000117, + "die": 0.000117, + "difficult": 0.000117, + "figure": 0.000117, + "hospital": 0.000117, + "knows": 9.77e-08, + "loss": 0.000117, + "modern": 0.000117, + "ones": 2.45e-05, + "paper": 0.000117, + "parts": 1.23e-07, + "popular": 0.000117, + "published": 0.000117, + "safe": 0.000117, + "starting": 0.000117, + "systems": 2.19e-06, + "version": 0.000117, + "voice": 0.000117, + "whose": 0.000117, + "writing": 0.000117, + "army": 0.000115, + "australia": 0.000115, + "earth": 0.000115, + "forget": 0.000115, + "goal": 0.000115, + "huge": 0.000115, + "internet": 0.000115, + "listen": 0.000115, + "okay": 0.000115, + "practice": 0.000115, + "rules": 9.77e-08, + "sea": 0.000115, + "sir": 0.000115, + "success": 0.000115, + "towards": 0.000115, + "waiting": 0.000115, + "ways": 2.69e-07, + "access": 0.000112, + "arent": 1.62e-08, + "base": 0.000112, + "below": 0.000112, + "created": 0.000112, + "deep": 0.000112, + "followed": 0.000112, + "la": 0.000112, + "lol": 0.000112, + "mark": 0.000112, + "missing": 0.000112, + "offer": 0.000112, + "pass": 0.000112, + "professional": 0.000112, + "released": 0.000112, + "risk": 0.000112, + "schools": 6.92e-06, + "sleep": 0.000112, + "table": 0.000112, + "ten": 0.000112, + "truth": 0.000112, + "ball": 0.00011, + "box": 0.00011, + "build": 0.00011, + "card": 0.00011, + "cases": 1.74e-07, + "dark": 0.00011, + "district": 0.00011, + "europe": 0.00011, + "george": 0.00011, + "india": 0.00011, + "mine": 0.00011, + "minister": 0.00011, + "note": 0.00011, + "percent": 0.00011, + "piece": 0.00011, + "products": 4.17e-07, + "recent": 0.00011, + "seeing": 0.00011, + "straight": 0.00011, + "visit": 0.00011, + "wall": 0.00011, + "wanna": 0.00011, + "weve": 6.61e-07, + "wrote": 0.00011, + "allowed": 0.000107, + "boys": 5.25e-06, + "culture": 0.000107, + "etc": 0.000107, + "fans": 6.46e-07, + "february": 0.000107, + "gives": 0.000107, + "growth": 0.000107, + "included": 0.000107, + "married": 0.000107, + "officer": 0.000107, + "pain": 0.000107, + "paul": 0.000107, + "places": 1.51e-07, + "respect": 0.000107, + "response": 0.000107, + "river": 0.000107, + "rock": 0.000107, + "shall": 0.000107, + "speak": 0.000107, + "specific": 0.000107, + "standard": 0.000107, + "tonight": 0.000107, + "write": 0.000107, + "album": 0.000105, + "century": 0.000105, + "charge": 0.000105, + "cold": 0.000105, + "create": 0.000105, + "effect": 0.000105, + "eight": 0.000105, + "except": 0.000105, + "eye": 0.000105, + "funny": 0.000105, + "ii": 0.000105, + "limited": 0.000105, + "moving": 0.000105, + "network": 0.000105, + "peace": 0.000105, + "provided": 0.000105, + "recently": 0.000105, + "required": 0.000105, + "sales": 1.15e-07, + "spent": 0.000105, + "store": 0.000105, + "student": 0.000105, + "tomorrow": 0.000105, + "track": 0.000105, + "via": 0.000105, + "watching": 0.000105, + "weight": 0.000105, + "addition": 0.000102, + "ahead": 0.000102, + "allow": 0.000102, + "anti": 0.000102, + "association": 0.000102, + "beat": 0.000102, + "brown": 0.000102, + "capital": 0.000102, + "chinese": 0.000102, + "committee": 0.000102, + "conference": 0.000102, + "difference": 0.000102, + "double": 0.000102, + "expect": 0.000102, + "gas": 5.75e-08, + "island": 0.000102, + "moved": 0.000102, + "normal": 0.000102, + "plans": 4.37e-07, + "population": 0.000102, + "potential": 0.000102, + "pressure": 0.000102, + "radio": 0.000102, + "russian": 0.000102, + "station": 0.000102, + "text": 0.000102, + "treatment": 0.000102, + "western": 0.000102, + "ass": 1.78e-08, + "beginning": 0.0001, + "california": 0.0001, + "campaign": 0.0001, + "certainly": 0.0001, + "completely": 0.0001, + "content": 0.0001, + "credit": 0.0001, + "cross": 0.0001, + "described": 0.0001, + "despite": 0.0001, + "female": 0.0001, + "focus": 0.0001, + "hi": 0.0001, + "husband": 0.0001, + "ice": 0.0001, + "individual": 0.0001, + "interesting": 0.0001, + "join": 0.0001, + "kept": 0.0001, + "leading": 0.0001, + "loved": 0.0001, + "message": 0.0001, + "miles": 2.95e-08, + "nearly": 0.0001, + "particular": 0.0001, + "previous": 0.0001, + "quickly": 0.0001, + "region": 0.0001, + "reported": 0.0001, + "section": 0.0001, + "sort": 0.0001, + "speed": 0.0001, + "travel": 0.0001, + "consider": 9.77e-05, + "contact": 9.77e-05, + "drop": 9.77e-05, + "fair": 9.77e-05, + "feet": 9.77e-05, + "jesus": 9.77e-05, + "kid": 9.77e-05, + "link": 9.77e-05, + "positive": 9.77e-05, + "sale": 9.77e-05, + "throughout": 9.77e-05, + "tour": 9.77e-05, + "welcome": 9.77e-05, + "absolutely": 9.55e-05, + "additional": 9.55e-05, + "beyond": 9.55e-05, + "conditions": 9.55e-05, + "earlier": 9.55e-05, + "extra": 9.55e-05, + "forces": 8.32e-07, + "immediately": 9.55e-05, + "jobs": 3.98e-07, + "leaving": 9.55e-05, + "minute": 9.55e-05, + "nature": 9.55e-05, + "numbers": 1.23e-07, + "quick": 9.55e-05, + "sell": 9.55e-05, + "significant": 9.55e-05, + "studies": 9.55e-05, + "unless": 9.55e-05, + "winning": 9.55e-05, + "agree": 9.33e-05, + "canada": 9.33e-05, + "clean": 9.33e-05, + "computer": 9.33e-05, + "construction": 9.33e-05, + "episode": 9.33e-05, + "favorite": 9.33e-05, + "income": 9.33e-05, + "justice": 9.33e-05, + "levels": 9.33e-08, + "manager": 9.33e-05, + "movement": 9.33e-05, + "photo": 9.33e-05, + "posted": 9.33e-05, + "safety": 9.33e-05, + "san": 9.33e-05, + "scene": 9.33e-05, + "sold": 9.33e-05, + "sounds": 1.45e-07, + "spend": 9.33e-05, + "statement": 9.33e-05, + "sun": 9.33e-05, + "teams": 1.23e-05, + "ability": 9.12e-05, + "announced": 9.12e-05, + "asking": 9.12e-05, + "calling": 9.12e-05, + "coach": 9.12e-05, + "collection": 9.12e-05, + "continued": 9.12e-05, + "costs": 9.12e-05, + "definitely": 9.12e-05, + "designed": 9.12e-05, + "expected": 9.12e-05, + "friday": 9.12e-05, + "gun": 9.12e-05, + "happens": 9.12e-05, + "heavy": 9.12e-05, + "includes": 9.12e-05, + "knowledge": 9.12e-05, + "particularly": 9.12e-05, + "search": 9.12e-05, + "subject": 9.12e-05, + "train": 9.12e-05, + "wide": 9.12e-05, + "wow": 9.12e-05, + "author": 8.91e-05, + "centre": 8.91e-05, + "claim": 8.91e-05, + "dad": 8.91e-05, + "developed": 8.91e-05, + "fear": 8.91e-05, + "fit": 8.91e-05, + "generally": 8.91e-05, + "german": 8.91e-05, + "global": 8.91e-05, + "goals": 8.91e-05, + "gotta": 8.91e-05, + "hotel": 8.91e-05, + "interested": 8.91e-05, + "judge": 8.91e-05, + "lady": 8.91e-05, + "leader": 8.91e-05, + "letter": 8.91e-05, + "lines": 8.51e-07, + "material": 8.91e-05, + "named": 8.91e-05, + "nobody": 8.91e-05, + "opportunity": 8.91e-05, + "plus": 8.91e-05, + "pre": 8.91e-05, + "product": 8.91e-05, + "regular": 8.91e-05, + "secretary": 8.91e-05, + "sister": 8.91e-05, + "stories": 8.91e-05, + "unit": 8.91e-05, + "workers": 1.23e-06, + "annual": 8.71e-05, + "anymore": 8.71e-05, + "bar": 8.71e-05, + "battle": 8.71e-05, + "brain": 8.71e-05, + "contract": 8.71e-05, + "degree": 8.71e-05, + "families": 8.71e-05, + "features": 8.71e-05, + "finished": 8.71e-05, + "floor": 8.71e-05, + "france": 8.71e-05, + "growing": 8.71e-05, + "hurt": 8.71e-05, + "image": 8.71e-05, + "insurance": 8.71e-05, + "majority": 8.71e-05, + "meant": 2.45e-08, + "opening": 8.71e-05, + "opinion": 8.71e-05, + "physical": 8.71e-05, + "pro": 8.71e-05, + "reach": 8.71e-05, + "rule": 8.71e-05, + "seriously": 8.71e-05, + "sports": 5.75e-07, + "stupid": 8.71e-05, + "successful": 8.71e-05, + "active": 8.51e-05, + "administration": 8.51e-05, + "approach": 8.51e-05, + "australian": 8.51e-05, + "biggest": 8.51e-05, + "cancer": 8.51e-05, + "civil": 8.51e-05, + "dance": 8.51e-05, + "defense": 8.51e-05, + "direction": 8.51e-05, + "independent": 8.51e-05, + "master": 8.51e-05, + "none": 8.51e-05, + "reasons": 7.76e-08, + "russia": 8.51e-05, + "ship": 8.51e-05, + "stock": 8.51e-05, + "trump": 8.51e-05, + "weekend": 8.51e-05, + "wonder": 8.51e-05, + "worst": 8.51e-05, + "africa": 8.32e-05, + "awesome": 8.32e-05, + "band": 8.32e-05, + "beach": 8.32e-05, + "cash": 8.32e-05, + "clearly": 8.32e-05, + "commercial": 8.32e-05, + "compared": 8.32e-05, + "effort": 8.32e-05, + "ended": 8.32e-05, + "fan": 8.32e-05, + "fighting": 8.32e-05, + "imagine": 8.32e-05, + "impact": 8.32e-05, + "lack": 8.32e-05, + "latest": 8.32e-05, + "learning": 8.32e-05, + "multiple": 8.32e-05, + "older": 8.32e-05, + "operation": 8.32e-05, + "organization": 8.32e-05, + "passed": 8.32e-05, + "pictures": 1.95e-07, + "protect": 8.32e-05, + "secret": 8.32e-05, + "senior": 8.32e-05, + "spring": 8.32e-05, + "sunday": 8.32e-05, + "telling": 8.32e-05, + "wear": 8.32e-05, + "activities": 8.13e-05, + "address": 8.13e-05, + "analysis": 8.13e-05, + "anyway": 8.13e-05, + "bought": 8.13e-05, + "calls": 7.76e-08, + "choose": 8.13e-05, + "christmas": 8.13e-05, + "color": 8.13e-05, + "commission": 8.13e-05, + "competition": 8.13e-05, + "details": 8.13e-05, + "direct": 8.13e-05, + "dream": 8.13e-05, + "easily": 8.13e-05, + "finish": 8.13e-05, + "grand": 8.13e-05, + "heres": 1.51e-06, + "increased": 8.13e-05, + "indian": 8.13e-05, + "literally": 8.13e-05, + "luck": 8.13e-05, + "marriage": 8.13e-05, + "names": 9.55e-07, + "necessary": 8.13e-05, + "patients": 3.8e-06, + "resources": 8.13e-05, + "rich": 8.13e-05, + "skin": 8.13e-05, + "speaking": 8.13e-05, + "supposed": 8.13e-05, + "sweet": 8.13e-05, + "thus": 8.13e-05, + "touch": 8.13e-05, + "yesterday": 8.13e-05, + "caught": 7.94e-05, + "closed": 7.94e-05, + "congress": 7.94e-05, + "damage": 7.94e-05, + "directly": 7.94e-05, + "disease": 7.94e-05, + "doctor": 7.94e-05, + "doubt": 7.94e-05, + "drink": 7.94e-05, + "driving": 7.94e-05, + "established": 7.94e-05, + "facebook": 7.94e-05, + "feels": 7.94e-05, + "fish": 7.94e-05, + "gay": 7.94e-05, + "germany": 7.94e-05, + "glad": 7.94e-05, + "greater": 7.94e-05, + "grow": 7.94e-05, + "largest": 7.94e-05, + "machine": 7.94e-05, + "notice": 7.94e-05, + "overall": 7.94e-05, + "planning": 7.94e-05, + "professor": 7.94e-05, + "programs": 1.51e-06, + "records": 2.95e-07, + "reports": 4.9e-07, + "shown": 7.94e-05, + "sit": 7.94e-05, + "trip": 7.94e-05, + "associated": 7.76e-05, + "basic": 7.76e-05, + "captain": 7.76e-05, + "carry": 7.76e-05, + "cars": 3.09e-06, + "crime": 7.76e-05, + "effective": 7.76e-05, + "effects": 3.8e-08, + "explain": 7.76e-05, + "fully": 7.76e-05, + "highly": 7.76e-05, + "holding": 7.76e-05, + "japan": 7.76e-05, + "laws": 1.66e-06, + "male": 7.76e-05, + "mrs": 2.57e-08, + "parties": 7.76e-05, + "plant": 7.76e-05, + "reality": 7.76e-05, + "smith": 7.76e-05, + "spot": 7.76e-05, + "texas": 7.76e-05, + "winter": 7.76e-05, + "worse": 7.76e-05, + "advice": 7.59e-05, + "agreement": 7.59e-05, + "aint": 2.19e-06, + "award": 7.59e-05, + "block": 7.59e-05, + "broken": 7.59e-05, + "caused": 7.59e-05, + "challenge": 7.59e-05, + "characters": 2.82e-06, + "christian": 7.59e-05, + "comment": 7.59e-05, + "equipment": 7.59e-05, + "eventually": 7.59e-05, + "helped": 7.59e-05, + "holy": 7.59e-05, + "killing": 7.59e-05, + "lived": 7.59e-05, + "lots": 7.08e-07, + "nation": 7.59e-05, + "otherwise": 7.59e-05, + "peter": 7.59e-05, + "prices": 4.79e-07, + "primary": 7.59e-05, + "purpose": 7.59e-05, + "rates": 7.59e-05, + "responsible": 7.59e-05, + "shop": 7.59e-05, + "showing": 7.59e-05, + "sick": 7.59e-05, + "teacher": 7.59e-05, + "theory": 7.59e-05, + "uses": 7.59e-05, + "william": 7.59e-05, + "agency": 7.41e-05, + "avoid": 7.41e-05, + "camera": 7.41e-05, + "catch": 7.41e-05, + "cell": 7.41e-05, + "coast": 7.41e-05, + "comments": 7.41e-05, + "drug": 7.41e-05, + "economy": 7.41e-05, + "environment": 7.41e-05, + "executive": 7.41e-05, + "foot": 7.41e-05, + "hall": 7.41e-05, + "mass": 7.41e-05, + "meaning": 7.41e-05, + "mission": 7.41e-05, + "nine": 7.41e-05, + "officers": 1.74e-06, + "operations": 1.23e-07, + "politics": 7.41e-05, + "pop": 7.41e-05, + "produced": 7.41e-05, + "ran": 7.41e-05, + "saturday": 7.41e-05, + "status": 7.41e-05, + "therefore": 7.41e-05, + "trial": 7.41e-05, + "truly": 7.41e-05, + "weather": 7.41e-05, + "activity": 7.24e-05, + "app": 7.24e-05, + "application": 7.24e-05, + "claims": 7.24e-05, + "coffee": 7.24e-05, + "complex": 7.24e-05, + "condition": 7.24e-05, + "division": 7.24e-05, + "evening": 7.24e-05, + "flight": 7.24e-05, + "freedom": 7.24e-05, + "google": 7.24e-05, + "heat": 7.24e-05, + "highest": 7.24e-05, + "interview": 7.24e-05, + "library": 7.24e-05, + "located": 7.24e-05, + "location": 7.24e-05, + "murder": 7.24e-05, + "obama": 7.24e-05, + "offered": 7.24e-05, + "putting": 7.24e-05, + "queen": 7.24e-05, + "seconds": 8.71e-08, + "showed": 7.24e-05, + "sitting": 7.24e-05, + "standing": 7.24e-05, + "stars": 1.23e-06, + "walking": 7.24e-05, + "accept": 7.08e-05, + "actual": 7.08e-05, + "appear": 7.08e-05, + "attempt": 7.08e-05, + "broke": 7.08e-05, + "channel": 7.08e-05, + "distance": 7.08e-05, + "eating": 7.08e-05, + "exchange": 7.08e-05, + "fat": 7.08e-05, + "fell": 7.08e-05, + "finding": 7.08e-05, + "glass": 7.08e-05, + "learned": 7.08e-05, + "losing": 7.08e-05, + "mobile": 7.08e-05, + "northern": 7.08e-05, + "opened": 7.08e-05, + "placed": 7.08e-05, + "powerful": 7.08e-05, + "prior": 7.08e-05, + "protection": 7.08e-05, + "reached": 7.08e-05, + "receive": 7.08e-05, + "religious": 7.08e-05, + "ride": 7.08e-05, + "robert": 7.08e-05, + "royal": 7.08e-05, + "screen": 7.08e-05, + "serve": 7.08e-05, + "signed": 7.08e-05, + "slow": 7.08e-05, + "species": 7.08e-05, + "speech": 7.08e-05, + "traffic": 7.08e-05, + "tree": 7.08e-05, + "types": 7.24e-08, + "vs": 6.46e-07, + "wearing": 7.08e-05, + "whos": 1.15e-06, + "whom": 7.08e-05, + "wonderful": 7.08e-05, + "agreed": 6.92e-05, + "airport": 6.92e-05, + "animals": 8.51e-07, + "appears": 6.92e-05, + "begin": 6.92e-05, + "benefits": 6.92e-05, + "bottom": 6.92e-05, + "cities": 6.92e-05, + "demand": 6.92e-05, + "engine": 6.92e-05, + "everybody": 6.92e-05, + "famous": 6.92e-05, + "ideas": 1.78e-07, + "investment": 6.92e-05, + "keeping": 6.92e-05, + "lie": 6.92e-05, + "notes": 1e-07, + "partner": 6.92e-05, + "plays": 5.25e-07, + "raised": 6.92e-05, + "runs": 1.12e-07, + "sad": 4.47e-08, + "solution": 6.92e-05, + "songs": 1.02e-06, + "sources": 9.77e-08, + "southern": 6.92e-05, + "square": 6.92e-05, + "stopped": 6.92e-05, + "structure": 6.92e-05, + "thomas": 6.92e-05, + "traditional": 6.92e-05, + "twice": 6.92e-05, + "wind": 6.92e-05, + "worry": 6.92e-05, + "americans": 7.41e-07, + "appeared": 6.76e-05, + "becomes": 6.76e-05, + "brand": 6.76e-05, + "bus": 4.07e-08, + "cent": 6.76e-05, + "chicago": 6.76e-05, + "count": 6.76e-05, + "covered": 6.76e-05, + "critical": 6.76e-05, + "digital": 6.76e-05, + "forced": 6.76e-05, + "fourth": 6.76e-05, + "fresh": 6.76e-05, + "lake": 6.76e-05, + "mental": 6.76e-05, + "mentioned": 6.76e-05, + "missed": 6.76e-05, + "mostly": 6.76e-05, + "mouth": 6.76e-05, + "owner": 6.76e-05, + "photos": 3.39e-07, + "previously": 6.76e-05, + "realize": 6.76e-05, + "remain": 6.76e-05, + "scale": 6.76e-05, + "score": 6.76e-05, + "separate": 6.76e-05, + "smart": 6.76e-05, + "starts": 6.76e-05, + "surface": 6.76e-05, + "throw": 6.76e-05, + "tom": 6.76e-05, + "totally": 6.76e-05, + "twitter": 6.76e-05, + "views": 1.29e-07, + "wedding": 6.76e-05, + "youd": 6.61e-07, + "acting": 6.61e-05, + "actions": 1.23e-07, + "african": 6.61e-05, + "arms": 8.13e-07, + "benefit": 6.61e-05, + "budget": 6.61e-05, + "click": 6.61e-05, + "estate": 6.61e-05, + "failed": 6.61e-05, + "faith": 6.61e-05, + "fashion": 6.61e-05, + "feature": 6.61e-05, + "fund": 6.61e-05, + "generation": 6.61e-05, + "hearing": 6.61e-05, + "hill": 6.61e-05, + "jack": 6.61e-05, + "larger": 6.61e-05, + "louis": 6.61e-05, + "metal": 6.61e-05, + "mid": 6.61e-05, + "paris": 6.61e-05, + "profile": 6.61e-05, + "pull": 6.61e-05, + "push": 6.61e-05, + "returned": 6.61e-05, + "rose": 6.61e-05, + "seat": 6.61e-05, + "seemed": 6.61e-05, + "sexual": 6.61e-05, + "shouldnt": 3.16e-08, + "target": 6.61e-05, + "understanding": 6.61e-05, + "village": 6.61e-05, + "agent": 6.46e-05, + "animal": 6.46e-05, + "apply": 6.46e-05, + "authority": 6.46e-05, + "basis": 6.46e-05, + "becoming": 6.46e-05, + "chris": 6.46e-05, + "draw": 6.46e-05, + "dude": 6.46e-05, + "employees": 7.59e-07, + "enter": 6.46e-05, + "ex": 6.46e-05, + "follows": 6.46e-05, + "foundation": 6.46e-05, + "gain": 6.46e-05, + "http": 6.46e-05, + "individuals": 2.04e-06, + "japanese": 6.46e-05, + "leaders": 1.15e-06, + "memory": 6.46e-05, + "prime": 6.46e-05, + "projects": 1.58e-06, + "ring": 6.46e-05, + "rise": 6.46e-05, + "selling": 6.46e-05, + "served": 6.46e-05, + "silver": 6.46e-05, + "soul": 6.46e-05, + "spread": 6.46e-05, + "supply": 6.46e-05, + "waste": 6.46e-05, + "weird": 6.46e-05, + "adult": 6.31e-05, + "apparently": 6.31e-05, + "artist": 6.31e-05, + "chairman": 6.31e-05, + "edition": 6.31e-05, + "engineering": 6.31e-05, + "grade": 6.31e-05, + "happening": 6.31e-05, + "healthy": 6.31e-05, + "institute": 6.31e-05, + "method": 6.31e-05, + "mike": 6.31e-05, + "monday": 6.31e-05, + "nations": 9.77e-06, + "obviously": 6.31e-05, + "option": 6.31e-05, + "prison": 6.31e-05, + "provides": 6.31e-05, + "remains": 6.31e-05, + "senate": 6.31e-05, + "smaller": 6.31e-05, + "somebody": 6.31e-05, + "stone": 6.31e-05, + "strength": 6.31e-05, + "users": 2.14e-06, + "wild": 6.31e-05, + "window": 6.31e-05, + "winner": 6.31e-05, + "arrived": 6.17e-05, + "bag": 6.17e-05, + "bet": 6.17e-05, + "camp": 6.17e-05, + "cast": 6.17e-05, + "christ": 6.17e-05, + "continues": 6.17e-05, + "correct": 6.17e-05, + "dangerous": 6.17e-05, + "ed": 1.58e-08, + "extremely": 6.17e-05, + "firm": 6.17e-05, + "greatest": 6.17e-05, + "handle": 6.17e-05, + "improve": 6.17e-05, + "indeed": 6.17e-05, + "leaves": 2.57e-08, + "movies": 1.26e-06, + "negative": 6.17e-05, + "prevent": 6.17e-05, + "removed": 6.17e-05, + "richard": 6.17e-05, + "spirit": 6.17e-05, + "television": 6.17e-05, + "till": 6.17e-05, + "trouble": 6.17e-05, + "usa": 6.17e-05, + "videos": 8.32e-07, + "advantage": 6.03e-05, + "apart": 6.03e-05, + "aware": 6.03e-05, + "cat": 6.03e-05, + "customers": 1.2e-06, + "decide": 6.03e-05, + "dinner": 6.03e-05, + "dollars": 1.58e-07, + "eastern": 6.03e-05, + "fifth": 6.03e-05, + "function": 6.03e-05, + "gift": 6.03e-05, + "helping": 6.03e-05, + "herself": 6.03e-05, + "impossible": 6.03e-05, + "influence": 6.03e-05, + "items": 1.48e-07, + "joe": 6.03e-05, + "los": 1.91e-07, + "marketing": 6.03e-05, + "mary": 6.03e-05, + "materials": 1.66e-07, + "nor": 6.03e-05, + "produce": 6.03e-05, + "progress": 6.03e-05, + "proud": 6.03e-05, + "require": 6.03e-05, + "shooting": 6.03e-05, + "shut": 6.03e-05, + "standards": 8.71e-08, + "tells": 6.03e-05, + "thinks": 8.13e-08, + "van": 6.03e-05, + "wood": 1.26e-08, + "background": 5.89e-05, + "birth": 5.89e-05, + "bridge": 5.89e-05, + "carried": 5.89e-05, + "charles": 5.89e-05, + "classes": 5.89e-05, + "completed": 5.89e-05, + "concept": 5.89e-05, + "copy": 5.89e-05, + "dear": 5.89e-05, + "dogs": 4.07e-06, + "drugs": 1.91e-07, + "efforts": 5.89e-05, + "garden": 5.89e-05, + "host": 5.89e-05, + "housing": 5.89e-05, + "inc": 5.89e-05, + "israel": 5.89e-05, + "journal": 5.89e-05, + "labor": 5.89e-05, + "leadership": 5.89e-05, + "length": 5.89e-05, + "lucky": 5.89e-05, + "neither": 5.89e-05, + "onto": 5.89e-05, + "patient": 5.89e-05, + "possibly": 5.89e-05, + "prove": 5.89e-05, + "rare": 5.89e-05, + "setting": 5.89e-05, + "skills": 5.89e-05, + "software": 5.89e-05, + "thousands": 5.89e-05, + "tough": 5.89e-05, + "units": 8.32e-07, + "ad": 5.75e-05, + "alive": 5.75e-05, + "apple": 5.75e-05, + "balance": 5.75e-05, + "birthday": 5.75e-05, + "bitch": 5.75e-05, + "boss": 5.75e-05, + "cards": 4.47e-07, + "changing": 5.75e-05, + "connection": 5.75e-05, + "dress": 5.75e-05, + "easier": 5.75e-05, + "fellow": 5.75e-05, + "florida": 5.75e-05, + "horse": 5.75e-05, + "knowing": 5.75e-05, + "liked": 5.75e-05, + "magic": 5.75e-05, + "managed": 5.75e-05, + "map": 5.75e-05, + "net": 5.75e-05, + "owned": 5.75e-05, + "request": 5.75e-05, + "stick": 5.75e-05, + "theyve": 3.98e-07, + "turns": 2.82e-08, + "vehicle": 5.75e-05, + "volume": 5.75e-05, + "wake": 5.75e-05, + "aid": 5.62e-05, + "beauty": 5.62e-05, + "believed": 5.62e-05, + "billion": 5.62e-05, + "busy": 5.62e-05, + "buying": 5.62e-05, + "cells": 4.27e-07, + "concerned": 5.62e-05, + "conversation": 5.62e-05, + "corner": 5.62e-05, + "criminal": 5.62e-05, + "cultural": 5.62e-05, + "develop": 5.62e-05, + "driver": 5.62e-05, + "ends": 1.7e-07, + "existing": 5.62e-05, + "farm": 5.62e-05, + "file": 5.62e-05, + "fix": 5.62e-05, + "fly": 5.62e-05, + "frank": 5.62e-05, + "guide": 5.62e-05, + "images": 8.13e-08, + "investigation": 5.62e-05, + "mexico": 5.62e-05, + "operating": 5.62e-05, + "paying": 5.62e-05, + "presented": 5.62e-05, + "raise": 5.62e-05, + "responsibility": 5.62e-05, + "roll": 5.62e-05, + "slightly": 5.62e-05, + "suggest": 5.62e-05, + "surprise": 5.62e-05, + "technical": 5.62e-05, + "thoughts": 5.62e-05, + "treat": 5.62e-05, + "unique": 5.62e-05, + "variety": 5.62e-05, + "violence": 5.62e-05, + "weapons": 2.51e-07, + "yours": 2.57e-07, + "youth": 5.62e-05, + "appreciate": 5.5e-05, + "bigger": 5.5e-05, + "breaking": 5.5e-05, + "discovered": 5.5e-05, + "dry": 5.5e-05, + "edge": 5.5e-05, + "evil": 5.5e-05, + "excited": 5.5e-05, + "forever": 5.5e-05, + "funds": 6.61e-07, + "helps": 5.5e-05, + "henry": 5.5e-05, + "injury": 5.5e-05, + "iron": 5.5e-05, + "lovely": 5.5e-05, + "mad": 5.5e-05, + "magazine": 5.5e-05, + "martin": 5.5e-05, + "models": 7.08e-07, + "offers": 5.5e-05, + "ordered": 5.5e-05, + "parliament": 5.5e-05, + "prepared": 5.5e-05, + "reference": 5.5e-05, + "religion": 5.5e-05, + "sites": 2e-06, + "somewhere": 5.5e-05, + "stated": 5.5e-05, + "strategy": 5.5e-05, + "teachers": 2.63e-06, + "web": 5.5e-05, + "wine": 5.5e-05, + "accounts": 3.02e-07, + "angeles": 5.37e-05, + "arm": 5.37e-05, + "audience": 5.37e-05, + "bay": 5.37e-05, + "blog": 5.37e-05, + "closer": 5.37e-05, + "core": 5.37e-05, + "democratic": 5.37e-05, + "description": 5.37e-05, + "dropped": 5.37e-05, + "excellent": 5.37e-05, + "exist": 5.37e-05, + "figures": 1.17e-07, + "forms": 9.77e-08, + "guard": 5.37e-05, + "honest": 5.37e-05, + "issued": 5.37e-05, + "joined": 5.37e-05, + "jones": 1.45e-08, + "lee": 5.37e-05, + "lies": 5.37e-05, + "likes": 5.37e-05, + "medicine": 5.37e-05, + "mention": 5.37e-05, + "mountain": 5.37e-05, + "nuclear": 5.37e-05, + "orders": 3.72e-07, + "port": 5.37e-05, + "presence": 5.37e-05, + "reaction": 5.37e-05, + "reduce": 5.37e-05, + "shoot": 5.37e-05, + "sides": 8.32e-07, + "solid": 5.37e-05, + "spanish": 5.37e-05, + "sport": 5.37e-05, + "steps": 5.37e-05, + "stress": 5.37e-05, + "taste": 5.37e-05, + "tea": 5.37e-05, + "victory": 5.37e-05, + "afternoon": 5.25e-05, + "assistant": 5.25e-05, + "britain": 5.25e-05, + "citizens": 9.12e-07, + "classic": 5.25e-05, + "clothes": 5.25e-05, + "decisions": 5.01e-08, + "electric": 5.25e-05, + "emergency": 5.25e-05, + "entered": 5.25e-05, + "entirely": 5.25e-05, + "facts": 5.25e-05, + "failure": 5.25e-05, + "festival": 5.25e-05, + "flat": 5.25e-05, + "fuel": 5.25e-05, + "harry": 5.25e-05, + "hello": 5.25e-05, + "houses": 1.55e-06, + "initial": 5.25e-05, + "introduced": 5.25e-05, + "johnson": 5.25e-05, + "kick": 5.25e-05, + "links": 3.02e-07, + "mail": 5.25e-05, + "massive": 5.25e-05, + "matters": 6.31e-08, + "pair": 5.25e-05, + "picked": 5.25e-05, + "pieces": 9.55e-08, + "plane": 5.25e-05, + "plenty": 5.25e-05, + "prince": 5.25e-05, + "proper": 5.25e-05, + "providing": 5.25e-05, + "quarter": 5.25e-05, + "regional": 5.25e-05, + "scott": 5.25e-05, + "session": 5.25e-05, + "shape": 5.25e-05, + "sky": 5.25e-05, + "teaching": 5.25e-05, + "toward": 5.25e-05, + "transfer": 5.25e-05, + "upper": 5.25e-05, + "useful": 5.25e-05, + "valley": 5.25e-05, + "watched": 5.25e-05, + "willing": 5.25e-05, + "windows": 1.41e-07, + "zone": 5.25e-05, + "accident": 5.13e-05, + "advanced": 5.13e-05, + "alternative": 5.13e-05, + "anywhere": 5.13e-05, + "articles": 3.39e-07, + "awards": 9.12e-08, + "bear": 5.13e-05, + "boat": 5.13e-05, + "bringing": 5.13e-05, + "capacity": 5.13e-05, + "cheap": 5.13e-05, + "climate": 5.13e-05, + "communities": 5.13e-05, + "discussion": 5.13e-05, + "drinking": 5.13e-05, + "duty": 5.13e-05, + "fantastic": 5.13e-05, + "feelings": 7.41e-08, + "flying": 5.13e-05, + "governor": 5.13e-05, + "hasnt": 1.12e-06, + "hundred": 5.13e-05, + "industrial": 5.13e-05, + "joint": 5.13e-05, + "mix": 5.13e-05, + "museum": 5.13e-05, + "options": 5.13e-05, + "path": 5.13e-05, + "plants": 7.24e-07, + "policies": 5.13e-05, + "promise": 5.13e-05, + "proposed": 5.13e-05, + "purchase": 5.13e-05, + "rain": 5.13e-05, + "remove": 5.13e-05, + "signs": 7.41e-08, + "spending": 5.13e-05, + "steel": 5.13e-05, + "steve": 5.13e-05, + "supporting": 5.13e-05, + "terrible": 5.13e-05, + "theyll": 3.72e-07, + "tired": 5.13e-05, + "treated": 5.13e-05, + "turning": 5.13e-05, + "vice": 5.13e-05, + "warm": 5.13e-05, + "afraid": 5.01e-05, + "arts": 5.5e-07, + "beer": 5.01e-05, + "border": 5.01e-05, + "canadian": 5.01e-05, + "command": 5.01e-05, + "crew": 5.01e-05, + "crowd": 5.01e-05, + "dating": 5.01e-05, + "dick": 5.01e-05, + "elements": 5.5e-08, + "enemy": 5.01e-05, + "ensure": 5.01e-05, + "environmental": 5.01e-05, + "filled": 5.01e-05, + "fixed": 5.01e-05, + "forest": 5.01e-05, + "intelligence": 5.01e-05, + "intended": 5.01e-05, + "labour": 5.01e-05, + "limit": 5.01e-05, + "moon": 5.01e-05, + "ocean": 5.01e-05, + "powers": 7.94e-07, + "profit": 5.01e-05, + "proof": 5.01e-05, + "republican": 5.01e-05, + "soldiers": 1.23e-06, + "suit": 5.01e-05, + "wins": 8.91e-08, + "womens": 2.51e-06, + "appearance": 4.9e-05, + "asian": 4.9e-05, + "attorney": 4.9e-05, + "banks": 2.4e-06, + "behavior": 4.9e-05, + "ben": 4.9e-05, + "bodies": 4.9e-05, + "brothers": 5.37e-06, + "buildings": 1.78e-06, + "chair": 4.9e-05, + "creating": 4.9e-05, + "debt": 4.9e-05, + "domestic": 4.9e-05, + "expensive": 4.9e-05, + "grew": 4.9e-05, + "historical": 4.9e-05, + "homes": 8.71e-07, + "honestly": 4.9e-05, + "honor": 4.9e-05, + "jump": 4.9e-05, + "launch": 4.9e-05, + "listed": 4.9e-05, + "minimum": 4.9e-05, + "native": 4.9e-05, + "noted": 4.9e-05, + "originally": 4.9e-05, + "planned": 4.9e-05, + "pm": 4.9e-05, + "ray": 4.9e-05, + "sets": 1.86e-07, + "suddenly": 4.9e-05, + "supreme": 4.9e-05, + "survey": 4.9e-05, + "tech": 4.9e-05, + "trees": 4.37e-07, + "update": 4.9e-05, + "user": 4.9e-05, + "writer": 4.9e-05, + "yellow": 4.9e-05, + "younger": 4.9e-05, + "ancient": 4.79e-05, + "attacks": 1.12e-07, + "charges": 4.79e-05, + "combined": 4.79e-05, + "communication": 4.79e-05, + "connected": 4.79e-05, + "contains": 4.79e-05, + "download": 4.79e-05, + "email": 4.79e-05, + "ending": 4.79e-05, + "exercise": 4.79e-05, + "express": 4.79e-05, + "flow": 4.79e-05, + "formed": 4.79e-05, + "girlfriend": 4.79e-05, + "hero": 4.79e-05, + "illegal": 4.79e-05, + "increasing": 4.79e-05, + "joke": 4.79e-05, + "loan": 4.79e-05, + "methods": 4.79e-05, + "officials": 2.04e-07, + "peoples": 1.82e-05, + "performed": 4.79e-05, + "planet": 4.79e-05, + "relationships": 8.91e-08, + "restaurant": 4.79e-05, + "scotland": 4.79e-05, + "selected": 4.79e-05, + "shared": 4.79e-05, + "shopping": 4.79e-05, + "soft": 4.79e-05, + "stuck": 4.79e-05, + "sugar": 4.79e-05, + "suggested": 4.79e-05, + "supported": 4.79e-05, + "surprised": 4.79e-05, + "taught": 4.79e-05, + "transport": 4.79e-05, + "werent": 1.38e-08, + "accepted": 4.68e-05, + "adding": 4.68e-05, + "affairs": 4.68e-05, + "allows": 4.68e-05, + "appeal": 4.68e-05, + "applied": 4.68e-05, + "appropriate": 4.68e-05, + "artists": 3.31e-06, + "boston": 4.68e-05, + "ca": 4.68e-05, + "confirmed": 4.68e-05, + "device": 4.68e-05, + "drama": 4.68e-05, + "entry": 4.68e-05, + "era": 4.68e-05, + "factor": 4.68e-05, + "feed": 4.68e-05, + "golden": 4.68e-05, + "grant": 4.68e-05, + "grown": 4.68e-05, + "heads": 5.5e-07, + "hoping": 4.68e-05, + "keeps": 4.68e-05, + "lawyer": 4.68e-05, + "legs": 1.62e-07, + "lying": 4.68e-05, + "measures": 4.68e-05, + "mistake": 4.68e-05, + "ms": 1.1e-06, + "muslim": 4.68e-05, + "organizations": 2.57e-06, + "platform": 4.68e-05, + "pool": 4.68e-05, + "pulled": 4.68e-05, + "regarding": 4.68e-05, + "relations": 4.68e-05, + "requires": 4.68e-05, + "route": 4.68e-05, + "saved": 4.68e-05, + "schedule": 4.68e-05, + "scientific": 4.68e-05, + "shoes": 9.12e-08, + "smoke": 4.68e-05, + "squad": 4.68e-05, + "teach": 4.68e-05, + "testing": 4.68e-05, + "tests": 7.59e-08, + "values": 4.68e-05, + "walked": 4.68e-05, + "williams": 9.55e-07, + "ya": 4.68e-05, + "abuse": 4.57e-05, + "angry": 4.57e-05, + "businesses": 4.57e-05, + "candidate": 4.57e-05, + "comfortable": 4.57e-05, + "concern": 4.57e-05, + "developing": 4.57e-05, + "discuss": 4.57e-05, + "elections": 1.86e-07, + "emotional": 4.57e-05, + "et": 4.57e-05, + "everywhere": 4.57e-05, + "facilities": 4.57e-05, + "falling": 4.57e-05, + "fox": 4.57e-05, + "guns": 2.75e-07, + "hole": 4.57e-05, + "holiday": 4.57e-05, + "interests": 4.57e-05, + "internal": 4.57e-05, + "ireland": 4.57e-05, + "italian": 4.57e-05, + "italy": 4.57e-05, + "jersey": 4.57e-05, + "laugh": 4.57e-05, + "leg": 4.57e-05, + "letters": 1.51e-07, + "liberal": 4.57e-05, + "listening": 4.57e-05, + "ll": 4.57e-05, + "loves": 1.7e-06, + "lunch": 4.57e-05, + "max": 4.57e-05, + "milk": 4.57e-05, + "pack": 4.57e-05, + "payment": 4.57e-05, + "perform": 4.57e-05, + "recorded": 4.57e-05, + "relatively": 4.57e-05, + "sector": 4.57e-05, + "sharing": 4.57e-05, + "snow": 4.57e-05, + "storm": 4.57e-05, + "streets": 7.41e-07, + "strike": 4.57e-05, + "studio": 4.57e-05, + "sub": 4.57e-05, + "weak": 4.57e-05, + "youtube": 4.57e-05, + "actor": 4.47e-05, + "advance": 4.47e-05, + "apartment": 4.47e-05, + "asia": 4.47e-05, + "chain": 4.47e-05, + "chapter": 4.47e-05, + "committed": 4.47e-05, + "confidence": 4.47e-05, + "cook": 4.47e-05, + "cute": 4.47e-05, + "equal": 4.47e-05, + "fake": 4.47e-05, + "finance": 4.47e-05, + "focused": 4.47e-05, + "hits": 7.59e-08, + "identity": 4.47e-05, + "journey": 4.47e-05, + "kitchen": 4.47e-05, + "korea": 4.47e-05, + "leads": 6.31e-08, + "maintain": 4.47e-05, + "measure": 4.47e-05, + "mm": 4.47e-05, + "numerous": 4.47e-05, + "owners": 2.19e-06, + "posts": 6.76e-07, + "properties": 4.47e-05, + "quiet": 4.47e-05, + "revealed": 4.47e-05, + "specifically": 4.47e-05, + "split": 4.47e-05, + "task": 4.47e-05, + "taxes": 4.47e-05, + "taylor": 4.47e-05, + "twenty": 4.47e-05, + "urban": 4.47e-05, + "acts": 4.07e-07, + "affected": 4.37e-05, + "aircraft": 4.37e-05, + "applications": 9.12e-08, + "approved": 4.37e-05, + "approximately": 4.37e-05, + "argument": 4.37e-05, + "arrested": 4.37e-05, + "claimed": 4.37e-05, + "conflict": 4.37e-05, + "considering": 4.37e-05, + "corporate": 4.37e-05, + "debate": 4.37e-05, + "determined": 4.37e-05, + "distribution": 4.37e-05, + "documents": 8.71e-08, + "escape": 4.37e-05, + "extended": 4.37e-05, + "factors": 7.24e-08, + "faster": 4.37e-05, + "fault": 4.37e-05, + "fill": 4.37e-05, + "films": 3.8e-06, + "flowers": 1.38e-07, + "friendly": 4.37e-05, + "ladies": 4.37e-05, + "lay": 4.37e-05, + "lights": 3.63e-07, + "millions": 2e-08, + "mixed": 4.37e-05, + "phase": 4.37e-05, + "properly": 4.37e-05, + "pure": 4.37e-05, + "reduced": 4.37e-05, + "requirements": 4.37e-05, + "residents": 2.19e-07, + "revenue": 4.37e-05, + "sam": 4.37e-05, + "sat": 4.37e-05, + "secure": 4.37e-05, + "smile": 4.37e-05, + "strange": 4.37e-05, + "talent": 4.37e-05, + "temperature": 4.37e-05, + "thousand": 4.37e-05, + "tony": 4.37e-05, + "troops": 4.37e-05, + "truck": 4.37e-05, + "votes": 1.15e-07, + "ah": 4.27e-05, + "authorities": 4.27e-05, + "basically": 4.27e-05, + "besides": 4.27e-05, + "bird": 4.27e-05, + "blame": 4.27e-05, + "bob": 4.27e-05, + "bowl": 4.27e-05, + "causes": 4.27e-05, + "chicken": 4.27e-05, + "collected": 4.27e-05, + "context": 4.27e-05, + "coverage": 4.27e-05, + "determine": 4.27e-05, + "display": 4.27e-05, + "dying": 4.27e-05, + "elected": 4.27e-05, + "examples": 4.27e-05, + "experienced": 4.27e-05, + "falls": 2e-07, + "false": 4.27e-05, + "fired": 4.27e-05, + "forgot": 4.27e-05, + "funding": 4.27e-05, + "identified": 4.27e-05, + "iii": 4.27e-05, + "incredible": 4.27e-05, + "inspired": 4.27e-05, + "launched": 4.27e-05, + "ma": 4.27e-05, + "meat": 4.27e-05, + "ministry": 4.27e-05, + "mode": 4.27e-05, + "neck": 4.27e-05, + "noticed": 4.27e-05, + "novel": 4.27e-05, + "obvious": 4.27e-05, + "passing": 4.27e-05, + "positions": 5.89e-08, + "remaining": 4.27e-05, + "scored": 4.27e-05, + "shirt": 4.27e-05, + "shots": 6.17e-08, + "slowly": 4.27e-05, + "stadium": 4.27e-05, + "stores": 8.91e-07, + "surgery": 4.27e-05, + "trading": 4.27e-05, + "tuesday": 4.27e-05, + "vision": 4.27e-05, + "whenever": 4.27e-05, + "worried": 4.27e-05, + "zero": 4.27e-05, + "alex": 4.17e-05, + "allowing": 4.17e-05, + "begins": 4.17e-05, + "champion": 4.17e-05, + "charged": 4.17e-05, + "cream": 4.17e-05, + "crisis": 4.17e-05, + "daniel": 4.17e-05, + "delivered": 4.17e-05, + "editor": 4.17e-05, + "estimated": 4.17e-05, + "eu": 4.17e-05, + "giant": 4.17e-05, + "iran": 4.17e-05, + "jail": 4.17e-05, + "jim": 4.17e-05, + "kingdom": 4.17e-05, + "literature": 4.17e-05, + "mayor": 4.17e-05, + "minor": 4.17e-05, + "moments": 7.76e-07, + "opposite": 4.17e-05, + "orange": 4.17e-05, + "ourselves": 4.17e-05, + "pages": 3.89e-07, + "remained": 4.17e-05, + "selection": 4.17e-05, + "serving": 4.17e-05, + "signal": 4.17e-05, + "stream": 4.17e-05, + "struggle": 4.17e-05, + "suicide": 4.17e-05, + "talked": 4.17e-05, + "theme": 4.17e-05, + "thursday": 4.17e-05, + "tiny": 4.17e-05, + "typically": 4.17e-05, + "un": 4.17e-05, + "unfortunately": 4.17e-05, + "usual": 4.17e-05, + "vehicles": 8.71e-07, + "virginia": 4.17e-05, + "voted": 4.17e-05, + "voting": 4.17e-05, + "walls": 3.47e-07, + "wave": 4.17e-05, + "alcohol": 4.07e-05, + "assembly": 4.07e-05, + "breakfast": 4.07e-05, + "bright": 4.07e-05, + "brings": 4.07e-05, + "capable": 4.07e-05, + "carrying": 4.07e-05, + "chosen": 4.07e-05, + "combination": 4.07e-05, + "conservative": 4.07e-05, + "customer": 4.07e-05, + "cutting": 4.07e-05, + "desire": 4.07e-05, + "destroyed": 4.07e-05, + "draft": 4.07e-05, + "drunk": 4.07e-05, + "essential": 4.07e-05, + "fail": 4.07e-05, + "familiar": 4.07e-05, + "finds": 4.07e-05, + "granted": 4.07e-05, + "guilty": 4.07e-05, + "humans": 4.68e-07, + "hundreds": 4.07e-05, + "improved": 4.07e-05, + "jewish": 4.07e-05, + "largely": 4.07e-05, + "laughing": 4.07e-05, + "markets": 7.59e-07, + "medium": 4.07e-05, + "ohio": 4.07e-05, + "opportunities": 4.07e-05, + "papers": 9.33e-07, + "perfectly": 4.07e-05, + "recommend": 4.07e-05, + "referred": 4.07e-05, + "relevant": 4.07e-05, + "seek": 4.07e-05, + "sending": 4.07e-05, + "solo": 4.07e-05, + "spoke": 4.07e-05, + "stands": 4.07e-05, + "talks": 7.76e-08, + "ticket": 4.07e-05, + "unable": 4.07e-05, + "upset": 4.07e-05, + "wing": 4.07e-05, + "worlds": 1.7e-05, + "answers": 1.1e-07, + "birds": 1.7e-06, + "bomb": 3.98e-05, + "creative": 3.98e-05, + "cycle": 3.98e-05, + "dealing": 3.98e-05, + "directed": 3.98e-05, + "don": 3.98e-05, + "educational": 3.98e-05, + "entertainment": 3.98e-05, + "extreme": 3.98e-05, + "facility": 3.98e-05, + "fields": 4.07e-07, + "goods": 1.17e-07, + "hang": 3.98e-05, + "holds": 3.98e-05, + "info": 3.98e-05, + "mainly": 3.98e-05, + "maximum": 3.98e-05, + "newspaper": 3.98e-05, + "offering": 3.98e-05, + "painting": 3.98e-05, + "republic": 3.98e-05, + "reserve": 3.98e-05, + "returns": 3.98e-05, + "row": 3.98e-05, + "salt": 3.98e-05, + "scared": 3.98e-05, + "scottish": 3.98e-05, + "shares": 3.98e-05, + "statistics": 3.98e-05, + "switch": 3.98e-05, + "territory": 3.98e-05, + "threat": 3.98e-05, + "tickets": 3.98e-05, + "wales": 3.98e-05, + "adults": 2.09e-07, + "affect": 3.89e-05, + "appointed": 3.89e-05, + "armed": 3.89e-05, + "aside": 3.89e-05, + "assistance": 3.89e-05, + "bell": 3.89e-05, + "blow": 3.89e-05, + "bond": 3.89e-05, + "boyfriend": 3.89e-05, + "careful": 3.89e-05, + "circumstances": 3.89e-05, + "communications": 3.89e-05, + "concerns": 3.89e-05, + "controlled": 3.89e-05, + "corporation": 3.89e-05, + "cry": 3.89e-05, + "danger": 3.89e-05, + "deals": 2.82e-07, + "delivery": 3.89e-05, + "deserve": 3.89e-05, + "devices": 4.27e-07, + "dollar": 3.89e-05, + "dreams": 1.74e-07, + "empty": 3.89e-05, + "enjoyed": 3.89e-05, + "explained": 3.89e-05, + "faces": 1.12e-07, + "folks": 9.33e-08, + "fucked": 3.89e-05, + "gender": 3.89e-05, + "instance": 3.89e-05, + "kim": 3.89e-05, + "kinda": 3.89e-05, + "matches": 3.89e-05, + "mile": 3.89e-05, + "motion": 3.89e-05, + "moves": 5.62e-08, + "nick": 3.89e-05, + "pacific": 3.89e-05, + "prize": 3.89e-05, + "realized": 3.89e-05, + "reasonable": 3.89e-05, + "receiving": 3.89e-05, + "register": 3.89e-05, + "resolution": 3.89e-05, + "rural": 3.89e-05, + "ryan": 3.89e-05, + "saving": 3.89e-05, + "sees": 4.17e-07, + "singing": 3.89e-05, + "spain": 3.89e-05, + "tools": 7.76e-08, + "typical": 3.89e-05, + "universe": 3.89e-05, + "warning": 3.89e-05, + "wars": 1.12e-06, + "wednesday": 3.89e-05, + "admit": 3.8e-05, + "attitude": 3.8e-05, + "branch": 3.8e-05, + "brazil": 3.8e-05, + "conducted": 3.8e-05, + "decades": 1.95e-07, + "dedicated": 3.8e-05, + "definition": 3.8e-05, + "drawing": 3.8e-05, + "favor": 3.8e-05, + "flag": 3.8e-05, + "frame": 3.8e-05, + "guest": 3.8e-05, + "ha": 3.8e-05, + "heaven": 3.8e-05, + "independence": 3.8e-05, + "institutions": 5.13e-07, + "itll": 5.37e-07, + "jackson": 3.8e-05, + "kiss": 3.8e-05, + "load": 3.8e-05, + "plot": 3.8e-05, + "possibility": 3.8e-05, + "random": 3.8e-05, + "recovery": 3.8e-05, + "rent": 3.8e-05, + "replace": 3.8e-05, + "represent": 3.8e-05, + "reviews": 1.91e-07, + "scenes": 1.82e-07, + "seeking": 3.8e-05, + "senator": 3.8e-05, + "sentence": 3.8e-05, + "teeth": 3.8e-05, + "tips": 5.01e-08, + "trained": 3.8e-05, + "understood": 3.8e-05, + "academic": 3.72e-05, + "academy": 3.72e-05, + "accurate": 3.72e-05, + "achieve": 3.72e-05, + "adam": 1.1e-08, + "afford": 3.72e-05, + "andrew": 3.72e-05, + "assume": 3.72e-05, + "bbc": 3.72e-05, + "bottle": 3.72e-05, + "bunch": 3.72e-05, + "category": 3.72e-05, + "chat": 3.72e-05, + "cheese": 3.72e-05, + "chemical": 3.72e-05, + "clinton": 3.72e-05, + "competitive": 3.72e-05, + "detail": 3.72e-05, + "diet": 3.72e-05, + "em": 3.72e-05, + "favourite": 3.72e-05, + "fruit": 3.72e-05, + "harder": 3.72e-05, + "hed": 4.47e-07, + "index": 3.72e-05, + "item": 3.72e-05, + "lane": 3.72e-05, + "mess": 3.72e-05, + "navy": 3.72e-05, + "normally": 3.72e-05, + "occurred": 3.72e-05, + "opposition": 3.72e-05, + "parent": 3.72e-05, + "permanent": 3.72e-05, + "personally": 3.72e-05, + "pleasure": 3.72e-05, + "prefer": 3.72e-05, + "programme": 3.72e-05, + "representative": 3.72e-05, + "scheme": 3.72e-05, + "shift": 3.72e-05, + "stood": 3.72e-05, + "storage": 3.72e-05, + "tank": 3.72e-05, + "tend": 3.72e-05, + "tight": 3.72e-05, + "transportation": 3.72e-05, + "ultimately": 3.72e-05, + "unlike": 3.72e-05, + "weekly": 3.72e-05, + "yard": 3.72e-05, + "anybody": 3.63e-05, + "assets": 7.08e-08, + "basketball": 3.63e-05, + "button": 3.63e-05, + "candidates": 7.94e-07, + "combat": 3.63e-05, + "constitution": 3.63e-05, + "consumer": 3.63e-05, + "counter": 3.63e-05, + "creation": 3.63e-05, + "crown": 3.63e-05, + "crying": 3.63e-05, + "dc": 3.63e-05, + "defined": 3.63e-05, + "depending": 3.63e-05, + "depression": 3.63e-05, + "describe": 3.63e-05, + "drivers": 6.03e-06, + "el": 3.63e-05, + "employment": 3.63e-05, + "exclusive": 3.63e-05, + "excuse": 3.63e-05, + "expert": 3.63e-05, + "frequently": 3.63e-05, + "golf": 3.63e-05, + "grace": 3.63e-05, + "hopefully": 3.63e-05, + "identify": 3.63e-05, + "importance": 3.63e-05, + "kevin": 3.63e-05, + "laid": 3.63e-05, + "latter": 3.63e-05, + "manufacturing": 3.63e-05, + "mining": 3.63e-05, + "object": 3.63e-05, + "partners": 1.91e-06, + "pattern": 3.63e-05, + "performing": 3.63e-05, + "personnel": 3.63e-05, + "perspective": 3.63e-05, + "pregnant": 3.63e-05, + "premier": 3.63e-05, + "promote": 3.63e-05, + "revolution": 3.63e-05, + "rooms": 5.62e-07, + "severe": 3.63e-05, + "sleeping": 3.63e-05, + "suppose": 3.63e-05, + "tool": 3.63e-05, + "tournament": 3.63e-05, + "turkey": 3.63e-05, + "ve": 3.63e-05, + "victim": 3.63e-05, + "victims": 3.55e-06, + "agents": 7.08e-07, + "amazon": 3.55e-05, + "arrest": 3.55e-05, + "attend": 3.55e-05, + "ban": 3.55e-05, + "brilliant": 3.55e-05, + "carbon": 3.55e-05, + "catholic": 3.55e-05, + "chose": 3.55e-05, + "circle": 3.55e-05, + "concert": 3.55e-05, + "crash": 3.55e-05, + "declared": 3.55e-05, + "deliver": 3.55e-05, + "depth": 3.55e-05, + "deputy": 3.55e-05, + "dirty": 3.55e-05, + "doctors": 5.13e-06, + "earned": 3.55e-05, + "electronic": 3.55e-05, + "error": 3.55e-05, + "existence": 3.55e-05, + "experiences": 3.55e-05, + "expression": 3.55e-05, + "factory": 3.55e-05, + "headed": 3.55e-05, + "interior": 3.55e-05, + "joy": 3.55e-05, + "jr": 3.55e-05, + "legislation": 3.55e-05, + "maintenance": 3.55e-05, + "manner": 3.55e-05, + "mate": 3.55e-05, + "matt": 3.55e-05, + "nearby": 3.55e-05, + "noise": 3.55e-05, + "origin": 3.55e-05, + "pakistan": 3.55e-05, + "panel": 3.55e-05, + "personality": 3.55e-05, + "plate": 3.55e-05, + "practices": 5.89e-08, + "prepare": 3.55e-05, + "relief": 3.55e-05, + "replaced": 3.55e-05, + "resistance": 3.55e-05, + "retail": 3.55e-05, + "rice": 3.55e-05, + "roads": 3.89e-07, + "roof": 3.55e-05, + "shame": 3.55e-05, + "ships": 3.55e-06, + "somewhat": 3.55e-05, + "staying": 3.55e-05, + "stronger": 3.55e-05, + "surely": 3.55e-05, + "tip": 3.55e-05, + "updated": 3.55e-05, + "writers": 1.95e-06, + "absolute": 3.47e-05, + "advertising": 3.47e-05, + "agencies": 3.47e-05, + "baseball": 3.47e-05, + "bathroom": 3.47e-05, + "bible": 3.47e-05, + "cable": 3.47e-05, + "calm": 3.47e-05, + "championship": 3.47e-05, + "checked": 3.47e-05, + "client": 3.47e-05, + "constant": 3.47e-05, + "da": 3.47e-05, + "dates": 1.12e-07, + "degrees": 3.47e-05, + "democrats": 1.82e-07, + "doors": 1.95e-07, + "driven": 3.47e-05, + "dumb": 3.47e-05, + "empire": 3.47e-05, + "exciting": 3.47e-05, + "expansion": 3.47e-05, + "heavily": 3.47e-05, + "hide": 3.47e-05, + "incident": 3.47e-05, + "irish": 3.47e-05, + "linked": 3.47e-05, + "manage": 3.47e-05, + "messages": 3.47e-05, + "michigan": 3.47e-05, + "multi": 3.47e-05, + "nfl": 3.47e-05, + "politicians": 2.88e-07, + "print": 3.47e-05, + "quit": 3.47e-05, + "refused": 3.47e-05, + "reporting": 3.47e-05, + "sight": 3.47e-05, + "significantly": 3.47e-05, + "sing": 3.47e-05, + "soviet": 3.47e-05, + "weapon": 3.47e-05, + "wet": 3.47e-05, + "widely": 3.47e-05, + "worldwide": 3.47e-05, + "ages": 9.55e-08, + "anniversary": 3.39e-05, + "attractive": 3.39e-05, + "bike": 3.39e-05, + "broad": 3.39e-05, + "burn": 3.39e-05, + "cake": 3.39e-05, + "causing": 3.39e-05, + "closely": 3.39e-05, + "constantly": 3.39e-05, + "contest": 3.39e-05, + "deaths": 6.76e-07, + "depends": 3.39e-05, + "drawn": 3.39e-05, + "fees": 9.12e-08, + "francisco": 3.39e-05, + "haha": 3.39e-05, + "hardly": 3.39e-05, + "hat": 3.39e-05, + "height": 3.39e-05, + "hidden": 3.39e-05, + "hong": 3.39e-05, + "invited": 3.39e-05, + "letting": 3.39e-05, + "loud": 3.39e-05, + "manchester": 3.39e-05, + "marine": 3.39e-05, + "motor": 3.39e-05, + "officially": 3.39e-05, + "pc": 3.39e-05, + "peak": 3.39e-05, + "portion": 3.39e-05, + "pounds": 8.71e-08, + "princess": 3.39e-05, + "protein": 3.39e-05, + "puts": 3.39e-05, + "raw": 3.39e-05, + "reform": 3.39e-05, + "regions": 2.45e-06, + "represented": 3.39e-05, + "respond": 3.39e-05, + "retirement": 3.39e-05, + "sample": 3.39e-05, + "seats": 1.12e-07, + "secondary": 3.39e-05, + "solar": 3.39e-05, + "somehow": 3.39e-05, + "stayed": 3.39e-05, + "suffering": 3.39e-05, + "sydney": 3.39e-05, + "todays": 1.26e-06, + "tries": 3.39e-05, + "ultimate": 3.39e-05, + "unknown": 3.39e-05, + "wilson": 3.39e-05, + "wondering": 3.39e-05, + "attached": 3.31e-05, + "attacked": 3.31e-05, + "automatically": 3.31e-05, + "balls": 6.31e-07, + "battery": 3.31e-05, + "bills": 1.95e-06, + "blind": 3.31e-05, + "breath": 3.31e-05, + "brief": 3.31e-05, + "carolina": 3.31e-05, + "chest": 3.31e-05, + "conduct": 3.31e-05, + "debut": 3.31e-05, + "decade": 3.31e-05, + "destroy": 3.31e-05, + "differences": 3.31e-05, + "edward": 3.31e-05, + "engaged": 3.31e-05, + "experts": 1.82e-07, + "expressed": 3.31e-05, + "external": 3.31e-05, + "fantasy": 3.31e-05, + "ft": 3.31e-05, + "grab": 3.31e-05, + "hollywood": 3.31e-05, + "immediate": 3.31e-05, + "introduction": 3.31e-05, + "joseph": 3.31e-05, + "license": 3.31e-05, + "paint": 3.31e-05, + "pilot": 3.31e-05, + "pink": 3.31e-05, + "presidential": 3.31e-05, + "principal": 3.31e-05, + "recognize": 3.31e-05, + "recognized": 3.31e-05, + "registered": 3.31e-05, + "regularly": 3.31e-05, + "representatives": 6.92e-08, + "rising": 3.31e-05, + "seasons": 3.72e-06, + "shipping": 3.31e-05, + "singer": 3.31e-05, + "smoking": 3.31e-05, + "steam": 3.31e-05, + "suffered": 3.31e-05, + "survive": 3.31e-05, + "tall": 3.31e-05, + "theatre": 3.31e-05, + "therapy": 3.31e-05, + "witness": 3.31e-05, + "adopted": 3.24e-05, + "aim": 3.24e-05, + "campus": 3.24e-05, + "cap": 3.24e-05, + "chances": 1e-07, + "childhood": 3.24e-05, + "clinical": 3.24e-05, + "clubs": 8.13e-06, + "comedy": 3.24e-05, + "commander": 3.24e-05, + "comparison": 3.24e-05, + "covers": 7.41e-08, + "dan": 3.24e-05, + "defeat": 3.24e-05, + "defence": 3.24e-05, + "democracy": 3.24e-05, + "detailed": 3.24e-05, + "entitled": 3.24e-05, + "exact": 3.24e-05, + "exposed": 3.24e-05, + "fed": 3.24e-05, + "fee": 3.24e-05, + "injured": 3.24e-05, + "jan": 3.24e-05, + "jordan": 3.24e-05, + "kinds": 3.24e-05, + "loans": 3.24e-05, + "lock": 3.24e-05, + "musical": 3.24e-05, + "nose": 3.24e-05, + "objects": 2.57e-07, + "opposed": 3.24e-05, + "organized": 3.24e-05, + "plastic": 3.24e-05, + "protected": 3.24e-05, + "purposes": 3.24e-05, + "quote": 3.24e-05, + "recording": 3.24e-05, + "semi": 3.24e-05, + "statements": 5.25e-08, + "suspect": 3.24e-05, + "swear": 3.24e-05, + "techniques": 3.24e-05, + "tie": 3.24e-05, + "tim": 3.24e-05, + "trend": 3.24e-05, + "valuable": 3.24e-05, + "wealth": 3.24e-05, + "wise": 3.24e-05, + "yards": 1.29e-07, + "aged": 3.16e-05, + "approval": 3.16e-05, + "aspects": 3.16e-05, + "attempts": 3.16e-05, + "bread": 3.16e-05, + "burning": 3.16e-05, + "champions": 3.89e-07, + "contain": 3.16e-05, + "convention": 3.16e-05, + "dancing": 3.16e-05, + "document": 3.16e-05, + "eggs": 7.76e-08, + "employee": 3.16e-05, + "en": 3.16e-05, + "engineer": 3.16e-05, + "equivalent": 3.16e-05, + "facing": 3.16e-05, + "fairly": 3.16e-05, + "fingers": 6.31e-08, + "ford": 3.16e-05, + "founded": 3.16e-05, + "functions": 5.37e-08, + "gang": 3.16e-05, + "graduate": 3.16e-05, + "greek": 3.16e-05, + "hanging": 3.16e-05, + "inner": 3.16e-05, + "islands": 2.57e-06, + "le": 3.16e-05, + "lift": 3.16e-05, + "marked": 3.16e-05, + "memories": 3.16e-05, + "miller": 3.16e-05, + "monthly": 3.16e-05, + "mountains": 3.09e-07, + "neighborhood": 3.16e-05, + "operate": 3.16e-05, + "outstanding": 3.16e-05, + "permission": 3.16e-05, + "porn": 3.16e-05, + "racing": 3.16e-05, + "recommended": 3.16e-05, + "regulations": 3.16e-05, + "reply": 3.16e-05, + "republicans": 1.55e-07, + "rid": 3.16e-05, + "roman": 3.16e-05, + "scientists": 2.19e-07, + "shoulder": 3.16e-05, + "shower": 3.16e-05, + "solutions": 3.16e-05, + "sons": 7.59e-06, + "stations": 1.29e-06, + "stephen": 3.16e-05, + "tower": 3.16e-05, + "tradition": 3.16e-05, + "visited": 3.16e-05, + "visual": 3.16e-05, + "wheel": 3.16e-05, + "zealand": 3.16e-05, + "achieved": 3.09e-05, + "admitted": 3.09e-05, + "appointment": 3.09e-05, + "authors": 2.69e-06, + "barely": 3.09e-05, + "bc": 3.09e-05, + "bush": 3.09e-05, + "cabinet": 3.09e-05, + "celebrate": 3.09e-05, + "challenges": 3.09e-05, + "chocolate": 3.09e-05, + "coal": 3.09e-05, + "colour": 3.09e-05, + "contemporary": 3.09e-05, + "criticism": 3.09e-05, + "davis": 3.09e-05, + "dna": 3.09e-05, + "effectively": 3.09e-05, + "eric": 3.09e-05, + "extensive": 3.09e-05, + "faced": 3.09e-05, + "filed": 3.09e-05, + "formation": 3.09e-05, + "fought": 3.09e-05, + "gained": 3.09e-05, + "gallery": 3.09e-05, + "highway": 3.09e-05, + "historic": 3.09e-05, + "hunt": 3.09e-05, + "improvement": 3.09e-05, + "inch": 3.09e-05, + "initially": 3.09e-05, + "junior": 3.09e-05, + "jury": 3.09e-05, + "kong": 3.09e-05, + "korean": 3.09e-05, + "marks": 1.78e-06, + "monster": 3.09e-05, + "obtained": 3.09e-05, + "olympic": 3.09e-05, + "philosophy": 3.09e-05, + "pride": 3.09e-05, + "promised": 3.09e-05, + "repeat": 3.09e-05, + "returning": 3.09e-05, + "riding": 3.09e-05, + "rough": 3.09e-05, + "santa": 3.09e-05, + "settlement": 3.09e-05, + "smell": 3.09e-05, + "sought": 3.09e-05, + "speaker": 3.09e-05, + "studied": 3.09e-05, + "suggests": 3.09e-05, + "surrounding": 3.09e-05, + "tone": 3.09e-05, + "topic": 3.09e-05, + "toronto": 3.09e-05, + "universal": 3.09e-05, + "vast": 3.09e-05, + "visitors": 4.47e-07, + "wanting": 3.09e-05, + "auto": 3.02e-05, + "consistent": 3.02e-05, + "continuing": 3.02e-05, + "earn": 3.02e-05, + "exists": 3.02e-05, + "finger": 3.02e-05, + "grey": 3.02e-05, + "guitar": 3.02e-05, + "heading": 3.02e-05, + "howard": 3.02e-05, + "ignore": 3.02e-05, + "involving": 3.02e-05, + "latin": 3.02e-05, + "lewis": 3.02e-05, + "meal": 3.02e-05, + "meanwhile": 3.02e-05, + "meetings": 1.29e-07, + "naturally": 3.02e-05, + "necessarily": 3.02e-05, + "offices": 5.37e-07, + "pants": 1.62e-08, + "partnership": 3.02e-05, + "payments": 3.02e-05, + "percentage": 3.02e-05, + "pocket": 3.02e-05, + "practical": 3.02e-05, + "primarily": 3.02e-05, + "proved": 3.02e-05, + "rape": 3.02e-05, + "regardless": 3.02e-05, + "relative": 3.02e-05, + "represents": 3.02e-05, + "rescue": 3.02e-05, + "resulting": 3.02e-05, + "rush": 3.02e-05, + "sarah": 3.02e-05, + "sessions": 1.55e-07, + "sharp": 3.02e-05, + "simon": 3.02e-05, + "soccer": 3.02e-05, + "stable": 3.02e-05, + "structures": 1.23e-07, + "supplies": 3.02e-05, + "symptoms": 3.02e-05, + "temporary": 3.02e-05, + "tested": 3.02e-05, + "trick": 3.02e-05, + "attended": 2.95e-05, + "audio": 2.95e-05, + "bone": 2.95e-05, + "brian": 2.95e-05, + "bullshit": 2.95e-05, + "chamber": 2.95e-05, + "chart": 2.95e-05, + "childrens": 1.1e-06, + "circuit": 2.95e-05, + "clothing": 2.95e-05, + "complicated": 2.95e-05, + "confused": 2.95e-05, + "consequences": 2.95e-05, + "defend": 2.95e-05, + "divided": 2.95e-05, + "elizabeth": 2.95e-05, + "everyday": 2.95e-05, + "extent": 2.95e-05, + "fishing": 2.95e-05, + "format": 2.95e-05, + "gap": 2.95e-05, + "gate": 2.95e-05, + "gotten": 2.95e-05, + "harm": 2.95e-05, + "healthcare": 2.95e-05, + "household": 2.95e-05, + "immigration": 2.95e-05, + "impressive": 2.95e-05, + "jews": 1.07e-07, + "joining": 2.95e-05, + "killer": 2.95e-05, + "lesson": 2.95e-05, + "limits": 2.95e-05, + "loving": 2.95e-05, + "ltd": 2.95e-05, + "managers": 1.29e-06, + "membership": 2.95e-05, + "miami": 2.95e-05, + "mirror": 2.95e-05, + "mount": 2.95e-05, + "nights": 7.59e-06, + "occur": 2.95e-05, + "parking": 2.95e-05, + "proposal": 2.95e-05, + "province": 2.95e-05, + "purchased": 2.95e-05, + "recognition": 2.95e-05, + "reputation": 2.95e-05, + "rolling": 2.95e-05, + "shortly": 2.95e-05, + "situations": 2.95e-05, + "strongly": 2.95e-05, + "tears": 2.95e-05, + "technique": 2.95e-05, + "thin": 2.95e-05, + "tied": 2.95e-05, + "accused": 2.88e-05, + "adventure": 2.88e-05, + "argue": 2.88e-05, + "assessment": 2.88e-05, + "atmosphere": 2.88e-05, + "awful": 2.88e-05, + "bedroom": 2.88e-05, + "belief": 2.88e-05, + "bound": 2.88e-05, + "breaks": 5.01e-08, + "carefully": 2.88e-05, + "cats": 2.24e-06, + "ceo": 2.88e-05, + "choices": 2.88e-05, + "closing": 2.88e-05, + "cloud": 2.88e-05, + "colorado": 2.88e-05, + "colors": 7.41e-08, + "contrast": 2.88e-05, + "courses": 9.12e-08, + "courts": 3.39e-06, + "donald": 2.88e-05, + "drew": 2.88e-05, + "egg": 2.88e-05, + "element": 2.88e-05, + "elsewhere": 2.88e-05, + "establish": 2.88e-05, + "extension": 2.88e-05, + "files": 1.32e-07, + "founder": 2.88e-05, + "gear": 2.88e-05, + "georgia": 2.88e-05, + "hills": 1.26e-06, + "hip": 2.88e-05, + "hitting": 2.88e-05, + "increases": 2.88e-05, + "infrastructure": 2.88e-05, + "jason": 2.88e-05, + "locations": 1e-07, + "loose": 2.88e-05, + "machines": 5.62e-07, + "mens": 2.82e-06, + "moral": 2.88e-05, + "offensive": 2.88e-05, + "pa": 2.88e-05, + "package": 2.88e-05, + "pointed": 2.88e-05, + "poverty": 2.88e-05, + "processes": 2.88e-05, + "processing": 2.88e-05, + "qualified": 2.88e-05, + "railway": 2.88e-05, + "reaching": 2.88e-05, + "ridiculous": 2.88e-05, + "sensitive": 2.88e-05, + "server": 2.88e-05, + "shock": 2.88e-05, + "silence": 2.88e-05, + "soldier": 2.88e-05, + "superior": 2.88e-05, + "supporters": 1.07e-07, + "thick": 2.88e-05, + "threw": 2.88e-05, + "tons": 2.88e-05, + "transition": 2.88e-05, + "violent": 2.88e-05, + "voters": 1.91e-07, + "wash": 2.88e-05, + "acid": 2.82e-05, + "actress": 2.82e-05, + "administrative": 2.82e-05, + "alan": 2.82e-05, + "alongside": 2.82e-05, + "angel": 2.82e-05, + "anxiety": 2.82e-05, + "babies": 2.82e-05, + "bars": 4.07e-07, + "bonus": 2.82e-05, + "castle": 2.82e-05, + "charity": 2.82e-05, + "clients": 2.14e-06, + "compare": 2.82e-05, + "contained": 2.82e-05, + "cooking": 2.82e-05, + "covering": 2.82e-05, + "curious": 2.82e-05, + "directors": 2e-06, + "discovery": 2.82e-05, + "discussed": 2.82e-05, + "duke": 2.82e-05, + "egypt": 2.82e-05, + "encourage": 2.82e-05, + "enforcement": 2.82e-05, + "featuring": 2.82e-05, + "finals": 2.82e-05, + "flash": 2.82e-05, + "formal": 2.82e-05, + "formula": 2.82e-05, + "fort": 1.91e-08, + "governments": 9.55e-06, + "gray": 2.82e-05, + "gross": 2.82e-05, + "horses": 1.15e-06, + "hungry": 2.82e-05, + "informed": 2.82e-05, + "innocent": 2.82e-05, + "jeff": 2.82e-05, + "losses": 2.82e-05, + "luke": 2.82e-05, + "mac": 2.82e-05, + "math": 2.82e-05, + "minds": 7.59e-07, + "mistakes": 2.82e-05, + "mystery": 2.82e-05, + "networks": 1.86e-06, + "olympics": 2.82e-05, + "palace": 2.82e-05, + "passes": 2.82e-05, + "penalty": 2.82e-05, + "pet": 2.82e-05, + "phones": 1.58e-06, + "photography": 2.82e-05, + "producing": 2.82e-05, + "protest": 2.82e-05, + "publication": 2.82e-05, + "rating": 2.82e-05, + "refer": 2.82e-05, + "respectively": 2.82e-05, + "rome": 2.82e-05, + "scheduled": 2.82e-05, + "select": 2.82e-05, + "silent": 2.82e-05, + "spoken": 2.82e-05, + "successfully": 2.82e-05, + "suffer": 2.82e-05, + "temple": 2.82e-05, + "tracks": 2.45e-07, + "trail": 2.82e-05, + "uncle": 2.82e-05, + "unusual": 2.82e-05, + "waters": 9.55e-07, + "woods": 6.31e-07, + "yo": 2.82e-05, + "arrival": 2.75e-05, + "asks": 2.75e-05, + "assault": 2.75e-05, + "awareness": 2.75e-05, + "badly": 2.75e-05, + "bath": 2.75e-05, + "captured": 2.75e-05, + "chase": 2.75e-05, + "components": 2.75e-05, + "concrete": 2.75e-05, + "dave": 2.75e-05, + "deeply": 2.75e-05, + "expectations": 2.75e-05, + "explanation": 2.75e-05, + "exposure": 2.75e-05, + "featured": 2.75e-05, + "fiction": 2.75e-05, + "guarantee": 2.75e-05, + "happiness": 2.75e-05, + "harris": 2.75e-05, + "hearts": 1.78e-06, + "horrible": 2.75e-05, + "ideal": 2.75e-05, + "illinois": 2.75e-05, + "injuries": 2.75e-05, + "islamic": 2.75e-05, + "jimmy": 2.75e-05, + "kelly": 2.75e-05, + "legend": 2.75e-05, + "lieutenant": 2.75e-05, + "mini": 2.75e-05, + "mood": 2.75e-05, + "muscle": 2.75e-05, + "muslims": 1e-07, + "passion": 2.75e-05, + "picking": 2.75e-05, + "pleased": 2.75e-05, + "procedure": 2.75e-05, + "producer": 2.75e-05, + "pushing": 2.75e-05, + "rank": 2.75e-05, + "replacement": 2.75e-05, + "retired": 2.75e-05, + "roles": 2.75e-05, + "sand": 2.75e-05, + "savings": 2.75e-05, + "settled": 2.75e-05, + "shadow": 2.75e-05, + "singles": 1.15e-07, + "tag": 2.75e-05, + "tape": 2.75e-05, + "thread": 2.75e-05, + "victoria": 2.75e-05, + "visiting": 2.75e-05, + "wage": 2.75e-05, + "wed": 4.57e-06, + "wings": 2.29e-07, + "andy": 2.69e-05, + "avenue": 2.69e-05, + "bags": 1.07e-07, + "beating": 2.69e-05, + "believes": 2.69e-05, + "blocks": 2.29e-07, + "boring": 2.69e-05, + "charlie": 2.69e-05, + "checking": 2.69e-05, + "clock": 2.69e-05, + "commissioner": 2.69e-05, + "commitment": 2.69e-05, + "confident": 2.69e-05, + "containing": 2.69e-05, + "copies": 2.69e-05, + "crimes": 6.03e-08, + "custom": 2.69e-05, + "denied": 2.69e-05, + "desk": 2.69e-05, + "drinks": 7.08e-08, + "ear": 2.69e-05, + "electricity": 2.69e-05, + "episodes": 2.69e-07, + "farmers": 1.74e-06, + "fbi": 2.69e-05, + "grounds": 1.51e-07, + "gym": 2.69e-05, + "helpful": 2.69e-05, + "horror": 2.69e-05, + "iphone": 2.69e-05, + "iraq": 2.69e-05, + "label": 2.69e-05, + "liverpool": 2.69e-05, + "locked": 2.69e-05, + "naked": 2.69e-05, + "ny": 2.69e-05, + "opens": 2.69e-05, + "output": 2.69e-05, + "persons": 1.1e-05, + "pitch": 2.69e-05, + "pizza": 2.69e-05, + "plain": 2.69e-05, + "pushed": 2.69e-05, + "raising": 2.69e-05, + "rear": 2.69e-05, + "reveal": 2.69e-05, + "romantic": 2.69e-05, + "scores": 6.46e-08, + "sisters": 3.89e-06, + "speaks": 2.69e-05, + "stages": 8.32e-08, + "strategic": 2.69e-05, + "swimming": 2.69e-05, + "welfare": 2.69e-05, + "winners": 1.32e-06, + "wire": 2.69e-05, + "worker": 2.69e-05, + "afterwards": 2.63e-05, + "alright": 2.63e-05, + "android": 2.63e-05, + "anger": 2.63e-05, + "architecture": 2.63e-05, + "assist": 2.63e-05, + "attempted": 2.63e-05, + "behalf": 2.63e-05, + "belt": 2.63e-05, + "capture": 2.63e-05, + "centers": 1.51e-06, + "ceremony": 2.63e-05, + "comic": 2.63e-05, + "cops": 3.55e-07, + "cuts": 2.63e-05, + "dallas": 2.63e-05, + "designer": 2.63e-05, + "diamond": 2.63e-05, + "disappointed": 2.63e-05, + "dressed": 2.63e-05, + "economics": 2.63e-05, + "efficient": 2.63e-05, + "electrical": 2.63e-05, + "employed": 2.63e-05, + "enjoying": 2.63e-05, + "entering": 2.63e-05, + "essentially": 2.63e-05, + "establishment": 2.63e-05, + "expecting": 2.63e-05, + "explains": 2.63e-05, + "flower": 2.63e-05, + "ghost": 2.63e-05, + "guests": 2.34e-07, + "handed": 2.63e-05, + "hockey": 2.63e-05, + "houston": 2.63e-05, + "https": 2.63e-05, + "hunting": 2.63e-05, + "industries": 2.63e-05, + "islam": 2.63e-05, + "jane": 2.63e-05, + "judges": 1.26e-06, + "kit": 2.63e-05, + "lab": 2.63e-05, + "languages": 1.17e-07, + "maps": 1.2e-07, + "min": 2.63e-05, + "morgan": 2.63e-05, + "moscow": 2.63e-05, + "na": 2.63e-05, + "nervous": 2.63e-05, + "newly": 2.63e-05, + "odd": 1.05e-07, + "op": 2.63e-05, + "ordinary": 2.63e-05, + "participate": 2.63e-05, + "philadelphia": 2.63e-05, + "prayer": 2.63e-05, + "principles": 2.63e-05, + "racist": 2.63e-05, + "rarely": 2.63e-05, + "references": 2.63e-05, + "sexy": 2.63e-05, + "skill": 2.63e-05, + "soil": 2.63e-05, + "solve": 2.63e-05, + "stomach": 2.63e-05, + "struck": 2.63e-05, + "studying": 2.63e-05, + "suck": 2.63e-05, + "supports": 5.62e-08, + "trash": 2.63e-05, + "ugly": 2.63e-05, + "vegas": 1.17e-07, + "virus": 2.63e-05, + "walker": 2.63e-05, + "whoever": 2.63e-05, + "amounts": 2.57e-05, + "anthony": 2.57e-05, + "arthur": 2.57e-05, + "aspect": 2.57e-05, + "banned": 2.57e-05, + "boost": 2.57e-05, + "bureau": 2.57e-05, + "colonel": 2.57e-05, + "comfort": 2.57e-05, + "controls": 1.12e-07, + "cousin": 2.57e-05, + "crack": 2.57e-05, + "deck": 2.57e-05, + "demands": 2.57e-05, + "dies": 2.57e-05, + "dragon": 2.57e-05, + "dramatic": 2.57e-05, + "dust": 2.57e-05, + "dutch": 2.57e-05, + "engineers": 3.72e-07, + "evolution": 2.57e-05, + "foods": 2.45e-07, + "hired": 2.57e-05, + "illness": 2.57e-05, + "inspiration": 2.57e-05, + "institution": 2.57e-05, + "kings": 1.07e-05, + "knife": 2.57e-05, + "lately": 2.57e-05, + "lowest": 2.57e-05, + "memorial": 2.57e-05, + "mexican": 2.57e-05, + "minority": 2.57e-05, + "mum": 2.57e-05, + "opinions": 2.57e-05, + "patterns": 2.57e-05, + "presents": 2.57e-05, + "priority": 2.57e-05, + "promotion": 2.57e-05, + "rail": 2.57e-05, + "readers": 1.07e-06, + "remote": 2.57e-05, + "repair": 2.57e-05, + "root": 2.57e-05, + "saint": 2.57e-05, + "steal": 2.57e-05, + "stolen": 2.57e-05, + "telephone": 2.57e-05, + "tho": 2.57e-05, + "titles": 1.55e-07, + "trans": 2.57e-05, + "ups": 3.72e-07, + "vol": 2.57e-05, + "whereas": 2.57e-05, + "abandoned": 2.51e-05, + "acquired": 2.51e-05, + "actors": 8.71e-07, + "alexander": 2.51e-05, + "alliance": 2.51e-05, + "annoying": 2.51e-05, + "ap": 2.51e-05, + "bid": 2.51e-05, + "bro": 2.51e-05, + "buddy": 2.51e-05, + "buried": 2.51e-05, + "butter": 2.51e-05, + "cares": 1.12e-07, + "columbia": 2.51e-05, + "conclusion": 2.51e-05, + "confirm": 2.51e-05, + "congratulations": 2.51e-05, + "contracts": 1.07e-07, + "convinced": 2.51e-05, + "crap": 2.51e-05, + "crystal": 2.51e-05, + "dean": 2.51e-05, + "decent": 2.51e-05, + "decline": 2.51e-05, + "delay": 2.51e-05, + "describes": 2.51e-05, + "desert": 2.51e-05, + "downtown": 2.51e-05, + "elite": 2.51e-05, + "enemies": 2.51e-05, + "forgotten": 2.51e-05, + "forth": 2.51e-05, + "gods": 2.34e-05, + "hadnt": 2e-07, + "hire": 2.51e-05, + "hop": 2.51e-05, + "hopes": 4.47e-07, + "insane": 2.51e-05, + "installed": 2.51e-05, + "israeli": 2.51e-05, + "landing": 2.51e-05, + "layer": 2.51e-05, + "managing": 2.51e-05, + "marry": 2.51e-05, + "nah": 2.51e-05, + "nowhere": 2.51e-05, + "nurse": 2.51e-05, + "obtain": 2.51e-05, + "organic": 2.51e-05, + "ownership": 2.51e-05, + "participants": 1.45e-07, + "pennsylvania": 2.51e-05, + "poetry": 2.51e-05, + "pot": 2.51e-05, + "pray": 2.51e-05, + "printed": 2.51e-05, + "recall": 2.51e-05, + "rugby": 2.51e-05, + "sake": 2.51e-05, + "sheet": 2.51e-05, + "signing": 2.51e-05, + "smooth": 2.51e-05, + "spiritual": 2.51e-05, + "stops": 2.51e-05, + "string": 2.51e-05, + "sudden": 2.51e-05, + "sweden": 2.51e-05, + "syria": 2.51e-05, + "throwing": 2.51e-05, + "thrown": 2.51e-05, + "vacation": 2.51e-05, + "abroad": 2.45e-05, + "arab": 2.45e-05, + "assigned": 2.45e-05, + "associate": 2.45e-05, + "assumed": 2.45e-05, + "atlantic": 2.45e-05, + "bench": 2.45e-05, + "bother": 2.45e-05, + "broadcast": 2.45e-05, + "bye": 2.45e-05, + "cambridge": 2.45e-05, + "citizen": 2.45e-05, + "cleaning": 2.45e-05, + "compete": 2.45e-05, + "consists": 2.45e-05, + "consumers": 3.63e-07, + "contributed": 2.45e-05, + "cricket": 2.45e-05, + "critics": 2.29e-07, + "damaged": 2.45e-05, + "disaster": 2.45e-05, + "discover": 2.45e-05, + "disney": 2.45e-05, + "entrance": 2.45e-05, + "equally": 2.45e-05, + "fallen": 2.45e-05, + "figured": 2.45e-05, + "fitness": 2.45e-05, + "francis": 2.45e-05, + "friendship": 2.45e-05, + "gary": 2.45e-05, + "handling": 2.45e-05, + "idiot": 2.45e-05, + "intense": 2.45e-05, + "keys": 3.8e-07, + "lawyers": 7.24e-07, + "lifetime": 2.45e-05, + "liquid": 2.45e-05, + "makeup": 2.45e-05, + "medal": 2.45e-05, + "mortgage": 2.45e-05, + "narrative": 2.45e-05, + "narrow": 2.45e-05, + "nba": 2.45e-05, + "observed": 2.45e-05, + "occasionally": 2.45e-05, + "pan": 2.45e-05, + "physics": 2.45e-05, + "posting": 2.45e-05, + "potentially": 2.45e-05, + "reduction": 2.45e-05, + "reflect": 2.45e-05, + "refuse": 2.45e-05, + "researchers": 9.77e-08, + "resource": 2.45e-05, + "roger": 2.45e-05, + "ross": 2.45e-05, + "sciences": 1.7e-07, + "seattle": 2.45e-05, + "serves": 2.45e-05, + "shell": 1.51e-05, + "silly": 2.45e-05, + "subsequent": 2.45e-05, + "theyd": 1.86e-07, + "towns": 3.98e-06, + "translation": 2.45e-05, + "visible": 2.45e-05, + "yep": 2.45e-05, + "adds": 2.4e-05, + "allen": 2.4e-05, + "amendment": 2.4e-05, + "angle": 2.4e-05, + "arizona": 2.4e-05, + "arrive": 2.4e-05, + "belong": 2.4e-05, + "berlin": 2.4e-05, + "bishop": 2.4e-05, + "channels": 7.94e-07, + "clark": 2.4e-05, + "commonly": 2.4e-05, + "connect": 2.4e-05, + "defensive": 2.4e-05, + "designs": 1.38e-07, + "efficiency": 2.4e-05, + "enterprise": 2.4e-05, + "experiment": 2.4e-05, + "feb": 2.4e-05, + "females": 3.39e-07, + "findings": 2.4e-05, + "firms": 2.4e-06, + "forum": 2.4e-05, + "gifts": 2.4e-05, + "grass": 2.4e-05, + "hence": 2.4e-05, + "increasingly": 2.4e-05, + "incredibly": 2.4e-05, + "iv": 1.41e-07, + "jay": 2.4e-05, + "journalist": 2.4e-05, + "kicked": 2.4e-05, + "lessons": 2.4e-05, + "lists": 1.07e-07, + "maintained": 2.4e-05, + "mill": 2.4e-05, + "mo": 2.4e-05, + "occasion": 2.4e-05, + "oxford": 2.4e-05, + "pace": 2.4e-05, + "passenger": 2.4e-05, + "pen": 2.4e-05, + "pope": 2.4e-05, + "possession": 2.4e-05, + "pp": 2.4e-05, + "races": 3.24e-07, + "rapid": 2.4e-05, + "regulation": 2.4e-05, + "resident": 2.4e-05, + "rocks": 7.08e-07, + "shaped": 2.4e-05, + "sixth": 2.4e-05, + "spin": 2.4e-05, + "styles": 1.1e-07, + "subjects": 5.75e-07, + "sucks": 2.4e-05, + "suitable": 2.4e-05, + "thirty": 2.4e-05, + "valid": 2.4e-05, + "vital": 2.4e-05, + "whilst": 2.4e-05, + "agriculture": 2.34e-05, + "alleged": 2.34e-05, + "anna": 2.34e-05, + "atlanta": 2.34e-05, + "bands": 3.63e-06, + "christians": 5.01e-07, + "collect": 2.34e-05, + "commerce": 2.34e-05, + "cop": 2.34e-05, + "creek": 2.34e-05, + "currency": 2.34e-05, + "emotions": 2.34e-05, + "exhibition": 2.34e-05, + "fraud": 2.34e-05, + "funeral": 2.34e-05, + "genuine": 2.34e-05, + "gordon": 2.34e-05, + "honey": 2.34e-05, + "honour": 2.34e-05, + "hook": 2.34e-05, + "hunter": 2.34e-05, + "immigrants": 7.24e-08, + "improving": 2.34e-05, + "instructions": 2.34e-05, + "introduce": 2.34e-05, + "kansas": 2.34e-05, + "km": 2.34e-05, + "lands": 5.01e-07, + "legacy": 2.34e-05, + "log": 2.34e-05, + "matthew": 2.34e-05, + "merely": 2.34e-05, + "monitor": 2.34e-05, + "mothers": 2.09e-05, + "nov": 2.34e-05, + "patrick": 2.34e-05, + "phil": 2.34e-05, + "prisoners": 5.25e-07, + "programming": 2.34e-05, + "publishing": 2.34e-05, + "ratio": 2.34e-05, + "regret": 2.34e-05, + "rejected": 2.34e-05, + "remind": 2.34e-05, + "resort": 2.34e-05, + "resulted": 2.34e-05, + "reverse": 2.34e-05, + "routine": 2.34e-05, + "scary": 2.34e-05, + "seed": 2.34e-05, + "settle": 2.34e-05, + "sin": 2.34e-05, + "spell": 2.34e-05, + "summary": 2.34e-05, + "survival": 2.34e-05, + "sword": 2.34e-05, + "tongue": 2.34e-05, + "ward": 2.34e-05, + "waves": 1e-07, + "wayne": 2.34e-05, + "achievement": 2.29e-05, + "anderson": 2.29e-05, + "argued": 2.29e-05, + "asleep": 2.29e-05, + "austin": 2.29e-05, + "automatic": 2.29e-05, + "begun": 2.29e-05, + "behaviour": 2.29e-05, + "cd": 2.29e-05, + "cents": 8.91e-08, + "coat": 2.29e-05, + "comprehensive": 2.29e-05, + "consent": 2.29e-05, + "daddy": 2.29e-05, + "destruction": 2.29e-05, + "diego": 2.29e-05, + "diseases": 6.46e-08, + "divorce": 2.29e-05, + "doc": 2.29e-05, + "drove": 2.29e-05, + "ears": 5.01e-08, + "engage": 2.29e-05, + "extraordinary": 2.29e-05, + "fate": 2.29e-05, + "frequency": 2.29e-05, + "gaming": 2.29e-05, + "gene": 2.29e-05, + "glory": 2.29e-05, + "headquarters": 2.29e-05, + "heritage": 2.29e-05, + "initiative": 2.29e-05, + "interviews": 2.29e-05, + "jean": 2.29e-05, + "juice": 2.29e-05, + "landscape": 2.29e-05, + "logic": 2.29e-05, + "meets": 2.29e-05, + "melbourne": 2.29e-05, + "microsoft": 2.29e-05, + "objective": 2.29e-05, + "organisation": 2.29e-05, + "privacy": 2.29e-05, + "procedures": 2.29e-05, + "profits": 2.29e-05, + "reducing": 2.29e-05, + "regard": 2.29e-05, + "representing": 2.29e-05, + "residence": 2.29e-05, + "roughly": 2.29e-05, + "salary": 2.29e-05, + "scoring": 2.29e-05, + "script": 2.29e-05, + "searching": 2.29e-05, + "sections": 1.51e-07, + "strip": 2.29e-05, + "surrounded": 2.29e-05, + "threatened": 2.29e-05, + "transferred": 2.29e-05, + "tube": 2.29e-05, + "universities": 2.29e-05, + "walter": 2.29e-05, + "wisconsin": 2.29e-05, + "wouldve": 4.9e-07, + "writes": 2.29e-05, + "ambassador": 2.24e-05, + "ann": 2.24e-05, + "apps": 4.07e-07, + "awarded": 2.24e-05, + "banking": 2.24e-05, + "breast": 2.24e-05, + "carter": 2.24e-05, + "chelsea": 2.24e-05, + "chemistry": 2.24e-05, + "concluded": 2.24e-05, + "consumption": 2.24e-05, + "corruption": 2.24e-05, + "cotton": 2.24e-05, + "crossed": 2.24e-05, + "detroit": 2.24e-05, + "discount": 2.24e-05, + "dozen": 2.24e-05, + "engines": 5.89e-07, + "epic": 2.24e-05, + "exception": 2.24e-05, + "exit": 2.24e-05, + "expand": 2.24e-05, + "fancy": 2.24e-05, + "gorgeous": 2.24e-05, + "grateful": 2.24e-05, + "heroes": 2.24e-05, + "holes": 1.51e-07, + "impression": 2.24e-05, + "inches": 2.24e-05, + "indicate": 2.24e-05, + "input": 2.24e-05, + "johnny": 2.24e-05, + "josh": 2.24e-05, + "knock": 2.24e-05, + "leather": 2.24e-05, + "lips": 2.24e-05, + "luxury": 2.24e-05, + "lyrics": 2.24e-05, + "manufacturers": 6.31e-07, + "masters": 6.17e-06, + "movements": 6.17e-07, + "oct": 2.24e-05, + "operated": 2.24e-05, + "ought": 2.24e-05, + "outcome": 2.24e-05, + "painted": 2.24e-05, + "poll": 2.24e-05, + "preferred": 2.24e-05, + "pulling": 2.24e-05, + "ranked": 2.24e-05, + "referring": 2.24e-05, + "removal": 2.24e-05, + "rep": 2.24e-05, + "reporter": 2.24e-05, + "rio": 2.24e-05, + "risks": 2.24e-05, + "rob": 2.24e-05, + "screaming": 2.24e-05, + "sept": 2.24e-05, + "sequence": 2.24e-05, + "singapore": 2.24e-05, + "stretch": 2.24e-05, + "tear": 2.24e-05, + "tennis": 2.24e-05, + "terrorist": 2.24e-05, + "theater": 2.24e-05, + "ties": 2.24e-05, + "twelve": 2.24e-05, + "versions": 1e-07, + "virgin": 2.24e-05, + "voices": 8.71e-08, + "wishes": 2.24e-05, + "wolf": 2.24e-05, + "absence": 2.19e-05, + "agricultural": 2.19e-05, + "asshole": 2.19e-05, + "ate": 2.19e-05, + "athletes": 5.62e-07, + "bears": 6.61e-07, + "blues": 4.17e-07, + "boxes": 2.19e-05, + "bruce": 2.19e-05, + "bull": 2.19e-05, + "cameras": 7.76e-07, + "commonwealth": 2.19e-05, + "contribute": 2.19e-05, + "contribution": 2.19e-05, + "contributions": 2.19e-05, + "couples": 1.7e-06, + "delicious": 2.19e-05, + "deny": 2.19e-05, + "deserves": 2.19e-05, + "ease": 2.19e-05, + "extend": 2.19e-05, + "fame": 2.19e-05, + "flood": 2.19e-05, + "generated": 2.19e-05, + "genetic": 2.19e-05, + "glasses": 2.19e-05, + "impressed": 2.19e-05, + "indicated": 2.19e-05, + "instant": 2.19e-05, + "investors": 2.63e-07, + "involves": 2.19e-05, + "kate": 2.19e-05, + "kills": 2.19e-05, + "liberty": 2.19e-05, + "mans": 4.79e-06, + "maria": 2.19e-05, + "ministers": 2.29e-06, + "monitoring": 2.19e-05, + "occurs": 2.19e-05, + "passengers": 2.75e-07, + "photographs": 2.19e-05, + "principle": 2.19e-05, + "producers": 3.72e-07, + "progressive": 2.19e-05, + "punishment": 2.19e-05, + "rally": 2.19e-05, + "rapidly": 2.19e-05, + "reader": 2.19e-05, + "representation": 2.19e-05, + "restaurants": 6.76e-07, + "reveals": 2.19e-05, + "roots": 9.55e-08, + "samples": 5.37e-08, + "shops": 4.27e-07, + "sum": 2.19e-05, + "swing": 2.19e-05, + "tail": 2.19e-05, + "texts": 6.17e-08, + "twin": 2.19e-05, + "upcoming": 2.19e-05, + "veterans": 6.46e-07, + "alert": 2.14e-05, + "arena": 2.14e-05, + "arguments": 1.07e-07, + "aug": 2.14e-05, + "billy": 2.14e-05, + "boom": 2.14e-05, + "boots": 3.89e-08, + "brave": 2.14e-05, + "claiming": 2.14e-05, + "column": 2.14e-05, + "commit": 2.14e-05, + "compensation": 2.14e-05, + "composition": 2.14e-05, + "computers": 7.24e-07, + "conservation": 2.14e-05, + "constitutional": 2.14e-05, + "crossing": 2.14e-05, + "defending": 2.14e-05, + "density": 2.14e-05, + "di": 2.14e-05, + "difficulty": 2.14e-05, + "dropping": 2.14e-05, + "drops": 2.14e-05, + "elementary": 2.14e-05, + "ethnic": 2.14e-05, + "expenses": 2.14e-05, + "fleet": 2.14e-05, + "foster": 2.14e-05, + "fuckin": 2.14e-05, + "fundamental": 2.14e-05, + "gen": 2.14e-05, + "genius": 2.14e-05, + "greatly": 2.14e-05, + "guidance": 2.14e-05, + "hospitals": 1.07e-06, + "infection": 2.14e-05, + "instagram": 2.14e-05, + "intention": 2.14e-05, + "iowa": 2.14e-05, + "jokes": 4.07e-07, + "knee": 2.14e-05, + "mechanical": 2.14e-05, + "nigeria": 2.14e-05, + "parks": 1.95e-06, + "participation": 2.14e-05, + "periods": 1.23e-07, + "precious": 2.14e-05, + "pregnancy": 2.14e-05, + "premium": 2.14e-05, + "preparing": 2.14e-05, + "pretend": 2.14e-05, + "priest": 2.14e-05, + "prominent": 2.14e-05, + "proven": 2.14e-05, + "radical": 2.14e-05, + "remembered": 2.14e-05, + "requested": 2.14e-05, + "residential": 2.14e-05, + "reward": 2.14e-05, + "rings": 1.78e-07, + "robin": 2.14e-05, + "russell": 2.14e-05, + "satellite": 2.14e-05, + "shake": 2.14e-05, + "shore": 2.14e-05, + "spots": 7.24e-08, + "stats": 2.14e-05, + "struggling": 2.14e-05, + "substantial": 2.14e-05, + "teen": 2.14e-05, + "temperatures": 2.14e-05, + "transmission": 2.14e-05, + "trap": 2.14e-05, + "uniform": 2.14e-05, + "wildlife": 2.14e-05, + "wooden": 2.14e-05, + "ads": 1.91e-07, + "aggressive": 2.09e-05, + "anne": 2.09e-05, + "answered": 2.09e-05, + "apparent": 2.09e-05, + "bang": 2.09e-05, + "blast": 2.09e-05, + "bones": 9.33e-08, + "brands": 1.32e-06, + "centuries": 2.09e-05, + "communist": 2.09e-05, + "complaint": 2.09e-05, + "component": 2.09e-05, + "connections": 5.25e-08, + "courage": 2.09e-05, + "cure": 2.09e-05, + "del": 2.09e-05, + "desperate": 2.09e-05, + "diversity": 2.09e-05, + "duties": 2.09e-05, + "encouraged": 2.09e-05, + "eve": 2.09e-05, + "faculty": 2.09e-05, + "feedback": 2.09e-05, + "fighter": 2.09e-05, + "frozen": 2.09e-05, + "guards": 6.17e-07, + "hiding": 2.09e-05, + "humanity": 2.09e-05, + "ian": 2.09e-05, + "il": 2.63e-07, + "innovation": 2.09e-05, + "instruments": 1.07e-07, + "invest": 2.09e-05, + "jacket": 2.09e-05, + "justin": 2.09e-05, + "legislative": 2.09e-05, + "listing": 2.09e-05, + "manual": 2.09e-05, + "murdered": 2.09e-05, + "nursing": 2.09e-05, + "occupied": 2.09e-05, + "ongoing": 2.09e-05, + "operator": 2.09e-05, + "painful": 2.09e-05, + "pound": 2.09e-05, + "preparation": 2.09e-05, + "punch": 2.09e-05, + "purple": 2.09e-05, + "railroad": 2.09e-05, + "registration": 2.09e-05, + "releases": 2.09e-05, + "rick": 2.09e-05, + "romance": 2.09e-05, + "someones": 1.62e-06, + "submitted": 2.09e-05, + "sufficient": 2.09e-05, + "survived": 2.09e-05, + "suspended": 2.09e-05, + "technologies": 2.09e-05, + "tissue": 2.09e-05, + "trailer": 2.09e-05, + "trends": 2.09e-05, + "trials": 1.66e-07, + "ukraine": 2.09e-05, + "underground": 2.09e-05, + "versus": 2.09e-05, + "virtual": 2.09e-05, + "walks": 2.09e-05, + "wounded": 2.09e-05, + "ali": 2.04e-05, + "amongst": 2.04e-05, + "announcement": 2.04e-05, + "arranged": 2.04e-05, + "arsenal": 2.04e-05, + "attending": 2.04e-05, + "attracted": 2.04e-05, + "biological": 2.04e-05, + "bite": 2.04e-05, + "blocked": 2.04e-05, + "boards": 1.29e-06, + "burned": 2.04e-05, + "categories": 2.04e-05, + "checks": 2.04e-05, + "chip": 2.04e-05, + "companys": 1.62e-07, + "concerning": 2.04e-05, + "dare": 2.04e-05, + "database": 2.04e-05, + "define": 2.04e-05, + "discrimination": 2.04e-05, + "disorder": 2.04e-05, + "distributed": 2.04e-05, + "districts": 1.78e-06, + "documentary": 2.04e-05, + "domain": 2.04e-05, + "dynamic": 2.04e-05, + "edited": 2.04e-05, + "engagement": 2.04e-05, + "explore": 2.04e-05, + "favour": 2.04e-05, + "fewer": 2.04e-05, + "footage": 2.04e-05, + "giants": 5.5e-07, + "grave": 2.04e-05, + "hamilton": 2.04e-05, + "implementation": 2.04e-05, + "indiana": 2.04e-05, + "investigate": 2.04e-05, + "jazz": 2.04e-05, + "jon": 2.04e-05, + "jonathan": 2.04e-05, + "laboratory": 2.04e-05, + "lawrence": 2.04e-05, + "lincoln": 2.04e-05, + "literary": 2.04e-05, + "mask": 2.04e-05, + "massachusetts": 2.04e-05, + "midnight": 2.04e-05, + "minnesota": 2.04e-05, + "mouse": 2.04e-05, + "oscar": 2.04e-05, + "packed": 2.04e-05, + "piano": 2.04e-05, + "praise": 2.04e-05, + "presentation": 2.04e-05, + "psychology": 2.04e-05, + "relation": 2.04e-05, + "restrictions": 2.04e-05, + "rocket": 2.04e-05, + "ruin": 2.04e-05, + "saudi": 2.04e-05, + "sean": 2.04e-05, + "sec": 2.04e-05, + "secrets": 2.04e-07, + "slave": 2.04e-05, + "stability": 2.04e-05, + "steady": 2.04e-05, + "stones": 1.32e-06, + "symbol": 2.04e-05, + "terminal": 2.04e-05, + "toilet": 2.04e-05, + "treaty": 2.04e-05, + "triple": 2.04e-05, + "unlikely": 2.04e-05, + "updates": 2.04e-05, + "vietnam": 2.04e-05, + "viewed": 2.04e-05, + "affair": 2e-05, + "agenda": 2e-05, + "bat": 2e-05, + "bow": 2e-05, + "calendar": 2e-05, + "cape": 2e-05, + "collective": 2e-05, + "conversations": 2e-05, + "cooperation": 2e-05, + "craft": 2e-05, + "darkness": 2e-05, + "deeper": 2e-05, + "devil": 2e-05, + "edit": 2e-05, + "enable": 2e-05, + "equity": 2e-05, + "estimates": 2e-05, + "failing": 2e-05, + "finishing": 2e-05, + "fortune": 2e-05, + "gates": 1.07e-07, + "goodbye": 2e-05, + "graham": 2e-05, + "hardware": 2e-05, + "hillary": 2e-05, + "hurts": 2e-05, + "intellectual": 2e-05, + "invite": 2e-05, + "involvement": 2e-05, + "kentucky": 2e-05, + "madrid": 2e-05, + "mi": 2e-05, + "nuts": 2e-05, + "oregon": 2e-05, + "partly": 2e-05, + "petition": 2e-05, + "phrase": 2e-05, + "physically": 2e-05, + "protecting": 2e-05, + "racial": 2e-05, + "rated": 2e-05, + "regime": 2e-05, + "rivers": 6.76e-07, + "rounds": 1.23e-07, + "ruled": 2e-05, + "sa": 2e-05, + "sauce": 2e-05, + "seal": 2e-05, + "separated": 2e-05, + "shield": 2e-05, + "similarly": 2e-05, + "slide": 2e-05, + "stem": 2e-05, + "summit": 2e-05, + "talented": 2e-05, + "throat": 2e-05, + "tiger": 2e-05, + "touched": 2e-05, + "toy": 2e-05, + "visits": 2e-05, + "warriors": 4.07e-07, + "wisdom": 2e-05, + "accounting": 1.95e-05, + "alien": 1.95e-05, + "attacking": 1.95e-05, + "awkward": 1.95e-05, + "beast": 1.95e-05, + "beef": 1.95e-05, + "candy": 1.95e-05, + "carrier": 1.95e-05, + "celebration": 1.95e-05, + "celebrity": 1.95e-05, + "certificate": 1.95e-05, + "cited": 1.95e-05, + "clay": 1.95e-05, + "coaching": 1.95e-05, + "colleagues": 2.19e-07, + "constructed": 1.95e-05, + "dated": 1.95e-05, + "dec": 1.95e-05, + "default": 1.95e-05, + "delhi": 1.95e-05, + "derived": 1.95e-05, + "dialogue": 1.95e-05, + "disabled": 1.95e-05, + "distinct": 1.95e-05, + "drag": 1.95e-05, + "educated": 1.95e-05, + "eligible": 1.95e-05, + "estimate": 1.95e-05, + "execution": 1.95e-05, + "existed": 1.95e-05, + "fifty": 1.95e-05, + "followers": 1.95e-05, + "fool": 1.95e-05, + "framework": 1.95e-05, + "franchise": 1.95e-05, + "funded": 1.95e-05, + "furniture": 1.95e-05, + "generations": 6.17e-07, + "guaranteed": 1.95e-05, + "integrated": 1.95e-05, + "intelligent": 1.95e-05, + "interaction": 1.95e-05, + "jet": 1.95e-05, + "journalists": 2.4e-07, + "lifestyle": 1.95e-05, + "lighting": 1.95e-05, + "lisa": 1.95e-05, + "loop": 1.95e-05, + "mall": 1.95e-05, + "mp": 1.95e-05, + "overseas": 1.95e-05, + "performances": 1.95e-05, + "philippines": 2.51e-08, + "polish": 1.95e-05, + "recommendations": 1.95e-05, + "recover": 1.95e-05, + "regarded": 1.95e-05, + "relax": 1.95e-05, + "reliable": 1.95e-05, + "rely": 1.95e-05, + "remarkable": 1.95e-05, + "responses": 1.95e-05, + "ruling": 1.95e-05, + "sacrifice": 1.95e-05, + "se": 1.95e-05, + "sole": 1.95e-05, + "stopping": 1.95e-05, + "strategies": 1.95e-05, + "succeed": 1.95e-05, + "tables": 1.29e-07, + "tale": 1.95e-05, + "targets": 8.51e-07, + "timing": 1.95e-05, + "ton": 1.95e-05, + "volunteers": 5.37e-08, + "witnesses": 1.95e-05, + "wore": 1.95e-05, + "worship": 1.95e-05, + "worthy": 1.95e-05, + "acted": 1.91e-05, + "alarm": 1.91e-05, + "bass": 1.91e-05, + "bloody": 1.91e-05, + "breathing": 1.91e-05, + "butt": 1.91e-05, + "characteristics": 1.91e-05, + "cnn": 1.91e-05, + "collaboration": 1.91e-05, + "con": 1.91e-05, + "consideration": 1.91e-05, + "counts": 1.66e-07, + "creates": 1.91e-05, + "crucial": 1.91e-05, + "daughters": 6.03e-06, + "dependent": 1.91e-05, + "discussions": 1.91e-05, + "drives": 1.45e-07, + "dual": 1.91e-05, + "edinburgh": 1.91e-05, + "equipped": 1.91e-05, + "expanded": 1.91e-05, + "experimental": 1.91e-05, + "feeding": 1.91e-05, + "filter": 1.91e-05, + "galaxy": 1.91e-05, + "globe": 1.91e-05, + "grades": 1.91e-05, + "greece": 1.91e-05, + "gulf": 1.91e-05, + "highlights": 1.91e-05, + "hoped": 1.91e-05, + "intent": 1.91e-05, + "involve": 1.91e-05, + "judgment": 1.91e-05, + "kennedy": 1.91e-05, + "knight": 1.91e-05, + "larry": 1.91e-05, + "las": 4.47e-07, + "lmao": 1.91e-05, + "logo": 1.91e-05, + "malaysia": 1.91e-05, + "mature": 1.91e-05, + "moore": 1.91e-05, + "nazi": 1.91e-05, + "netherlands": 1.91e-05, + "odds": 2e-08, + "peaceful": 1.91e-05, + "philip": 1.91e-05, + "photographer": 1.91e-05, + "pin": 1.91e-05, + "prevention": 1.91e-05, + "printing": 1.91e-05, + "promoting": 1.91e-05, + "publicly": 1.91e-05, + "pump": 1.91e-05, + "repeated": 1.91e-05, + "replied": 1.91e-05, + "requests": 1.91e-05, + "revenge": 1.91e-05, + "satisfied": 1.91e-05, + "seeds": 6.31e-08, + "signals": 8.91e-08, + "slip": 1.91e-05, + "spaces": 7.41e-08, + "spare": 1.91e-05, + "specialist": 1.91e-05, + "stocks": 2.14e-07, + "stranger": 1.91e-05, + "submit": 1.91e-05, + "surprising": 1.91e-05, + "tap": 1.91e-05, + "thompson": 1.91e-05, + "threats": 1.91e-05, + "tourism": 1.91e-05, + "turkish": 1.91e-05, + "volunteer": 1.91e-05, + "acceptable": 1.86e-05, + "allies": 6.31e-08, + "attempting": 1.86e-05, + "auction": 1.86e-05, + "bonds": 4.27e-07, + "challenging": 1.86e-05, + "chaos": 3.8e-08, + "churches": 1.86e-05, + "cleveland": 1.86e-05, + "cm": 1.86e-05, + "composed": 1.86e-05, + "concentration": 1.86e-05, + "copper": 1.86e-05, + "corp": 1.86e-05, + "corps": 1.51e-07, + "counting": 1.86e-05, + "credits": 8.32e-08, + "dawn": 1.86e-05, + "dispute": 1.86e-05, + "earnings": 1.86e-05, + "editing": 1.86e-05, + "everyones": 7.94e-07, + "executed": 1.86e-05, + "firing": 1.86e-05, + "fits": 1.86e-05, + "frequent": 1.86e-05, + "gardens": 3.09e-07, + "gathered": 1.86e-05, + "hilarious": 1.86e-05, + "huh": 1.86e-05, + "ignored": 1.86e-05, + "improvements": 1.86e-05, + "investments": 1.86e-05, + "isis": 2.95e-08, + "margin": 1.86e-05, + "mars": 4.47e-08, + "maryland": 1.86e-05, + "mechanism": 1.86e-05, + "moderate": 1.86e-05, + "murray": 1.86e-05, + "oklahoma": 1.86e-05, + "opera": 1.86e-05, + "overcome": 1.86e-05, + "parallel": 1.86e-05, + "passage": 1.86e-05, + "pit": 1.86e-05, + "psychological": 1.86e-05, + "publications": 1.23e-07, + "quest": 1.86e-05, + "radiation": 1.86e-05, + "shocked": 1.86e-05, + "sized": 1.86e-05, + "stroke": 1.86e-05, + "stunning": 1.86e-05, + "tanks": 3.02e-07, + "tokyo": 1.86e-05, + "topics": 1.86e-05, + "trains": 4.57e-07, + "traveling": 1.86e-05, + "treating": 1.86e-05, + "tune": 1.86e-05, + "utility": 1.86e-05, + "vessel": 1.86e-05, + "weed": 1.86e-05, + "wherever": 1.86e-05, + "acquisition": 1.82e-05, + "addressed": 1.82e-05, + "alabama": 1.82e-05, + "alice": 1.82e-05, + "angels": 7.76e-07, + "anime": 1.82e-05, + "announce": 1.82e-05, + "autumn": 1.82e-05, + "backed": 1.82e-05, + "barry": 1.82e-05, + "bold": 1.82e-05, + "borders": 6.61e-08, + "breathe": 1.82e-05, + "cameron": 1.82e-05, + "choosing": 1.82e-05, + "classical": 1.82e-05, + "classified": 1.82e-05, + "clip": 1.82e-05, + "coaches": 1.82e-05, + "coins": 8.51e-08, + "concepts": 1.82e-05, + "conspiracy": 1.82e-05, + "controversy": 1.82e-05, + "convince": 1.82e-05, + "cooper": 1.82e-05, + "disappeared": 1.82e-05, + "eh": 1.82e-05, + "encounter": 1.82e-05, + "equality": 1.82e-05, + "exam": 1.82e-05, + "examination": 1.82e-05, + "fails": 1.82e-05, + "fathers": 1.2e-05, + "federation": 1.82e-05, + "fi": 1.82e-05, + "fiscal": 1.82e-05, + "guardian": 1.82e-05, + "hd": 1.82e-05, + "homeless": 1.82e-05, + "instrument": 1.82e-05, + "intervention": 1.82e-05, + "jerry": 1.82e-05, + "lover": 1.82e-05, + "mainstream": 1.82e-05, + "menu": 1.82e-05, + "missouri": 1.82e-05, + "mounted": 1.82e-05, + "mutual": 1.82e-05, + "nope": 1.82e-05, + "occasions": 1.82e-05, + "offense": 1.82e-05, + "oral": 1.82e-05, + "panic": 1.82e-05, + "pays": 1.82e-05, + "pursue": 1.82e-05, + "realise": 1.82e-05, + "refugees": 1.82e-05, + "removing": 1.82e-05, + "requirement": 1.82e-05, + "responded": 1.82e-05, + "rip": 1.82e-05, + "ruined": 1.82e-05, + "scope": 1.82e-05, + "segment": 1.82e-05, + "spectrum": 1.82e-05, + "stays": 1.38e-08, + "ted": 1.82e-05, + "terror": 1.82e-05, + "uh": 1.82e-05, + "va": 1.82e-05, + "venture": 1.82e-05, + "virtually": 1.82e-05, + "waited": 1.82e-05, + "warren": 1.82e-05, + "worn": 1.82e-05, + "yea": 1.82e-05, + "ac": 1.78e-05, + "accompanied": 1.78e-05, + "adams": 1.58e-06, + "aids": 7.24e-08, + "aimed": 1.78e-05, + "alpha": 1.78e-05, + "approaches": 1.78e-05, + "arguing": 1.78e-05, + "arrangement": 1.78e-05, + "beliefs": 1.78e-05, + "boats": 5.13e-07, + "boundaries": 1.78e-05, + "brick": 1.78e-05, + "brooklyn": 1.78e-05, + "colleges": 1.17e-06, + "considerable": 1.78e-05, + "conventional": 1.78e-05, + "danny": 1.78e-05, + "des": 1.78e-05, + "designated": 1.78e-05, + "dvd": 1.78e-05, + "emperor": 1.78e-05, + "employers": 6.03e-07, + "enormous": 1.78e-05, + "errors": 1.78e-05, + "focusing": 1.78e-05, + "forgive": 1.78e-05, + "gains": 1.32e-08, + "garage": 1.78e-05, + "gathering": 1.78e-05, + "guidelines": 1.78e-05, + "handled": 1.78e-05, + "hosted": 1.78e-05, + "indians": 1.23e-07, + "indonesia": 1.78e-05, + "inquiry": 1.78e-05, + "inspector": 1.78e-05, + "jumped": 1.78e-05, + "khan": 1.78e-05, + "li": 1.78e-05, + "lion": 1.78e-05, + "loaded": 1.78e-05, + "lonely": 1.78e-05, + "maintaining": 1.78e-05, + "measured": 1.78e-05, + "mercy": 1.78e-05, + "nevertheless": 1.78e-05, + "newspapers": 5.62e-07, + "outer": 1.78e-05, + "oxygen": 1.78e-05, + "pipe": 1.78e-05, + "pissed": 1.78e-05, + "poem": 1.78e-05, + "powder": 1.78e-05, + "powered": 1.78e-05, + "promises": 1.78e-05, + "quotes": 1.78e-05, + "racism": 1.78e-05, + "ratings": 1.78e-05, + "reads": 8.32e-08, + "recovered": 1.78e-05, + "refers": 1.78e-05, + "roy": 1.78e-05, + "rude": 1.78e-05, + "screw": 1.78e-05, + "seventh": 1.78e-05, + "shelter": 1.78e-05, + "signature": 1.78e-05, + "sooner": 1.78e-05, + "spider": 1.78e-05, + "stewart": 1.78e-05, + "strikes": 1e-07, + "suggesting": 1.78e-05, + "suits": 1.15e-07, + "toys": 7.94e-08, + "tracking": 1.78e-05, + "tribute": 1.78e-05, + "trigger": 1.78e-05, + "vary": 1.78e-05, + "venue": 1.78e-05, + "wages": 1.78e-05, + "wells": 9.12e-08, + "wheels": 1.12e-07, + "ye": 1.78e-05, + "abc": 1.74e-05, + "abortion": 1.74e-05, + "accuracy": 1.74e-05, + "albert": 1.74e-05, + "applying": 1.74e-05, + "artificial": 1.74e-05, + "belongs": 1.74e-05, + "beneath": 1.74e-05, + "bitcoin": 1.74e-05, + "bullet": 1.74e-05, + "burns": 1.74e-05, + "carl": 1.74e-05, + "celebrated": 1.74e-05, + "consistently": 1.74e-05, + "conversion": 1.74e-05, + "copyright": 1.74e-05, + "counties": 1.74e-05, + "democrat": 1.74e-05, + "deposit": 1.74e-05, + "destination": 1.74e-05, + "dirt": 1.74e-05, + "diverse": 1.74e-05, + "divine": 1.74e-05, + "emails": 1.74e-05, + "er": 1.74e-05, + "exclusively": 1.74e-05, + "export": 1.74e-05, + "fastest": 1.74e-05, + "formerly": 1.74e-05, + "functional": 1.74e-05, + "gather": 1.74e-05, + "grandfather": 1.74e-05, + "habit": 1.74e-05, + "harvard": 1.74e-05, + "indicates": 1.74e-05, + "isolated": 1.74e-05, + "jealous": 1.74e-05, + "knocked": 1.74e-05, + "landed": 1.74e-05, + "laughed": 1.74e-05, + "laura": 1.74e-05, + "lazy": 1.74e-05, + "mama": 1.74e-05, + "marshall": 1.74e-05, + "mitchell": 1.74e-05, + "modified": 1.74e-05, + "municipal": 1.74e-05, + "naval": 1.74e-05, + "neighbors": 1.66e-06, + "nelson": 1.74e-05, + "neutral": 1.74e-05, + "noble": 1.74e-05, + "oldest": 1.74e-05, + "pat": 1.74e-05, + "picks": 1.74e-05, + "poland": 1.74e-05, + "popularity": 1.74e-05, + "professionals": 6.76e-08, + "pussy": 1.74e-05, + "reactions": 1.74e-05, + "relate": 1.74e-05, + "robot": 1.74e-05, + "sacred": 1.74e-05, + "securities": 1.74e-05, + "shoe": 1.74e-05, + "speakers": 5.62e-07, + "springs": 2.63e-07, + "spy": 1.74e-05, + "steven": 1.74e-05, + "suggestions": 1.74e-05, + "supplied": 1.74e-05, + "susan": 1.74e-05, + "suspension": 1.74e-05, + "terrorism": 1.74e-05, + "terry": 1.74e-05, + "toxic": 1.74e-05, + "treasury": 1.74e-05, + "tunnel": 1.74e-05, + "unions": 1.74e-06, + "upgrade": 1.74e-05, + "warrant": 1.74e-05, + "wider": 1.74e-05, + "wound": 1.74e-05, + "aaron": 1.7e-05, + "actively": 1.7e-05, + "afghanistan": 1.7e-05, + "ai": 1.7e-05, + "applies": 1.7e-05, + "arrangements": 1.7e-05, + "asset": 1.7e-05, + "assuming": 1.7e-05, + "backing": 1.7e-05, + "baker": 1.7e-05, + "barcelona": 1.7e-05, + "blessed": 1.7e-05, + "brazilian": 1.7e-05, + "brush": 1.7e-05, + "burden": 1.7e-05, + "campbell": 1.7e-05, + "carries": 2.29e-07, + "casual": 1.7e-05, + "certified": 1.7e-05, + "charter": 1.7e-05, + "chef": 1.7e-05, + "citys": 1.32e-07, + "civilian": 1.7e-05, + "coalition": 1.7e-05, + "cock": 1.7e-05, + "complain": 1.7e-05, + "complaints": 1.7e-05, + "controversial": 1.7e-05, + "denver": 1.7e-05, + "describing": 1.7e-05, + "differently": 1.7e-05, + "directions": 2.82e-07, + "discipline": 1.7e-05, + "discussing": 1.7e-05, + "disgusting": 1.7e-05, + "dj": 1.7e-05, + "dominant": 1.7e-05, + "earning": 1.7e-05, + "emma": 1.7e-05, + "essay": 1.7e-05, + "expense": 1.7e-05, + "explaining": 1.7e-05, + "furthermore": 1.7e-05, + "graphic": 1.7e-05, + "greg": 1.7e-05, + "healing": 1.7e-05, + "hiring": 1.7e-05, + "hosts": 5.25e-07, + "implemented": 1.7e-05, + "instantly": 1.7e-05, + "invasion": 1.7e-05, + "jacob": 1.7e-05, + "jumping": 1.7e-05, + "laptop": 1.7e-05, + "legendary": 1.7e-05, + "leo": 1.7e-05, + "maker": 1.7e-05, + "margaret": 1.7e-05, + "mario": 1.7e-05, + "opponents": 1.62e-06, + "outdoor": 1.7e-05, + "palm": 1.7e-05, + "parker": 1.7e-05, + "photograph": 1.7e-05, + "pole": 1.7e-05, + "pub": 1.7e-05, + "quarters": 1.45e-07, + "queensland": 1.7e-05, + "rangers": 1.95e-07, + "ranks": 1.7e-05, + "reception": 1.7e-05, + "recipe": 1.7e-05, + "regulatory": 1.7e-05, + "reviewed": 1.7e-05, + "rolls": 6.61e-08, + "rubber": 1.7e-05, + "secured": 1.7e-05, + "serial": 1.7e-05, + "settings": 1.7e-05, + "shed": 1.51e-05, + "snake": 1.7e-05, + "sponsored": 1.7e-05, + "stealing": 1.7e-05, + "strict": 1.7e-05, + "subsequently": 1.7e-05, + "substance": 1.7e-05, + "suggestion": 1.7e-05, + "switzerland": 1.7e-05, + "syndrome": 1.7e-05, + "tasks": 1.7e-05, + "trips": 8.13e-08, + "ultra": 1.7e-05, + "unexpected": 1.7e-05, + "usage": 1.7e-05, + "utah": 1.7e-05, + "accidentally": 1.66e-05, + "affordable": 1.66e-05, + "amateur": 1.66e-05, + "appeals": 5.75e-08, + "argentina": 1.66e-05, + "baltimore": 1.66e-05, + "batman": 1.66e-05, + "bearing": 1.66e-05, + "beats": 6.03e-08, + "bin": 1.66e-05, + "biology": 1.66e-05, + "bobby": 1.66e-05, + "briefly": 1.66e-05, + "canal": 1.66e-05, + "cancelled": 1.66e-05, + "charlotte": 1.66e-05, + "cheaper": 1.66e-05, + "christopher": 1.66e-05, + "climb": 1.66e-05, + "com": 1.66e-05, + "competing": 1.66e-05, + "completion": 1.66e-05, + "cruise": 1.66e-05, + "custody": 1.66e-05, + "delete": 1.66e-05, + "demonstrated": 1.66e-05, + "departure": 1.66e-05, + "developers": 3.89e-07, + "developments": 1.51e-07, + "dig": 1.66e-05, + "eagles": 4.47e-07, + "employer": 1.66e-05, + "evans": 1.95e-07, + "explosion": 1.66e-05, + "fever": 1.66e-05, + "fluid": 1.66e-05, + "folk": 1.66e-05, + "generate": 1.66e-05, + "gop": 1.66e-05, + "handsome": 1.66e-05, + "ho": 1.66e-05, + "holidays": 1.62e-07, + "hotels": 1.32e-06, + "imagination": 1.66e-05, + "integration": 1.66e-05, + "integrity": 1.66e-05, + "interpretation": 1.66e-05, + "leaf": 1.66e-05, + "legitimate": 1.66e-05, + "lightning": 1.66e-05, + "loads": 1.66e-05, + "longest": 1.66e-05, + "magical": 1.66e-05, + "mills": 2.45e-07, + "motivation": 1.66e-05, + "nasty": 1.66e-05, + "oliver": 1.66e-05, + "outfit": 1.66e-05, + "pension": 1.66e-05, + "permit": 1.66e-05, + "perry": 1.66e-05, + "plates": 6.31e-08, + "pleasant": 1.66e-05, + "portrait": 1.66e-05, + "productive": 1.66e-05, + "reminds": 1.66e-05, + "reserves": 1.91e-07, + "ron": 1.66e-05, + "safely": 1.66e-05, + "shirts": 1.26e-07, + "shorter": 1.66e-05, + "slight": 1.66e-05, + "socialist": 1.66e-05, + "streaming": 1.66e-05, + "sue": 1.66e-05, + "targeted": 1.66e-05, + "tension": 1.66e-05, + "thailand": 1.66e-05, + "theories": 1.66e-05, + "touching": 1.66e-05, + "transactions": 1.66e-05, + "twist": 1.66e-05, + "ugh": 1.66e-05, + "unemployment": 1.66e-05, + "unity": 1.66e-05, + "useless": 1.66e-05, + "viewers": 4.17e-07, + "winds": 1.38e-07, + "woke": 1.66e-05, + "wtf": 1.66e-05, + "abilities": 1.62e-05, + "advocate": 1.62e-05, + "aims": 1.62e-05, + "arc": 1.62e-05, + "backup": 1.62e-05, + "beaten": 1.62e-05, + "bitter": 1.62e-05, + "blown": 1.62e-05, + "branches": 1.62e-05, + "campaigns": 7.08e-07, + "chips": 1.55e-07, + "cia": 1.62e-05, + "clever": 1.62e-05, + "clinic": 1.62e-05, + "closest": 1.62e-05, + "collections": 1.91e-07, + "continuous": 1.62e-05, + "converted": 1.62e-05, + "correctly": 1.62e-05, + "creator": 1.62e-05, + "creatures": 3.39e-07, + "criteria": 1.62e-05, + "declined": 1.62e-05, + "detective": 1.62e-05, + "difficulties": 1.62e-05, + "disability": 1.62e-05, + "dish": 1.62e-05, + "douglas": 1.62e-05, + "du": 1.62e-05, + "duck": 1.62e-05, + "egyptian": 1.62e-05, + "ep": 1.62e-05, + "evaluation": 1.62e-05, + "excess": 1.62e-05, + "farming": 1.62e-05, + "fence": 1.62e-05, + "fifa": 1.62e-05, + "fighters": 2.51e-07, + "flights": 2.82e-07, + "forcing": 1.62e-05, + "forming": 1.62e-05, + "franklin": 1.62e-05, + "fred": 1.62e-05, + "gradually": 1.62e-05, + "gravity": 1.62e-05, + "habits": 1.62e-05, + "hawaii": 5.37e-07, + "highlight": 1.62e-05, + "holder": 1.62e-05, + "hood": 1.62e-05, + "hung": 1.62e-05, + "identical": 1.62e-05, + "imperial": 1.62e-05, + "investigations": 1.41e-07, + "jose": 1.62e-05, + "ken": 1.62e-05, + "legally": 1.62e-05, + "lied": 1.62e-05, + "listened": 1.62e-05, + "males": 3.09e-07, + "manufacturer": 1.62e-05, + "meters": 1.62e-05, + "nail": 1.62e-05, + "nasa": 1.62e-05, + "negotiations": 1.62e-05, + "nonsense": 1.62e-05, + "ontario": 1.62e-05, + "operational": 1.62e-05, + "orleans": 1.62e-05, + "owns": 1.62e-05, + "phoenix": 1.62e-05, + "playoffs": 1.62e-05, + "poet": 1.62e-05, + "quoted": 1.62e-05, + "relating": 1.62e-05, + "repeatedly": 1.62e-05, + "robinson": 1.62e-05, + "rolled": 1.62e-05, + "scientist": 1.62e-05, + "sink": 1.62e-05, + "skip": 1.62e-05, + "slavery": 1.62e-05, + "snap": 1.62e-05, + "sorts": 1.62e-05, + "souls": 4.17e-07, + "stole": 1.62e-05, + "swedish": 1.62e-05, + "swim": 1.62e-05, + "swiss": 1.62e-05, + "tennessee": 1.62e-05, + "transaction": 1.62e-05, + "transformation": 1.62e-05, + "veteran": 1.62e-05, + "vulnerable": 1.62e-05, + "wealthy": 1.62e-05, + "additionally": 1.58e-05, + "amy": 1.58e-05, + "attract": 1.58e-05, + "barbara": 1.58e-05, + "beta": 1.58e-05, + "blowing": 1.58e-05, + "bored": 1.58e-05, + "bronze": 1.58e-05, + "bug": 1.58e-05, + "caring": 1.58e-05, + "catching": 1.58e-05, + "cave": 1.58e-05, + "cheating": 1.58e-05, + "chronic": 1.58e-05, + "cleared": 1.58e-05, + "communicate": 1.58e-05, + "convicted": 1.58e-05, + "cultures": 3.55e-07, + "dealt": 1.58e-05, + "delayed": 1.58e-05, + "demonstrate": 1.58e-05, + "departments": 2.4e-06, + "depend": 1.58e-05, + "developer": 1.58e-05, + "diagnosis": 1.58e-05, + "dismissed": 1.58e-05, + "distinguished": 1.58e-05, + "dose": 1.58e-05, + "eighth": 1.58e-05, + "experiments": 5.25e-08, + "fa": 1.58e-05, + "flesh": 1.58e-05, + "flip": 1.58e-05, + "forty": 1.58e-05, + "generous": 1.58e-05, + "germans": 1.91e-07, + "hated": 1.58e-05, + "hr": 1.58e-05, + "implement": 1.58e-05, + "incorporated": 1.58e-05, + "influenced": 1.58e-05, + "jerusalem": 1.58e-05, + "kidding": 1.58e-05, + "laser": 1.58e-05, + "loyal": 1.58e-05, + "marijuana": 1.58e-05, + "md": 1.58e-05, + "mentally": 1.58e-05, + "missions": 4.27e-07, + "occupation": 1.58e-05, + "opponent": 1.58e-05, + "paintings": 1.82e-07, + "patch": 1.58e-05, + "patience": 1.58e-05, + "pic": 1.58e-05, + "pointing": 1.58e-05, + "pollution": 1.58e-05, + "precisely": 1.58e-05, + "prisoner": 1.58e-05, + "privilege": 1.58e-05, + "proposals": 1.58e-05, + "protests": 1.58e-05, + "punk": 1.58e-05, + "radar": 1.58e-05, + "regards": 1.58e-05, + "relatives": 1.78e-07, + "resist": 1.58e-05, + "solely": 1.58e-05, + "stepped": 1.58e-05, + "striking": 1.58e-05, + "terrorists": 1.23e-07, + "th": 1.58e-05, + "tourist": 1.58e-05, + "transit": 1.58e-05, + "trucks": 3.63e-07, + "trusted": 1.58e-05, + "vessels": 2.57e-07, + "villa": 1.58e-05, + "volumes": 1.58e-05, + "websites": 1.02e-06, + "wireless": 1.58e-05, + "wondered": 1.58e-05, + "wrap": 1.58e-05, + "wright": 1.58e-05, + "yoga": 1.58e-05, + "adopt": 1.55e-05, + "airlines": 5.25e-07, + "alaska": 1.55e-05, + "albums": 9.33e-07, + "americas": 5.5e-06, + "anytime": 1.55e-05, + "bacteria": 1.55e-05, + "beings": 1.62e-07, + "beside": 1.55e-05, + "blade": 1.55e-05, + "boot": 1.55e-05, + "bottles": 6.76e-08, + "bucks": 3.39e-07, + "bulk": 1.55e-05, + "camps": 5.25e-07, + "cargo": 1.55e-05, + "census": 1.55e-05, + "christianity": 1.55e-05, + "coastal": 1.55e-05, + "coin": 1.55e-05, + "colored": 1.55e-05, + "commentary": 1.55e-05, + "confusion": 1.55e-05, + "congressional": 1.55e-05, + "corn": 1.55e-05, + "cried": 1.55e-05, + "customs": 2.19e-08, + "dealer": 1.55e-05, + "deemed": 1.55e-05, + "destiny": 1.55e-05, + "distant": 1.55e-05, + "electronics": 1.55e-05, + "emerging": 1.55e-05, + "emotion": 1.55e-05, + "emphasis": 1.55e-05, + "ethics": 1.55e-05, + "excitement": 1.55e-05, + "exploration": 1.55e-05, + "fights": 8.91e-08, + "filling": 1.55e-05, + "filming": 1.55e-05, + "glasgow": 1.55e-05, + "graphics": 1.55e-05, + "helen": 1.55e-05, + "humor": 1.55e-05, + "insight": 1.55e-05, + "invested": 1.55e-05, + "itd": 4.07e-07, + "jennifer": 1.55e-05, + "lit": 1.55e-05, + "louisiana": 1.55e-05, + "mar": 1.55e-05, + "marie": 1.55e-05, + "meals": 1.55e-05, + "mississippi": 1.55e-05, + "nerve": 1.55e-05, + "netflix": 1.55e-05, + "nightmare": 1.55e-05, + "operators": 3.89e-07, + "overnight": 1.55e-05, + "partially": 1.55e-05, + "participating": 1.55e-05, + "pie": 1.55e-05, + "platforms": 1.91e-07, + "populations": 2.34e-07, + "poster": 1.55e-05, + "pr": 1.55e-05, + "practically": 1.55e-05, + "preserve": 1.55e-05, + "produces": 1.55e-05, + "qualify": 1.55e-05, + "raid": 1.55e-05, + "ram": 1.55e-05, + "ranging": 1.55e-05, + "ranking": 1.55e-05, + "receives": 1.55e-05, + "respective": 1.55e-05, + "restricted": 1.55e-05, + "routes": 5.37e-08, + "samuel": 1.55e-05, + "sandy": 1.55e-05, + "scenario": 1.55e-05, + "sheep": 1.55e-05, + "situated": 1.55e-05, + "slaves": 1.55e-07, + "sony": 1.55e-05, + "spotted": 1.55e-05, + "spreading": 1.55e-05, + "stanley": 1.55e-05, + "sustainable": 1.55e-05, + "sustained": 1.55e-05, + "taxi": 1.55e-05, + "themes": 1.55e-05, + "threatening": 1.55e-05, + "tobacco": 1.55e-05, + "trace": 1.55e-05, + "trapped": 1.55e-05, + "turner": 1.55e-05, + "uncomfortable": 1.55e-05, + "wasted": 1.55e-05, + "weakness": 1.55e-05, + "widespread": 1.55e-05, + "xbox": 1.55e-05, + "accepting": 1.51e-05, + "accessible": 1.51e-05, + "acknowledge": 1.51e-05, + "advised": 1.51e-05, + "advisory": 1.51e-05, + "animation": 1.51e-05, + "assignment": 1.51e-05, + "balanced": 1.51e-05, + "bare": 1.51e-05, + "basement": 1.51e-05, + "bases": 2.24e-07, + "battles": 1.45e-07, + "bias": 1.12e-08, + "birmingham": 1.51e-05, + "bits": 7.59e-08, + "cancel": 1.51e-05, + "carpet": 1.51e-05, + "ceiling": 1.51e-05, + "cherry": 1.51e-05, + "chill": 1.51e-05, + "classification": 1.51e-05, + "clue": 1.51e-05, + "codes": 1.78e-07, + "cole": 1.51e-05, + "collapse": 1.51e-05, + "collecting": 1.51e-05, + "compound": 1.51e-05, + "conscious": 1.51e-05, + "consecutive": 1.51e-05, + "contents": 4.07e-08, + "costume": 1.51e-05, + "craig": 1.51e-05, + "deleted": 1.51e-05, + "devoted": 1.51e-05, + "displayed": 1.51e-05, + "dominated": 1.51e-05, + "earl": 1.51e-05, + "endless": 1.51e-05, + "escaped": 1.51e-05, + "examine": 1.51e-05, + "floating": 1.51e-05, + "garbage": 1.51e-05, + "gospel": 1.51e-05, + "grain": 1.51e-05, + "grid": 1.51e-05, + "grows": 1.51e-05, + "heating": 1.51e-05, + "identification": 1.51e-05, + "knees": 5.75e-08, + "lap": 1.51e-05, + "lions": 1.51e-06, + "liver": 1.51e-05, + "metro": 1.51e-05, + "metropolitan": 1.51e-05, + "mines": 9.33e-07, + "mixture": 1.51e-05, + "nominated": 1.51e-05, + "oak": 1.51e-05, + "parliamentary": 1.51e-05, + "patent": 1.51e-05, + "perception": 1.51e-05, + "physician": 1.51e-05, + "portland": 1.51e-05, + "proceed": 1.51e-05, + "proceedings": 1.51e-05, + "pupils": 1.51e-07, + "reserved": 1.51e-05, + "restore": 1.51e-05, + "rifle": 1.51e-05, + "rival": 1.51e-05, + "rs": 5.25e-07, + "runner": 1.51e-05, + "sadly": 1.51e-05, + "sc": 1.51e-05, + "shoulders": 1.51e-05, + "significance": 1.51e-05, + "sits": 1.51e-05, + "sizes": 1.51e-05, + "slept": 1.51e-05, + "soap": 1.51e-05, + "spray": 1.51e-05, + "stored": 1.51e-05, + "stressed": 1.51e-05, + "structural": 1.51e-05, + "suite": 1.51e-05, + "tbh": 1.51e-05, + "tropical": 1.51e-05, + "ukrainian": 1.51e-05, + "unnecessary": 1.51e-05, + "verse": 1.51e-05, + "victor": 1.51e-05, + "vintage": 1.51e-05, + "warned": 1.51e-05, + "watson": 1.51e-05, + "acres": 1.48e-05, + "adapted": 1.48e-05, + "adoption": 1.48e-05, + "anonymous": 1.48e-05, + "antonio": 1.48e-05, + "approaching": 1.48e-05, + "artistic": 1.48e-05, + "attendance": 1.48e-05, + "aviation": 1.48e-05, + "barrel": 1.48e-05, + "beds": 1.45e-07, + "beloved": 1.48e-05, + "bless": 1.48e-05, + "boxing": 1.48e-05, + "celebrating": 1.48e-05, + "charging": 1.48e-05, + "chemicals": 1.48e-05, + "chuck": 1.48e-05, + "cinema": 1.48e-05, + "colonial": 1.48e-05, + "comics": 1.55e-07, + "compliance": 1.48e-05, + "contrary": 1.48e-05, + "controlling": 1.48e-05, + "corporations": 9.55e-07, + "couch": 1.48e-05, + "countrys": 1e-07, + "crush": 1.48e-05, + "dam": 1.48e-05, + "decrease": 1.48e-05, + "defeated": 1.48e-05, + "diabetes": 1.48e-05, + "dressing": 1.48e-05, + "expanding": 1.48e-05, + "fears": 1.48e-05, + "fires": 4.27e-07, + "genre": 1.48e-05, + "gentle": 1.48e-05, + "grammar": 1.48e-05, + "hiv": 1.48e-05, + "idk": 1.48e-05, + "illustrated": 1.48e-05, + "invented": 1.48e-05, + "jake": 1.48e-05, + "jam": 1.48e-05, + "jamie": 1.07e-07, + "jessica": 1.48e-05, + "keith": 1.48e-05, + "kent": 1.48e-05, + "layers": 1.48e-05, + "lease": 1.48e-05, + "lens": 6.17e-08, + "licensed": 1.48e-05, + "loyalty": 1.48e-05, + "madison": 1.48e-05, + "magnetic": 1.48e-05, + "metres": 1.48e-05, + "monsters": 5.13e-07, + "mysterious": 1.48e-05, + "notion": 1.48e-05, + "partial": 1.48e-05, + "piss": 1.48e-05, + "placing": 1.48e-05, + "propaganda": 1.48e-05, + "rat": 1.48e-05, + "reflection": 1.48e-05, + "reminded": 1.48e-05, + "resolve": 1.48e-05, + "revolutionary": 1.48e-05, + "scandal": 1.48e-05, + "shine": 1.48e-05, + "si": 1.48e-05, + "simultaneously": 1.48e-05, + "substitute": 1.48e-05, + "surveillance": 1.48e-05, + "tactics": 1.48e-05, + "testimony": 1.48e-05, + "thai": 1.48e-05, + "treasure": 1.48e-05, + "trophy": 1.48e-05, + "tweet": 1.48e-05, + "tyler": 1.48e-05, + "underlying": 1.48e-05, + "unfair": 1.48e-05, + "villages": 4.57e-07, + "von": 1.48e-05, + "wa": 1.48e-05, + "acceptance": 1.45e-05, + "accidents": 1.45e-05, + "affects": 1.45e-05, + "annually": 1.45e-05, + "apologize": 1.45e-05, + "appreciated": 1.45e-05, + "approached": 1.45e-05, + "arriving": 1.45e-05, + "ash": 1.45e-05, + "aunt": 1.45e-05, + "benjamin": 1.45e-05, + "blake": 1.45e-05, + "bubble": 1.45e-05, + "buyers": 7.76e-07, + "casino": 1.45e-05, + "charts": 6.76e-08, + "clouds": 1.86e-07, + "connecting": 1.45e-05, + "counsel": 1.45e-05, + "creature": 1.45e-05, + "deadly": 1.45e-05, + "decides": 1.45e-05, + "der": 1.45e-05, + "desired": 1.45e-05, + "determination": 1.45e-05, + "embrace": 1.45e-05, + "emerged": 1.45e-05, + "exhibit": 1.45e-05, + "flew": 1.45e-05, + "gentleman": 1.45e-05, + "gm": 1.45e-05, + "halloween": 1.91e-07, + "hammer": 1.45e-05, + "hitler": 1.45e-05, + "hosting": 1.45e-05, + "icon": 1.45e-05, + "imposed": 1.45e-05, + "indigenous": 1.45e-05, + "infinite": 1.45e-05, + "installation": 1.45e-05, + "inter": 1.45e-05, + "interactions": 1.45e-05, + "introducing": 1.45e-05, + "iranian": 1.45e-05, + "kicking": 1.45e-05, + "laying": 1.45e-05, + "legislature": 1.45e-05, + "liability": 1.45e-05, + "maine": 1.45e-05, + "makers": 5.5e-07, + "manhattan": 1.45e-05, + "marathon": 1.45e-05, + "marvel": 1.45e-05, + "michelle": 1.55e-08, + "moreover": 1.45e-05, + "mps": 5.75e-07, + "neil": 1.45e-05, + "organisations": 6.17e-07, + "ours": 4.27e-08, + "parade": 1.45e-05, + "paradise": 1.45e-05, + "perceived": 1.45e-05, + "pics": 6.17e-08, + "planes": 6.61e-07, + "politician": 1.45e-05, + "preliminary": 1.45e-05, + "premiere": 1.45e-05, + "presidency": 1.45e-05, + "reaches": 1.45e-05, + "react": 1.45e-05, + "realistic": 1.45e-05, + "remarks": 1.45e-05, + "retain": 1.45e-05, + "roberts": 1.02e-06, + "rocky": 1.45e-05, + "russians": 1.41e-07, + "saints": 2.95e-07, + "satisfaction": 1.45e-05, + "scratch": 1.45e-05, + "shade": 1.45e-05, + "sheets": 1.45e-05, + "sheriff": 1.45e-05, + "shy": 1.45e-05, + "sometime": 1.45e-05, + "spirits": 3.16e-07, + "sporting": 1.45e-05, + "strictly": 1.45e-05, + "sunshine": 1.45e-05, + "teens": 3.02e-07, + "thou": 1.45e-05, + "tier": 1.45e-05, + "tommy": 1.45e-05, + "travelling": 1.45e-05, + "vancouver": 1.45e-05, + "vocal": 1.45e-05, + "warrior": 1.45e-05, + "womans": 5.01e-07, + "worries": 1.45e-05, + "yield": 1.45e-05, + "accomplished": 1.41e-05, + "admission": 1.41e-05, + "adventures": 5.25e-08, + "aka": 1.41e-05, + "appearing": 1.41e-05, + "bacon": 1.41e-05, + "barrier": 1.41e-05, + "belgium": 1.41e-05, + "believing": 1.41e-05, + "blacks": 7.08e-07, + "bombs": 1.1e-07, + "burst": 1.41e-05, + "caps": 1.78e-07, + "casting": 1.41e-05, + "cattle": 1.41e-05, + "cc": 1.41e-05, + "classroom": 1.41e-05, + "collins": 6.17e-08, + "colours": 1.41e-05, + "compromise": 1.41e-05, + "convenient": 1.41e-05, + "costa": 1.41e-05, + "criminals": 1.35e-07, + "crop": 1.41e-05, + "earthquake": 1.41e-05, + "elderly": 1.41e-05, + "eliminate": 1.41e-05, + "embarrassing": 1.41e-05, + "farmer": 1.41e-05, + "finest": 1.41e-05, + "grants": 7.41e-07, + "harbor": 1.41e-05, + "harvey": 1.41e-05, + "hates": 1.41e-05, + "incidents": 1.41e-05, + "inform": 1.41e-05, + "ion": 1.41e-05, + "jeremy": 1.41e-05, + "lesbian": 1.41e-05, + "lovers": 9.77e-07, + "lt": 1.41e-05, + "mathematics": 1.41e-05, + "medication": 1.41e-05, + "minded": 1.41e-05, + "morris": 1.41e-05, + "norway": 1.41e-05, + "par": 1.41e-05, + "podcast": 1.41e-05, + "portfolio": 1.41e-05, + "productivity": 1.41e-05, + "promoted": 1.41e-05, + "protocol": 1.41e-05, + "quietly": 1.41e-05, + "rachel": 1.41e-05, + "replacing": 1.41e-05, + "responsibilities": 1.41e-05, + "salad": 1.41e-05, + "scholarship": 1.41e-05, + "screening": 1.41e-05, + "sends": 1.41e-05, + "smiling": 1.41e-05, + "soup": 1.41e-05, + "southeast": 1.41e-05, + "stake": 1.41e-05, + "stating": 1.41e-05, + "strain": 1.41e-05, + "suspected": 1.41e-05, + "swift": 1.41e-05, + "tackle": 1.41e-05, + "tigers": 6.03e-07, + "timeline": 1.41e-05, + "torture": 1.41e-05, + "traded": 1.41e-05, + "translated": 1.41e-05, + "tricks": 1.41e-05, + "twins": 9.33e-08, + "urgent": 1.41e-05, + "vegetables": 1.41e-05, + "vertical": 1.41e-05, + "violation": 1.41e-05, + "wallet": 1.41e-05, + "welsh": 1.41e-05, + "workshop": 1.41e-05, + "wrapped": 1.41e-05, + "aboard": 1.38e-05, + "abstract": 1.38e-05, + "accent": 1.38e-05, + "addiction": 1.38e-05, + "associates": 2e-07, + "awake": 1.38e-05, + "beam": 1.38e-05, + "beans": 1.78e-07, + "binding": 1.38e-05, + "blank": 1.38e-05, + "buffalo": 1.38e-05, + "cbs": 1.23e-07, + "commons": 3.47e-08, + "conservatives": 6.92e-08, + "contacts": 5.25e-08, + "conviction": 1.38e-05, + "corrupt": 1.38e-05, + "cow": 1.38e-05, + "curve": 1.38e-05, + "depressed": 1.38e-05, + "deserved": 1.38e-05, + "dining": 1.38e-05, + "disorders": 1.38e-05, + "duration": 1.38e-05, + "eddie": 1.38e-05, + "emily": 1.38e-05, + "encouraging": 1.38e-05, + "farms": 3.24e-07, + "fifteen": 1.38e-05, + "flows": 1.38e-05, + "ga": 1.38e-05, + "genes": 2.04e-07, + "graduated": 1.38e-05, + "grandmother": 1.38e-05, + "harsh": 1.38e-05, + "heights": 1.38e-05, + "horn": 1.38e-05, + "hurry": 1.38e-05, + "immune": 1.38e-05, + "inflation": 1.38e-05, + "ingredients": 1.38e-05, + "inspection": 1.38e-05, + "install": 1.38e-05, + "instruction": 1.38e-05, + "intensity": 1.38e-05, + "inventory": 1.38e-05, + "investigated": 1.38e-05, + "invitation": 1.38e-05, + "judicial": 1.38e-05, + "justify": 1.38e-05, + "kyle": 1.38e-05, + "lakes": 4.17e-07, + "lean": 1.38e-05, + "lecture": 1.38e-05, + "libraries": 1.38e-05, + "logical": 1.38e-05, + "mason": 1.38e-05, + "meaningful": 1.38e-05, + "migration": 1.38e-05, + "missile": 1.38e-05, + "motivated": 1.38e-05, + "muscles": 1.38e-05, + "nancy": 1.38e-05, + "norman": 1.38e-05, + "northwest": 1.38e-05, + "nurses": 5.37e-07, + "organ": 1.38e-05, + "patrol": 1.38e-05, + "pearl": 1.38e-05, + "peer": 1.38e-05, + "pepper": 1.38e-05, + "pig": 1.38e-05, + "pile": 1.38e-05, + "plug": 1.38e-05, + "provision": 1.38e-05, + "releasing": 1.38e-05, + "requiring": 1.38e-05, + "revised": 1.38e-05, + "rod": 1.38e-05, + "scream": 1.38e-05, + "stairs": 1.38e-05, + "staring": 1.38e-05, + "statistical": 1.38e-05, + "sticks": 2.82e-08, + "strangers": 5.37e-07, + "succeeded": 1.38e-05, + "sweat": 1.38e-05, + "switched": 1.38e-05, + "syrian": 1.38e-05, + "tattoo": 1.38e-05, + "teenage": 1.38e-05, + "thunder": 1.38e-05, + "tours": 5.37e-07, + "tragedy": 1.38e-05, + "trauma": 1.38e-05, + "vincent": 1.38e-05, + "wrestling": 1.38e-05, + "zoo": 1.38e-05, + "accordance": 1.35e-05, + "acquire": 1.35e-05, + "activist": 1.35e-05, + "activists": 5.89e-08, + "addresses": 1.35e-05, + "alike": 1.35e-05, + "applicable": 1.35e-05, + "arrow": 1.35e-05, + "availability": 1.35e-05, + "aw": 1.35e-05, + "ba": 1.35e-05, + "bend": 1.35e-05, + "boundary": 1.35e-05, + "breach": 1.35e-05, + "cabin": 1.35e-05, + "cage": 1.35e-05, + "chancellor": 1.35e-05, + "cheers": 1.35e-05, + "circles": 1.38e-07, + "closet": 1.35e-05, + "combine": 1.35e-05, + "companion": 1.35e-05, + "comparing": 1.35e-05, + "consciousness": 1.35e-05, + "consultant": 1.35e-05, + "controller": 1.35e-05, + "corresponding": 1.35e-05, + "courtesy": 1.35e-05, + "cuba": 1.35e-05, + "damages": 1.35e-05, + "demanding": 1.35e-05, + "disc": 1.35e-05, + "dishes": 1.35e-05, + "dozens": 1.35e-05, + "eagle": 1.35e-05, + "eaten": 1.35e-05, + "embassy": 1.35e-05, + "engaging": 1.35e-05, + "fascinating": 1.35e-05, + "financing": 1.35e-05, + "fitted": 1.35e-05, + "flexible": 1.35e-05, + "gaining": 1.35e-05, + "gentlemen": 1.35e-05, + "goodness": 1.35e-05, + "guilt": 1.35e-05, + "haven": 1.35e-05, + "helicopter": 1.35e-05, + "homework": 1.35e-05, + "households": 1.32e-07, + "hp": 1.35e-05, + "iconic": 1.35e-05, + "infected": 1.35e-05, + "keen": 1.35e-05, + "kenya": 1.35e-05, + "lesser": 1.35e-05, + "liberals": 7.76e-08, + "lip": 1.35e-05, + "mandatory": 1.35e-05, + "manufactured": 1.35e-05, + "mechanics": 1.55e-07, + "mere": 1.35e-05, + "miracle": 1.35e-05, + "mt": 1.35e-05, + "mud": 1.35e-05, + "murphy": 1.35e-05, + "nathan": 1.35e-05, + "observation": 1.35e-05, + "operates": 1.35e-05, + "owe": 1.35e-05, + "permitted": 1.35e-05, + "phenomenon": 1.35e-05, + "pittsburgh": 1.35e-05, + "playoff": 1.35e-05, + "precise": 1.35e-05, + "profession": 1.35e-05, + "prospect": 1.35e-05, + "protective": 1.35e-05, + "providers": 1.74e-07, + "publisher": 1.35e-05, + "putin": 1.35e-05, + "reportedly": 1.35e-05, + "retreat": 1.35e-05, + "rookie": 1.35e-05, + "sandwich": 1.35e-05, + "seeks": 1.35e-05, + "sentences": 1.35e-05, + "separation": 1.35e-05, + "sexually": 1.35e-05, + "ski": 1.35e-05, + "skilled": 1.35e-05, + "sterling": 1.35e-05, + "stuart": 1.35e-05, + "surgeon": 1.35e-05, + "theft": 1.35e-05, + "um": 1.35e-05, + "understands": 1.35e-05, + "valve": 1.35e-05, + "visa": 1.35e-05, + "washing": 1.35e-05, + "adjacent": 1.32e-05, + "agreements": 7.76e-08, + "appreciation": 1.32e-05, + "arabia": 1.32e-05, + "athletic": 1.32e-05, + "authorized": 1.32e-05, + "banner": 1.32e-05, + "beijing": 1.32e-05, + "blew": 1.32e-05, + "blocking": 1.32e-05, + "brad": 1.32e-05, + "caribbean": 1.32e-05, + "charm": 1.32e-05, + "chasing": 1.32e-05, + "climbing": 1.32e-05, + "colony": 1.32e-05, + "complaining": 1.32e-05, + "cookies": 7.41e-08, + "cruel": 1.32e-05, + "curriculum": 1.32e-05, + "deadline": 1.32e-05, + "deer": 1.32e-05, + "delta": 1.32e-05, + "demanded": 1.32e-05, + "dive": 1.32e-05, + "divide": 1.32e-05, + "easter": 1.32e-05, + "electoral": 1.32e-05, + "eleven": 1.32e-05, + "entity": 1.32e-05, + "excessive": 1.32e-05, + "exercises": 1.32e-05, + "feminist": 1.32e-05, + "governing": 1.32e-05, + "ham": 1.32e-05, + "heal": 1.32e-05, + "interface": 1.32e-05, + "ios": 1.32e-05, + "jewelry": 1.32e-05, + "journalism": 1.32e-05, + "juan": 1.32e-05, + "julia": 1.32e-05, + "jungle": 1.32e-05, + "linear": 1.32e-05, + "mg": 1.32e-05, + "occasional": 1.32e-05, + "oriented": 1.32e-05, + "pete": 1.32e-05, + "pilots": 1.15e-06, + "prayers": 1.32e-05, + "predicted": 1.32e-05, + "pressed": 1.32e-05, + "preventing": 1.32e-05, + "prof": 1.32e-05, + "provisions": 1.32e-05, + "pursuit": 1.32e-05, + "rap": 1.32e-05, + "reflected": 1.32e-05, + "reminder": 1.32e-05, + "restored": 1.32e-05, + "resume": 1.32e-05, + "rev": 1.32e-05, + "richmond": 1.32e-05, + "ridge": 1.32e-05, + "samsung": 1.32e-05, + "scholars": 1.41e-07, + "sealed": 1.32e-05, + "sounded": 1.32e-05, + "sri": 1.32e-05, + "streams": 1e-07, + "strongest": 1.32e-05, + "tends": 1.32e-05, + "tribe": 1.32e-05, + "unfortunate": 1.32e-05, + "variable": 1.32e-05, + "victorian": 1.32e-05, + "worrying": 1.32e-05, + "xi": 1.32e-05, + "zones": 1.29e-07, + "ace": 1.29e-05, + "adjusted": 1.29e-05, + "alternate": 1.29e-05, + "arrives": 1.29e-05, + "artwork": 1.29e-05, + "ashley": 1.29e-05, + "athlete": 1.29e-05, + "attraction": 1.29e-05, + "babe": 1.29e-05, + "bankruptcy": 1.29e-05, + "canon": 1.29e-05, + "capabilities": 1.29e-05, + "cared": 1.29e-05, + "catherine": 1.29e-05, + "chains": 2.51e-07, + "closure": 1.29e-05, + "cognitive": 1.29e-05, + "competitors": 2.04e-07, + "connecticut": 1.29e-05, + "convert": 1.29e-05, + "cooked": 1.29e-05, + "ct": 1.29e-05, + "cups": 1.95e-07, + "deciding": 1.29e-05, + "defender": 1.29e-05, + "dental": 1.29e-05, + "diplomatic": 1.29e-05, + "divisions": 5.75e-07, + "drum": 1.29e-05, + "editorial": 1.29e-05, + "enabled": 1.29e-05, + "entertaining": 1.29e-05, + "est": 1.29e-05, + "establishing": 1.29e-05, + "eternal": 1.29e-05, + "freeze": 1.29e-05, + "generic": 1.29e-05, + "grandma": 1.29e-05, + "grip": 1.29e-05, + "handful": 1.29e-05, + "happily": 1.29e-05, + "harmony": 1.29e-05, + "hmm": 1.29e-05, + "humble": 1.29e-05, + "hurting": 1.29e-05, + "hybrid": 1.29e-05, + "intentions": 1.29e-05, + "investing": 1.29e-05, + "keyboard": 1.29e-05, + "lasting": 1.29e-05, + "locally": 1.29e-05, + "loses": 1.29e-05, + "mild": 1.29e-05, + "minimal": 1.29e-05, + "mixing": 1.29e-05, + "molecular": 1.29e-05, + "nearest": 1.29e-05, + "neighbor": 1.29e-05, + "noon": 1.29e-05, + "nowadays": 1.29e-05, + "openly": 1.29e-05, + "overview": 1.29e-05, + "pairs": 2.09e-07, + "palestinian": 1.29e-05, + "parish": 1.29e-05, + "pathetic": 1.29e-05, + "poems": 9.33e-08, + "possibilities": 1.29e-05, + "potato": 1.29e-05, + "potter": 1.29e-05, + "preference": 1.29e-05, + "promising": 1.29e-05, + "proportion": 1.29e-05, + "purchases": 1.29e-05, + "rage": 1.29e-05, + "rd": 1.29e-05, + "reflects": 1.29e-05, + "respected": 1.29e-05, + "restoration": 1.29e-05, + "selfish": 1.29e-05, + "sergeant": 1.29e-05, + "silk": 1.29e-05, + "stamp": 1.29e-05, + "throne": 1.29e-05, + "thy": 1.29e-05, + "urge": 1.29e-05, + "voter": 1.29e-05, + "warner": 1.29e-05, + "wasting": 1.29e-05, + "witch": 1.29e-05, + "advantages": 1.26e-05, + "ally": 1.26e-05, + "archives": 9.55e-08, + "array": 1.26e-05, + "assisted": 1.26e-05, + "backs": 1.95e-07, + "belly": 1.26e-05, + "booth": 1.26e-05, + "breakdown": 1.26e-05, + "bridges": 2.75e-07, + "brutal": 1.26e-05, + "calculated": 1.26e-05, + "cam": 1.26e-05, + "centres": 5.5e-07, + "chapters": 1.51e-07, + "citizenship": 1.26e-05, + "civilians": 1.26e-05, + "cliff": 1.26e-05, + "conflicts": 1.26e-05, + "consensus": 1.26e-05, + "cycling": 1.26e-05, + "declaration": 1.26e-05, + "dennis": 1.26e-05, + "derby": 1.26e-05, + "distinction": 1.26e-05, + "donations": 1.26e-05, + "dragons": 1.26e-06, + "draws": 1.26e-05, + "examined": 1.26e-05, + "facial": 1.26e-05, + "faithful": 1.26e-05, + "fatal": 1.26e-05, + "fig": 1.26e-05, + "fitting": 1.26e-05, + "genuinely": 1.26e-05, + "hardest": 1.26e-05, + "holland": 1.26e-05, + "honored": 1.26e-05, + "hunger": 1.26e-05, + "hurricane": 1.26e-05, + "implications": 1.26e-05, + "import": 1.26e-05, + "innovative": 1.26e-05, + "ipad": 1.26e-05, + "jurisdiction": 1.26e-05, + "laughter": 1.26e-05, + "lemon": 1.26e-05, + "les": 1.02e-07, + "lifted": 1.26e-05, + "loading": 1.26e-05, + "lung": 1.26e-05, + "matching": 1.26e-05, + "mighty": 1.26e-05, + "monetary": 1.26e-05, + "novels": 3.72e-07, + "nutrition": 1.26e-05, + "ore": 1.26e-05, + "os": 8.91e-07, + "outcomes": 1.26e-05, + "outta": 1.26e-05, + "pine": 1.26e-05, + "polls": 5.75e-08, + "poorly": 1.26e-05, + "portugal": 1.26e-05, + "pose": 1.26e-05, + "pour": 1.26e-05, + "proteins": 7.24e-08, + "provider": 1.26e-05, + "publish": 1.26e-05, + "purely": 1.26e-05, + "ralph": 1.26e-05, + "rental": 1.26e-05, + "resolved": 1.26e-05, + "rewards": 1.26e-05, + "sang": 1.26e-05, + "seemingly": 1.26e-05, + "senators": 5.75e-07, + "severely": 1.26e-05, + "shark": 1.26e-05, + "shocking": 1.26e-05, + "southwest": 1.26e-05, + "ss": 3.24e-07, + "studios": 6.61e-07, + "survivors": 2.95e-07, + "tales": 3.09e-08, + "technically": 1.26e-05, + "titled": 1.26e-05, + "traditions": 1.26e-05, + "unlimited": 1.26e-05, + "washed": 1.26e-05, + "watches": 1.26e-05, + "advise": 1.23e-05, + "anxious": 1.23e-05, + "appearances": 1.23e-05, + "bee": 1.23e-05, + "bombing": 1.23e-05, + "cafe": 1.23e-05, + "carlos": 1.2e-07, + "challenged": 1.23e-05, + "cigarettes": 1.23e-05, + "colin": 1.23e-05, + "consisting": 1.23e-05, + "cult": 1.23e-05, + "dairy": 1.23e-05, + "dakota": 1.23e-05, + "darling": 1.23e-05, + "delighted": 1.23e-05, + "delivering": 1.23e-05, + "destroying": 1.23e-05, + "diary": 1.23e-05, + "disagree": 1.23e-05, + "disappear": 1.23e-05, + "drill": 1.23e-05, + "earliest": 1.23e-05, + "edges": 1.05e-07, + "entries": 1.23e-05, + "euro": 1.23e-05, + "evolved": 1.23e-05, + "exports": 1.23e-05, + "fixing": 1.23e-05, + "fl": 1.23e-05, + "flags": 1.26e-07, + "flies": 1.23e-05, + "forecast": 1.23e-05, + "fr": 1.23e-05, + "governance": 1.23e-05, + "heated": 1.23e-05, + "hug": 1.23e-05, + "importantly": 1.23e-05, + "indicating": 1.23e-05, + "indoor": 1.23e-05, + "influential": 1.23e-05, + "intend": 1.23e-05, + "invisible": 1.23e-05, + "jeans": 3.39e-07, + "jets": 1.48e-07, + "julie": 1.23e-05, + "karen": 1.23e-05, + "lasted": 1.23e-05, + "lawsuit": 1.23e-05, + "leak": 1.23e-05, + "lighter": 1.23e-05, + "lucas": 9.55e-08, + "marcus": 1.23e-05, + "mentions": 1.23e-05, + "meter": 1.23e-05, + "mice": 1.23e-05, + "musicians": 2.88e-07, + "olive": 1.23e-05, + "passionate": 1.23e-05, + "potatoes": 1.23e-05, + "prevented": 1.23e-05, + "receiver": 1.23e-05, + "recommendation": 1.23e-05, + "riot": 1.23e-05, + "rogers": 4.9e-07, + "roster": 1.23e-05, + "safer": 1.23e-05, + "sells": 1.23e-05, + "sentenced": 1.23e-05, + "servant": 1.23e-05, + "setup": 1.23e-05, + "shouldve": 2.51e-07, + "skull": 1.23e-05, + "slot": 1.23e-05, + "smash": 1.23e-05, + "statue": 1.23e-05, + "surprisingly": 1.23e-05, + "surrender": 1.23e-05, + "suspicious": 1.23e-05, + "teenager": 1.23e-05, + "tender": 1.23e-05, + "thoroughly": 1.23e-05, + "todd": 1.23e-05, + "treatments": 1.23e-05, + "tweeted": 1.23e-05, + "vacuum": 1.23e-05, + "variations": 1.23e-05, + "vi": 1.23e-05, + "wheres": 4.68e-07, + "wi": 1.23e-05, + "acknowledged": 1.2e-05, + "advances": 1.2e-05, + "agrees": 1.2e-05, + "allegations": 1.2e-05, + "anticipated": 1.2e-05, + "approve": 1.2e-05, + "architect": 1.2e-05, + "basin": 1.2e-05, + "beneficial": 1.2e-05, + "bleeding": 1.2e-05, + "breed": 1.2e-05, + "breeding": 1.2e-05, + "bride": 1.2e-05, + "broadway": 1.2e-05, + "bros": 2.45e-07, + "bud": 1.2e-05, + "butler": 1.2e-05, + "careers": 8.71e-08, + "cartoon": 1.2e-05, + "celebrities": 1.2e-05, + "chick": 1.2e-05, + "coke": 1.2e-05, + "comparable": 1.2e-05, + "confirmation": 1.2e-05, + "console": 1.2e-05, + "contractor": 1.2e-05, + "contributing": 1.2e-05, + "diameter": 1.2e-05, + "dubai": 1.2e-05, + "dublin": 1.2e-05, + "dump": 1.2e-05, + "duo": 1.2e-05, + "dynamics": 1.58e-08, + "elephant": 1.2e-05, + "enhanced": 1.2e-05, + "essays": 1.2e-05, + "exhausted": 1.2e-05, + "fabric": 1.2e-05, + "fabulous": 1.2e-05, + "fairy": 1.2e-05, + "focuses": 1.2e-05, + "fold": 1.2e-05, + "freak": 1.2e-05, + "frustrated": 1.2e-05, + "gambling": 1.2e-05, + "gently": 1.2e-05, + "glorious": 1.2e-05, + "grief": 1.2e-05, + "harrison": 1.2e-05, + "historically": 1.2e-05, + "hub": 1.2e-05, + "hughes": 1.2e-05, + "inevitable": 1.2e-05, + "investigating": 1.2e-05, + "kg": 1.2e-05, + "labels": 3.31e-07, + "lacking": 1.2e-05, + "laughs": 1.2e-05, + "layout": 1.2e-05, + "lined": 1.2e-05, + "lodge": 1.2e-05, + "lords": 4.17e-06, + "merchant": 1.2e-05, + "merit": 1.2e-05, + "micro": 1.2e-05, + "myth": 1.2e-05, + "nintendo": 1.2e-05, + "objectives": 1.2e-05, + "obsessed": 1.2e-05, + "organised": 1.2e-05, + "overwhelming": 1.2e-05, + "pale": 1.2e-05, + "particles": 1.2e-05, + "pastor": 1.2e-05, + "penalties": 1.2e-05, + "permanently": 1.2e-05, + "pets": 2.82e-07, + "pockets": 1.2e-05, + "poison": 1.2e-05, + "predict": 1.2e-05, + "presenting": 1.2e-05, + "presidents": 8.71e-06, + "pressing": 1.2e-05, + "prints": 1.2e-05, + "provincial": 1.2e-05, + "raped": 1.2e-05, + "realised": 1.2e-05, + "rebel": 1.2e-05, + "repairs": 1.2e-05, + "rotation": 1.2e-05, + "separately": 1.2e-05, + "shaking": 1.2e-05, + "shaw": 1.2e-05, + "societies": 1.2e-05, + "solved": 1.2e-05, + "starring": 1.2e-05, + "struggles": 1.2e-05, + "subtle": 1.2e-05, + "tastes": 1.2e-05, + "throws": 1.2e-05, + "toll": 1.2e-05, + "tooth": 1.2e-05, + "torn": 1.2e-05, + "tragic": 1.2e-05, + "trainer": 1.2e-05, + "transformed": 1.2e-05, + "unbelievable": 1.2e-05, + "underneath": 1.2e-05, + "variation": 1.2e-05, + "viewing": 1.2e-05, + "viral": 1.2e-05, + "warehouse": 1.2e-05, + "wears": 1.2e-05, + "widow": 1.2e-05, + "wives": 1.2e-05, + "adjust": 1.17e-05, + "administrator": 1.17e-05, + "affecting": 1.17e-05, + "allied": 1.17e-05, + "altogether": 1.17e-05, + "animated": 1.17e-05, + "answering": 1.17e-05, + "assess": 1.17e-05, + "assumption": 1.17e-05, + "assured": 1.17e-05, + "austria": 1.17e-05, + "avoided": 1.17e-05, + "avoiding": 1.17e-05, + "basket": 1.17e-05, + "beard": 1.17e-05, + "bio": 1.17e-05, + "blanket": 1.17e-05, + "brains": 1.1e-06, + "bucket": 1.17e-05, + "burger": 1.17e-05, + "capability": 1.17e-05, + "charming": 1.17e-05, + "chiefs": 8.13e-07, + "commented": 1.17e-05, + "computing": 1.17e-05, + "concentrate": 1.17e-05, + "conducting": 1.17e-05, + "consequence": 1.17e-05, + "continent": 1.17e-05, + "cookie": 1.17e-05, + "cruz": 1.17e-05, + "curse": 1.17e-05, + "displays": 1.17e-05, + "drain": 1.17e-05, + "emissions": 1.17e-05, + "ethical": 1.17e-05, + "excellence": 1.17e-05, + "flame": 1.17e-05, + "forests": 2.19e-07, + "freely": 1.17e-05, + "fruits": 6.76e-08, + "grabbed": 1.17e-05, + "graduation": 1.17e-05, + "hint": 1.17e-05, + "horizon": 1.17e-05, + "hostile": 1.17e-05, + "imagined": 1.17e-05, + "inhabitants": 1.17e-05, + "ink": 1.17e-05, + "inn": 1.17e-05, + "intel": 1.17e-05, + "kicks": 1.17e-05, + "legends": 2.45e-07, + "lo": 1.17e-05, + "lucy": 1.17e-05, + "magazines": 2.09e-06, + "matrix": 1.17e-05, + "measuring": 1.17e-05, + "miserable": 1.17e-05, + "momentum": 1.17e-05, + "monkey": 1.17e-05, + "montreal": 1.17e-05, + "motorcycle": 1.17e-05, + "nationwide": 1.17e-05, + "nest": 1.17e-05, + "newcastle": 1.17e-05, + "nicely": 1.17e-05, + "ninth": 1.17e-05, + "nomination": 1.17e-05, + "notable": 1.17e-05, + "obligation": 1.17e-05, + "optical": 1.17e-05, + "outlook": 1.17e-05, + "penny": 1.17e-05, + "petty": 1.17e-05, + "phd": 1.17e-05, + "ports": 1.95e-07, + "preserved": 1.17e-05, + "programmes": 2.51e-07, + "prospects": 1.17e-05, + "publishers": 5.62e-07, + "quantity": 1.17e-05, + "quantum": 1.17e-05, + "rainbow": 1.17e-05, + "rebels": 1.02e-07, + "recognised": 1.17e-05, + "reed": 1.17e-05, + "reign": 1.17e-05, + "responding": 1.17e-05, + "retained": 1.17e-05, + "rises": 1.17e-05, + "saves": 1.17e-05, + "scan": 1.17e-05, + "scare": 1.17e-05, + "sectors": 2.69e-07, + "shorts": 1.12e-07, + "span": 1.17e-05, + "specialized": 1.17e-05, + "spencer": 1.17e-05, + "submission": 1.17e-05, + "sunny": 1.17e-05, + "supporter": 1.17e-05, + "te": 1.17e-05, + "testament": 1.17e-05, + "toe": 1.17e-05, + "tops": 1.62e-07, + "tremendous": 1.17e-05, + "valued": 1.17e-05, + "wounds": 1.17e-05, + "ab": 1.15e-05, + "accommodation": 1.15e-05, + "achievements": 1.15e-05, + "addressing": 1.15e-05, + "adorable": 1.15e-05, + "allegedly": 1.15e-05, + "ambulance": 1.15e-05, + "ar": 1.74e-08, + "ashamed": 1.15e-05, + "assure": 1.15e-05, + "bailey": 1.15e-05, + "ballot": 1.15e-05, + "batteries": 1.15e-05, + "blessing": 1.15e-05, + "btw": 1.15e-05, + "cemetery": 1.15e-05, + "chambers": 2.34e-07, + "cheat": 1.15e-05, + "cheer": 1.15e-05, + "chile": 1.15e-05, + "cigarette": 1.15e-05, + "compact": 1.15e-05, + "completing": 1.15e-05, + "consulting": 1.15e-05, + "cooling": 1.15e-05, + "corners": 1.15e-05, + "couldve": 2.63e-07, + "deficit": 1.15e-05, + "demo": 1.15e-05, + "demon": 1.15e-05, + "demonstration": 1.15e-05, + "detected": 1.15e-05, + "detection": 1.15e-05, + "doll": 1.15e-05, + "donated": 1.15e-05, + "elaborate": 1.15e-05, + "elder": 1.15e-05, + "encountered": 1.15e-05, + "expertise": 1.15e-05, + "exploring": 1.15e-05, + "fc": 1.15e-05, + "fiber": 1.15e-05, + "filmed": 1.15e-05, + "fried": 1.15e-05, + "grocery": 1.15e-05, + "guided": 1.15e-05, + "guinea": 1.15e-05, + "halfway": 1.15e-05, + "happier": 1.15e-05, + "heels": 1.15e-05, + "holmes": 1.15e-05, + "hull": 1.15e-05, + "independently": 1.15e-05, + "indication": 1.15e-05, + "insisted": 1.15e-05, + "instances": 1.15e-05, + "intensive": 1.15e-05, + "interactive": 1.15e-05, + "intimate": 1.15e-05, + "laundry": 1.15e-05, + "lbs": 5.89e-08, + "lifting": 1.15e-05, + "linda": 1.15e-05, + "martial": 1.15e-05, + "nigerian": 1.15e-05, + "northeast": 1.15e-05, + "observe": 1.15e-05, + "packing": 1.15e-05, + "panels": 2.69e-07, + "password": 1.15e-05, + "pokemon": 1.15e-05, + "politically": 1.15e-05, + "presumably": 1.15e-05, + "pretending": 1.15e-05, + "priorities": 1.15e-05, + "pronounced": 1.15e-05, + "prosecution": 1.15e-05, + "proves": 1.15e-05, + "pulse": 1.15e-05, + "purchasing": 1.15e-05, + "qualities": 1.15e-05, + "queens": 5.89e-06, + "rational": 1.15e-05, + "realm": 1.15e-05, + "reforms": 1.15e-05, + "revenues": 1.15e-05, + "rides": 1.91e-07, + "ripped": 1.15e-05, + "rope": 1.15e-05, + "shadows": 1.41e-07, + "shout": 1.15e-05, + "sierra": 1.15e-05, + "smartphone": 1.15e-05, + "specified": 1.15e-05, + "spectacular": 1.15e-05, + "stan": 1.15e-05, + "streak": 1.15e-05, + "subscription": 1.15e-05, + "switching": 1.15e-05, + "technological": 1.15e-05, + "temporarily": 1.15e-05, + "tolerance": 1.15e-05, + "tourists": 7.08e-08, + "traditionally": 1.15e-05, + "traveled": 1.15e-05, + "treats": 1.15e-05, + "unhappy": 1.15e-05, + "whites": 1.45e-06, + "yup": 1.15e-05, + "accomplish": 1.12e-05, + "adequate": 1.12e-05, + "alter": 1.12e-05, + "apology": 1.12e-05, + "arkansas": 1.12e-05, + "attributed": 1.12e-05, + "beg": 1.12e-05, + "belonging": 1.12e-05, + "booked": 1.12e-05, + "bout": 1.12e-05, + "bowling": 1.12e-05, + "brass": 1.12e-05, + "buzz": 1.12e-05, + "clarke": 1.12e-05, + "comeback": 1.12e-05, + "cos": 3.47e-07, + "crops": 1.12e-05, + "declare": 1.12e-05, + "designers": 4.57e-07, + "detect": 1.12e-05, + "diagnosed": 1.12e-05, + "diesel": 1.12e-05, + "dimensions": 1.12e-05, + "dip": 1.12e-05, + "disturbing": 1.12e-05, + "dot": 4.79e-08, + "dresses": 1.12e-05, + "dylan": 1.12e-05, + "effectiveness": 1.12e-05, + "eliminated": 1.12e-05, + "ellen": 1.12e-05, + "embarrassed": 1.12e-05, + "exceptional": 1.12e-05, + "filing": 1.12e-05, + "fled": 1.12e-05, + "foul": 1.12e-05, + "frankly": 1.12e-05, + "freezing": 1.12e-05, + "graph": 1.12e-05, + "hack": 1.12e-05, + "hannah": 1.12e-05, + "hatred": 1.12e-05, + "ignorant": 1.12e-05, + "influences": 1.12e-05, + "interact": 1.12e-05, + "judging": 1.12e-05, + "knights": 7.59e-07, + "lamp": 1.12e-05, + "limitations": 1.12e-05, + "majesty": 1.12e-05, + "measurement": 1.12e-05, + "measurements": 1.12e-05, + "median": 1.12e-05, + "medieval": 1.12e-05, + "milan": 1.12e-05, + "mobility": 1.12e-05, + "montana": 1.12e-05, + "murders": 1.12e-05, + "nc": 1.12e-05, + "ne": 1.12e-05, + "nyc": 1.12e-05, + "omg": 1.12e-05, + "orientation": 1.12e-05, + "oven": 1.12e-05, + "owen": 1.12e-05, + "passport": 1.12e-05, + "penis": 1.12e-05, + "pills": 1.12e-05, + "planets": 1.74e-06, + "proceeds": 1.12e-05, + "rabbit": 1.12e-05, + "raises": 1.12e-05, + "ranges": 1.12e-05, + "rats": 3.72e-07, + "retire": 1.12e-05, + "rhythm": 1.12e-05, + "ruth": 1.12e-05, + "savage": 1.12e-05, + "servers": 2.29e-07, + "shook": 1.12e-05, + "shooter": 1.12e-05, + "siblings": 8.91e-08, + "slim": 1.12e-05, + "someday": 1.12e-05, + "sophisticated": 1.12e-05, + "spam": 1.12e-05, + "speeds": 1.07e-07, + "stack": 1.12e-05, + "stance": 1.12e-05, + "static": 1.12e-05, + "subway": 1.12e-05, + "supportive": 1.12e-05, + "surgical": 1.12e-05, + "symbols": 1.12e-05, + "tablet": 1.12e-05, + "tent": 1.12e-05, + "thesis": 1.12e-05, + "tide": 1.12e-05, + "travels": 7.59e-08, + "wallace": 1.12e-05, + "warfare": 1.12e-05, + "warming": 1.12e-05, + "weekends": 1.15e-06, + "withdraw": 1.12e-05, + "withdrawal": 1.12e-05, + "youngest": 1.12e-05, + "aging": 1.1e-05, + "airline": 1.1e-05, + "alternatives": 1.1e-05, + "anyways": 1.1e-05, + "argues": 1.1e-05, + "audit": 1.1e-05, + "authentic": 1.1e-05, + "ave": 1.1e-05, + "backwards": 1.1e-05, + "bi": 1.1e-05, + "blonde": 1.1e-05, + "blows": 1.1e-05, + "bolt": 1.1e-05, + "brooks": 1.55e-07, + "bugs": 1.86e-07, + "bust": 1.1e-05, + "clearing": 1.1e-05, + "clips": 3.89e-08, + "collar": 1.1e-05, + "columbus": 1.1e-05, + "comply": 1.1e-05, + "cope": 1.1e-05, + "counted": 1.1e-05, + "crashed": 1.1e-05, + "creepy": 1.1e-05, + "cum": 1.1e-05, + "denmark": 1.1e-05, + "divorced": 1.1e-05, + "donate": 1.1e-05, + "drawings": 1.1e-05, + "dried": 1.1e-05, + "ebay": 1.1e-05, + "echo": 1.1e-05, + "editors": 1.32e-06, + "edwards": 5.89e-07, + "emotionally": 1.1e-05, + "enhance": 1.1e-05, + "experiencing": 1.1e-05, + "extending": 1.1e-05, + "finale": 1.1e-05, + "flavor": 1.1e-05, + "floors": 7.76e-08, + "freaking": 1.1e-05, + "gloves": 1.1e-05, + "harper": 1.1e-05, + "hart": 1.1e-05, + "ignorance": 1.1e-05, + "ignoring": 1.1e-05, + "immigrant": 1.1e-05, + "induced": 1.1e-05, + "inspiring": 1.1e-05, + "intermediate": 1.1e-05, + "invention": 1.1e-05, + "ip": 1.1e-05, + "jesse": 1.1e-05, + "joins": 1.1e-05, + "joking": 1.1e-05, + "lgbt": 1.1e-05, + "likewise": 1.1e-05, + "lineup": 1.1e-05, + "logan": 1.1e-05, + "magnificent": 1.1e-05, + "mathematical": 1.1e-05, + "meantime": 1.1e-05, + "nails": 1.1e-05, + "nevada": 1.1e-05, + "newest": 1.1e-05, + "nonetheless": 1.1e-05, + "nut": 1.1e-05, + "oclock": 1.17e-07, + "opposing": 1.1e-05, + "origins": 6.03e-08, + "orlando": 1.1e-05, + "physicians": 2.95e-07, + "pipeline": 1.1e-05, + "placement": 1.1e-05, + "planted": 1.1e-05, + "pricing": 1.1e-05, + "pt": 1.1e-05, + "puerto": 1.1e-05, + "questioning": 1.1e-05, + "recreation": 1.1e-05, + "renewed": 1.1e-05, + "resigned": 1.1e-05, + "rt": 1.1e-05, + "shallow": 1.1e-05, + "shanghai": 1.1e-05, + "shitty": 1.1e-05, + "singh": 1.1e-05, + "sins": 8.91e-08, + "sketch": 1.1e-05, + "smells": 1.1e-05, + "soda": 1.1e-05, + "spite": 1.1e-05, + "sponsor": 1.1e-05, + "strengthen": 1.1e-05, + "strings": 1.1e-05, + "sunset": 1.1e-05, + "taiwan": 1.1e-05, + "thanksgiving": 1.1e-05, + "thee": 1.1e-05, + "thermal": 1.1e-05, + "trades": 1.07e-07, + "transform": 1.1e-05, + "witnessed": 1.1e-05, + "workplace": 1.1e-05, + "yelling": 1.1e-05, + "yorkshire": 1.1e-05, + "achieving": 1.07e-05, + "aliens": 1.38e-07, + "amsterdam": 1.07e-05, + "analyst": 1.07e-05, + "arabic": 1.07e-05, + "arctic": 1.07e-05, + "assists": 1.07e-05, + "bennett": 1.07e-05, + "bristol": 1.07e-05, + "burnt": 1.07e-05, + "buyer": 1.07e-05, + "calories": 1.07e-05, + "cannabis": 1.07e-05, + "cease": 1.07e-05, + "championships": 1.05e-07, + "chapel": 1.07e-05, + "cloth": 1.07e-05, + "conferences": 3.55e-07, + "considers": 1.07e-05, + "container": 1.07e-05, + "cowboys": 1.38e-07, + "crushed": 1.07e-05, + "deployed": 1.07e-05, + "differ": 1.07e-05, + "dimensional": 1.07e-05, + "eager": 1.07e-05, + "elect": 1.07e-05, + "elevated": 1.07e-05, + "essence": 1.07e-05, + "executives": 1.7e-07, + "familys": 1.07e-07, + "flames": 1.07e-05, + "fork": 1.07e-05, + "fur": 1.07e-05, + "gps": 1.48e-07, + "harold": 1.07e-05, + "harvest": 1.07e-05, + "headline": 1.07e-05, + "hudson": 1.07e-05, + "hype": 1.07e-05, + "identifying": 1.07e-05, + "impacts": 1.07e-05, + "insist": 1.07e-05, + "jo": 1.07e-05, + "junk": 1.07e-05, + "kenny": 1.07e-05, + "kidney": 1.07e-05, + "ladder": 1.07e-05, + "lloyd": 1.07e-05, + "lobby": 1.07e-05, + "marc": 1.07e-05, + "mechanisms": 1.07e-05, + "mineral": 1.07e-05, + "mob": 1.07e-05, + "modest": 1.07e-05, + "motors": 1.07e-07, + "mph": 1.07e-05, + "navigation": 1.07e-05, + "nicholas": 1.07e-05, + "orbit": 1.07e-05, + "paragraph": 1.07e-05, + "passive": 1.07e-05, + "peninsula": 1.07e-05, + "phillips": 1.78e-07, + "pill": 1.07e-05, + "pork": 1.07e-05, + "portuguese": 1.07e-05, + "profitable": 1.07e-05, + "provinces": 8.32e-07, + "ranch": 1.07e-05, + "rays": 9.12e-07, + "reasonably": 1.07e-05, + "reject": 1.07e-05, + "remainder": 1.07e-05, + "schemes": 8.32e-08, + "screens": 1.51e-07, + "seized": 1.07e-05, + "semester": 1.07e-05, + "sentiment": 1.07e-05, + "servants": 1.62e-07, + "shipped": 1.07e-05, + "socks": 1.07e-05, + "sp": 1.07e-05, + "sr": 1.07e-05, + "suited": 1.07e-05, + "supplement": 1.07e-05, + "surviving": 1.07e-05, + "thereby": 1.07e-05, + "threshold": 1.07e-05, + "til": 1.07e-05, + "tin": 1.07e-05, + "tires": 6.17e-08, + "tribal": 1.07e-05, + "tribes": 3.39e-07, + "trunk": 1.07e-05, + "uncertainty": 1.07e-05, + "vampire": 1.07e-05, + "varied": 1.07e-05, + "verdict": 1.07e-05, + "abandon": 1.05e-05, + "accommodate": 1.05e-05, + "accordingly": 1.05e-05, + "aesthetic": 1.05e-05, + "algorithm": 1.05e-05, + "altered": 1.05e-05, + "anchor": 1.05e-05, + "angela": 1.05e-05, + "apr": 1.05e-05, + "arch": 1.05e-05, + "associations": 1.82e-06, + "au": 1.05e-05, + "audiences": 5.5e-07, + "axis": 1.05e-05, + "badge": 1.05e-05, + "bernard": 1.05e-05, + "bizarre": 1.05e-05, + "bounce": 1.05e-05, + "broadcasting": 1.05e-05, + "bs": 1.17e-06, + "bullets": 6.31e-08, + "buses": 1.05e-05, + "cannon": 1.05e-05, + "carol": 1.05e-05, + "carriers": 3.31e-07, + "chairs": 1.51e-07, + "cleaned": 1.05e-05, + "complexity": 1.05e-05, + "confusing": 1.05e-05, + "consultation": 1.05e-05, + "continental": 1.05e-05, + "convenience": 1.05e-05, + "deliberately": 1.05e-05, + "diamonds": 3.24e-07, + "diana": 1.05e-05, + "dictionary": 1.05e-05, + "dignity": 1.05e-05, + "dimension": 1.05e-05, + "disappointing": 1.05e-05, + "diving": 1.05e-05, + "doug": 1.05e-05, + "duncan": 1.05e-05, + "ego": 1.05e-05, + "enthusiasm": 1.05e-05, + "environments": 6.03e-08, + "equation": 1.05e-05, + "extract": 1.05e-05, + "favorites": 1.05e-05, + "ferry": 1.05e-05, + "fisher": 1.05e-05, + "flexibility": 1.05e-05, + "flowing": 1.05e-05, + "fm": 1.05e-05, + "fridge": 1.05e-05, + "functioning": 1.05e-05, + "fusion": 1.05e-05, + "gauge": 1.05e-05, + "goat": 1.05e-05, + "graduates": 1.05e-05, + "gut": 1.05e-05, + "heck": 1.05e-05, + "helmet": 1.05e-05, + "holders": 3.63e-07, + "ideology": 1.05e-05, + "idiots": 1.86e-07, + "inclusion": 1.05e-05, + "initiatives": 1.15e-07, + "innings": 1.05e-05, + "insects": 6.46e-08, + "instructor": 1.05e-05, + "isolation": 1.05e-05, + "justified": 1.05e-05, + "keeper": 1.05e-05, + "lamb": 1.05e-05, + "liar": 1.05e-05, + "machinery": 1.05e-05, + "mansion": 1.05e-05, + "mega": 1.05e-05, + "mercury": 1.05e-05, + "namely": 1.05e-05, + "nbc": 1.05e-05, + "needing": 1.05e-05, + "nerves": 1.05e-05, + "nhl": 1.05e-05, + "obamas": 5.75e-07, + "observations": 1.05e-05, + "ordering": 1.05e-05, + "palmer": 1.05e-05, + "paths": 5.01e-08, + "peers": 1.05e-05, + "pending": 1.05e-05, + "platinum": 1.05e-05, + "possess": 1.05e-05, + "praised": 1.05e-05, + "premises": 1.05e-05, + "probability": 1.05e-05, + "ps": 5.13e-07, + "questioned": 1.05e-05, + "refuses": 1.05e-05, + "resignation": 1.05e-05, + "rider": 1.05e-05, + "ritual": 1.05e-05, + "ruins": 1.05e-05, + "shelf": 1.05e-05, + "slam": 1.05e-05, + "stakes": 1.05e-05, + "starter": 1.05e-05, + "sticking": 1.05e-05, + "subscribe": 1.05e-05, + "superman": 1.05e-05, + "surfaces": 1.05e-05, + "ta": 1.05e-05, + "territories": 1.05e-05, + "tire": 1.05e-05, + "tl": 1.05e-05, + "towers": 2.88e-07, + "transfers": 1.05e-05, + "utterly": 1.05e-05, + "voltage": 1.05e-05, + "warn": 1.05e-05, + "width": 1.05e-05, + "workout": 1.05e-05, + "aa": 1.02e-05, + "abu": 1.02e-05, + "activated": 1.02e-05, + "adaptation": 1.02e-05, + "advisor": 1.02e-05, + "aluminum": 1.02e-05, + "apartments": 1.35e-07, + "attitudes": 1.02e-05, + "attorneys": 1.86e-06, + "bail": 1.02e-05, + "barriers": 1.02e-05, + "belonged": 1.02e-05, + "bradley": 1.02e-05, + "brandon": 1.02e-05, + "broader": 1.02e-05, + "buck": 1.02e-05, + "cal": 1.02e-05, + "caroline": 1.02e-05, + "characterized": 1.02e-05, + "civilization": 1.02e-05, + "congrats": 1.02e-05, + "contractors": 1.86e-07, + "creativity": 1.02e-05, + "dealers": 4.37e-07, + "delicate": 1.02e-05, + "den": 1.02e-05, + "derek": 1.02e-05, + "desires": 1.02e-05, + "disappointment": 1.02e-05, + "disk": 1.02e-05, + "enters": 1.02e-05, + "evaluate": 1.02e-05, + "formally": 1.02e-05, + "frames": 7.76e-08, + "goddess": 1.02e-05, + "gov": 1.02e-05, + "hampshire": 1.02e-05, + "harassment": 1.02e-05, + "hats": 2.34e-07, + "hugh": 1.02e-05, + "insert": 1.02e-05, + "joan": 1.02e-05, + "lebanon": 1.02e-05, + "leeds": 1.02e-05, + "legit": 1.02e-05, + "leonard": 1.02e-05, + "liquor": 1.02e-05, + "loser": 1.02e-05, + "malcolm": 1.02e-05, + "massage": 1.02e-05, + "matched": 1.02e-05, + "messed": 1.02e-05, + "milwaukee": 1.02e-05, + "musician": 1.02e-05, + "nato": 1.02e-05, + "nephew": 1.02e-05, + "notably": 1.02e-05, + "orchestra": 1.02e-05, + "oz": 1.02e-05, + "packages": 1.02e-05, + "pad": 1.02e-05, + "pakistani": 1.02e-05, + "participated": 1.02e-05, + "precision": 1.02e-05, + "preservation": 1.02e-05, + "priests": 4.68e-07, + "privately": 1.02e-05, + "prizes": 1.02e-05, + "pulls": 1.02e-05, + "qualifying": 1.02e-05, + "reasoning": 1.02e-05, + "relaxed": 1.02e-05, + "reporters": 4.47e-07, + "roses": 1.15e-06, + "rumors": 1.02e-05, + "sail": 1.02e-05, + "salmon": 1.02e-05, + "secretly": 1.02e-05, + "seller": 1.02e-05, + "sen": 1.02e-05, + "seo": 1.02e-05, + "sheer": 1.02e-05, + "shifts": 1.02e-05, + "simpson": 1.02e-05, + "smallest": 1.02e-05, + "specially": 1.02e-05, + "stark": 1.02e-05, + "struggled": 1.02e-05, + "sympathy": 1.02e-05, + "tan": 1.02e-05, + "teenagers": 2.09e-07, + "theoretical": 1.02e-05, + "thumb": 1.02e-05, + "timber": 1.02e-05, + "transparent": 1.02e-05, + "travis": 1.02e-05, + "trumps": 2.95e-06, + "tweets": 1.02e-05, + "tx": 1.02e-05, + "upside": 1.02e-05, + "urged": 1.02e-05, + "visitor": 1.02e-05, + "vitamin": 1.02e-05, + "void": 1.02e-05, + "voluntary": 1.02e-05, + "wheat": 1.02e-05, + "whip": 1.02e-05, + "wipe": 1.02e-05, + "wolves": 1.02e-05, + "wrist": 1.02e-05, + "abused": 1e-05, + "acute": 1e-05, + "admiral": 1e-05, + "amanda": 1e-05, + "arnold": 1e-05, + "arrange": 1e-05, + "banana": 1e-05, + "behave": 1e-05, + "betting": 1e-05, + "blair": 1e-05, + "bo": 1e-05, + "borrow": 1e-05, + "camping": 1e-05, + "capitol": 1e-05, + "celtic": 1e-05, + "chan": 1e-05, + "chin": 1e-05, + "civic": 1e-05, + "clerk": 1e-05, + "conclusions": 1e-05, + "considerably": 1e-05, + "contacted": 1e-05, + "cottage": 1e-05, + "coup": 1e-05, + "criticized": 1e-05, + "crude": 1e-05, + "dash": 1e-05, + "decreased": 1e-05, + "defended": 1e-05, + "demons": 3.89e-07, + "deposits": 1e-05, + "disclosure": 1e-05, + "disposal": 1e-05, + "distinctive": 1e-05, + "documented": 1e-05, + "donation": 1e-05, + "dragged": 1e-05, + "drone": 1e-05, + "elses": 5.25e-07, + "encounters": 1e-05, + "ensuring": 1e-05, + "enterprises": 1.05e-07, + "escort": 1e-05, + "exams": 1e-05, + "firmly": 1e-05, + "flour": 1e-05, + "gdp": 1e-05, + "geneva": 1e-05, + "hindu": 1e-05, + "holdings": 1e-05, + "indie": 1e-05, + "indirect": 1e-05, + "inspire": 1e-05, + "institutional": 1e-05, + "interim": 1e-05, + "interviewed": 1e-05, + "java": 1e-05, + "jefferson": 1e-05, + "jerk": 1e-05, + "karl": 1e-05, + "kindly": 1e-05, + "kindness": 1e-05, + "leaked": 1e-05, + "locals": 7.94e-08, + "lottery": 1e-05, + "louise": 1e-05, + "magnitude": 1e-05, + "mc": 1e-05, + "minus": 1e-05, + "nhs": 1e-05, + "noting": 1e-05, + "nude": 1e-05, + "organs": 5.25e-08, + "outlet": 1e-05, + "outlets": 1e-05, + "parameters": 1e-05, + "pause": 1e-05, + "pledge": 1e-05, + "portal": 1e-05, + "prescription": 1e-05, + "protesters": 1e-05, + "proving": 1e-05, + "publicity": 1e-05, + "punished": 1e-05, + "puppy": 1e-05, + "recruitment": 1e-05, + "screwed": 1e-05, + "shades": 1e-05, + "shakespeare": 1e-05, + "silicon": 1e-05, + "slice": 1e-05, + "spelling": 1e-05, + "spurs": 1e-05, + "subscribers": 6.31e-08, + "surveys": 1.38e-07, + "survivor": 1e-05, + "telegraph": 1e-05, + "tits": 1e-05, + "vaccine": 1e-05, + "vinyl": 1e-05, + "westminster": 1e-05, + "wished": 1e-05, + "wonders": 9.77e-08, + "accurately": 9.77e-06, + "adelaide": 9.77e-06, + "affiliate": 9.77e-06, + "alfred": 9.77e-06, + "asylum": 9.77e-06, + "barn": 9.77e-06, + "bent": 9.77e-06, + "bernie": 9.77e-06, + "brussels": 9.77e-06, + "cathedral": 9.77e-06, + "centered": 9.77e-06, + "childs": 1.48e-06, + "clause": 9.77e-06, + "cluster": 9.77e-06, + "complained": 9.77e-06, + "compounds": 6.17e-08, + "consistency": 9.77e-06, + "cr": 9.77e-06, + "cracked": 9.77e-06, + "cylinder": 9.77e-06, + "dancer": 9.77e-06, + "deaf": 9.77e-06, + "debts": 9.77e-06, + "denial": 9.77e-06, + "digging": 9.77e-06, + "dock": 9.77e-06, + "entrepreneur": 9.77e-06, + "evident": 9.77e-06, + "expectation": 9.77e-06, + "expedition": 9.77e-06, + "expressing": 9.77e-06, + "extends": 9.77e-06, + "facilitate": 9.77e-06, + "failures": 9.77e-06, + "feat": 9.77e-06, + "fossil": 9.77e-06, + "founding": 9.77e-06, + "freight": 9.77e-06, + "generating": 9.77e-06, + "goddamn": 9.77e-06, + "guides": 1.58e-07, + "honesty": 9.77e-06, + "inappropriate": 9.77e-06, + "infant": 9.77e-06, + "initiated": 9.77e-06, + "injection": 9.77e-06, + "instrumental": 9.77e-06, + "insult": 9.77e-06, + "interference": 9.77e-06, + "interstate": 9.77e-06, + "julian": 9.77e-06, + "launching": 9.77e-06, + "liking": 9.77e-06, + "linux": 9.77e-06, + "luis": 2.34e-08, + "mates": 3.24e-07, + "mediterranean": 9.77e-06, + "neat": 9.77e-06, + "negotiate": 9.77e-06, + "neo": 9.77e-06, + "nicole": 9.77e-06, + "obligations": 9.77e-06, + "offset": 9.77e-06, + "outbreak": 9.77e-06, + "pal": 9.77e-06, + "palestine": 9.77e-06, + "perfection": 9.77e-06, + "pigs": 5.01e-07, + "pirates": 3.39e-07, + "posters": 6.46e-08, + "practicing": 9.77e-06, + "praying": 9.77e-06, + "probe": 9.77e-06, + "prohibited": 9.77e-06, + "projected": 9.77e-06, + "propose": 9.77e-06, + "quarterly": 9.77e-06, + "recipes": 9.77e-06, + "recruiting": 9.77e-06, + "refusing": 9.77e-06, + "rehabilitation": 9.77e-06, + "reid": 9.77e-06, + "remix": 9.77e-06, + "resistant": 9.77e-06, + "reynolds": 9.77e-06, + "riders": 3.39e-07, + "robots": 2.88e-07, + "rockets": 2.57e-07, + "roller": 9.77e-06, + "sailing": 9.77e-06, + "shapes": 9.77e-06, + "skinny": 9.77e-06, + "slipped": 9.77e-06, + "sneak": 9.77e-06, + "solving": 9.77e-06, + "sore": 9.77e-06, + "spark": 9.77e-06, + "speculation": 9.77e-06, + "steep": 9.77e-06, + "stevens": 4.07e-07, + "straw": 9.77e-06, + "successor": 9.77e-06, + "targeting": 9.77e-06, + "triggered": 9.77e-06, + "troubles": 7.41e-08, + "uncertain": 9.77e-06, + "upload": 9.77e-06, + "vector": 9.77e-06, + "violations": 9.77e-06, + "weigh": 9.77e-06, + "whatsoever": 9.77e-06, + "wicked": 9.77e-06, + "abraham": 9.55e-06, + "absent": 9.55e-06, + "acoustic": 9.55e-06, + "adapt": 9.55e-06, + "ancestors": 1.48e-07, + "archive": 9.55e-06, + "atomic": 9.55e-06, + "bean": 9.55e-06, + "bicycle": 9.55e-06, + "bryan": 9.55e-06, + "bump": 9.55e-06, + "buttons": 2e-07, + "cart": 9.55e-06, + "circus": 9.55e-06, + "claire": 9.55e-06, + "cocaine": 9.55e-06, + "cohen": 9.55e-06, + "colleague": 9.55e-06, + "compelling": 9.55e-06, + "compiled": 9.55e-06, + "complications": 9.55e-06, + "construct": 9.55e-06, + "cord": 9.55e-06, + "crowded": 9.55e-06, + "cyber": 9.55e-06, + "dale": 9.55e-06, + "debates": 9.55e-06, + "defendant": 9.55e-06, + "delays": 9.55e-06, + "dense": 9.55e-06, + "desperately": 9.55e-06, + "doctrine": 9.55e-06, + "expose": 9.55e-06, + "financially": 9.55e-06, + "freshman": 9.55e-06, + "furious": 9.55e-06, + "gameplay": 9.55e-06, + "geography": 9.55e-06, + "gig": 9.55e-06, + "habitat": 9.55e-06, + "harbour": 9.55e-06, + "hazard": 9.55e-06, + "hydrogen": 9.55e-06, + "implies": 9.55e-06, + "intact": 9.55e-06, + "intake": 9.55e-06, + "irrelevant": 9.55e-06, + "jaw": 9.55e-06, + "jin": 9.55e-06, + "kitty": 9.55e-06, + "lauren": 9.55e-06, + "lawn": 9.55e-06, + "manufacture": 9.55e-06, + "martha": 9.55e-06, + "medals": 9.55e-06, + "mercedes": 9.55e-06, + "mistaken": 9.55e-06, + "moses": 9.55e-06, + "nashville": 9.55e-06, + "nebraska": 9.55e-06, + "needle": 9.55e-06, + "ol": 9.55e-06, + "olds": 8.71e-07, + "organize": 9.55e-06, + "ottawa": 9.55e-06, + "oval": 9.55e-06, + "pity": 9.55e-06, + "pond": 9.55e-06, + "porter": 9.55e-06, + "portions": 9.55e-06, + "prey": 9.55e-06, + "prophet": 9.55e-06, + "raymond": 9.55e-06, + "recalled": 9.55e-06, + "reduces": 9.55e-06, + "referendum": 9.55e-06, + "refugee": 9.55e-06, + "regulated": 9.55e-06, + "rounded": 9.55e-06, + "ruby": 9.55e-06, + "rushed": 9.55e-06, + "sanders": 5.89e-08, + "satisfy": 9.55e-06, + "scales": 2.09e-08, + "seasonal": 9.55e-06, + "segments": 6.03e-08, + "sensible": 9.55e-06, + "sequel": 9.55e-06, + "shifted": 9.55e-06, + "shifting": 9.55e-06, + "shining": 9.55e-06, + "slower": 9.55e-06, + "spinning": 9.55e-06, + "stanford": 9.55e-06, + "stepping": 9.55e-06, + "teammates": 1.2e-07, + "touches": 9.55e-06, + "township": 9.55e-06, + "travelled": 9.55e-06, + "twisted": 9.55e-06, + "usb": 9.55e-06, + "vienna": 9.55e-06, + "wade": 9.55e-06, + "whale": 9.55e-06, + "writings": 1.17e-07, + "admire": 9.33e-06, + "af": 9.33e-06, + "amber": 9.33e-06, + "ankle": 9.33e-06, + "armor": 9.33e-06, + "autism": 9.33e-06, + "bachelor": 9.33e-06, + "berry": 9.33e-06, + "billions": 9.33e-06, + "brady": 9.33e-06, + "brisbane": 9.33e-06, + "bulls": 9.55e-07, + "bullying": 9.33e-06, + "capitalism": 9.33e-06, + "caution": 9.33e-06, + "certification": 9.33e-06, + "characteristic": 9.33e-06, + "clan": 9.33e-06, + "clash": 9.33e-06, + "columns": 6.76e-08, + "compatible": 9.33e-06, + "concerts": 9.12e-08, + "condemned": 9.33e-06, + "configuration": 9.33e-06, + "continuously": 9.33e-06, + "convincing": 9.33e-06, + "coupled": 9.33e-06, + "curiosity": 9.33e-06, + "delight": 9.33e-06, + "determining": 9.33e-06, + "entities": 9.33e-06, + "exceptions": 9.33e-06, + "explosive": 9.33e-06, + "flooding": 9.33e-06, + "fortunate": 9.33e-06, + "fortunately": 9.33e-06, + "foundations": 1.51e-06, + "frontier": 9.33e-06, + "frustrating": 9.33e-06, + "frustration": 9.33e-06, + "geographic": 9.33e-06, + "glenn": 9.33e-06, + "grande": 9.33e-06, + "grasp": 9.33e-06, + "handy": 9.33e-06, + "hardcore": 9.33e-06, + "harmful": 9.33e-06, + "headache": 9.33e-06, + "hers": 2.19e-07, + "hispanic": 9.33e-06, + "incentive": 9.33e-06, + "inclusive": 9.33e-06, + "infections": 9.33e-06, + "jackie": 9.33e-06, + "joel": 9.33e-06, + "kissing": 9.33e-06, + "lanes": 3.98e-07, + "licence": 9.33e-06, + "lungs": 9.33e-06, + "madness": 9.33e-06, + "mandate": 9.33e-06, + "manga": 9.33e-06, + "memorable": 9.33e-06, + "merger": 9.33e-06, + "minorities": 9.33e-06, + "nj": 9.33e-06, + "occurring": 9.33e-06, + "organizing": 9.33e-06, + "performs": 9.33e-06, + "ph": 9.33e-06, + "po": 9.33e-06, + "poker": 9.33e-06, + "portable": 9.33e-06, + "priced": 9.33e-06, + "quebec": 9.33e-06, + "randomly": 9.33e-06, + "rankings": 9.33e-06, + "realizing": 9.33e-06, + "resign": 9.33e-06, + "revealing": 9.33e-06, + "rico": 9.33e-06, + "robbery": 9.33e-06, + "rub": 9.33e-06, + "runners": 3.63e-07, + "sally": 9.33e-06, + "scattered": 9.33e-06, + "scout": 9.33e-06, + "searched": 9.33e-06, + "sexuality": 9.33e-06, + "shouting": 9.33e-06, + "slap": 9.33e-06, + "steak": 9.33e-06, + "succession": 9.33e-06, + "superintendent": 9.33e-06, + "suspicion": 9.33e-06, + "sweep": 9.33e-06, + "tactical": 9.33e-06, + "talents": 5.13e-08, + "therapist": 9.33e-06, + "thereafter": 9.33e-06, + "thorough": 9.33e-06, + "tuition": 9.33e-06, + "tumor": 9.33e-06, + "usd": 9.33e-06, + "variables": 9.33e-06, + "varying": 9.33e-06, + "wholesale": 9.33e-06, + "wwe": 9.33e-06, + "administered": 9.12e-06, + "affiliated": 9.12e-06, + "apples": 4.47e-06, + "architectural": 9.12e-06, + "artillery": 9.12e-06, + "assembled": 9.12e-06, + "bangladesh": 9.12e-06, + "barack": 9.12e-06, + "beaches": 9.12e-06, + "bees": 3.98e-07, + "boarding": 9.12e-06, + "bothered": 9.12e-06, + "canvas": 9.12e-06, + "canyon": 9.12e-06, + "casey": 9.12e-06, + "cheek": 9.12e-06, + "chen": 9.12e-06, + "cincinnati": 9.12e-06, + "circular": 9.12e-06, + "circulation": 9.12e-06, + "clearance": 9.12e-06, + "closes": 9.12e-06, + "coincidence": 9.12e-06, + "comedian": 9.12e-06, + "commands": 1.86e-07, + "commissioned": 9.12e-06, + "concentrated": 9.12e-06, + "conscience": 9.12e-06, + "cooler": 9.12e-06, + "countless": 9.12e-06, + "curry": 9.12e-06, + "dame": 9.12e-06, + "deceased": 9.12e-06, + "dedication": 9.12e-06, + "defining": 9.12e-06, + "detention": 9.12e-06, + "disputes": 9.12e-06, + "drake": 9.12e-06, + "employ": 9.12e-06, + "enforce": 9.12e-06, + "explicit": 9.12e-06, + "explicitly": 9.12e-06, + "eyed": 9.12e-06, + "florence": 9.12e-06, + "flu": 9.12e-06, + "forbidden": 9.12e-06, + "fraction": 9.12e-06, + "infantry": 9.12e-06, + "integral": 9.12e-06, + "investor": 9.12e-06, + "janet": 9.12e-06, + "judged": 9.12e-06, + "katie": 9.12e-06, + "kidnapped": 9.12e-06, + "lectures": 9.12e-06, + "lightly": 9.12e-06, + "linking": 9.12e-06, + "maintains": 9.12e-06, + "marble": 9.12e-06, + "maritime": 9.12e-06, + "melt": 9.12e-06, + "modes": 5.75e-08, + "monica": 9.12e-06, + "mumbai": 9.12e-06, + "nominee": 9.12e-06, + "oath": 9.12e-06, + "offence": 9.12e-06, + "packaging": 9.12e-06, + "patriots": 1.05e-07, + "pee": 9.12e-06, + "pillow": 9.12e-06, + "pirate": 9.12e-06, + "polar": 9.12e-06, + "prediction": 9.12e-06, + "preview": 9.12e-06, + "processed": 9.12e-06, + "pursuing": 9.12e-06, + "puzzle": 9.12e-06, + "rapper": 9.12e-06, + "rebecca": 9.12e-06, + "reconstruction": 9.12e-06, + "renowned": 9.12e-06, + "revelation": 9.12e-06, + "sara": 9.12e-06, + "scholar": 9.12e-06, + "sharks": 2.82e-07, + "shoots": 9.12e-06, + "skirt": 9.12e-06, + "socially": 9.12e-06, + "spa": 9.12e-06, + "spike": 9.12e-06, + "sprint": 9.12e-06, + "stir": 9.12e-06, + "stuffed": 9.12e-06, + "substantially": 9.12e-06, + "suburbs": 6.76e-08, + "superb": 9.12e-06, + "supposedly": 9.12e-06, + "tab": 9.12e-06, + "tendency": 9.12e-06, + "thatll": 8.32e-08, + "theirs": 1.1e-07, + "toast": 9.12e-06, + "toes": 9.12e-06, + "touchdown": 9.12e-06, + "traits": 9.12e-06, + "trek": 9.12e-06, + "tricky": 9.12e-06, + "triumph": 9.12e-06, + "uber": 9.12e-06, + "underwear": 9.12e-06, + "unto": 9.12e-06, + "viable": 9.12e-06, + "waist": 9.12e-06, + "welcomed": 9.12e-06, + "wit": 9.12e-06, + "wreck": 9.12e-06, + "absurd": 8.91e-06, + "accessories": 8.91e-06, + "adrian": 8.91e-06, + "advocates": 6.17e-08, + "ag": 8.91e-06, + "ambitious": 8.91e-06, + "amid": 8.91e-06, + "annoyed": 8.91e-06, + "appealing": 8.91e-06, + "appointments": 8.91e-06, + "assumptions": 8.91e-06, + "ballet": 8.91e-06, + "bargain": 8.91e-06, + "binary": 8.91e-06, + "blend": 8.91e-06, + "blogs": 1.95e-07, + "brake": 8.91e-06, + "builds": 8.91e-06, + "businessman": 8.91e-06, + "cab": 8.91e-06, + "ch": 8.91e-06, + "chi": 8.91e-06, + "col": 8.91e-06, + "collision": 8.91e-06, + "colombia": 8.91e-06, + "compassion": 8.91e-06, + "consumed": 8.91e-06, + "corrected": 8.91e-06, + "correction": 8.91e-06, + "cough": 8.91e-06, + "cousins": 1.12e-06, + "critic": 8.91e-06, + "czech": 8.91e-06, + "defenders": 2.63e-07, + "denying": 8.91e-06, + "depot": 8.91e-06, + "distress": 8.91e-06, + "documentation": 8.91e-06, + "doubts": 8.91e-06, + "dramatically": 8.91e-06, + "drank": 8.91e-06, + "dudes": 9.12e-07, + "eats": 2.04e-08, + "elegant": 8.91e-06, + "elevator": 8.91e-06, + "ellis": 8.91e-06, + "exchanges": 1.26e-07, + "excuses": 8.91e-06, + "execute": 8.91e-06, + "factories": 8.91e-06, + "feast": 8.91e-06, + "finland": 8.91e-06, + "frederick": 8.91e-06, + "frost": 8.91e-06, + "goin": 8.91e-06, + "herald": 8.91e-06, + "hike": 8.91e-06, + "hollow": 8.91e-06, + "homeland": 8.91e-06, + "hows": 5.75e-07, + "imported": 8.91e-06, + "ing": 8.91e-06, + "internationally": 8.91e-06, + "iraqi": 8.91e-06, + "itunes": 8.91e-06, + "kane": 8.91e-06, + "kissed": 8.91e-06, + "lame": 8.91e-06, + "licensing": 8.91e-06, + "lily": 8.91e-06, + "limiting": 8.91e-06, + "locker": 8.91e-06, + "mainland": 8.91e-06, + "marking": 8.91e-06, + "meditation": 8.91e-06, + "messenger": 8.91e-06, + "metals": 1.23e-07, + "missiles": 9.33e-08, + "munich": 8.91e-06, + "norwegian": 8.91e-06, + "pencil": 8.91e-06, + "philosophical": 8.91e-06, + "pierre": 8.91e-06, + "pipes": 5.37e-08, + "plasma": 8.91e-06, + "plea": 8.91e-06, + "punish": 8.91e-06, + "purse": 8.91e-06, + "quarterback": 8.91e-06, + "reagan": 8.91e-06, + "ref": 8.91e-06, + "relieved": 8.91e-06, + "replies": 8.91e-06, + "reservation": 8.91e-06, + "rhetoric": 8.91e-06, + "rivals": 1.51e-07, + "rushing": 8.91e-06, + "salvation": 8.91e-06, + "sanctions": 8.91e-06, + "secular": 8.91e-06, + "sensitivity": 8.91e-06, + "shane": 8.91e-06, + "sigh": 8.91e-06, + "sixteen": 8.91e-06, + "sovereign": 8.91e-06, + "specifications": 8.91e-06, + "spends": 8.91e-06, + "spouse": 8.91e-06, + "stat": 8.91e-06, + "supervisor": 8.91e-06, + "synthetic": 8.91e-06, + "teaches": 8.91e-06, + "tense": 8.91e-06, + "terrifying": 8.91e-06, + "toyota": 8.91e-06, + "tracked": 8.91e-06, + "traders": 1.32e-07, + "troy": 8.91e-06, + "varieties": 8.91e-06, + "vegan": 8.91e-06, + "waking": 8.91e-06, + "walmart": 8.91e-06, + "wang": 8.91e-06, + "wilderness": 8.91e-06, + "admits": 8.71e-06, + "adviser": 8.71e-06, + "aggregate": 8.71e-06, + "anal": 8.71e-06, + "anatomy": 8.71e-06, + "annie": 8.71e-06, + "announces": 8.71e-06, + "applicants": 2.45e-07, + "automobile": 8.71e-06, + "barnes": 8.71e-06, + "breasts": 8.71e-06, + "cement": 8.71e-06, + "chess": 8.71e-06, + "citing": 8.71e-06, + "colonies": 8.71e-06, + "composite": 8.71e-06, + "consequently": 8.71e-06, + "consist": 8.71e-06, + "councils": 2.57e-06, + "cox": 8.71e-06, + "curtis": 8.71e-06, + "decorated": 8.71e-06, + "delegates": 8.71e-06, + "dreaming": 8.71e-06, + "dull": 8.71e-06, + "enables": 8.71e-06, + "fare": 8.71e-06, + "fashioned": 8.71e-06, + "feared": 8.71e-06, + "float": 8.71e-06, + "generator": 8.71e-06, + "grind": 8.71e-06, + "grinding": 8.71e-06, + "grove": 8.71e-06, + "guessing": 8.71e-06, + "gum": 8.71e-06, + "hobby": 8.71e-06, + "hunters": 1.07e-06, + "idol": 8.71e-06, + "illusion": 8.71e-06, + "incorrect": 8.71e-06, + "jun": 8.71e-06, + "junction": 8.71e-06, + "lance": 8.71e-06, + "leap": 8.71e-06, + "locate": 8.71e-06, + "locks": 8.32e-08, + "lou": 8.71e-06, + "lynch": 8.71e-06, + "manages": 8.71e-06, + "masses": 8.71e-06, + "medicare": 8.71e-06, + "modeling": 8.71e-06, + "motive": 8.71e-06, + "nazis": 2.63e-07, + "neighbourhood": 8.71e-06, + "networking": 8.71e-06, + "newer": 8.71e-06, + "newton": 8.71e-06, + "oppose": 8.71e-06, + "optimal": 8.71e-06, + "overtime": 8.71e-06, + "packs": 1.29e-07, + "permits": 8.71e-06, + "playstation": 8.71e-06, + "pops": 5.01e-07, + "postal": 8.71e-06, + "predictions": 8.71e-06, + "prep": 8.71e-06, + "profound": 8.71e-06, + "prosecutor": 8.71e-06, + "rebellion": 8.71e-06, + "recipient": 8.71e-06, + "refund": 8.71e-06, + "remembering": 8.71e-06, + "rescued": 8.71e-06, + "risky": 8.71e-06, + "robust": 8.71e-06, + "scam": 8.71e-06, + "sci": 8.71e-06, + "sep": 8.71e-06, + "shareholders": 7.94e-08, + "sided": 8.71e-06, + "simulation": 8.71e-06, + "sober": 8.71e-06, + "spice": 8.71e-06, + "squeeze": 8.71e-06, + "storms": 8.51e-07, + "supervision": 8.71e-06, + "suspects": 6.76e-07, + "swap": 8.71e-06, + "swept": 8.71e-06, + "terrain": 8.71e-06, + "terrified": 8.71e-06, + "themed": 8.71e-06, + "threaten": 8.71e-06, + "thrilled": 8.71e-06, + "towel": 8.71e-06, + "trio": 8.71e-06, + "tubes": 5.75e-08, + "unconscious": 8.71e-06, + "und": 8.71e-06, + "varies": 8.71e-06, + "vegetable": 8.71e-06, + "verified": 8.71e-06, + "vibe": 8.71e-06, + "virtue": 8.71e-06, + "wifi": 8.71e-06, + "wishing": 8.71e-06, + "workforce": 8.71e-06, + "zombie": 8.71e-06, + "acre": 8.51e-06, + "airports": 5.5e-07, + "alot": 8.51e-06, + "amen": 8.51e-06, + "andrews": 1.15e-06, + "arise": 8.51e-06, + "ashes": 3.55e-08, + "automotive": 8.51e-06, + "battlefield": 8.51e-06, + "begging": 8.51e-06, + "berkeley": 8.51e-06, + "bloom": 8.51e-06, + "bore": 8.51e-06, + "bundle": 8.51e-06, + "butterfly": 8.51e-06, + "buys": 6.76e-08, + "casualties": 8.51e-06, + "catches": 8.51e-06, + "chad": 8.51e-06, + "clown": 8.51e-06, + "committees": 1.23e-06, + "conjunction": 8.51e-06, + "costly": 8.51e-06, + "cows": 6.92e-07, + "cries": 8.51e-06, + "cuban": 8.51e-06, + "cycles": 7.24e-08, + "darker": 8.51e-06, + "davies": 8.51e-06, + "descent": 8.51e-06, + "desktop": 8.51e-06, + "dial": 8.51e-06, + "directory": 8.51e-06, + "disabilities": 8.51e-06, + "discharge": 8.51e-06, + "discusses": 8.51e-06, + "dodge": 8.51e-06, + "downs": 3.47e-07, + "drilling": 8.51e-06, + "drums": 8.51e-06, + "elimination": 8.51e-06, + "enjoys": 8.51e-06, + "es": 6.61e-07, + "espn": 8.51e-06, + "ginger": 8.51e-06, + "governors": 3.24e-06, + "guild": 8.51e-06, + "halt": 8.51e-06, + "han": 8.51e-06, + "henderson": 8.51e-06, + "ibm": 8.51e-06, + "imaging": 8.51e-06, + "implied": 8.51e-06, + "impress": 8.51e-06, + "inability": 8.51e-06, + "incoming": 8.51e-06, + "isaac": 8.51e-06, + "jar": 8.51e-06, + "kay": 8.51e-06, + "lb": 8.51e-06, + "leicester": 8.51e-06, + "liam": 8.51e-06, + "litigation": 8.51e-06, + "mentor": 8.51e-06, + "merchandise": 8.51e-06, + "minerals": 8.51e-06, + "miners": 3.31e-07, + "monk": 8.51e-06, + "neighborhoods": 3.55e-07, + "ni": 8.51e-06, + "noah": 8.51e-06, + "norm": 8.51e-06, + "obtaining": 8.51e-06, + "occupy": 8.51e-06, + "offended": 8.51e-06, + "orthodox": 8.51e-06, + "overhead": 8.51e-06, + "pac": 8.51e-06, + "painter": 8.51e-06, + "partys": 1.17e-07, + "perth": 8.51e-06, + "pierce": 8.51e-06, + "pistol": 8.51e-06, + "printer": 8.51e-06, + "prone": 8.51e-06, + "raiders": 8.51e-06, + "readily": 8.51e-06, + "reflecting": 8.51e-06, + "regiment": 8.51e-06, + "remembers": 8.51e-06, + "reunion": 8.51e-06, + "revival": 8.51e-06, + "sanctuary": 8.51e-06, + "satan": 8.51e-06, + "satisfying": 8.51e-06, + "seas": 2.09e-07, + "securing": 8.51e-06, + "sensors": 8.51e-06, + "seoul": 8.51e-06, + "shells": 2.04e-07, + "siege": 8.51e-06, + "sixty": 8.51e-06, + "sleeve": 8.51e-06, + "sonic": 8.51e-06, + "soundtrack": 8.51e-06, + "speeches": 8.51e-06, + "spine": 8.51e-06, + "steering": 8.51e-06, + "substances": 8.51e-06, + "sullivan": 8.51e-06, + "sustain": 8.51e-06, + "tenure": 8.51e-06, + "texture": 8.51e-06, + "thankful": 8.51e-06, + "translate": 8.51e-06, + "treasurer": 8.51e-06, + "triangle": 8.51e-06, + "unclear": 8.51e-06, + "upgraded": 8.51e-06, + "venezuela": 8.51e-06, + "venice": 8.51e-06, + "vladimir": 8.51e-06, + "wizard": 8.51e-06, + "yankees": 8.51e-06, + "absorbed": 8.32e-06, + "admin": 8.32e-06, + "affection": 8.32e-06, + "airplane": 8.32e-06, + "altitude": 8.32e-06, + "athens": 8.32e-06, + "attributes": 8.32e-06, + "baked": 8.32e-06, + "baking": 8.32e-06, + "beautifully": 8.32e-06, + "betty": 8.32e-06, + "biblical": 8.32e-06, + "bmw": 8.32e-06, + "boo": 8.32e-06, + "cardiff": 8.32e-06, + "collapsed": 8.32e-06, + "coloured": 8.32e-06, + "competent": 8.32e-06, + "countryside": 8.32e-06, + "cracking": 8.32e-06, + "crane": 8.32e-06, + "debris": 8.32e-06, + "delegation": 8.32e-06, + "demographic": 8.32e-06, + "descriptions": 8.32e-06, + "donor": 8.32e-06, + "easiest": 8.32e-06, + "educate": 8.32e-06, + "enabling": 8.32e-06, + "enrolled": 8.32e-06, + "enrollment": 8.32e-06, + "essex": 8.32e-06, + "exceed": 8.32e-06, + "excluding": 8.32e-06, + "expressions": 8.32e-06, + "fierce": 8.32e-06, + "forgetting": 8.32e-06, + "gabriel": 8.32e-06, + "garlic": 8.32e-06, + "gaza": 8.32e-06, + "gratitude": 8.32e-06, + "hail": 8.32e-06, + "heroin": 8.32e-06, + "honda": 8.32e-06, + "hooked": 8.32e-06, + "illustration": 8.32e-06, + "impose": 8.32e-06, + "indicator": 8.32e-06, + "inequality": 8.32e-06, + "ins": 2.4e-07, + "interpreted": 8.32e-06, + "jamaica": 8.32e-06, + "joey": 8.32e-06, + "joshua": 8.32e-06, + "journals": 5.13e-07, + "leisure": 8.32e-06, + "lend": 8.32e-06, + "lengths": 8.32e-06, + "leon": 8.32e-06, + "lounge": 8.32e-06, + "luckily": 8.32e-06, + "manuscript": 8.32e-06, + "marco": 8.32e-06, + "marines": 1.58e-07, + "mint": 8.32e-06, + "molecules": 8.32e-06, + "montgomery": 8.32e-06, + "notification": 8.32e-06, + "nova": 8.32e-06, + "oakland": 8.32e-06, + "outline": 8.32e-06, + "pasta": 8.32e-06, + "pi": 8.32e-06, + "polite": 8.32e-06, + "productions": 1.55e-07, + "professors": 6.03e-07, + "quicker": 8.32e-06, + "randy": 8.32e-06, + "receipt": 8.32e-06, + "recognise": 8.32e-06, + "reliability": 8.32e-06, + "researcher": 8.32e-06, + "retailers": 1.91e-07, + "reviewing": 8.32e-06, + "romans": 2.69e-07, + "runway": 8.32e-06, + "sculpture": 8.32e-06, + "senses": 8.32e-06, + "sensor": 8.32e-06, + "seth": 8.32e-06, + "sharon": 8.32e-06, + "showcase": 8.32e-06, + "smoked": 8.32e-06, + "su": 8.32e-06, + "subsidiary": 8.32e-06, + "tampa": 8.32e-06, + "tenth": 8.32e-06, + "theology": 8.32e-06, + "topped": 8.32e-06, + "trails": 1.1e-07, + "underwater": 8.32e-06, + "uploaded": 8.32e-06, + "velocity": 8.32e-06, + "venues": 1.82e-07, + "wax": 8.32e-06, + "wikipedia": 8.32e-06, + "winston": 8.32e-06, + "yay": 8.32e-06, + "yu": 8.32e-06, + "accountability": 8.13e-06, + "aerial": 8.13e-06, + "albeit": 8.13e-06, + "alcoholic": 8.13e-06, + "amazed": 8.13e-06, + "ambition": 8.13e-06, + "ammunition": 8.13e-06, + "anthem": 8.13e-06, + "architects": 2.34e-07, + "automated": 8.13e-06, + "bake": 8.13e-06, + "batch": 8.13e-06, + "borrowed": 8.13e-06, + "carson": 8.13e-06, + "catalog": 8.13e-06, + "catalogue": 8.13e-06, + "charitable": 8.13e-06, + "christine": 8.13e-06, + "clicking": 8.13e-06, + "collector": 8.13e-06, + "compliment": 8.13e-06, + "consisted": 8.13e-06, + "continually": 8.13e-06, + "coordinator": 8.13e-06, + "damaging": 8.13e-06, + "danish": 8.13e-06, + "def": 8.13e-06, + "deployment": 8.13e-06, + "drafted": 8.13e-06, + "enjoyable": 8.13e-06, + "exotic": 8.13e-06, + "exterior": 8.13e-06, + "feminine": 8.13e-06, + "firearms": 8.13e-06, + "fountain": 8.13e-06, + "fury": 8.13e-06, + "gb": 8.13e-06, + "genocide": 8.13e-06, + "glance": 8.13e-06, + "glow": 8.13e-06, + "hay": 8.13e-06, + "headlines": 8.13e-06, + "hebrew": 8.13e-06, + "hometown": 8.13e-06, + "humanitarian": 8.13e-06, + "hungary": 8.13e-06, + "idaho": 8.13e-06, + "immunity": 8.13e-06, + "implementing": 8.13e-06, + "inherited": 8.13e-06, + "killers": 5.37e-07, + "labeled": 8.13e-06, + "lebron": 8.13e-06, + "liberation": 8.13e-06, + "likelihood": 8.13e-06, + "lone": 8.13e-06, + "massacre": 8.13e-06, + "meme": 8.13e-06, + "mitch": 8.13e-06, + "mod": 8.13e-06, + "nationalist": 8.13e-06, + "nationals": 2.19e-07, + "necessity": 8.13e-06, + "nickname": 8.13e-06, + "nixon": 8.13e-06, + "observer": 8.13e-06, + "offshore": 8.13e-06, + "optional": 8.13e-06, + "papa": 8.13e-06, + "parked": 8.13e-06, + "paste": 8.13e-06, + "pioneer": 8.13e-06, + "plaza": 8.13e-06, + "prescribed": 8.13e-06, + "pressures": 7.41e-08, + "prosperity": 8.13e-06, + "recreational": 8.13e-06, + "reds": 4.37e-07, + "refuge": 8.13e-06, + "religions": 2.04e-07, + "renewable": 8.13e-06, + "richardson": 8.13e-06, + "ricky": 8.13e-06, + "rode": 8.13e-06, + "ronald": 8.13e-06, + "sack": 8.13e-06, + "settlements": 5.13e-08, + "sheffield": 8.13e-06, + "shortage": 8.13e-06, + "skies": 8.13e-06, + "smarter": 8.13e-06, + "smiles": 5.75e-08, + "sophie": 8.13e-06, + "sphere": 8.13e-06, + "sponsors": 1.78e-07, + "stamps": 8.13e-06, + "stare": 8.13e-06, + "suburban": 8.13e-06, + "sung": 8.13e-06, + "suppliers": 8.32e-08, + "tablets": 5.89e-08, + "terribly": 8.13e-06, + "territorial": 8.13e-06, + "thirds": 8.13e-06, + "thriller": 8.13e-06, + "toss": 8.13e-06, + "transgender": 8.13e-06, + "troubled": 8.13e-06, + "turtle": 8.13e-06, + "ur": 8.13e-06, + "verbal": 8.13e-06, + "violated": 8.13e-06, + "vocals": 8.13e-06, + "wool": 8.13e-06, + "yang": 8.13e-06, + "accountable": 7.94e-06, + "advocacy": 7.94e-06, + "aftermath": 7.94e-06, + "aggression": 7.94e-06, + "analyzed": 7.94e-06, + "angles": 7.24e-08, + "arguably": 7.94e-06, + "armies": 7.94e-06, + "armstrong": 7.94e-06, + "assessed": 7.94e-06, + "attractions": 7.94e-06, + "balloon": 7.94e-06, + "beers": 1.95e-07, + "bells": 1e-06, + "blamed": 7.94e-06, + "blunt": 7.94e-06, + "boobs": 7.94e-06, + "bosses": 7.94e-06, + "brakes": 7.94e-06, + "brigade": 7.94e-06, + "bulgaria": 7.94e-06, + "burial": 7.94e-06, + "canceled": 7.94e-06, + "cardinal": 7.94e-06, + "champ": 7.94e-06, + "champagne": 7.94e-06, + "cheated": 7.94e-06, + "chinas": 1.74e-07, + "chorus": 7.94e-06, + "chrome": 7.94e-06, + "clarity": 7.94e-06, + "classics": 7.94e-06, + "cleaner": 7.94e-06, + "combining": 7.94e-06, + "conclude": 7.94e-06, + "confidential": 7.94e-06, + "coordination": 7.94e-06, + "cracks": 7.94e-06, + "cs": 8.32e-07, + "dancers": 2.09e-07, + "delaware": 7.94e-06, + "directing": 7.94e-06, + "discretion": 7.94e-06, + "ditch": 7.94e-06, + "dome": 7.94e-06, + "dope": 7.94e-06, + "drought": 7.94e-06, + "ducks": 2.51e-07, + "dumped": 7.94e-06, + "elevation": 7.94e-06, + "entrepreneurs": 1.35e-07, + "epa": 7.94e-06, + "esteem": 7.94e-06, + "eva": 7.94e-06, + "explored": 7.94e-06, + "fe": 7.94e-06, + "finances": 5.5e-08, + "finishes": 7.94e-06, + "fog": 7.94e-06, + "framed": 7.94e-06, + "fucks": 7.41e-07, + "gesture": 7.94e-06, + "ghana": 7.94e-06, + "gibson": 7.94e-06, + "gif": 7.94e-06, + "gilbert": 7.94e-06, + "gosh": 7.94e-06, + "griffin": 7.94e-06, + "historian": 7.94e-06, + "horizontal": 7.94e-06, + "hospitality": 7.94e-06, + "hostage": 7.94e-06, + "hottest": 7.94e-06, + "individually": 7.94e-06, + "inevitably": 7.94e-06, + "jeffrey": 7.94e-06, + "kenneth": 7.94e-06, + "lad": 7.94e-06, + "lakers": 7.94e-06, + "lasts": 7.94e-06, + "leagues": 3.63e-06, + "leslie": 7.94e-06, + "listings": 7.94e-06, + "literacy": 7.94e-06, + "marriages": 7.94e-06, + "mcdonalds": 2.45e-06, + "migrants": 7.94e-06, + "mins": 1.55e-07, + "misleading": 7.94e-06, + "moisture": 7.94e-06, + "monument": 7.94e-06, + "mortality": 7.94e-06, + "ng": 7.94e-06, + "notices": 7.94e-06, + "obsession": 7.94e-06, + "opt": 7.94e-06, + "particle": 7.94e-06, + "peanut": 7.94e-06, + "penn": 7.94e-06, + "persistent": 7.94e-06, + "personalities": 7.94e-06, + "petroleum": 7.94e-06, + "pharmaceutical": 7.94e-06, + "progression": 7.94e-06, + "quinn": 7.94e-06, + "ra": 7.94e-06, + "rack": 7.94e-06, + "rebuild": 7.94e-06, + "recordings": 7.94e-06, + "rejection": 7.94e-06, + "relaxing": 7.94e-06, + "reservoir": 7.94e-06, + "respects": 7.94e-06, + "riley": 7.94e-06, + "scrap": 7.94e-06, + "sebastian": 7.94e-06, + "sensation": 7.94e-06, + "shaft": 7.94e-06, + "shepherd": 7.94e-06, + "shuttle": 7.94e-06, + "slope": 7.94e-06, + "snack": 7.94e-06, + "sounding": 7.94e-06, + "specialists": 7.94e-06, + "spotlight": 7.94e-06, + "stabbed": 7.94e-06, + "stern": 7.94e-06, + "stiff": 7.94e-06, + "striker": 7.94e-06, + "sudan": 7.94e-06, + "sued": 7.94e-06, + "sums": 7.94e-06, + "sworn": 7.94e-06, + "tel": 7.94e-06, + "terrific": 7.94e-06, + "titans": 3.24e-07, + "tomatoes": 7.94e-06, + "tory": 7.94e-06, + "trafficking": 7.94e-06, + "transparency": 7.94e-06, + "trinity": 7.94e-06, + "unemployed": 7.94e-06, + "unite": 7.94e-06, + "unlock": 7.94e-06, + "vault": 7.94e-06, + "vet": 7.94e-06, + "vince": 7.94e-06, + "wagon": 7.94e-06, + "walt": 7.94e-06, + "withdrawn": 7.94e-06, + "accessed": 7.76e-06, + "adverse": 7.76e-06, + "aiming": 7.76e-06, + "allah": 7.76e-06, + "alumni": 7.76e-06, + "ana": 7.76e-06, + "awhile": 7.76e-06, + "aye": 7.76e-06, + "bastard": 7.76e-06, + "behaviors": 7.76e-06, + "bikes": 2.19e-07, + "biography": 7.76e-06, + "br": 7.76e-06, + "broker": 7.76e-06, + "browser": 7.76e-06, + "bury": 7.76e-06, + "cellular": 7.76e-06, + "cocktail": 7.76e-06, + "cod": 7.76e-06, + "conditioning": 7.76e-06, + "consuming": 7.76e-06, + "contracted": 7.76e-06, + "costumes": 7.76e-06, + "counseling": 7.76e-06, + "crews": 6.17e-07, + "cubs": 5.13e-08, + "cuz": 7.76e-06, + "dangers": 7.76e-06, + "designing": 7.76e-06, + "destructive": 7.76e-06, + "develops": 7.76e-06, + "dislike": 7.76e-06, + "doubled": 7.76e-06, + "doubles": 7.76e-06, + "economies": 7.76e-06, + "embedded": 7.76e-06, + "emerge": 7.76e-06, + "excluded": 7.76e-06, + "expects": 7.76e-06, + "farewell": 7.76e-06, + "feeds": 7.76e-06, + "fist": 7.76e-06, + "fond": 7.76e-06, + "foolish": 7.76e-06, + "frog": 7.76e-06, + "fry": 7.76e-06, + "garcia": 7.76e-06, + "gifted": 7.76e-06, + "hacking": 7.76e-06, + "hawks": 2.19e-07, + "heir": 7.76e-06, + "highlighted": 7.76e-06, + "holocaust": 7.76e-06, + "homer": 7.76e-06, + "hon": 7.76e-06, + "hopkins": 7.76e-06, + "imprisonment": 7.76e-06, + "indonesian": 7.76e-06, + "irs": 7.76e-06, + "jenny": 7.76e-06, + "ji": 7.76e-06, + "lacks": 7.76e-06, + "landlord": 7.76e-06, + "landmark": 7.76e-06, + "lanka": 7.76e-06, + "launches": 7.76e-06, + "leaning": 7.76e-06, + "liable": 7.76e-06, + "lifes": 8.51e-07, + "memphis": 7.76e-06, + "midst": 7.76e-06, + "misery": 7.76e-06, + "module": 7.76e-06, + "mommy": 7.76e-06, + "monroe": 7.76e-06, + "mosque": 7.76e-06, + "moss": 7.76e-06, + "museums": 1.74e-06, + "mvp": 7.76e-06, + "nursery": 7.76e-06, + "obamacare": 7.76e-06, + "onion": 7.76e-06, + "perspectives": 7.76e-06, + "peru": 7.76e-06, + "phrases": 7.76e-06, + "plague": 7.76e-06, + "plains": 7.76e-06, + "positively": 7.76e-06, + "powell": 7.76e-06, + "prevents": 7.76e-06, + "profiles": 7.76e-06, + "pursued": 7.76e-06, + "raids": 7.76e-06, + "recruit": 7.76e-06, + "resting": 7.76e-06, + "rex": 7.76e-06, + "rogue": 7.76e-06, + "roosevelt": 7.76e-06, + "salaries": 7.76e-06, + "sd": 7.76e-06, + "seated": 7.76e-06, + "sharply": 7.76e-06, + "showers": 7.76e-06, + "sincerely": 7.76e-06, + "sings": 7.76e-06, + "solidarity": 7.76e-06, + "specialty": 7.76e-06, + "supernatural": 7.76e-06, + "surprises": 7.76e-06, + "td": 2.57e-08, + "tens": 2.82e-07, + "thirteen": 7.76e-06, + "tomb": 7.76e-06, + "touring": 7.76e-06, + "traces": 7.76e-06, + "trademark": 7.76e-06, + "trim": 7.76e-06, + "umbrella": 7.76e-06, + "utilities": 7.76e-06, + "voyage": 7.76e-06, + "weaker": 7.76e-06, + "willie": 7.76e-06, + "yields": 7.76e-06, + "abbey": 7.59e-06, + "accepts": 7.59e-06, + "adjustment": 7.59e-06, + "andrea": 7.59e-06, + "assignments": 7.59e-06, + "attachment": 7.59e-06, + "baron": 7.59e-06, + "beatles": 7.59e-06, + "belfast": 7.59e-06, + "blah": 7.59e-06, + "blaming": 7.59e-06, + "bomber": 7.59e-06, + "bt": 7.59e-06, + "bunny": 7.59e-06, + "candle": 7.59e-06, + "carved": 7.59e-06, + "choir": 7.59e-06, + "clutch": 7.59e-06, + "coconut": 7.59e-06, + "committing": 7.59e-06, + "comprising": 7.59e-06, + "confession": 7.59e-06, + "consume": 7.59e-06, + "corridor": 7.59e-06, + "credibility": 7.59e-06, + "credited": 7.59e-06, + "critically": 7.59e-06, + "dem": 7.59e-06, + "distracted": 7.59e-06, + "dm": 7.59e-06, + "dolphins": 1.23e-07, + "estates": 2.82e-07, + "ferguson": 7.59e-06, + "ferrari": 7.59e-06, + "filters": 7.59e-06, + "fools": 1.32e-06, + "fourteen": 7.59e-06, + "fu": 7.59e-06, + "geometry": 7.59e-06, + "gf": 7.59e-06, + "ghosts": 1.62e-07, + "gossip": 7.59e-06, + "gp": 7.59e-06, + "grandparents": 1.12e-07, + "haul": 7.59e-06, + "header": 7.59e-06, + "headphones": 7.59e-06, + "highways": 7.76e-08, + "holly": 7.59e-06, + "immense": 7.59e-06, + "imports": 7.59e-06, + "incentives": 7.59e-06, + "interfere": 7.59e-06, + "intersection": 7.59e-06, + "investigators": 1e-07, + "juvenile": 7.59e-06, + "karma": 7.59e-06, + "ki": 7.59e-06, + "knocking": 7.59e-06, + "kurt": 7.59e-06, + "leaks": 7.59e-06, + "leverage": 7.59e-06, + "lil": 3.55e-07, + "lining": 7.59e-06, + "luther": 7.59e-06, + "manila": 7.59e-06, + "mankind": 7.59e-06, + "mapping": 7.59e-06, + "masks": 7.59e-06, + "med": 7.59e-06, + "metric": 7.59e-06, + "militia": 7.59e-06, + "naming": 7.59e-06, + "ncaa": 7.59e-06, + "nike": 7.59e-06, + "node": 7.59e-06, + "obstacles": 7.59e-06, + "opener": 7.59e-06, + "overwhelmed": 7.59e-06, + "performers": 1.29e-07, + "pg": 7.59e-06, + "pl": 7.59e-06, + "pointless": 7.59e-06, + "poles": 5.25e-08, + "preferences": 7.59e-06, + "prompted": 7.59e-06, + "proximity": 7.59e-06, + "qualification": 7.59e-06, + "qualifications": 7.59e-06, + "ranger": 7.59e-06, + "rendered": 7.59e-06, + "rented": 7.59e-06, + "reversed": 7.59e-06, + "robbed": 7.59e-06, + "sadness": 7.59e-06, + "scenarios": 7.59e-06, + "selective": 7.59e-06, + "seniors": 1.66e-07, + "sf": 7.59e-06, + "shiny": 7.59e-06, + "socialism": 7.59e-06, + "sour": 7.59e-06, + "spoon": 7.59e-06, + "stressful": 7.59e-06, + "stretched": 7.59e-06, + "sucking": 7.59e-06, + "teddy": 7.59e-06, + "tenants": 1.51e-07, + "terrace": 7.59e-06, + "thief": 7.59e-06, + "transported": 7.59e-06, + "tribunal": 7.59e-06, + "undoubtedly": 7.59e-06, + "uniforms": 7.59e-06, + "verify": 7.59e-06, + "villain": 7.59e-06, + "whistle": 7.59e-06, + "wifes": 3.24e-07, + "workshops": 5.75e-08, + "yale": 7.59e-06, + "yearly": 7.59e-06, + "yemen": 7.59e-06, + "abusive": 7.41e-06, + "alley": 7.41e-06, + "announcing": 7.41e-06, + "appetite": 7.41e-06, + "backyard": 7.41e-06, + "beth": 7.41e-06, + "beverly": 7.41e-06, + "bids": 7.41e-06, + "billboard": 7.41e-06, + "blades": 1.2e-07, + "boris": 7.41e-06, + "bully": 7.41e-06, + "burke": 7.41e-06, + "cables": 2.14e-07, + "calculate": 7.41e-06, + "calculations": 7.41e-06, + "chicks": 1.82e-07, + "conceived": 7.41e-06, + "consult": 7.41e-06, + "crashes": 7.41e-06, + "crowds": 3.24e-07, + "cunt": 7.41e-06, + "damned": 7.41e-06, + "dissolved": 7.41e-06, + "distinguish": 7.41e-06, + "dominate": 7.41e-06, + "dynasty": 7.41e-06, + "economist": 7.41e-06, + "endorsed": 7.41e-06, + "europeans": 7.41e-06, + "examining": 7.41e-06, + "extensively": 7.41e-06, + "fda": 7.41e-06, + "festivals": 7.76e-07, + "forehead": 7.41e-06, + "foreigners": 8.51e-08, + "forgiveness": 7.41e-06, + "gem": 7.41e-06, + "glen": 7.41e-06, + "graves": 4.9e-08, + "gregory": 7.41e-06, + "haunted": 7.41e-06, + "hayes": 7.41e-06, + "heather": 7.41e-06, + "hiking": 7.41e-06, + "hypothesis": 7.41e-06, + "illegally": 7.41e-06, + "illustrations": 7.41e-06, + "inclined": 7.41e-06, + "informal": 7.41e-06, + "jew": 7.41e-06, + "learnt": 1.12e-08, + "lending": 7.41e-06, + "marker": 7.41e-06, + "marsh": 7.41e-06, + "marshal": 7.41e-06, + "maturity": 7.41e-06, + "maya": 7.41e-06, + "messy": 7.41e-06, + "mia": 7.41e-06, + "minneapolis": 7.41e-06, + "molly": 7.41e-06, + "morrison": 7.41e-06, + "mtv": 7.41e-06, + "muhammad": 7.41e-06, + "neighboring": 7.41e-06, + "neighbours": 4.79e-07, + "ninja": 7.41e-06, + "optimistic": 7.41e-06, + "outlined": 7.41e-06, + "owl": 7.41e-06, + "parenting": 7.41e-06, + "peaks": 7.41e-06, + "pharmacy": 7.41e-06, + "pools": 1.82e-07, + "preparations": 7.41e-06, + "problematic": 7.41e-06, + "proceeded": 7.41e-06, + "processor": 7.41e-06, + "promotional": 7.41e-06, + "pros": 4.27e-07, + "prospective": 7.41e-06, + "psychiatric": 7.41e-06, + "regulate": 7.41e-06, + "renaissance": 7.41e-06, + "repeal": 7.41e-06, + "reuters": 7.41e-06, + "riots": 1e-07, + "roast": 7.41e-06, + "robertson": 7.41e-06, + "rubbish": 7.41e-06, + "saga": 7.41e-06, + "salon": 7.41e-06, + "seventeen": 7.41e-06, + "shields": 1.41e-07, + "sliding": 7.41e-06, + "sodium": 7.41e-06, + "surplus": 7.41e-06, + "swallow": 7.41e-06, + "systematic": 7.41e-06, + "theaters": 2.75e-07, + "transmitted": 7.41e-06, + "tuned": 7.41e-06, + "unacceptable": 7.41e-06, + "unaware": 7.41e-06, + "uncommon": 7.41e-06, + "underway": 7.41e-06, + "unified": 7.41e-06, + "unstable": 7.41e-06, + "upstairs": 7.41e-06, + "vague": 7.41e-06, + "wee": 7.41e-06, + "woo": 7.41e-06, + "xd": 7.41e-06, + "zip": 7.41e-06, + "abs": 1.05e-07, + "abundance": 7.24e-06, + "advancing": 7.24e-06, + "ahh": 7.24e-06, + "alberta": 7.24e-06, + "ant": 5.62e-08, + "antique": 7.24e-06, + "autonomy": 7.24e-06, + "baptist": 7.24e-06, + "behavioral": 7.24e-06, + "biden": 7.24e-06, + "booking": 7.24e-06, + "breeze": 7.24e-06, + "brett": 7.24e-06, + "browns": 3.24e-06, + "canadians": 5.89e-08, + "carnival": 7.24e-06, + "commodity": 7.24e-06, + "congressman": 7.24e-06, + "containers": 7.24e-06, + "cooperative": 7.24e-06, + "coral": 7.24e-06, + "correlation": 7.24e-06, + "correspondent": 7.24e-06, + "coupon": 7.24e-06, + "covid": 7.24e-06, + "crosses": 7.24e-06, + "curtain": 7.24e-06, + "curves": 7.24e-06, + "defines": 7.24e-06, + "delivers": 7.24e-06, + "demonstrates": 7.24e-06, + "dentist": 7.24e-06, + "dodgers": 7.24e-06, + "dough": 7.24e-06, + "dug": 7.24e-06, + "endangered": 7.24e-06, + "envelope": 7.24e-06, + "exhibited": 7.24e-06, + "fade": 7.24e-06, + "fatigue": 7.24e-06, + "fellowship": 7.24e-06, + "fictional": 7.24e-06, + "fragile": 7.24e-06, + "fringe": 7.24e-06, + "fulfill": 7.24e-06, + "gaps": 6.17e-08, + "granite": 7.24e-06, + "greens": 1.05e-06, + "handbook": 7.24e-06, + "hardy": 7.24e-06, + "honors": 9.33e-08, + "indias": 2.29e-07, + "insights": 7.24e-06, + "instinct": 7.24e-06, + "inviting": 7.24e-06, + "irony": 7.24e-06, + "ivan": 7.24e-06, + "joyce": 7.24e-06, + "judgement": 7.24e-06, + "judiciary": 7.24e-06, + "jumps": 7.24e-06, + "lads": 1.26e-07, + "legion": 7.24e-06, + "lethal": 7.24e-06, + "lime": 7.24e-06, + "lively": 7.24e-06, + "logistics": 7.24e-06, + "lowered": 7.24e-06, + "lynn": 7.24e-06, + "maid": 7.24e-06, + "manning": 7.24e-06, + "manuel": 7.24e-06, + "maple": 7.24e-06, + "mickey": 7.24e-06, + "midfielder": 7.24e-06, + "mindset": 7.24e-06, + "mistress": 7.24e-06, + "moms": 6.46e-06, + "mon": 7.24e-06, + "monkeys": 3.8e-07, + "morality": 7.24e-06, + "mortal": 7.24e-06, + "mounting": 7.24e-06, + "nonprofit": 7.24e-06, + "nsa": 7.24e-06, + "oils": 2.29e-07, + "operative": 7.24e-06, + "outs": 1.45e-07, + "owed": 7.24e-06, + "panama": 7.24e-06, + "patches": 7.24e-06, + "pickup": 7.24e-06, + "portraits": 7.24e-06, + "pouring": 7.24e-06, + "prestigious": 7.24e-06, + "prompt": 7.24e-06, + "quantities": 7.24e-06, + "radius": 7.24e-06, + "referee": 7.24e-06, + "relay": 7.24e-06, + "rig": 7.24e-06, + "risen": 7.24e-06, + "rows": 6.92e-08, + "sacramento": 7.24e-06, + "scroll": 7.24e-06, + "searches": 7.24e-06, + "sh": 7.24e-06, + "smiled": 7.24e-06, + "snacks": 7.24e-06, + "snakes": 3.31e-07, + "sovereignty": 7.24e-06, + "strips": 1.07e-07, + "stunt": 7.24e-06, + "subjected": 7.24e-06, + "sucked": 7.24e-06, + "sunlight": 7.24e-06, + "surf": 7.24e-06, + "symbolic": 7.24e-06, + "sync": 7.24e-06, + "taxpayer": 7.24e-06, + "tempted": 7.24e-06, + "thrust": 7.24e-06, + "trevor": 7.24e-06, + "trilogy": 7.24e-06, + "url": 7.24e-06, + "weights": 7.24e-06, + "wheelchair": 7.24e-06, + "whore": 7.24e-07, + "wiped": 7.24e-06, + "yahoo": 7.24e-06, + "yourselves": 7.24e-06, + "accompanying": 7.08e-06, + "accusations": 7.08e-06, + "acids": 7.08e-06, + "administrators": 9.77e-08, + "aired": 7.08e-06, + "allowance": 7.08e-06, + "andre": 7.08e-06, + "apologies": 7.08e-06, + "arbitrary": 7.08e-06, + "atm": 7.08e-06, + "autonomous": 7.08e-06, + "averaged": 7.08e-06, + "bait": 7.08e-06, + "bark": 7.08e-06, + "bets": 1.66e-07, + "blogger": 7.08e-06, + "bra": 7.08e-06, + "brighton": 7.08e-06, + "brotherhood": 7.08e-06, + "buddhist": 7.08e-06, + "builder": 7.08e-06, + "cakes": 5.75e-08, + "carriage": 7.08e-06, + "celebrations": 7.08e-06, + "censorship": 7.08e-06, + "cf": 7.08e-06, + "cl": 7.08e-06, + "clarify": 7.08e-06, + "climbed": 7.08e-06, + "comp": 7.08e-06, + "compilation": 7.08e-06, + "composer": 7.08e-06, + "comprises": 7.08e-06, + "constitute": 7.08e-06, + "correspondence": 7.08e-06, + "cowboy": 7.08e-06, + "defendants": 1e-06, + "desirable": 7.08e-06, + "devastating": 7.08e-06, + "diagram": 7.08e-06, + "dismiss": 7.08e-06, + "editions": 7.24e-08, + "erected": 7.08e-06, + "explorer": 7.08e-06, + "farther": 7.08e-06, + "favorable": 7.08e-06, + "feminism": 7.08e-06, + "flaws": 7.08e-06, + "forums": 2.4e-07, + "freed": 7.08e-06, + "galleries": 7.08e-06, + "gasoline": 7.08e-06, + "genesis": 7.08e-06, + "geographical": 7.08e-06, + "governed": 7.08e-06, + "governmental": 7.08e-06, + "grandson": 7.08e-06, + "halls": 8.91e-07, + "handles": 7.08e-06, + "heavier": 7.08e-06, + "herbert": 7.08e-06, + "hints": 7.08e-06, + "husbands": 5.89e-06, + "incomplete": 7.08e-06, + "incorporate": 7.08e-06, + "interrupted": 7.08e-06, + "ivory": 7.08e-06, + "kerry": 7.08e-06, + "kirk": 7.08e-06, + "lang": 7.08e-06, + "lengthy": 7.08e-06, + "levy": 7.08e-06, + "lp": 7.08e-06, + "manipulation": 7.08e-06, + "merchants": 2.95e-07, + "misses": 7.08e-06, + "mlb": 7.08e-06, + "mock": 7.08e-06, + "necklace": 7.08e-06, + "niche": 7.08e-06, + "nina": 7.08e-06, + "obrien": 6.76e-08, + "obscure": 7.08e-06, + "ot": 7.08e-06, + "para": 7.08e-06, + "peterson": 7.08e-06, + "popped": 7.08e-06, + "porch": 7.08e-06, + "portrayed": 7.08e-06, + "possessed": 7.08e-06, + "princeton": 7.08e-06, + "proposition": 7.08e-06, + "railways": 7.94e-08, + "readings": 1.17e-07, + "recession": 7.08e-06, + "richards": 1.26e-06, + "rim": 7.08e-06, + "seals": 1.41e-07, + "secondly": 7.08e-06, + "sequences": 7.08e-06, + "settling": 7.08e-06, + "sherman": 7.08e-06, + "spinal": 7.08e-06, + "spiral": 7.08e-06, + "spit": 7.08e-06, + "splash": 7.08e-06, + "stretching": 7.08e-06, + "successive": 7.08e-06, + "superhero": 7.08e-06, + "taxpayers": 2.95e-07, + "therapeutic": 7.08e-06, + "threads": 7.08e-06, + "ti": 7.08e-06, + "timely": 7.08e-06, + "tomato": 7.08e-06, + "tub": 7.08e-06, + "ufc": 7.08e-06, + "undergraduate": 7.08e-06, + "undertaken": 7.08e-06, + "uranium": 7.08e-06, + "utter": 7.08e-06, + "vietnamese": 7.08e-06, + "volleyball": 7.08e-06, + "walsh": 7.08e-06, + "wires": 8.32e-08, + "yell": 4.57e-08, + "advertisement": 6.92e-06, + "analysts": 8.91e-08, + "analyze": 6.92e-06, + "atmospheric": 6.92e-06, + "bangkok": 6.92e-06, + "batting": 6.92e-06, + "bb": 6.92e-06, + "bitches": 6.92e-06, + "bracket": 6.92e-06, + "branded": 6.92e-06, + "bryant": 6.92e-06, + "cairo": 6.92e-06, + "cardiac": 6.92e-06, + "catholics": 6.92e-06, + "commanding": 6.92e-06, + "confirms": 6.92e-06, + "confronted": 6.92e-06, + "crashing": 6.92e-06, + "crawford": 6.92e-06, + "creep": 6.92e-06, + "daylight": 6.92e-06, + "dee": 6.92e-06, + "dems": 9.55e-08, + "devon": 6.92e-06, + "disclose": 6.92e-06, + "doe": 6.92e-06, + "donna": 6.92e-06, + "elbow": 6.92e-06, + "encourages": 6.92e-06, + "enthusiastic": 6.92e-06, + "envy": 6.92e-06, + "establishments": 1.38e-07, + "exile": 6.92e-06, + "exploitation": 6.92e-06, + "felix": 6.92e-06, + "futures": 4.68e-07, + "gel": 6.92e-06, + "genetics": 6.92e-06, + "goose": 6.92e-06, + "grill": 6.92e-06, + "grounded": 6.92e-06, + "hating": 6.92e-06, + "heel": 6.92e-06, + "heroic": 6.92e-06, + "hut": 6.92e-06, + "inmates": 1e-07, + "instructed": 6.92e-06, + "ira": 6.92e-06, + "jenkins": 6.92e-06, + "johns": 5.37e-06, + "knives": 6.92e-06, + "louisville": 6.92e-06, + "malaysian": 6.92e-06, + "margins": 6.92e-06, + "marina": 6.92e-06, + "mat": 6.92e-06, + "melissa": 6.92e-06, + "milton": 6.92e-06, + "miranda": 6.92e-06, + "ml": 6.92e-06, + "monopoly": 6.92e-06, + "nash": 6.92e-06, + "nationally": 6.92e-06, + "nobel": 6.92e-06, + "norfolk": 6.92e-06, + "outrage": 6.92e-06, + "owning": 6.92e-06, + "pains": 1.23e-07, + "paperwork": 6.92e-06, + "pdf": 6.92e-06, + "pitched": 6.92e-06, + "poets": 4.27e-07, + "poisoning": 6.92e-06, + "promptly": 6.92e-06, + "que": 6.92e-06, + "rains": 1.48e-07, + "recovering": 6.92e-06, + "renewal": 6.92e-06, + "repeating": 6.92e-06, + "rifles": 7.08e-08, + "robbie": 6.92e-06, + "ruler": 6.92e-06, + "screams": 6.92e-06, + "sellers": 3.16e-07, + "sights": 6.92e-06, + "sincere": 6.92e-06, + "skating": 6.92e-06, + "skiing": 6.92e-06, + "slaughter": 6.92e-06, + "smashed": 6.92e-06, + "sox": 6.92e-06, + "sperm": 6.92e-06, + "spill": 6.92e-06, + "steadily": 6.92e-06, + "stripped": 6.92e-06, + "supplier": 6.92e-06, + "swamp": 6.92e-06, + "swan": 6.92e-06, + "switches": 6.92e-06, + "synthesis": 6.92e-06, + "tasty": 6.92e-06, + "tattoos": 8.91e-08, + "teammate": 6.92e-06, + "testify": 6.92e-06, + "tolerate": 6.92e-06, + "tournaments": 5.25e-07, + "travelers": 3.72e-07, + "treason": 6.92e-06, + "trustees": 6.92e-06, + "typing": 6.92e-06, + "urine": 6.92e-06, + "vanilla": 6.92e-06, + "vermont": 6.92e-06, + "vic": 6.92e-06, + "vii": 6.92e-06, + "violet": 6.92e-06, + "weighing": 6.92e-06, + "wendy": 6.92e-06, + "activation": 6.76e-06, + "afghan": 6.76e-06, + "afterward": 6.76e-06, + "agreeing": 6.76e-06, + "ahmed": 6.76e-06, + "allocated": 6.76e-06, + "appealed": 6.76e-06, + "applause": 6.76e-06, + "bald": 6.76e-06, + "barrels": 6.46e-08, + "boil": 6.76e-06, + "borough": 6.76e-06, + "boyd": 6.76e-06, + "bp": 6.76e-06, + "breakthrough": 6.76e-06, + "calif": 6.76e-06, + "ce": 6.76e-06, + "charities": 6.76e-06, + "cheering": 6.76e-06, + "chooses": 6.76e-06, + "churchill": 6.76e-06, + "combinations": 6.76e-06, + "commenting": 6.76e-06, + "competitions": 4.07e-07, + "cone": 6.76e-06, + "connects": 6.76e-06, + "convey": 6.76e-06, + "critique": 6.76e-06, + "crushing": 6.76e-06, + "curved": 6.76e-06, + "cyrus": 6.76e-06, + "decay": 6.76e-06, + "declining": 6.76e-06, + "depressing": 6.76e-06, + "dessert": 6.76e-06, + "destinations": 6.76e-06, + "diagnostic": 6.76e-06, + "diane": 6.76e-06, + "differential": 6.76e-06, + "discourse": 6.76e-06, + "distances": 6.76e-06, + "dominance": 6.76e-06, + "donors": 2.57e-07, + "downloaded": 6.76e-06, + "earths": 1.1e-06, + "economically": 6.76e-06, + "entertain": 6.76e-06, + "evaluated": 6.76e-06, + "exploit": 6.76e-06, + "fireworks": 6.76e-06, + "flown": 6.76e-06, + "floyd": 6.76e-06, + "founders": 5.01e-07, + "freeman": 6.76e-06, + "gandhi": 6.76e-06, + "gateway": 6.76e-06, + "ge": 6.76e-06, + "guarantees": 6.76e-06, + "humidity": 6.76e-06, + "humour": 6.76e-06, + "imagery": 6.76e-06, + "imply": 6.76e-06, + "indicators": 6.76e-06, + "inherent": 6.76e-06, + "inland": 6.76e-06, + "inning": 6.76e-06, + "innocence": 6.76e-06, + "investigator": 6.76e-06, + "isle": 6.76e-06, + "ivy": 6.76e-06, + "justification": 6.76e-06, + "ka": 6.76e-06, + "katherine": 6.76e-06, + "lego": 6.76e-06, + "licenses": 6.76e-06, + "livestock": 6.76e-06, + "liz": 6.76e-06, + "llc": 6.76e-06, + "mafia": 6.76e-06, + "manners": 6.76e-06, + "merry": 6.76e-06, + "mick": 6.76e-06, + "missionary": 6.76e-06, + "nationalism": 6.76e-06, + "naughty": 6.76e-06, + "nepal": 6.76e-06, + "newman": 6.76e-06, + "notified": 6.76e-06, + "notorious": 6.76e-06, + "obey": 6.76e-06, + "olivia": 6.76e-06, + "organizational": 6.76e-06, + "outfits": 9.12e-08, + "outright": 6.76e-06, + "overly": 6.76e-06, + "oversight": 6.76e-06, + "panthers": 1.23e-07, + "persian": 6.76e-06, + "phases": 6.76e-06, + "photographers": 5.37e-07, + "polling": 6.76e-06, + "popping": 6.76e-06, + "prisons": 2.51e-07, + "prototype": 6.76e-06, + "pumpkin": 6.76e-06, + "pumps": 6.17e-08, + "punched": 6.76e-06, + "ramp": 6.76e-06, + "rand": 6.76e-06, + "reactor": 6.76e-06, + "reef": 6.76e-06, + "refined": 6.76e-06, + "refreshing": 6.76e-06, + "refusal": 6.76e-06, + "reinforced": 6.76e-06, + "remedies": 6.76e-06, + "reset": 6.76e-06, + "sage": 6.76e-06, + "shave": 6.76e-06, + "sickness": 6.76e-06, + "simpler": 6.76e-06, + "sinking": 6.76e-06, + "slots": 6.76e-06, + "sorted": 6.76e-06, + "sq": 6.76e-06, + "staged": 6.76e-06, + "startup": 6.76e-06, + "statute": 6.76e-06, + "stems": 6.76e-06, + "straightforward": 6.76e-06, + "strengths": 6.76e-06, + "suffers": 6.76e-06, + "superstar": 6.76e-06, + "telecommunications": 6.76e-06, + "thieves": 6.76e-06, + "thoughtful": 6.76e-06, + "thru": 6.76e-06, + "tissues": 6.76e-06, + "toddler": 6.76e-06, + "utilized": 6.76e-06, + "vicious": 6.76e-06, + "victories": 6.76e-06, + "vikings": 6.61e-08, + "vodka": 6.76e-06, + "vr": 6.76e-06, + "wholly": 6.76e-06, + "zoom": 6.76e-06, + "accidental": 6.61e-06, + "accounted": 6.61e-06, + "addicted": 6.61e-06, + "adjustments": 6.61e-06, + "apollo": 6.61e-06, + "archbishop": 6.61e-06, + "assassination": 6.61e-06, + "athletics": 5.89e-08, + "basics": 6.61e-06, + "bats": 1.29e-07, + "belgian": 6.61e-06, + "bibliography": 6.61e-06, + "bot": 6.61e-06, + "broadly": 6.61e-06, + "calcium": 6.61e-06, + "calvin": 6.61e-06, + "candles": 6.61e-06, + "capita": 6.61e-06, + "certainty": 6.61e-06, + "cheeks": 6.61e-06, + "chickens": 1.55e-07, + "christina": 6.61e-06, + "citation": 6.61e-06, + "clues": 6.61e-06, + "collectively": 6.61e-06, + "commercials": 6.61e-06, + "commissions": 1.55e-06, + "compression": 6.61e-06, + "comprised": 6.61e-06, + "confess": 6.61e-06, + "confined": 6.61e-06, + "congregation": 6.61e-06, + "consolidated": 6.61e-06, + "coordinate": 6.61e-06, + "coordinates": 6.61e-06, + "cube": 6.61e-06, + "dana": 6.61e-06, + "declaring": 6.61e-06, + "decoration": 6.61e-06, + "decree": 6.61e-06, + "definitions": 6.61e-06, + "deliberate": 6.61e-06, + "despair": 6.61e-06, + "discovering": 6.61e-06, + "dividend": 6.61e-06, + "dragging": 6.61e-06, + "drift": 6.61e-06, + "dye": 6.61e-06, + "eden": 6.61e-06, + "educators": 6.61e-06, + "electron": 6.61e-06, + "endure": 6.61e-06, + "enzyme": 6.61e-06, + "evolutionary": 6.61e-06, + "exhibits": 6.61e-06, + "extensions": 6.61e-06, + "fellows": 7.59e-08, + "fragments": 6.61e-06, + "fraser": 6.61e-06, + "fuels": 6.61e-06, + "geological": 6.61e-06, + "globally": 6.61e-06, + "grams": 6.61e-06, + "guru": 6.61e-06, + "hacked": 6.61e-06, + "hans": 2.95e-07, + "hatch": 6.61e-06, + "hindi": 6.61e-06, + "historians": 7.24e-08, + "hm": 6.61e-06, + "hormone": 6.61e-06, + "inadequate": 6.61e-06, + "indianapolis": 6.61e-06, + "infinity": 6.61e-06, + "intentionally": 6.61e-06, + "joints": 6.61e-06, + "kilometers": 6.61e-06, + "labs": 3.8e-07, + "lace": 6.61e-06, + "libya": 6.61e-06, + "losers": 2.14e-07, + "louder": 6.61e-06, + "maiden": 6.61e-06, + "marching": 6.61e-06, + "marketplace": 6.61e-06, + "membrane": 6.61e-06, + "messing": 6.61e-06, + "metallic": 6.61e-06, + "methodology": 6.61e-06, + "modifications": 6.61e-06, + "monitors": 1.74e-07, + "murderer": 6.61e-06, + "nap": 6.61e-06, + "nickel": 6.61e-06, + "niece": 6.61e-06, + "nm": 6.61e-06, + "nominations": 6.61e-06, + "numbered": 6.61e-06, + "offerings": 6.61e-06, + "overlooked": 6.61e-06, + "pardon": 6.61e-06, + "partnerships": 8.91e-08, + "persuade": 6.61e-06, + "pier": 6.61e-06, + "poured": 6.61e-06, + "practiced": 6.61e-06, + "predecessor": 6.61e-06, + "premise": 6.61e-06, + "quiz": 6.61e-06, + "rainfall": 6.61e-06, + "recipients": 2.19e-07, + "reckless": 6.61e-06, + "redemption": 6.61e-06, + "relates": 6.61e-06, + "relied": 6.61e-06, + "remedy": 6.61e-06, + "replay": 6.61e-06, + "revision": 6.61e-06, + "rooted": 6.61e-06, + "scent": 6.61e-06, + "slate": 6.61e-06, + "spells": 6.92e-08, + "stimulus": 6.61e-06, + "strengthening": 6.61e-06, + "structured": 6.61e-06, + "sunrise": 6.61e-06, + "surge": 6.61e-06, + "tagged": 6.61e-06, + "tags": 5.75e-08, + "tapes": 5.13e-08, + "tee": 6.61e-06, + "testified": 6.61e-06, + "timothy": 6.61e-06, + "token": 6.61e-06, + "tornado": 6.61e-06, + "tracy": 6.61e-06, + "tunes": 6.61e-06, + "tunnels": 1.29e-07, + "twilight": 6.61e-06, + "unprecedented": 6.61e-06, + "vagina": 6.61e-06, + "verses": 6.61e-06, + "vocabulary": 6.61e-06, + "wellington": 6.61e-06, + "whoa": 6.61e-06, + "willingness": 6.61e-06, + "woody": 6.61e-06, + "worthless": 6.61e-06, + "yacht": 6.61e-06, + "aberdeen": 6.46e-06, + "absorb": 6.46e-06, + "accompany": 6.46e-06, + "accord": 6.46e-06, + "advancement": 6.46e-06, + "albany": 6.46e-06, + "algorithms": 6.46e-06, + "alt": 6.46e-06, + "alternatively": 6.46e-06, + "anglo": 6.46e-06, + "archer": 6.46e-06, + "asap": 6.46e-06, + "assurance": 6.46e-06, + "barber": 6.46e-06, + "bash": 6.46e-06, + "battalion": 6.46e-06, + "bidding": 6.46e-06, + "boycott": 6.46e-06, + "bricks": 6.46e-06, + "bruno": 6.46e-06, + "buddies": 6.46e-06, + "bulgarian": 6.46e-06, + "carpenter": 6.46e-06, + "ceased": 6.46e-06, + "chester": 6.46e-06, + "coding": 6.46e-06, + "competitor": 6.46e-06, + "creators": 3.47e-07, + "cuisine": 6.46e-06, + "detained": 6.46e-06, + "dioxide": 6.46e-06, + "dolls": 3.98e-07, + "doom": 6.46e-06, + "dubbed": 6.46e-06, + "ea": 6.46e-06, + "eclipse": 6.46e-06, + "eighteen": 6.46e-06, + "eleanor": 6.46e-06, + "elephants": 3.55e-07, + "enjoyment": 6.46e-06, + "exhaust": 6.46e-06, + "expired": 6.46e-06, + "flee": 6.46e-06, + "forbes": 6.46e-06, + "forwards": 6.17e-08, + "fries": 6.46e-06, + "fundraising": 6.46e-06, + "gal": 6.46e-06, + "glimpse": 6.46e-06, + "hahaha": 6.46e-06, + "hawk": 6.46e-06, + "healthier": 6.46e-06, + "homemade": 6.46e-06, + "honorable": 6.46e-06, + "infectious": 6.46e-06, + "inferior": 6.46e-06, + "injustice": 6.46e-06, + "inquiries": 6.46e-06, + "insulin": 6.46e-06, + "interpret": 6.46e-06, + "intro": 6.46e-06, + "jackets": 7.08e-08, + "jill": 6.46e-06, + "kindle": 6.46e-06, + "lid": 6.46e-06, + "lindsay": 6.46e-06, + "logs": 6.46e-06, + "manor": 6.46e-06, + "masterpiece": 6.46e-06, + "melody": 6.46e-06, + "memo": 6.46e-06, + "mic": 6.46e-06, + "mirrors": 2.4e-07, + "myanmar": 6.46e-06, + "narrator": 6.46e-06, + "nate": 6.46e-06, + "nets": 8.71e-08, + "nsw": 6.46e-06, + "obesity": 6.46e-06, + "partisan": 6.46e-06, + "planting": 6.46e-06, + "pony": 6.46e-06, + "posed": 6.46e-06, + "possessions": 6.46e-06, + "privileged": 6.46e-06, + "prolonged": 6.46e-06, + "promo": 6.46e-06, + "protestant": 6.46e-06, + "pumping": 6.46e-06, + "pupil": 6.46e-06, + "qb": 6.46e-06, + "recruited": 6.46e-06, + "reliance": 6.46e-06, + "relies": 6.46e-06, + "reluctant": 6.46e-06, + "relying": 6.46e-06, + "respiratory": 6.46e-06, + "retention": 6.46e-06, + "rewarded": 6.46e-06, + "ribbon": 6.46e-06, + "rochester": 6.46e-06, + "rodgers": 5.62e-08, + "roommate": 6.46e-06, + "rotten": 6.46e-06, + "sands": 6.46e-06, + "schedules": 6.46e-06, + "selecting": 6.46e-06, + "shah": 6.46e-06, + "shawn": 6.46e-06, + "shotgun": 6.46e-06, + "singers": 1e-06, + "snapped": 6.46e-06, + "sofa": 6.46e-06, + "solomon": 6.46e-06, + "southampton": 6.46e-06, + "spoil": 6.46e-06, + "spoiled": 6.46e-06, + "stephanie": 6.46e-06, + "submarine": 6.46e-06, + "suburb": 6.46e-06, + "surgeons": 3.72e-07, + "sympathetic": 6.46e-06, + "taxation": 6.46e-06, + "temper": 6.46e-06, + "undergo": 6.46e-06, + "venus": 6.46e-06, + "weighed": 6.46e-06, + "wu": 6.46e-06, + "acquiring": 6.31e-06, + "additions": 6.31e-06, + "admitting": 6.31e-06, + "afl": 6.31e-06, + "aligned": 6.31e-06, + "allan": 6.31e-06, + "altar": 6.31e-06, + "amp": 6.31e-06, + "arrows": 1.95e-07, + "atlas": 6.31e-06, + "austrian": 6.31e-06, + "automation": 6.31e-06, + "awe": 6.31e-06, + "balancing": 6.31e-06, + "banning": 6.31e-06, + "bishops": 1.02e-06, + "boeing": 6.31e-06, + "broncos": 6.31e-06, + "builders": 2.82e-07, + "burton": 6.31e-06, + "caesar": 6.31e-06, + "canadas": 1.41e-07, + "cans": 1.02e-07, + "carroll": 6.31e-06, + "cavalry": 6.31e-06, + "clara": 6.31e-06, + "coffin": 6.31e-06, + "collectors": 1.12e-06, + "colorful": 6.31e-06, + "combo": 6.31e-06, + "communism": 6.31e-06, + "conductor": 6.31e-06, + "confront": 6.31e-06, + "constraints": 6.31e-06, + "crow": 6.31e-06, + "dads": 4.27e-06, + "davidson": 6.31e-06, + "decisive": 6.31e-06, + "decorative": 6.31e-06, + "definitive": 6.31e-06, + "disclosed": 6.31e-06, + "displaced": 6.31e-06, + "disturbed": 6.31e-06, + "diy": 6.31e-06, + "doin": 6.31e-06, + "epidemic": 6.31e-06, + "eternity": 6.31e-06, + "eugene": 6.31e-06, + "evolve": 6.31e-06, + "explode": 6.31e-06, + "extraction": 6.31e-06, + "fatty": 6.31e-06, + "filthy": 6.31e-06, + "fletcher": 6.31e-06, + "flush": 6.31e-06, + "font": 6.31e-06, + "freestyle": 6.31e-06, + "glue": 6.31e-06, + "grandpa": 6.31e-06, + "hairy": 6.31e-06, + "homicide": 6.31e-06, + "horns": 1e-07, + "ie": 6.31e-06, + "inheritance": 6.31e-06, + "introduces": 6.31e-06, + "ironic": 6.31e-06, + "lacked": 6.31e-06, + "lin": 6.31e-06, + "luggage": 6.31e-06, + "lyon": 6.31e-06, + "madame": 6.31e-06, + "maggie": 6.31e-06, + "marion": 6.31e-06, + "mel": 6.31e-06, + "melting": 6.31e-06, + "messaging": 6.31e-06, + "microwave": 6.31e-06, + "midwest": 6.31e-06, + "minimize": 6.31e-06, + "modi": 6.31e-06, + "morocco": 6.31e-06, + "natalie": 6.31e-06, + "ops": 3.55e-07, + "organisms": 1e-07, + "originated": 6.31e-06, + "ounce": 6.31e-06, + "pablo": 6.31e-06, + "peel": 6.31e-06, + "pensions": 6.31e-06, + "performer": 6.31e-06, + "picnic": 6.31e-06, + "pins": 6.31e-06, + "practitioners": 6.61e-08, + "predominantly": 6.31e-06, + "primitive": 6.31e-06, + "providence": 6.31e-06, + "psychic": 6.31e-06, + "psychologist": 6.31e-06, + "puppet": 6.31e-06, + "reproductive": 6.31e-06, + "requesting": 6.31e-06, + "responds": 6.31e-06, + "restrict": 6.31e-06, + "retiring": 6.31e-06, + "retrieved": 6.31e-06, + "ribs": 6.31e-06, + "righteous": 6.31e-06, + "rivalry": 6.31e-06, + "rosa": 6.31e-06, + "royalty": 6.31e-06, + "sandra": 6.31e-06, + "sausage": 6.31e-06, + "seize": 6.31e-06, + "sim": 6.31e-06, + "skeleton": 6.31e-06, + "spicy": 6.31e-06, + "sticky": 6.31e-06, + "sting": 6.31e-06, + "sufficiently": 6.31e-06, + "thankfully": 6.31e-06, + "thrones": 6.31e-06, + "tick": 6.31e-06, + "traced": 6.31e-06, + "trent": 6.31e-06, + "trusts": 4.47e-07, + "tutorial": 6.31e-06, + "twentieth": 6.31e-06, + "unpleasant": 6.31e-06, + "unrelated": 6.31e-06, + "ussr": 6.31e-06, + "vacant": 6.31e-06, + "vent": 6.31e-06, + "vicinity": 6.31e-06, + "wan": 6.31e-06, + "wandering": 6.31e-06, + "wardrobe": 6.31e-06, + "warmth": 6.31e-06, + "weaknesses": 6.31e-06, + "wines": 2e-07, + "wired": 6.31e-06, + "amendments": 1.82e-07, + "analyses": 6.17e-06, + "asses": 6.17e-06, + "assessments": 6.17e-06, + "assisting": 6.17e-06, + "australias": 7.24e-08, + "axe": 6.17e-06, + "backgrounds": 6.17e-06, + "baldwin": 6.17e-06, + "belle": 6.17e-06, + "bf": 6.17e-06, + "bites": 6.17e-06, + "bombers": 1.7e-07, + "bonuses": 6.17e-06, + "bred": 6.17e-06, + "brexit": 6.17e-06, + "bubbles": 6.17e-06, + "buddha": 6.17e-06, + "bulletin": 6.17e-06, + "capitalist": 6.17e-06, + "cautious": 6.17e-06, + "clinics": 1.86e-07, + "commitments": 6.17e-06, + "companions": 1.15e-07, + "comparisons": 6.17e-06, + "constable": 6.17e-06, + "cooperate": 6.17e-06, + "coordinated": 6.17e-06, + "copied": 6.17e-06, + "counselor": 6.17e-06, + "cp": 6.17e-06, + "curb": 6.17e-06, + "dances": 5.37e-08, + "darren": 6.17e-06, + "deeds": 6.17e-06, + "destined": 6.17e-06, + "detached": 6.17e-06, + "devils": 3.98e-06, + "discounts": 6.17e-06, + "distribute": 6.17e-06, + "dong": 6.17e-06, + "edgar": 6.17e-06, + "efficiently": 6.17e-06, + "eliminating": 6.17e-06, + "elliott": 6.17e-06, + "encouragement": 6.17e-06, + "enforced": 6.17e-06, + "evan": 6.17e-06, + "explosives": 6.17e-06, + "faction": 6.17e-06, + "fascist": 6.17e-06, + "feathers": 6.17e-06, + "fixtures": 6.17e-06, + "flooded": 6.17e-06, + "fuller": 6.17e-06, + "gamble": 6.17e-06, + "goalkeeper": 6.17e-06, + "grandchildren": 6.17e-06, + "gt": 6.17e-06, + "guardians": 3.89e-07, + "harmless": 6.17e-06, + "hearings": 6.17e-06, + "hesitate": 6.17e-06, + "hid": 6.17e-06, + "hips": 6.17e-06, + "hopeful": 6.17e-06, + "horny": 6.17e-06, + "hungarian": 6.17e-06, + "hygiene": 6.17e-06, + "iceland": 6.17e-06, + "imaginary": 6.17e-06, + "imprisoned": 6.17e-06, + "inconsistent": 6.17e-06, + "int": 6.76e-08, + "iso": 6.17e-06, + "jared": 6.17e-06, + "johnston": 6.17e-06, + "judy": 6.17e-06, + "kindergarten": 6.17e-06, + "latino": 6.17e-06, + "lopez": 6.17e-06, + "loudly": 6.17e-06, + "mechanic": 6.17e-06, + "megan": 6.17e-06, + "mls": 6.17e-06, + "modify": 6.17e-06, + "neglect": 6.17e-06, + "northwestern": 6.17e-06, + "nz": 6.17e-06, + "offenders": 1.38e-07, + "oppression": 6.17e-06, + "patriotic": 6.17e-06, + "phillip": 6.17e-06, + "pictured": 6.17e-06, + "pitcher": 6.17e-06, + "playground": 6.17e-06, + "populated": 6.17e-06, + "poses": 6.17e-06, + "positioned": 6.17e-06, + "prejudice": 6.17e-06, + "preston": 6.17e-06, + "probable": 6.17e-06, + "probation": 6.17e-06, + "projection": 6.17e-06, + "promotes": 6.17e-06, + "pumped": 6.17e-06, + "rails": 1.23e-07, + "raven": 6.17e-06, + "receptor": 6.17e-06, + "rehab": 6.17e-06, + "remake": 6.17e-06, + "rendering": 6.17e-06, + "reproduction": 6.17e-06, + "res": 5.62e-08, + "reservations": 6.17e-06, + "rey": 6.17e-06, + "rhode": 6.17e-06, + "shrimp": 6.17e-06, + "similarities": 6.17e-06, + "skins": 3.8e-07, + "slopes": 6.17e-06, + "spelled": 6.17e-06, + "spokesman": 6.17e-06, + "springfield": 6.17e-06, + "stained": 6.17e-06, + "stall": 6.17e-06, + "starving": 6.17e-06, + "strap": 6.17e-06, + "subjective": 6.17e-06, + "surround": 6.17e-06, + "surroundings": 6.17e-06, + "sweeping": 6.17e-06, + "swinging": 6.17e-06, + "tearing": 6.17e-06, + "traumatic": 6.17e-06, + "trillion": 6.17e-06, + "tucker": 6.17e-06, + "vatican": 6.17e-06, + "vendor": 6.17e-06, + "watts": 1.45e-07, + "yr": 6.17e-06, + "abbott": 6.03e-06, + "aboriginal": 6.03e-06, + "academics": 6.03e-06, + "adopting": 6.03e-06, + "alignment": 6.03e-06, + "allergic": 6.03e-06, + "allison": 6.03e-06, + "amended": 6.03e-06, + "apparatus": 6.03e-06, + "assumes": 6.03e-06, + "avengers": 6.03e-06, + "backpack": 6.03e-06, + "balcony": 6.03e-06, + "banker": 6.03e-06, + "bliss": 6.03e-06, + "bodily": 6.03e-06, + "buffer": 6.03e-06, + "calgary": 6.03e-06, + "chapman": 6.03e-06, + "chopped": 6.03e-06, + "collaborative": 6.03e-06, + "commenced": 6.03e-06, + "compensate": 6.03e-06, + "compromised": 6.03e-06, + "constructive": 6.03e-06, + "conventions": 1.29e-07, + "cosmic": 6.03e-06, + "crystals": 1.58e-07, + "daisy": 6.03e-06, + "definite": 6.03e-06, + "demonstrations": 6.03e-06, + "departed": 6.03e-06, + "depths": 6.03e-06, + "developmental": 6.03e-06, + "disco": 6.03e-06, + "distraction": 6.03e-06, + "dom": 6.03e-06, + "dorothy": 6.03e-06, + "doses": 6.03e-06, + "drawer": 6.03e-06, + "drones": 9.55e-08, + "durham": 6.03e-06, + "ecological": 6.03e-06, + "ecosystem": 6.03e-06, + "elvis": 6.03e-06, + "euros": 1.29e-07, + "exclude": 6.03e-06, + "exempt": 6.03e-06, + "exposing": 6.03e-06, + "faint": 6.03e-06, + "fertility": 6.03e-06, + "ff": 6.03e-06, + "fines": 5.13e-08, + "finn": 6.03e-06, + "floods": 7.08e-08, + "flynn": 6.03e-06, + "foam": 6.03e-06, + "folded": 6.03e-06, + "foremost": 6.03e-06, + "forge": 6.03e-06, + "greenhouse": 6.03e-06, + "hears": 6.03e-06, + "hierarchy": 6.03e-06, + "ideals": 6.03e-06, + "identities": 6.03e-06, + "installations": 6.03e-06, + "invalid": 6.03e-06, + "jade": 6.03e-06, + "jointly": 6.03e-06, + "jung": 6.03e-06, + "kits": 1.7e-07, + "lancaster": 6.03e-06, + "lightweight": 6.03e-06, + "lowering": 6.03e-06, + "mb": 6.03e-06, + "melted": 6.03e-06, + "metabolism": 6.03e-06, + "neglected": 6.03e-06, + "negotiated": 6.03e-06, + "negotiating": 6.03e-06, + "negotiation": 6.03e-06, + "newborn": 6.03e-06, + "newport": 6.03e-06, + "nodes": 6.03e-06, + "notch": 6.03e-06, + "omega": 6.03e-06, + "onions": 5.62e-08, + "packers": 1.02e-07, + "paired": 6.03e-06, + "parental": 6.03e-06, + "parody": 6.03e-06, + "parole": 6.03e-06, + "participant": 6.03e-06, + "penguin": 6.03e-06, + "phantom": 6.03e-06, + "photoshop": 6.03e-06, + "pitt": 6.03e-06, + "precedent": 6.03e-06, + "prevalent": 6.03e-06, + "prom": 6.03e-06, + "promotions": 6.03e-06, + "python": 6.03e-06, + "qatar": 6.03e-06, + "questionable": 6.03e-06, + "queue": 6.03e-06, + "quo": 6.03e-06, + "regrets": 6.03e-06, + "render": 6.03e-06, + "respondents": 7.24e-08, + "retaining": 6.03e-06, + "romania": 6.03e-06, + "sailor": 6.03e-06, + "seventy": 6.03e-06, + "shouted": 6.03e-06, + "simmons": 6.03e-06, + "sims": 7.76e-08, + "slides": 6.03e-06, + "sociology": 6.03e-06, + "somerset": 6.03e-06, + "soo": 6.03e-06, + "specify": 6.03e-06, + "splitting": 6.03e-06, + "stab": 6.03e-06, + "supermarket": 6.03e-06, + "sweater": 6.03e-06, + "tenant": 6.03e-06, + "tensions": 6.03e-06, + "thomson": 6.03e-06, + "tortured": 6.03e-06, + "traction": 6.03e-06, + "tractor": 6.03e-06, + "trout": 6.03e-06, + "turnover": 6.03e-06, + "uganda": 6.03e-06, + "universitys": 6.03e-06, + "unwanted": 6.03e-06, + "upgrades": 6.03e-06, + "valentines": 1.23e-06, + "variant": 6.03e-06, + "vegetarian": 6.03e-06, + "vernon": 6.03e-06, + "visibility": 6.03e-06, + "warnings": 6.03e-06, + "wherein": 6.03e-06, + "whiskey": 6.03e-06, + "worms": 1.2e-07, + "wyoming": 6.03e-06, + "aaa": 5.89e-06, + "abundant": 5.89e-06, + "africans": 5.89e-06, + "alexandria": 5.89e-06, + "algebra": 5.89e-06, + "analytics": 5.89e-06, + "antenna": 5.89e-06, + "attribute": 5.89e-06, + "audition": 5.89e-06, + "bankers": 1.95e-07, + "biting": 5.89e-06, + "branding": 5.89e-06, + "bravo": 5.89e-06, + "busted": 5.89e-06, + "cardinals": 2.09e-07, + "carrie": 5.89e-06, + "certificates": 5.89e-06, + "charleston": 5.89e-06, + "chatting": 5.89e-06, + "chop": 5.89e-06, + "circuits": 2.63e-07, + "clifford": 5.89e-06, + "cody": 5.89e-06, + "coleman": 5.89e-06, + "commanded": 5.89e-06, + "commissioners": 7.59e-07, + "communicating": 5.89e-06, + "comparative": 5.89e-06, + "complement": 5.89e-06, + "connor": 5.89e-06, + "conquer": 5.89e-06, + "conquest": 5.89e-06, + "contested": 5.89e-06, + "continuity": 5.89e-06, + "cornwall": 5.89e-06, + "crawl": 5.89e-06, + "credible": 5.89e-06, + "cursed": 5.89e-06, + "db": 5.89e-06, + "deepest": 5.89e-06, + "defects": 5.89e-06, + "delightful": 5.89e-06, + "depicted": 5.89e-06, + "determines": 5.89e-06, + "digit": 5.89e-06, + "dinosaur": 5.89e-06, + "doomed": 5.89e-06, + "drainage": 5.89e-06, + "drowning": 5.89e-06, + "embarrassment": 5.89e-06, + "equations": 5.89e-06, + "evolving": 5.89e-06, + "exploded": 5.89e-06, + "fairness": 5.89e-06, + "favored": 5.89e-06, + "felony": 5.89e-06, + "flats": 5.89e-06, + "flint": 5.89e-06, + "floral": 5.89e-06, + "fortress": 5.89e-06, + "fulfilled": 5.89e-06, + "fundamentally": 5.89e-06, + "grabbing": 5.89e-06, + "guts": 5.89e-06, + "hairs": 3.24e-07, + "hammond": 5.89e-06, + "handing": 5.89e-06, + "hearted": 5.89e-06, + "herb": 5.89e-06, + "herd": 5.89e-06, + "ideological": 5.89e-06, + "immortal": 5.89e-06, + "incumbent": 5.89e-06, + "insider": 5.89e-06, + "insufficient": 5.89e-06, + "interval": 5.89e-06, + "jelly": 5.89e-06, + "kai": 5.89e-06, + "kanye": 5.89e-06, + "kidnapping": 5.89e-06, + "kilometres": 5.89e-06, + "ky": 5.89e-06, + "lenses": 5.89e-06, + "lick": 5.89e-06, + "literal": 5.89e-06, + "lunar": 5.89e-06, + "maternal": 5.89e-06, + "matthews": 6.61e-07, + "maxwell": 5.89e-06, + "mccain": 5.89e-06, + "mcdonald": 5.89e-06, + "medicines": 2e-07, + "memoir": 5.89e-06, + "messi": 5.89e-06, + "miguel": 5.89e-06, + "modification": 5.89e-06, + "mold": 5.89e-06, + "nailed": 5.89e-06, + "napoleon": 5.89e-06, + "neighbouring": 5.89e-06, + "nigel": 5.89e-06, + "objection": 5.89e-06, + "obliged": 5.89e-06, + "observers": 1.51e-07, + "occurrence": 5.89e-06, + "offspring": 5.89e-06, + "ou": 5.89e-06, + "outrageous": 5.89e-06, + "packet": 5.89e-06, + "pads": 5.89e-06, + "patents": 5.89e-06, + "pathway": 5.89e-06, + "peach": 5.89e-06, + "persuaded": 5.89e-06, + "plots": 6.61e-08, + "polo": 5.89e-06, + "presenter": 5.89e-06, + "proclaimed": 5.89e-06, + "prohibition": 5.89e-06, + "prop": 5.89e-06, + "recognizing": 5.89e-06, + "recommends": 5.89e-06, + "registry": 5.89e-06, + "relieve": 5.89e-06, + "remarkably": 5.89e-06, + "repaired": 5.89e-06, + "rotating": 5.89e-06, + "sanchez": 5.89e-06, + "sandwiches": 5.89e-06, + "satellites": 1.48e-07, + "scar": 5.89e-06, + "scouts": 1.86e-07, + "scripture": 5.89e-06, + "seating": 5.89e-06, + "seminar": 5.89e-06, + "shores": 1.17e-07, + "silva": 5.89e-06, + "simplicity": 5.89e-06, + "slightest": 5.89e-06, + "softly": 5.89e-06, + "specimens": 5.89e-06, + "starbucks": 9.77e-08, + "stereo": 5.89e-06, + "supplements": 5.89e-06, + "surrey": 5.89e-06, + "sustainability": 5.89e-06, + "symphony": 5.89e-06, + "tesla": 5.89e-06, + "textbook": 5.89e-06, + "theological": 5.89e-06, + "trader": 5.89e-06, + "undercover": 5.89e-06, + "valentine": 5.89e-06, + "vegetation": 5.89e-06, + "vein": 5.89e-06, + "velvet": 5.89e-06, + "vendors": 1.35e-07, + "viewer": 5.89e-06, + "webb": 5.89e-06, + "welcoming": 5.89e-06, + "whales": 2.19e-07, + "wheeler": 5.89e-06, + "worm": 5.89e-06, + "zombies": 9.77e-08, + "accountant": 5.75e-06, + "activate": 5.75e-06, + "admissions": 5.75e-06, + "alison": 5.75e-06, + "amusing": 5.75e-06, + "arabs": 5.75e-06, + "beams": 6.92e-08, + "behold": 5.75e-06, + "betrayed": 5.75e-06, + "biased": 5.75e-06, + "billionaire": 5.75e-06, + "bloggers": 1.41e-07, + "brewing": 5.75e-06, + "brooke": 5.75e-06, + "bypass": 5.75e-06, + "calculation": 5.75e-06, + "cancellation": 5.75e-06, + "cane": 5.75e-06, + "capturing": 5.75e-06, + "catalyst": 5.75e-06, + "cedar": 5.75e-06, + "celebrates": 5.75e-06, + "claude": 5.75e-06, + "concentrations": 5.75e-06, + "concludes": 5.75e-06, + "cons": 1.29e-07, + "corpse": 5.75e-06, + "crab": 5.75e-06, + "cruelty": 5.75e-06, + "darwin": 5.75e-06, + "dawson": 5.75e-06, + "decorations": 5.75e-06, + "dementia": 5.75e-06, + "demonstrating": 5.75e-06, + "designation": 5.75e-06, + "dev": 5.75e-06, + "dice": 5.75e-06, + "diploma": 5.75e-06, + "disasters": 5.75e-06, + "discharged": 5.75e-06, + "dispatch": 5.75e-06, + "disputed": 5.75e-06, + "dots": 1.17e-07, + "ds": 9.77e-07, + "duchess": 5.75e-06, + "dunno": 5.75e-06, + "economists": 7.41e-08, + "eds": 7.41e-07, + "elders": 1.32e-07, + "exceeded": 5.75e-06, + "explanations": 5.75e-06, + "extinction": 5.75e-06, + "factions": 8.13e-08, + "fb": 5.75e-06, + "foil": 5.75e-06, + "formats": 5.75e-06, + "freddie": 5.75e-06, + "gardner": 5.75e-06, + "geology": 5.75e-06, + "gerald": 5.75e-06, + "graduating": 5.75e-06, + "gram": 5.75e-06, + "greene": 5.75e-06, + "heath": 5.75e-06, + "heavenly": 5.75e-06, + "hormones": 5.75e-06, + "horrific": 5.75e-06, + "hugo": 5.75e-06, + "infants": 2.57e-07, + "insect": 5.75e-06, + "iris": 5.75e-06, + "issuing": 5.75e-06, + "lifts": 5.75e-06, + "locking": 5.75e-06, + "logging": 5.75e-06, + "lookin": 5.75e-06, + "maurice": 5.75e-06, + "medications": 5.75e-06, + "mentality": 5.75e-06, + "metre": 5.75e-06, + "minecraft": 5.75e-06, + "miracles": 5.75e-06, + "nascar": 5.75e-06, + "neural": 5.75e-06, + "newsletter": 5.75e-06, + "nineteenth": 5.75e-06, + "nitrogen": 5.75e-06, + "norms": 6.03e-08, + "oceans": 8.91e-07, + "ooh": 5.75e-06, + "patricia": 5.75e-06, + "paulo": 5.75e-06, + "payroll": 5.75e-06, + "phenomenal": 5.75e-06, + "philippine": 5.75e-06, + "photographic": 5.75e-06, + "pinch": 5.75e-06, + "ping": 5.75e-06, + "polished": 5.75e-06, + "pots": 1.2e-07, + "predictable": 5.75e-06, + "privileges": 5.75e-06, + "prix": 5.75e-06, + "professionally": 5.75e-06, + "protesting": 5.75e-06, + "protocols": 5.75e-06, + "pushes": 5.75e-06, + "queer": 5.75e-06, + "rebounds": 5.75e-06, + "reckon": 5.75e-06, + "recycling": 5.75e-06, + "restriction": 5.75e-06, + "resumed": 5.75e-06, + "resurrection": 5.75e-06, + "rover": 5.75e-06, + "scars": 5.01e-08, + "scholarships": 5.75e-06, + "shannon": 5.75e-06, + "shelves": 5.75e-06, + "shipment": 5.75e-06, + "slut": 5.75e-06, + "sparks": 5.5e-08, + "spatial": 5.75e-06, + "stainless": 5.75e-06, + "statutory": 5.75e-06, + "stellar": 5.75e-06, + "stockholm": 5.75e-06, + "stripes": 5.75e-06, + "stubborn": 5.75e-06, + "summoned": 5.75e-06, + "sussex": 5.75e-06, + "swords": 1.07e-07, + "syrup": 5.75e-06, + "tackles": 5.75e-06, + "tamil": 5.75e-06, + "tapping": 5.75e-06, + "teachings": 5.75e-06, + "tightly": 5.75e-06, + "tina": 5.75e-06, + "tones": 5.75e-06, + "tories": 5.75e-06, + "transplant": 5.75e-06, + "traps": 2.95e-08, + "tu": 5.75e-06, + "turf": 5.75e-06, + "twitch": 5.75e-06, + "unlocked": 5.75e-06, + "unusually": 5.75e-06, + "unveiled": 5.75e-06, + "username": 5.75e-06, + "vaccines": 5.75e-06, + "veins": 5.75e-06, + "ventures": 5.37e-08, + "vip": 5.75e-06, + "visions": 1.35e-07, + "voiced": 5.75e-06, + "volcano": 5.75e-06, + "warmer": 5.75e-06, + "webster": 5.75e-06, + "weddings": 5.01e-08, + "yelled": 5.75e-06, + "zach": 5.75e-06, + "accelerated": 5.62e-06, + "accomplishments": 5.62e-06, + "advertised": 5.62e-06, + "advertisements": 5.62e-06, + "ark": 5.62e-06, + "armour": 5.62e-06, + "assaulted": 5.62e-06, + "atoms": 6.76e-08, + "attach": 5.62e-06, + "awaiting": 5.62e-06, + "bayern": 5.62e-06, + "bind": 5.62e-06, + "blessings": 5.62e-06, + "blu": 5.62e-06, + "bluetooth": 5.62e-06, + "boiling": 5.62e-06, + "borrowing": 5.62e-06, + "bowls": 8.51e-08, + "bradford": 5.62e-06, + "bum": 5.62e-06, + "butcher": 5.62e-06, + "cmon": 1.1e-06, + "chandler": 5.62e-06, + "cheapest": 5.62e-06, + "chloe": 5.62e-06, + "communists": 5.62e-06, + "compares": 5.62e-06, + "conception": 5.62e-06, + "congo": 5.62e-06, + "counterparts": 5.62e-06, + "cue": 5.62e-06, + "deed": 5.62e-06, + "disciplinary": 5.62e-06, + "dreamed": 5.62e-06, + "dwarf": 5.62e-06, + "eighty": 5.62e-06, + "elena": 5.62e-06, + "eligibility": 5.62e-06, + "embraced": 5.62e-06, + "enacted": 5.62e-06, + "endorsement": 5.62e-06, + "enlisted": 5.62e-06, + "eyebrows": 5.62e-06, + "fcc": 5.62e-06, + "finite": 5.62e-06, + "flagship": 5.62e-06, + "forensic": 5.62e-06, + "forthcoming": 5.62e-06, + "gallon": 5.62e-06, + "gems": 5.62e-06, + "glowing": 5.62e-06, + "glucose": 5.62e-06, + "gore": 5.62e-06, + "govt": 1.02e-06, + "gown": 5.62e-06, + "greedy": 5.62e-06, + "halo": 5.62e-06, + "hilton": 5.62e-06, + "ideally": 5.62e-06, + "identifies": 5.62e-06, + "improves": 5.62e-06, + "infamous": 5.62e-06, + "inspirational": 5.62e-06, + "internally": 5.62e-06, + "kashmir": 5.62e-06, + "knox": 5.62e-06, + "lateral": 5.62e-06, + "leigh": 5.62e-06, + "lent": 5.62e-06, + "lib": 5.62e-06, + "lifelong": 5.62e-06, + "limestone": 5.62e-06, + "liner": 5.62e-06, + "majors": 3.16e-07, + "marched": 5.62e-06, + "marrying": 5.62e-06, + "maths": 5.62e-06, + "memes": 5.75e-08, + "mentioning": 5.62e-06, + "merge": 5.62e-06, + "mesh": 5.62e-06, + "migrant": 5.62e-06, + "mohammed": 5.62e-06, + "monitored": 5.62e-06, + "moron": 5.62e-06, + "mortar": 5.62e-06, + "myths": 5.62e-06, + "naive": 5.62e-06, + "nat": 5.62e-06, + "noises": 5.62e-06, + "norton": 5.62e-06, + "noticeable": 5.62e-06, + "nt": 3.8e-06, + "observing": 5.62e-06, + "omar": 5.62e-06, + "opted": 5.62e-06, + "palestinians": 5.62e-06, + "paula": 5.62e-06, + "paypal": 5.62e-06, + "pedro": 5.62e-06, + "pens": 2.14e-07, + "perfume": 5.62e-06, + "pitching": 5.62e-06, + "pleasing": 5.62e-06, + "premiums": 5.62e-06, + "prestige": 5.62e-06, + "protects": 5.62e-06, + "pyramid": 5.62e-06, + "realizes": 5.62e-06, + "relevance": 5.62e-06, + "remotely": 5.62e-06, + "resorts": 3.16e-07, + "retailer": 5.62e-06, + "rica": 5.62e-06, + "rigid": 5.62e-06, + "rita": 5.62e-06, + "rm": 5.62e-06, + "rom": 5.62e-06, + "ronaldo": 5.62e-06, + "sailors": 2.88e-07, + "samantha": 5.62e-06, + "sampling": 5.62e-06, + "screenshot": 5.62e-06, + "selfie": 5.62e-06, + "settlers": 5.62e-06, + "shattered": 5.62e-06, + "signatures": 5.62e-06, + "spacecraft": 5.62e-06, + "specification": 5.62e-06, + "spiders": 3.31e-07, + "splendid": 5.62e-06, + "strokes": 5.62e-06, + "successes": 5.62e-06, + "summers": 1.74e-06, + "sundays": 2.51e-06, + "supplying": 5.62e-06, + "telescope": 5.62e-06, + "temp": 5.62e-06, + "tended": 5.62e-06, + "terminated": 5.62e-06, + "textile": 5.62e-06, + "thatd": 9.77e-08, + "thickness": 5.62e-06, + "threatens": 5.62e-06, + "tossed": 5.62e-06, + "tray": 5.62e-06, + "uae": 5.62e-06, + "ucla": 5.62e-06, + "unreasonable": 5.62e-06, + "unsure": 5.62e-06, + "upwards": 5.62e-06, + "utilize": 5.62e-06, + "valuation": 5.62e-06, + "veterinary": 5.62e-06, + "villagers": 5.62e-06, + "violate": 5.62e-06, + "vivid": 5.62e-06, + "waving": 5.62e-06, + "accusing": 5.5e-06, + "aided": 5.5e-06, + "alexis": 5.5e-06, + "allocation": 5.5e-06, + "amusement": 5.5e-06, + "antibiotics": 5.5e-06, + "anticipation": 5.5e-06, + "anyones": 2.82e-07, + "appropriately": 5.5e-06, + "arrests": 5.5e-06, + "arrogant": 5.5e-06, + "assessing": 5.5e-06, + "authorization": 5.5e-06, + "auxiliary": 5.5e-06, + "baggage": 5.5e-06, + "beacon": 5.5e-06, + "bella": 5.5e-06, + "belts": 9.77e-08, + "bounty": 5.5e-06, + "boxer": 5.5e-06, + "briefing": 5.5e-06, + "brook": 5.5e-06, + "budgets": 8.32e-08, + "canterbury": 5.5e-06, + "cartoons": 5.5e-06, + "ceramic": 5.5e-06, + "cereal": 5.5e-06, + "challenger": 5.5e-06, + "chased": 5.5e-06, + "clergy": 5.5e-06, + "coats": 5.5e-06, + "cola": 5.5e-06, + "coma": 5.5e-06, + "comfortably": 5.5e-06, + "commanders": 5.25e-07, + "compass": 5.5e-06, + "considerations": 5.5e-06, + "consultants": 8.13e-08, + "contempt": 5.5e-06, + "contributes": 5.5e-06, + "credentials": 5.5e-06, + "croatia": 5.5e-06, + "cured": 5.5e-06, + "descended": 5.5e-06, + "disappearance": 5.5e-06, + "doyle": 5.5e-06, + "drowned": 5.5e-06, + "drying": 5.5e-06, + "dwelling": 5.5e-06, + "dwight": 5.5e-06, + "ecology": 5.5e-06, + "einstein": 5.5e-06, + "eli": 5.5e-06, + "elliot": 5.5e-06, + "emergence": 5.5e-06, + "enclosed": 5.5e-06, + "endurance": 5.5e-06, + "equals": 5.5e-06, + "erotic": 5.5e-06, + "evacuation": 5.5e-06, + "exceptionally": 5.5e-06, + "exchanged": 5.5e-06, + "expenditure": 5.5e-06, + "falcon": 5.5e-06, + "favors": 5.5e-06, + "fernando": 5.5e-06, + "folder": 5.5e-06, + "frequencies": 5.5e-06, + "frightened": 5.5e-06, + "gavin": 5.5e-06, + "groove": 5.5e-06, + "hbo": 5.5e-06, + "hedge": 5.5e-06, + "homosexuality": 5.5e-06, + "icons": 8.13e-08, + "ingredient": 5.5e-06, + "initiate": 5.5e-06, + "inserted": 5.5e-06, + "interventions": 5.5e-06, + "invaded": 5.5e-06, + "ironically": 5.5e-06, + "istanbul": 5.5e-06, + "jacobs": 8.51e-07, + "jealousy": 5.5e-06, + "jewellery": 5.5e-06, + "joker": 5.5e-06, + "jonas": 5.5e-06, + "kingston": 5.5e-06, + "kisses": 5.5e-06, + "laden": 5.5e-06, + "learns": 5.5e-06, + "limbs": 5.5e-06, + "lionel": 5.5e-06, + "liu": 5.5e-06, + "mccarthy": 5.5e-06, + "medicaid": 5.5e-06, + "meta": 5.5e-06, + "mil": 5.5e-06, + "mit": 5.5e-06, + "newark": 5.5e-06, + "nod": 5.5e-06, + "notebook": 5.5e-06, + "offline": 5.5e-06, + "offs": 1.2e-07, + "overweight": 5.5e-06, + "palette": 5.5e-06, + "payne": 5.5e-06, + "phenomena": 5.5e-06, + "pneumonia": 5.5e-06, + "policeman": 5.5e-06, + "postponed": 5.5e-06, + "potent": 5.5e-06, + "preceding": 5.5e-06, + "predators": 9.12e-08, + "psycho": 5.5e-06, + "rainy": 5.5e-06, + "rams": 2.24e-07, + "ranged": 5.5e-06, + "recognizes": 5.5e-06, + "renovation": 5.5e-06, + "reverend": 5.5e-06, + "rewarding": 5.5e-06, + "rust": 5.5e-06, + "salty": 5.5e-06, + "scots": 5.01e-08, + "scrutiny": 5.5e-06, + "seizure": 5.5e-06, + "serum": 5.5e-06, + "singular": 5.5e-06, + "skate": 5.5e-06, + "sofia": 5.5e-06, + "storyline": 5.5e-06, + "stray": 5.5e-06, + "stud": 5.5e-06, + "subsidies": 5.5e-06, + "sunk": 5.5e-06, + "supper": 5.5e-06, + "sweetheart": 5.5e-06, + "systemic": 5.5e-06, + "tempo": 5.5e-06, + "thereof": 5.5e-06, + "thirsty": 5.5e-06, + "torch": 5.5e-06, + "transferring": 5.5e-06, + "tumblr": 5.5e-06, + "turbo": 5.5e-06, + "unchanged": 5.5e-06, + "understandable": 5.5e-06, + "upright": 5.5e-06, + "uprising": 5.5e-06, + "vain": 5.5e-06, + "vanity": 5.5e-06, + "violin": 5.5e-06, + "wh": 5.5e-06, + "whereby": 5.5e-06, + "whisper": 5.5e-06, + "worthwhile": 5.5e-06, + "xx": 5.5e-06, + "acceleration": 5.37e-06, + "aerospace": 5.37e-06, + "ak": 5.37e-06, + "aluminium": 5.37e-06, + "analog": 5.37e-06, + "analytical": 5.37e-06, + "anticipate": 5.37e-06, + "arcade": 5.37e-06, + "arlington": 5.37e-06, + "arose": 5.37e-06, + "asthma": 5.37e-06, + "aurora": 5.37e-06, + "averaging": 5.37e-06, + "bacterial": 5.37e-06, + "bankrupt": 5.37e-06, + "blink": 5.37e-06, + "brighter": 5.37e-06, + "carey": 5.37e-06, + "castro": 5.37e-06, + "ceremonies": 5.37e-06, + "chang": 5.37e-06, + "childish": 5.37e-06, + "chili": 5.37e-06, + "clayton": 5.37e-06, + "clearer": 5.37e-06, + "coil": 5.37e-06, + "combines": 5.37e-06, + "commodities": 5.37e-06, + "confessed": 5.37e-06, + "constituents": 5.37e-06, + "contention": 5.37e-06, + "converting": 5.37e-06, + "covenant": 5.37e-06, + "crafts": 9.55e-08, + "das": 3.63e-07, + "denies": 5.37e-06, + "devotion": 5.37e-06, + "dilemma": 5.37e-06, + "dis": 7.94e-08, + "discoveries": 5.37e-06, + "disgrace": 5.37e-06, + "dixon": 5.37e-06, + "emirates": 5.37e-06, + "emmy": 5.37e-06, + "employing": 5.37e-06, + "employs": 5.37e-06, + "escaping": 5.37e-06, + "ethiopia": 5.37e-06, + "ethnicity": 5.37e-06, + "eventual": 5.37e-06, + "excel": 5.37e-06, + "exercising": 5.37e-06, + "faded": 5.37e-06, + "firstly": 5.37e-06, + "flavour": 5.37e-06, + "flex": 5.37e-06, + "fluids": 5.37e-06, + "franco": 5.37e-06, + "gangs": 5.25e-07, + "gases": 5.37e-06, + "genus": 5.37e-06, + "gloria": 5.37e-06, + "glove": 5.37e-06, + "grabs": 5.37e-06, + "grammy": 5.37e-06, + "grapes": 5.37e-06, + "greed": 5.37e-06, + "greet": 5.37e-06, + "hank": 5.37e-06, + "hose": 5.37e-06, + "hq": 5.37e-06, + "impacted": 5.37e-06, + "imposing": 5.37e-06, + "inflammation": 5.37e-06, + "innovations": 5.37e-06, + "ko": 5.37e-06, + "lambert": 5.37e-06, + "lamps": 5.37e-06, + "lava": 5.37e-06, + "ln": 5.37e-06, + "longtime": 5.37e-06, + "madonna": 5.37e-06, + "magnet": 5.37e-06, + "mann": 5.37e-06, + "metaphor": 5.37e-06, + "millionaire": 5.37e-06, + "mn": 5.37e-06, + "motives": 5.37e-06, + "myers": 5.37e-06, + "mysteries": 5.37e-06, + "negro": 5.37e-06, + "nightmares": 5.37e-06, + "notify": 5.37e-06, + "null": 5.37e-06, + "ole": 5.37e-06, + "oops": 5.37e-06, + "oriental": 5.37e-06, + "owing": 5.37e-06, + "pact": 5.37e-06, + "paramount": 5.37e-06, + "paranoid": 5.37e-06, + "patriot": 5.37e-06, + "patron": 5.37e-06, + "pearson": 5.37e-06, + "popcorn": 5.37e-06, + "positioning": 5.37e-06, + "preserving": 5.37e-06, + "proxy": 5.37e-06, + "quantitative": 5.37e-06, + "regain": 5.37e-06, + "reminding": 5.37e-06, + "renew": 5.37e-06, + "resemble": 5.37e-06, + "retarded": 5.37e-06, + "retro": 5.37e-06, + "revolt": 5.37e-06, + "rightly": 5.37e-06, + "roasted": 5.37e-06, + "ruining": 5.37e-06, + "rumor": 5.37e-06, + "sacked": 5.37e-06, + "saddle": 5.37e-06, + "schmidt": 5.37e-06, + "schooling": 5.37e-06, + "sherlock": 5.37e-06, + "shirley": 5.37e-06, + "shrine": 5.37e-06, + "shrink": 5.37e-06, + "sniper": 5.37e-06, + "solitary": 5.37e-06, + "sorrow": 5.37e-06, + "squares": 2.19e-07, + "starters": 9.12e-08, + "stoke": 5.37e-06, + "sutton": 5.37e-06, + "talkin": 5.37e-06, + "taller": 5.37e-06, + "termination": 5.37e-06, + "thames": 5.37e-06, + "thigh": 5.37e-06, + "thrive": 5.37e-06, + "tr": 5.37e-06, + "troll": 5.37e-06, + "ty": 5.37e-06, + "uncovered": 5.37e-06, + "undertake": 5.37e-06, + "unpaid": 5.37e-06, + "unsuccessful": 5.37e-06, + "usc": 5.37e-06, + "vest": 5.37e-06, + "vine": 5.37e-06, + "violating": 5.37e-06, + "viruses": 5.37e-06, + "warns": 5.37e-06, + "warranty": 5.37e-06, + "weakened": 5.37e-06, + "windsor": 5.37e-06, + "xxx": 5.37e-06, + "yen": 5.37e-06, + "zimbabwe": 5.37e-06, + "admired": 5.25e-06, + "airways": 5.25e-06, + "aisle": 5.25e-06, + "almighty": 5.25e-06, + "amino": 5.25e-06, + "ants": 1.1e-07, + "apparel": 5.25e-06, + "arbitration": 5.25e-06, + "arising": 5.25e-06, + "artifacts": 5.25e-06, + "ashton": 5.25e-06, + "atom": 5.25e-06, + "auburn": 5.25e-06, + "awakening": 5.25e-06, + "bedrooms": 5.25e-06, + "bilateral": 5.25e-06, + "bleed": 5.25e-06, + "brace": 5.25e-06, + "burgers": 8.71e-08, + "caption": 5.25e-06, + "captures": 5.25e-06, + "choke": 5.25e-06, + "cholesterol": 5.25e-06, + "classy": 5.25e-06, + "clicks": 5.25e-06, + "clyde": 5.25e-06, + "compelled": 5.25e-06, + "concealed": 5.25e-06, + "condemn": 5.25e-06, + "confrontation": 5.25e-06, + "constitutes": 5.25e-06, + "contributor": 5.25e-06, + "cpu": 5.25e-06, + "damon": 5.25e-06, + "deluxe": 5.25e-06, + "devastated": 5.25e-06, + "dinosaurs": 7.76e-08, + "disguise": 5.25e-06, + "dismissal": 5.25e-06, + "domains": 7.08e-08, + "downstairs": 5.25e-06, + "empathy": 5.25e-06, + "ensemble": 5.25e-06, + "ernest": 5.25e-06, + "feasible": 5.25e-06, + "flawed": 5.25e-06, + "forged": 5.25e-06, + "generals": 2.75e-06, + "genres": 2.29e-07, + "gettin": 5.25e-06, + "gi": 5.25e-06, + "goats": 4.27e-07, + "grease": 5.25e-06, + "greeks": 5.25e-06, + "guessed": 5.25e-06, + "haiti": 5.25e-06, + "hallway": 5.25e-06, + "harley": 5.25e-06, + "heavens": 1.15e-06, + "helicopters": 1.38e-07, + "homosexual": 5.25e-06, + "hulk": 5.25e-06, + "hydraulic": 5.25e-06, + "impulse": 5.25e-06, + "incapable": 5.25e-06, + "indies": 1.48e-08, + "inflammatory": 5.25e-06, + "insanity": 5.25e-06, + "insecure": 5.25e-06, + "institutes": 1.1e-06, + "integrate": 5.25e-06, + "intentional": 5.25e-06, + "ish": 5.25e-06, + "jeep": 5.25e-06, + "knot": 5.25e-06, + "laboratories": 5.25e-06, + "landscapes": 5.25e-06, + "lebanese": 5.25e-06, + "lecturer": 5.25e-06, + "lust": 5.25e-06, + "marilyn": 5.25e-06, + "markers": 5.25e-06, + "mayo": 5.25e-06, + "michel": 5.25e-06, + "microphone": 5.25e-06, + "miniature": 5.25e-06, + "monks": 3.72e-07, + "motto": 5.25e-06, + "mouths": 7.08e-08, + "murdering": 5.25e-06, + "nationality": 5.25e-06, + "natives": 5.75e-08, + "nottingham": 5.25e-06, + "nw": 5.25e-06, + "obstacle": 5.25e-06, + "occupational": 5.25e-06, + "og": 5.25e-06, + "onset": 5.25e-06, + "owes": 5.25e-06, + "pe": 5.25e-06, + "perceive": 5.25e-06, + "persecution": 5.25e-06, + "petrol": 5.25e-06, + "philosopher": 5.25e-06, + "photographed": 5.25e-06, + "pits": 6.46e-08, + "pixel": 5.25e-06, + "plantation": 5.25e-06, + "presently": 5.25e-06, + "props": 1.74e-08, + "prose": 5.25e-06, + "prostitution": 5.25e-06, + "quoting": 5.25e-06, + "radioactive": 5.25e-06, + "raining": 5.25e-06, + "rang": 5.25e-06, + "razor": 5.25e-06, + "realization": 5.25e-06, + "reconciliation": 5.25e-06, + "removes": 5.25e-06, + "restoring": 5.25e-06, + "reunited": 5.25e-06, + "rocking": 5.25e-06, + "rory": 5.25e-06, + "royals": 8.91e-08, + "rug": 5.25e-06, + "sacrifices": 5.25e-06, + "salvador": 5.25e-06, + "scanning": 5.25e-06, + "screamed": 5.25e-06, + "shaping": 5.25e-06, + "slogan": 5.25e-06, + "specimen": 5.25e-06, + "sponsorship": 5.25e-06, + "steals": 5.25e-06, + "steer": 5.25e-06, + "stefan": 5.25e-06, + "strains": 5.25e-06, + "strawberry": 5.25e-06, + "strive": 5.25e-06, + "sunglasses": 5.25e-06, + "surfing": 5.25e-06, + "tate": 5.25e-06, + "temptation": 5.25e-06, + "thrill": 5.25e-06, + "tile": 5.25e-06, + "tonnes": 5.25e-06, + "tow": 5.25e-06, + "trainers": 2.09e-07, + "translations": 5.25e-06, + "trusting": 5.25e-06, + "turtles": 1.62e-07, + "uc": 5.25e-06, + "unarmed": 5.25e-06, + "undertaking": 5.25e-06, + "unfinished": 5.25e-06, + "unhealthy": 5.25e-06, + "unlawful": 5.25e-06, + "unpopular": 5.25e-06, + "ut": 5.25e-06, + "vanessa": 5.25e-06, + "vanished": 5.25e-06, + "verb": 5.25e-06, + "versa": 5.25e-06, + "viii": 5.25e-06, + "volatile": 5.25e-06, + "voluntarily": 5.25e-06, + "vp": 5.25e-06, + "whitney": 5.25e-06, + "withdrew": 5.25e-06, + "abnormal": 5.13e-06, + "accredited": 5.13e-06, + "accuse": 5.13e-06, + "ada": 5.13e-06, + "adjusting": 5.13e-06, + "ample": 5.13e-06, + "analogy": 5.13e-06, + "analyzing": 5.13e-06, + "apex": 5.13e-06, + "apocalypse": 5.13e-06, + "appliances": 5.13e-06, + "assholes": 8.32e-08, + "babys": 1.55e-07, + "backward": 5.13e-06, + "badass": 5.13e-06, + "barred": 5.13e-06, + "beck": 5.13e-06, + "bingo": 5.13e-06, + "blogging": 5.13e-06, + "boiler": 5.13e-06, + "bon": 5.13e-06, + "boulder": 5.13e-06, + "brock": 5.13e-06, + "calf": 5.13e-06, + "cambodia": 5.13e-06, + "capt": 5.13e-06, + "cb": 5.13e-06, + "clarence": 5.13e-06, + "coating": 5.13e-06, + "commentators": 5.13e-06, + "consolidation": 5.13e-06, + "continuation": 5.13e-06, + "convictions": 5.13e-06, + "convoy": 5.13e-06, + "cork": 5.13e-06, + "cosmetic": 5.13e-06, + "cubic": 5.13e-06, + "cyprus": 5.13e-06, + "declares": 5.13e-06, + "defeats": 5.13e-06, + "defenses": 2.29e-07, + "dept": 5.13e-06, + "deputies": 5.13e-06, + "descendants": 5.13e-06, + "detector": 5.13e-06, + "digest": 5.13e-06, + "diplomacy": 5.13e-06, + "directive": 5.13e-06, + "disadvantage": 5.13e-06, + "disruption": 5.13e-06, + "distract": 5.13e-06, + "downward": 5.13e-06, + "ebook": 5.13e-06, + "eco": 5.13e-06, + "emphasized": 5.13e-06, + "energetic": 5.13e-06, + "engineered": 5.13e-06, + "fest": 5.13e-06, + "fills": 5.13e-06, + "friction": 5.13e-06, + "fulfilling": 5.13e-06, + "funk": 5.13e-06, + "greatness": 5.13e-06, + "grilled": 5.13e-06, + "guiding": 5.13e-06, + "hackers": 1.58e-07, + "hazardous": 5.13e-06, + "hooker": 5.13e-06, + "hopeless": 5.13e-06, + "hourly": 5.13e-06, + "illustrate": 5.13e-06, + "imo": 5.13e-06, + "impressions": 5.13e-06, + "indirectly": 5.13e-06, + "induction": 5.13e-06, + "infrared": 5.13e-06, + "insists": 5.13e-06, + "instability": 5.13e-06, + "installing": 5.13e-06, + "invites": 5.13e-06, + "irene": 5.13e-06, + "irving": 5.13e-06, + "ja": 5.13e-06, + "jacques": 5.13e-06, + "jong": 5.13e-06, + "klein": 5.13e-06, + "limitation": 5.13e-06, + "linguistic": 5.13e-06, + "listeners": 1.23e-07, + "litter": 5.13e-06, + "ls": 3.63e-07, + "lump": 5.13e-06, + "macro": 5.13e-06, + "mag": 5.13e-06, + "magistrate": 5.13e-06, + "marginal": 5.13e-06, + "masculine": 5.13e-06, + "milestone": 5.13e-06, + "mug": 5.13e-06, + "municipality": 5.13e-06, + "mushrooms": 5.13e-06, + "nd": 5.13e-06, + "ned": 5.13e-06, + "neurons": 5.13e-06, + "ninety": 5.13e-06, + "nutrients": 5.13e-06, + "observatory": 5.13e-06, + "oi": 5.13e-06, + "openings": 5.13e-06, + "outdoors": 5.13e-06, + "pcs": 4.27e-07, + "pedestrian": 5.13e-06, + "penetration": 5.13e-06, + "pod": 2e-08, + "posing": 5.13e-06, + "predator": 5.13e-06, + "preferably": 5.13e-06, + "programmed": 5.13e-06, + "projections": 5.13e-06, + "prophecy": 5.13e-06, + "proudly": 5.13e-06, + "rebuilding": 5.13e-06, + "recorder": 5.13e-06, + "recurring": 5.13e-06, + "relaxation": 5.13e-06, + "resembles": 5.13e-06, + "respectable": 5.13e-06, + "respectful": 5.13e-06, + "richer": 5.13e-06, + "rn": 5.13e-06, + "rodriguez": 5.13e-06, + "roma": 5.13e-06, + "romeo": 5.13e-06, + "routinely": 5.13e-06, + "rubbing": 5.13e-06, + "sailed": 5.13e-06, + "salute": 5.13e-06, + "scripts": 9.55e-08, + "scum": 5.13e-06, + "serbia": 5.13e-06, + "severity": 5.13e-06, + "shady": 5.13e-06, + "shutting": 5.13e-06, + "sketches": 5.13e-06, + "slack": 5.13e-06, + "sleeps": 5.13e-06, + "slick": 5.13e-06, + "slowed": 5.13e-06, + "slowing": 5.13e-06, + "sm": 5.13e-06, + "spontaneous": 5.13e-06, + "starred": 5.13e-06, + "stationed": 5.13e-06, + "sticker": 5.13e-06, + "stove": 5.13e-06, + "submissions": 5.13e-06, + "tactic": 5.13e-06, + "tb": 5.13e-06, + "template": 5.13e-06, + "teresa": 5.13e-06, + "texting": 5.13e-06, + "theorem": 5.13e-06, + "theresa": 5.13e-06, + "tiles": 5.13e-06, + "tn": 5.13e-06, + "tore": 5.13e-06, + "tract": 5.13e-06, + "treaties": 5.13e-06, + "tri": 5.13e-06, + "tribune": 5.13e-06, + "undergoing": 5.13e-06, + "unexpectedly": 5.13e-06, + "upward": 5.13e-06, + "val": 5.13e-06, + "vera": 5.13e-06, + "vista": 5.13e-06, + "vogue": 5.13e-06, + "volcanic": 5.13e-06, + "wagner": 5.13e-06, + "wildly": 5.13e-06, + "winding": 5.13e-06, + "acclaimed": 5.01e-06, + "accumulated": 5.01e-06, + "adore": 5.01e-06, + "afc": 5.01e-06, + "akin": 5.01e-06, + "alphabet": 5.01e-06, + "announcements": 5.01e-06, + "appoint": 5.01e-06, + "apprentice": 5.01e-06, + "auckland": 5.01e-06, + "bananas": 6.31e-08, + "baseline": 5.01e-06, + "beasts": 2.82e-07, + "benedict": 5.01e-06, + "beware": 5.01e-06, + "bieber": 5.01e-06, + "bikini": 5.01e-06, + "bisexual": 5.01e-06, + "boulevard": 5.01e-06, + "bracelet": 5.01e-06, + "capsule": 5.01e-06, + "captive": 5.01e-06, + "carr": 5.01e-06, + "cha": 5.01e-06, + "christie": 5.01e-06, + "chronicle": 5.01e-06, + "cinnamon": 5.01e-06, + "comprehend": 5.01e-06, + "compulsory": 5.01e-06, + "confederate": 5.01e-06, + "contaminated": 5.01e-06, + "contamination": 5.01e-06, + "contests": 7.94e-08, + "coping": 5.01e-06, + "corey": 5.01e-06, + "counterpart": 5.01e-06, + "creed": 5.01e-06, + "crisp": 5.01e-06, + "crust": 5.01e-06, + "cutter": 5.01e-06, + "daring": 5.01e-06, + "delegate": 5.01e-06, + "deploy": 5.01e-06, + "dietary": 5.01e-06, + "dissertation": 5.01e-06, + "dividends": 5.01e-06, + "domination": 5.01e-06, + "downloading": 5.01e-06, + "ec": 5.01e-06, + "emission": 5.01e-06, + "ethan": 5.01e-06, + "evaluating": 5.01e-06, + "everton": 5.01e-06, + "expelled": 5.01e-06, + "fin": 5.01e-06, + "fined": 5.01e-06, + "flora": 5.01e-06, + "folding": 5.01e-06, + "fracture": 5.01e-06, + "frances": 2.24e-06, + "functionality": 5.01e-06, + "gamma": 5.01e-06, + "gays": 1.26e-07, + "gaze": 5.01e-06, + "genome": 5.01e-06, + "grains": 5.01e-06, + "grape": 5.01e-06, + "gravel": 5.01e-06, + "haircut": 5.01e-06, + "haired": 5.01e-06, + "hangs": 5.01e-06, + "hastings": 1.1e-08, + "highland": 5.01e-06, + "histories": 5.01e-06, + "honoured": 5.01e-06, + "hugs": 5.01e-06, + "hustle": 5.01e-06, + "hyde": 5.01e-06, + "ia": 5.01e-06, + "idle": 5.01e-06, + "indictment": 5.01e-06, + "insulting": 5.01e-06, + "irregular": 5.01e-06, + "juicy": 5.01e-06, + "jumper": 5.01e-06, + "justices": 2.4e-07, + "kardashian": 5.01e-06, + "leaking": 5.01e-06, + "limb": 5.01e-06, + "mack": 5.01e-06, + "mammals": 5.01e-06, + "manually": 5.01e-06, + "meaningless": 5.01e-06, + "millennium": 5.01e-06, + "misunderstanding": 5.01e-06, + "modelling": 5.01e-06, + "modules": 6.61e-08, + "moody": 5.01e-06, + "nam": 5.01e-06, + "needles": 3.31e-08, + "noodles": 5.01e-06, + "offender": 5.01e-06, + "oracle": 5.01e-06, + "overlap": 5.01e-06, + "patrons": 7.76e-08, + "pd": 5.01e-06, + "peek": 5.01e-06, + "pentagon": 5.01e-06, + "peters": 3.02e-06, + "petersburg": 5.01e-06, + "porsche": 5.01e-06, + "pos": 7.59e-08, + "pottery": 5.01e-06, + "prairie": 5.01e-06, + "prank": 5.01e-06, + "premature": 5.01e-06, + "psychiatrist": 5.01e-06, + "quad": 5.01e-06, + "quartz": 5.01e-06, + "quitting": 5.01e-06, + "rb": 5.01e-06, + "residency": 5.01e-06, + "resolutions": 5.01e-06, + "responsive": 5.01e-06, + "richest": 5.01e-06, + "roar": 5.01e-06, + "ronnie": 5.01e-06, + "rooney": 5.01e-06, + "rot": 5.01e-06, + "rulers": 9.33e-08, + "salem": 5.01e-06, + "sank": 5.01e-06, + "santos": 4.9e-08, + "sb": 5.01e-06, + "seahawks": 5.01e-06, + "sidney": 5.01e-06, + "sleeves": 5.01e-06, + "songwriter": 5.01e-06, + "sophia": 5.01e-06, + "spear": 5.01e-06, + "spies": 5.01e-06, + "stain": 5.01e-06, + "stella": 5.01e-06, + "stimulation": 5.01e-06, + "stranded": 5.01e-06, + "stretches": 5.01e-06, + "stylish": 5.01e-06, + "subs": 1.32e-07, + "sur": 5.01e-06, + "tasted": 5.01e-06, + "technician": 5.01e-06, + "temples": 2.95e-07, + "tidal": 5.01e-06, + "transcript": 5.01e-06, + "treasures": 5.62e-08, + "trench": 5.01e-06, + "trousers": 5.01e-06, + "unwilling": 5.01e-06, + "uruguay": 5.01e-06, + "utc": 5.01e-06, + "validity": 5.01e-06, + "variants": 5.01e-06, + "varsity": 5.01e-06, + "verification": 5.01e-06, + "vows": 5.01e-06, + "vulnerability": 5.01e-06, + "wesley": 5.01e-06, + "whichever": 5.01e-06, + "whipped": 5.01e-06, + "whove": 5.01e-06, + "wo": 5.01e-06, + "wrath": 5.01e-06, + "yuan": 5.01e-06, + "zen": 5.01e-06, + "abuses": 4.9e-06, + "accomplishment": 4.9e-06, + "acquisitions": 4.9e-06, + "aide": 4.9e-06, + "allegiance": 4.9e-06, + "apt": 4.9e-06, + "attracting": 4.9e-06, + "avatar": 4.9e-06, + "bali": 4.9e-06, + "bangalore": 4.9e-06, + "bans": 7.08e-08, + "battling": 4.9e-06, + "beads": 4.9e-06, + "beverage": 4.9e-06, + "blaze": 4.9e-06, + "brendan": 4.9e-06, + "brent": 4.9e-06, + "broadband": 4.9e-06, + "bullied": 4.9e-06, + "bumper": 4.9e-06, + "butterflies": 4.9e-06, + "carlo": 4.9e-06, + "caves": 1.48e-07, + "chalk": 4.9e-06, + "chilling": 4.9e-06, + "coaster": 4.9e-06, + "coated": 4.9e-06, + "constituency": 4.9e-06, + "contingent": 4.9e-06, + "cornell": 4.9e-06, + "corrections": 4.9e-06, + "costing": 4.9e-06, + "councillor": 4.9e-06, + "cyclists": 6.92e-08, + "daniels": 1.23e-06, + "deprived": 4.9e-06, + "diplomat": 4.9e-06, + "disciplines": 4.9e-06, + "dos": 5.5e-07, + "drained": 4.9e-06, + "eldest": 4.9e-06, + "emphasize": 4.9e-06, + "entirety": 4.9e-06, + "everytime": 4.9e-06, + "exodus": 4.9e-06, + "explosions": 4.9e-06, + "fallout": 4.9e-06, + "feather": 4.9e-06, + "figuring": 4.9e-06, + "financed": 4.9e-06, + "firearm": 4.9e-06, + "fisheries": 4.9e-06, + "flock": 4.9e-06, + "flyers": 4.9e-06, + "footballer": 4.9e-06, + "footsteps": 4.9e-06, + "forestry": 4.9e-06, + "ghetto": 4.9e-06, + "grim": 4.9e-06, + "helpless": 4.9e-06, + "hemisphere": 4.9e-06, + "hides": 4.9e-06, + "housed": 4.9e-06, + "hs": 2.24e-07, + "hyper": 4.9e-06, + "inconvenience": 4.9e-06, + "incorporating": 4.9e-06, + "injected": 4.9e-06, + "insured": 4.9e-06, + "intends": 4.9e-06, + "intervals": 4.9e-06, + "intriguing": 4.9e-06, + "invasive": 4.9e-06, + "ipod": 4.9e-06, + "iq": 4.9e-06, + "irrigation": 4.9e-06, + "ix": 4.9e-06, + "killings": 4.9e-06, + "lastly": 4.9e-06, + "liberties": 4.9e-06, + "lipstick": 4.9e-06, + "macdonald": 4.9e-06, + "manipulate": 4.9e-06, + "mart": 4.9e-06, + "martinez": 4.9e-06, + "meyer": 4.9e-06, + "midlands": 4.9e-06, + "midway": 4.9e-06, + "minors": 7.76e-08, + "moist": 4.9e-06, + "monarch": 4.9e-06, + "monte": 4.9e-06, + "monuments": 5.62e-08, + "mortgages": 4.9e-06, + "mourning": 4.9e-06, + "mu": 4.9e-06, + "mustard": 4.9e-06, + "negatively": 4.9e-06, + "neighbour": 4.9e-06, + "nissan": 4.9e-06, + "norwich": 4.9e-06, + "nothin": 4.9e-06, + "objections": 4.9e-06, + "patterson": 4.9e-06, + "persona": 4.9e-06, + "plaque": 4.9e-06, + "pls": 4.9e-06, + "plymouth": 4.9e-06, + "poetic": 4.9e-06, + "preach": 4.9e-06, + "preaching": 4.9e-06, + "princes": 1.55e-06, + "proposing": 4.9e-06, + "punjab": 4.9e-06, + "purity": 4.9e-06, + "rabbi": 4.9e-06, + "ramsey": 4.9e-06, + "realism": 4.9e-06, + "receipts": 4.9e-06, + "retrieve": 4.9e-06, + "rhodes": 4.9e-06, + "ri": 4.9e-06, + "scheduling": 4.9e-06, + "scoop": 4.9e-06, + "scotch": 4.9e-06, + "scrub": 4.9e-06, + "separating": 4.9e-06, + "sewing": 4.9e-06, + "shale": 4.9e-06, + "shin": 4.9e-06, + "shootings": 4.9e-06, + "simplified": 4.9e-06, + "slipping": 4.9e-06, + "smartphones": 7.08e-08, + "sol": 4.9e-06, + "solicitor": 4.9e-06, + "sophomore": 4.9e-06, + "spreads": 4.9e-06, + "squadron": 4.9e-06, + "squirrel": 4.9e-06, + "stalin": 4.9e-06, + "stickers": 4.9e-06, + "stigma": 4.9e-06, + "strengthened": 4.9e-06, + "taco": 4.9e-06, + "takeover": 4.9e-06, + "taliban": 4.9e-06, + "tapped": 4.9e-06, + "thor": 4.9e-06, + "thumbs": 4.9e-06, + "tinder": 4.9e-06, + "titan": 4.9e-06, + "trait": 4.9e-06, + "traitor": 4.9e-06, + "troop": 4.9e-06, + "truths": 9.12e-08, + "underestimate": 4.9e-06, + "uni": 4.9e-06, + "updating": 4.9e-06, + "urges": 4.9e-06, + "wallpaper": 4.9e-06, + "watt": 4.9e-06, + "weighs": 4.9e-06, + "willis": 4.9e-06, + "willow": 4.9e-06, + "addict": 4.79e-06, + "ale": 4.79e-06, + "api": 4.79e-06, + "archaeological": 4.79e-06, + "assistants": 1.26e-07, + "az": 4.79e-06, + "banging": 4.79e-06, + "bathing": 4.79e-06, + "bending": 4.79e-06, + "bengal": 4.79e-06, + "betrayal": 4.79e-06, + "boiled": 4.79e-06, + "bonding": 4.79e-06, + "bounds": 4.79e-06, + "breeds": 7.08e-08, + "britains": 1.2e-07, + "byron": 4.79e-06, + "cardiovascular": 4.79e-06, + "chic": 4.79e-06, + "clone": 4.79e-06, + "clusters": 4.79e-06, + "communal": 4.79e-06, + "compliments": 4.79e-06, + "consortium": 4.79e-06, + "controllers": 1.55e-07, + "copying": 4.79e-06, + "countdown": 4.79e-06, + "courier": 4.79e-06, + "danced": 4.79e-06, + "dd": 4.79e-06, + "debating": 4.79e-06, + "decreasing": 4.79e-06, + "defect": 4.79e-06, + "disastrous": 4.79e-06, + "displaying": 4.79e-06, + "drown": 4.79e-06, + "drummer": 4.79e-06, + "durable": 4.79e-06, + "efficacy": 4.79e-06, + "erik": 4.79e-06, + "erin": 4.79e-06, + "exaggerated": 4.79e-06, + "exclusion": 4.79e-06, + "exhibitions": 8.91e-08, + "exploited": 4.79e-06, + "extracted": 4.79e-06, + "faults": 4.79e-06, + "filipino": 4.79e-06, + "flashing": 4.79e-06, + "freelance": 4.79e-06, + "gerard": 4.79e-06, + "gin": 4.79e-06, + "girlfriends": 1.91e-06, + "granting": 4.79e-06, + "greeting": 4.79e-06, + "hawaiian": 1.07e-08, + "headaches": 4.79e-06, + "honeymoon": 4.79e-06, + "ignition": 4.79e-06, + "impaired": 4.79e-06, + "incomes": 4.79e-06, + "investigative": 4.79e-06, + "ir": 4.79e-06, + "jewel": 4.79e-06, + "jupiter": 4.79e-06, + "leonardo": 4.79e-06, + "manifest": 4.79e-06, + "marx": 4.79e-06, + "mets": 1.29e-07, + "mourinho": 4.79e-06, + "mutually": 4.79e-06, + "navigate": 4.79e-06, + "oneill": 4.79e-06, + "obese": 4.79e-06, + "outreach": 4.79e-06, + "overlooking": 4.79e-06, + "pandemic": 4.79e-06, + "passages": 4.79e-06, + "perceptions": 4.79e-06, + "perimeter": 4.79e-06, + "pike": 4.79e-06, + "piper": 4.79e-06, + "preacher": 4.79e-06, + "preceded": 4.79e-06, + "procurement": 4.79e-06, + "protector": 4.79e-06, + "pulp": 4.79e-06, + "rabbits": 2.51e-07, + "ransom": 4.79e-06, + "recruits": 4.79e-06, + "reel": 4.79e-06, + "refs": 8.91e-08, + "reg": 4.79e-06, + "rehearsal": 4.79e-06, + "reinforce": 4.79e-06, + "restart": 4.79e-06, + "revive": 4.79e-06, + "rigorous": 4.79e-06, + "ringing": 4.79e-06, + "rna": 4.79e-06, + "scarf": 4.79e-06, + "scenery": 4.79e-06, + "selections": 4.79e-06, + "sensory": 4.79e-06, + "shelters": 8.32e-08, + "sidewalk": 4.79e-06, + "skeptical": 4.79e-06, + "skype": 4.79e-06, + "sleepy": 4.79e-06, + "smoothly": 4.79e-06, + "speeding": 4.79e-06, + "staple": 4.79e-06, + "steelers": 4.79e-06, + "stereotypes": 4.79e-06, + "stirring": 4.79e-06, + "strand": 4.79e-06, + "stunned": 4.79e-06, + "suppression": 4.79e-06, + "sushi": 4.79e-06, + "suspend": 4.79e-06, + "sw": 4.79e-06, + "swelling": 4.79e-06, + "tails": 4.79e-06, + "terminology": 4.79e-06, + "theatrical": 4.79e-06, + "timer": 4.79e-06, + "travellers": 2.14e-07, + "trustee": 4.79e-06, + "turnout": 4.79e-06, + "tying": 4.79e-06, + "unanimous": 4.79e-06, + "unpredictable": 4.79e-06, + "urging": 4.79e-06, + "validation": 4.79e-06, + "vengeance": 4.79e-06, + "verizon": 4.79e-06, + "visually": 4.79e-06, + "waits": 4.79e-06, + "wakes": 3.31e-08, + "weighted": 4.79e-06, + "wii": 4.79e-06, + "xl": 4.79e-06, + "zhang": 4.79e-06, + "acc": 4.68e-06, + "activism": 4.68e-06, + "advent": 4.68e-06, + "airborne": 4.68e-06, + "alas": 2.57e-08, + "astonishing": 4.68e-06, + "aww": 4.68e-06, + "bakery": 4.68e-06, + "barracks": 4.68e-06, + "bart": 4.68e-06, + "bathrooms": 4.68e-06, + "baths": 1.2e-07, + "believer": 4.68e-06, + "benefited": 4.68e-06, + "blankets": 4.68e-06, + "borne": 4.68e-06, + "brokers": 1.7e-07, + "bunker": 4.68e-06, + "caffeine": 4.68e-06, + "capped": 4.68e-06, + "carlton": 4.68e-06, + "chaotic": 4.68e-06, + "chargers": 4.68e-06, + "cite": 4.68e-06, + "classrooms": 4.68e-06, + "commentator": 4.68e-06, + "commercially": 4.68e-06, + "confirming": 4.68e-06, + "confuse": 4.68e-06, + "contributors": 4.68e-06, + "copenhagen": 4.68e-06, + "cosmetics": 4.68e-06, + "coward": 4.68e-06, + "dammit": 4.68e-06, + "dell": 4.68e-06, + "dent": 4.68e-06, + "depart": 4.68e-06, + "destroys": 4.68e-06, + "detectives": 2.69e-07, + "diminished": 4.68e-06, + "disappears": 4.68e-06, + "disappoint": 4.68e-06, + "dl": 4.68e-06, + "dolphin": 4.68e-06, + "dove": 4.68e-06, + "dumping": 4.68e-06, + "dunn": 4.68e-06, + "dusty": 4.68e-06, + "embracing": 4.68e-06, + "enduring": 4.68e-06, + "enlightenment": 4.68e-06, + "fibre": 4.68e-06, + "finnish": 4.68e-06, + "fixture": 4.68e-06, + "focal": 4.68e-06, + "friendships": 4.68e-06, + "frightening": 4.68e-06, + "fucker": 4.68e-06, + "gala": 4.68e-06, + "gardening": 4.68e-06, + "garrett": 4.68e-06, + "garrison": 4.68e-06, + "gears": 1.2e-07, + "generates": 4.68e-06, + "gladly": 4.68e-06, + "goodwill": 4.68e-06, + "govern": 4.68e-06, + "gradual": 4.68e-06, + "greetings": 4.68e-06, + "groceries": 4.68e-06, + "hacker": 4.68e-06, + "hal": 4.68e-06, + "harness": 4.68e-06, + "hashtag": 4.68e-06, + "hassan": 4.68e-06, + "heartbeat": 4.68e-06, + "heh": 4.68e-06, + "highlighting": 4.68e-06, + "holt": 4.68e-06, + "honourable": 4.68e-06, + "illnesses": 4.68e-06, + "imminent": 4.68e-06, + "inaugural": 4.68e-06, + "insulation": 4.68e-06, + "intern": 4.68e-06, + "irresponsible": 4.68e-06, + "jakarta": 4.68e-06, + "johannesburg": 4.68e-06, + "judith": 4.68e-06, + "kathy": 4.68e-06, + "lag": 4.68e-06, + "lays": 1.38e-07, + "lenders": 1.82e-07, + "lg": 4.68e-06, + "locality": 4.68e-06, + "lure": 4.68e-06, + "malicious": 4.68e-06, + "mattress": 4.68e-06, + "meredith": 4.68e-06, + "merged": 4.68e-06, + "merits": 4.68e-06, + "mist": 4.68e-06, + "mole": 4.68e-06, + "molecule": 4.68e-06, + "monarchy": 4.68e-06, + "mormon": 4.68e-06, + "muscular": 4.68e-06, + "neutrality": 4.68e-06, + "nikki": 4.68e-06, + "noisy": 4.68e-06, + "notre": 4.68e-06, + "orgasm": 4.68e-06, + "otto": 4.68e-06, + "panties": 4.68e-06, + "parcel": 4.68e-06, + "partition": 4.68e-06, + "peculiar": 4.68e-06, + "penguins": 1.38e-07, + "prayed": 4.68e-06, + "prefers": 4.68e-06, + "proposes": 4.68e-06, + "proprietary": 4.68e-06, + "prostate": 4.68e-06, + "protagonist": 4.68e-06, + "punching": 4.68e-06, + "puppies": 4.68e-06, + "rafael": 4.68e-06, + "randall": 4.68e-06, + "rant": 4.68e-06, + "rash": 4.68e-06, + "realities": 4.68e-06, + "recalls": 4.68e-06, + "receivers": 1.35e-07, + "referenced": 4.68e-06, + "reflections": 4.68e-06, + "rejects": 4.68e-06, + "replica": 4.68e-06, + "representations": 4.68e-06, + "reside": 4.68e-06, + "richie": 4.68e-06, + "ripe": 4.68e-06, + "rituals": 4.68e-06, + "riverside": 4.68e-06, + "roberto": 4.68e-06, + "rodney": 4.68e-06, + "rp": 4.68e-06, + "sac": 4.68e-06, + "sacrificed": 4.68e-06, + "sane": 4.68e-06, + "savior": 4.68e-06, + "scenic": 4.68e-06, + "sip": 4.68e-06, + "slapped": 4.68e-06, + "snail": 4.68e-06, + "somalia": 4.68e-06, + "spotify": 4.68e-06, + "spun": 4.68e-06, + "statistically": 4.68e-06, + "stimulate": 4.68e-06, + "strangely": 4.68e-06, + "surveyed": 4.68e-06, + "susceptible": 4.68e-06, + "theodore": 4.68e-06, + "thighs": 4.68e-06, + "tipped": 4.68e-06, + "toby": 4.68e-06, + "toilets": 4.68e-06, + "torres": 4.68e-06, + "translates": 4.68e-06, + "translator": 4.68e-06, + "transmit": 4.68e-06, + "trophies": 4.68e-06, + "ts": 1.74e-06, + "tuning": 4.68e-06, + "tutor": 4.68e-06, + "unsafe": 4.68e-06, + "verge": 4.68e-06, + "vibrant": 4.68e-06, + "wander": 4.68e-06, + "wong": 4.68e-06, + "xp": 4.68e-06, + "yeast": 4.68e-06, + "abdul": 4.57e-06, + "absorption": 4.57e-06, + "accelerate": 4.57e-06, + "acne": 4.57e-06, + "advertise": 4.57e-06, + "alzheimers": 3.16e-07, + "apologise": 4.57e-06, + "aspirations": 4.57e-06, + "assassin": 4.57e-06, + "assign": 4.57e-06, + "aston": 4.57e-06, + "audi": 4.57e-06, + "backlash": 4.57e-06, + "balloons": 4.57e-06, + "bbq": 4.57e-06, + "believers": 7.08e-08, + "blockchain": 4.57e-06, + "bonnie": 4.57e-06, + "brewery": 4.57e-06, + "bulb": 4.57e-06, + "cardboard": 4.57e-06, + "casually": 4.57e-06, + "chartered": 4.57e-06, + "chew": 4.57e-06, + "circumstance": 4.57e-06, + "cliffs": 2.24e-07, + "collateral": 4.57e-06, + "congestion": 4.57e-06, + "conquered": 4.57e-06, + "courtney": 4.57e-06, + "creditors": 4.57e-06, + "criticised": 4.57e-06, + "criticisms": 4.57e-06, + "crossover": 4.57e-06, + "crunch": 4.57e-06, + "curtains": 4.57e-06, + "daytime": 4.57e-06, + "debbie": 4.57e-06, + "deliveries": 4.57e-06, + "demise": 4.57e-06, + "dependence": 4.57e-06, + "deutsche": 4.57e-06, + "dictator": 4.57e-06, + "diets": 4.57e-06, + "differs": 4.57e-06, + "digits": 4.57e-06, + "dime": 4.57e-06, + "dire": 4.57e-06, + "disagreement": 4.57e-06, + "disciples": 4.57e-06, + "disregard": 4.57e-06, + "distributor": 4.57e-06, + "dominion": 4.57e-06, + "downhill": 4.57e-06, + "drafting": 4.57e-06, + "dreadful": 4.57e-06, + "drunken": 4.57e-06, + "earnest": 4.57e-06, + "eng": 4.57e-06, + "erase": 4.57e-06, + "evacuated": 4.57e-06, + "exp": 4.57e-06, + "extinct": 4.57e-06, + "forbid": 4.57e-06, + "forgiven": 4.57e-06, + "freezer": 4.57e-06, + "genetically": 4.57e-06, + "greeted": 4.57e-06, + "hare": 4.57e-06, + "healed": 4.57e-06, + "herein": 4.57e-06, + "hoffman": 4.57e-06, + "honorary": 4.57e-06, + "immature": 4.57e-06, + "imperative": 4.57e-06, + "ineffective": 4.57e-06, + "interacting": 4.57e-06, + "jerome": 4.57e-06, + "jess": 4.57e-06, + "julius": 4.57e-06, + "knit": 4.57e-06, + "kumar": 4.57e-06, + "kuwait": 4.57e-06, + "laps": 4.57e-06, + "lester": 4.57e-06, + "manly": 4.57e-06, + "marvin": 4.57e-06, + "maternity": 4.57e-06, + "meanings": 4.57e-06, + "misconduct": 4.57e-06, + "morale": 4.57e-06, + "mornings": 1.17e-06, + "mute": 4.57e-06, + "needless": 4.57e-06, + "nerd": 4.57e-06, + "nokia": 4.57e-06, + "nominees": 7.59e-08, + "notifications": 4.57e-06, + "novelty": 4.57e-06, + "optimism": 4.57e-06, + "optimization": 4.57e-06, + "outdated": 4.57e-06, + "oxide": 4.57e-06, + "paints": 4.57e-06, + "peasants": 8.13e-08, + "pence": 4.57e-06, + "peppers": 2.63e-07, + "percy": 4.57e-06, + "perez": 4.57e-06, + "peripheral": 4.57e-06, + "pinned": 4.57e-06, + "pint": 4.57e-06, + "pleaded": 4.57e-06, + "poop": 4.57e-06, + "pornography": 4.57e-06, + "ppl": 4.57e-06, + "prepares": 4.57e-06, + "prevalence": 4.57e-06, + "proceeding": 4.57e-06, + "pronounce": 4.57e-06, + "proportions": 4.57e-06, + "provisional": 4.57e-06, + "punches": 4.57e-06, + "ravens": 3.89e-07, + "reddit": 4.57e-06, + "remark": 4.57e-06, + "repay": 4.57e-06, + "roland": 4.57e-06, + "ropes": 2.4e-08, + "rouge": 4.57e-06, + "rumours": 4.57e-06, + "russias": 1.07e-07, + "santiago": 4.57e-06, + "saturated": 4.57e-06, + "scares": 4.57e-06, + "screened": 4.57e-06, + "shaved": 4.57e-06, + "shooters": 3.98e-07, + "shove": 4.57e-06, + "skipped": 4.57e-06, + "smashing": 4.57e-06, + "sms": 5.5e-08, + "snaps": 3.89e-08, + "soaked": 4.57e-06, + "softball": 4.57e-06, + "southeastern": 4.57e-06, + "spears": 4.57e-06, + "specials": 4.57e-06, + "spectators": 8.32e-08, + "spur": 4.57e-06, + "stevie": 4.57e-06, + "storytelling": 4.57e-06, + "stumbled": 4.57e-06, + "stupidity": 4.57e-06, + "suppress": 4.57e-06, + "sweating": 4.57e-06, + "swings": 4.57e-06, + "tangible": 4.57e-06, + "tara": 4.57e-06, + "textbooks": 4.57e-06, + "theo": 4.57e-06, + "tilt": 4.57e-06, + "tonights": 1.05e-07, + "tougher": 4.57e-06, + "trivial": 4.57e-06, + "turks": 7.24e-08, + "unofficial": 4.57e-06, + "veil": 4.57e-06, + "versatile": 4.57e-06, + "warsaw": 4.57e-06, + "wr": 4.57e-06, + "yi": 4.57e-06, + "zoe": 4.57e-06, + "acknowledging": 4.47e-06, + "alec": 4.47e-06, + "anthropology": 4.47e-06, + "artery": 4.47e-06, + "bamboo": 4.47e-06, + "basil": 4.47e-06, + "blackberry": 4.47e-06, + "bolton": 4.47e-06, + "bombay": 4.47e-06, + "booze": 4.47e-06, + "brennan": 4.47e-06, + "bronx": 4.47e-06, + "buzzing": 4.47e-06, + "caliber": 4.47e-06, + "cbd": 4.47e-06, + "cellphone": 4.47e-06, + "chord": 4.47e-06, + "clare": 4.47e-06, + "concessions": 4.47e-06, + "contracting": 4.47e-06, + "cooks": 9.33e-07, + "corporal": 4.47e-06, + "courtyard": 4.47e-06, + "crafted": 4.47e-06, + "crest": 4.47e-06, + "crowned": 4.47e-06, + "cynthia": 4.47e-06, + "dang": 4.47e-06, + "deception": 4.47e-06, + "decor": 4.47e-06, + "defeating": 4.47e-06, + "derivative": 4.47e-06, + "discomfort": 4.47e-06, + "dominican": 4.47e-06, + "drastically": 4.47e-06, + "driveway": 4.47e-06, + "duel": 4.47e-06, + "edwin": 4.47e-06, + "elf": 4.47e-06, + "ev": 4.47e-06, + "evenly": 4.47e-06, + "exemption": 4.47e-06, + "fashionable": 4.47e-06, + "fetch": 4.47e-06, + "fishermen": 4.47e-06, + "flipped": 4.47e-06, + "fo": 4.47e-06, + "formidable": 4.47e-06, + "frankie": 4.47e-06, + "furnished": 4.47e-06, + "fuzzy": 4.47e-06, + "gibbs": 4.47e-06, + "gmt": 4.47e-06, + "gothic": 4.47e-06, + "graffiti": 4.47e-06, + "grenade": 4.47e-06, + "guitars": 8.51e-08, + "hague": 4.47e-06, + "hamlet": 4.47e-06, + "hampton": 4.47e-06, + "hc": 4.47e-06, + "helm": 4.47e-06, + "herbs": 4.47e-06, + "herman": 4.47e-06, + "higgins": 4.47e-06, + "highlands": 4.47e-06, + "honours": 4.47e-06, + "hooks": 1.38e-07, + "hrs": 1.32e-07, + "html": 4.47e-06, + "hugely": 4.47e-06, + "hypocrisy": 4.47e-06, + "imagining": 4.47e-06, + "inaccurate": 4.47e-06, + "inception": 4.47e-06, + "incompetent": 4.47e-06, + "indefinitely": 4.47e-06, + "intervene": 4.47e-06, + "japans": 9.77e-08, + "jerseys": 7.24e-07, + "jessie": 4.47e-06, + "jp": 4.47e-06, + "jules": 4.47e-06, + "katy": 4.47e-06, + "kin": 4.47e-06, + "kirby": 4.47e-06, + "kobe": 4.47e-06, + "kris": 4.47e-06, + "laurie": 4.47e-06, + "legislators": 4.47e-06, + "lobster": 4.47e-06, + "logged": 4.47e-06, + "loneliness": 4.47e-06, + "loops": 4.47e-06, + "mae": 4.47e-06, + "malaria": 4.47e-06, + "manifesto": 4.47e-06, + "manuscripts": 4.47e-06, + "masked": 4.47e-06, + "maze": 4.47e-06, + "methodist": 4.47e-06, + "monaco": 4.47e-06, + "monastery": 4.47e-06, + "morals": 4.47e-06, + "mutations": 4.47e-06, + "naomi": 4.47e-06, + "narrowly": 4.47e-06, + "negligence": 4.47e-06, + "nexus": 4.47e-06, + "nicer": 4.47e-06, + "nightclub": 4.47e-06, + "numerical": 4.47e-06, + "obsolete": 4.47e-06, + "offences": 4.47e-06, + "optic": 4.47e-06, + "panda": 4.47e-06, + "panther": 4.47e-06, + "pauls": 4.07e-07, + "peas": 4.47e-06, + "perkins": 4.47e-06, + "posture": 4.47e-06, + "prague": 4.47e-06, + "preseason": 4.47e-06, + "qaeda": 4.47e-06, + "raging": 4.47e-06, + "rc": 4.47e-06, + "receptors": 4.47e-06, + "refresh": 4.47e-06, + "resonance": 4.47e-06, + "ruthless": 4.47e-06, + "salvage": 4.47e-06, + "samurai": 4.47e-06, + "sasha": 4.47e-06, + "satire": 4.47e-06, + "saul": 4.47e-06, + "seafood": 4.47e-06, + "shakes": 4.47e-06, + "signaling": 4.47e-06, + "simplest": 4.47e-06, + "slash": 4.47e-06, + "spaghetti": 4.47e-06, + "speedy": 4.47e-06, + "spying": 4.47e-06, + "staging": 4.47e-06, + "standpoint": 4.47e-06, + "statues": 1.32e-07, + "stein": 4.47e-06, + "sway": 4.47e-06, + "tasting": 4.47e-06, + "tempting": 4.47e-06, + "terminate": 4.47e-06, + "torque": 4.47e-06, + "towels": 4.47e-06, + "trailers": 1.05e-07, + "transforming": 4.47e-06, + "trinidad": 4.47e-06, + "uks": 1.41e-07, + "unconstitutional": 4.47e-06, + "undermine": 4.47e-06, + "underwent": 4.47e-06, + "vacancy": 4.47e-06, + "var": 4.47e-06, + "veto": 4.47e-06, + "villains": 1.58e-07, + "vocational": 4.47e-06, + "wenger": 4.47e-06, + "wickets": 4.47e-06, + "withstand": 4.47e-06, + "woodland": 4.47e-06, + "zinc": 4.47e-06, + "accustomed": 4.37e-06, + "adequately": 4.37e-06, + "ahmad": 4.37e-06, + "alicia": 4.37e-06, + "amazingly": 4.37e-06, + "ambitions": 4.37e-06, + "applicant": 4.37e-06, + "approximate": 4.37e-06, + "assemble": 4.37e-06, + "averages": 4.37e-06, + "baghdad": 4.37e-06, + "ballots": 4.37e-06, + "bam": 4.37e-06, + "bargaining": 4.37e-06, + "barrett": 4.37e-06, + "bates": 4.37e-06, + "baton": 4.37e-06, + "beginnings": 4.37e-06, + "births": 4.37e-06, + "breakup": 4.37e-06, + "brew": 4.37e-06, + "bulldogs": 4.37e-06, + "camel": 4.37e-06, + "canberra": 4.37e-06, + "catering": 4.37e-06, + "charger": 4.37e-06, + "checkout": 4.37e-06, + "chefs": 8.91e-07, + "chronicles": 5.75e-08, + "chunk": 4.37e-06, + "classmates": 8.91e-08, + "coca": 4.37e-06, + "cocoa": 4.37e-06, + "comet": 4.37e-06, + "compartment": 4.37e-06, + "compositions": 4.37e-06, + "conditioned": 4.37e-06, + "contestants": 7.59e-08, + "cooled": 4.37e-06, + "corpus": 4.37e-06, + "coupons": 4.37e-06, + "cove": 4.37e-06, + "cozy": 4.37e-06, + "culturally": 4.37e-06, + "currents": 4.37e-06, + "deficiency": 4.37e-06, + "deported": 4.37e-06, + "deposited": 4.37e-06, + "derivatives": 4.37e-06, + "deserted": 4.37e-06, + "dictatorship": 4.37e-06, + "disrespectful": 4.37e-06, + "dread": 4.37e-06, + "dub": 4.37e-06, + "dummy": 4.37e-06, + "ecuador": 4.37e-06, + "edmonton": 4.37e-06, + "electorate": 4.37e-06, + "enhancing": 4.37e-06, + "entertained": 4.37e-06, + "erosion": 4.37e-06, + "explores": 4.37e-06, + "expo": 4.37e-06, + "favourites": 4.37e-06, + "fibers": 4.37e-06, + "fitzgerald": 4.37e-06, + "flank": 4.37e-06, + "flare": 4.37e-06, + "fleeing": 4.37e-06, + "flirting": 4.37e-06, + "forex": 4.37e-06, + "gallons": 4.37e-06, + "gamers": 1.78e-07, + "generators": 4.37e-06, + "geoffrey": 4.37e-06, + "goodnight": 4.37e-06, + "gus": 6.46e-08, + "handmade": 4.37e-06, + "hartford": 4.37e-06, + "hawkins": 4.37e-06, + "hazards": 1.29e-07, + "hostages": 4.37e-06, + "icc": 4.37e-06, + "incidence": 4.37e-06, + "intimacy": 4.37e-06, + "italians": 6.17e-08, + "jul": 4.37e-06, + "kat": 4.37e-06, + "kerr": 4.37e-06, + "kitten": 4.37e-06, + "knicks": 4.37e-06, + "koch": 4.37e-06, + "lagos": 4.37e-06, + "lan": 4.37e-06, + "lender": 4.37e-06, + "leone": 4.37e-06, + "lever": 4.37e-06, + "lisbon": 4.37e-06, + "lu": 4.37e-06, + "marketed": 4.37e-06, + "marty": 4.37e-06, + "mileage": 4.37e-06, + "morton": 4.37e-06, + "multiplayer": 4.37e-06, + "municipalities": 4.37e-06, + "mutant": 4.37e-06, + "mutation": 4.37e-06, + "mythology": 4.37e-06, + "neal": 4.37e-06, + "neon": 4.37e-06, + "nile": 4.37e-06, + "nolan": 4.37e-06, + "northeastern": 4.37e-06, + "noticing": 4.37e-06, + "nun": 4.37e-06, + "nutritional": 4.37e-06, + "ow": 4.37e-06, + "pathways": 4.37e-06, + "pedal": 4.37e-06, + "pest": 4.37e-06, + "pillar": 4.37e-06, + "pitches": 4.37e-06, + "plausible": 4.37e-06, + "pledged": 4.37e-06, + "poly": 4.37e-06, + "polymer": 4.37e-06, + "precipitation": 4.37e-06, + "prosecutors": 8.91e-07, + "protections": 4.37e-06, + "pup": 4.37e-06, + "quarantine": 4.37e-06, + "query": 4.37e-06, + "raf": 4.37e-06, + "rallies": 4.37e-06, + "rapids": 4.37e-06, + "reacted": 4.37e-06, + "restraint": 4.37e-06, + "rests": 4.37e-06, + "retains": 4.37e-06, + "revived": 4.37e-06, + "rift": 4.37e-06, + "romney": 4.37e-06, + "russ": 4.37e-06, + "salesman": 4.37e-06, + "scarlet": 4.37e-06, + "screws": 4.37e-06, + "sensing": 4.37e-06, + "serena": 4.37e-06, + "sewer": 4.37e-06, + "shipments": 4.37e-06, + "shits": 1.05e-06, + "smack": 4.37e-06, + "sonny": 4.37e-06, + "southwestern": 4.37e-06, + "spared": 4.37e-06, + "spokesperson": 4.37e-06, + "stalking": 4.37e-06, + "standardized": 4.37e-06, + "stitch": 4.37e-06, + "substrate": 4.37e-06, + "sultan": 4.37e-06, + "supremacy": 4.37e-06, + "swallowed": 4.37e-06, + "swell": 4.37e-06, + "symptom": 4.37e-06, + "thanked": 4.37e-06, + "theoretically": 4.37e-06, + "thirst": 4.37e-06, + "transitional": 4.37e-06, + "tuna": 4.37e-06, + "unused": 4.37e-06, + "valleys": 6.46e-07, + "viewpoint": 4.37e-06, + "vinegar": 4.37e-06, + "wards": 6.31e-07, + "warrants": 4.37e-06, + "wig": 4.37e-06, + "accessory": 4.27e-06, + "advisors": 6.76e-08, + "advocating": 4.27e-06, + "affiliation": 4.27e-06, + "aggressively": 4.27e-06, + "align": 4.27e-06, + "allergies": 4.27e-06, + "amnesty": 4.27e-06, + "angus": 4.27e-06, + "anita": 4.27e-06, + "apologized": 4.27e-06, + "assad": 4.27e-06, + "assertion": 4.27e-06, + "astronomy": 4.27e-06, + "atop": 4.27e-06, + "attic": 4.27e-06, + "attracts": 4.27e-06, + "australians": 1.07e-07, + "autobiography": 4.27e-06, + "av": 4.27e-06, + "await": 4.27e-06, + "bastards": 7.94e-08, + "becky": 4.27e-06, + "bing": 4.27e-06, + "bothering": 4.27e-06, + "broadcaster": 4.27e-06, + "buddhism": 4.27e-06, + "buds": 1.15e-07, + "cache": 4.27e-06, + "carmen": 4.27e-06, + "carrots": 4.27e-06, + "cds": 5.62e-07, + "chewing": 4.27e-06, + "clintons": 1.35e-06, + "coherent": 4.27e-06, + "comfy": 4.27e-06, + "comrades": 4.27e-06, + "conceded": 4.27e-06, + "condo": 4.27e-06, + "conflicting": 4.27e-06, + "conrad": 4.27e-06, + "consulted": 4.27e-06, + "criticize": 4.27e-06, + "crooked": 4.27e-06, + "cultivation": 4.27e-06, + "decreases": 4.27e-06, + "dicks": 8.32e-07, + "ding": 4.27e-06, + "discontinued": 4.27e-06, + "displacement": 4.27e-06, + "disrespect": 4.27e-06, + "distorted": 4.27e-06, + "divers": 1.35e-07, + "dividing": 4.27e-06, + "dow": 4.27e-06, + "downloads": 4.27e-06, + "drastic": 4.27e-06, + "edible": 4.27e-06, + "edmund": 4.27e-06, + "ella": 4.27e-06, + "emerson": 4.27e-06, + "endorse": 4.27e-06, + "enhancement": 4.27e-06, + "evenings": 7.08e-07, + "fax": 4.27e-06, + "fiat": 4.27e-06, + "fiona": 4.27e-06, + "firefighters": 9.33e-08, + "flick": 4.27e-06, + "fowler": 4.27e-06, + "funky": 4.27e-06, + "gag": 4.27e-06, + "gee": 4.27e-06, + "gigantic": 4.27e-06, + "gill": 4.27e-06, + "groom": 4.27e-06, + "guarded": 4.27e-06, + "guitarist": 4.27e-06, + "halftime": 4.27e-06, + "hamas": 4.27e-06, + "harriet": 4.27e-06, + "hash": 4.27e-06, + "helena": 4.27e-06, + "hogan": 4.27e-06, + "holden": 4.27e-06, + "hydro": 4.27e-06, + "ig": 4.27e-06, + "illustrates": 4.27e-06, + "inactive": 4.27e-06, + "inputs": 4.27e-06, + "inspect": 4.27e-06, + "inspections": 4.27e-06, + "inspectors": 1.38e-07, + "instincts": 4.27e-06, + "interpretations": 4.27e-06, + "je": 4.27e-06, + "jj": 4.27e-06, + "knots": 4.27e-06, + "lana": 4.27e-06, + "laurel": 4.27e-06, + "lawsuits": 4.27e-06, + "leftist": 4.27e-06, + "legitimacy": 4.27e-06, + "linkedin": 4.27e-06, + "lizard": 4.27e-06, + "lyric": 4.27e-06, + "maximize": 4.27e-06, + "morally": 4.27e-06, + "mushroom": 4.27e-06, + "naples": 4.27e-06, + "nigga": 4.27e-06, + "noel": 4.27e-06, + "occupying": 4.27e-06, + "organizers": 4.27e-06, + "owens": 5.62e-07, + "paradox": 4.27e-06, + "peacefully": 4.27e-06, + "periodic": 4.27e-06, + "philly": 4.27e-06, + "plead": 4.27e-06, + "podium": 4.27e-06, + "portray": 4.27e-06, + "practitioner": 4.27e-06, + "pradesh": 4.27e-06, + "progressed": 4.27e-06, + "puck": 4.27e-06, + "ratios": 4.27e-06, + "reconsider": 4.27e-06, + "redskins": 4.27e-06, + "reductions": 4.27e-06, + "refrain": 4.27e-06, + "replaces": 4.27e-06, + "reproduce": 4.27e-06, + "researching": 4.27e-06, + "rigged": 4.27e-06, + "rite": 4.27e-06, + "rum": 4.27e-06, + "safari": 4.27e-06, + "saunders": 4.27e-06, + "scaling": 4.27e-06, + "scorer": 4.27e-06, + "seldom": 4.27e-06, + "shareholder": 4.27e-06, + "simone": 4.27e-06, + "sis": 8.71e-08, + "slams": 4.27e-06, + "slices": 4.27e-06, + "soy": 4.27e-06, + "spilled": 4.27e-06, + "squash": 4.27e-06, + "stacked": 4.27e-06, + "statewide": 4.27e-06, + "stationary": 4.27e-06, + "styled": 4.27e-06, + "subdivision": 4.27e-06, + "succeeding": 4.27e-06, + "sunderland": 4.27e-06, + "surrendered": 4.27e-06, + "tar": 4.27e-06, + "tariffs": 4.27e-06, + "temporal": 4.27e-06, + "tracker": 4.27e-06, + "turbine": 4.27e-06, + "tyson": 4.27e-06, + "unavailable": 4.27e-06, + "universally": 4.27e-06, + "unlucky": 4.27e-06, + "utilizing": 4.27e-06, + "uv": 4.27e-06, + "volunteered": 4.27e-06, + "vomiting": 4.27e-06, + "warden": 4.27e-06, + "warp": 4.27e-06, + "whisky": 4.27e-06, + "whod": 4.27e-06, + "winters": 1.17e-06, + "womb": 4.27e-06, + "yogurt": 4.27e-06, + "abe": 4.17e-06, + "abolished": 4.17e-06, + "abusing": 4.17e-06, + "algeria": 4.17e-06, + "alpine": 4.17e-06, + "ambient": 4.17e-06, + "aquatic": 4.17e-06, + "argentine": 4.17e-06, + "armored": 4.17e-06, + "assert": 4.17e-06, + "atheist": 4.17e-06, + "balances": 4.17e-06, + "bandwidth": 4.17e-06, + "barbecue": 4.17e-06, + "beforehand": 4.17e-06, + "bipolar": 4.17e-06, + "bladder": 4.17e-06, + "blossom": 4.17e-06, + "bodys": 7.76e-08, + "bolts": 2.75e-07, + "bombed": 4.17e-06, + "campaigning": 4.17e-06, + "canned": 4.17e-06, + "captains": 1.62e-06, + "caravan": 4.17e-06, + "carrot": 4.17e-06, + "chanting": 4.17e-06, + "chevrolet": 4.17e-06, + "clive": 4.17e-06, + "compressed": 4.17e-06, + "comprise": 4.17e-06, + "computational": 4.17e-06, + "conceptual": 4.17e-06, + "coolest": 4.17e-06, + "currencies": 4.17e-06, + "damp": 4.17e-06, + "danielle": 4.17e-06, + "databases": 4.17e-06, + "debit": 4.17e-06, + "demolition": 4.17e-06, + "denis": 4.17e-06, + "detailing": 4.17e-06, + "differentiate": 4.17e-06, + "dim": 4.17e-06, + "discouraged": 4.17e-06, + "discovers": 4.17e-06, + "donkey": 4.17e-06, + "doo": 4.17e-06, + "downstream": 4.17e-06, + "earrings": 4.17e-06, + "earthquakes": 4.17e-06, + "ebola": 4.17e-06, + "eg": 4.17e-06, + "elites": 1.05e-07, + "ellie": 4.17e-06, + "empirical": 4.17e-06, + "enlarged": 4.17e-06, + "enzymes": 4.17e-06, + "esther": 4.17e-06, + "everybodys": 5.62e-08, + "fantasies": 4.17e-06, + "faulty": 4.17e-06, + "fertile": 4.17e-06, + "feud": 4.17e-06, + "filmmaker": 4.17e-06, + "formations": 4.17e-06, + "fortunes": 1.91e-07, + "frankfurt": 4.17e-06, + "freedoms": 1.82e-07, + "furnace": 4.17e-06, + "fuse": 4.17e-06, + "fuss": 4.17e-06, + "gale": 4.17e-06, + "gamer": 4.17e-06, + "generosity": 4.17e-06, + "gerry": 4.17e-06, + "gluten": 4.17e-06, + "goodman": 4.17e-06, + "gorilla": 4.17e-06, + "guatemala": 4.17e-06, + "hamburg": 4.17e-06, + "harvested": 4.17e-06, + "hath": 4.17e-06, + "heavyweight": 4.17e-06, + "humane": 4.17e-06, + "humanities": 4.17e-06, + "inflicted": 4.17e-06, + "interviewing": 4.17e-06, + "jedi": 4.17e-06, + "jennings": 4.17e-06, + "journeys": 2.57e-07, + "labelled": 4.17e-06, + "lawful": 4.17e-06, + "lawmakers": 5.13e-08, + "leased": 4.17e-06, + "lena": 4.17e-06, + "loosely": 4.17e-06, + "lotus": 4.17e-06, + "luna": 4.17e-06, + "mails": 2.4e-07, + "malik": 4.17e-06, + "mantle": 4.17e-06, + "mascot": 4.17e-06, + "metabolic": 4.17e-06, + "meth": 4.17e-06, + "mf": 4.17e-06, + "midfield": 4.17e-06, + "militant": 4.17e-06, + "missionaries": 4.17e-06, + "mohammad": 4.17e-06, + "nicolas": 6.92e-08, + "nostalgia": 4.17e-06, + "ottoman": 4.17e-06, + "paddy": 4.17e-06, + "paperback": 4.17e-06, + "paved": 4.17e-06, + "pavilion": 4.17e-06, + "peasant": 4.17e-06, + "perks": 4.17e-06, + "philosophers": 4.07e-07, + "pillars": 4.17e-06, + "pointer": 4.17e-06, + "policing": 4.17e-06, + "predicting": 4.17e-06, + "presume": 4.17e-06, + "presumed": 4.17e-06, + "printers": 1.74e-07, + "rapist": 4.17e-06, + "reacting": 4.17e-06, + "rebuilt": 4.17e-06, + "rec": 4.17e-06, + "rectangular": 4.17e-06, + "regulator": 4.17e-06, + "renting": 4.17e-06, + "restructuring": 4.17e-06, + "ridden": 4.17e-06, + "ro": 4.17e-06, + "rudy": 4.17e-06, + "sabotage": 4.17e-06, + "sanctioned": 4.17e-06, + "sarcasm": 4.17e-06, + "savannah": 4.17e-06, + "scans": 4.17e-06, + "seekers": 7.94e-08, + "sentencing": 4.17e-06, + "sexist": 4.17e-06, + "shaving": 4.17e-06, + "shutdown": 4.17e-06, + "sic": 4.17e-06, + "slammed": 4.17e-06, + "snp": 4.17e-06, + "stresses": 4.17e-06, + "suffolk": 4.17e-06, + "surpassed": 4.17e-06, + "swansea": 4.17e-06, + "sweets": 6.46e-08, + "syracuse": 4.17e-06, + "tally": 4.17e-06, + "tehran": 4.17e-06, + "termed": 4.17e-06, + "tha": 4.17e-06, + "thriving": 4.17e-06, + "timed": 4.17e-06, + "tm": 4.17e-06, + "trending": 4.17e-06, + "trolls": 5.89e-08, + "tucked": 4.17e-06, + "tumors": 5.62e-08, + "ui": 4.17e-06, + "unanimously": 4.17e-06, + "undefeated": 4.17e-06, + "unfamiliar": 4.17e-06, + "upgrading": 4.17e-06, + "vale": 4.17e-06, + "valencia": 4.17e-06, + "vastly": 4.17e-06, + "vile": 4.17e-06, + "violently": 4.17e-06, + "wedge": 4.17e-06, + "wisely": 4.17e-06, + "wizards": 4.47e-07, + "wrecked": 4.17e-06, + "yesterdays": 3.63e-07, + "yuri": 4.17e-06, + "adaptive": 4.07e-06, + "addictive": 4.07e-06, + "affinity": 4.07e-06, + "alloy": 4.07e-06, + "apartheid": 4.07e-06, + "arises": 4.07e-06, + "arthritis": 4.07e-06, + "authorised": 4.07e-06, + "ay": 4.07e-06, + "bale": 4.07e-06, + "barton": 4.07e-06, + "beaver": 4.07e-06, + "boasts": 4.07e-06, + "brunswick": 4.07e-06, + "buenos": 4.07e-06, + "caller": 4.07e-06, + "carnegie": 4.07e-06, + "casualty": 4.07e-06, + "cavity": 4.07e-06, + "chap": 4.07e-06, + "cites": 4.07e-06, + "colts": 1.74e-07, + "comforting": 4.07e-06, + "conway": 4.07e-06, + "courthouse": 4.07e-06, + "crank": 4.07e-06, + "cv": 4.07e-06, + "dante": 4.07e-06, + "darn": 4.07e-06, + "deborah": 4.07e-06, + "decks": 9.12e-08, + "diaries": 4.07e-06, + "differing": 4.07e-06, + "disgust": 4.07e-06, + "dispatched": 4.07e-06, + "dissolution": 4.07e-06, + "disturbance": 4.07e-06, + "dominic": 4.07e-06, + "doubling": 4.07e-06, + "ee": 4.07e-06, + "emerges": 4.07e-06, + "enclosure": 4.07e-06, + "evangelical": 4.07e-06, + "examinations": 4.07e-06, + "exceeding": 4.07e-06, + "expresses": 4.07e-06, + "exquisite": 4.07e-06, + "factual": 4.07e-06, + "fading": 4.07e-06, + "falsely": 4.07e-06, + "famine": 4.07e-06, + "fares": 4.07e-06, + "feminists": 4.07e-06, + "fiji": 4.07e-06, + "flavors": 4.07e-06, + "fraudulent": 4.07e-06, + "freeway": 4.07e-06, + "freshly": 4.07e-06, + "gazette": 4.07e-06, + "geek": 4.07e-06, + "geo": 4.07e-06, + "granny": 4.07e-06, + "handicap": 4.07e-06, + "hansen": 4.07e-06, + "hmmm": 4.07e-06, + "homage": 4.07e-06, + "homo": 4.07e-06, + "hostility": 4.07e-06, + "hymn": 4.07e-06, + "hypothetical": 4.07e-06, + "informative": 4.07e-06, + "infringement": 4.07e-06, + "internship": 4.07e-06, + "interrupt": 4.07e-06, + "invade": 4.07e-06, + "irritating": 4.07e-06, + "jacksonville": 4.07e-06, + "jasmine": 4.07e-06, + "katrina": 4.07e-06, + "knockout": 4.07e-06, + "lantern": 4.07e-06, + "linen": 4.07e-06, + "lookout": 4.07e-06, + "misunderstood": 4.07e-06, + "moonlight": 4.07e-06, + "moose": 4.07e-06, + "mosquito": 4.07e-06, + "motel": 4.07e-06, + "motherfucker": 4.07e-06, + "mueller": 4.07e-06, + "narratives": 4.07e-06, + "nobodys": 6.46e-08, + "noun": 4.07e-06, + "novelist": 4.07e-06, + "nsfw": 4.07e-06, + "oaks": 6.31e-08, + "omaha": 4.07e-06, + "onwards": 4.07e-06, + "overthrow": 4.07e-06, + "paradigm": 4.07e-06, + "pavement": 4.07e-06, + "payday": 4.07e-06, + "perpetual": 4.07e-06, + "pga": 4.07e-06, + "physiology": 4.07e-06, + "pigeon": 4.07e-06, + "plateau": 4.07e-06, + "playlist": 4.07e-06, + "plc": 4.07e-06, + "possesses": 4.07e-06, + "possessing": 4.07e-06, + "precinct": 4.07e-06, + "premiership": 4.07e-06, + "presentations": 4.07e-06, + "proliferation": 4.07e-06, + "prosecuted": 4.07e-06, + "pseudo": 4.07e-06, + "pudding": 4.07e-06, + "reformed": 4.07e-06, + "refrigerator": 4.07e-06, + "regeneration": 4.07e-06, + "regina": 4.07e-06, + "remembrance": 4.07e-06, + "reminiscent": 4.07e-06, + "reps": 7.76e-08, + "resentment": 4.07e-06, + "resin": 4.07e-06, + "resisted": 4.07e-06, + "rosie": 4.07e-06, + "rotary": 4.07e-06, + "rupert": 4.07e-06, + "rusty": 4.07e-06, + "scarce": 4.07e-06, + "sibling": 4.07e-06, + "simulator": 4.07e-06, + "sl": 4.07e-06, + "slippery": 4.07e-06, + "slips": 4.07e-06, + "snyder": 4.07e-06, + "soak": 4.07e-06, + "sock": 4.07e-06, + "sorting": 4.07e-06, + "spectacle": 4.07e-06, + "stint": 4.07e-06, + "storey": 4.07e-06, + "suicidal": 4.07e-06, + "suv": 4.07e-06, + "symposium": 4.07e-06, + "tabs": 4.07e-06, + "tailor": 4.07e-06, + "terminals": 6.76e-08, + "thrilling": 4.07e-06, + "tottenham": 4.07e-06, + "toughest": 4.07e-06, + "trajectory": 4.07e-06, + "triggers": 5.01e-08, + "tt": 4.07e-06, + "underrated": 4.07e-06, + "unidentified": 4.07e-06, + "unrest": 4.07e-06, + "unseen": 4.07e-06, + "utmost": 4.07e-06, + "waiter": 4.07e-06, + "weary": 4.07e-06, + "wiki": 4.07e-06, + "wills": 6.92e-07, + "willy": 4.07e-06, + "wimbledon": 4.07e-06, + "witches": 4.07e-06, + "wwii": 4.07e-06, + "youths": 2.34e-07, + "accusation": 3.98e-06, + "adapter": 3.98e-06, + "adjustable": 3.98e-06, + "adulthood": 3.98e-06, + "advisers": 7.41e-08, + "advocated": 3.98e-06, + "affiliates": 3.98e-06, + "agony": 3.98e-06, + "allergy": 3.98e-06, + "armenian": 3.98e-06, + "astronaut": 3.98e-06, + "attain": 3.98e-06, + "attendant": 3.98e-06, + "authenticity": 3.98e-06, + "avery": 3.98e-06, + "backstage": 3.98e-06, + "banners": 8.51e-08, + "bedford": 3.98e-06, + "benchmark": 3.98e-06, + "benghazi": 3.98e-06, + "benny": 3.98e-06, + "benson": 3.98e-06, + "beverages": 3.98e-06, + "binge": 3.98e-06, + "biscuits": 3.98e-06, + "bloc": 3.98e-06, + "bouncing": 3.98e-06, + "bourbon": 3.98e-06, + "breaker": 3.98e-06, + "breathtaking": 3.98e-06, + "browsing": 3.98e-06, + "brutality": 3.98e-06, + "bumps": 3.98e-06, + "calculus": 3.98e-06, + "cancers": 2.14e-07, + "capitals": 4.68e-07, + "careless": 3.98e-06, + "caste": 3.98e-06, + "cellar": 3.98e-06, + "cerebral": 3.98e-06, + "champs": 6.46e-08, + "chant": 3.98e-06, + "cheerful": 3.98e-06, + "cinematic": 3.98e-06, + "climax": 3.98e-06, + "clippers": 3.98e-06, + "cockpit": 3.98e-06, + "cocktails": 3.98e-06, + "colon": 3.98e-06, + "communion": 3.98e-06, + "condom": 3.98e-06, + "consul": 3.98e-06, + "contender": 3.98e-06, + "crimson": 3.98e-06, + "crypto": 3.98e-06, + "cultivated": 3.98e-06, + "curly": 3.98e-06, + "debated": 3.98e-06, + "degradation": 3.98e-06, + "dexter": 3.98e-06, + "disappearing": 3.98e-06, + "discs": 3.98e-06, + "distributors": 3.98e-06, + "duh": 3.98e-06, + "dundee": 3.98e-06, + "elaine": 3.98e-06, + "electrons": 3.98e-06, + "emerald": 3.98e-06, + "ensures": 3.98e-06, + "equilibrium": 3.98e-06, + "europa": 3.98e-06, + "evelyn": 3.98e-06, + "evidently": 3.98e-06, + "exhausting": 3.98e-06, + "extras": 3.98e-06, + "famed": 3.98e-06, + "fargo": 3.98e-06, + "fascinated": 3.98e-06, + "fences": 3.98e-06, + "fetus": 3.98e-06, + "flaw": 3.98e-06, + "flawless": 3.98e-06, + "fooled": 3.98e-06, + "forrest": 3.98e-06, + "gigs": 3.98e-06, + "grad": 3.98e-06, + "granddaughter": 3.98e-06, + "gymnastics": 3.98e-06, + "hale": 3.98e-06, + "helmets": 6.03e-08, + "hercules": 3.98e-06, + "hereby": 3.98e-06, + "honduras": 3.98e-06, + "hotter": 3.98e-06, + "humorous": 3.98e-06, + "ignores": 3.98e-06, + "incurred": 3.98e-06, + "indications": 3.98e-06, + "indoors": 3.98e-06, + "intercourse": 3.98e-06, + "interestingly": 3.98e-06, + "isaiah": 3.98e-06, + "isolate": 3.98e-06, + "israels": 1.23e-07, + "jurisdictions": 3.98e-06, + "kathleen": 3.98e-06, + "kendall": 3.98e-06, + "knocks": 3.98e-06, + "lancashire": 3.98e-06, + "lawson": 3.98e-06, + "lesbians": 3.98e-06, + "lindsey": 3.98e-06, + "listens": 3.98e-06, + "londons": 8.13e-08, + "mailing": 3.98e-06, + "manipulated": 3.98e-06, + "mao": 3.98e-06, + "mare": 3.98e-06, + "marxist": 3.98e-06, + "meadow": 3.98e-06, + "meadows": 3.98e-06, + "ministries": 3.98e-06, + "motivate": 3.98e-06, + "mound": 3.98e-06, + "muddy": 3.98e-06, + "mystic": 3.98e-06, + "ness": 3.98e-06, + "nominal": 3.98e-06, + "norris": 3.98e-06, + "oconnor": 3.98e-06, + "ohh": 3.98e-06, + "ordinance": 3.98e-06, + "osborne": 3.98e-06, + "oscars": 4.68e-07, + "outlines": 3.98e-06, + "pairing": 3.98e-06, + "pam": 3.98e-06, + "parsons": 9.77e-08, + "pertaining": 3.98e-06, + "poke": 3.98e-06, + "poorer": 3.98e-06, + "portsmouth": 3.98e-06, + "praising": 3.98e-06, + "pres": 3.98e-06, + "presbyterian": 3.98e-06, + "prick": 3.98e-06, + "prolific": 3.98e-06, + "proportional": 3.98e-06, + "prosperous": 3.98e-06, + "quarry": 3.98e-06, + "referral": 3.98e-06, + "repost": 3.98e-06, + "respecting": 3.98e-06, + "restless": 3.98e-06, + "rugged": 3.98e-06, + "sammy": 3.98e-06, + "sap": 3.98e-06, + "sarcastic": 3.98e-06, + "scholarly": 3.98e-06, + "segregation": 3.98e-06, + "seymour": 3.98e-06, + "shaken": 3.98e-06, + "sheikh": 3.98e-06, + "sheriffs": 1.38e-06, + "shines": 3.98e-06, + "sinclair": 3.98e-06, + "sinister": 3.98e-06, + "stared": 3.98e-06, + "strait": 3.98e-06, + "suppressed": 3.98e-06, + "sylvia": 3.98e-06, + "teamed": 3.98e-06, + "tents": 3.98e-06, + "testosterone": 3.98e-06, + "thicker": 3.98e-06, + "tis": 1.02e-07, + "ventilation": 3.98e-06, + "viking": 3.98e-06, + "weaver": 3.98e-06, + "weber": 3.98e-06, + "wes": 4.37e-08, + "williamson": 3.98e-06, + "yankee": 3.98e-06, + "yarn": 3.98e-06, + "abide": 3.89e-06, + "accumulation": 3.89e-06, + "admiration": 3.89e-06, + "aesthetics": 3.89e-06, + "aj": 3.89e-06, + "altering": 3.89e-06, + "anton": 3.89e-06, + "archie": 3.89e-06, + "asserted": 3.89e-06, + "attacker": 3.89e-06, + "augusta": 3.89e-06, + "authoritarian": 3.89e-06, + "avail": 3.89e-06, + "bahrain": 3.89e-06, + "banquet": 3.89e-06, + "barker": 3.89e-06, + "behaved": 3.89e-06, + "bentley": 3.89e-06, + "benz": 3.89e-06, + "billed": 3.89e-06, + "billing": 3.89e-06, + "booty": 3.89e-06, + "brackets": 3.89e-06, + "bravery": 3.89e-06, + "brit": 3.89e-06, + "browse": 3.89e-06, + "brutally": 3.89e-06, + "buff": 3.89e-06, + "calorie": 3.89e-06, + "cdc": 3.89e-06, + "chamberlain": 3.89e-06, + "cis": 3.89e-06, + "claw": 3.89e-06, + "collects": 3.89e-06, + "coloring": 3.89e-06, + "commence": 3.89e-06, + "compatibility": 3.89e-06, + "conditional": 3.89e-06, + "congratulate": 3.89e-06, + "constructing": 3.89e-06, + "converts": 3.89e-06, + "coordinating": 3.89e-06, + "cortex": 3.89e-06, + "courageous": 3.89e-06, + "crawling": 3.89e-06, + "crusade": 3.89e-06, + "cynical": 3.89e-06, + "damascus": 3.89e-06, + "devised": 3.89e-06, + "discarded": 3.89e-06, + "disrupt": 3.89e-06, + "donating": 3.89e-06, + "donovan": 3.89e-06, + "drills": 3.89e-06, + "duplicate": 3.89e-06, + "dynamite": 3.89e-06, + "echoes": 3.89e-06, + "economical": 3.89e-06, + "elastic": 3.89e-06, + "empowered": 3.89e-06, + "examines": 3.89e-06, + "exceeds": 3.89e-06, + "exposition": 3.89e-06, + "fart": 3.89e-06, + "fearing": 3.89e-06, + "fetish": 3.89e-06, + "fixes": 3.89e-06, + "fla": 3.89e-06, + "fluffy": 3.89e-06, + "fundamentals": 3.89e-06, + "fundraiser": 3.89e-06, + "funniest": 3.89e-06, + "fx": 3.89e-06, + "gadgets": 3.89e-06, + "gaga": 3.89e-06, + "garment": 3.89e-06, + "geometric": 3.89e-06, + "gestures": 3.89e-06, + "goldman": 3.89e-06, + "googles": 3.39e-07, + "gracious": 3.89e-06, + "grin": 3.89e-06, + "gta": 3.89e-06, + "halifax": 3.89e-06, + "hanna": 3.89e-06, + "happiest": 3.89e-06, + "heap": 3.89e-06, + "highs": 2.45e-07, + "hum": 3.89e-06, + "humility": 3.89e-06, + "impeachment": 3.89e-06, + "inherently": 3.89e-06, + "insults": 3.89e-06, + "inventor": 3.89e-06, + "isa": 3.89e-06, + "jailed": 3.89e-06, + "jasper": 3.89e-06, + "jewels": 3.89e-06, + "juliet": 3.89e-06, + "karachi": 3.89e-06, + "kickstarter": 3.89e-06, + "kurdish": 3.89e-06, + "leopard": 3.89e-06, + "librarian": 3.89e-06, + "lobbying": 3.89e-06, + "lumber": 3.89e-06, + "lydia": 3.89e-06, + "mackenzie": 3.89e-06, + "madam": 3.89e-06, + "marital": 3.89e-06, + "mayer": 3.89e-06, + "meds": 3.89e-06, + "mis": 7.41e-08, + "mma": 3.89e-06, + "multitude": 3.89e-06, + "muse": 3.89e-06, + "nanny": 3.89e-06, + "nineteen": 3.89e-06, + "nipples": 3.89e-06, + "nucleus": 3.89e-06, + "oc": 3.89e-06, + "orbital": 3.89e-06, + "organism": 3.89e-06, + "outgoing": 3.89e-06, + "overhaul": 3.89e-06, + "pancakes": 3.89e-06, + "pas": 2.29e-07, + "patriotism": 3.89e-06, + "periodically": 3.89e-06, + "piles": 1.45e-08, + "plumbing": 3.89e-06, + "poppy": 3.89e-06, + "pratt": 3.89e-06, + "precautions": 3.89e-06, + "predecessors": 1.91e-07, + "protested": 3.89e-06, + "raced": 3.89e-06, + "raleigh": 3.89e-06, + "readiness": 3.89e-06, + "redundant": 3.89e-06, + "regulators": 6.76e-08, + "rejecting": 3.89e-06, + "remarked": 3.89e-06, + "resemblance": 3.89e-06, + "rested": 3.89e-06, + "rib": 3.89e-06, + "rods": 1.62e-07, + "roth": 3.89e-06, + "sacks": 3.89e-06, + "seizures": 3.89e-06, + "sermon": 3.89e-06, + "slender": 3.89e-06, + "sloppy": 3.89e-06, + "smiths": 1.62e-06, + "snapchat": 3.89e-06, + "socialists": 3.89e-06, + "societal": 3.89e-06, + "soviets": 3.89e-06, + "spec": 3.89e-06, + "sponge": 3.89e-06, + "steele": 3.89e-06, + "sucker": 3.89e-06, + "suns": 2.69e-06, + "superiority": 3.89e-06, + "supervised": 3.89e-06, + "surreal": 3.89e-06, + "tease": 3.89e-06, + "tendencies": 3.89e-06, + "tiffany": 3.89e-06, + "titanic": 3.89e-06, + "tomorrows": 3.31e-07, + "transitions": 3.89e-06, + "transmitter": 3.89e-06, + "transporting": 3.89e-06, + "typhoon": 3.89e-06, + "unreal": 3.89e-06, + "upheld": 3.89e-06, + "vaccination": 3.89e-06, + "valerie": 3.89e-06, + "valves": 1.55e-07, + "vampires": 1.48e-07, + "vibration": 3.89e-06, + "vitamins": 3.89e-06, + "wartime": 3.89e-06, + "weakest": 3.89e-06, + "wicket": 3.89e-06, + "winnipeg": 3.89e-06, + "worcester": 3.89e-06, + "zurich": 3.89e-06, + "abdominal": 3.8e-06, + "adolescent": 3.8e-06, + "advertisers": 1e-07, + "airing": 3.8e-06, + "announcer": 3.8e-06, + "awaited": 3.8e-06, + "baba": 3.8e-06, + "backdrop": 3.8e-06, + "bae": 3.8e-06, + "beau": 3.8e-06, + "begged": 3.8e-06, + "blackout": 3.8e-06, + "bluff": 3.8e-06, + "bollywood": 3.8e-06, + "brushes": 3.8e-06, + "bushes": 3.8e-06, + "cartel": 3.8e-06, + "casts": 1e-07, + "catastrophic": 3.8e-06, + "caucus": 3.8e-06, + "charcoal": 3.8e-06, + "cheesy": 3.8e-06, + "cheryl": 3.8e-06, + "choking": 3.8e-06, + "cindy": 3.8e-06, + "citrus": 3.8e-06, + "clad": 3.8e-06, + "clocks": 1.12e-07, + "coached": 3.8e-06, + "coded": 3.8e-06, + "columnist": 3.8e-06, + "competence": 3.8e-06, + "condolences": 3.8e-06, + "constituent": 3.8e-06, + "constituted": 3.8e-06, + "contacting": 3.8e-06, + "contagious": 3.8e-06, + "contexts": 3.8e-06, + "conveniently": 3.8e-06, + "courtroom": 3.8e-06, + "cushion": 3.8e-06, + "cyclist": 3.8e-06, + "darkest": 3.8e-06, + "diaz": 3.8e-06, + "dictate": 3.8e-06, + "directs": 3.8e-06, + "discounted": 3.8e-06, + "distributing": 3.8e-06, + "dnc": 3.8e-06, + "dominating": 3.8e-06, + "doris": 3.8e-06, + "dorm": 3.8e-06, + "drafts": 5.01e-08, + "drip": 3.8e-06, + "duct": 3.8e-06, + "eccentric": 3.8e-06, + "educating": 3.8e-06, + "electro": 3.8e-06, + "electromagnetic": 3.8e-06, + "emblem": 3.8e-06, + "endured": 3.8e-06, + "ew": 3.8e-06, + "expands": 3.8e-06, + "fabrics": 3.8e-06, + "facto": 3.8e-06, + "falcons": 1.55e-07, + "fascism": 3.8e-06, + "fats": 3.8e-06, + "fearful": 3.8e-06, + "festive": 3.8e-06, + "flyer": 3.8e-06, + "forecasts": 3.8e-06, + "foreman": 3.8e-06, + "framing": 3.8e-06, + "gallagher": 3.8e-06, + "geared": 3.8e-06, + "geoff": 3.8e-06, + "georges": 2.57e-06, + "giles": 3.8e-06, + "gina": 3.8e-06, + "glacier": 3.8e-06, + "gomez": 3.8e-06, + "gs": 1.02e-06, + "hindus": 3.8e-06, + "hu": 3.8e-06, + "hunted": 3.8e-06, + "hurricanes": 8.13e-08, + "implying": 3.8e-06, + "improper": 3.8e-06, + "influx": 3.8e-06, + "informing": 3.8e-06, + "installment": 3.8e-06, + "isles": 3.8e-06, + "jen": 3.8e-06, + "judaism": 3.8e-06, + "keller": 3.8e-06, + "kernel": 3.8e-06, + "kung": 3.8e-06, + "larvae": 3.8e-06, + "lexington": 3.8e-06, + "liaison": 3.8e-06, + "lima": 3.8e-06, + "marys": 7.76e-07, + "memoirs": 3.8e-06, + "miner": 3.8e-06, + "mk": 3.8e-06, + "mosaic": 3.8e-06, + "mustang": 3.8e-06, + "mw": 3.8e-06, + "needy": 3.8e-06, + "nichols": 3.8e-06, + "offenses": 3.8e-06, + "optics": 1.07e-08, + "orphan": 3.8e-06, + "passions": 3.8e-06, + "patty": 3.8e-06, + "peyton": 3.8e-06, + "pies": 8.91e-08, + "pineapple": 3.8e-06, + "pissing": 3.8e-06, + "plaintiffs": 3.89e-07, + "plastics": 1.35e-08, + "poisoned": 3.8e-06, + "potassium": 3.8e-06, + "priceless": 3.8e-06, + "projecting": 3.8e-06, + "prostitute": 3.8e-06, + "reflective": 3.8e-06, + "rents": 3.8e-06, + "residing": 3.8e-06, + "resilience": 3.8e-06, + "resisting": 3.8e-06, + "romanian": 3.8e-06, + "roofs": 1.07e-07, + "rotate": 3.8e-06, + "royce": 3.8e-06, + "sans": 1.51e-07, + "saxon": 3.8e-06, + "scissors": 3.8e-06, + "seaside": 3.8e-06, + "semitic": 3.8e-06, + "shampoo": 3.8e-06, + "shaun": 3.8e-06, + "shri": 3.8e-06, + "silently": 3.8e-06, + "similarity": 3.8e-06, + "smelling": 3.8e-06, + "socio": 3.8e-06, + "stabbing": 3.8e-06, + "staircase": 3.8e-06, + "stamped": 3.8e-06, + "steroids": 3.8e-06, + "stitches": 3.8e-06, + "subsidiaries": 3.8e-06, + "swipe": 3.8e-06, + "tang": 3.8e-06, + "tango": 3.8e-06, + "telecom": 3.8e-06, + "tighter": 3.8e-06, + "tolerant": 3.8e-06, + "touchdowns": 3.8e-06, + "toxicity": 3.8e-06, + "trumpet": 3.8e-06, + "tuberculosis": 3.8e-06, + "ukip": 3.8e-06, + "undergone": 3.8e-06, + "willingly": 3.8e-06, + "woah": 3.8e-06, + "wrapping": 3.8e-06, + "youthful": 3.8e-06, + "accents": 3.72e-06, + "adhere": 3.72e-06, + "adidas": 3.72e-06, + "advising": 3.72e-06, + "affirmative": 3.72e-06, + "agnes": 3.72e-06, + "alarms": 3.72e-06, + "alliances": 3.39e-07, + "alma": 3.72e-06, + "ambiguous": 3.72e-06, + "archaeology": 3.72e-06, + "arse": 3.72e-06, + "attained": 3.72e-06, + "aus": 7.24e-08, + "autopsy": 3.72e-06, + "baltic": 3.72e-06, + "berries": 3.72e-06, + "blitz": 3.72e-06, + "blockade": 3.72e-06, + "bosnia": 3.72e-06, + "brightness": 3.72e-06, + "bruins": 3.72e-06, + "brushed": 3.72e-06, + "burma": 3.72e-06, + "calculating": 3.72e-06, + "campuses": 3.72e-06, + "cartridge": 3.72e-06, + "cashier": 3.72e-06, + "cigar": 3.72e-06, + "circa": 3.72e-06, + "citations": 3.72e-06, + "claudia": 3.72e-06, + "cloak": 3.72e-06, + "cologne": 3.72e-06, + "colombian": 3.72e-06, + "colt": 3.72e-06, + "combustion": 3.72e-06, + "comprehension": 3.72e-06, + "concession": 3.72e-06, + "condoms": 3.72e-06, + "crescent": 3.72e-06, + "crises": 3.72e-06, + "criticizing": 3.72e-06, + "defective": 3.72e-06, + "denise": 3.72e-06, + "deportation": 3.72e-06, + "deserving": 3.72e-06, + "discourage": 3.72e-06, + "disgusted": 3.72e-06, + "disposable": 3.72e-06, + "distressed": 3.72e-06, + "dover": 3.72e-06, + "dumbass": 3.72e-06, + "dungeon": 3.72e-06, + "dwell": 3.72e-06, + "edison": 3.72e-06, + "edith": 3.72e-06, + "enforcing": 3.72e-06, + "entrepreneurship": 3.72e-06, + "eps": 1.48e-07, + "erie": 3.72e-06, + "essentials": 3.72e-06, + "fasting": 3.72e-06, + "fiery": 3.72e-06, + "finalists": 3.72e-06, + "flipping": 3.72e-06, + "flux": 3.72e-06, + "fueled": 3.72e-06, + "gc": 3.72e-06, + "georgetown": 3.72e-06, + "gimme": 3.72e-06, + "goofy": 3.72e-06, + "hai": 3.72e-06, + "hancock": 3.72e-06, + "handwriting": 3.72e-06, + "hassle": 3.72e-06, + "heartbreaking": 3.72e-06, + "hector": 3.72e-06, + "hicks": 3.72e-06, + "hobbies": 3.72e-06, + "hog": 3.72e-06, + "homeowners": 2e-07, + "ibrahim": 3.72e-06, + "immensely": 3.72e-06, + "inauguration": 3.72e-06, + "incorrectly": 3.72e-06, + "ind": 3.72e-06, + "indicative": 3.72e-06, + "inexpensive": 3.72e-06, + "instructors": 1.1e-07, + "intercept": 3.72e-06, + "intuitive": 3.72e-06, + "invent": 3.72e-06, + "irwin": 3.72e-06, + "isabel": 3.72e-06, + "jamaican": 3.72e-06, + "jockey": 3.72e-06, + "jolly": 3.72e-06, + "jorge": 3.72e-06, + "ju": 3.72e-06, + "kazakhstan": 3.72e-06, + "kenyan": 3.72e-06, + "landlords": 3.47e-07, + "latitude": 3.72e-06, + "lea": 3.72e-06, + "libertarian": 3.72e-06, + "luxembourg": 3.72e-06, + "majestic": 3.72e-06, + "mariners": 7.08e-08, + "mastered": 3.72e-06, + "mastery": 3.72e-06, + "mats": 3.72e-08, + "mccoy": 3.72e-06, + "metropolis": 3.72e-06, + "mohamed": 3.72e-06, + "mummy": 3.72e-06, + "neville": 3.72e-06, + "nominate": 3.72e-06, + "np": 3.72e-06, + "offend": 3.72e-06, + "oo": 3.72e-06, + "orchard": 3.72e-06, + "organizer": 3.72e-06, + "outraged": 3.72e-06, + "overdose": 3.72e-06, + "pamela": 3.72e-06, + "paragraphs": 3.72e-06, + "parallels": 3.72e-06, + "parameter": 3.72e-06, + "passwords": 3.72e-06, + "pathology": 3.72e-06, + "peggy": 3.72e-06, + "piercing": 3.72e-06, + "plotting": 3.72e-06, + "poisonous": 3.72e-06, + "pounding": 3.72e-06, + "pretended": 3.72e-06, + "procession": 3.72e-06, + "purge": 3.72e-06, + "reacts": 3.72e-06, + "relocation": 3.72e-06, + "rhino": 3.72e-06, + "riches": 3.72e-06, + "ripping": 3.72e-06, + "rosemary": 3.72e-06, + "rubbed": 3.72e-06, + "sandstone": 3.72e-06, + "sanitation": 3.72e-06, + "satisfactory": 3.72e-06, + "scooter": 3.72e-06, + "sculptures": 3.72e-06, + "secrecy": 3.72e-06, + "seeded": 3.72e-06, + "separates": 3.72e-06, + "sergio": 3.72e-06, + "shameful": 3.72e-06, + "shortest": 3.72e-06, + "sid": 3.72e-06, + "skipping": 3.72e-06, + "skirts": 3.72e-06, + "sliced": 3.72e-06, + "soils": 5.37e-08, + "springer": 3.72e-06, + "staples": 3.72e-06, + "stokes": 1.1e-07, + "storing": 3.72e-06, + "summed": 3.72e-06, + "supervisors": 1.35e-07, + "sweetie": 3.72e-06, + "swollen": 3.72e-06, + "tanzania": 3.72e-06, + "technicians": 3.72e-06, + "tor": 3.72e-06, + "transformers": 3.72e-06, + "traveler": 3.72e-06, + "tunisia": 3.72e-06, + "umm": 3.72e-06, + "unauthorized": 3.72e-06, + "undo": 3.72e-06, + "unnamed": 3.72e-06, + "upsetting": 3.72e-06, + "vans": 2.19e-07, + "venom": 3.72e-06, + "victorious": 3.72e-06, + "vines": 6.17e-08, + "visuals": 3.72e-06, + "wary": 3.72e-06, + "watering": 3.72e-06, + "wellness": 3.72e-06, + "whispers": 3.72e-06, + "windy": 3.72e-06, + "winger": 3.72e-06, + "wordpress": 3.72e-06, + "wraps": 3.72e-06, + "youngsters": 6.17e-08, + "abby": 3.63e-06, + "abdomen": 3.63e-06, + "abducted": 3.63e-06, + "abruptly": 3.63e-06, + "aha": 3.63e-06, + "aleppo": 3.63e-06, + "alerts": 3.63e-06, + "alps": 3.63e-06, + "amidst": 3.63e-06, + "antarctic": 3.63e-06, + "antibodies": 3.63e-06, + "aquarium": 3.63e-06, + "armenia": 3.63e-06, + "aspiring": 3.63e-06, + "asteroid": 3.63e-06, + "barbie": 3.63e-06, + "batter": 3.63e-06, + "baxter": 3.63e-06, + "bedtime": 3.63e-06, + "belongings": 3.63e-06, + "bloomberg": 3.63e-06, + "blush": 3.63e-06, + "booster": 3.63e-06, + "braves": 3.63e-06, + "bun": 3.63e-06, + "businessmen": 3.63e-06, + "calculator": 3.63e-06, + "calmly": 3.63e-06, + "captivity": 3.63e-06, + "catastrophe": 3.63e-06, + "chemotherapy": 3.63e-06, + "cinemas": 2.34e-07, + "circulating": 3.63e-06, + "claws": 3.63e-06, + "cleansing": 3.63e-06, + "clears": 3.63e-06, + "clicked": 3.63e-06, + "commute": 3.63e-06, + "complementary": 3.63e-06, + "concussion": 3.63e-06, + "connectivity": 3.63e-06, + "consulate": 3.63e-06, + "contend": 3.63e-06, + "convict": 3.63e-06, + "craving": 3.63e-06, + "culinary": 3.63e-06, + "demographics": 3.63e-06, + "departing": 3.63e-06, + "din": 3.63e-06, + "dir": 3.63e-06, + "discrete": 3.63e-06, + "disguised": 3.63e-06, + "dissent": 3.63e-06, + "disturb": 3.63e-06, + "docks": 3.63e-06, + "dt": 3.63e-06, + "earns": 3.63e-06, + "emergencies": 3.63e-06, + "eminent": 3.63e-06, + "encryption": 3.63e-06, + "endeavor": 3.63e-06, + "enthusiasts": 3.63e-06, + "erica": 3.63e-06, + "escapes": 3.63e-06, + "everythings": 1.35e-07, + "exported": 3.63e-06, + "fencing": 3.63e-06, + "filtering": 3.63e-06, + "flashes": 3.63e-06, + "fleming": 3.63e-06, + "flop": 3.63e-06, + "follower": 3.63e-06, + "franchises": 4.37e-07, + "fraternity": 3.63e-06, + "freaks": 3.63e-06, + "frogs": 1.82e-07, + "fronts": 1.82e-07, + "furry": 3.63e-06, + "glitter": 3.63e-06, + "graveyard": 3.63e-06, + "hanged": 3.63e-06, + "hardship": 3.63e-06, + "harlem": 3.63e-06, + "hen": 3.63e-06, + "hoover": 3.63e-06, + "implication": 3.63e-06, + "induce": 3.63e-06, + "insecurity": 3.63e-06, + "interrogation": 3.63e-06, + "intimidating": 3.63e-06, + "inventions": 3.63e-06, + "irrational": 3.63e-06, + "jaws": 3.63e-06, + "lamar": 3.63e-06, + "leafs": 8.13e-08, + "lennon": 3.63e-06, + "lettuce": 3.63e-06, + "liabilities": 3.63e-06, + "lithium": 3.63e-06, + "lowe": 3.63e-06, + "lucrative": 3.63e-06, + "macmillan": 3.63e-06, + "malone": 3.63e-06, + "managerial": 3.63e-06, + "mandated": 3.63e-06, + "mango": 3.63e-06, + "miley": 3.63e-06, + "militants": 3.63e-06, + "milo": 3.63e-06, + "mister": 3.63e-06, + "moderately": 3.63e-06, + "mri": 3.63e-06, + "multimedia": 3.63e-06, + "multinational": 3.63e-06, + "nationalists": 3.63e-06, + "nh": 3.63e-06, + "oasis": 3.63e-06, + "oddly": 3.63e-06, + "ons": 1.15e-07, + "oppressed": 3.63e-06, + "osaka": 3.63e-06, + "ouch": 3.63e-06, + "outsiders": 1.2e-07, + "outskirts": 3.63e-06, + "overlapping": 3.63e-06, + "overs": 3.63e-06, + "paced": 3.63e-06, + "pagan": 3.63e-06, + "painters": 2.95e-07, + "pals": 1.12e-07, + "planetary": 3.63e-06, + "playboy": 3.63e-06, + "porcelain": 3.63e-06, + "processors": 5.01e-08, + "programmer": 3.63e-06, + "promoter": 3.63e-06, + "psalm": 3.63e-06, + "psychiatry": 3.63e-06, + "psychologists": 5.37e-08, + "pubs": 8.13e-08, + "pursuant": 3.63e-06, + "recycled": 3.63e-06, + "renovated": 3.63e-06, + "repetitive": 3.63e-06, + "researched": 3.63e-06, + "revelations": 3.63e-06, + "reversal": 3.63e-06, + "rhyme": 3.63e-06, + "rue": 3.63e-06, + "safest": 3.63e-06, + "saturdays": 2.29e-06, + "savvy": 3.63e-06, + "scanner": 3.63e-06, + "schizophrenia": 3.63e-06, + "scratching": 3.63e-06, + "seriousness": 3.63e-06, + "sheila": 3.63e-06, + "shelby": 3.63e-06, + "sparkling": 3.63e-06, + "spree": 3.63e-06, + "stafford": 3.63e-06, + "stakeholders": 3.63e-06, + "stevenson": 3.63e-06, + "submitting": 3.63e-06, + "subsidy": 3.63e-06, + "sup": 3.63e-06, + "superficial": 3.63e-06, + "sweaty": 3.63e-06, + "tailored": 3.63e-06, + "tame": 3.63e-06, + "tanner": 3.63e-06, + "taps": 3.39e-08, + "tf": 3.63e-06, + "thinner": 3.63e-06, + "thugs": 6.46e-08, + "tipping": 3.63e-06, + "toni": 3.63e-06, + "topping": 3.63e-06, + "tracing": 3.63e-06, + "truman": 3.63e-06, + "upstream": 3.63e-06, + "vapor": 3.63e-06, + "veronica": 3.63e-06, + "vow": 3.63e-06, + "waitress": 3.63e-06, + "walnut": 3.63e-06, + "waterfront": 3.63e-06, + "wembley": 3.63e-06, + "whatsapp": 3.63e-06, + "winchester": 3.63e-06, + "witty": 3.63e-06, + "woven": 3.63e-06, + "wyatt": 3.63e-06, + "zack": 3.63e-06, + "acquaintance": 3.55e-06, + "aires": 3.55e-06, + "ambassadors": 3.98e-07, + "ambush": 3.55e-06, + "amelia": 3.55e-06, + "amend": 3.55e-06, + "arranging": 3.55e-06, + "arrogance": 3.55e-06, + "attendees": 3.55e-06, + "audrey": 3.55e-06, + "aussie": 3.55e-06, + "awaits": 3.55e-06, + "baptism": 3.55e-06, + "beirut": 3.55e-06, + "blames": 3.55e-06, + "blasting": 3.55e-06, + "bloke": 3.55e-06, + "blond": 3.55e-06, + "blur": 3.55e-06, + "blvd": 3.55e-06, + "boogie": 3.55e-06, + "booker": 3.55e-06, + "bothers": 3.55e-06, + "bowel": 3.55e-06, + "brightest": 3.55e-06, + "brow": 3.55e-06, + "budapest": 3.55e-06, + "bulbs": 3.55e-06, + "bureaucracy": 3.55e-06, + "cabbage": 3.55e-06, + "canton": 3.55e-06, + "cater": 3.55e-06, + "celtics": 1.91e-07, + "chimney": 3.55e-06, + "chrysler": 3.55e-06, + "circulated": 3.55e-06, + "cloudy": 3.55e-06, + "colourful": 3.55e-06, + "compassionate": 3.55e-06, + "comrade": 3.55e-06, + "concentrating": 3.55e-06, + "continents": 2.45e-07, + "convertible": 3.55e-06, + "cory": 3.55e-06, + "crater": 3.55e-06, + "creeping": 3.55e-06, + "cu": 3.55e-06, + "cumulative": 3.55e-06, + "curator": 3.55e-06, + "dat": 3.55e-06, + "deity": 3.55e-06, + "desperation": 3.55e-06, + "detrimental": 3.55e-06, + "diarrhea": 3.55e-06, + "disposed": 3.55e-06, + "distortion": 3.55e-06, + "doctoral": 3.55e-06, + "draining": 3.55e-06, + "drains": 3.55e-06, + "dramas": 1.74e-07, + "drifting": 3.55e-06, + "edged": 3.55e-06, + "educator": 3.55e-06, + "entitlement": 3.55e-06, + "esp": 3.55e-06, + "faux": 3.55e-06, + "favoured": 3.55e-06, + "fearless": 3.55e-06, + "finch": 3.55e-06, + "fragment": 3.55e-06, + "fulfil": 3.55e-06, + "galaxies": 3.55e-06, + "gangster": 3.55e-06, + "garner": 3.55e-06, + "gil": 3.55e-06, + "giveaway": 3.55e-06, + "graphs": 3.55e-06, + "gypsy": 3.55e-06, + "harassed": 3.55e-06, + "heater": 3.55e-06, + "hesitation": 3.55e-06, + "humiliation": 3.55e-06, + "ic": 3.55e-06, + "impairment": 3.55e-06, + "impatient": 3.55e-06, + "incorporates": 3.55e-06, + "indy": 3.55e-06, + "insisting": 3.55e-06, + "intricate": 3.55e-06, + "irvine": 3.55e-06, + "jensen": 3.55e-06, + "kang": 3.55e-06, + "kara": 3.55e-06, + "karate": 3.55e-06, + "kc": 3.55e-06, + "kingdoms": 9.55e-07, + "kite": 3.55e-06, + "labeling": 3.55e-06, + "leasing": 3.55e-06, + "lighthouse": 3.55e-06, + "longevity": 3.55e-06, + "lore": 3.55e-06, + "lush": 3.55e-06, + "luxurious": 3.55e-06, + "mal": 3.55e-06, + "mash": 3.55e-06, + "mba": 3.55e-06, + "meg": 3.55e-06, + "meltdown": 3.55e-06, + "messiah": 3.55e-06, + "meteor": 3.55e-06, + "ministerial": 3.55e-06, + "mmm": 3.55e-06, + "mocking": 3.55e-06, + "monty": 3.55e-06, + "motions": 3.55e-06, + "mystical": 3.55e-06, + "nu": 3.55e-06, + "obstruction": 3.55e-06, + "odyssey": 3.55e-06, + "om": 3.55e-06, + "onboard": 3.55e-06, + "oneself": 3.55e-06, + "org": 3.55e-06, + "outsider": 3.55e-06, + "overcoming": 3.55e-06, + "palms": 3.55e-06, + "penetrate": 3.55e-06, + "phelps": 3.55e-06, + "phi": 3.55e-06, + "philippe": 3.55e-06, + "pioneers": 6.46e-08, + "plaintiff": 3.55e-06, + "planners": 3.55e-06, + "plum": 3.55e-06, + "plural": 3.55e-06, + "poe": 3.55e-06, + "portrayal": 3.55e-06, + "prevail": 3.55e-06, + "prevailing": 3.55e-06, + "prostitutes": 3.55e-06, + "publishes": 3.55e-06, + "puff": 3.55e-06, + "pun": 3.55e-06, + "puzzles": 3.55e-06, + "rag": 3.55e-06, + "raj": 3.55e-06, + "rampant": 3.55e-06, + "recommending": 3.55e-06, + "reggie": 3.55e-06, + "regulating": 3.55e-06, + "repairing": 3.55e-06, + "repeats": 3.55e-06, + "replicate": 3.55e-06, + "replying": 3.55e-06, + "retaliation": 3.55e-06, + "rf": 3.55e-06, + "risking": 3.55e-06, + "rooftop": 3.55e-06, + "rooting": 3.55e-06, + "routing": 3.55e-06, + "rv": 3.55e-06, + "safeguard": 3.55e-06, + "scaled": 3.55e-06, + "sedan": 3.55e-06, + "sentiments": 3.55e-06, + "sewage": 3.55e-06, + "sgt": 3.55e-06, + "shoppers": 8.32e-08, + "simpsons": 7.24e-07, + "sitcom": 3.55e-06, + "slang": 3.55e-06, + "slid": 3.55e-06, + "sparked": 3.55e-06, + "spices": 3.55e-06, + "spirited": 3.55e-06, + "spirituality": 3.55e-06, + "spoiler": 3.55e-06, + "suitcase": 3.55e-06, + "summon": 3.55e-06, + "survives": 3.55e-06, + "sustaining": 3.55e-06, + "tavern": 3.55e-06, + "teasing": 3.55e-06, + "telegram": 3.55e-06, + "titanium": 3.55e-06, + "trailing": 3.55e-06, + "tuck": 3.55e-06, + "turbulence": 3.55e-06, + "ulster": 3.55e-06, + "unesco": 3.55e-06, + "uneven": 3.55e-06, + "urgency": 3.55e-06, + "vibes": 3.55e-06, + "viktor": 3.55e-06, + "ware": 3.55e-06, + "waterproof": 3.55e-06, + "welcomes": 3.55e-06, + "whining": 3.55e-06, + "wonderfully": 3.55e-06, + "wording": 3.55e-06, + "zelda": 3.55e-06, + "abdullah": 3.47e-06, + "academia": 3.47e-06, + "accreditation": 3.47e-06, + "administer": 3.47e-06, + "admittedly": 3.47e-06, + "aforementioned": 3.47e-06, + "algae": 3.47e-06, + "alterations": 3.47e-06, + "angelo": 3.47e-06, + "apache": 3.47e-06, + "ariel": 3.47e-06, + "articulate": 3.47e-06, + "asbestos": 3.47e-06, + "atleast": 3.47e-06, + "avoidance": 3.47e-06, + "babylon": 3.47e-06, + "barney": 3.47e-06, + "bearings": 3.47e-06, + "bjp": 3.47e-06, + "boutique": 3.47e-06, + "bowie": 3.47e-06, + "brewer": 3.47e-06, + "brits": 5.75e-08, + "buffet": 3.47e-06, + "burner": 3.47e-06, + "cain": 3.47e-06, + "casa": 3.47e-06, + "catcher": 3.47e-06, + "cathy": 3.47e-06, + "charms": 3.47e-06, + "chassis": 3.47e-06, + "chores": 3.47e-06, + "clap": 3.47e-06, + "clarification": 3.47e-06, + "colder": 3.47e-06, + "concluding": 3.47e-06, + "consolation": 3.47e-06, + "consoles": 1.78e-07, + "corresponds": 3.47e-06, + "counters": 3.47e-06, + "covert": 3.47e-06, + "cringe": 3.47e-06, + "crosby": 3.47e-06, + "cunningham": 3.47e-06, + "cw": 3.47e-06, + "dagger": 3.47e-06, + "dealings": 3.47e-06, + "deferred": 3.47e-06, + "depicting": 3.47e-06, + "descriptive": 3.47e-06, + "dialect": 3.47e-06, + "dipped": 3.47e-06, + "dolly": 3.47e-06, + "downfall": 3.47e-06, + "downside": 3.47e-06, + "dryer": 3.47e-06, + "dunk": 3.47e-06, + "elijah": 3.47e-06, + "empowerment": 3.47e-06, + "endings": 3.47e-06, + "energies": 3.47e-06, + "ensuing": 3.47e-06, + "ensured": 3.47e-06, + "ethic": 3.47e-06, + "executing": 3.47e-06, + "expire": 3.47e-06, + "fireplace": 3.47e-06, + "flair": 3.47e-06, + "fossils": 3.47e-06, + "fugitive": 3.47e-06, + "gpa": 3.47e-06, + "greenwich": 3.47e-06, + "gujarat": 3.47e-06, + "hah": 3.47e-06, + "hanson": 3.47e-06, + "haunt": 3.47e-06, + "hayden": 3.47e-06, + "hazel": 3.47e-06, + "headset": 3.47e-06, + "hernandez": 3.47e-06, + "hk": 3.47e-06, + "homecoming": 3.47e-06, + "hurdles": 3.47e-06, + "hussein": 3.47e-06, + "hyped": 3.47e-06, + "icy": 3.47e-06, + "indulge": 3.47e-06, + "inmate": 3.47e-06, + "inscription": 3.47e-06, + "interpreter": 3.47e-06, + "intuition": 3.47e-06, + "invaluable": 3.47e-06, + "jaime": 3.47e-06, + "jenna": 3.47e-06, + "js": 6.17e-07, + "kaiser": 3.47e-06, + "kettle": 3.47e-06, + "kylie": 3.47e-06, + "laptops": 1.45e-07, + "lara": 3.47e-06, + "lasers": 3.47e-06, + "lax": 3.47e-06, + "lest": 3.47e-06, + "levi": 3.47e-06, + "lilly": 3.47e-06, + "malta": 3.47e-06, + "markings": 3.47e-06, + "mcconnell": 3.47e-06, + "mcgregor": 3.47e-06, + "menace": 3.47e-06, + "methane": 3.47e-06, + "mexicans": 3.47e-06, + "ming": 3.47e-06, + "misuse": 3.47e-06, + "mitigate": 3.47e-06, + "mona": 3.47e-06, + "nairobi": 3.47e-06, + "nana": 3.47e-06, + "nausea": 3.47e-06, + "neurological": 3.47e-06, + "nicola": 3.47e-06, + "optimum": 3.47e-06, + "ounces": 3.47e-06, + "overwhelmingly": 3.47e-06, + "oyster": 3.47e-06, + "pastoral": 3.47e-06, + "patented": 3.47e-06, + "pea": 3.47e-06, + "pearls": 2.24e-07, + "physiological": 3.47e-06, + "pioneering": 3.47e-06, + "pleasures": 3.47e-06, + "policemen": 3.47e-06, + "poo": 3.47e-06, + "poultry": 3.47e-06, + "prominence": 3.47e-06, + "prophets": 3.09e-07, + "prosecute": 3.47e-06, + "ptsd": 3.47e-06, + "quartet": 3.47e-06, + "radically": 3.47e-06, + "raping": 3.47e-06, + "reactive": 3.47e-06, + "reboot": 3.47e-06, + "renamed": 3.47e-06, + "resides": 3.47e-06, + "restrictive": 3.47e-06, + "robotic": 3.47e-06, + "runaway": 3.47e-06, + "saturn": 3.47e-06, + "sawyer": 3.47e-06, + "screenplay": 3.47e-06, + "scriptures": 3.47e-06, + "sect": 3.47e-06, + "seismic": 3.47e-06, + "seminary": 3.47e-06, + "sg": 3.47e-06, + "sheldon": 3.47e-06, + "shelley": 3.47e-06, + "shouts": 3.47e-06, + "sideways": 3.47e-06, + "sighted": 3.47e-06, + "skinned": 3.47e-06, + "skipper": 3.47e-06, + "slain": 3.47e-06, + "smuggling": 3.47e-06, + "softer": 3.47e-06, + "sonia": 3.47e-06, + "specs": 3.09e-08, + "squads": 3.98e-07, + "stash": 3.47e-06, + "stephens": 9.12e-07, + "stimulating": 3.47e-06, + "strawberries": 3.47e-06, + "striped": 3.47e-06, + "stroll": 3.47e-06, + "swiftly": 3.47e-06, + "texans": 3.47e-06, + "theatres": 5.13e-07, + "tolerated": 3.47e-06, + "transcription": 3.47e-06, + "tucson": 3.47e-06, + "tweeting": 3.47e-06, + "ul": 3.47e-06, + "unicorn": 3.47e-06, + "uniquely": 3.47e-06, + "unrealistic": 3.47e-06, + "vase": 3.47e-06, + "vat": 3.47e-06, + "vineyard": 3.47e-06, + "viola": 3.47e-06, + "waterfall": 3.47e-06, + "waved": 3.47e-06, + "weaving": 3.47e-06, + "welding": 3.47e-06, + "whereabouts": 3.47e-06, + "yah": 3.47e-06, + "yummy": 3.47e-06, + "zeus": 3.47e-06, + "abortions": 3.39e-06, + "acknowledges": 3.39e-06, + "adobe": 3.39e-06, + "adolescents": 3.39e-06, + "ala": 3.09e-08, + "alarming": 3.39e-06, + "alexandra": 3.39e-06, + "almond": 3.39e-06, + "amenities": 3.39e-06, + "amounted": 3.39e-06, + "amused": 3.39e-06, + "antarctica": 3.39e-06, + "arabian": 3.39e-06, + "ari": 3.39e-06, + "asphalt": 3.39e-06, + "atrocities": 3.39e-06, + "aviv": 3.39e-06, + "bach": 3.39e-06, + "backbone": 3.39e-06, + "bahamas": 3.39e-06, + "beetle": 3.39e-06, + "blizzard": 3.39e-06, + "bolivia": 3.39e-06, + "booklet": 3.39e-06, + "bottoms": 6.17e-08, + "brawl": 3.39e-06, + "brittany": 3.39e-06, + "bryce": 3.39e-06, + "bu": 3.39e-06, + "burgess": 3.39e-06, + "butts": 6.31e-08, + "camden": 3.39e-06, + "cameroon": 3.39e-06, + "celestial": 3.39e-06, + "characterization": 3.39e-06, + "chevy": 3.39e-06, + "choked": 3.39e-06, + "ci": 3.39e-06, + "clashes": 3.39e-06, + "clint": 3.39e-06, + "comin": 3.39e-06, + "communicated": 3.39e-06, + "confessions": 3.39e-06, + "conform": 3.39e-06, + "conversely": 3.39e-06, + "countess": 3.39e-06, + "creations": 3.39e-06, + "cues": 3.39e-06, + "customary": 3.39e-06, + "dalton": 3.39e-06, + "debuted": 3.39e-06, + "declines": 3.39e-06, + "depicts": 3.39e-06, + "devote": 3.39e-06, + "dinners": 9.33e-08, + "diplomats": 8.71e-08, + "dispose": 3.39e-06, + "distinctly": 3.39e-06, + "evacuate": 3.39e-06, + "everett": 3.39e-06, + "exits": 3.39e-06, + "experimenting": 3.39e-06, + "exploding": 3.39e-06, + "exploits": 3.39e-06, + "favourable": 3.39e-06, + "ferdinand": 3.39e-06, + "flourish": 3.39e-06, + "flowering": 3.39e-06, + "fractures": 3.39e-06, + "fragrance": 3.39e-06, + "franz": 3.39e-06, + "fungus": 3.39e-06, + "germanys": 6.17e-08, + "gloucester": 3.39e-06, + "griffith": 3.39e-06, + "guarding": 3.39e-06, + "gunfire": 3.39e-06, + "harvesting": 3.39e-06, + "havana": 3.39e-06, + "heroine": 3.39e-06, + "hilary": 3.39e-06, + "hoax": 3.39e-06, + "imf": 3.39e-06, + "impending": 3.39e-06, + "insignificant": 3.39e-06, + "insurer": 3.39e-06, + "intercepted": 3.39e-06, + "interfering": 3.39e-06, + "itv": 3.39e-06, + "jonah": 3.39e-06, + "kerala": 3.39e-06, + "knowledgeable": 3.39e-06, + "ku": 3.39e-06, + "liberated": 3.39e-06, + "lingerie": 3.39e-06, + "lite": 3.39e-06, + "localities": 3.39e-06, + "locke": 3.39e-06, + "logos": 7.94e-08, + "lurking": 3.39e-06, + "madden": 3.39e-06, + "magician": 3.39e-06, + "magistrates": 2.63e-07, + "mai": 3.39e-06, + "mali": 3.39e-06, + "maneuver": 3.39e-06, + "marrow": 3.39e-06, + "marvelous": 3.39e-06, + "mas": 5.5e-07, + "mattered": 3.39e-06, + "medicinal": 3.39e-06, + "melanie": 3.39e-06, + "mono": 3.39e-06, + "murderers": 1.74e-07, + "nas": 1.26e-07, + "numb": 3.39e-06, + "omitted": 3.39e-06, + "originals": 1.23e-07, + "overlook": 3.39e-06, + "partnered": 3.39e-06, + "pastry": 3.39e-06, + "pawn": 3.39e-06, + "pediatric": 3.39e-06, + "persist": 3.39e-06, + "personalized": 3.39e-06, + "planner": 3.39e-06, + "plaster": 3.39e-06, + "playful": 3.39e-06, + "pleading": 3.39e-06, + "professions": 8.13e-08, + "quirky": 3.39e-06, + "quota": 3.39e-06, + "quran": 7.59e-08, + "randolph": 3.39e-06, + "rationale": 3.39e-06, + "reap": 3.39e-06, + "rebound": 3.39e-06, + "recess": 3.39e-06, + "redeem": 3.39e-06, + "reformation": 3.39e-06, + "regimes": 5.25e-07, + "replacements": 3.39e-06, + "residue": 3.39e-06, + "robotics": 3.39e-06, + "rocked": 3.39e-06, + "runoff": 3.39e-06, + "rwanda": 3.39e-06, + "salsa": 3.39e-06, + "scanned": 3.39e-06, + "screenshots": 3.39e-06, + "semiconductor": 3.39e-06, + "sentimental": 3.39e-06, + "serbian": 3.39e-06, + "severed": 3.39e-06, + "shocks": 3.39e-06, + "simultaneous": 3.39e-06, + "slaughtered": 3.39e-06, + "snatch": 3.39e-06, + "sneakers": 3.39e-06, + "somali": 3.39e-06, + "spikes": 1.29e-07, + "spooky": 3.39e-06, + "squeezed": 3.39e-06, + "staffing": 3.39e-06, + "stanton": 3.39e-06, + "stealth": 3.39e-06, + "strained": 3.39e-06, + "subscribed": 3.39e-06, + "subset": 3.39e-06, + "suspense": 3.39e-06, + "suzanne": 3.39e-06, + "swearing": 3.39e-06, + "swore": 3.39e-06, + "syntax": 3.39e-06, + "tad": 3.39e-06, + "tandem": 3.39e-06, + "tasked": 3.39e-06, + "tasmania": 3.39e-06, + "televised": 3.39e-06, + "tempered": 3.39e-06, + "tertiary": 3.39e-06, + "thyroid": 3.39e-06, + "tidy": 3.39e-06, + "timeless": 3.39e-06, + "tokens": 3.39e-06, + "uefa": 3.39e-06, + "unreliable": 3.39e-06, + "upbeat": 3.39e-06, + "usable": 3.39e-06, + "vanguard": 3.39e-06, + "vc": 3.39e-06, + "vomit": 3.39e-06, + "vulgar": 3.39e-06, + "waiver": 3.39e-06, + "walton": 3.39e-06, + "watershed": 3.39e-06, + "weave": 3.39e-06, + "wilkinson": 3.39e-06, + "wiring": 3.39e-06, + "yan": 3.39e-06, + "adrenaline": 3.31e-06, + "alexa": 3.31e-06, + "alleviate": 3.31e-06, + "amd": 3.31e-06, + "anarchy": 3.31e-06, + "ang": 3.31e-06, + "ashore": 3.31e-06, + "aura": 3.31e-06, + "bachelors": 1.55e-06, + "baden": 3.31e-06, + "ballroom": 3.31e-06, + "beginner": 3.31e-06, + "beginners": 6.76e-07, + "bermuda": 3.31e-06, + "bilingual": 3.31e-06, + "bombings": 3.31e-06, + "bonded": 3.31e-06, + "boosting": 3.31e-06, + "boyle": 3.31e-06, + "brenda": 3.31e-06, + "brewers": 2.82e-07, + "briggs": 3.31e-06, + "buchanan": 3.31e-06, + "buckingham": 3.31e-06, + "bundles": 3.31e-06, + "calcutta": 3.31e-06, + "caleb": 3.31e-06, + "canopy": 3.31e-06, + "chennai": 3.31e-06, + "cherish": 3.31e-06, + "chuckle": 3.31e-06, + "civilized": 3.31e-06, + "comb": 3.31e-06, + "completes": 3.31e-06, + "complexes": 3.31e-06, + "conceal": 3.31e-06, + "condemnation": 3.31e-06, + "contemplating": 3.31e-06, + "cores": 1.05e-07, + "cruiser": 3.31e-06, + "cruising": 3.31e-06, + "curl": 3.31e-06, + "dams": 1.26e-07, + "dared": 3.31e-06, + "dart": 3.31e-06, + "defends": 3.31e-06, + "demolished": 3.31e-06, + "denim": 3.31e-06, + "dependency": 3.31e-06, + "detecting": 3.31e-06, + "dew": 3.31e-06, + "dickens": 1.66e-08, + "disable": 3.31e-06, + "disconnected": 3.31e-06, + "dishonest": 3.31e-06, + "dosage": 3.31e-06, + "doubtful": 3.31e-06, + "dysfunction": 3.31e-06, + "ecosystems": 3.31e-06, + "encyclopedia": 3.31e-06, + "endowment": 3.31e-06, + "engraved": 3.31e-06, + "enrichment": 3.31e-06, + "erect": 3.31e-06, + "erection": 3.31e-06, + "eruption": 3.31e-06, + "examiner": 3.31e-06, + "exercised": 3.31e-06, + "exeter": 3.31e-06, + "expenditures": 3.31e-06, + "expires": 3.31e-06, + "fairfax": 3.31e-06, + "fam": 3.31e-06, + "fauna": 3.31e-06, + "feds": 5.62e-07, + "fidelity": 3.31e-06, + "finely": 3.31e-06, + "fischer": 3.31e-06, + "flirt": 3.31e-06, + "fluent": 3.31e-06, + "flute": 3.31e-06, + "footprint": 3.31e-06, + "fore": 3.31e-06, + "forefront": 3.31e-06, + "formulated": 3.31e-06, + "freaked": 3.31e-06, + "freshwater": 3.31e-06, + "fyi": 3.31e-06, + "gareth": 3.31e-06, + "gotham": 3.31e-06, + "gr": 3.31e-06, + "grouped": 3.31e-06, + "halted": 3.31e-06, + "harden": 3.31e-06, + "hardened": 3.31e-06, + "hateful": 3.31e-06, + "haunting": 3.31e-06, + "henri": 3.31e-06, + "hepatitis": 3.31e-06, + "honoring": 3.31e-06, + "horace": 3.31e-06, + "horrors": 3.31e-06, + "howe": 3.31e-06, + "huntington": 3.31e-06, + "ieee": 3.31e-06, + "inhabited": 3.31e-06, + "inherit": 3.31e-06, + "initiation": 3.31e-06, + "injections": 3.31e-06, + "insulted": 3.31e-06, + "integrating": 3.31e-06, + "intensely": 3.31e-06, + "ions": 3.31e-06, + "janeiro": 3.31e-06, + "jeopardy": 3.31e-06, + "joanna": 3.31e-06, + "kensington": 3.31e-06, + "ks": 4.57e-07, + "lafayette": 3.31e-06, + "lc": 3.31e-06, + "listener": 3.31e-06, + "lockdown": 3.31e-06, + "mandarin": 3.31e-06, + "mast": 3.31e-06, + "matte": 3.31e-06, + "mccartney": 3.31e-06, + "mediocre": 3.31e-06, + "middleton": 3.31e-06, + "mixes": 3.31e-06, + "morons": 3.31e-06, + "morse": 3.31e-06, + "mounts": 5.13e-08, + "nfc": 3.31e-06, + "niagara": 3.31e-06, + "nicest": 3.31e-06, + "nicotine": 3.31e-06, + "nl": 3.31e-06, + "nora": 3.31e-06, + "nordic": 3.31e-06, + "nos": 2e-07, + "notions": 3.31e-06, + "oranges": 9.77e-08, + "outward": 3.31e-06, + "overrated": 3.31e-06, + "packaged": 3.31e-06, + "packets": 3.31e-06, + "paige": 3.31e-06, + "passports": 3.31e-06, + "pb": 3.31e-06, + "pbs": 3.31e-06, + "peanuts": 3.31e-06, + "pep": 3.31e-06, + "piracy": 3.31e-06, + "platoon": 3.31e-06, + "practise": 3.31e-06, + "presses": 3.31e-06, + "rave": 3.31e-06, + "reactors": 6.46e-08, + "recreate": 3.31e-06, + "reeves": 5.5e-08, + "reigns": 3.31e-06, + "reno": 3.31e-06, + "resembling": 3.31e-06, + "residual": 3.31e-06, + "restricting": 3.31e-06, + "robe": 3.31e-06, + "rpg": 3.31e-06, + "rye": 3.31e-06, + "sails": 3.31e-06, + "sayin": 3.31e-06, + "sensational": 3.31e-06, + "sexism": 3.31e-06, + "smokers": 1.15e-07, + "sneaky": 3.31e-06, + "socket": 3.31e-06, + "spanning": 3.31e-06, + "specifics": 3.31e-06, + "spouses": 2.69e-07, + "starvation": 3.31e-06, + "starve": 3.31e-06, + "stool": 3.31e-06, + "stricken": 3.31e-06, + "stripping": 3.31e-06, + "subscriber": 3.31e-06, + "systematically": 3.31e-06, + "taxed": 3.31e-06, + "tc": 3.31e-06, + "tex": 3.31e-06, + "thanking": 3.31e-06, + "tibet": 3.31e-06, + "toledo": 3.31e-06, + "tread": 3.31e-06, + "tripping": 3.31e-06, + "truce": 3.31e-06, + "tsunami": 3.31e-06, + "turbines": 2.19e-08, + "turmoil": 3.31e-06, + "typed": 3.31e-06, + "tyranny": 3.31e-06, + "tyres": 3.31e-06, + "unfit": 3.31e-06, + "uphold": 3.31e-06, + "vita": 3.31e-06, + "volunteering": 3.31e-06, + "wal": 3.31e-06, + "warwick": 3.31e-06, + "waterloo": 3.31e-06, + "weeds": 3.31e-06, + "weir": 3.31e-06, + "wellbeing": 3.31e-06, + "wikileaks": 3.31e-06, + "wonderland": 3.31e-06, + "wrestler": 3.31e-06, + "yrs": 3.31e-06, + "zimmerman": 3.31e-06, + "zoning": 3.31e-06, + "abandoning": 3.24e-06, + "abolition": 3.24e-06, + "accessibility": 3.24e-06, + "acquainted": 3.24e-06, + "airplanes": 8.91e-08, + "airs": 2.51e-07, + "aloud": 3.24e-06, + "angular": 3.24e-06, + "anterior": 3.24e-06, + "appendix": 3.24e-06, + "approx": 3.24e-06, + "atp": 3.24e-06, + "attackers": 1.86e-07, + "auditorium": 3.24e-06, + "augustine": 3.24e-06, + "barking": 3.24e-06, + "bauer": 3.24e-06, + "beckham": 3.24e-06, + "behaving": 3.24e-06, + "benign": 3.24e-06, + "berkshire": 3.24e-06, + "bleach": 3.24e-06, + "boast": 3.24e-06, + "bowen": 3.24e-06, + "brandy": 3.24e-06, + "brethren": 3.24e-06, + "brink": 3.24e-06, + "bruh": 3.24e-06, + "carving": 3.24e-06, + "cas": 1.7e-07, + "cass": 1.66e-08, + "cctv": 3.24e-06, + "cecil": 3.24e-06, + "cheeky": 3.24e-06, + "chemist": 3.24e-06, + "choi": 3.24e-06, + "coastline": 3.24e-06, + "cobra": 3.24e-06, + "collaborate": 3.24e-06, + "comparatively": 3.24e-06, + "compensated": 3.24e-06, + "competed": 3.24e-06, + "conor": 3.24e-06, + "cosmos": 6.17e-08, + "councillors": 3.24e-06, + "crafting": 3.24e-06, + "cuff": 3.24e-06, + "curling": 3.24e-06, + "cyclone": 3.24e-06, + "dedicate": 3.24e-06, + "deleting": 3.24e-06, + "delusional": 3.24e-06, + "deposition": 3.24e-06, + "derive": 3.24e-06, + "descend": 3.24e-06, + "descending": 3.24e-06, + "diligence": 3.24e-06, + "disciplined": 3.24e-06, + "discriminate": 3.24e-06, + "distributions": 3.24e-06, + "diversion": 3.24e-06, + "doorway": 3.24e-06, + "dp": 3.24e-06, + "drilled": 3.24e-06, + "dumpster": 3.24e-06, + "emailed": 3.24e-06, + "empower": 3.24e-06, + "ernst": 3.24e-06, + "ethiopian": 3.24e-06, + "europes": 6.17e-08, + "excerpt": 3.24e-06, + "existent": 3.24e-06, + "ezra": 3.24e-06, + "fabricated": 3.24e-06, + "fandom": 3.24e-06, + "filmmakers": 1.17e-07, + "filtered": 3.24e-06, + "foe": 3.24e-06, + "gatherings": 3.24e-06, + "georgian": 3.24e-06, + "getaway": 3.24e-06, + "glamour": 3.24e-06, + "heirs": 3.24e-06, + "humphrey": 3.24e-06, + "inbox": 3.24e-06, + "incidentally": 3.24e-06, + "infinitely": 3.24e-06, + "inflated": 3.24e-06, + "influenza": 3.24e-06, + "informs": 3.24e-06, + "inspected": 3.24e-06, + "instructional": 3.24e-06, + "interviewer": 3.24e-06, + "introductory": 3.24e-06, + "iot": 3.24e-06, + "jaguar": 3.24e-06, + "jamal": 3.24e-06, + "judgments": 3.24e-06, + "laurent": 3.24e-06, + "licking": 3.24e-06, + "ling": 3.24e-06, + "loft": 3.24e-06, + "lois": 3.24e-06, + "massively": 3.24e-06, + "mediated": 3.24e-06, + "mediation": 3.24e-06, + "merrill": 3.24e-06, + "metrics": 3.24e-06, + "millennials": 3.24e-06, + "modular": 3.24e-06, + "nico": 3.24e-06, + "nutrient": 3.24e-06, + "occupies": 3.24e-06, + "oslo": 3.24e-06, + "outlaw": 3.24e-06, + "oversee": 3.24e-06, + "pageant": 3.24e-06, + "parachute": 3.24e-06, + "parasite": 3.24e-06, + "parenthood": 3.24e-06, + "perennial": 3.24e-06, + "persistence": 3.24e-06, + "piers": 3.24e-06, + "pleas": 3.24e-06, + "porto": 3.24e-06, + "postage": 3.24e-06, + "praises": 3.24e-06, + "preschool": 3.24e-06, + "procedural": 3.24e-06, + "profoundly": 3.24e-06, + "prohibit": 3.24e-06, + "pronunciation": 3.24e-06, + "provoked": 3.24e-06, + "quotation": 3.24e-06, + "rappers": 3.31e-07, + "registers": 8.71e-08, + "relentless": 3.24e-06, + "remnants": 3.24e-06, + "repression": 3.24e-06, + "reprinted": 3.24e-06, + "resolving": 3.24e-06, + "ridiculously": 3.24e-06, + "roaring": 3.24e-06, + "salisbury": 3.24e-06, + "scandals": 3.24e-06, + "scrapped": 3.24e-06, + "seasoned": 3.24e-06, + "shootout": 3.24e-06, + "sigma": 3.24e-06, + "simulations": 3.24e-06, + "sk": 3.24e-06, + "somethin": 3.24e-06, + "sourced": 3.24e-06, + "specializing": 3.24e-06, + "spectator": 3.24e-06, + "speculative": 3.24e-06, + "spins": 3.24e-06, + "stadiums": 3.31e-07, + "stalls": 3.24e-06, + "stripe": 3.24e-06, + "submerged": 3.24e-06, + "surgeries": 3.24e-06, + "symmetry": 3.24e-06, + "syndicate": 3.24e-06, + "tae": 3.24e-06, + "thornton": 3.24e-06, + "tibetan": 3.24e-06, + "tighten": 3.24e-06, + "townsend": 3.24e-06, + "trenches": 3.24e-06, + "trustworthy": 3.24e-06, + "tvs": 2.19e-06, + "twelfth": 3.24e-06, + "tyre": 3.24e-06, + "ultrasound": 3.24e-06, + "usher": 3.24e-06, + "vacations": 3.24e-06, + "vascular": 3.24e-06, + "vets": 2.19e-07, + "watkins": 3.24e-06, + "weiss": 3.24e-06, + "wholesome": 3.24e-06, + "wiley": 3.24e-06, + "witnessing": 3.24e-06, + "workouts": 3.24e-06, + "yielded": 3.24e-06, + "yorks": 3.09e-07, + "absorbing": 3.16e-06, + "adapting": 3.16e-06, + "addicts": 6.31e-08, + "adjoining": 3.16e-06, + "albuquerque": 3.16e-06, + "allegation": 3.16e-06, + "alternating": 3.16e-06, + "ancestry": 3.16e-06, + "ankles": 3.16e-06, + "annex": 3.16e-06, + "annexed": 3.16e-06, + "antibiotic": 3.16e-06, + "arresting": 3.16e-06, + "augmented": 3.16e-06, + "avenues": 5.5e-08, + "avid": 3.16e-06, + "avoids": 3.16e-06, + "badges": 3.16e-06, + "barbados": 3.16e-06, + "barge": 3.16e-06, + "bartender": 3.16e-06, + "bert": 3.16e-06, + "birch": 3.16e-06, + "bland": 3.16e-06, + "blended": 3.16e-06, + "bohemian": 3.16e-06, + "bong": 3.16e-06, + "bounded": 3.16e-06, + "bows": 3.16e-06, + "breastfeeding": 3.16e-06, + "bribe": 3.16e-06, + "bridal": 3.16e-06, + "broadcasts": 3.16e-06, + "broccoli": 3.16e-06, + "brushing": 3.16e-06, + "buckets": 3.16e-06, + "buckle": 3.16e-06, + "burlington": 3.16e-06, + "bursts": 3.16e-06, + "cannes": 3.16e-06, + "canoe": 3.16e-06, + "centred": 3.16e-06, + "chilly": 3.16e-06, + "chords": 3.16e-06, + "chu": 3.16e-06, + "cider": 3.16e-06, + "clowns": 1.02e-07, + "clueless": 3.16e-06, + "cobb": 3.16e-06, + "consciously": 3.16e-06, + "corpses": 3.16e-06, + "correlated": 3.16e-06, + "correspond": 3.16e-06, + "cradle": 3.16e-06, + "crappy": 3.16e-06, + "crippled": 3.16e-06, + "damien": 3.16e-06, + "dayton": 3.16e-06, + "decency": 3.16e-06, + "deficits": 3.16e-06, + "despise": 3.16e-06, + "destroyer": 3.16e-06, + "diocese": 3.16e-06, + "dispersed": 3.16e-06, + "docs": 3.31e-07, + "doorstep": 3.16e-06, + "eliot": 3.16e-06, + "embarked": 3.16e-06, + "enriched": 3.16e-06, + "equip": 3.16e-06, + "faa": 3.16e-06, + "fellas": 6.31e-08, + "foley": 3.16e-06, + "footing": 3.16e-06, + "fulton": 3.16e-06, + "garments": 3.16e-06, + "glamorous": 3.16e-06, + "goldberg": 3.16e-06, + "growers": 3.16e-06, + "handler": 3.16e-06, + "hangover": 3.16e-06, + "haters": 3.16e-06, + "havoc": 3.16e-06, + "hee": 3.16e-06, + "hind": 3.16e-06, + "hitter": 3.16e-06, + "hive": 3.16e-06, + "homophobic": 3.16e-06, + "honolulu": 3.16e-06, + "humid": 3.16e-06, + "hyderabad": 3.16e-06, + "illuminated": 3.16e-06, + "imam": 3.16e-06, + "implants": 3.16e-06, + "indicted": 3.16e-06, + "inexperienced": 3.16e-06, + "influencing": 3.16e-06, + "invading": 3.16e-06, + "irritated": 3.16e-06, + "jackpot": 3.16e-06, + "javascript": 3.16e-06, + "jurassic": 3.16e-06, + "kangaroo": 3.16e-06, + "ke": 3.16e-06, + "klaus": 3.16e-06, + "knowingly": 3.16e-06, + "kuala": 3.16e-06, + "legged": 3.16e-06, + "lex": 3.16e-06, + "liberalism": 3.16e-06, + "liberia": 3.16e-06, + "lithuania": 3.16e-06, + "litre": 3.16e-06, + "locomotive": 3.16e-06, + "longing": 3.16e-06, + "lsu": 3.16e-06, + "mailed": 3.16e-06, + "manny": 3.16e-06, + "mantra": 3.16e-06, + "mapped": 3.16e-06, + "marcel": 3.16e-06, + "mating": 3.16e-06, + "mckay": 3.16e-06, + "mesa": 3.16e-06, + "microscope": 3.16e-06, + "milky": 3.16e-06, + "mixer": 3.16e-06, + "modeled": 3.16e-06, + "moe": 3.16e-06, + "monumental": 3.16e-06, + "moth": 3.16e-06, + "multiply": 3.16e-06, + "mv": 3.16e-06, + "narcotics": 3.16e-06, + "nicky": 3.16e-06, + "nuggets": 3.16e-06, + "nuisance": 3.16e-06, + "obedience": 3.16e-06, + "objected": 3.16e-06, + "obligated": 3.16e-06, + "organise": 3.16e-06, + "outing": 3.16e-06, + "overdue": 3.16e-06, + "overload": 3.16e-06, + "parasites": 3.16e-06, + "payable": 3.16e-06, + "paycheck": 3.16e-06, + "peaches": 3.16e-06, + "peaked": 3.16e-06, + "picturesque": 3.16e-06, + "pilgrimage": 3.16e-06, + "pillows": 3.16e-06, + "pivot": 3.16e-06, + "pivotal": 3.16e-06, + "por": 3.16e-06, + "pressured": 3.16e-06, + "preventive": 3.16e-06, + "primer": 3.16e-06, + "profitability": 3.16e-06, + "progressing": 3.16e-06, + "provoke": 3.16e-06, + "pulmonary": 3.16e-06, + "punishing": 3.16e-06, + "rad": 3.16e-06, + "radicals": 3.16e-06, + "raspberry": 3.16e-06, + "reconcile": 3.16e-06, + "regression": 3.16e-06, + "resilient": 3.16e-06, + "roaming": 3.16e-06, + "router": 3.16e-06, + "routines": 3.16e-06, + "ru": 3.16e-06, + "ryder": 3.16e-06, + "sabbath": 3.16e-06, + "schneider": 3.16e-06, + "schwartz": 3.16e-06, + "scouting": 3.16e-06, + "secretaries": 3.16e-06, + "selfies": 3.16e-06, + "seminars": 3.16e-06, + "shortages": 3.16e-06, + "shortened": 3.16e-06, + "shovel": 3.16e-06, + "skinner": 3.16e-06, + "smelled": 3.16e-06, + "smh": 3.16e-06, + "societys": 3.16e-06, + "specializes": 3.16e-06, + "splits": 3.16e-06, + "staggering": 3.16e-06, + "statutes": 3.16e-06, + "striving": 3.16e-06, + "suing": 3.16e-06, + "surname": 3.16e-06, + "synonymous": 3.16e-06, + "tackling": 3.16e-06, + "tai": 3.16e-06, + "tallest": 3.16e-06, + "taped": 3.16e-06, + "tedious": 3.16e-06, + "toxins": 3.16e-06, + "troubling": 3.16e-06, + "tug": 3.16e-06, + "twists": 3.16e-06, + "utilization": 3.16e-06, + "volkswagen": 3.16e-06, + "walkers": 1.29e-06, + "wink": 3.16e-06, + "woodward": 3.16e-06, + "yugoslavia": 3.16e-06, + "actresses": 3.09e-06, + "adhd": 3.09e-06, + "ae": 3.09e-06, + "alonso": 3.09e-06, + "ancestor": 3.09e-06, + "arbor": 3.09e-06, + "astronomical": 3.09e-06, + "attends": 3.09e-06, + "attire": 3.09e-06, + "authored": 3.09e-06, + "autograph": 3.09e-06, + "automobiles": 3.09e-06, + "ava": 3.09e-06, + "axle": 3.09e-06, + "barley": 3.09e-06, + "bd": 3.09e-06, + "beyonce": 3.09e-06, + "bitten": 3.09e-06, + "blasted": 3.09e-06, + "blasts": 3.09e-06, + "botanical": 3.09e-06, + "bottled": 3.09e-06, + "braces": 3.09e-06, + "brag": 3.09e-06, + "breakout": 3.09e-06, + "bumped": 3.09e-06, + "bursting": 3.09e-06, + "catchy": 3.09e-06, + "cbc": 3.09e-06, + "ceremonial": 3.09e-06, + "chanel": 3.09e-06, + "cheque": 3.09e-06, + "chilled": 3.09e-06, + "cho": 3.09e-06, + "choreography": 3.09e-06, + "cisco": 3.09e-06, + "clarified": 3.09e-06, + "cling": 3.09e-06, + "coco": 3.09e-06, + "coincide": 3.09e-06, + "comedians": 1.29e-07, + "commemorate": 3.09e-06, + "commits": 3.09e-06, + "concurrent": 3.09e-06, + "corrupted": 3.09e-06, + "coventry": 3.09e-06, + "crocodile": 3.09e-06, + "cub": 3.09e-06, + "derrick": 3.09e-06, + "diaper": 3.09e-06, + "differentiation": 3.09e-06, + "dine": 3.09e-06, + "disadvantaged": 3.09e-06, + "disadvantages": 3.09e-06, + "disagreed": 3.09e-06, + "dissolve": 3.09e-06, + "diverted": 3.09e-06, + "dubious": 3.09e-06, + "dudley": 3.09e-06, + "durant": 3.09e-06, + "eagerly": 3.09e-06, + "ecclesiastical": 3.09e-06, + "edt": 3.09e-06, + "egyptians": 3.09e-06, + "elk": 3.09e-06, + "englands": 8.71e-08, + "enlightened": 3.09e-06, + "erased": 3.09e-06, + "escorted": 3.09e-06, + "eur": 3.09e-06, + "exhaustion": 3.09e-06, + "expectancy": 3.09e-06, + "famously": 3.09e-06, + "fella": 3.09e-06, + "fielding": 3.09e-06, + "fingerprint": 3.09e-06, + "fisherman": 3.09e-06, + "flap": 3.09e-06, + "folklore": 3.09e-06, + "forgiving": 3.09e-06, + "fractured": 3.09e-06, + "galactic": 3.09e-06, + "gardener": 3.09e-06, + "getty": 3.09e-06, + "glee": 3.09e-06, + "grassroots": 3.09e-06, + "gravitational": 3.09e-06, + "grazing": 3.09e-06, + "guinness": 3.09e-06, + "gunshot": 3.09e-06, + "habitats": 3.09e-06, + "hailed": 3.09e-06, + "hereditary": 3.09e-06, + "hiatus": 3.09e-06, + "homestead": 3.09e-06, + "horribly": 3.09e-06, + "horsepower": 3.09e-06, + "hue": 3.09e-06, + "icing": 3.09e-06, + "idols": 1.45e-07, + "ikea": 3.09e-06, + "insurers": 1e-07, + "intellect": 3.09e-06, + "intellectuals": 3.09e-06, + "intending": 3.09e-06, + "interchange": 3.09e-06, + "isabella": 3.09e-06, + "jihad": 3.09e-06, + "juventus": 3.09e-06, + "kidneys": 3.09e-06, + "knob": 3.09e-06, + "kristen": 3.09e-06, + "lahore": 3.09e-06, + "lapse": 3.09e-06, + "laundering": 3.09e-06, + "ledger": 3.09e-06, + "liga": 3.09e-06, + "loaf": 3.09e-06, + "lodged": 3.09e-06, + "login": 3.09e-06, + "loot": 3.09e-06, + "lorenzo": 3.09e-06, + "magnesium": 3.09e-06, + "malware": 3.09e-06, + "mclaren": 3.09e-06, + "mimic": 3.09e-06, + "mindful": 3.09e-06, + "motorcycles": 3.09e-06, + "mural": 3.09e-06, + "murdoch": 3.09e-06, + "musk": 3.09e-06, + "mustve": 5.62e-08, + "myriad": 3.09e-06, + "nan": 3.09e-06, + "nasal": 3.09e-06, + "nautical": 3.09e-06, + "neatly": 3.09e-06, + "negativity": 3.09e-06, + "northampton": 3.09e-06, + "noteworthy": 3.09e-06, + "nuns": 1.45e-07, + "odor": 3.09e-06, + "oprah": 3.09e-06, + "organising": 3.09e-06, + "overturned": 3.09e-06, + "overwatch": 3.09e-06, + "paddle": 3.09e-06, + "parrot": 3.09e-06, + "partying": 3.09e-06, + "patel": 3.09e-06, + "peg": 3.09e-06, + "pesticides": 3.09e-06, + "pixels": 3.09e-06, + "plunge": 3.09e-06, + "powerless": 3.09e-06, + "pragmatic": 3.09e-06, + "primaries": 3.09e-06, + "quasi": 3.09e-06, + "quentin": 3.09e-06, + "radiant": 3.09e-06, + "ramsay": 3.09e-06, + "reese": 3.09e-06, + "refinery": 3.09e-06, + "regained": 3.09e-06, + "reich": 3.09e-06, + "remorse": 3.09e-06, + "reopened": 3.09e-06, + "revoked": 3.09e-06, + "rhymes": 3.09e-06, + "rpm": 3.09e-06, + "sanity": 3.09e-06, + "scandinavian": 3.09e-06, + "scotia": 3.09e-06, + "scratched": 3.09e-06, + "sears": 3.09e-06, + "ser": 3.09e-06, + "sergei": 3.09e-06, + "sharia": 1.66e-07, + "showdown": 3.09e-06, + "shuffle": 3.09e-06, + "shuts": 3.09e-06, + "siding": 3.09e-06, + "simulated": 3.09e-06, + "skyline": 3.09e-06, + "slab": 3.09e-06, + "sprayed": 3.09e-06, + "stacks": 3.09e-06, + "startups": 6.92e-08, + "stocking": 3.09e-06, + "suarez": 3.09e-06, + "subscriptions": 3.09e-06, + "suites": 5.01e-08, + "supplemental": 3.09e-06, + "suspicions": 3.09e-06, + "swimmer": 3.09e-06, + "tao": 3.09e-06, + "tariff": 3.09e-06, + "techno": 3.09e-06, + "teller": 3.09e-06, + "textiles": 3.09e-06, + "therapies": 3.09e-06, + "trance": 3.09e-06, + "translating": 3.09e-06, + "traveller": 3.09e-06, + "unconditional": 3.09e-06, + "unforgettable": 3.09e-06, + "vacancies": 3.09e-06, + "violates": 3.09e-06, + "volatility": 3.09e-06, + "weaken": 3.09e-06, + "webcam": 3.09e-06, + "wen": 3.09e-06, + "weston": 3.09e-06, + "xavier": 3.09e-06, + "yorker": 3.09e-06, + "abel": 3.02e-06, + "abolish": 3.02e-06, + "aca": 3.02e-06, + "accessing": 3.02e-06, + "accommodations": 3.02e-06, + "accumulate": 3.02e-06, + "admirable": 3.02e-06, + "adventurous": 3.02e-06, + "africas": 3.02e-06, + "ajax": 3.02e-06, + "alarmed": 3.02e-06, + "ama": 3.02e-06, + "ammo": 3.02e-06, + "amos": 3.02e-06, + "analysed": 3.02e-06, + "andreas": 2e-07, + "angelina": 3.02e-06, + "anthology": 3.02e-06, + "antiques": 3.02e-06, + "anyhow": 3.02e-06, + "ape": 3.02e-06, + "arrivals": 3.02e-06, + "assaults": 3.02e-06, + "assemblies": 3.02e-06, + "auditor": 3.02e-06, + "avalanche": 3.02e-06, + "azerbaijan": 3.02e-06, + "badger": 3.02e-06, + "ballistic": 3.02e-06, + "banter": 3.02e-06, + "becker": 3.02e-06, + "bidder": 3.02e-06, + "birthdays": 1.95e-07, + "blackburn": 3.02e-06, + "blazing": 3.02e-06, + "blockbuster": 3.02e-06, + "blueprint": 3.02e-06, + "bodied": 3.02e-06, + "boosted": 3.02e-06, + "bowler": 3.02e-06, + "broadcasters": 1.02e-07, + "byrne": 3.02e-06, + "cadillac": 3.02e-06, + "cameo": 3.02e-06, + "canals": 7.59e-08, + "caramel": 3.02e-06, + "cassidy": 3.02e-06, + "charismatic": 3.02e-06, + "chromosome": 3.02e-06, + "chunks": 3.02e-06, + "churchs": 3.02e-06, + "clarkson": 3.02e-06, + "claus": 3.02e-06, + "comcast": 3.02e-06, + "commencement": 3.02e-06, + "concede": 3.02e-06, + "conducts": 3.02e-06, + "confiscated": 3.02e-06, + "contestant": 3.02e-06, + "contradictory": 3.02e-06, + "convent": 3.02e-06, + "converse": 3.02e-06, + "correcting": 3.02e-06, + "corrosion": 3.02e-06, + "crib": 3.02e-06, + "crossroads": 3.02e-06, + "dearly": 3.02e-06, + "defiance": 3.02e-06, + "deter": 3.02e-06, + "diner": 3.02e-06, + "dipping": 3.02e-06, + "disneyland": 3.02e-06, + "disposition": 3.02e-06, + "djs": 6.03e-07, + "documentaries": 3.02e-06, + "dripping": 3.02e-06, + "ecstasy": 3.02e-06, + "eighteenth": 3.02e-06, + "eleventh": 3.02e-06, + "eliza": 3.02e-06, + "emphasizes": 3.02e-06, + "empowering": 3.02e-06, + "engagements": 3.02e-06, + "enrique": 3.02e-06, + "envoy": 3.02e-06, + "estonia": 3.02e-06, + "expiration": 3.02e-06, + "exploiting": 3.02e-06, + "expressly": 3.02e-06, + "fabrication": 3.02e-06, + "facilitated": 3.02e-06, + "faggot": 3.02e-06, + "fascination": 3.02e-06, + "fir": 3.02e-06, + "foreigner": 3.02e-06, + "formulation": 3.02e-06, + "francs": 3.02e-06, + "frontal": 3.02e-06, + "fullest": 3.02e-06, + "fungi": 3.02e-06, + "goalie": 3.02e-06, + "gonzalez": 3.02e-06, + "gradient": 3.02e-06, + "gravy": 3.02e-06, + "grenades": 3.02e-06, + "gwen": 3.02e-06, + "haley": 3.02e-06, + "harmed": 3.02e-06, + "herring": 3.02e-06, + "hires": 3.02e-06, + "hopper": 3.02e-06, + "hugging": 3.02e-06, + "hysterical": 3.02e-06, + "implant": 3.02e-06, + "incompatible": 3.02e-06, + "inducing": 3.02e-06, + "injunction": 3.02e-06, + "innate": 3.02e-06, + "instituted": 3.02e-06, + "iphones": 3.47e-07, + "jays": 7.59e-07, + "jeremiah": 3.02e-06, + "jude": 3.02e-06, + "kathryn": 3.02e-06, + "kd": 3.02e-06, + "keynote": 3.02e-06, + "kidnap": 3.02e-06, + "kiev": 3.02e-06, + "koreans": 5.13e-08, + "krishna": 3.02e-06, + "lama": 3.02e-06, + "learners": 1.86e-07, + "liquids": 3.02e-06, + "mclean": 3.02e-06, + "meats": 6.61e-08, + "michele": 3.02e-06, + "motivational": 3.02e-06, + "naruto": 3.02e-06, + "natasha": 3.02e-06, + "nightly": 3.02e-06, + "noir": 3.02e-06, + "normandy": 3.02e-06, + "notwithstanding": 3.02e-06, + "ns": 2.29e-07, + "ordained": 3.02e-06, + "originating": 3.02e-06, + "orphans": 5.89e-08, + "pans": 3.16e-07, + "paralysis": 3.02e-06, + "patiently": 3.02e-06, + "patrols": 1.23e-07, + "pauline": 3.02e-06, + "paw": 3.02e-06, + "pharmaceuticals": 3.02e-06, + "pianist": 3.02e-06, + "pickles": 3.02e-06, + "pilgrims": 2.51e-07, + "pinterest": 3.02e-06, + "pisses": 3.02e-06, + "placebo": 3.02e-06, + "podcasts": 3.02e-06, + "pointers": 3.02e-06, + "postpone": 3.02e-06, + "progressively": 3.02e-06, + "propelled": 3.02e-06, + "psa": 3.02e-06, + "psych": 3.02e-06, + "punt": 3.02e-06, + "rae": 3.02e-06, + "raptors": 3.02e-06, + "reinforcements": 3.02e-06, + "repetition": 3.02e-06, + "restraining": 3.02e-06, + "retrospective": 3.02e-06, + "revise": 3.02e-06, + "righteousness": 3.02e-06, + "rinse": 3.02e-06, + "robbins": 3.02e-06, + "rss": 3.02e-06, + "sal": 3.02e-06, + "scalp": 3.02e-06, + "schultz": 3.02e-06, + "scrolling": 3.02e-06, + "sealing": 3.02e-06, + "sharma": 3.02e-06, + "sheds": 3.02e-06, + "sheltered": 3.02e-06, + "shia": 2.19e-07, + "shutter": 3.02e-06, + "smartest": 3.02e-06, + "snatched": 3.02e-06, + "sooo": 3.02e-06, + "spans": 3.02e-06, + "sparrow": 3.02e-06, + "speculate": 3.02e-06, + "spinach": 3.02e-06, + "squat": 3.02e-06, + "stew": 3.02e-06, + "stirling": 3.02e-06, + "stoned": 3.02e-06, + "strauss": 3.02e-06, + "stressing": 3.02e-06, + "styling": 3.02e-06, + "sublime": 3.02e-06, + "subtitles": 3.02e-06, + "sunni": 3.02e-06, + "sweetness": 3.02e-06, + "teamwork": 3.02e-06, + "tequila": 3.02e-06, + "terrestrial": 3.02e-06, + "textures": 3.02e-06, + "thinkers": 3.02e-06, + "thorn": 3.02e-06, + "thug": 3.02e-06, + "tit": 3.02e-06, + "toned": 3.02e-06, + "totals": 3.02e-06, + "triggering": 3.02e-06, + "tulsa": 3.02e-06, + "twenties": 3.02e-06, + "ufo": 3.02e-06, + "uncover": 3.02e-06, + "unnatural": 3.02e-06, + "unstoppable": 3.02e-06, + "upfront": 3.02e-06, + "urgently": 3.02e-06, + "virginity": 3.02e-06, + "virtues": 3.02e-06, + "volvo": 3.02e-06, + "vouchers": 3.02e-06, + "waived": 3.02e-06, + "wharf": 3.02e-06, + "wiser": 3.02e-06, + "wrestle": 3.02e-06, + "xv": 3.02e-06, + "yates": 3.02e-06, + "yoo": 3.02e-06, + "aap": 2.95e-06, + "accountants": 8.51e-08, + "achilles": 2.95e-06, + "addison": 2.95e-06, + "aggravated": 2.95e-06, + "ahhh": 2.95e-06, + "alberto": 2.95e-06, + "alleging": 2.95e-06, + "alto": 2.95e-06, + "ambrose": 2.95e-06, + "analyse": 2.95e-06, + "anomaly": 2.95e-06, + "aperture": 2.95e-06, + "apostles": 2.95e-06, + "apprenticeship": 2.95e-06, + "aspire": 2.95e-06, + "benches": 2.95e-06, + "biodiversity": 2.95e-06, + "biomedical": 2.95e-06, + "blinded": 2.95e-06, + "blurred": 2.95e-06, + "boarded": 2.95e-06, + "breadth": 2.95e-06, + "bullies": 2.95e-06, + "buster": 2.95e-06, + "cascade": 2.95e-06, + "casinos": 2.19e-07, + "centralized": 2.95e-06, + "char": 2.95e-06, + "cleanse": 2.95e-06, + "complains": 2.95e-06, + "concord": 2.95e-06, + "connector": 2.95e-06, + "connie": 2.95e-06, + "consolidate": 2.95e-06, + "containment": 2.95e-06, + "coupling": 2.95e-06, + "crate": 2.95e-06, + "crave": 2.95e-06, + "crows": 4.27e-07, + "dane": 2.95e-06, + "dangerously": 2.95e-06, + "denounced": 2.95e-06, + "dillon": 2.95e-06, + "diluted": 2.95e-06, + "doping": 2.95e-06, + "eddy": 2.95e-06, + "elusive": 2.95e-06, + "espionage": 2.95e-06, + "establishes": 2.95e-06, + "existential": 2.95e-06, + "experimentation": 2.95e-06, + "extremes": 2.95e-06, + "extremists": 2.95e-06, + "fanny": 2.95e-06, + "flashback": 2.95e-06, + "fluctuations": 2.95e-06, + "forecasting": 2.95e-06, + "freud": 2.95e-06, + "friedman": 2.95e-06, + "funnel": 2.95e-06, + "gail": 2.95e-06, + "gloss": 2.95e-06, + "grading": 2.95e-06, + "graft": 2.95e-06, + "grips": 2.95e-06, + "grumpy": 2.95e-06, + "guise": 2.95e-06, + "halves": 2.95e-06, + "heightened": 2.95e-06, + "horizons": 7.94e-08, + "hush": 2.95e-06, + "ibn": 2.95e-06, + "imitation": 2.95e-06, + "immersion": 2.95e-06, + "inconvenient": 2.95e-06, + "inspires": 2.95e-06, + "interfaces": 2.95e-06, + "intrigued": 2.95e-06, + "intrinsic": 2.95e-06, + "irans": 2.95e-06, + "irresistible": 2.95e-06, + "javier": 2.95e-06, + "jd": 2.95e-06, + "jk": 2.95e-06, + "joanne": 2.95e-06, + "kb": 2.95e-06, + "kittens": 1.05e-07, + "landmarks": 2.95e-06, + "landslide": 2.95e-06, + "lcd": 2.95e-06, + "leah": 2.95e-06, + "leash": 2.95e-06, + "makeover": 2.95e-06, + "manned": 2.95e-06, + "marcos": 2.09e-07, + "mata": 2.95e-06, + "mater": 2.95e-06, + "maureen": 2.95e-06, + "melodies": 2.95e-06, + "memorandum": 2.95e-06, + "mercer": 2.95e-06, + "mermaid": 2.95e-06, + "michaels": 2.57e-06, + "miriam": 2.95e-06, + "moderation": 2.95e-06, + "moroccan": 2.95e-06, + "nano": 2.95e-06, + "neymar": 2.95e-06, + "ngos": 2e-07, + "nobility": 2.95e-06, + "notation": 2.95e-06, + "onstage": 2.95e-06, + "ordeal": 2.95e-06, + "ox": 2.95e-06, + "painfully": 2.95e-06, + "paranormal": 2.95e-06, + "paso": 2.95e-06, + "pear": 2.95e-06, + "piston": 2.95e-06, + "plugs": 2.95e-06, + "politely": 2.95e-06, + "pollen": 2.95e-06, + "principals": 4.37e-07, + "provoking": 2.95e-06, + "pts": 8.13e-08, + "puberty": 2.95e-06, + "raided": 2.95e-06, + "railroads": 9.12e-08, + "ramos": 2.95e-06, + "rbi": 2.95e-06, + "reggae": 2.95e-06, + "relegated": 2.95e-06, + "respectfully": 2.95e-06, + "rethink": 2.95e-06, + "reviewer": 2.95e-06, + "reviewers": 6.46e-08, + "rewrite": 2.95e-06, + "rodeo": 2.95e-06, + "sas": 3.63e-07, + "sheridan": 2.95e-06, + "sherwood": 2.95e-06, + "shire": 2.95e-06, + "sinks": 2.95e-06, + "slit": 2.95e-06, + "snapping": 2.95e-06, + "sobbing": 2.95e-06, + "spitting": 2.95e-06, + "starved": 2.95e-06, + "stirred": 2.95e-06, + "stockings": 2.95e-06, + "stuffing": 2.95e-06, + "substituted": 2.95e-06, + "succeeds": 2.95e-06, + "summons": 2.95e-06, + "sutherland": 2.95e-06, + "swung": 2.95e-06, + "taboo": 2.95e-06, + "teaser": 2.95e-06, + "thatcher": 2.95e-06, + "throttle": 2.95e-06, + "tides": 9.77e-08, + "trendy": 2.95e-06, + "trimmed": 2.95e-06, + "trivia": 2.95e-06, + "turbulent": 2.95e-06, + "twisting": 2.95e-06, + "unbearable": 2.95e-06, + "underage": 2.95e-06, + "unleashed": 2.95e-06, + "unmarried": 2.95e-06, + "vaguely": 2.95e-06, + "veggies": 2.95e-06, + "visas": 1.05e-07, + "vortex": 2.95e-06, + "voucher": 2.95e-06, + "wand": 2.95e-06, + "wanderers": 2.95e-06, + "warmed": 2.95e-06, + "accelerating": 2.88e-06, + "advert": 2.88e-06, + "afforded": 2.88e-06, + "ain": 2.88e-06, + "alias": 3.72e-08, + "anaheim": 2.88e-06, + "anchored": 2.88e-06, + "annoy": 2.88e-06, + "antibody": 2.88e-06, + "apostle": 2.88e-06, + "appalling": 2.88e-06, + "applaud": 2.88e-06, + "arteries": 2.88e-06, + "asians": 2.88e-06, + "astronauts": 8.51e-08, + "baptized": 2.88e-06, + "barr": 2.88e-06, + "belarus": 2.88e-06, + "billie": 2.88e-06, + "bondage": 2.88e-06, + "boredom": 2.88e-06, + "bounced": 2.88e-06, + "bowman": 2.88e-06, + "breeders": 6.92e-08, + "brilliantly": 2.88e-06, + "brunch": 2.88e-06, + "buckley": 2.88e-06, + "burgundy": 2.88e-06, + "cabinets": 1.41e-07, + "carlisle": 2.88e-06, + "carolyn": 2.88e-06, + "castles": 4.27e-07, + "changer": 2.88e-06, + "che": 2.88e-06, + "chem": 2.88e-06, + "chestnut": 2.88e-06, + "cj": 2.88e-06, + "cleaners": 6.92e-08, + "cleanup": 2.88e-06, + "clemson": 2.88e-06, + "cocks": 2.88e-06, + "compose": 2.88e-06, + "concise": 2.88e-06, + "confinement": 2.88e-06, + "confronting": 2.88e-06, + "consultancy": 2.88e-06, + "contraction": 2.88e-06, + "contrasting": 2.88e-06, + "convergence": 2.88e-06, + "coughing": 2.88e-06, + "criterion": 2.88e-06, + "crossings": 2.88e-06, + "crowns": 2.75e-07, + "cummings": 2.88e-06, + "cylinders": 2.88e-06, + "deduction": 2.88e-06, + "despicable": 2.88e-06, + "detachment": 2.88e-06, + "detectors": 2.88e-06, + "dialog": 2.88e-06, + "digestive": 2.88e-06, + "diminish": 2.88e-06, + "disclaimer": 2.88e-06, + "disconnect": 2.88e-06, + "discriminatory": 2.88e-06, + "disruptive": 2.88e-06, + "dorset": 2.88e-06, + "dvds": 2.63e-07, + "endlessly": 2.88e-06, + "enthusiast": 2.88e-06, + "epilepsy": 2.88e-06, + "estimation": 2.88e-06, + "ethanol": 2.88e-06, + "excavation": 2.88e-06, + "extremist": 2.88e-06, + "feeder": 2.88e-06, + "flashlight": 2.88e-06, + "flattering": 2.88e-06, + "floats": 2.88e-06, + "forcibly": 2.88e-06, + "gao": 2.88e-06, + "garland": 2.88e-06, + "globalization": 2.88e-06, + "grail": 2.88e-06, + "graphical": 2.88e-06, + "grayson": 2.88e-06, + "groundbreaking": 2.88e-06, + "grouping": 2.88e-06, + "harding": 2.88e-06, + "holiness": 2.88e-06, + "horrifying": 2.88e-06, + "humiliating": 2.88e-06, + "iced": 2.88e-06, + "ida": 1.35e-08, + "illustrator": 2.88e-06, + "imbalance": 2.88e-06, + "immoral": 2.88e-06, + "implicated": 2.88e-06, + "inefficient": 2.88e-06, + "initials": 2.88e-06, + "instrumentation": 2.88e-06, + "intensified": 2.88e-06, + "intolerance": 2.88e-06, + "jacksons": 2.88e-07, + "jeez": 2.88e-06, + "johnsons": 3.89e-07, + "jurors": 2.88e-06, + "kappa": 2.88e-06, + "keepers": 2.88e-07, + "kendrick": 2.88e-06, + "ketchup": 2.88e-06, + "leukemia": 2.88e-06, + "levine": 2.88e-06, + "liars": 1.29e-07, + "lineage": 2.88e-06, + "liter": 2.88e-06, + "looting": 2.88e-06, + "lorraine": 2.88e-06, + "lyons": 1.95e-07, + "magnus": 2.88e-06, + "manpower": 2.88e-06, + "marley": 2.88e-06, + "martyr": 2.88e-06, + "masturbation": 2.88e-06, + "mitigation": 2.88e-06, + "mont": 2.88e-06, + "motorway": 2.88e-06, + "nk": 2.88e-06, + "npr": 2.88e-06, + "nypd": 2.88e-06, + "obscene": 2.88e-06, + "occupants": 2.88e-06, + "octopus": 2.88e-06, + "onward": 2.88e-06, + "operatives": 2.88e-06, + "opium": 2.88e-06, + "ovarian": 2.88e-06, + "peck": 2.88e-06, + "penal": 2.88e-06, + "permitting": 2.88e-06, + "petals": 2.88e-06, + "picasso": 2.88e-06, + "pierced": 2.88e-06, + "pistols": 2.88e-06, + "plank": 2.88e-06, + "plantations": 2.88e-06, + "plight": 2.88e-06, + "ponds": 1.05e-07, + "postseason": 2.88e-06, + "presiding": 2.88e-06, + "privy": 2.88e-06, + "propulsion": 2.88e-06, + "raft": 2.88e-06, + "registering": 2.88e-06, + "rejoice": 2.88e-06, + "relics": 2.88e-06, + "ren": 2.88e-06, + "reproduced": 2.88e-06, + "rihanna": 2.88e-06, + "roam": 2.88e-06, + "rubio": 2.88e-06, + "sandals": 2.88e-06, + "serpent": 2.88e-06, + "sesame": 2.88e-06, + "shepard": 2.88e-06, + "shi": 2.88e-06, + "shoved": 2.88e-06, + "sicily": 2.88e-06, + "simplify": 2.88e-06, + "siren": 2.88e-06, + "slater": 2.88e-06, + "sleeper": 2.88e-06, + "smear": 2.88e-06, + "snowy": 2.88e-06, + "soooo": 2.88e-06, + "spectral": 2.88e-06, + "spoilers": 2.88e-06, + "stabilize": 2.88e-06, + "stains": 2.88e-06, + "stalk": 2.88e-06, + "standings": 2.88e-06, + "statesman": 2.88e-06, + "stink": 2.88e-06, + "stormy": 2.88e-06, + "subcommittee": 2.88e-06, + "suffice": 2.88e-06, + "surrounds": 2.88e-06, + "swat": 2.88e-06, + "swine": 2.88e-06, + "symbolism": 2.88e-06, + "tangled": 2.88e-06, + "ticking": 2.88e-06, + "tram": 2.88e-06, + "tryin": 2.88e-06, + "tutorials": 2.88e-06, + "underwood": 2.88e-06, + "underworld": 2.88e-06, + "vectors": 2.88e-06, + "vertically": 2.88e-06, + "vigorous": 2.88e-06, + "vt": 2.88e-06, + "wandered": 2.88e-06, + "wei": 2.88e-06, + "wrongly": 2.88e-06, + "yum": 2.88e-06, + "zion": 2.88e-06, + "abiding": 2.82e-06, + "adele": 2.82e-06, + "alcoholism": 2.82e-06, + "amplifier": 2.82e-06, + "anc": 2.82e-06, + "apes": 2.82e-06, + "arches": 2.82e-06, + "armys": 1.17e-07, + "astounding": 2.82e-06, + "atheism": 2.82e-06, + "auctions": 5.13e-08, + "audible": 2.82e-06, + "avocado": 2.82e-06, + "avon": 2.82e-06, + "bangs": 1e-07, + "bashing": 2.82e-06, + "baskets": 2.82e-06, + "bathtub": 2.82e-06, + "beep": 2.82e-06, + "beneficiaries": 2.82e-06, + "biscuit": 2.82e-06, + "bitterness": 2.82e-06, + "blatant": 2.82e-06, + "boon": 2.82e-06, + "boyfriends": 1.7e-06, + "brat": 2.82e-06, + "bunk": 2.82e-06, + "californias": 8.51e-08, + "candid": 2.82e-06, + "caretaker": 2.82e-06, + "carts": 2.82e-06, + "ceilings": 2.82e-06, + "cervical": 2.82e-06, + "checklist": 2.82e-06, + "cherokee": 2.82e-06, + "cheshire": 2.82e-06, + "christs": 1.7e-07, + "cinderella": 2.82e-06, + "clamp": 2.82e-06, + "clans": 2.45e-07, + "competitiveness": 2.82e-06, + "composers": 3.02e-07, + "confederation": 2.82e-06, + "confidentiality": 2.82e-06, + "configurations": 2.82e-06, + "contradiction": 2.82e-06, + "coronation": 2.82e-06, + "counselling": 2.82e-06, + "cracker": 2.82e-06, + "crackers": 2.69e-08, + "crimea": 2.82e-06, + "cumberland": 2.82e-06, + "cunning": 2.82e-06, + "daly": 2.82e-06, + "depiction": 2.82e-06, + "depleted": 2.82e-06, + "diabetic": 2.82e-06, + "diaspora": 2.82e-06, + "digitally": 2.82e-06, + "discord": 2.82e-06, + "distractions": 2.82e-06, + "divides": 2.82e-06, + "divinity": 2.82e-06, + "donuts": 2.82e-06, + "dorsal": 2.82e-06, + "durability": 2.82e-06, + "empress": 2.82e-06, + "endeavour": 2.82e-06, + "enroll": 2.82e-06, + "entertainer": 2.82e-06, + "entrusted": 2.82e-06, + "ernie": 2.82e-06, + "evidenced": 2.82e-06, + "extracts": 2.82e-06, + "fallon": 2.82e-06, + "farrell": 2.82e-06, + "fatalities": 2.82e-06, + "festivities": 2.82e-06, + "ffs": 5.89e-08, + "finalist": 2.82e-06, + "footballers": 5.89e-08, + "forks": 2.82e-06, + "gadget": 2.82e-06, + "gasp": 2.82e-06, + "genital": 2.82e-06, + "glitch": 2.82e-06, + "gong": 2.82e-06, + "graded": 2.82e-06, + "graders": 5.01e-08, + "greasy": 2.82e-06, + "grieving": 2.82e-06, + "grooming": 2.82e-06, + "hacks": 2.82e-06, + "hamburger": 2.82e-06, + "heed": 2.82e-06, + "hideous": 2.82e-06, + "homepage": 2.82e-06, + "hoops": 2.82e-06, + "howell": 2.82e-06, + "ib": 2.82e-06, + "imaginative": 2.82e-06, + "imperfect": 2.82e-06, + "implicit": 2.82e-06, + "indo": 2.82e-06, + "inlet": 2.82e-06, + "insensitive": 2.82e-06, + "interpreting": 2.82e-06, + "islanders": 2.82e-06, + "iss": 7.24e-08, + "jars": 2.82e-06, + "keystone": 2.82e-06, + "knitting": 2.82e-06, + "kramer": 2.82e-06, + "kudos": 1.7e-08, + "layered": 2.82e-06, + "lieu": 2.82e-06, + "liquidity": 2.82e-06, + "loch": 2.82e-06, + "lola": 2.82e-06, + "lotion": 2.82e-06, + "lows": 1.26e-07, + "lucia": 2.82e-06, + "lutheran": 2.82e-06, + "mains": 5.25e-08, + "manipulating": 2.82e-06, + "mara": 2.82e-06, + "marquis": 2.82e-06, + "mayhem": 2.82e-06, + "merging": 2.82e-06, + "mistakenly": 2.82e-06, + "mould": 2.82e-06, + "neuroscience": 2.82e-06, + "niger": 2.82e-06, + "nipple": 2.82e-06, + "noses": 2.82e-06, + "nostalgic": 2.82e-06, + "nra": 2.82e-06, + "nv": 2.82e-06, + "oppressive": 2.82e-06, + "pasadena": 2.82e-06, + "patronage": 2.82e-06, + "pearce": 2.82e-06, + "pinnacle": 2.82e-06, + "plagued": 2.82e-06, + "plated": 2.82e-06, + "pods": 2.82e-06, + "pong": 2.82e-06, + "poorest": 2.82e-06, + "programmers": 8.91e-08, + "prompting": 2.82e-06, + "prosper": 2.82e-06, + "psi": 2.82e-06, + "quake": 2.82e-06, + "qualitative": 2.82e-06, + "queries": 2.82e-06, + "racer": 2.82e-06, + "radial": 2.82e-06, + "realms": 2.82e-06, + "recap": 2.82e-06, + "recognizable": 2.82e-06, + "reconnaissance": 2.82e-06, + "regent": 2.82e-06, + "reigning": 2.82e-06, + "reluctantly": 2.82e-06, + "rendition": 2.82e-06, + "resumes": 2.82e-06, + "revisions": 2.82e-06, + "roadside": 2.82e-06, + "rovers": 1.74e-07, + "saskatchewan": 2.82e-06, + "scarlett": 2.82e-06, + "scientifically": 2.82e-06, + "scrambled": 2.82e-06, + "scratches": 2.82e-06, + "secretariat": 2.82e-06, + "semitism": 2.82e-06, + "sew": 2.82e-06, + "shaky": 2.82e-06, + "sham": 2.82e-06, + "shortcomings": 2.82e-06, + "shredded": 2.82e-06, + "siberia": 2.82e-06, + "sinai": 2.82e-06, + "slayer": 2.82e-06, + "smokes": 6.03e-08, + "soothing": 2.82e-06, + "spawned": 2.82e-06, + "specialised": 2.82e-06, + "stalker": 2.82e-06, + "statistic": 2.82e-06, + "stature": 2.82e-06, + "steward": 2.82e-06, + "stout": 2.82e-06, + "strategically": 2.82e-06, + "stripper": 2.82e-06, + "stump": 2.82e-06, + "submarines": 5.37e-08, + "subordinate": 2.82e-06, + "swimmers": 1.15e-07, + "synagogue": 2.82e-06, + "tentative": 2.82e-06, + "texted": 2.82e-06, + "tongues": 2.82e-06, + "topical": 2.82e-06, + "transforms": 2.82e-06, + "uhh": 2.82e-06, + "uneasy": 2.82e-06, + "unfold": 2.82e-06, + "usda": 2.82e-06, + "uss": 5.37e-07, + "variance": 2.82e-06, + "vested": 2.82e-06, + "vols": 2.82e-06, + "wagons": 2.82e-06, + "wah": 2.82e-06, + "wally": 2.82e-06, + "walters": 4.17e-07, + "wavelength": 2.82e-06, + "workload": 2.82e-06, + "xii": 2.82e-06, + "yells": 2.82e-06, + "acquitted": 2.75e-06, + "admiralty": 2.75e-06, + "ageing": 2.75e-06, + "aiding": 2.75e-06, + "artificially": 2.75e-06, + "asa": 2.75e-06, + "aux": 2.75e-06, + "barring": 2.75e-06, + "bead": 2.75e-06, + "berth": 2.75e-06, + "billionaires": 1.74e-07, + "blackmail": 2.75e-06, + "blending": 2.75e-06, + "blindness": 2.75e-06, + "bragging": 2.75e-06, + "brightly": 2.75e-06, + "burglary": 2.75e-06, + "busting": 2.75e-06, + "cafeteria": 2.75e-06, + "canary": 2.75e-06, + "cannons": 1.45e-07, + "capacities": 2.75e-06, + "cardio": 2.75e-06, + "carla": 2.75e-06, + "caucasian": 2.75e-06, + "ceramics": 2.75e-06, + "cheats": 2.75e-06, + "chilean": 2.75e-06, + "clauses": 2.75e-06, + "clumsy": 2.75e-06, + "commuter": 2.75e-06, + "composing": 2.75e-06, + "contingency": 2.75e-06, + "coworkers": 1.1e-07, + "cupboard": 2.75e-06, + "curated": 2.75e-06, + "customized": 2.75e-06, + "daft": 2.75e-06, + "dani": 2.75e-06, + "defences": 5.5e-08, + "depended": 2.75e-06, + "deprivation": 2.75e-06, + "dewey": 2.75e-06, + "disneys": 2.75e-06, + "disqualified": 2.75e-06, + "disrupted": 2.75e-06, + "diversified": 2.75e-06, + "documenting": 2.75e-06, + "doubted": 2.75e-06, + "downing": 2.75e-06, + "duly": 2.75e-06, + "dusk": 2.75e-06, + "edits": 2.75e-06, + "enchanted": 2.75e-06, + "environmentally": 2.75e-06, + "episcopal": 2.75e-06, + "escalated": 2.75e-06, + "everlasting": 2.75e-06, + "excellency": 2.75e-06, + "executions": 2.75e-06, + "faking": 2.75e-06, + "feasibility": 2.75e-06, + "federally": 2.75e-06, + "flavored": 2.75e-06, + "formulas": 2.75e-06, + "freddy": 2.75e-06, + "frenzy": 2.75e-06, + "fridays": 2.34e-06, + "fuckers": 5.62e-08, + "fulfillment": 2.75e-06, + "gg": 2.75e-06, + "godfather": 2.75e-06, + "gould": 2.75e-06, + "gran": 2.75e-06, + "groundwater": 2.75e-06, + "heidi": 2.75e-06, + "hospitalized": 2.75e-06, + "hostilities": 2.75e-06, + "hyundai": 2.75e-06, + "illusions": 2.75e-06, + "inadvertently": 2.75e-06, + "indifferent": 2.75e-06, + "inject": 2.75e-06, + "insistence": 2.75e-06, + "interiors": 7.41e-08, + "intimidated": 2.75e-06, + "invariably": 2.75e-06, + "invincible": 2.75e-06, + "jams": 1.17e-07, + "jfk": 2.75e-06, + "joes": 7.41e-07, + "jubilee": 2.75e-06, + "kia": 2.75e-06, + "kinetic": 2.75e-06, + "lam": 2.75e-06, + "lashes": 2.75e-06, + "latvia": 2.75e-06, + "laurence": 2.75e-06, + "lavender": 2.75e-06, + "lemonade": 2.75e-06, + "lenin": 2.75e-06, + "lodging": 2.75e-06, + "lowell": 2.75e-06, + "malls": 1.78e-07, + "mania": 2.75e-06, + "medically": 2.75e-06, + "menus": 6.31e-08, + "mule": 2.75e-06, + "mythical": 2.75e-06, + "nathaniel": 2.75e-06, + "neutron": 2.75e-06, + "newcomers": 2.75e-06, + "nicaragua": 2.75e-06, + "nicholson": 2.75e-06, + "nicknamed": 2.75e-06, + "occupations": 2.75e-06, + "oecd": 2.75e-06, + "ooo": 2.75e-06, + "orderly": 2.75e-06, + "orient": 2.75e-06, + "orion": 2.75e-06, + "outset": 2.75e-06, + "paralyzed": 2.75e-06, + "parry": 2.75e-06, + "parted": 2.75e-06, + "patio": 2.75e-06, + "peacock": 2.75e-06, + "pedestrians": 2.75e-06, + "pepsi": 2.75e-06, + "pf": 2.75e-06, + "pines": 5.37e-08, + "pitchers": 2.4e-07, + "plugged": 2.75e-06, + "postcard": 2.75e-06, + "pow": 2.75e-06, + "powerhouse": 2.75e-06, + "precursor": 2.75e-06, + "preferable": 2.75e-06, + "preparatory": 2.75e-06, + "prism": 2.75e-06, + "proclamation": 2.75e-06, + "proponents": 2.75e-06, + "provocative": 2.75e-06, + "pu": 2.75e-06, + "purposely": 2.75e-06, + "qc": 2.75e-06, + "questionnaire": 2.75e-06, + "reclaim": 2.75e-06, + "redevelopment": 2.75e-06, + "reflex": 2.75e-06, + "relocate": 2.75e-06, + "rematch": 2.75e-06, + "renal": 2.75e-06, + "repayment": 2.75e-06, + "residences": 2.75e-06, + "restrained": 2.75e-06, + "rhythms": 2.75e-06, + "riddle": 2.75e-06, + "rites": 2.75e-06, + "rivera": 2.75e-06, + "roach": 2.75e-06, + "rockefeller": 2.75e-06, + "roe": 2.75e-06, + "royalties": 2.75e-06, + "rubble": 2.75e-06, + "sacrificing": 2.75e-06, + "saddam": 2.75e-06, + "sapphire": 2.75e-06, + "screwing": 2.75e-06, + "seam": 2.75e-06, + "sectional": 2.75e-06, + "servicing": 2.75e-06, + "shrinking": 2.75e-06, + "simulate": 2.75e-06, + "sioux": 2.75e-06, + "sloan": 2.75e-06, + "sniff": 2.75e-06, + "snowden": 2.75e-06, + "soaring": 2.75e-06, + "soluble": 2.75e-06, + "solvent": 2.75e-06, + "somebodys": 2.75e-06, + "spaced": 2.75e-06, + "squid": 2.75e-06, + "stamford": 2.75e-06, + "steph": 2.75e-06, + "stocked": 2.75e-06, + "stoked": 2.75e-06, + "strapped": 2.75e-06, + "streamed": 2.75e-06, + "sturdy": 2.75e-06, + "swarm": 2.75e-06, + "tanker": 2.75e-06, + "taxis": 1e-07, + "terra": 2.75e-06, + "timetable": 2.75e-06, + "tj": 2.75e-06, + "torpedo": 2.75e-06, + "traitors": 8.13e-08, + "trolley": 2.75e-06, + "trolling": 2.75e-06, + "trudeau": 2.75e-06, + "una": 2.75e-06, + "undertook": 2.75e-06, + "undocumented": 2.75e-06, + "vaginal": 2.75e-06, + "vance": 2.75e-06, + "verbs": 2.75e-06, + "viability": 2.75e-06, + "victorias": 1.55e-07, + "villas": 3.16e-07, + "wat": 2.75e-06, + "whispered": 2.75e-06, + "widening": 2.75e-06, + "winged": 2.75e-06, + "wiping": 2.75e-06, + "wolverine": 2.75e-06, + "wrought": 2.75e-06, + "xiii": 2.75e-06, + "yearbook": 2.75e-06, + "yikes": 2.75e-06, + "abbot": 2.69e-06, + "abduction": 2.69e-06, + "ache": 2.69e-06, + "advises": 2.69e-06, + "afro": 2.69e-06, + "ancestral": 2.69e-06, + "anchors": 5.89e-08, + "antiquity": 2.69e-06, + "apocalyptic": 2.69e-06, + "appraisal": 2.69e-06, + "aqua": 2.69e-06, + "aspen": 2.69e-06, + "atlantis": 2.69e-06, + "augustus": 2.69e-06, + "autistic": 2.69e-06, + "barnett": 2.69e-06, + "baylor": 2.69e-06, + "bearer": 2.69e-06, + "bernstein": 2.69e-06, + "bins": 6.17e-08, + "bk": 2.69e-06, + "bleak": 2.69e-06, + "blender": 2.69e-06, + "bmi": 2.69e-06, + "bogus": 2.69e-06, + "booming": 2.69e-06, + "bridget": 2.69e-06, + "bruises": 2.69e-06, + "btc": 2.69e-06, + "burt": 2.69e-06, + "cages": 2.14e-07, + "caldwell": 2.69e-06, + "cara": 2.69e-06, + "cavs": 2.69e-06, + "centric": 2.69e-06, + "chaired": 2.69e-06, + "chaplain": 2.69e-06, + "chlorine": 2.69e-06, + "chow": 2.69e-06, + "chubby": 2.69e-06, + "clement": 2.69e-06, + "collusion": 2.69e-06, + "contenders": 2.69e-06, + "contractual": 2.69e-06, + "coroner": 2.69e-06, + "correctional": 2.69e-06, + "correspondents": 5.89e-08, + "corridors": 2.69e-06, + "creamy": 2.69e-06, + "cubes": 1.2e-07, + "daryl": 2.69e-06, + "deterioration": 2.69e-06, + "diapers": 2.69e-06, + "dirk": 2.69e-06, + "disbelief": 2.69e-06, + "discreet": 2.69e-06, + "distracting": 2.69e-06, + "dizzy": 2.69e-06, + "dre": 2.69e-06, + "duet": 2.69e-06, + "dustin": 2.69e-06, + "dyed": 2.69e-06, + "eisenhower": 2.69e-06, + "elle": 2.69e-06, + "elsa": 2.69e-06, + "enact": 2.69e-06, + "evaluations": 2.69e-06, + "everest": 2.69e-06, + "exporting": 2.69e-06, + "expressive": 2.69e-06, + "facilitating": 2.69e-06, + "fiddle": 2.69e-06, + "fists": 2.69e-06, + "flaming": 2.69e-06, + "foes": 5.13e-08, + "folds": 2.69e-06, + "fortified": 2.69e-06, + "fran": 2.69e-06, + "garfield": 2.69e-06, + "generalized": 2.69e-06, + "gl": 2.69e-06, + "glossy": 2.69e-06, + "gregg": 2.69e-06, + "grit": 2.69e-06, + "hammered": 2.69e-06, + "haram": 2.69e-06, + "harassing": 2.69e-06, + "hauled": 2.69e-06, + "hectares": 2.69e-06, + "hobart": 2.69e-06, + "homelessness": 2.69e-06, + "hopping": 2.69e-06, + "horrendous": 2.69e-06, + "horrified": 2.69e-06, + "hostel": 2.69e-06, + "hound": 2.69e-06, + "htc": 2.69e-06, + "hugged": 2.69e-06, + "illegitimate": 2.69e-06, + "illicit": 2.69e-06, + "importing": 2.69e-06, + "incompetence": 2.69e-06, + "insomnia": 2.69e-06, + "interception": 2.69e-06, + "invaders": 2.69e-06, + "irl": 2.69e-06, + "israelis": 8.91e-08, + "juniors": 4.57e-07, + "karaoke": 2.69e-06, + "kemp": 2.69e-06, + "kosovo": 2.69e-06, + "kw": 2.69e-06, + "lagoon": 2.69e-06, + "len": 2.69e-06, + "lesions": 2.69e-06, + "limp": 2.69e-06, + "lingering": 2.69e-06, + "linguistics": 2.69e-06, + "locating": 2.69e-06, + "logically": 2.69e-06, + "lucifer": 2.69e-06, + "lumpur": 2.69e-06, + "lunatic": 2.69e-06, + "lyrical": 2.69e-06, + "manifestation": 2.69e-06, + "manitoba": 2.69e-06, + "manufactures": 2.69e-06, + "mastering": 2.69e-06, + "mead": 2.69e-06, + "mergers": 2.69e-06, + "mhz": 2.69e-06, + "migrate": 2.69e-06, + "mildly": 2.69e-06, + "miraculous": 2.69e-06, + "moaning": 2.69e-06, + "mocked": 2.69e-06, + "mos": 2.63e-07, + "mosquitoes": 2.69e-06, + "mourn": 2.69e-06, + "mundane": 2.69e-06, + "narrowed": 2.69e-06, + "nay": 2.69e-06, + "nests": 2.69e-06, + "ngo": 2.69e-06, + "nielsen": 2.69e-06, + "nr": 2.69e-06, + "nutshell": 2.69e-06, + "ob": 2.69e-06, + "obsessive": 2.69e-06, + "offending": 2.69e-06, + "offseason": 2.69e-06, + "oswald": 2.69e-06, + "overboard": 2.69e-06, + "paws": 2.69e-06, + "pendant": 2.69e-06, + "petite": 2.69e-06, + "petitions": 2.69e-06, + "pharma": 2.69e-06, + "pimp": 2.69e-06, + "pipelines": 5.25e-08, + "poised": 2.69e-06, + "pol": 2.69e-06, + "posterior": 2.69e-06, + "pouch": 2.69e-06, + "predicts": 2.69e-06, + "prescriptions": 2.69e-06, + "probes": 8.51e-08, + "proficiency": 2.69e-06, + "progresses": 2.69e-06, + "protestors": 2.69e-06, + "psychotic": 2.69e-06, + "racists": 2.69e-06, + "referees": 2.57e-07, + "reinforcement": 2.69e-06, + "relegation": 2.69e-06, + "repertoire": 2.69e-06, + "repository": 2.69e-06, + "reversing": 2.69e-06, + "rican": 2.69e-06, + "rumble": 2.69e-06, + "sachs": 2.69e-06, + "saloon": 2.69e-06, + "sanction": 2.69e-06, + "sexes": 2.69e-06, + "shack": 2.69e-06, + "sinners": 7.59e-08, + "sire": 2.69e-06, + "slated": 2.69e-06, + "soaking": 2.69e-06, + "stale": 2.69e-06, + "stereotype": 2.69e-06, + "sterile": 2.69e-06, + "stride": 2.69e-06, + "stringent": 2.69e-06, + "sulfur": 2.69e-06, + "surfaced": 2.69e-06, + "suzuki": 2.69e-06, + "tacos": 5.01e-08, + "therapists": 1.7e-07, + "torrent": 2.69e-06, + "tp": 2.69e-06, + "trainee": 2.69e-06, + "transmitting": 2.69e-06, + "trey": 2.69e-06, + "tripped": 2.69e-06, + "trough": 2.69e-06, + "trunks": 2.69e-06, + "tummy": 2.69e-06, + "unjust": 2.69e-06, + "upbringing": 2.69e-06, + "uploading": 2.69e-06, + "vaughan": 2.69e-06, + "venezuelan": 2.69e-06, + "vis": 1.23e-07, + "vivian": 2.69e-06, + "vivo": 2.69e-06, + "wager": 2.69e-06, + "walled": 2.69e-06, + "warehouses": 2.69e-06, + "whack": 2.69e-06, + "whoops": 2.69e-06, + "wichita": 2.69e-06, + "wilde": 2.69e-06, + "wilmington": 2.69e-06, + "zambia": 2.69e-06, + "accelerator": 2.63e-06, + "accuses": 2.63e-06, + "acrylic": 2.63e-06, + "ames": 2.63e-06, + "anchorage": 2.63e-06, + "annexation": 2.63e-06, + "approves": 2.63e-06, + "ascent": 2.63e-06, + "assassins": 1.02e-06, + "atkinson": 2.63e-06, + "ballad": 2.63e-06, + "banged": 2.63e-06, + "basel": 2.63e-06, + "beckett": 2.63e-06, + "bel": 2.63e-06, + "betray": 2.63e-06, + "betsy": 2.63e-06, + "bigotry": 2.63e-06, + "biotechnology": 2.63e-06, + "blanc": 2.63e-06, + "bookstore": 2.63e-06, + "boomers": 5.75e-08, + "boone": 2.63e-06, + "bots": 2.63e-06, + "breakers": 2.63e-06, + "broom": 2.63e-06, + "browne": 2.63e-06, + "brute": 2.63e-06, + "buffy": 2.63e-06, + "busiest": 2.63e-06, + "camouflage": 2.63e-06, + "cary": 2.63e-06, + "catalan": 2.63e-06, + "chiefly": 2.63e-06, + "childbirth": 2.63e-06, + "chills": 2.63e-06, + "chung": 2.63e-06, + "collaborating": 2.63e-06, + "compliant": 2.63e-06, + "conservatism": 2.63e-06, + "continuum": 2.63e-06, + "corona": 2.63e-06, + "cosplay": 2.63e-06, + "cowardly": 2.63e-06, + "cpr": 2.63e-06, + "cruises": 1.45e-07, + "css": 2.63e-06, + "cultivate": 2.63e-06, + "curls": 2.63e-06, + "cyril": 2.63e-06, + "dealership": 2.63e-06, + "dearest": 2.63e-06, + "decker": 2.63e-06, + "defy": 2.63e-06, + "della": 2.63e-06, + "denotes": 2.63e-06, + "densely": 2.63e-06, + "derives": 2.63e-06, + "devoid": 2.63e-06, + "dhabi": 2.63e-06, + "diagrams": 2.63e-06, + "dickinson": 2.63e-06, + "disparity": 2.63e-06, + "diva": 2.63e-06, + "divert": 2.63e-06, + "dlc": 2.63e-06, + "drawers": 2.63e-06, + "eater": 2.63e-06, + "eaton": 2.63e-06, + "elegance": 2.63e-06, + "elias": 2.95e-08, + "encrypted": 2.63e-06, + "englishman": 2.63e-06, + "escorts": 2.63e-06, + "exposes": 2.63e-06, + "extraordinarily": 2.63e-06, + "facade": 2.63e-06, + "farmhouse": 2.63e-06, + "fertilizer": 2.63e-06, + "filler": 2.63e-06, + "fishes": 2.63e-06, + "flea": 2.63e-06, + "footwear": 2.63e-06, + "foxes": 2.63e-06, + "fri": 2.63e-06, + "fritz": 2.63e-06, + "froze": 2.63e-06, + "frying": 2.63e-06, + "giovanni": 2.63e-06, + "goodies": 2.63e-06, + "greenland": 2.63e-06, + "handbag": 2.63e-06, + "handicapped": 2.63e-06, + "haze": 2.63e-06, + "headquartered": 2.63e-06, + "helium": 2.63e-06, + "hemp": 2.63e-06, + "hitch": 2.63e-06, + "hoc": 2.63e-06, + "hutchinson": 2.63e-06, + "ike": 2.63e-06, + "incarnation": 2.63e-06, + "inhibitors": 2.63e-06, + "intrusion": 2.63e-06, + "inverse": 2.63e-06, + "inverted": 2.63e-06, + "irritation": 2.63e-06, + "jae": 2.63e-06, + "juices": 2.63e-06, + "julio": 2.63e-06, + "keywords": 2.63e-06, + "lavish": 2.63e-06, + "libyan": 2.63e-06, + "livelihood": 2.63e-06, + "livingston": 2.63e-06, + "mansfield": 2.63e-06, + "marches": 2.63e-06, + "mckenzie": 2.63e-06, + "medic": 2.63e-06, + "merlin": 2.63e-06, + "midland": 2.63e-06, + "miscellaneous": 2.63e-06, + "misguided": 2.63e-06, + "morrow": 2.63e-06, + "motivations": 2.63e-06, + "moto": 2.63e-06, + "mozart": 2.63e-06, + "muster": 2.63e-06, + "mutants": 2.63e-06, + "muted": 2.63e-06, + "noodle": 2.63e-06, + "nylon": 2.63e-06, + "override": 2.63e-06, + "ozone": 2.63e-06, + "papua": 2.63e-06, + "paranoia": 2.63e-06, + "paving": 2.63e-06, + "persecuted": 2.63e-06, + "peruvian": 2.63e-06, + "phosphate": 2.63e-06, + "php": 2.63e-06, + "physicist": 2.63e-06, + "piping": 2.63e-06, + "plurality": 2.63e-06, + "prehistoric": 2.63e-06, + "prescott": 2.63e-06, + "prohibits": 2.63e-06, + "pronouns": 2.63e-06, + "proton": 2.63e-06, + "psyche": 2.63e-06, + "quickest": 2.63e-06, + "redesign": 2.63e-06, + "relocated": 2.63e-06, + "reluctance": 2.63e-06, + "rentals": 2.63e-06, + "reopen": 2.63e-06, + "replication": 2.63e-06, + "rigging": 2.63e-06, + "rotor": 2.63e-06, + "sediment": 2.63e-06, + "seeming": 2.63e-06, + "selves": 2.63e-06, + "sneaking": 2.63e-06, + "solitude": 2.63e-06, + "spacing": 2.63e-06, + "standby": 2.63e-06, + "std": 2.63e-06, + "straps": 2.63e-06, + "strikers": 1.1e-07, + "stronghold": 2.63e-06, + "stumble": 2.63e-06, + "suicides": 2.63e-06, + "supermarkets": 2.63e-06, + "talbot": 2.63e-06, + "theorists": 2.63e-06, + "therell": 2.63e-06, + "therein": 2.63e-06, + "triangular": 2.63e-06, + "tricked": 2.63e-06, + "trooper": 2.63e-06, + "truthful": 2.63e-06, + "turret": 2.63e-06, + "ubiquitous": 2.63e-06, + "unbelievably": 2.63e-06, + "unconventional": 2.63e-06, + "unnecessarily": 2.63e-06, + "unnoticed": 2.63e-06, + "untouched": 2.63e-06, + "vega": 2.63e-06, + "ver": 2.63e-06, + "vibrations": 2.63e-06, + "vin": 2.63e-06, + "virgil": 2.63e-06, + "visionary": 2.63e-06, + "vitro": 2.63e-06, + "voodoo": 2.63e-06, + "wigan": 2.63e-06, + "wilder": 2.63e-06, + "witchcraft": 2.63e-06, + "withdrawals": 2.63e-06, + "withdrawing": 2.63e-06, + "wrestlers": 7.24e-08, + "yong": 2.63e-06, + "abbas": 8.71e-08, + "adultery": 2.57e-06, + "agile": 2.57e-06, + "aides": 4.57e-08, + "anonymously": 2.57e-06, + "aristotle": 2.57e-06, + "artifact": 2.57e-06, + "austerity": 2.57e-06, + "awfully": 2.57e-06, + "axes": 2.82e-08, + "barca": 2.57e-06, + "battered": 2.57e-06, + "beatrice": 2.57e-06, + "beethoven": 2.57e-06, + "biking": 2.57e-06, + "boob": 2.57e-06, + "boosts": 2.57e-06, + "bouquet": 2.57e-06, + "boxers": 1.26e-07, + "browning": 2.57e-06, + "bullock": 2.57e-06, + "cad": 2.57e-06, + "candidacy": 2.57e-06, + "cartridges": 2.57e-06, + "carve": 2.57e-06, + "cherished": 2.57e-06, + "climbs": 2.57e-06, + "clubhouse": 2.57e-06, + "coarse": 2.57e-06, + "collegiate": 2.57e-06, + "commonplace": 2.57e-06, + "compute": 2.57e-06, + "conan": 2.57e-06, + "confidently": 2.57e-06, + "constrained": 2.57e-06, + "contemplate": 2.57e-06, + "converter": 2.57e-06, + "coop": 2.57e-06, + "cooperating": 2.57e-06, + "coronary": 2.57e-06, + "cottages": 2.57e-06, + "countys": 2.57e-06, + "cps": 7.59e-08, + "crook": 2.57e-06, + "cucumber": 2.57e-06, + "cupcakes": 2.57e-06, + "darts": 4.79e-08, + "davids": 4.9e-07, + "deco": 2.57e-06, + "depict": 2.57e-06, + "desmond": 2.57e-06, + "diagnose": 2.57e-06, + "directorate": 2.57e-06, + "disliked": 2.57e-06, + "diver": 2.57e-06, + "dora": 2.57e-06, + "dormant": 2.57e-06, + "dotted": 2.57e-06, + "drifted": 2.57e-06, + "duffy": 2.57e-06, + "embarrass": 2.57e-06, + "emmanuel": 2.57e-06, + "emulate": 2.57e-06, + "encompasses": 2.57e-06, + "endowed": 2.57e-06, + "enquiry": 2.57e-06, + "evasion": 2.57e-06, + "evergreen": 2.57e-06, + "eviction": 2.57e-06, + "excerpts": 2.57e-06, + "explodes": 2.57e-06, + "explorers": 1.45e-07, + "expulsion": 2.57e-06, + "fades": 2.57e-06, + "fedex": 2.57e-06, + "figs": 2.57e-06, + "filth": 2.57e-06, + "firefox": 2.57e-06, + "floated": 2.57e-06, + "foliage": 2.57e-06, + "foreclosure": 2.57e-06, + "forgets": 2.57e-06, + "fortnight": 2.57e-06, + "fresno": 2.57e-06, + "fs": 2.69e-07, + "funnier": 2.57e-06, + "genie": 2.57e-06, + "glued": 2.57e-06, + "goo": 2.57e-06, + "goodwin": 2.57e-06, + "hannibal": 2.57e-06, + "heartbroken": 2.57e-06, + "heats": 2.95e-07, + "helper": 2.57e-06, + "hesitant": 2.57e-06, + "hoop": 2.57e-06, + "howd": 6.17e-08, + "hubby": 2.57e-06, + "humiliated": 2.57e-06, + "hurdle": 2.57e-06, + "hypertension": 2.57e-06, + "immersed": 2.57e-06, + "immortality": 2.57e-06, + "indefinite": 2.57e-06, + "indices": 2.57e-06, + "insightful": 2.57e-06, + "invitations": 2.57e-06, + "io": 2.57e-06, + "ipswich": 2.57e-06, + "irrespective": 2.57e-06, + "jacks": 1.91e-06, + "jeanne": 2.57e-06, + "kicker": 2.57e-06, + "kyoto": 2.57e-06, + "leaned": 2.57e-06, + "leases": 2.57e-06, + "ledge": 2.57e-06, + "levin": 2.57e-06, + "lgbtq": 2.57e-06, + "lunches": 2.57e-06, + "macbook": 2.57e-06, + "mackay": 2.57e-06, + "madeleine": 2.57e-06, + "maj": 2.57e-06, + "malt": 2.57e-06, + "mandela": 2.57e-06, + "marian": 2.57e-06, + "mayors": 2.19e-06, + "melts": 2.57e-06, + "mindfulness": 2.57e-06, + "mined": 2.57e-06, + "mj": 2.57e-06, + "moderator": 2.57e-06, + "momma": 2.57e-06, + "monstrous": 2.57e-06, + "moran": 2.57e-06, + "morphology": 2.57e-06, + "mustache": 2.57e-06, + "nasdaq": 2.57e-06, + "natal": 2.57e-06, + "nodded": 2.57e-06, + "novice": 2.57e-06, + "obituary": 2.57e-06, + "olivier": 2.57e-06, + "ordination": 2.57e-06, + "otis": 2.57e-06, + "owls": 2.04e-07, + "parity": 2.57e-06, + "paterson": 2.57e-06, + "percentages": 2.57e-06, + "persuasive": 2.57e-06, + "pests": 2.57e-06, + "pew": 2.57e-06, + "philips": 3.31e-07, + "piled": 2.57e-06, + "poking": 2.57e-06, + "populous": 2.57e-06, + "postwar": 2.57e-06, + "presided": 2.57e-06, + "prevailed": 2.57e-06, + "proactive": 2.57e-06, + "prob": 2.57e-06, + "projector": 2.57e-06, + "prominently": 2.57e-06, + "prudent": 2.57e-06, + "qualifier": 2.57e-06, + "quincy": 2.57e-06, + "radios": 6.61e-07, + "ratified": 2.57e-06, + "realising": 2.57e-06, + "refining": 2.57e-06, + "regretted": 2.57e-06, + "reliant": 2.57e-06, + "reputable": 2.57e-06, + "revolver": 2.57e-06, + "revolving": 2.57e-06, + "ricardo": 2.57e-06, + "rink": 2.57e-06, + "ripple": 2.57e-06, + "robbers": 7.41e-08, + "routledge": 2.57e-06, + "salts": 5.25e-08, + "sampled": 2.57e-06, + "scrolls": 2.57e-06, + "seeker": 2.57e-06, + "sentinel": 2.57e-06, + "signalling": 2.57e-06, + "sirens": 8.32e-08, + "slovenia": 2.57e-06, + "solemn": 2.57e-06, + "spacex": 2.57e-06, + "spacious": 2.57e-06, + "spheres": 2.57e-06, + "spraying": 2.57e-06, + "sprung": 2.57e-06, + "stacey": 2.57e-06, + "starr": 2.57e-06, + "substantive": 2.57e-06, + "substitution": 2.57e-06, + "sugars": 1.48e-07, + "sweetest": 2.57e-06, + "taxing": 2.57e-06, + "tobago": 2.57e-06, + "torah": 2.57e-06, + "torso": 2.57e-06, + "transcripts": 2.57e-06, + "tremendously": 2.57e-06, + "trojan": 2.57e-06, + "tumble": 2.57e-06, + "unleash": 2.57e-06, + "unpublished": 2.57e-06, + "untrue": 2.57e-06, + "verbally": 2.57e-06, + "vitality": 2.57e-06, + "wc": 2.57e-06, + "weeping": 2.57e-06, + "whispering": 2.57e-06, + "windshield": 2.57e-06, + "wolfe": 2.57e-06, + "zodiac": 2.57e-06, + "abandonment": 2.51e-06, + "abyss": 2.51e-06, + "accession": 2.51e-06, + "acquaintances": 2.51e-06, + "alvarez": 2.51e-06, + "alvin": 2.51e-06, + "amateurs": 2.51e-06, + "amir": 2.51e-06, + "anders": 2.51e-06, + "archived": 2.51e-06, + "arithmetic": 2.51e-06, + "arson": 2.51e-06, + "astronomers": 2.51e-06, + "auditions": 2.51e-06, + "authoritative": 2.51e-06, + "awarding": 2.51e-06, + "barren": 2.51e-06, + "basal": 2.51e-06, + "batsman": 2.51e-06, + "bedding": 2.51e-06, + "bender": 2.51e-06, + "bethlehem": 2.51e-06, + "bicycles": 2.51e-06, + "boi": 2.51e-06, + "bourgeois": 2.51e-06, + "braking": 2.51e-06, + "bribery": 2.51e-06, + "brunette": 2.51e-06, + "bureaucratic": 2.51e-06, + "buzzer": 2.51e-06, + "cactus": 2.51e-06, + "carlson": 2.51e-06, + "cassette": 2.51e-06, + "chants": 2.51e-06, + "characterised": 2.51e-06, + "childcare": 2.51e-06, + "chocolates": 2.51e-06, + "chronological": 2.51e-06, + "cleavage": 2.51e-06, + "clones": 2.51e-06, + "cohort": 2.51e-06, + "commandments": 2.51e-06, + "conceive": 2.51e-06, + "condensed": 2.51e-06, + "contemporaries": 2.51e-06, + "controversies": 2.51e-06, + "convened": 2.51e-06, + "conveyed": 2.51e-06, + "crabs": 2.51e-06, + "cuddle": 2.51e-06, + "culprit": 2.51e-06, + "darius": 2.51e-06, + "daunting": 2.51e-06, + "demos": 6.46e-08, + "deviation": 2.51e-06, + "diffusion": 2.51e-06, + "dildo": 2.51e-06, + "distrust": 2.51e-06, + "dominates": 2.51e-06, + "echoed": 2.51e-06, + "elbows": 2.51e-06, + "ellison": 2.51e-06, + "elves": 2.51e-06, + "embark": 2.51e-06, + "empires": 5.62e-07, + "entrepreneurial": 2.51e-06, + "ether": 2.51e-06, + "etiquette": 2.51e-06, + "exhibiting": 2.51e-06, + "extravagant": 2.51e-06, + "familiarity": 2.51e-06, + "felipe": 2.51e-06, + "fender": 2.51e-06, + "feng": 2.51e-06, + "ferris": 2.51e-06, + "fetal": 2.51e-06, + "fiance": 2.51e-06, + "finer": 2.51e-06, + "fittings": 2.51e-06, + "flushing": 2.51e-06, + "fn": 1.51e-07, + "freeing": 2.51e-06, + "fused": 2.51e-06, + "goa": 2.51e-06, + "gorge": 2.51e-06, + "greenwood": 2.51e-06, + "groves": 6.92e-08, + "gu": 2.51e-06, + "gutted": 2.51e-06, + "harp": 2.51e-06, + "hartley": 2.51e-06, + "heartfelt": 2.51e-06, + "hinted": 2.51e-06, + "hoodie": 2.51e-06, + "housewife": 2.51e-06, + "housewives": 2.51e-06, + "hubs": 7.24e-08, + "hypocrite": 2.51e-06, + "incorporation": 2.51e-06, + "insure": 2.51e-06, + "joyful": 2.51e-06, + "judah": 2.51e-06, + "kabul": 2.51e-06, + "kelley": 2.51e-06, + "kickoff": 2.51e-06, + "kimberly": 2.51e-06, + "lacrosse": 2.51e-06, + "lars": 2.51e-06, + "latex": 2.51e-06, + "leftover": 2.51e-06, + "legalization": 2.51e-06, + "lf": 2.51e-06, + "localized": 2.51e-06, + "lori": 2.51e-06, + "malibu": 2.51e-06, + "mammoth": 2.51e-06, + "martyrs": 1.74e-07, + "marvellous": 2.51e-06, + "matchup": 2.51e-06, + "meh": 2.51e-06, + "merkel": 2.51e-06, + "modem": 2.51e-06, + "mosques": 7.59e-08, + "motif": 2.51e-06, + "necks": 2.51e-06, + "newcomer": 2.51e-06, + "nic": 2.51e-06, + "nobles": 1.58e-07, + "oats": 2.51e-06, + "ominous": 2.51e-06, + "openness": 2.51e-06, + "optimized": 2.51e-06, + "overheard": 2.51e-06, + "oversized": 2.51e-06, + "pak": 2.51e-06, + "pandora": 2.51e-06, + "panicked": 2.51e-06, + "paolo": 2.51e-06, + "papal": 2.51e-06, + "patton": 2.51e-06, + "pepe": 2.51e-06, + "peril": 2.51e-06, + "pk": 2.51e-06, + "playable": 2.51e-06, + "plunged": 2.51e-06, + "polly": 2.51e-06, + "pores": 2.51e-06, + "posh": 2.51e-06, + "practising": 2.51e-06, + "precaution": 2.51e-06, + "principally": 2.51e-06, + "professionalism": 2.51e-06, + "puppets": 2.51e-06, + "pv": 2.51e-06, + "rampage": 2.51e-06, + "reassuring": 2.51e-06, + "rebirth": 2.51e-06, + "recharge": 2.51e-06, + "rehearsals": 2.51e-06, + "reliably": 2.51e-06, + "renovations": 2.51e-06, + "reservoirs": 2.51e-06, + "retina": 2.51e-06, + "revolves": 2.51e-06, + "riff": 2.51e-06, + "rosen": 2.51e-06, + "rossi": 2.51e-06, + "rr": 2.51e-06, + "rutgers": 2.51e-06, + "sahara": 2.51e-06, + "scattering": 2.51e-06, + "scrape": 2.51e-06, + "scripted": 2.51e-06, + "semantic": 2.51e-06, + "shear": 2.51e-06, + "shedding": 2.51e-06, + "sherry": 2.51e-06, + "shitting": 2.51e-06, + "silicone": 2.51e-06, + "skepticism": 2.51e-06, + "slovakia": 2.51e-06, + "sly": 2.51e-06, + "smiley": 2.51e-06, + "smithsonian": 2.51e-06, + "snoop": 2.51e-06, + "sponsoring": 2.51e-06, + "stables": 2.51e-06, + "startling": 2.51e-06, + "strands": 2.51e-06, + "strife": 2.51e-06, + "stylist": 2.51e-06, + "superheroes": 2.51e-06, + "tattooed": 2.51e-06, + "tenor": 2.51e-06, + "thrift": 2.51e-06, + "toured": 2.51e-06, + "transformations": 2.51e-06, + "traverse": 2.51e-06, + "turnaround": 2.51e-06, + "uterus": 2.51e-06, + "validate": 2.51e-06, + "vid": 2.51e-06, + "vocalist": 2.51e-06, + "vw": 2.51e-06, + "warranted": 2.51e-06, + "weakening": 2.51e-06, + "westbrook": 2.51e-06, + "wildcats": 2.51e-06, + "wipes": 2.51e-06, + "wrists": 2.51e-06, + "xvi": 2.51e-06, + "yielding": 2.51e-06, + "zebra": 2.51e-06, + "zionist": 2.51e-06, + "abrams": 2.45e-06, + "aces": 1.62e-07, + "aft": 2.45e-06, + "albion": 2.45e-06, + "anesthesia": 2.45e-06, + "anonymity": 2.45e-06, + "anticipating": 2.45e-06, + "antoine": 2.45e-06, + "appropriation": 2.45e-06, + "aria": 2.45e-06, + "articulated": 2.45e-06, + "assassinated": 2.45e-06, + "babes": 9.77e-08, + "bandits": 6.46e-08, + "banished": 2.45e-06, + "barefoot": 2.45e-06, + "barrage": 2.45e-06, + "bartlett": 2.45e-06, + "beauties": 2.45e-06, + "bestowed": 2.45e-06, + "bethesda": 2.45e-06, + "blackpool": 2.45e-06, + "bordering": 2.45e-06, + "bournemouth": 2.45e-06, + "brilliance": 2.45e-06, + "britney": 2.45e-06, + "broth": 2.45e-06, + "bruised": 2.45e-06, + "buns": 2.45e-06, + "burnley": 2.45e-06, + "cabins": 6.92e-08, + "campaigned": 2.45e-06, + "centenary": 2.45e-06, + "ceos": 6.61e-07, + "checkpoint": 2.45e-06, + "chloride": 2.45e-06, + "classify": 2.45e-06, + "clinically": 2.45e-06, + "cocky": 2.45e-06, + "coefficient": 2.45e-06, + "coined": 2.45e-06, + "collapsing": 2.45e-06, + "collisions": 2.45e-06, + "condemning": 2.45e-06, + "conditioner": 2.45e-06, + "conductors": 1e-07, + "cones": 2.04e-08, + "conglomerate": 2.45e-06, + "consultations": 2.45e-06, + "conversions": 2.45e-06, + "cornerstone": 2.45e-06, + "correctness": 2.45e-06, + "counterfeit": 2.45e-06, + "damian": 2.45e-06, + "dazzling": 2.45e-06, + "dea": 2.45e-06, + "deacon": 2.45e-06, + "debuts": 2.45e-06, + "deceived": 2.45e-06, + "delaying": 2.45e-06, + "dentistry": 2.45e-06, + "desks": 2.45e-06, + "detainees": 2.45e-06, + "dictated": 2.45e-06, + "dino": 2.45e-06, + "disks": 2.45e-06, + "dismissing": 2.45e-06, + "dortmund": 2.45e-06, + "edgy": 2.45e-06, + "eff": 2.45e-06, + "elevators": 2.45e-06, + "elton": 2.45e-06, + "encore": 2.45e-06, + "engages": 2.45e-06, + "enormously": 2.45e-06, + "epstein": 2.45e-06, + "err": 2.45e-06, + "erupted": 2.45e-06, + "espresso": 2.45e-06, + "evade": 2.45e-06, + "fab": 2.45e-06, + "fairs": 3.02e-07, + "freaky": 2.45e-06, + "freshmen": 2.45e-06, + "futile": 2.45e-06, + "genera": 2.45e-06, + "germs": 2.45e-06, + "glacial": 2.45e-06, + "glands": 2.45e-06, + "gloomy": 2.45e-06, + "graceful": 2.45e-06, + "grievances": 2.45e-06, + "gritty": 2.45e-06, + "hanoi": 2.45e-06, + "hayley": 2.45e-06, + "heartbreak": 2.45e-06, + "heist": 2.45e-06, + "heterosexual": 2.45e-06, + "hewitt": 2.45e-06, + "hinder": 2.45e-06, + "hobbit": 2.45e-06, + "horseback": 2.45e-06, + "hospice": 2.45e-06, + "hotline": 2.45e-06, + "huang": 2.45e-06, + "inhibition": 2.45e-06, + "integer": 2.45e-06, + "interdisciplinary": 2.45e-06, + "intermittent": 2.45e-06, + "intimidation": 2.45e-06, + "islamist": 2.45e-06, + "italia": 2.45e-06, + "iteration": 2.45e-06, + "joys": 2.45e-07, + "kitchens": 1.82e-07, + "kremlin": 2.45e-06, + "langley": 2.45e-06, + "liners": 2.45e-06, + "liv": 2.45e-06, + "lv": 2.45e-06, + "madagascar": 2.45e-06, + "magnum": 2.45e-06, + "malay": 2.45e-06, + "mandates": 2.45e-06, + "martian": 2.45e-06, + "mashed": 2.45e-06, + "maxim": 2.45e-06, + "mei": 2.45e-06, + "melancholy": 2.45e-06, + "meteorological": 2.45e-06, + "milf": 2.45e-06, + "misplaced": 2.45e-06, + "misty": 2.45e-06, + "modifying": 2.45e-06, + "moines": 2.45e-06, + "monsieur": 2.45e-06, + "mop": 2.45e-06, + "multicultural": 2.45e-06, + "nearing": 2.45e-06, + "negatives": 2.45e-06, + "negligible": 2.45e-06, + "nesting": 2.45e-06, + "nudity": 2.45e-06, + "obligatory": 2.45e-06, + "oceanic": 2.45e-06, + "od": 2.45e-08, + "oooh": 2.45e-06, + "ornaments": 2.45e-06, + "outpost": 2.45e-06, + "outputs": 2.45e-06, + "overflow": 2.45e-06, + "oxidation": 2.45e-06, + "panorama": 2.45e-06, + "pascal": 2.45e-06, + "peep": 2.45e-06, + "pencils": 2.45e-06, + "pervasive": 2.45e-06, + "pickle": 2.45e-06, + "pinky": 2.45e-06, + "playwright": 2.45e-06, + "pledges": 2.45e-06, + "predatory": 2.45e-06, + "preface": 2.45e-06, + "prescribe": 2.45e-06, + "punitive": 2.45e-06, + "quits": 2.45e-06, + "rainforest": 2.45e-06, + "raphael": 2.45e-06, + "reborn": 2.45e-06, + "reddish": 2.45e-06, + "refurbished": 2.45e-06, + "repercussions": 2.45e-06, + "reprint": 2.45e-06, + "restroom": 2.45e-06, + "rhythmic": 2.45e-06, + "robber": 2.45e-06, + "robes": 2.45e-06, + "rockies": 2.45e-06, + "roi": 2.45e-06, + "roommates": 3.09e-07, + "roulette": 2.45e-06, + "rounding": 2.45e-06, + "rowing": 2.45e-06, + "rulings": 2.45e-06, + "rumored": 2.45e-06, + "rupees": 2.45e-06, + "sams": 7.76e-07, + "samoa": 2.45e-06, + "samson": 2.45e-06, + "satin": 2.45e-06, + "scatter": 2.45e-06, + "scramble": 2.45e-06, + "scraps": 2.45e-06, + "segregated": 2.45e-06, + "semantics": 2.45e-06, + "settles": 2.45e-06, + "shameless": 2.45e-06, + "sharif": 2.45e-06, + "showtime": 2.45e-06, + "silenced": 2.45e-06, + "sinner": 2.45e-06, + "skeletal": 2.45e-06, + "skeletons": 2.45e-06, + "skulls": 7.24e-08, + "slows": 2.45e-06, + "snapshot": 2.45e-06, + "soar": 2.45e-06, + "somethings": 1.32e-06, + "spherical": 2.45e-06, + "spotting": 2.45e-06, + "sprinkle": 2.45e-06, + "spruce": 2.45e-06, + "squared": 2.45e-06, + "squirrels": 6.31e-08, + "stacy": 2.45e-06, + "stamina": 2.45e-06, + "standalone": 2.45e-06, + "stimuli": 2.45e-06, + "subconscious": 2.45e-06, + "thinker": 2.45e-06, + "tonic": 2.45e-06, + "tossing": 2.45e-06, + "troublesome": 2.45e-06, + "tumour": 2.45e-06, + "twain": 2.45e-06, + "uncertainties": 2.45e-06, + "underestimated": 2.45e-06, + "utopia": 2.45e-06, + "vanish": 2.45e-06, + "vigorously": 2.45e-06, + "visibly": 2.45e-06, + "vowed": 2.45e-06, + "vpn": 2.45e-06, + "waterways": 2.45e-06, + "wetlands": 2.45e-06, + "whitman": 2.45e-06, + "wrecking": 2.45e-06, + "xiv": 2.45e-06, + "abigail": 2.4e-06, + "abrupt": 2.4e-06, + "acronym": 2.4e-06, + "adaptations": 2.4e-06, + "adversity": 2.4e-06, + "advertiser": 2.4e-06, + "affidavit": 2.4e-06, + "amc": 2.4e-06, + "antics": 2.4e-06, + "antony": 2.4e-06, + "ao": 2.4e-06, + "appreciates": 2.4e-06, + "artworks": 2.4e-06, + "asserts": 2.4e-06, + "astrology": 2.4e-06, + "attachments": 2.4e-06, + "authorize": 2.4e-06, + "baroness": 2.4e-06, + "barrow": 2.4e-06, + "begs": 2.4e-06, + "bengals": 6.31e-08, + "binds": 2.4e-06, + "biographical": 2.4e-06, + "biomass": 2.4e-06, + "bitcoins": 4.17e-07, + "blanche": 2.4e-06, + "blm": 2.4e-06, + "blouse": 2.4e-06, + "bodyguard": 2.4e-06, + "borrowers": 1.51e-07, + "botany": 2.4e-06, + "bras": 2.4e-06, + "bulldog": 2.4e-06, + "caterpillar": 2.4e-06, + "censored": 2.4e-06, + "chatter": 2.4e-06, + "cheered": 2.4e-06, + "chops": 2.4e-06, + "cleric": 2.4e-06, + "cn": 2.4e-06, + "colbert": 2.4e-06, + "comedic": 2.4e-06, + "compile": 2.4e-06, + "compressor": 2.4e-06, + "compton": 2.4e-06, + "conferred": 2.4e-06, + "conn": 2.4e-06, + "constantinople": 2.4e-06, + "contrasts": 2.4e-06, + "cooke": 2.4e-06, + "cougar": 2.4e-06, + "creeps": 2.4e-06, + "cutler": 2.4e-06, + "czechoslovakia": 2.4e-06, + "deadlines": 2.4e-06, + "deceive": 2.4e-06, + "defamation": 2.4e-06, + "denny": 2.4e-06, + "det": 2.4e-06, + "digs": 1.86e-08, + "diminishing": 2.4e-06, + "directional": 2.4e-06, + "disagreements": 2.4e-06, + "disciple": 2.4e-06, + "ditto": 2.4e-06, + "divergent": 2.4e-06, + "doctorate": 2.4e-06, + "doncaster": 2.4e-06, + "donnie": 2.4e-06, + "downright": 2.4e-06, + "dues": 2.4e-06, + "dumbest": 2.4e-06, + "dwellings": 2.4e-06, + "electrode": 2.4e-06, + "elemental": 2.4e-06, + "elevate": 2.4e-06, + "eliminates": 2.4e-06, + "encoding": 2.4e-06, + "excludes": 2.4e-06, + "exemplary": 2.4e-06, + "exited": 2.4e-06, + "expansive": 2.4e-06, + "fife": 2.4e-06, + "flakes": 2.4e-06, + "flavours": 2.4e-06, + "geez": 2.4e-06, + "gemini": 2.4e-06, + "gifs": 2.4e-06, + "gland": 2.4e-06, + "gotcha": 2.4e-06, + "gst": 2.4e-06, + "guerrilla": 2.4e-06, + "gutter": 2.4e-06, + "hearty": 2.4e-06, + "highschool": 2.4e-06, + "hillside": 2.4e-06, + "hitlers": 1.58e-07, + "hms": 2.4e-06, + "hodges": 5.5e-08, + "hoo": 2.4e-06, + "hovering": 2.4e-06, + "ht": 2.4e-06, + "hun": 2.4e-06, + "hysteria": 2.4e-06, + "impartial": 2.4e-06, + "imperialism": 2.4e-06, + "imprint": 2.4e-06, + "incremental": 2.4e-06, + "independents": 5.25e-08, + "infancy": 2.4e-06, + "infused": 2.4e-06, + "inhibitor": 2.4e-06, + "initiating": 2.4e-06, + "injuring": 2.4e-06, + "inquire": 2.4e-06, + "inscribed": 2.4e-06, + "insulated": 2.4e-06, + "jang": 2.4e-06, + "jogging": 2.4e-06, + "jumbo": 2.4e-06, + "kale": 2.4e-06, + "katz": 2.4e-06, + "keyboards": 2.4e-06, + "kraft": 2.4e-06, + "landowners": 2.4e-06, + "lash": 2.4e-06, + "latina": 2.4e-06, + "lees": 1.1e-06, + "leftovers": 2.4e-06, + "louie": 2.4e-06, + "lte": 2.4e-06, + "luca": 2.4e-06, + "madras": 2.4e-06, + "magnets": 2.4e-06, + "manageable": 2.4e-06, + "manslaughter": 2.4e-06, + "manuals": 2.4e-06, + "marianne": 2.4e-06, + "martins": 1.35e-06, + "mecca": 2.4e-06, + "meridian": 2.4e-06, + "midi": 2.4e-06, + "mikhail": 2.4e-06, + "mir": 2.4e-06, + "misdemeanor": 2.4e-06, + "misfortune": 2.4e-06, + "mondays": 1.7e-06, + "moons": 1.17e-06, + "mountainous": 2.4e-06, + "ndp": 2.4e-06, + "nearer": 2.4e-06, + "newfoundland": 2.4e-06, + "obnoxious": 2.4e-06, + "olsen": 2.4e-06, + "orphanage": 2.4e-06, + "overseeing": 2.4e-06, + "paused": 2.4e-06, + "penned": 2.4e-06, + "perpetrators": 7.59e-08, + "phoebe": 2.4e-06, + "pilgrim": 2.4e-06, + "plainly": 2.4e-06, + "positives": 2.4e-06, + "punishments": 2.4e-06, + "purdue": 2.4e-06, + "qualifies": 2.4e-06, + "rake": 2.4e-06, + "recalling": 2.4e-06, + "resent": 2.4e-06, + "retreated": 2.4e-06, + "retribution": 2.4e-06, + "revolutions": 1.48e-07, + "rhetorical": 2.4e-06, + "rightful": 2.4e-06, + "robbing": 2.4e-06, + "royale": 2.4e-06, + "rumour": 2.4e-06, + "safeguards": 2.4e-06, + "savages": 2.09e-07, + "sbs": 2.4e-06, + "semen": 2.4e-06, + "senegal": 2.4e-06, + "sequencing": 2.4e-06, + "shapiro": 2.4e-06, + "shea": 2.4e-06, + "shorten": 2.4e-06, + "sighs": 2.4e-06, + "sixteenth": 2.4e-06, + "slime": 2.4e-06, + "sow": 2.4e-06, + "sparkle": 2.4e-06, + "spawn": 2.4e-06, + "sql": 2.4e-06, + "successors": 2.4e-06, + "suffrage": 2.4e-06, + "superiors": 5.89e-08, + "surrogate": 2.4e-06, + "synopsis": 2.4e-06, + "tainted": 2.4e-06, + "tanya": 2.4e-06, + "ticks": 2.4e-06, + "toddlers": 1.86e-07, + "tomas": 1.02e-08, + "toothbrush": 2.4e-06, + "towed": 2.4e-06, + "trapping": 2.4e-06, + "treatise": 2.4e-06, + "tristan": 2.4e-06, + "uphill": 2.4e-06, + "upton": 2.4e-06, + "validated": 2.4e-06, + "variability": 2.4e-06, + "waltz": 2.4e-06, + "wooded": 2.4e-06, + "workings": 2.4e-06, + "zac": 2.4e-06, + "zhou": 2.4e-06, + "acl": 2.34e-06, + "adhesive": 2.34e-06, + "adolf": 2.34e-06, + "adorned": 2.34e-06, + "affluent": 2.34e-06, + "als": 3.47e-07, + "ambiguity": 2.34e-06, + "anguish": 2.34e-06, + "annals": 2.34e-06, + "antitrust": 2.34e-06, + "apologizing": 2.34e-06, + "archaeologists": 2.34e-06, + "arid": 2.34e-06, + "avg": 2.34e-06, + "bandit": 2.34e-06, + "barrister": 2.34e-06, + "bazaar": 2.34e-06, + "beneficiary": 2.34e-06, + "bianca": 2.34e-06, + "biker": 2.34e-06, + "bipartisan": 2.34e-06, + "birthplace": 2.34e-06, + "bl": 2.34e-06, + "bono": 2.34e-06, + "bracelets": 2.34e-06, + "brides": 8.71e-07, + "brochure": 2.34e-06, + "brokerage": 2.34e-06, + "buildup": 2.34e-06, + "butch": 2.34e-06, + "canucks": 2.34e-06, + "carly": 2.34e-06, + "carpets": 2.34e-06, + "carriages": 2.34e-06, + "catholicism": 2.34e-06, + "cgi": 2.34e-06, + "chained": 2.34e-06, + "chats": 2.34e-06, + "cheng": 2.34e-06, + "ching": 2.34e-06, + "chopping": 2.34e-06, + "cigars": 2.34e-06, + "civilisation": 2.34e-06, + "closures": 2.34e-06, + "coasts": 2.69e-07, + "cobalt": 2.34e-06, + "collaborated": 2.34e-06, + "collapses": 2.34e-06, + "collier": 2.34e-06, + "colossal": 2.34e-06, + "comm": 2.34e-06, + "commodore": 2.34e-06, + "compiler": 2.34e-06, + "conserve": 2.34e-06, + "constellation": 2.34e-06, + "contour": 2.34e-06, + "crispy": 2.34e-06, + "cropped": 2.34e-06, + "crore": 2.34e-06, + "crowley": 2.34e-06, + "curfew": 2.34e-06, + "daytona": 2.34e-06, + "decidedly": 2.34e-06, + "delusion": 2.34e-06, + "demi": 2.34e-06, + "depreciation": 2.34e-06, + "designate": 2.34e-06, + "dh": 2.34e-06, + "discard": 2.34e-06, + "discontent": 2.34e-06, + "div": 2.34e-06, + "dixie": 2.34e-06, + "dopamine": 2.34e-06, + "douche": 2.34e-06, + "dunes": 2.34e-06, + "dyke": 2.34e-06, + "echoing": 2.34e-06, + "eclectic": 2.34e-06, + "ecstatic": 2.34e-06, + "ejected": 2.34e-06, + "endemic": 2.34e-06, + "enlist": 2.34e-06, + "entails": 2.34e-06, + "envisioned": 2.34e-06, + "eta": 2.34e-06, + "exchanging": 2.34e-06, + "exiled": 2.34e-06, + "eyebrow": 2.34e-06, + "fascists": 2.34e-06, + "firefighter": 2.34e-06, + "flashbacks": 2.34e-06, + "fluorescent": 2.34e-06, + "francois": 2.34e-06, + "freakin": 2.34e-06, + "fulham": 2.34e-06, + "futuristic": 2.34e-06, + "gearing": 2.34e-06, + "hallmark": 2.34e-06, + "hanover": 2.34e-06, + "harrington": 2.34e-06, + "haste": 2.34e-06, + "hauling": 2.34e-06, + "heathrow": 2.34e-06, + "hybrids": 2.34e-06, + "hyun": 2.34e-06, + "identifiable": 2.34e-06, + "igor": 2.34e-06, + "illiterate": 2.34e-06, + "immaculate": 2.34e-06, + "improvised": 2.34e-06, + "inclination": 2.34e-06, + "infested": 2.34e-06, + "insurgents": 2.34e-06, + "interpersonal": 2.34e-06, + "interracial": 2.34e-06, + "intruder": 2.34e-06, + "inward": 2.34e-06, + "ipo": 2.34e-06, + "itching": 2.34e-06, + "jai": 2.34e-06, + "jarvis": 2.34e-06, + "jenner": 2.34e-06, + "johann": 2.34e-06, + "jolie": 2.34e-06, + "judas": 2.34e-06, + "judd": 2.34e-06, + "kan": 2.34e-06, + "kaplan": 2.34e-06, + "kinky": 2.34e-06, + "koreas": 2.29e-07, + "landings": 2.34e-06, + "launcher": 2.34e-06, + "ld": 2.34e-06, + "legality": 2.34e-06, + "lenny": 2.34e-06, + "lessen": 2.34e-06, + "lifespan": 2.34e-06, + "longitudinal": 2.34e-06, + "loosen": 2.34e-06, + "ly": 2.34e-06, + "macedonia": 2.34e-06, + "mandy": 2.34e-06, + "masculinity": 2.34e-06, + "matured": 2.34e-06, + "mcgee": 2.34e-06, + "mcgraw": 2.34e-06, + "microscopic": 2.34e-06, + "midday": 2.34e-06, + "moan": 2.34e-06, + "moods": 2.34e-06, + "morphine": 2.34e-06, + "motherhood": 2.34e-06, + "motorola": 2.34e-06, + "murderous": 2.34e-06, + "nb": 2.34e-06, + "nirvana": 2.34e-06, + "nonstop": 2.34e-06, + "notoriously": 2.34e-06, + "nrl": 2.34e-06, + "oatmeal": 2.34e-06, + "opaque": 2.34e-06, + "ordnance": 2.34e-06, + "originate": 2.34e-06, + "otter": 2.34e-06, + "parting": 2.34e-06, + "pelvic": 2.34e-06, + "percussion": 2.34e-06, + "pigment": 2.34e-06, + "plato": 2.34e-06, + "populist": 2.34e-06, + "porous": 2.34e-06, + "preached": 2.34e-06, + "predictive": 2.34e-06, + "proofs": 2.34e-06, + "pulses": 2.34e-06, + "racially": 2.34e-06, + "racks": 2.34e-06, + "refunds": 2.34e-06, + "registrar": 2.34e-06, + "regulars": 2.34e-06, + "rein": 2.34e-06, + "relic": 2.34e-06, + "retard": 2.34e-06, + "reunite": 2.34e-06, + "reuse": 2.34e-06, + "reyes": 2.34e-06, + "risked": 2.34e-06, + "ritchie": 2.34e-06, + "rl": 2.34e-06, + "roadway": 2.34e-06, + "rollins": 2.34e-06, + "rustic": 2.34e-06, + "rutherford": 2.34e-06, + "sanitary": 2.34e-06, + "sao": 2.34e-06, + "saturation": 2.34e-06, + "scams": 2.34e-06, + "scarcity": 2.34e-06, + "scorpion": 2.34e-06, + "scotts": 4.57e-07, + "setback": 2.34e-06, + "shaming": 2.34e-06, + "shrubs": 2.34e-06, + "sizable": 2.34e-06, + "slippers": 2.34e-06, + "smoker": 2.34e-06, + "soho": 2.34e-06, + "spartan": 2.34e-06, + "speculated": 2.34e-06, + "spilling": 2.34e-06, + "squeezing": 2.34e-06, + "stalled": 2.34e-06, + "stimulated": 2.34e-06, + "straits": 2.34e-06, + "stun": 2.34e-06, + "subdued": 2.34e-06, + "surpass": 2.34e-06, + "swapped": 2.34e-06, + "tack": 2.34e-06, + "tagging": 2.34e-06, + "tart": 2.34e-06, + "throats": 2.34e-06, + "ting": 2.34e-06, + "tiring": 2.34e-06, + "toothpaste": 2.34e-06, + "totaled": 2.34e-06, + "transformer": 2.34e-06, + "transient": 2.34e-06, + "triumphant": 2.34e-06, + "umpire": 2.34e-06, + "unborn": 2.34e-06, + "undisclosed": 2.34e-06, + "undone": 2.34e-06, + "unheard": 2.34e-06, + "vending": 2.34e-06, + "vicar": 2.34e-06, + "wallets": 2.34e-06, + "weep": 2.34e-06, + "welch": 2.34e-06, + "woes": 2.34e-06, + "woken": 2.34e-06, + "wrench": 2.34e-06, + "wretched": 2.34e-06, + "www": 2.34e-06, + "adler": 2.29e-06, + "adolescence": 2.29e-06, + "affirmed": 2.29e-06, + "afterlife": 2.29e-06, + "allowances": 2.29e-06, + "ammonia": 2.29e-06, + "analogous": 2.29e-06, + "anarchist": 2.29e-06, + "anecdotes": 2.29e-06, + "anglican": 2.29e-06, + "animations": 9.12e-08, + "ankara": 2.29e-06, + "appropriations": 2.29e-06, + "apron": 2.29e-06, + "archaic": 2.29e-06, + "assange": 2.29e-06, + "assaulting": 2.29e-06, + "attribution": 2.29e-06, + "avant": 2.29e-06, + "baffled": 2.29e-06, + "baird": 2.29e-06, + "barlow": 2.29e-06, + "benton": 2.29e-06, + "biochemistry": 2.29e-06, + "bm": 2.29e-06, + "boise": 2.29e-06, + "bop": 2.29e-06, + "bordeaux": 2.29e-06, + "breached": 2.29e-06, + "burr": 2.29e-06, + "carbs": 2.29e-06, + "cavaliers": 2.29e-06, + "censor": 2.29e-06, + "centennial": 2.29e-06, + "cheney": 2.29e-06, + "cher": 2.29e-06, + "civilizations": 7.94e-08, + "clapping": 2.29e-06, + "clinging": 2.29e-06, + "clover": 2.29e-06, + "cms": 1.05e-07, + "coatings": 2.29e-06, + "coils": 2.29e-06, + "colonization": 2.29e-06, + "connolly": 2.29e-06, + "cookbook": 2.29e-06, + "corinthians": 2.29e-06, + "cosmopolitan": 2.29e-06, + "counselors": 9.55e-08, + "coyote": 2.29e-06, + "crippling": 2.29e-06, + "cristina": 2.29e-06, + "cromwell": 2.29e-06, + "cy": 2.29e-06, + "decorate": 2.29e-06, + "decorating": 2.29e-06, + "deductible": 2.29e-06, + "diagonal": 2.29e-06, + "discredit": 2.29e-06, + "dodd": 2.29e-06, + "dresser": 2.29e-06, + "duff": 2.29e-06, + "dysfunctional": 2.29e-06, + "ebooks": 2.29e-06, + "elm": 2.29e-06, + "emphasizing": 2.29e-06, + "ems": 1.51e-07, + "enquiries": 2.29e-06, + "equitable": 2.29e-06, + "estrogen": 2.29e-06, + "etsy": 2.29e-06, + "exert": 2.29e-06, + "expeditions": 6.46e-08, + "faculties": 2.29e-06, + "felicity": 2.29e-06, + "fernandez": 2.29e-06, + "feudal": 2.29e-06, + "fins": 2.29e-06, + "flattened": 2.29e-06, + "fleece": 2.29e-06, + "fodder": 2.29e-06, + "forwarded": 2.29e-06, + "fumble": 2.29e-06, + "galloway": 2.29e-06, + "giggles": 2.29e-06, + "git": 2.29e-06, + "glare": 2.29e-06, + "godzilla": 2.29e-06, + "gourmet": 2.29e-06, + "gripping": 2.29e-06, + "handheld": 2.29e-06, + "handshake": 2.29e-06, + "harming": 2.29e-06, + "hayward": 2.29e-06, + "hefty": 2.29e-06, + "helsinki": 2.29e-06, + "herbal": 2.29e-06, + "herrera": 2.29e-06, + "hippie": 2.29e-06, + "hops": 1.82e-07, + "horton": 2.29e-06, + "hump": 2.29e-06, + "idiotic": 2.29e-06, + "ids": 4.37e-07, + "implements": 2.29e-06, + "incarceration": 2.29e-06, + "incest": 2.29e-06, + "infect": 2.29e-06, + "insertion": 2.29e-06, + "interruption": 2.29e-06, + "intrigue": 2.29e-06, + "itch": 2.29e-06, + "jacqueline": 2.29e-06, + "jc": 2.29e-06, + "joaquin": 2.29e-06, + "kurds": 2.29e-06, + "lattice": 2.29e-06, + "leaps": 2.29e-06, + "legitimately": 2.29e-06, + "lends": 2.29e-06, + "leroy": 2.29e-06, + "linebacker": 2.29e-06, + "lockheed": 2.29e-06, + "lowers": 2.29e-06, + "lukes": 2.04e-07, + "magically": 2.29e-06, + "marketers": 7.76e-08, + "mastermind": 2.29e-06, + "materially": 2.29e-06, + "metadata": 2.29e-06, + "middlesex": 2.29e-06, + "mischief": 2.29e-06, + "modernization": 2.29e-06, + "mums": 1.55e-06, + "necessities": 2.29e-06, + "neptune": 2.29e-06, + "nerds": 2.29e-06, + "nero": 2.29e-06, + "noticeably": 2.29e-06, + "occupancy": 2.29e-06, + "oman": 2.29e-06, + "oncology": 2.29e-06, + "opposes": 2.29e-06, + "outsourcing": 2.29e-06, + "overrun": 2.29e-06, + "parcels": 2.29e-06, + "pasture": 2.29e-06, + "pathological": 2.29e-06, + "payload": 2.29e-06, + "payout": 2.29e-06, + "pelosi": 2.29e-06, + "persia": 2.29e-06, + "pertinent": 2.29e-06, + "pigeons": 5.62e-08, + "plentiful": 2.29e-06, + "plumber": 2.29e-06, + "png": 2.29e-06, + "porno": 2.29e-06, + "portfolios": 2.29e-06, + "preserves": 2.29e-06, + "promoters": 2.29e-06, + "prosecuting": 2.29e-06, + "purchaser": 2.29e-06, + "rahul": 2.29e-06, + "rapes": 2.29e-06, + "rarity": 2.29e-06, + "realty": 2.29e-06, + "rebellious": 2.29e-06, + "reefs": 2.29e-06, + "referencing": 2.29e-06, + "reminders": 2.29e-06, + "repealed": 2.29e-06, + "reptiles": 2.29e-06, + "revisit": 2.29e-06, + "ribbons": 2.29e-06, + "santo": 2.29e-06, + "satirical": 2.29e-06, + "screenings": 2.29e-06, + "sensual": 2.29e-06, + "sixties": 2.29e-06, + "slapping": 2.29e-06, + "slump": 2.29e-06, + "soften": 2.29e-06, + "sos": 6.03e-07, + "souvenir": 2.29e-06, + "spaceship": 2.29e-06, + "spaniards": 2.29e-06, + "sparse": 2.29e-06, + "spinner": 2.29e-06, + "steamer": 2.29e-06, + "subsidized": 2.29e-06, + "suction": 2.29e-06, + "sunflower": 2.29e-06, + "supplementary": 2.29e-06, + "surveyor": 2.29e-06, + "swallowing": 2.29e-06, + "tailed": 2.29e-06, + "temperament": 2.29e-06, + "thirteenth": 2.29e-06, + "topless": 2.29e-06, + "torment": 2.29e-06, + "tyrant": 2.29e-06, + "unattractive": 2.29e-06, + "unbeaten": 2.29e-06, + "understatement": 2.29e-06, + "undesirable": 2.29e-06, + "unfairly": 2.29e-06, + "unification": 2.29e-06, + "vineyards": 2.29e-06, + "wastes": 2.29e-06, + "wastewater": 2.29e-06, + "wb": 2.29e-06, + "weaponry": 2.29e-06, + "webpage": 2.29e-06, + "wheeled": 2.29e-06, + "whipping": 2.29e-06, + "widows": 4.37e-07, + "wildfire": 2.29e-06, + "withheld": 2.29e-06, + "withholding": 2.29e-06, + "wreath": 2.29e-06, + "wt": 2.29e-06, + "yer": 2.29e-06, + "administrations": 2.19e-06, + "afar": 2.24e-06, + "affectionate": 2.24e-06, + "afp": 2.24e-06, + "agitated": 2.24e-06, + "akron": 2.24e-06, + "albania": 2.24e-06, + "angie": 2.24e-06, + "annuity": 2.24e-06, + "appliance": 2.24e-06, + "aroused": 2.24e-06, + "asserting": 2.24e-06, + "astros": 5.01e-08, + "authentication": 2.24e-06, + "awaken": 2.24e-06, + "azure": 2.24e-06, + "bedside": 2.24e-06, + "berger": 2.24e-06, + "besieged": 2.24e-06, + "biologist": 2.24e-06, + "blowjob": 2.24e-06, + "bn": 2.24e-06, + "boilers": 2.24e-06, + "bois": 4.37e-08, + "bonnet": 2.24e-06, + "bourne": 2.24e-06, + "braun": 2.24e-06, + "breaches": 2.24e-06, + "breeder": 2.24e-06, + "burying": 2.24e-06, + "byzantine": 2.24e-06, + "cadet": 2.24e-06, + "calming": 2.24e-06, + "casing": 2.24e-06, + "catalonia": 2.24e-06, + "catfish": 2.24e-06, + "caucasus": 2.24e-06, + "chicagos": 2.24e-06, + "clerical": 2.24e-06, + "coincided": 2.24e-06, + "collage": 2.24e-06, + "colonists": 2.24e-06, + "complimentary": 2.24e-06, + "compounded": 2.24e-06, + "computation": 2.24e-06, + "conjecture": 2.24e-06, + "conspicuous": 2.24e-06, + "constantine": 2.24e-06, + "continual": 2.24e-06, + "contradict": 2.24e-06, + "cords": 2.24e-06, + "crackdown": 2.24e-06, + "craze": 2.24e-06, + "crusaders": 2.24e-06, + "cupcake": 2.24e-06, + "cvs": 7.41e-08, + "cybersecurity": 2.24e-06, + "davenport": 2.24e-06, + "degrading": 2.24e-06, + "deli": 2.24e-06, + "deteriorated": 2.24e-06, + "distinguishing": 2.24e-06, + "dreaded": 2.24e-06, + "dui": 2.24e-06, + "dumps": 2.24e-06, + "dwayne": 2.24e-06, + "dyer": 2.24e-06, + "elongated": 2.24e-06, + "embraces": 2.24e-06, + "enamel": 2.24e-06, + "encompassing": 2.24e-06, + "escalate": 2.24e-06, + "evicted": 2.24e-06, + "evils": 9.77e-08, + "exceedingly": 2.24e-06, + "excessively": 2.24e-06, + "faked": 2.24e-06, + "farmland": 2.24e-06, + "fetched": 2.24e-06, + "fiercely": 2.24e-06, + "flashed": 2.24e-06, + "fostering": 2.24e-06, + "fourteenth": 2.24e-06, + "fps": 2.24e-06, + "frontline": 2.24e-06, + "geese": 2.24e-06, + "genealogy": 2.24e-06, + "geographically": 2.24e-06, + "gibraltar": 2.24e-06, + "giggle": 2.24e-06, + "goggles": 2.24e-06, + "golfer": 2.24e-06, + "grammatical": 2.24e-06, + "graphite": 2.24e-06, + "grimm": 2.24e-06, + "gupta": 2.24e-06, + "haitian": 2.24e-06, + "handgun": 2.24e-06, + "hara": 2.24e-06, + "harrys": 5.5e-08, + "heaviest": 2.24e-06, + "hella": 2.24e-06, + "heresy": 2.24e-06, + "herpes": 2.24e-06, + "hipster": 2.24e-06, + "hispanics": 2.24e-06, + "hostess": 2.24e-06, + "hud": 2.24e-06, + "hunts": 5.25e-07, + "iceberg": 2.24e-06, + "ideologies": 2.24e-06, + "ignite": 2.24e-06, + "illumination": 2.24e-06, + "impoverished": 2.24e-06, + "improperly": 2.24e-06, + "ingenious": 2.24e-06, + "inquisition": 2.24e-06, + "interns": 6.17e-08, + "intervened": 2.24e-06, + "ist": 6.76e-08, + "jab": 2.24e-06, + "janice": 2.24e-06, + "landfill": 2.24e-06, + "larson": 2.24e-06, + "learner": 2.24e-06, + "lighten": 2.24e-06, + "lmfao": 2.24e-06, + "lowry": 2.24e-06, + "maldives": 2.24e-06, + "maroon": 2.24e-06, + "marriott": 2.24e-06, + "marxism": 2.24e-06, + "masonry": 2.24e-06, + "maui": 2.24e-06, + "mclaughlin": 2.24e-06, + "mechanically": 2.24e-06, + "mikey": 2.24e-06, + "millionaires": 1.66e-07, + "mina": 2.24e-06, + "moor": 2.24e-06, + "moreno": 2.24e-06, + "muffin": 2.24e-06, + "nadal": 2.24e-06, + "nigger": 2.24e-06, + "nih": 2.24e-06, + "novak": 2.24e-06, + "odonnell": 2.24e-06, + "obi": 2.24e-06, + "oily": 2.24e-06, + "olives": 7.76e-08, + "ostensibly": 2.24e-06, + "outbreaks": 2.24e-06, + "outnumbered": 2.24e-06, + "outspoken": 2.24e-06, + "pacing": 2.24e-06, + "palate": 2.24e-06, + "pancake": 2.24e-06, + "parkway": 2.24e-06, + "patricks": 1.95e-07, + "pedestal": 2.24e-06, + "pedigree": 2.24e-06, + "pennies": 2.24e-06, + "phony": 2.24e-06, + "pinpoint": 2.24e-06, + "pip": 2.24e-06, + "pleasantly": 2.24e-06, + "pluto": 2.24e-06, + "ponder": 2.24e-06, + "protestants": 2.24e-06, + "prowess": 2.24e-06, + "prussia": 2.24e-06, + "psychologically": 2.24e-06, + "pulitzer": 2.24e-06, + "pursuits": 2.24e-06, + "ramen": 2.24e-06, + "ramirez": 2.24e-06, + "ramon": 2.24e-06, + "rattle": 2.24e-06, + "recycle": 2.24e-06, + "reimbursement": 2.24e-06, + "reinforcing": 2.24e-06, + "reinstated": 2.24e-06, + "renault": 2.24e-06, + "renee": 2.24e-06, + "repent": 2.24e-06, + "rescuing": 2.24e-06, + "revert": 2.24e-06, + "ridges": 5.37e-08, + "rolex": 2.24e-06, + "rowe": 2.24e-06, + "rubin": 2.24e-06, + "sabrina": 2.24e-06, + "saliva": 2.24e-06, + "senseless": 2.24e-06, + "sermons": 2.24e-06, + "seventeenth": 2.24e-06, + "sha": 2.24e-06, + "shortcut": 2.24e-06, + "sikh": 2.24e-06, + "skye": 2.24e-06, + "slamming": 2.24e-06, + "slay": 2.24e-06, + "smoother": 2.24e-06, + "spence": 2.24e-06, + "spills": 2.24e-06, + "staffed": 2.24e-06, + "stumbling": 2.24e-06, + "stunts": 2.24e-06, + "summarized": 2.24e-06, + "sweeney": 2.24e-06, + "synth": 2.24e-06, + "tackled": 2.24e-06, + "takeoff": 2.24e-06, + "tammy": 2.24e-06, + "tat": 2.24e-06, + "taxable": 2.24e-06, + "taylors": 4.07e-07, + "trafford": 2.24e-06, + "transmissions": 2.24e-06, + "treadmill": 2.24e-06, + "trucking": 2.24e-06, + "unavoidable": 2.24e-06, + "unilateral": 2.24e-06, + "vicky": 2.24e-06, + "vie": 2.24e-06, + "vijay": 2.24e-06, + "warped": 2.24e-06, + "wasp": 2.24e-06, + "watermelon": 2.24e-06, + "webber": 2.24e-06, + "westward": 2.24e-06, + "whores": 2.24e-06, + "widened": 2.24e-06, + "yin": 2.24e-06, + "yun": 2.24e-06, + "academies": 2.19e-06, + "acidic": 2.19e-06, + "adherence": 2.19e-06, + "adjective": 2.19e-06, + "adjourned": 2.19e-06, + "amnesia": 2.19e-06, + "amplified": 2.19e-06, + "angola": 2.19e-06, + "angrily": 2.19e-06, + "appellate": 2.19e-06, + "approving": 2.19e-06, + "armoured": 2.19e-06, + "ascension": 2.19e-06, + "aspirin": 2.19e-06, + "atheists": 2.19e-06, + "ax": 2.19e-06, + "bard": 2.19e-06, + "bea": 2.19e-06, + "bearded": 2.19e-06, + "beetles": 5.13e-08, + "bends": 2.19e-06, + "benevolent": 2.19e-06, + "bestseller": 2.19e-06, + "bis": 6.31e-08, + "blackhawks": 2.19e-06, + "blazers": 2.19e-06, + "blends": 2.19e-06, + "blooded": 2.19e-06, + "blossoms": 2.19e-06, + "bog": 2.19e-06, + "bom": 2.19e-06, + "bombardment": 2.19e-06, + "borderline": 2.19e-06, + "boxed": 2.19e-06, + "brows": 2.19e-06, + "bungalow": 2.19e-06, + "burglar": 2.19e-06, + "calibration": 2.19e-06, + "cams": 2.69e-07, + "capitalize": 2.19e-06, + "charisma": 2.19e-06, + "cheltenham": 2.19e-06, + "chesapeake": 2.19e-06, + "chun": 2.19e-06, + "ck": 2.19e-06, + "classmate": 2.19e-06, + "claudio": 2.19e-06, + "cognition": 2.19e-06, + "cooker": 2.19e-06, + "cornish": 2.19e-06, + "coupe": 2.19e-06, + "coveted": 2.19e-06, + "craigslist": 2.19e-06, + "cristiano": 2.19e-06, + "crumbs": 2.19e-06, + "cullen": 2.19e-06, + "cures": 5.37e-08, + "curled": 2.19e-06, + "cylindrical": 2.19e-06, + "davey": 2.19e-06, + "deceptive": 2.19e-06, + "deem": 2.19e-06, + "deficiencies": 2.19e-06, + "devastation": 2.19e-06, + "devout": 2.19e-06, + "dia": 2.19e-06, + "dickson": 2.19e-06, + "disproportionate": 2.19e-06, + "disturbances": 2.19e-06, + "divisive": 2.19e-06, + "dk": 2.19e-06, + "dod": 2.19e-06, + "dracula": 2.19e-06, + "ebony": 2.19e-06, + "eduardo": 2.19e-06, + "eileen": 2.19e-06, + "elon": 2.19e-06, + "embodied": 2.19e-06, + "embroidered": 2.19e-06, + "embryo": 2.19e-06, + "eminem": 2.19e-06, + "ensued": 2.19e-06, + "erratic": 2.19e-06, + "exiting": 2.19e-06, + "fang": 2.19e-06, + "fiesta": 2.19e-06, + "folly": 2.19e-06, + "foo": 2.19e-06, + "foreseeable": 2.19e-06, + "frenchman": 2.19e-06, + "friedrich": 2.19e-06, + "fumes": 2.19e-06, + "garde": 2.19e-06, + "garnered": 2.19e-06, + "gerrard": 2.19e-06, + "gilmore": 2.19e-06, + "glazed": 2.19e-06, + "gon": 2.19e-06, + "griffiths": 1.38e-07, + "hardwood": 2.19e-06, + "hendrix": 2.19e-06, + "highness": 2.19e-06, + "hikes": 2.19e-06, + "hindsight": 2.19e-06, + "hinges": 2.19e-06, + "homophobia": 2.19e-06, + "houghton": 2.19e-06, + "hume": 2.19e-06, + "hymns": 2.19e-06, + "hz": 2.19e-06, + "ik": 2.19e-06, + "indifference": 2.19e-06, + "indispensable": 2.19e-06, + "infirmary": 2.19e-06, + "inflict": 2.19e-06, + "ingram": 2.19e-06, + "inhibit": 2.19e-06, + "insanely": 2.19e-06, + "intellectually": 2.19e-06, + "interstellar": 2.19e-06, + "intoxicated": 2.19e-06, + "involuntary": 2.19e-06, + "isil": 2.19e-06, + "issuance": 2.19e-06, + "itchy": 2.19e-06, + "jammed": 2.19e-06, + "jojo": 2.19e-06, + "junta": 2.19e-06, + "lankan": 2.19e-06, + "laos": 2.19e-06, + "latch": 2.19e-06, + "libel": 2.19e-06, + "ligament": 2.19e-06, + "likeness": 2.19e-06, + "lizzie": 2.19e-06, + "loaned": 2.19e-06, + "lofty": 2.19e-06, + "loom": 2.19e-06, + "luc": 2.19e-06, + "ludicrous": 2.19e-06, + "maharashtra": 2.19e-06, + "maize": 2.19e-06, + "malice": 2.19e-06, + "manu": 2.19e-06, + "marginalized": 2.19e-06, + "mazda": 2.19e-06, + "mcmahon": 2.19e-06, + "melvin": 2.19e-06, + "middlesbrough": 2.19e-06, + "milestones": 2.19e-06, + "milford": 2.19e-06, + "milling": 2.19e-06, + "minnie": 2.19e-06, + "mitsubishi": 2.19e-06, + "mixtape": 2.19e-06, + "mods": 1.23e-07, + "mongolia": 2.19e-06, + "motivating": 2.19e-06, + "munitions": 2.19e-06, + "mx": 2.19e-06, + "myrtle": 2.19e-06, + "nemesis": 2.19e-06, + "oreilly": 6.17e-08, + "originality": 2.19e-06, + "orioles": 2.19e-06, + "ornamental": 2.19e-06, + "oysters": 2.19e-06, + "pancreatic": 2.19e-06, + "parkinsons": 1.26e-07, + "parlor": 2.19e-06, + "partnering": 2.19e-06, + "pebble": 2.19e-06, + "peeled": 2.19e-06, + "perseverance": 2.19e-06, + "persisted": 2.19e-06, + "pharmacist": 2.19e-06, + "phillies": 2.19e-06, + "picky": 2.19e-06, + "pistons": 2.19e-06, + "pizzas": 1.41e-07, + "poole": 2.19e-06, + "populace": 2.19e-06, + "pretoria": 2.19e-06, + "pricey": 2.19e-06, + "prima": 2.19e-06, + "prized": 2.19e-06, + "profiling": 2.19e-06, + "progressives": 2.19e-06, + "prompts": 2.19e-06, + "propagation": 2.19e-06, + "psychedelic": 2.19e-06, + "pune": 2.19e-06, + "quieter": 2.19e-06, + "radiator": 2.19e-06, + "randomized": 2.19e-06, + "rapists": 7.59e-08, + "rector": 2.19e-06, + "redeemed": 2.19e-06, + "regal": 2.19e-06, + "relativity": 2.19e-06, + "rene": 2.19e-06, + "revered": 2.19e-06, + "ridicule": 2.19e-06, + "ridley": 2.19e-06, + "roasting": 2.19e-06, + "rocker": 2.19e-06, + "romero": 2.19e-06, + "rotting": 2.19e-06, + "salman": 2.19e-06, + "sami": 2.19e-06, + "sculptor": 2.19e-06, + "semifinals": 2.19e-06, + "shalt": 2.19e-06, + "sheen": 2.19e-06, + "shelton": 2.19e-06, + "showcasing": 2.19e-06, + "sincerity": 2.19e-06, + "sinful": 2.19e-06, + "slander": 2.19e-06, + "sleek": 2.19e-06, + "slew": 2.19e-06, + "sling": 2.19e-06, + "socioeconomic": 2.19e-06, + "solicitors": 1.23e-07, + "spontaneously": 2.19e-06, + "steamed": 2.19e-06, + "stockton": 2.19e-06, + "stratford": 2.19e-06, + "studs": 2.19e-06, + "sturgeon": 2.19e-06, + "subpoena": 2.19e-06, + "swam": 2.19e-06, + "sweeps": 2.19e-06, + "syllabus": 2.19e-06, + "taiwanese": 2.19e-06, + "teaming": 2.19e-06, + "textual": 2.19e-06, + "thinkin": 2.19e-06, + "toad": 2.19e-06, + "tombs": 2.19e-06, + "troopers": 5.62e-08, + "tsa": 2.19e-06, + "tyrone": 2.19e-06, + "unaffected": 2.19e-06, + "uncles": 1.17e-06, + "undeniable": 2.19e-06, + "une": 2.19e-06, + "upstate": 2.19e-06, + "ventura": 2.19e-06, + "vigilant": 2.19e-06, + "visitation": 2.19e-06, + "viva": 2.19e-06, + "volcanoes": 2.19e-06, + "washer": 2.19e-06, + "watered": 2.19e-06, + "werner": 2.19e-06, + "wick": 2.19e-06, + "worldly": 2.19e-06, + "wp": 2.19e-06, + "achieves": 2.14e-06, + "additive": 2.14e-06, + "adept": 2.14e-06, + "advantageous": 2.14e-06, + "aero": 2.14e-06, + "afloat": 2.14e-06, + "agility": 2.14e-06, + "airbus": 2.14e-06, + "alba": 2.14e-06, + "alteration": 2.14e-06, + "annoyance": 2.14e-06, + "anon": 2.14e-06, + "ante": 2.14e-06, + "appointing": 2.14e-06, + "archipelago": 2.14e-06, + "assembling": 2.14e-06, + "bailed": 2.14e-06, + "barkley": 2.14e-06, + "bdsm": 2.14e-06, + "behaviours": 2.14e-06, + "belmont": 2.14e-06, + "bidders": 2.14e-06, + "bloated": 2.14e-06, + "blooming": 2.14e-06, + "blooms": 2.57e-07, + "boating": 2.14e-06, + "bonfire": 2.14e-06, + "bookings": 2.14e-06, + "bowed": 2.14e-06, + "brody": 2.14e-06, + "bullpen": 2.14e-06, + "cafes": 1.38e-07, + "cali": 2.14e-06, + "canine": 2.14e-06, + "capsules": 2.14e-06, + "carb": 2.14e-06, + "carver": 2.14e-06, + "causal": 2.14e-06, + "centrally": 2.14e-06, + "cheerleader": 2.14e-06, + "christy": 2.14e-06, + "circling": 2.14e-06, + "citadel": 2.14e-06, + "clifton": 2.14e-06, + "climates": 2.14e-06, + "colonialism": 2.14e-06, + "comforts": 2.14e-06, + "compromising": 2.14e-06, + "corvette": 2.14e-06, + "costco": 2.14e-06, + "cowards": 2.24e-07, + "cranes": 2.51e-07, + "cunts": 2.14e-06, + "cutest": 2.14e-06, + "dashboard": 2.14e-06, + "deficient": 2.14e-06, + "degenerate": 2.14e-06, + "demonic": 2.14e-06, + "deterrent": 2.14e-06, + "disdain": 2.14e-06, + "disgraceful": 2.14e-06, + "doggy": 2.14e-06, + "dole": 2.14e-06, + "dreamt": 2.14e-06, + "dun": 2.14e-06, + "eerie": 2.14e-06, + "electing": 2.14e-06, + "enraged": 2.14e-06, + "envelopes": 2.14e-06, + "eroded": 2.14e-06, + "estimating": 2.14e-06, + "ethel": 2.14e-06, + "excursion": 2.14e-06, + "exemptions": 2.14e-06, + "exponential": 2.14e-06, + "farce": 2.14e-06, + "fatally": 2.14e-06, + "fingerprints": 2.14e-06, + "flanders": 2.14e-06, + "flickr": 2.14e-06, + "fling": 2.14e-06, + "flowed": 2.14e-06, + "flung": 2.14e-06, + "fragmented": 2.14e-06, + "frankenstein": 2.14e-06, + "frantic": 2.14e-06, + "fudge": 2.14e-06, + "gabrielle": 2.14e-06, + "gemma": 2.14e-06, + "gideon": 2.14e-06, + "glide": 2.14e-06, + "glover": 2.14e-06, + "gras": 2.14e-06, + "grieve": 2.14e-06, + "grimes": 2.14e-06, + "grossly": 2.14e-06, + "grudge": 2.14e-06, + "gucci": 2.14e-06, + "hairstyle": 2.14e-06, + "handwritten": 2.14e-06, + "hardships": 2.14e-06, + "harmonic": 2.14e-06, + "hb": 2.14e-06, + "headlights": 2.14e-06, + "heartless": 2.14e-06, + "hectic": 2.14e-06, + "holistic": 2.14e-06, + "hooper": 2.14e-06, + "hormonal": 2.14e-06, + "huffington": 2.14e-06, + "ict": 2.14e-06, + "implanted": 2.14e-06, + "informant": 2.14e-06, + "inhabit": 2.14e-06, + "intervening": 2.14e-06, + "intrusive": 2.14e-06, + "investigates": 2.14e-06, + "invoke": 2.14e-06, + "invoked": 2.14e-06, + "jackass": 2.14e-06, + "jericho": 2.14e-06, + "jonny": 2.14e-06, + "josephine": 2.14e-06, + "joyous": 2.14e-06, + "kiwi": 2.14e-06, + "latinos": 2.14e-06, + "leaflets": 2.14e-06, + "licences": 2.14e-06, + "lim": 2.14e-06, + "limo": 2.14e-06, + "lulu": 2.14e-06, + "lunchtime": 2.14e-06, + "lux": 2.14e-06, + "mace": 2.14e-06, + "maher": 2.14e-06, + "malawi": 2.14e-06, + "malignant": 2.14e-06, + "mane": 2.14e-06, + "mascara": 2.14e-06, + "matchmaking": 2.14e-06, + "maverick": 2.14e-06, + "measles": 2.14e-06, + "mend": 2.14e-06, + "mentoring": 2.14e-06, + "mich": 2.14e-06, + "microbial": 2.14e-06, + "microsofts": 2.14e-06, + "migraine": 2.14e-06, + "millennial": 2.14e-06, + "mitt": 2.14e-06, + "molten": 2.14e-06, + "monsoon": 2.14e-06, + "montage": 2.14e-06, + "monterey": 2.14e-06, + "morales": 2.14e-06, + "napoli": 2.14e-06, + "negligent": 2.14e-06, + "netanyahu": 2.14e-06, + "nikon": 2.14e-06, + "nil": 2.14e-06, + "norma": 2.14e-06, + "ofthe": 2.14e-06, + "opioid": 2.14e-06, + "optimize": 2.14e-06, + "pakistans": 2.14e-06, + "passionately": 2.14e-06, + "pastors": 3.55e-07, + "pathogens": 2.14e-06, + "penetrating": 2.14e-06, + "persuasion": 2.14e-06, + "phased": 2.14e-06, + "phyllis": 2.14e-06, + "plaid": 2.14e-06, + "playback": 2.14e-06, + "plush": 2.14e-06, + "portraying": 2.14e-06, + "portrays": 2.14e-06, + "positivity": 2.14e-06, + "practised": 2.14e-06, + "precedence": 2.14e-06, + "preferring": 2.14e-06, + "previews": 2.14e-06, + "pristine": 2.14e-06, + "prognosis": 2.14e-06, + "propeller": 2.14e-06, + "pyramids": 2.14e-06, + "quotas": 2.14e-06, + "racket": 2.14e-06, + "rags": 2.14e-06, + "rajasthan": 2.14e-06, + "realistically": 2.14e-06, + "reclaimed": 2.14e-06, + "reilly": 2.14e-06, + "relatable": 2.14e-06, + "reorganization": 2.14e-06, + "resembled": 2.14e-06, + "resided": 2.14e-06, + "retrieval": 2.14e-06, + "rotated": 2.14e-06, + "roundabout": 2.14e-06, + "saline": 2.14e-06, + "saviour": 2.14e-06, + "scarcely": 2.14e-06, + "scraping": 2.14e-06, + "serie": 2.14e-06, + "shipbuilding": 2.14e-06, + "shiva": 2.14e-06, + "shrugged": 2.14e-06, + "siemens": 2.14e-06, + "signings": 2.14e-06, + "slogans": 2.14e-06, + "smoky": 2.14e-06, + "solids": 2.14e-06, + "solos": 1.82e-07, + "spade": 2.14e-06, + "spoils": 2.14e-06, + "staffordshire": 2.14e-06, + "steroid": 2.14e-06, + "supplemented": 2.14e-06, + "surveying": 2.14e-06, + "swans": 1.78e-07, + "tata": 2.14e-06, + "tds": 2.51e-07, + "temperate": 2.14e-06, + "temps": 2.14e-06, + "thematic": 2.14e-06, + "threesome": 2.14e-06, + "thunderstorms": 2.14e-06, + "tilted": 2.14e-06, + "toaster": 2.14e-06, + "treble": 2.14e-06, + "turquoise": 2.14e-06, + "ultraviolet": 2.14e-06, + "unbiased": 2.14e-06, + "unc": 2.14e-06, + "uncanny": 2.14e-06, + "underdog": 2.14e-06, + "unfolding": 2.14e-06, + "ungrateful": 2.14e-06, + "untreated": 2.14e-06, + "usefulness": 2.14e-06, + "vandalism": 2.14e-06, + "vargas": 2.14e-06, + "vibrating": 2.14e-06, + "vowel": 2.14e-06, + "voyager": 2.14e-06, + "weirdo": 2.14e-06, + "weld": 2.14e-06, + "werewolf": 2.14e-06, + "wilsons": 2e-07, + "wrongful": 2.14e-06, + "ww": 2.14e-06, + "xu": 2.14e-06, + "aba": 2.09e-06, + "acknowledgement": 2.09e-06, + "adored": 2.09e-06, + "airbnb": 2.09e-06, + "alerted": 2.09e-06, + "alleges": 2.09e-06, + "alligator": 2.09e-06, + "amends": 2.09e-06, + "annoys": 2.09e-06, + "antagonist": 2.09e-06, + "apa": 2.09e-06, + "approximation": 2.09e-06, + "aromatic": 2.09e-06, + "assurances": 2.09e-06, + "attendants": 5.75e-08, + "auschwitz": 2.09e-06, + "baroque": 2.09e-06, + "bays": 5.89e-07, + "behavioural": 2.09e-06, + "belgrade": 2.09e-06, + "benefiting": 2.09e-06, + "berg": 2.09e-06, + "bergen": 2.09e-06, + "bethany": 2.09e-06, + "bg": 2.09e-06, + "biases": 2.09e-06, + "binder": 2.09e-06, + "blindly": 2.09e-06, + "brig": 2.09e-06, + "buggy": 2.09e-06, + "bundled": 2.09e-06, + "burnett": 2.09e-06, + "buzzfeed": 2.09e-06, + "calves": 2.09e-06, + "camille": 2.09e-06, + "canonical": 2.09e-06, + "cautiously": 2.09e-06, + "ceasefire": 2.09e-06, + "celery": 2.09e-06, + "characterize": 2.09e-06, + "chinatown": 2.09e-06, + "collaborations": 2.09e-06, + "collaborators": 2.09e-06, + "commissioning": 2.09e-06, + "cor": 2.09e-06, + "counsellor": 2.09e-06, + "countered": 2.09e-06, + "couture": 2.09e-06, + "cramps": 2.09e-06, + "croatian": 2.09e-06, + "crowdfunding": 2.09e-06, + "cutie": 2.09e-06, + "dab": 2.09e-06, + "dar": 2.09e-06, + "darcy": 2.09e-06, + "dawg": 2.09e-06, + "dentists": 3.16e-07, + "deploying": 2.09e-06, + "deserts": 5.75e-08, + "df": 2.09e-06, + "dictates": 2.09e-06, + "dion": 2.09e-06, + "dissatisfaction": 2.09e-06, + "dodgy": 2.09e-06, + "earthly": 2.09e-06, + "eaters": 5.75e-08, + "elective": 2.09e-06, + "emitted": 2.09e-06, + "endeavors": 2.09e-06, + "enslaved": 2.09e-06, + "ent": 2.09e-06, + "entrances": 2.09e-06, + "eq": 2.09e-06, + "escalation": 2.09e-06, + "ethos": 2.09e-06, + "eureka": 2.09e-06, + "exec": 2.09e-06, + "eyewitness": 2.09e-06, + "fag": 2.09e-06, + "favours": 2.09e-06, + "fil": 2.09e-06, + "fitz": 2.09e-06, + "fleeting": 2.09e-06, + "flourished": 2.09e-06, + "forfeit": 2.09e-06, + "forging": 2.09e-06, + "foundry": 2.09e-06, + "fractions": 2.09e-06, + "fro": 2.09e-06, + "funerals": 2.09e-06, + "furnishings": 2.09e-06, + "giraffe": 2.09e-06, + "gma": 2.09e-06, + "gmail": 2.09e-06, + "grinder": 2.09e-06, + "gunman": 2.09e-06, + "hampered": 2.09e-06, + "hardcover": 2.09e-06, + "healer": 2.09e-06, + "heals": 2.09e-06, + "hermione": 2.09e-06, + "hinge": 2.09e-06, + "hubbard": 2.09e-06, + "hurley": 2.09e-06, + "illustrating": 2.09e-06, + "inaugurated": 2.09e-06, + "indexes": 2.09e-06, + "insiders": 2.88e-07, + "intestinal": 2.09e-06, + "intra": 2.09e-06, + "irons": 8.13e-08, + "islamabad": 2.09e-06, + "jock": 2.09e-06, + "jumpers": 2.09e-06, + "kidd": 2.09e-06, + "kneeling": 2.09e-06, + "knuckles": 2.09e-06, + "ladys": 1.02e-07, + "lauderdale": 2.09e-06, + "lifestyles": 2.09e-06, + "lr": 2.09e-06, + "ludwig": 2.09e-06, + "macbeth": 2.09e-06, + "mamma": 2.09e-06, + "manic": 2.09e-06, + "manifold": 2.09e-06, + "margot": 2.09e-06, + "measurable": 2.09e-06, + "medina": 2.09e-06, + "meek": 2.09e-06, + "mellow": 2.09e-06, + "melon": 2.09e-06, + "mirrored": 2.09e-06, + "miscarriage": 2.09e-06, + "mla": 2.09e-06, + "mojo": 2.09e-06, + "msnbc": 2.09e-06, + "napa": 2.09e-06, + "narration": 2.09e-06, + "nasas": 2.09e-06, + "nassau": 2.09e-06, + "nicki": 2.09e-06, + "nip": 2.09e-06, + "nxt": 2.09e-06, + "nye": 2.09e-06, + "oblivion": 2.09e-06, + "observes": 2.09e-06, + "ohhh": 2.09e-06, + "oilers": 2.09e-06, + "ornament": 2.09e-06, + "outpatient": 2.09e-06, + "pamphlet": 2.09e-06, + "parishes": 2.09e-06, + "pats": 4.68e-07, + "penelope": 2.09e-06, + "perish": 2.09e-06, + "perpetrator": 2.09e-06, + "pervert": 2.09e-06, + "pharaoh": 2.09e-06, + "philanthropy": 2.09e-06, + "photon": 2.09e-06, + "polluted": 2.09e-06, + "potion": 2.09e-06, + "premiered": 2.09e-06, + "preparedness": 2.09e-06, + "pretends": 2.09e-06, + "prettier": 2.09e-06, + "primal": 2.09e-06, + "princesses": 2.09e-06, + "prohibiting": 2.09e-06, + "psalms": 2.09e-06, + "psg": 2.09e-06, + "psychopath": 2.09e-06, + "pups": 1.17e-07, + "qui": 2.09e-06, + "quid": 2.09e-06, + "receptive": 2.09e-06, + "redundancy": 2.09e-06, + "reelection": 2.09e-06, + "reindeer": 2.09e-06, + "relapse": 2.09e-06, + "relish": 2.09e-06, + "rendezvous": 2.09e-06, + "republics": 6.03e-07, + "reversible": 2.09e-06, + "roche": 2.09e-06, + "rodents": 2.09e-06, + "rowan": 2.09e-06, + "rudolph": 2.09e-06, + "saharan": 2.09e-06, + "scumbag": 2.09e-06, + "seams": 2.09e-06, + "seizing": 2.09e-06, + "selectively": 2.09e-06, + "sensed": 2.09e-06, + "shred": 2.09e-06, + "sideline": 2.09e-06, + "sidelines": 2.09e-06, + "simplistic": 2.09e-06, + "skater": 2.09e-06, + "skincare": 2.09e-06, + "soc": 2.09e-06, + "spawning": 2.09e-06, + "spokane": 2.09e-06, + "sta": 2.09e-06, + "stabilized": 2.09e-06, + "stares": 2.09e-06, + "staten": 2.09e-06, + "steaming": 2.09e-06, + "substitutes": 2.09e-06, + "supervise": 2.09e-06, + "supervising": 2.09e-06, + "supervisory": 2.09e-06, + "swapping": 2.09e-06, + "sweeter": 2.09e-06, + "syllable": 2.09e-06, + "synod": 2.09e-06, + "taipei": 2.09e-06, + "takeaway": 2.09e-06, + "tatum": 2.09e-06, + "teased": 2.09e-06, + "tees": 6.17e-08, + "tesco": 2.09e-06, + "thorpe": 2.09e-06, + "titus": 2.09e-06, + "towing": 2.09e-06, + "treacherous": 2.09e-06, + "turnbull": 2.09e-06, + "undermined": 2.09e-06, + "undermining": 2.09e-06, + "untold": 2.09e-06, + "uplifting": 2.09e-06, + "upsets": 2.09e-06, + "vaccinated": 2.09e-06, + "vaughn": 2.09e-06, + "vents": 2.09e-06, + "versatility": 2.09e-06, + "visualization": 2.09e-06, + "voicemail": 2.09e-06, + "volt": 2.09e-06, + "wakefield": 2.09e-06, + "watford": 2.09e-06, + "wholl": 2.09e-06, + "wielding": 2.09e-06, + "wiggins": 2.09e-06, + "wilkins": 2.09e-06, + "wingers": 2.09e-06, + "winnie": 2.09e-06, + "wits": 1.2e-07, + "wrongs": 2.09e-06, + "yeh": 2.09e-06, + "abnormalities": 2.04e-06, + "allocate": 2.04e-06, + "analytic": 2.04e-06, + "ans": 5.01e-08, + "apprehended": 2.04e-06, + "ascending": 2.04e-06, + "attributable": 2.04e-06, + "aubrey": 2.04e-06, + "barb": 2.04e-06, + "bastion": 2.04e-06, + "beaumont": 2.04e-06, + "bey": 2.04e-06, + "biopsy": 2.04e-06, + "blackwell": 2.04e-06, + "bolster": 2.04e-06, + "bray": 2.04e-06, + "briefs": 2.04e-06, + "caitlin": 2.04e-06, + "calais": 2.04e-06, + "cancelling": 2.04e-06, + "canning": 2.04e-06, + "capitalists": 2.04e-06, + "categorized": 2.04e-06, + "cba": 2.04e-06, + "cbi": 2.04e-06, + "cg": 2.04e-06, + "chopper": 2.04e-06, + "chromosomes": 2.04e-06, + "chunky": 2.04e-06, + "classed": 2.04e-06, + "clerks": 3.8e-07, + "cohesive": 2.04e-06, + "comey": 2.04e-06, + "commando": 2.04e-06, + "complication": 2.04e-06, + "computed": 2.04e-06, + "conquering": 2.04e-06, + "constituencies": 2.04e-06, + "contentious": 2.04e-06, + "contra": 2.04e-06, + "corbyn": 2.04e-06, + "cosy": 2.04e-06, + "coyotes": 5.37e-08, + "crease": 2.04e-06, + "cursing": 2.04e-06, + "deadliest": 2.04e-06, + "degraded": 2.04e-06, + "dehydration": 2.04e-06, + "delights": 2.04e-06, + "denomination": 2.04e-06, + "derbyshire": 2.04e-06, + "desserts": 2.04e-06, + "digestion": 2.04e-06, + "dismantled": 2.04e-06, + "dissatisfied": 2.04e-06, + "distinctions": 2.04e-06, + "docking": 2.04e-06, + "dodging": 2.04e-06, + "donut": 2.04e-06, + "doubting": 2.04e-06, + "dungeons": 2.04e-06, + "effected": 2.04e-06, + "embargo": 2.04e-06, + "embodiment": 2.04e-06, + "emptied": 2.04e-06, + "encoded": 2.04e-06, + "engraving": 2.04e-06, + "enhances": 2.04e-06, + "entrenched": 2.04e-06, + "explanatory": 2.04e-06, + "extremism": 2.04e-06, + "fairfield": 2.04e-06, + "fairies": 2.04e-06, + "faulkner": 2.04e-06, + "fg": 2.04e-06, + "filtration": 2.04e-06, + "finalized": 2.04e-06, + "flagged": 2.04e-06, + "fleets": 2.04e-07, + "fooling": 2.04e-06, + "formatting": 2.04e-06, + "fracking": 2.04e-06, + "francesca": 2.04e-06, + "francesco": 2.04e-06, + "fungal": 2.04e-06, + "gabe": 2.04e-06, + "garry": 2.04e-06, + "garth": 2.04e-06, + "ghz": 2.04e-06, + "gillian": 2.04e-06, + "glaciers": 2.04e-06, + "glaring": 2.04e-06, + "gloom": 2.04e-06, + "goblin": 2.04e-06, + "gunner": 2.04e-06, + "hammers": 1.51e-07, + "hamster": 2.04e-06, + "heaps": 2.51e-08, + "hex": 2.04e-06, + "homosexuals": 2.04e-06, + "hooking": 2.04e-06, + "hopped": 2.04e-06, + "hydra": 2.04e-06, + "hypocritical": 2.04e-06, + "illustrious": 2.04e-06, + "incidental": 2.04e-06, + "indigo": 2.04e-06, + "industrys": 2.04e-06, + "inscriptions": 2.04e-06, + "instruct": 2.04e-06, + "insurgency": 2.04e-06, + "intimidate": 2.04e-06, + "ipa": 2.04e-06, + "irregularities": 2.04e-06, + "jamming": 2.04e-06, + "jax": 2.04e-06, + "kyrie": 2.04e-06, + "labyrinth": 2.04e-06, + "lac": 2.04e-06, + "latency": 2.04e-06, + "limbo": 2.04e-06, + "linger": 2.04e-06, + "lousy": 2.04e-06, + "luncheon": 2.04e-06, + "mailbox": 2.04e-06, + "mammal": 2.04e-06, + "mcguire": 2.04e-06, + "membranes": 2.04e-06, + "memorabilia": 2.04e-06, + "midterm": 2.04e-06, + "midtown": 2.04e-06, + "migrated": 2.04e-06, + "millers": 1.15e-06, + "mimi": 2.04e-06, + "muir": 2.04e-06, + "muzzle": 2.04e-06, + "myspace": 2.04e-06, + "nationalities": 2.04e-06, + "nec": 2.04e-06, + "nurture": 2.04e-06, + "oblivious": 2.04e-06, + "ode": 2.04e-06, + "oem": 2.04e-06, + "olga": 2.04e-06, + "olson": 2.04e-06, + "ortiz": 2.04e-06, + "outlining": 2.04e-06, + "overt": 2.04e-06, + "pacers": 2.04e-06, + "paisley": 2.04e-06, + "pajamas": 2.04e-06, + "palo": 2.04e-06, + "patriarch": 2.04e-06, + "penthouse": 2.04e-06, + "perjury": 2.04e-06, + "persists": 2.04e-06, + "pious": 2.04e-06, + "plotted": 2.04e-06, + "potomac": 2.04e-06, + "powdered": 2.04e-06, + "pregnancies": 2.04e-06, + "prematurely": 2.04e-06, + "presenters": 2.04e-06, + "prioritize": 2.04e-06, + "proprietor": 2.04e-06, + "putnam": 2.04e-06, + "quarrel": 2.04e-06, + "raider": 2.04e-06, + "rained": 2.04e-06, + "raja": 2.04e-06, + "rea": 2.04e-06, + "reasoned": 2.04e-06, + "rebate": 2.04e-06, + "regulates": 2.04e-06, + "reins": 2.14e-08, + "resurgence": 2.04e-06, + "rh": 2.04e-06, + "roc": 2.04e-06, + "rollers": 2.04e-06, + "rooster": 2.04e-06, + "routed": 2.04e-06, + "rufus": 2.04e-06, + "rushes": 2.04e-06, + "rx": 2.04e-06, + "sakura": 2.04e-06, + "salads": 2.04e-06, + "sanskrit": 2.04e-06, + "scientology": 2.04e-06, + "scooby": 2.04e-06, + "scuba": 2.04e-06, + "seamless": 2.04e-06, + "selects": 2.04e-06, + "sequels": 2.04e-06, + "shattering": 2.04e-06, + "shelly": 2.04e-06, + "sheppard": 2.04e-06, + "shite": 2.04e-06, + "shoreline": 2.04e-06, + "siberian": 2.04e-06, + "sickening": 2.04e-06, + "sidewalks": 2.04e-06, + "silhouette": 2.04e-06, + "slug": 2.04e-06, + "smackdown": 2.04e-06, + "smug": 2.04e-06, + "soprano": 2.04e-06, + "specialties": 2.04e-06, + "spectroscopy": 2.04e-06, + "spreadsheet": 2.04e-06, + "stagnant": 2.04e-06, + "startled": 2.04e-06, + "steaks": 2.04e-06, + "stephenson": 2.04e-06, + "streaks": 2.04e-06, + "strides": 2.04e-06, + "strung": 2.04e-06, + "summaries": 2.04e-06, + "tanning": 2.04e-06, + "tendon": 2.04e-06, + "thc": 2.04e-06, + "thine": 2.04e-06, + "timmy": 2.04e-06, + "tnt": 2.04e-06, + "toughness": 2.04e-06, + "tracey": 2.04e-06, + "tractors": 2.04e-06, + "turin": 2.04e-06, + "unanswered": 2.04e-06, + "unethical": 2.04e-06, + "uniting": 2.04e-06, + "unix": 2.04e-06, + "uptown": 2.04e-06, + "urinary": 2.04e-06, + "valiant": 2.04e-06, + "vigilante": 2.04e-06, + "viper": 2.04e-06, + "washingtons": 7.76e-08, + "weekday": 2.04e-06, + "weirdest": 2.04e-06, + "westwood": 2.04e-06, + "whistles": 2.04e-06, + "whitehall": 2.04e-06, + "wilhelm": 2.04e-06, + "willard": 2.04e-06, + "woe": 2.04e-06, + "wrinkles": 2.04e-06, + "ws": 3.02e-07, + "abi": 2e-06, + "abstraction": 2e-06, + "adjunct": 2e-06, + "administering": 2e-06, + "admiring": 2e-06, + "ami": 2e-06, + "ascended": 2e-06, + "asean": 2e-06, + "aspiration": 2e-06, + "atkins": 2e-06, + "attentive": 2e-06, + "auntie": 2e-06, + "austen": 2e-06, + "awakened": 2e-06, + "ballpark": 2e-06, + "barbarians": 2e-06, + "beak": 2e-06, + "beige": 2e-06, + "bellamy": 2e-06, + "blasphemy": 2e-06, + "blinds": 5.62e-08, + "blinking": 2e-06, + "blueberry": 2e-06, + "boar": 2e-06, + "bosch": 2e-06, + "bran": 2e-06, + "breathes": 2e-06, + "bribes": 2e-06, + "brigadier": 2e-06, + "broaden": 2e-06, + "bubba": 2e-06, + "bulky": 2e-06, + "burdens": 2e-06, + "busch": 2e-06, + "cadets": 2e-06, + "calendars": 2e-06, + "camels": 3.31e-07, + "cameraman": 2e-06, + "carbohydrates": 2e-06, + "carnage": 2e-06, + "cavities": 2e-06, + "chateau": 2e-06, + "chavez": 2e-06, + "colleen": 2e-06, + "comedies": 2e-06, + "commended": 2e-06, + "commune": 2e-06, + "compiling": 2e-06, + "conclusive": 2e-06, + "conservatory": 2e-06, + "considerate": 2e-06, + "constance": 2e-06, + "constructions": 2e-06, + "coo": 2e-06, + "cryptocurrency": 2e-06, + "cultured": 2e-06, + "dans": 7.76e-07, + "daycare": 2e-06, + "debra": 2e-06, + "deductions": 2e-06, + "depressive": 2e-06, + "descendant": 2e-06, + "dips": 2e-06, + "disperse": 2e-06, + "disproportionately": 2e-06, + "dives": 2e-06, + "downed": 2e-06, + "ecommerce": 2e-06, + "emery": 2e-06, + "enrich": 2e-06, + "entrants": 2e-06, + "epidemiology": 2e-06, + "errands": 2e-06, + "esque": 2e-06, + "exaggeration": 2e-06, + "exhaustive": 2e-06, + "exponentially": 2e-06, + "exporters": 2e-06, + "externally": 2e-06, + "fanbase": 2e-06, + "fermentation": 2e-06, + "fiasco": 2e-06, + "fifteenth": 2e-06, + "flares": 2e-06, + "flo": 2e-06, + "flops": 2e-06, + "flores": 2e-06, + "footed": 2e-06, + "fright": 2e-06, + "fruitful": 2e-06, + "gall": 2e-06, + "gastric": 2e-06, + "gilded": 2e-06, + "goddard": 2e-06, + "hallelujah": 2e-06, + "hastily": 2e-06, + "haynes": 2e-06, + "headphone": 2e-06, + "heinrich": 2e-06, + "hemingway": 2e-06, + "horizontally": 2e-06, + "hubert": 2e-06, + "hurtful": 2e-06, + "illuminate": 2e-06, + "inaccessible": 2e-06, + "incur": 2e-06, + "inferno": 2e-06, + "introductions": 2e-06, + "inverness": 2e-06, + "irelands": 8.71e-08, + "isabelle": 2e-06, + "jog": 2e-06, + "jt": 2e-06, + "jug": 2e-06, + "kgb": 2e-06, + "kinder": 2e-06, + "knoxville": 2e-06, + "labrador": 2e-06, + "latte": 2e-06, + "leafy": 2e-06, + "lobe": 2e-06, + "loo": 2e-06, + "luiz": 2e-06, + "lyle": 2e-06, + "maga": 2e-06, + "maguire": 2e-06, + "margarita": 2e-06, + "masturbating": 2e-06, + "mcbride": 2e-06, + "meddling": 2e-06, + "nadia": 2e-06, + "nods": 2e-06, + "nothings": 5.89e-07, + "ofc": 2e-06, + "ollie": 2e-06, + "omission": 2e-06, + "orbits": 2e-06, + "orchid": 2e-06, + "overtake": 2e-06, + "paramedics": 2e-06, + "pax": 2e-06, + "peabody": 2e-06, + "peat": 2e-06, + "pedophile": 2e-06, + "peptide": 2e-06, + "perfected": 2e-06, + "periphery": 2e-06, + "perished": 2e-06, + "physicists": 2e-06, + "piggy": 2e-06, + "piling": 2e-06, + "polarized": 2e-06, + "portals": 6.31e-08, + "pov": 2e-06, + "predetermined": 2e-06, + "prelude": 2e-06, + "prepaid": 2e-06, + "priesthood": 2e-06, + "punishable": 2e-06, + "rahman": 2e-06, + "rao": 2e-06, + "ravi": 2e-06, + "reaper": 2e-06, + "reassure": 2e-06, + "redesigned": 2e-06, + "regiments": 1.1e-07, + "remnant": 2e-06, + "renders": 2e-06, + "rhys": 2e-06, + "rockstar": 2e-06, + "ros": 2e-06, + "rosenberg": 2e-06, + "rounder": 2e-06, + "sanford": 2e-06, + "satanic": 2e-06, + "sausages": 2e-06, + "scented": 2e-06, + "sclerosis": 2e-06, + "selfless": 2e-06, + "serenity": 2e-06, + "shading": 2e-06, + "shrug": 2e-06, + "sighting": 2e-06, + "singled": 2e-06, + "sipping": 2e-06, + "siri": 2e-06, + "sonar": 2e-06, + "spat": 2e-06, + "stabilization": 2e-06, + "stacking": 2e-06, + "starch": 2e-06, + "stony": 2e-06, + "stormed": 2e-06, + "subtly": 2e-06, + "superstars": 5.13e-08, + "surfer": 2e-06, + "taj": 2e-06, + "taper": 2e-06, + "teaspoon": 2e-06, + "templates": 2e-06, + "thorne": 2e-06, + "tightening": 2e-06, + "tlc": 2e-06, + "tolls": 2e-06, + "tos": 2.29e-07, + "totaling": 2e-06, + "toxin": 2e-06, + "trademarks": 2e-06, + "tudor": 2e-06, + "turk": 2e-06, + "typo": 2e-06, + "unequal": 2e-06, + "unresolved": 2e-06, + "unspecified": 2e-06, + "vacated": 2e-06, + "veg": 2e-06, + "venetian": 2e-06, + "vhs": 2e-06, + "waffle": 2e-06, + "wanda": 2e-06, + "warships": 2e-06, + "washes": 2e-06, + "wasps": 2e-06, + "welp": 2e-06, + "wha": 2e-06, + "winery": 2e-06, + "wm": 2e-06, + "writ": 2e-06, + "xiao": 2e-06, + "yamaha": 2e-06, + "zara": 2e-06, + "zipper": 2e-06, + "acclaim": 1.95e-06, + "aching": 1.95e-06, + "acquires": 1.95e-06, + "adversary": 1.95e-06, + "afflicted": 1.95e-06, + "airfield": 1.95e-06, + "akbar": 1.95e-06, + "alienated": 1.95e-06, + "angered": 1.95e-06, + "archers": 2.82e-07, + "arrays": 1.95e-06, + "ascertain": 1.95e-06, + "assam": 1.95e-06, + "audits": 1.95e-06, + "bargains": 1.95e-06, + "beards": 1.15e-07, + "believable": 1.95e-06, + "billboards": 4.37e-07, + "bitterly": 1.95e-06, + "bloodshed": 1.95e-06, + "boils": 1.95e-06, + "boko": 1.95e-06, + "breaths": 1.95e-06, + "brigades": 9.55e-08, + "bumping": 1.95e-06, + "burrows": 1.95e-06, + "cairns": 1.95e-06, + "caracas": 1.95e-06, + "cassie": 1.95e-06, + "cello": 1.95e-06, + "celsius": 1.95e-06, + "certifications": 1.95e-06, + "cesar": 1.95e-06, + "chai": 1.95e-06, + "chariot": 1.95e-06, + "cheddar": 1.95e-06, + "chilli": 1.95e-06, + "cholera": 1.95e-06, + "cio": 1.95e-06, + "clinch": 1.95e-06, + "clipped": 1.95e-06, + "collide": 1.95e-06, + "commemoration": 1.95e-06, + "commuting": 1.95e-06, + "complexion": 1.95e-06, + "compulsive": 1.95e-06, + "congenital": 1.95e-06, + "construed": 1.95e-06, + "consular": 1.95e-06, + "corrective": 1.95e-06, + "costello": 1.95e-06, + "coworker": 1.95e-06, + "crumble": 1.95e-06, + "crumbling": 1.95e-06, + "cultivating": 1.95e-06, + "daddys": 6.61e-08, + "dangling": 1.95e-06, + "daredevil": 1.95e-06, + "decentralized": 1.95e-06, + "dei": 1.95e-06, + "denominations": 1.95e-06, + "denote": 1.95e-06, + "detox": 1.95e-06, + "didn": 1.95e-06, + "differentiated": 1.95e-06, + "discrepancy": 1.95e-06, + "dishwasher": 1.95e-06, + "doctrines": 1.95e-06, + "doj": 1.95e-06, + "donaldson": 1.95e-06, + "doodle": 1.95e-06, + "dossier": 1.95e-06, + "draper": 1.95e-06, + "dunham": 1.95e-06, + "dyes": 1.95e-06, + "easton": 1.95e-06, + "eastwood": 1.95e-06, + "edna": 1.95e-06, + "electrodes": 1.95e-06, + "embryos": 1.95e-06, + "eradicate": 1.95e-06, + "excite": 1.95e-06, + "exporter": 1.95e-06, + "extortion": 1.95e-06, + "extracting": 1.95e-06, + "ey": 1.95e-06, + "fay": 1.95e-06, + "feral": 1.95e-06, + "flips": 1.95e-06, + "flourishing": 1.95e-06, + "footprints": 1.95e-06, + "forster": 1.95e-06, + "fortnite": 1.95e-06, + "fountains": 1.95e-06, + "frameworks": 1.95e-06, + "freezes": 1.95e-06, + "generously": 1.95e-06, + "godfrey": 1.95e-06, + "grange": 1.95e-06, + "greats": 1.1e-07, + "gui": 1.95e-06, + "hangar": 1.95e-06, + "hardworking": 1.95e-06, + "harms": 7.41e-07, + "hasty": 1.95e-06, + "hathaway": 1.95e-06, + "hdmi": 1.95e-06, + "hermes": 1.95e-06, + "hijacked": 1.95e-06, + "housekeeper": 1.95e-06, + "husky": 1.95e-06, + "idf": 1.95e-06, + "iggy": 1.95e-06, + "imitate": 1.95e-06, + "imperfections": 1.95e-06, + "improbable": 1.95e-06, + "impulses": 1.95e-06, + "incarcerated": 1.95e-06, + "ineligible": 1.95e-06, + "infusion": 1.95e-06, + "iu": 1.95e-06, + "jaguars": 1.07e-07, + "jeb": 1.95e-06, + "journalistic": 1.95e-06, + "julien": 1.95e-06, + "justifying": 1.95e-06, + "kapoor": 1.95e-06, + "kart": 1.95e-06, + "kelvin": 1.95e-06, + "keyword": 1.95e-06, + "kolkata": 1.95e-06, + "laborers": 1.95e-06, + "laced": 1.95e-06, + "lai": 1.95e-06, + "lemons": 6.46e-08, + "lincolnshire": 1.95e-06, + "lipid": 1.95e-06, + "looming": 1.95e-06, + "lordship": 1.95e-06, + "louisa": 1.95e-06, + "mahogany": 1.95e-06, + "malfunction": 1.95e-06, + "mana": 1.95e-06, + "manson": 1.95e-06, + "marin": 1.95e-06, + "markedly": 1.95e-06, + "marta": 1.95e-06, + "mccann": 1.95e-06, + "mckenna": 1.95e-06, + "mcqueen": 1.95e-06, + "mediator": 1.95e-06, + "mein": 1.95e-06, + "mentors": 1.02e-07, + "meow": 1.95e-06, + "mer": 1.95e-06, + "minions": 1.95e-06, + "mirage": 1.95e-06, + "mockery": 1.95e-06, + "modulation": 1.95e-06, + "motorists": 1.95e-06, + "mozambique": 1.95e-06, + "muller": 1.95e-06, + "narrated": 1.95e-06, + "narrower": 1.95e-06, + "natures": 9.33e-07, + "navigating": 1.95e-06, + "navigator": 1.95e-06, + "nes": 1.95e-06, + "nightingale": 1.95e-06, + "nuke": 1.95e-06, + "oconnell": 1.95e-06, + "occult": 1.95e-06, + "ocd": 1.95e-06, + "olympian": 1.95e-06, + "opting": 1.95e-06, + "osama": 1.95e-06, + "ovation": 1.95e-06, + "oversees": 1.95e-06, + "palaces": 2.34e-07, + "palin": 1.95e-06, + "parades": 7.24e-08, + "payback": 1.95e-06, + "pediatrics": 1.95e-06, + "perch": 1.95e-06, + "perpendicular": 1.95e-06, + "physique": 1.95e-06, + "pioneered": 1.95e-06, + "playbook": 1.95e-06, + "pleases": 1.95e-06, + "plywood": 1.95e-06, + "pollutants": 1.95e-06, + "ponies": 1.95e-06, + "pooh": 1.95e-06, + "ppp": 1.95e-06, + "prettiest": 1.95e-06, + "proficient": 1.95e-06, + "protagonists": 2.04e-07, + "pst": 1.95e-06, + "punctuation": 1.95e-06, + "purification": 1.95e-06, + "purported": 1.95e-06, + "putins": 6.46e-08, + "qi": 1.95e-06, + "quotations": 1.95e-06, + "ramifications": 1.95e-06, + "readable": 1.95e-06, + "recourse": 1.95e-06, + "regimen": 1.95e-06, + "removable": 1.95e-06, + "repaid": 1.95e-06, + "responders": 1.95e-06, + "retires": 1.95e-06, + "retrospect": 1.95e-06, + "roundup": 1.95e-06, + "rowland": 1.95e-06, + "ryans": 1.15e-07, + "seinfeld": 1.95e-06, + "sensations": 1.95e-06, + "sequential": 1.95e-06, + "shafts": 1.95e-06, + "signifies": 1.95e-06, + "skates": 1.95e-06, + "smelly": 1.95e-06, + "solves": 1.95e-06, + "sorta": 1.95e-06, + "specialization": 1.95e-06, + "spiritually": 1.95e-06, + "sporadic": 1.95e-06, + "stationery": 1.95e-06, + "sudanese": 1.95e-06, + "sunscreen": 1.95e-06, + "sykes": 1.95e-06, + "tau": 1.95e-06, + "tempest": 1.95e-06, + "tending": 1.95e-06, + "terraces": 1.95e-06, + "thankyou": 1.95e-06, + "thered": 1.95e-06, + "tightened": 1.95e-06, + "tights": 1.95e-06, + "tito": 1.95e-06, + "tobias": 1.95e-06, + "tofu": 1.95e-06, + "tragedies": 1.95e-06, + "transports": 8.71e-08, + "trenton": 1.95e-06, + "tripoli": 1.95e-06, + "truss": 1.95e-06, + "tubing": 1.95e-06, + "tuesdays": 1.55e-06, + "turnovers": 1.95e-06, + "twat": 1.95e-06, + "undue": 1.95e-06, + "unionist": 1.95e-06, + "unprotected": 1.95e-06, + "unsettling": 1.95e-06, + "upscale": 1.95e-06, + "vader": 1.95e-06, + "verde": 1.95e-06, + "viewpoints": 1.95e-06, + "vinci": 1.95e-06, + "vu": 1.95e-06, + "wacky": 1.95e-06, + "wealthiest": 1.95e-06, + "wearable": 1.95e-06, + "wilcox": 1.95e-06, + "wiltshire": 1.95e-06, + "wreckage": 1.95e-06, + "xml": 1.95e-06, + "yvonne": 1.95e-06, + "zeppelin": 1.95e-06, + "aches": 1.91e-06, + "adamant": 1.91e-06, + "airspace": 1.91e-06, + "alejandro": 1.91e-06, + "allotted": 1.91e-06, + "almonds": 1.91e-06, + "amplitude": 1.91e-06, + "analogue": 1.91e-06, + "annotated": 1.91e-06, + "anomalies": 1.91e-06, + "archival": 1.91e-06, + "ardent": 1.91e-06, + "arenas": 1.74e-07, + "assay": 1.91e-06, + "assigning": 1.91e-06, + "assorted": 1.91e-06, + "axel": 1.91e-06, + "badminton": 1.91e-06, + "barbarian": 1.91e-06, + "bedrock": 1.91e-06, + "bihar": 1.91e-06, + "bj": 1.91e-06, + "blaine": 1.91e-06, + "boardwalk": 1.91e-06, + "boasting": 1.91e-06, + "boldly": 1.91e-06, + "boomer": 1.91e-06, + "booths": 1.95e-07, + "brittle": 1.91e-06, + "budding": 1.91e-06, + "cena": 1.91e-06, + "charters": 6.61e-08, + "chatham": 1.91e-06, + "cheaply": 1.91e-06, + "chiang": 1.91e-06, + "choo": 1.91e-06, + "clair": 1.91e-06, + "climbers": 5.37e-08, + "clogged": 1.91e-06, + "cohesion": 1.91e-06, + "colo": 1.91e-06, + "compel": 1.91e-06, + "complexities": 1.91e-06, + "compromises": 1.91e-06, + "conduit": 1.91e-06, + "congregations": 7.76e-08, + "constraint": 1.91e-06, + "contradictions": 1.91e-06, + "conveyor": 1.91e-06, + "cpi": 1.91e-06, + "cramped": 1.91e-06, + "crates": 1.91e-06, + "crawled": 1.91e-06, + "culminating": 1.91e-06, + "cuomo": 1.91e-06, + "cutters": 6.92e-08, + "dae": 1.91e-06, + "dalai": 1.91e-06, + "darryl": 1.91e-06, + "dashed": 1.91e-06, + "decimal": 1.91e-06, + "defensively": 1.91e-06, + "defunct": 1.91e-06, + "degrade": 1.91e-06, + "demonstrators": 1.91e-06, + "denton": 1.91e-06, + "departures": 1.91e-06, + "diablo": 1.91e-06, + "differed": 1.91e-06, + "diffuse": 1.91e-06, + "dignified": 1.91e-06, + "disapproval": 1.91e-06, + "disobedience": 1.91e-06, + "dreamer": 1.91e-06, + "dune": 1.91e-06, + "dwellers": 1.91e-06, + "eb": 1.91e-06, + "ef": 1.91e-06, + "electronically": 1.91e-06, + "emancipation": 1.91e-06, + "entropy": 1.91e-06, + "epitome": 1.91e-06, + "esa": 1.91e-06, + "esteemed": 1.91e-06, + "ethernet": 1.91e-06, + "excused": 1.91e-06, + "extradition": 1.91e-06, + "eyesight": 1.91e-06, + "fide": 1.91e-06, + "finder": 1.91e-06, + "fishy": 1.91e-06, + "flooring": 1.91e-06, + "forearm": 1.91e-06, + "frail": 1.91e-06, + "fray": 1.91e-06, + "gathers": 1.91e-06, + "geelong": 1.91e-06, + "generational": 1.91e-06, + "glaze": 1.91e-06, + "goldfish": 1.91e-06, + "greenville": 1.91e-06, + "grizzly": 1.91e-06, + "grotesque": 1.91e-06, + "gunners": 9.77e-08, + "hallucinations": 1.91e-06, + "harass": 1.91e-06, + "hooded": 1.91e-06, + "horrid": 1.91e-06, + "huawei": 1.91e-06, + "hussain": 1.91e-06, + "hwy": 1.91e-06, + "impractical": 1.91e-06, + "indexed": 1.91e-06, + "insecurities": 1.91e-06, + "insta": 1.91e-06, + "interchangeable": 1.91e-06, + "interrupting": 1.91e-06, + "irreversible": 1.91e-06, + "jacked": 1.91e-06, + "jerks": 1.91e-06, + "joked": 1.91e-06, + "kaufman": 1.91e-06, + "kfc": 1.91e-06, + "lawless": 1.91e-06, + "leftists": 1.91e-06, + "legalized": 1.91e-06, + "leggings": 1.91e-06, + "legions": 1.82e-07, + "leveled": 1.91e-06, + "liza": 1.91e-06, + "locomotives": 1.91e-06, + "macau": 1.91e-06, + "manifested": 1.91e-06, + "marries": 1.91e-06, + "maynard": 1.91e-06, + "mayoral": 1.91e-06, + "medley": 1.91e-06, + "mercenaries": 1.91e-06, + "meyers": 2.75e-07, + "mh": 1.91e-06, + "mightve": 1.91e-06, + "minimalist": 1.91e-06, + "misled": 1.91e-06, + "msm": 1.91e-06, + "multiplied": 1.91e-06, + "narendra": 1.91e-06, + "objectively": 1.91e-06, + "orbiting": 1.91e-06, + "orchestrated": 1.91e-06, + "packard": 1.91e-06, + "pap": 1.91e-06, + "parisian": 1.91e-06, + "participates": 1.91e-06, + "phoned": 1.91e-06, + "plugin": 1.91e-06, + "polishing": 1.91e-06, + "polymers": 1.91e-06, + "pore": 1.91e-06, + "postcards": 1.91e-06, + "postgraduate": 1.91e-06, + "predicament": 1.91e-06, + "predominant": 1.91e-06, + "prem": 1.91e-06, + "proverbs": 1.91e-06, + "puke": 1.91e-06, + "puzzled": 1.91e-06, + "qu": 1.91e-06, + "quadrant": 1.91e-06, + "ramps": 1.91e-06, + "recital": 1.91e-06, + "recite": 1.91e-06, + "reckoning": 1.91e-06, + "recollection": 1.91e-06, + "reconstructed": 1.91e-06, + "refine": 1.91e-06, + "regents": 2.75e-07, + "reiterated": 1.91e-06, + "rem": 1.91e-06, + "resale": 1.91e-06, + "retake": 1.91e-06, + "rhine": 1.91e-06, + "rips": 1.91e-06, + "rj": 1.91e-06, + "robb": 1.91e-06, + "rodrigo": 1.91e-06, + "rosy": 1.91e-06, + "rupture": 1.91e-06, + "salted": 1.91e-06, + "scandalous": 1.91e-06, + "scot": 1.91e-06, + "seasoning": 1.91e-06, + "securely": 1.91e-06, + "shabby": 1.91e-06, + "showcased": 1.91e-06, + "sightings": 1.91e-06, + "sinus": 1.91e-06, + "situ": 1.91e-06, + "skid": 1.91e-06, + "solace": 1.91e-06, + "spanking": 1.91e-06, + "specialize": 1.91e-06, + "splinter": 1.91e-06, + "spoons": 1.91e-06, + "squats": 1.91e-06, + "squire": 1.91e-06, + "standout": 1.91e-06, + "stills": 1.91e-06, + "stoner": 1.91e-06, + "strengthens": 1.91e-06, + "stung": 1.91e-06, + "suppressing": 1.91e-06, + "swimsuit": 1.91e-06, + "symmetrical": 1.91e-06, + "tac": 1.91e-06, + "tacoma": 1.91e-06, + "tam": 1.91e-06, + "tenders": 1.91e-06, + "terminator": 1.91e-06, + "timers": 1.91e-06, + "tinker": 1.91e-06, + "topography": 1.91e-06, + "ua": 1.91e-06, + "unexplained": 1.91e-06, + "unintended": 1.91e-06, + "unmanned": 1.91e-06, + "uno": 1.91e-06, + "unsolved": 1.91e-06, + "unsuccessfully": 1.91e-06, + "uptake": 1.91e-06, + "vantage": 1.91e-06, + "ventured": 1.91e-06, + "versailles": 1.91e-06, + "virgins": 2.63e-07, + "waldo": 1.91e-06, + "waller": 1.91e-06, + "watchers": 6.03e-08, + "whim": 1.91e-06, + "whine": 1.91e-06, + "wil": 1.91e-06, + "withhold": 1.91e-06, + "worshipped": 1.91e-06, + "yee": 1.91e-06, + "yellowstone": 1.91e-06, + "ying": 1.91e-06, + "yosemite": 1.91e-06, + "zeal": 1.91e-06, + "zealands": 1.91e-06, + "abort": 1.86e-06, + "abound": 1.86e-06, + "adversely": 1.86e-06, + "afternoons": 3.02e-07, + "agendas": 1.86e-06, + "aidan": 1.86e-06, + "alfredo": 1.86e-06, + "amish": 1.86e-06, + "andersen": 1.86e-06, + "angled": 1.86e-06, + "antennas": 1.86e-06, + "assertions": 1.86e-06, + "astonished": 1.86e-06, + "audacity": 1.86e-06, + "banjo": 1.86e-06, + "barbaric": 1.86e-06, + "barbed": 1.86e-06, + "battled": 1.86e-06, + "beech": 1.86e-06, + "benchmarks": 1.86e-06, + "biz": 1.86e-06, + "blazer": 1.86e-06, + "blower": 1.86e-06, + "blurry": 1.86e-06, + "bravely": 1.86e-06, + "bret": 1.86e-06, + "breweries": 1.86e-06, + "bts": 1.05e-07, + "burmese": 1.86e-06, + "bushs": 1.86e-06, + "camped": 1.86e-06, + "cherries": 1.86e-06, + "chevron": 1.86e-06, + "cheyenne": 1.86e-06, + "clinicians": 1.86e-06, + "coercion": 1.86e-06, + "colombo": 1.86e-06, + "comma": 1.86e-06, + "communitys": 1.86e-06, + "competency": 1.86e-06, + "concerted": 1.86e-06, + "constructs": 1.86e-06, + "cont": 1.86e-06, + "convicts": 1.86e-06, + "cora": 1.86e-06, + "cornelius": 1.86e-06, + "cravings": 1.86e-06, + "crotch": 1.86e-06, + "crucified": 1.86e-06, + "customize": 1.86e-06, + "dai": 1.86e-06, + "dartmouth": 1.86e-06, + "dashing": 1.86e-06, + "departmental": 1.86e-06, + "deposed": 1.86e-06, + "devin": 1.86e-06, + "dharma": 1.86e-06, + "dialysis": 1.86e-06, + "disclosures": 1.86e-06, + "distal": 1.86e-06, + "ditched": 1.86e-06, + "divisional": 1.86e-06, + "dogma": 1.86e-06, + "doi": 1.86e-06, + "dupont": 1.86e-06, + "emory": 1.86e-06, + "emptiness": 1.86e-06, + "encompass": 1.86e-06, + "ensign": 1.86e-06, + "escalating": 1.86e-06, + "evoke": 1.86e-06, + "expansions": 1.86e-06, + "experimented": 1.86e-06, + "facilitates": 1.86e-06, + "faithfully": 1.86e-06, + "faq": 1.86e-06, + "fern": 1.86e-06, + "fingertips": 1.86e-06, + "firepower": 1.86e-06, + "fixation": 1.86e-06, + "flanked": 1.86e-06, + "flatter": 1.86e-06, + "flushed": 1.86e-06, + "formative": 1.86e-06, + "fret": 1.86e-06, + "frontiers": 7.08e-08, + "gastrointestinal": 1.86e-06, + "geeks": 5.62e-08, + "genders": 1.86e-06, + "grader": 1.86e-06, + "granger": 1.86e-06, + "grasses": 1.86e-06, + "gratification": 1.86e-06, + "gruesome": 1.86e-06, + "guineas": 1.38e-07, + "gw": 1.86e-06, + "harshly": 1.86e-06, + "hedges": 1.86e-06, + "heller": 1.86e-06, + "henrik": 1.86e-06, + "hezbollah": 1.86e-06, + "hinduism": 1.86e-06, + "hiroshima": 1.86e-06, + "hitchcock": 1.86e-06, + "hodge": 1.86e-06, + "holloway": 1.86e-06, + "huts": 1.86e-06, + "hydrated": 1.86e-06, + "imaginable": 1.86e-06, + "impetus": 1.86e-06, + "impulsive": 1.86e-06, + "incense": 1.86e-06, + "inhuman": 1.86e-06, + "injure": 1.86e-06, + "inserting": 1.86e-06, + "intersections": 1.86e-06, + "inventing": 1.86e-06, + "invoice": 1.86e-06, + "jb": 1.86e-06, + "johan": 1.86e-06, + "junkie": 1.86e-06, + "kelsey": 1.86e-06, + "khalid": 1.86e-06, + "kr": 1.86e-06, + "kristin": 1.86e-06, + "kun": 1.86e-06, + "lacey": 1.86e-06, + "lao": 1.86e-06, + "latent": 1.86e-06, + "lau": 1.86e-06, + "leans": 1.86e-06, + "leipzig": 1.86e-06, + "lenovo": 1.86e-06, + "lew": 1.86e-06, + "lexus": 1.86e-06, + "limitless": 1.86e-06, + "literate": 1.86e-06, + "lm": 1.41e-07, + "localization": 1.86e-06, + "loki": 1.86e-06, + "loretta": 1.86e-06, + "lowly": 1.86e-06, + "lucid": 1.86e-06, + "lymphoma": 1.86e-06, + "makin": 1.86e-06, + "martini": 1.86e-06, + "merciful": 1.86e-06, + "mgm": 1.86e-06, + "midget": 1.86e-06, + "midwife": 1.86e-06, + "minimizing": 1.86e-06, + "mira": 1.86e-06, + "misinformation": 1.86e-06, + "mitochondrial": 1.86e-06, + "mobilization": 1.86e-06, + "monologue": 1.86e-06, + "monoxide": 1.86e-06, + "mosul": 1.86e-06, + "musically": 1.86e-06, + "mutiny": 1.86e-06, + "nagging": 1.86e-06, + "nephews": 3.24e-07, + "nervously": 1.86e-06, + "nighttime": 1.86e-06, + "nonlinear": 1.86e-06, + "normalized": 1.86e-06, + "northumberland": 1.86e-06, + "numbering": 1.86e-06, + "oakley": 1.86e-06, + "odi": 1.86e-06, + "orr": 1.86e-06, + "outweigh": 1.86e-06, + "parasitic": 1.86e-06, + "parsley": 1.86e-06, + "pendulum": 1.86e-06, + "petit": 1.86e-06, + "petra": 1.86e-06, + "picket": 1.86e-06, + "placements": 1.86e-06, + "poignant": 1.86e-06, + "polio": 1.86e-06, + "potency": 1.86e-06, + "precarious": 1.86e-06, + "presley": 1.86e-06, + "pretext": 1.86e-06, + "privatization": 1.86e-06, + "proclaim": 1.86e-06, + "quaint": 1.86e-06, + "qualifiers": 1.86e-06, + "raccoon": 1.86e-06, + "raiding": 1.86e-06, + "rallied": 1.86e-06, + "reassurance": 1.86e-06, + "recovers": 1.86e-06, + "redistribution": 1.86e-06, + "remy": 1.86e-06, + "restrain": 1.86e-06, + "retreating": 1.86e-06, + "richly": 1.86e-06, + "rioting": 1.86e-06, + "rookies": 6.61e-08, + "sai": 1.86e-06, + "sanderson": 1.86e-06, + "saver": 1.86e-06, + "scarborough": 1.86e-06, + "scarred": 1.86e-06, + "secession": 1.86e-06, + "sectarian": 1.86e-06, + "seminal": 1.86e-06, + "serene": 1.86e-06, + "ses": 5.25e-08, + "seventies": 1.86e-06, + "shaded": 1.86e-06, + "sharpe": 1.86e-06, + "shipyard": 1.86e-06, + "shrek": 1.86e-06, + "sig": 1.86e-06, + "silica": 1.86e-06, + "simmer": 1.86e-06, + "smokey": 1.86e-06, + "snag": 1.86e-06, + "snuck": 1.86e-06, + "sob": 1.86e-06, + "socrates": 1.86e-06, + "sophistication": 1.86e-06, + "sourcing": 1.86e-06, + "str": 1.86e-06, + "straighten": 1.86e-06, + "streamlined": 1.86e-06, + "sweaters": 1.86e-06, + "syringe": 1.86e-06, + "tanaka": 1.86e-06, + "thinly": 1.86e-06, + "thursdays": 1.29e-06, + "timor": 1.86e-06, + "tinted": 1.86e-06, + "tornadoes": 1.86e-06, + "tote": 1.86e-06, + "trainees": 1.86e-06, + "transverse": 1.86e-06, + "trembling": 1.86e-06, + "triangles": 1.86e-06, + "tributes": 1.86e-06, + "trident": 1.86e-06, + "trojans": 1.86e-06, + "tweak": 1.86e-06, + "ubuntu": 1.86e-06, + "undead": 1.86e-06, + "unison": 1.86e-06, + "unlocking": 1.86e-06, + "unprepared": 1.86e-06, + "unrestricted": 1.86e-06, + "unsuitable": 1.86e-06, + "unthinkable": 1.86e-06, + "uplift": 1.86e-06, + "utilizes": 1.86e-06, + "vanderbilt": 1.86e-06, + "vanishing": 1.86e-06, + "venerable": 1.86e-06, + "visualize": 1.86e-06, + "vulcan": 1.86e-06, + "wasteful": 1.86e-06, + "waterfalls": 1.86e-06, + "wilkes": 1.86e-06, + "youngster": 1.86e-06, + "activating": 1.82e-06, + "adopts": 1.82e-06, + "adverts": 1.82e-06, + "advisable": 1.82e-06, + "algerian": 1.82e-06, + "angst": 1.82e-06, + "antiquities": 1.82e-06, + "apathy": 1.82e-06, + "arcs": 9.12e-08, + "artisan": 1.82e-06, + "assortment": 1.82e-06, + "attaching": 1.82e-06, + "auditing": 1.82e-06, + "bandwagon": 1.82e-06, + "bane": 1.82e-06, + "basins": 1.82e-06, + "bayer": 1.82e-06, + "bcs": 1.78e-07, + "billings": 1.82e-06, + "bios": 3.63e-08, + "birdie": 1.82e-06, + "bison": 1.82e-06, + "blacked": 1.82e-06, + "blacksmith": 1.82e-06, + "blanks": 1.82e-06, + "borg": 1.82e-06, + "brainwashed": 1.82e-06, + "brothel": 1.82e-06, + "burrito": 1.82e-06, + "bytes": 1.82e-06, + "calmed": 1.82e-06, + "camper": 1.82e-06, + "carole": 1.82e-06, + "cartilage": 1.82e-06, + "casket": 1.82e-06, + "charley": 1.82e-06, + "chattanooga": 1.82e-06, + "christchurch": 1.82e-06, + "claimants": 8.13e-08, + "cleanliness": 1.82e-06, + "clothed": 1.82e-06, + "coli": 1.82e-06, + "collided": 1.82e-06, + "commentaries": 1.82e-06, + "complicate": 1.82e-06, + "concerto": 1.82e-06, + "concurrently": 1.82e-06, + "contraception": 1.82e-06, + "convex": 1.82e-06, + "crouch": 1.82e-06, + "culmination": 1.82e-06, + "curing": 1.82e-06, + "dank": 1.82e-06, + "daphne": 1.82e-06, + "decomposition": 1.82e-06, + "dehydrated": 1.82e-06, + "democracies": 1.82e-06, + "detriment": 1.82e-06, + "dex": 1.82e-06, + "dhs": 1.82e-06, + "dialects": 1.82e-06, + "discretionary": 1.82e-06, + "dismal": 1.82e-06, + "dismay": 1.82e-06, + "disparate": 1.82e-06, + "dissemination": 1.82e-06, + "distilled": 1.82e-06, + "dodger": 1.82e-06, + "dolan": 1.82e-06, + "dolores": 1.82e-06, + "domestically": 1.82e-06, + "electors": 1.82e-06, + "electrician": 1.82e-06, + "elise": 1.82e-06, + "endorsements": 1.82e-06, + "equator": 1.82e-06, + "estuary": 1.82e-06, + "etched": 1.82e-06, + "eternally": 1.82e-06, + "ewing": 1.82e-06, + "excise": 1.82e-06, + "expel": 1.82e-06, + "exposures": 1.82e-06, + "facets": 1.82e-06, + "fad": 1.82e-06, + "fitch": 1.82e-06, + "fledged": 1.82e-06, + "fol": 1.82e-06, + "forcefully": 1.82e-06, + "foreground": 1.82e-06, + "frown": 1.82e-06, + "fruity": 1.82e-06, + "frustrations": 1.82e-06, + "fukushima": 1.82e-06, + "gals": 7.24e-08, + "germain": 1.82e-06, + "gertrude": 1.82e-06, + "gloucestershire": 1.82e-06, + "godly": 1.82e-06, + "golfers": 7.08e-08, + "graeme": 1.82e-06, + "groin": 1.82e-06, + "grounding": 1.82e-06, + "guangzhou": 1.82e-06, + "gunn": 1.82e-06, + "gunpowder": 1.82e-06, + "guthrie": 1.82e-06, + "guyana": 1.82e-06, + "hamper": 1.82e-06, + "haskell": 1.82e-06, + "hatched": 1.82e-06, + "helix": 1.82e-06, + "heroism": 1.82e-06, + "hierarchical": 1.82e-06, + "homie": 1.82e-06, + "hornets": 1.78e-07, + "hover": 1.82e-06, + "howling": 1.82e-06, + "humbled": 1.82e-06, + "icelandic": 1.82e-06, + "inducted": 1.82e-06, + "infidelity": 1.82e-06, + "internships": 1.82e-06, + "inventive": 1.82e-06, + "inversion": 1.82e-06, + "ips": 8.13e-08, + "kahn": 1.82e-06, + "keynes": 1.82e-06, + "khalifa": 1.82e-06, + "kinase": 1.82e-06, + "kirsten": 1.82e-06, + "knack": 1.82e-06, + "kodak": 1.82e-06, + "kool": 1.82e-06, + "kosher": 1.82e-06, + "lansing": 1.82e-06, + "lazarus": 1.82e-06, + "legalize": 1.82e-06, + "lehman": 1.82e-06, + "libby": 1.82e-06, + "librarians": 5.75e-08, + "licked": 1.82e-06, + "lillian": 1.82e-06, + "liquidation": 1.82e-06, + "longitude": 1.82e-06, + "lured": 1.82e-06, + "macho": 1.82e-06, + "maestro": 1.82e-06, + "magna": 1.82e-06, + "maneuvers": 1.82e-06, + "matilda": 1.82e-06, + "maxi": 1.82e-06, + "mcgill": 1.82e-06, + "mcgrath": 1.82e-06, + "meditate": 1.82e-06, + "mercenary": 1.82e-06, + "mexicos": 1.82e-06, + "microscopy": 1.82e-06, + "missy": 1.82e-06, + "moi": 1.82e-06, + "morbid": 1.82e-06, + "motifs": 1.82e-06, + "multiplication": 1.82e-06, + "mysteriously": 1.82e-06, + "nadine": 1.82e-06, + "nav": 1.82e-06, + "nino": 1.82e-06, + "nonfiction": 1.82e-06, + "nouns": 1.82e-06, + "nuanced": 1.82e-06, + "occurrences": 1.82e-06, + "olympia": 1.82e-06, + "orb": 1.82e-06, + "orchestral": 1.82e-06, + "ordinarily": 1.82e-06, + "orthodoxy": 1.82e-06, + "outage": 1.82e-06, + "overcame": 1.82e-06, + "packer": 1.82e-06, + "paternal": 1.82e-06, + "pellets": 1.82e-06, + "pelvis": 1.82e-06, + "penetrated": 1.82e-06, + "pla": 1.82e-06, + "plz": 1.82e-06, + "polarization": 1.82e-06, + "potty": 1.82e-06, + "powering": 1.82e-06, + "preoccupied": 1.82e-06, + "projectile": 1.82e-06, + "protracted": 1.82e-06, + "prussian": 1.82e-06, + "psychiatrists": 9.33e-08, + "puddle": 1.82e-06, + "quay": 1.82e-06, + "railing": 1.82e-06, + "realist": 1.82e-06, + "receptionist": 1.82e-06, + "reckoned": 1.82e-06, + "recruiter": 1.82e-06, + "reforming": 1.82e-06, + "reload": 1.82e-06, + "remuneration": 1.82e-06, + "replicated": 1.82e-06, + "repressed": 1.82e-06, + "reputed": 1.82e-06, + "resigning": 1.82e-06, + "restraints": 1.82e-06, + "revoke": 1.82e-06, + "richness": 1.82e-06, + "riviera": 1.82e-06, + "sadie": 1.82e-06, + "scandinavia": 1.82e-06, + "scanners": 1.82e-06, + "secretive": 1.82e-06, + "sediments": 1.82e-06, + "serotonin": 1.82e-06, + "serviced": 1.82e-06, + "shorty": 1.82e-06, + "silky": 1.82e-06, + "sinatra": 1.82e-06, + "sirius": 1.82e-06, + "slaying": 1.82e-06, + "smallpox": 1.82e-06, + "snails": 1.7e-07, + "snoring": 1.82e-06, + "sociological": 1.82e-06, + "sorority": 1.82e-06, + "spd": 1.82e-06, + "sped": 1.82e-06, + "speechless": 1.82e-06, + "spores": 1.82e-06, + "spurred": 1.82e-06, + "stair": 1.82e-06, + "starship": 1.82e-06, + "stemming": 1.82e-06, + "strategist": 1.82e-06, + "sts": 6.31e-08, + "subaru": 1.82e-06, + "subdivisions": 1.82e-06, + "sunken": 1.82e-06, + "supremacist": 1.82e-06, + "tal": 1.82e-06, + "ter": 1.82e-06, + "toasted": 1.82e-06, + "tortoise": 1.82e-06, + "tragically": 1.82e-06, + "transitioning": 1.82e-06, + "translators": 1.02e-07, + "typewriter": 1.82e-06, + "understandably": 1.82e-06, + "undisputed": 1.82e-06, + "unprofessional": 1.82e-06, + "urdu": 1.82e-06, + "uri": 1.82e-06, + "veggie": 1.82e-06, + "veiled": 1.82e-06, + "visceral": 1.82e-06, + "vividly": 1.82e-06, + "wannabe": 1.82e-06, + "welded": 1.82e-06, + "whaling": 1.82e-06, + "wiggle": 1.82e-06, + "wolfgang": 1.82e-06, + "worldview": 1.82e-06, + "wrongdoing": 1.82e-06, + "zuckerberg": 1.82e-06, + "abusers": 5.37e-08, + "accommodating": 1.78e-06, + "additives": 1.78e-06, + "aggregation": 1.78e-06, + "ahem": 1.78e-06, + "albanian": 1.78e-06, + "alistair": 1.78e-06, + "alkaline": 1.78e-06, + "alum": 1.78e-06, + "antidote": 1.78e-06, + "anus": 4.37e-08, + "appalachian": 1.78e-06, + "archery": 1.78e-06, + "arterial": 1.78e-06, + "artisans": 1.78e-06, + "asparagus": 1.78e-06, + "athena": 1.78e-06, + "attest": 1.78e-06, + "attractiveness": 1.78e-06, + "auditors": 9.77e-08, + "auditory": 1.78e-06, + "avenge": 1.78e-06, + "aversion": 1.78e-06, + "awkwardly": 1.78e-06, + "badgers": 8.13e-08, + "balkans": 1.78e-06, + "ballard": 1.78e-06, + "balm": 1.78e-06, + "behaves": 1.78e-06, + "biennial": 1.78e-06, + "bikers": 1.78e-06, + "bologna": 1.78e-06, + "bolted": 1.78e-06, + "bona": 1.78e-06, + "bony": 1.78e-06, + "borrower": 1.78e-06, + "bridging": 1.78e-06, + "brighten": 1.78e-06, + "brood": 1.78e-06, + "budgeting": 1.78e-06, + "bulletproof": 1.78e-06, + "bundesliga": 1.78e-06, + "cambodian": 1.78e-06, + "campers": 1.78e-06, + "cassandra": 1.78e-06, + "ceases": 1.78e-06, + "cecilia": 1.78e-06, + "cemented": 1.78e-06, + "cessation": 1.78e-06, + "charlottesville": 1.78e-06, + "charlton": 1.78e-06, + "charmed": 1.78e-06, + "chemists": 6.76e-08, + "chemo": 1.78e-06, + "chipped": 1.78e-06, + "civ": 1.78e-06, + "colby": 1.78e-06, + "collagen": 1.78e-06, + "combating": 1.78e-06, + "commencing": 1.78e-06, + "commend": 1.78e-06, + "complied": 1.78e-06, + "contemplated": 1.78e-06, + "cricketer": 1.78e-06, + "crimean": 1.78e-06, + "crochet": 1.78e-06, + "cruisers": 5.25e-08, + "csi": 1.78e-06, + "customization": 1.78e-06, + "cypress": 1.78e-06, + "dal": 1.78e-06, + "dandy": 1.78e-06, + "dependable": 1.78e-06, + "deteriorating": 1.78e-06, + "dickhead": 1.78e-06, + "disagrees": 1.78e-06, + "donny": 1.78e-06, + "downey": 1.78e-06, + "dresden": 1.78e-06, + "dw": 1.78e-06, + "eased": 1.78e-06, + "easing": 1.78e-06, + "eid": 1.78e-06, + "elevations": 1.78e-06, + "emeritus": 1.78e-06, + "emigration": 1.78e-06, + "emit": 1.78e-06, + "enthusiastically": 1.78e-06, + "excavated": 1.78e-06, + "excavations": 1.78e-06, + "excursions": 1.78e-06, + "extant": 1.78e-06, + "ezekiel": 1.78e-06, + "farmed": 1.78e-06, + "fathom": 1.78e-06, + "fiancee": 1.78e-06, + "fictitious": 1.78e-06, + "firsthand": 1.78e-06, + "fitzpatrick": 1.78e-06, + "flashy": 1.78e-06, + "floppy": 1.78e-06, + "fluoride": 1.78e-06, + "frat": 1.78e-06, + "gardeners": 2e-07, + "geologic": 1.78e-06, + "giggling": 1.78e-06, + "gillespie": 1.78e-06, + "gmo": 1.78e-06, + "goldstein": 1.78e-06, + "gospels": 1.78e-06, + "gowns": 1.78e-06, + "grasping": 1.78e-06, + "greenberg": 1.78e-06, + "grooves": 1.78e-06, + "guam": 1.78e-06, + "guantanamo": 1.78e-06, + "guideline": 1.78e-06, + "hadley": 1.78e-06, + "hawthorne": 1.78e-06, + "headmaster": 1.78e-06, + "heartland": 1.78e-06, + "hedgehog": 1.78e-06, + "hehe": 1.78e-06, + "heinous": 1.78e-06, + "hens": 1e-07, + "hoe": 1.78e-06, + "hulu": 1.78e-06, + "hypnosis": 1.78e-06, + "iain": 1.78e-06, + "icu": 1.78e-06, + "immersive": 1.78e-06, + "impeccable": 1.78e-06, + "inbound": 1.78e-06, + "inconsistencies": 1.78e-06, + "inference": 1.78e-06, + "infiltrate": 1.78e-06, + "inflatable": 1.78e-06, + "ingrid": 1.78e-06, + "inhale": 1.78e-06, + "instinctively": 1.78e-06, + "interconnected": 1.78e-06, + "intolerant": 1.78e-06, + "isp": 1.78e-06, + "jellyfish": 1.78e-06, + "jimi": 1.78e-06, + "jordans": 7.41e-07, + "judo": 1.78e-06, + "karnataka": 1.78e-06, + "keane": 1.78e-06, + "keating": 1.78e-06, + "kev": 1.78e-06, + "kilos": 1.78e-06, + "kurdistan": 1.78e-06, + "lament": 1.78e-06, + "leach": 1.78e-06, + "lefty": 1.78e-06, + "legislatures": 2.4e-07, + "lsd": 1.78e-06, + "luigi": 1.78e-06, + "mabel": 1.78e-06, + "mach": 1.78e-06, + "maddie": 1.78e-06, + "maids": 1.78e-07, + "malpractice": 1.78e-06, + "manipulative": 1.78e-06, + "marginally": 1.78e-06, + "marjorie": 1.78e-06, + "mathews": 1.78e-06, + "maxine": 1.78e-06, + "mayweather": 1.78e-06, + "melinda": 1.78e-06, + "memberships": 1.78e-06, + "microbiology": 1.78e-06, + "migrating": 1.78e-06, + "modelled": 1.78e-06, + "modernity": 1.78e-06, + "motherfuckers": 1.78e-06, + "namibia": 1.78e-06, + "narrowing": 1.78e-06, + "navajo": 1.78e-06, + "nectar": 1.78e-06, + "neighbourhoods": 6.76e-08, + "nitrate": 1.78e-06, + "nvidia": 1.78e-06, + "omalley": 1.78e-06, + "oft": 1.78e-06, + "olympus": 1.78e-06, + "oversaw": 1.78e-06, + "pastel": 1.78e-06, + "patterned": 1.78e-06, + "payoff": 1.78e-06, + "perpetrated": 1.78e-06, + "pessimistic": 1.78e-06, + "pesticide": 1.78e-06, + "phosphorus": 1.78e-06, + "platter": 1.78e-06, + "pounded": 1.78e-06, + "preachers": 1.82e-07, + "premieres": 1.78e-06, + "prod": 1.78e-06, + "prodigy": 1.78e-06, + "prosecutions": 3.63e-07, + "prototypes": 1.78e-06, + "psychotherapy": 1.78e-06, + "pundits": 1.78e-06, + "quilt": 1.78e-06, + "radcliffe": 1.78e-06, + "rai": 1.78e-06, + "rama": 1.78e-06, + "rapping": 1.78e-06, + "realtor": 1.78e-06, + "rees": 1.78e-06, + "refreshed": 1.78e-06, + "regency": 1.78e-06, + "reptile": 1.78e-06, + "rescues": 5.01e-08, + "residues": 1.78e-06, + "revisited": 1.78e-06, + "robyn": 1.78e-06, + "rowling": 1.78e-06, + "sag": 1.78e-06, + "sama": 1.78e-06, + "sauna": 1.78e-06, + "scaring": 1.78e-06, + "scotlands": 5.01e-08, + "scrum": 1.78e-06, + "seasonally": 1.78e-06, + "selena": 1.78e-06, + "sem": 1.78e-06, + "shan": 1.78e-06, + "sharper": 1.78e-06, + "shen": 1.78e-06, + "showcases": 1.78e-06, + "slade": 1.78e-06, + "sluggish": 1.78e-06, + "slum": 1.78e-06, + "smoothie": 1.78e-06, + "snare": 1.78e-06, + "snipers": 1.51e-07, + "snowflake": 1.78e-06, + "sod": 1.78e-06, + "spectra": 1.78e-06, + "spines": 1.78e-06, + "spoiling": 1.78e-06, + "ssr": 1.78e-06, + "stag": 1.78e-06, + "stomp": 1.78e-06, + "strangest": 1.78e-06, + "strata": 1.78e-06, + "straws": 1.78e-06, + "studded": 1.78e-06, + "submissive": 1.78e-06, + "subsection": 1.78e-06, + "suede": 1.78e-06, + "summertime": 1.78e-06, + "sundance": 1.78e-06, + "swedes": 1.78e-06, + "sylvester": 1.78e-06, + "tabloid": 1.78e-06, + "taft": 1.78e-06, + "taurus": 1.78e-06, + "teal": 1.78e-06, + "thorns": 1.78e-06, + "throwback": 1.78e-06, + "thunderstorm": 1.78e-06, + "tiers": 1.78e-06, + "timid": 1.78e-06, + "towering": 1.78e-06, + "tracts": 1.78e-06, + "triathlon": 1.78e-06, + "trickle": 1.78e-06, + "troupe": 1.78e-06, + "tsp": 1.78e-06, + "tweed": 1.78e-06, + "ultimatum": 1.78e-06, + "uncut": 1.78e-06, + "uninterrupted": 1.78e-06, + "vettel": 1.78e-06, + "webinar": 1.78e-06, + "weekdays": 1.78e-06, + "weinstein": 1.78e-06, + "widen": 1.78e-06, + "widest": 1.78e-06, + "wigs": 1.78e-06, + "workin": 1.78e-06, + "wrestlemania": 1.78e-06, + "xmas": 3.39e-08, + "yachts": 5.01e-08, + "yelp": 1.78e-06, + "yoon": 1.78e-06, + "abt": 1.74e-06, + "aclu": 1.74e-06, + "affirmation": 1.74e-06, + "amassed": 1.74e-06, + "amherst": 1.74e-06, + "annette": 1.74e-06, + "aol": 1.74e-06, + "apc": 1.74e-06, + "apiece": 1.74e-06, + "appalled": 1.74e-06, + "appreciative": 1.74e-06, + "arched": 1.74e-06, + "archibald": 1.74e-06, + "ascend": 1.74e-06, + "bandage": 1.74e-06, + "bas": 8.91e-08, + "belize": 1.74e-06, + "biologists": 1.74e-06, + "bittersweet": 1.74e-06, + "blight": 1.74e-06, + "botswana": 1.74e-06, + "braid": 1.74e-06, + "branching": 1.74e-06, + "brewster": 1.74e-06, + "bulge": 1.74e-06, + "byrd": 1.74e-06, + "cabaret": 1.74e-06, + "camilla": 1.74e-06, + "caregivers": 1.74e-06, + "carmichael": 1.74e-06, + "catheter": 1.74e-06, + "centimeters": 1.74e-06, + "chemically": 1.74e-06, + "chewed": 1.74e-06, + "cinematography": 1.74e-06, + "cleans": 1.74e-06, + "coincidentally": 1.74e-06, + "collingwood": 1.74e-06, + "commandant": 1.74e-06, + "compartments": 1.74e-06, + "conducive": 1.74e-06, + "confines": 1.74e-06, + "cong": 1.74e-06, + "conscientious": 1.74e-06, + "consensual": 1.74e-06, + "consumes": 1.74e-06, + "contrasted": 1.74e-06, + "cpa": 1.74e-06, + "critiques": 1.74e-06, + "crystalline": 1.74e-06, + "cuffs": 1.74e-06, + "cyanide": 1.74e-06, + "deadpool": 1.74e-06, + "deceit": 1.74e-06, + "delusions": 1.74e-06, + "denounce": 1.74e-06, + "derogatory": 1.74e-06, + "diagnoses": 1.74e-06, + "discriminated": 1.74e-06, + "dismantle": 1.74e-06, + "dismantling": 1.74e-06, + "disrupting": 1.74e-06, + "dmv": 1.74e-06, + "dns": 1.74e-06, + "drags": 1.74e-06, + "drugged": 1.74e-06, + "durban": 1.74e-06, + "dx": 1.74e-06, + "eachother": 1.74e-06, + "eastward": 1.74e-06, + "elisabeth": 1.74e-06, + "emanuel": 1.74e-06, + "embroidery": 1.74e-06, + "emo": 1.74e-06, + "endorsing": 1.74e-06, + "enigma": 1.74e-06, + "equivalents": 1.74e-06, + "erdogan": 1.74e-06, + "estranged": 1.74e-06, + "euphoria": 1.74e-06, + "ez": 1.74e-06, + "fahrenheit": 1.74e-06, + "feelin": 1.74e-06, + "firewall": 1.74e-06, + "flattered": 1.74e-06, + "floridas": 9.12e-08, + "fluorescence": 1.74e-06, + "fonts": 1.74e-06, + "forceful": 1.74e-06, + "forte": 1.74e-06, + "fours": 1.91e-07, + "frowned": 1.74e-06, + "gaelic": 1.74e-06, + "galveston": 1.74e-06, + "gangsters": 9.77e-08, + "gardiner": 1.74e-06, + "gibbons": 1.74e-06, + "giorgio": 1.74e-06, + "gladstone": 1.74e-06, + "gladys": 1.74e-06, + "gmbh": 1.74e-06, + "gogh": 1.74e-06, + "gracie": 1.74e-06, + "grassy": 1.74e-06, + "greener": 1.74e-06, + "greer": 1.74e-06, + "greta": 1.74e-06, + "hanger": 1.74e-06, + "hawking": 1.74e-06, + "hem": 1.74e-06, + "hitman": 1.74e-06, + "hitters": 1.74e-06, + "hobbs": 1.74e-06, + "housekeeping": 1.74e-06, + "hua": 1.74e-06, + "ifs": 1.38e-07, + "impacting": 1.74e-06, + "inequalities": 1.74e-06, + "infiltration": 1.74e-06, + "insidious": 1.74e-06, + "intimately": 1.74e-06, + "ioc": 1.74e-06, + "issa": 1.74e-06, + "jargon": 1.74e-06, + "joon": 1.74e-06, + "kayak": 1.74e-06, + "khaled": 1.74e-06, + "kilograms": 1.74e-06, + "kneel": 1.74e-06, + "knowles": 1.74e-06, + "ladders": 1.74e-06, + "lakh": 1.74e-06, + "leakage": 1.74e-06, + "liberate": 1.74e-06, + "lizards": 6.92e-08, + "loc": 1.74e-06, + "logistical": 1.74e-06, + "loophole": 1.74e-06, + "luminous": 1.74e-06, + "mah": 1.74e-06, + "majestys": 1.74e-06, + "malnutrition": 1.74e-06, + "maori": 1.74e-06, + "marlins": 1.74e-06, + "marseille": 1.74e-06, + "marshals": 1.91e-07, + "masterpieces": 1.74e-06, + "mathematician": 1.74e-06, + "mayonnaise": 1.74e-06, + "mccall": 1.74e-06, + "mcdonnell": 1.74e-06, + "mcdowell": 1.74e-06, + "medias": 4.37e-07, + "meghan": 1.74e-06, + "melodic": 1.74e-06, + "memorials": 8.91e-08, + "mendoza": 1.74e-06, + "meticulous": 1.74e-06, + "michelin": 1.74e-06, + "modesty": 1.74e-06, + "motherfucking": 1.74e-06, + "moustache": 1.74e-06, + "mubarak": 1.74e-06, + "muffins": 1.74e-06, + "mugs": 1.74e-06, + "naw": 1.74e-06, + "netting": 1.74e-06, + "nevermind": 1.74e-06, + "nf": 1.74e-06, + "nigerias": 1.74e-06, + "nigh": 1.74e-06, + "nocturnal": 1.74e-06, + "nozzle": 1.74e-06, + "nudes": 1.74e-06, + "offside": 1.74e-06, + "orgy": 1.74e-06, + "orton": 1.74e-06, + "overlay": 1.74e-06, + "paleo": 1.74e-06, + "paralympic": 1.74e-06, + "pastures": 1.74e-06, + "paternity": 1.74e-06, + "patriarchal": 1.74e-06, + "peeing": 1.74e-06, + "peeling": 1.74e-06, + "perched": 1.74e-06, + "pitiful": 1.74e-06, + "plethora": 1.74e-06, + "plutonium": 1.74e-06, + "powerpoint": 1.74e-06, + "prerequisite": 1.74e-06, + "psychosis": 1.74e-06, + "quantify": 1.74e-06, + "rabies": 1.74e-06, + "rallying": 1.74e-06, + "rations": 1.74e-06, + "raul": 1.74e-06, + "recon": 1.74e-06, + "recount": 1.74e-06, + "rectangle": 1.74e-06, + "recurrent": 1.74e-06, + "refill": 1.74e-06, + "reflexes": 1.74e-06, + "reinforces": 1.74e-06, + "religiously": 1.74e-06, + "relive": 1.74e-06, + "renewing": 1.74e-06, + "reopening": 1.74e-06, + "requisite": 1.74e-06, + "responsibly": 1.74e-06, + "resurrected": 1.74e-06, + "reuben": 1.74e-06, + "revolve": 1.74e-06, + "rewind": 1.74e-06, + "rightfully": 1.74e-06, + "rigs": 5.13e-08, + "ripley": 1.74e-06, + "ritz": 1.74e-06, + "rolf": 1.74e-06, + "rubs": 1.74e-06, + "russo": 1.74e-06, + "saddened": 1.74e-06, + "saddest": 1.74e-06, + "secluded": 1.74e-06, + "seduce": 1.74e-06, + "semifinal": 1.74e-06, + "sens": 1.58e-07, + "shadowy": 1.74e-06, + "shun": 1.74e-06, + "sidekick": 1.74e-06, + "skewed": 1.74e-06, + "snl": 1.74e-06, + "softened": 1.74e-06, + "soros": 1.74e-06, + "spartans": 1.74e-06, + "specifies": 1.74e-06, + "spectre": 1.74e-06, + "sprinkled": 1.74e-06, + "stallion": 1.74e-06, + "stepfather": 1.74e-06, + "strangled": 1.74e-06, + "susie": 1.74e-06, + "sven": 1.74e-06, + "syllables": 1.74e-06, + "synthesized": 1.74e-06, + "tak": 1.74e-06, + "tapestry": 1.74e-06, + "taping": 1.74e-06, + "tenderness": 1.74e-06, + "terrier": 1.74e-06, + "tester": 1.74e-06, + "thirties": 1.74e-06, + "thistle": 1.74e-06, + "thumbnail": 1.74e-06, + "tickle": 1.74e-06, + "titties": 1.74e-06, + "toro": 1.74e-06, + "tpp": 1.74e-06, + "trays": 1.74e-06, + "tubular": 1.74e-06, + "tue": 1.74e-06, + "tumbling": 1.74e-06, + "turkeys": 1.62e-06, + "underside": 1.74e-06, + "uneducated": 1.74e-06, + "unload": 1.74e-06, + "unloading": 1.74e-06, + "unmarked": 1.74e-06, + "unreleased": 1.74e-06, + "upkeep": 1.74e-06, + "urn": 1.74e-06, + "viagra": 1.74e-06, + "vigil": 1.74e-06, + "voicing": 1.74e-06, + "volley": 1.74e-06, + "voyages": 1.74e-06, + "waive": 1.74e-06, + "wallis": 1.74e-06, + "warmly": 1.74e-06, + "watergate": 1.74e-06, + "wavy": 1.74e-06, + "wednesdays": 1.12e-06, + "weibo": 1.74e-06, + "wendell": 1.74e-06, + "wept": 1.74e-06, + "whew": 1.74e-06, + "whirlwind": 1.74e-06, + "whitaker": 1.74e-06, + "wilbur": 1.74e-06, + "wildest": 1.74e-06, + "winnings": 1.51e-08, + "wis": 1.66e-08, + "woodlands": 1.74e-06, + "yearning": 1.74e-06, + "accomplishing": 1.7e-06, + "accumulating": 1.7e-06, + "affleck": 1.7e-06, + "agencys": 1.7e-06, + "alain": 1.7e-06, + "andrei": 1.7e-06, + "annapolis": 1.7e-06, + "annum": 1.7e-06, + "appreciating": 1.7e-06, + "aristocratic": 1.7e-06, + "aroma": 1.7e-06, + "arsenic": 1.7e-06, + "assigns": 1.7e-06, + "assures": 1.7e-06, + "astro": 1.7e-06, + "asus": 8.71e-08, + "aziz": 1.7e-06, + "backers": 1.7e-06, + "bain": 1.7e-06, + "barclays": 1.32e-07, + "basing": 1.7e-06, + "batches": 1.7e-06, + "beggars": 1.15e-07, + "bestselling": 1.7e-06, + "biographies": 1.7e-06, + "biologically": 1.7e-06, + "bowled": 1.7e-06, + "bubbling": 1.7e-06, + "budge": 1.7e-06, + "bw": 1.7e-06, + "calhoun": 1.7e-06, + "ccp": 1.7e-06, + "chaplin": 1.7e-06, + "cheater": 1.7e-06, + "cheeses": 9.55e-08, + "clegg": 1.7e-06, + "cloning": 1.7e-06, + "clout": 1.7e-06, + "cochran": 1.7e-06, + "comical": 1.7e-06, + "commemorative": 1.7e-06, + "confederacy": 1.7e-06, + "converge": 1.7e-06, + "copeland": 1.7e-06, + "corny": 1.7e-06, + "countrymen": 1.7e-06, + "crucible": 1.7e-06, + "cryptic": 1.7e-06, + "culminated": 1.7e-06, + "curses": 1.7e-06, + "darth": 1.7e-06, + "deb": 1.7e-06, + "declarations": 1.7e-06, + "deities": 1.7e-06, + "deletion": 1.7e-06, + "diligent": 1.7e-06, + "discern": 1.7e-06, + "dislikes": 1.7e-06, + "domino": 1.7e-06, + "donnelly": 1.7e-06, + "downgrade": 1.7e-06, + "dreamy": 1.7e-06, + "drenched": 1.7e-06, + "droid": 1.7e-06, + "dukes": 1.15e-06, + "dummies": 1.7e-06, + "dunbar": 1.7e-06, + "dung": 1.7e-06, + "dyson": 1.7e-06, + "earners": 1.7e-06, + "eel": 1.7e-06, + "eiffel": 1.7e-06, + "embryonic": 1.7e-06, + "emoji": 1.7e-06, + "encountering": 1.7e-06, + "endanger": 1.7e-06, + "eos": 1.7e-06, + "equities": 1.7e-06, + "fakes": 1.7e-06, + "fanatic": 1.7e-06, + "fav": 1.7e-06, + "feats": 1.7e-06, + "filmmaking": 1.7e-06, + "firmware": 1.7e-06, + "formulate": 1.7e-06, + "forts": 8.32e-08, + "fragmentation": 1.7e-06, + "franks": 1.23e-06, + "frederic": 1.7e-06, + "ftc": 1.7e-06, + "gated": 1.7e-06, + "girly": 1.7e-06, + "glam": 1.7e-06, + "glorified": 1.7e-06, + "goth": 1.7e-06, + "gracefully": 1.7e-06, + "gubernatorial": 1.7e-06, + "gunmen": 1.7e-06, + "hahahaha": 1.7e-06, + "hawthorn": 1.7e-06, + "healy": 1.7e-06, + "hermann": 1.7e-06, + "herr": 1.7e-06, + "hf": 1.7e-06, + "hg": 1.7e-06, + "hoard": 1.7e-06, + "horde": 1.7e-06, + "humming": 1.7e-06, + "ignited": 1.7e-06, + "imdb": 1.7e-06, + "imp": 1.7e-06, + "implicitly": 1.7e-06, + "inconsistency": 1.7e-06, + "ingenuity": 1.7e-06, + "injecting": 1.7e-06, + "inorganic": 1.7e-06, + "intestine": 1.7e-06, + "isolating": 1.7e-06, + "itinerary": 1.7e-06, + "juggling": 1.7e-06, + "justifies": 1.7e-06, + "kkk": 1.7e-06, + "koran": 1.7e-06, + "lacy": 1.7e-06, + "lair": 1.7e-06, + "lamborghini": 1.7e-06, + "lambs": 3.02e-07, + "leaping": 1.7e-06, + "liberating": 1.7e-06, + "lifeless": 1.7e-06, + "lifeline": 1.7e-06, + "lobbyists": 1.7e-06, + "looms": 1.7e-06, + "lotto": 1.7e-06, + "lovable": 1.7e-06, + "luka": 1.7e-06, + "lukas": 5.5e-08, + "lyndon": 1.7e-06, + "lynne": 1.7e-06, + "macarthur": 1.7e-06, + "mam": 6.03e-08, + "mani": 1.7e-06, + "mari": 1.7e-06, + "marino": 1.7e-06, + "mateo": 1.7e-06, + "messes": 1.7e-06, + "metaphors": 1.7e-06, + "miliband": 1.7e-06, + "molded": 1.7e-06, + "moot": 1.7e-06, + "mortimer": 1.7e-06, + "msc": 1.7e-06, + "musicals": 7.94e-08, + "myles": 1.7e-06, + "nebula": 1.7e-06, + "neurology": 1.7e-06, + "newt": 1.7e-06, + "nguyen": 1.7e-06, + "nietzsche": 1.7e-06, + "nitro": 1.7e-06, + "noaa": 1.7e-06, + "norse": 1.7e-06, + "notebooks": 1.7e-06, + "nyt": 1.7e-06, + "odin": 1.7e-06, + "oj": 1.7e-06, + "ost": 1.7e-06, + "overflowing": 1.7e-06, + "overland": 1.7e-06, + "overshadowed": 1.7e-06, + "pantry": 1.7e-06, + "paraguay": 1.7e-06, + "parchment": 1.7e-06, + "partake": 1.7e-06, + "pedals": 1.7e-06, + "pesos": 1.7e-06, + "peterborough": 1.7e-06, + "philosophies": 1.7e-06, + "pj": 1.7e-06, + "plagiarism": 1.7e-06, + "poked": 1.7e-06, + "polk": 1.7e-06, + "pollard": 1.7e-06, + "polled": 1.7e-06, + "pollock": 1.7e-06, + "prefix": 1.7e-06, + "proctor": 1.7e-06, + "prologue": 1.7e-06, + "proto": 1.7e-06, + "psp": 1.7e-06, + "pueblo": 1.7e-06, + "pulpit": 1.7e-06, + "puncture": 1.7e-06, + "pussies": 1.7e-06, + "qa": 1.7e-06, + "recounts": 1.7e-06, + "redhead": 1.7e-06, + "relational": 1.7e-06, + "remastered": 1.7e-06, + "renegade": 1.7e-06, + "resorted": 1.7e-06, + "ripper": 1.7e-06, + "robson": 1.7e-06, + "roofing": 1.7e-06, + "rotational": 1.7e-06, + "rudd": 1.7e-06, + "ryu": 1.7e-06, + "safeguarding": 1.7e-06, + "sash": 1.7e-06, + "scrambling": 1.7e-06, + "scully": 1.7e-06, + "seductive": 1.7e-06, + "sega": 1.7e-06, + "segmentation": 1.7e-06, + "sergey": 1.7e-06, + "shaker": 1.7e-06, + "shielding": 1.7e-06, + "shone": 1.7e-06, + "sissy": 1.7e-06, + "sizeable": 1.7e-06, + "sled": 1.7e-06, + "sloane": 1.7e-06, + "sludge": 1.7e-06, + "sniffing": 1.7e-06, + "sorrows": 1.7e-06, + "spamming": 1.7e-06, + "speedway": 1.7e-06, + "spiked": 1.7e-06, + "spongebob": 1.7e-06, + "sprouts": 1.7e-06, + "staffers": 1.7e-06, + "staffs": 4.68e-07, + "stiles": 1.7e-06, + "stretcher": 1.7e-06, + "stricter": 1.7e-06, + "subtitle": 1.7e-06, + "summarize": 1.7e-06, + "sympathies": 1.7e-06, + "taker": 1.7e-06, + "telescopes": 7.59e-08, + "tess": 1.7e-06, + "threaded": 1.7e-06, + "tong": 1.7e-06, + "torturing": 1.7e-06, + "townships": 7.24e-08, + "transplantation": 1.7e-06, + "triad": 1.7e-06, + "trimming": 1.7e-06, + "truthfully": 1.7e-06, + "unfounded": 1.7e-06, + "unicef": 1.7e-06, + "unimportant": 1.7e-06, + "uninsured": 1.7e-06, + "untitled": 1.7e-06, + "uw": 1.7e-06, + "uzbekistan": 1.7e-06, + "valor": 1.7e-06, + "vape": 1.7e-06, + "vernacular": 1.7e-06, + "virtuous": 1.7e-06, + "vox": 1.7e-06, + "vulnerabilities": 1.7e-06, + "waffles": 1.7e-06, + "waiters": 7.76e-08, + "waivers": 1.7e-06, + "warcraft": 1.7e-06, + "watercolor": 1.7e-06, + "wight": 1.7e-06, + "wolff": 1.7e-06, + "worded": 1.7e-06, + "wto": 1.7e-06, + "yknow": 2.4e-07, + "abrasive": 1.66e-06, + "accompaniment": 1.66e-06, + "accomplice": 1.66e-06, + "adoptive": 1.66e-06, + "ailments": 1.66e-06, + "alphabetical": 1.66e-06, + "alternately": 1.66e-06, + "analysing": 1.66e-06, + "annihilation": 1.66e-06, + "arbitrarily": 1.66e-06, + "armistice": 1.66e-06, + "armory": 1.66e-06, + "ars": 1.66e-06, + "att": 1.66e-06, + "auspices": 1.66e-06, + "awakens": 1.66e-06, + "bathe": 1.66e-06, + "beheaded": 1.66e-06, + "bellevue": 1.66e-06, + "bloomington": 1.66e-06, + "boasted": 1.66e-06, + "bobs": 8.71e-07, + "boroughs": 1.23e-07, + "breathed": 1.66e-06, + "brodie": 1.66e-06, + "calamity": 1.66e-06, + "carbonate": 1.66e-06, + "carlyle": 1.66e-06, + "carmel": 1.66e-06, + "catalytic": 1.66e-06, + "cemeteries": 1.66e-06, + "ceylon": 1.66e-06, + "chases": 3.02e-07, + "cheerleaders": 1.66e-06, + "cheesecake": 1.66e-06, + "choral": 1.66e-06, + "chronology": 1.66e-06, + "clam": 1.66e-06, + "clientele": 1.66e-06, + "coefficients": 1.66e-06, + "coldest": 1.66e-06, + "colouring": 1.66e-06, + "combatants": 1.66e-06, + "competes": 1.66e-06, + "configured": 1.66e-06, + "conflicted": 1.66e-06, + "convection": 1.66e-06, + "coronavirus": 1.66e-06, + "cosby": 1.66e-06, + "craftsman": 1.66e-06, + "creams": 6.92e-08, + "cretaceous": 1.66e-06, + "cripple": 1.66e-06, + "crooks": 1.66e-06, + "crunchy": 1.66e-06, + "ctrl": 1.66e-06, + "curvature": 1.66e-06, + "cyborg": 1.66e-06, + "dares": 1.38e-08, + "deflection": 1.66e-06, + "despised": 1.66e-06, + "dialogues": 1.66e-06, + "discouraging": 1.66e-06, + "distillery": 1.66e-06, + "diversification": 1.66e-06, + "djokovic": 1.66e-06, + "doesn": 1.66e-06, + "drumming": 1.66e-06, + "drummond": 1.66e-06, + "effortlessly": 1.66e-06, + "eighties": 1.66e-06, + "ein": 1.66e-06, + "enactment": 1.66e-06, + "enlighten": 1.66e-06, + "envious": 1.66e-06, + "erm": 1.66e-06, + "erroneous": 1.66e-06, + "exacerbated": 1.66e-06, + "familial": 1.66e-06, + "farage": 1.66e-06, + "fashions": 1.66e-07, + "feces": 1.66e-06, + "federer": 1.66e-06, + "filings": 1.66e-06, + "fishery": 1.66e-06, + "folders": 1.66e-06, + "frazier": 1.66e-06, + "frivolous": 1.66e-06, + "fruition": 1.66e-06, + "fuji": 1.66e-06, + "fullback": 1.66e-06, + "gage": 1.66e-06, + "galley": 1.66e-06, + "galway": 1.66e-06, + "gators": 1.66e-06, + "giddy": 1.66e-06, + "gpu": 1.66e-06, + "granada": 1.66e-06, + "grandeur": 1.66e-06, + "grappling": 1.66e-06, + "grover": 1.66e-06, + "gunshots": 1.66e-06, + "hamid": 1.66e-06, + "handlers": 7.24e-08, + "hanks": 2.69e-07, + "haunts": 1.66e-06, + "heinz": 1.66e-06, + "henrys": 9.33e-08, + "hentai": 1.66e-06, + "hodgson": 1.66e-06, + "homogeneous": 1.66e-06, + "hye": 1.66e-06, + "ich": 1.66e-06, + "ina": 1.66e-06, + "incl": 1.66e-06, + "inserts": 1.66e-06, + "intangible": 1.66e-06, + "interceptions": 1.66e-06, + "intestines": 1.66e-06, + "inventors": 6.61e-08, + "ire": 1.66e-06, + "jesuit": 1.66e-06, + "justine": 1.66e-06, + "kellys": 1.1e-07, + "kiddo": 1.66e-06, + "kimmel": 1.66e-06, + "knuckle": 1.66e-06, + "kt": 1.66e-06, + "landscaping": 1.66e-06, + "laureate": 1.66e-06, + "lds": 1.66e-06, + "lear": 1.66e-06, + "lesley": 1.66e-06, + "leveling": 1.66e-06, + "levied": 1.66e-06, + "lineman": 1.66e-06, + "litres": 1.66e-06, + "lodges": 1.15e-07, + "madman": 1.66e-06, + "maniac": 1.66e-06, + "manifestations": 1.66e-06, + "mavericks": 1.66e-06, + "mcnamara": 1.66e-06, + "medalist": 1.66e-06, + "melee": 1.66e-06, + "melo": 1.66e-06, + "melville": 1.66e-06, + "memorize": 1.66e-06, + "mendes": 1.66e-06, + "menstrual": 1.66e-06, + "merch": 1.66e-06, + "metallica": 1.66e-06, + "metaphysical": 1.66e-06, + "meteorology": 1.66e-06, + "methyl": 1.66e-06, + "mindless": 1.66e-06, + "misconception": 1.66e-06, + "mislead": 1.66e-06, + "momentarily": 1.66e-06, + "mounds": 1.66e-06, + "nadu": 1.66e-06, + "narcissistic": 1.66e-06, + "negotiable": 1.66e-06, + "nicknames": 1.66e-06, + "nom": 1.66e-06, + "northward": 1.66e-06, + "norwood": 1.66e-06, + "nudge": 1.66e-06, + "nurturing": 1.66e-06, + "nyse": 1.66e-06, + "obscured": 1.66e-06, + "osu": 1.66e-06, + "outlawed": 1.66e-06, + "ovens": 1.66e-06, + "overturn": 1.66e-06, + "padded": 1.66e-06, + "padres": 1.66e-06, + "panicking": 1.66e-06, + "pantheon": 1.66e-06, + "payer": 1.66e-06, + "pictorial": 1.66e-06, + "pints": 1.66e-06, + "ploy": 1.66e-06, + "pours": 1.66e-06, + "prejudices": 1.66e-06, + "presumption": 1.66e-06, + "proclaiming": 1.66e-06, + "prospectus": 1.66e-06, + "prosthetic": 1.66e-06, + "pty": 1.66e-06, + "publics": 3.55e-07, + "puma": 1.66e-06, + "racers": 6.03e-08, + "reactionary": 1.66e-06, + "reciprocal": 1.66e-06, + "reconstruct": 1.66e-06, + "redwood": 1.66e-06, + "regan": 1.66e-06, + "relieving": 1.66e-06, + "reverence": 1.66e-06, + "richter": 1.66e-06, + "rims": 1.66e-06, + "sabine": 1.66e-06, + "saigon": 1.66e-06, + "santana": 1.66e-06, + "scrubs": 1.66e-06, + "seaweed": 1.66e-06, + "seduction": 1.66e-06, + "selfishness": 1.66e-06, + "serge": 1.66e-06, + "servicemen": 1.66e-06, + "setbacks": 1.66e-06, + "sevens": 2.14e-07, + "sewers": 1.66e-06, + "sexiest": 1.66e-06, + "shakespeares": 1.66e-06, + "shaman": 1.66e-06, + "shatter": 1.66e-06, + "shepherds": 8.13e-07, + "shoving": 1.66e-06, + "signify": 1.66e-06, + "sinn": 1.66e-06, + "sino": 1.66e-06, + "sketchy": 1.66e-06, + "smuggled": 1.66e-06, + "snowfall": 1.66e-06, + "southbound": 1.66e-06, + "specificity": 1.66e-06, + "squirt": 1.66e-06, + "ste": 1.66e-06, + "stewardship": 1.66e-06, + "stitched": 1.66e-06, + "stoppage": 1.66e-06, + "storylines": 1.66e-06, + "straining": 1.66e-06, + "stu": 1.66e-06, + "superpower": 1.66e-06, + "suspensions": 1.66e-06, + "synergy": 1.66e-06, + "takers": 1.66e-06, + "tasmanian": 1.66e-06, + "tempt": 1.66e-06, + "terminating": 1.66e-06, + "terri": 1.66e-06, + "testifying": 1.66e-06, + "thermometer": 1.66e-06, + "thingy": 1.66e-06, + "timberlake": 1.66e-06, + "tint": 1.66e-06, + "tomlinson": 1.66e-06, + "toulouse": 1.66e-06, + "triumphs": 1.66e-06, + "unbroken": 1.66e-06, + "unsettled": 1.66e-06, + "unveiling": 1.66e-06, + "uttar": 1.66e-06, + "versed": 1.66e-06, + "vicki": 1.66e-06, + "vlad": 1.66e-06, + "vm": 1.66e-06, + "weiner": 1.66e-06, + "wharton": 1.66e-06, + "whiff": 1.66e-06, + "whopping": 1.66e-06, + "wilt": 1.66e-06, + "woodstock": 1.66e-06, + "youtubers": 1.66e-06, + "zachary": 1.66e-06, + "zhao": 1.66e-06, + "absurdity": 1.62e-06, + "achievable": 1.62e-06, + "adversaries": 1.62e-06, + "alchemy": 1.62e-06, + "amazons": 5.5e-07, + "ambushed": 1.62e-06, + "americana": 1.62e-06, + "anastasia": 1.62e-06, + "anatomical": 1.62e-06, + "antigen": 1.62e-06, + "apostolic": 1.62e-06, + "applauded": 1.62e-06, + "ara": 1.62e-06, + "aristocracy": 1.62e-06, + "armchair": 1.62e-06, + "aryan": 1.62e-06, + "aswell": 1.62e-06, + "aunts": 6.61e-07, + "babysitter": 1.62e-06, + "babysitting": 1.62e-06, + "backlog": 1.62e-06, + "bbcs": 1.62e-06, + "bengali": 1.62e-06, + "bile": 1.62e-06, + "biochemical": 1.62e-06, + "bled": 1.62e-06, + "bling": 1.62e-06, + "boca": 1.62e-06, + "boner": 1.62e-06, + "bose": 1.62e-06, + "botched": 1.62e-06, + "bouts": 1.62e-06, + "bradshaw": 1.62e-06, + "brandt": 1.62e-06, + "brownie": 1.62e-06, + "bunnies": 1.62e-06, + "calibre": 1.62e-06, + "caliphate": 1.62e-06, + "captives": 1.62e-06, + "carcass": 1.62e-06, + "cardigan": 1.62e-06, + "carousel": 1.62e-06, + "cartwright": 1.62e-06, + "chico": 1.62e-06, + "chihuahua": 1.62e-06, + "christi": 1.62e-06, + "circumcision": 1.62e-06, + "clandestine": 1.62e-06, + "clarifying": 1.62e-06, + "clutter": 1.62e-06, + "commuters": 1.62e-06, + "complying": 1.62e-06, + "compost": 1.62e-06, + "condemns": 1.62e-06, + "congratulated": 1.62e-06, + "conqueror": 1.62e-06, + "cot": 1.62e-06, + "coulson": 1.62e-06, + "crafty": 1.62e-06, + "crickets": 1.62e-07, + "croydon": 1.62e-06, + "crusader": 1.62e-06, + "cumming": 1.62e-06, + "cutoff": 1.62e-06, + "debacle": 1.62e-06, + "defiant": 1.62e-06, + "deformed": 1.62e-06, + "detain": 1.62e-06, + "diagnostics": 1.62e-06, + "directives": 1.62e-06, + "disarm": 1.62e-06, + "doherty": 1.62e-06, + "domingo": 1.62e-06, + "dominique": 1.62e-06, + "drawback": 1.62e-06, + "drawbacks": 1.62e-06, + "drs": 1.41e-07, + "edm": 1.62e-06, + "edo": 1.62e-06, + "elliptical": 1.62e-06, + "eloquent": 1.62e-06, + "eminence": 1.62e-06, + "emitting": 1.62e-06, + "emperors": 1.32e-06, + "entail": 1.62e-06, + "equatorial": 1.62e-06, + "eras": 2.75e-07, + "esports": 1.62e-06, + "eth": 1.62e-06, + "ethereum": 1.62e-06, + "eyeballs": 1.62e-06, + "fairytale": 1.62e-06, + "fallacy": 1.62e-06, + "feeble": 1.62e-06, + "fend": 1.62e-06, + "ferocious": 1.62e-06, + "fifties": 1.62e-06, + "filipinos": 1.62e-06, + "flake": 1.62e-06, + "fords": 5.5e-07, + "forensics": 1.62e-06, + "forwarding": 1.62e-06, + "fragrant": 1.62e-06, + "gallant": 1.62e-06, + "gazing": 1.62e-06, + "gd": 1.62e-06, + "generalization": 1.62e-06, + "genitals": 1.62e-06, + "geologist": 1.62e-06, + "goldsmith": 1.62e-06, + "golfing": 1.62e-06, + "goons": 1.62e-06, + "guesses": 1.62e-06, + "gums": 1.62e-06, + "haas": 1.62e-06, + "halle": 1.62e-06, + "hana": 1.62e-06, + "handcuffs": 1.62e-06, + "harmon": 1.62e-06, + "hasan": 1.62e-06, + "herds": 1.62e-06, + "hermit": 1.62e-06, + "hillsborough": 1.62e-06, + "hindered": 1.62e-06, + "hookers": 1.41e-07, + "horsemen": 1.62e-06, + "hui": 1.62e-06, + "hutton": 1.62e-06, + "ign": 1.62e-06, + "illuminating": 1.62e-06, + "indebted": 1.62e-06, + "indecent": 1.62e-06, + "inquest": 1.62e-06, + "interacts": 1.62e-06, + "interfered": 1.62e-06, + "ionic": 1.62e-06, + "ipl": 1.62e-06, + "jennie": 1.62e-06, + "jerking": 1.62e-06, + "jingle": 1.62e-06, + "johansson": 1.62e-06, + "kali": 1.62e-06, + "kilometre": 1.62e-06, + "kink": 1.62e-06, + "kira": 1.62e-06, + "lagging": 1.62e-06, + "laguna": 1.62e-06, + "lawns": 1.62e-06, + "leighton": 1.62e-06, + "leopold": 1.62e-06, + "levant": 1.62e-06, + "lice": 1.62e-06, + "loco": 1.62e-06, + "looted": 1.62e-06, + "lorry": 1.62e-06, + "loudest": 1.62e-06, + "lovin": 1.62e-06, + "macleod": 1.62e-06, + "magnolia": 1.62e-06, + "marlon": 1.62e-06, + "matty": 1.62e-06, + "mauritius": 1.62e-06, + "medial": 1.62e-06, + "mellon": 1.62e-06, + "mercantile": 1.62e-06, + "migratory": 1.62e-06, + "mingle": 1.62e-06, + "modernist": 1.62e-06, + "moths": 1.62e-06, + "mover": 1.62e-06, + "movers": 1.62e-06, + "nee": 1.62e-06, + "nomenclature": 1.62e-06, + "organisers": 1.62e-06, + "outback": 1.62e-06, + "outcry": 1.62e-06, + "pamphlets": 1.62e-06, + "panoramic": 1.62e-06, + "paparazzi": 1.62e-06, + "parkinson": 1.62e-06, + "pauses": 1.62e-06, + "pave": 1.62e-06, + "peng": 1.62e-06, + "philanthropic": 1.62e-06, + "playhouse": 1.62e-06, + "plow": 1.62e-06, + "prada": 1.62e-06, + "preferential": 1.62e-06, + "prescribing": 1.62e-06, + "primetime": 1.62e-06, + "probing": 1.62e-06, + "proc": 1.62e-06, + "prolong": 1.62e-06, + "propane": 1.62e-06, + "publicized": 1.62e-06, + "purest": 1.62e-06, + "pvc": 1.62e-06, + "qt": 1.62e-06, + "queues": 1.62e-06, + "ramadan": 1.62e-06, + "rambling": 1.62e-06, + "ras": 5.13e-07, + "recruiters": 1.62e-06, + "redirect": 1.62e-06, + "redmond": 1.62e-06, + "relentlessly": 1.62e-06, + "remanded": 1.62e-06, + "reusable": 1.62e-06, + "revolutionaries": 1.62e-06, + "rin": 1.62e-06, + "robberies": 1.62e-06, + "rowdy": 1.62e-06, + "saffron": 1.62e-06, + "salford": 1.62e-06, + "sassy": 1.62e-06, + "schoolboy": 1.62e-06, + "schumacher": 1.62e-06, + "scoreboard": 1.62e-06, + "scotty": 1.62e-06, + "seeding": 1.62e-06, + "sender": 1.62e-06, + "seneca": 1.62e-06, + "septic": 1.62e-06, + "shamed": 1.62e-06, + "shenanigans": 1.62e-06, + "silas": 1.62e-06, + "skateboard": 1.62e-06, + "skiers": 1.62e-06, + "slider": 1.62e-06, + "smacked": 1.62e-06, + "soma": 1.62e-06, + "ssd": 1.62e-06, + "staggered": 1.62e-06, + "staining": 1.62e-06, + "stalked": 1.62e-06, + "stemmed": 1.62e-06, + "stipulated": 1.62e-06, + "substrates": 1.62e-06, + "subversive": 1.62e-06, + "sufferers": 1.62e-06, + "suggestive": 1.62e-06, + "suitability": 1.62e-06, + "superstition": 1.62e-06, + "surfers": 8.71e-08, + "swallows": 5.5e-08, + "swanson": 1.62e-06, + "symmetric": 1.62e-06, + "synonyms": 1.62e-06, + "takin": 1.62e-06, + "theses": 1.62e-06, + "tic": 1.62e-06, + "timeout": 1.62e-06, + "toms": 1.2e-06, + "tome": 1.62e-06, + "tonne": 1.62e-06, + "totalitarian": 1.62e-06, + "tramp": 1.62e-06, + "transistor": 1.62e-06, + "translucent": 1.62e-06, + "trashed": 1.62e-06, + "trot": 1.62e-06, + "unbalanced": 1.62e-06, + "unfavorable": 1.62e-06, + "unintentionally": 1.62e-06, + "uniqueness": 1.62e-06, + "upto": 1.62e-06, + "vertebrae": 1.62e-06, + "vertex": 1.62e-06, + "vowels": 1.62e-06, + "vuitton": 1.62e-06, + "wheeling": 1.62e-06, + "whistling": 1.62e-06, + "wield": 1.62e-06, + "woodwork": 1.62e-06, + "yall": 1.07e-06, + "yellowish": 1.62e-06, + "yt": 1.62e-06, + "accompanies": 1.58e-06, + "acidity": 1.58e-06, + "ado": 1.58e-06, + "affirm": 1.58e-06, + "agrarian": 1.58e-06, + "airy": 1.58e-06, + "akira": 1.58e-06, + "alaskan": 1.58e-06, + "alfie": 1.58e-06, + "alloys": 1.58e-06, + "andhra": 1.58e-06, + "anecdote": 1.58e-06, + "anew": 1.58e-06, + "ani": 1.58e-06, + "antifa": 1.58e-06, + "antwerp": 1.58e-06, + "appease": 1.58e-06, + "aptitude": 1.58e-06, + "arisen": 1.58e-06, + "assassinate": 1.58e-06, + "asteroids": 7.59e-08, + "backside": 1.58e-06, + "bassist": 1.58e-06, + "bein": 1.58e-06, + "bespoke": 1.58e-06, + "blatantly": 1.58e-06, + "blinding": 1.58e-06, + "blocker": 1.58e-06, + "blowout": 1.58e-06, + "booted": 1.58e-06, + "brisk": 1.58e-06, + "bubbly": 1.58e-06, + "bummer": 1.58e-06, + "bundy": 1.58e-06, + "canceling": 1.58e-06, + "cao": 1.58e-06, + "casper": 1.58e-06, + "cauliflower": 1.58e-06, + "cebu": 1.58e-06, + "celia": 1.58e-06, + "cereals": 1.58e-06, + "chadwick": 1.58e-06, + "chainsaw": 1.58e-06, + "chalmers": 1.58e-06, + "channing": 1.58e-06, + "cheetah": 1.58e-06, + "christensen": 1.58e-06, + "climatic": 1.58e-06, + "clockwise": 1.58e-06, + "clockwork": 1.58e-06, + "coincides": 1.58e-06, + "como": 1.58e-06, + "conformity": 1.58e-06, + "confronts": 1.58e-06, + "consort": 1.58e-06, + "correlate": 1.58e-06, + "cougars": 1.58e-06, + "courteous": 1.58e-06, + "craftsmen": 1.58e-06, + "crete": 1.58e-06, + "criticise": 1.58e-06, + "cupid": 1.58e-06, + "curiously": 1.58e-06, + "damning": 1.58e-06, + "danes": 9.55e-08, + "darrell": 1.58e-06, + "defer": 1.58e-06, + "deforestation": 1.58e-06, + "delaney": 1.58e-06, + "demeanor": 1.58e-06, + "deng": 1.58e-06, + "deplorable": 1.58e-06, + "deranged": 1.58e-06, + "detergent": 1.58e-06, + "detour": 1.58e-06, + "dg": 1.58e-06, + "dhaka": 1.58e-06, + "diff": 1.58e-06, + "dissenting": 1.58e-06, + "distressing": 1.58e-06, + "docked": 1.58e-06, + "downtime": 1.58e-06, + "downwards": 1.58e-06, + "dries": 1.58e-06, + "dutton": 1.58e-06, + "enlarge": 1.58e-06, + "enlargement": 1.58e-06, + "equate": 1.58e-06, + "equestrian": 1.58e-06, + "ethereal": 1.58e-06, + "eurovision": 1.58e-06, + "expanse": 1.58e-06, + "fabio": 1.58e-06, + "faiths": 2.34e-07, + "fanatics": 1.58e-06, + "fanfare": 1.58e-06, + "favorably": 1.58e-06, + "fidel": 1.58e-06, + "fingernails": 1.58e-06, + "fireman": 1.58e-06, + "flaps": 1.58e-06, + "flask": 1.58e-06, + "fluff": 1.58e-06, + "fondly": 1.58e-06, + "footnotes": 1.58e-06, + "fremont": 1.58e-06, + "frosty": 1.58e-06, + "galileo": 1.58e-06, + "gatsby": 1.58e-06, + "gearbox": 1.58e-06, + "germ": 1.58e-06, + "gis": 7.76e-08, + "giver": 1.58e-06, + "gnome": 1.58e-06, + "guaranteeing": 1.58e-06, + "gunpoint": 1.58e-06, + "hades": 1.58e-06, + "handedly": 1.58e-06, + "har": 1.58e-06, + "harcourt": 1.58e-06, + "harlan": 1.58e-06, + "haute": 1.58e-06, + "heartache": 1.58e-06, + "hertfordshire": 1.58e-06, + "homeowner": 1.58e-06, + "hooray": 1.58e-06, + "huskies": 1.58e-06, + "hypotheses": 1.58e-06, + "imitating": 1.58e-06, + "imposes": 1.58e-06, + "individuality": 1.58e-06, + "infiltrated": 1.58e-06, + "insurgent": 1.58e-06, + "intertwined": 1.58e-06, + "inventories": 1.58e-06, + "iranians": 1.58e-06, + "italys": 1.58e-06, + "jails": 8.51e-08, + "janitor": 1.58e-06, + "judgmental": 1.58e-06, + "lange": 1.58e-06, + "lanterns": 1.58e-06, + "launchers": 1.58e-06, + "legislator": 1.58e-06, + "lien": 1.58e-06, + "limousine": 1.58e-06, + "linden": 1.58e-06, + "lithuanian": 1.58e-06, + "lotta": 1.58e-06, + "lupus": 1.58e-06, + "lyme": 1.58e-06, + "lymph": 1.58e-06, + "macys": 1.32e-07, + "mahal": 1.58e-06, + "mansions": 8.51e-08, + "manure": 1.58e-06, + "mariah": 1.58e-06, + "mccormick": 1.58e-06, + "meatballs": 1.58e-06, + "meningitis": 1.58e-06, + "meteorite": 1.58e-06, + "midfielders": 1.58e-06, + "mildred": 1.58e-06, + "militias": 6.61e-08, + "millie": 1.58e-06, + "milne": 1.58e-06, + "misogyny": 1.58e-06, + "mrna": 1.58e-06, + "multiplier": 1.58e-06, + "nehru": 1.58e-06, + "newbie": 1.58e-06, + "newtown": 1.58e-06, + "nominating": 1.58e-06, + "northbound": 1.58e-06, + "oblique": 1.58e-06, + "obscurity": 1.58e-06, + "odessa": 1.58e-06, + "okinawa": 1.58e-06, + "onslaught": 1.58e-06, + "opal": 1.58e-06, + "operas": 3.39e-07, + "organisational": 1.58e-06, + "oxfordshire": 1.58e-06, + "palsy": 1.58e-06, + "paralympics": 1.58e-06, + "paramilitary": 1.58e-06, + "partridge": 1.58e-06, + "patrolling": 1.58e-06, + "patti": 1.58e-06, + "payers": 5.01e-08, + "permissible": 1.58e-06, + "platonic": 1.58e-06, + "polka": 1.58e-06, + "primates": 1.58e-06, + "rancho": 1.58e-06, + "rattling": 1.58e-06, + "rca": 1.58e-06, + "realisation": 1.58e-06, + "recapture": 1.58e-06, + "recounted": 1.58e-06, + "recurrence": 1.58e-06, + "referrals": 1.58e-06, + "refinement": 1.58e-06, + "regis": 1.58e-06, + "relocating": 1.58e-06, + "reparations": 1.58e-06, + "repel": 1.58e-06, + "researches": 1.58e-06, + "resigns": 1.58e-06, + "revamp": 1.58e-06, + "rockwell": 1.58e-06, + "rodent": 1.58e-06, + "rohan": 1.58e-06, + "rudder": 1.58e-06, + "ruiz": 1.58e-06, + "rung": 1.58e-06, + "salah": 1.58e-06, + "satisfies": 1.58e-06, + "scraped": 1.58e-06, + "seaman": 1.58e-06, + "sensibility": 1.58e-06, + "sevilla": 1.58e-06, + "shielded": 1.58e-06, + "showered": 1.58e-06, + "sizing": 1.58e-06, + "skier": 1.58e-06, + "skyscraper": 1.58e-06, + "slabs": 1.58e-06, + "slumber": 1.58e-06, + "slums": 1.58e-06, + "sockets": 1.58e-06, + "spiderman": 1.58e-06, + "sprays": 1.58e-06, + "staunch": 1.58e-06, + "stiffness": 1.58e-06, + "stuttgart": 1.58e-06, + "swayed": 1.58e-06, + "swoop": 1.58e-06, + "synchronized": 1.58e-06, + "tahoe": 1.58e-06, + "tallahassee": 1.58e-06, + "telly": 1.58e-06, + "tentacles": 1.58e-06, + "terence": 1.58e-06, + "therapeutics": 1.58e-06, + "thom": 1.58e-06, + "tia": 1.58e-06, + "topology": 1.58e-06, + "transatlantic": 1.58e-06, + "tunisian": 1.58e-06, + "tutoring": 1.58e-06, + "ugandan": 1.58e-06, + "uncontrolled": 1.58e-06, + "undecided": 1.58e-06, + "unparalleled": 1.58e-06, + "unsolicited": 1.58e-06, + "unveil": 1.58e-06, + "unworthy": 1.58e-06, + "utensils": 1.58e-06, + "vaults": 1.58e-06, + "vids": 1.58e-06, + "vocation": 1.58e-06, + "volts": 1.58e-06, + "waged": 1.58e-06, + "walden": 1.58e-06, + "warmest": 1.58e-06, + "wentworth": 1.58e-06, + "whens": 8.51e-08, + "whoop": 1.58e-06, + "williamsburg": 1.58e-06, + "winslow": 1.58e-06, + "zu": 1.58e-06, + "abbreviated": 1.55e-06, + "admirer": 1.55e-06, + "aerobic": 1.55e-06, + "aerodynamic": 1.55e-06, + "aesthetically": 1.55e-06, + "agitation": 1.55e-06, + "agreeable": 1.55e-06, + "airway": 1.55e-06, + "alessandro": 1.55e-06, + "alfonso": 1.55e-06, + "algebraic": 1.55e-06, + "amaze": 1.55e-06, + "analyzes": 1.55e-06, + "artefacts": 1.55e-06, + "assertive": 1.55e-06, + "assimilation": 1.55e-06, + "augment": 1.55e-06, + "avalon": 1.55e-06, + "backseat": 1.55e-06, + "balkan": 1.55e-06, + "barclay": 1.55e-06, + "baseman": 1.55e-06, + "batted": 1.55e-06, + "beale": 1.55e-06, + "beatty": 1.55e-06, + "bernardino": 1.55e-06, + "bernardo": 1.55e-06, + "bitching": 1.55e-06, + "bosnian": 1.55e-06, + "bragg": 1.55e-06, + "brainer": 1.55e-06, + "breakaway": 1.55e-06, + "breakdowns": 1.55e-06, + "breathless": 1.55e-06, + "briefed": 1.55e-06, + "brownies": 1.55e-06, + "browsers": 8.91e-08, + "brunei": 1.55e-06, + "bst": 1.55e-06, + "cabs": 5.5e-08, + "captions": 1.55e-06, + "carefree": 1.55e-06, + "caricature": 1.55e-06, + "carton": 1.55e-06, + "cayman": 1.55e-06, + "celeste": 1.55e-06, + "cert": 1.55e-06, + "ces": 1.55e-06, + "chandelier": 1.55e-06, + "chandra": 1.55e-06, + "chests": 1.55e-06, + "chute": 1.55e-06, + "cir": 1.55e-06, + "clipping": 1.55e-06, + "clot": 1.55e-06, + "comets": 1.23e-07, + "companionship": 1.55e-06, + "complacent": 1.55e-06, + "complicit": 1.55e-06, + "concentrates": 1.55e-06, + "confer": 1.55e-06, + "contractions": 1.55e-06, + "coolant": 1.55e-06, + "copyrighted": 1.55e-06, + "corbett": 1.55e-06, + "counteract": 1.55e-06, + "courtship": 1.55e-06, + "crammed": 1.55e-06, + "craven": 1.55e-06, + "csr": 1.55e-06, + "cumbria": 1.55e-06, + "cushions": 1.55e-06, + "daley": 1.55e-06, + "debilitating": 1.55e-06, + "deepen": 1.55e-06, + "deepening": 1.55e-06, + "dependencies": 1.55e-06, + "deprive": 1.55e-06, + "derry": 1.55e-06, + "destroyers": 1.55e-06, + "devise": 1.55e-06, + "devotees": 1.55e-06, + "directories": 1.55e-06, + "disclosing": 1.55e-06, + "discrepancies": 1.55e-06, + "disparities": 1.55e-06, + "downturn": 1.55e-06, + "drier": 1.55e-06, + "duane": 1.55e-06, + "dystopian": 1.55e-06, + "efficiencies": 1.55e-06, + "electrically": 1.55e-06, + "elmer": 1.55e-06, + "ely": 1.55e-06, + "embodies": 1.55e-06, + "enclave": 1.55e-06, + "entourage": 1.55e-06, + "epoch": 1.55e-06, + "evo": 1.55e-06, + "exaggerate": 1.55e-06, + "exaggerating": 1.55e-06, + "excelled": 1.55e-06, + "extinguished": 1.55e-06, + "faber": 1.55e-06, + "farts": 1.55e-06, + "fated": 1.55e-06, + "femme": 1.55e-06, + "fibres": 1.55e-06, + "fibrosis": 1.55e-06, + "fielder": 1.55e-06, + "foggy": 1.55e-06, + "forgery": 1.55e-06, + "fremantle": 1.55e-06, + "frequented": 1.55e-06, + "functionally": 1.55e-06, + "furiously": 1.55e-06, + "gaping": 1.55e-06, + "gator": 1.55e-06, + "gentry": 1.55e-06, + "germanic": 1.55e-06, + "gigi": 1.55e-06, + "gimmick": 1.55e-06, + "gladiator": 1.55e-06, + "glendale": 1.55e-06, + "glimpses": 1.55e-06, + "glittering": 1.55e-06, + "glossary": 1.55e-06, + "grandmothers": 9.77e-07, + "gregor": 1.55e-06, + "grinning": 1.55e-06, + "grizzlies": 1.55e-06, + "groundwork": 1.55e-06, + "gymnasium": 1.55e-06, + "hammering": 1.55e-06, + "harrisburg": 1.55e-06, + "hays": 6.61e-08, + "henley": 1.55e-06, + "hounds": 6.61e-08, + "implementations": 1.55e-06, + "imposition": 1.55e-06, + "impromptu": 1.55e-06, + "indulgence": 1.55e-06, + "intersect": 1.55e-06, + "invasions": 1.55e-06, + "iodine": 1.55e-06, + "jameson": 1.55e-06, + "johannes": 1.55e-06, + "johnstone": 1.55e-06, + "jos": 2.95e-07, + "josef": 1.55e-06, + "keel": 1.55e-06, + "kilometer": 1.55e-06, + "kingsley": 1.55e-06, + "kk": 1.55e-06, + "kruger": 1.55e-06, + "labourers": 1.55e-06, + "leland": 1.55e-06, + "lemme": 1.55e-06, + "lettering": 1.55e-06, + "lewd": 1.55e-06, + "lifeboat": 1.55e-06, + "liters": 1.55e-06, + "liturgy": 1.55e-06, + "livin": 1.55e-06, + "llp": 1.55e-06, + "lockhart": 1.55e-06, + "longstanding": 1.55e-06, + "lumps": 1.55e-06, + "madeline": 1.55e-06, + "magma": 1.55e-06, + "mammalian": 1.55e-06, + "marbles": 1.48e-08, + "marcia": 1.55e-06, + "milking": 1.55e-06, + "millennia": 1.55e-06, + "milner": 1.55e-06, + "miraculously": 1.55e-06, + "molding": 1.55e-06, + "mortals": 1.55e-06, + "motorbike": 1.55e-06, + "mustafa": 1.55e-06, + "nodding": 1.55e-06, + "nonexistent": 1.55e-06, + "notoriety": 1.55e-06, + "nuclei": 1.55e-06, + "nutty": 1.55e-06, + "oa": 1.55e-06, + "obedient": 1.55e-06, + "oculus": 1.55e-06, + "ogden": 1.55e-06, + "orgasms": 1.55e-06, + "originates": 1.55e-06, + "ornate": 1.55e-06, + "ousted": 1.55e-06, + "palpable": 1.55e-06, + "paramedic": 1.55e-06, + "patched": 1.55e-06, + "perk": 1.55e-06, + "perpetuate": 1.55e-06, + "perverse": 1.55e-06, + "perverted": 1.55e-06, + "peta": 1.55e-06, + "philharmonic": 1.55e-06, + "photographing": 1.55e-06, + "photons": 1.55e-06, + "playlists": 1.55e-06, + "plume": 1.55e-06, + "plump": 1.55e-06, + "prequel": 1.55e-06, + "prophetic": 1.55e-06, + "provocation": 1.55e-06, + "pumpkins": 1.55e-06, + "purified": 1.55e-06, + "radiology": 1.55e-06, + "raffle": 1.55e-06, + "ragged": 1.55e-06, + "rainbows": 9.77e-08, + "recoil": 1.55e-06, + "recorders": 5.89e-08, + "redo": 1.55e-06, + "rejoin": 1.55e-06, + "relays": 1.55e-06, + "remission": 1.55e-06, + "renounce": 1.55e-06, + "repentance": 1.55e-06, + "resonate": 1.55e-06, + "restitution": 1.55e-06, + "reviving": 1.55e-06, + "rewritten": 1.55e-06, + "riddled": 1.55e-06, + "ridiculed": 1.55e-06, + "romo": 1.55e-06, + "rotations": 1.55e-06, + "rotterdam": 1.55e-06, + "roxy": 1.55e-06, + "rugs": 1.55e-06, + "sacrament": 1.55e-06, + "sauces": 1.55e-06, + "scholastic": 1.55e-06, + "scourge": 1.55e-06, + "seville": 1.55e-06, + "shopper": 1.55e-06, + "shrub": 1.55e-06, + "shu": 1.55e-06, + "signage": 1.55e-06, + "skis": 1.55e-06, + "slag": 1.55e-06, + "sluts": 1.55e-06, + "sneeze": 1.55e-06, + "soaps": 5.89e-08, + "sobriety": 1.55e-06, + "som": 1.55e-06, + "songwriting": 1.55e-06, + "sorely": 1.55e-06, + "sprawling": 1.55e-06, + "sprinter": 1.55e-06, + "sprite": 1.55e-06, + "stagnation": 1.55e-06, + "stead": 1.55e-06, + "stinks": 1.55e-06, + "structurally": 1.55e-06, + "suez": 1.55e-06, + "sulfate": 1.55e-06, + "sumner": 1.55e-06, + "sv": 1.55e-06, + "swag": 1.55e-06, + "sweatshirt": 1.55e-06, + "tangent": 1.55e-06, + "tenn": 1.55e-06, + "tg": 1.55e-06, + "tori": 1.55e-06, + "touted": 1.55e-06, + "tracer": 1.55e-06, + "transporter": 1.55e-06, + "turing": 1.55e-06, + "undergoes": 1.55e-06, + "unearthed": 1.55e-06, + "uniformly": 1.55e-06, + "unqualified": 1.55e-06, + "unquestionably": 1.55e-06, + "unravel": 1.55e-06, + "variously": 1.55e-06, + "vests": 1.55e-06, + "veterinarian": 1.55e-06, + "vidal": 1.55e-06, + "viet": 1.55e-06, + "viz": 1.55e-06, + "warms": 1.55e-06, + "wasteland": 1.55e-06, + "watchdog": 1.55e-06, + "watery": 1.55e-06, + "wavelengths": 1.55e-06, + "weasel": 1.55e-06, + "westfield": 1.55e-06, + "whips": 1.55e-06, + "whyd": 1.55e-06, + "workplaces": 1.55e-06, + "yukon": 1.55e-06, + "zeke": 1.55e-06, + "zest": 1.55e-06, + "zoology": 1.55e-06, + "zulu": 1.55e-06, + "aborted": 1.51e-06, + "absorbs": 1.51e-06, + "abstinence": 1.51e-06, + "academically": 1.51e-06, + "activates": 1.51e-06, + "adjectives": 1.51e-06, + "adm": 1.51e-06, + "adventurer": 1.51e-06, + "adventurers": 6.03e-08, + "aeroplane": 1.51e-06, + "alcoholics": 1.51e-06, + "allege": 1.51e-06, + "alton": 1.51e-06, + "andromeda": 1.51e-06, + "announcers": 5.62e-08, + "arduous": 1.51e-06, + "asher": 1.51e-06, + "attaining": 1.51e-06, + "avi": 1.51e-06, + "bachelorette": 1.51e-06, + "bagel": 1.51e-06, + "bagged": 1.51e-06, + "bai": 1.51e-06, + "bangor": 1.51e-06, + "barometer": 1.51e-06, + "basque": 1.51e-06, + "bavaria": 1.51e-06, + "bbw": 1.51e-06, + "biggie": 1.51e-06, + "bigot": 1.51e-06, + "boa": 1.51e-06, + "branched": 1.51e-06, + "brazils": 5.01e-08, + "britannia": 1.51e-06, + "britt": 1.51e-06, + "bruise": 1.51e-06, + "bruising": 1.51e-06, + "bucharest": 1.51e-06, + "buffett": 1.51e-06, + "bullion": 1.51e-06, + "bumpy": 1.51e-06, + "bums": 1.51e-06, + "bureaucrats": 1.51e-06, + "burnham": 1.51e-06, + "byu": 1.51e-06, + "cahill": 1.51e-06, + "carp": 1.51e-06, + "castor": 1.51e-06, + "challengers": 5.37e-08, + "charting": 1.51e-06, + "cicero": 1.51e-06, + "circumference": 1.51e-06, + "classifications": 1.51e-06, + "cleopatra": 1.51e-06, + "cleverly": 1.51e-06, + "clocked": 1.51e-06, + "coasters": 1.51e-06, + "codex": 1.51e-06, + "collars": 1.51e-06, + "composure": 1.51e-06, + "computerized": 1.51e-06, + "concur": 1.51e-06, + "conte": 1.51e-06, + "conveying": 1.51e-06, + "cornered": 1.51e-06, + "cowan": 1.51e-06, + "craziest": 1.51e-06, + "crowe": 1.51e-06, + "davy": 1.51e-06, + "defying": 1.51e-06, + "delicacy": 1.51e-06, + "demolish": 1.51e-06, + "dempsey": 1.51e-06, + "deport": 1.51e-06, + "dictators": 1.15e-07, + "dictionaries": 1.51e-06, + "dilute": 1.51e-06, + "disabling": 1.51e-06, + "disillusioned": 1.51e-06, + "dispersion": 1.51e-06, + "doha": 1.51e-06, + "doomsday": 1.51e-06, + "draped": 1.51e-06, + "drinker": 1.51e-06, + "eels": 1.51e-06, + "emil": 1.51e-06, + "emphasised": 1.51e-06, + "entangled": 1.51e-06, + "enzo": 1.51e-06, + "exploratory": 1.51e-06, + "facet": 1.51e-06, + "fates": 9.12e-08, + "fei": 1.51e-06, + "fermented": 1.51e-06, + "ferries": 1.51e-06, + "finesse": 1.51e-06, + "fireball": 1.51e-06, + "firth": 1.51e-06, + "flannel": 1.51e-06, + "floss": 1.51e-06, + "foresee": 1.51e-06, + "frantically": 1.51e-06, + "frees": 5.13e-08, + "fringes": 1.51e-06, + "gaston": 1.51e-06, + "genoa": 1.51e-06, + "geothermal": 1.51e-06, + "gh": 1.51e-06, + "gist": 1.51e-06, + "github": 1.51e-06, + "grievous": 1.51e-06, + "gustav": 1.51e-06, + "handbags": 1.51e-06, + "handkerchief": 1.51e-06, + "hari": 1.51e-06, + "heaters": 1.51e-06, + "hebrews": 1.51e-06, + "hepburn": 1.51e-06, + "hogwarts": 1.51e-06, + "hookup": 1.51e-06, + "hopelessly": 1.51e-06, + "horticulture": 1.51e-06, + "howl": 1.51e-06, + "huddersfield": 1.51e-06, + "hydration": 1.51e-06, + "ibiza": 1.51e-06, + "improv": 1.51e-06, + "impunity": 1.51e-06, + "indexing": 1.51e-06, + "infertility": 1.51e-06, + "informational": 1.51e-06, + "inline": 1.51e-06, + "insolvency": 1.51e-06, + "intermediary": 1.51e-06, + "interrogated": 1.51e-06, + "ives": 1.51e-06, + "jody": 1.51e-06, + "jokingly": 1.51e-06, + "josie": 1.51e-06, + "juveniles": 1.51e-06, + "karim": 1.51e-06, + "kimi": 1.51e-06, + "kinks": 1.51e-06, + "klan": 1.51e-06, + "kristina": 1.51e-06, + "laughable": 1.51e-06, + "lennox": 1.51e-06, + "lng": 1.51e-06, + "locus": 1.51e-06, + "lucius": 1.51e-06, + "lund": 1.51e-06, + "lvl": 1.51e-06, + "makeshift": 1.51e-06, + "marquee": 1.51e-06, + "massey": 1.51e-06, + "masturbate": 1.51e-06, + "mathematically": 1.51e-06, + "matrices": 1.51e-06, + "mckinley": 1.51e-06, + "meade": 1.51e-06, + "melanoma": 1.51e-06, + "menacing": 1.51e-06, + "microbes": 1.51e-06, + "midterms": 1.51e-06, + "mobilize": 1.51e-06, + "monsanto": 1.51e-06, + "moors": 2.69e-08, + "morley": 1.51e-06, + "msu": 1.51e-06, + "nag": 1.51e-06, + "nativity": 1.51e-06, + "neglecting": 1.51e-06, + "nook": 1.51e-06, + "novo": 1.51e-06, + "nutritious": 1.51e-06, + "overdrive": 1.51e-06, + "padding": 1.51e-06, + "panasonic": 1.51e-06, + "pant": 1.51e-06, + "passover": 1.51e-06, + "peking": 1.51e-06, + "penitentiary": 1.51e-06, + "perilous": 1.51e-06, + "periodicals": 1.51e-06, + "pharmacies": 1.51e-06, + "picard": 1.51e-06, + "pikachu": 1.51e-06, + "plaques": 1.51e-06, + "plastered": 1.51e-06, + "playa": 1.51e-06, + "plucked": 1.51e-06, + "polytechnic": 1.51e-06, + "popularly": 1.51e-06, + "pornographic": 1.51e-06, + "posse": 1.51e-06, + "prepping": 1.51e-06, + "rankin": 1.51e-06, + "rebates": 1.51e-06, + "recognises": 1.51e-06, + "recognising": 1.51e-06, + "reconciled": 1.51e-06, + "refrigeration": 1.51e-06, + "refunded": 1.51e-06, + "rename": 1.51e-06, + "repulsive": 1.51e-06, + "respite": 1.51e-06, + "ret": 1.51e-06, + "revamped": 1.51e-06, + "revising": 1.51e-06, + "rhinos": 9.12e-08, + "rockin": 1.51e-06, + "rts": 1.62e-07, + "saber": 1.51e-06, + "sadistic": 1.51e-06, + "samba": 1.51e-06, + "scorers": 1.51e-06, + "sewn": 1.51e-06, + "shaggy": 1.51e-06, + "shelling": 1.51e-06, + "shrunk": 1.51e-06, + "sitter": 1.51e-06, + "sixers": 1.51e-06, + "slant": 1.51e-06, + "slashed": 1.51e-06, + "sleepless": 1.51e-06, + "slur": 1.51e-06, + "snowball": 1.51e-06, + "sobs": 1.51e-06, + "soles": 1.32e-08, + "soothe": 1.51e-06, + "souvenirs": 1.51e-06, + "spelt": 1.51e-06, + "stalling": 1.51e-06, + "stamping": 1.51e-06, + "steiner": 1.51e-06, + "strasbourg": 1.51e-06, + "streamline": 1.51e-06, + "suckers": 1.51e-06, + "sulphur": 1.51e-06, + "swears": 1.51e-06, + "tablespoons": 1.51e-06, + "tacky": 1.51e-06, + "tamara": 1.51e-06, + "tampering": 1.51e-06, + "tankers": 1.51e-06, + "telephones": 1.51e-06, + "terminus": 1.51e-06, + "tessa": 1.51e-06, + "testicles": 1.51e-06, + "texan": 1.51e-06, + "thaw": 1.51e-06, + "throughput": 1.51e-06, + "timelines": 1.51e-06, + "tolkien": 1.51e-06, + "tout": 1.51e-06, + "transnational": 1.51e-06, + "tripod": 1.51e-06, + "tulip": 1.51e-06, + "turnpike": 1.51e-06, + "ud": 2.14e-08, + "ulysses": 1.51e-06, + "unattended": 1.51e-06, + "unbeatable": 1.51e-06, + "undertaker": 1.51e-06, + "uniformed": 1.51e-06, + "unionists": 1.51e-06, + "uniteds": 1.51e-06, + "unloaded": 1.51e-06, + "ursula": 1.51e-06, + "usps": 1.51e-06, + "uttered": 1.51e-06, + "vulture": 1.51e-06, + "wares": 7.24e-08, + "waterway": 1.51e-06, + "whistleblower": 1.51e-06, + "wv": 1.51e-06, + "xanax": 1.51e-06, + "xs": 9.12e-07, + "yves": 1.51e-06, + "absentee": 1.48e-06, + "accolades": 1.48e-06, + "admirers": 1.48e-06, + "alden": 1.48e-06, + "aldo": 1.48e-06, + "alyssa": 1.48e-06, + "amin": 1.48e-06, + "anarchists": 1.48e-06, + "anecdotal": 1.48e-06, + "anemia": 1.48e-06, + "animosity": 1.48e-06, + "appoints": 1.48e-06, + "autoimmune": 1.48e-06, + "aws": 1.48e-06, + "bakers": 1.07e-06, + "bama": 1.48e-06, + "barons": 2.57e-07, + "battalions": 1.02e-07, + "beggar": 1.48e-06, + "bertrand": 1.48e-06, + "bismarck": 1.48e-06, + "bombarded": 1.48e-06, + "boulders": 5.62e-08, + "bounces": 1.48e-06, + "bouncy": 1.48e-06, + "buick": 1.48e-06, + "burbank": 1.48e-06, + "busts": 1.48e-06, + "calibrated": 1.48e-06, + "callahan": 1.48e-06, + "canteen": 1.48e-06, + "capacitor": 1.48e-06, + "captivating": 1.48e-06, + "carbohydrate": 1.48e-06, + "cartels": 1.15e-07, + "cavalier": 1.48e-06, + "centrist": 1.48e-06, + "cfa": 1.48e-06, + "chakra": 1.48e-06, + "chatted": 1.48e-06, + "chauffeur": 1.48e-06, + "circled": 1.48e-06, + "circulate": 1.48e-06, + "clergyman": 1.48e-06, + "climber": 1.48e-06, + "clinched": 1.48e-06, + "clutching": 1.48e-06, + "coliseum": 1.48e-06, + "combs": 1.48e-06, + "commandment": 1.48e-06, + "complimented": 1.48e-06, + "conceivable": 1.48e-06, + "concordia": 1.48e-06, + "condone": 1.48e-06, + "congested": 1.48e-06, + "connectors": 1.48e-06, + "conner": 1.48e-06, + "consecrated": 1.48e-06, + "contaminants": 1.48e-06, + "contiguous": 1.48e-06, + "conveys": 1.48e-06, + "cosmo": 1.48e-06, + "councilman": 1.48e-06, + "cranberry": 1.48e-06, + "criticizes": 1.48e-06, + "croft": 1.48e-06, + "custard": 1.48e-06, + "darby": 1.48e-06, + "deceiving": 1.48e-06, + "defaults": 1.48e-06, + "definitively": 1.48e-06, + "deflect": 1.48e-06, + "deliberations": 1.48e-06, + "denoted": 1.48e-06, + "departs": 1.48e-06, + "deregulation": 1.48e-06, + "desolate": 1.48e-06, + "devour": 1.48e-06, + "digger": 1.48e-06, + "disarmament": 1.48e-06, + "disgraced": 1.48e-06, + "dishonesty": 1.48e-06, + "divergence": 1.48e-06, + "dmitry": 1.48e-06, + "domesticated": 1.48e-06, + "dorian": 1.48e-06, + "doubly": 1.48e-06, + "doughnut": 1.48e-06, + "douglass": 1.12e-07, + "dubois": 1.48e-06, + "duluth": 1.48e-06, + "dwarfs": 1.48e-06, + "eastenders": 1.48e-06, + "ek": 1.48e-06, + "elgin": 1.48e-06, + "embody": 1.48e-06, + "enrolling": 1.48e-06, + "envision": 1.48e-06, + "equivalence": 1.48e-06, + "erika": 1.48e-06, + "ers": 7.24e-08, + "eruptions": 1.48e-06, + "esoteric": 1.48e-06, + "eurozone": 1.48e-06, + "euthanasia": 1.48e-06, + "fabian": 1.48e-06, + "faye": 1.48e-06, + "fd": 1.29e-07, + "felon": 1.48e-06, + "flammable": 1.48e-06, + "flanagan": 1.48e-06, + "footnote": 1.48e-06, + "fostered": 1.48e-06, + "fp": 1.48e-06, + "friggin": 1.48e-06, + "frontman": 1.48e-06, + "furthest": 1.48e-06, + "garnet": 1.48e-06, + "glanced": 1.48e-06, + "goku": 1.48e-06, + "gorman": 1.48e-06, + "grapefruit": 1.48e-06, + "grate": 1.48e-06, + "greyhound": 1.48e-06, + "grossed": 1.48e-06, + "guerrero": 1.48e-06, + "guido": 1.48e-06, + "gyms": 1.1e-07, + "hahn": 1.48e-06, + "hairdresser": 1.48e-06, + "hardness": 1.48e-06, + "harpers": 3.98e-07, + "haryana": 1.48e-06, + "helpers": 1.48e-06, + "hendricks": 1.48e-06, + "heros": 6.76e-07, + "hess": 1.48e-06, + "hh": 1.48e-06, + "hilly": 1.48e-06, + "hogs": 7.94e-08, + "hone": 1.48e-06, + "horne": 1.48e-06, + "hotspot": 1.48e-06, + "howie": 1.48e-06, + "humbly": 1.48e-06, + "huron": 1.48e-06, + "hw": 1.48e-06, + "hyatt": 1.48e-06, + "inciting": 1.48e-06, + "incomprehensible": 1.48e-06, + "incumbents": 1.48e-06, + "inertia": 1.48e-06, + "infestation": 1.48e-06, + "insurrection": 1.48e-06, + "intolerable": 1.48e-06, + "ironman": 1.48e-06, + "isla": 1.48e-06, + "jordanian": 1.48e-06, + "juno": 1.48e-06, + "kershaw": 1.48e-06, + "koh": 1.48e-06, + "lamont": 1.48e-06, + "larkin": 1.48e-06, + "lauded": 1.48e-06, + "laziness": 1.48e-06, + "leech": 1.48e-06, + "lei": 1.48e-06, + "libs": 1.48e-06, + "macquarie": 1.48e-06, + "madly": 1.48e-06, + "meetup": 1.48e-06, + "milano": 1.48e-06, + "minimise": 1.48e-06, + "miserably": 1.48e-06, + "moldova": 1.48e-06, + "mor": 1.48e-06, + "motivates": 1.48e-06, + "motorsport": 1.48e-06, + "mustered": 1.48e-06, + "mutilation": 1.48e-06, + "nemo": 1.48e-06, + "nerdy": 1.48e-06, + "nifty": 1.48e-06, + "nikita": 1.48e-06, + "orphaned": 1.48e-06, + "ova": 1.48e-06, + "paces": 5.01e-08, + "paine": 1.48e-06, + "palladium": 1.48e-06, + "parmesan": 1.48e-06, + "particulars": 1.48e-06, + "passer": 1.48e-06, + "pathogen": 1.48e-06, + "pci": 1.48e-06, + "pebbles": 1.48e-06, + "pelicans": 1.48e-06, + "pensioners": 1.48e-06, + "personalised": 1.48e-06, + "piazza": 1.48e-06, + "pickled": 1.48e-06, + "policymakers": 1.48e-06, + "pom": 1.48e-06, + "possessive": 1.48e-06, + "pranks": 1.48e-06, + "prefecture": 1.48e-06, + "pretentious": 1.48e-06, + "pritchard": 1.48e-06, + "promenade": 1.48e-06, + "pronoun": 1.48e-06, + "proximal": 1.48e-06, + "rapport": 1.48e-06, + "rapture": 1.48e-06, + "ration": 1.48e-06, + "ravaged": 1.48e-06, + "reconnect": 1.48e-06, + "rectify": 1.48e-06, + "reginald": 1.48e-06, + "rivalries": 1.48e-06, + "rudimentary": 1.48e-06, + "sabres": 1.48e-06, + "salle": 1.48e-06, + "sayings": 1.48e-06, + "scariest": 1.48e-06, + "schumer": 1.48e-06, + "screenwriter": 1.48e-06, + "seconded": 1.48e-06, + "seduced": 1.48e-06, + "seine": 1.48e-06, + "selector": 1.48e-06, + "shawl": 1.48e-06, + "shenzhen": 1.48e-06, + "shilling": 1.48e-06, + "shroud": 1.48e-06, + "shutters": 1.48e-06, + "sj": 1.48e-06, + "skim": 1.48e-06, + "slaps": 1.48e-06, + "slovak": 1.48e-06, + "sn": 1.48e-06, + "solicitation": 1.48e-06, + "sooooo": 1.48e-06, + "specifying": 1.48e-06, + "starboard": 1.48e-06, + "stardust": 1.48e-06, + "stereotypical": 1.48e-06, + "stewards": 6.03e-08, + "stupidest": 1.48e-06, + "superseded": 1.48e-06, + "surpassing": 1.48e-06, + "swirling": 1.48e-06, + "sy": 1.48e-06, + "tarzan": 1.48e-06, + "teas": 1.05e-07, + "telugu": 1.48e-06, + "timbers": 1.48e-06, + "tormented": 1.48e-06, + "traumatized": 1.48e-06, + "twinkle": 1.48e-06, + "tyne": 1.48e-06, + "uncharted": 1.48e-06, + "unforeseen": 1.48e-06, + "unsigned": 1.48e-06, + "unspoken": 1.48e-06, + "upholding": 1.48e-06, + "ux": 1.48e-06, + "valet": 1.48e-06, + "vehemently": 1.48e-06, + "vendetta": 1.48e-06, + "voss": 1.48e-06, + "weakly": 1.48e-06, + "wests": 5.13e-07, + "westchester": 1.48e-06, + "wiener": 1.48e-06, + "wildcard": 1.48e-06, + "wildfires": 1.48e-06, + "yorkers": 1e-07, + "abcs": 3.16e-07, + "accommodated": 1.45e-06, + "affordability": 1.45e-06, + "agatha": 1.45e-06, + "aladdin": 1.45e-06, + "alderman": 1.45e-06, + "alienation": 1.45e-06, + "altitudes": 1.45e-06, + "amor": 1.45e-06, + "amplify": 1.45e-06, + "anorexia": 1.45e-06, + "anothers": 7.08e-08, + "anthropologist": 1.45e-06, + "antidepressants": 1.45e-06, + "apologizes": 1.45e-06, + "astronomer": 1.45e-06, + "atl": 1.45e-06, + "attested": 1.45e-06, + "attrition": 1.45e-06, + "aud": 1.45e-06, + "aunty": 1.45e-06, + "autopilot": 1.45e-06, + "baggy": 1.45e-06, + "bailout": 1.45e-06, + "balfour": 1.45e-06, + "ballads": 1.45e-06, + "ballast": 1.45e-06, + "berman": 1.45e-06, + "bigfoot": 1.45e-06, + "biotech": 1.45e-06, + "blackjack": 1.45e-06, + "bloodstream": 1.45e-06, + "bluegrass": 1.45e-06, + "bordered": 1.45e-06, + "bottling": 1.45e-06, + "brasil": 1.45e-06, + "brigham": 1.45e-06, + "budgetary": 1.45e-06, + "bustling": 1.45e-06, + "camo": 1.45e-06, + "capitalized": 1.45e-06, + "carers": 1.45e-06, + "carte": 1.45e-06, + "cavendish": 1.45e-06, + "celine": 1.45e-06, + "cheerleading": 1.45e-06, + "chipping": 1.45e-06, + "cliche": 1.45e-06, + "clutches": 1.45e-06, + "cockroach": 1.45e-06, + "collaborator": 1.45e-06, + "colton": 1.45e-06, + "composites": 1.45e-06, + "consolidating": 1.45e-06, + "contends": 1.45e-06, + "contradicts": 1.45e-06, + "cortez": 1.45e-06, + "cpc": 1.45e-06, + "crossfit": 1.45e-06, + "cumbersome": 1.45e-06, + "curt": 1.45e-06, + "cyclic": 1.45e-06, + "cyclical": 1.45e-06, + "dade": 1.45e-06, + "deducted": 1.45e-06, + "deformation": 1.45e-06, + "descends": 1.45e-06, + "devotional": 1.45e-06, + "dicaprio": 1.45e-06, + "distinguishes": 1.45e-06, + "diversify": 1.45e-06, + "downloadable": 1.45e-06, + "dum": 1.45e-06, + "duplication": 1.45e-06, + "dynamo": 1.45e-06, + "eastman": 1.45e-06, + "ei": 1.45e-06, + "elixir": 1.45e-06, + "embarking": 1.45e-06, + "emile": 1.45e-06, + "emmett": 1.45e-06, + "endgame": 1.45e-06, + "enemys": 1.45e-06, + "enhancements": 1.45e-06, + "epiphany": 1.45e-06, + "escobar": 1.45e-06, + "evolves": 1.45e-06, + "eyeing": 1.45e-06, + "eyelids": 1.45e-06, + "eyeliner": 1.45e-06, + "fable": 1.45e-06, + "farah": 1.45e-06, + "fatality": 1.45e-06, + "favoring": 1.45e-06, + "fenced": 1.45e-06, + "ffa": 1.45e-06, + "firewood": 1.45e-06, + "foothills": 1.45e-06, + "foresight": 1.45e-06, + "forsaken": 1.45e-06, + "forsyth": 1.45e-06, + "fundamentalist": 1.45e-06, + "fw": 1.45e-06, + "gabby": 1.45e-06, + "gaddafi": 1.45e-06, + "gayle": 1.45e-06, + "geniuses": 1.45e-06, + "ghostbusters": 1.45e-06, + "greenfield": 1.45e-06, + "greensboro": 1.45e-06, + "groomed": 1.45e-06, + "hackney": 1.45e-06, + "hamstring": 1.45e-06, + "heidelberg": 1.45e-06, + "hl": 1.45e-06, + "hordes": 1.45e-06, + "horseshoe": 1.45e-06, + "ico": 1.45e-06, + "imran": 1.45e-06, + "incision": 1.45e-06, + "indistinguishable": 1.45e-06, + "infer": 1.45e-06, + "inpatient": 1.45e-06, + "inspecting": 1.45e-06, + "intensify": 1.45e-06, + "invitational": 1.45e-06, + "ithaca": 1.45e-06, + "ito": 1.45e-06, + "jarrett": 1.45e-06, + "jiang": 1.45e-06, + "kano": 1.45e-06, + "kennel": 1.45e-06, + "kern": 1.45e-06, + "khans": 3.98e-07, + "khmer": 1.45e-06, + "kl": 1.45e-06, + "knitted": 1.45e-06, + "lager": 1.45e-06, + "laird": 1.45e-06, + "letterman": 1.45e-06, + "lighted": 1.45e-06, + "loathing": 1.45e-06, + "lorde": 1.45e-06, + "loyalists": 1.45e-06, + "mahmoud": 1.45e-06, + "manhood": 1.45e-06, + "martyrdom": 1.45e-06, + "mcdermott": 1.45e-06, + "mcmillan": 1.45e-06, + "menopause": 1.45e-06, + "meryl": 1.45e-06, + "michelangelo": 1.45e-06, + "misconceptions": 1.45e-06, + "mobs": 1.12e-07, + "mol": 1.45e-06, + "mortem": 1.45e-06, + "motherboard": 1.45e-06, + "moyes": 1.45e-06, + "msg": 1.45e-06, + "mussolini": 1.45e-06, + "mutilated": 1.45e-06, + "napkin": 1.45e-06, + "navys": 1.45e-06, + "nelly": 1.45e-06, + "neuron": 1.45e-06, + "nev": 1.45e-06, + "niall": 1.45e-06, + "nigerians": 1.45e-06, + "nuances": 1.45e-06, + "nugget": 1.45e-06, + "ono": 1.45e-06, + "opus": 1.45e-06, + "orchards": 1.45e-06, + "otc": 1.45e-06, + "outlaws": 1.45e-06, + "ovaries": 1.45e-06, + "overtly": 1.45e-06, + "painless": 1.45e-06, + "paxton": 1.45e-06, + "pears": 1.45e-06, + "perpetually": 1.45e-06, + "pharmacists": 5.25e-08, + "photoshopped": 1.45e-06, + "pitted": 1.45e-06, + "pixar": 1.45e-06, + "pleads": 1.45e-06, + "poisons": 1.45e-06, + "politico": 1.45e-06, + "prenatal": 1.45e-06, + "probabilities": 1.45e-06, + "probate": 1.45e-06, + "procure": 1.45e-06, + "propel": 1.45e-06, + "propensity": 1.45e-06, + "pryor": 1.45e-06, + "punjabi": 1.45e-06, + "purchasers": 1.45e-06, + "pvt": 1.45e-06, + "qld": 1.45e-06, + "rattled": 1.45e-06, + "rbs": 8.71e-08, + "realises": 1.45e-06, + "receptions": 1.45e-06, + "remodeling": 1.45e-06, + "renters": 1.02e-07, + "resorting": 1.45e-06, + "retreats": 1.45e-06, + "rg": 1.45e-06, + "ringo": 1.45e-06, + "roadmap": 1.45e-06, + "roberta": 1.45e-06, + "rockford": 1.45e-06, + "rosary": 1.45e-06, + "rundown": 1.45e-06, + "ruptured": 1.45e-06, + "ruse": 1.45e-06, + "salvatore": 1.45e-06, + "sampson": 1.45e-06, + "sar": 1.45e-06, + "saudis": 1.23e-07, + "seniority": 1.45e-06, + "severance": 1.45e-06, + "sheath": 1.45e-06, + "shillings": 1.45e-06, + "shortcuts": 1.45e-06, + "shorthand": 1.45e-06, + "shortlisted": 1.45e-06, + "shreds": 1.45e-06, + "shrines": 5.25e-08, + "singularity": 1.45e-06, + "snowman": 1.45e-06, + "socialize": 1.45e-06, + "soundcloud": 1.45e-06, + "spains": 1.45e-06, + "sparta": 1.45e-06, + "spinoff": 1.45e-06, + "sportsman": 1.45e-06, + "springsteen": 1.45e-06, + "squarely": 1.45e-06, + "stalks": 1.45e-06, + "stepmother": 1.45e-06, + "storming": 1.45e-06, + "strippers": 1.45e-06, + "strut": 1.45e-06, + "succumbed": 1.45e-06, + "swagger": 1.45e-06, + "swirl": 1.45e-06, + "telecommunication": 1.45e-06, + "temptations": 1.45e-06, + "theorist": 1.45e-06, + "theta": 1.45e-06, + "thi": 1.45e-06, + "thong": 1.45e-06, + "thrills": 1.45e-06, + "thumping": 1.45e-06, + "timeframe": 1.45e-06, + "tk": 1.45e-06, + "tod": 1.45e-06, + "tot": 3.89e-08, + "transcribed": 1.45e-06, + "tropics": 1.45e-06, + "tsar": 1.45e-06, + "tycoon": 1.45e-06, + "unconditionally": 1.45e-06, + "uncontrollable": 1.45e-06, + "undeniably": 1.45e-06, + "unfolded": 1.45e-06, + "unorthodox": 1.45e-06, + "uproar": 1.45e-06, + "vertigo": 1.45e-06, + "vigilance": 1.45e-06, + "viscount": 1.45e-06, + "walkway": 1.45e-06, + "wd": 1.45e-06, + "westerners": 1.45e-06, + "whistler": 1.45e-06, + "windmill": 1.45e-06, + "workflow": 1.45e-06, + "worthington": 1.45e-06, + "wrapper": 1.45e-06, + "ymca": 1.45e-06, + "yogi": 1.45e-06, + "youtuber": 1.45e-06, + "zee": 1.45e-06, + "zoned": 1.45e-06, + "abba": 1.41e-06, + "abuja": 1.41e-06, + "acetate": 1.41e-06, + "affirming": 1.41e-06, + "airstrikes": 1.41e-06, + "aisles": 1.41e-06, + "allure": 1.41e-06, + "amps": 5.62e-08, + "anthrax": 1.41e-06, + "antisemitism": 1.41e-06, + "anwar": 1.41e-06, + "apprentices": 1.41e-06, + "aqueous": 1.41e-06, + "ariana": 1.41e-06, + "attainment": 1.41e-06, + "auctioneer": 1.41e-06, + "authorship": 1.41e-06, + "awoke": 1.41e-06, + "axial": 1.41e-06, + "barnard": 1.41e-06, + "barron": 1.41e-06, + "battleship": 1.41e-06, + "bayonet": 1.41e-06, + "bertha": 1.41e-06, + "bette": 1.41e-06, + "blanchard": 1.41e-06, + "bombshell": 1.41e-06, + "bowing": 1.41e-06, + "brewed": 1.41e-06, + "bridgewater": 1.41e-06, + "britons": 1.41e-06, + "burkina": 1.41e-06, + "burnout": 1.41e-06, + "buttocks": 1.41e-06, + "buyout": 1.41e-06, + "byte": 1.41e-06, + "cancerous": 1.41e-06, + "carat": 1.41e-06, + "carcinoma": 1.41e-06, + "carrick": 1.41e-06, + "caveat": 1.41e-06, + "caviar": 1.41e-06, + "ccc": 1.41e-06, + "chairperson": 1.41e-06, + "chong": 1.41e-06, + "chore": 1.41e-06, + "cid": 1.41e-06, + "circumvent": 1.41e-06, + "clique": 1.41e-06, + "coe": 1.41e-06, + "coles": 8.32e-07, + "conserved": 1.41e-06, + "contemplation": 1.41e-06, + "contrived": 1.41e-06, + "corolla": 1.41e-06, + "corrugated": 1.41e-06, + "coz": 1.41e-06, + "cranky": 1.41e-06, + "crept": 1.41e-06, + "crunching": 1.41e-06, + "crushes": 1.41e-06, + "csa": 1.41e-06, + "cults": 9.12e-08, + "curvy": 1.41e-06, + "deluded": 1.41e-06, + "deployments": 1.41e-06, + "depp": 1.41e-06, + "deteriorate": 1.41e-06, + "dior": 1.41e-06, + "disbanded": 1.41e-06, + "discredited": 1.41e-06, + "disorderly": 1.41e-06, + "distraught": 1.41e-06, + "distributes": 1.41e-06, + "dogg": 1.41e-06, + "dons": 5.13e-07, + "doughnuts": 1.41e-06, + "drizzle": 1.41e-06, + "eau": 1.41e-06, + "edging": 1.41e-06, + "elaborated": 1.41e-06, + "embankment": 1.41e-06, + "embassies": 1.41e-06, + "emergent": 1.41e-06, + "emilia": 1.41e-06, + "emilio": 1.41e-06, + "enchanting": 1.41e-06, + "entertainers": 1.41e-06, + "entice": 1.41e-06, + "esq": 1.41e-06, + "eun": 1.41e-06, + "exalted": 1.41e-06, + "exchequer": 1.41e-06, + "facebooks": 8.51e-08, + "fenton": 1.41e-06, + "filly": 1.41e-06, + "flanks": 1.41e-06, + "footy": 1.41e-06, + "formality": 1.41e-06, + "fortitude": 1.41e-06, + "fouls": 1.41e-06, + "fueling": 1.41e-06, + "gambler": 1.41e-06, + "gcse": 1.41e-06, + "gent": 1.41e-06, + "gents": 1.41e-06, + "geopolitical": 1.41e-06, + "glitches": 1.41e-06, + "goethe": 1.41e-06, + "goliath": 1.41e-06, + "governs": 1.41e-06, + "grandfathers": 6.61e-07, + "grievance": 1.41e-06, + "grunt": 1.41e-06, + "gsm": 1.41e-06, + "gusts": 1.41e-06, + "hailing": 1.41e-06, + "haines": 1.41e-06, + "halal": 1.41e-06, + "harmonious": 1.41e-06, + "hashtags": 1.41e-06, + "hast": 1.41e-06, + "hester": 1.41e-06, + "hijab": 1.41e-06, + "hitherto": 1.41e-06, + "hogg": 1.41e-06, + "hornet": 1.41e-06, + "humboldt": 1.41e-06, + "hyperbolic": 1.41e-06, + "impeached": 1.41e-06, + "impedance": 1.41e-06, + "incline": 1.41e-06, + "incubation": 1.41e-06, + "insignia": 1.41e-06, + "installments": 1.41e-06, + "intercontinental": 1.41e-06, + "interplay": 1.41e-06, + "interpol": 1.41e-06, + "isotope": 1.41e-06, + "israelites": 1.41e-06, + "jehovah": 1.41e-06, + "jigsaw": 1.41e-06, + "juniper": 1.41e-06, + "jus": 1.41e-06, + "keaton": 1.41e-06, + "kessler": 1.41e-06, + "kindred": 1.41e-06, + "labelling": 1.41e-06, + "lander": 1.41e-06, + "lapd": 1.41e-06, + "larsen": 1.41e-06, + "layouts": 1.41e-06, + "lev": 1.41e-06, + "lilies": 1.41e-06, + "lollipop": 1.41e-06, + "lon": 1.41e-06, + "machete": 1.41e-06, + "mallory": 1.41e-06, + "marshes": 1.41e-06, + "marshmallow": 1.41e-06, + "masse": 1.41e-06, + "matteo": 1.41e-06, + "mcleod": 1.41e-06, + "merchandising": 1.41e-06, + "microphones": 1.41e-06, + "mika": 1.41e-06, + "mink": 1.41e-06, + "mischievous": 1.41e-06, + "misunderstand": 1.41e-06, + "mobilized": 1.41e-06, + "molested": 1.41e-06, + "monies": 1.41e-06, + "monograph": 1.41e-06, + "montenegro": 1.41e-06, + "moo": 1.41e-06, + "morphological": 1.41e-06, + "movable": 1.41e-06, + "mucus": 1.41e-06, + "mulberry": 1.41e-06, + "munro": 1.41e-06, + "nameless": 1.41e-06, + "natalia": 1.41e-06, + "naturalist": 1.41e-06, + "necklaces": 1.41e-06, + "newsroom": 1.41e-06, + "nightlife": 1.41e-06, + "nyu": 1.41e-06, + "officiating": 1.41e-06, + "omnibus": 1.41e-06, + "oof": 1.41e-06, + "opec": 1.41e-06, + "opposites": 1.41e-06, + "orwell": 1.41e-06, + "outburst": 1.41e-06, + "overarching": 1.41e-06, + "overseen": 1.41e-06, + "overwhelm": 1.41e-06, + "pathologist": 1.41e-06, + "pcb": 1.41e-06, + "pcr": 1.41e-06, + "pct": 1.41e-06, + "peacekeeping": 1.41e-06, + "pegasus": 1.41e-06, + "peptides": 1.41e-06, + "petersen": 1.41e-06, + "pharmacology": 1.41e-06, + "pitfalls": 1.41e-06, + "pixie": 1.41e-06, + "ply": 1.41e-06, + "poaching": 1.41e-06, + "powders": 1.41e-06, + "ppm": 1.41e-06, + "preventable": 1.41e-06, + "primed": 1.41e-06, + "prog": 1.41e-06, + "proponent": 1.41e-06, + "protectors": 1.41e-06, + "provenance": 1.41e-06, + "provost": 1.41e-06, + "putt": 1.41e-06, + "quadruple": 1.41e-06, + "quaker": 1.41e-06, + "rachael": 1.41e-06, + "racking": 1.41e-06, + "rana": 1.41e-06, + "raptor": 1.41e-06, + "ratchet": 1.41e-06, + "ravine": 1.41e-06, + "raving": 1.41e-06, + "recreated": 1.41e-06, + "redress": 1.41e-06, + "regenerate": 1.41e-06, + "reigned": 1.41e-06, + "reincarnation": 1.41e-06, + "renewables": 1.41e-06, + "replays": 1.41e-06, + "retirees": 1.41e-06, + "rife": 1.41e-06, + "rollercoaster": 1.41e-06, + "romances": 1.41e-06, + "rotherham": 1.41e-06, + "ruben": 1.41e-06, + "runnin": 1.41e-06, + "samaritan": 1.41e-06, + "sax": 1.41e-06, + "saxophone": 1.41e-06, + "scarves": 1.41e-06, + "schuster": 1.41e-06, + "scorpio": 1.41e-06, + "selma": 1.41e-06, + "settler": 1.41e-06, + "sever": 1.41e-06, + "sharpen": 1.41e-06, + "shellfish": 1.41e-06, + "shortening": 1.41e-06, + "showering": 1.41e-06, + "shrapnel": 1.41e-06, + "shutout": 1.41e-06, + "sickle": 1.41e-06, + "singleton": 1.41e-06, + "skateboarding": 1.41e-06, + "skips": 1.41e-06, + "skit": 1.41e-06, + "slavic": 1.41e-06, + "snowboarding": 1.41e-06, + "snuff": 1.41e-06, + "solidly": 1.41e-06, + "sonoma": 1.41e-06, + "stairway": 1.41e-06, + "starry": 1.41e-06, + "stoic": 1.41e-06, + "supersonic": 1.41e-06, + "suspending": 1.41e-06, + "suzy": 1.41e-06, + "swamps": 1.41e-06, + "swaps": 1.41e-06, + "tablespoon": 1.41e-06, + "tapered": 1.41e-06, + "tardis": 1.41e-06, + "taser": 1.41e-06, + "technologically": 1.41e-06, + "temperance": 1.41e-06, + "terrence": 1.41e-06, + "testimonies": 1.41e-06, + "textured": 1.41e-06, + "thierry": 1.41e-06, + "thrash": 1.41e-06, + "thresholds": 1.41e-06, + "thwarted": 1.41e-06, + "thx": 1.41e-06, + "tombstone": 1.41e-06, + "torches": 1.41e-06, + "torpedoes": 1.41e-06, + "toto": 1.41e-06, + "transplants": 1.41e-06, + "tributaries": 1.41e-06, + "tributary": 1.41e-06, + "trumpets": 1.41e-06, + "turd": 1.41e-06, + "turrets": 1.41e-06, + "tuscany": 1.41e-06, + "tutors": 1.41e-06, + "tweaks": 1.41e-06, + "unchecked": 1.41e-06, + "unfolds": 1.41e-06, + "unhappiness": 1.41e-06, + "unifying": 1.41e-06, + "unimaginable": 1.41e-06, + "unites": 1.41e-06, + "unsecured": 1.41e-06, + "unsustainable": 1.41e-06, + "utilised": 1.41e-06, + "utopian": 1.41e-06, + "verlag": 1.41e-06, + "walcott": 1.41e-06, + "warship": 1.41e-06, + "weathered": 1.41e-06, + "wholeheartedly": 1.41e-06, + "whooping": 1.41e-06, + "widowed": 1.41e-06, + "willed": 1.41e-06, + "woolf": 1.41e-06, + "worsening": 1.41e-06, + "wounding": 1.41e-06, + "wwf": 1.41e-06, + "wwi": 1.41e-06, + "xinjiang": 1.41e-06, + "yao": 1.41e-06, + "zane": 1.41e-06, + "zenith": 1.41e-06, + "zimmer": 1.41e-06, + "zur": 1.41e-06, + "abbreviation": 1.38e-06, + "abd": 1.38e-06, + "abuser": 1.38e-06, + "accords": 1.38e-06, + "accrued": 1.38e-06, + "acm": 1.38e-06, + "actin": 1.38e-06, + "adhesion": 1.38e-06, + "adnan": 1.38e-06, + "allie": 1.38e-06, + "andes": 1.38e-06, + "andres": 1.62e-07, + "animate": 1.38e-06, + "appropriated": 1.38e-06, + "armenians": 1.38e-06, + "arming": 1.38e-06, + "artie": 1.38e-06, + "asymmetric": 1.38e-06, + "atrocious": 1.38e-06, + "autobiographical": 1.38e-06, + "avert": 1.38e-06, + "avian": 1.38e-06, + "backstory": 1.38e-06, + "barns": 1.38e-06, + "bayou": 1.38e-06, + "bern": 1.38e-06, + "blueprints": 1.38e-06, + "bodybuilding": 1.38e-06, + "bodyguards": 1.38e-06, + "branson": 1.38e-06, + "briefings": 1.38e-06, + "bugging": 1.38e-06, + "bullish": 1.38e-06, + "candies": 1.38e-06, + "cantor": 1.38e-06, + "carney": 1.38e-06, + "carrington": 1.38e-06, + "castillo": 1.38e-06, + "chairmen": 1.38e-06, + "chastity": 1.38e-06, + "chime": 1.38e-06, + "chromium": 1.38e-06, + "circumstantial": 1.38e-06, + "claimant": 1.38e-06, + "closeness": 1.38e-06, + "cnbc": 1.38e-06, + "coachella": 1.38e-06, + "collectible": 1.38e-06, + "commemorating": 1.38e-06, + "conceding": 1.38e-06, + "conductivity": 1.38e-06, + "contended": 1.38e-06, + "contextual": 1.38e-06, + "contradicted": 1.38e-06, + "corbin": 1.38e-06, + "cordon": 1.38e-06, + "coulter": 1.38e-06, + "cram": 1.38e-06, + "crawley": 1.38e-06, + "crazed": 1.38e-06, + "crossword": 1.38e-06, + "cuckoo": 1.38e-06, + "cuddly": 1.38e-06, + "dak": 1.38e-06, + "danube": 1.38e-06, + "dawkins": 1.38e-06, + "decaying": 1.38e-06, + "decipher": 1.38e-06, + "delve": 1.38e-06, + "depletion": 1.38e-06, + "discriminating": 1.38e-06, + "dispersal": 1.38e-06, + "displeasure": 1.38e-06, + "diss": 1.38e-06, + "doth": 1.38e-06, + "downgraded": 1.38e-06, + "dps": 5.37e-08, + "dsm": 1.38e-06, + "dumber": 1.38e-06, + "dunkirk": 1.38e-06, + "dwarves": 1.38e-06, + "effortless": 1.38e-06, + "ere": 2.95e-08, + "eyeshadow": 1.38e-06, + "faire": 1.38e-06, + "fave": 1.38e-06, + "fellowships": 1.38e-06, + "finisher": 1.38e-06, + "fluke": 1.38e-06, + "fondness": 1.38e-06, + "fsa": 1.38e-06, + "furnish": 1.38e-06, + "gauntlet": 1.38e-06, + "geologists": 1.38e-06, + "georg": 1.38e-06, + "gettysburg": 1.38e-06, + "ghanaian": 1.38e-06, + "ghostly": 1.38e-06, + "giuseppe": 1.38e-06, + "giveaways": 1.38e-06, + "gliding": 1.38e-06, + "googled": 1.38e-06, + "gopro": 1.38e-06, + "grady": 1.38e-06, + "grating": 1.38e-06, + "grilling": 1.38e-06, + "gripped": 1.38e-06, + "grouse": 1.38e-06, + "growl": 1.38e-06, + "habitual": 1.38e-06, + "hammock": 1.38e-06, + "hater": 1.38e-06, + "hazy": 1.38e-06, + "heisman": 1.38e-06, + "het": 1.38e-06, + "hewlett": 1.38e-06, + "himalayan": 1.38e-06, + "hollis": 1.38e-06, + "horticultural": 1.38e-06, + "hpv": 1.38e-06, + "hurling": 1.38e-06, + "hurried": 1.38e-06, + "hypocrites": 1.38e-06, + "ide": 1.55e-08, + "idealistic": 1.38e-06, + "impede": 1.38e-06, + "imperialist": 1.38e-06, + "induces": 1.38e-06, + "inflamed": 1.38e-06, + "inhumane": 1.38e-06, + "innocents": 1.38e-06, + "instantaneous": 1.38e-06, + "islamists": 1.38e-06, + "isps": 1.07e-07, + "italics": 1.38e-06, + "ivf": 1.38e-06, + "jed": 1.38e-06, + "jinx": 1.38e-06, + "jobless": 1.38e-06, + "jodie": 1.38e-06, + "joo": 1.38e-06, + "jurisprudence": 1.38e-06, + "justifiable": 1.38e-06, + "kei": 1.38e-06, + "kellogg": 1.38e-06, + "kepler": 1.38e-06, + "kims": 1.2e-07, + "kyrgyzstan": 1.38e-06, + "lark": 1.38e-06, + "lecturers": 1.38e-06, + "lecturing": 1.38e-06, + "linkage": 1.38e-06, + "lobes": 1.38e-06, + "louvre": 1.38e-06, + "lovingly": 1.38e-06, + "lucille": 1.38e-06, + "lyft": 1.38e-06, + "manifests": 1.38e-06, + "mardi": 1.38e-06, + "marvels": 7.41e-07, + "masonic": 1.38e-06, + "mathieu": 1.38e-06, + "medics": 1.38e-06, + "meng": 1.38e-06, + "ment": 1.38e-06, + "meps": 1.38e-06, + "merritt": 1.38e-06, + "messengers": 8.13e-08, + "mitigating": 1.38e-06, + "moderated": 1.38e-06, + "mohawk": 1.38e-06, + "monarchs": 2e-07, + "moores": 4.57e-07, + "mortars": 1.38e-06, + "multiples": 1.38e-06, + "murals": 1.38e-06, + "nada": 1.38e-06, + "nafta": 1.38e-06, + "nell": 1.38e-06, + "newfound": 1.38e-06, + "newsweek": 1.38e-06, + "niles": 1.38e-06, + "nineties": 1.38e-06, + "nosed": 1.38e-06, + "nukes": 1.38e-06, + "observational": 1.38e-06, + "olaf": 1.38e-06, + "oldham": 1.38e-06, + "oleg": 1.38e-06, + "ombudsman": 1.38e-06, + "ordinances": 1.38e-06, + "overtaken": 1.38e-06, + "pancreas": 1.38e-06, + "pandas": 1.15e-07, + "parlour": 1.38e-06, + "pasha": 1.38e-06, + "peoria": 1.38e-06, + "periodical": 1.38e-06, + "phew": 1.38e-06, + "pickering": 1.38e-06, + "pickups": 1.38e-06, + "pinched": 1.38e-06, + "plating": 1.38e-06, + "pont": 1.38e-06, + "postings": 1.38e-06, + "postmaster": 1.38e-06, + "potts": 1.38e-06, + "powerfully": 1.38e-06, + "prentice": 1.38e-06, + "primate": 1.38e-06, + "proverb": 1.38e-06, + "puns": 1.38e-06, + "quarterbacks": 7.08e-08, + "quarterfinals": 1.38e-06, + "quests": 5.62e-08, + "raisins": 1.38e-06, + "ranting": 1.38e-06, + "ratification": 1.38e-06, + "recited": 1.38e-06, + "reclamation": 1.38e-06, + "reece": 1.38e-06, + "refineries": 1.38e-06, + "refute": 1.38e-06, + "resettlement": 1.38e-06, + "reverted": 1.38e-06, + "rewriting": 1.38e-06, + "ric": 1.38e-06, + "saratoga": 1.38e-06, + "sculpted": 1.38e-06, + "sects": 5.37e-08, + "sedentary": 1.38e-06, + "shaq": 1.38e-06, + "shivering": 1.38e-06, + "shocker": 1.38e-06, + "shoulda": 1.38e-06, + "showroom": 1.38e-06, + "sightseeing": 1.38e-06, + "situational": 1.38e-06, + "skaters": 1.38e-06, + "slicing": 1.38e-06, + "soggy": 1.38e-06, + "someplace": 1.38e-06, + "sorcerer": 1.38e-06, + "sorcery": 1.38e-06, + "spades": 1.38e-06, + "specialising": 1.38e-06, + "speciality": 1.38e-06, + "spleen": 1.38e-06, + "starlight": 1.38e-06, + "steadfast": 1.38e-06, + "stimulates": 1.38e-06, + "stomping": 1.38e-06, + "stoop": 1.38e-06, + "stroking": 1.38e-06, + "stuffs": 1.12e-07, + "stylistic": 1.38e-06, + "supergirl": 1.38e-06, + "superpowers": 1.38e-06, + "superstitious": 1.38e-06, + "syrians": 1.38e-06, + "tay": 1.38e-06, + "tentatively": 1.38e-06, + "thinning": 1.38e-06, + "thrice": 1.38e-06, + "thu": 1.38e-06, + "touchy": 1.38e-06, + "trampoline": 1.38e-06, + "tranquil": 1.38e-06, + "transformative": 1.38e-06, + "trespassing": 1.38e-06, + "undergraduates": 1.38e-06, + "underwriting": 1.38e-06, + "unplanned": 1.38e-06, + "unsuspecting": 1.38e-06, + "unwelcome": 1.38e-06, + "unwell": 1.38e-06, + "vacate": 1.38e-06, + "venting": 1.38e-06, + "ville": 1.38e-06, + "waldorf": 1.38e-06, + "warring": 1.38e-06, + "wetland": 1.38e-06, + "whit": 1.38e-06, + "whitehead": 1.38e-06, + "yemeni": 1.38e-06, + "yoko": 1.38e-06, + "yung": 1.38e-06, + "abode": 1.35e-06, + "abomination": 1.35e-06, + "acer": 1.35e-06, + "acs": 6.17e-08, + "acutely": 1.35e-06, + "adherents": 1.35e-06, + "adhering": 1.35e-06, + "affiliations": 1.35e-06, + "alexei": 1.35e-06, + "allotment": 1.35e-06, + "amplifiers": 1.35e-06, + "angelic": 1.35e-06, + "antisocial": 1.35e-06, + "anxieties": 1.35e-06, + "approvals": 1.35e-06, + "aries": 1.05e-08, + "associating": 1.35e-06, + "astral": 1.35e-06, + "astray": 1.35e-06, + "audited": 1.35e-06, + "baffling": 1.35e-06, + "bal": 1.35e-06, + "banded": 1.35e-06, + "bao": 1.35e-06, + "bathed": 1.35e-06, + "betraying": 1.35e-06, + "bhai": 1.35e-06, + "bharat": 1.35e-06, + "blacklist": 1.35e-06, + "blockers": 1.35e-06, + "blunder": 1.35e-06, + "booing": 1.35e-06, + "bowlers": 7.76e-08, + "brownish": 1.35e-06, + "buddhists": 1.35e-06, + "bummed": 1.35e-06, + "burdened": 1.35e-06, + "cfo": 1.35e-06, + "chaser": 1.35e-06, + "checkpoints": 1.35e-06, + "chet": 1.35e-06, + "chipotle": 1.35e-06, + "choreographer": 1.35e-06, + "clams": 1.35e-06, + "coa": 1.35e-06, + "coates": 1.35e-06, + "colchester": 1.35e-06, + "commotion": 1.35e-06, + "communicates": 1.35e-06, + "completeness": 1.35e-06, + "concierge": 1.35e-06, + "congressmen": 1.35e-06, + "cummins": 1.35e-06, + "cynicism": 1.35e-06, + "darkened": 1.35e-06, + "dazed": 1.35e-06, + "debatable": 1.35e-06, + "denominator": 1.35e-06, + "devolved": 1.35e-06, + "dieting": 1.35e-06, + "diligently": 1.35e-06, + "dinah": 1.35e-06, + "diners": 8.51e-08, + "doppler": 1.35e-06, + "dowry": 1.35e-06, + "drinkers": 1.35e-06, + "duality": 1.35e-06, + "duplex": 1.35e-06, + "ect": 1.35e-06, + "egan": 1.35e-06, + "endearing": 1.35e-06, + "epilogue": 1.35e-06, + "etching": 1.35e-06, + "exemplified": 1.35e-06, + "ext": 1.35e-06, + "extermination": 1.35e-06, + "eyre": 1.35e-06, + "fancied": 1.35e-06, + "fatima": 1.35e-06, + "feldman": 1.35e-06, + "firefly": 1.35e-06, + "fleetwood": 1.35e-06, + "flotation": 1.35e-06, + "focussed": 1.35e-06, + "foraging": 1.35e-06, + "forbids": 1.35e-06, + "foreword": 1.35e-06, + "foxs": 1.35e-06, + "fsu": 1.35e-06, + "fy": 1.35e-06, + "gamblers": 1.32e-07, + "garages": 1.35e-06, + "goldie": 1.35e-06, + "golds": 5.25e-07, + "grandchild": 1.35e-06, + "grids": 7.94e-08, + "grossing": 1.35e-06, + "habitable": 1.35e-06, + "hails": 1.35e-06, + "hallways": 1.35e-06, + "harem": 1.35e-06, + "hawkeye": 1.35e-06, + "hegemony": 1.35e-06, + "hilda": 1.35e-06, + "himalayas": 1.35e-06, + "hippo": 1.35e-06, + "hof": 1.35e-06, + "hypnotic": 1.35e-06, + "imagines": 1.35e-06, + "inaction": 1.35e-06, + "inconclusive": 1.35e-06, + "incubator": 1.35e-06, + "inept": 1.35e-06, + "inexplicable": 1.35e-06, + "innovate": 1.35e-06, + "inseparable": 1.35e-06, + "institutionalized": 1.35e-06, + "instructing": 1.35e-06, + "intravenous": 1.35e-06, + "invests": 1.35e-06, + "juries": 1.35e-06, + "juror": 1.35e-06, + "kilo": 1.35e-06, + "kinship": 1.35e-06, + "kv": 1.35e-06, + "lactose": 1.35e-06, + "lat": 1.35e-06, + "lenient": 1.35e-06, + "liang": 1.35e-06, + "lids": 1.35e-06, + "likened": 1.35e-06, + "lockout": 1.35e-06, + "lube": 1.35e-06, + "luton": 1.35e-06, + "macon": 1.35e-06, + "mak": 1.35e-06, + "marcelo": 1.35e-06, + "masking": 1.35e-06, + "mastercard": 1.35e-06, + "mathematicians": 1.35e-06, + "mathew": 1.35e-06, + "maximizing": 1.35e-06, + "mccabe": 1.35e-06, + "mediate": 1.35e-06, + "methodologies": 1.35e-06, + "mfa": 1.35e-06, + "micah": 1.35e-06, + "microorganisms": 1.35e-06, + "millimeter": 1.35e-06, + "minaj": 1.35e-06, + "minh": 1.35e-06, + "moans": 1.35e-06, + "modal": 1.35e-06, + "moderates": 1.35e-06, + "modernism": 1.35e-06, + "moira": 1.35e-06, + "monasteries": 1.35e-06, + "monique": 5.25e-08, + "napier": 1.35e-06, + "narrows": 1.35e-06, + "nawaz": 1.35e-06, + "nbcs": 1.35e-06, + "negotiator": 1.35e-06, + "niggas": 9.55e-08, + "nomadic": 1.35e-06, + "npc": 1.35e-06, + "observance": 1.35e-06, + "ont": 1.26e-07, + "overloaded": 1.35e-06, + "parentheses": 1.35e-06, + "penance": 1.35e-06, + "peroxide": 1.35e-06, + "peugeot": 1.35e-06, + "pigments": 1.35e-06, + "pinning": 1.35e-06, + "pisa": 1.35e-06, + "planks": 1.35e-06, + "pluck": 1.35e-06, + "porte": 1.35e-06, + "postdoctoral": 1.35e-06, + "potus": 1.35e-06, + "preposterous": 1.35e-06, + "pressuring": 1.35e-06, + "preventative": 1.35e-06, + "prometheus": 1.35e-06, + "prophecies": 1.35e-06, + "proverbial": 1.35e-06, + "puffy": 1.35e-06, + "puzzling": 1.35e-06, + "qpr": 1.35e-06, + "quail": 1.35e-06, + "quirk": 1.35e-06, + "rabid": 1.35e-06, + "rafa": 1.35e-06, + "rasmussen": 1.35e-06, + "redneck": 1.35e-06, + "reformer": 1.35e-06, + "reformers": 1.35e-06, + "registrations": 1.35e-06, + "rehearsing": 1.35e-06, + "reiterate": 1.35e-06, + "resolves": 1.35e-06, + "resonant": 1.35e-06, + "resultant": 1.35e-06, + "retinal": 1.35e-06, + "rgb": 1.35e-06, + "rhodesia": 1.35e-06, + "rothschild": 1.35e-06, + "rsa": 1.35e-06, + "rw": 1.35e-06, + "scammers": 1.35e-06, + "schema": 1.35e-06, + "schizophrenic": 1.35e-06, + "schwarzenegger": 1.35e-06, + "scorn": 1.35e-06, + "screwdriver": 1.35e-06, + "shay": 1.35e-06, + "shetland": 1.35e-06, + "shippers": 1.35e-06, + "sho": 1.35e-06, + "sighed": 1.35e-06, + "sizzling": 1.35e-06, + "skillful": 1.35e-06, + "skywalker": 1.35e-06, + "slowest": 1.35e-06, + "sonata": 1.35e-06, + "soulful": 1.35e-06, + "southend": 1.35e-06, + "stampede": 1.35e-06, + "standoff": 1.35e-06, + "stately": 1.35e-06, + "steered": 1.35e-06, + "straightened": 1.35e-06, + "sugary": 1.35e-06, + "suitably": 1.35e-06, + "supernova": 1.35e-06, + "surrendering": 1.35e-06, + "synonym": 1.35e-06, + "tanned": 1.35e-06, + "tantrum": 1.35e-06, + "tapering": 1.35e-06, + "tectonic": 1.35e-06, + "tele": 1.35e-06, + "templar": 1.35e-06, + "tmz": 1.35e-06, + "tna": 1.35e-06, + "toxicology": 1.35e-06, + "transfusion": 1.35e-06, + "treachery": 1.35e-06, + "tung": 1.35e-06, + "tweaking": 1.35e-06, + "unbreakable": 1.35e-06, + "undermines": 1.35e-06, + "unmatched": 1.35e-06, + "upheaval": 1.35e-06, + "uploads": 1.35e-06, + "urbana": 1.35e-06, + "vaccinations": 1.35e-06, + "valentino": 1.35e-06, + "valuations": 1.35e-06, + "veneer": 1.35e-06, + "verona": 1.35e-06, + "viewership": 1.35e-06, + "viscosity": 1.35e-06, + "vogel": 1.35e-06, + "vouch": 1.35e-06, + "wafer": 1.35e-06, + "wai": 1.35e-06, + "wcw": 1.35e-06, + "wiz": 1.35e-06, + "worsened": 1.35e-06, + "xo": 1.35e-06, + "zoos": 3.39e-07, + "adaptable": 1.32e-06, + "adhered": 1.32e-06, + "adjutant": 1.32e-06, + "advancements": 1.32e-06, + "aggravating": 1.32e-06, + "alia": 1.32e-06, + "alta": 1.32e-06, + "altercation": 1.32e-06, + "amplification": 1.32e-06, + "amuse": 1.32e-06, + "ancients": 1.32e-06, + "appleton": 1.32e-06, + "aps": 2.34e-07, + "aptly": 1.32e-06, + "archaeologist": 1.32e-06, + "armada": 1.32e-06, + "arousal": 1.32e-06, + "arsene": 1.32e-06, + "artistry": 1.32e-06, + "asheville": 1.32e-06, + "assuring": 1.32e-06, + "atrium": 1.32e-06, + "atv": 1.32e-06, + "atypical": 1.32e-06, + "authorizing": 1.32e-06, + "autographs": 1.32e-06, + "autos": 5.25e-08, + "backups": 1.32e-06, + "bah": 1.32e-06, + "bakersfield": 1.32e-06, + "bangladeshi": 1.32e-06, + "bannon": 1.32e-06, + "barrie": 1.32e-06, + "bartholomew": 1.32e-06, + "bavarian": 1.32e-06, + "beacons": 6.03e-08, + "bearers": 1.32e-06, + "becca": 1.32e-06, + "bernadette": 1.32e-06, + "bingham": 1.32e-06, + "bouncer": 1.32e-06, + "bracing": 1.32e-06, + "breezy": 1.32e-06, + "brunt": 1.32e-06, + "bucky": 1.32e-06, + "burgeoning": 1.32e-06, + "cadence": 1.32e-06, + "californian": 1.32e-06, + "camerons": 1.51e-07, + "cancels": 1.32e-06, + "candice": 1.32e-06, + "capitalization": 1.32e-06, + "cashmere": 1.32e-06, + "chaps": 2.82e-08, + "cheeseburger": 1.32e-06, + "churning": 1.32e-06, + "cipher": 1.32e-06, + "clarinet": 1.32e-06, + "clashed": 1.32e-06, + "comforted": 1.32e-06, + "condensation": 1.32e-06, + "condos": 1.32e-06, + "confesses": 1.32e-06, + "confluence": 1.32e-06, + "consented": 1.32e-06, + "constipation": 1.32e-06, + "consultative": 1.32e-06, + "contesting": 1.32e-06, + "contraband": 1.32e-06, + "cookery": 1.32e-06, + "creme": 1.32e-06, + "criminally": 1.32e-06, + "crocodiles": 6.03e-08, + "crutches": 1.32e-06, + "custodian": 1.32e-06, + "cyst": 1.32e-06, + "dah": 1.32e-06, + "decisively": 1.32e-06, + "degeneration": 1.32e-06, + "delinquent": 1.32e-06, + "democratically": 1.32e-06, + "deodorant": 1.32e-06, + "detonated": 1.32e-06, + "disappointments": 1.32e-06, + "disapprove": 1.32e-06, + "dobson": 1.32e-06, + "dodged": 1.32e-06, + "dormitory": 1.32e-06, + "dredging": 1.32e-06, + "duran": 1.32e-06, + "emigrated": 1.32e-06, + "enticing": 1.32e-06, + "eradication": 1.32e-06, + "erasmus": 1.32e-06, + "esl": 1.32e-06, + "ethnically": 1.32e-06, + "evangelicals": 1.32e-06, + "evoked": 1.32e-06, + "excesses": 1.32e-06, + "exhilarating": 1.32e-06, + "eyelashes": 1.32e-06, + "fainted": 1.32e-06, + "feline": 1.32e-06, + "femininity": 1.32e-06, + "ferns": 1.32e-06, + "fickle": 1.32e-06, + "figurative": 1.32e-06, + "flared": 1.32e-06, + "footwork": 1.32e-06, + "forage": 1.32e-06, + "fraught": 1.32e-06, + "freshness": 1.32e-06, + "fronted": 1.32e-06, + "galilee": 1.32e-06, + "gallup": 1.32e-06, + "gauges": 1.32e-06, + "glastonbury": 1.32e-06, + "gonzales": 1.32e-06, + "grandmas": 4.9e-07, + "grapple": 1.32e-06, + "grated": 1.32e-06, + "greets": 1.32e-06, + "groan": 1.32e-06, + "grub": 1.32e-06, + "gunna": 1.32e-06, + "gunned": 1.32e-06, + "handouts": 1.32e-06, + "hangout": 1.32e-06, + "hartman": 1.32e-06, + "havin": 1.32e-06, + "headers": 1.32e-06, + "henson": 1.32e-06, + "hickory": 1.32e-06, + "hives": 3.47e-08, + "hiya": 1.32e-06, + "hoist": 1.32e-06, + "hubble": 1.32e-06, + "huff": 1.32e-06, + "hunk": 1.32e-06, + "idc": 1.32e-06, + "identifier": 1.32e-06, + "incite": 1.32e-06, + "increments": 1.32e-06, + "industrialized": 1.32e-06, + "inferred": 1.32e-06, + "informally": 1.32e-06, + "inhalation": 1.32e-06, + "inhibits": 1.32e-06, + "insides": 1.32e-06, + "interruptions": 1.32e-06, + "intoxication": 1.32e-06, + "isotopes": 1.32e-06, + "jagged": 1.32e-06, + "joachim": 1.32e-06, + "josiah": 1.32e-06, + "jv": 1.32e-06, + "kant": 1.32e-06, + "katharine": 1.32e-06, + "kavanaugh": 1.32e-06, + "labours": 4.9e-07, + "laces": 1.32e-06, + "lamented": 1.32e-06, + "lasagna": 1.32e-06, + "leaflet": 1.32e-06, + "leds": 1e-07, + "lucian": 1.32e-06, + "marissa": 1.32e-06, + "markus": 1.32e-06, + "marlene": 1.32e-06, + "massa": 1.32e-06, + "massacred": 1.32e-06, + "massacres": 1.32e-06, + "maturing": 1.32e-06, + "mcintosh": 1.32e-06, + "mckinney": 1.32e-06, + "mediocrity": 1.32e-06, + "mediums": 8.51e-08, + "midwestern": 1.32e-06, + "minding": 1.32e-06, + "moat": 1.32e-06, + "molds": 1.32e-06, + "mori": 1.32e-06, + "morty": 1.32e-06, + "motorized": 1.32e-06, + "mouthpiece": 1.32e-06, + "muck": 1.32e-06, + "murky": 1.32e-06, + "nab": 1.32e-06, + "neonatal": 1.32e-06, + "neuronal": 1.32e-06, + "neutralize": 1.32e-06, + "nicholls": 1.32e-06, + "nickelodeon": 1.32e-06, + "omen": 1.32e-06, + "ora": 1.32e-06, + "orally": 1.32e-06, + "orchids": 1.32e-06, + "overgrown": 1.32e-06, + "overlooks": 1.32e-06, + "overpriced": 1.32e-06, + "overruled": 1.32e-06, + "painkillers": 1.32e-06, + "pallet": 1.32e-06, + "parramatta": 1.32e-06, + "partitions": 1.32e-06, + "patriarchy": 1.32e-06, + "patsy": 1.32e-06, + "paz": 1.32e-06, + "pdp": 1.32e-06, + "peaking": 1.32e-06, + "pedagogy": 1.32e-06, + "perm": 1.32e-06, + "philanthropist": 1.32e-06, + "piedmont": 1.32e-06, + "pinto": 1.32e-06, + "poc": 1.32e-06, + "pontiac": 1.32e-06, + "prc": 1.32e-06, + "predictor": 1.32e-06, + "premiers": 3.16e-07, + "priscilla": 1.32e-06, + "professed": 1.32e-06, + "qing": 1.32e-06, + "rants": 1.32e-06, + "rashid": 1.32e-06, + "readership": 1.32e-06, + "reaffirmed": 1.32e-06, + "reciting": 1.32e-06, + "reels": 1.32e-06, + "rei": 1.32e-06, + "relinquish": 1.32e-06, + "resists": 1.32e-06, + "resolute": 1.32e-06, + "restricts": 1.32e-06, + "retainer": 1.32e-06, + "rethinking": 1.32e-06, + "runways": 1.32e-06, + "salient": 1.32e-06, + "scents": 1.32e-06, + "schematic": 1.32e-06, + "scoreless": 1.32e-06, + "seawater": 1.32e-06, + "secs": 2.4e-07, + "secures": 1.32e-06, + "seedlings": 1.32e-06, + "sentient": 1.32e-06, + "separatist": 1.32e-06, + "sera": 1.32e-06, + "serb": 1.32e-06, + "serbs": 1.32e-06, + "shropshire": 1.32e-06, + "sikhs": 1.32e-06, + "skyscrapers": 1.32e-06, + "slurs": 1.32e-06, + "slutty": 1.32e-06, + "smurf": 1.32e-06, + "snippet": 1.32e-06, + "spielberg": 1.32e-06, + "spokeswoman": 1.32e-06, + "spotless": 1.32e-06, + "sprang": 1.32e-06, + "ssh": 1.32e-06, + "stabilizing": 1.32e-06, + "stinky": 1.32e-06, + "stitching": 1.32e-06, + "stockpile": 1.32e-06, + "strenuous": 1.32e-06, + "strikingly": 1.32e-06, + "strives": 1.32e-06, + "stumps": 1.32e-06, + "subordinates": 1.32e-06, + "summarizes": 1.32e-06, + "surcharge": 1.32e-06, + "tarot": 1.32e-06, + "tcp": 1.32e-06, + "theologians": 1.32e-06, + "throbbing": 1.32e-06, + "tilting": 1.32e-06, + "trailed": 1.32e-06, + "treasured": 1.32e-06, + "tungsten": 1.32e-06, + "tw": 1.32e-06, + "twigs": 1.32e-06, + "txt": 1.32e-06, + "ucl": 1.32e-06, + "uhm": 1.32e-06, + "umpires": 9.12e-08, + "unharmed": 1.32e-06, + "unilaterally": 1.32e-06, + "unintentional": 1.32e-06, + "unspeakable": 1.32e-06, + "untimely": 1.32e-06, + "ust": 1.32e-06, + "uva": 1.32e-06, + "vfl": 1.32e-06, + "vida": 1.32e-06, + "vodafone": 1.32e-06, + "vous": 1.32e-06, + "warrington": 1.32e-06, + "wedges": 1.32e-06, + "wendys": 9.77e-08, + "whomever": 1.32e-06, + "wondrous": 1.32e-06, + "woodrow": 1.32e-06, + "woof": 1.32e-06, + "workable": 1.32e-06, + "wrinkle": 1.32e-06, + "yak": 1.32e-06, + "zhu": 1.32e-06, + "abdel": 1.29e-06, + "abstracts": 1.29e-06, + "abundantly": 1.29e-06, + "acknowledgment": 1.29e-06, + "adoration": 1.29e-06, + "affectionately": 1.29e-06, + "affliction": 1.29e-06, + "aguero": 1.29e-06, + "alluded": 1.29e-06, + "alters": 1.29e-06, + "amounting": 1.29e-06, + "ams": 1.29e-07, + "ariz": 1.29e-06, + "armageddon": 1.29e-06, + "arya": 1.29e-06, + "ashe": 1.29e-06, + "attaches": 1.29e-06, + "awww": 1.29e-06, + "backfire": 1.29e-06, + "bathurst": 1.29e-06, + "belinda": 1.29e-06, + "bethel": 1.29e-06, + "bonn": 1.29e-06, + "bookshop": 1.29e-06, + "bora": 1.29e-06, + "botox": 1.29e-06, + "bowers": 1.29e-06, + "bree": 1.29e-06, + "bridesmaids": 1.29e-06, + "brooding": 1.29e-06, + "burberry": 1.29e-06, + "canes": 8.51e-08, + "caregiver": 1.29e-06, + "carters": 3.8e-07, + "celebs": 1.29e-06, + "championed": 1.29e-06, + "chernobyl": 1.29e-06, + "chesterfield": 1.29e-06, + "clapped": 1.29e-06, + "clerics": 6.46e-08, + "cochrane": 1.29e-06, + "cockroaches": 1.29e-06, + "coerced": 1.29e-06, + "collectibles": 1.29e-06, + "conspirators": 1.29e-06, + "conspired": 1.29e-06, + "conspiring": 1.29e-06, + "contours": 1.29e-06, + "contraceptive": 1.29e-06, + "conversational": 1.29e-06, + "corrosive": 1.29e-06, + "counterpoint": 1.29e-06, + "courting": 1.29e-06, + "cowardice": 1.29e-06, + "crusher": 1.29e-06, + "cuddling": 1.29e-06, + "cyclops": 1.29e-06, + "dahl": 1.29e-06, + "daw": 1.29e-06, + "defied": 1.29e-06, + "depictions": 1.29e-06, + "derailed": 1.29e-06, + "dill": 1.29e-06, + "dimitri": 1.29e-06, + "dio": 1.29e-06, + "discontinue": 1.29e-06, + "diseased": 1.29e-06, + "disgruntled": 1.29e-06, + "dispense": 1.29e-06, + "disqualification": 1.29e-06, + "dizziness": 1.29e-06, + "ducts": 1.29e-06, + "dusted": 1.29e-06, + "dv": 1.29e-06, + "econ": 1.29e-06, + "emi": 1.29e-06, + "enacting": 1.29e-06, + "enigmatic": 1.29e-06, + "ennis": 1.29e-06, + "envisaged": 1.29e-06, + "epl": 1.29e-06, + "esquire": 1.29e-06, + "ethically": 1.29e-06, + "exhale": 1.29e-06, + "fanning": 1.29e-06, + "farley": 1.29e-06, + "fergus": 1.29e-06, + "firemen": 1.29e-06, + "fission": 1.29e-06, + "fives": 1.23e-07, + "fleas": 1.29e-06, + "flurry": 1.29e-06, + "folio": 1.29e-06, + "fosters": 6.17e-07, + "franc": 1.29e-06, + "frugal": 1.29e-06, + "fugitives": 1.29e-06, + "gainesville": 1.29e-06, + "galore": 1.29e-06, + "genomic": 1.29e-06, + "gestapo": 1.29e-06, + "gk": 1.29e-06, + "glimmer": 1.29e-06, + "goon": 1.29e-06, + "gq": 1.29e-06, + "graces": 4.17e-07, + "grandkids": 1.29e-06, + "groovy": 1.29e-06, + "gully": 1.29e-06, + "gundam": 1.29e-06, + "gurney": 1.29e-06, + "handball": 1.29e-06, + "harmonies": 1.29e-06, + "hectare": 1.29e-06, + "hereford": 1.29e-06, + "hickey": 1.29e-06, + "hijack": 1.29e-06, + "hikers": 1.29e-06, + "hologram": 1.29e-06, + "homicides": 1.29e-06, + "horatio": 1.29e-06, + "humankind": 1.29e-06, + "hydroelectric": 1.29e-06, + "immunology": 1.29e-06, + "indulging": 1.29e-06, + "ingested": 1.29e-06, + "inhibited": 1.29e-06, + "intensifies": 1.29e-06, + "interacted": 1.29e-06, + "intruders": 1.29e-06, + "ipads": 8.51e-08, + "isbn": 1.29e-06, + "ita": 1.29e-06, + "iterations": 1.29e-06, + "izzy": 1.29e-06, + "judgements": 1.29e-06, + "karan": 1.29e-06, + "kayla": 1.29e-06, + "kiln": 1.29e-06, + "kp": 1.29e-06, + "landowner": 1.29e-06, + "latvian": 1.29e-06, + "leveraged": 1.29e-06, + "levers": 1.91e-08, + "lilac": 1.29e-06, + "limelight": 1.29e-06, + "lister": 1.29e-06, + "loathe": 1.29e-06, + "lobbied": 1.29e-06, + "logistic": 1.29e-06, + "lok": 1.29e-06, + "loopholes": 1.29e-06, + "macaroni": 1.29e-06, + "maclean": 1.29e-06, + "manganese": 1.29e-06, + "mantis": 1.29e-06, + "marr": 1.29e-06, + "mattresses": 1.29e-06, + "mayan": 1.29e-06, + "merrick": 1.29e-06, + "midsummer": 1.29e-06, + "mig": 1.29e-06, + "mikes": 4.07e-07, + "milligrams": 1.29e-06, + "mimics": 1.29e-06, + "minsk": 1.29e-06, + "misunderstandings": 1.29e-06, + "momentous": 1.29e-06, + "mora": 1.29e-06, + "mou": 1.29e-06, + "mules": 1.29e-06, + "nanoparticles": 1.29e-06, + "nasser": 1.29e-06, + "nightclubs": 1.29e-06, + "nightfall": 1.29e-06, + "nikolai": 1.29e-06, + "notary": 1.29e-06, + "observable": 1.29e-06, + "occupant": 1.29e-06, + "omissions": 1.29e-06, + "organiser": 1.29e-06, + "ott": 1.29e-06, + "outfield": 1.29e-06, + "oy": 1.29e-06, + "paddington": 1.29e-06, + "paddock": 1.29e-06, + "padre": 1.29e-06, + "pang": 1.29e-06, + "pardoned": 1.29e-06, + "parliaments": 6.46e-07, + "participatory": 1.29e-06, + "partisans": 1.29e-06, + "pavel": 1.29e-06, + "perils": 1.29e-06, + "permissions": 1.29e-06, + "pfizer": 1.29e-06, + "pia": 1.29e-06, + "plugging": 1.29e-06, + "pneumatic": 1.29e-06, + "pointy": 1.29e-06, + "polyester": 1.29e-06, + "polynomial": 1.29e-06, + "porridge": 1.29e-06, + "protester": 1.29e-06, + "pug": 1.29e-06, + "pyongyang": 1.29e-06, + "quill": 1.29e-06, + "reassured": 1.29e-06, + "refurbishment": 1.29e-06, + "renown": 1.29e-06, + "rescheduled": 1.29e-06, + "revel": 1.29e-06, + "reworked": 1.29e-06, + "rocco": 1.29e-06, + "rochelle": 1.29e-06, + "rollin": 1.29e-06, + "roundtable": 1.29e-06, + "rower": 1.29e-06, + "rut": 1.29e-06, + "salaam": 1.29e-06, + "sanjay": 1.29e-06, + "scapegoat": 1.29e-06, + "schooled": 1.29e-06, + "screeching": 1.29e-06, + "secretion": 1.29e-06, + "shambles": 1.29e-06, + "shipwreck": 1.29e-06, + "shirtless": 1.29e-06, + "shrewd": 1.29e-06, + "shudder": 1.29e-06, + "shunned": 1.29e-06, + "sia": 1.29e-06, + "sicilian": 1.29e-06, + "slalom": 1.29e-06, + "smuggle": 1.29e-06, + "snowflakes": 1.29e-06, + "solder": 1.29e-06, + "sous": 1.29e-06, + "spanned": 1.29e-06, + "sparring": 1.29e-06, + "spectacles": 1.29e-06, + "spire": 1.29e-06, + "spout": 1.29e-06, + "sprout": 1.29e-06, + "stench": 1.29e-06, + "stings": 1.23e-07, + "stochastic": 1.29e-06, + "stratton": 1.29e-06, + "subsistence": 1.29e-06, + "subterranean": 1.29e-06, + "sully": 1.29e-06, + "superhuman": 1.29e-06, + "synchronization": 1.29e-06, + "tajikistan": 1.29e-06, + "tellin": 1.29e-06, + "tenacity": 1.29e-06, + "thurston": 1.29e-06, + "tolerable": 1.29e-06, + "topper": 1.29e-06, + "tre": 1.29e-06, + "trespass": 1.29e-06, + "tuxedo": 1.29e-06, + "umbrellas": 1.29e-06, + "understated": 1.29e-06, + "undeveloped": 1.29e-06, + "univ": 1.29e-06, + "unknowingly": 1.29e-06, + "unplugged": 1.29e-06, + "untouchable": 1.29e-06, + "unwarranted": 1.29e-06, + "unwillingness": 1.29e-06, + "vases": 1.29e-06, + "vetting": 1.29e-06, + "vg": 1.29e-06, + "vibrator": 1.29e-06, + "wailing": 1.29e-06, + "warhol": 1.29e-06, + "warwickshire": 1.29e-06, + "whisk": 1.29e-06, + "wishful": 1.29e-06, + "wrestled": 1.29e-06, + "wynn": 1.29e-06, + "yoda": 1.29e-06, + "yoruba": 1.29e-06, + "abolishing": 1.26e-06, + "accountancy": 1.26e-06, + "acoustics": 1.26e-06, + "actuality": 1.26e-06, + "addictions": 1.26e-06, + "aden": 1.26e-06, + "aeronautics": 1.26e-06, + "alam": 1.26e-06, + "alf": 1.26e-06, + "alibi": 1.26e-06, + "anand": 1.26e-06, + "anfield": 1.26e-06, + "anointed": 1.26e-06, + "apis": 9.55e-08, + "argentinian": 1.26e-06, + "arias": 1e-07, + "arkham": 1.26e-06, + "arturo": 1.26e-06, + "astoria": 1.26e-06, + "astute": 1.26e-06, + "attainable": 1.26e-06, + "audiobook": 1.26e-06, + "aztec": 1.26e-06, + "babcock": 1.26e-06, + "bac": 1.26e-06, + "baja": 1.26e-06, + "ballerina": 1.26e-06, + "bashed": 1.26e-06, + "batters": 1.55e-07, + "bce": 1.26e-06, + "bei": 1.26e-06, + "bennet": 1.26e-06, + "bewildered": 1.26e-06, + "bien": 1.26e-06, + "binoculars": 1.26e-06, + "blackstone": 1.26e-06, + "bonkers": 1.26e-06, + "bpd": 1.26e-06, + "brazen": 1.26e-06, + "burlesque": 1.26e-06, + "burrow": 1.26e-06, + "calculates": 1.26e-06, + "calder": 1.26e-06, + "callers": 1.23e-07, + "calvert": 1.26e-06, + "campfire": 1.26e-06, + "cashed": 1.26e-06, + "caster": 1.26e-06, + "catalysts": 1.26e-06, + "catered": 1.26e-06, + "causation": 1.26e-06, + "centerpiece": 1.26e-06, + "chameleon": 1.26e-06, + "checkers": 2.4e-08, + "cheques": 1.26e-06, + "clancy": 1.26e-06, + "clasp": 1.26e-06, + "clit": 1.26e-06, + "clooney": 1.26e-06, + "cnns": 1.26e-06, + "compulsion": 1.26e-06, + "concealing": 1.26e-06, + "condescending": 1.26e-06, + "condominium": 1.26e-06, + "confucius": 1.26e-06, + "conical": 1.26e-06, + "conjure": 1.26e-06, + "constitutionally": 1.26e-06, + "convincingly": 1.26e-06, + "copious": 1.26e-06, + "cordial": 1.26e-06, + "coy": 1.26e-06, + "craftsmanship": 1.26e-06, + "craziness": 1.26e-06, + "creatively": 1.26e-06, + "creditor": 1.26e-06, + "crores": 1.26e-06, + "crypt": 1.26e-06, + "custodial": 1.26e-06, + "deactivated": 1.26e-06, + "deans": 1.15e-06, + "decatur": 1.26e-06, + "decreed": 1.26e-06, + "deems": 1.26e-06, + "delegated": 1.26e-06, + "derelict": 1.26e-06, + "detects": 1.26e-06, + "dignitaries": 1.26e-06, + "dismisses": 1.26e-06, + "dispel": 1.26e-06, + "dissident": 1.26e-06, + "ditches": 1.26e-06, + "django": 1.26e-06, + "donetsk": 1.26e-06, + "dork": 1.26e-06, + "dory": 1.26e-06, + "doves": 1.07e-07, + "dropbox": 1.26e-06, + "droplets": 1.26e-06, + "dusting": 1.26e-06, + "edict": 1.26e-06, + "edmond": 1.26e-06, + "egos": 1.41e-07, + "egregious": 1.26e-06, + "egypts": 1.26e-06, + "elasticity": 1.26e-06, + "elicit": 1.26e-06, + "eo": 1.26e-06, + "epoxy": 1.26e-06, + "estonian": 1.26e-06, + "etienne": 1.26e-06, + "eton": 1.26e-06, + "evangelist": 1.26e-06, + "explorations": 1.26e-06, + "extraterrestrial": 1.26e-06, + "exxon": 1.26e-06, + "eyeball": 1.26e-06, + "faso": 1.26e-06, + "fiend": 1.26e-06, + "fledgling": 1.26e-06, + "flicker": 1.26e-06, + "flimsy": 1.26e-06, + "fob": 1.26e-06, + "footer": 1.26e-06, + "forza": 1.26e-06, + "gambit": 1.26e-06, + "giroud": 1.26e-06, + "giuliani": 1.26e-06, + "gleaming": 1.26e-06, + "glock": 1.26e-06, + "grille": 1.26e-06, + "gullible": 1.26e-06, + "gust": 1.26e-06, + "gypsies": 1.26e-06, + "hae": 1.26e-06, + "happenings": 1.26e-06, + "haw": 1.26e-06, + "hawke": 1.26e-06, + "hearth": 1.26e-06, + "heathen": 1.26e-06, + "hemorrhage": 1.26e-06, + "hereafter": 1.26e-06, + "hijacking": 1.26e-06, + "hinting": 1.26e-06, + "hoarding": 1.26e-06, + "homers": 3.98e-07, + "hoods": 2.57e-07, + "horoscope": 1.26e-06, + "hou": 1.26e-06, + "humanoid": 1.26e-06, + "hurst": 1.26e-06, + "hyung": 1.26e-06, + "idealism": 1.26e-06, + "illegals": 1.26e-06, + "impeach": 1.26e-06, + "improvisation": 1.26e-06, + "influencers": 1.26e-06, + "intergovernmental": 1.26e-06, + "interspersed": 1.26e-06, + "invoking": 1.26e-06, + "irc": 1.26e-06, + "irina": 1.26e-06, + "ironing": 1.26e-06, + "isi": 1.26e-06, + "itt": 1.26e-06, + "jacobson": 1.26e-06, + "jagger": 1.26e-06, + "jaipur": 1.26e-06, + "jazeera": 1.26e-06, + "jeffery": 1.26e-06, + "jeopardize": 1.26e-06, + "jerky": 1.26e-06, + "jig": 1.26e-06, + "jodi": 1.26e-06, + "juliette": 1.26e-06, + "junctions": 1.26e-06, + "jw": 1.26e-06, + "kathmandu": 1.26e-06, + "kearney": 1.26e-06, + "khz": 1.26e-06, + "kieran": 1.26e-06, + "lakeside": 1.26e-06, + "landon": 1.26e-06, + "landry": 1.26e-06, + "lawfully": 1.26e-06, + "lexicon": 1.26e-06, + "licks": 1.26e-06, + "lifetimes": 1.82e-07, + "littered": 1.26e-06, + "livery": 1.26e-06, + "livingstone": 1.26e-06, + "loader": 1.26e-06, + "lobbyist": 1.26e-06, + "loosing": 1.26e-06, + "lucknow": 1.26e-06, + "lurk": 1.26e-06, + "macintosh": 1.26e-06, + "magicians": 2.45e-07, + "marguerite": 1.26e-06, + "marius": 1.26e-06, + "maximise": 1.26e-06, + "mcintyre": 1.26e-06, + "mcpherson": 1.26e-06, + "mech": 1.26e-06, + "medallion": 1.26e-06, + "medusa": 1.26e-06, + "merseyside": 1.26e-06, + "metaphorical": 1.26e-06, + "mindy": 1.26e-06, + "mismatch": 1.26e-06, + "mlm": 1.26e-06, + "monastic": 1.26e-06, + "moneys": 4.79e-07, + "monopolies": 1.26e-06, + "mooney": 1.26e-06, + "mormons": 1.26e-06, + "mot": 1.26e-06, + "mow": 1.26e-06, + "mower": 1.26e-06, + "mozzarella": 1.26e-06, + "multilateral": 1.26e-06, + "munster": 1.26e-06, + "mutated": 1.26e-06, + "naacp": 1.26e-06, + "namesake": 1.26e-06, + "nazareth": 1.26e-06, + "nazism": 1.26e-06, + "nellie": 1.26e-06, + "nia": 1.26e-06, + "nominally": 1.26e-06, + "nord": 1.26e-06, + "normative": 1.26e-06, + "nostrils": 1.26e-06, + "num": 1.26e-06, + "nurtured": 1.26e-06, + "objectivity": 1.26e-06, + "oblige": 1.26e-06, + "ogre": 1.26e-06, + "oiled": 1.26e-06, + "okc": 1.26e-06, + "overheating": 1.26e-06, + "overreacting": 1.26e-06, + "overthrown": 1.26e-06, + "palermo": 1.26e-06, + "palliative": 1.26e-06, + "pao": 1.26e-06, + "parable": 1.26e-06, + "pastime": 1.26e-06, + "patchwork": 1.26e-06, + "patrice": 1.26e-06, + "paulie": 1.26e-06, + "payton": 1.26e-06, + "pedophilia": 1.26e-06, + "peed": 2.57e-08, + "peeps": 1.26e-06, + "pell": 1.26e-06, + "pellet": 1.26e-06, + "pendleton": 1.26e-06, + "peshawar": 1.26e-06, + "pesky": 1.26e-06, + "phobia": 1.26e-06, + "pinball": 1.26e-06, + "planter": 1.26e-06, + "plat": 1.26e-06, + "plenary": 1.26e-06, + "plunder": 1.26e-06, + "poseidon": 1.26e-06, + "postman": 1.26e-06, + "ppg": 1.26e-06, + "prays": 1.26e-06, + "privatisation": 1.26e-06, + "pseudonym": 1.26e-06, + "pullman": 1.26e-06, + "purgatory": 1.26e-06, + "raps": 6.92e-08, + "rationality": 1.26e-06, + "rearing": 1.26e-06, + "rebuke": 1.26e-06, + "rebuttal": 1.26e-06, + "refrigerated": 1.26e-06, + "reliever": 1.26e-06, + "repo": 1.26e-06, + "restarted": 1.26e-06, + "retaliate": 1.26e-06, + "riffs": 1.26e-06, + "riyadh": 1.26e-06, + "rockers": 1.26e-06, + "roo": 1.26e-06, + "rook": 1.26e-06, + "rouse": 1.26e-06, + "sabha": 1.26e-06, + "sampler": 1.26e-06, + "sarajevo": 1.26e-06, + "scaffolding": 1.26e-06, + "scant": 1.26e-06, + "schoolgirl": 1.26e-06, + "seamlessly": 1.26e-06, + "seater": 1.26e-06, + "sedimentary": 1.26e-06, + "semblance": 1.26e-06, + "sensei": 1.26e-06, + "sensibilities": 1.26e-06, + "sheik": 1.26e-06, + "shockingly": 1.26e-06, + "shrewsbury": 1.26e-06, + "sidelined": 1.26e-06, + "signaled": 1.26e-06, + "sine": 1.26e-06, + "skunk": 1.26e-06, + "sloth": 1.26e-06, + "slowdown": 1.26e-06, + "smugglers": 1.74e-07, + "snapshots": 1.26e-06, + "snitch": 1.26e-06, + "snowing": 1.26e-06, + "snug": 1.26e-06, + "solstice": 1.26e-06, + "songwriters": 9.55e-08, + "soups": 1.26e-06, + "sparsely": 1.26e-06, + "spindle": 1.26e-06, + "spoilt": 1.26e-06, + "spoof": 1.26e-06, + "sporty": 1.26e-06, + "spp": 1.26e-06, + "staffer": 1.26e-06, + "sterilization": 1.26e-06, + "stockholders": 1.26e-06, + "stuttering": 1.26e-06, + "subdivided": 1.26e-06, + "subtract": 1.26e-06, + "supermodel": 1.26e-06, + "susceptibility": 1.26e-06, + "sweats": 1.26e-06, + "swedens": 1.26e-06, + "syd": 1.26e-06, + "syphilis": 1.26e-06, + "tabletop": 1.26e-06, + "tactile": 1.26e-06, + "tangle": 1.26e-06, + "ther": 1.26e-06, + "thermodynamics": 1.26e-06, + "thermostat": 1.26e-06, + "thrives": 1.26e-06, + "tiki": 1.26e-06, + "tingling": 1.26e-06, + "tonga": 1.26e-06, + "topeka": 1.26e-06, + "tort": 1.26e-06, + "touchscreen": 1.26e-06, + "tra": 1.26e-06, + "trackers": 1.26e-06, + "transcend": 1.26e-06, + "trope": 1.26e-06, + "tufts": 1.26e-06, + "tumours": 1.26e-06, + "undercut": 1.26e-06, + "underlined": 1.26e-06, + "unfriendly": 1.26e-06, + "universes": 3.89e-07, + "unlicensed": 1.26e-06, + "unproductive": 1.26e-06, + "valuables": 1.26e-06, + "vial": 1.26e-06, + "vick": 1.26e-06, + "vickers": 1.26e-06, + "violinist": 1.26e-06, + "vultures": 1.26e-06, + "warlord": 1.26e-06, + "whence": 1.26e-06, + "whimsical": 1.26e-06, + "wrenching": 1.26e-06, + "yusuf": 1.26e-06, + "zionism": 1.26e-06, + "accordion": 1.23e-06, + "addis": 1.23e-06, + "aeronautical": 1.23e-06, + "ahl": 1.23e-06, + "alimony": 1.23e-06, + "allegheny": 1.23e-06, + "allens": 1.26e-07, + "aloha": 1.23e-06, + "alves": 1.23e-06, + "amtrak": 1.23e-06, + "angelica": 1.23e-06, + "anthropological": 1.23e-06, + "anxiously": 1.23e-06, + "apprehension": 1.23e-06, + "arden": 1.23e-06, + "ares": 1.23e-06, + "articulation": 1.23e-06, + "asiatic": 1.23e-06, + "assailant": 1.23e-06, + "atc": 1.23e-06, + "atletico": 1.23e-06, + "atonement": 1.23e-06, + "auf": 1.23e-06, + "auspicious": 1.23e-06, + "avenger": 1.23e-06, + "bafta": 1.23e-06, + "barricade": 1.23e-06, + "baseless": 1.23e-06, + "beater": 1.23e-06, + "benefactor": 1.23e-06, + "benji": 1.23e-06, + "bhutan": 1.23e-06, + "biographer": 1.23e-06, + "blackness": 1.23e-06, + "bollocks": 1.23e-06, + "booed": 1.23e-06, + "borneo": 1.23e-06, + "boyhood": 1.23e-06, + "bridgeport": 1.23e-06, + "briefcase": 1.23e-06, + "bronson": 1.23e-06, + "brutus": 1.23e-06, + "bugged": 1.23e-06, + "bunkers": 5.37e-08, + "butte": 1.23e-06, + "camaro": 1.23e-06, + "cambridgeshire": 1.23e-06, + "campsite": 1.23e-06, + "cancellations": 1.23e-06, + "canister": 1.23e-06, + "canons": 1.15e-07, + "cate": 1.23e-06, + "caters": 1.23e-06, + "charlies": 1.32e-07, + "chronically": 1.23e-06, + "chuckles": 1.23e-06, + "cloths": 1.23e-06, + "clustered": 1.23e-06, + "cmc": 1.23e-06, + "coherence": 1.23e-06, + "complainant": 1.23e-06, + "complemented": 1.23e-06, + "compounding": 1.23e-06, + "conforming": 1.23e-06, + "connotations": 1.23e-06, + "consonant": 1.23e-06, + "correlations": 1.23e-06, + "cpl": 1.23e-06, + "crazier": 1.23e-06, + "cricketers": 1.23e-06, + "crisps": 1.23e-06, + "criticising": 1.23e-06, + "crockett": 1.23e-06, + "crowning": 1.23e-06, + "crucifixion": 1.23e-06, + "csgo": 1.23e-06, + "cursor": 1.23e-06, + "cx": 1.23e-06, + "deduct": 1.23e-06, + "delegations": 1.23e-06, + "diaphragm": 1.23e-06, + "dichotomy": 1.23e-06, + "diminutive": 1.23e-06, + "dina": 1.23e-06, + "dispensary": 1.23e-06, + "dispensing": 1.23e-06, + "disregarded": 1.23e-06, + "dissidents": 1.23e-06, + "doubtless": 1.23e-06, + "dreamers": 6.31e-08, + "dunlop": 1.23e-06, + "dwindling": 1.23e-06, + "elisa": 1.23e-06, + "elsie": 1.23e-06, + "embellished": 1.23e-06, + "emp": 1.23e-06, + "emphatic": 1.23e-06, + "enfield": 1.23e-06, + "enlightening": 1.23e-06, + "enoch": 1.23e-06, + "enrolment": 1.23e-06, + "etf": 1.23e-06, + "exclamation": 1.23e-06, + "executioner": 1.23e-06, + "exempted": 1.23e-06, + "exerted": 1.23e-06, + "exiles": 1.23e-06, + "expressway": 1.23e-06, + "fairer": 1.23e-06, + "fairest": 1.23e-06, + "filament": 1.23e-06, + "fk": 1.23e-06, + "flemish": 1.23e-06, + "foyer": 1.23e-06, + "fra": 1.23e-06, + "fresco": 1.23e-06, + "frigate": 1.23e-06, + "fuselage": 1.23e-06, + "gait": 1.23e-06, + "genitalia": 1.23e-06, + "ger": 1.23e-06, + "gillette": 1.23e-06, + "gilt": 1.23e-06, + "glider": 1.23e-06, + "goers": 1.23e-06, + "granville": 1.23e-06, + "gravely": 1.23e-06, + "grime": 1.23e-06, + "guerrillas": 1.23e-06, + "hanley": 1.23e-06, + "harman": 1.23e-06, + "heron": 1.23e-06, + "heyday": 1.23e-06, + "highlanders": 1.23e-06, + "hillarys": 7.94e-08, + "hospitalization": 1.23e-06, + "illogical": 1.23e-06, + "illuminati": 1.23e-06, + "ima": 6.61e-07, + "imma": 3.24e-07, + "impart": 1.23e-06, + "incapacitated": 1.23e-06, + "incoherent": 1.23e-06, + "indulgent": 1.23e-06, + "inert": 1.23e-06, + "inflicting": 1.23e-06, + "initiates": 1.23e-06, + "interlude": 1.23e-06, + "internationals": 4.68e-07, + "interpreters": 1.23e-06, + "interrupts": 1.23e-06, + "invoices": 1.23e-06, + "irradiation": 1.23e-06, + "irritable": 1.23e-06, + "jace": 1.23e-06, + "jain": 1.23e-06, + "jammu": 1.23e-06, + "jl": 1.23e-06, + "jm": 1.23e-06, + "johanna": 1.23e-06, + "johnnie": 1.23e-06, + "joss": 1.23e-06, + "kendra": 1.23e-06, + "kermit": 1.23e-06, + "kwh": 1.23e-06, + "laminated": 1.23e-06, + "leaderboard": 1.23e-06, + "leung": 1.23e-06, + "leviathan": 1.23e-06, + "ligaments": 1.23e-06, + "lis": 3.8e-07, + "lj": 1.23e-06, + "lonesome": 1.23e-06, + "lps": 1.74e-07, + "lug": 1.23e-06, + "lukewarm": 1.23e-06, + "lumbar": 1.23e-06, + "lumen": 1.23e-06, + "luv": 1.23e-06, + "luxuries": 1.23e-06, + "lyman": 1.23e-06, + "lyn": 1.23e-06, + "maison": 1.23e-06, + "maneuvering": 1.23e-06, + "marathons": 1.23e-06, + "mariano": 1.23e-06, + "markup": 1.23e-06, + "marred": 1.23e-06, + "melrose": 1.23e-06, + "midwives": 1.23e-06, + "miniseries": 1.23e-06, + "mismanagement": 1.23e-06, + "mitochondria": 1.23e-06, + "mixtures": 1.23e-06, + "moffat": 1.23e-06, + "mongolian": 1.23e-06, + "monmouth": 1.23e-06, + "motley": 1.23e-06, + "mouthed": 1.23e-06, + "mowing": 1.23e-06, + "msp": 1.23e-06, + "multiculturalism": 1.23e-06, + "musics": 2.51e-07, + "mussels": 1.23e-06, + "nbsp": 1.23e-06, + "netball": 1.23e-06, + "nieces": 2e-07, + "nit": 1.23e-06, + "nottinghamshire": 1.23e-06, + "nuance": 1.23e-06, + "obstruct": 1.23e-06, + "oftentimes": 1.23e-06, + "orthopedic": 1.23e-06, + "osborn": 1.23e-06, + "osha": 1.23e-06, + "outages": 1.23e-06, + "outcast": 1.23e-06, + "outings": 1.23e-06, + "overcrowded": 1.23e-06, + "overriding": 1.23e-06, + "ozil": 1.23e-06, + "pai": 1.23e-06, + "pane": 1.23e-06, + "penultimate": 1.23e-06, + "peppermint": 1.23e-06, + "percentile": 1.23e-06, + "persuading": 1.23e-06, + "pharrell": 1.23e-06, + "piety": 1.23e-06, + "pinot": 1.23e-06, + "placenta": 1.23e-06, + "planters": 1.23e-06, + "playgrounds": 1.23e-06, + "playin": 1.23e-06, + "pleasurable": 1.23e-06, + "plough": 1.23e-06, + "pogba": 1.23e-06, + "potentials": 1.23e-06, + "ppv": 1.23e-06, + "prefect": 1.23e-06, + "prevails": 1.23e-06, + "pri": 1.23e-06, + "propagate": 1.23e-06, + "qr": 1.23e-06, + "quot": 1.23e-06, + "redefine": 1.23e-06, + "reeling": 1.23e-06, + "reinstate": 1.23e-06, + "remington": 1.23e-06, + "remit": 1.23e-06, + "remixes": 1.23e-06, + "respondent": 1.23e-06, + "resumption": 1.23e-06, + "retailing": 1.23e-06, + "retrograde": 1.23e-06, + "reunification": 1.23e-06, + "reused": 1.23e-06, + "revere": 1.23e-06, + "riggs": 1.23e-06, + "robo": 1.23e-06, + "romantically": 1.23e-06, + "rosario": 1.23e-06, + "rout": 1.23e-06, + "saab": 1.23e-06, + "salmonella": 1.23e-06, + "sargent": 1.23e-06, + "savoy": 1.23e-06, + "scarecrow": 1.23e-06, + "sceptical": 1.23e-06, + "scrubbing": 1.23e-06, + "seq": 1.23e-06, + "servings": 1.23e-06, + "shiv": 1.23e-06, + "shrinks": 1.23e-06, + "siam": 1.23e-06, + "simons": 1.02e-06, + "smeared": 1.23e-06, + "softening": 1.23e-06, + "soybean": 1.23e-06, + "splashing": 1.23e-06, + "standardization": 1.23e-06, + "stardom": 1.23e-06, + "steamy": 1.23e-06, + "stomachs": 6.31e-08, + "stopper": 1.23e-06, + "strolling": 1.23e-06, + "subtlety": 1.23e-06, + "swells": 1.23e-06, + "swindon": 1.23e-06, + "symptomatic": 1.23e-06, + "tenets": 1.23e-06, + "tennant": 1.23e-06, + "tfw": 1.23e-06, + "thunderbolt": 1.23e-06, + "tiered": 1.23e-06, + "toggle": 1.23e-06, + "tonal": 1.23e-06, + "torrance": 1.23e-06, + "totem": 1.23e-06, + "tourney": 1.23e-06, + "tran": 1.23e-06, + "transitioned": 1.23e-06, + "transmitters": 1.23e-06, + "tripled": 1.23e-06, + "uconn": 1.23e-06, + "ulcers": 1.23e-06, + "ultrasonic": 1.23e-06, + "unicorns": 1.23e-06, + "unlawfully": 1.23e-06, + "unveils": 1.23e-06, + "unwind": 1.23e-06, + "unwise": 1.23e-06, + "valentina": 1.23e-06, + "vaping": 1.23e-06, + "verifying": 1.23e-06, + "vo": 1.23e-06, + "watchful": 1.23e-06, + "waterford": 1.23e-06, + "wayward": 1.23e-06, + "willoughby": 1.23e-06, + "workmanship": 1.23e-06, + "wrecks": 1.23e-06, + "wren": 1.23e-06, + "wronged": 1.23e-06, + "yoke": 1.23e-06, + "za": 1.23e-06, + "zuma": 1.23e-06, + "acorn": 1.2e-06, + "aga": 1.2e-06, + "ahmedabad": 1.2e-06, + "aiken": 1.2e-06, + "ailing": 1.2e-06, + "airflow": 1.2e-06, + "alamo": 1.2e-06, + "aloft": 1.2e-06, + "amalgamation": 1.2e-06, + "amazes": 1.2e-06, + "amman": 1.2e-06, + "andersons": 1.15e-07, + "aneurysm": 1.2e-06, + "antelope": 1.2e-06, + "antigua": 1.2e-06, + "arcadia": 1.2e-06, + "archdiocese": 1.2e-06, + "ast": 1.2e-06, + "automate": 1.2e-06, + "barre": 1.2e-06, + "basilica": 1.2e-06, + "bassett": 1.2e-06, + "bens": 1.62e-07, + "bertie": 1.2e-06, + "beset": 1.2e-06, + "bitchy": 1.2e-06, + "blaster": 1.2e-06, + "bleep": 1.2e-06, + "blueberries": 1.2e-06, + "blushing": 1.2e-06, + "bowels": 1.2e-06, + "boyce": 1.2e-06, + "braided": 1.2e-06, + "brazilians": 1.2e-06, + "bridesmaid": 1.2e-06, + "brie": 1.2e-06, + "brochures": 1.2e-06, + "burroughs": 1.2e-06, + "capping": 1.2e-06, + "cartier": 1.2e-06, + "cashing": 1.2e-06, + "catalogs": 1.2e-06, + "cautioned": 1.2e-06, + "cavern": 1.2e-06, + "cedric": 1.2e-06, + "certify": 1.2e-06, + "champaign": 1.2e-06, + "channeling": 1.2e-06, + "checker": 1.2e-06, + "chivalry": 1.2e-06, + "chopra": 1.2e-06, + "civilised": 1.2e-06, + "clearwater": 1.2e-06, + "cocoon": 1.2e-06, + "comms": 1.2e-06, + "confessing": 1.2e-06, + "conspiracies": 1.2e-06, + "constants": 1.2e-06, + "cooperated": 1.2e-06, + "cornerback": 1.2e-06, + "credence": 1.2e-06, + "creeks": 1.48e-07, + "crossfire": 1.2e-06, + "currie": 1.2e-06, + "dada": 1.2e-06, + "dax": 1.2e-06, + "debtor": 1.2e-06, + "denouncing": 1.2e-06, + "densities": 1.2e-06, + "derail": 1.2e-06, + "desi": 1.2e-06, + "disallowed": 1.2e-06, + "dispatcher": 1.2e-06, + "dispatches": 1.2e-06, + "dissolving": 1.2e-06, + "distort": 1.2e-06, + "diverting": 1.2e-06, + "dms": 3.02e-07, + "dobbs": 1.2e-06, + "draught": 1.2e-06, + "dreary": 1.2e-06, + "dropout": 1.2e-06, + "duped": 1.2e-06, + "duplicated": 1.2e-06, + "earle": 1.2e-06, + "earring": 1.2e-06, + "elsevier": 1.2e-06, + "emptying": 1.2e-06, + "enclosures": 1.2e-06, + "endangering": 1.2e-06, + "environmentalists": 1.2e-06, + "erroneously": 1.2e-06, + "erwin": 1.2e-06, + "evaporation": 1.2e-06, + "evokes": 1.2e-06, + "fairbanks": 1.2e-06, + "fared": 1.2e-06, + "felicia": 1.2e-06, + "fingered": 1.2e-06, + "fished": 1.2e-06, + "flicks": 1.2e-06, + "foregoing": 1.2e-06, + "frighten": 1.2e-06, + "gable": 1.2e-06, + "gags": 1.2e-06, + "gallows": 1.2e-06, + "gandalf": 1.2e-06, + "gendered": 1.2e-06, + "georgina": 1.2e-06, + "goddesses": 1.2e-06, + "gorbachev": 1.2e-06, + "guernsey": 1.2e-06, + "guilds": 1.41e-07, + "gunning": 1.2e-06, + "hahah": 1.2e-06, + "haiku": 1.2e-06, + "hairstyles": 1.2e-06, + "harrow": 1.2e-06, + "hatchet": 1.2e-06, + "henceforth": 1.2e-06, + "hesitated": 1.2e-06, + "heterogeneous": 1.2e-06, + "hilltop": 1.2e-06, + "hines": 1.2e-06, + "hobo": 1.2e-06, + "housework": 1.2e-06, + "howdy": 1.2e-06, + "hoy": 1.2e-06, + "hsbc": 1.2e-06, + "huddle": 1.2e-06, + "humiliate": 1.2e-06, + "hurled": 1.2e-06, + "icloud": 1.2e-06, + "imax": 1.2e-06, + "importer": 1.2e-06, + "indignation": 1.2e-06, + "indus": 1.2e-06, + "ingrained": 1.2e-06, + "inhaled": 1.2e-06, + "injustices": 1.2e-06, + "inked": 1.2e-06, + "inspirations": 1.2e-06, + "irritate": 1.2e-06, + "jayne": 1.2e-06, + "jive": 1.2e-06, + "kaye": 1.2e-06, + "keenly": 1.2e-06, + "kiki": 1.2e-06, + "kilda": 1.2e-06, + "kimberley": 1.2e-06, + "kyiv": 1.2e-06, + "kyung": 1.2e-06, + "lakhs": 1.2e-06, + "lal": 1.2e-06, + "lass": 1.2e-06, + "leila": 1.2e-06, + "lesion": 1.2e-06, + "lieutenants": 1.02e-07, + "lockwood": 1.2e-06, + "lull": 1.2e-06, + "lullaby": 1.2e-06, + "macedonian": 1.2e-06, + "machining": 1.2e-06, + "mackerel": 1.2e-06, + "marge": 1.2e-06, + "marquette": 1.2e-06, + "martina": 1.2e-06, + "massages": 1.2e-06, + "mathias": 1.2e-06, + "mayfield": 1.2e-06, + "medallist": 1.2e-06, + "memorized": 1.2e-06, + "mep": 1.2e-06, + "metabolites": 1.2e-06, + "metaphysics": 1.2e-06, + "meticulously": 1.2e-06, + "migraines": 1.2e-06, + "mite": 1.2e-06, + "momentary": 1.2e-06, + "montague": 1.2e-06, + "moratorium": 1.2e-06, + "morgans": 2.45e-07, + "morgue": 1.2e-06, + "movin": 1.2e-06, + "mullen": 1.2e-06, + "mulligan": 1.2e-06, + "multiplying": 1.2e-06, + "munch": 1.2e-06, + "muppet": 1.2e-06, + "naps": 1.2e-06, + "nascent": 1.2e-06, + "netted": 1.2e-06, + "neurotic": 1.2e-06, + "newborns": 8.91e-08, + "noone": 1.2e-06, + "novella": 1.2e-06, + "obstructing": 1.2e-06, + "octane": 1.2e-06, + "octave": 1.2e-06, + "oda": 1.2e-06, + "oldies": 1.2e-06, + "omni": 1.2e-06, + "ong": 1.2e-06, + "organizes": 1.2e-06, + "pakistanis": 1.2e-06, + "penalized": 1.2e-06, + "piercings": 1.2e-06, + "pitbull": 1.2e-06, + "plugins": 1.2e-06, + "polaris": 1.2e-06, + "pondering": 1.2e-06, + "popes": 1.17e-06, + "postmodern": 1.2e-06, + "precincts": 1.2e-06, + "prerogative": 1.2e-06, + "procured": 1.2e-06, + "proxies": 1.2e-06, + "prudence": 1.2e-06, + "prudential": 1.2e-06, + "pry": 1.2e-06, + "psychoanalysis": 1.2e-06, + "puffs": 1.2e-06, + "purged": 1.2e-06, + "purposefully": 1.2e-06, + "pursues": 1.2e-06, + "radiotherapy": 1.2e-06, + "rationally": 1.2e-06, + "recoveries": 1.2e-06, + "reddy": 1.2e-06, + "remarried": 1.2e-06, + "rembrandt": 1.2e-06, + "remedial": 1.2e-06, + "repealing": 1.2e-06, + "repressive": 1.2e-06, + "resonates": 1.2e-06, + "resourceful": 1.2e-06, + "rms": 6.46e-08, + "rosenthal": 1.2e-06, + "rotates": 1.2e-06, + "runtime": 1.2e-06, + "rus": 3.63e-08, + "sacrificial": 1.2e-06, + "schulz": 1.2e-06, + "scorching": 1.2e-06, + "scottsdale": 1.2e-06, + "scribe": 1.2e-06, + "sentry": 1.2e-06, + "seung": 1.2e-06, + "sexton": 1.2e-06, + "sheeran": 1.2e-06, + "shelled": 1.2e-06, + "shhh": 1.2e-06, + "shingles": 1.2e-06, + "siegel": 1.2e-06, + "silencing": 1.2e-06, + "silverware": 1.2e-06, + "singapores": 1.2e-06, + "skillet": 1.2e-06, + "slimy": 1.2e-06, + "slipper": 1.2e-06, + "sloping": 1.2e-06, + "snout": 1.2e-06, + "soliciting": 1.2e-06, + "southwark": 1.2e-06, + "spank": 1.2e-06, + "sparking": 1.2e-06, + "specter": 1.2e-06, + "spied": 1.2e-06, + "spinners": 1.2e-06, + "spits": 1.2e-06, + "statehood": 1.2e-06, + "steeped": 1.2e-06, + "sti": 1.2e-06, + "storyteller": 1.2e-06, + "strewn": 1.2e-06, + "stroller": 1.2e-06, + "stub": 1.2e-06, + "subgroup": 1.2e-06, + "supra": 1.2e-06, + "suspiciously": 1.2e-06, + "sutter": 1.2e-06, + "swaying": 1.2e-06, + "tact": 1.2e-06, + "taxonomy": 1.2e-06, + "tcu": 1.2e-06, + "televisions": 4.79e-07, + "tinged": 1.2e-06, + "tirelessly": 1.2e-06, + "tiresome": 1.2e-06, + "toolkit": 1.2e-06, + "tribunals": 1.07e-07, + "tundra": 1.2e-06, + "tunic": 1.2e-06, + "tweaked": 1.2e-06, + "ukrainians": 1.2e-06, + "uncompromising": 1.2e-06, + "undoing": 1.2e-06, + "unmistakable": 1.2e-06, + "unruly": 1.2e-06, + "valuing": 1.2e-06, + "vaulted": 1.2e-06, + "veal": 1.2e-06, + "vegans": 1.2e-06, + "venomous": 1.2e-06, + "viceroy": 1.2e-06, + "videotape": 1.2e-06, + "walgreens": 7.59e-08, + "waxed": 1.2e-06, + "wearer": 1.2e-06, + "webs": 1.55e-07, + "whiting": 1.2e-06, + "willful": 1.2e-06, + "woodley": 1.2e-06, + "worcestershire": 1.2e-06, + "zeta": 1.2e-06, + "abnormally": 1.17e-06, + "abstain": 1.17e-06, + "adriana": 1.17e-06, + "affections": 1.17e-06, + "aggregates": 1.17e-06, + "ahn": 1.17e-06, + "airliner": 1.17e-06, + "alchemist": 1.17e-06, + "alexandre": 1.17e-06, + "alfa": 1.17e-06, + "allegory": 1.17e-06, + "alp": 1.17e-06, + "ambulances": 1.17e-06, + "antagonists": 1.17e-06, + "aortic": 1.17e-06, + "ard": 1.17e-06, + "ashland": 1.17e-06, + "assimilated": 1.17e-06, + "averted": 1.17e-06, + "backpacks": 1.17e-06, + "banish": 1.17e-06, + "bateman": 1.17e-06, + "battleground": 1.17e-06, + "beets": 1.17e-06, + "bellows": 1.45e-08, + "blisters": 1.17e-06, + "blob": 1.17e-06, + "bluntly": 1.17e-06, + "bohemia": 1.17e-06, + "bonaparte": 1.17e-06, + "boosters": 1.17e-06, + "bootleg": 1.17e-06, + "bos": 2.51e-07, + "boyz": 1.17e-06, + "brine": 1.17e-06, + "busty": 1.17e-06, + "butchers": 6.61e-07, + "callous": 1.17e-06, + "canadiens": 1.17e-06, + "cantonese": 1.17e-06, + "capcom": 1.17e-06, + "cardiology": 1.17e-06, + "carlin": 1.17e-06, + "cartoonist": 1.17e-06, + "casablanca": 1.17e-06, + "casserole": 1.17e-06, + "catalina": 1.17e-06, + "cellulose": 1.17e-06, + "cfr": 1.17e-06, + "charred": 1.17e-06, + "choreographed": 1.17e-06, + "churn": 1.17e-06, + "circuitry": 1.17e-06, + "clearances": 1.17e-06, + "cloned": 1.17e-06, + "cloves": 1.17e-06, + "commendable": 1.17e-06, + "competitively": 1.17e-06, + "compress": 1.17e-06, + "comptroller": 1.17e-06, + "conventionally": 1.17e-06, + "coon": 1.17e-06, + "correlates": 1.17e-06, + "creole": 1.17e-06, + "crusades": 1.17e-06, + "cubicle": 1.17e-06, + "curtailed": 1.17e-06, + "cystic": 1.17e-06, + "dainty": 1.17e-06, + "damnit": 1.17e-06, + "darlington": 1.17e-06, + "davison": 1.17e-06, + "decimated": 1.17e-06, + "decrees": 1.17e-06, + "deflected": 1.17e-06, + "deliverance": 1.17e-06, + "destitute": 1.17e-06, + "devi": 1.17e-06, + "dexterity": 1.17e-06, + "dietrich": 1.17e-06, + "dilution": 1.17e-06, + "dissipated": 1.17e-06, + "dolce": 1.17e-06, + "drugstore": 1.17e-06, + "dvr": 1.17e-06, + "eczema": 1.17e-06, + "ejection": 1.17e-06, + "electrolyte": 1.17e-06, + "elitist": 1.17e-06, + "emailing": 1.17e-06, + "emphasise": 1.17e-06, + "emphatically": 1.17e-06, + "engulfed": 1.17e-06, + "equine": 1.17e-06, + "exclusivity": 1.17e-06, + "exes": 1.05e-08, + "failings": 1.17e-06, + "fannie": 1.17e-06, + "faucet": 1.17e-06, + "faust": 1.17e-06, + "fbis": 1.17e-06, + "fdr": 1.17e-06, + "feeders": 1.17e-06, + "feisty": 1.17e-06, + "fink": 1.17e-06, + "flexing": 1.17e-06, + "foothold": 1.17e-06, + "forbidding": 1.17e-06, + "forfeited": 1.17e-06, + "formulations": 1.17e-06, + "fortifications": 1.17e-06, + "fouled": 1.17e-06, + "fourier": 1.17e-06, + "fraternal": 1.17e-06, + "frau": 1.17e-06, + "functioned": 1.17e-06, + "fuses": 1.17e-06, + "gaines": 1.17e-06, + "gamergate": 1.17e-06, + "gan": 1.17e-06, + "generalizations": 1.17e-06, + "ghastly": 1.17e-06, + "gia": 1.17e-06, + "gonzalo": 1.17e-06, + "gorillas": 5.89e-08, + "goto": 1.17e-06, + "gratifying": 1.17e-06, + "gretchen": 1.17e-06, + "greys": 7.08e-07, + "gymnast": 1.17e-06, + "haircuts": 1.17e-06, + "hairline": 1.17e-06, + "handcuffed": 1.17e-06, + "handset": 1.17e-06, + "harrowing": 1.17e-06, + "headlining": 1.17e-06, + "heiress": 1.17e-06, + "hells": 1.15e-06, + "herzegovina": 1.17e-06, + "hhs": 1.17e-06, + "higgs": 1.17e-06, + "hinged": 1.17e-06, + "hola": 1.17e-06, + "holster": 1.17e-06, + "horseman": 1.17e-06, + "humanist": 1.17e-06, + "hunch": 1.17e-06, + "huntsville": 1.17e-06, + "impenetrable": 1.17e-06, + "inconceivable": 1.17e-06, + "industrialization": 1.17e-06, + "inf": 1.17e-06, + "infographic": 1.17e-06, + "infringing": 1.17e-06, + "innovators": 1.17e-06, + "islington": 1.17e-06, + "issuer": 1.17e-06, + "janes": 3.55e-07, + "keenan": 1.17e-06, + "keg": 1.17e-06, + "kennedys": 3.89e-07, + "kissinger": 1.17e-06, + "kms": 1.17e-06, + "koi": 1.17e-06, + "kwon": 1.17e-06, + "lancet": 1.17e-06, + "landfall": 1.17e-06, + "lawmaker": 1.17e-06, + "layoffs": 1.17e-06, + "leningrad": 1.17e-06, + "lerner": 1.17e-06, + "lifeguard": 1.17e-06, + "limerick": 1.17e-06, + "lockers": 1.17e-06, + "lolita": 1.17e-06, + "loner": 1.17e-06, + "longed": 1.17e-06, + "loyola": 1.17e-06, + "lukaku": 1.17e-06, + "mariana": 1.17e-06, + "mau": 1.17e-06, + "mays": 1.07e-06, + "mca": 1.17e-06, + "mcmaster": 1.17e-06, + "mimicking": 1.17e-06, + "minimally": 1.17e-06, + "mistook": 1.17e-06, + "mogul": 1.17e-06, + "moles": 5.75e-08, + "monet": 1.17e-06, + "mornin": 1.17e-06, + "morph": 1.17e-06, + "mort": 1.17e-06, + "motorist": 1.17e-06, + "muriel": 1.17e-06, + "murphys": 1.7e-07, + "musa": 1.17e-06, + "mysticism": 1.17e-06, + "nagar": 1.17e-06, + "nauseous": 1.17e-06, + "nicks": 1.07e-06, + "nimble": 1.17e-06, + "nomad": 1.17e-06, + "nouveau": 1.17e-06, + "nrc": 1.17e-06, + "oleary": 1.17e-06, + "oneal": 5.5e-08, + "osullivan": 1.17e-06, + "objectionable": 1.17e-06, + "obliterated": 1.17e-06, + "obtainable": 1.17e-06, + "omit": 1.17e-06, + "oncoming": 1.17e-06, + "opportunistic": 1.17e-06, + "orson": 1.17e-06, + "otters": 1.17e-06, + "outlandish": 1.17e-06, + "outlying": 1.17e-06, + "oxidative": 1.17e-06, + "pacifist": 1.17e-06, + "pacquiao": 1.17e-06, + "paraphrase": 1.17e-06, + "pathfinder": 1.17e-06, + "pedagogical": 1.17e-06, + "pediatrician": 1.17e-06, + "pegged": 1.17e-06, + "pelican": 1.17e-06, + "pembroke": 1.17e-06, + "penchant": 1.17e-06, + "persians": 1.17e-06, + "planar": 1.17e-06, + "polluting": 1.17e-06, + "polygamy": 1.17e-06, + "ponytail": 1.17e-06, + "poplar": 1.17e-06, + "primordial": 1.17e-06, + "projectiles": 1.17e-06, + "propositions": 1.17e-06, + "pubic": 1.17e-06, + "publicist": 1.17e-06, + "purposeful": 1.17e-06, + "purses": 1.17e-06, + "quorum": 1.17e-06, + "rabbis": 1.05e-07, + "raman": 1.17e-06, + "ranchers": 1.17e-06, + "rarest": 1.17e-06, + "rascal": 1.17e-06, + "reared": 1.17e-06, + "refuted": 1.17e-06, + "resented": 1.17e-06, + "revue": 1.17e-06, + "reza": 1.17e-06, + "rigor": 1.17e-06, + "rioters": 1.17e-06, + "rizzo": 1.17e-06, + "roanoke": 1.17e-06, + "robins": 6.31e-07, + "rochdale": 1.17e-06, + "romano": 1.17e-06, + "roosters": 6.31e-08, + "roper": 1.17e-06, + "rosters": 1.17e-06, + "sacking": 1.17e-06, + "scarring": 1.17e-06, + "sch": 1.17e-06, + "scheming": 1.17e-06, + "scorched": 1.17e-06, + "scotsman": 1.17e-06, + "scotus": 1.17e-06, + "scripting": 1.17e-06, + "seatbelt": 1.17e-06, + "shank": 1.17e-06, + "sharpened": 1.17e-06, + "shortlist": 1.17e-06, + "sidebar": 1.17e-06, + "silverman": 1.17e-06, + "skeptics": 1.17e-06, + "slashing": 1.17e-06, + "sledge": 1.17e-06, + "slotted": 1.17e-06, + "smes": 5.13e-08, + "sociopath": 1.17e-06, + "sonya": 1.17e-06, + "southward": 1.17e-06, + "sparkly": 1.17e-06, + "specialises": 1.17e-06, + "speculating": 1.17e-06, + "spock": 1.17e-06, + "sponges": 1.17e-06, + "squeaky": 1.17e-06, + "stargate": 1.17e-06, + "steamship": 1.17e-06, + "stinging": 1.17e-06, + "subbed": 1.17e-06, + "summoning": 1.17e-06, + "swann": 1.17e-06, + "tatiana": 1.17e-06, + "tbsp": 1.17e-06, + "telecast": 1.17e-06, + "tenancy": 1.17e-06, + "terre": 1.17e-06, + "testimonial": 1.17e-06, + "thence": 1.17e-06, + "thyme": 1.17e-06, + "tiniest": 1.17e-06, + "toner": 1.17e-06, + "totalling": 1.17e-06, + "trafficked": 1.17e-06, + "trampled": 1.17e-06, + "transponder": 1.17e-06, + "trashy": 1.17e-06, + "travers": 1.17e-06, + "trimester": 1.17e-06, + "tron": 1.17e-06, + "tubs": 1.17e-06, + "tully": 1.17e-06, + "tum": 1.17e-06, + "umar": 1.17e-06, + "unfaithful": 1.17e-06, + "unholy": 1.17e-06, + "unify": 1.17e-06, + "unregulated": 1.17e-06, + "unscrupulous": 1.17e-06, + "unwittingly": 1.17e-06, + "upland": 1.17e-06, + "upped": 1.17e-06, + "ushered": 1.17e-06, + "vauxhall": 1.17e-06, + "vb": 1.17e-06, + "verbatim": 1.17e-06, + "villiers": 1.17e-06, + "virgo": 1.17e-06, + "vito": 1.17e-06, + "voiceover": 1.17e-06, + "willfully": 1.17e-06, + "worshipping": 1.17e-06, + "yawn": 1.17e-06, + "yiddish": 1.17e-06, + "adrift": 1.15e-06, + "aegis": 1.15e-06, + "aiden": 1.15e-06, + "ais": 1.95e-07, + "alastair": 1.15e-06, + "alleys": 6.03e-08, + "almanac": 1.15e-06, + "aloe": 1.15e-06, + "amphibious": 1.15e-06, + "analyzer": 1.15e-06, + "ancillary": 1.15e-06, + "anesthetic": 1.15e-06, + "anglia": 1.15e-06, + "antioch": 1.15e-06, + "antiquated": 1.15e-06, + "apologised": 1.15e-06, + "aquarius": 1.15e-06, + "armani": 1.15e-06, + "ascot": 1.15e-06, + "aussies": 1.15e-06, + "averse": 1.15e-06, + "bandages": 1.15e-06, + "barges": 1.15e-06, + "bds": 1.15e-06, + "beaded": 1.15e-06, + "beagle": 1.15e-06, + "beaufort": 1.15e-06, + "beavers": 7.08e-08, + "bess": 1.15e-06, + "biceps": 1.15e-06, + "blanco": 1.15e-06, + "blindfolded": 1.15e-06, + "blokes": 6.31e-08, + "boomerang": 1.15e-06, + "borussia": 1.15e-06, + "breton": 1.15e-06, + "brill": 1.15e-06, + "brim": 1.15e-06, + "broadening": 1.15e-06, + "caged": 1.15e-06, + "caine": 1.15e-06, + "calligraphy": 1.15e-06, + "capri": 1.15e-06, + "carpenters": 3.72e-07, + "carthage": 1.15e-06, + "castes": 1.15e-06, + "cauldron": 1.15e-06, + "celebratory": 1.15e-06, + "cfs": 1.15e-06, + "chalet": 1.15e-06, + "chao": 1.15e-06, + "childless": 1.15e-06, + "chimes": 1.15e-06, + "cleanser": 1.15e-06, + "clemens": 1.15e-06, + "clipper": 1.15e-06, + "closets": 1.15e-06, + "clouded": 1.15e-06, + "cma": 1.15e-06, + "coalitions": 2.95e-07, + "colossus": 1.15e-06, + "conductive": 1.15e-06, + "coney": 1.15e-06, + "congregational": 1.15e-06, + "cooperatives": 1.15e-06, + "copa": 1.15e-06, + "corals": 1.15e-06, + "corral": 1.15e-06, + "cortical": 1.15e-06, + "countering": 1.15e-06, + "crc": 1.15e-06, + "cremation": 1.15e-06, + "crt": 1.15e-06, + "cubans": 5.13e-08, + "curricular": 1.15e-06, + "curving": 1.15e-06, + "decked": 1.15e-06, + "deepened": 1.15e-06, + "deliberation": 1.15e-06, + "dermatologist": 1.15e-06, + "detonation": 1.15e-06, + "deus": 1.15e-06, + "deviate": 1.15e-06, + "devolution": 1.15e-06, + "dey": 1.15e-06, + "dialing": 1.15e-06, + "diode": 1.15e-06, + "discharges": 1.15e-06, + "disruptions": 1.15e-06, + "distancing": 1.15e-06, + "ditching": 1.15e-06, + "dix": 1.15e-06, + "donkeys": 1.05e-07, + "dorchester": 1.15e-06, + "dorsey": 1.15e-06, + "downer": 1.15e-06, + "dreyfus": 1.15e-06, + "dribble": 1.15e-06, + "dutchman": 1.15e-06, + "duval": 1.15e-06, + "dwyer": 1.15e-06, + "earbuds": 1.15e-06, + "egalitarian": 1.15e-06, + "endocrine": 1.15e-06, + "energized": 1.15e-06, + "epi": 1.15e-06, + "epithelial": 1.15e-06, + "equates": 1.15e-06, + "erickson": 1.15e-06, + "ernesto": 1.15e-06, + "ester": 1.15e-06, + "excitedly": 1.15e-06, + "excruciating": 1.15e-06, + "executes": 1.15e-06, + "farthest": 1.15e-06, + "fateful": 1.15e-06, + "fatter": 1.15e-06, + "fedora": 1.15e-06, + "fer": 1.15e-06, + "fia": 1.15e-06, + "fillers": 1.15e-06, + "finley": 1.15e-06, + "flak": 1.15e-06, + "flamboyant": 1.15e-06, + "flamingo": 1.15e-06, + "flutter": 1.15e-06, + "foodie": 1.15e-06, + "foolishness": 1.15e-06, + "forrester": 1.15e-06, + "foundational": 1.15e-06, + "frey": 1.15e-06, + "furnaces": 1.15e-06, + "fuzz": 1.15e-06, + "gills": 1.51e-07, + "gmc": 1.15e-06, + "goodyear": 1.15e-06, + "gout": 1.15e-06, + "guillermo": 1.15e-06, + "hailey": 1.15e-06, + "harlow": 1.15e-06, + "harsher": 1.15e-06, + "hatching": 1.15e-06, + "hearst": 1.15e-06, + "hepatic": 1.15e-06, + "hertz": 1.15e-06, + "hirsch": 1.15e-06, + "hoboken": 1.15e-06, + "homegrown": 1.15e-06, + "hoof": 1.15e-06, + "horowitz": 1.15e-06, + "housemates": 1.15e-06, + "howards": 2.57e-07, + "hues": 1.15e-06, + "huey": 1.15e-06, + "humbling": 1.15e-06, + "hwang": 1.15e-06, + "hydrocarbons": 1.15e-06, + "idris": 1.15e-06, + "impala": 1.15e-06, + "impurities": 1.15e-06, + "incognito": 1.15e-06, + "indestructible": 1.15e-06, + "inhibiting": 1.15e-06, + "inks": 4.57e-08, + "innocuous": 1.15e-06, + "inns": 1.1e-07, + "insofar": 1.15e-06, + "institut": 1.15e-06, + "intrinsically": 1.15e-06, + "iraqis": 1.15e-06, + "irishman": 1.15e-06, + "islander": 1.15e-06, + "ism": 1.15e-06, + "ismail": 1.15e-06, + "jana": 1.15e-06, + "janis": 1.15e-06, + "jest": 1.15e-06, + "jesuits": 1.15e-06, + "jillian": 1.15e-06, + "josephs": 1.51e-07, + "kal": 1.15e-06, + "kam": 1.15e-06, + "kee": 1.15e-06, + "khalil": 1.15e-06, + "lambda": 1.15e-06, + "leaky": 1.15e-06, + "lehigh": 1.15e-06, + "leicestershire": 1.15e-06, + "leto": 1.15e-06, + "libido": 1.15e-06, + "lina": 1.15e-06, + "linn": 1.15e-06, + "linus": 1.15e-06, + "lizzy": 1.15e-06, + "lorna": 1.15e-06, + "loyalties": 1.15e-06, + "lynching": 1.15e-06, + "lynx": 1.15e-06, + "maddox": 1.15e-06, + "mage": 1.15e-06, + "mahatma": 1.15e-06, + "mainline": 1.15e-06, + "mainstay": 1.15e-06, + "mannequin": 1.15e-06, + "marketable": 1.15e-06, + "marlborough": 1.15e-06, + "masterful": 1.15e-06, + "matic": 1.15e-06, + "maximal": 1.15e-06, + "mcc": 1.15e-06, + "mime": 1.15e-06, + "minivan": 1.15e-06, + "mistrust": 1.15e-06, + "mites": 1.15e-06, + "mobiles": 2.82e-07, + "modestly": 1.15e-06, + "moniker": 1.15e-06, + "morrissey": 1.15e-06, + "mpg": 1.15e-06, + "multidisciplinary": 1.15e-06, + "mythological": 1.15e-06, + "nave": 1.15e-06, + "ncis": 1.15e-06, + "needlessly": 1.15e-06, + "nel": 1.15e-06, + "neuro": 1.15e-06, + "nib": 1.15e-06, + "noahs": 1.15e-06, + "nonviolent": 1.15e-06, + "nps": 1.15e-06, + "nuremberg": 1.15e-06, + "ozzy": 1.15e-06, + "palatable": 1.15e-06, + "parishioners": 1.15e-06, + "parkland": 1.15e-06, + "pau": 1.15e-06, + "payouts": 1.15e-06, + "pensacola": 1.15e-06, + "perrys": 5.5e-08, + "platt": 1.15e-06, + "plunging": 1.15e-06, + "polarity": 1.15e-06, + "pompous": 1.15e-06, + "portman": 1.15e-06, + "profanity": 1.15e-06, + "protruding": 1.15e-06, + "puig": 1.15e-06, + "pundit": 1.15e-06, + "purify": 1.15e-06, + "pw": 1.15e-06, + "quack": 1.15e-06, + "quarries": 1.15e-06, + "raged": 1.15e-06, + "rages": 1.15e-06, + "rah": 1.15e-06, + "regaining": 1.15e-06, + "regenerative": 1.15e-06, + "regroup": 1.15e-06, + "rehearsed": 1.15e-06, + "reimburse": 1.15e-06, + "reinvent": 1.15e-06, + "rel": 1.15e-06, + "repatriation": 1.15e-06, + "requiem": 1.15e-06, + "resurrect": 1.15e-06, + "ringer": 1.15e-06, + "rockville": 1.15e-06, + "rollout": 1.15e-06, + "ronan": 1.15e-06, + "rooftops": 1.15e-06, + "rudolf": 1.15e-06, + "sae": 1.15e-06, + "salvaged": 1.15e-06, + "sari": 1.15e-06, + "sata": 1.15e-06, + "saucer": 1.15e-06, + "scrapping": 1.15e-06, + "scrappy": 1.15e-06, + "semis": 7.94e-08, + "serpentine": 1.15e-06, + "shinji": 1.15e-06, + "shuffling": 1.15e-06, + "sie": 1.15e-06, + "signup": 1.15e-06, + "skirmish": 1.15e-06, + "slough": 1.15e-06, + "snippets": 1.15e-06, + "soared": 1.15e-06, + "solicit": 1.15e-06, + "solidified": 1.15e-06, + "solvents": 1.15e-06, + "spaniard": 1.15e-06, + "spar": 1.15e-06, + "spearheaded": 1.15e-06, + "spooked": 1.15e-06, + "sprints": 1.26e-07, + "stimulant": 1.15e-06, + "stow": 1.15e-06, + "strickland": 1.15e-06, + "stylized": 1.15e-06, + "subdue": 1.15e-06, + "subscribing": 1.15e-06, + "succumb": 1.15e-06, + "suffocating": 1.15e-06, + "suisse": 1.15e-06, + "sumo": 1.15e-06, + "superbowl": 1.15e-06, + "surgically": 1.15e-06, + "susanna": 1.15e-06, + "syed": 1.15e-06, + "sympathize": 1.15e-06, + "tabernacle": 1.15e-06, + "tagline": 1.15e-06, + "talisman": 1.15e-06, + "tariq": 1.15e-06, + "thirdly": 1.15e-06, + "thwart": 1.15e-06, + "ticked": 1.15e-06, + "tins": 1.15e-06, + "torontos": 1.15e-06, + "tortilla": 1.15e-06, + "townhouse": 1.15e-06, + "transferable": 1.15e-06, + "transistors": 1.15e-06, + "transpired": 1.15e-06, + "transplanted": 1.15e-06, + "tres": 1.15e-06, + "tris": 1.15e-06, + "trish": 1.15e-06, + "truffle": 1.15e-06, + "tumultuous": 1.15e-06, + "ultron": 1.15e-06, + "unclean": 1.15e-06, + "unequivocally": 1.15e-06, + "unitary": 1.15e-06, + "usgs": 1.15e-06, + "vail": 1.15e-06, + "valkyrie": 1.15e-06, + "vedic": 1.15e-06, + "ventral": 1.15e-06, + "vibrate": 1.15e-06, + "vicente": 1.15e-06, + "wad": 1.15e-06, + "waging": 1.15e-06, + "waitin": 1.15e-06, + "weirdly": 1.15e-06, + "whered": 1.15e-06, + "whiplash": 1.15e-06, + "wildcat": 1.15e-06, + "woodworking": 1.15e-06, + "worsen": 1.15e-06, + "worshippers": 1.15e-06, + "xenophobia": 1.15e-06, + "xenophobic": 1.15e-06, + "yakuza": 1.15e-06, + "yuck": 1.15e-06, + "ze": 1.15e-06, + "zeros": 1.74e-07, + "acreage": 1.12e-06, + "affords": 1.12e-06, + "ajay": 1.12e-06, + "albino": 1.12e-06, + "alexs": 1.12e-06, + "antichrist": 1.12e-06, + "antrim": 1.12e-06, + "aquaculture": 1.12e-06, + "argus": 1.12e-06, + "arrears": 1.12e-06, + "arsenals": 3.98e-07, + "artemis": 1.12e-06, + "asd": 1.12e-06, + "asp": 1.12e-06, + "assimilate": 1.12e-06, + "asterisk": 1.12e-06, + "asymmetrical": 1.12e-06, + "atf": 1.12e-06, + "augmentation": 1.12e-06, + "ayrshire": 1.12e-06, + "azalea": 1.12e-06, + "bacterium": 1.12e-06, + "balochistan": 1.12e-06, + "barter": 1.12e-06, + "bbl": 1.12e-06, + "beet": 1.12e-06, + "bessie": 1.12e-06, + "biggs": 1.12e-06, + "bigoted": 1.12e-06, + "bistro": 1.12e-06, + "bod": 1.12e-06, + "bonanza": 1.12e-06, + "bosom": 1.12e-06, + "bostons": 1.12e-06, + "breakthroughs": 1.12e-06, + "breitbart": 1.12e-06, + "bribed": 1.12e-06, + "busan": 1.12e-06, + "callum": 1.12e-06, + "calmer": 1.12e-06, + "cannibal": 1.12e-06, + "catalogues": 1.12e-06, + "cato": 1.12e-06, + "centurion": 1.12e-06, + "chuckled": 1.12e-06, + "citi": 1.12e-06, + "clarendon": 1.12e-06, + "coldplay": 1.12e-06, + "compendium": 1.12e-06, + "complacency": 1.12e-06, + "complements": 1.12e-06, + "confessional": 1.12e-06, + "conservancy": 1.12e-06, + "contentment": 1.12e-06, + "convoluted": 1.12e-06, + "cools": 1.12e-06, + "counterproductive": 1.12e-06, + "cowell": 1.12e-06, + "crayon": 1.12e-06, + "cremated": 1.12e-06, + "crm": 1.12e-06, + "cropping": 1.12e-06, + "crossbow": 1.12e-06, + "crowding": 1.12e-06, + "crux": 1.12e-06, + "cst": 1.12e-06, + "curators": 1.12e-06, + "cusp": 1.12e-06, + "danville": 1.12e-06, + "decoding": 1.12e-06, + "defenseless": 1.12e-06, + "defiantly": 1.12e-06, + "delia": 1.12e-06, + "delicately": 1.12e-06, + "deluge": 1.12e-06, + "desist": 1.12e-06, + "devlin": 1.12e-06, + "devoured": 1.12e-06, + "diffraction": 1.12e-06, + "dilapidated": 1.12e-06, + "dismissive": 1.12e-06, + "divas": 1.12e-07, + "doable": 1.12e-06, + "doorbell": 1.12e-06, + "drooling": 1.12e-06, + "ducking": 1.12e-06, + "dulles": 1.12e-06, + "duplicates": 1.12e-06, + "eastbound": 1.12e-06, + "emir": 1.12e-06, + "emu": 1.12e-06, + "eritrea": 1.12e-06, + "errand": 1.12e-06, + "eucharist": 1.12e-06, + "excites": 1.12e-06, + "exclaimed": 1.12e-06, + "expedite": 1.12e-06, + "extracellular": 1.12e-06, + "famer": 1.12e-06, + "fastball": 1.12e-06, + "fearsome": 1.12e-06, + "feathered": 1.12e-06, + "fertilization": 1.12e-06, + "fervor": 1.12e-06, + "fiduciary": 1.12e-06, + "fifths": 1.12e-06, + "flax": 1.12e-06, + "fractional": 1.12e-06, + "freighter": 1.12e-06, + "frosting": 1.12e-06, + "fuelled": 1.12e-06, + "gaap": 1.12e-06, + "gallo": 1.12e-06, + "gasping": 1.12e-06, + "genevieve": 1.12e-06, + "globes": 1.48e-07, + "glorify": 1.12e-06, + "gunnar": 1.12e-06, + "guo": 1.12e-06, + "heartwarming": 1.12e-06, + "henrietta": 1.12e-06, + "heretics": 1.12e-06, + "hiccups": 1.12e-06, + "hiss": 1.12e-06, + "holographic": 1.12e-06, + "hotspur": 1.12e-06, + "hrc": 1.12e-06, + "impediment": 1.12e-06, + "importation": 1.12e-06, + "inactivity": 1.12e-06, + "incendiary": 1.12e-06, + "individualized": 1.12e-06, + "insistent": 1.12e-06, + "instigated": 1.12e-06, + "intelligently": 1.12e-06, + "interferes": 1.12e-06, + "intermittently": 1.12e-06, + "iraqs": 1.12e-06, + "isn": 1.12e-06, + "jag": 1.12e-06, + "kamal": 1.12e-06, + "kareem": 1.12e-06, + "keegan": 1.12e-06, + "kidnappers": 1.12e-06, + "kimball": 1.12e-06, + "lakewood": 1.12e-06, + "leapt": 1.12e-06, + "leia": 1.12e-06, + "leisurely": 1.12e-06, + "ligand": 1.12e-06, + "lila": 1.12e-06, + "liturgical": 1.12e-06, + "livelihoods": 1.12e-06, + "lothian": 1.12e-06, + "lubricant": 1.12e-06, + "lucie": 1.12e-06, + "macroeconomic": 1.12e-06, + "mags": 7.59e-08, + "maitland": 1.12e-06, + "masquerade": 1.12e-06, + "materialism": 1.12e-06, + "maude": 1.12e-06, + "mea": 1.12e-06, + "meager": 1.12e-06, + "melodrama": 1.12e-06, + "milly": 1.12e-06, + "minimized": 1.12e-06, + "minion": 1.12e-06, + "mistreated": 1.12e-06, + "misused": 1.12e-06, + "mmmm": 1.12e-06, + "mons": 1.12e-06, + "morn": 1.12e-06, + "motherland": 1.12e-06, + "motogp": 1.12e-06, + "mundo": 1.12e-06, + "nakamura": 1.12e-06, + "napkins": 1.12e-06, + "narcissism": 1.12e-06, + "navarro": 1.12e-06, + "niches": 1.12e-06, + "ninjas": 7.76e-08, + "nsf": 1.12e-06, + "observant": 1.12e-06, + "opioids": 1.12e-06, + "ostrich": 1.12e-06, + "overcast": 1.12e-06, + "overcrowding": 1.12e-06, + "paragon": 1.12e-06, + "parochial": 1.12e-06, + "pastries": 1.12e-06, + "perplexed": 1.12e-06, + "persistently": 1.12e-06, + "petting": 1.12e-06, + "phenotype": 1.12e-06, + "pico": 1.12e-06, + "plankton": 1.12e-06, + "prasad": 1.12e-06, + "prejudiced": 1.12e-06, + "prius": 1.12e-06, + "propped": 1.12e-06, + "protons": 1.12e-06, + "pruning": 1.12e-06, + "punter": 1.12e-06, + "qin": 1.12e-06, + "quark": 1.12e-06, + "queuing": 1.12e-06, + "quizzes": 1.12e-06, + "radiohead": 1.12e-06, + "rarer": 1.12e-06, + "rcmp": 1.12e-06, + "redacted": 1.12e-06, + "regretting": 1.12e-06, + "reimbursed": 1.12e-06, + "renovate": 1.12e-06, + "respiration": 1.12e-06, + "restores": 1.12e-06, + "retracted": 1.12e-06, + "reverses": 1.12e-06, + "ruff": 1.12e-06, + "rump": 1.12e-06, + "samir": 1.12e-06, + "santander": 1.12e-06, + "schiff": 1.12e-06, + "schiller": 1.12e-06, + "scranton": 1.12e-06, + "secondhand": 1.12e-06, + "shackles": 1.12e-06, + "shards": 1.12e-06, + "sheehan": 1.12e-06, + "shiver": 1.12e-06, + "simms": 1.12e-06, + "simplifying": 1.12e-06, + "sinned": 1.12e-06, + "ska": 1.12e-06, + "slugs": 1.12e-06, + "smog": 1.12e-06, + "smoothies": 1.12e-06, + "somber": 1.12e-06, + "splendor": 1.12e-06, + "springtime": 1.12e-06, + "sprinkler": 1.12e-06, + "stabs": 1.12e-06, + "standstill": 1.12e-06, + "stefano": 1.12e-06, + "stools": 1.12e-06, + "stubbs": 1.12e-06, + "subunit": 1.12e-06, + "sues": 2e-07, + "suffix": 1.12e-06, + "surges": 1.12e-06, + "surveyors": 5.13e-08, + "swede": 1.12e-06, + "sweepstakes": 1.12e-06, + "syndicated": 1.12e-06, + "syrias": 1.12e-06, + "tailoring": 1.12e-06, + "tbs": 1.12e-06, + "teeny": 1.12e-06, + "tendered": 1.12e-06, + "thoracic": 1.12e-06, + "ticketing": 1.12e-06, + "trams": 1.12e-06, + "tremor": 1.12e-06, + "triplets": 1.12e-06, + "twister": 1.12e-06, + "ulrich": 1.12e-06, + "unannounced": 1.12e-06, + "uncovering": 1.12e-06, + "undivided": 1.12e-06, + "unsatisfactory": 1.12e-06, + "unskilled": 1.12e-06, + "unwritten": 1.12e-06, + "utilitarian": 1.12e-06, + "vehicular": 1.12e-06, + "vetted": 1.12e-06, + "virginias": 1.12e-06, + "voltaire": 1.12e-06, + "wading": 1.12e-06, + "wallpapers": 1.12e-06, + "waning": 1.12e-06, + "weightlifting": 1.12e-06, + "wesleyan": 1.12e-06, + "whey": 1.12e-06, + "whyte": 1.12e-06, + "willpower": 1.12e-06, + "wolverhampton": 1.12e-06, + "woolly": 1.12e-06, + "yokohama": 1.12e-06, + "youngs": 3.72e-07, + "yuki": 1.12e-06, + "zig": 1.12e-06, + "abbreviations": 1.1e-06, + "accra": 1.1e-06, + "acosta": 1.1e-06, + "acquittal": 1.1e-06, + "acupuncture": 1.1e-06, + "adi": 1.1e-06, + "admins": 6.17e-08, + "adv": 1.1e-06, + "aggregated": 1.1e-06, + "anakin": 1.1e-06, + "anvil": 1.1e-06, + "anzac": 1.1e-06, + "argos": 1.1e-06, + "armament": 1.1e-06, + "aron": 1.1e-06, + "ascribed": 1.1e-06, + "astra": 1.1e-06, + "asu": 1.1e-06, + "ata": 1.1e-06, + "atwood": 1.1e-06, + "auctioned": 1.1e-06, + "backfired": 1.1e-06, + "balconies": 1.1e-06, + "barbour": 1.1e-06, + "bastille": 1.1e-06, + "belligerent": 1.1e-06, + "betts": 1.1e-06, + "bibles": 2.19e-07, + "bleaching": 1.1e-06, + "bleeds": 1.1e-06, + "bloomfield": 1.1e-06, + "bookmark": 1.1e-06, + "botanic": 1.1e-06, + "boundless": 1.1e-06, + "bowles": 1.1e-06, + "broadened": 1.1e-06, + "brooch": 1.1e-06, + "bulletins": 1.1e-06, + "bunting": 1.1e-06, + "burials": 1.1e-06, + "cabal": 1.1e-06, + "cabrera": 1.1e-06, + "cadre": 1.1e-06, + "campground": 1.1e-06, + "canaan": 1.1e-06, + "canyons": 8.32e-08, + "causeway": 1.1e-06, + "clamps": 1.1e-06, + "clearest": 1.1e-06, + "cleaver": 1.1e-06, + "cob": 1.1e-06, + "coexist": 1.1e-06, + "coffins": 1.1e-06, + "coinage": 1.1e-06, + "connelly": 1.1e-06, + "conquests": 1.1e-06, + "consenting": 1.1e-06, + "consummate": 1.1e-06, + "contending": 1.1e-06, + "convene": 1.1e-06, + "coopers": 5.25e-07, + "corresponded": 1.1e-06, + "covent": 1.1e-06, + "covington": 1.1e-06, + "cramp": 1.1e-06, + "cucumbers": 1.1e-06, + "curran": 1.1e-06, + "curricula": 1.1e-06, + "dearborn": 1.1e-06, + "decadent": 1.1e-06, + "decoy": 1.1e-06, + "defies": 1.1e-06, + "demoted": 1.1e-06, + "depraved": 1.1e-06, + "derivation": 1.1e-06, + "designations": 1.1e-06, + "detectable": 1.1e-06, + "deviations": 1.1e-06, + "diced": 1.1e-06, + "diem": 1.1e-06, + "discreetly": 1.1e-06, + "distortions": 1.1e-06, + "divorces": 1.1e-06, + "draco": 1.1e-06, + "dredge": 1.1e-06, + "drool": 1.1e-06, + "dumbledore": 1.1e-06, + "ebb": 1.1e-06, + "ecb": 1.1e-06, + "ecu": 1.1e-06, + "emulation": 1.1e-06, + "enriching": 1.1e-06, + "enshrined": 1.1e-06, + "erasing": 1.1e-06, + "escrow": 1.1e-06, + "essendon": 1.1e-06, + "evaporated": 1.1e-06, + "evasive": 1.1e-06, + "extinguish": 1.1e-06, + "fas": 2.14e-07, + "fayetteville": 1.1e-06, + "fca": 1.1e-06, + "federalist": 1.1e-06, + "fema": 1.1e-06, + "fervent": 1.1e-06, + "fiberglass": 1.1e-06, + "fisk": 1.1e-06, + "fixer": 1.1e-06, + "flavoured": 1.1e-06, + "foray": 1.1e-06, + "forfeiture": 1.1e-06, + "forgave": 1.1e-06, + "forties": 1.1e-06, + "friar": 1.1e-06, + "fruitless": 1.1e-06, + "fussy": 1.1e-06, + "garnish": 1.1e-06, + "genealogical": 1.1e-06, + "genomes": 1.1e-06, + "georgie": 1.1e-06, + "glances": 1.1e-06, + "gnu": 1.1e-06, + "goody": 1.1e-06, + "gough": 1.1e-06, + "graciously": 1.1e-06, + "grammys": 1.2e-07, + "grassland": 1.1e-06, + "hackett": 1.1e-06, + "hajj": 1.1e-06, + "hampstead": 1.1e-06, + "hap": 1.1e-06, + "hatfield": 1.1e-06, + "hdd": 1.1e-06, + "hdr": 1.1e-06, + "headway": 1.1e-06, + "hearsay": 1.95e-08, + "hershey": 1.1e-06, + "hideout": 1.1e-06, + "hippies": 1.1e-06, + "hoa": 1.1e-06, + "hobbes": 1.1e-06, + "holed": 1.1e-06, + "honed": 1.1e-06, + "horned": 1.1e-06, + "horner": 1.1e-06, + "hoyt": 1.1e-06, + "hutch": 1.1e-06, + "idyllic": 1.1e-06, + "imaginations": 1.1e-06, + "impairments": 1.1e-06, + "impossibility": 1.1e-06, + "impotent": 1.1e-06, + "inconsiderate": 1.1e-06, + "indictments": 1.1e-06, + "insatiable": 1.1e-06, + "instalment": 1.1e-06, + "instinctive": 1.1e-06, + "integrates": 1.1e-06, + "interpretive": 1.1e-06, + "intrepid": 1.1e-06, + "intuitively": 1.1e-06, + "jackman": 1.1e-06, + "jeanette": 1.1e-06, + "jetty": 1.1e-06, + "jimmie": 1.1e-06, + "jpeg": 1.1e-06, + "junkies": 1.1e-06, + "kabir": 1.1e-06, + "kawasaki": 1.1e-06, + "kew": 1.1e-06, + "khaki": 1.1e-06, + "kip": 1.1e-06, + "kirkland": 1.1e-06, + "koala": 1.1e-06, + "kohli": 1.1e-06, + "kos": 1.66e-07, + "lannister": 1.1e-06, + "lashing": 1.1e-06, + "lectured": 1.1e-06, + "leith": 1.1e-06, + "levelled": 1.1e-06, + "lexi": 1.1e-06, + "lieberman": 1.1e-06, + "lightening": 1.1e-06, + "lombardi": 1.1e-06, + "londonderry": 1.1e-06, + "loren": 1.1e-06, + "lucien": 1.1e-06, + "macs": 7.41e-07, + "magnate": 1.1e-06, + "magneto": 1.1e-06, + "mahoney": 1.1e-06, + "mannered": 1.1e-06, + "marietta": 1.1e-06, + "markham": 1.1e-06, + "maud": 1.1e-06, + "mcgovern": 1.1e-06, + "merciless": 1.1e-06, + "merle": 1.1e-06, + "milder": 1.1e-06, + "millimeters": 1.1e-06, + "minn": 1.1e-06, + "misfits": 1.1e-06, + "mocks": 1.1e-06, + "molina": 1.1e-06, + "monde": 1.1e-06, + "mongols": 1.1e-06, + "monochrome": 1.1e-06, + "mortuary": 1.1e-06, + "mtg": 1.1e-06, + "muffled": 1.1e-06, + "mugabe": 1.1e-06, + "mulder": 1.1e-06, + "mullins": 1.1e-06, + "muppets": 1.1e-06, + "muses": 5.89e-08, + "nacional": 1.1e-06, + "nationalistic": 1.1e-06, + "nervousness": 1.1e-06, + "neumann": 1.1e-06, + "neurologist": 1.1e-06, + "nik": 1.1e-06, + "notched": 1.1e-06, + "nutmeg": 1.1e-06, + "obstetrics": 1.1e-06, + "obtains": 1.1e-06, + "obtuse": 1.1e-06, + "ofcourse": 1.1e-06, + "papi": 1.1e-06, + "particulate": 1.1e-06, + "pausing": 1.1e-06, + "penicillin": 1.1e-06, + "perfecting": 1.1e-06, + "petal": 1.1e-06, + "petitioned": 1.1e-06, + "plumbers": 1.02e-07, + "pms": 7.59e-07, + "poise": 1.1e-06, + "polygon": 1.1e-06, + "ported": 1.1e-06, + "precursors": 1.1e-06, + "prolly": 1.1e-06, + "promos": 1.1e-06, + "proportionate": 1.1e-06, + "provence": 1.1e-06, + "pta": 1.1e-06, + "purcell": 1.1e-06, + "pvp": 1.1e-06, + "quartermaster": 1.1e-06, + "radiance": 1.1e-06, + "rambo": 1.1e-06, + "rammed": 1.1e-06, + "raoul": 1.1e-06, + "reciprocity": 1.1e-06, + "recollections": 1.1e-06, + "remodeled": 1.1e-06, + "replenish": 1.1e-06, + "reproducing": 1.1e-06, + "reputations": 1.1e-06, + "responsiveness": 1.1e-06, + "rheumatoid": 1.1e-06, + "roscoe": 1.1e-06, + "rosetta": 1.1e-06, + "rubles": 1.1e-06, + "rupee": 1.1e-06, + "saeed": 1.1e-06, + "saltwater": 1.1e-06, + "sanctity": 1.1e-06, + "schoolers": 1.1e-06, + "schroeder": 1.1e-06, + "scooped": 1.1e-06, + "scrabble": 1.1e-06, + "scrimmage": 1.1e-06, + "seaboard": 1.1e-06, + "sedition": 1.1e-06, + "shoddy": 1.1e-06, + "shortstop": 1.1e-06, + "shotguns": 1.1e-06, + "sleazy": 1.1e-06, + "sleepers": 1.1e-06, + "smashes": 1.1e-06, + "smirk": 1.1e-06, + "smoothing": 1.1e-06, + "smyth": 1.1e-06, + "sneaks": 1.1e-06, + "snipe": 1.1e-06, + "snuggle": 1.1e-06, + "sochi": 1.1e-06, + "sociologist": 1.1e-06, + "spares": 1.1e-06, + "spewing": 1.1e-06, + "squishy": 1.1e-06, + "stalemate": 1.1e-06, + "stave": 1.1e-06, + "stephan": 1.1e-06, + "stinking": 1.1e-06, + "storys": 8.71e-08, + "strangle": 1.1e-06, + "streamer": 1.1e-06, + "streetcar": 1.1e-06, + "stringer": 1.1e-06, + "summits": 9.55e-08, + "sunsets": 1.1e-06, + "supremely": 1.1e-06, + "sus": 1.17e-07, + "swami": 1.1e-06, + "swelled": 1.1e-06, + "symbolize": 1.1e-06, + "symbolizes": 1.1e-06, + "tahiti": 1.1e-06, + "tarantino": 1.1e-06, + "tarmac": 1.1e-06, + "teh": 1.1e-06, + "tenacious": 1.1e-06, + "tireless": 1.1e-06, + "toothed": 1.1e-06, + "toshiba": 1.1e-06, + "tremble": 1.1e-06, + "trillions": 1.1e-06, + "trove": 1.1e-06, + "ue": 1.1e-06, + "unconsciously": 1.1e-06, + "undated": 1.1e-06, + "undefined": 1.1e-06, + "unpack": 1.1e-06, + "urbanization": 1.1e-06, + "vetoed": 1.1e-06, + "victimized": 1.1e-06, + "wainwright": 1.1e-06, + "walkin": 1.1e-06, + "wanders": 1.1e-06, + "weakens": 1.1e-06, + "westbound": 1.1e-06, + "westerly": 1.1e-06, + "whitehouse": 1.1e-06, + "wilfred": 1.1e-06, + "wilton": 1.1e-06, + "winch": 1.1e-06, + "winthrop": 1.1e-06, + "workstation": 1.1e-06, + "yam": 1.1e-06, + "yawning": 1.1e-06, + "yolk": 1.1e-06, + "accomplices": 1.07e-06, + "adc": 1.07e-06, + "adjusts": 1.07e-06, + "adp": 1.07e-06, + "aerosol": 1.07e-06, + "aftermarket": 1.07e-06, + "alienate": 1.07e-06, + "alphabetically": 1.07e-06, + "amer": 1.07e-06, + "ammonium": 1.07e-06, + "amour": 1.07e-06, + "andi": 1.07e-06, + "annuities": 1.07e-06, + "apprehensive": 1.07e-06, + "aquino": 1.07e-06, + "arjun": 1.07e-06, + "assent": 1.07e-06, + "assn": 5.25e-08, + "athenian": 1.07e-06, + "atrocity": 1.07e-06, + "authorisation": 1.07e-06, + "avec": 1.07e-06, + "babysit": 1.07e-06, + "backdoor": 1.07e-06, + "bagels": 1.07e-06, + "banco": 1.07e-06, + "bantu": 1.07e-06, + "beaming": 1.07e-06, + "benin": 1.07e-06, + "benn": 1.07e-06, + "bh": 1.07e-06, + "bigots": 1.07e-06, + "biopic": 1.07e-06, + "bleached": 1.07e-06, + "blondie": 1.07e-06, + "bloods": 1.55e-07, + "blot": 1.07e-06, + "bode": 1.07e-06, + "boer": 1.07e-06, + "boggling": 1.07e-06, + "bolivian": 1.07e-06, + "bookstores": 1.07e-06, + "boos": 1.48e-07, + "bourgeoisie": 1.07e-06, + "bowser": 1.07e-06, + "boycotting": 1.07e-06, + "braced": 1.07e-06, + "brentwood": 1.07e-06, + "bromwich": 1.07e-06, + "bryson": 1.07e-06, + "bsc": 1.07e-06, + "buckinghamshire": 1.07e-06, + "bulging": 1.07e-06, + "burners": 1.07e-06, + "byproduct": 1.07e-06, + "bystanders": 1.07e-06, + "caspian": 1.07e-06, + "categorically": 1.07e-06, + "cathode": 1.07e-06, + "ceded": 1.07e-06, + "cheaters": 1.07e-06, + "chelseas": 1.07e-06, + "cheung": 1.07e-06, + "civility": 1.07e-06, + "clustering": 1.07e-06, + "cns": 1.07e-06, + "cohn": 1.07e-06, + "collin": 1.07e-06, + "commandos": 1.07e-06, + "complicity": 1.07e-06, + "conf": 1.07e-06, + "confetti": 1.07e-06, + "configure": 1.07e-06, + "confrontational": 1.07e-06, + "congolese": 1.07e-06, + "conley": 1.07e-06, + "connors": 3.31e-07, + "consequential": 1.07e-06, + "constitutions": 2.63e-07, + "contagion": 1.07e-06, + "convoys": 7.76e-08, + "corset": 1.07e-06, + "cortisol": 1.07e-06, + "coutinho": 1.07e-06, + "craters": 1.07e-06, + "crock": 1.07e-06, + "crocker": 1.07e-06, + "curate": 1.07e-06, + "cuttings": 1.07e-06, + "dataset": 1.07e-06, + "davos": 1.07e-06, + "dawned": 1.07e-06, + "daybreak": 1.07e-06, + "defected": 1.07e-06, + "defenseman": 1.07e-06, + "desolation": 1.07e-06, + "deviant": 1.07e-06, + "devine": 1.07e-06, + "devious": 1.07e-06, + "didier": 1.07e-06, + "dil": 1.07e-06, + "dilemmas": 1.07e-06, + "discography": 1.07e-06, + "dislocated": 1.07e-06, + "dispenser": 1.07e-06, + "disseminate": 1.07e-06, + "dorado": 1.07e-06, + "dragonfly": 1.07e-06, + "driscoll": 1.07e-06, + "dubstep": 1.07e-06, + "dugout": 1.07e-06, + "dunne": 1.07e-06, + "dynamically": 1.07e-06, + "edelman": 1.07e-06, + "elizabethan": 1.07e-06, + "emanating": 1.07e-06, + "endeavours": 1.07e-06, + "ensues": 1.07e-06, + "eradicated": 1.07e-06, + "erode": 1.07e-06, + "evocative": 1.07e-06, + "faintly": 1.07e-06, + "fancies": 1.07e-06, + "federico": 1.07e-06, + "fewest": 1.07e-06, + "fielded": 1.07e-06, + "financials": 1.07e-06, + "fingering": 1.07e-06, + "flirty": 1.07e-06, + "flocks": 1.07e-06, + "forbade": 1.07e-06, + "forested": 1.07e-06, + "frauds": 1.07e-06, + "friendlies": 1.07e-06, + "fronting": 1.07e-06, + "frosted": 1.07e-06, + "fullness": 1.07e-06, + "furthering": 1.07e-06, + "gaia": 1.07e-06, + "gallop": 1.07e-06, + "gentile": 1.07e-06, + "gentrification": 1.07e-06, + "georgias": 1.07e-06, + "gingerbread": 1.07e-06, + "gino": 1.07e-06, + "giro": 1.07e-06, + "gosling": 1.07e-06, + "grasshopper": 1.07e-06, + "groupings": 1.07e-06, + "guardiola": 1.07e-06, + "guildford": 1.07e-06, + "gutierrez": 1.07e-06, + "hallowed": 1.07e-06, + "halting": 1.07e-06, + "hamish": 1.07e-06, + "hampden": 1.07e-06, + "handguns": 1.07e-06, + "hebron": 1.07e-06, + "heywood": 1.07e-06, + "hove": 1.07e-06, + "hvac": 1.07e-06, + "hy": 1.07e-06, + "hydrate": 1.07e-06, + "hydrocarbon": 1.07e-06, + "incessant": 1.07e-06, + "incriminating": 1.07e-06, + "incurable": 1.07e-06, + "informants": 1.07e-06, + "informatics": 1.07e-06, + "infringed": 1.07e-06, + "inhaling": 1.07e-06, + "innumerable": 1.07e-06, + "insular": 1.07e-06, + "insurmountable": 1.07e-06, + "inundated": 1.07e-06, + "invariant": 1.07e-06, + "ionization": 1.07e-06, + "jailbreak": 1.07e-06, + "jamess": 1.07e-06, + "jarring": 1.07e-06, + "jing": 1.07e-06, + "juncture": 1.07e-06, + "karin": 1.07e-06, + "kebab": 1.07e-06, + "lago": 1.07e-06, + "lampard": 1.07e-06, + "larsson": 1.07e-06, + "latham": 1.07e-06, + "leanne": 1.07e-06, + "leinster": 1.07e-06, + "licensee": 1.07e-06, + "lincolns": 1.2e-07, + "locator": 1.07e-06, + "loeb": 1.07e-06, + "loyalist": 1.07e-06, + "luz": 1.07e-06, + "machado": 1.07e-06, + "macpherson": 1.07e-06, + "magnetism": 1.07e-06, + "maltese": 1.07e-06, + "manafort": 1.07e-06, + "manhunt": 1.07e-06, + "manoeuvre": 1.07e-06, + "margo": 1.07e-06, + "mariner": 1.07e-06, + "marlowe": 1.07e-06, + "marquez": 1.07e-06, + "marshmallows": 1.07e-06, + "martyn": 1.07e-06, + "masons": 6.17e-07, + "matthias": 1.07e-06, + "maximus": 1.07e-06, + "meditating": 1.07e-06, + "merck": 1.07e-06, + "metamorphosis": 1.07e-06, + "methodological": 1.07e-06, + "middleweight": 1.07e-06, + "migrations": 1.07e-06, + "mila": 1.07e-06, + "milkshake": 1.07e-06, + "mio": 1.07e-06, + "misinterpreted": 1.07e-06, + "mixers": 1.07e-06, + "modernize": 1.07e-06, + "mozilla": 1.07e-06, + "multilingual": 1.07e-06, + "nats": 9.77e-08, + "natured": 1.07e-06, + "nested": 1.07e-06, + "niki": 1.07e-06, + "nmr": 1.07e-06, + "notifying": 1.07e-06, + "nourishment": 1.07e-06, + "numerals": 1.07e-06, + "obeying": 1.07e-06, + "octavia": 1.07e-06, + "olfactory": 1.07e-06, + "organically": 1.07e-06, + "ortega": 1.07e-06, + "osbourne": 1.07e-06, + "paintball": 1.07e-06, + "parrish": 1.07e-06, + "parton": 1.07e-06, + "pedophiles": 1.07e-06, + "pertains": 1.07e-06, + "petrified": 1.07e-06, + "pheasant": 1.07e-06, + "photosynthesis": 1.07e-06, + "piccolo": 1.07e-06, + "pietro": 1.07e-06, + "piloted": 1.07e-06, + "pinching": 1.07e-06, + "pointe": 1.07e-06, + "pornhub": 1.07e-06, + "postponement": 1.07e-06, + "ppc": 1.07e-06, + "preclude": 1.07e-06, + "preorder": 1.07e-06, + "pressurized": 1.07e-06, + "prickly": 1.07e-06, + "pricks": 1.26e-08, + "priory": 1.07e-06, + "profiled": 1.07e-06, + "programmable": 1.07e-06, + "psn": 1.07e-06, + "puss": 1.07e-06, + "questionnaires": 1.07e-06, + "quintessential": 1.07e-06, + "racked": 1.07e-06, + "radiating": 1.07e-06, + "rancher": 1.07e-06, + "reclaiming": 1.07e-06, + "redding": 1.07e-06, + "regularity": 1.07e-06, + "remediation": 1.07e-06, + "reprints": 1.07e-06, + "resounding": 1.07e-06, + "restrooms": 1.07e-06, + "retract": 1.07e-06, + "ria": 1.07e-06, + "ripples": 1.07e-06, + "roared": 1.07e-06, + "rondo": 1.07e-06, + "rowley": 1.07e-06, + "rumoured": 1.07e-06, + "russel": 1.07e-06, + "saban": 1.07e-06, + "salazar": 1.07e-06, + "samuels": 2.14e-07, + "sana": 1.07e-06, + "sarasota": 1.07e-06, + "scaffold": 1.07e-06, + "scavenger": 1.07e-06, + "schooner": 1.07e-06, + "scion": 1.07e-06, + "seamus": 1.07e-06, + "secularism": 1.07e-06, + "separatists": 1.07e-06, + "sephora": 1.07e-06, + "servitude": 1.07e-06, + "severn": 1.07e-06, + "showbiz": 1.07e-06, + "sickly": 1.07e-06, + "siegfried": 1.07e-06, + "simeon": 1.07e-06, + "slaughtering": 1.07e-06, + "slumped": 1.07e-06, + "smacks": 1.07e-06, + "sme": 1.07e-06, + "snooker": 1.07e-06, + "solemnly": 1.07e-06, + "sores": 1.07e-06, + "splashed": 1.07e-06, + "sprained": 1.07e-06, + "squadrons": 7.24e-08, + "starling": 1.07e-06, + "steamboat": 1.07e-06, + "steinberg": 1.07e-06, + "stingy": 1.07e-06, + "stuffy": 1.07e-06, + "stumbles": 1.07e-06, + "substituting": 1.07e-06, + "subversion": 1.07e-06, + "sufficiency": 1.07e-06, + "sui": 1.07e-06, + "suitcases": 1.07e-06, + "sumatra": 1.07e-06, + "suvs": 1.26e-07, + "syn": 1.07e-06, + "takedown": 1.07e-06, + "tas": 8.91e-08, + "tasteless": 1.07e-06, + "tensor": 1.07e-06, + "terminally": 1.07e-06, + "tian": 1.07e-06, + "ticker": 1.07e-06, + "tiff": 1.07e-06, + "tijuana": 1.07e-06, + "toil": 1.07e-06, + "tomography": 1.07e-06, + "tonys": 1.38e-07, + "toon": 1.07e-06, + "toot": 1.07e-06, + "toulon": 1.07e-06, + "townsville": 1.07e-06, + "tru": 1.07e-06, + "truncated": 1.07e-06, + "trusty": 1.07e-06, + "twig": 1.07e-06, + "uf": 1.07e-06, + "ulcer": 1.07e-06, + "ummm": 1.07e-06, + "unconfirmed": 1.07e-06, + "undetected": 1.07e-06, + "uniformity": 1.07e-06, + "unjustified": 1.07e-06, + "unregistered": 1.07e-06, + "unsubscribe": 1.07e-06, + "untrained": 1.07e-06, + "ute": 1.07e-06, + "varnish": 1.07e-06, + "vee": 1.07e-06, + "videogames": 1.07e-06, + "vigor": 1.07e-06, + "waco": 1.07e-06, + "wag": 1.07e-06, + "walnuts": 1.07e-06, + "warhead": 1.07e-06, + "watcher": 1.07e-06, + "wealthier": 1.07e-06, + "welles": 1.07e-06, + "widower": 1.07e-06, + "wnba": 1.07e-06, + "wobbly": 1.07e-06, + "wot": 1.07e-06, + "wraith": 1.07e-06, + "yangon": 1.07e-06, + "yanks": 1.07e-06, + "yew": 1.07e-06, + "yugoslav": 1.07e-06, + "zoey": 1.07e-06, + "zoological": 1.07e-06, + "accorded": 1.05e-06, + "afb": 1.05e-06, + "agar": 1.05e-06, + "agnostic": 1.05e-06, + "airmen": 1.05e-06, + "aisha": 1.05e-06, + "alameda": 1.05e-06, + "algiers": 1.05e-06, + "alis": 1.29e-07, + "aligning": 1.05e-06, + "allocations": 1.05e-06, + "alluring": 1.05e-06, + "amputation": 1.05e-06, + "anarchism": 1.05e-06, + "antagonistic": 1.05e-06, + "anthropologists": 1.05e-06, + "anya": 1.05e-06, + "apprehend": 1.05e-06, + "aquinas": 1.05e-06, + "architectures": 6.03e-08, + "axiom": 1.05e-06, + "banger": 1.05e-06, + "barista": 1.05e-06, + "basalt": 1.05e-06, + "bashir": 1.05e-06, + "beatings": 1.05e-06, + "belated": 1.05e-06, + "bello": 1.05e-06, + "bequeathed": 1.05e-06, + "betterment": 1.05e-06, + "birthright": 1.05e-06, + "blackboard": 1.05e-06, + "blackwater": 1.05e-06, + "bor": 1.05e-06, + "breather": 1.05e-06, + "brendon": 1.05e-06, + "brothels": 1.05e-06, + "buckeyes": 1.05e-06, + "buffers": 1.05e-06, + "buffs": 1.05e-06, + "burrell": 1.05e-06, + "buzzed": 1.05e-06, + "bylaws": 1.05e-06, + "bystander": 1.05e-06, + "candace": 1.05e-06, + "carleton": 1.05e-06, + "catchment": 1.05e-06, + "chechen": 1.05e-06, + "chia": 1.05e-06, + "chino": 1.05e-06, + "cleanly": 1.05e-06, + "coffees": 1.55e-07, + "colorless": 1.05e-06, + "concave": 1.05e-06, + "confuses": 1.05e-06, + "consequent": 1.05e-06, + "contraceptives": 1.05e-06, + "corrects": 1.05e-06, + "coughs": 1.05e-06, + "cree": 1.05e-06, + "crucifix": 1.05e-06, + "cus": 1.05e-06, + "cyclones": 1.05e-06, + "daggers": 2.4e-08, + "dazzle": 1.05e-06, + "dealerships": 1.05e-06, + "decode": 1.05e-06, + "depriving": 1.05e-06, + "diagnosing": 1.05e-06, + "diarrhoea": 1.05e-06, + "dieter": 1.05e-06, + "discerning": 1.05e-06, + "disintegration": 1.05e-06, + "disposing": 1.05e-06, + "dissonance": 1.05e-06, + "dup": 1.05e-06, + "duress": 1.05e-06, + "dyslexia": 1.05e-06, + "earthy": 1.05e-06, + "editorials": 1.05e-06, + "elects": 5.37e-08, + "elevating": 1.05e-06, + "elmo": 1.05e-06, + "embezzlement": 1.05e-06, + "emigrants": 1.05e-06, + "emits": 1.05e-06, + "endorses": 1.05e-06, + "enforceable": 1.05e-06, + "ephraim": 1.05e-06, + "equinox": 1.05e-06, + "ericsson": 1.05e-06, + "erotica": 1.05e-06, + "erp": 1.05e-06, + "escalator": 1.05e-06, + "ethnicities": 1.05e-06, + "eulogy": 1.05e-06, + "eventful": 1.05e-06, + "excitation": 1.05e-06, + "fanatical": 1.05e-06, + "fangs": 5.62e-08, + "fantastically": 1.05e-06, + "fastened": 1.05e-06, + "fawn": 1.05e-06, + "flanking": 1.05e-06, + "flinders": 1.05e-06, + "fluency": 1.05e-06, + "fresher": 1.05e-06, + "frickin": 1.05e-06, + "fructose": 1.05e-06, + "furnishing": 1.05e-06, + "gah": 1.05e-06, + "galvanized": 1.05e-06, + "gambia": 1.05e-06, + "gaul": 1.05e-06, + "gaulle": 1.05e-06, + "gcc": 1.05e-06, + "geophysical": 1.05e-06, + "gladiators": 1.05e-06, + "godwin": 1.05e-06, + "gomes": 1.05e-06, + "graphene": 1.05e-06, + "grasped": 1.05e-06, + "graze": 1.05e-06, + "grenada": 1.05e-06, + "grossman": 1.05e-06, + "grower": 1.05e-06, + "grunge": 1.05e-06, + "gtfo": 1.05e-06, + "gump": 1.05e-06, + "hagen": 1.05e-06, + "halsey": 1.05e-06, + "hatches": 1.05e-06, + "hawkes": 1.74e-07, + "headlined": 1.05e-06, + "helene": 1.05e-06, + "hennessy": 1.05e-06, + "hilariously": 1.05e-06, + "hoodies": 1.05e-06, + "hottie": 1.05e-06, + "huddled": 1.05e-06, + "hypothesized": 1.05e-06, + "iaea": 1.05e-06, + "ics": 1.05e-06, + "illustrative": 1.05e-06, + "imbalances": 1.05e-06, + "improvise": 1.05e-06, + "inappropriately": 1.05e-06, + "incandescent": 1.05e-06, + "indistinct": 1.05e-06, + "infallible": 1.05e-06, + "infuriating": 1.05e-06, + "insulating": 1.05e-06, + "integers": 1.05e-06, + "intracellular": 1.05e-06, + "irma": 1.05e-06, + "jakob": 1.05e-06, + "janus": 1.05e-06, + "jens": 1.91e-07, + "jg": 1.05e-06, + "jia": 1.05e-06, + "jolt": 1.05e-06, + "juggle": 1.05e-06, + "jukebox": 1.05e-06, + "jumpsuit": 1.05e-06, + "kami": 1.05e-06, + "kangaroos": 1.05e-06, + "kar": 1.05e-06, + "kato": 1.05e-06, + "kayaking": 1.05e-06, + "kerosene": 1.05e-06, + "keto": 1.05e-06, + "knobs": 1.05e-06, + "kroger": 1.05e-06, + "legacies": 1.05e-06, + "leveraging": 1.05e-06, + "levies": 1.05e-06, + "likeable": 1.05e-06, + "longs": 3.89e-07, + "macos": 1.05e-06, + "magenta": 1.05e-06, + "markov": 1.05e-06, + "marlboro": 1.05e-06, + "mccormack": 1.05e-06, + "mee": 1.05e-06, + "merton": 1.05e-06, + "methodical": 1.05e-06, + "michigans": 1.05e-06, + "middletown": 1.05e-06, + "mince": 1.05e-06, + "miniatures": 1.05e-06, + "mints": 7.41e-08, + "molotov": 1.05e-06, + "monogram": 1.05e-06, + "moray": 1.05e-06, + "mumford": 1.05e-06, + "mus": 5.89e-08, + "mythic": 1.05e-06, + "nacho": 1.05e-06, + "nailing": 1.05e-06, + "nanotechnology": 1.05e-06, + "napping": 1.05e-06, + "negroes": 1.05e-06, + "niko": 1.05e-06, + "nobleman": 1.05e-06, + "nonprofits": 1.05e-06, + "nugent": 1.05e-06, + "oneil": 1.05e-06, + "obeyed": 1.05e-06, + "optimist": 1.05e-06, + "osiris": 1.05e-06, + "outwardly": 1.05e-06, + "overlord": 1.05e-06, + "overuse": 1.05e-06, + "panned": 1.05e-06, + "papacy": 1.05e-06, + "pasted": 1.05e-06, + "patreon": 1.05e-06, + "pdt": 1.05e-06, + "perfumes": 1.05e-06, + "phonetic": 1.05e-06, + "photovoltaic": 1.05e-06, + "piccadilly": 1.05e-06, + "pied": 1.05e-06, + "piloting": 1.05e-06, + "pius": 1.05e-06, + "pkk": 1.05e-06, + "planck": 1.05e-06, + "poodle": 1.05e-06, + "populism": 1.05e-06, + "precedes": 1.05e-06, + "pus": 4.07e-08, + "racetrack": 1.05e-06, + "redirected": 1.05e-06, + "reeds": 5.5e-07, + "rejoined": 1.05e-06, + "relayed": 1.05e-06, + "rescinded": 1.05e-06, + "resuming": 1.05e-06, + "retrieving": 1.05e-06, + "rnc": 1.05e-06, + "roadblock": 1.05e-06, + "roadshow": 1.05e-06, + "roadways": 1.05e-06, + "rsvp": 1.05e-06, + "sabre": 1.05e-06, + "saleh": 1.05e-06, + "salons": 7.94e-08, + "sandbox": 1.05e-06, + "sato": 1.05e-06, + "saxons": 1.05e-06, + "scooters": 5.37e-08, + "sds": 1.05e-06, + "seagull": 1.05e-06, + "shag": 1.05e-06, + "shahid": 1.05e-06, + "sheryl": 1.05e-06, + "shifter": 1.05e-06, + "shoemaker": 1.05e-06, + "shortfall": 1.05e-06, + "shrugs": 1.05e-06, + "sichuan": 1.05e-06, + "sift": 1.05e-06, + "silo": 1.05e-06, + "sion": 1.05e-06, + "smacking": 1.05e-06, + "smothered": 1.05e-06, + "sneezing": 1.05e-06, + "snooping": 1.05e-06, + "socialization": 1.05e-06, + "sonys": 1.05e-06, + "soot": 1.05e-06, + "sopranos": 1.05e-06, + "soto": 1.05e-06, + "southport": 1.05e-06, + "sparingly": 1.05e-06, + "speck": 1.05e-06, + "spectacularly": 1.05e-06, + "spiced": 1.05e-06, + "ssc": 1.05e-06, + "sse": 1.05e-06, + "stoves": 1.05e-06, + "streep": 1.05e-06, + "stylus": 1.05e-06, + "subclass": 1.05e-06, + "submits": 1.05e-06, + "successively": 1.05e-06, + "suk": 1.05e-06, + "sumptuous": 1.05e-06, + "suture": 1.05e-06, + "sydneys": 1.05e-06, + "synaptic": 1.05e-06, + "tailgate": 1.05e-06, + "tenuous": 1.05e-06, + "thelma": 1.05e-06, + "threes": 4.17e-07, + "tobin": 1.05e-06, + "topographic": 1.05e-06, + "trafalgar": 1.05e-06, + "tranquility": 1.05e-06, + "transmits": 1.05e-06, + "trekking": 1.05e-06, + "tuscan": 1.05e-06, + "tutu": 1.05e-06, + "tzu": 1.05e-06, + "umbilical": 1.05e-06, + "unhinged": 1.05e-06, + "uninterested": 1.05e-06, + "usaf": 1.05e-06, + "uterine": 1.05e-06, + "vanishes": 1.05e-06, + "vapour": 1.05e-06, + "vas": 1.78e-07, + "veer": 1.05e-06, + "versace": 1.05e-06, + "warheads": 1.05e-06, + "waxing": 1.05e-06, + "weirder": 1.05e-06, + "weller": 1.05e-06, + "wheaton": 1.05e-06, + "whereupon": 1.05e-06, + "winfrey": 1.05e-06, + "winn": 1.05e-06, + "withdraws": 1.05e-06, + "wither": 1.05e-06, + "wk": 1.05e-06, + "wobble": 1.05e-06, + "yadav": 1.05e-06, + "yeon": 1.05e-06, + "yvette": 1.05e-06, + "zak": 1.05e-06, + "zed": 1.05e-06, + "abridged": 1.02e-06, + "absences": 1.02e-06, + "acacia": 1.02e-06, + "adorn": 1.02e-06, + "aggressor": 1.02e-06, + "agm": 1.02e-06, + "ambivalent": 1.02e-06, + "amethyst": 1.02e-06, + "amit": 1.02e-06, + "angling": 1.02e-06, + "anil": 1.02e-06, + "antennae": 1.02e-06, + "antimicrobial": 1.02e-06, + "anybodys": 1.02e-06, + "asias": 1.02e-06, + "atk": 1.02e-06, + "ats": 5.01e-08, + "babylonian": 1.02e-06, + "baines": 1.02e-06, + "baiting": 1.02e-06, + "barks": 1.02e-06, + "beasley": 1.02e-06, + "berserk": 1.02e-06, + "berwick": 1.02e-06, + "bickering": 1.02e-06, + "bla": 1.02e-06, + "bobo": 1.02e-06, + "bovine": 1.02e-06, + "braids": 1.02e-06, + "braille": 1.02e-06, + "butchered": 1.02e-06, + "bypassing": 1.02e-06, + "cabot": 1.02e-06, + "candlelight": 1.02e-06, + "cannibalism": 1.02e-06, + "canoes": 1.02e-06, + "capricorn": 1.02e-06, + "captivated": 1.02e-06, + "catapult": 1.02e-06, + "cbn": 1.02e-06, + "ccs": 2e-07, + "cdr": 1.02e-06, + "censors": 1.02e-06, + "centro": 1.02e-06, + "cervix": 1.02e-06, + "cheery": 1.02e-06, + "chimneys": 1.02e-06, + "chit": 1.02e-06, + "chomsky": 1.02e-06, + "chrissy": 1.02e-06, + "clarks": 4.37e-07, + "clements": 9.55e-08, + "cleo": 1.02e-06, + "cog": 1.02e-06, + "cohorts": 1.02e-06, + "coloration": 1.02e-06, + "connective": 1.02e-06, + "cray": 1.02e-06, + "crayons": 1.02e-06, + "cronies": 1.02e-06, + "crusty": 1.02e-06, + "cumin": 1.02e-06, + "cutlery": 1.02e-06, + "dawes": 1.02e-06, + "decal": 1.02e-06, + "deciduous": 1.02e-06, + "degenerative": 1.02e-06, + "deloitte": 1.02e-06, + "delphi": 1.02e-06, + "detract": 1.02e-06, + "dialed": 1.02e-06, + "digested": 1.02e-06, + "diminishes": 1.02e-06, + "diplomas": 1.02e-06, + "dissection": 1.02e-06, + "dissimilar": 1.02e-06, + "dissuade": 1.02e-06, + "distillation": 1.02e-06, + "drab": 1.02e-06, + "dslr": 1.02e-06, + "dubs": 2.95e-08, + "ducked": 1.02e-06, + "dumfries": 1.02e-06, + "eeg": 1.02e-06, + "eggplant": 1.02e-06, + "ellington": 1.02e-06, + "engravings": 1.02e-06, + "enmity": 1.02e-06, + "epidemics": 1.02e-06, + "equipping": 1.02e-06, + "eucalyptus": 1.02e-06, + "eurasia": 1.02e-06, + "evaporate": 1.02e-06, + "execs": 1.02e-06, + "exhibitors": 1.02e-06, + "exo": 1.02e-06, + "exorbitant": 1.02e-06, + "expat": 1.02e-06, + "experimentally": 1.02e-06, + "expiring": 1.02e-06, + "eyelid": 1.02e-06, + "fainting": 1.02e-06, + "fecal": 1.02e-06, + "ferret": 1.02e-06, + "fertilizers": 1.02e-06, + "financier": 1.02e-06, + "fitter": 1.02e-06, + "flagrant": 1.02e-06, + "flapping": 1.02e-06, + "florist": 1.02e-06, + "foreplay": 1.02e-06, + "formatted": 1.02e-06, + "ftp": 1.02e-06, + "gangsta": 1.02e-06, + "garb": 1.02e-06, + "garvey": 1.02e-06, + "gassed": 1.02e-06, + "gatorade": 1.02e-06, + "gentiles": 1.02e-06, + "gilles": 1.02e-06, + "glancing": 1.02e-06, + "glaucoma": 1.02e-06, + "glazing": 1.02e-06, + "goblins": 6.61e-08, + "googling": 1.02e-06, + "goosebumps": 1.02e-06, + "granular": 1.02e-06, + "greenish": 1.02e-06, + "grocer": 1.02e-06, + "groping": 1.02e-06, + "gtx": 1.02e-06, + "headless": 1.02e-06, + "healthiest": 1.02e-06, + "heineken": 1.02e-06, + "hemsworth": 1.02e-06, + "hibernation": 1.02e-06, + "hindrance": 1.02e-06, + "hollywoods": 1.02e-06, + "hula": 1.02e-06, + "humanitys": 1.02e-06, + "huxley": 1.02e-06, + "ills": 1.02e-06, + "immunization": 1.02e-06, + "implantation": 1.02e-06, + "impressing": 1.02e-06, + "inaccuracies": 1.02e-06, + "inanimate": 1.02e-06, + "inca": 1.02e-06, + "inexplicably": 1.02e-06, + "infield": 1.02e-06, + "inflate": 1.02e-06, + "innovator": 1.02e-06, + "intermission": 1.02e-06, + "iqbal": 1.02e-06, + "irreplaceable": 1.02e-06, + "kanji": 1.02e-06, + "kh": 1.02e-06, + "kilogram": 1.02e-06, + "kn": 1.02e-06, + "kombat": 1.02e-06, + "kpop": 1.02e-06, + "kush": 1.02e-06, + "landline": 1.02e-06, + "lashed": 1.02e-06, + "legislate": 1.02e-06, + "liberian": 1.02e-06, + "lingo": 1.02e-06, + "lohan": 1.02e-06, + "looping": 1.02e-06, + "macy": 1.02e-06, + "marlin": 1.02e-06, + "marsden": 1.02e-06, + "marsha": 1.02e-06, + "masterchef": 1.02e-06, + "matron": 1.02e-06, + "mayfair": 1.02e-06, + "mcallister": 1.02e-06, + "mcgowan": 1.02e-06, + "meaty": 1.02e-06, + "mifflin": 1.02e-06, + "mirroring": 1.02e-06, + "mistaking": 1.02e-06, + "moderators": 1.02e-06, + "momo": 1.02e-06, + "mouthful": 1.02e-06, + "mun": 1.02e-06, + "murdock": 1.02e-06, + "mustangs": 6.61e-08, + "mutton": 1.02e-06, + "myra": 1.02e-06, + "neill": 1.02e-06, + "neoliberal": 1.02e-06, + "nestled": 1.02e-06, + "neutrons": 1.02e-06, + "newbury": 1.02e-06, + "newell": 1.02e-06, + "nfls": 1.02e-06, + "novelists": 1.02e-06, + "numeric": 1.02e-06, + "nunes": 1.02e-06, + "okeefe": 1.02e-06, + "oars": 1.02e-06, + "oates": 1.02e-06, + "ohm": 1.02e-06, + "oneplus": 1.02e-06, + "oop": 1.02e-06, + "optimizing": 1.02e-06, + "orc": 1.02e-06, + "outfielder": 1.02e-06, + "outflow": 1.02e-06, + "outperform": 1.02e-06, + "overtaking": 1.02e-06, + "overtook": 1.02e-06, + "overture": 1.02e-06, + "parma": 1.02e-06, + "parr": 1.02e-06, + "parrots": 6.46e-08, + "passively": 1.02e-06, + "paulson": 1.02e-06, + "peddling": 1.02e-06, + "pepperoni": 1.02e-06, + "perforated": 1.02e-06, + "pes": 2.34e-08, + "piero": 1.02e-06, + "pitchfork": 1.02e-06, + "placid": 1.02e-06, + "pleistocene": 1.02e-06, + "pooping": 1.02e-06, + "pox": 1.02e-06, + "pretense": 1.02e-06, + "principled": 1.02e-06, + "progesterone": 1.02e-06, + "puritan": 1.02e-06, + "quart": 1.02e-06, + "quinoa": 1.02e-06, + "rabble": 1.02e-06, + "rafters": 1.02e-06, + "raisin": 1.02e-06, + "rationing": 1.02e-06, + "reappear": 1.02e-06, + "rearrange": 1.02e-06, + "recreating": 1.02e-06, + "redeemer": 1.02e-06, + "redeeming": 1.02e-06, + "refreshments": 1.02e-06, + "reissue": 1.02e-06, + "remade": 1.02e-06, + "repulsed": 1.02e-06, + "resistor": 1.02e-06, + "restructure": 1.02e-06, + "revolting": 1.02e-06, + "rhapsody": 1.02e-06, + "rhea": 1.02e-06, + "robby": 1.02e-06, + "rousseau": 1.02e-06, + "roux": 1.02e-06, + "ruddy": 1.02e-06, + "rune": 1.02e-06, + "sahib": 1.02e-06, + "salam": 1.02e-06, + "sandler": 1.02e-06, + "saucepan": 1.02e-06, + "scala": 1.02e-06, + "scarier": 1.02e-06, + "schism": 1.02e-06, + "scrubbed": 1.02e-06, + "seer": 1.02e-06, + "sepsis": 1.02e-06, + "seward": 1.02e-06, + "sharpening": 1.02e-06, + "sharpness": 1.02e-06, + "shelved": 1.02e-06, + "shh": 1.02e-06, + "shipper": 1.02e-06, + "shopped": 1.02e-06, + "shui": 1.02e-06, + "sketching": 1.02e-06, + "skew": 1.02e-06, + "skimming": 1.02e-06, + "skydiving": 1.02e-06, + "smitten": 1.02e-06, + "snappy": 1.02e-06, + "sneaker": 1.02e-06, + "snort": 1.02e-06, + "snowboard": 1.02e-06, + "solitaire": 1.02e-06, + "sparing": 1.02e-06, + "spicer": 1.02e-06, + "spiegel": 1.02e-06, + "sportsmanship": 1.02e-06, + "sprinting": 1.02e-06, + "stakeholder": 1.02e-06, + "stanza": 1.02e-06, + "stipend": 1.02e-06, + "subsided": 1.02e-06, + "superannuation": 1.02e-06, + "surging": 1.02e-06, + "sweetened": 1.02e-06, + "sweetly": 1.02e-06, + "swims": 1.02e-06, + "swimwear": 1.02e-06, + "tamed": 1.02e-06, + "tampons": 1.02e-06, + "taunting": 1.02e-06, + "tec": 1.02e-06, + "tempe": 1.02e-06, + "tendons": 1.02e-06, + "terraced": 1.02e-06, + "testers": 1.02e-06, + "thrived": 1.02e-06, + "tickled": 1.02e-06, + "titty": 1.02e-06, + "toppings": 1.02e-06, + "traffickers": 1.02e-06, + "transcends": 1.02e-06, + "tropes": 1.02e-06, + "tsk": 1.02e-06, + "tumbled": 1.02e-06, + "twas": 6.92e-08, + "twitters": 1.55e-07, + "typography": 1.02e-06, + "typos": 1.02e-06, + "tyrion": 1.02e-06, + "uhhh": 1.02e-06, + "ukulele": 1.02e-06, + "ump": 1.02e-06, + "unauthorised": 1.02e-06, + "uncensored": 1.02e-06, + "unforgivable": 1.02e-06, + "uninhabited": 1.02e-06, + "unsurprisingly": 1.02e-06, + "untenable": 1.02e-06, + "unwavering": 1.02e-06, + "uranus": 1.02e-06, + "usability": 1.02e-06, + "veritable": 1.02e-06, + "vices": 5.5e-08, + "voldemort": 1.02e-06, + "wanderer": 1.02e-06, + "warts": 1.02e-06, + "watchman": 1.02e-06, + "whittaker": 1.02e-06, + "whys": 3.31e-07, + "wut": 1.02e-06, + "xander": 1.02e-06, + "xerox": 1.02e-06, + "xiaomi": 1.02e-06, + "yd": 1.02e-06, + "yeo": 1.02e-06, + "yeti": 1.02e-06, + "yoghurt": 1.02e-06, + "aac": 1e-06, + "abject": 1e-06, + "actionable": 1e-06, + "administers": 1e-06, + "aes": 3.24e-08, + "affective": 1e-06, + "afield": 1e-06, + "aldrich": 1e-06, + "aldridge": 1e-06, + "alienating": 1e-06, + "alight": 1e-06, + "amazement": 1e-06, + "amending": 1e-06, + "amg": 1e-06, + "aoc": 1e-06, + "apnea": 1e-06, + "appointees": 1e-06, + "armpit": 1e-06, + "arr": 1e-06, + "asl": 1e-06, + "austere": 1e-06, + "authoritarianism": 1e-06, + "awkwardness": 1e-06, + "bab": 1e-06, + "backer": 1e-06, + "backpacking": 1e-06, + "bagging": 1e-06, + "bailiff": 1e-06, + "banda": 1e-06, + "banked": 1e-06, + "barnsley": 1e-06, + "barricades": 1e-06, + "beamed": 1e-06, + "bergman": 1e-06, + "betrays": 1e-06, + "blinked": 1e-06, + "blissful": 1e-06, + "blister": 1e-06, + "blockage": 1e-06, + "blondes": 6.61e-08, + "bloodbath": 1e-06, + "bluffs": 1e-06, + "bmc": 1e-06, + "bnp": 1e-06, + "booms": 5.25e-08, + "bower": 1e-06, + "brah": 1e-06, + "bravest": 1e-06, + "brb": 1e-06, + "breasted": 1e-06, + "brookings": 1e-06, + "budgeted": 1e-06, + "bugger": 1e-06, + "buoy": 1e-06, + "bv": 1e-06, + "campaigner": 1e-06, + "capacitors": 1e-06, + "capes": 5.89e-08, + "carvings": 1e-06, + "cbt": 1e-06, + "celeb": 1e-06, + "cellars": 1e-06, + "cfl": 1e-06, + "chalice": 1e-06, + "chas": 5.75e-08, + "chichester": 1e-06, + "christophe": 1e-06, + "clippings": 1e-06, + "coll": 1e-06, + "colorectal": 1e-06, + "combing": 1e-06, + "commendation": 1e-06, + "compensating": 1e-06, + "condominiums": 1e-06, + "congratulating": 1e-06, + "consignment": 1e-06, + "contradicting": 1e-06, + "conundrum": 1e-06, + "corinne": 1e-06, + "coursework": 1e-06, + "coven": 1e-06, + "criminology": 1e-06, + "csu": 1e-06, + "czar": 1e-06, + "depots": 8.32e-08, + "dials": 1e-06, + "diamondbacks": 1e-06, + "dianne": 1e-06, + "discounting": 1e-06, + "disorganized": 1e-06, + "disseminated": 1e-06, + "dissolves": 1e-06, + "dmc": 1e-06, + "doggie": 1e-06, + "domes": 7.41e-08, + "duchy": 1e-06, + "dumplings": 1e-06, + "earmarked": 1e-06, + "ecumenical": 1e-06, + "electrification": 1e-06, + "embedding": 1e-06, + "encased": 1e-06, + "endothelial": 1e-06, + "engel": 1e-06, + "episodic": 1e-06, + "epsom": 1e-06, + "eros": 1e-06, + "eskimo": 1e-06, + "eus": 1.17e-07, + "ewan": 1e-06, + "expiry": 1e-06, + "extremity": 1e-06, + "fabregas": 1e-06, + "faithfulness": 1e-06, + "felonies": 1e-06, + "femur": 1e-06, + "ferrer": 1e-06, + "fluctuating": 1e-06, + "fong": 1e-06, + "fowl": 1e-06, + "foxy": 1e-06, + "franken": 1e-06, + "freckles": 1e-06, + "freelancer": 1e-06, + "fullerton": 1e-06, + "fundraisers": 1e-06, + "furs": 1e-06, + "gelatin": 1e-06, + "gestation": 1e-06, + "guangdong": 1e-06, + "guggenheim": 1e-06, + "guillotine": 1e-06, + "gull": 1e-06, + "gulls": 1e-06, + "gusto": 1e-06, + "halfback": 1e-06, + "handout": 1e-06, + "harbors": 6.76e-08, + "havens": 8.71e-08, + "headband": 1e-06, + "henning": 1e-06, + "heralded": 1e-06, + "heretic": 1e-06, + "hernia": 1e-06, + "hippy": 1e-06, + "hitachi": 1e-06, + "hummus": 1e-06, + "ideologically": 1e-06, + "indiscriminate": 1e-06, + "individualism": 1e-06, + "infernal": 1e-06, + "infrequently": 1e-06, + "instill": 1e-06, + "invalidate": 1e-06, + "isolates": 1e-06, + "jazzy": 1e-06, + "jehovahs": 5.01e-08, + "jeong": 1e-06, + "jerrys": 7.08e-08, + "jeter": 1e-06, + "joffrey": 1e-06, + "kenyon": 1e-06, + "kingpin": 1e-06, + "kiosk": 1e-06, + "klopp": 1e-06, + "lags": 1e-06, + "lawton": 1e-06, + "legalizing": 1e-06, + "lentils": 1e-06, + "leprosy": 1e-06, + "lh": 1e-06, + "lisp": 1e-06, + "liverpools": 1e-06, + "locust": 1e-06, + "lombard": 1e-06, + "looney": 1e-06, + "lubbock": 1e-06, + "lui": 1e-06, + "magnifying": 1e-06, + "malaya": 1e-06, + "mallet": 1e-06, + "maloney": 1e-06, + "mather": 1e-06, + "medici": 1e-06, + "mes": 2.45e-07, + "metastatic": 1e-06, + "meteorites": 1e-06, + "mew": 1e-06, + "militarily": 1e-06, + "minced": 1e-06, + "mishap": 1e-06, + "moby": 1e-06, + "mojave": 1e-06, + "molasses": 1e-06, + "monographs": 1e-06, + "monolithic": 1e-06, + "motoring": 1e-06, + "mott": 1e-06, + "moulded": 1e-06, + "mystique": 1e-06, + "nanjing": 1e-06, + "narcotic": 1e-06, + "nda": 1e-06, + "nefarious": 1e-06, + "nepali": 1e-06, + "nite": 1e-06, + "nix": 1e-06, + "nola": 1e-06, + "normalize": 1e-06, + "nucleotide": 1e-06, + "nurseries": 1e-06, + "olympians": 1e-06, + "optimus": 1e-06, + "orcs": 1e-06, + "orkney": 1e-06, + "outbound": 1e-06, + "outbursts": 1e-06, + "outsourced": 1e-06, + "overalls": 1e-06, + "overpowered": 1e-06, + "overworked": 1e-06, + "padilla": 1e-06, + "pantomime": 1e-06, + "parkers": 2.4e-07, + "peacetime": 1e-06, + "pei": 1e-06, + "permian": 1e-06, + "peso": 1e-06, + "pierson": 1e-06, + "pilates": 1e-06, + "pita": 1e-06, + "pitting": 1e-06, + "plagues": 1e-06, + "playtime": 1e-06, + "pompeii": 1e-06, + "pompey": 1e-06, + "portage": 1e-06, + "positional": 1e-06, + "postcode": 1e-06, + "predicated": 1e-06, + "predictably": 1e-06, + "progeny": 1e-06, + "propagated": 1e-06, + "pushy": 1e-06, + "qualcomm": 1e-06, + "quell": 1e-06, + "racecourse": 1e-06, + "railings": 1e-06, + "rainwater": 1e-06, + "rebounding": 1e-06, + "reflector": 1e-06, + "regimental": 1e-06, + "rehabilitate": 1e-06, + "renounced": 1e-06, + "reorganized": 1e-06, + "replicas": 1e-06, + "reread": 1e-06, + "revisiting": 1e-06, + "revolved": 1e-06, + "rigorously": 1e-06, + "roderick": 1e-06, + "rogues": 1.38e-07, + "roost": 1e-06, + "roswell": 1e-06, + "routers": 5.01e-08, + "salim": 1e-06, + "salzburg": 1e-06, + "savory": 1e-06, + "scholes": 1e-06, + "scorpions": 7.24e-08, + "sdf": 1e-06, + "seaworld": 1e-06, + "segmented": 1e-06, + "semesters": 1.02e-07, + "shalom": 1e-06, + "shard": 1e-06, + "sieve": 1e-06, + "signatories": 1e-06, + "sill": 1e-06, + "silvery": 1e-06, + "silvio": 1e-06, + "sittin": 1e-06, + "smartwatch": 1e-06, + "snapper": 1e-06, + "snickers": 1e-06, + "soleil": 1e-06, + "soloist": 1e-06, + "somerville": 1e-06, + "soreness": 1e-06, + "southerners": 1e-06, + "sowing": 1e-06, + "sphinx": 1e-06, + "spore": 3.55e-08, + "stances": 1e-06, + "starfish": 1e-06, + "stifle": 1e-06, + "sturridge": 1e-06, + "succulent": 1e-06, + "superbly": 1e-06, + "supercar": 1e-06, + "superfluous": 1e-06, + "surged": 1e-06, + "surpasses": 1e-06, + "swain": 1e-06, + "swarming": 1e-06, + "sxsw": 1e-06, + "synchronous": 1e-06, + "tania": 1e-06, + "tasteful": 1e-06, + "telemetry": 1e-06, + "templeton": 1e-06, + "tenet": 1e-06, + "testifies": 1e-06, + "theologian": 1e-06, + "tiled": 1e-06, + "togo": 1e-06, + "tolstoy": 1e-06, + "tots": 1e-06, + "transcendental": 1e-06, + "transformational": 1e-06, + "translational": 1e-06, + "travesty": 1e-06, + "tricking": 1e-06, + "tunis": 1e-06, + "uncomfortably": 1e-06, + "undiscovered": 1e-06, + "unisex": 1e-06, + "upi": 1e-06, + "vane": 1e-06, + "vegetarians": 1e-06, + "vengeful": 1e-06, + "vials": 1e-06, + "weavers": 2.19e-07, + "westside": 1e-06, + "whatnot": 1e-06, + "whiteness": 1e-06, + "wicker": 1e-06, + "wrinkled": 1e-06, + "wsj": 1e-06, + "wynne": 1e-06, + "yank": 1e-06, + "yaya": 1e-06, + "aback": 9.77e-07, + "accuser": 9.77e-07, + "adrenal": 9.77e-07, + "agonizing": 9.77e-07, + "aimee": 9.77e-07, + "alluding": 9.77e-07, + "aloof": 9.77e-07, + "amulet": 9.77e-07, + "annotations": 9.77e-07, + "anticipates": 9.77e-07, + "apologetic": 9.77e-07, + "apoptosis": 9.77e-07, + "aq": 9.77e-07, + "arcane": 9.77e-07, + "argo": 9.77e-07, + "aristocrat": 9.77e-07, + "arthurs": 1.41e-07, + "arty": 9.77e-07, + "assassinations": 9.77e-07, + "assays": 9.77e-07, + "astrid": 9.77e-07, + "astrophysics": 9.77e-07, + "atta": 9.77e-07, + "bader": 9.77e-07, + "baek": 9.77e-07, + "baku": 9.77e-07, + "bancroft": 9.77e-07, + "barbershop": 9.77e-07, + "batsmen": 9.77e-07, + "bbs": 1.74e-07, + "beal": 9.77e-07, + "beanie": 9.77e-07, + "behest": 9.77e-07, + "beit": 9.77e-07, + "benoit": 9.77e-07, + "bibi": 9.77e-07, + "biometric": 9.77e-07, + "blackened": 9.77e-07, + "blacklisted": 9.77e-07, + "blanca": 9.77e-07, + "bogged": 9.77e-07, + "boobies": 9.77e-07, + "bookkeeping": 9.77e-07, + "borden": 9.77e-07, + "braxton": 9.77e-07, + "bremen": 9.77e-07, + "brews": 9.77e-07, + "brixton": 9.77e-07, + "bronco": 9.77e-07, + "caesars": 8.51e-07, + "caitlyn": 9.77e-07, + "cajun": 9.77e-07, + "calvary": 9.77e-07, + "camaraderie": 9.77e-07, + "caravans": 9.77e-07, + "cascades": 9.77e-07, + "cask": 9.77e-07, + "catwalk": 9.77e-07, + "centimetres": 9.77e-07, + "chanted": 9.77e-07, + "christies": 8.91e-08, + "classically": 9.77e-07, + "clermont": 9.77e-07, + "clog": 9.77e-07, + "clubbing": 9.77e-07, + "colonized": 9.77e-07, + "columbian": 9.77e-07, + "competencies": 9.77e-07, + "confiscation": 9.77e-07, + "congresses": 9.77e-07, + "conscription": 9.77e-07, + "conserving": 9.77e-07, + "convo": 9.77e-07, + "covenants": 9.77e-07, + "cranial": 9.77e-07, + "criminality": 9.77e-07, + "croix": 9.77e-07, + "cts": 5.75e-08, + "culprits": 9.77e-07, + "custer": 9.77e-07, + "cyberspace": 9.77e-07, + "dao": 9.77e-07, + "dara": 9.77e-07, + "dbs": 1.29e-07, + "decapitated": 9.77e-07, + "detach": 9.77e-07, + "deterrence": 9.77e-07, + "deutsch": 9.77e-07, + "dielectric": 9.77e-07, + "dispensed": 9.77e-07, + "distanced": 9.77e-07, + "distasteful": 9.77e-07, + "dojo": 9.77e-07, + "dorms": 9.77e-07, + "dougie": 9.77e-07, + "dreading": 9.77e-07, + "droughts": 9.77e-07, + "druid": 9.77e-07, + "dud": 9.77e-07, + "duvet": 9.77e-07, + "eclipsed": 9.77e-07, + "eject": 9.77e-07, + "ell": 9.77e-07, + "emblems": 9.77e-07, + "endogenous": 9.77e-07, + "enforcer": 9.77e-07, + "ensembles": 6.17e-08, + "ephemeral": 9.77e-07, + "eponymous": 9.77e-07, + "erich": 9.77e-07, + "escorting": 9.77e-07, + "ethnographic": 9.77e-07, + "eurasian": 9.77e-07, + "examiners": 2.34e-07, + "extracurricular": 9.77e-07, + "faraway": 9.77e-07, + "fenway": 9.77e-07, + "fic": 9.77e-07, + "figurines": 9.77e-07, + "fittest": 9.77e-07, + "fleshy": 9.77e-07, + "flickering": 9.77e-07, + "fliers": 9.77e-07, + "fluctuate": 9.77e-07, + "fluttering": 9.77e-07, + "fontaine": 9.77e-07, + "footpath": 9.77e-07, + "fordham": 9.77e-07, + "forerunner": 9.77e-07, + "forgo": 9.77e-07, + "foxx": 9.77e-07, + "freer": 9.77e-07, + "frontage": 9.77e-07, + "frustrate": 9.77e-07, + "fryer": 9.77e-07, + "gaius": 9.77e-07, + "gar": 9.77e-07, + "garnett": 9.77e-07, + "ged": 9.77e-07, + "genomics": 9.77e-07, + "gingrich": 9.77e-07, + "goof": 9.77e-07, + "graced": 9.77e-07, + "grafton": 9.77e-07, + "grandad": 9.77e-07, + "greco": 9.77e-07, + "gunther": 9.77e-07, + "gurus": 1.86e-07, + "gustavo": 9.77e-07, + "hadith": 9.77e-07, + "hamburgers": 9.77e-07, + "hamlin": 9.77e-07, + "hangers": 9.77e-07, + "hannity": 9.77e-07, + "hardening": 9.77e-07, + "hippocampus": 9.77e-07, + "hoon": 9.77e-07, + "hoot": 9.77e-07, + "hoses": 9.77e-07, + "hostels": 9.77e-07, + "humanism": 9.77e-07, + "incarnate": 9.77e-07, + "incomparable": 9.77e-07, + "informer": 9.77e-07, + "infrequent": 9.77e-07, + "infringe": 9.77e-07, + "ingestion": 9.77e-07, + "inquiring": 9.77e-07, + "internment": 9.77e-07, + "interprets": 9.77e-07, + "janine": 9.77e-07, + "jap": 9.77e-07, + "jekyll": 9.77e-07, + "jims": 1.1e-07, + "joni": 9.77e-07, + "jour": 9.77e-07, + "juggernaut": 9.77e-07, + "jungles": 9.77e-07, + "kalamazoo": 9.77e-07, + "kawhi": 9.77e-07, + "khartoum": 9.77e-07, + "kj": 9.77e-07, + "kushner": 9.77e-07, + "lackluster": 9.77e-07, + "langdon": 9.77e-07, + "largo": 9.77e-07, + "larva": 9.77e-07, + "laude": 9.77e-07, + "lausanne": 9.77e-07, + "layering": 9.77e-07, + "libertarians": 9.77e-07, + "lint": 9.77e-07, + "lira": 9.77e-07, + "livid": 9.77e-07, + "lobbies": 9.77e-07, + "loomis": 9.77e-07, + "loon": 9.77e-07, + "looser": 9.77e-07, + "lotte": 9.77e-07, + "lowland": 9.77e-07, + "luce": 9.77e-07, + "luckiest": 9.77e-07, + "luscious": 9.77e-07, + "luxe": 9.77e-07, + "magnified": 9.77e-07, + "mainframe": 9.77e-07, + "mamas": 6.17e-07, + "manger": 9.77e-07, + "manicure": 9.77e-07, + "mares": 1.2e-07, + "materialistic": 9.77e-07, + "materialize": 9.77e-07, + "matts": 1.07e-07, + "maturation": 9.77e-07, + "maury": 9.77e-07, + "mckee": 9.77e-07, + "mckinnon": 9.77e-07, + "mcmanus": 9.77e-07, + "meditations": 9.77e-07, + "menzies": 9.77e-07, + "mica": 9.77e-07, + "millar": 9.77e-07, + "minerva": 9.77e-07, + "minted": 9.77e-07, + "minuscule": 9.77e-07, + "misspelled": 9.77e-07, + "mobil": 9.77e-07, + "moisturizer": 9.77e-07, + "molar": 9.77e-07, + "molestation": 9.77e-07, + "mong": 9.77e-07, + "montrose": 9.77e-07, + "mosley": 9.77e-07, + "motorsports": 9.77e-07, + "mush": 9.77e-07, + "narcissist": 9.77e-07, + "navigational": 9.77e-07, + "neolithic": 9.77e-07, + "nestle": 9.77e-07, + "normalization": 9.77e-07, + "nous": 9.77e-07, + "oahu": 9.77e-07, + "obsessing": 9.77e-07, + "oceania": 9.77e-07, + "offends": 9.77e-07, + "ola": 9.77e-07, + "onus": 9.77e-07, + "onyx": 9.77e-07, + "oppa": 9.77e-07, + "osteoporosis": 9.77e-07, + "othello": 9.77e-07, + "outfitted": 9.77e-07, + "outwards": 9.77e-07, + "paco": 9.77e-07, + "palazzo": 9.77e-07, + "panting": 9.77e-07, + "pawns": 9.77e-07, + "peering": 9.77e-07, + "perceptive": 9.77e-07, + "peri": 9.77e-07, + "perpetuating": 9.77e-07, + "phosphorylation": 9.77e-07, + "phuket": 9.77e-07, + "pianos": 7.94e-08, + "picker": 9.77e-07, + "poached": 9.77e-07, + "precautionary": 9.77e-07, + "precipitated": 9.77e-07, + "preside": 9.77e-07, + "primo": 9.77e-07, + "purportedly": 9.77e-07, + "ramona": 9.77e-07, + "rani": 9.77e-07, + "rayon": 9.77e-07, + "recessed": 9.77e-07, + "recklessly": 9.77e-07, + "redefined": 9.77e-07, + "reflux": 9.77e-07, + "regionally": 9.77e-07, + "reinhardt": 9.77e-07, + "reinstatement": 9.77e-07, + "relinquished": 9.77e-07, + "renovating": 9.77e-07, + "retriever": 9.77e-07, + "rigidity": 9.77e-07, + "ringtone": 9.77e-07, + "ritter": 9.77e-07, + "riveting": 9.77e-07, + "ronny": 9.77e-07, + "rosewood": 9.77e-07, + "sable": 9.77e-07, + "sars": 9.77e-07, + "scoops": 9.77e-07, + "scouring": 9.77e-07, + "sedative": 9.77e-07, + "senile": 9.77e-07, + "setter": 9.77e-07, + "sheesh": 9.77e-07, + "sher": 9.77e-07, + "shredding": 9.77e-07, + "shrouded": 9.77e-07, + "shuffled": 9.77e-07, + "sil": 9.77e-07, + "sips": 9.77e-07, + "skys": 9.77e-07, + "sleigh": 9.77e-07, + "sliders": 9.77e-07, + "sliver": 9.77e-07, + "slush": 9.77e-07, + "smelt": 9.77e-07, + "softness": 9.77e-07, + "solidify": 9.77e-07, + "sora": 9.77e-07, + "sordid": 9.77e-07, + "soundtracks": 9.77e-07, + "soybeans": 9.77e-07, + "sportsmen": 9.77e-07, + "sprawl": 9.77e-07, + "springboard": 9.77e-07, + "squashed": 9.77e-07, + "squatting": 9.77e-07, + "stasis": 1.29e-08, + "stirs": 9.77e-07, + "stonewall": 9.77e-07, + "storied": 9.77e-07, + "streamers": 9.77e-07, + "sultry": 9.77e-07, + "sustenance": 9.77e-07, + "swamped": 9.77e-07, + "swivel": 9.77e-07, + "tait": 9.77e-07, + "tearful": 9.77e-07, + "teri": 9.77e-07, + "terminates": 9.77e-07, + "thier": 9.77e-07, + "thrashing": 9.77e-07, + "toolbox": 9.77e-07, + "toying": 9.77e-07, + "transsexual": 9.77e-07, + "tuff": 9.77e-07, + "twitching": 9.77e-07, + "underdeveloped": 9.77e-07, + "undisturbed": 9.77e-07, + "unhelpful": 9.77e-07, + "uninformed": 9.77e-07, + "unkind": 9.77e-07, + "unresponsive": 9.77e-07, + "unscathed": 9.77e-07, + "unsupported": 9.77e-07, + "utd": 9.77e-07, + "utica": 9.77e-07, + "utrecht": 9.77e-07, + "uzi": 9.77e-07, + "vert": 9.77e-07, + "vindicated": 9.77e-07, + "warlock": 9.77e-07, + "waterhouse": 9.77e-07, + "wayside": 9.77e-07, + "whig": 9.77e-07, + "whirlpool": 9.77e-07, + "whiskers": 9.77e-07, + "whitish": 9.77e-07, + "wholesalers": 9.77e-07, + "wickham": 9.77e-07, + "willows": 1.48e-07, + "wishlist": 9.77e-07, + "woulda": 9.77e-07, + "wrexham": 9.77e-07, + "xm": 9.77e-07, + "zealous": 9.77e-07, + "aberration": 9.55e-07, + "ade": 9.55e-07, + "aditya": 9.55e-07, + "ailment": 9.55e-07, + "airstrike": 9.55e-07, + "airwaves": 9.55e-07, + "alerting": 9.55e-07, + "alonzo": 9.55e-07, + "antoinette": 9.55e-07, + "apricot": 9.55e-07, + "arbiter": 9.55e-07, + "arbitrator": 9.55e-07, + "archangel": 9.55e-07, + "armand": 9.55e-07, + "arte": 9.55e-07, + "arundel": 9.55e-07, + "atari": 9.55e-07, + "athleticism": 9.55e-07, + "axles": 9.55e-07, + "babu": 9.55e-07, + "bailing": 9.55e-07, + "baptiste": 9.55e-07, + "baptists": 9.55e-07, + "baritone": 9.55e-07, + "bayley": 9.55e-07, + "bbb": 9.55e-07, + "benefitted": 9.55e-07, + "bestow": 9.55e-07, + "beverley": 9.55e-07, + "bezos": 9.55e-07, + "blistering": 9.55e-07, + "bloodline": 9.55e-07, + "bmx": 9.55e-07, + "booby": 9.55e-07, + "borderlands": 9.55e-07, + "breaching": 9.55e-07, + "brees": 8.91e-08, + "brice": 9.55e-07, + "britton": 9.55e-07, + "brom": 9.55e-07, + "bromley": 9.55e-07, + "broward": 9.55e-07, + "bryn": 9.55e-07, + "bucs": 9.55e-07, + "buoyant": 9.55e-07, + "bushy": 9.55e-07, + "bustle": 9.55e-07, + "calculators": 9.55e-07, + "calms": 9.55e-07, + "caloric": 9.55e-07, + "campbells": 1.95e-07, + "captaincy": 9.55e-07, + "carbide": 9.55e-07, + "carmelo": 9.55e-07, + "carmine": 9.55e-07, + "caved": 9.55e-07, + "caverns": 9.55e-07, + "cca": 9.55e-07, + "cdt": 9.55e-07, + "chairmanship": 9.55e-07, + "chardonnay": 9.55e-07, + "checkmate": 9.55e-07, + "cheerfully": 9.55e-07, + "chou": 9.55e-07, + "clarissa": 9.55e-07, + "clem": 9.55e-07, + "clinician": 9.55e-07, + "clung": 9.55e-07, + "coals": 5.13e-08, + "cobain": 9.55e-07, + "coercive": 9.55e-07, + "collie": 9.55e-07, + "commenters": 9.55e-07, + "commercialization": 9.55e-07, + "conclusively": 9.55e-07, + "conduction": 9.55e-07, + "confided": 9.55e-07, + "conroy": 9.55e-07, + "constellations": 9.55e-07, + "consumerism": 9.55e-07, + "converters": 9.55e-07, + "convinces": 9.55e-07, + "copyrights": 9.55e-07, + "cosmology": 9.55e-07, + "cranston": 9.55e-07, + "criss": 9.55e-07, + "crumbled": 9.55e-07, + "curtail": 9.55e-07, + "daca": 9.55e-07, + "dakar": 9.55e-07, + "daydream": 9.55e-07, + "deafening": 9.55e-07, + "debuting": 9.55e-07, + "dedicating": 9.55e-07, + "detonate": 9.55e-07, + "dined": 9.55e-07, + "disarmed": 9.55e-07, + "disordered": 9.55e-07, + "divorcing": 9.55e-07, + "docker": 9.55e-07, + "docket": 9.55e-07, + "drifts": 9.55e-07, + "dy": 9.55e-07, + "earphones": 9.55e-07, + "edmunds": 9.12e-08, + "electrified": 9.55e-07, + "electrolytes": 9.55e-07, + "enchantment": 9.55e-07, + "endures": 9.55e-07, + "equated": 9.55e-07, + "esteban": 9.55e-07, + "expedited": 9.55e-07, + "experiential": 9.55e-07, + "faceless": 9.55e-07, + "factored": 9.55e-07, + "fascia": 9.55e-07, + "fasten": 9.55e-07, + "fatherland": 9.55e-07, + "fatigued": 9.55e-07, + "feasts": 9.55e-07, + "federalism": 9.55e-07, + "fey": 9.55e-07, + "figuratively": 9.55e-07, + "fizz": 9.55e-07, + "flatten": 9.55e-07, + "flopped": 9.55e-07, + "foiled": 9.55e-07, + "fonda": 9.55e-07, + "forester": 9.55e-07, + "fragility": 9.55e-07, + "frick": 9.55e-07, + "frigid": 9.55e-07, + "gallipoli": 9.55e-07, + "gasket": 9.55e-07, + "gemstone": 9.55e-07, + "ginny": 9.55e-07, + "goaltender": 9.55e-07, + "gonzaga": 9.55e-07, + "goodbyes": 9.55e-07, + "gory": 9.55e-07, + "granola": 9.55e-07, + "graphically": 9.55e-07, + "gre": 9.55e-07, + "groot": 9.55e-07, + "gushing": 9.55e-07, + "habitation": 9.55e-07, + "habs": 9.55e-07, + "hamiltons": 9.55e-08, + "hatchback": 9.55e-07, + "hawley": 9.55e-07, + "heirloom": 9.55e-07, + "hoisted": 9.55e-07, + "homing": 9.55e-07, + "hough": 9.55e-07, + "huntsman": 9.55e-07, + "hustler": 9.55e-07, + "hypothermia": 9.55e-07, + "img": 9.55e-07, + "impatience": 9.55e-07, + "indiscriminately": 9.55e-07, + "inquisitive": 9.55e-07, + "instructive": 9.55e-07, + "instructs": 9.55e-07, + "interlocking": 9.55e-07, + "introspection": 9.55e-07, + "invader": 9.55e-07, + "jaffa": 9.55e-07, + "jamestown": 9.55e-07, + "janata": 9.55e-07, + "jansen": 9.55e-07, + "jeffries": 9.55e-07, + "jocelyn": 9.55e-07, + "kamala": 9.55e-07, + "kari": 9.55e-07, + "kernels": 9.55e-07, + "khrushchev": 9.55e-07, + "kirsty": 9.55e-07, + "kors": 9.55e-07, + "lagged": 9.55e-07, + "lala": 9.55e-07, + "lancelot": 9.55e-07, + "lard": 9.55e-07, + "leblanc": 9.55e-07, + "leeway": 9.55e-07, + "lehmann": 9.55e-07, + "lexical": 9.55e-07, + "ley": 9.55e-07, + "lille": 9.55e-07, + "lob": 9.55e-07, + "lobsters": 9.55e-07, + "locale": 9.55e-07, + "loosened": 9.55e-07, + "ludlow": 9.55e-07, + "lutz": 9.55e-07, + "mademoiselle": 9.55e-07, + "maia": 9.55e-07, + "manifesting": 9.55e-07, + "marthas": 9.55e-07, + "maserati": 9.55e-07, + "matheson": 9.55e-07, + "mcu": 9.55e-07, + "memos": 9.55e-07, + "mena": 9.55e-07, + "menswear": 9.55e-07, + "meritorious": 9.55e-07, + "methadone": 9.55e-07, + "methanol": 9.55e-07, + "millet": 9.55e-07, + "misogynistic": 9.55e-07, + "misrepresentation": 9.55e-07, + "mistreatment": 9.55e-07, + "mitigated": 9.55e-07, + "moa": 9.55e-07, + "mocha": 9.55e-07, + "mockingbird": 9.55e-07, + "moriarty": 9.55e-07, + "motown": 9.55e-07, + "nagasaki": 9.55e-07, + "nea": 9.55e-07, + "negate": 9.55e-07, + "networked": 9.55e-07, + "nn": 9.55e-07, + "nomads": 9.55e-07, + "nonsensical": 9.55e-07, + "noor": 9.55e-07, + "noose": 9.55e-07, + "nordstrom": 9.55e-07, + "northrop": 9.55e-07, + "obstructed": 9.55e-07, + "offshoot": 9.55e-07, + "ointment": 9.55e-07, + "onscreen": 9.55e-07, + "onshore": 9.55e-07, + "ori": 9.55e-07, + "orthogonal": 9.55e-07, + "oss": 6.03e-08, + "ottomans": 9.55e-07, + "outnumber": 9.55e-07, + "outposts": 9.55e-07, + "overkill": 9.55e-07, + "overpowering": 9.55e-07, + "ovulation": 9.55e-07, + "pairings": 9.55e-07, + "paladin": 9.55e-07, + "parse": 9.55e-07, + "pegs": 9.55e-07, + "penises": 9.55e-07, + "perpetuated": 9.55e-07, + "petri": 9.55e-07, + "phasing": 9.55e-07, + "phnom": 9.55e-07, + "phrasing": 9.55e-07, + "pledging": 9.55e-07, + "pollination": 9.55e-07, + "pooled": 9.55e-07, + "postpartum": 9.55e-07, + "potions": 9.55e-07, + "pretzel": 9.55e-07, + "profusely": 9.55e-07, + "proletariat": 9.55e-07, + "promulgated": 9.55e-07, + "psu": 9.55e-07, + "puget": 9.55e-07, + "punctuated": 9.55e-07, + "punctured": 9.55e-07, + "punks": 3.24e-07, + "quadratic": 9.55e-07, + "raspberries": 9.55e-07, + "rebekah": 9.55e-07, + "recoup": 9.55e-07, + "rediscovered": 9.55e-07, + "remover": 9.55e-07, + "repelled": 9.55e-07, + "repertory": 9.55e-07, + "replicating": 9.55e-07, + "restructured": 9.55e-07, + "rhett": 9.55e-07, + "riddles": 7.59e-08, + "riga": 9.55e-07, + "roddy": 9.55e-07, + "rohit": 9.55e-07, + "rousing": 9.55e-07, + "roving": 9.55e-07, + "saas": 9.55e-07, + "sagan": 9.55e-07, + "sandman": 9.55e-07, + "sarahs": 9.55e-07, + "sass": 9.55e-07, + "savor": 9.55e-07, + "schofield": 9.55e-07, + "schoolteacher": 9.55e-07, + "schwab": 9.55e-07, + "seattles": 9.55e-07, + "senatorial": 9.55e-07, + "sexting": 9.55e-07, + "shankar": 9.55e-07, + "shimmer": 9.55e-07, + "shingle": 9.55e-07, + "shoplifting": 9.55e-07, + "simplification": 9.55e-07, + "simulating": 9.55e-07, + "sindh": 9.55e-07, + "sls": 9.55e-07, + "snatching": 9.55e-07, + "snooze": 9.55e-07, + "spasms": 9.55e-07, + "srs": 5.01e-08, + "staked": 9.55e-07, + "stillness": 9.55e-07, + "strikeouts": 9.55e-07, + "structuring": 9.55e-07, + "stupidly": 9.55e-07, + "subculture": 9.55e-07, + "substitutions": 9.55e-07, + "suitor": 9.55e-07, + "suitors": 9.55e-07, + "supposing": 9.55e-07, + "supt": 9.55e-07, + "taint": 3.55e-08, + "tantrums": 9.55e-07, + "tarp": 9.55e-07, + "tarts": 9.55e-07, + "terrell": 9.55e-07, + "thea": 9.55e-07, + "thiago": 9.55e-07, + "thoroughbred": 9.55e-07, + "tiara": 9.55e-07, + "totality": 9.55e-07, + "tranny": 9.55e-07, + "tremors": 9.55e-07, + "tupac": 9.55e-07, + "tyrants": 6.17e-08, + "ugliest": 9.55e-07, + "ugliness": 9.55e-07, + "unaccompanied": 9.55e-07, + "uncontrollably": 9.55e-07, + "underline": 9.55e-07, + "unduly": 9.55e-07, + "unincorporated": 9.55e-07, + "unsatisfied": 9.55e-07, + "venturing": 9.55e-07, + "victors": 3.89e-07, + "vikram": 9.55e-07, + "vimeo": 9.55e-07, + "vindictive": 9.55e-07, + "vinny": 9.55e-07, + "visor": 9.55e-07, + "volta": 9.55e-07, + "walrus": 9.55e-07, + "waynes": 1.41e-07, + "weighting": 9.55e-07, + "werewolves": 9.55e-07, + "withers": 9.55e-07, + "wrongfully": 9.55e-07, + "yanked": 9.55e-07, + "abercrombie": 9.33e-07, + "abhorrent": 9.33e-07, + "accelerates": 9.33e-07, + "acton": 9.33e-07, + "alder": 9.33e-07, + "allowable": 9.33e-07, + "ame": 9.33e-07, + "amex": 9.33e-07, + "amicable": 9.33e-07, + "amortization": 9.33e-07, + "anaconda": 9.33e-07, + "anaerobic": 9.33e-07, + "anchoring": 9.33e-07, + "ange": 9.33e-07, + "anglers": 9.33e-07, + "aniston": 9.33e-07, + "annihilated": 9.33e-07, + "antisemitic": 9.33e-07, + "antonia": 9.33e-07, + "arg": 9.33e-07, + "asc": 9.33e-07, + "ashford": 9.33e-07, + "ashraf": 9.33e-07, + "atrophy": 9.33e-07, + "aung": 9.33e-07, + "aviator": 9.33e-07, + "avoidable": 9.33e-07, + "ayr": 9.33e-07, + "bales": 2e-07, + "baring": 9.33e-07, + "baum": 9.33e-07, + "bebe": 9.33e-07, + "behemoth": 9.33e-07, + "benfica": 9.33e-07, + "bhp": 9.33e-07, + "bib": 9.33e-07, + "biebers": 9.33e-07, + "blackwood": 9.33e-07, + "blip": 9.33e-07, + "blount": 9.33e-07, + "bolshevik": 9.33e-07, + "bossy": 9.33e-07, + "bottleneck": 9.33e-07, + "bradbury": 9.33e-07, + "brandi": 9.33e-07, + "brenner": 9.33e-07, + "broadest": 9.33e-07, + "buccaneers": 9.33e-07, + "bumble": 9.33e-07, + "cabo": 9.33e-07, + "californians": 9.33e-07, + "callie": 9.33e-07, + "cambrian": 9.33e-07, + "camelot": 9.33e-07, + "camry": 9.33e-07, + "caribou": 9.33e-07, + "carnal": 9.33e-07, + "caro": 9.33e-07, + "carpentry": 9.33e-07, + "cataract": 9.33e-07, + "caterpillars": 5.37e-08, + "caustic": 9.33e-07, + "censoring": 9.33e-07, + "centrifugal": 9.33e-07, + "cfb": 9.33e-07, + "chechnya": 9.33e-07, + "chelmsford": 9.33e-07, + "chimpanzees": 9.33e-07, + "chum": 9.33e-07, + "circadian": 9.33e-07, + "claremont": 9.33e-07, + "clarifies": 9.33e-07, + "cleansed": 9.33e-07, + "clemency": 9.33e-07, + "clots": 9.33e-07, + "codified": 9.33e-07, + "colds": 9.33e-07, + "collab": 9.33e-07, + "confederates": 9.33e-07, + "constables": 1.1e-07, + "constabulary": 9.33e-07, + "coordinators": 9.33e-07, + "corinth": 9.33e-07, + "coroners": 3.8e-07, + "cote": 9.33e-07, + "crumb": 9.33e-07, + "ctr": 9.33e-07, + "cul": 9.33e-07, + "cushing": 9.33e-07, + "dames": 2.24e-07, + "darkly": 9.33e-07, + "davao": 9.33e-07, + "deactivate": 9.33e-07, + "deadlock": 9.33e-07, + "deathbed": 9.33e-07, + "deceitful": 9.33e-07, + "declan": 9.33e-07, + "deduce": 9.33e-07, + "deen": 9.33e-07, + "demented": 9.33e-07, + "denzel": 9.33e-07, + "devonshire": 9.33e-07, + "diddy": 9.33e-07, + "discernible": 9.33e-07, + "discharging": 9.33e-07, + "discourses": 9.33e-07, + "displace": 9.33e-07, + "displeased": 9.33e-07, + "dived": 9.33e-07, + "doge": 9.33e-07, + "dogged": 9.33e-07, + "dosing": 9.33e-07, + "drc": 9.33e-07, + "drury": 9.33e-07, + "duma": 9.33e-07, + "dylans": 9.33e-07, + "dynasties": 9.33e-07, + "ej": 9.33e-07, + "elated": 9.33e-07, + "elegantly": 9.33e-07, + "ember": 9.33e-07, + "embroiled": 9.33e-07, + "emmys": 9.33e-08, + "encampment": 9.33e-07, + "entitlements": 9.33e-07, + "equalizer": 9.33e-07, + "ergo": 9.33e-07, + "erskine": 9.33e-07, + "erupt": 9.33e-07, + "eugenics": 9.33e-07, + "evading": 9.33e-07, + "evaluates": 9.33e-07, + "evict": 9.33e-07, + "executor": 9.33e-07, + "expended": 9.33e-07, + "extremities": 9.33e-07, + "exuberant": 9.33e-07, + "fables": 9.33e-07, + "facsimile": 9.33e-07, + "fanciful": 9.33e-07, + "faraday": 9.33e-07, + "farting": 9.33e-07, + "feinstein": 9.33e-07, + "felons": 9.33e-07, + "ferrell": 9.33e-07, + "fez": 9.33e-07, + "fha": 9.33e-07, + "fillet": 9.33e-07, + "firmer": 9.33e-07, + "formaldehyde": 9.33e-07, + "fractal": 9.33e-07, + "franck": 9.33e-07, + "frida": 9.33e-07, + "fulfilment": 9.33e-07, + "fumbled": 9.33e-07, + "gaa": 9.33e-07, + "garter": 9.33e-07, + "gbp": 9.33e-07, + "gels": 9.33e-07, + "gentlemans": 9.33e-07, + "gerhard": 9.33e-07, + "gibberish": 9.33e-07, + "gifford": 9.33e-07, + "gifting": 9.33e-07, + "ginsburg": 9.33e-07, + "gleam": 9.33e-07, + "goff": 9.33e-07, + "goode": 9.33e-07, + "gordons": 1.1e-07, + "goss": 9.33e-07, + "gower": 9.33e-07, + "grandiose": 9.33e-07, + "growling": 9.33e-07, + "guerra": 9.33e-07, + "gummy": 9.33e-07, + "hag": 9.33e-07, + "handel": 9.33e-07, + "harmonica": 9.33e-07, + "hasbro": 9.33e-07, + "headlight": 9.33e-07, + "headsets": 9.33e-07, + "hera": 9.33e-07, + "hobson": 9.33e-07, + "housemate": 9.33e-07, + "hsu": 9.33e-07, + "humphreys": 9.77e-08, + "huston": 9.33e-07, + "icarus": 9.33e-07, + "idiom": 9.33e-07, + "iec": 9.33e-07, + "impersonating": 9.33e-07, + "impossibly": 9.33e-07, + "impressively": 9.33e-07, + "indulged": 9.33e-07, + "inexperience": 9.33e-07, + "inferiority": 9.33e-07, + "infuriated": 9.33e-07, + "inquired": 9.33e-07, + "inquirer": 9.33e-07, + "instilled": 9.33e-07, + "intently": 9.33e-07, + "intents": 9.33e-07, + "intoxicating": 9.33e-07, + "iota": 9.33e-07, + "jaded": 9.33e-07, + "jihadists": 9.33e-07, + "jn": 9.33e-07, + "jovi": 9.33e-07, + "juju": 9.33e-07, + "kaepernick": 9.33e-07, + "kafka": 9.33e-07, + "kates": 1.55e-07, + "keyes": 9.33e-07, + "koo": 9.33e-07, + "labored": 9.33e-07, + "lambeth": 9.33e-07, + "landslides": 9.33e-07, + "leno": 9.33e-07, + "lightness": 9.33e-07, + "liquidated": 9.33e-07, + "lovell": 9.33e-07, + "lubrication": 9.33e-07, + "lunatics": 9.33e-07, + "lustre": 9.33e-07, + "maddy": 9.33e-07, + "mako": 9.33e-07, + "mandalay": 9.33e-07, + "mauricio": 9.33e-07, + "maxima": 9.33e-07, + "mcclellan": 9.33e-07, + "mcculloch": 9.33e-07, + "mehta": 9.33e-07, + "methamphetamine": 9.33e-07, + "mex": 9.33e-07, + "midas": 9.33e-07, + "mobilizing": 9.33e-07, + "modernisation": 9.33e-07, + "modernized": 9.33e-07, + "modis": 1.45e-07, + "mongol": 9.33e-07, + "mortified": 9.33e-07, + "moshe": 9.33e-07, + "motionless": 9.33e-07, + "mpa": 9.33e-07, + "msn": 9.33e-07, + "mullet": 9.33e-07, + "naga": 9.33e-07, + "navigable": 9.33e-07, + "negotiators": 9.33e-07, + "niggers": 9.33e-07, + "nikola": 9.33e-07, + "nothingness": 9.33e-07, + "obe": 9.33e-07, + "odors": 9.33e-07, + "offensively": 9.33e-07, + "openers": 9.33e-07, + "orchestras": 3.16e-07, + "ores": 9.33e-07, + "oskar": 9.33e-07, + "ota": 9.33e-07, + "overjoyed": 9.33e-07, + "pacemaker": 9.33e-07, + "pagans": 9.33e-07, + "pallets": 9.33e-07, + "pandering": 9.33e-07, + "panty": 9.33e-07, + "paraphernalia": 9.33e-07, + "perl": 9.33e-07, + "pessimism": 9.33e-07, + "petes": 1.55e-07, + "petrie": 9.33e-07, + "petrochemical": 9.33e-07, + "plums": 9.33e-07, + "polyethylene": 9.33e-07, + "pooch": 9.33e-07, + "pooling": 9.33e-07, + "poppins": 9.33e-07, + "popularized": 9.33e-07, + "posterity": 9.33e-07, + "posthumous": 9.33e-07, + "pounce": 9.33e-07, + "pragmatism": 9.33e-07, + "projectors": 9.33e-07, + "proprietors": 9.33e-07, + "protestantism": 9.33e-07, + "qs": 4.47e-07, + "quan": 9.33e-07, + "quantified": 9.33e-07, + "receding": 9.33e-07, + "recognisable": 9.33e-07, + "recombination": 9.33e-07, + "recounting": 9.33e-07, + "rehabilitated": 9.33e-07, + "rejoicing": 9.33e-07, + "repayments": 9.33e-07, + "reprehensible": 9.33e-07, + "republished": 9.33e-07, + "resentful": 9.33e-07, + "rewatch": 9.33e-07, + "rhonda": 9.33e-07, + "rhubarb": 9.33e-07, + "riverdale": 9.33e-07, + "romanticism": 9.33e-07, + "rutland": 9.33e-07, + "ry": 9.33e-07, + "salesmen": 9.33e-07, + "sapiens": 9.33e-07, + "savers": 9.33e-07, + "scammed": 9.33e-07, + "scathing": 9.33e-07, + "scour": 9.33e-07, + "seagulls": 9.33e-07, + "serviceable": 9.33e-07, + "shanks": 9.33e-07, + "shearer": 9.33e-07, + "shimmering": 9.33e-07, + "shoals": 9.33e-07, + "shredder": 9.33e-07, + "shreveport": 9.33e-07, + "siamese": 9.33e-07, + "sienna": 9.33e-07, + "signifying": 9.33e-07, + "silvia": 9.33e-07, + "simplex": 9.33e-07, + "singaporean": 9.33e-07, + "sith": 9.33e-07, + "smokin": 9.33e-07, + "snorting": 9.33e-07, + "snows": 3.31e-07, + "sociable": 9.33e-07, + "socializing": 9.33e-07, + "soiled": 9.33e-07, + "soundly": 9.33e-07, + "speculations": 9.33e-07, + "sprinkling": 9.33e-07, + "ssi": 9.33e-07, + "standup": 9.33e-07, + "steves": 1.51e-07, + "stifling": 9.33e-07, + "stl": 9.33e-07, + "strayed": 9.33e-07, + "stunted": 9.33e-07, + "suh": 9.33e-07, + "supremacists": 9.33e-07, + "swastika": 9.33e-07, + "symbolically": 9.33e-07, + "talkative": 9.33e-07, + "talon": 9.33e-07, + "teleport": 9.33e-07, + "tenths": 9.33e-07, + "tes": 9.33e-07, + "thoughtfully": 9.33e-07, + "thr": 9.33e-07, + "thrillers": 9.33e-07, + "thump": 9.33e-07, + "totalled": 9.33e-07, + "trombone": 9.33e-07, + "truer": 9.33e-07, + "tun": 9.33e-07, + "tyrannical": 9.33e-07, + "ug": 9.33e-07, + "underscore": 9.33e-07, + "unlocks": 9.33e-07, + "untill": 9.33e-07, + "unusable": 9.33e-07, + "uprisings": 9.33e-07, + "valdez": 9.33e-07, + "vandals": 9.33e-07, + "varanasi": 9.33e-07, + "vented": 9.33e-07, + "ventilator": 9.33e-07, + "vertebrate": 9.33e-07, + "violets": 1.66e-07, + "waite": 9.33e-07, + "warehousing": 9.33e-07, + "warlords": 5.25e-08, + "watermark": 9.33e-07, + "waverly": 9.33e-07, + "weathering": 9.33e-07, + "webcast": 9.33e-07, + "wellesley": 9.33e-07, + "westport": 9.33e-07, + "wielded": 9.33e-07, + "winona": 9.33e-07, + "yahweh": 9.33e-07, + "yearn": 9.33e-07, + "yolanda": 9.33e-07, + "yonder": 9.33e-07, + "zionists": 9.33e-07, + "ababa": 9.12e-07, + "abandons": 9.12e-07, + "admires": 9.12e-07, + "affirms": 9.12e-07, + "afghans": 9.12e-07, + "agro": 9.12e-07, + "airtime": 9.12e-07, + "aldi": 9.12e-07, + "alibaba": 9.12e-07, + "alices": 9.12e-07, + "allocating": 9.12e-07, + "altman": 9.12e-07, + "ano": 9.12e-07, + "antithesis": 9.12e-07, + "arable": 9.12e-07, + "archetype": 9.12e-07, + "argyle": 9.12e-07, + "aristocrats": 9.12e-07, + "arlene": 9.12e-07, + "armin": 9.12e-07, + "arun": 9.12e-07, + "ashby": 9.12e-07, + "assyrian": 9.12e-07, + "ath": 9.12e-07, + "atrial": 9.12e-07, + "auditioning": 9.12e-07, + "avatars": 1e-07, + "avenged": 9.12e-07, + "awesomeness": 9.12e-07, + "ayn": 9.12e-07, + "bambi": 9.12e-07, + "bautista": 9.12e-07, + "bengaluru": 9.12e-07, + "bereavement": 9.12e-07, + "bertram": 9.12e-07, + "bikinis": 9.12e-07, + "bionic": 9.12e-07, + "blurring": 9.12e-07, + "boardroom": 9.12e-07, + "bobcats": 9.12e-07, + "bok": 9.12e-07, + "bondi": 9.12e-07, + "bonner": 9.12e-07, + "bottomless": 9.12e-07, + "bpm": 9.12e-07, + "brando": 9.12e-07, + "breakfasts": 9.12e-07, + "bsa": 9.12e-07, + "buena": 9.12e-07, + "bunches": 9.12e-07, + "burundi": 9.12e-07, + "caa": 9.12e-07, + "caddy": 9.12e-07, + "cade": 9.12e-07, + "caledonian": 9.12e-07, + "cautions": 9.12e-07, + "cee": 9.12e-07, + "cellphones": 9.12e-07, + "cetera": 9.12e-07, + "chandigarh": 9.12e-07, + "charted": 9.12e-07, + "chasm": 9.12e-07, + "chevalier": 9.12e-07, + "chimpanzee": 9.12e-07, + "chisel": 9.12e-07, + "choirs": 7.59e-08, + "cinder": 9.12e-07, + "cirque": 9.12e-07, + "coax": 9.12e-07, + "coincidences": 9.12e-07, + "commences": 9.12e-07, + "commenter": 9.12e-07, + "communicator": 9.12e-07, + "complies": 9.12e-07, + "comprehensively": 9.12e-07, + "condor": 9.12e-07, + "confectionery": 9.12e-07, + "confrontations": 9.12e-07, + "contented": 9.12e-07, + "coverings": 9.12e-07, + "crabtree": 9.12e-07, + "crass": 9.12e-07, + "crewe": 9.12e-07, + "cuddles": 9.12e-07, + "cull": 9.12e-07, + "culver": 9.12e-07, + "cymru": 9.12e-07, + "cz": 9.12e-07, + "dac": 9.12e-07, + "deference": 9.12e-07, + "delirium": 9.12e-07, + "deportations": 9.12e-07, + "descartes": 9.12e-07, + "devoting": 9.12e-07, + "diabolical": 9.12e-07, + "dilated": 9.12e-07, + "disarray": 9.12e-07, + "disinformation": 9.12e-07, + "disintegrated": 9.12e-07, + "dismayed": 9.12e-07, + "disregarding": 9.12e-07, + "dolby": 9.12e-07, + "ebert": 9.12e-07, + "edwardian": 9.12e-07, + "elector": 9.12e-07, + "eloquently": 9.12e-07, + "emojis": 9.12e-07, + "expendable": 9.12e-07, + "factoring": 9.12e-07, + "falkirk": 9.12e-07, + "falklands": 9.12e-07, + "fantastical": 9.12e-07, + "farmington": 9.12e-07, + "fennel": 9.12e-07, + "fetching": 9.12e-07, + "fieldwork": 9.12e-07, + "filipina": 9.12e-07, + "firework": 9.12e-07, + "firsts": 7.94e-08, + "flattery": 9.12e-07, + "fleur": 9.12e-07, + "foolishly": 9.12e-07, + "foreseen": 9.12e-07, + "forgives": 9.12e-07, + "forked": 9.12e-07, + "formulating": 9.12e-07, + "fracturing": 9.12e-07, + "freedman": 9.12e-07, + "frisbee": 9.12e-07, + "futility": 9.12e-07, + "gaal": 9.12e-07, + "gabi": 9.12e-07, + "geiger": 9.12e-07, + "geraldine": 9.12e-07, + "grantham": 9.12e-07, + "greenpeace": 9.12e-07, + "gruber": 9.12e-07, + "hamlets": 1.62e-07, + "handover": 9.12e-07, + "hardin": 9.12e-07, + "hedging": 9.12e-07, + "helens": 5.25e-07, + "heroines": 1.2e-07, + "herzog": 9.12e-07, + "hexagonal": 9.12e-07, + "hipsters": 9.12e-07, + "hiro": 9.12e-07, + "hospitable": 9.12e-07, + "hummingbird": 9.12e-07, + "ight": 9.12e-07, + "impactful": 9.12e-07, + "impasse": 9.12e-07, + "impotence": 9.12e-07, + "increment": 9.12e-07, + "incursions": 9.12e-07, + "inescapable": 9.12e-07, + "infecting": 9.12e-07, + "intermediaries": 9.12e-07, + "invertebrates": 9.12e-07, + "ipc": 9.12e-07, + "jama": 9.12e-07, + "jester": 9.12e-07, + "jihadist": 9.12e-07, + "jockeys": 6.17e-08, + "juxtaposition": 9.12e-07, + "kashmiri": 9.12e-07, + "kaya": 9.12e-07, + "kazakh": 9.12e-07, + "keene": 9.12e-07, + "kinect": 9.12e-07, + "kites": 9.12e-07, + "kline": 9.12e-07, + "kofi": 9.12e-07, + "kok": 9.12e-07, + "kongs": 6.03e-08, + "lesnar": 9.12e-07, + "ligue": 9.12e-07, + "likable": 9.12e-07, + "limping": 9.12e-07, + "lineups": 9.12e-07, + "lloyds": 6.76e-07, + "luisa": 9.12e-07, + "luster": 9.12e-07, + "luthor": 9.12e-07, + "madeira": 9.12e-07, + "maduro": 9.12e-07, + "mais": 9.12e-08, + "majoring": 9.12e-07, + "majorities": 9.12e-07, + "marcy": 9.12e-07, + "maris": 6.03e-08, + "maw": 9.12e-07, + "mbc": 9.12e-07, + "mcclure": 9.12e-07, + "mcg": 9.12e-07, + "melatonin": 9.12e-07, + "mesmerizing": 9.12e-07, + "metaphorically": 9.12e-07, + "millwall": 9.12e-07, + "mindanao": 9.12e-07, + "misread": 9.12e-07, + "misrepresented": 9.12e-07, + "mme": 9.12e-07, + "modulated": 9.12e-07, + "mousse": 9.12e-07, + "nai": 9.12e-07, + "naught": 9.12e-07, + "ncr": 9.12e-07, + "necessitated": 9.12e-07, + "nitrous": 9.12e-07, + "northamptonshire": 9.12e-07, + "obstructive": 9.12e-07, + "occupiers": 9.12e-07, + "odell": 3.55e-07, + "odour": 9.12e-07, + "olivers": 6.46e-08, + "ord": 9.12e-07, + "oreo": 9.12e-07, + "orientated": 9.12e-07, + "oscillation": 9.12e-07, + "oscillator": 9.12e-07, + "outrun": 9.12e-07, + "ov": 9.12e-07, + "overpass": 9.12e-07, + "pampered": 9.12e-07, + "paprika": 9.12e-07, + "patagonia": 9.12e-07, + "pathogenic": 9.12e-07, + "peeking": 9.12e-07, + "persevere": 9.12e-07, + "pfeiffer": 9.12e-07, + "pfft": 9.12e-07, + "piped": 9.12e-07, + "pisces": 9.12e-07, + "plasticity": 9.12e-07, + "playfully": 9.12e-07, + "polymerase": 9.12e-07, + "practicality": 9.12e-07, + "prawns": 9.12e-07, + "precedents": 9.12e-07, + "prerequisites": 9.12e-07, + "pretzels": 9.12e-07, + "proclaims": 9.12e-07, + "procrastination": 9.12e-07, + "profane": 9.12e-07, + "profiting": 9.12e-07, + "prospecting": 9.12e-07, + "prune": 9.12e-07, + "pte": 9.12e-07, + "putative": 9.12e-07, + "pyjamas": 9.12e-07, + "quirks": 9.12e-07, + "racine": 9.12e-07, + "radiate": 9.12e-07, + "raton": 9.12e-07, + "reaping": 9.12e-07, + "rectum": 9.12e-07, + "refrigerators": 9.12e-07, + "regressive": 9.12e-07, + "regrettable": 9.12e-07, + "reprise": 9.12e-07, + "restorative": 9.12e-07, + "rfc": 9.12e-07, + "rhyming": 9.12e-07, + "rigby": 9.12e-07, + "rojo": 9.12e-07, + "rumbling": 9.12e-07, + "salinity": 9.12e-07, + "samsungs": 9.12e-07, + "sandusky": 9.12e-07, + "scolded": 9.12e-07, + "scrooge": 9.12e-07, + "seb": 9.12e-07, + "sena": 9.12e-07, + "serials": 9.12e-07, + "shakira": 9.12e-07, + "shep": 9.12e-07, + "shipyards": 9.12e-07, + "shovels": 9.12e-07, + "silt": 9.12e-07, + "sisterhood": 9.12e-07, + "sketched": 9.12e-07, + "slr": 9.12e-07, + "sma": 9.12e-07, + "smuggler": 9.12e-07, + "snape": 9.12e-07, + "snob": 9.12e-07, + "sodomy": 9.12e-07, + "soe": 9.12e-07, + "soldering": 9.12e-07, + "solubility": 9.12e-07, + "somers": 9.12e-07, + "sonnet": 9.12e-07, + "spacey": 9.12e-07, + "spalding": 9.12e-07, + "spectrometry": 9.12e-07, + "spurious": 9.12e-07, + "strat": 9.12e-07, + "subgroups": 9.12e-07, + "substandard": 9.12e-07, + "sugarcane": 9.12e-07, + "sundown": 9.12e-07, + "suspecting": 9.12e-07, + "swingers": 9.12e-07, + "swiping": 9.12e-07, + "synths": 9.12e-07, + "takeaways": 9.12e-07, + "talker": 9.12e-07, + "talmud": 9.12e-07, + "taunt": 9.12e-07, + "taunts": 9.12e-07, + "tensile": 9.12e-07, + "tether": 9.12e-07, + "thayer": 9.12e-07, + "thundering": 9.12e-07, + "tightness": 9.12e-07, + "tinkering": 9.12e-07, + "todo": 9.12e-07, + "toothless": 9.12e-07, + "trayvon": 9.12e-07, + "troubleshooting": 9.12e-07, + "truffles": 9.12e-07, + "turkmenistan": 9.12e-07, + "turntable": 9.12e-07, + "tuttle": 9.12e-07, + "underdogs": 9.12e-07, + "understandings": 9.12e-07, + "undressed": 9.12e-07, + "unknowns": 9.12e-07, + "uruguayan": 9.12e-07, + "usaid": 9.12e-07, + "utilise": 9.12e-07, + "valhalla": 9.12e-07, + "validating": 9.12e-07, + "vasquez": 9.12e-07, + "vermin": 9.12e-07, + "vertebrates": 9.12e-07, + "vertices": 9.12e-07, + "voltages": 9.12e-07, + "wack": 9.12e-07, + "wardens": 1.41e-07, + "weaves": 9.12e-07, + "weirdos": 9.12e-07, + "wentz": 9.12e-07, + "westinghouse": 9.12e-07, + "whatd": 9.12e-07, + "whirl": 9.12e-07, + "widget": 9.12e-07, + "wineries": 9.12e-07, + "witt": 9.12e-07, + "woodbridge": 9.12e-07, + "workman": 9.12e-07, + "wrights": 1.82e-07, + "ypg": 9.12e-07, + "zap": 9.12e-07, + "zucchini": 9.12e-07, + "aborigines": 8.91e-07, + "abreast": 8.91e-07, + "absurdly": 8.91e-07, + "abv": 8.91e-07, + "ach": 8.91e-07, + "activision": 8.91e-07, + "adage": 8.91e-07, + "aguilera": 8.91e-07, + "airtight": 8.91e-07, + "albans": 8.91e-07, + "alls": 4.37e-07, + "altruistic": 8.91e-07, + "amalgamated": 8.91e-07, + "amorphous": 8.91e-07, + "annulled": 8.91e-07, + "anthems": 8.91e-07, + "antioxidants": 8.91e-07, + "antlers": 8.91e-07, + "anu": 8.91e-07, + "aquaman": 8.91e-07, + "argh": 8.91e-07, + "armaments": 8.91e-07, + "arroyo": 8.91e-07, + "atms": 7.41e-08, + "audacious": 8.91e-07, + "audubon": 8.91e-07, + "aur": 8.91e-07, + "auth": 8.91e-07, + "balboa": 8.91e-07, + "battleships": 8.91e-07, + "bayesian": 8.91e-07, + "befriended": 8.91e-07, + "beheading": 8.91e-07, + "bff": 8.91e-07, + "blaring": 8.91e-07, + "bolder": 8.91e-07, + "bookies": 8.91e-07, + "boolean": 8.91e-07, + "bourke": 8.91e-07, + "boyer": 8.91e-07, + "brash": 8.91e-07, + "breads": 8.91e-07, + "brookfield": 8.91e-07, + "bumpers": 8.91e-07, + "buoyancy": 8.91e-07, + "burglars": 8.91e-07, + "businesswoman": 8.91e-07, + "buttermilk": 8.91e-07, + "bypassed": 8.91e-07, + "cai": 8.91e-07, + "caledonia": 8.91e-07, + "camila": 8.91e-07, + "campaigners": 8.91e-07, + "canisters": 8.91e-07, + "captioned": 8.91e-07, + "captors": 8.91e-07, + "cassius": 8.91e-07, + "cautionary": 8.91e-07, + "cayenne": 8.91e-07, + "centering": 8.91e-07, + "chez": 8.91e-07, + "chimp": 8.91e-07, + "chromatography": 8.91e-07, + "classifying": 8.91e-07, + "cleary": 8.91e-07, + "clitoris": 8.91e-07, + "coincidental": 8.91e-07, + "colliding": 8.91e-07, + "colliery": 8.91e-07, + "consonants": 8.91e-07, + "constituting": 8.91e-07, + "corcoran": 8.91e-07, + "coriander": 8.91e-07, + "couches": 8.91e-07, + "critters": 8.91e-07, + "croc": 8.91e-07, + "crucially": 8.91e-07, + "cruelly": 8.91e-07, + "daleks": 8.91e-07, + "damnation": 8.91e-07, + "darfur": 8.91e-07, + "daves": 1.17e-07, + "debtors": 1.05e-07, + "debunked": 8.91e-07, + "decorator": 8.91e-07, + "deletes": 8.91e-07, + "delgado": 8.91e-07, + "delirious": 8.91e-07, + "denser": 8.91e-07, + "deo": 8.91e-07, + "dependents": 8.91e-07, + "deriving": 8.91e-07, + "detractors": 8.91e-07, + "dhoni": 8.91e-07, + "didi": 8.91e-07, + "differentiating": 8.91e-07, + "disconcerting": 8.91e-07, + "disingenuous": 8.91e-07, + "dissipate": 8.91e-07, + "dn": 8.91e-07, + "dooley": 8.91e-07, + "doran": 8.91e-07, + "dreamworks": 8.91e-07, + "dressings": 8.91e-07, + "dunedin": 8.91e-07, + "easterly": 8.91e-07, + "edema": 8.91e-07, + "edmonds": 8.91e-07, + "elapsed": 8.91e-07, + "ellsworth": 8.91e-07, + "empowers": 8.91e-07, + "encode": 8.91e-07, + "enrico": 8.91e-07, + "enterprising": 8.91e-07, + "eriksen": 8.91e-07, + "erupts": 8.91e-07, + "ets": 7.94e-08, + "exacting": 8.91e-07, + "expectant": 8.91e-07, + "exponent": 8.91e-07, + "extravaganza": 8.91e-07, + "faisal": 8.91e-07, + "falcao": 8.91e-07, + "falco": 8.91e-07, + "farr": 8.91e-07, + "fcs": 2.82e-07, + "filaments": 8.91e-07, + "findlay": 8.91e-07, + "finishers": 8.91e-07, + "flack": 8.91e-07, + "foaming": 8.91e-07, + "forma": 8.91e-07, + "forman": 8.91e-07, + "freebies": 8.91e-07, + "frye": 8.91e-07, + "fuming": 8.91e-07, + "fung": 8.91e-07, + "galen": 8.91e-07, + "ganesh": 8.91e-07, + "garza": 8.91e-07, + "geriatric": 8.91e-07, + "gleaned": 8.91e-07, + "globalisation": 8.91e-07, + "goddammit": 8.91e-07, + "goddamned": 8.91e-07, + "goodluck": 8.91e-07, + "grasslands": 8.91e-07, + "grays": 6.76e-07, + "guidebook": 8.91e-07, + "halved": 8.91e-07, + "hardline": 8.91e-07, + "haves": 8.91e-07, + "hel": 8.91e-07, + "herding": 8.91e-07, + "hereinafter": 8.91e-07, + "hiked": 8.91e-07, + "hindustan": 8.91e-07, + "hiram": 8.91e-07, + "historia": 8.91e-07, + "hoes": 8.91e-07, + "holman": 8.91e-07, + "honk": 8.91e-07, + "hotspots": 8.91e-07, + "houstons": 8.91e-07, + "hungover": 8.91e-07, + "hur": 8.91e-07, + "hwa": 8.91e-07, + "iam": 8.91e-07, + "importers": 8.91e-07, + "impure": 8.91e-07, + "incheon": 8.91e-07, + "incursion": 8.91e-07, + "inexcusable": 8.91e-07, + "influencer": 8.91e-07, + "inhibitory": 8.91e-07, + "installs": 8.91e-07, + "integrative": 8.91e-07, + "intl": 6.17e-07, + "inuit": 8.91e-07, + "invisibility": 8.91e-07, + "jermaine": 8.91e-07, + "jiu": 8.91e-07, + "keats": 8.91e-07, + "kilmarnock": 8.91e-07, + "kimono": 8.91e-07, + "kmart": 8.91e-07, + "knickers": 8.91e-07, + "kuhn": 8.91e-07, + "langston": 8.91e-07, + "leiden": 8.91e-07, + "lessened": 8.91e-07, + "liege": 8.91e-07, + "lightest": 8.91e-07, + "lightsaber": 8.91e-07, + "limbaugh": 8.91e-07, + "lingers": 8.91e-07, + "lipids": 8.91e-07, + "llama": 8.91e-07, + "looped": 8.91e-07, + "loosening": 8.91e-07, + "loudspeaker": 8.91e-07, + "lowes": 4.9e-07, + "lynda": 8.91e-07, + "macfarlane": 8.91e-07, + "macron": 8.91e-07, + "marisa": 8.91e-07, + "marketer": 8.91e-07, + "marko": 8.91e-07, + "mascots": 8.91e-07, + "mcfadden": 8.91e-07, + "mcnally": 8.91e-07, + "mcneil": 8.91e-07, + "mcs": 2.63e-07, + "mediators": 8.91e-07, + "minster": 8.91e-07, + "mongering": 8.91e-07, + "monotonous": 8.91e-07, + "morbidity": 8.91e-07, + "motherwell": 8.91e-07, + "multipurpose": 8.91e-07, + "muscat": 8.91e-07, + "muttering": 8.91e-07, + "naturalized": 8.91e-07, + "navel": 8.91e-07, + "neanderthal": 8.91e-07, + "newbies": 8.91e-07, + "nippon": 8.91e-07, + "nitric": 8.91e-07, + "northerly": 8.91e-07, + "orourke": 8.91e-07, + "obsidian": 8.91e-07, + "oe": 8.91e-07, + "overlaps": 8.91e-07, + "paging": 8.91e-07, + "palettes": 8.91e-07, + "parliamentarians": 8.91e-07, + "parnell": 8.91e-07, + "payed": 8.91e-07, + "pda": 8.91e-07, + "penang": 8.91e-07, + "penrith": 8.91e-07, + "pent": 8.91e-07, + "perky": 8.91e-07, + "phishing": 8.91e-07, + "plundered": 8.91e-07, + "pocahontas": 8.91e-07, + "polarizing": 8.91e-07, + "pomp": 8.91e-07, + "popper": 8.91e-07, + "priestess": 8.91e-07, + "prohibitive": 8.91e-07, + "psd": 8.91e-07, + "quakers": 8.91e-07, + "quarantined": 8.91e-07, + "quotient": 8.91e-07, + "rac": 8.91e-07, + "rajiv": 8.91e-07, + "raking": 8.91e-07, + "rami": 8.91e-07, + "realtors": 8.91e-07, + "rebelled": 8.91e-07, + "redefining": 8.91e-07, + "redness": 8.91e-07, + "reelected": 8.91e-07, + "resonated": 8.91e-07, + "retelling": 8.91e-07, + "reuniting": 8.91e-07, + "rios": 3.24e-07, + "roh": 8.91e-07, + "romanians": 8.91e-07, + "saba": 8.91e-07, + "sabbatical": 8.91e-07, + "sabotaging": 8.91e-07, + "sachin": 8.91e-07, + "sadder": 8.91e-07, + "sailboat": 8.91e-07, + "salaried": 8.91e-07, + "salmond": 8.91e-07, + "sancho": 8.91e-07, + "sansa": 8.91e-07, + "satans": 8.13e-08, + "saws": 8.91e-07, + "saxony": 8.91e-07, + "scallops": 8.91e-07, + "scammer": 8.91e-07, + "schubert": 8.91e-07, + "scottie": 8.91e-07, + "searing": 8.91e-07, + "secreted": 8.91e-07, + "sedation": 8.91e-07, + "sexier": 8.91e-07, + "shamelessly": 8.91e-07, + "shih": 8.91e-07, + "shithole": 8.91e-07, + "shivers": 8.91e-07, + "siena": 8.91e-07, + "sleepover": 8.91e-07, + "slingshot": 8.91e-07, + "slurry": 8.91e-07, + "smarts": 1.41e-07, + "sosa": 8.91e-07, + "sown": 8.91e-07, + "spc": 8.91e-07, + "spf": 8.91e-07, + "spitfire": 8.91e-07, + "sprinkles": 8.91e-07, + "src": 8.91e-07, + "stashed": 8.91e-07, + "steampunk": 8.91e-07, + "steed": 8.91e-07, + "stewarts": 1.62e-07, + "stfu": 8.91e-07, + "stints": 8.91e-07, + "strongholds": 8.91e-07, + "stumped": 8.91e-07, + "stutter": 8.91e-07, + "subspecies": 8.91e-07, + "subvert": 8.91e-07, + "sunburn": 8.91e-07, + "suny": 8.91e-07, + "supplementation": 8.91e-07, + "swerve": 8.91e-07, + "tampered": 8.91e-07, + "tarnished": 8.91e-07, + "taunton": 8.91e-07, + "termites": 8.91e-07, + "testicular": 8.91e-07, + "thompsons": 1.38e-07, + "tiller": 8.91e-07, + "tooling": 8.91e-07, + "topological": 8.91e-07, + "topple": 8.91e-07, + "transcendent": 8.91e-07, + "trapper": 8.91e-07, + "trickery": 8.91e-07, + "triton": 8.91e-07, + "trucker": 8.91e-07, + "truckers": 8.91e-07, + "tulips": 8.91e-07, + "turban": 8.91e-07, + "turners": 3.31e-07, + "tusk": 8.91e-07, + "ubisoft": 8.91e-07, + "undertakes": 8.91e-07, + "unending": 8.91e-07, + "unforgiving": 8.91e-07, + "uninstall": 8.91e-07, + "unplug": 8.91e-07, + "unproven": 8.91e-07, + "usain": 8.91e-07, + "vac": 8.91e-07, + "valium": 8.91e-07, + "vcr": 8.91e-07, + "ven": 8.91e-07, + "wanker": 8.91e-07, + "watchmen": 8.91e-07, + "wba": 8.91e-07, + "whitfield": 8.91e-07, + "willem": 8.91e-07, + "wl": 8.91e-07, + "wrigley": 8.91e-07, + "xy": 8.91e-07, + "yarmouth": 8.91e-07, + "yolo": 8.91e-07, + "zagreb": 8.91e-07, + "zlatan": 8.91e-07, + "acp": 8.71e-07, + "adrienne": 8.71e-07, + "aff": 8.71e-07, + "affixed": 8.71e-07, + "aguilar": 8.71e-07, + "airbags": 8.71e-07, + "albright": 8.71e-07, + "alkali": 8.71e-07, + "allusion": 8.71e-07, + "almeida": 8.71e-07, + "altruism": 8.71e-07, + "ambience": 8.71e-07, + "amphibians": 8.71e-07, + "andover": 8.71e-07, + "annabelle": 8.71e-07, + "anomalous": 8.71e-07, + "anson": 8.71e-07, + "antioxidant": 8.71e-07, + "apk": 8.71e-07, + "armitage": 8.71e-07, + "asos": 8.71e-07, + "assemblage": 8.71e-07, + "astm": 8.71e-07, + "astor": 8.71e-07, + "astounded": 8.71e-07, + "auld": 8.71e-07, + "austrians": 8.71e-07, + "autocorrect": 8.71e-07, + "baht": 8.71e-07, + "barrington": 8.71e-07, + "barrys": 8.71e-07, + "bec": 8.71e-07, + "benito": 8.71e-07, + "bev": 8.71e-07, + "bevan": 8.71e-07, + "birdman": 8.71e-07, + "birthing": 8.71e-07, + "boehner": 8.71e-07, + "boggs": 8.71e-07, + "bosh": 8.71e-07, + "bosss": 8.71e-07, + "bowden": 8.71e-07, + "boycotted": 8.71e-07, + "brandenburg": 8.71e-07, + "bulgarians": 8.71e-07, + "bureaus": 5.25e-07, + "burritos": 8.71e-07, + "butthole": 8.71e-07, + "campos": 8.71e-07, + "carcasses": 8.71e-07, + "caress": 8.71e-07, + "carolinas": 6.46e-07, + "catchphrase": 8.71e-07, + "censure": 8.71e-07, + "channeled": 8.71e-07, + "charlene": 8.71e-07, + "charlottes": 5.01e-08, + "chewy": 8.71e-07, + "childlike": 8.71e-07, + "chopin": 8.71e-07, + "cleanest": 8.71e-07, + "cleft": 8.71e-07, + "clump": 8.71e-07, + "cluttered": 8.71e-07, + "cmos": 8.71e-07, + "cnc": 8.71e-07, + "combos": 8.71e-07, + "communicative": 8.71e-07, + "complicating": 8.71e-07, + "conceivably": 8.71e-07, + "concussions": 8.71e-07, + "connotation": 8.71e-07, + "constitutionality": 8.71e-07, + "coughed": 8.71e-07, + "cra": 8.71e-07, + "creeper": 8.71e-07, + "cultivars": 8.71e-07, + "customizable": 8.71e-07, + "cuthbert": 8.71e-07, + "damper": 8.71e-07, + "dcs": 8.51e-07, + "deduced": 8.71e-07, + "deepwater": 8.71e-07, + "deja": 8.71e-07, + "dep": 8.71e-07, + "dependant": 8.71e-07, + "depository": 8.71e-07, + "deuce": 8.71e-07, + "diagonally": 8.71e-07, + "dickie": 8.71e-07, + "disapproved": 8.71e-07, + "disqualify": 8.71e-07, + "dnd": 8.71e-07, + "doh": 8.71e-07, + "dona": 8.71e-07, + "donates": 8.71e-07, + "donegal": 8.71e-07, + "doorways": 8.71e-07, + "doped": 8.71e-07, + "doritos": 8.71e-07, + "dram": 8.71e-07, + "dsp": 8.71e-07, + "earner": 8.71e-07, + "edc": 8.71e-07, + "efl": 8.71e-07, + "electrostatic": 8.71e-07, + "embed": 8.71e-07, + "empathetic": 8.71e-07, + "emulator": 8.71e-07, + "encompassed": 8.71e-07, + "enlisting": 8.71e-07, + "enlistment": 8.71e-07, + "entrant": 8.71e-07, + "envoys": 8.71e-07, + "ephesians": 8.71e-07, + "eraser": 8.71e-07, + "etymology": 8.71e-07, + "evidences": 8.71e-07, + "exasperated": 8.71e-07, + "excalibur": 8.71e-07, + "exorcist": 8.71e-07, + "faceted": 8.71e-07, + "faggots": 8.71e-07, + "fags": 8.71e-07, + "fayette": 8.71e-07, + "federated": 8.71e-07, + "fgm": 8.71e-07, + "fibrous": 8.71e-07, + "fiddling": 8.71e-07, + "fitbit": 8.71e-07, + "fixated": 8.71e-07, + "franciscos": 8.71e-07, + "freya": 8.71e-07, + "friars": 8.71e-07, + "frisco": 8.71e-07, + "galatasaray": 8.71e-07, + "gasped": 8.71e-07, + "gaussian": 8.71e-07, + "gaye": 8.71e-07, + "gdr": 8.71e-07, + "gea": 8.71e-07, + "geeky": 8.71e-07, + "goings": 8.71e-07, + "gove": 8.71e-07, + "gratis": 8.71e-07, + "gratuitous": 8.71e-07, + "gud": 8.71e-07, + "guiana": 8.71e-07, + "haggard": 8.71e-07, + "headings": 8.71e-07, + "headliner": 8.71e-07, + "herod": 8.71e-07, + "honeycomb": 8.71e-07, + "hooligans": 8.71e-07, + "hopelessness": 8.71e-07, + "horus": 8.71e-07, + "householder": 8.71e-07, + "href": 8.71e-07, + "hubris": 8.71e-07, + "hurrah": 8.71e-07, + "hutchison": 8.71e-07, + "hysterically": 8.71e-07, + "ias": 8.71e-07, + "idealized": 8.71e-07, + "idiosyncratic": 8.71e-07, + "ignatius": 8.71e-07, + "immerse": 8.71e-07, + "immortals": 8.71e-07, + "impassioned": 8.71e-07, + "indemnity": 8.71e-07, + "indira": 8.71e-07, + "installer": 8.71e-07, + "interoperability": 8.71e-07, + "jas": 8.71e-07, + "jitsu": 8.71e-07, + "juliana": 8.71e-07, + "juve": 8.71e-07, + "kampala": 8.71e-07, + "kasich": 8.71e-07, + "katniss": 8.71e-07, + "kelso": 8.71e-07, + "kiddie": 8.71e-07, + "kindest": 8.71e-07, + "labourer": 8.71e-07, + "langford": 8.71e-07, + "lapsed": 8.71e-07, + "lasalle": 8.71e-07, + "latitudes": 8.71e-07, + "lia": 8.71e-07, + "lili": 8.71e-07, + "lilith": 8.71e-07, + "livermore": 8.71e-07, + "lk": 8.71e-07, + "lures": 8.71e-07, + "mackey": 8.71e-07, + "mailer": 8.71e-07, + "malfunctioning": 8.71e-07, + "manfred": 8.71e-07, + "mangled": 8.71e-07, + "marxists": 8.71e-07, + "mausoleum": 8.71e-07, + "mccullough": 8.71e-07, + "melodramatic": 8.71e-07, + "mesopotamia": 8.71e-07, + "messaged": 8.71e-07, + "metallurgy": 8.71e-07, + "misc": 8.71e-07, + "mlk": 8.71e-07, + "mohan": 8.71e-07, + "mugged": 8.71e-07, + "mull": 8.71e-07, + "mushy": 8.71e-07, + "nauru": 8.71e-07, + "nepalese": 8.71e-07, + "newsletters": 8.71e-07, + "nixons": 8.71e-07, + "novices": 8.71e-07, + "nows": 1.05e-07, + "nsc": 8.71e-07, + "nursed": 8.71e-07, + "ocular": 8.71e-07, + "ontology": 8.71e-07, + "opm": 8.71e-07, + "oratory": 8.71e-07, + "orbiter": 8.71e-07, + "origami": 8.71e-07, + "orthopaedic": 8.71e-07, + "oust": 8.71e-07, + "ovary": 8.71e-07, + "oxides": 8.71e-07, + "palma": 8.71e-07, + "paradoxically": 8.71e-07, + "pcp": 8.71e-07, + "pena": 8.71e-07, + "perceives": 8.71e-07, + "petro": 8.71e-07, + "pewdiepie": 8.71e-07, + "phipps": 8.71e-07, + "picturing": 8.71e-07, + "pituitary": 8.71e-07, + "plumage": 8.71e-07, + "poachers": 8.71e-07, + "poof": 8.71e-07, + "possum": 8.71e-07, + "potted": 8.71e-07, + "premeditated": 8.71e-07, + "preset": 8.71e-07, + "profess": 8.71e-07, + "proportionally": 8.71e-07, + "purging": 8.71e-07, + "raiser": 8.71e-07, + "randle": 8.71e-07, + "ratify": 8.71e-07, + "rbc": 8.71e-07, + "rearranged": 8.71e-07, + "reassigned": 8.71e-07, + "recast": 8.71e-07, + "recombinant": 8.71e-07, + "refreshment": 8.71e-07, + "rehearse": 8.71e-07, + "remakes": 8.71e-07, + "repellent": 8.71e-07, + "reproach": 8.71e-07, + "repurchase": 8.71e-07, + "rescuers": 8.71e-07, + "resins": 8.71e-07, + "retractable": 8.71e-07, + "retroactively": 8.71e-07, + "retweeted": 8.71e-07, + "reunions": 8.71e-07, + "ronda": 8.71e-07, + "rosberg": 8.71e-07, + "runny": 8.71e-07, + "ruskin": 8.71e-07, + "rwandan": 8.71e-07, + "saad": 8.71e-07, + "saddled": 8.71e-07, + "saith": 8.71e-07, + "sander": 8.71e-07, + "sarcastically": 8.71e-07, + "scepticism": 8.71e-07, + "scorecard": 8.71e-07, + "scrutinized": 8.71e-07, + "scumbags": 8.71e-07, + "seabed": 8.71e-07, + "seamen": 8.71e-07, + "sed": 8.71e-07, + "senna": 8.71e-07, + "seok": 8.71e-07, + "serenade": 8.71e-07, + "shazam": 8.71e-07, + "sideshow": 8.71e-07, + "silos": 8.71e-07, + "simba": 8.71e-07, + "skimmed": 8.71e-07, + "skirmishes": 8.71e-07, + "slaughterhouse": 8.71e-07, + "slideshow": 8.71e-07, + "smurfs": 8.71e-07, + "sociologists": 8.71e-07, + "sonja": 8.71e-07, + "sparrows": 8.71e-08, + "speculators": 8.71e-07, + "splurge": 8.71e-07, + "spotty": 8.71e-07, + "springing": 8.71e-07, + "stabilizer": 8.71e-07, + "stereotyping": 8.71e-07, + "stimulants": 8.71e-07, + "struts": 8.71e-07, + "subconsciously": 8.71e-07, + "sufferer": 8.71e-07, + "suppressor": 8.71e-07, + "sycamore": 8.71e-07, + "synthesize": 8.71e-07, + "tabled": 8.71e-07, + "tacit": 8.71e-07, + "taggart": 8.71e-07, + "takeout": 8.71e-07, + "tangerine": 8.71e-07, + "taro": 8.71e-07, + "teeming": 8.71e-07, + "terrors": 8.71e-07, + "tethered": 8.71e-07, + "thefts": 8.71e-07, + "thrusting": 8.71e-07, + "tilly": 8.71e-07, + "tonnage": 8.71e-07, + "torrents": 8.71e-07, + "totes": 8.71e-07, + "tut": 8.71e-07, + "typhoid": 8.71e-07, + "tyrell": 8.71e-07, + "ub": 8.71e-07, + "ucf": 8.71e-07, + "unclaimed": 8.71e-07, + "underwhelming": 8.71e-07, + "unofficially": 8.71e-07, + "unopened": 8.71e-07, + "untapped": 8.71e-07, + "upholstery": 8.71e-07, + "valle": 8.71e-07, + "veracity": 8.71e-07, + "verifiable": 8.71e-07, + "vide": 8.71e-07, + "viscous": 8.71e-07, + "vitally": 8.71e-07, + "vixen": 8.71e-07, + "wank": 8.71e-07, + "waugh": 8.71e-07, + "waverley": 8.71e-07, + "wbc": 8.71e-07, + "weil": 8.71e-07, + "whatcha": 5.13e-08, + "whims": 8.71e-07, + "whitey": 8.71e-07, + "wilshere": 8.71e-07, + "windfall": 8.71e-07, + "woolwich": 8.71e-07, + "workday": 8.71e-07, + "wreak": 8.71e-07, + "wta": 8.71e-07, + "xviii": 8.71e-07, + "yap": 8.71e-07, + "yous": 5.13e-07, + "zayn": 8.71e-07, + "abbie": 8.51e-07, + "ablaze": 8.51e-07, + "adriatic": 8.51e-07, + "aegean": 8.51e-07, + "aerodynamics": 8.51e-07, + "agra": 8.51e-07, + "ahhhh": 8.51e-07, + "amiss": 2.45e-08, + "amphetamine": 8.51e-07, + "amputated": 8.51e-07, + "amr": 8.51e-07, + "anaesthetic": 8.51e-07, + "analogies": 8.51e-07, + "andys": 8.51e-07, + "animator": 8.51e-07, + "anno": 8.51e-07, + "antidepressant": 8.51e-07, + "aqueduct": 8.51e-07, + "archeological": 8.51e-07, + "aruba": 8.51e-07, + "assed": 8.51e-07, + "assesses": 8.51e-07, + "attributing": 8.51e-07, + "audiovisual": 8.51e-07, + "authenticated": 8.51e-07, + "awry": 8.51e-07, + "barnaby": 8.51e-07, + "barrymore": 8.51e-07, + "bask": 8.51e-07, + "befriend": 8.51e-07, + "bellingham": 8.51e-07, + "belo": 8.51e-07, + "bilbao": 8.51e-07, + "blakes": 9.12e-08, + "bobbi": 8.51e-07, + "bogart": 8.51e-07, + "bragged": 8.51e-07, + "brainwashing": 8.51e-07, + "breen": 8.51e-07, + "bribing": 8.51e-07, + "bristles": 8.51e-07, + "broome": 8.51e-07, + "bueno": 8.51e-07, + "busier": 8.51e-07, + "camino": 8.51e-07, + "captained": 8.51e-07, + "centralised": 8.51e-07, + "chilton": 8.51e-07, + "chiropractic": 8.51e-07, + "chopsticks": 8.51e-07, + "chp": 8.51e-07, + "citizenry": 8.51e-07, + "claudius": 8.51e-07, + "clumps": 8.51e-07, + "cocked": 8.51e-07, + "colloquial": 8.51e-07, + "combed": 8.51e-07, + "commas": 8.51e-07, + "confidant": 8.51e-07, + "config": 8.51e-07, + "confiscate": 8.51e-07, + "consecutively": 8.51e-07, + "controllable": 8.51e-07, + "conversing": 8.51e-07, + "cooley": 8.51e-07, + "coolidge": 8.51e-07, + "copped": 8.51e-07, + "cornea": 8.51e-07, + "cramer": 8.51e-07, + "crichton": 8.51e-07, + "crumpled": 8.51e-07, + "cuter": 8.51e-07, + "daimler": 8.51e-07, + "decompression": 8.51e-07, + "deflation": 8.51e-07, + "demeaning": 8.51e-07, + "dengue": 8.51e-07, + "denials": 8.51e-07, + "denominational": 8.51e-07, + "dermatology": 8.51e-07, + "detachable": 8.51e-07, + "deterministic": 8.51e-07, + "deux": 8.51e-07, + "devotee": 8.51e-07, + "dictating": 8.51e-07, + "diggers": 8.51e-07, + "dimes": 8.51e-07, + "directv": 8.51e-07, + "disfigured": 8.51e-07, + "disguises": 8.51e-07, + "disprove": 8.51e-07, + "disrespected": 8.51e-07, + "divulge": 8.51e-07, + "docile": 8.51e-07, + "doctrinal": 8.51e-07, + "dogmatic": 8.51e-07, + "dominica": 8.51e-07, + "doubleday": 8.51e-07, + "downton": 8.51e-07, + "droves": 8.51e-07, + "drunks": 8.51e-07, + "dryness": 8.51e-07, + "duterte": 8.51e-07, + "dyeing": 8.51e-07, + "eases": 8.51e-07, + "echelon": 8.51e-07, + "edifice": 8.51e-07, + "edu": 8.51e-07, + "ehh": 8.51e-07, + "ela": 8.51e-07, + "embossed": 8.51e-07, + "emt": 8.51e-07, + "encircled": 8.51e-07, + "endpoint": 8.51e-07, + "englewood": 8.51e-07, + "enid": 8.51e-07, + "entailed": 8.51e-07, + "ethyl": 8.51e-07, + "evanston": 8.51e-07, + "everglades": 8.51e-07, + "excels": 8.51e-07, + "expatriate": 8.51e-07, + "expats": 8.51e-07, + "expertly": 8.51e-07, + "facelift": 8.51e-07, + "fairway": 8.51e-07, + "fanboy": 8.51e-07, + "fao": 8.51e-07, + "farrow": 8.51e-07, + "fawcett": 8.51e-07, + "felton": 8.51e-07, + "fireplaces": 8.51e-07, + "fishers": 5.13e-07, + "fitzroy": 8.51e-07, + "flamenco": 8.51e-07, + "floored": 8.51e-07, + "flustered": 8.51e-07, + "follicles": 8.51e-07, + "folsom": 8.51e-07, + "formalities": 8.51e-07, + "franciscan": 8.51e-07, + "friendliness": 8.51e-07, + "gael": 8.51e-07, + "gagging": 8.51e-07, + "galloping": 8.51e-07, + "gaseous": 8.51e-07, + "geller": 8.51e-07, + "gio": 8.51e-07, + "gita": 8.51e-07, + "glows": 8.51e-07, + "goulding": 8.51e-07, + "gradients": 8.51e-07, + "grads": 8.51e-07, + "grits": 8.51e-07, + "groans": 8.51e-07, + "grosvenor": 8.51e-07, + "grueling": 8.51e-07, + "guardianship": 8.51e-07, + "gulp": 8.51e-07, + "gv": 8.51e-07, + "gypsum": 8.51e-07, + "hangin": 8.51e-07, + "hao": 8.51e-07, + "harbaugh": 8.51e-07, + "harbours": 5.62e-08, + "hasten": 8.51e-07, + "hauser": 8.51e-07, + "heady": 8.51e-07, + "healers": 8.51e-07, + "herbie": 8.51e-07, + "hindering": 8.51e-07, + "hiroshi": 8.51e-07, + "hmmmm": 8.51e-07, + "homesick": 8.51e-07, + "homme": 8.51e-07, + "hos": 3.72e-07, + "hotly": 8.51e-07, + "huber": 8.51e-07, + "humanly": 8.51e-07, + "hurd": 8.51e-07, + "husbandry": 8.51e-07, + "hushed": 8.51e-07, + "hyperbole": 8.51e-07, + "hypothetically": 8.51e-07, + "ibuprofen": 8.51e-07, + "identifiers": 8.51e-07, + "idly": 8.51e-07, + "imho": 8.51e-07, + "immigrated": 8.51e-07, + "immobile": 8.51e-07, + "impair": 8.51e-07, + "indycar": 8.51e-07, + "ipcc": 8.51e-07, + "irradiated": 8.51e-07, + "isaacs": 3.16e-07, + "jerked": 8.51e-07, + "jpg": 8.51e-07, + "jugs": 8.51e-07, + "karla": 8.51e-07, + "kharkiv": 8.51e-07, + "kinetics": 8.51e-07, + "kipling": 8.51e-07, + "knapp": 8.51e-07, + "lawler": 8.51e-07, + "layla": 8.51e-07, + "layman": 8.51e-07, + "layton": 8.51e-07, + "layup": 8.51e-07, + "leona": 8.51e-07, + "libra": 8.51e-07, + "librarys": 8.51e-07, + "luciano": 8.51e-07, + "macabre": 8.51e-07, + "macaulay": 8.51e-07, + "mackie": 8.51e-07, + "mackintosh": 8.51e-07, + "magdalene": 8.51e-07, + "magnification": 8.51e-07, + "maki": 8.51e-07, + "manziel": 8.51e-07, + "marshalls": 4.17e-07, + "mbe": 8.51e-07, + "mcdaniel": 8.51e-07, + "medicated": 8.51e-07, + "memento": 8.51e-07, + "midwifery": 8.51e-07, + "milieu": 8.51e-07, + "mistresses": 8.51e-07, + "miz": 8.51e-07, + "mms": 7.24e-08, + "modus": 8.51e-07, + "monsignor": 8.51e-07, + "moonshine": 8.51e-07, + "msa": 8.51e-07, + "msi": 8.51e-07, + "multitasking": 8.51e-07, + "mutt": 8.51e-07, + "myocardial": 8.51e-07, + "mysore": 8.51e-07, + "nachos": 8.51e-07, + "nani": 8.51e-07, + "nao": 8.51e-07, + "narnia": 8.51e-07, + "naturalistic": 8.51e-07, + "nepotism": 8.51e-07, + "ngl": 8.51e-07, + "normality": 8.51e-07, + "oblong": 8.51e-07, + "olly": 8.51e-07, + "ooooh": 8.51e-07, + "operatic": 8.51e-07, + "ophthalmology": 8.51e-07, + "oppenheimer": 8.51e-07, + "orca": 8.51e-07, + "osage": 8.51e-07, + "osman": 8.51e-07, + "overcomes": 8.51e-07, + "overseer": 8.51e-07, + "overstated": 8.51e-07, + "paddling": 8.51e-07, + "painstaking": 8.51e-07, + "pall": 8.51e-07, + "panelists": 8.51e-07, + "panzer": 8.51e-07, + "parodies": 8.51e-07, + "patchy": 8.51e-07, + "paychecks": 8.51e-07, + "pecan": 8.51e-07, + "penh": 8.51e-07, + "perceptual": 8.51e-07, + "pereira": 8.51e-07, + "photoshoot": 8.51e-07, + "pimples": 8.51e-07, + "pings": 8.51e-07, + "pinocchio": 8.51e-07, + "pips": 7.41e-08, + "pique": 8.51e-07, + "plo": 8.51e-07, + "plowed": 8.51e-07, + "politeness": 8.51e-07, + "pomegranate": 8.51e-07, + "ponzi": 8.51e-07, + "porters": 5.62e-07, + "potholes": 8.51e-07, + "ppi": 8.51e-07, + "pregame": 8.51e-07, + "promiscuous": 8.51e-07, + "proudest": 8.51e-07, + "psychopaths": 8.51e-07, + "pugh": 8.51e-07, + "punta": 8.51e-07, + "pusher": 8.51e-07, + "quixote": 8.51e-07, + "rangoon": 8.51e-07, + "raza": 8.51e-07, + "rbis": 9.33e-08, + "reagans": 5.89e-08, + "rebranded": 8.51e-07, + "refueling": 8.51e-07, + "reprimanded": 8.51e-07, + "reproductions": 8.51e-07, + "resell": 8.51e-07, + "reserving": 8.51e-07, + "resuscitation": 8.51e-07, + "revocation": 8.51e-07, + "richland": 8.51e-07, + "roadblocks": 8.51e-07, + "rosalind": 8.51e-07, + "russells": 9.55e-08, + "rusted": 8.51e-07, + "sacraments": 8.51e-07, + "sagging": 8.51e-07, + "sant": 8.51e-07, + "santas": 2.51e-07, + "sardines": 8.51e-07, + "sardinia": 8.51e-07, + "scalable": 8.51e-07, + "scalar": 8.51e-07, + "scalia": 8.51e-07, + "schaefer": 8.51e-07, + "schoolchildren": 8.51e-07, + "schwarz": 8.51e-07, + "scrapbook": 8.51e-07, + "selby": 8.51e-07, + "selectors": 8.51e-07, + "semiconductors": 8.51e-07, + "sensibly": 8.51e-07, + "sensitivities": 8.51e-07, + "separator": 8.51e-07, + "sequestration": 8.51e-07, + "sheraton": 8.51e-07, + "shoal": 8.51e-07, + "sigmund": 8.51e-07, + "sledgehammer": 8.51e-07, + "sleeved": 8.51e-07, + "smartly": 8.51e-07, + "smite": 8.51e-07, + "smt": 8.51e-07, + "sniping": 8.51e-07, + "socal": 8.51e-07, + "solicited": 8.51e-07, + "somatic": 8.51e-07, + "southside": 8.51e-07, + "splendour": 8.51e-07, + "ssl": 8.51e-07, + "stearns": 8.51e-07, + "steeply": 8.51e-07, + "stingray": 8.51e-07, + "stonehenge": 8.51e-07, + "straightening": 8.51e-07, + "subcontinent": 8.51e-07, + "subsets": 8.51e-07, + "subsidize": 8.51e-07, + "substation": 8.51e-07, + "sufferings": 8.51e-07, + "swarms": 8.51e-07, + "symbiotic": 8.51e-07, + "tantamount": 8.51e-07, + "tasha": 8.51e-07, + "teaspoons": 8.51e-07, + "tetris": 8.51e-07, + "therese": 8.51e-07, + "thereto": 8.51e-07, + "thermodynamic": 8.51e-07, + "thoreau": 8.51e-07, + "thorny": 8.51e-07, + "thurman": 8.51e-07, + "tickling": 8.51e-07, + "tortillas": 8.51e-07, + "tosses": 8.51e-07, + "traversed": 8.51e-07, + "trifle": 8.51e-07, + "trixie": 8.51e-07, + "twine": 8.51e-07, + "twink": 8.51e-07, + "tylers": 5.89e-08, + "uav": 8.51e-07, + "uci": 8.51e-07, + "unfulfilled": 8.51e-07, + "unjustly": 8.51e-07, + "unoccupied": 8.51e-07, + "venous": 8.51e-07, + "ventricular": 8.51e-07, + "viciously": 8.51e-07, + "videogame": 8.51e-07, + "vincenzo": 8.51e-07, + "vindication": 8.51e-07, + "vinnie": 8.51e-07, + "violins": 8.51e-07, + "vishnu": 8.51e-07, + "vive": 8.51e-07, + "voila": 8.51e-07, + "voip": 8.51e-07, + "wadsworth": 8.51e-07, + "watercolour": 8.51e-07, + "wedded": 8.51e-07, + "weymouth": 8.51e-07, + "whelan": 8.51e-07, + "whiter": 8.51e-07, + "wickedness": 8.51e-07, + "wilshire": 8.51e-07, + "woodson": 8.51e-07, + "worksheet": 8.51e-07, + "wrappers": 8.51e-07, + "wylie": 8.51e-07, + "wyndham": 8.51e-07, + "xxi": 8.51e-07, + "xxiii": 8.51e-07, + "yarns": 8.51e-07, + "abysmal": 8.32e-07, + "addams": 8.32e-07, + "adores": 8.32e-07, + "aman": 8.32e-07, + "amar": 8.32e-07, + "angelou": 8.32e-07, + "antigens": 8.32e-07, + "aorta": 8.32e-07, + "apostasy": 8.32e-07, + "aram": 8.32e-07, + "argyll": 8.32e-07, + "artistically": 8.32e-07, + "ascii": 8.32e-07, + "asda": 8.32e-07, + "ashram": 8.32e-07, + "attentions": 8.32e-07, + "aust": 8.32e-07, + "avocados": 8.32e-07, + "aya": 8.32e-07, + "ayatollah": 8.32e-07, + "baa": 8.32e-07, + "batista": 8.32e-07, + "battlefields": 8.32e-07, + "beowulf": 8.32e-07, + "beret": 8.32e-07, + "bharatiya": 8.32e-07, + "bleu": 8.32e-07, + "bloomsbury": 8.32e-07, + "bogey": 8.32e-07, + "bol": 8.32e-07, + "bolsheviks": 8.32e-07, + "bookshelf": 8.32e-07, + "boron": 8.32e-07, + "bpa": 8.32e-07, + "brainstorming": 8.32e-07, + "brigitte": 8.32e-07, + "bronchitis": 8.32e-07, + "brotherly": 8.32e-07, + "buffering": 8.32e-07, + "bugle": 8.32e-07, + "bumblebee": 8.32e-07, + "burch": 8.32e-07, + "buren": 8.32e-07, + "busters": 1.48e-07, + "butters": 8.32e-07, + "buxton": 8.32e-07, + "caf": 8.32e-07, + "callaghan": 8.32e-07, + "calum": 8.32e-07, + "canvases": 8.32e-07, + "capone": 8.32e-07, + "carboniferous": 8.32e-07, + "casings": 8.32e-07, + "catchers": 1.58e-07, + "catechism": 8.32e-07, + "categorize": 8.32e-07, + "cathedrals": 1.32e-07, + "causality": 8.32e-07, + "cern": 8.32e-07, + "cesare": 8.32e-07, + "chandeliers": 8.32e-07, + "chaney": 8.32e-07, + "chatty": 8.32e-07, + "chokes": 8.32e-07, + "christened": 8.32e-07, + "chug": 8.32e-07, + "churchyard": 8.32e-07, + "clapper": 8.32e-07, + "clarion": 8.32e-07, + "coffers": 8.32e-07, + "cognac": 8.32e-07, + "colette": 8.32e-07, + "combatant": 8.32e-07, + "commie": 8.32e-07, + "compels": 8.32e-07, + "compilations": 8.32e-07, + "concealer": 8.32e-07, + "concealment": 8.32e-07, + "concentric": 8.32e-07, + "conceptually": 8.32e-07, + "confine": 8.32e-07, + "congregate": 8.32e-07, + "congresswoman": 8.32e-07, + "constructor": 8.32e-07, + "coolers": 8.32e-07, + "copycat": 8.32e-07, + "corroborate": 8.32e-07, + "corroborated": 8.32e-07, + "coulda": 8.32e-07, + "cred": 8.32e-07, + "cur": 8.32e-07, + "curd": 8.32e-07, + "cursory": 8.32e-07, + "dangle": 8.32e-07, + "daniela": 8.32e-07, + "dario": 8.32e-07, + "ddos": 8.32e-07, + "dearth": 8.32e-07, + "delilah": 8.32e-07, + "delinquency": 8.32e-07, + "denominated": 8.32e-07, + "deutschland": 8.32e-07, + "dez": 8.32e-07, + "disservice": 8.32e-07, + "distaste": 8.32e-07, + "dost": 8.32e-07, + "dribbling": 8.32e-07, + "dryden": 8.32e-07, + "durango": 8.32e-07, + "dwindled": 8.32e-07, + "edie": 8.32e-07, + "een": 8.32e-07, + "ejaculation": 8.32e-07, + "enveloped": 8.32e-07, + "environmentalist": 8.32e-07, + "epileptic": 8.32e-07, + "erasure": 8.32e-07, + "errol": 8.32e-07, + "este": 8.32e-07, + "euphemism": 8.32e-07, + "exacerbate": 8.32e-07, + "exemplifies": 8.32e-07, + "exonerated": 8.32e-07, + "exquisitely": 8.32e-07, + "extinguisher": 8.32e-07, + "facilitation": 8.32e-07, + "falsehood": 8.32e-07, + "falsified": 8.32e-07, + "fantasia": 8.32e-07, + "favourably": 8.32e-07, + "fellaini": 8.32e-07, + "fertilized": 8.32e-07, + "firefighting": 8.32e-07, + "firestorm": 8.32e-07, + "flange": 8.32e-07, + "flaunt": 8.32e-07, + "flawlessly": 8.32e-07, + "flier": 8.32e-07, + "flinch": 8.32e-07, + "florentine": 8.32e-07, + "fontana": 8.32e-07, + "forefathers": 8.32e-07, + "frankel": 8.32e-07, + "freehold": 8.32e-07, + "freeport": 8.32e-07, + "frisk": 8.32e-07, + "fta": 8.32e-07, + "fulfills": 8.32e-07, + "fundamentalism": 8.32e-07, + "gables": 8.32e-07, + "gabon": 8.32e-07, + "gad": 8.32e-07, + "galapagos": 8.32e-07, + "ganges": 8.32e-07, + "garmin": 8.32e-07, + "gasps": 8.32e-07, + "gaz": 8.32e-07, + "girth": 8.32e-07, + "goalscorer": 8.32e-07, + "godmother": 8.32e-07, + "goodell": 8.32e-07, + "gothenburg": 8.32e-07, + "governorship": 8.32e-07, + "graf": 8.32e-07, + "grunts": 8.32e-07, + "guadalupe": 8.32e-07, + "guatemalan": 8.32e-07, + "guillaume": 8.32e-07, + "guzman": 8.32e-07, + "hallmarks": 8.32e-07, + "haq": 8.32e-07, + "hardwick": 8.32e-07, + "harrogate": 8.32e-07, + "hellish": 8.32e-07, + "hemoglobin": 8.32e-07, + "hermitage": 8.32e-07, + "heyman": 8.32e-07, + "hierarchies": 8.32e-07, + "histoire": 8.32e-07, + "honeywell": 8.32e-07, + "hooves": 8.32e-07, + "hourglass": 8.32e-07, + "hungarians": 8.32e-07, + "hygienic": 8.32e-07, + "idiocy": 8.32e-07, + "imitated": 8.32e-07, + "impersonal": 8.32e-07, + "impregnated": 8.32e-07, + "incontinence": 8.32e-07, + "ine": 8.32e-07, + "inhaler": 8.32e-07, + "injures": 8.32e-07, + "intersex": 8.32e-07, + "intricacies": 8.32e-07, + "ironed": 8.32e-07, + "jacuzzi": 8.32e-07, + "kenyas": 8.32e-07, + "kohler": 8.32e-07, + "lacquer": 8.32e-07, + "lakeland": 8.32e-07, + "laments": 8.32e-07, + "langer": 8.32e-07, + "lapses": 8.32e-07, + "lbj": 8.32e-07, + "ldl": 8.32e-07, + "levelling": 8.32e-07, + "linemen": 8.32e-07, + "lipsticks": 8.32e-07, + "liquefied": 8.32e-07, + "livestream": 8.32e-07, + "loaves": 8.32e-07, + "macgregor": 8.32e-07, + "madhya": 8.32e-07, + "maidens": 1.38e-07, + "malevolent": 8.32e-07, + "manchuria": 8.32e-07, + "mano": 8.32e-07, + "martyred": 8.32e-07, + "masterclass": 8.32e-07, + "matchups": 8.32e-07, + "mated": 8.32e-07, + "matrimony": 8.32e-07, + "matures": 8.32e-07, + "mechanized": 8.32e-07, + "mending": 8.32e-07, + "mercilessly": 8.32e-07, + "meteorologist": 8.32e-07, + "microprocessor": 8.32e-07, + "midweek": 8.32e-07, + "minefield": 8.32e-07, + "minogue": 8.32e-07, + "misha": 8.32e-07, + "mogadishu": 8.32e-07, + "mombasa": 8.32e-07, + "monash": 8.32e-07, + "monika": 8.32e-07, + "mta": 8.32e-07, + "murmur": 8.32e-07, + "murrays": 9.77e-08, + "musings": 8.32e-07, + "nair": 8.32e-07, + "napoleonic": 8.32e-07, + "narrating": 8.32e-07, + "necrosis": 8.32e-07, + "ning": 8.32e-07, + "niro": 8.32e-07, + "notches": 8.32e-07, + "nou": 8.32e-07, + "nth": 8.32e-07, + "oshea": 8.32e-07, + "onerous": 8.32e-07, + "onsite": 8.32e-07, + "orientations": 8.32e-07, + "outsource": 8.32e-07, + "overtones": 8.32e-07, + "pained": 8.32e-07, + "paradigms": 8.32e-07, + "pardons": 8.32e-07, + "patching": 8.32e-07, + "pcc": 8.32e-07, + "peeping": 8.32e-07, + "pembrokeshire": 8.32e-07, + "peralta": 8.32e-07, + "permeability": 8.32e-07, + "pershing": 8.32e-07, + "pharmacological": 8.32e-07, + "plano": 8.32e-07, + "playmaker": 8.32e-07, + "plumb": 8.32e-07, + "plumes": 8.32e-07, + "plunger": 8.32e-07, + "pokes": 8.32e-07, + "porta": 8.32e-07, + "posey": 8.32e-07, + "presto": 8.32e-07, + "priestly": 8.32e-07, + "printable": 8.32e-07, + "priya": 8.32e-07, + "procuring": 8.32e-07, + "prodigal": 8.32e-07, + "prodigious": 8.32e-07, + "propellant": 8.32e-07, + "pulley": 8.32e-07, + "qualms": 8.32e-07, + "raaf": 8.32e-07, + "raccoons": 8.32e-07, + "raju": 8.32e-07, + "reappeared": 8.32e-07, + "recaptured": 8.32e-07, + "rechargeable": 8.32e-07, + "recluse": 8.32e-07, + "rectified": 8.32e-07, + "refinance": 8.32e-07, + "reformist": 8.32e-07, + "refresher": 8.32e-07, + "relaxes": 8.32e-07, + "remodel": 8.32e-07, + "replaceable": 8.32e-07, + "reschedule": 8.32e-07, + "restarting": 8.32e-07, + "retroactive": 8.32e-07, + "reverb": 8.32e-07, + "revisionist": 8.32e-07, + "ribbed": 8.32e-07, + "robs": 4.07e-07, + "rodman": 8.32e-07, + "rohingya": 8.32e-07, + "romes": 8.32e-07, + "sabotaged": 8.32e-07, + "sages": 1.23e-07, + "sandoval": 8.32e-07, + "sarkar": 8.32e-07, + "saskatoon": 8.32e-07, + "satoshi": 8.32e-07, + "schoolhouse": 8.32e-07, + "seashore": 8.32e-07, + "seclusion": 8.32e-07, + "selenium": 8.32e-07, + "setups": 8.32e-07, + "sewell": 8.32e-07, + "shuttles": 1.23e-07, + "signatory": 8.32e-07, + "silverstone": 8.32e-07, + "sinha": 8.32e-07, + "siphon": 8.32e-07, + "skelton": 8.32e-07, + "slasher": 8.32e-07, + "slimming": 8.32e-07, + "slovenian": 8.32e-07, + "snagged": 8.32e-07, + "soulmate": 8.32e-07, + "spangled": 8.32e-07, + "spiteful": 8.32e-07, + "splashes": 8.32e-07, + "sporadically": 8.32e-07, + "stefani": 8.32e-07, + "stifled": 8.32e-07, + "stinger": 8.32e-07, + "stipulation": 8.32e-07, + "stowe": 8.32e-07, + "stubbornly": 8.32e-07, + "subtropical": 8.32e-07, + "sulfide": 8.32e-07, + "summation": 8.32e-07, + "superimposed": 8.32e-07, + "surfacing": 8.32e-07, + "swifts": 5.25e-07, + "tableau": 8.32e-07, + "taming": 8.32e-07, + "taxa": 8.32e-07, + "tbf": 8.32e-07, + "tebow": 8.32e-07, + "techs": 5.13e-07, + "tiredness": 8.32e-07, + "toi": 8.32e-07, + "toppled": 8.32e-07, + "trajectories": 8.32e-07, + "transgressions": 8.32e-07, + "transylvania": 8.32e-07, + "trotter": 8.32e-07, + "truest": 8.32e-07, + "tse": 8.32e-07, + "ufos": 1.07e-07, + "underpants": 8.32e-07, + "underprivileged": 8.32e-07, + "underscores": 8.32e-07, + "unhcr": 8.32e-07, + "unimpressed": 8.32e-07, + "unreasonably": 8.32e-07, + "unrelenting": 8.32e-07, + "unsupervised": 8.32e-07, + "vassal": 8.32e-07, + "vegetative": 8.32e-07, + "velcro": 8.32e-07, + "verne": 8.32e-07, + "vying": 8.32e-07, + "wabash": 8.32e-07, + "walla": 8.32e-07, + "waltham": 8.32e-07, + "warranties": 8.32e-07, + "washburn": 8.32e-07, + "washers": 8.32e-07, + "weimar": 8.32e-07, + "weirdness": 8.32e-07, + "westgate": 8.32e-07, + "wheatley": 8.32e-07, + "wheelchairs": 8.32e-07, + "wie": 8.32e-07, + "wiseman": 8.32e-07, + "withered": 8.32e-07, + "woefully": 8.32e-07, + "workmen": 8.32e-07, + "wrangler": 8.32e-07, + "yds": 8.32e-07, + "yeats": 8.32e-07, + "yonkers": 8.32e-07, + "yunnan": 8.32e-07, + "zidane": 8.32e-07, + "ziggy": 8.32e-07, + "aberdeenshire": 8.13e-07, + "abrasion": 8.13e-07, + "accrue": 8.13e-07, + "ackerman": 8.13e-07, + "acumen": 8.13e-07, + "admirably": 8.13e-07, + "alford": 8.13e-07, + "allele": 8.13e-07, + "alumnus": 8.13e-07, + "amon": 8.13e-07, + "amore": 8.13e-07, + "andean": 8.13e-07, + "angers": 3.09e-08, + "anniversaries": 8.13e-07, + "aphrodite": 8.13e-07, + "applauding": 8.13e-07, + "applicability": 8.13e-07, + "approachable": 8.13e-07, + "aragon": 8.13e-07, + "armagh": 8.13e-07, + "asexual": 8.13e-07, + "auditioned": 8.13e-07, + "automata": 8.13e-07, + "babel": 8.13e-07, + "balding": 8.13e-07, + "ballon": 8.13e-07, + "banding": 8.13e-07, + "bannister": 8.13e-07, + "bellies": 8.13e-07, + "bernice": 8.13e-07, + "beryl": 8.13e-07, + "blackbird": 8.13e-07, + "bleachers": 8.13e-07, + "bluebird": 8.13e-07, + "blunders": 8.13e-07, + "boe": 8.13e-07, + "boop": 8.13e-07, + "brats": 5.01e-08, + "breech": 8.13e-07, + "breezes": 8.13e-07, + "buttery": 8.13e-07, + "cadbury": 8.13e-07, + "caliph": 8.13e-07, + "calle": 8.13e-07, + "cameos": 8.13e-07, + "carta": 8.13e-07, + "celiac": 8.13e-07, + "celibacy": 8.13e-07, + "cersei": 8.13e-07, + "chancery": 8.13e-07, + "chappell": 8.13e-07, + "characterizes": 8.13e-07, + "chiu": 8.13e-07, + "choppy": 8.13e-07, + "chromatic": 8.13e-07, + "chronologically": 8.13e-07, + "chump": 8.13e-07, + "clamping": 8.13e-07, + "clashing": 8.13e-07, + "clenched": 8.13e-07, + "clogging": 8.13e-07, + "clove": 8.13e-07, + "columbine": 8.13e-07, + "commemorated": 8.13e-07, + "comte": 8.13e-07, + "converged": 8.13e-07, + "cordelia": 8.13e-07, + "countenance": 8.13e-07, + "crackling": 8.13e-07, + "crawls": 8.13e-07, + "creighton": 8.13e-07, + "crouching": 8.13e-07, + "crowder": 8.13e-07, + "cryptography": 8.13e-07, + "cysts": 8.13e-07, + "dali": 8.13e-07, + "damping": 8.13e-07, + "dapper": 8.13e-07, + "deathly": 8.13e-07, + "deere": 8.13e-07, + "defection": 8.13e-07, + "delightfully": 8.13e-07, + "dermatitis": 8.13e-07, + "desiring": 8.13e-07, + "determinants": 8.13e-07, + "devaluation": 8.13e-07, + "dictatorial": 8.13e-07, + "digitized": 8.13e-07, + "disinterested": 8.13e-07, + "dispensaries": 8.13e-07, + "disrespecting": 8.13e-07, + "dissected": 8.13e-07, + "dist": 8.13e-07, + "diversions": 8.13e-07, + "diwali": 8.13e-07, + "doreen": 8.13e-07, + "dota": 8.13e-07, + "downplay": 8.13e-07, + "drakes": 3.72e-07, + "drapes": 8.13e-07, + "dss": 5.89e-08, + "dunkin": 8.13e-07, + "dynamical": 8.13e-07, + "edi": 8.13e-07, + "electra": 8.13e-07, + "elicited": 8.13e-07, + "eluded": 8.13e-07, + "ema": 8.13e-07, + "encapsulated": 8.13e-07, + "eno": 8.13e-07, + "enquire": 8.13e-07, + "ensue": 8.13e-07, + "environs": 8.13e-07, + "epics": 8.13e-08, + "errant": 8.13e-07, + "esophagus": 8.13e-07, + "estelle": 8.13e-07, + "etfs": 5.62e-08, + "ethylene": 8.13e-07, + "eunice": 8.13e-07, + "evaded": 8.13e-07, + "evie": 8.13e-07, + "exterminate": 8.13e-07, + "eyewitnesses": 8.13e-07, + "fai": 8.13e-07, + "fairchild": 8.13e-07, + "falmouth": 8.13e-07, + "faze": 8.13e-07, + "fbs": 8.13e-07, + "fdi": 8.13e-07, + "fergie": 8.13e-07, + "figaro": 8.13e-07, + "finney": 8.13e-07, + "fisa": 8.13e-07, + "flatly": 8.13e-07, + "flicked": 8.13e-07, + "flocked": 8.13e-07, + "fluently": 8.13e-07, + "forsake": 8.13e-07, + "fusing": 8.13e-07, + "gallen": 8.13e-07, + "gamestop": 8.13e-07, + "gasol": 8.13e-07, + "gatwick": 8.13e-07, + "gecko": 8.13e-07, + "generalize": 8.13e-07, + "gervais": 8.13e-07, + "gianni": 8.13e-07, + "gila": 8.13e-07, + "giraffes": 5.89e-08, + "gondola": 8.13e-07, + "grained": 8.13e-07, + "grandmaster": 8.13e-07, + "grenoble": 8.13e-07, + "grills": 8.13e-07, + "grudges": 8.13e-07, + "guacamole": 8.13e-07, + "hagan": 8.13e-07, + "hammersmith": 8.13e-07, + "hamptons": 1.12e-07, + "handcrafted": 8.13e-07, + "harbinger": 8.13e-07, + "harnessed": 8.13e-07, + "harvests": 8.13e-07, + "headshot": 8.13e-07, + "heartily": 8.13e-07, + "heb": 8.13e-07, + "helplessness": 8.13e-07, + "helpline": 8.13e-07, + "henchman": 8.13e-07, + "hiccup": 8.13e-07, + "hoffmann": 8.13e-07, + "hurl": 8.13e-07, + "hydroxide": 8.13e-07, + "ied": 8.13e-07, + "iit": 8.13e-07, + "iliad": 8.13e-07, + "ilk": 8.13e-07, + "imbued": 8.13e-07, + "impartiality": 8.13e-07, + "incessantly": 8.13e-07, + "inertial": 8.13e-07, + "intentioned": 8.13e-07, + "introvert": 8.13e-07, + "invades": 8.13e-07, + "invocation": 8.13e-07, + "involuntarily": 8.13e-07, + "iroquois": 8.13e-07, + "irreparable": 8.13e-07, + "issuers": 8.13e-07, + "ivanka": 8.13e-07, + "iz": 8.13e-07, + "jer": 8.13e-07, + "jimenez": 8.13e-07, + "journeyman": 8.13e-07, + "kandahar": 8.13e-07, + "khloe": 8.13e-07, + "kitchener": 8.13e-07, + "kobayashi": 8.13e-07, + "korra": 8.13e-07, + "kpa": 8.13e-07, + "kuwaiti": 8.13e-07, + "kwan": 8.13e-07, + "lactic": 8.13e-07, + "laing": 8.13e-07, + "lanarkshire": 8.13e-07, + "larval": 8.13e-07, + "laterally": 8.13e-07, + "lathe": 8.13e-07, + "lawlessness": 8.13e-07, + "lcs": 8.13e-07, + "leela": 8.13e-07, + "leonid": 8.13e-07, + "leopards": 8.32e-08, + "liberally": 8.13e-07, + "lonnie": 8.13e-07, + "lopsided": 8.13e-07, + "lowlands": 8.13e-07, + "lunacy": 8.13e-07, + "magi": 8.13e-07, + "malia": 8.13e-07, + "malloy": 8.13e-07, + "mancini": 8.13e-07, + "mantel": 8.13e-07, + "marcello": 8.13e-07, + "matchday": 8.13e-07, + "mayday": 8.13e-07, + "mcafee": 8.13e-07, + "mcdonough": 8.13e-07, + "meier": 8.13e-07, + "melons": 8.13e-07, + "melton": 8.13e-07, + "mem": 8.13e-07, + "merges": 8.13e-07, + "meteors": 8.13e-07, + "methylation": 8.13e-07, + "micky": 8.13e-07, + "milligan": 8.13e-07, + "misinformed": 8.13e-07, + "mitchells": 1.26e-07, + "morphed": 8.13e-07, + "mumble": 8.13e-07, + "mummies": 8.13e-07, + "musketeers": 8.13e-07, + "nad": 8.13e-07, + "newmarket": 8.13e-07, + "nie": 8.13e-07, + "nonpartisan": 8.13e-07, + "norwalk": 8.13e-07, + "noxious": 8.13e-07, + "nucleic": 8.13e-07, + "oaths": 8.13e-07, + "ocs": 8.13e-08, + "octagon": 8.13e-07, + "offsets": 8.13e-07, + "oligarchs": 8.13e-07, + "opulent": 8.13e-07, + "ordinate": 8.13e-07, + "organist": 8.13e-07, + "oro": 8.13e-07, + "outed": 8.13e-07, + "outstretched": 8.13e-07, + "overbearing": 8.13e-07, + "patting": 8.13e-07, + "pectoral": 8.13e-07, + "percival": 8.13e-07, + "perplexing": 8.13e-07, + "personified": 8.13e-07, + "petr": 8.13e-07, + "plummeted": 8.13e-07, + "podesta": 8.13e-07, + "polaroid": 8.13e-07, + "preexisting": 8.13e-07, + "prepped": 8.13e-07, + "primrose": 8.13e-07, + "prohibitions": 8.13e-07, + "psyched": 8.13e-07, + "puddles": 8.13e-07, + "pulsating": 8.13e-07, + "pungent": 8.13e-07, + "putter": 8.13e-07, + "qatari": 8.13e-07, + "rachels": 8.13e-07, + "radioactivity": 8.13e-07, + "ranches": 8.13e-07, + "raquel": 8.13e-07, + "recessive": 8.13e-07, + "reclining": 8.13e-07, + "redford": 8.13e-07, + "reeve": 8.13e-07, + "refinancing": 8.13e-07, + "relativistic": 8.13e-07, + "relaunch": 8.13e-07, + "reloaded": 8.13e-07, + "remand": 8.13e-07, + "replete": 8.13e-07, + "repugnant": 8.13e-07, + "ringed": 8.13e-07, + "rmb": 8.13e-07, + "roaches": 8.13e-07, + "roamed": 8.13e-07, + "roars": 8.13e-07, + "rotc": 8.13e-07, + "rote": 8.13e-07, + "rotors": 8.13e-07, + "rudeness": 8.13e-07, + "ruffled": 8.13e-07, + "saa": 8.13e-07, + "sabah": 8.13e-07, + "salinas": 8.13e-07, + "salomon": 8.13e-07, + "sandal": 8.13e-07, + "sandro": 8.13e-07, + "santi": 8.13e-07, + "scat": 8.13e-07, + "scissor": 8.13e-07, + "seaport": 8.13e-07, + "sellout": 8.13e-07, + "seminole": 8.13e-07, + "serra": 8.13e-07, + "setlist": 8.13e-07, + "seychelles": 8.13e-07, + "shakers": 1.1e-08, + "shang": 8.13e-07, + "sharpest": 8.13e-07, + "simulators": 8.13e-07, + "sixes": 8.13e-07, + "skilful": 8.13e-07, + "snot": 8.13e-07, + "sodas": 8.13e-07, + "spilt": 8.13e-07, + "spineless": 8.13e-07, + "spirals": 8.13e-07, + "stairwell": 8.13e-07, + "stalwart": 8.13e-07, + "standardised": 8.13e-07, + "stapleton": 8.13e-07, + "starfleet": 8.13e-07, + "steeper": 8.13e-07, + "stomped": 8.13e-07, + "stooges": 8.13e-07, + "streisand": 8.13e-07, + "subtraction": 8.13e-07, + "sufi": 8.13e-07, + "summing": 8.13e-07, + "sutra": 8.13e-07, + "swiped": 8.13e-07, + "sybil": 8.13e-07, + "synagogues": 8.13e-07, + "tartan": 8.13e-07, + "taut": 8.13e-07, + "teapot": 8.13e-07, + "telephoned": 8.13e-07, + "theorems": 8.13e-07, + "therefor": 8.13e-07, + "thoroughfare": 8.13e-07, + "threading": 8.13e-07, + "traversing": 8.13e-07, + "treehouse": 8.13e-07, + "tribeca": 8.13e-07, + "tripadvisor": 8.13e-07, + "triumphed": 8.13e-07, + "tuner": 8.13e-07, + "ukraines": 8.13e-07, + "underrepresented": 8.13e-07, + "undervalued": 8.13e-07, + "undying": 8.13e-07, + "unequivocal": 8.13e-07, + "uneventful": 8.13e-07, + "unfathomable": 8.13e-07, + "ungodly": 8.13e-07, + "unprofitable": 8.13e-07, + "unreported": 8.13e-07, + "unsung": 8.13e-07, + "usas": 7.94e-08, + "vaginas": 8.13e-07, + "valour": 8.13e-07, + "vanquished": 8.13e-07, + "velocities": 8.13e-07, + "vern": 8.13e-07, + "vf": 8.13e-07, + "warburton": 8.13e-07, + "waterman": 8.13e-07, + "weinberg": 8.13e-07, + "wetter": 8.13e-07, + "whittier": 8.13e-07, + "windscreen": 8.13e-07, + "wonka": 8.13e-07, + "woodhouse": 8.13e-07, + "wormhole": 8.13e-07, + "wray": 8.13e-07, + "yellows": 4.37e-08, + "youngstown": 8.13e-07, + "zanzibar": 8.13e-07, + "zola": 8.13e-07, + "zooming": 8.13e-07, + "abram": 7.94e-07, + "accented": 7.94e-07, + "adonis": 7.94e-07, + "aggrieved": 7.94e-07, + "albatross": 7.94e-07, + "alina": 7.94e-07, + "allusions": 7.94e-07, + "amal": 7.94e-07, + "androids": 2.19e-07, + "anglesey": 7.94e-07, + "annabel": 7.94e-07, + "antivirus": 7.94e-07, + "aquifer": 7.94e-07, + "arduino": 7.94e-07, + "armando": 7.94e-07, + "arouse": 7.94e-07, + "arranges": 7.94e-07, + "assemblyman": 7.94e-07, + "autocratic": 7.94e-07, + "autographed": 7.94e-07, + "avis": 3.8e-08, + "ayres": 7.94e-07, + "baez": 7.94e-07, + "bak": 7.94e-07, + "bakeries": 7.94e-07, + "bakr": 7.94e-07, + "ballarat": 7.94e-07, + "baller": 7.94e-07, + "banff": 7.94e-07, + "basements": 7.94e-07, + "bene": 7.94e-07, + "bereaved": 7.94e-07, + "bes": 1.17e-07, + "bfa": 7.94e-07, + "bigelow": 7.94e-07, + "bindings": 7.94e-07, + "bjorn": 7.94e-07, + "blackouts": 7.94e-07, + "blossomed": 7.94e-07, + "blossoming": 7.94e-07, + "blowers": 7.94e-07, + "bogota": 7.94e-07, + "boldness": 7.94e-07, + "bolstered": 7.94e-07, + "bookseller": 7.94e-07, + "borrows": 7.94e-07, + "brahms": 7.94e-07, + "brampton": 7.94e-07, + "brant": 7.94e-07, + "breakage": 7.94e-07, + "brianna": 7.94e-07, + "budweiser": 7.94e-07, + "calc": 7.94e-07, + "capitulation": 7.94e-07, + "cardiologist": 7.94e-07, + "carelessly": 7.94e-07, + "carotid": 7.94e-07, + "catania": 7.94e-07, + "cath": 7.94e-07, + "caulfield": 7.94e-07, + "chaplains": 5.62e-08, + "charade": 7.94e-07, + "chimps": 7.94e-07, + "chinook": 7.94e-07, + "christoph": 7.94e-07, + "cme": 7.94e-07, + "coconuts": 7.94e-07, + "coed": 7.94e-07, + "coexistence": 7.94e-07, + "cohens": 7.76e-08, + "coiled": 7.94e-07, + "coimbatore": 7.94e-07, + "compatriots": 7.94e-07, + "concourse": 7.94e-07, + "confide": 7.94e-07, + "converging": 7.94e-07, + "corning": 7.94e-07, + "countryman": 7.94e-07, + "cpt": 7.94e-07, + "cpus": 9.33e-08, + "cramping": 7.94e-07, + "craved": 7.94e-07, + "craves": 7.94e-07, + "crs": 7.94e-07, + "crutch": 7.94e-07, + "cupboards": 7.94e-07, + "cursive": 7.94e-07, + "cutout": 7.94e-07, + "daisies": 7.94e-07, + "dandelion": 7.94e-07, + "ddt": 7.94e-07, + "deafness": 7.94e-07, + "decals": 7.94e-07, + "declassified": 7.94e-07, + "deflated": 7.94e-07, + "defoe": 7.94e-07, + "dekker": 7.94e-07, + "demonstrator": 7.94e-07, + "denoting": 7.94e-07, + "destruct": 7.94e-07, + "determinant": 7.94e-07, + "deterred": 7.94e-07, + "devonian": 7.94e-07, + "devouring": 7.94e-07, + "dias": 6.61e-08, + "disagreeing": 7.94e-07, + "disenfranchised": 7.94e-07, + "disengage": 7.94e-07, + "disoriented": 7.94e-07, + "displacing": 7.94e-07, + "dissect": 7.94e-07, + "dmitri": 7.94e-07, + "dominos": 4.9e-07, + "dowd": 7.94e-07, + "drm": 7.94e-07, + "drywall": 7.94e-07, + "dsc": 7.94e-07, + "duggan": 7.94e-07, + "eagerness": 7.94e-07, + "elba": 7.94e-07, + "elliptic": 7.94e-07, + "emitter": 7.94e-07, + "emporium": 7.94e-07, + "empties": 7.94e-07, + "endo": 7.94e-07, + "epicenter": 7.94e-07, + "epidural": 7.94e-07, + "epistle": 7.94e-07, + "equating": 7.94e-07, + "erstwhile": 7.94e-07, + "espoused": 7.94e-07, + "exertion": 7.94e-07, + "expend": 7.94e-07, + "facilitator": 7.94e-07, + "familia": 7.94e-07, + "fanfic": 7.94e-07, + "fathered": 7.94e-07, + "ferocity": 7.94e-07, + "flagstaff": 7.94e-07, + "fluidity": 7.94e-07, + "follies": 7.94e-07, + "fortify": 7.94e-07, + "fouling": 7.94e-07, + "frazer": 7.94e-07, + "frills": 7.94e-07, + "frodo": 7.94e-07, + "fsb": 7.94e-07, + "gabriella": 7.94e-07, + "gagged": 7.94e-07, + "galactica": 7.94e-07, + "ganga": 7.94e-07, + "garret": 7.94e-07, + "gartner": 7.94e-07, + "gaunt": 7.94e-07, + "gilchrist": 7.94e-07, + "gilman": 7.94e-07, + "gms": 6.03e-07, + "gops": 7.94e-07, + "grapevine": 7.94e-07, + "grinds": 7.94e-07, + "groaning": 7.94e-07, + "grotto": 7.94e-07, + "groundhog": 7.94e-07, + "gsa": 7.94e-07, + "guerilla": 7.94e-07, + "gwent": 7.94e-07, + "habeas": 7.94e-07, + "hain": 7.94e-07, + "hairless": 7.94e-07, + "hamm": 7.94e-07, + "healey": 7.94e-07, + "heave": 7.94e-07, + "hellfire": 7.94e-07, + "highlander": 7.94e-07, + "hilt": 7.94e-07, + "hinterland": 7.94e-07, + "hoh": 7.94e-07, + "holliday": 7.94e-07, + "homely": 7.94e-07, + "humphries": 7.94e-07, + "ibs": 7.94e-07, + "idlib": 7.94e-07, + "ignacio": 7.94e-07, + "inbred": 7.94e-07, + "incase": 7.94e-07, + "inclusions": 7.94e-07, + "indescribable": 7.94e-07, + "indoctrination": 7.94e-07, + "inductive": 7.94e-07, + "inevitability": 7.94e-07, + "infatuated": 7.94e-07, + "infatuation": 7.94e-07, + "infighting": 7.94e-07, + "infra": 7.94e-07, + "infraction": 7.94e-07, + "inhabiting": 7.94e-07, + "inkling": 7.94e-07, + "innuendo": 7.94e-07, + "insecticide": 7.94e-07, + "instantaneously": 7.94e-07, + "interchangeably": 7.94e-07, + "interfaith": 7.94e-07, + "interrogate": 7.94e-07, + "introspective": 7.94e-07, + "itu": 7.94e-07, + "javelin": 7.94e-07, + "jenn": 7.94e-07, + "joplin": 7.94e-07, + "juanita": 7.94e-07, + "juarez": 7.94e-07, + "judea": 7.94e-07, + "kazan": 7.94e-07, + "ketamine": 7.94e-07, + "kinney": 7.94e-07, + "klay": 7.94e-07, + "klingon": 7.94e-07, + "knoll": 7.94e-07, + "kurtz": 7.94e-07, + "laila": 7.94e-07, + "landlady": 7.94e-07, + "larceny": 7.94e-07, + "lavatory": 7.94e-07, + "leanings": 7.94e-07, + "leavenworth": 7.94e-07, + "leos": 2.75e-07, + "ligands": 7.94e-07, + "lingered": 7.94e-07, + "linings": 7.94e-07, + "loa": 7.94e-07, + "locales": 7.94e-07, + "lourdes": 7.94e-07, + "lucio": 7.94e-07, + "luffy": 7.94e-07, + "luminosity": 7.94e-07, + "luo": 7.94e-07, + "lw": 7.94e-07, + "magpie": 7.94e-07, + "maoist": 7.94e-07, + "masjid": 7.94e-07, + "massimo": 7.94e-07, + "materialized": 7.94e-07, + "matrimonial": 7.94e-07, + "maul": 7.94e-07, + "mayne": 7.94e-07, + "mcknight": 7.94e-07, + "meandering": 7.94e-07, + "melbournes": 7.94e-07, + "mendez": 7.94e-07, + "menstruation": 7.94e-07, + "messianic": 7.94e-07, + "metering": 7.94e-07, + "michaela": 7.94e-07, + "minimalism": 7.94e-07, + "misgivings": 7.94e-07, + "misogynist": 7.94e-07, + "modalities": 7.94e-07, + "motels": 7.94e-07, + "motivator": 7.94e-07, + "mts": 7.94e-07, + "mulch": 7.94e-07, + "musket": 7.94e-07, + "nader": 7.94e-07, + "nance": 7.94e-07, + "navi": 2.19e-07, + "neednt": 7.94e-07, + "nestor": 7.94e-07, + "nether": 7.94e-07, + "neuer": 7.94e-07, + "newtons": 2.04e-07, + "ngc": 7.94e-07, + "nintendos": 7.94e-07, + "nourish": 7.94e-07, + "nuh": 7.94e-07, + "numbing": 7.94e-07, + "nutritionist": 7.94e-07, + "oat": 7.94e-07, + "obscenity": 7.94e-07, + "obsess": 7.94e-07, + "ohhhh": 7.94e-07, + "onlookers": 7.94e-07, + "orator": 7.94e-07, + "oscillations": 7.94e-07, + "outweighed": 7.94e-07, + "ove": 7.94e-07, + "overhauled": 7.94e-07, + "overpaid": 7.94e-07, + "oxen": 7.94e-07, + "palais": 7.94e-07, + "palmerston": 7.94e-07, + "papyrus": 7.94e-07, + "patrolled": 7.94e-07, + "patties": 7.94e-07, + "pemberton": 7.94e-07, + "pennington": 7.94e-07, + "perpetuity": 7.94e-07, + "philipp": 7.94e-07, + "philo": 7.94e-07, + "phineas": 7.94e-07, + "pho": 7.94e-07, + "platelet": 7.94e-07, + "pliers": 7.94e-07, + "pluralism": 7.94e-07, + "polynesian": 7.94e-07, + "pooja": 7.94e-07, + "portability": 7.94e-07, + "posturing": 7.94e-07, + "pouches": 7.94e-07, + "pq": 7.94e-07, + "predation": 7.94e-07, + "preheat": 7.94e-07, + "prev": 7.94e-07, + "pringle": 7.94e-07, + "procter": 7.94e-07, + "pronouncing": 7.94e-07, + "propagating": 7.94e-07, + "prospered": 7.94e-07, + "protectorate": 7.94e-07, + "psychopathic": 7.94e-07, + "puffed": 7.94e-07, + "quarterfinal": 7.94e-07, + "randomness": 7.94e-07, + "recitation": 7.94e-07, + "reconsidered": 7.94e-07, + "rectal": 7.94e-07, + "recursive": 7.94e-07, + "reevaluate": 7.94e-07, + "renaming": 7.94e-07, + "reprimand": 7.94e-07, + "rerun": 7.94e-07, + "reverting": 7.94e-07, + "riddance": 7.94e-07, + "rk": 7.94e-07, + "ruthlessly": 7.94e-07, + "sakes": 7.94e-07, + "satchel": 7.94e-07, + "saucy": 7.94e-07, + "schalke": 7.94e-07, + "scorsese": 7.94e-07, + "scr": 7.94e-07, + "sculptural": 7.94e-07, + "septum": 7.94e-07, + "servo": 7.94e-07, + "shaws": 8.71e-08, + "shears": 7.94e-07, + "shemale": 7.94e-07, + "shiloh": 7.94e-07, + "shrank": 7.94e-07, + "shyness": 7.94e-07, + "slimmer": 7.94e-07, + "snub": 7.94e-07, + "sobering": 7.94e-07, + "soyuz": 7.94e-07, + "spandex": 7.94e-07, + "spanked": 7.94e-07, + "sparkles": 7.94e-07, + "spew": 7.94e-07, + "spieth": 7.94e-07, + "sportswear": 7.94e-07, + "squeak": 7.94e-07, + "srinagar": 7.94e-07, + "staking": 7.94e-07, + "steakhouse": 7.94e-07, + "steers": 7.94e-07, + "stratigraphic": 7.94e-07, + "stratosphere": 7.94e-07, + "stucco": 7.94e-07, + "suave": 7.94e-07, + "subcontractors": 7.94e-07, + "succinct": 7.94e-07, + "superficially": 7.94e-07, + "sweetener": 7.94e-07, + "syncing": 7.94e-07, + "tamar": 7.94e-07, + "taxonomic": 7.94e-07, + "telltale": 7.94e-07, + "tem": 7.94e-07, + "tennyson": 7.94e-07, + "teslas": 8.71e-08, + "testimonials": 7.94e-07, + "thanos": 7.94e-07, + "thisll": 7.94e-07, + "thoughtless": 7.94e-07, + "thrower": 7.94e-07, + "thud": 7.94e-07, + "tibia": 7.94e-07, + "tims": 3.09e-07, + "titular": 7.94e-07, + "toads": 8.91e-08, + "tok": 7.94e-07, + "torrential": 7.94e-07, + "trad": 7.94e-07, + "trashing": 7.94e-07, + "treading": 7.94e-07, + "trotting": 7.94e-07, + "tulane": 7.94e-07, + "tunneling": 7.94e-07, + "uma": 7.94e-07, + "unitarian": 7.94e-07, + "usp": 7.94e-07, + "valence": 7.94e-07, + "ventilated": 7.94e-07, + "villager": 7.94e-07, + "vincents": 1e-07, + "virtuoso": 7.94e-07, + "vos": 7.94e-07, + "wail": 7.94e-07, + "watertown": 7.94e-07, + "wedged": 7.94e-07, + "welder": 7.94e-07, + "westlake": 7.94e-07, + "wetting": 7.94e-07, + "wg": 7.94e-07, + "whitening": 7.94e-07, + "whitewater": 7.94e-07, + "whiz": 7.94e-07, + "wilds": 1.48e-07, + "wingman": 7.94e-07, + "witherspoon": 7.94e-07, + "wolverines": 1.29e-07, + "woodbury": 7.94e-07, + "woodford": 7.94e-07, + "woodruff": 7.94e-07, + "worshiped": 7.94e-07, + "xenon": 7.94e-07, + "zo": 7.94e-07, + "abnormality": 7.76e-07, + "acme": 7.76e-07, + "acta": 7.76e-07, + "addendum": 7.76e-07, + "adhesives": 7.76e-07, + "adsorption": 7.76e-07, + "affront": 7.76e-07, + "afoot": 7.76e-07, + "agri": 7.76e-07, + "alla": 7.76e-07, + "alludes": 7.76e-07, + "alms": 7.76e-07, + "altars": 7.76e-07, + "alternates": 7.76e-07, + "amenable": 7.76e-07, + "amity": 7.76e-07, + "amt": 7.76e-07, + "amys": 7.76e-07, + "annas": 1.55e-07, + "annotation": 7.76e-07, + "anthonys": 7.76e-07, + "antibacterial": 7.76e-07, + "antoni": 7.76e-07, + "apprenticeships": 7.76e-07, + "argumentative": 7.76e-07, + "arne": 7.76e-07, + "artsy": 7.76e-07, + "assailants": 7.76e-07, + "asymptomatic": 7.76e-07, + "atherton": 7.76e-07, + "atmospheres": 5.37e-08, + "attila": 7.76e-07, + "authorizes": 7.76e-07, + "avril": 7.76e-07, + "baccalaureate": 7.76e-07, + "bala": 7.76e-07, + "balmain": 7.76e-07, + "barcode": 7.76e-07, + "barra": 7.76e-07, + "bearable": 7.76e-07, + "beehive": 7.76e-07, + "beltway": 7.76e-07, + "bering": 7.76e-07, + "bianchi": 7.76e-07, + "biosphere": 7.76e-07, + "blackman": 7.76e-07, + "bloch": 7.76e-07, + "bodybuilder": 7.76e-07, + "bosco": 7.76e-07, + "botanist": 7.76e-07, + "bottomed": 7.76e-07, + "boutiques": 7.76e-07, + "brownsville": 7.76e-07, + "caches": 7.76e-07, + "calmness": 7.76e-07, + "canny": 7.76e-07, + "cartons": 7.76e-07, + "cassettes": 7.76e-07, + "castile": 7.76e-07, + "caveman": 7.76e-07, + "centimeter": 7.76e-07, + "cet": 7.76e-07, + "chairwoman": 7.76e-07, + "characterisation": 7.76e-07, + "checkered": 7.76e-07, + "cheekbones": 7.76e-07, + "chengdu": 7.76e-07, + "cias": 7.76e-07, + "cilantro": 7.76e-07, + "circumcised": 7.76e-07, + "cit": 7.76e-07, + "civics": 1.55e-08, + "clamped": 7.76e-07, + "claps": 7.76e-07, + "clementine": 7.76e-07, + "clipboard": 7.76e-07, + "compensatory": 7.76e-07, + "concedes": 7.76e-07, + "conceptions": 7.76e-07, + "confessor": 7.76e-07, + "connoisseur": 7.76e-07, + "contemplative": 7.76e-07, + "convocation": 7.76e-07, + "corrupting": 7.76e-07, + "countermeasures": 7.76e-07, + "crosse": 7.76e-07, + "culpable": 7.76e-07, + "dag": 7.76e-07, + "damsel": 7.76e-07, + "daze": 7.76e-07, + "debugging": 7.76e-07, + "deg": 7.76e-07, + "deliciously": 7.76e-07, + "dewitt": 7.76e-07, + "dickey": 7.76e-07, + "diocesan": 7.76e-07, + "disputing": 7.76e-07, + "distorting": 7.76e-07, + "disused": 7.76e-07, + "divination": 7.76e-07, + "doggo": 7.76e-07, + "dol": 7.76e-07, + "doolittle": 7.76e-07, + "douchebag": 7.76e-07, + "downsizing": 7.76e-07, + "dprk": 7.76e-07, + "drunkenness": 7.76e-07, + "dumas": 7.76e-07, + "dykes": 7.76e-07, + "eastbourne": 7.76e-07, + "ebenezer": 7.76e-07, + "ecm": 7.76e-07, + "emigrate": 7.76e-07, + "emulsion": 7.76e-07, + "epistemology": 7.76e-07, + "erick": 7.76e-07, + "esters": 7.76e-07, + "euphrates": 7.76e-07, + "evacuating": 7.76e-07, + "exorcism": 7.76e-07, + "fabled": 7.76e-07, + "fabricate": 7.76e-07, + "fatherhood": 7.76e-07, + "favre": 7.76e-07, + "fein": 7.76e-07, + "fem": 7.76e-07, + "femoral": 7.76e-07, + "ferreira": 7.76e-07, + "feuds": 7.76e-07, + "fijian": 7.76e-07, + "filibuster": 7.76e-07, + "fillings": 7.76e-07, + "fillmore": 7.76e-07, + "finalize": 7.76e-07, + "financiers": 7.76e-07, + "flicking": 7.76e-07, + "flourishes": 7.76e-07, + "fluctuation": 7.76e-07, + "foia": 7.76e-07, + "fraudulently": 7.76e-07, + "fumbles": 7.76e-07, + "gander": 7.76e-07, + "gauze": 7.76e-07, + "geometrical": 7.76e-07, + "ghoul": 7.76e-07, + "giggled": 7.76e-07, + "gimmicks": 7.76e-07, + "goebbels": 7.76e-07, + "golan": 7.76e-07, + "grandstand": 7.76e-07, + "grazed": 7.76e-07, + "grumbling": 7.76e-07, + "guelph": 7.76e-07, + "guitarists": 5.62e-08, + "hales": 1.62e-07, + "hallucination": 7.76e-07, + "hamill": 7.76e-07, + "hamza": 7.76e-07, + "hcl": 7.76e-07, + "heaton": 7.76e-07, + "heeled": 7.76e-07, + "helms": 1.17e-07, + "hibernian": 7.76e-07, + "hoi": 7.76e-07, + "hovered": 7.76e-07, + "hulls": 2.29e-07, + "huns": 7.76e-07, + "hutchins": 7.76e-07, + "hydrophobic": 7.76e-07, + "immaterial": 7.76e-07, + "imprinted": 7.76e-07, + "industrialists": 7.76e-07, + "inefficiency": 7.76e-07, + "inflationary": 7.76e-07, + "inflexible": 7.76e-07, + "inflow": 7.76e-07, + "inglis": 7.76e-07, + "intercom": 7.76e-07, + "internationale": 7.76e-07, + "intersecting": 7.76e-07, + "intrigues": 7.76e-07, + "invalidated": 7.76e-07, + "inwards": 7.76e-07, + "iw": 7.76e-07, + "jacking": 7.76e-07, + "jamieson": 7.76e-07, + "jem": 7.76e-07, + "jihadi": 7.76e-07, + "justifications": 7.76e-07, + "keanu": 7.76e-07, + "kenney": 7.76e-07, + "keyed": 7.76e-07, + "knighthood": 7.76e-07, + "kryptonite": 7.76e-07, + "laborer": 7.76e-07, + "lamenting": 7.76e-07, + "lefties": 7.76e-07, + "lengthened": 7.76e-07, + "levis": 3.98e-07, + "lifesaving": 7.76e-07, + "lire": 7.76e-07, + "lnp": 7.76e-07, + "lovecraft": 7.76e-07, + "lst": 7.76e-07, + "lucinda": 7.76e-07, + "lula": 7.76e-07, + "machinations": 7.76e-07, + "maha": 7.76e-07, + "mangrove": 7.76e-07, + "marmalade": 7.76e-07, + "marseilles": 5.25e-08, + "masala": 7.76e-07, + "masts": 7.76e-07, + "maura": 7.76e-07, + "maxs": 7.76e-07, + "mecha": 7.76e-07, + "metcalf": 7.76e-07, + "militarys": 7.76e-07, + "milled": 7.76e-07, + "miocene": 7.76e-07, + "mirren": 7.76e-07, + "mirza": 7.76e-07, + "mississauga": 7.76e-07, + "moderating": 7.76e-07, + "modifier": 7.76e-07, + "molesting": 7.76e-07, + "moored": 7.76e-07, + "naturalization": 7.76e-07, + "nene": 7.76e-07, + "nerf": 7.76e-07, + "norways": 7.76e-07, + "numbness": 7.76e-07, + "nunn": 7.76e-07, + "otoole": 7.76e-07, + "oar": 7.76e-07, + "objecting": 7.76e-07, + "occidental": 7.76e-07, + "oozing": 7.76e-07, + "opiate": 7.76e-07, + "ordinated": 7.76e-07, + "osprey": 7.76e-07, + "outscored": 7.76e-07, + "overheated": 7.76e-07, + "paddles": 7.76e-07, + "panes": 7.76e-07, + "patten": 7.76e-07, + "pattinson": 7.76e-07, + "pelt": 7.76e-07, + "pennant": 7.76e-07, + "perfectionist": 7.76e-07, + "phantoms": 7.94e-08, + "pickett": 7.76e-07, + "pitts": 3.31e-07, + "playwrights": 7.59e-08, + "poirot": 7.76e-07, + "polands": 7.76e-07, + "pomona": 7.76e-07, + "ponce": 7.76e-07, + "poppies": 7.76e-07, + "powys": 7.76e-07, + "praxis": 7.76e-07, + "preaches": 7.76e-07, + "primes": 1.12e-07, + "priming": 7.76e-07, + "princely": 7.76e-07, + "profited": 7.76e-07, + "psoriasis": 7.76e-07, + "putty": 7.76e-07, + "quench": 7.76e-07, + "radicalism": 7.76e-07, + "radon": 7.76e-07, + "ramping": 7.76e-07, + "rationalize": 7.76e-07, + "reactivity": 7.76e-07, + "reassignment": 7.76e-07, + "rebrand": 7.76e-07, + "relieves": 7.76e-07, + "rennie": 7.76e-07, + "repeater": 7.76e-07, + "reprisals": 7.76e-07, + "reruns": 7.76e-07, + "retardation": 7.76e-07, + "retards": 7.76e-07, + "retort": 7.76e-07, + "revitalization": 7.76e-07, + "rework": 7.76e-07, + "reworking": 7.76e-07, + "rudely": 7.76e-07, + "runes": 7.76e-07, + "sacha": 7.76e-07, + "saddles": 7.76e-07, + "sanctuaries": 7.76e-07, + "saracens": 7.76e-07, + "sawmill": 7.76e-07, + "sbc": 7.76e-07, + "scribes": 7.76e-07, + "selina": 7.76e-07, + "sewed": 7.76e-07, + "sheltering": 7.76e-07, + "shogun": 7.76e-07, + "shoutout": 7.76e-07, + "showings": 7.76e-07, + "shrinkage": 7.76e-07, + "skeptic": 7.76e-07, + "slacks": 7.76e-07, + "sleeveless": 7.76e-07, + "smalls": 9.12e-08, + "smelting": 7.76e-07, + "snell": 7.76e-07, + "snowstorm": 7.76e-07, + "socialite": 7.76e-07, + "somme": 7.76e-07, + "southerly": 7.76e-07, + "spectrometer": 7.76e-07, + "spouting": 7.76e-07, + "sprague": 7.76e-07, + "squandered": 7.76e-07, + "sterilized": 7.76e-07, + "strapping": 7.76e-07, + "stuns": 7.76e-07, + "subspace": 7.76e-07, + "subsurface": 7.76e-07, + "superstructure": 7.76e-07, + "surnames": 7.76e-07, + "sustains": 7.76e-07, + "sweeper": 7.76e-07, + "swish": 7.76e-07, + "sympathizers": 7.76e-07, + "synced": 7.76e-07, + "tabloids": 7.76e-07, + "tamper": 7.76e-07, + "tampon": 7.76e-07, + "telangana": 7.76e-07, + "telephony": 7.76e-07, + "telford": 7.76e-07, + "tenerife": 7.76e-07, + "thad": 7.76e-07, + "thickened": 7.76e-07, + "timberwolves": 7.76e-07, + "tms": 7.76e-07, + "toffee": 7.76e-07, + "tomahawk": 7.76e-07, + "tomlin": 7.76e-07, + "torched": 7.76e-07, + "torre": 7.76e-07, + "torrey": 7.76e-07, + "transactional": 7.76e-07, + "transcendence": 7.76e-07, + "transgression": 7.76e-07, + "trappings": 7.76e-07, + "triage": 7.76e-07, + "ulterior": 7.76e-07, + "unambiguous": 7.76e-07, + "undertakings": 7.76e-07, + "undetermined": 7.76e-07, + "undies": 7.76e-07, + "undulating": 7.76e-07, + "unfettered": 7.76e-07, + "unpacking": 7.76e-07, + "usernames": 7.76e-07, + "venison": 7.76e-07, + "veranda": 7.76e-07, + "verdicts": 7.76e-07, + "veterinarians": 7.76e-07, + "vn": 7.76e-07, + "walpole": 7.76e-07, + "wasserman": 7.76e-07, + "wessex": 7.76e-07, + "westmoreland": 7.76e-07, + "whiny": 7.76e-07, + "whitby": 7.76e-07, + "whitley": 7.76e-07, + "wth": 7.76e-07, + "xt": 7.76e-07, + "xxxx": 7.76e-07, + "yamamoto": 7.76e-07, + "ys": 1.91e-07, + "zaire": 7.76e-07, + "zheng": 7.76e-07, + "zine": 7.76e-07, + "accumulates": 7.59e-07, + "adamson": 7.59e-07, + "adapts": 7.59e-07, + "afterthought": 7.59e-07, + "aida": 7.59e-07, + "airbag": 7.59e-07, + "airman": 7.59e-07, + "airship": 7.59e-07, + "aki": 7.59e-07, + "aligns": 7.59e-07, + "alligators": 7.59e-07, + "alr": 7.59e-07, + "amigos": 7.59e-07, + "animators": 7.59e-07, + "annan": 7.59e-07, + "annihilate": 7.59e-07, + "appointee": 7.59e-07, + "archetypal": 7.59e-07, + "artful": 7.59e-07, + "ascendancy": 7.59e-07, + "asha": 7.59e-07, + "assessor": 7.59e-07, + "asymmetry": 7.59e-07, + "asynchronous": 7.59e-07, + "ati": 7.59e-07, + "attuned": 7.59e-07, + "austins": 6.61e-08, + "ayers": 7.59e-07, + "baal": 7.59e-07, + "baer": 7.59e-07, + "baffles": 7.59e-07, + "bahia": 7.59e-07, + "balotelli": 7.59e-07, + "banal": 7.59e-07, + "basking": 7.59e-07, + "baz": 7.59e-07, + "beattie": 7.59e-07, + "befitting": 7.59e-07, + "benched": 7.59e-07, + "blackface": 7.59e-07, + "bluish": 7.59e-07, + "boba": 7.59e-07, + "bombardier": 7.59e-07, + "boned": 7.59e-07, + "bookkeeper": 7.59e-07, + "booting": 7.59e-07, + "bountiful": 7.59e-07, + "boycotts": 7.59e-07, + "brimming": 7.59e-07, + "bub": 7.59e-07, + "bulldozer": 7.59e-07, + "byers": 7.59e-07, + "byrnes": 1.35e-07, + "cabernet": 7.59e-07, + "calico": 7.59e-07, + "camus": 7.59e-07, + "canoeing": 7.59e-07, + "canvassing": 7.59e-07, + "capillary": 7.59e-07, + "carols": 3.16e-07, + "casanova": 7.59e-07, + "categorical": 7.59e-07, + "ccd": 7.59e-07, + "chariots": 7.59e-07, + "charlemagne": 7.59e-07, + "checkup": 7.59e-07, + "chieftain": 7.59e-07, + "chisholm": 7.59e-07, + "christening": 7.59e-07, + "chs": 7.59e-07, + "cinematographer": 7.59e-07, + "cirrhosis": 7.59e-07, + "cla": 7.59e-07, + "cladding": 7.59e-07, + "clapton": 7.59e-07, + "cle": 7.59e-07, + "cleats": 7.59e-07, + "clemente": 7.59e-07, + "clings": 7.59e-07, + "clingy": 7.59e-07, + "clough": 7.59e-07, + "coburn": 7.59e-07, + "codeine": 7.59e-07, + "coeur": 7.59e-07, + "colitis": 7.59e-07, + "combative": 7.59e-07, + "conceited": 7.59e-07, + "connell": 7.59e-07, + "connery": 7.59e-07, + "consecration": 7.59e-07, + "conspicuously": 7.59e-07, + "coors": 7.59e-07, + "correa": 7.59e-07, + "counterattack": 7.59e-07, + "courted": 7.59e-07, + "cranked": 7.59e-07, + "crested": 7.59e-07, + "cro": 7.59e-07, + "cte": 7.59e-07, + "cto": 7.59e-07, + "curie": 7.59e-07, + "cuteness": 7.59e-07, + "daddies": 7.59e-07, + "darken": 7.59e-07, + "darlin": 7.59e-07, + "dba": 7.59e-07, + "dci": 7.59e-07, + "deane": 7.59e-07, + "debian": 7.59e-07, + "defaulted": 7.59e-07, + "defuse": 7.59e-07, + "deir": 7.59e-07, + "depositing": 7.59e-07, + "dermot": 7.59e-07, + "designating": 7.59e-07, + "devs": 1.35e-07, + "dilation": 7.59e-07, + "dios": 6.17e-08, + "directorial": 7.59e-07, + "dishonor": 7.59e-07, + "disintegrate": 7.59e-07, + "disjointed": 7.59e-07, + "disparaging": 7.59e-07, + "dissenters": 7.59e-07, + "divest": 7.59e-07, + "dodo": 7.59e-07, + "draconian": 7.59e-07, + "draymond": 7.59e-07, + "drosophila": 7.59e-07, + "drummers": 8.91e-08, + "duper": 7.59e-07, + "eerily": 7.59e-07, + "eine": 7.59e-07, + "electrochemical": 7.59e-07, + "embers": 7.59e-07, + "emotive": 7.59e-07, + "empirically": 7.59e-07, + "enforces": 7.59e-07, + "engels": 7.59e-07, + "entanglement": 7.59e-07, + "epsilon": 7.59e-07, + "esc": 7.59e-07, + "exs": 1.51e-07, + "expeditionary": 7.59e-07, + "falk": 7.59e-07, + "faqs": 7.59e-07, + "farrar": 7.59e-07, + "fec": 7.59e-07, + "federations": 3.8e-07, + "finns": 3.72e-07, + "firefight": 7.59e-07, + "firestone": 7.59e-07, + "firstborn": 7.59e-07, + "flees": 7.59e-07, + "flowery": 7.59e-07, + "foss": 7.59e-07, + "frock": 7.59e-07, + "gai": 7.59e-07, + "gamecube": 7.59e-07, + "gens": 4.9e-08, + "gerber": 7.59e-07, + "glutamate": 7.59e-07, + "goblet": 7.59e-07, + "greased": 7.59e-07, + "grimsby": 7.59e-07, + "groupon": 7.59e-07, + "gts": 1.07e-07, + "guilford": 7.59e-07, + "gyro": 7.59e-07, + "habib": 7.59e-07, + "handsomely": 7.59e-07, + "hapless": 7.59e-07, + "harnessing": 7.59e-07, + "hidalgo": 7.59e-07, + "hissing": 7.59e-07, + "hitched": 7.59e-07, + "humanistic": 7.59e-07, + "hurray": 7.59e-07, + "iconography": 7.59e-07, + "igbo": 7.59e-07, + "impervious": 7.59e-07, + "implausible": 7.59e-07, + "imposter": 7.59e-07, + "incurring": 7.59e-07, + "indeterminate": 7.59e-07, + "infidels": 7.59e-07, + "inflection": 7.59e-07, + "innocently": 7.59e-07, + "inroads": 7.59e-07, + "intractable": 7.59e-07, + "irb": 7.59e-07, + "jabs": 7.59e-07, + "jamison": 7.59e-07, + "janelle": 7.59e-07, + "jh": 7.59e-07, + "jimmys": 7.59e-07, + "kardashians": 4.47e-07, + "katya": 7.59e-07, + "kauai": 7.59e-07, + "kenyans": 7.59e-07, + "kickboxing": 7.59e-07, + "kilt": 7.59e-07, + "kirkpatrick": 7.59e-07, + "kona": 7.59e-07, + "kubrick": 7.59e-07, + "landscaped": 7.59e-07, + "leahy": 7.59e-07, + "leverkusen": 7.59e-07, + "lifesaver": 7.59e-07, + "linton": 7.59e-07, + "litany": 7.59e-07, + "localised": 7.59e-07, + "locket": 7.59e-07, + "locomotion": 7.59e-07, + "lott": 7.59e-07, + "lounging": 7.59e-07, + "lrt": 7.59e-07, + "lumia": 7.59e-07, + "lupe": 7.59e-07, + "macklemore": 7.59e-07, + "madre": 7.59e-07, + "mailman": 7.59e-07, + "manoeuvres": 7.59e-07, + "manus": 6.92e-08, + "marksman": 7.59e-07, + "maroons": 7.59e-07, + "maru": 7.59e-07, + "mathis": 7.59e-07, + "matisse": 7.59e-07, + "maven": 7.59e-07, + "mavs": 7.59e-07, + "mbps": 7.59e-07, + "mcfarland": 7.59e-07, + "mcfarlane": 7.59e-07, + "messrs": 7.59e-07, + "mikael": 7.59e-07, + "milliseconds": 7.59e-07, + "minimizes": 7.59e-07, + "mittens": 7.59e-07, + "monterrey": 7.59e-07, + "montoya": 7.59e-07, + "mossad": 7.59e-07, + "mourned": 7.59e-07, + "mourners": 7.59e-07, + "mpc": 7.59e-07, + "msrp": 7.59e-07, + "munching": 7.59e-07, + "myron": 7.59e-07, + "nagoya": 7.59e-07, + "nappy": 7.59e-07, + "nbl": 7.59e-07, + "neanderthals": 7.59e-07, + "nears": 7.59e-07, + "neuter": 7.59e-07, + "newlyweds": 7.59e-07, + "nis": 5.62e-08, + "norwegians": 7.59e-07, + "nvm": 7.59e-07, + "nx": 7.59e-07, + "obj": 7.59e-07, + "och": 7.59e-07, + "odysseus": 7.59e-07, + "ofa": 7.59e-07, + "okcupid": 7.59e-07, + "omitting": 7.59e-07, + "ophelia": 7.59e-07, + "opinionated": 7.59e-07, + "oppress": 7.59e-07, + "originator": 7.59e-07, + "outfitters": 7.59e-07, + "overthrew": 7.59e-07, + "overton": 7.59e-07, + "oxidized": 7.59e-07, + "panhandle": 7.59e-07, + "paradoxical": 7.59e-07, + "paralysed": 7.59e-07, + "parched": 7.59e-07, + "passageway": 7.59e-07, + "pasty": 7.59e-07, + "pate": 7.59e-07, + "patently": 7.59e-07, + "pca": 7.59e-07, + "pecking": 7.59e-07, + "pertain": 7.59e-07, + "pesto": 7.59e-07, + "phys": 7.59e-07, + "plata": 7.59e-07, + "plowing": 7.59e-07, + "pmi": 7.59e-07, + "polity": 7.59e-07, + "pooped": 7.59e-07, + "porcupine": 7.59e-07, + "portia": 7.59e-07, + "pps": 5.89e-08, + "prides": 1.17e-07, + "primacy": 7.59e-07, + "prioritized": 7.59e-07, + "prioritizing": 7.59e-07, + "probed": 7.59e-07, + "psychosocial": 7.59e-07, + "pti": 7.59e-07, + "pulaski": 7.59e-07, + "pwc": 7.59e-07, + "radiological": 7.59e-07, + "rafts": 7.59e-07, + "reagent": 7.59e-07, + "rebranding": 7.59e-07, + "reckons": 7.59e-07, + "rectory": 7.59e-07, + "referendums": 7.59e-07, + "refractive": 7.59e-07, + "refractory": 7.59e-07, + "regrettably": 7.59e-07, + "reiner": 7.59e-07, + "reintroduced": 7.59e-07, + "reorganisation": 7.59e-07, + "reprieve": 7.59e-07, + "resupply": 7.59e-07, + "resurfaced": 7.59e-07, + "retraction": 7.59e-07, + "ricci": 7.59e-07, + "riser": 7.59e-07, + "ruckus": 7.59e-07, + "rutledge": 7.59e-07, + "safeway": 7.59e-07, + "saginaw": 7.59e-07, + "salami": 7.59e-07, + "sandwiched": 7.59e-07, + "sasuke": 7.59e-07, + "schmitt": 7.59e-07, + "scopes": 7.59e-07, + "screech": 7.59e-07, + "scripps": 7.59e-07, + "sculpting": 7.59e-07, + "seared": 7.59e-07, + "sergeants": 1.2e-07, + "shakespearean": 7.59e-07, + "shaven": 7.59e-07, + "shiro": 7.59e-07, + "shopkeeper": 7.59e-07, + "shortness": 7.59e-07, + "shrill": 7.59e-07, + "signalled": 7.59e-07, + "skits": 7.59e-07, + "skyrocketed": 7.59e-07, + "slanted": 7.59e-07, + "slits": 7.59e-07, + "snowed": 7.59e-07, + "sonnets": 7.59e-07, + "soulless": 7.59e-07, + "splitter": 7.59e-07, + "spook": 7.59e-07, + "stagecoach": 7.59e-07, + "statesmen": 7.59e-07, + "stork": 7.59e-07, + "strode": 7.59e-07, + "strongman": 7.59e-07, + "subjecting": 7.59e-07, + "subordinated": 7.59e-07, + "subpoenas": 7.59e-07, + "subside": 7.59e-07, + "subways": 1.17e-07, + "sul": 7.59e-07, + "supp": 7.59e-07, + "swoon": 7.59e-07, + "syringes": 7.59e-07, + "tactically": 7.59e-07, + "tallied": 7.59e-07, + "tartar": 7.59e-07, + "tavares": 7.59e-07, + "telepathy": 7.59e-07, + "terrance": 7.59e-07, + "thane": 7.59e-07, + "thesaurus": 7.59e-07, + "thorax": 7.59e-07, + "thrusters": 7.59e-07, + "tien": 7.59e-07, + "timings": 7.59e-07, + "tithe": 7.59e-07, + "tou": 7.59e-07, + "trina": 7.59e-07, + "tripp": 7.59e-07, + "trolled": 7.59e-07, + "ttc": 7.59e-07, + "tucking": 7.59e-07, + "tugging": 7.59e-07, + "twickenham": 7.59e-07, + "ubs": 7.59e-07, + "uga": 7.59e-07, + "unattainable": 7.59e-07, + "underpinning": 7.59e-07, + "unexplored": 7.59e-07, + "unilever": 7.59e-07, + "unsold": 7.59e-07, + "unsubstantiated": 7.59e-07, + "uptight": 7.59e-07, + "valentin": 7.59e-07, + "veda": 7.59e-07, + "virulent": 7.59e-07, + "vomited": 7.59e-07, + "waterfowl": 7.59e-07, + "wesson": 7.59e-07, + "widescreen": 7.59e-07, + "windmills": 7.59e-07, + "womanhood": 7.59e-07, + "worrisome": 7.59e-07, + "wort": 7.59e-07, + "wreaths": 7.59e-07, + "wy": 7.59e-07, + "xix": 7.59e-07, + "yorke": 7.59e-07, + "yuma": 7.59e-07, + "zealanders": 7.59e-07, + "ack": 7.41e-07, + "acronyms": 7.41e-07, + "adderall": 7.41e-07, + "admissible": 7.41e-07, + "airlift": 7.41e-07, + "aitken": 7.41e-07, + "alluvial": 7.41e-07, + "amarillo": 7.41e-07, + "amis": 5.37e-08, + "amyloid": 7.41e-07, + "annes": 1.51e-07, + "ansi": 7.41e-07, + "apical": 7.41e-07, + "apo": 7.41e-07, + "appetites": 7.41e-07, + "armpits": 7.41e-07, + "ascendant": 7.41e-07, + "attenborough": 7.41e-07, + "audiobooks": 7.41e-07, + "bartenders": 6.92e-08, + "barth": 7.41e-07, + "bashar": 7.41e-07, + "battering": 7.41e-07, + "battersea": 7.41e-07, + "bedfordshire": 7.41e-07, + "beecher": 7.41e-07, + "belgians": 7.41e-07, + "bimbo": 7.41e-07, + "blackmailed": 7.41e-07, + "blazed": 7.41e-07, + "blowjobs": 7.41e-07, + "blum": 7.41e-07, + "boarders": 7.41e-07, + "bongo": 7.41e-07, + "bootstrap": 7.41e-07, + "boswell": 7.41e-07, + "bouchard": 7.41e-07, + "bouquets": 7.41e-07, + "braddock": 7.41e-07, + "brahma": 7.41e-07, + "braver": 7.41e-07, + "brisket": 7.41e-07, + "buckeye": 7.41e-07, + "burnside": 7.41e-07, + "cac": 7.41e-07, + "cairn": 7.41e-07, + "callin": 7.41e-07, + "campo": 7.41e-07, + "cancun": 7.41e-07, + "cannonball": 7.41e-07, + "cappuccino": 7.41e-07, + "caricatures": 7.41e-07, + "ceasing": 7.41e-07, + "championing": 7.41e-07, + "chapels": 8.13e-08, + "chirping": 7.41e-07, + "circulatory": 7.41e-07, + "citrate": 7.41e-07, + "climactic": 7.41e-07, + "cloaked": 7.41e-07, + "clocking": 7.41e-07, + "clotting": 7.41e-07, + "cnet": 7.41e-07, + "commemorates": 7.41e-07, + "comstock": 7.41e-07, + "conjuring": 7.41e-07, + "consigned": 7.41e-07, + "constructors": 7.41e-07, + "cornelia": 7.41e-07, + "coups": 7.41e-07, + "cowgirl": 7.41e-07, + "cowl": 7.41e-07, + "crepe": 7.41e-07, + "crocs": 7.41e-07, + "culling": 7.41e-07, + "cycled": 7.41e-07, + "cypriot": 7.41e-07, + "danvers": 7.41e-07, + "darlene": 7.41e-07, + "dashes": 7.41e-07, + "daydreaming": 7.41e-07, + "decently": 7.41e-07, + "decentralization": 7.41e-07, + "decomposed": 7.41e-07, + "decorum": 7.41e-07, + "definately": 7.41e-07, + "deft": 7.41e-07, + "dehydrogenase": 7.41e-07, + "deirdre": 7.41e-07, + "destinys": 7.41e-07, + "detest": 7.41e-07, + "deuteronomy": 7.41e-07, + "devising": 7.41e-07, + "diabetics": 7.41e-07, + "digg": 7.41e-07, + "diodes": 7.41e-07, + "disband": 7.41e-07, + "discarding": 7.41e-07, + "discloses": 7.41e-07, + "dislocation": 7.41e-07, + "disrupts": 7.41e-07, + "distinguishable": 7.41e-07, + "drexel": 7.41e-07, + "duels": 7.41e-07, + "dwells": 7.41e-07, + "earls": 4.17e-07, + "earnestly": 7.41e-07, + "ecg": 7.41e-07, + "effecting": 7.41e-07, + "einsteins": 1e-07, + "electrifying": 7.41e-07, + "elisha": 7.41e-07, + "emblematic": 7.41e-07, + "emilys": 7.41e-07, + "emmet": 7.41e-07, + "englishmen": 7.41e-07, + "enslavement": 7.41e-07, + "entrust": 7.41e-07, + "enviable": 7.41e-07, + "epidemiological": 7.41e-07, + "epithet": 7.41e-07, + "equipments": 9.33e-08, + "espns": 7.41e-07, + "eww": 7.41e-07, + "fairmont": 7.41e-07, + "fairview": 7.41e-07, + "fiercest": 7.41e-07, + "firehouse": 7.41e-07, + "flailing": 7.41e-07, + "flaky": 7.41e-07, + "fleury": 7.41e-07, + "flotilla": 7.41e-07, + "followup": 7.41e-07, + "foolproof": 7.41e-07, + "footballing": 7.41e-07, + "forgetful": 7.41e-07, + "forgettable": 7.41e-07, + "forklift": 7.41e-07, + "freeways": 7.41e-07, + "gallantry": 7.41e-07, + "gamut": 7.41e-07, + "gash": 7.41e-07, + "gawker": 7.41e-07, + "gazelle": 7.41e-07, + "genotype": 7.41e-07, + "gentler": 7.41e-07, + "geronimo": 7.41e-07, + "gilead": 7.41e-07, + "girard": 7.41e-07, + "glistening": 7.41e-07, + "glycol": 7.41e-07, + "gopher": 7.41e-07, + "governess": 7.41e-07, + "grahams": 1.29e-07, + "gravitate": 7.41e-07, + "gregorio": 7.41e-07, + "grinch": 7.41e-07, + "grinned": 7.41e-07, + "guesthouse": 7.41e-07, + "gunfight": 7.41e-07, + "haifa": 7.41e-07, + "hams": 2.75e-07, + "hamsters": 7.41e-07, + "hander": 7.41e-07, + "harvester": 7.41e-07, + "hattie": 7.41e-07, + "heaped": 7.41e-07, + "heartburn": 7.41e-07, + "helmut": 7.41e-07, + "heroics": 7.41e-07, + "hesse": 7.41e-07, + "hickman": 7.41e-07, + "hillbilly": 7.41e-07, + "hla": 7.41e-07, + "hmrc": 7.41e-07, + "hollister": 7.41e-07, + "homeopathy": 7.41e-07, + "hongkong": 7.41e-07, + "honouring": 7.41e-07, + "huckabee": 7.41e-07, + "huntley": 7.41e-07, + "hustling": 7.41e-07, + "ica": 7.41e-07, + "imbecile": 7.41e-07, + "impeded": 7.41e-07, + "impersonation": 7.41e-07, + "impresses": 7.41e-07, + "imprison": 7.41e-07, + "inasmuch": 7.41e-07, + "indonesias": 7.41e-07, + "infiltrating": 7.41e-07, + "intensifying": 7.41e-07, + "intensively": 7.41e-07, + "intercultural": 7.41e-07, + "interrogating": 7.41e-07, + "interviewers": 6.46e-08, + "irvin": 7.41e-07, + "ischemic": 7.41e-07, + "jackal": 7.41e-07, + "jaeger": 7.41e-07, + "jasons": 7.41e-07, + "jee": 7.41e-07, + "jethro": 7.41e-07, + "jokers": 3.98e-07, + "jolla": 7.41e-07, + "joystick": 7.41e-07, + "kamikaze": 7.41e-07, + "karina": 7.41e-07, + "karlsson": 7.41e-07, + "kelp": 7.41e-07, + "kidman": 7.41e-07, + "kingfisher": 7.41e-07, + "kiwis": 5.89e-08, + "kjv": 7.41e-07, + "kmt": 7.41e-07, + "knotted": 7.41e-07, + "lackey": 7.41e-07, + "lain": 7.41e-07, + "laminate": 7.41e-07, + "landis": 7.41e-07, + "leeches": 7.41e-07, + "leek": 7.41e-07, + "leviticus": 7.41e-07, + "levitt": 7.41e-07, + "lifecycle": 7.41e-07, + "linguist": 7.41e-07, + "lms": 7.41e-07, + "lomax": 7.41e-07, + "lor": 7.41e-07, + "lorne": 7.41e-07, + "luring": 7.41e-07, + "lute": 7.41e-07, + "lx": 7.41e-07, + "macrophages": 7.41e-07, + "macros": 7.41e-07, + "madge": 7.41e-07, + "magee": 7.41e-07, + "magpies": 7.41e-07, + "makoto": 7.41e-07, + "mala": 7.41e-07, + "manley": 7.41e-07, + "marketplaces": 7.41e-07, + "marv": 7.41e-07, + "masquerading": 7.41e-07, + "mattel": 7.41e-07, + "mauritania": 7.41e-07, + "mavis": 7.41e-07, + "mchugh": 7.41e-07, + "meanest": 7.41e-07, + "meaningfully": 7.41e-07, + "meatball": 7.41e-07, + "medford": 7.41e-07, + "merino": 7.41e-07, + "mermaids": 8.13e-08, + "metastasis": 7.41e-07, + "microchip": 7.41e-07, + "mikel": 7.41e-07, + "mingled": 7.41e-07, + "mitzvah": 7.41e-07, + "mordor": 7.41e-07, + "mosaics": 7.41e-07, + "muddled": 7.41e-07, + "mumbling": 7.41e-07, + "nautilus": 7.41e-07, + "necked": 7.41e-07, + "nicht": 7.41e-07, + "nieto": 7.41e-07, + "nox": 7.41e-07, + "nymph": 7.41e-07, + "oceanography": 7.41e-07, + "oedipus": 7.41e-07, + "offsetting": 7.41e-07, + "omer": 7.41e-07, + "orpheus": 7.41e-07, + "oswego": 7.41e-07, + "paler": 7.41e-07, + "papaya": 7.41e-07, + "partisanship": 7.41e-07, + "peachy": 7.41e-07, + "pearly": 7.41e-07, + "pensioner": 7.41e-07, + "periscope": 7.41e-07, + "pernicious": 7.41e-07, + "perversion": 7.41e-07, + "phylogenetic": 7.41e-07, + "physiotherapy": 7.41e-07, + "pigmentation": 7.41e-07, + "pizzeria": 7.41e-07, + "populate": 7.41e-07, + "posthumously": 7.41e-07, + "pra": 7.41e-07, + "prawn": 7.41e-07, + "preamble": 7.41e-07, + "predates": 7.41e-07, + "preoccupation": 7.41e-07, + "prim": 7.41e-07, + "programmatic": 7.41e-07, + "propellers": 7.41e-07, + "pruitt": 7.41e-07, + "prying": 7.41e-07, + "ptolemy": 7.41e-07, + "pulsing": 7.41e-07, + "punisher": 7.41e-07, + "pur": 7.41e-07, + "puree": 7.41e-07, + "pyrenees": 7.41e-07, + "quetta": 7.41e-07, + "racketeering": 7.41e-07, + "radars": 5.01e-08, + "radford": 7.41e-07, + "rainier": 7.41e-07, + "rattlesnake": 7.41e-07, + "realignment": 7.41e-07, + "receptacle": 7.41e-07, + "regatta": 7.41e-07, + "regionals": 7.41e-07, + "regs": 7.41e-07, + "reliefs": 7.41e-07, + "remixed": 7.41e-07, + "remo": 7.41e-07, + "removals": 7.41e-07, + "reprisal": 7.41e-07, + "rescind": 7.41e-07, + "reshape": 7.41e-07, + "reshaping": 7.41e-07, + "revitalize": 7.41e-07, + "risotto": 7.41e-07, + "robinsons": 3.02e-07, + "roku": 7.41e-07, + "sadiq": 7.41e-07, + "sagittarius": 7.41e-07, + "samoan": 7.41e-07, + "sauvignon": 7.41e-07, + "savagery": 7.41e-07, + "sca": 7.41e-07, + "scorned": 7.41e-07, + "searchable": 7.41e-07, + "seething": 7.41e-07, + "sequenced": 7.41e-07, + "sequentially": 7.41e-07, + "shamrock": 7.41e-07, + "shearing": 7.41e-07, + "shelving": 7.41e-07, + "sheng": 7.41e-07, + "sifting": 7.41e-07, + "sighing": 7.41e-07, + "sina": 7.41e-07, + "siva": 7.41e-07, + "slog": 7.41e-07, + "smithfield": 7.41e-07, + "smut": 7.41e-07, + "soars": 7.41e-07, + "socialized": 7.41e-07, + "sop": 7.41e-07, + "spiraling": 7.41e-07, + "splice": 7.41e-07, + "sponsorships": 7.41e-07, + "spoonful": 7.41e-07, + "spousal": 7.41e-07, + "sps": 7.41e-08, + "statistician": 7.41e-07, + "stds": 1.45e-07, + "storefront": 7.41e-07, + "storeys": 7.41e-07, + "stroud": 7.41e-07, + "stubble": 7.41e-07, + "subsystem": 7.41e-07, + "suffocated": 7.41e-07, + "summarizing": 7.41e-07, + "supple": 7.41e-07, + "swahili": 7.41e-07, + "syndromes": 7.41e-07, + "synergies": 7.41e-07, + "tacked": 7.41e-07, + "talia": 7.41e-07, + "teague": 7.41e-07, + "tfl": 7.41e-07, + "tipsy": 7.41e-07, + "tirade": 7.41e-07, + "tompkins": 7.41e-07, + "topaz": 7.41e-07, + "torino": 7.41e-07, + "trickster": 7.41e-07, + "trinkets": 7.41e-07, + "triples": 7.41e-07, + "trisha": 7.41e-07, + "trotsky": 7.41e-07, + "turbocharged": 7.41e-07, + "turmeric": 7.41e-07, + "unchallenged": 7.41e-07, + "underestimating": 7.41e-07, + "undress": 7.41e-07, + "uninteresting": 7.41e-07, + "unraveling": 7.41e-07, + "vandalized": 7.41e-07, + "veneration": 7.41e-07, + "vigilantes": 7.41e-07, + "vigour": 7.41e-07, + "vistas": 7.41e-07, + "vitriol": 7.41e-07, + "vue": 7.41e-07, + "wagging": 7.41e-07, + "waned": 7.41e-07, + "warrens": 1.7e-07, + "welt": 7.41e-07, + "wer": 6.31e-08, + "whatre": 7.41e-07, + "wheezing": 7.41e-07, + "whistleblowers": 7.41e-07, + "winded": 7.41e-07, + "wisest": 7.41e-07, + "wop": 7.41e-07, + "wordsworth": 7.41e-07, + "yaw": 7.41e-07, + "zi": 7.41e-07, + "zia": 7.41e-07, + "academys": 7.24e-07, + "accidently": 7.24e-07, + "accusers": 5.89e-08, + "adaptability": 7.24e-07, + "adapters": 7.24e-07, + "adheres": 7.24e-07, + "aetna": 7.24e-07, + "aggressiveness": 7.24e-07, + "ahold": 7.24e-07, + "alamos": 7.24e-07, + "alana": 7.24e-07, + "ales": 7.24e-07, + "alexanders": 6.92e-08, + "allegorical": 7.24e-07, + "amigo": 7.24e-07, + "anode": 7.24e-07, + "apparition": 7.24e-07, + "appetizer": 7.24e-07, + "arafat": 7.24e-07, + "argon": 7.24e-07, + "arrowhead": 7.24e-07, + "asic": 7.24e-07, + "asm": 7.24e-07, + "astonishingly": 7.24e-07, + "astonishment": 7.24e-07, + "atone": 7.24e-07, + "backend": 7.24e-07, + "backhand": 7.24e-07, + "bangla": 7.24e-07, + "bankroll": 7.24e-07, + "barbra": 7.24e-07, + "barnet": 7.24e-07, + "barristers": 7.24e-07, + "belittle": 7.24e-07, + "beryllium": 7.24e-07, + "betrothed": 7.24e-07, + "bidens": 1.66e-07, + "billiard": 7.24e-07, + "bloodthirsty": 7.24e-07, + "blumenthal": 7.24e-07, + "boisterous": 7.24e-07, + "bonneville": 7.24e-07, + "booksellers": 7.24e-07, + "bootcamp": 7.24e-07, + "bradys": 6.61e-08, + "bri": 7.24e-07, + "briar": 7.24e-07, + "brightened": 7.24e-07, + "broderick": 7.24e-07, + "broughton": 7.24e-07, + "buckled": 7.24e-07, + "burgh": 7.24e-07, + "cacao": 7.24e-07, + "cale": 7.24e-07, + "calypso": 7.24e-07, + "capacitance": 7.24e-07, + "caper": 7.24e-07, + "caprice": 7.24e-07, + "carer": 7.24e-07, + "carlsbad": 7.24e-07, + "carriageway": 7.24e-07, + "caspar": 7.24e-07, + "cbe": 7.24e-07, + "cede": 7.24e-07, + "ceres": 7.24e-07, + "chagrin": 7.24e-07, + "champlain": 7.24e-07, + "characterizing": 7.24e-07, + "chock": 7.24e-07, + "chronicled": 7.24e-07, + "clapham": 7.24e-07, + "clawed": 7.24e-07, + "coerce": 7.24e-07, + "coffey": 7.24e-07, + "combustible": 7.24e-07, + "comebacks": 7.24e-07, + "comer": 7.24e-07, + "cometh": 7.24e-07, + "complicates": 7.24e-07, + "complimenting": 7.24e-07, + "compositional": 7.24e-07, + "condenser": 7.24e-07, + "conglomerates": 7.24e-07, + "conjugate": 7.24e-07, + "conjured": 7.24e-07, + "coptic": 7.24e-07, + "cossacks": 7.24e-07, + "cpp": 7.24e-07, + "cutaneous": 7.24e-07, + "daenerys": 7.24e-07, + "dahlia": 7.24e-07, + "dalit": 7.24e-07, + "darlings": 1.1e-07, + "deandre": 7.24e-07, + "debug": 7.24e-07, + "decadence": 7.24e-07, + "decider": 7.24e-07, + "deconstruction": 7.24e-07, + "defamatory": 7.24e-07, + "depravity": 7.24e-07, + "depress": 7.24e-07, + "disheartening": 7.24e-07, + "dugan": 7.24e-07, + "dz": 7.24e-07, + "eavesdropping": 7.24e-07, + "eclipses": 7.24e-07, + "ecuadorian": 7.24e-07, + "edibles": 7.24e-07, + "eia": 7.24e-07, + "eldridge": 7.24e-07, + "enclaves": 7.24e-07, + "encroachment": 7.24e-07, + "equaliser": 7.24e-07, + "ervin": 7.24e-07, + "ese": 7.24e-07, + "etihad": 7.24e-07, + "euclid": 7.24e-07, + "evansville": 7.24e-07, + "exe": 7.24e-07, + "farrah": 7.24e-07, + "faves": 7.24e-07, + "felled": 7.24e-07, + "fentanyl": 7.24e-07, + "ferrara": 7.24e-07, + "fertiliser": 7.24e-07, + "finalised": 7.24e-07, + "finlay": 7.24e-07, + "fintech": 7.24e-07, + "fireflies": 7.24e-07, + "franklins": 8.32e-08, + "freebie": 7.24e-07, + "gaby": 7.24e-07, + "garda": 7.24e-07, + "garibaldi": 7.24e-07, + "garrick": 7.24e-07, + "geezer": 7.24e-07, + "geno": 7.24e-07, + "ghent": 7.24e-07, + "giggs": 7.24e-07, + "gilmour": 7.24e-07, + "givin": 7.24e-07, + "glassware": 7.24e-07, + "gleason": 7.24e-07, + "gmp": 7.24e-07, + "gooey": 7.24e-07, + "gottlieb": 7.24e-07, + "gutters": 7.24e-07, + "habitually": 7.24e-07, + "halts": 7.24e-07, + "harlequin": 7.24e-07, + "harwood": 7.24e-07, + "hatton": 7.24e-07, + "hav": 7.24e-07, + "hdtv": 7.24e-07, + "headgear": 7.24e-07, + "hearn": 7.24e-07, + "heathens": 7.24e-07, + "hemlock": 7.24e-07, + "henchmen": 7.24e-07, + "hep": 7.24e-07, + "hist": 7.24e-07, + "hokkaido": 7.24e-07, + "holm": 7.24e-07, + "honduran": 7.24e-07, + "hydraulics": 7.24e-07, + "hydrolysis": 7.24e-07, + "hydropower": 7.24e-07, + "hyman": 7.24e-07, + "hyperactivity": 7.24e-07, + "hyuk": 7.24e-07, + "ile": 7.24e-07, + "illiteracy": 7.24e-07, + "imac": 7.24e-07, + "incitement": 7.24e-07, + "inconsequential": 7.24e-07, + "indignant": 7.24e-07, + "infamy": 7.24e-07, + "infertile": 7.24e-07, + "infractions": 7.24e-07, + "injector": 7.24e-07, + "innes": 7.24e-07, + "insolvent": 7.24e-07, + "intergalactic": 7.24e-07, + "internalized": 7.24e-07, + "irregularly": 7.24e-07, + "itc": 7.24e-07, + "iterative": 7.24e-07, + "jacoby": 7.24e-07, + "jaya": 7.24e-07, + "jot": 7.24e-07, + "julianne": 7.24e-07, + "jurgen": 7.24e-07, + "kaur": 7.24e-07, + "kevins": 5.89e-08, + "kitties": 7.24e-07, + "klux": 7.24e-07, + "koko": 7.24e-07, + "krueger": 7.24e-07, + "leary": 7.24e-07, + "legumes": 7.24e-07, + "lengthening": 7.24e-07, + "lenox": 7.24e-07, + "lesotho": 7.24e-07, + "levinson": 7.24e-07, + "libre": 7.24e-07, + "lighthearted": 7.24e-07, + "littleton": 7.24e-07, + "lodgings": 7.24e-07, + "logitech": 7.24e-07, + "loma": 7.24e-07, + "lookup": 7.24e-07, + "loughborough": 7.24e-07, + "lounges": 7.24e-07, + "lupin": 7.24e-07, + "maharaj": 7.24e-07, + "marlow": 7.24e-07, + "marston": 7.24e-07, + "maximilian": 7.24e-07, + "meagre": 7.24e-07, + "meditative": 7.24e-07, + "mehdi": 7.24e-07, + "mentored": 7.24e-07, + "merced": 7.24e-07, + "metz": 7.24e-07, + "mics": 5.89e-08, + "middleman": 7.24e-07, + "mildew": 7.24e-07, + "mindedness": 7.24e-07, + "mingling": 7.24e-07, + "mishaps": 7.24e-07, + "moma": 7.24e-07, + "monologues": 7.24e-07, + "moritz": 7.24e-07, + "moulding": 7.24e-07, + "moussa": 7.24e-07, + "mufti": 7.24e-07, + "mughal": 7.24e-07, + "mukherjee": 7.24e-07, + "multivariate": 7.24e-07, + "mustnt": 7.24e-07, + "nadir": 7.24e-07, + "nara": 7.24e-07, + "neale": 7.24e-07, + "neutralized": 7.24e-07, + "nin": 7.24e-07, + "notepad": 7.24e-07, + "numerically": 7.24e-07, + "nutcracker": 7.24e-07, + "obs": 7.24e-07, + "odisha": 7.24e-07, + "okla": 7.24e-07, + "oled": 7.24e-07, + "oregons": 7.24e-07, + "osce": 7.24e-07, + "outboard": 7.24e-07, + "outlier": 7.24e-07, + "outweighs": 7.24e-07, + "pacs": 1.29e-07, + "paltry": 7.24e-07, + "parachutes": 7.24e-07, + "pars": 7.24e-07, + "parsing": 7.24e-07, + "pentecostal": 7.24e-07, + "peripherals": 7.24e-07, + "petitioner": 7.24e-07, + "pharisees": 7.24e-07, + "phils": 1.86e-07, + "pimps": 7.24e-07, + "pinkie": 7.24e-07, + "placer": 7.24e-07, + "plucking": 7.24e-07, + "plummer": 7.24e-07, + "pollute": 7.24e-07, + "potters": 7.08e-07, + "precede": 7.24e-07, + "precocious": 7.24e-07, + "preconceived": 7.24e-07, + "predictors": 7.24e-07, + "presumptuous": 7.24e-07, + "probabilistic": 7.24e-07, + "proms": 7.24e-07, + "pronto": 7.24e-07, + "provo": 7.24e-07, + "prs": 8.51e-08, + "publicize": 7.24e-07, + "purview": 7.24e-07, + "qantas": 7.24e-07, + "quicken": 7.24e-07, + "quicksilver": 7.24e-07, + "quince": 7.24e-07, + "racehorse": 7.24e-07, + "raheem": 7.24e-07, + "raked": 7.24e-07, + "ravioli": 7.24e-07, + "rawlings": 7.24e-07, + "razer": 7.24e-07, + "reagents": 7.24e-07, + "rebounded": 7.24e-07, + "redone": 7.24e-07, + "reston": 7.24e-07, + "revolutionized": 7.24e-07, + "rfid": 7.24e-07, + "ricans": 7.24e-07, + "rosalie": 7.24e-07, + "rove": 7.24e-07, + "rui": 7.24e-07, + "sadler": 7.24e-07, + "saitama": 7.24e-07, + "salvo": 7.24e-07, + "sauron": 7.24e-07, + "schuyler": 7.24e-07, + "scrapes": 7.24e-07, + "sdn": 7.24e-07, + "sei": 7.24e-07, + "seizes": 7.24e-07, + "shrieking": 7.24e-07, + "silences": 7.24e-07, + "silhouettes": 7.24e-07, + "simmering": 7.24e-07, + "sitcoms": 7.24e-07, + "siu": 7.24e-07, + "smears": 7.24e-07, + "smoothed": 7.24e-07, + "sodom": 7.24e-07, + "sofas": 7.24e-07, + "soi": 7.24e-07, + "solange": 7.24e-07, + "spatula": 7.24e-07, + "splicing": 7.24e-07, + "spreadsheets": 7.24e-07, + "squatters": 7.24e-07, + "steamers": 7.24e-07, + "stepdad": 7.24e-07, + "stipulates": 7.24e-07, + "sto": 7.24e-07, + "stockport": 7.24e-07, + "strangling": 7.24e-07, + "streamlining": 7.24e-07, + "stroked": 7.24e-07, + "subunits": 7.24e-07, + "suffocate": 7.24e-07, + "surat": 7.24e-07, + "suspends": 7.24e-07, + "tandy": 7.24e-07, + "tapas": 7.24e-07, + "tenement": 7.24e-07, + "tetanus": 7.24e-07, + "thatched": 7.24e-07, + "thon": 7.24e-07, + "thrifty": 7.24e-07, + "thrombosis": 7.24e-07, + "thunderbird": 7.24e-07, + "tiberius": 7.24e-07, + "tickles": 7.24e-07, + "tiling": 7.24e-07, + "tingle": 7.24e-07, + "townspeople": 7.24e-07, + "transvaal": 7.24e-07, + "treads": 7.24e-07, + "tricia": 7.24e-07, + "trippy": 7.24e-07, + "tryout": 7.24e-07, + "tuscaloosa": 7.24e-07, + "tyra": 7.24e-07, + "tyrosine": 7.24e-07, + "unbridled": 7.24e-07, + "undersea": 7.24e-07, + "unfiltered": 7.24e-07, + "unicode": 7.24e-07, + "unopposed": 7.24e-07, + "urs": 2.88e-08, + "vacationing": 7.24e-07, + "vamp": 7.24e-07, + "vassals": 7.24e-07, + "wanton": 7.24e-07, + "wedlock": 7.24e-07, + "welterweight": 7.24e-07, + "whiteboard": 7.24e-07, + "wholesaler": 7.24e-07, + "witted": 7.24e-07, + "woodside": 7.24e-07, + "wry": 7.24e-07, + "xc": 7.24e-07, + "xie": 7.24e-07, + "xyz": 7.24e-07, + "yasmin": 7.24e-07, + "yom": 7.24e-07, + "yon": 7.24e-07, + "zambian": 7.24e-07, + "ziegler": 7.24e-07, + "zimbabwean": 7.24e-07, + "aas": 1.41e-07, + "abominable": 7.08e-07, + "absolution": 7.08e-07, + "accomplishes": 7.08e-07, + "adequacy": 7.08e-07, + "adopters": 7.08e-07, + "aggie": 7.08e-07, + "ahmet": 7.08e-07, + "airplay": 7.08e-07, + "albrecht": 7.08e-07, + "amalgam": 7.08e-07, + "ambulatory": 7.08e-07, + "annulment": 7.08e-07, + "aoki": 7.08e-07, + "aramaic": 7.08e-07, + "arnie": 7.08e-07, + "articulating": 7.08e-07, + "asi": 7.08e-07, + "asif": 7.08e-07, + "askin": 7.08e-07, + "ato": 7.08e-07, + "atoll": 7.08e-07, + "awa": 7.08e-07, + "axioms": 7.08e-07, + "aztecs": 7.08e-07, + "babbling": 7.08e-07, + "bangers": 7.08e-07, + "bargained": 7.08e-07, + "barnabas": 7.08e-07, + "barrio": 7.08e-07, + "belleville": 7.08e-07, + "benzene": 7.08e-07, + "ber": 7.08e-07, + "bernhard": 7.08e-07, + "biennale": 7.08e-07, + "binghamton": 7.08e-07, + "blackish": 7.08e-07, + "blaise": 7.08e-07, + "blemish": 7.08e-07, + "bobbing": 7.08e-07, + "bogs": 7.08e-07, + "brainstorm": 7.08e-07, + "brevity": 7.08e-07, + "broadside": 7.08e-07, + "buckles": 7.08e-07, + "budd": 7.08e-07, + "burdensome": 7.08e-07, + "burley": 7.08e-07, + "buttered": 7.08e-07, + "cadmium": 7.08e-07, + "callaway": 7.08e-07, + "candida": 7.08e-07, + "carnivorous": 7.08e-07, + "cfc": 7.08e-07, + "characteristically": 7.08e-07, + "chasers": 7.08e-07, + "chf": 7.08e-07, + "chicano": 7.08e-07, + "chimera": 7.08e-07, + "chiropractor": 7.08e-07, + "chr": 7.08e-07, + "chromosomal": 7.08e-07, + "cic": 7.08e-07, + "cig": 7.08e-07, + "cigs": 7.08e-07, + "claustrophobic": 7.08e-07, + "cleave": 7.08e-07, + "clovis": 7.08e-07, + "coinciding": 7.08e-07, + "coleridge": 7.08e-07, + "colvin": 7.08e-07, + "commuted": 7.08e-07, + "conformation": 7.08e-07, + "conveniences": 7.08e-07, + "corinthian": 7.08e-07, + "cotta": 7.08e-07, + "councilor": 7.08e-07, + "counterterrorism": 7.08e-07, + "coyle": 7.08e-07, + "cq": 7.08e-07, + "crayfish": 7.08e-07, + "csf": 7.08e-07, + "cuckold": 7.08e-07, + "culled": 7.08e-07, + "czechs": 7.08e-07, + "davie": 7.08e-07, + "deanna": 7.08e-07, + "defraud": 7.08e-07, + "deftly": 7.08e-07, + "dens": 7.08e-07, + "desertion": 7.08e-07, + "detainee": 7.08e-07, + "devops": 7.08e-07, + "dike": 7.08e-07, + "dispensation": 7.08e-07, + "dit": 7.08e-07, + "domed": 7.08e-07, + "dowager": 7.08e-07, + "drips": 7.08e-07, + "ducati": 7.08e-07, + "dunning": 7.08e-07, + "eaves": 7.08e-07, + "edd": 7.08e-07, + "elie": 7.08e-07, + "emboldened": 7.08e-07, + "emc": 7.08e-07, + "enema": 7.08e-07, + "epp": 7.08e-07, + "erecting": 7.08e-07, + "eroding": 7.08e-07, + "euphoric": 7.08e-07, + "evangelism": 7.08e-07, + "evoking": 7.08e-07, + "excelsior": 7.08e-07, + "exploitative": 7.08e-07, + "fabricating": 7.08e-07, + "fae": 7.08e-07, + "falkland": 7.08e-07, + "fatah": 7.08e-07, + "fdic": 7.08e-07, + "feasting": 7.08e-07, + "ferment": 7.08e-07, + "fetuses": 7.08e-07, + "figurine": 7.08e-07, + "flocking": 7.08e-07, + "flogging": 7.08e-07, + "foote": 7.08e-07, + "freshen": 7.08e-07, + "frostbite": 7.08e-07, + "fuentes": 7.08e-07, + "fulbright": 7.08e-07, + "fulltime": 7.08e-07, + "fundamentalists": 7.08e-07, + "glories": 7.08e-07, + "gn": 7.08e-07, + "goodreads": 7.08e-07, + "goran": 7.08e-07, + "gul": 7.08e-07, + "gulag": 7.08e-07, + "gustave": 7.08e-07, + "hakeem": 7.08e-07, + "handyman": 7.08e-07, + "hangzhou": 7.08e-07, + "harare": 7.08e-07, + "hazing": 7.08e-07, + "heatwave": 7.08e-07, + "hellenic": 7.08e-07, + "hellenistic": 7.08e-07, + "heretical": 7.08e-07, + "herschel": 7.08e-07, + "heston": 7.08e-07, + "homeschool": 7.08e-07, + "homs": 7.08e-07, + "horst": 7.08e-07, + "hsv": 7.08e-07, + "humping": 7.08e-07, + "icd": 7.08e-07, + "ilya": 7.08e-07, + "immeasurable": 7.08e-07, + "immorality": 7.08e-07, + "immutable": 7.08e-07, + "imogen": 7.08e-07, + "impressionable": 7.08e-07, + "impressionist": 7.08e-07, + "ims": 6.17e-08, + "indica": 7.08e-07, + "indict": 7.08e-07, + "indisputable": 7.08e-07, + "inquisitor": 7.08e-07, + "inset": 7.08e-07, + "interceptor": 7.08e-07, + "interpolation": 7.08e-07, + "ischemia": 7.08e-07, + "jamies": 7.08e-07, + "jena": 7.08e-07, + "kaitlyn": 7.08e-07, + "kda": 7.08e-07, + "kettering": 7.08e-07, + "kiddos": 7.08e-07, + "killin": 7.08e-07, + "kohl": 7.08e-07, + "konrad": 7.08e-07, + "kraken": 7.08e-07, + "lancer": 7.08e-07, + "landau": 7.08e-07, + "lauder": 7.08e-07, + "laurels": 1.07e-07, + "leavers": 7.08e-07, + "lewes": 7.08e-07, + "licorice": 7.08e-07, + "lighters": 7.08e-07, + "limes": 1.86e-08, + "linearly": 7.08e-07, + "linguists": 7.08e-07, + "linkages": 7.08e-07, + "lisas": 7.08e-07, + "litchfield": 7.08e-07, + "lufthansa": 7.08e-07, + "lumped": 7.08e-07, + "lunge": 7.08e-07, + "lyra": 7.08e-07, + "mackinnon": 7.08e-07, + "maggots": 7.08e-07, + "malaga": 7.08e-07, + "malayalam": 7.08e-07, + "maliciously": 7.08e-07, + "manipulator": 7.08e-07, + "marathi": 7.08e-07, + "martino": 7.08e-07, + "meddle": 7.08e-07, + "medi": 7.08e-07, + "menagerie": 7.08e-07, + "mesut": 7.08e-07, + "metallurgical": 7.08e-07, + "mga": 7.08e-07, + "micron": 7.08e-07, + "midpoint": 7.08e-07, + "monoclonal": 7.08e-07, + "motorways": 7.08e-07, + "muay": 7.08e-07, + "multiverse": 7.08e-07, + "nibble": 7.08e-07, + "noonan": 7.08e-07, + "nosy": 7.08e-07, + "nullify": 7.08e-07, + "nys": 8.71e-08, + "ofsted": 7.08e-07, + "oligarchy": 7.08e-07, + "omelette": 7.08e-07, + "omnipotent": 7.08e-07, + "oppressors": 7.08e-07, + "orville": 7.08e-07, + "overpower": 7.08e-07, + "overthinking": 7.08e-07, + "overtures": 7.08e-07, + "paedophile": 7.08e-07, + "pagoda": 7.08e-07, + "paraded": 7.08e-07, + "parallax": 7.08e-07, + "passers": 7.08e-07, + "penniless": 7.08e-07, + "phalanx": 7.08e-07, + "photogenic": 7.08e-07, + "pilate": 7.08e-07, + "pirated": 7.08e-07, + "plantings": 7.08e-07, + "plummet": 7.08e-07, + "pn": 7.08e-07, + "pollack": 7.08e-07, + "polymerization": 7.08e-07, + "pondered": 7.08e-07, + "pounder": 7.08e-07, + "prado": 7.08e-07, + "prairies": 7.08e-07, + "prakash": 7.08e-07, + "predicate": 7.08e-07, + "predictability": 7.08e-07, + "prov": 7.08e-07, + "puking": 7.08e-07, + "pyle": 7.08e-07, + "qe": 7.08e-07, + "quaternary": 7.08e-07, + "queenslands": 7.08e-07, + "quintet": 7.08e-07, + "radiated": 7.08e-07, + "ramble": 7.08e-07, + "razors": 1.41e-07, + "realtime": 7.08e-07, + "reconstructive": 7.08e-07, + "reebok": 7.08e-07, + "refrained": 7.08e-07, + "retaliatory": 7.08e-07, + "revolutionize": 7.08e-07, + "revs": 7.08e-07, + "rhinoceros": 7.08e-07, + "ricks": 4.47e-07, + "rickshaw": 7.08e-07, + "rinehart": 7.08e-07, + "rodger": 7.08e-07, + "rollover": 7.08e-07, + "romain": 7.08e-07, + "romp": 7.08e-07, + "roxanne": 7.08e-07, + "rustling": 7.08e-07, + "sainte": 7.08e-07, + "salesforce": 7.08e-07, + "sanger": 7.08e-07, + "sarawak": 7.08e-07, + "sawdust": 7.08e-07, + "sba": 7.08e-07, + "scavenging": 7.08e-07, + "scoured": 7.08e-07, + "scrotum": 7.08e-07, + "scruffy": 7.08e-07, + "sdk": 7.08e-07, + "seans": 7.08e-07, + "sel": 7.08e-07, + "sewerage": 7.08e-07, + "shanahan": 7.08e-07, + "shangri": 7.08e-07, + "shasta": 7.08e-07, + "shenandoah": 7.08e-07, + "shithead": 7.08e-07, + "shoo": 7.08e-07, + "simplifies": 7.08e-07, + "sinuses": 7.08e-07, + "slc": 7.08e-07, + "slung": 7.08e-07, + "smelter": 7.08e-07, + "smoothness": 7.08e-07, + "smother": 7.08e-07, + "sniffed": 7.08e-07, + "snorted": 7.08e-07, + "soa": 7.08e-07, + "sparky": 7.08e-07, + "spencers": 1.35e-07, + "spontaneity": 7.08e-07, + "sprain": 7.08e-07, + "sprinklers": 7.08e-07, + "sss": 7.08e-07, + "stateless": 7.08e-07, + "stateside": 7.08e-07, + "stepson": 7.08e-07, + "stillwater": 7.08e-07, + "strolled": 7.08e-07, + "stunningly": 7.08e-07, + "sudbury": 7.08e-07, + "surly": 7.08e-07, + "susannah": 7.08e-07, + "sutures": 7.08e-07, + "sweeteners": 7.08e-07, + "symbolized": 7.08e-07, + "tarnish": 7.08e-07, + "tasman": 7.08e-07, + "tek": 7.08e-07, + "thailands": 7.08e-07, + "thermo": 7.08e-07, + "thrashed": 7.08e-07, + "thyself": 7.08e-07, + "tipton": 7.08e-07, + "tls": 7.08e-07, + "topsy": 7.08e-07, + "torsion": 7.08e-07, + "tosh": 7.08e-07, + "touchstone": 7.08e-07, + "tramway": 7.08e-07, + "treatable": 7.08e-07, + "trier": 7.08e-07, + "trouser": 7.08e-07, + "tugs": 7.08e-07, + "tumbler": 7.08e-07, + "typeface": 7.08e-07, + "uglier": 7.08e-07, + "ult": 7.08e-07, + "unaccounted": 7.08e-07, + "unbound": 7.08e-07, + "uncalled": 7.08e-07, + "undemocratic": 7.08e-07, + "undergrad": 7.08e-07, + "underpaid": 7.08e-07, + "uninvited": 7.08e-07, + "unleashing": 7.08e-07, + "unnerving": 7.08e-07, + "unpunished": 7.08e-07, + "unrecognized": 7.08e-07, + "untested": 7.08e-07, + "upping": 7.08e-07, + "urethra": 7.08e-07, + "utilising": 7.08e-07, + "uzbek": 7.08e-07, + "vaudeville": 7.08e-07, + "veils": 7.08e-07, + "verve": 7.08e-07, + "vex": 7.08e-07, + "vips": 7.76e-08, + "viv": 7.08e-07, + "vmware": 7.08e-07, + "vod": 7.08e-07, + "walkie": 7.08e-07, + "watchtower": 7.08e-07, + "watsons": 1.48e-07, + "waveform": 7.08e-07, + "weighty": 7.08e-07, + "wilma": 7.08e-07, + "wollongong": 7.08e-07, + "workbook": 7.08e-07, + "workspace": 7.08e-07, + "worships": 7.08e-07, + "xperia": 7.08e-07, + "yoshida": 7.08e-07, + "zephyr": 7.08e-07, + "zoomed": 7.08e-07, + "aberystwyth": 6.92e-07, + "abner": 6.92e-07, + "abstracted": 6.92e-07, + "adr": 6.92e-07, + "adversarial": 6.92e-07, + "aggies": 6.92e-07, + "agnew": 6.92e-07, + "aliases": 6.92e-07, + "allentown": 6.92e-07, + "alphonse": 6.92e-07, + "alvaro": 6.92e-07, + "amiable": 6.92e-07, + "amphitheatre": 6.92e-07, + "amygdala": 6.92e-07, + "angler": 6.92e-07, + "antagonism": 6.92e-07, + "antebellum": 6.92e-07, + "apathetic": 6.92e-07, + "apologists": 6.92e-07, + "appended": 6.92e-07, + "artiste": 6.92e-07, + "atty": 6.92e-07, + "backwater": 6.92e-07, + "ballistics": 6.92e-07, + "bastian": 6.92e-07, + "bequest": 6.92e-07, + "berths": 6.92e-07, + "bewildering": 6.92e-07, + "billiards": 6.92e-07, + "binders": 6.92e-07, + "biodegradable": 6.92e-07, + "biofuels": 6.92e-07, + "biomarkers": 6.92e-07, + "biosynthesis": 6.92e-07, + "blasphemous": 6.92e-07, + "bonny": 6.92e-07, + "booklets": 6.92e-07, + "bores": 6.92e-07, + "briscoe": 6.92e-07, + "briton": 6.92e-07, + "bungee": 6.92e-07, + "bureaucrat": 6.92e-07, + "cadres": 6.92e-07, + "carina": 6.92e-07, + "carnivores": 6.92e-07, + "cascading": 6.92e-07, + "chaucer": 6.92e-07, + "cherie": 6.92e-07, + "chipper": 6.92e-07, + "cli": 6.92e-07, + "cliffhanger": 6.92e-07, + "cline": 6.92e-07, + "clunky": 6.92e-07, + "colgate": 6.92e-07, + "collider": 6.92e-07, + "colosseum": 6.92e-07, + "comers": 6.92e-07, + "comme": 6.92e-07, + "commoner": 6.92e-07, + "conned": 6.92e-07, + "const": 6.92e-07, + "contemporaneous": 6.92e-07, + "contingencies": 6.92e-07, + "counsellors": 6.92e-07, + "cowley": 6.92e-07, + "crediting": 6.92e-07, + "crossovers": 6.92e-07, + "cta": 6.92e-07, + "cumberbatch": 6.92e-07, + "curtin": 6.92e-07, + "cutbacks": 6.92e-07, + "cutthroat": 6.92e-07, + "dailies": 6.92e-07, + "daria": 6.92e-07, + "datasets": 6.92e-07, + "decayed": 6.92e-07, + "deceptively": 6.92e-07, + "decoder": 6.92e-07, + "decommissioning": 6.92e-07, + "degeneres": 6.92e-07, + "delano": 6.92e-07, + "demarco": 6.92e-07, + "demography": 6.92e-07, + "denham": 6.92e-07, + "detroits": 6.92e-07, + "devilish": 6.92e-07, + "disarming": 6.92e-07, + "disloyal": 6.92e-07, + "disowned": 6.92e-07, + "dissociation": 6.92e-07, + "donner": 6.92e-07, + "dormitories": 6.92e-07, + "dowling": 6.92e-07, + "dpi": 6.92e-07, + "dq": 6.92e-07, + "drayton": 6.92e-07, + "dreads": 6.92e-07, + "drowns": 6.92e-07, + "druids": 6.92e-07, + "dueling": 6.92e-07, + "eared": 6.92e-07, + "earthen": 6.92e-07, + "eccentricity": 6.92e-07, + "eccles": 6.92e-07, + "electricians": 6.92e-07, + "electrocuted": 6.92e-07, + "els": 1e-07, + "emissary": 6.92e-07, + "enclosing": 6.92e-07, + "enron": 6.92e-07, + "entrapment": 6.92e-07, + "erectile": 6.92e-07, + "esposito": 6.92e-07, + "esta": 6.92e-07, + "exchanger": 6.92e-07, + "exerting": 6.92e-07, + "expatriates": 6.92e-07, + "eyelash": 6.92e-07, + "favouring": 6.92e-07, + "fernandes": 6.92e-07, + "flaherty": 6.92e-07, + "flappy": 6.92e-07, + "flashpoint": 6.92e-07, + "flirted": 6.92e-07, + "flopping": 6.92e-07, + "foodstuffs": 6.92e-07, + "forego": 6.92e-07, + "foretold": 6.92e-07, + "formalized": 6.92e-07, + "fortification": 6.92e-07, + "fortresses": 6.92e-07, + "fragrances": 6.92e-07, + "francine": 6.92e-07, + "fraternities": 6.92e-07, + "fredericksburg": 6.92e-07, + "frigates": 6.92e-07, + "gaba": 6.92e-07, + "gannon": 6.92e-07, + "gaol": 6.92e-07, + "genghis": 6.92e-07, + "giannis": 6.92e-07, + "gmos": 7.94e-08, + "goalkeepers": 5.89e-08, + "grafts": 6.92e-07, + "grainy": 6.92e-07, + "greenery": 6.92e-07, + "greenhouses": 6.92e-07, + "grundy": 6.92e-07, + "gwyneth": 6.92e-07, + "gynecology": 6.92e-07, + "haa": 6.92e-07, + "hakim": 6.92e-07, + "handily": 6.92e-07, + "harboring": 6.92e-07, + "hauls": 6.92e-07, + "hayek": 6.92e-07, + "heaving": 6.92e-07, + "hebrides": 6.92e-07, + "heighten": 6.92e-07, + "helluva": 6.92e-07, + "henna": 6.92e-07, + "hexagon": 6.92e-07, + "himmler": 6.92e-07, + "hinders": 6.92e-07, + "hinds": 6.92e-07, + "hinton": 6.92e-07, + "historys": 6.92e-07, + "hock": 6.92e-07, + "holler": 6.92e-07, + "holstein": 6.92e-07, + "honking": 6.92e-07, + "hookups": 6.92e-07, + "hooters": 6.92e-07, + "husk": 6.92e-07, + "hussey": 6.92e-07, + "iberian": 6.92e-07, + "ibms": 6.92e-07, + "ikr": 6.92e-07, + "implicate": 6.92e-07, + "implore": 6.92e-07, + "impounded": 6.92e-07, + "indigestion": 6.92e-07, + "indra": 6.92e-07, + "infarction": 6.92e-07, + "infrastructures": 6.92e-07, + "infront": 6.92e-07, + "intakes": 6.92e-07, + "intels": 6.92e-07, + "interned": 6.92e-07, + "internets": 3.02e-07, + "intonation": 6.92e-07, + "inversely": 6.92e-07, + "irrigated": 6.92e-07, + "irritates": 6.92e-07, + "ishmael": 6.92e-07, + "islamophobia": 6.92e-07, + "jeannie": 6.92e-07, + "josephus": 6.92e-07, + "jurys": 6.92e-07, + "justly": 6.92e-07, + "kaleidoscope": 6.92e-07, + "kath": 6.92e-07, + "keypad": 6.92e-07, + "kimchi": 6.92e-07, + "kita": 6.92e-07, + "krakow": 6.92e-07, + "krista": 6.92e-07, + "kutcher": 6.92e-07, + "lactation": 6.92e-07, + "laker": 6.92e-07, + "lapping": 6.92e-07, + "leyland": 6.92e-07, + "liberalization": 6.92e-07, + "lindy": 6.92e-07, + "looters": 6.92e-07, + "lorries": 6.92e-07, + "lottie": 6.92e-07, + "lough": 6.92e-07, + "ltc": 6.92e-07, + "lubricants": 6.92e-07, + "lumpy": 6.92e-07, + "lyricist": 6.92e-07, + "machined": 6.92e-07, + "mads": 6.92e-07, + "malacca": 6.92e-07, + "malaise": 6.92e-07, + "malaysias": 6.92e-07, + "malvern": 6.92e-07, + "mannequins": 6.92e-07, + "maricopa": 6.92e-07, + "mcnair": 6.92e-07, + "mdma": 6.92e-07, + "meatloaf": 6.92e-07, + "menial": 6.92e-07, + "mentorship": 6.92e-07, + "merriam": 6.92e-07, + "merrily": 6.92e-07, + "methinks": 6.92e-07, + "minas": 1.26e-07, + "monogamous": 6.92e-07, + "montessori": 6.92e-07, + "montpellier": 6.92e-07, + "mooring": 6.92e-07, + "moreau": 6.92e-07, + "mountaineering": 6.92e-07, + "mtn": 6.92e-07, + "nami": 6.92e-07, + "nantucket": 6.92e-07, + "napalm": 6.92e-07, + "nath": 6.92e-07, + "neared": 6.92e-07, + "neath": 6.92e-07, + "necessitate": 6.92e-07, + "negation": 6.92e-07, + "neurosurgery": 6.92e-07, + "neutrino": 6.92e-07, + "nga": 6.92e-07, + "nines": 1.48e-07, + "niv": 6.92e-07, + "nooo": 6.92e-07, + "norte": 6.92e-07, + "nur": 6.92e-07, + "nutella": 6.92e-07, + "obsessions": 6.92e-07, + "oclc": 6.92e-07, + "olden": 6.92e-07, + "omfg": 6.92e-07, + "oneness": 6.92e-07, + "opacity": 6.92e-07, + "opp": 6.92e-07, + "otherworldly": 6.92e-07, + "overdo": 6.92e-07, + "overdraft": 6.92e-07, + "overturning": 6.92e-07, + "paediatric": 6.92e-07, + "painstakingly": 6.92e-07, + "pantyhose": 6.92e-07, + "parametric": 6.92e-07, + "parentage": 6.92e-07, + "patna": 6.92e-07, + "pedo": 6.92e-07, + "pentecost": 6.92e-07, + "perverts": 6.92e-07, + "physio": 6.92e-07, + "picnics": 6.92e-07, + "pigmented": 6.92e-07, + "pippa": 6.92e-07, + "platte": 6.92e-07, + "pornstar": 6.92e-07, + "posner": 6.92e-07, + "postponing": 6.92e-07, + "practicable": 6.92e-07, + "privates": 6.92e-07, + "progenitor": 6.92e-07, + "protectionist": 6.92e-07, + "pryce": 6.92e-07, + "pulsed": 6.92e-07, + "punters": 6.92e-07, + "purporting": 6.92e-07, + "qua": 6.92e-07, + "quantification": 6.92e-07, + "quiver": 6.92e-07, + "radiators": 6.92e-07, + "raffles": 6.92e-07, + "rawls": 6.92e-07, + "refereeing": 6.92e-07, + "reflexive": 6.92e-07, + "refuel": 6.92e-07, + "reina": 6.92e-07, + "reinventing": 6.92e-07, + "reliving": 6.92e-07, + "reminisce": 6.92e-07, + "reminiscing": 6.92e-07, + "renegades": 6.92e-07, + "repositories": 6.92e-07, + "repurposed": 6.92e-07, + "resistors": 6.92e-07, + "riled": 6.92e-07, + "roadster": 6.92e-07, + "robben": 6.92e-07, + "rofl": 6.92e-07, + "roos": 6.92e-07, + "rougher": 6.92e-07, + "salesperson": 6.92e-07, + "schumann": 6.92e-07, + "scolding": 6.92e-07, + "scones": 6.92e-07, + "sculptors": 6.03e-08, + "sedgwick": 6.92e-07, + "seeger": 6.92e-07, + "segal": 6.92e-07, + "sentinels": 6.92e-07, + "seton": 6.92e-07, + "shad": 6.92e-07, + "shadowed": 6.92e-07, + "shadowing": 6.92e-07, + "shiite": 2.75e-07, + "shiraz": 6.92e-07, + "shitload": 6.92e-07, + "shouldered": 6.92e-07, + "simmonds": 6.92e-07, + "skillfully": 6.92e-07, + "skylight": 6.92e-07, + "skyrim": 6.92e-07, + "snacking": 6.92e-07, + "sneaked": 6.92e-07, + "snip": 6.92e-07, + "sombre": 6.92e-07, + "sothebys": 6.92e-07, + "sou": 6.92e-07, + "spas": 7.59e-08, + "spector": 6.92e-07, + "spi": 6.92e-07, + "spokes": 6.92e-07, + "spool": 6.92e-07, + "sprouting": 6.92e-07, + "spurt": 6.92e-07, + "sputtering": 6.92e-07, + "ssa": 6.92e-07, + "stahl": 6.92e-07, + "stencil": 6.92e-07, + "stoker": 6.92e-07, + "strays": 6.92e-07, + "stressors": 6.92e-07, + "strictest": 6.92e-07, + "subjectivity": 6.92e-07, + "subliminal": 6.92e-07, + "substantiated": 6.92e-07, + "sunil": 6.92e-07, + "superstitions": 6.92e-07, + "suri": 6.92e-07, + "surrogates": 6.92e-07, + "symphonic": 6.92e-07, + "taekwondo": 6.92e-07, + "tagalog": 6.92e-07, + "taka": 6.92e-07, + "teak": 6.92e-07, + "teary": 6.92e-07, + "teases": 6.92e-07, + "teething": 6.92e-07, + "toowoomba": 6.92e-07, + "tortures": 6.92e-07, + "tps": 6.92e-07, + "transducer": 6.92e-07, + "tryna": 6.92e-07, + "tuba": 6.92e-07, + "turnip": 6.92e-07, + "tween": 6.92e-07, + "twofold": 6.92e-07, + "uns": 5.75e-07, + "uncontested": 6.92e-07, + "uncovers": 6.92e-07, + "underwriters": 6.92e-07, + "uprooted": 6.92e-07, + "upstart": 6.92e-07, + "ure": 1e-07, + "urea": 6.92e-07, + "uso": 6.92e-07, + "veritas": 6.92e-07, + "vicksburg": 6.92e-07, + "villainous": 6.92e-07, + "voluminous": 6.92e-07, + "vv": 6.92e-07, + "walkways": 6.92e-07, + "watanabe": 6.92e-07, + "weathers": 3.09e-07, + "weeding": 6.92e-07, + "widens": 6.92e-07, + "winfield": 6.92e-07, + "winkler": 6.92e-07, + "wolfs": 1.38e-07, + "wonky": 6.92e-07, + "xavi": 6.92e-07, + "xfinity": 6.92e-07, + "yoshi": 6.92e-07, + "zebras": 5.13e-08, + "zhejiang": 6.92e-07, + "abed": 6.76e-07, + "absolve": 6.76e-07, + "acapulco": 6.76e-07, + "adair": 6.76e-07, + "adieu": 6.76e-07, + "agonist": 6.76e-07, + "aground": 6.76e-07, + "airfare": 6.76e-07, + "alli": 6.76e-07, + "alternator": 6.76e-07, + "antiviral": 6.76e-07, + "arousing": 6.76e-07, + "ashcroft": 6.76e-07, + "aspired": 6.76e-07, + "asuka": 6.76e-07, + "atlantas": 6.76e-07, + "austro": 6.76e-07, + "azhar": 6.76e-07, + "badlands": 6.76e-07, + "bari": 6.76e-07, + "baronet": 6.76e-07, + "batmans": 6.76e-07, + "battlestar": 6.76e-07, + "bdo": 6.76e-07, + "bearish": 6.76e-07, + "bebop": 6.76e-07, + "bela": 6.76e-07, + "belting": 6.76e-07, + "bendigo": 6.76e-07, + "bilal": 6.76e-07, + "bilbo": 6.76e-07, + "bitumen": 6.76e-07, + "blythe": 6.76e-07, + "bobbie": 6.76e-07, + "boland": 6.76e-07, + "borges": 6.76e-07, + "braden": 6.76e-07, + "buss": 4.17e-08, + "butterfield": 6.76e-07, + "buzzard": 6.76e-07, + "bygone": 6.76e-07, + "cannibals": 6.76e-07, + "capers": 6.76e-07, + "carbine": 6.76e-07, + "carelessness": 6.76e-07, + "cbo": 6.76e-07, + "cdn": 6.76e-07, + "cech": 6.76e-07, + "cedars": 6.76e-07, + "certifying": 6.76e-07, + "cesc": 6.76e-07, + "chattering": 6.76e-07, + "chaz": 6.76e-07, + "chongqing": 6.76e-07, + "chucked": 6.76e-07, + "chuckling": 6.76e-07, + "commensurate": 6.76e-07, + "compressors": 6.76e-07, + "confounding": 6.76e-07, + "contaminate": 6.76e-07, + "copley": 6.76e-07, + "corgi": 6.76e-07, + "corsair": 6.76e-07, + "cortes": 6.76e-07, + "counterfeiting": 6.76e-07, + "couriers": 5.89e-08, + "craigs": 1.05e-07, + "cranking": 6.76e-07, + "cranks": 6.76e-07, + "crenshaw": 6.76e-07, + "crescendo": 6.76e-07, + "cuss": 6.76e-07, + "dalek": 6.76e-07, + "dauphin": 6.76e-07, + "deepak": 6.76e-07, + "deformity": 6.76e-07, + "delevingne": 6.76e-07, + "dents": 7.76e-08, + "deviated": 6.76e-07, + "dibs": 1.02e-08, + "dickerson": 6.76e-07, + "dinghy": 6.76e-07, + "dipper": 6.76e-07, + "dipshit": 6.76e-07, + "discourages": 6.76e-07, + "disobey": 6.76e-07, + "disseminating": 6.76e-07, + "disturbs": 6.76e-07, + "diverge": 6.76e-07, + "dominoes": 6.76e-07, + "doughty": 6.76e-07, + "downpour": 6.76e-07, + "drifter": 6.76e-07, + "droids": 6.76e-07, + "dundas": 6.76e-07, + "durand": 6.76e-07, + "dusky": 6.76e-07, + "dystrophy": 6.76e-07, + "eastside": 6.76e-07, + "elizabeths": 9.12e-08, + "eloquence": 6.76e-07, + "elvira": 6.76e-07, + "enhancer": 6.76e-07, + "enquirer": 6.76e-07, + "enslave": 6.76e-07, + "epitaph": 6.76e-07, + "etat": 6.76e-07, + "exclusions": 6.76e-07, + "excrement": 6.76e-07, + "expedient": 6.76e-07, + "fac": 6.76e-07, + "fallow": 6.76e-07, + "fanart": 6.76e-07, + "fen": 6.76e-07, + "fermi": 6.76e-07, + "fiddler": 6.76e-07, + "flagging": 6.76e-07, + "foal": 6.76e-07, + "foreclosed": 6.76e-07, + "forlorn": 6.76e-07, + "foucault": 6.76e-07, + "fragmentary": 6.76e-07, + "freetown": 6.76e-07, + "furlongs": 6.76e-07, + "gab": 6.76e-07, + "gambino": 6.76e-07, + "gateways": 6.76e-07, + "gaudy": 6.76e-07, + "gauss": 6.76e-07, + "gawd": 6.76e-07, + "gazed": 6.76e-07, + "ginsberg": 6.76e-07, + "girlie": 6.76e-07, + "gobble": 6.76e-07, + "godspeed": 6.76e-07, + "grandparent": 6.76e-07, + "greeley": 6.76e-07, + "grout": 6.76e-07, + "grumman": 6.76e-07, + "gush": 6.76e-07, + "haddock": 6.76e-07, + "halogen": 6.76e-07, + "harald": 6.76e-07, + "harpoon": 6.76e-07, + "hartmann": 6.76e-07, + "haydn": 6.76e-07, + "hazmat": 6.76e-07, + "highlighter": 6.76e-07, + "hirst": 6.76e-07, + "hom": 6.76e-07, + "homeopathic": 6.76e-07, + "homogenous": 6.76e-07, + "hors": 6.76e-07, + "hv": 6.76e-07, + "hydrology": 6.76e-07, + "hypoxia": 6.76e-07, + "iba": 6.76e-07, + "ibis": 6.76e-07, + "ibrahimovic": 6.76e-07, + "idealist": 6.76e-07, + "ifa": 6.76e-07, + "ih": 6.76e-07, + "incarnations": 6.76e-07, + "incited": 6.76e-07, + "incubated": 6.76e-07, + "indecisive": 6.76e-07, + "indefensible": 6.76e-07, + "indivisible": 6.76e-07, + "industrialist": 6.76e-07, + "ineffectual": 6.76e-07, + "inextricably": 6.76e-07, + "inflows": 6.76e-07, + "ingest": 6.76e-07, + "inhibitions": 6.76e-07, + "innermost": 6.76e-07, + "insecticides": 6.76e-07, + "insoluble": 6.76e-07, + "instrumentals": 6.76e-07, + "insulate": 6.76e-07, + "interconnection": 6.76e-07, + "introverted": 6.76e-07, + "invokes": 6.76e-07, + "isobel": 6.76e-07, + "issn": 6.76e-07, + "jah": 6.76e-07, + "jewell": 6.76e-07, + "jian": 6.76e-07, + "jitters": 6.76e-07, + "johnnys": 6.76e-07, + "joness": 6.76e-07, + "kaine": 6.76e-07, + "katana": 6.76e-07, + "kendal": 6.76e-07, + "kessel": 6.76e-07, + "keyhole": 6.76e-07, + "kickers": 6.76e-07, + "kiosks": 6.76e-07, + "knighted": 6.76e-07, + "koenig": 6.76e-07, + "kota": 6.76e-07, + "kyu": 6.76e-07, + "lachlan": 6.76e-07, + "laredo": 6.76e-07, + "laughlin": 6.76e-07, + "lem": 6.76e-07, + "licensees": 6.76e-07, + "loafers": 6.76e-07, + "lovato": 6.76e-07, + "lymphocytes": 6.76e-07, + "lynched": 6.76e-07, + "maa": 6.76e-07, + "magda": 6.76e-07, + "mahdi": 6.76e-07, + "manipulations": 6.76e-07, + "margarine": 6.76e-07, + "mashup": 6.76e-07, + "massed": 6.76e-07, + "mauled": 6.76e-07, + "mayflower": 6.76e-07, + "meeks": 7.08e-08, + "mekong": 6.76e-07, + "melania": 6.76e-07, + "melanin": 6.76e-07, + "messina": 6.76e-07, + "millard": 6.76e-07, + "minis": 1.35e-07, + "mists": 6.76e-07, + "mobster": 6.76e-07, + "montevideo": 6.76e-07, + "moulds": 6.76e-07, + "murmurs": 6.76e-07, + "musty": 6.76e-07, + "muttered": 6.76e-07, + "mysql": 6.76e-07, + "nbn": 6.76e-07, + "nbs": 6.76e-07, + "neilson": 6.76e-07, + "neuropathy": 6.76e-07, + "neurotransmitter": 6.76e-07, + "neutrals": 6.76e-07, + "nevis": 6.76e-07, + "newsnight": 6.76e-07, + "niners": 6.76e-07, + "noam": 6.76e-07, + "normalcy": 6.76e-07, + "notts": 6.76e-07, + "nourished": 6.76e-07, + "nourishing": 6.76e-07, + "obituaries": 6.76e-07, + "oceanographic": 6.76e-07, + "okada": 6.76e-07, + "orissa": 6.76e-07, + "ormond": 6.76e-07, + "outcasts": 6.76e-07, + "outlay": 6.76e-07, + "outliers": 6.76e-07, + "overblown": 6.76e-07, + "overestimate": 6.76e-07, + "oxy": 6.76e-07, + "oxytocin": 6.76e-07, + "pandit": 6.76e-07, + "pandoras": 5.37e-08, + "partitioned": 6.76e-07, + "pathos": 6.76e-07, + "peacekeepers": 6.76e-07, + "ped": 6.76e-07, + "pellegrini": 6.76e-07, + "penetrates": 6.76e-07, + "peninsular": 6.76e-07, + "perrin": 6.76e-07, + "physicality": 6.76e-07, + "pickers": 6.76e-07, + "pid": 6.76e-07, + "pimple": 6.76e-07, + "platelets": 6.76e-07, + "poi": 6.76e-07, + "pomeroy": 6.76e-07, + "popeye": 6.76e-07, + "portraiture": 6.76e-07, + "potable": 6.76e-07, + "potsdam": 6.76e-07, + "pout": 6.76e-07, + "precepts": 6.76e-07, + "predominately": 6.76e-07, + "privatized": 6.76e-07, + "psy": 6.76e-07, + "psychoactive": 6.76e-07, + "puffing": 6.76e-07, + "punctual": 6.76e-07, + "punishes": 6.76e-07, + "quadrangle": 6.76e-07, + "quezon": 6.76e-07, + "quickness": 6.76e-07, + "quito": 6.76e-07, + "raceway": 6.76e-07, + "rafting": 6.76e-07, + "rainer": 6.76e-07, + "rajan": 6.76e-07, + "raves": 6.76e-07, + "reaffirm": 6.76e-07, + "rebellions": 6.76e-07, + "reentry": 6.76e-07, + "rephrase": 6.76e-07, + "retrofit": 6.76e-07, + "reus": 6.76e-07, + "riker": 6.76e-07, + "robustness": 6.76e-07, + "rogan": 6.76e-07, + "roleplaying": 6.76e-07, + "roped": 6.76e-07, + "roseanne": 6.76e-07, + "rosso": 6.76e-07, + "rubens": 6.76e-07, + "rubies": 6.76e-07, + "sade": 6.76e-07, + "salespeople": 6.76e-07, + "salutes": 6.76e-07, + "satisfactorily": 6.76e-07, + "savanna": 6.76e-07, + "scifi": 6.76e-07, + "scriptural": 6.76e-07, + "sedans": 6.76e-07, + "seedy": 6.76e-07, + "seuss": 6.76e-07, + "shandong": 6.76e-07, + "shawnee": 6.76e-07, + "skylar": 6.76e-07, + "sla": 6.76e-07, + "sleet": 6.76e-07, + "slugger": 6.76e-07, + "snarky": 6.76e-07, + "snr": 6.76e-07, + "sona": 6.76e-07, + "soooooo": 6.76e-07, + "sorghum": 6.76e-07, + "souza": 6.76e-07, + "spacer": 6.76e-07, + "spacetime": 6.76e-07, + "spartacus": 6.76e-07, + "spasm": 6.76e-07, + "spearhead": 6.76e-07, + "specialise": 6.76e-07, + "spl": 6.76e-07, + "sprites": 6.76e-07, + "squeal": 6.76e-07, + "squish": 6.76e-07, + "steppe": 6.76e-07, + "stubbornness": 6.76e-07, + "stubs": 6.76e-07, + "stunner": 6.76e-07, + "subcutaneous": 6.76e-07, + "subservient": 6.76e-07, + "substantiate": 6.76e-07, + "subtitled": 6.76e-07, + "subtracting": 6.76e-07, + "succinctly": 6.76e-07, + "summarily": 6.76e-07, + "summarised": 6.76e-07, + "supplementing": 6.76e-07, + "suresh": 6.76e-07, + "swab": 6.76e-07, + "swarmed": 6.76e-07, + "swath": 6.76e-07, + "swordsman": 6.76e-07, + "synapses": 6.76e-07, + "tailors": 9.55e-08, + "tattered": 6.76e-07, + "technicality": 6.76e-07, + "tekken": 6.76e-07, + "terracotta": 6.76e-07, + "testicle": 6.76e-07, + "thickening": 6.76e-07, + "thrush": 6.76e-07, + "thunderbirds": 6.76e-07, + "tillman": 6.76e-07, + "tinge": 6.76e-07, + "tinnitus": 6.76e-07, + "toed": 6.76e-07, + "toure": 6.76e-07, + "trample": 6.76e-07, + "tribesmen": 6.76e-07, + "tribulations": 6.76e-07, + "tropic": 6.76e-07, + "tux": 6.76e-07, + "uncomplicated": 6.76e-07, + "unconnected": 6.76e-07, + "underweight": 6.76e-07, + "undetectable": 6.76e-07, + "unis": 1.02e-07, + "unprovoked": 6.76e-07, + "unremarkable": 6.76e-07, + "untrustworthy": 6.76e-07, + "unwin": 6.76e-07, + "villarreal": 6.76e-07, + "vilnius": 6.76e-07, + "volition": 6.76e-07, + "wane": 6.76e-07, + "wellcome": 6.76e-07, + "westerns": 7.41e-08, + "whittle": 6.76e-07, + "wields": 6.76e-07, + "willian": 6.76e-07, + "withstood": 6.76e-07, + "wor": 6.76e-07, + "wretch": 6.76e-07, + "xinhua": 6.76e-07, + "yakima": 6.76e-07, + "yamato": 6.76e-07, + "yolks": 6.76e-07, + "abetting": 6.61e-07, + "accolade": 6.61e-07, + "accommodates": 6.61e-07, + "addicting": 6.61e-07, + "addy": 6.61e-07, + "adoptions": 6.61e-07, + "adoring": 6.61e-07, + "aime": 6.61e-07, + "aimlessly": 6.61e-07, + "alfalfa": 6.61e-07, + "alleles": 6.61e-07, + "amphetamines": 6.61e-07, + "andrey": 6.61e-07, + "appellant": 6.61e-07, + "archetypes": 6.61e-07, + "ashanti": 6.61e-07, + "ashok": 6.61e-07, + "atelier": 6.61e-07, + "australasia": 6.61e-07, + "axed": 6.61e-07, + "baguette": 6.61e-07, + "baloch": 6.61e-07, + "barbers": 3.09e-07, + "belichick": 6.61e-07, + "bioinformatics": 6.61e-07, + "bounties": 6.61e-07, + "breastfeed": 6.61e-07, + "brimstone": 6.61e-07, + "bristow": 6.61e-07, + "buhari": 6.61e-07, + "bunt": 6.61e-07, + "burly": 6.61e-07, + "carbonated": 6.61e-07, + "carburetor": 6.61e-07, + "carrey": 6.61e-07, + "caruso": 6.61e-07, + "catacombs": 6.61e-07, + "categorization": 6.61e-07, + "caving": 6.61e-07, + "celts": 6.61e-07, + "cessna": 6.61e-07, + "chara": 6.61e-07, + "cheetahs": 6.61e-07, + "chlamydia": 6.61e-07, + "chugging": 6.61e-07, + "classifies": 6.61e-07, + "cna": 6.61e-07, + "coachs": 6.61e-07, + "cobbler": 6.61e-07, + "cognizant": 6.61e-07, + "collared": 6.61e-07, + "colorados": 6.61e-07, + "columnists": 6.61e-07, + "communes": 6.61e-07, + "conceit": 6.61e-07, + "concubine": 6.61e-07, + "conforms": 6.61e-07, + "confounded": 6.61e-07, + "conservatively": 6.61e-07, + "constrain": 6.61e-07, + "contraption": 6.61e-07, + "cookbooks": 6.61e-07, + "coolness": 6.61e-07, + "coughlin": 6.61e-07, + "covertly": 6.61e-07, + "covet": 6.61e-07, + "cpm": 6.61e-07, + "curbing": 6.61e-07, + "dales": 2.63e-07, + "dds": 6.76e-08, + "deacons": 1.02e-07, + "defenceless": 6.61e-07, + "depressions": 6.61e-07, + "dfw": 6.61e-07, + "diggs": 6.61e-07, + "dingy": 6.61e-07, + "disappearances": 6.61e-07, + "disengaged": 6.61e-07, + "disillusionment": 6.61e-07, + "dispatching": 6.61e-07, + "dolph": 6.61e-07, + "donahue": 6.61e-07, + "doodles": 6.61e-07, + "dougherty": 6.61e-07, + "driverless": 6.61e-07, + "droppings": 6.61e-07, + "drowsy": 6.61e-07, + "dunlap": 6.61e-07, + "duos": 3.55e-07, + "elaboration": 6.61e-07, + "ele": 6.61e-07, + "elwood": 6.61e-07, + "eminently": 6.61e-07, + "emmas": 6.61e-07, + "emphasises": 6.61e-07, + "entre": 6.61e-07, + "eocene": 6.61e-07, + "epigenetic": 6.61e-07, + "equalled": 6.61e-07, + "eriksson": 6.61e-07, + "esprit": 6.61e-07, + "ess": 6.61e-07, + "ethnography": 6.61e-07, + "eunuch": 6.61e-07, + "exclaim": 6.61e-07, + "extort": 6.61e-07, + "falter": 6.61e-07, + "fanfiction": 6.61e-07, + "fantasize": 6.61e-07, + "feverish": 6.61e-07, + "fh": 6.61e-07, + "fibrillation": 6.61e-07, + "fissure": 6.61e-07, + "fizzy": 6.61e-07, + "flutes": 6.61e-07, + "footballs": 5.25e-07, + "forcible": 6.61e-07, + "frenzied": 6.61e-07, + "freudian": 6.61e-07, + "frightful": 6.61e-07, + "ftw": 6.61e-07, + "fumbling": 6.61e-07, + "gat": 6.61e-07, + "geforce": 6.61e-07, + "genji": 6.61e-07, + "geopolitics": 6.61e-07, + "getter": 6.61e-07, + "glamorgan": 6.61e-07, + "gloriously": 6.61e-07, + "gourd": 6.61e-07, + "grander": 6.61e-07, + "grins": 6.61e-07, + "grocers": 1.2e-07, + "hadi": 6.61e-07, + "haider": 6.61e-07, + "haig": 6.61e-07, + "hallam": 6.61e-07, + "halter": 6.61e-07, + "hawker": 6.61e-07, + "hei": 6.61e-07, + "heisenberg": 6.61e-07, + "hijackers": 6.61e-07, + "historiography": 6.61e-07, + "hogarth": 6.61e-07, + "hollowed": 6.61e-07, + "houdini": 6.61e-07, + "hybridization": 6.61e-07, + "hyenas": 6.61e-07, + "ibadan": 6.61e-07, + "icebreaker": 6.61e-07, + "idling": 6.61e-07, + "idolatry": 6.61e-07, + "iis": 5.13e-07, + "illawarra": 6.61e-07, + "indelible": 6.61e-07, + "indochina": 6.61e-07, + "infantile": 6.61e-07, + "infuse": 6.61e-07, + "inglewood": 6.61e-07, + "inheriting": 6.61e-07, + "iniesta": 6.61e-07, + "insuring": 6.61e-07, + "interplanetary": 6.61e-07, + "inv": 6.61e-07, + "irreverent": 6.61e-07, + "isd": 6.61e-07, + "isthmus": 6.61e-07, + "itinerant": 6.61e-07, + "jacky": 6.61e-07, + "jags": 6.61e-07, + "jeddah": 6.61e-07, + "jello": 6.61e-07, + "jud": 6.61e-07, + "judson": 6.61e-07, + "juke": 6.61e-07, + "juneau": 6.61e-07, + "kana": 6.61e-07, + "katarina": 6.61e-07, + "kenji": 6.61e-07, + "kiel": 6.61e-07, + "kincaid": 6.61e-07, + "kino": 6.61e-07, + "knopf": 6.61e-07, + "lakshmi": 6.61e-07, + "lanier": 6.61e-07, + "lazio": 6.61e-07, + "leniency": 6.61e-07, + "liber": 6.61e-07, + "lifeboats": 6.61e-07, + "lillard": 6.61e-07, + "lind": 6.61e-07, + "linens": 6.61e-07, + "lorenz": 6.61e-07, + "loudoun": 6.61e-07, + "lpg": 6.61e-07, + "luftwaffe": 6.61e-07, + "lurks": 6.61e-07, + "lymphatic": 6.61e-07, + "magdalena": 6.61e-07, + "mahler": 6.61e-07, + "malhotra": 6.61e-07, + "malleable": 6.61e-07, + "mannerisms": 6.61e-07, + "manta": 6.61e-07, + "marcellus": 6.61e-07, + "marek": 6.61e-07, + "marquess": 6.61e-07, + "matinee": 6.61e-07, + "maxx": 6.61e-07, + "mds": 7.94e-08, + "mediating": 6.61e-07, + "mercurial": 6.61e-07, + "micheal": 6.61e-07, + "microwaves": 6.61e-07, + "middling": 6.61e-07, + "millionth": 6.61e-07, + "mlas": 6.03e-08, + "mollie": 6.61e-07, + "mores": 1.51e-07, + "mpeg": 6.61e-07, + "multimillion": 6.61e-07, + "myung": 6.61e-07, + "nae": 6.61e-07, + "narrates": 6.61e-07, + "neg": 6.61e-07, + "nelsons": 9.55e-08, + "nicaraguan": 6.61e-07, + "nim": 6.61e-07, + "noi": 6.61e-07, + "noooo": 6.61e-07, + "oni": 6.61e-07, + "outgrown": 6.61e-07, + "outpouring": 6.61e-07, + "overdone": 6.61e-07, + "overreact": 6.61e-07, + "parson": 6.61e-07, + "pele": 6.61e-07, + "pelham": 6.61e-07, + "perceiving": 6.61e-07, + "peregrine": 6.61e-07, + "peres": 6.61e-07, + "pers": 6.61e-07, + "personification": 6.61e-07, + "petitioners": 5.13e-08, + "pheromones": 6.61e-07, + "piecemeal": 6.61e-07, + "piglet": 6.61e-07, + "pilar": 6.61e-07, + "placeholder": 6.61e-07, + "playmate": 6.61e-07, + "pliny": 6.61e-07, + "pnc": 6.61e-07, + "poetics": 6.61e-07, + "pogo": 6.61e-07, + "politicized": 6.61e-07, + "popsicle": 6.61e-07, + "predisposition": 6.61e-07, + "prefrontal": 6.61e-07, + "preservatives": 6.61e-07, + "presumptive": 6.61e-07, + "proactively": 6.61e-07, + "psychoanalytic": 6.61e-07, + "pto": 6.61e-07, + "purdy": 6.61e-07, + "puri": 6.61e-07, + "racy": 6.61e-07, + "radha": 6.61e-07, + "raucous": 6.61e-07, + "receivable": 6.61e-07, + "reconciling": 6.61e-07, + "reconstituted": 6.61e-07, + "reincarnated": 6.61e-07, + "reinsurance": 6.61e-07, + "repress": 6.61e-07, + "resignations": 6.61e-07, + "resolutely": 6.61e-07, + "respectability": 6.61e-07, + "retainers": 6.61e-07, + "retrospectively": 6.61e-07, + "revolts": 6.61e-07, + "robocop": 6.61e-07, + "roleplay": 6.61e-07, + "rostov": 6.61e-07, + "rotted": 6.61e-07, + "rte": 6.61e-07, + "rusher": 6.61e-07, + "sanctum": 6.61e-07, + "scarface": 6.61e-07, + "scc": 6.61e-07, + "scooping": 6.61e-07, + "scrolled": 6.61e-07, + "seng": 6.61e-07, + "sensuality": 6.61e-07, + "seperate": 6.61e-07, + "sequoia": 6.61e-07, + "serpents": 1.66e-07, + "serrano": 6.61e-07, + "serrated": 6.61e-07, + "severing": 6.61e-07, + "shunt": 6.61e-07, + "smyrna": 6.61e-07, + "snes": 6.61e-07, + "solis": 6.61e-07, + "solver": 6.61e-07, + "southland": 6.61e-07, + "spaniel": 6.61e-07, + "ssn": 6.61e-07, + "stagger": 6.61e-07, + "stalins": 6.61e-07, + "stalingrad": 6.61e-07, + "statuses": 6.61e-07, + "steels": 1.91e-07, + "steely": 6.61e-07, + "stent": 6.61e-07, + "stiffer": 6.61e-07, + "subtext": 6.61e-07, + "summa": 6.61e-07, + "sunflowers": 6.61e-07, + "supercharged": 6.61e-07, + "surety": 6.61e-07, + "susquehanna": 6.61e-07, + "swaziland": 6.61e-07, + "sweatpants": 6.61e-07, + "sweethearts": 6.61e-07, + "sylvie": 6.61e-07, + "syntactic": 6.61e-07, + "takahashi": 6.61e-07, + "talkie": 6.61e-07, + "tana": 6.61e-07, + "thang": 6.61e-07, + "theorized": 6.61e-07, + "thomass": 6.61e-07, + "thrusts": 6.61e-07, + "tiebreaker": 6.61e-07, + "tnf": 6.61e-07, + "torquay": 6.61e-07, + "totalitarianism": 6.61e-07, + "treatises": 6.61e-07, + "trimble": 6.61e-07, + "ubc": 6.61e-07, + "ugg": 6.61e-07, + "unassuming": 6.61e-07, + "undersecretary": 6.61e-07, + "unintelligible": 6.61e-07, + "unorganized": 6.61e-07, + "upholds": 6.61e-07, + "usmc": 6.61e-07, + "vegeta": 6.61e-07, + "verdi": 6.61e-07, + "verity": 6.61e-07, + "victimization": 6.61e-07, + "whiteside": 6.61e-07, + "whitmore": 6.61e-07, + "wicks": 5.37e-08, + "winking": 6.61e-07, + "withering": 6.61e-07, + "woodpecker": 6.61e-07, + "workstations": 6.61e-07, + "wrc": 6.61e-07, + "wtc": 6.61e-07, + "xin": 6.61e-07, + "xr": 6.61e-07, + "xvii": 6.61e-07, + "yip": 6.61e-07, + "zigzag": 6.61e-07, + "zika": 6.61e-07, + "aah": 6.46e-07, + "abilene": 6.46e-07, + "abscess": 6.46e-07, + "absorbent": 6.46e-07, + "acorns": 6.46e-07, + "acrobatic": 6.46e-07, + "acuity": 6.46e-07, + "acura": 6.46e-07, + "adrien": 6.46e-07, + "aec": 6.46e-07, + "afrikaans": 6.46e-07, + "agate": 6.46e-07, + "airstrip": 6.46e-07, + "albanians": 6.46e-07, + "alkyl": 6.46e-07, + "alle": 6.46e-07, + "amassing": 6.46e-07, + "amo": 6.46e-07, + "ansel": 6.46e-07, + "antiquarian": 6.46e-07, + "antiseptic": 6.46e-07, + "arbitrage": 6.46e-07, + "archduke": 6.46e-07, + "aren": 6.46e-07, + "arizonas": 6.46e-07, + "ascetic": 6.46e-07, + "aspires": 6.46e-07, + "aster": 6.46e-07, + "attains": 6.46e-07, + "attenuation": 6.46e-07, + "australasian": 6.46e-07, + "avila": 6.46e-07, + "avionics": 6.46e-07, + "azad": 6.46e-07, + "baileys": 2.88e-07, + "banshee": 6.46e-07, + "barbs": 6.92e-08, + "basingstoke": 6.46e-07, + "beastie": 6.46e-07, + "bedouin": 6.46e-07, + "beholden": 6.46e-07, + "beholder": 6.46e-07, + "benzema": 6.46e-07, + "blackrock": 6.46e-07, + "blogged": 6.46e-07, + "blushes": 6.46e-07, + "boas": 6.46e-07, + "bolivar": 6.46e-07, + "bookmarks": 6.46e-07, + "brahman": 6.46e-07, + "brahmin": 6.46e-07, + "brandeis": 6.46e-07, + "brentford": 6.46e-07, + "brinkley": 6.46e-07, + "brookes": 2.34e-07, + "bsp": 6.46e-07, + "bubblegum": 6.46e-07, + "bugatti": 6.46e-07, + "bungalows": 6.46e-07, + "burg": 6.46e-07, + "burp": 6.46e-07, + "buttoned": 6.46e-07, + "cano": 6.46e-07, + "canto": 6.46e-07, + "canvass": 6.46e-07, + "cashback": 6.46e-07, + "castings": 6.46e-07, + "cathartic": 6.46e-07, + "catwoman": 6.46e-07, + "caucuses": 6.46e-07, + "cementing": 6.46e-07, + "centrifuge": 6.46e-07, + "cfp": 6.46e-07, + "chee": 6.46e-07, + "chestnuts": 6.46e-07, + "ciao": 6.46e-07, + "cinco": 6.46e-07, + "citywide": 6.46e-07, + "cliches": 6.46e-07, + "cocker": 6.46e-07, + "comanche": 6.46e-07, + "comatose": 6.46e-07, + "comforter": 6.46e-07, + "commissary": 6.46e-07, + "compilers": 6.46e-07, + "conclave": 6.46e-07, + "concoction": 6.46e-07, + "confers": 6.46e-07, + "conspire": 6.46e-07, + "consternation": 6.46e-07, + "corneal": 6.46e-07, + "cornet": 6.46e-07, + "cramming": 6.46e-07, + "crawler": 6.46e-07, + "cris": 6.46e-07, + "cruised": 6.46e-07, + "cuffed": 6.46e-07, + "cynic": 6.46e-07, + "daemon": 6.46e-07, + "dampen": 6.46e-07, + "dancehall": 6.46e-07, + "darwins": 6.46e-07, + "decommissioned": 6.46e-07, + "defensible": 6.46e-07, + "demolishing": 6.46e-07, + "dentures": 6.46e-07, + "descriptor": 6.46e-07, + "diehard": 6.46e-07, + "differentiates": 6.46e-07, + "dipole": 6.46e-07, + "discoloration": 6.46e-07, + "disinfectant": 6.46e-07, + "dissipation": 6.46e-07, + "distracts": 6.46e-07, + "divider": 6.46e-07, + "dji": 6.46e-07, + "downsides": 6.46e-07, + "dsl": 6.46e-07, + "dts": 8.71e-08, + "dynamism": 6.46e-07, + "ealing": 6.46e-07, + "earnhardt": 6.46e-07, + "effigy": 6.46e-07, + "ehrlich": 6.46e-07, + "eisenberg": 6.46e-07, + "encroaching": 6.46e-07, + "encyclopaedia": 6.46e-07, + "entomology": 6.46e-07, + "erred": 6.46e-07, + "estes": 6.46e-07, + "estrada": 6.46e-07, + "everyman": 6.46e-07, + "excepting": 6.46e-07, + "exclaims": 6.46e-07, + "exclusives": 6.46e-07, + "excommunicated": 6.46e-07, + "exterminated": 6.46e-07, + "extravagance": 6.46e-07, + "facetime": 6.46e-07, + "factually": 6.46e-07, + "faker": 6.46e-07, + "falconer": 6.46e-07, + "figurehead": 6.46e-07, + "fina": 6.46e-07, + "fiscally": 6.46e-07, + "fjord": 6.46e-07, + "flowered": 6.46e-07, + "flume": 6.46e-07, + "flyover": 6.46e-07, + "focussing": 6.46e-07, + "foils": 6.46e-07, + "foy": 6.46e-07, + "freelancers": 6.46e-07, + "fretting": 6.46e-07, + "fuchs": 6.46e-07, + "gabriela": 6.46e-07, + "gales": 1.2e-07, + "gallbladder": 6.46e-07, + "gatherers": 6.46e-07, + "gauteng": 6.46e-07, + "gaya": 6.46e-07, + "geordie": 6.46e-07, + "germantown": 6.46e-07, + "gestational": 6.46e-07, + "gigabit": 6.46e-07, + "gillis": 6.46e-07, + "girdle": 6.46e-07, + "giselle": 6.46e-07, + "glut": 6.46e-07, + "godless": 6.46e-07, + "goldwater": 6.46e-07, + "grandsons": 1.58e-07, + "gripe": 6.46e-07, + "gruff": 6.46e-07, + "gurgaon": 6.46e-07, + "hahahahaha": 6.46e-07, + "haji": 6.46e-07, + "hark": 6.46e-07, + "harmonics": 6.46e-07, + "hatchery": 6.46e-07, + "haystack": 6.46e-07, + "hearthstone": 6.46e-07, + "hegel": 6.46e-07, + "heidegger": 6.46e-07, + "helga": 6.46e-07, + "helical": 6.46e-07, + "hemorrhagic": 6.46e-07, + "hibbert": 6.46e-07, + "holo": 6.46e-07, + "homies": 6.46e-07, + "hookah": 6.46e-07, + "hse": 6.46e-07, + "htm": 6.46e-07, + "humpback": 6.46e-07, + "hundredth": 6.46e-07, + "huntingdon": 6.46e-07, + "iglesias": 6.46e-07, + "igneous": 6.46e-07, + "imams": 9.33e-08, + "imperfection": 6.46e-07, + "implosion": 6.46e-07, + "incredulous": 6.46e-07, + "inherits": 6.46e-07, + "intensification": 6.46e-07, + "intercepts": 6.46e-07, + "interwoven": 6.46e-07, + "intrude": 6.46e-07, + "jeweler": 6.46e-07, + "jpmorgan": 6.46e-07, + "jumble": 6.46e-07, + "kagan": 6.46e-07, + "kagawa": 6.46e-07, + "kala": 6.46e-07, + "kenyatta": 6.46e-07, + "kimmy": 6.46e-07, + "kodi": 6.46e-07, + "konami": 6.46e-07, + "kpmg": 6.46e-07, + "krause": 6.46e-07, + "krebs": 6.46e-07, + "kyrgyz": 6.46e-07, + "labors": 4.79e-07, + "latched": 6.46e-07, + "latimer": 6.46e-07, + "lengthen": 6.46e-07, + "lewandowski": 6.46e-07, + "lineages": 6.46e-07, + "liqueur": 6.46e-07, + "locksmith": 6.46e-07, + "locusts": 6.46e-07, + "lolly": 6.46e-07, + "londoners": 6.46e-07, + "lynette": 6.46e-07, + "lyrically": 6.46e-07, + "maidstone": 6.46e-07, + "maimed": 6.46e-07, + "maisie": 6.46e-07, + "mallard": 6.46e-07, + "mallorca": 6.46e-07, + "mandating": 6.46e-07, + "marchand": 6.46e-07, + "mariachi": 6.46e-07, + "mccallum": 6.46e-07, + "mcd": 6.46e-07, + "mcneill": 6.46e-07, + "medvedev": 6.46e-07, + "memorizing": 6.46e-07, + "merc": 6.46e-07, + "metabolite": 6.46e-07, + "metlife": 6.46e-07, + "mezzanine": 6.46e-07, + "mgmt": 6.46e-07, + "midlife": 6.46e-07, + "mired": 6.46e-07, + "missoula": 6.46e-07, + "mistletoe": 6.46e-07, + "mmo": 6.46e-07, + "mmr": 6.46e-07, + "modality": 6.46e-07, + "modifiers": 6.46e-07, + "moly": 6.46e-07, + "monetize": 6.46e-07, + "monolith": 6.46e-07, + "monticello": 6.46e-07, + "moodys": 6.46e-07, + "mtb": 6.46e-07, + "mulan": 6.46e-07, + "mumps": 6.46e-07, + "mya": 6.46e-07, + "mystics": 6.46e-07, + "naturalists": 6.46e-07, + "needham": 6.46e-07, + "nesbitt": 6.46e-07, + "nils": 6.46e-07, + "nudist": 6.46e-07, + "nymphs": 6.46e-07, + "ochoa": 6.46e-07, + "oder": 6.46e-07, + "orgies": 6.46e-07, + "ortho": 6.46e-07, + "outlast": 6.46e-07, + "ozzie": 6.46e-07, + "pajama": 6.46e-07, + "panics": 6.46e-07, + "paratroopers": 6.46e-07, + "partitioning": 6.46e-07, + "pathogenesis": 6.46e-07, + "pavements": 6.46e-07, + "pawnee": 6.46e-07, + "payloads": 6.46e-07, + "penney": 6.46e-07, + "pero": 6.46e-07, + "phoning": 6.46e-07, + "plunkett": 6.46e-07, + "pompeo": 6.46e-07, + "pon": 6.46e-07, + "potash": 6.46e-07, + "predisposed": 6.46e-07, + "presentable": 6.46e-07, + "processions": 6.46e-07, + "pronouncements": 6.46e-07, + "protectionism": 6.46e-07, + "provokes": 6.46e-07, + "purports": 6.46e-07, + "quinlan": 6.46e-07, + "rab": 6.46e-07, + "radiocarbon": 6.46e-07, + "raunchy": 6.46e-07, + "raya": 6.46e-07, + "rebuked": 6.46e-07, + "reconstructions": 6.46e-07, + "redesignated": 6.46e-07, + "reeks": 6.46e-07, + "refuges": 6.46e-07, + "relaying": 6.46e-07, + "remarking": 6.46e-07, + "resetting": 6.46e-07, + "reshuffle": 6.46e-07, + "responder": 6.46e-07, + "retiree": 6.46e-07, + "rewatching": 6.46e-07, + "rho": 6.46e-07, + "rommel": 6.46e-07, + "roughness": 6.46e-07, + "rudi": 6.46e-07, + "saf": 6.46e-07, + "saiyan": 6.46e-07, + "sala": 6.46e-07, + "salter": 6.46e-07, + "salve": 6.46e-07, + "sanatorium": 6.46e-07, + "savoury": 6.46e-07, + "scaly": 6.46e-07, + "scamming": 6.46e-07, + "scold": 6.46e-07, + "seducing": 6.46e-07, + "senpai": 6.46e-07, + "sentimentality": 6.46e-07, + "shabaab": 6.46e-07, + "shaolin": 6.46e-07, + "shimon": 6.46e-07, + "shined": 6.46e-07, + "slo": 6.46e-07, + "smearing": 6.46e-07, + "smudge": 6.46e-07, + "sociedad": 6.46e-07, + "speckled": 6.46e-07, + "stallone": 6.46e-07, + "subsidised": 6.46e-07, + "subtype": 6.46e-07, + "subtypes": 6.46e-07, + "supplanted": 6.46e-07, + "surfboard": 6.46e-07, + "swatch": 6.46e-07, + "sweatshirts": 6.46e-07, + "switchboard": 6.46e-07, + "synthesizer": 6.46e-07, + "taboos": 6.46e-07, + "tahir": 6.46e-07, + "tbilisi": 6.46e-07, + "teflon": 6.46e-07, + "telecoms": 5.62e-08, + "tempers": 6.46e-07, + "tencent": 6.46e-07, + "terrorized": 6.46e-07, + "terrorizing": 6.46e-07, + "tet": 6.46e-07, + "thebes": 6.46e-07, + "tibetans": 6.46e-07, + "tierney": 6.46e-07, + "tierra": 6.46e-07, + "toenails": 6.46e-07, + "tonya": 6.46e-07, + "toothpick": 6.46e-07, + "topshop": 6.46e-07, + "touting": 6.46e-07, + "tradesmen": 6.46e-07, + "transporters": 6.46e-07, + "travolta": 6.46e-07, + "trifecta": 6.46e-07, + "trois": 6.46e-07, + "trs": 6.46e-07, + "trumped": 6.46e-07, + "twinkling": 6.46e-07, + "underserved": 6.46e-07, + "undertones": 6.46e-07, + "unfairness": 6.46e-07, + "unwieldy": 6.46e-07, + "urinate": 6.46e-07, + "urology": 6.46e-07, + "vero": 6.46e-07, + "vertebral": 6.46e-07, + "vexed": 6.46e-07, + "vibrates": 6.46e-07, + "viennese": 6.46e-07, + "vignettes": 6.46e-07, + "vinson": 6.46e-07, + "vivienne": 6.46e-07, + "voc": 6.46e-07, + "vocalists": 6.46e-07, + "voids": 6.46e-07, + "wada": 6.46e-07, + "waitresses": 6.46e-07, + "warping": 6.46e-07, + "welbeck": 6.46e-07, + "westeros": 6.46e-07, + "whacked": 6.46e-07, + "whisperer": 6.46e-07, + "whitewash": 6.46e-07, + "whitewashed": 6.46e-07, + "widths": 6.46e-07, + "wingspan": 6.46e-07, + "winton": 6.46e-07, + "wiper": 6.46e-07, + "wipers": 6.46e-07, + "wristband": 6.46e-07, + "xxl": 6.46e-07, + "yarra": 6.46e-07, + "yeltsin": 6.46e-07, + "abdication": 6.31e-07, + "adirondack": 6.31e-07, + "admittance": 6.31e-07, + "adolph": 6.31e-07, + "aggravate": 6.31e-07, + "aia": 6.31e-07, + "airbase": 6.31e-07, + "aircrafts": 3.02e-07, + "alcohols": 7.41e-08, + "alpaca": 6.31e-07, + "alveolar": 6.31e-07, + "aly": 6.31e-07, + "ambivalence": 6.31e-07, + "amped": 6.31e-07, + "amphitheater": 6.31e-07, + "andrade": 6.31e-07, + "ansari": 6.31e-07, + "anthropogenic": 6.31e-07, + "appendages": 6.31e-07, + "appraisals": 6.31e-07, + "appraiser": 6.31e-07, + "arboretum": 6.31e-07, + "archivist": 6.31e-07, + "aretha": 6.31e-07, + "argent": 6.31e-07, + "argentinas": 6.92e-08, + "arraignment": 6.31e-07, + "arsehole": 6.31e-07, + "arvind": 6.31e-07, + "asahi": 6.31e-07, + "asgard": 6.31e-07, + "astrologer": 6.31e-07, + "awd": 6.31e-07, + "banknotes": 6.31e-07, + "beaker": 6.31e-07, + "belcher": 6.31e-07, + "belted": 6.31e-07, + "bereft": 6.31e-07, + "bezel": 6.31e-07, + "bhutto": 6.31e-07, + "bicentennial": 6.31e-07, + "biff": 6.31e-07, + "blackberries": 6.31e-07, + "blairs": 6.61e-08, + "blameless": 6.31e-07, + "blasio": 6.31e-07, + "blindfold": 6.31e-07, + "bobcat": 6.31e-07, + "bock": 6.31e-07, + "booties": 6.31e-07, + "borno": 6.31e-07, + "bottlenecks": 6.31e-07, + "bravado": 6.31e-07, + "brokered": 6.31e-07, + "bruces": 6.31e-07, + "bruges": 6.31e-07, + "bucking": 6.31e-07, + "buffoon": 6.31e-07, + "bullseye": 6.31e-07, + "bumbling": 6.31e-07, + "byzantium": 6.31e-07, + "cagr": 6.31e-07, + "calderon": 6.31e-07, + "canaveral": 6.31e-07, + "candor": 6.31e-07, + "canines": 6.31e-07, + "capitalizing": 6.31e-07, + "carats": 6.31e-07, + "caretakers": 8.32e-08, + "cassava": 6.31e-07, + "cellulite": 6.31e-07, + "cervantes": 6.31e-07, + "changers": 6.31e-07, + "chaste": 6.31e-07, + "chucky": 6.31e-07, + "clamoring": 6.31e-07, + "clarkes": 5.25e-08, + "cobbled": 6.31e-07, + "communicable": 6.31e-07, + "compatriot": 6.31e-07, + "computations": 6.31e-07, + "concorde": 6.31e-07, + "consuls": 6.31e-07, + "conti": 6.31e-07, + "convergent": 6.31e-07, + "copd": 6.31e-07, + "cordova": 6.31e-07, + "cosmological": 6.31e-07, + "cossack": 6.31e-07, + "courtois": 6.31e-07, + "cpd": 6.31e-07, + "craps": 6.31e-07, + "crazies": 6.31e-07, + "creaking": 6.31e-07, + "creatine": 6.31e-07, + "creatives": 6.31e-07, + "crick": 6.31e-07, + "crohns": 7.94e-08, + "cronin": 6.31e-07, + "crumbles": 6.31e-07, + "cypher": 6.31e-07, + "darnell": 6.31e-07, + "dazzled": 6.31e-07, + "decomposing": 6.31e-07, + "dekalb": 6.31e-07, + "demetrius": 6.31e-07, + "deploys": 6.31e-07, + "derision": 6.31e-07, + "dermal": 6.31e-07, + "destabilize": 6.31e-07, + "dfs": 6.31e-07, + "diameters": 6.31e-07, + "digimon": 6.31e-07, + "dollhouse": 6.31e-07, + "donned": 6.31e-07, + "dosages": 6.31e-07, + "dramatist": 6.31e-07, + "dressage": 6.31e-07, + "duc": 6.31e-07, + "dumont": 6.31e-07, + "dunks": 6.31e-07, + "dysentery": 6.31e-07, + "eas": 1.91e-07, + "ecologically": 6.31e-07, + "elaborating": 6.31e-07, + "emeralds": 6.31e-07, + "enumerated": 6.31e-07, + "executable": 6.31e-07, + "extradited": 6.31e-07, + "fait": 6.31e-07, + "fallin": 6.31e-07, + "faltered": 6.31e-07, + "farnsworth": 6.31e-07, + "fightin": 6.31e-07, + "filet": 6.31e-07, + "firmness": 6.31e-07, + "flannery": 6.31e-07, + "flipper": 6.31e-07, + "fml": 6.31e-07, + "fnc": 6.31e-07, + "follicle": 6.31e-07, + "foreclosures": 6.31e-07, + "frasier": 6.31e-07, + "frayed": 6.31e-07, + "frenchmen": 6.31e-07, + "furlong": 6.31e-07, + "genocidal": 6.31e-07, + "germination": 6.31e-07, + "geyser": 6.31e-07, + "gibbon": 6.31e-07, + "gilligan": 6.31e-07, + "gimp": 6.31e-07, + "glorifying": 6.31e-07, + "gonzo": 6.31e-07, + "goodie": 6.31e-07, + "gorges": 6.31e-07, + "graff": 6.31e-07, + "grainger": 6.31e-07, + "greaves": 6.31e-07, + "greening": 6.31e-07, + "greenleaf": 6.31e-07, + "greenwald": 6.31e-07, + "greenway": 6.31e-07, + "gresham": 6.31e-07, + "gretzky": 6.31e-07, + "grinders": 6.31e-07, + "griswold": 6.31e-07, + "grooms": 4.9e-07, + "grumble": 6.31e-07, + "guevara": 6.31e-07, + "hairspray": 6.31e-07, + "hani": 6.31e-07, + "hardback": 6.31e-07, + "harveys": 8.71e-08, + "healthful": 6.31e-07, + "hearse": 6.31e-07, + "helplessly": 6.31e-07, + "heralds": 1.02e-07, + "herbicide": 6.31e-07, + "homemaker": 6.31e-07, + "hotdog": 6.31e-07, + "hots": 6.31e-07, + "hpa": 6.31e-07, + "hrt": 6.31e-07, + "huggins": 6.31e-07, + "hunan": 6.31e-07, + "hunched": 6.31e-07, + "hyena": 6.31e-07, + "hypnotized": 6.31e-07, + "igniting": 6.31e-07, + "illuminates": 6.31e-07, + "immaturity": 6.31e-07, + "impeding": 6.31e-07, + "impostor": 6.31e-07, + "incensed": 6.31e-07, + "inclement": 6.31e-07, + "inferences": 6.31e-07, + "ingesting": 6.31e-07, + "intercepting": 6.31e-07, + "iridescent": 6.31e-07, + "janssen": 6.31e-07, + "jinping": 6.31e-07, + "jordi": 6.31e-07, + "judi": 6.31e-07, + "justifiably": 6.31e-07, + "kannada": 6.31e-07, + "kata": 6.31e-07, + "kilowatt": 6.31e-07, + "knelt": 6.31e-07, + "kol": 6.31e-07, + "krystal": 6.31e-07, + "laborious": 6.31e-07, + "landfills": 6.31e-07, + "latters": 6.31e-07, + "laval": 6.31e-07, + "lavishly": 6.31e-07, + "lazar": 6.31e-07, + "legible": 6.31e-07, + "lingual": 6.31e-07, + "liquidate": 6.31e-07, + "livable": 6.31e-07, + "lobo": 6.31e-07, + "loftus": 6.31e-07, + "loomed": 6.31e-07, + "lovejoy": 6.31e-07, + "lowercase": 6.31e-07, + "lpga": 6.31e-07, + "lusty": 6.31e-07, + "macao": 6.31e-07, + "maddening": 6.31e-07, + "malnourished": 6.31e-07, + "mami": 6.31e-07, + "manassas": 6.31e-07, + "manna": 6.31e-07, + "marias": 1.2e-07, + "martine": 6.31e-07, + "massaging": 6.31e-07, + "materiel": 6.31e-07, + "mchenry": 6.31e-07, + "menlo": 6.31e-07, + "mennonite": 6.31e-07, + "messier": 6.31e-07, + "mgr": 6.31e-07, + "microcosm": 6.31e-07, + "miki": 6.31e-07, + "mille": 6.31e-07, + "milos": 1.95e-07, + "miscarriages": 6.31e-07, + "misdeeds": 6.31e-07, + "mishra": 6.31e-07, + "mixtapes": 6.31e-07, + "moaned": 6.31e-07, + "monrovia": 6.31e-07, + "moro": 6.31e-07, + "muhammed": 6.31e-07, + "multifaceted": 6.31e-07, + "multiplicity": 6.31e-07, + "nac": 6.31e-07, + "nagpur": 6.31e-07, + "nasir": 6.31e-07, + "naylor": 6.31e-07, + "nbas": 6.31e-07, + "neurosurgeon": 6.31e-07, + "nist": 6.31e-07, + "noe": 6.31e-07, + "norah": 6.31e-07, + "norbert": 6.31e-07, + "nullified": 6.31e-07, + "nutter": 6.31e-07, + "obsessively": 6.31e-07, + "occured": 6.31e-07, + "olde": 6.31e-07, + "ooze": 6.31e-07, + "orangutan": 6.31e-07, + "orbs": 6.31e-07, + "oregano": 6.31e-07, + "organics": 6.31e-07, + "orig": 6.31e-07, + "osmond": 6.31e-07, + "outdone": 6.31e-07, + "outplayed": 6.31e-07, + "outrageously": 6.31e-07, + "outro": 6.31e-07, + "pacino": 6.31e-07, + "palisades": 6.31e-07, + "palmers": 1.66e-07, + "paloma": 6.31e-07, + "pandey": 6.31e-07, + "paraphrasing": 6.31e-07, + "parliamentarian": 6.31e-07, + "partied": 6.31e-07, + "passable": 6.31e-07, + "pasteur": 6.31e-07, + "pasting": 6.31e-07, + "patted": 6.31e-07, + "pease": 6.31e-07, + "peels": 5.13e-08, + "peeve": 6.31e-07, + "pendants": 6.31e-07, + "perishable": 6.31e-07, + "persie": 6.31e-07, + "personas": 6.31e-07, + "perv": 6.31e-07, + "pfc": 6.31e-07, + "photojournalist": 6.31e-07, + "pinks": 2.51e-07, + "plunges": 6.31e-07, + "politburo": 6.31e-07, + "polystyrene": 6.31e-07, + "pontiff": 6.31e-07, + "portrayals": 6.31e-07, + "postulated": 6.31e-07, + "pows": 9.55e-08, + "preemptive": 6.31e-07, + "pretender": 6.31e-07, + "primers": 6.31e-07, + "proletarian": 6.31e-07, + "prolonging": 6.31e-07, + "prong": 6.31e-07, + "prosthesis": 6.31e-07, + "prosthetics": 6.31e-07, + "psc": 6.31e-07, + "puny": 6.31e-07, + "qf": 6.31e-07, + "quantico": 6.31e-07, + "quarrels": 6.31e-07, + "quilted": 6.31e-07, + "quilts": 6.31e-07, + "radium": 6.31e-07, + "ramming": 6.31e-07, + "rancid": 6.31e-07, + "reassess": 6.31e-07, + "reb": 6.31e-07, + "recoverable": 6.31e-07, + "rectangles": 6.31e-07, + "rediscover": 6.31e-07, + "redistricting": 6.31e-07, + "ree": 6.31e-07, + "reissued": 6.31e-07, + "renner": 6.31e-07, + "reorganize": 6.31e-07, + "replayed": 6.31e-07, + "reservists": 6.31e-07, + "resonator": 6.31e-07, + "restlessness": 6.31e-07, + "retaliated": 6.31e-07, + "retirements": 6.31e-07, + "revives": 6.31e-07, + "revolted": 6.31e-07, + "rojas": 6.31e-07, + "roms": 6.31e-07, + "royalist": 6.31e-07, + "rpgs": 6.17e-08, + "ryo": 6.31e-07, + "savile": 6.31e-07, + "sawed": 6.31e-07, + "sayers": 6.31e-07, + "schilling": 6.31e-07, + "screenwriting": 6.31e-07, + "sculpt": 6.31e-07, + "selectivity": 6.31e-07, + "shatters": 6.31e-07, + "shopkeepers": 6.31e-07, + "sicker": 6.31e-07, + "signified": 6.31e-07, + "simi": 6.31e-07, + "sita": 6.31e-07, + "sizzle": 6.31e-07, + "skated": 6.31e-07, + "sloop": 6.31e-07, + "smu": 6.31e-07, + "snoopy": 6.31e-07, + "sobbed": 6.31e-07, + "spooner": 6.31e-07, + "spotter": 6.31e-07, + "squint": 6.31e-07, + "statisticians": 6.31e-07, + "stenosis": 6.31e-07, + "strathclyde": 6.31e-07, + "stv": 6.31e-07, + "subsystems": 6.31e-07, + "suffocation": 6.31e-07, + "surpluses": 6.31e-07, + "surrenders": 6.31e-07, + "syndication": 6.31e-07, + "tailgating": 6.31e-07, + "tama": 6.31e-07, + "tapestries": 6.31e-07, + "teamsters": 6.31e-07, + "technologists": 6.31e-07, + "tenfold": 6.31e-07, + "terrify": 6.31e-07, + "terrys": 6.31e-07, + "therere": 6.31e-07, + "thrall": 6.31e-07, + "throng": 6.31e-07, + "tianjin": 6.31e-07, + "togetherness": 6.31e-07, + "tolerances": 6.31e-07, + "tongs": 3.89e-08, + "topographical": 6.31e-07, + "traceable": 6.31e-07, + "trieste": 6.31e-07, + "trite": 6.31e-07, + "tryouts": 6.31e-07, + "tues": 6.31e-07, + "tusks": 6.31e-07, + "tylenol": 6.31e-07, + "undamaged": 6.31e-07, + "unpacked": 6.31e-07, + "unrivalled": 6.31e-07, + "urgh": 6.31e-07, + "urinating": 6.31e-07, + "verily": 6.31e-07, + "vga": 6.31e-07, + "vir": 6.31e-07, + "visualized": 6.31e-07, + "vitae": 6.31e-07, + "vocally": 6.31e-07, + "wadi": 6.31e-07, + "walkthrough": 6.31e-07, + "wallow": 6.31e-07, + "washroom": 6.31e-07, + "weldon": 6.31e-07, + "whigs": 6.31e-07, + "widgets": 6.31e-07, + "wilkie": 6.31e-07, + "wily": 6.31e-07, + "winks": 6.31e-07, + "wol": 6.31e-07, + "womack": 6.31e-07, + "workhouse": 6.31e-07, + "worshiping": 6.31e-07, + "wouldn": 6.31e-07, + "xian": 6.31e-07, + "zs": 3.09e-07, + "zum": 6.31e-07, + "zz": 6.31e-07, + "aam": 6.17e-07, + "abingdon": 6.17e-07, + "acetone": 6.17e-07, + "actuarial": 6.17e-07, + "adel": 6.17e-07, + "adventist": 6.17e-07, + "albemarle": 6.17e-07, + "alcatraz": 6.17e-07, + "allahs": 6.17e-07, + "allot": 6.17e-07, + "amine": 6.17e-07, + "amma": 6.17e-07, + "anathema": 6.17e-07, + "angelique": 6.17e-07, + "anni": 6.17e-07, + "anz": 6.17e-07, + "appeasement": 6.17e-07, + "appropriating": 6.17e-07, + "artisanal": 6.17e-07, + "ascertained": 6.17e-07, + "aspergers": 2.63e-07, + "auguste": 6.17e-07, + "aurelius": 6.17e-07, + "aureus": 6.17e-07, + "authorise": 6.17e-07, + "bacchus": 6.17e-07, + "bantam": 6.17e-07, + "barked": 6.17e-07, + "barrack": 6.17e-07, + "baseballs": 2.82e-07, + "batty": 6.17e-07, + "belive": 6.17e-07, + "bellow": 6.17e-07, + "belvedere": 6.17e-07, + "benefactors": 6.17e-07, + "betta": 6.17e-07, + "bhopal": 6.17e-07, + "bia": 6.17e-07, + "bitty": 6.17e-07, + "blurb": 6.17e-07, + "bonham": 6.17e-07, + "bonsai": 6.17e-07, + "boro": 6.17e-07, + "bosworth": 6.17e-07, + "boyish": 6.17e-07, + "bps": 4.57e-07, + "brians": 6.17e-07, + "bron": 6.17e-07, + "bronte": 6.17e-07, + "brownlow": 6.17e-07, + "buckwheat": 6.17e-07, + "bushel": 6.17e-07, + "busses": 6.17e-07, + "bute": 6.17e-07, + "buttercup": 6.17e-07, + "calibrate": 6.17e-07, + "callback": 6.17e-07, + "campsites": 6.17e-07, + "candlestick": 6.17e-07, + "capricious": 6.17e-07, + "carcinogenic": 6.17e-07, + "cartagena": 6.17e-07, + "cataracts": 6.17e-07, + "cation": 6.17e-07, + "caveats": 6.17e-07, + "cdu": 6.17e-07, + "cel": 6.17e-07, + "centaur": 6.17e-07, + "centipede": 6.17e-07, + "chested": 6.17e-07, + "chiffon": 6.17e-07, + "chirp": 6.17e-07, + "chloroform": 6.17e-07, + "chromatin": 6.17e-07, + "citibank": 6.17e-07, + "clays": 3.31e-07, + "clogs": 6.17e-07, + "coaxial": 6.17e-07, + "colluding": 6.17e-07, + "colman": 6.17e-07, + "commutes": 6.17e-07, + "completions": 6.17e-07, + "conch": 6.17e-07, + "concocted": 6.17e-07, + "conditioners": 6.17e-07, + "condon": 6.17e-07, + "confucian": 6.17e-07, + "conspirator": 6.17e-07, + "conveyance": 6.17e-07, + "coronado": 6.17e-07, + "corrie": 6.17e-07, + "corsica": 6.17e-07, + "cosgrove": 6.17e-07, + "cotter": 6.17e-07, + "cottonwood": 6.17e-07, + "cranberries": 6.17e-07, + "crankshaft": 6.17e-07, + "cristo": 6.17e-07, + "crossbar": 6.17e-07, + "cytokines": 6.17e-07, + "dawning": 6.17e-07, + "delicacies": 6.17e-07, + "demarcation": 6.17e-07, + "desai": 6.17e-07, + "desalination": 6.17e-07, + "desktops": 6.17e-07, + "determinations": 6.17e-07, + "dictatorships": 6.17e-07, + "digby": 6.17e-07, + "dildos": 6.17e-07, + "dimly": 6.17e-07, + "discernment": 6.17e-07, + "dislodge": 6.17e-07, + "dismembered": 6.17e-07, + "disrepair": 6.17e-07, + "dissertations": 6.17e-07, + "doings": 6.17e-07, + "doorman": 6.17e-07, + "drogba": 6.17e-07, + "duckworth": 6.17e-07, + "duets": 6.17e-07, + "dunfermline": 6.17e-07, + "eames": 6.17e-07, + "easement": 6.17e-07, + "ebitda": 6.17e-07, + "eis": 6.17e-07, + "eloise": 6.17e-07, + "emilie": 6.17e-07, + "emulated": 6.17e-07, + "emulating": 6.17e-07, + "endorphins": 6.17e-07, + "engrossed": 6.17e-07, + "entwined": 6.17e-07, + "eren": 6.17e-07, + "espinosa": 6.17e-07, + "euclidean": 6.17e-07, + "euler": 6.17e-07, + "evacuations": 6.17e-07, + "ewe": 6.17e-07, + "exponents": 6.17e-07, + "extraneous": 6.17e-07, + "exuberance": 6.17e-07, + "eyeglasses": 6.17e-07, + "falsehoods": 6.17e-07, + "familiarize": 6.17e-07, + "fap": 6.17e-07, + "fastening": 6.17e-07, + "fenwick": 6.17e-07, + "ferrous": 6.17e-07, + "feta": 6.17e-07, + "florian": 6.17e-07, + "forearms": 6.17e-07, + "foreboding": 6.17e-07, + "frieze": 6.17e-07, + "gangnam": 6.17e-07, + "gatekeeper": 6.17e-07, + "giacomo": 6.17e-07, + "glyn": 6.17e-07, + "golem": 6.17e-07, + "gossiping": 6.17e-07, + "gracias": 6.17e-07, + "grafting": 6.17e-07, + "granules": 6.17e-07, + "gridlock": 6.17e-07, + "guarantor": 6.17e-07, + "gujarati": 6.17e-07, + "gy": 6.17e-07, + "hanlon": 6.17e-07, + "happend": 6.17e-07, + "hares": 1.07e-07, + "haywood": 6.17e-07, + "herbaceous": 6.17e-07, + "herodotus": 6.17e-07, + "hightower": 6.17e-07, + "hilliard": 6.17e-07, + "hinckley": 6.17e-07, + "hither": 6.17e-07, + "hol": 6.17e-07, + "holbrook": 6.17e-07, + "homeboy": 6.17e-07, + "honing": 6.17e-07, + "honky": 6.17e-07, + "honorably": 6.17e-07, + "horan": 6.17e-07, + "hoskins": 6.17e-07, + "hoyer": 6.17e-07, + "humber": 6.17e-07, + "hurriedly": 6.17e-07, + "hyping": 6.17e-07, + "idioms": 6.17e-07, + "iga": 6.17e-07, + "illusory": 6.17e-07, + "illustrators": 6.17e-07, + "ilo": 6.17e-07, + "iman": 6.17e-07, + "inadequacy": 6.17e-07, + "inadvertent": 6.17e-07, + "inaudible": 6.17e-07, + "incapacity": 6.17e-07, + "indianas": 6.17e-07, + "industrious": 6.17e-07, + "infects": 6.17e-07, + "inflating": 6.17e-07, + "ingress": 6.17e-07, + "insufferable": 6.17e-07, + "interred": 6.17e-07, + "interrogations": 6.17e-07, + "intrusions": 6.17e-07, + "isometric": 6.17e-07, + "javi": 6.17e-07, + "jeeps": 8.91e-08, + "jett": 6.17e-07, + "jib": 6.17e-07, + "jinnah": 6.17e-07, + "journeyed": 6.17e-07, + "jute": 6.17e-07, + "kauffman": 6.17e-07, + "kejriwal": 6.17e-07, + "kel": 6.17e-07, + "kevlar": 6.17e-07, + "kkr": 6.17e-07, + "kristian": 6.17e-07, + "laissez": 6.17e-07, + "layoff": 6.17e-07, + "leica": 6.17e-07, + "leper": 6.17e-07, + "levee": 6.17e-07, + "lewin": 6.17e-07, + "lido": 6.17e-07, + "lise": 6.17e-07, + "loci": 6.17e-07, + "loos": 6.17e-07, + "lotteries": 6.17e-07, + "loudspeakers": 6.17e-07, + "lovett": 6.17e-07, + "lucerne": 6.17e-07, + "lurch": 6.17e-07, + "madrids": 6.17e-07, + "magnificence": 6.17e-07, + "majid": 6.17e-07, + "majored": 6.17e-07, + "malaysians": 6.17e-07, + "malfunctions": 6.17e-07, + "mangoes": 6.17e-07, + "manipur": 6.17e-07, + "margaritas": 6.17e-07, + "martens": 6.17e-07, + "matchmaker": 6.17e-07, + "matlab": 6.17e-07, + "mattie": 6.17e-07, + "mayhew": 6.17e-07, + "mcphee": 6.17e-07, + "measly": 6.17e-07, + "megapixel": 6.17e-07, + "mellitus": 6.17e-07, + "meringue": 6.17e-07, + "miamis": 6.17e-07, + "minstrel": 6.17e-07, + "modesto": 6.17e-07, + "monaghan": 6.17e-07, + "mondo": 6.17e-07, + "moronic": 6.17e-07, + "mouthing": 6.17e-07, + "muddle": 6.17e-07, + "multidimensional": 6.17e-07, + "nabbed": 6.17e-07, + "nantes": 6.17e-07, + "narrate": 6.17e-07, + "nathalie": 6.17e-07, + "naturalism": 6.17e-07, + "navigated": 6.17e-07, + "neoclassical": 6.17e-07, + "neoliberalism": 6.17e-07, + "neutered": 6.17e-07, + "neve": 6.17e-07, + "neverland": 6.17e-07, + "newsworthy": 6.17e-07, + "nomura": 6.17e-07, + "normalizing": 6.17e-07, + "northerners": 6.17e-07, + "nts": 6.17e-07, + "oaxaca": 6.17e-07, + "obliterate": 6.17e-07, + "ocr": 6.17e-07, + "oeuvre": 6.17e-07, + "omnipresent": 6.17e-07, + "oneida": 6.17e-07, + "ontarios": 6.17e-07, + "ordinator": 6.17e-07, + "osmosis": 6.17e-07, + "outcrops": 6.17e-07, + "overhang": 6.17e-07, + "oxley": 6.17e-07, + "paganism": 6.17e-07, + "pail": 6.17e-07, + "palatine": 6.17e-07, + "paleontology": 6.17e-07, + "parabolic": 6.17e-07, + "paradoxes": 6.17e-07, + "pare": 6.17e-07, + "parkour": 6.17e-07, + "parlance": 6.17e-07, + "permafrost": 6.17e-07, + "permutations": 6.17e-07, + "persecute": 6.17e-07, + "phat": 6.17e-07, + "pixies": 6.17e-07, + "plexus": 6.17e-07, + "politic": 6.17e-07, + "poncho": 6.17e-07, + "poolside": 6.17e-07, + "pornstars": 6.17e-07, + "preeminent": 6.17e-07, + "prefabricated": 6.17e-07, + "premiering": 6.17e-07, + "presbytery": 6.17e-07, + "preservative": 6.17e-07, + "presse": 6.17e-07, + "presser": 6.17e-07, + "prioritise": 6.17e-07, + "probs": 6.17e-07, + "propelling": 6.17e-07, + "propriety": 6.17e-07, + "provisionally": 6.17e-07, + "pythons": 3.47e-07, + "qbs": 1.95e-07, + "quartered": 6.17e-07, + "quigley": 6.17e-07, + "rainey": 6.17e-07, + "rapunzel": 6.17e-07, + "rattles": 6.17e-07, + "razed": 6.17e-07, + "recitals": 6.17e-07, + "reconstructing": 6.17e-07, + "rejuvenation": 6.17e-07, + "repatriated": 6.17e-07, + "reposted": 6.17e-07, + "resection": 6.17e-07, + "reseller": 6.17e-07, + "roald": 6.17e-07, + "robles": 6.17e-07, + "rockland": 6.17e-07, + "ruffle": 6.17e-07, + "saito": 6.17e-07, + "samar": 6.17e-07, + "sarcophagus": 6.17e-07, + "sardar": 6.17e-07, + "sarin": 6.17e-07, + "sartre": 6.17e-07, + "saud": 6.17e-07, + "scab": 6.17e-07, + "schenectady": 6.17e-07, + "schlesinger": 6.17e-07, + "scoot": 6.17e-07, + "scp": 6.17e-07, + "scratchy": 6.17e-07, + "scuffle": 6.17e-07, + "secede": 6.17e-07, + "seep": 6.17e-07, + "sensuous": 6.17e-07, + "shabbat": 6.17e-07, + "shakti": 6.17e-07, + "shanti": 6.17e-07, + "shaver": 6.17e-07, + "sherpa": 6.17e-07, + "showy": 6.17e-07, + "sideboard": 6.17e-07, + "silks": 6.17e-07, + "silliness": 6.17e-07, + "sills": 6.17e-07, + "sisi": 6.17e-07, + "skittles": 6.17e-07, + "skyler": 6.17e-07, + "skyrocket": 6.17e-07, + "smalling": 6.17e-07, + "sns": 6.17e-07, + "softest": 6.17e-07, + "sonora": 6.17e-07, + "sor": 6.17e-07, + "spate": 6.17e-07, + "spellings": 6.17e-07, + "splinters": 6.17e-07, + "squeezes": 6.17e-07, + "starks": 4.27e-07, + "stasi": 6.17e-07, + "stealthy": 6.17e-07, + "stereotyped": 6.17e-07, + "storybook": 6.17e-07, + "stowed": 6.17e-07, + "strobe": 6.17e-07, + "stryker": 6.17e-07, + "stylists": 6.17e-07, + "subduction": 6.17e-07, + "submersible": 6.17e-07, + "suburbia": 6.17e-07, + "sud": 6.17e-07, + "sulu": 6.17e-07, + "superlative": 6.17e-07, + "surmounted": 6.17e-07, + "swarovski": 6.17e-07, + "sylvan": 6.17e-07, + "symphonies": 6.17e-07, + "tabby": 6.17e-07, + "taiwans": 6.17e-07, + "tamils": 6.17e-07, + "tatar": 6.17e-07, + "tatars": 6.17e-07, + "technologist": 6.17e-07, + "templars": 6.17e-07, + "terrorize": 6.17e-07, + "thorium": 6.17e-07, + "throes": 6.17e-07, + "tiananmen": 6.17e-07, + "tilts": 6.17e-07, + "tion": 6.17e-07, + "tomboy": 6.17e-07, + "tonsils": 6.17e-07, + "transfusions": 6.17e-07, + "traumas": 6.17e-07, + "triassic": 6.17e-07, + "tricycle": 6.17e-07, + "trp": 6.17e-07, + "truro": 6.17e-07, + "umass": 6.17e-07, + "unaltered": 6.17e-07, + "unapologetic": 6.17e-07, + "unclassified": 6.17e-07, + "uncool": 6.17e-07, + "unfavourable": 6.17e-07, + "unloved": 6.17e-07, + "unmasked": 6.17e-07, + "unsightly": 6.17e-07, + "uptick": 6.17e-07, + "urchin": 6.17e-07, + "vandal": 6.17e-07, + "vhf": 6.17e-07, + "villanova": 6.17e-07, + "violators": 6.17e-07, + "vise": 6.17e-07, + "vj": 6.17e-07, + "walsall": 6.17e-07, + "wasn": 6.17e-07, + "watertight": 6.17e-07, + "wavering": 6.17e-07, + "wherefore": 6.17e-07, + "whoo": 6.17e-07, + "wildflowers": 6.17e-07, + "windward": 6.17e-07, + "wip": 6.17e-07, + "witcher": 6.17e-07, + "wok": 6.17e-07, + "woodcock": 6.17e-07, + "xiang": 6.17e-07, + "xtreme": 6.17e-07, + "yahya": 6.17e-07, + "yoy": 6.17e-07, + "zag": 6.17e-07, + "zips": 1.07e-08, + "abstained": 6.03e-07, + "accretion": 6.03e-07, + "activator": 6.03e-07, + "aeroplanes": 6.03e-07, + "aerosmith": 6.03e-07, + "affirmations": 6.03e-07, + "afresh": 6.03e-07, + "ahs": 5.25e-08, + "allahabad": 6.03e-07, + "allotments": 6.03e-07, + "annular": 6.03e-07, + "appetizers": 6.03e-07, + "appleby": 6.03e-07, + "appraised": 6.03e-07, + "appreciable": 6.03e-07, + "aquila": 6.03e-07, + "arnaud": 6.03e-07, + "associative": 6.03e-07, + "asst": 6.03e-07, + "assuredly": 6.03e-07, + "atherosclerosis": 6.03e-07, + "auctioneers": 6.03e-07, + "augsburg": 6.03e-07, + "aural": 6.03e-07, + "automakers": 5.01e-08, + "bachmann": 6.03e-07, + "backroom": 6.03e-07, + "baited": 6.03e-07, + "banksy": 6.03e-07, + "bap": 6.03e-07, + "barracuda": 6.03e-07, + "bcc": 6.03e-07, + "beauchamp": 6.03e-07, + "beethovens": 6.03e-07, + "belarusian": 6.03e-07, + "benefitting": 6.03e-07, + "benevolence": 6.03e-07, + "bettering": 6.03e-07, + "bewitched": 6.03e-07, + "bil": 6.03e-07, + "blazes": 6.03e-07, + "blimp": 6.03e-07, + "bls": 6.03e-07, + "bodywork": 6.03e-07, + "bondholders": 6.03e-07, + "bookcase": 6.03e-07, + "boucher": 6.03e-07, + "bracken": 6.03e-07, + "bridle": 6.03e-07, + "bruv": 6.03e-07, + "buddys": 6.03e-07, + "buford": 6.03e-07, + "bullard": 6.03e-07, + "bullshitting": 6.03e-07, + "butterworth": 6.03e-07, + "cassini": 6.03e-07, + "castration": 6.03e-07, + "cathay": 6.03e-07, + "caudal": 6.03e-07, + "charing": 6.03e-07, + "cheeseburgers": 6.03e-07, + "chews": 6.03e-07, + "chiles": 4.27e-07, + "chillin": 6.03e-07, + "choruses": 6.03e-07, + "chowder": 6.03e-07, + "clary": 6.03e-07, + "clinching": 6.03e-07, + "cmd": 6.03e-07, + "cogs": 6.03e-07, + "collarbone": 6.03e-07, + "colonize": 6.03e-07, + "condolence": 6.03e-07, + "conjugated": 6.03e-07, + "conquerors": 6.17e-08, + "consents": 6.03e-07, + "constructively": 6.03e-07, + "cordoba": 6.03e-07, + "cov": 6.03e-07, + "crackle": 6.03e-07, + "crematorium": 6.03e-07, + "crests": 6.03e-07, + "croissant": 6.03e-07, + "crustaceans": 6.03e-07, + "cryin": 6.03e-07, + "cryogenic": 6.03e-07, + "curbs": 6.03e-07, + "dally": 6.03e-07, + "decoded": 6.03e-07, + "decontamination": 6.03e-07, + "defenceman": 6.03e-07, + "delle": 6.03e-07, + "delving": 6.03e-07, + "demonstrably": 6.03e-07, + "deniers": 6.03e-07, + "depositors": 6.03e-07, + "despises": 6.03e-07, + "devolve": 6.03e-07, + "devotes": 6.03e-07, + "dha": 6.03e-07, + "dianas": 6.03e-07, + "diffuser": 6.03e-07, + "dispersing": 6.03e-07, + "disposals": 6.03e-07, + "dominguez": 6.03e-07, + "dor": 6.03e-07, + "dpp": 6.03e-07, + "drucker": 6.03e-07, + "dupe": 6.03e-07, + "duster": 6.03e-07, + "eatery": 6.03e-07, + "electronica": 6.03e-07, + "elms": 6.03e-07, + "elongate": 6.03e-07, + "elude": 6.03e-07, + "embattled": 6.03e-07, + "enamored": 6.03e-07, + "encephalitis": 6.03e-07, + "ender": 6.03e-07, + "endowments": 6.03e-07, + "entertainments": 2.63e-07, + "enthralled": 6.03e-07, + "escalates": 6.03e-07, + "eskimos": 6.03e-07, + "eso": 6.03e-07, + "esplanade": 6.03e-07, + "etch": 6.03e-07, + "eustace": 6.03e-07, + "evangelists": 6.03e-07, + "excavating": 6.03e-07, + "expelling": 6.03e-07, + "eyewear": 6.03e-07, + "fairgrounds": 6.03e-07, + "fallacies": 6.03e-07, + "farted": 6.03e-07, + "favoritism": 6.03e-07, + "fenders": 6.03e-07, + "fervently": 6.03e-07, + "feudalism": 6.03e-07, + "fireproof": 6.03e-07, + "flounder": 6.03e-07, + "foetus": 6.03e-07, + "forthright": 6.03e-07, + "frans": 8.13e-08, + "gaon": 6.03e-07, + "gaylord": 6.03e-07, + "geisha": 6.03e-07, + "gelato": 6.03e-07, + "gemstones": 6.03e-07, + "giza": 6.03e-07, + "glade": 6.03e-07, + "glassy": 6.03e-07, + "gleefully": 6.03e-07, + "glycogen": 6.03e-07, + "godsend": 6.03e-07, + "gofundme": 6.03e-07, + "goodall": 6.03e-07, + "grasshoppers": 6.03e-07, + "groped": 6.03e-07, + "grubby": 6.03e-07, + "guan": 6.03e-07, + "gulch": 6.03e-07, + "gynecologist": 6.03e-07, + "hacienda": 6.03e-07, + "hairpin": 6.03e-07, + "halliday": 6.03e-07, + "hannahs": 6.03e-07, + "hannover": 6.03e-07, + "harnesses": 6.03e-07, + "harts": 1.86e-07, + "haru": 6.03e-07, + "hatter": 6.03e-07, + "hausa": 6.03e-07, + "hawes": 6.03e-07, + "hazelnut": 6.03e-07, + "hbos": 9.12e-08, + "hendrick": 6.03e-07, + "hiker": 6.03e-07, + "hilbert": 6.03e-07, + "hj": 6.03e-07, + "homologous": 6.03e-07, + "horseshit": 6.03e-07, + "howls": 1.55e-07, + "hsc": 6.03e-07, + "hummer": 6.03e-07, + "hydrating": 6.03e-07, + "hyo": 6.03e-07, + "icp": 6.03e-07, + "ifc": 6.03e-07, + "iffy": 6.03e-07, + "immovable": 6.03e-07, + "impaled": 6.03e-07, + "inspectorate": 6.03e-07, + "interstitial": 6.03e-07, + "inverter": 6.03e-07, + "iona": 6.03e-07, + "irate": 6.03e-07, + "isu": 6.03e-07, + "iverson": 6.03e-07, + "jakes": 3.24e-07, + "jeju": 6.03e-07, + "jezebel": 6.03e-07, + "jf": 6.03e-07, + "jizz": 6.03e-07, + "joliet": 6.03e-07, + "joshi": 6.03e-07, + "jugular": 6.03e-07, + "kean": 6.03e-07, + "kelli": 6.03e-07, + "kerrigan": 6.03e-07, + "kickstart": 6.03e-07, + "killian": 6.03e-07, + "kinsey": 6.03e-07, + "kirkwood": 6.03e-07, + "knockdown": 6.03e-07, + "konstantin": 6.03e-07, + "kor": 6.03e-07, + "krugman": 6.03e-07, + "ladd": 6.03e-07, + "lagoons": 6.03e-07, + "lapis": 6.03e-07, + "laramie": 6.03e-07, + "lessening": 6.03e-07, + "lethargic": 6.03e-07, + "lga": 6.03e-07, + "liberator": 6.03e-07, + "ligature": 6.03e-07, + "linkin": 6.03e-07, + "lipped": 6.03e-07, + "littering": 6.03e-07, + "livers": 5.75e-08, + "logans": 6.03e-07, + "longhorns": 6.03e-07, + "loony": 6.03e-07, + "loveliest": 6.03e-07, + "lse": 6.03e-07, + "lynchburg": 6.03e-07, + "maggot": 6.03e-07, + "mahesh": 6.03e-07, + "malek": 6.03e-07, + "malkin": 6.03e-07, + "mambo": 6.03e-07, + "mandala": 6.03e-07, + "mandolin": 6.03e-07, + "manhattans": 8.51e-08, + "margie": 6.03e-07, + "marinated": 6.03e-07, + "martinique": 6.03e-07, + "maryam": 6.03e-07, + "mbs": 6.03e-07, + "mcguinness": 6.03e-07, + "mcnulty": 6.03e-07, + "mediaeval": 6.03e-07, + "megaphone": 6.03e-07, + "megawatts": 6.03e-07, + "merci": 6.03e-07, + "milfs": 6.03e-07, + "militarism": 6.03e-07, + "millimetres": 6.03e-07, + "mim": 6.03e-07, + "misfortunes": 6.03e-07, + "mismatched": 6.03e-07, + "missus": 6.03e-07, + "miyazaki": 6.03e-07, + "moab": 6.03e-07, + "modernizing": 6.03e-07, + "moped": 6.03e-07, + "morrisons": 3.55e-07, + "moser": 6.03e-07, + "mountaineers": 6.03e-07, + "msf": 6.03e-07, + "mugging": 6.03e-07, + "multiplex": 6.03e-07, + "musica": 6.03e-07, + "nang": 6.03e-07, + "nar": 6.03e-07, + "nickels": 6.03e-07, + "nicol": 6.03e-07, + "noelle": 6.03e-07, + "ogrady": 6.03e-07, + "obstructions": 6.03e-07, + "odom": 6.03e-07, + "oktoberfest": 6.03e-07, + "oncologist": 6.03e-07, + "onside": 6.03e-07, + "opel": 6.03e-07, + "opiates": 6.03e-07, + "optimally": 6.03e-07, + "optionally": 6.03e-07, + "oscillating": 6.03e-07, + "outperformed": 6.03e-07, + "overlaid": 6.03e-07, + "overlapped": 6.03e-07, + "pamper": 6.03e-07, + "panacea": 6.03e-07, + "parc": 6.03e-07, + "parietal": 6.03e-07, + "parkes": 6.03e-07, + "patronizing": 6.03e-07, + "pauper": 6.03e-07, + "pedersen": 6.03e-07, + "peppered": 6.03e-07, + "pestilence": 6.03e-07, + "pews": 6.03e-07, + "pewter": 6.03e-07, + "philippa": 6.03e-07, + "philosophically": 6.03e-07, + "pineapples": 6.03e-07, + "pippin": 6.03e-07, + "pittsburg": 6.03e-07, + "plainfield": 6.03e-07, + "plenum": 6.03e-07, + "polygraph": 6.03e-07, + "popup": 6.03e-07, + "precipitate": 6.03e-07, + "principality": 6.03e-07, + "priori": 6.03e-07, + "pronged": 6.03e-07, + "proofing": 6.03e-07, + "propping": 6.03e-07, + "protease": 6.03e-07, + "proust": 6.03e-07, + "punchline": 6.03e-07, + "purges": 6.03e-07, + "px": 6.03e-07, + "queenstown": 6.03e-07, + "quintana": 6.03e-07, + "radish": 6.03e-07, + "rashad": 6.03e-07, + "rds": 6.03e-07, + "receded": 6.03e-07, + "reciprocate": 6.03e-07, + "recklessness": 6.03e-07, + "regenerating": 6.03e-07, + "remaking": 6.03e-07, + "repetitions": 6.03e-07, + "restock": 6.03e-07, + "restorations": 6.03e-07, + "retweets": 6.03e-07, + "reykjavik": 6.03e-07, + "rickie": 6.03e-07, + "roasts": 6.03e-07, + "rocha": 6.03e-07, + "rotunda": 6.03e-07, + "roundhouse": 6.03e-07, + "rowed": 6.03e-07, + "roys": 9.12e-08, + "rpi": 6.03e-07, + "rushmore": 6.03e-07, + "sanctioning": 6.03e-07, + "sativa": 6.03e-07, + "savour": 6.03e-07, + "sawing": 6.03e-07, + "scarab": 6.03e-07, + "schengen": 6.03e-07, + "scoff": 6.03e-07, + "scythe": 6.03e-07, + "searle": 6.03e-07, + "secretions": 6.03e-07, + "sedated": 6.03e-07, + "semper": 6.03e-07, + "sepia": 6.03e-07, + "severus": 6.03e-07, + "shaffer": 6.03e-07, + "shamans": 9.12e-08, + "shipley": 6.03e-07, + "shoveling": 6.03e-07, + "shs": 6.03e-07, + "silvers": 3.47e-07, + "sinaloa": 6.03e-07, + "sketchbook": 6.03e-07, + "skirting": 6.03e-07, + "slapstick": 6.03e-07, + "slinging": 6.03e-07, + "smythe": 6.03e-07, + "sourdough": 6.03e-07, + "spiking": 6.03e-07, + "spires": 6.03e-07, + "sprinters": 6.03e-07, + "sprouted": 6.03e-07, + "squirm": 6.03e-07, + "srt": 6.03e-07, + "staircases": 6.03e-07, + "stepdaughter": 6.03e-07, + "stm": 6.03e-07, + "stoney": 6.03e-07, + "strategists": 6.03e-07, + "stupendous": 6.03e-07, + "sunbathing": 6.03e-07, + "supercars": 6.03e-07, + "surrealism": 6.03e-07, + "surya": 6.03e-07, + "sys": 6.03e-07, + "tabitha": 6.03e-07, + "tabor": 6.03e-07, + "takashi": 6.03e-07, + "tarrant": 6.03e-07, + "tca": 6.03e-07, + "telepathic": 6.03e-07, + "telescopic": 6.03e-07, + "tellers": 1.12e-07, + "telstra": 6.03e-07, + "tenderly": 6.03e-07, + "termite": 6.03e-07, + "theron": 6.03e-07, + "thicke": 6.03e-07, + "thickens": 6.03e-07, + "thongs": 6.03e-07, + "thurs": 6.03e-07, + "tig": 6.03e-07, + "timetables": 6.03e-07, + "tortoises": 6.03e-07, + "transcriptional": 6.03e-07, + "transgenic": 6.03e-07, + "trimmer": 6.03e-07, + "trudy": 6.03e-07, + "twa": 6.03e-07, + "ucc": 6.03e-07, + "underscored": 6.03e-07, + "undiagnosed": 6.03e-07, + "unease": 6.03e-07, + "univision": 6.03e-07, + "unrequited": 6.03e-07, + "uptime": 6.03e-07, + "urinal": 6.03e-07, + "urls": 6.03e-07, + "usf": 6.03e-07, + "usurped": 6.03e-07, + "vagabond": 6.03e-07, + "vamos": 6.03e-07, + "vanuatu": 6.03e-07, + "varna": 6.03e-07, + "vaseline": 6.03e-07, + "vedas": 6.03e-07, + "vestiges": 6.03e-07, + "vipers": 8.32e-08, + "virtualization": 6.03e-07, + "visage": 6.03e-07, + "vk": 6.03e-07, + "warne": 6.03e-07, + "webcams": 6.03e-07, + "wechat": 6.03e-07, + "weeps": 6.03e-07, + "wel": 6.03e-07, + "wether": 6.03e-07, + "wham": 6.03e-07, + "wien": 6.03e-07, + "winked": 6.03e-07, + "woodville": 6.03e-07, + "woohoo": 6.03e-07, + "wook": 6.03e-07, + "writhing": 6.03e-07, + "wuhan": 6.03e-07, + "yardage": 6.03e-07, + "yg": 6.03e-07, + "yue": 6.03e-07, + "zeitung": 6.03e-07, + "zing": 6.03e-07, + "zumba": 6.03e-07, + "ablation": 5.89e-07, + "abo": 5.89e-07, + "accelerators": 5.89e-07, + "actuator": 5.89e-07, + "adkins": 5.89e-07, + "admirals": 1.95e-07, + "adrenalin": 5.89e-07, + "advertises": 5.89e-07, + "agribusiness": 5.89e-07, + "aguirre": 5.89e-07, + "aig": 5.89e-07, + "aja": 5.89e-07, + "aleksandr": 5.89e-07, + "algorithmic": 5.89e-07, + "alignments": 5.89e-07, + "alleviating": 5.89e-07, + "alsace": 5.89e-07, + "amass": 5.89e-07, + "amok": 5.89e-07, + "anatolia": 5.89e-07, + "androgen": 5.89e-07, + "angina": 5.89e-07, + "animating": 5.89e-07, + "anthologies": 5.89e-07, + "apolitical": 5.89e-07, + "apologist": 5.89e-07, + "appalachia": 5.89e-07, + "arcades": 5.89e-07, + "archeology": 5.89e-07, + "arian": 5.89e-07, + "asf": 5.89e-07, + "astrological": 5.89e-07, + "auger": 5.89e-07, + "ayala": 5.89e-07, + "babble": 5.89e-07, + "babs": 1.12e-08, + "baillie": 5.89e-07, + "balinese": 5.89e-07, + "bankruptcies": 5.89e-07, + "barman": 5.89e-07, + "barrows": 5.89e-08, + "baruch": 5.89e-07, + "beachfront": 5.89e-07, + "beatrix": 5.89e-07, + "beckman": 5.89e-07, + "berlusconi": 5.89e-07, + "bic": 5.89e-07, + "blighted": 5.89e-07, + "blinks": 1.74e-08, + "bloodborne": 5.89e-07, + "borrowings": 5.89e-07, + "botha": 5.89e-07, + "bottas": 5.89e-07, + "bouncers": 5.89e-07, + "brea": 5.89e-07, + "buoys": 5.89e-07, + "cady": 5.89e-07, + "camouflaged": 5.89e-07, + "cardi": 5.89e-07, + "carrera": 5.89e-07, + "cartesian": 5.89e-07, + "catalogued": 5.89e-07, + "catastrophes": 5.89e-07, + "cerberus": 5.89e-07, + "chalkboard": 5.89e-07, + "chantal": 5.89e-07, + "chappelle": 5.89e-07, + "charlestown": 5.89e-07, + "cheerios": 5.89e-07, + "chica": 5.89e-07, + "childress": 5.89e-07, + "chorizo": 5.89e-07, + "chubb": 5.89e-07, + "cockney": 5.89e-07, + "collated": 5.89e-07, + "comically": 5.89e-07, + "commoners": 5.89e-07, + "compiles": 5.89e-07, + "conde": 5.89e-07, + "conjoined": 5.89e-07, + "conservationists": 5.89e-07, + "controversially": 5.89e-07, + "credo": 5.89e-07, + "crevices": 5.89e-07, + "cri": 5.89e-07, + "critter": 5.89e-07, + "csc": 5.89e-07, + "culminates": 5.89e-07, + "cytoplasm": 5.89e-07, + "dap": 5.89e-07, + "darpa": 5.89e-07, + "ddr": 5.89e-07, + "deadbeat": 5.89e-07, + "debauchery": 5.89e-07, + "decrepit": 5.89e-07, + "dejected": 5.89e-07, + "democratization": 5.89e-07, + "denison": 5.89e-07, + "dented": 5.89e-07, + "deprecating": 5.89e-07, + "derided": 5.89e-07, + "designates": 5.89e-07, + "despatched": 5.89e-07, + "dimples": 5.89e-07, + "dirtiest": 5.89e-07, + "djibouti": 5.89e-07, + "domenico": 5.89e-07, + "driest": 5.89e-07, + "dubbing": 5.89e-07, + "dubuque": 5.89e-07, + "durbin": 5.89e-07, + "dweller": 5.89e-07, + "dynastic": 5.89e-07, + "edouard": 5.89e-07, + "eea": 5.89e-07, + "elan": 5.89e-07, + "elinor": 5.89e-07, + "elkins": 5.89e-07, + "elo": 5.89e-07, + "embarrassingly": 5.89e-07, + "embolism": 5.89e-07, + "enclose": 5.89e-07, + "entree": 5.89e-07, + "enzymatic": 5.89e-07, + "eradicating": 5.89e-07, + "esmeralda": 5.89e-07, + "esophageal": 5.89e-07, + "essen": 5.89e-07, + "euston": 5.89e-07, + "figueroa": 5.89e-07, + "firs": 5.89e-07, + "flashlights": 5.89e-07, + "flaunting": 5.89e-07, + "flavoring": 5.89e-07, + "flirtatious": 5.89e-07, + "flue": 5.89e-07, + "formulae": 5.89e-07, + "frankfort": 5.89e-07, + "frescoes": 5.89e-07, + "fuckery": 5.89e-07, + "furness": 5.89e-07, + "futurama": 5.89e-07, + "fwd": 5.89e-07, + "gam": 5.89e-07, + "gandhis": 5.89e-07, + "gatherer": 5.89e-07, + "generative": 5.89e-07, + "gentleness": 5.89e-07, + "ghouls": 5.89e-07, + "globalist": 5.89e-07, + "gnarly": 5.89e-07, + "gnostic": 5.89e-07, + "grassley": 5.89e-07, + "greenbelt": 5.89e-07, + "grier": 5.89e-07, + "griggs": 5.89e-07, + "guadalajara": 5.89e-07, + "handicrafts": 5.89e-07, + "haphazard": 5.89e-07, + "harrisons": 9.55e-08, + "haus": 5.89e-07, + "headliners": 5.89e-07, + "hempstead": 5.89e-07, + "hippos": 5.89e-07, + "hollande": 5.89e-07, + "huck": 5.89e-07, + "hyperion": 5.89e-07, + "hypersensitivity": 5.89e-07, + "inaccuracy": 5.89e-07, + "inadmissible": 5.89e-07, + "indecision": 5.89e-07, + "indomitable": 5.89e-07, + "infidel": 5.89e-07, + "inhabits": 5.89e-07, + "ini": 5.89e-07, + "inr": 5.89e-07, + "insemination": 5.89e-07, + "insinuating": 5.89e-07, + "inst": 5.89e-07, + "intelligible": 5.89e-07, + "intervenes": 5.89e-07, + "ionizing": 5.89e-07, + "irrevocably": 5.89e-07, + "islets": 5.89e-07, + "ivanov": 5.89e-07, + "jayden": 5.89e-07, + "jimbo": 5.89e-07, + "jocks": 5.89e-07, + "juba": 5.89e-07, + "judgemental": 5.89e-07, + "jurisdictional": 5.89e-07, + "kama": 5.89e-07, + "kenosha": 5.89e-07, + "kentuckys": 5.89e-07, + "kidnapper": 5.89e-07, + "kiran": 5.89e-07, + "knesset": 5.89e-07, + "krusty": 5.89e-07, + "krypton": 5.89e-07, + "kuan": 5.89e-07, + "kuo": 5.89e-07, + "lagrange": 5.89e-07, + "lapel": 5.89e-07, + "laverne": 5.89e-07, + "leaped": 5.89e-07, + "liao": 5.89e-07, + "lichen": 5.89e-07, + "liechtenstein": 5.89e-07, + "lindbergh": 5.89e-07, + "lino": 5.89e-07, + "litmus": 5.89e-07, + "llewellyn": 5.89e-07, + "longman": 5.89e-07, + "magellan": 5.89e-07, + "magnificently": 5.89e-07, + "magnify": 5.89e-07, + "malachi": 5.89e-07, + "marnie": 5.89e-07, + "marques": 5.89e-07, + "masha": 5.89e-07, + "matador": 5.89e-07, + "maxed": 5.89e-07, + "mccains": 5.89e-07, + "mcdougall": 5.89e-07, + "mcm": 5.89e-07, + "mda": 5.89e-07, + "meera": 5.89e-07, + "megatron": 5.89e-07, + "mehmet": 5.89e-07, + "mendel": 5.89e-07, + "meniscus": 5.89e-07, + "menthol": 5.89e-07, + "methodically": 5.89e-07, + "mightily": 5.89e-07, + "misjudged": 5.89e-07, + "miso": 5.89e-07, + "monotone": 5.89e-07, + "monstrosity": 5.89e-07, + "mordecai": 5.89e-07, + "moseley": 5.89e-07, + "mourns": 5.89e-07, + "mowed": 5.89e-07, + "mst": 5.89e-07, + "muskets": 5.89e-07, + "mutter": 5.89e-07, + "naismith": 5.89e-07, + "nationale": 5.89e-07, + "navigators": 5.89e-07, + "neb": 5.89e-07, + "netflixs": 5.89e-07, + "nineveh": 5.89e-07, + "nostril": 5.89e-07, + "notting": 5.89e-07, + "numeral": 5.89e-07, + "oddity": 5.89e-07, + "odious": 5.89e-07, + "odo": 5.89e-07, + "offbeat": 5.89e-07, + "officio": 5.89e-07, + "omb": 5.89e-07, + "omens": 5.89e-07, + "operandi": 5.89e-07, + "opie": 5.89e-07, + "opportunist": 5.89e-07, + "orifice": 5.89e-07, + "ornamentation": 5.89e-07, + "overcoat": 5.89e-07, + "overreaction": 5.89e-07, + "overused": 5.89e-07, + "pag": 5.89e-07, + "pah": 5.89e-07, + "painkiller": 5.89e-07, + "panchayat": 5.89e-07, + "pansy": 5.89e-07, + "parading": 5.89e-07, + "parte": 5.89e-07, + "parti": 5.89e-07, + "pathologists": 5.89e-07, + "patter": 5.89e-07, + "peerage": 5.89e-07, + "peirce": 5.89e-07, + "peloton": 5.89e-07, + "permissive": 5.89e-07, + "phrased": 5.89e-07, + "pieced": 5.89e-07, + "pittman": 5.89e-07, + "placate": 5.89e-07, + "ploughed": 5.89e-07, + "polynomials": 5.89e-07, + "posited": 5.89e-07, + "postsecondary": 5.89e-07, + "powdery": 5.89e-07, + "ppe": 5.89e-07, + "pram": 5.89e-07, + "prescriptive": 5.89e-07, + "preying": 5.89e-07, + "psst": 5.89e-07, + "purifying": 5.89e-07, + "puritans": 5.89e-07, + "pushback": 5.89e-07, + "quads": 5.89e-07, + "radicalized": 5.89e-07, + "ragnar": 5.89e-07, + "ramesh": 5.89e-07, + "rampart": 5.89e-07, + "rapporteur": 5.89e-07, + "rav": 5.89e-07, + "rcs": 5.89e-07, + "reaped": 5.89e-07, + "recesses": 5.89e-07, + "redeemable": 5.89e-07, + "redistribute": 5.89e-07, + "redistributed": 5.89e-07, + "refraction": 5.89e-07, + "reinvented": 5.89e-07, + "rejections": 5.89e-07, + "rejuvenated": 5.89e-07, + "reloading": 5.89e-07, + "reminiscences": 5.89e-07, + "remittances": 5.89e-07, + "remus": 5.89e-07, + "renewals": 5.89e-07, + "renter": 5.89e-07, + "revels": 5.89e-07, + "revolvers": 5.89e-07, + "ringside": 5.89e-07, + "rinsed": 5.89e-07, + "riverbank": 5.89e-07, + "rockingham": 5.89e-07, + "rog": 5.89e-07, + "ronin": 5.89e-07, + "roofed": 5.89e-07, + "rouen": 5.89e-07, + "rourke": 5.89e-07, + "rousey": 5.89e-07, + "rowers": 5.89e-07, + "sab": 5.89e-07, + "safes": 5.89e-07, + "saif": 5.89e-07, + "salma": 5.89e-07, + "sarkozy": 5.89e-07, + "scoundrel": 5.89e-07, + "scouted": 5.89e-07, + "sdi": 5.89e-07, + "seamstress": 5.89e-07, + "sevastopol": 5.89e-07, + "shifty": 5.89e-07, + "showman": 5.89e-07, + "sibley": 5.89e-07, + "siobhan": 5.89e-07, + "slacking": 5.89e-07, + "slashes": 5.89e-07, + "slob": 5.89e-07, + "sneezes": 5.89e-07, + "snubbed": 5.89e-07, + "sojourn": 5.89e-07, + "sounders": 5.89e-07, + "soured": 5.89e-07, + "sousa": 5.89e-07, + "southernmost": 5.89e-07, + "spitzer": 5.89e-07, + "splatter": 5.89e-07, + "sputnik": 5.89e-07, + "squirting": 5.89e-07, + "stanhope": 5.89e-07, + "stipulate": 5.89e-07, + "stipulations": 5.89e-07, + "straddle": 5.89e-07, + "subbing": 5.89e-07, + "sumter": 5.89e-07, + "suzie": 5.89e-07, + "swatches": 5.89e-07, + "sweeten": 5.89e-07, + "swinger": 5.89e-07, + "talib": 5.89e-07, + "tallies": 5.89e-07, + "talons": 5.89e-07, + "tawny": 5.89e-07, + "tbd": 5.89e-07, + "tenured": 5.89e-07, + "terriers": 5.89e-07, + "thereon": 5.89e-07, + "throwaway": 5.89e-07, + "thunderous": 5.89e-07, + "tiffanys": 5.89e-07, + "tigris": 5.89e-07, + "transcontinental": 5.89e-07, + "trims": 5.89e-07, + "trott": 5.89e-07, + "tui": 5.89e-07, + "tweezers": 5.89e-07, + "twerking": 5.89e-07, + "typographical": 5.89e-07, + "ubi": 5.89e-07, + "unbeknownst": 5.89e-07, + "unchained": 5.89e-07, + "unedited": 5.89e-07, + "unelected": 5.89e-07, + "unleashes": 5.89e-07, + "uplands": 5.89e-07, + "uppsala": 5.89e-07, + "upstanding": 5.89e-07, + "vallejo": 5.89e-07, + "vapors": 5.89e-07, + "verma": 5.89e-07, + "vertebra": 5.89e-07, + "viaduct": 5.89e-07, + "vino": 5.89e-07, + "voracious": 5.89e-07, + "warbler": 5.89e-07, + "wart": 5.89e-07, + "wasabi": 5.89e-07, + "waterworks": 5.89e-07, + "wettest": 5.89e-07, + "whammy": 5.89e-07, + "whedon": 5.89e-07, + "whines": 5.89e-07, + "whitechapel": 5.89e-07, + "wich": 5.89e-07, + "wilful": 5.89e-07, + "willa": 5.89e-07, + "wisconsins": 5.89e-07, + "wittgenstein": 5.89e-07, + "wolfsburg": 5.89e-07, + "wye": 5.89e-07, + "xia": 5.89e-07, + "yams": 5.89e-07, + "yorktown": 5.89e-07, + "yui": 5.89e-07, + "zeitgeist": 5.89e-07, + "aarons": 1.78e-07, + "abb": 5.75e-07, + "accentuate": 5.75e-07, + "adf": 5.75e-07, + "adipose": 5.75e-07, + "adjudication": 5.75e-07, + "adl": 5.75e-07, + "advices": 5.75e-07, + "affording": 5.75e-07, + "aggravation": 5.75e-07, + "aggregator": 5.75e-07, + "agua": 5.75e-07, + "ainsworth": 5.75e-07, + "airforce": 5.75e-07, + "ait": 5.75e-07, + "aldermen": 5.75e-07, + "alvarado": 5.75e-07, + "amazonian": 5.75e-07, + "aml": 5.75e-07, + "amorous": 5.75e-07, + "anabolic": 5.75e-07, + "andersson": 5.75e-07, + "anemic": 5.75e-07, + "anima": 5.75e-07, + "anointing": 5.75e-07, + "apologising": 5.75e-07, + "apostrophe": 5.75e-07, + "appellation": 5.75e-07, + "appendage": 5.75e-07, + "appendicitis": 5.75e-07, + "appropriateness": 5.75e-07, + "aquariums": 5.89e-08, + "artur": 5.75e-07, + "ary": 5.75e-07, + "ashleys": 5.75e-07, + "assads": 5.75e-07, + "autumnal": 5.75e-07, + "awash": 5.75e-07, + "backstreet": 5.75e-07, + "bagley": 5.75e-07, + "balling": 5.75e-07, + "bandai": 5.75e-07, + "banerjee": 5.75e-07, + "banishment": 5.75e-07, + "baptised": 5.75e-07, + "basra": 5.75e-07, + "bate": 5.75e-07, + "bawling": 5.75e-07, + "bayard": 5.75e-07, + "bayonets": 5.75e-07, + "beastly": 5.75e-07, + "becket": 5.75e-07, + "beetroot": 5.75e-07, + "berkley": 5.75e-07, + "beto": 5.75e-07, + "billys": 5.75e-07, + "bim": 5.75e-07, + "birdies": 5.75e-07, + "blockbusters": 5.75e-07, + "bluffing": 5.75e-07, + "bonita": 5.75e-07, + "bonjour": 5.75e-07, + "boomed": 5.75e-07, + "boson": 5.75e-07, + "brainchild": 5.75e-07, + "brawn": 5.75e-07, + "bridegroom": 5.75e-07, + "buh": 5.75e-07, + "bulwark": 5.75e-07, + "butthurt": 5.75e-07, + "candidly": 5.75e-07, + "cappella": 5.75e-07, + "capsized": 5.75e-07, + "carne": 5.75e-07, + "cartman": 5.75e-07, + "cec": 5.75e-07, + "chapo": 5.75e-07, + "chatsworth": 5.75e-07, + "chauncey": 5.75e-07, + "chien": 5.75e-07, + "chippewa": 5.75e-07, + "christa": 5.75e-07, + "ciara": 5.75e-07, + "ciudad": 5.75e-07, + "conciliatory": 5.75e-07, + "condensate": 5.75e-07, + "condiments": 5.75e-07, + "conferring": 5.75e-07, + "convening": 5.75e-07, + "correspondingly": 5.75e-07, + "corrigan": 5.75e-07, + "crit": 5.75e-07, + "crouched": 5.75e-07, + "crusoe": 5.75e-07, + "crybaby": 5.75e-07, + "culpability": 5.75e-07, + "cyberpunk": 5.75e-07, + "deflecting": 5.75e-07, + "desegregation": 5.75e-07, + "deserters": 5.75e-07, + "deservedly": 5.75e-07, + "devalued": 5.75e-07, + "digress": 5.75e-07, + "dijon": 5.75e-07, + "dinesh": 5.75e-07, + "disappoints": 5.75e-07, + "discus": 5.75e-07, + "distinctively": 5.75e-07, + "diverged": 5.75e-07, + "dla": 5.75e-07, + "dnr": 5.75e-07, + "doa": 5.75e-07, + "dryers": 5.75e-07, + "dumbarton": 5.75e-07, + "eatin": 5.75e-07, + "ece": 5.75e-07, + "eduard": 5.75e-07, + "elaborately": 5.75e-07, + "elevates": 5.75e-07, + "empathize": 5.75e-07, + "encrypt": 5.75e-07, + "endocrinology": 5.75e-07, + "energetically": 5.75e-07, + "energize": 5.75e-07, + "enix": 5.75e-07, + "entertains": 5.75e-07, + "estimator": 5.75e-07, + "excellently": 5.75e-07, + "exerts": 5.75e-07, + "extrusion": 5.75e-07, + "facades": 5.75e-07, + "fagan": 5.75e-07, + "farnham": 5.75e-07, + "felling": 5.75e-07, + "fester": 5.75e-07, + "feuding": 5.75e-07, + "flexed": 5.75e-07, + "flywheel": 5.75e-07, + "foams": 5.75e-07, + "foregone": 5.75e-07, + "foreshadowed": 5.75e-07, + "foreshadowing": 5.75e-07, + "formosa": 5.75e-07, + "fortnightly": 5.75e-07, + "fourths": 5.75e-07, + "freshest": 5.75e-07, + "fringed": 5.75e-07, + "ftse": 5.75e-07, + "fulcrum": 5.75e-07, + "funnels": 5.75e-07, + "furman": 5.75e-07, + "gaiman": 5.75e-07, + "galbraith": 5.75e-07, + "gallic": 5.75e-07, + "geddes": 5.75e-07, + "ghosh": 5.75e-07, + "gilliam": 5.75e-07, + "gilroy": 5.75e-07, + "ginseng": 5.75e-07, + "gnomes": 5.75e-07, + "goodrich": 5.75e-07, + "goodwood": 5.75e-07, + "gophers": 5.75e-07, + "goths": 5.75e-07, + "grandest": 5.75e-07, + "greeces": 5.75e-07, + "grimy": 5.75e-07, + "gsp": 5.75e-07, + "gung": 5.75e-07, + "gunter": 5.75e-07, + "hadid": 5.75e-07, + "hanukkah": 5.75e-07, + "hardball": 5.75e-07, + "hargreaves": 5.75e-07, + "harriman": 5.75e-07, + "hatcher": 5.75e-07, + "headstone": 5.75e-07, + "heil": 5.75e-07, + "herbicides": 5.75e-07, + "heterogeneity": 5.75e-07, + "hibiscus": 5.75e-07, + "hillman": 5.75e-07, + "hin": 5.75e-07, + "hitchens": 5.75e-07, + "hob": 5.75e-07, + "hwan": 5.75e-07, + "hyperactive": 5.75e-07, + "hysterectomy": 5.75e-07, + "iberia": 5.75e-07, + "icky": 5.75e-07, + "identically": 5.75e-07, + "immediacy": 5.75e-07, + "immunotherapy": 5.75e-07, + "improvising": 5.75e-07, + "inbreeding": 5.75e-07, + "incisive": 5.75e-07, + "inconspicuous": 5.75e-07, + "indebtedness": 5.75e-07, + "indentured": 5.75e-07, + "infiniti": 5.75e-07, + "inhabitant": 5.75e-07, + "inhospitable": 5.75e-07, + "inoperable": 5.75e-07, + "instigate": 5.75e-07, + "insufficiently": 5.75e-07, + "intercession": 5.75e-07, + "interferon": 5.75e-07, + "intersects": 5.75e-07, + "irrevocable": 5.75e-07, + "irritability": 5.75e-07, + "islet": 5.75e-07, + "israelite": 5.75e-07, + "ivoire": 5.75e-07, + "jaden": 5.75e-07, + "jaffe": 5.75e-07, + "janie": 5.75e-07, + "jefferies": 5.75e-07, + "jessicas": 5.75e-07, + "johansen": 5.75e-07, + "jonathon": 5.75e-07, + "juris": 5.75e-07, + "kaduna": 5.75e-07, + "kcal": 5.75e-07, + "ker": 5.75e-07, + "keychain": 5.75e-07, + "khorasan": 5.75e-07, + "kojima": 5.75e-07, + "kraus": 5.75e-07, + "kravitz": 5.75e-07, + "krieger": 5.75e-07, + "laity": 5.75e-07, + "landlocked": 5.75e-07, + "latterly": 5.75e-07, + "leaner": 5.75e-07, + "legos": 1.41e-07, + "leukaemia": 5.75e-07, + "leyte": 5.75e-07, + "licensure": 5.75e-07, + "lighthouses": 5.75e-07, + "lingua": 5.75e-07, + "lipton": 5.75e-07, + "llamas": 5.75e-07, + "lts": 7.24e-08, + "lucys": 5.75e-07, + "luminaries": 5.75e-07, + "lz": 5.75e-07, + "makings": 5.75e-07, + "maldonado": 5.75e-07, + "maleficent": 5.75e-07, + "maniacs": 5.75e-07, + "manifolds": 5.75e-07, + "maradona": 5.75e-07, + "marrakech": 5.75e-07, + "mauro": 5.75e-07, + "mcfly": 5.75e-07, + "mckinsey": 5.75e-07, + "mcl": 5.75e-07, + "medea": 5.75e-07, + "mek": 5.75e-07, + "mesmerized": 5.75e-07, + "midge": 5.75e-07, + "milked": 5.75e-07, + "minotaur": 5.75e-07, + "misfit": 5.75e-07, + "miu": 5.75e-07, + "moana": 5.75e-07, + "moorish": 5.75e-07, + "morgana": 5.75e-07, + "mosquitos": 5.62e-08, + "mottled": 5.75e-07, + "moulton": 5.75e-07, + "mountaineer": 5.75e-07, + "mountainside": 5.75e-07, + "mov": 5.75e-07, + "mucous": 5.75e-07, + "mulholland": 5.75e-07, + "murmuring": 5.75e-07, + "mvc": 5.75e-07, + "myer": 5.75e-07, + "mythos": 5.75e-07, + "naa": 5.75e-07, + "najib": 5.75e-07, + "nationalized": 5.75e-07, + "nca": 5.75e-07, + "neutrinos": 5.75e-07, + "nips": 5.75e-07, + "northside": 5.75e-07, + "nuevo": 5.75e-07, + "nus": 5.75e-07, + "nusra": 5.75e-07, + "obelisk": 5.75e-07, + "oddball": 5.75e-07, + "offload": 5.75e-07, + "ohios": 5.75e-07, + "osa": 5.75e-07, + "osteoarthritis": 5.75e-07, + "otago": 5.75e-07, + "outcrop": 5.75e-07, + "outlander": 5.75e-07, + "overestimated": 5.75e-07, + "overloading": 5.75e-07, + "overthrowing": 5.75e-07, + "oxfam": 5.75e-07, + "padua": 5.75e-07, + "pageants": 5.75e-07, + "paley": 5.75e-07, + "panning": 5.75e-07, + "pari": 5.75e-07, + "pariah": 5.75e-07, + "parka": 5.75e-07, + "parke": 5.75e-07, + "paton": 5.75e-07, + "peddle": 5.75e-07, + "peerless": 5.75e-07, + "pentium": 5.75e-07, + "permanence": 5.75e-07, + "permeable": 5.75e-07, + "personhood": 5.75e-07, + "pil": 5.75e-07, + "pillage": 5.75e-07, + "pistachio": 5.75e-07, + "planing": 5.75e-07, + "plebiscite": 5.75e-07, + "ploughing": 5.75e-07, + "poisson": 5.75e-07, + "polynesia": 5.75e-07, + "polyurethane": 5.75e-07, + "posit": 5.75e-07, + "poughkeepsie": 5.75e-07, + "precipice": 5.75e-07, + "presuming": 5.75e-07, + "puked": 5.75e-07, + "queued": 5.75e-07, + "quickie": 5.75e-07, + "rahim": 5.75e-07, + "raina": 5.75e-07, + "ralston": 5.75e-07, + "randi": 5.75e-07, + "ravages": 5.75e-07, + "ravenous": 5.75e-07, + "realy": 5.75e-07, + "rearranging": 5.75e-07, + "reclusive": 5.75e-07, + "reek": 5.75e-07, + "regenerated": 5.75e-07, + "regimens": 5.75e-07, + "reinhold": 5.75e-07, + "reinstall": 5.75e-07, + "rena": 5.75e-07, + "req": 5.75e-07, + "resold": 5.75e-07, + "rimmed": 5.75e-07, + "rind": 5.75e-07, + "riparian": 5.75e-07, + "risers": 5.75e-07, + "riverfront": 5.75e-07, + "rosebud": 5.75e-07, + "rtd": 5.75e-07, + "ruck": 5.75e-07, + "rumsfeld": 5.75e-07, + "runaways": 5.75e-07, + "salamander": 5.75e-07, + "santorum": 5.75e-07, + "sats": 8.13e-08, + "satya": 5.75e-07, + "scalpel": 5.75e-07, + "scraper": 5.75e-07, + "scribbled": 5.75e-07, + "scrutinize": 5.75e-07, + "seatbelts": 5.75e-07, + "sedate": 5.75e-07, + "sfa": 5.75e-07, + "shallower": 5.75e-07, + "shaves": 5.75e-07, + "sheeps": 1.55e-07, + "shou": 5.75e-07, + "shriek": 5.75e-07, + "simulates": 5.75e-07, + "singularly": 5.75e-07, + "sinkhole": 5.75e-07, + "skimpy": 5.75e-07, + "slavs": 5.75e-07, + "sloped": 5.75e-07, + "snore": 5.75e-07, + "solaris": 5.75e-07, + "sooners": 5.75e-07, + "sorceress": 5.75e-07, + "spaceflight": 5.75e-07, + "spe": 5.75e-07, + "spender": 5.75e-07, + "sphincter": 5.75e-07, + "spooks": 5.75e-07, + "squires": 5.01e-08, + "stalinist": 5.75e-07, + "stank": 5.75e-07, + "sternum": 5.75e-07, + "stockbroker": 5.75e-07, + "stoppers": 5.75e-07, + "storytellers": 5.75e-07, + "strachan": 5.75e-07, + "strangulation": 5.75e-07, + "stratification": 5.75e-07, + "stratified": 5.75e-07, + "streaked": 5.75e-07, + "stretchy": 5.75e-07, + "suckling": 5.75e-07, + "sucrose": 5.75e-07, + "suleiman": 5.75e-07, + "sundae": 5.75e-07, + "sundry": 5.75e-07, + "supercomputer": 5.75e-07, + "svetlana": 5.75e-07, + "swampy": 5.75e-07, + "synapse": 5.75e-07, + "tasking": 5.75e-07, + "tidings": 5.75e-07, + "toothache": 5.75e-07, + "tranquillity": 5.75e-07, + "transitive": 5.75e-07, + "trickling": 5.75e-07, + "trigonometry": 5.75e-07, + "trimmings": 5.75e-07, + "tupperware": 5.75e-07, + "tur": 5.75e-07, + "tutelage": 5.75e-07, + "twos": 5.25e-07, + "typhus": 5.75e-07, + "uhf": 5.75e-07, + "unaffiliated": 5.75e-07, + "unconscionable": 5.75e-07, + "underlines": 5.75e-07, + "unflattering": 5.75e-07, + "unrecognizable": 5.75e-07, + "unscheduled": 5.75e-07, + "unstructured": 5.75e-07, + "vagrant": 5.75e-07, + "veracruz": 5.75e-07, + "viacom": 5.75e-07, + "vidya": 5.75e-07, + "vlog": 5.75e-07, + "voiceless": 5.75e-07, + "volga": 5.75e-07, + "volgograd": 5.75e-07, + "waka": 5.75e-07, + "walkout": 5.75e-07, + "wands": 5.75e-07, + "wearables": 5.75e-07, + "whosoever": 5.75e-07, + "willamette": 5.75e-07, + "wimpy": 5.75e-07, + "woodman": 5.75e-07, + "wordplay": 5.75e-07, + "worthing": 5.75e-07, + "aarp": 5.62e-07, + "abou": 5.62e-07, + "abstractions": 5.62e-07, + "acceptor": 5.62e-07, + "acrobatics": 5.62e-07, + "aerobics": 5.62e-07, + "afd": 5.62e-07, + "alabamas": 5.62e-07, + "alertness": 5.62e-07, + "alleyway": 5.62e-07, + "amenity": 5.62e-07, + "angrier": 5.62e-07, + "antilles": 5.62e-07, + "arabella": 5.62e-07, + "arnhem": 5.62e-07, + "arno": 5.62e-07, + "ascribe": 5.62e-07, + "aso": 5.62e-07, + "athos": 5.62e-07, + "attenuated": 5.62e-07, + "atticus": 5.62e-07, + "atx": 5.62e-07, + "augusto": 5.62e-07, + "avenging": 5.62e-07, + "azerbaijani": 5.62e-07, + "backcountry": 5.62e-07, + "bandana": 5.62e-07, + "bangles": 5.62e-07, + "barbarism": 5.62e-07, + "bareback": 5.62e-07, + "battlefront": 5.62e-07, + "bcci": 5.62e-07, + "beaters": 5.62e-07, + "bennetts": 1.35e-07, + "berne": 5.62e-07, + "biddle": 5.62e-07, + "billet": 5.62e-07, + "binaries": 5.62e-07, + "blackmailing": 5.62e-07, + "blissfully": 5.62e-07, + "bloodied": 5.62e-07, + "bobbys": 5.62e-07, + "boneless": 5.62e-07, + "borealis": 5.62e-07, + "brainless": 5.62e-07, + "breadcrumbs": 5.62e-07, + "breathable": 5.62e-07, + "bridged": 5.62e-07, + "brightening": 5.62e-07, + "bristle": 5.62e-07, + "buffaloes": 5.62e-07, + "bulkhead": 5.62e-07, + "bund": 5.62e-07, + "bur": 5.62e-07, + "burglaries": 5.62e-07, + "cacti": 5.62e-07, + "canaries": 5.62e-07, + "carded": 5.62e-07, + "carpool": 5.62e-07, + "cashew": 5.62e-07, + "cashiers": 2.19e-07, + "cavernous": 5.62e-07, + "ccm": 5.62e-07, + "cece": 5.62e-07, + "chaff": 5.62e-07, + "changeable": 5.62e-07, + "chaperone": 5.62e-07, + "chlorophyll": 5.62e-07, + "chroma": 5.62e-07, + "claret": 5.62e-07, + "cloister": 5.62e-07, + "clothe": 5.62e-07, + "clutched": 5.62e-07, + "cochlear": 5.62e-07, + "coen": 5.62e-07, + "complainants": 6.31e-08, + "comps": 5.62e-07, + "concomitant": 5.62e-07, + "constipated": 5.62e-07, + "consults": 5.62e-07, + "consummated": 5.62e-07, + "contemplates": 5.62e-07, + "coppola": 5.62e-07, + "corby": 5.62e-07, + "creationism": 5.62e-07, + "credential": 5.62e-07, + "crump": 5.62e-07, + "crunches": 5.62e-07, + "csp": 5.62e-07, + "cthulhu": 5.62e-07, + "ctv": 5.62e-07, + "cubas": 5.62e-07, + "curiosities": 5.62e-07, + "cymbals": 5.62e-07, + "danforth": 5.62e-07, + "dannys": 5.62e-07, + "darkening": 5.62e-07, + "darrow": 5.62e-07, + "debs": 6.17e-08, + "debunking": 5.62e-07, + "decompose": 5.62e-07, + "ded": 5.62e-07, + "deepens": 5.62e-07, + "deformities": 5.62e-07, + "denier": 5.62e-07, + "denounces": 5.62e-07, + "destabilizing": 5.62e-07, + "detaining": 5.62e-07, + "determinism": 5.62e-07, + "dieu": 5.62e-07, + "digesting": 5.62e-07, + "dimmed": 5.62e-07, + "dingo": 5.62e-07, + "disaffected": 5.62e-07, + "disheartened": 5.62e-07, + "dispossessed": 5.62e-07, + "dissecting": 5.62e-07, + "dma": 5.62e-07, + "domicile": 5.62e-07, + "dominions": 5.37e-08, + "donts": 5.62e-07, + "donne": 5.62e-07, + "dreamland": 5.62e-07, + "dumbfounded": 5.62e-07, + "ecc": 5.62e-07, + "effie": 5.62e-07, + "effing": 5.62e-07, + "egotistical": 5.62e-07, + "elgar": 5.62e-07, + "elmore": 5.62e-07, + "emirate": 5.62e-07, + "encrusted": 5.62e-07, + "enticed": 5.62e-07, + "eph": 5.62e-07, + "erudite": 5.62e-07, + "estuaries": 5.62e-07, + "faintest": 5.62e-07, + "fasteners": 5.62e-07, + "fervour": 5.62e-07, + "fiends": 5.62e-07, + "finders": 6.92e-08, + "flattening": 5.62e-07, + "flirts": 5.62e-07, + "foursome": 5.62e-07, + "franchising": 5.62e-07, + "francophone": 5.62e-07, + "froth": 5.62e-07, + "furlough": 5.62e-07, + "galatians": 5.62e-07, + "galicia": 5.62e-07, + "galleria": 5.62e-07, + "gambled": 5.62e-07, + "garnering": 5.62e-07, + "gentlemens": 5.01e-08, + "ghettos": 5.62e-07, + "gnawing": 5.62e-07, + "growths": 5.62e-07, + "gru": 5.62e-07, + "guile": 5.62e-07, + "gurley": 5.62e-07, + "hallo": 5.62e-07, + "hallows": 5.62e-07, + "hamiltonian": 5.62e-07, + "hangovers": 5.62e-07, + "havre": 5.62e-07, + "heartedly": 5.62e-07, + "heft": 5.62e-07, + "henrique": 5.62e-07, + "hibs": 5.62e-07, + "hideaway": 5.62e-07, + "hilarity": 5.62e-07, + "hiller": 5.62e-07, + "hillsides": 5.62e-07, + "holyrood": 5.62e-07, + "homeworld": 5.62e-07, + "homey": 5.62e-07, + "hortons": 2e-07, + "ils": 1.07e-07, + "imparted": 5.62e-07, + "impersonate": 5.62e-07, + "impropriety": 5.62e-07, + "inactivation": 5.62e-07, + "incompatibility": 5.62e-07, + "infact": 5.62e-07, + "instalments": 5.62e-07, + "intermediates": 5.62e-07, + "interment": 5.62e-07, + "introverts": 5.62e-07, + "irked": 5.62e-07, + "ivor": 5.62e-07, + "jardin": 5.62e-07, + "jbl": 5.62e-07, + "jemima": 5.62e-07, + "jenni": 5.62e-07, + "joshs": 5.62e-07, + "json": 5.62e-07, + "junkyard": 5.62e-07, + "jurists": 5.62e-07, + "juxtaposed": 5.62e-07, + "kaufmann": 5.62e-07, + "kennels": 5.62e-07, + "keri": 5.62e-07, + "kingship": 5.62e-07, + "kinshasa": 5.62e-07, + "kourtney": 5.62e-07, + "laa": 5.62e-07, + "lando": 5.62e-07, + "larissa": 5.62e-07, + "launceston": 5.62e-07, + "legitimize": 5.62e-07, + "leif": 5.62e-07, + "lifelike": 5.62e-07, + "lilian": 5.62e-07, + "lioness": 5.62e-07, + "lobos": 5.62e-07, + "locates": 5.62e-07, + "loin": 5.62e-07, + "loire": 5.62e-07, + "longterm": 5.62e-07, + "loveable": 5.62e-07, + "lovey": 5.62e-07, + "lowndes": 5.62e-07, + "lyin": 5.62e-07, + "maastricht": 5.62e-07, + "machinist": 5.62e-07, + "mainz": 5.62e-07, + "mandible": 5.62e-07, + "manhole": 5.62e-07, + "margate": 5.62e-07, + "marginalised": 5.62e-07, + "marigold": 5.62e-07, + "marinade": 5.62e-07, + "marla": 5.62e-07, + "matted": 5.62e-07, + "mattis": 5.62e-07, + "mcarthur": 5.62e-07, + "mcclain": 5.62e-07, + "mccord": 5.62e-07, + "melancholic": 5.62e-07, + "merlot": 5.62e-07, + "methodists": 5.62e-07, + "metoo": 5.62e-07, + "michal": 5.62e-07, + "middlemen": 5.62e-07, + "mineralogy": 5.62e-07, + "minibus": 5.62e-07, + "misdemeanors": 5.62e-07, + "modifies": 5.62e-07, + "modulus": 5.62e-07, + "monarchies": 5.62e-07, + "monogamy": 5.62e-07, + "monotony": 5.62e-07, + "mopping": 5.62e-07, + "mormonism": 5.62e-07, + "mortally": 5.62e-07, + "moveable": 5.62e-07, + "multinationals": 5.62e-07, + "musculoskeletal": 5.62e-07, + "mut": 5.62e-07, + "myeloma": 5.62e-07, + "nast": 5.62e-07, + "natty": 5.62e-07, + "navies": 5.62e-07, + "neapolitan": 5.62e-07, + "nebulous": 5.62e-07, + "negated": 5.62e-07, + "neurotransmitters": 5.62e-07, + "newberry": 5.62e-07, + "nilsson": 5.62e-07, + "nok": 5.62e-07, + "nots": 5.62e-07, + "nozzles": 5.62e-07, + "nrg": 5.62e-07, + "nucleotides": 5.62e-07, + "nwa": 5.62e-07, + "oberlin": 5.62e-07, + "obscuring": 5.62e-07, + "occlusion": 5.62e-07, + "oliveira": 5.62e-07, + "opa": 5.62e-07, + "osgood": 5.62e-07, + "outlived": 5.62e-07, + "overdoses": 5.62e-07, + "paralegal": 5.62e-07, + "pared": 5.62e-07, + "payrolls": 5.62e-07, + "peckham": 5.62e-07, + "petersons": 7.76e-08, + "petrov": 5.62e-07, + "pieter": 5.62e-07, + "pikes": 1.78e-07, + "pim": 5.62e-07, + "pining": 5.62e-07, + "pinoy": 5.62e-07, + "piranha": 5.62e-07, + "pix": 5.62e-07, + "pocketed": 5.62e-07, + "ponte": 5.62e-07, + "posits": 5.62e-07, + "postmortem": 5.62e-07, + "postscript": 5.62e-07, + "prehistory": 5.62e-07, + "preterm": 5.62e-07, + "prismatic": 5.62e-07, + "prophesied": 5.62e-07, + "prototyping": 5.62e-07, + "prowl": 5.62e-07, + "psv": 5.62e-07, + "ptc": 5.62e-07, + "pugs": 5.62e-07, + "puja": 5.62e-07, + "punchy": 5.62e-07, + "purr": 5.62e-07, + "pussycat": 5.62e-07, + "quagmire": 5.62e-07, + "quaid": 5.62e-07, + "quash": 5.62e-07, + "rackets": 5.62e-07, + "radiates": 5.62e-07, + "rafe": 5.62e-07, + "rahm": 5.62e-07, + "railed": 5.62e-07, + "raindrops": 5.62e-07, + "rajesh": 5.62e-07, + "ransacked": 5.62e-07, + "readability": 5.62e-07, + "reba": 5.62e-07, + "recieve": 5.62e-07, + "recieved": 5.62e-07, + "reciprocated": 5.62e-07, + "redman": 5.62e-07, + "redox": 5.62e-07, + "reductive": 5.62e-07, + "refundable": 5.62e-07, + "reinvestment": 5.62e-07, + "remedied": 5.62e-07, + "renews": 5.62e-07, + "replaying": 5.62e-07, + "repose": 5.62e-07, + "reptilian": 5.62e-07, + "restful": 5.62e-07, + "retraining": 5.62e-07, + "rewrote": 5.62e-07, + "riccardo": 5.62e-07, + "ricochet": 5.62e-07, + "rifts": 5.62e-07, + "rishi": 5.62e-07, + "rona": 5.62e-07, + "rosh": 5.62e-07, + "rubric": 5.62e-07, + "savagely": 5.62e-07, + "scallop": 5.62e-07, + "scavengers": 5.62e-07, + "schoolmaster": 5.62e-07, + "schoolwork": 5.62e-07, + "scoffed": 5.62e-07, + "scoping": 5.62e-07, + "scoreline": 5.62e-07, + "searchers": 5.62e-07, + "seedling": 5.62e-07, + "setters": 5.62e-07, + "shaikh": 5.62e-07, + "shanty": 5.62e-07, + "shao": 5.62e-07, + "sharepoint": 5.62e-07, + "shat": 5.62e-07, + "sheba": 5.62e-07, + "sherri": 5.62e-07, + "shrew": 5.62e-07, + "shrimps": 5.62e-07, + "shush": 5.62e-07, + "signor": 5.62e-07, + "silencer": 5.62e-07, + "sind": 5.62e-07, + "singin": 5.62e-07, + "sited": 5.62e-07, + "slacker": 5.62e-07, + "sleight": 5.62e-07, + "smoldering": 5.62e-07, + "snowmobile": 5.62e-07, + "soapy": 5.62e-07, + "soloists": 5.62e-07, + "southgate": 5.62e-07, + "sovereigns": 7.76e-08, + "spaceships": 5.62e-07, + "spatially": 5.62e-07, + "spectroscopic": 5.62e-07, + "speedily": 5.62e-07, + "spidey": 5.62e-07, + "spiky": 5.62e-07, + "stilts": 5.62e-07, + "stoddard": 5.62e-07, + "stoning": 5.62e-07, + "stp": 5.62e-07, + "straddling": 5.62e-07, + "strikeout": 5.62e-07, + "styrofoam": 5.62e-07, + "subpoenaed": 5.62e-07, + "subprime": 5.62e-07, + "subtleties": 5.62e-07, + "succumbing": 5.62e-07, + "sulfuric": 5.62e-07, + "sunroof": 5.62e-07, + "suppresses": 5.62e-07, + "surabaya": 5.62e-07, + "surrealist": 5.62e-07, + "suspenseful": 5.62e-07, + "swartz": 5.62e-07, + "tallinn": 5.62e-07, + "tanked": 5.62e-07, + "tattooing": 5.62e-07, + "tbi": 5.62e-07, + "tchaikovsky": 5.62e-07, + "tcm": 5.62e-07, + "teleportation": 5.62e-07, + "temperamental": 5.62e-07, + "teutonic": 5.62e-07, + "thakur": 5.62e-07, + "thiel": 5.62e-07, + "tock": 5.62e-07, + "tolerating": 5.62e-07, + "toning": 5.62e-07, + "traditionalist": 5.62e-07, + "trickier": 5.62e-07, + "tripartite": 5.62e-07, + "trujillo": 5.62e-07, + "tsai": 5.62e-07, + "twirling": 5.62e-07, + "udp": 5.62e-07, + "ultima": 5.62e-07, + "understudy": 5.62e-07, + "unguarded": 5.62e-07, + "unionized": 5.62e-07, + "unscientific": 5.62e-07, + "untamed": 5.62e-07, + "uo": 5.62e-07, + "upa": 5.62e-07, + "usn": 5.62e-07, + "utilisation": 5.62e-07, + "venn": 5.62e-07, + "vermilion": 5.62e-07, + "vesicles": 5.62e-07, + "vfx": 5.62e-07, + "victorians": 5.62e-07, + "visualizing": 5.62e-07, + "vivien": 5.62e-07, + "vor": 5.62e-07, + "vps": 8.32e-08, + "wafers": 5.62e-07, + "waver": 5.62e-07, + "weaning": 5.62e-07, + "webbing": 5.62e-07, + "wehrmacht": 5.62e-07, + "whoosh": 5.62e-07, + "winifred": 5.62e-07, + "winterfell": 5.62e-07, + "wmd": 5.62e-07, + "wooing": 5.62e-07, + "workloads": 5.62e-07, + "wracking": 5.62e-07, + "wring": 5.62e-07, + "xenophon": 5.62e-07, + "yar": 5.62e-07, + "ypres": 5.62e-07, + "zipped": 5.62e-07, + "zorro": 5.62e-07, + "abduct": 5.5e-07, + "abolitionist": 5.5e-07, + "adama": 5.5e-07, + "adb": 5.5e-07, + "addie": 5.5e-07, + "aether": 5.5e-07, + "affluence": 5.5e-07, + "agave": 5.5e-07, + "alexey": 5.5e-07, + "algebras": 5.5e-07, + "alhambra": 5.5e-07, + "amicus": 5.5e-07, + "amritsar": 5.5e-07, + "andaman": 5.5e-07, + "apothecary": 5.5e-07, + "applauds": 5.5e-07, + "apricots": 5.5e-07, + "asbury": 5.5e-07, + "ashleigh": 5.5e-07, + "attica": 5.5e-07, + "authoring": 5.5e-07, + "ayer": 5.5e-07, + "backwoods": 5.5e-07, + "baddies": 5.5e-07, + "bagpipes": 5.5e-07, + "bainbridge": 5.5e-07, + "balsamic": 5.5e-07, + "bandcamp": 5.5e-07, + "barf": 5.5e-07, + "batten": 5.5e-07, + "beaks": 5.5e-07, + "beefy": 5.5e-07, + "benchmarking": 5.5e-07, + "benedictine": 5.5e-07, + "benitez": 5.5e-07, + "benning": 5.5e-07, + "berks": 5.5e-07, + "bernier": 5.5e-07, + "beseech": 5.5e-07, + "blackadder": 5.5e-07, + "blasters": 5.5e-07, + "bledsoe": 5.5e-07, + "boars": 1.05e-07, + "bodega": 5.5e-07, + "boing": 5.5e-07, + "bombard": 5.5e-07, + "bram": 5.5e-07, + "britannica": 5.5e-07, + "broads": 7.94e-08, + "brownlee": 5.5e-07, + "bru": 5.5e-07, + "buffon": 5.5e-07, + "butlers": 3.72e-07, + "camcorder": 5.5e-07, + "canola": 5.5e-07, + "casillas": 5.5e-07, + "casters": 5.5e-07, + "castrated": 5.5e-07, + "cav": 5.5e-07, + "cava": 5.5e-07, + "cbp": 5.5e-07, + "chapin": 5.5e-07, + "chipmunk": 5.5e-07, + "chronicling": 5.5e-07, + "chucking": 5.5e-07, + "chutney": 5.5e-07, + "claiborne": 5.5e-07, + "claires": 5.5e-07, + "cllr": 5.5e-07, + "cochin": 5.5e-07, + "coda": 5.5e-07, + "coders": 5.5e-07, + "coker": 5.5e-07, + "colluded": 5.5e-07, + "colonoscopy": 5.5e-07, + "commies": 5.5e-07, + "compaq": 5.5e-07, + "composting": 5.5e-07, + "conceiving": 5.5e-07, + "conciliation": 5.5e-07, + "concurred": 5.5e-07, + "conjugation": 5.5e-07, + "conklin": 5.5e-07, + "contreras": 5.5e-07, + "coombs": 5.5e-07, + "coos": 1.78e-08, + "corollary": 5.5e-07, + "couldn": 5.5e-07, + "counterbalance": 5.5e-07, + "courtiers": 5.5e-07, + "cringing": 5.5e-07, + "cui": 5.5e-07, + "culminate": 5.5e-07, + "customised": 5.5e-07, + "cuyahoga": 5.5e-07, + "cybercrime": 5.5e-07, + "cytochrome": 5.5e-07, + "czechoslovak": 5.5e-07, + "darien": 5.5e-07, + "defaced": 5.5e-07, + "deh": 5.5e-07, + "dendritic": 5.5e-07, + "deporting": 5.5e-07, + "desecration": 5.5e-07, + "destinies": 5.5e-07, + "devo": 5.5e-07, + "devos": 5.5e-07, + "didactic": 5.5e-07, + "diversifying": 5.5e-07, + "domestication": 5.5e-07, + "dominicans": 5.5e-07, + "dominick": 5.5e-07, + "donning": 5.5e-07, + "dorothea": 5.5e-07, + "drape": 5.5e-07, + "drax": 5.5e-07, + "drinkin": 5.5e-07, + "droplet": 5.5e-07, + "drunkard": 5.5e-07, + "dst": 5.5e-07, + "duds": 5.5e-07, + "dur": 5.5e-07, + "earp": 5.5e-07, + "electives": 5.5e-07, + "emphasising": 5.5e-07, + "enabler": 5.5e-07, + "endpoints": 5.5e-07, + "enforcers": 5.5e-07, + "engrossing": 5.5e-07, + "epistles": 5.5e-07, + "epithelium": 5.5e-07, + "ergonomics": 5.5e-07, + "erics": 5.5e-07, + "eugenie": 5.5e-07, + "eukaryotic": 5.5e-07, + "evaporates": 5.5e-07, + "evers": 5.5e-07, + "excitable": 5.5e-07, + "fanned": 5.5e-07, + "ferro": 5.5e-07, + "fes": 5.75e-08, + "fevers": 5.01e-08, + "flaring": 5.5e-07, + "flirtation": 5.5e-07, + "flor": 5.5e-07, + "fora": 5.5e-07, + "foresters": 5.5e-07, + "formulaic": 5.5e-07, + "frisky": 5.5e-07, + "funnily": 5.5e-07, + "garrisons": 8.51e-08, + "genesee": 5.5e-07, + "gerrymandering": 5.5e-07, + "ghibli": 5.5e-07, + "giulia": 5.5e-07, + "givers": 5.5e-07, + "glenda": 5.5e-07, + "glynn": 5.5e-07, + "gpl": 5.5e-07, + "gregorian": 5.5e-07, + "grisly": 5.5e-07, + "guesswork": 5.5e-07, + "gutting": 5.5e-07, + "gymnasts": 5.5e-07, + "haemorrhage": 5.5e-07, + "hairdressers": 7.59e-08, + "handpicked": 5.5e-07, + "handsets": 5.5e-07, + "harpercollins": 5.5e-07, + "hdl": 5.5e-07, + "hendry": 5.5e-07, + "herndon": 5.5e-07, + "hetero": 5.5e-07, + "hollows": 5.5e-07, + "homeostasis": 5.5e-07, + "homeschooling": 5.5e-07, + "huckleberry": 5.5e-07, + "hutt": 5.5e-07, + "iguana": 5.5e-07, + "impassable": 5.5e-07, + "impatiently": 5.5e-07, + "imprints": 5.5e-07, + "incinerator": 5.5e-07, + "inclinations": 5.5e-07, + "individualistic": 5.5e-07, + "init": 5.5e-07, + "innit": 5.5e-07, + "insolent": 5.5e-07, + "instituting": 5.5e-07, + "insulator": 5.5e-07, + "invert": 5.5e-07, + "invertebrate": 5.5e-07, + "iridium": 5.5e-07, + "irrefutable": 5.5e-07, + "ivo": 5.5e-07, + "jacobi": 5.5e-07, + "jameis": 5.5e-07, + "jammer": 5.5e-07, + "jewry": 5.5e-07, + "jnr": 5.5e-07, + "jovial": 5.5e-07, + "jupiters": 1.15e-07, + "justins": 5.5e-07, + "kbs": 5.5e-07, + "kde": 5.5e-07, + "kenobi": 5.5e-07, + "keynesian": 5.5e-07, + "kidnappings": 5.5e-07, + "kippur": 5.5e-07, + "kitts": 5.5e-07, + "kohn": 5.5e-07, + "korn": 5.5e-07, + "kristy": 5.5e-07, + "laine": 5.5e-07, + "lasso": 5.5e-07, + "lattes": 5.5e-07, + "launder": 5.5e-07, + "lauras": 5.5e-07, + "legislated": 5.5e-07, + "lemma": 5.5e-07, + "lexie": 5.5e-07, + "lian": 5.5e-07, + "lillie": 5.5e-07, + "loaders": 5.5e-07, + "lonsdale": 5.5e-07, + "lowkey": 5.5e-07, + "mahi": 5.5e-07, + "manatee": 5.5e-07, + "mansour": 5.5e-07, + "mcilroy": 5.5e-07, + "mdc": 5.5e-07, + "meehan": 5.5e-07, + "mesothelioma": 5.5e-07, + "mib": 5.5e-07, + "minnesotas": 5.5e-07, + "mire": 5.5e-07, + "mlp": 5.5e-07, + "modulate": 5.5e-07, + "moisturizing": 5.5e-07, + "molybdenum": 5.5e-07, + "moncton": 5.5e-07, + "morecambe": 5.5e-07, + "motocross": 5.5e-07, + "motorcade": 5.5e-07, + "motorcyclist": 5.5e-07, + "moya": 5.5e-07, + "murakami": 5.5e-07, + "mussel": 5.5e-07, + "namaste": 5.5e-07, + "nanotubes": 5.5e-07, + "ncc": 5.5e-07, + "necessitates": 5.5e-07, + "neue": 5.5e-07, + "nihilism": 5.5e-07, + "nonchalant": 5.5e-07, + "noob": 5.5e-07, + "ntsb": 5.5e-07, + "nyx": 5.5e-07, + "obispo": 5.5e-07, + "oilfield": 5.5e-07, + "opportune": 5.5e-07, + "oppressor": 5.5e-07, + "orcas": 5.5e-07, + "orchestration": 5.5e-07, + "osi": 5.5e-07, + "oth": 5.5e-07, + "ouija": 5.5e-07, + "palmyra": 5.5e-07, + "panamanian": 5.5e-07, + "parapet": 5.5e-07, + "patterning": 5.5e-07, + "pejorative": 5.5e-07, + "penalize": 5.5e-07, + "penning": 5.5e-07, + "penrose": 5.5e-07, + "perseus": 5.5e-07, + "petitioning": 5.5e-07, + "pgs": 5.5e-07, + "pharaohs": 2.75e-07, + "phonograph": 5.5e-07, + "piggyback": 5.5e-07, + "pinochet": 5.5e-07, + "planetarium": 5.5e-07, + "poli": 5.5e-07, + "polis": 1.32e-08, + "porches": 5.5e-07, + "portico": 5.5e-07, + "postures": 5.5e-07, + "powerlifting": 5.5e-07, + "ppd": 5.5e-07, + "pravda": 5.5e-07, + "premarital": 5.5e-07, + "procreation": 5.5e-07, + "projective": 5.5e-07, + "proteus": 5.5e-07, + "pyramidal": 5.5e-07, + "qq": 5.5e-07, + "quarks": 5.5e-07, + "quashed": 5.5e-07, + "queried": 5.5e-07, + "quidditch": 5.5e-07, + "quivering": 5.5e-07, + "radeon": 5.5e-07, + "raff": 5.5e-07, + "rainforests": 5.5e-07, + "ramblings": 5.5e-07, + "ramparts": 5.5e-07, + "rasa": 5.5e-07, + "rascals": 5.5e-07, + "rebooted": 5.5e-07, + "receivership": 5.5e-07, + "redd": 5.5e-07, + "redstone": 5.5e-07, + "redux": 5.5e-07, + "refills": 5.5e-07, + "replenished": 5.5e-07, + "replenishment": 5.5e-07, + "rhoda": 5.5e-07, + "riveted": 5.5e-07, + "rok": 5.5e-07, + "romantics": 5.5e-07, + "rosette": 5.5e-07, + "rouhani": 5.5e-07, + "rsi": 5.5e-07, + "sacs": 7.41e-08, + "sainsburys": 1.07e-07, + "saluting": 5.5e-07, + "sanguine": 5.5e-07, + "sav": 5.5e-07, + "saxophonist": 5.5e-07, + "scone": 5.5e-07, + "scs": 9.55e-08, + "seeping": 5.5e-07, + "sein": 5.5e-07, + "seminoles": 5.5e-07, + "serendipity": 5.5e-07, + "shareholding": 5.5e-07, + "shatner": 5.5e-07, + "shem": 5.5e-07, + "shim": 5.5e-07, + "shona": 5.5e-07, + "sian": 5.5e-07, + "smallville": 5.5e-07, + "solano": 5.5e-07, + "sophomores": 5.5e-07, + "soya": 5.5e-07, + "splattered": 5.5e-07, + "spr": 5.5e-07, + "squander": 5.5e-07, + "ssp": 5.5e-07, + "stalkers": 5.5e-07, + "stans": 3.16e-07, + "steen": 5.5e-07, + "steeple": 5.5e-07, + "sth": 5.5e-07, + "stig": 5.5e-07, + "stillborn": 5.5e-07, + "sturgis": 5.5e-07, + "superintendents": 1.32e-07, + "suspenders": 5.5e-07, + "suu": 5.5e-07, + "swerved": 5.5e-07, + "syndicates": 6.31e-08, + "tajik": 5.5e-07, + "tamer": 5.5e-07, + "taunted": 5.5e-07, + "taverns": 5.5e-07, + "tba": 5.5e-07, + "teasers": 5.5e-07, + "teds": 9.77e-08, + "teenaged": 5.5e-07, + "thaddeus": 5.5e-07, + "thematically": 5.5e-07, + "timescale": 5.5e-07, + "toc": 5.5e-07, + "toke": 5.5e-07, + "toting": 5.5e-07, + "trademarked": 5.5e-07, + "trampling": 5.5e-07, + "tramways": 5.5e-07, + "transcended": 5.5e-07, + "twit": 5.5e-07, + "uaw": 5.5e-07, + "unconcerned": 5.5e-07, + "underbelly": 5.5e-07, + "underfunded": 5.5e-07, + "underperforming": 5.5e-07, + "undp": 5.5e-07, + "unlisted": 5.5e-07, + "unpredictability": 5.5e-07, + "uti": 5.5e-07, + "venezuelas": 5.5e-07, + "ventricle": 5.5e-07, + "vichy": 5.5e-07, + "vieira": 5.5e-07, + "vietnams": 5.5e-07, + "vittorio": 5.5e-07, + "vulva": 5.5e-07, + "wahlberg": 5.5e-07, + "waistband": 5.5e-07, + "wap": 5.5e-07, + "warhammer": 5.5e-07, + "wayland": 5.5e-07, + "welker": 5.5e-07, + "whistled": 5.5e-07, + "wikimedia": 5.5e-07, + "winless": 5.5e-07, + "wipeout": 5.5e-07, + "wizardry": 5.5e-07, + "woollen": 5.5e-07, + "wooster": 5.5e-07, + "wyman": 5.5e-07, + "xrp": 5.5e-07, + "yamada": 5.5e-07, + "yuen": 5.5e-07, + "zanu": 5.5e-07, + "zonal": 5.5e-07, + "abatement": 5.37e-07, + "accentuated": 5.37e-07, + "acidification": 5.37e-07, + "acropolis": 5.37e-07, + "adaption": 5.37e-07, + "aer": 5.37e-07, + "agi": 5.37e-07, + "ahoy": 5.37e-07, + "aix": 5.37e-07, + "ako": 5.37e-07, + "allo": 5.37e-07, + "alston": 5.37e-07, + "alva": 5.37e-07, + "amiga": 5.37e-07, + "amplifying": 5.37e-07, + "anatoly": 5.37e-07, + "anns": 6.46e-08, + "anorexic": 5.37e-07, + "anthropomorphic": 5.37e-07, + "aprons": 5.37e-07, + "archiving": 5.37e-07, + "arif": 5.37e-07, + "armoury": 5.37e-07, + "aro": 5.37e-07, + "arraigned": 5.37e-07, + "artichoke": 5.37e-07, + "attendances": 5.37e-07, + "autonomic": 5.37e-07, + "avignon": 5.37e-07, + "awh": 5.37e-07, + "baboon": 5.37e-07, + "baca": 5.37e-07, + "backfield": 5.37e-07, + "bahadur": 5.37e-07, + "bakes": 5.37e-07, + "balled": 5.37e-07, + "bally": 5.37e-07, + "bandung": 5.37e-07, + "barnum": 5.37e-07, + "bba": 5.37e-07, + "beaux": 5.37e-07, + "beeps": 5.37e-07, + "begotten": 5.37e-07, + "beleaguered": 5.37e-07, + "bennie": 5.37e-07, + "berlins": 5.37e-07, + "bicarbonate": 5.37e-07, + "bigg": 5.37e-07, + "biome": 5.37e-07, + "birthed": 5.37e-07, + "boarder": 5.37e-07, + "boardman": 5.37e-07, + "bollinger": 5.37e-07, + "boudoir": 5.37e-07, + "bough": 5.37e-07, + "bounding": 5.37e-07, + "bowery": 5.37e-07, + "browned": 5.37e-07, + "brunner": 5.37e-07, + "bse": 5.37e-07, + "capo": 5.37e-07, + "carls": 8.51e-08, + "casio": 5.37e-07, + "catalyzed": 5.37e-07, + "categorised": 5.37e-07, + "caterer": 5.37e-07, + "cay": 5.37e-07, + "celibate": 5.37e-07, + "chancel": 5.37e-07, + "chekhov": 5.37e-07, + "chiming": 5.37e-07, + "chivas": 5.37e-07, + "christendom": 5.37e-07, + "cmdr": 5.37e-07, + "cockburn": 5.37e-07, + "coltrane": 5.37e-07, + "commonality": 5.37e-07, + "congratulates": 5.37e-07, + "congratulation": 5.37e-07, + "congratulatory": 5.37e-07, + "conlon": 5.37e-07, + "conquers": 5.37e-07, + "contactless": 5.37e-07, + "continuance": 5.37e-07, + "cooney": 5.37e-07, + "cordless": 5.37e-07, + "costumed": 5.37e-07, + "countrywide": 5.37e-07, + "cre": 5.37e-07, + "creepers": 5.37e-07, + "crony": 5.37e-07, + "cru": 5.37e-07, + "cryptographic": 5.37e-07, + "csm": 5.37e-07, + "dabbled": 5.37e-07, + "daffodils": 5.37e-07, + "dalian": 5.37e-07, + "danbury": 5.37e-07, + "dartmoor": 5.37e-07, + "darwinism": 5.37e-07, + "deadwood": 5.37e-07, + "deceleration": 5.37e-07, + "defaulting": 5.37e-07, + "denmarks": 5.37e-07, + "dennys": 1.07e-07, + "detergents": 5.37e-07, + "deva": 5.37e-07, + "developmentally": 5.37e-07, + "dhl": 5.37e-07, + "dickheads": 5.37e-07, + "dicky": 5.37e-07, + "diffused": 5.37e-07, + "dint": 8.32e-08, + "dioceses": 5.37e-07, + "disagreeable": 5.37e-07, + "disapproving": 5.37e-07, + "disembodied": 5.37e-07, + "dishonored": 5.37e-07, + "dockyard": 5.37e-07, + "doctored": 5.37e-07, + "duffel": 5.37e-07, + "dumbo": 5.37e-07, + "ecole": 5.37e-07, + "efron": 5.37e-07, + "eindhoven": 5.37e-07, + "elektra": 5.37e-07, + "emaciated": 5.37e-07, + "emcee": 5.37e-07, + "endoscopy": 5.37e-07, + "envied": 5.37e-07, + "epps": 5.37e-07, + "ergonomic": 5.37e-07, + "especial": 5.37e-07, + "estradiol": 5.37e-07, + "exemplify": 5.37e-07, + "fanaticism": 5.37e-07, + "fattening": 5.37e-07, + "feller": 5.37e-07, + "fifi": 5.37e-07, + "fillets": 5.37e-07, + "fingernail": 5.37e-07, + "fireside": 5.37e-07, + "fis": 1.02e-07, + "fishman": 5.37e-07, + "fissures": 5.37e-07, + "fisted": 5.37e-07, + "flinging": 5.37e-07, + "floodplain": 5.37e-07, + "foodies": 5.37e-07, + "franchisees": 5.37e-07, + "freemasonry": 5.37e-07, + "fugue": 5.37e-07, + "funders": 5.37e-07, + "garber": 5.37e-07, + "gateshead": 5.37e-07, + "gelding": 5.37e-07, + "gerardo": 5.37e-07, + "gibsons": 1e-07, + "gj": 5.37e-07, + "glandular": 5.37e-07, + "glaser": 5.37e-07, + "glean": 5.37e-07, + "gliders": 5.37e-07, + "glo": 5.37e-07, + "golding": 5.37e-07, + "greenspan": 5.37e-07, + "growls": 5.37e-07, + "guerre": 5.37e-07, + "gutsy": 5.37e-07, + "hafiz": 5.37e-07, + "haim": 5.37e-07, + "handiwork": 5.37e-07, + "handjob": 5.37e-07, + "handlebars": 5.37e-07, + "hangouts": 5.37e-07, + "hastened": 5.37e-07, + "hoff": 5.37e-07, + "holtz": 5.37e-07, + "homelands": 6.17e-08, + "homicidal": 5.37e-07, + "hovers": 5.37e-07, + "hurrying": 5.37e-07, + "hyacinth": 5.37e-07, + "hydroxy": 5.37e-07, + "ichi": 5.37e-07, + "ici": 5.37e-07, + "imitates": 5.37e-07, + "impersonator": 5.37e-07, + "ince": 5.37e-07, + "indi": 5.37e-07, + "inez": 5.37e-07, + "intergenerational": 5.37e-07, + "intricately": 5.37e-07, + "invigorating": 5.37e-07, + "inwardly": 5.37e-07, + "ise": 5.37e-07, + "italic": 5.37e-07, + "jac": 5.37e-07, + "jarrod": 5.37e-07, + "javed": 5.37e-07, + "jenson": 5.37e-07, + "jfc": 5.37e-07, + "jie": 5.37e-07, + "jure": 5.37e-07, + "kanes": 5.37e-08, + "keira": 5.37e-07, + "khyber": 5.37e-07, + "kilkenny": 5.37e-07, + "kimura": 5.37e-07, + "kochi": 5.37e-07, + "kroos": 5.37e-07, + "laban": 5.37e-07, + "laguardia": 5.37e-07, + "lallana": 5.37e-07, + "lanky": 5.37e-07, + "lar": 5.37e-07, + "lawrie": 5.37e-07, + "linebackers": 5.37e-07, + "loitering": 5.37e-07, + "lookalike": 5.37e-07, + "loveless": 5.37e-07, + "lurid": 5.37e-07, + "luzon": 5.37e-07, + "lviv": 5.37e-07, + "malays": 5.37e-07, + "marconi": 5.37e-07, + "marti": 5.37e-07, + "memoriam": 5.37e-07, + "merited": 5.37e-07, + "mesquite": 5.37e-07, + "metcalfe": 5.37e-07, + "microns": 5.37e-07, + "misnomer": 5.37e-07, + "mmorpg": 5.37e-07, + "mobilisation": 5.37e-07, + "mobsters": 5.37e-07, + "modulator": 5.37e-07, + "molest": 5.37e-07, + "monetization": 5.37e-07, + "morgantown": 5.37e-07, + "mountaintop": 5.37e-07, + "mournful": 5.37e-07, + "mrt": 5.37e-07, + "muh": 5.37e-07, + "mullah": 5.37e-07, + "mumbled": 5.37e-07, + "muscled": 5.37e-07, + "nagy": 5.37e-07, + "neeson": 5.37e-07, + "nettles": 5.37e-07, + "nicked": 5.37e-07, + "nodules": 5.37e-07, + "nuttall": 5.37e-07, + "nws": 5.37e-07, + "oba": 5.37e-07, + "obstinate": 5.37e-07, + "oddities": 5.37e-07, + "ontological": 5.37e-07, + "opined": 5.37e-07, + "optimisation": 5.37e-07, + "opts": 5.37e-07, + "oreos": 5.37e-07, + "orphanages": 5.37e-07, + "ospreys": 5.37e-07, + "outbuildings": 5.37e-07, + "overrule": 5.37e-07, + "ozark": 5.37e-07, + "pacify": 5.37e-07, + "pales": 5.37e-07, + "paraffin": 5.37e-07, + "pds": 1.26e-07, + "peculiarities": 5.37e-07, + "pere": 5.37e-07, + "periodontal": 5.37e-07, + "peruse": 5.37e-07, + "petulant": 5.37e-07, + "phenomenology": 5.37e-07, + "philology": 5.37e-07, + "pinus": 5.37e-07, + "piqued": 5.37e-07, + "pis": 1.32e-07, + "platitudes": 5.37e-07, + "pleated": 5.37e-07, + "pled": 5.37e-07, + "pnp": 5.37e-07, + "pointedly": 5.37e-07, + "pollinators": 5.37e-07, + "polygons": 5.37e-07, + "powerball": 5.37e-07, + "pretence": 5.37e-07, + "priyanka": 5.37e-07, + "progressions": 5.37e-07, + "psl": 5.37e-07, + "psychotherapist": 5.37e-07, + "pum": 5.37e-07, + "punctuality": 5.37e-07, + "purring": 5.37e-07, + "puttin": 5.37e-07, + "rashes": 5.37e-07, + "rath": 5.37e-07, + "reade": 5.37e-07, + "reals": 9.77e-08, + "rebuffed": 5.37e-07, + "recuperate": 5.37e-07, + "remi": 5.37e-07, + "renoir": 5.37e-07, + "retweet": 5.37e-07, + "revoking": 5.37e-07, + "rigidly": 5.37e-07, + "ripening": 5.37e-07, + "riskier": 5.37e-07, + "rivets": 5.37e-07, + "roblox": 5.37e-07, + "rollo": 5.37e-07, + "rots": 5.37e-07, + "ryanair": 5.37e-07, + "salina": 5.37e-07, + "salome": 5.37e-07, + "sandpaper": 5.37e-07, + "sandstorm": 5.37e-07, + "scepter": 5.37e-07, + "scorch": 5.37e-07, + "scribble": 5.37e-07, + "scurvy": 5.37e-07, + "searchlight": 5.37e-07, + "sentries": 5.37e-07, + "sharpie": 5.37e-07, + "shayne": 5.37e-07, + "sheena": 5.37e-07, + "sheeting": 5.37e-07, + "shipwrecked": 5.37e-07, + "shudders": 5.37e-07, + "sickened": 5.37e-07, + "silverado": 5.37e-07, + "singaporeans": 5.37e-07, + "singly": 5.37e-07, + "sitters": 5.13e-08, + "skyrocketing": 5.37e-07, + "smc": 5.37e-07, + "softbank": 5.37e-07, + "sot": 5.37e-07, + "soweto": 5.37e-07, + "sported": 5.37e-07, + "spotlights": 5.37e-07, + "squealing": 5.37e-07, + "stallions": 5.37e-07, + "stannis": 5.37e-07, + "starcraft": 5.37e-07, + "stiletto": 5.37e-07, + "stipe": 5.37e-07, + "stockpiling": 5.37e-07, + "stooge": 5.37e-07, + "strep": 5.37e-07, + "stringing": 5.37e-07, + "subjugation": 5.37e-07, + "sunnis": 5.37e-07, + "supermans": 5.37e-07, + "surrogacy": 5.37e-07, + "tamworth": 5.37e-07, + "tangential": 5.37e-07, + "teardrop": 5.37e-07, + "tera": 5.37e-07, + "theseus": 5.37e-07, + "thieving": 5.37e-07, + "toews": 5.37e-07, + "toga": 5.37e-07, + "toiletries": 5.37e-07, + "tommys": 5.37e-07, + "toolbar": 5.37e-07, + "tpa": 5.37e-07, + "transference": 5.37e-07, + "transphobic": 5.37e-07, + "traverses": 5.37e-07, + "tribulation": 5.37e-07, + "trill": 5.37e-07, + "twisty": 5.37e-07, + "tye": 5.37e-07, + "unchanging": 5.37e-07, + "unfunded": 5.37e-07, + "universality": 5.37e-07, + "universidad": 5.37e-07, + "unmet": 5.37e-07, + "unsteady": 5.37e-07, + "untied": 5.37e-07, + "unturned": 5.37e-07, + "uplink": 5.37e-07, + "vaccinate": 5.37e-07, + "vax": 5.37e-07, + "veered": 5.37e-07, + "vestibule": 5.37e-07, + "vestry": 5.37e-07, + "vigo": 5.37e-07, + "vitaly": 5.37e-07, + "voluptuous": 5.37e-07, + "vx": 5.37e-07, + "wagering": 5.37e-07, + "watchin": 5.37e-07, + "weasley": 5.37e-07, + "weevil": 5.37e-07, + "whatevers": 6.76e-08, + "whirling": 5.37e-07, + "whitlock": 5.37e-07, + "windham": 5.37e-07, + "winehouse": 5.37e-07, + "wintry": 5.37e-07, + "worshipers": 5.37e-07, + "wycombe": 5.37e-07, + "xe": 5.37e-07, + "xing": 5.37e-07, + "yas": 5.25e-08, + "yow": 5.37e-07, + "zealots": 5.37e-07, + "zim": 5.37e-07, + "abubakar": 5.25e-07, + "acadia": 5.25e-07, + "acetyl": 5.25e-07, + "achievers": 5.25e-07, + "acrobat": 5.25e-07, + "actuators": 5.25e-07, + "afi": 5.25e-07, + "agora": 5.25e-07, + "aldershot": 5.25e-07, + "algarve": 5.25e-07, + "allende": 5.25e-07, + "alumina": 5.25e-07, + "ambien": 5.25e-07, + "amicably": 5.25e-07, + "amiibo": 5.25e-07, + "amphibian": 5.25e-07, + "amputee": 5.25e-07, + "analogues": 5.25e-07, + "anchovies": 5.25e-07, + "anjali": 5.25e-07, + "annies": 6.61e-08, + "apu": 5.25e-07, + "ashtray": 5.25e-07, + "asics": 5.25e-07, + "askew": 5.25e-07, + "assoc": 5.25e-07, + "assyria": 5.25e-07, + "astana": 5.25e-07, + "athenians": 5.25e-07, + "attendee": 5.25e-07, + "authenticate": 5.25e-07, + "aviva": 5.25e-07, + "awoken": 5.25e-07, + "backline": 5.25e-07, + "backtrack": 5.25e-07, + "bada": 5.25e-07, + "baffle": 5.25e-07, + "baguio": 5.25e-07, + "balk": 5.25e-07, + "banquets": 5.25e-07, + "batavia": 5.25e-07, + "beckons": 5.25e-07, + "belles": 1.86e-07, + "bested": 5.25e-07, + "bicep": 5.25e-07, + "bioshock": 5.25e-07, + "bligh": 5.25e-07, + "bloating": 5.25e-07, + "bodybuilders": 5.25e-07, + "boulton": 5.25e-07, + "braintree": 5.25e-07, + "braised": 5.25e-07, + "breakups": 5.25e-07, + "brecht": 5.25e-07, + "brest": 5.25e-07, + "buckland": 5.25e-07, + "bulimia": 5.25e-07, + "burrowing": 5.25e-07, + "buyback": 5.25e-07, + "byes": 5.25e-07, + "caltech": 5.25e-07, + "campion": 5.25e-07, + "canter": 5.25e-07, + "cantilever": 5.25e-07, + "caressing": 5.25e-07, + "carpal": 5.25e-07, + "cdl": 5.25e-07, + "cem": 5.25e-07, + "cements": 5.25e-07, + "cfm": 5.25e-07, + "chalked": 5.25e-07, + "chans": 6.61e-08, + "cheetos": 5.25e-07, + "cine": 5.25e-07, + "clevelands": 5.25e-07, + "cloaks": 5.25e-07, + "cnt": 5.25e-07, + "coastguard": 5.25e-07, + "coasting": 5.25e-07, + "cobble": 5.25e-07, + "coc": 5.25e-07, + "colonisation": 5.25e-07, + "conduits": 5.25e-07, + "conferencing": 5.25e-07, + "contaminating": 5.25e-07, + "convulsions": 5.25e-07, + "copernicus": 5.25e-07, + "cornbread": 5.25e-07, + "corso": 5.25e-07, + "corwin": 5.25e-07, + "costas": 2e-07, + "cqc": 5.25e-07, + "creamed": 5.25e-07, + "creeped": 5.25e-07, + "cronulla": 5.25e-07, + "crowbar": 5.25e-07, + "crowell": 5.25e-07, + "crudely": 5.25e-07, + "cuisines": 5.25e-07, + "cytoplasmic": 5.25e-07, + "dca": 5.25e-07, + "deakin": 5.25e-07, + "dedicates": 5.25e-07, + "deleterious": 5.25e-07, + "delft": 5.25e-07, + "delineated": 5.25e-07, + "demeanour": 5.25e-07, + "depressants": 5.25e-07, + "desiree": 5.25e-07, + "detritus": 5.25e-07, + "dillard": 5.25e-07, + "dimple": 5.25e-07, + "disengagement": 5.25e-07, + "dishing": 5.25e-07, + "disintegrating": 5.25e-07, + "disown": 5.25e-07, + "disproved": 5.25e-07, + "distilleries": 5.25e-07, + "distilling": 5.25e-07, + "distorts": 5.25e-07, + "divinely": 5.25e-07, + "dorky": 5.25e-07, + "dormer": 5.25e-07, + "downplayed": 5.25e-07, + "driftwood": 5.25e-07, + "drivel": 5.25e-07, + "durga": 5.25e-07, + "dyslexic": 5.25e-07, + "dystopia": 5.25e-07, + "eateries": 5.25e-07, + "eda": 5.25e-07, + "effeminate": 5.25e-07, + "eldon": 5.25e-07, + "electrolysis": 5.25e-07, + "embarks": 5.25e-07, + "emotionless": 5.25e-07, + "emphysema": 5.25e-07, + "endometriosis": 5.25e-07, + "entitles": 5.25e-07, + "eritrean": 5.25e-07, + "etta": 5.25e-07, + "euthanized": 5.25e-07, + "excision": 5.25e-07, + "exogenous": 5.25e-07, + "expandable": 5.25e-07, + "extractor": 5.25e-07, + "faerie": 5.25e-07, + "faulted": 5.25e-07, + "fel": 5.25e-07, + "ferrets": 5.25e-07, + "fet": 5.25e-07, + "fillies": 5.25e-07, + "fleshed": 5.25e-07, + "foresaw": 5.25e-07, + "foreskin": 5.25e-07, + "friendlier": 5.25e-07, + "futurist": 5.25e-07, + "gabbana": 5.25e-07, + "gaffney": 5.25e-07, + "gagas": 5.25e-07, + "ganja": 5.25e-07, + "genial": 5.25e-07, + "geophysics": 5.25e-07, + "gerd": 5.25e-07, + "gibb": 5.25e-07, + "givenchy": 5.25e-07, + "goalless": 5.25e-07, + "gogo": 5.25e-07, + "gooch": 5.25e-07, + "gra": 5.25e-07, + "grafted": 5.25e-07, + "gti": 5.25e-07, + "gulliver": 5.25e-07, + "gunnery": 5.25e-07, + "gurion": 5.25e-07, + "hairdo": 5.25e-07, + "haitians": 5.25e-07, + "hala": 5.25e-07, + "hallucinating": 5.25e-07, + "hardie": 5.25e-07, + "harrell": 5.25e-07, + "headlong": 5.25e-07, + "herrick": 5.25e-07, + "hesitating": 5.25e-07, + "heuristic": 5.25e-07, + "hick": 5.25e-07, + "hombre": 5.25e-07, + "homology": 5.25e-07, + "hopefuls": 5.25e-07, + "hopi": 5.25e-07, + "howes": 1.26e-07, + "humerus": 5.25e-07, + "hunky": 5.25e-07, + "hypertrophy": 5.25e-07, + "iceman": 5.25e-07, + "incestuous": 5.25e-07, + "iniquity": 5.25e-07, + "initiator": 5.25e-07, + "inman": 5.25e-07, + "innovating": 5.25e-07, + "interviewees": 5.25e-07, + "ironclad": 5.25e-07, + "jabbar": 5.25e-07, + "jacobsen": 5.25e-07, + "jalen": 5.25e-07, + "johnathan": 5.25e-07, + "joiner": 5.25e-07, + "jonathans": 5.25e-07, + "jordy": 5.25e-07, + "kavanagh": 5.25e-07, + "kaz": 5.25e-07, + "kearns": 5.25e-07, + "keepin": 5.25e-07, + "kiddies": 5.25e-07, + "kilimanjaro": 5.25e-07, + "kirchner": 5.25e-07, + "kon": 5.25e-07, + "kristi": 5.25e-07, + "kwame": 5.25e-07, + "lactate": 5.25e-07, + "landers": 5.01e-08, + "lansdowne": 5.25e-07, + "lapped": 5.25e-07, + "lather": 5.25e-07, + "leaching": 5.25e-07, + "ledges": 5.25e-07, + "leed": 5.25e-07, + "linde": 5.25e-07, + "loathed": 5.25e-07, + "lovelace": 5.25e-07, + "luge": 5.25e-07, + "lumberjack": 5.25e-07, + "lunchbox": 5.25e-07, + "lye": 5.25e-07, + "madsen": 5.25e-07, + "mahmood": 5.25e-07, + "mahmud": 5.25e-07, + "manmade": 5.25e-07, + "marauders": 5.25e-07, + "mccaffrey": 5.25e-07, + "mci": 5.25e-07, + "meld": 5.25e-07, + "mended": 5.25e-07, + "mendelssohn": 5.25e-07, + "mettle": 5.25e-07, + "militancy": 5.25e-07, + "molars": 5.25e-07, + "monochromatic": 5.25e-07, + "motherly": 5.25e-07, + "moulin": 5.25e-07, + "munchies": 5.25e-07, + "muni": 5.25e-07, + "munson": 5.25e-07, + "nannies": 5.25e-07, + "narayan": 5.25e-07, + "navarre": 5.25e-07, + "nhk": 5.25e-07, + "nhtsa": 5.25e-07, + "nightstand": 5.25e-07, + "noh": 5.25e-07, + "northernmost": 5.25e-07, + "notifies": 5.25e-07, + "npp": 5.25e-07, + "ntsc": 5.25e-07, + "nunavut": 5.25e-07, + "officiated": 5.25e-07, + "okey": 5.25e-07, + "optically": 5.25e-07, + "orgs": 5.25e-07, + "ouster": 5.25e-07, + "outdo": 5.25e-07, + "outlive": 5.25e-07, + "oxymoron": 5.25e-07, + "palmetto": 5.25e-07, + "pastels": 5.25e-07, + "patronize": 5.25e-07, + "paulina": 5.25e-07, + "pfa": 5.25e-07, + "phelan": 5.25e-07, + "phonological": 5.25e-07, + "pinkerton": 5.25e-07, + "pinkish": 5.25e-07, + "pissy": 5.25e-07, + "plundering": 5.25e-07, + "poa": 5.25e-07, + "polymorphism": 5.25e-07, + "pontoon": 5.25e-07, + "postoperative": 5.25e-07, + "powershell": 5.25e-07, + "prescribes": 5.25e-07, + "pretrial": 5.25e-07, + "primus": 5.25e-07, + "probationary": 5.25e-07, + "professorship": 5.25e-07, + "promontory": 5.25e-07, + "proportioned": 5.25e-07, + "prozac": 5.25e-07, + "psychics": 1.86e-08, + "pushkin": 5.25e-07, + "pygmy": 5.25e-07, + "pym": 5.25e-07, + "quakes": 5.25e-07, + "quarrying": 5.25e-07, + "quin": 5.25e-07, + "rada": 5.25e-07, + "raines": 5.25e-07, + "ramones": 5.25e-07, + "raytheon": 5.25e-07, + "rearrangement": 5.25e-07, + "rearview": 5.25e-07, + "refocus": 5.25e-07, + "regains": 5.25e-07, + "registries": 5.25e-07, + "relevancy": 5.25e-07, + "renegotiate": 5.25e-07, + "rensselaer": 5.25e-07, + "resurfacing": 5.25e-07, + "rik": 5.25e-07, + "riven": 5.25e-07, + "roan": 5.25e-07, + "rodrigues": 5.25e-07, + "rumi": 5.25e-07, + "rusting": 5.25e-07, + "rustle": 5.25e-07, + "sabina": 5.25e-07, + "saluted": 5.25e-07, + "sanborn": 5.25e-07, + "sarcoma": 5.25e-07, + "schooler": 5.25e-07, + "schweitzer": 5.25e-07, + "secretarial": 5.25e-07, + "secrete": 5.25e-07, + "senegalese": 5.25e-07, + "sik": 5.25e-07, + "skids": 5.25e-07, + "slytherin": 5.25e-07, + "smb": 5.25e-07, + "snarling": 5.25e-07, + "snatches": 5.25e-07, + "spillway": 5.25e-07, + "spiro": 5.25e-07, + "splintered": 5.25e-07, + "sriracha": 5.25e-07, + "stadia": 5.25e-07, + "standardize": 5.25e-07, + "stanzas": 5.25e-07, + "stetson": 5.25e-07, + "stigmatized": 5.25e-07, + "stormwater": 5.25e-07, + "strapless": 5.25e-07, + "stupor": 5.25e-07, + "subcontractor": 5.25e-07, + "summerslam": 5.25e-07, + "susanne": 5.25e-07, + "svp": 5.25e-07, + "swinton": 5.25e-07, + "sx": 5.25e-07, + "systolic": 5.25e-07, + "takeda": 5.25e-07, + "tanking": 5.25e-07, + "tanzanian": 5.25e-07, + "tarantula": 5.25e-07, + "tern": 5.25e-07, + "tetra": 5.25e-07, + "thinned": 5.25e-07, + "thot": 5.25e-07, + "tightrope": 5.25e-07, + "tink": 5.25e-07, + "toasty": 5.25e-07, + "towne": 5.25e-07, + "trailblazer": 5.25e-07, + "trainings": 5.62e-08, + "translocation": 5.25e-07, + "treasuries": 5.25e-07, + "trepidation": 5.25e-07, + "trumbull": 5.25e-07, + "turkmen": 5.25e-07, + "tutored": 5.25e-07, + "typified": 5.25e-07, + "unanticipated": 5.25e-07, + "unblock": 5.25e-07, + "unionism": 5.25e-07, + "unsavory": 5.25e-07, + "unselfish": 5.25e-07, + "unsound": 5.25e-07, + "unverified": 5.25e-07, + "unwashed": 5.25e-07, + "urination": 5.25e-07, + "utterance": 5.25e-07, + "valedictorian": 5.25e-07, + "verso": 5.25e-07, + "vibrational": 5.25e-07, + "vicariously": 5.25e-07, + "vila": 5.25e-07, + "vl": 5.25e-07, + "vms": 5.25e-07, + "voided": 5.25e-07, + "volumetric": 5.25e-07, + "vom": 5.25e-07, + "vroom": 5.25e-07, + "wagers": 5.25e-07, + "walther": 5.25e-07, + "wapo": 5.25e-07, + "waterbury": 5.25e-07, + "wav": 5.25e-07, + "wean": 5.25e-07, + "weezer": 5.25e-07, + "welling": 5.25e-07, + "wexford": 5.25e-07, + "whisked": 5.25e-07, + "wilfrid": 5.25e-07, + "wimp": 5.25e-07, + "wir": 5.25e-07, + "workhorse": 5.25e-07, + "wristbands": 5.25e-07, + "yachting": 5.25e-07, + "yeovil": 5.25e-07, + "yeung": 5.25e-07, + "zeroes": 5.25e-07, + "zooms": 5.25e-07, + "aaah": 5.13e-07, + "aang": 5.13e-07, + "abrahams": 3.16e-07, + "absorber": 5.13e-07, + "accenture": 5.13e-07, + "adjourn": 5.13e-07, + "airliners": 5.13e-07, + "aku": 5.13e-07, + "alabaster": 5.13e-07, + "allegro": 5.13e-07, + "allergens": 5.13e-07, + "allianz": 5.13e-07, + "anaesthesia": 5.13e-07, + "andros": 5.13e-07, + "approximations": 5.13e-07, + "aquifers": 5.13e-07, + "arching": 5.13e-07, + "arf": 5.13e-07, + "arrhythmia": 5.13e-07, + "arsed": 5.13e-07, + "backlinks": 5.13e-07, + "baddest": 5.13e-07, + "bahraini": 5.13e-07, + "bandaged": 5.13e-07, + "barak": 5.13e-07, + "barium": 5.13e-07, + "bauxite": 5.13e-07, + "befall": 5.13e-07, + "behead": 5.13e-07, + "bellied": 5.13e-07, + "beretta": 5.13e-07, + "bergeron": 5.13e-07, + "bestsellers": 5.13e-07, + "beyonces": 5.13e-07, + "biofuel": 5.13e-07, + "biometrics": 5.13e-07, + "bladed": 5.13e-07, + "blenheim": 5.13e-07, + "blindsided": 5.13e-07, + "bloodlines": 5.13e-07, + "blowback": 5.13e-07, + "boathouse": 5.13e-07, + "bogut": 5.13e-07, + "bonfires": 5.13e-07, + "brickwork": 5.13e-07, + "britten": 5.13e-07, + "brooms": 5.13e-07, + "buchan": 5.13e-07, + "burnaby": 5.13e-07, + "calumet": 5.13e-07, + "cana": 5.13e-07, + "cardamom": 5.13e-07, + "cargill": 5.13e-07, + "carrion": 5.13e-07, + "casks": 5.13e-07, + "catherines": 6.46e-08, + "cellist": 5.13e-07, + "cham": 5.13e-07, + "chard": 5.13e-07, + "charmer": 5.13e-07, + "chewbacca": 5.13e-07, + "choctaw": 5.13e-07, + "chrissie": 5.13e-07, + "churchills": 5.13e-08, + "cif": 5.13e-07, + "clickbait": 5.13e-07, + "closings": 5.13e-07, + "cmt": 5.13e-07, + "cobwebs": 5.13e-07, + "cogent": 5.13e-07, + "collaborates": 5.13e-07, + "collages": 5.13e-07, + "colonels": 1.82e-07, + "comprehensible": 5.13e-07, + "compressing": 5.13e-07, + "condense": 5.13e-07, + "condescension": 5.13e-07, + "corkscrew": 5.13e-07, + "corporates": 5.13e-07, + "counsels": 2.82e-07, + "cour": 5.13e-07, + "creamer": 5.13e-07, + "creases": 5.13e-07, + "cribs": 5.13e-07, + "croissants": 5.13e-07, + "cse": 5.13e-07, + "curveball": 5.13e-07, + "custodians": 5.13e-07, + "cyan": 5.13e-07, + "danica": 5.13e-07, + "dantes": 2.04e-07, + "dbz": 5.13e-07, + "delves": 5.13e-07, + "derozan": 5.13e-07, + "deserter": 5.13e-07, + "dewar": 5.13e-07, + "dhawan": 5.13e-07, + "dictation": 5.13e-07, + "diction": 5.13e-07, + "dink": 5.13e-07, + "disbursement": 5.13e-07, + "disguising": 5.13e-07, + "dishonour": 5.13e-07, + "dissociative": 5.13e-07, + "diverging": 5.13e-07, + "dodds": 6.17e-08, + "dodson": 5.13e-07, + "dorn": 5.13e-07, + "dua": 5.13e-07, + "dunstan": 5.13e-07, + "durations": 5.13e-07, + "earpiece": 5.13e-07, + "edf": 5.13e-07, + "edwina": 5.13e-07, + "eee": 5.13e-07, + "elegy": 5.13e-07, + "elia": 5.13e-07, + "emf": 5.13e-07, + "encircling": 5.13e-07, + "ene": 5.13e-07, + "entitle": 5.13e-07, + "entomologist": 5.13e-07, + "ephesus": 5.13e-07, + "epidermis": 5.13e-07, + "epinephrine": 5.13e-07, + "erections": 5.13e-07, + "escalators": 5.13e-07, + "ethiopians": 5.13e-07, + "evacuees": 5.13e-07, + "evens": 1.17e-08, + "evs": 5.25e-08, + "faeces": 5.13e-07, + "faltering": 5.13e-07, + "femmes": 5.13e-07, + "fictions": 7.24e-08, + "finalizing": 5.13e-07, + "fiver": 5.13e-07, + "flabby": 5.13e-07, + "floodgates": 5.13e-07, + "floorboards": 5.13e-07, + "fluctuated": 5.13e-07, + "fluctuates": 5.13e-07, + "folic": 5.13e-07, + "fornication": 5.13e-07, + "fortuna": 5.13e-07, + "frailty": 5.13e-07, + "freiburg": 5.13e-07, + "fricking": 5.13e-07, + "frieda": 5.13e-07, + "friendliest": 5.13e-07, + "frowning": 5.13e-07, + "ful": 5.13e-07, + "futsal": 5.13e-07, + "gaggle": 5.13e-07, + "gauging": 5.13e-07, + "gazebo": 5.13e-07, + "geary": 5.13e-07, + "gees": 8.71e-08, + "germaine": 5.13e-07, + "girder": 5.13e-07, + "gol": 5.13e-07, + "golly": 5.13e-07, + "gonorrhea": 5.13e-07, + "gopal": 5.13e-07, + "gots": 5.13e-07, + "gouge": 5.13e-07, + "goulburn": 5.13e-07, + "greenock": 5.13e-07, + "gregarious": 5.13e-07, + "grenville": 5.13e-07, + "gretel": 5.13e-07, + "grosse": 5.13e-07, + "grunting": 5.13e-07, + "haden": 5.13e-07, + "halibut": 5.13e-07, + "halley": 5.13e-07, + "halloran": 5.13e-07, + "hama": 5.13e-07, + "hanford": 5.13e-07, + "hawaiis": 5.13e-07, + "hein": 5.13e-07, + "hemispheres": 5.75e-08, + "herder": 5.13e-07, + "herefordshire": 5.13e-07, + "hillsboro": 5.13e-07, + "himachal": 5.13e-07, + "himalaya": 5.13e-07, + "histone": 5.13e-07, + "hmong": 5.13e-07, + "hocking": 5.13e-07, + "holi": 5.13e-07, + "holiest": 5.13e-07, + "holograms": 5.13e-07, + "holotype": 5.13e-07, + "hospitalised": 5.13e-07, + "hudsons": 5.37e-08, + "hydrant": 5.13e-07, + "icao": 5.13e-07, + "ignites": 5.13e-07, + "immortalized": 5.13e-07, + "immunodeficiency": 5.13e-07, + "incidences": 5.13e-07, + "inconveniences": 5.13e-07, + "incrementally": 5.13e-07, + "incubators": 5.13e-07, + "indiegogo": 5.13e-07, + "inefficiencies": 5.13e-07, + "infusions": 5.13e-07, + "injunctions": 5.13e-07, + "inlaid": 5.13e-07, + "invents": 5.13e-07, + "jaundice": 5.13e-07, + "jayson": 5.13e-07, + "jeffs": 1.78e-07, + "jeon": 5.13e-07, + "jewelers": 7.76e-08, + "jihadis": 5.13e-07, + "joyfully": 5.13e-07, + "judeo": 5.13e-07, + "kap": 5.13e-07, + "kasper": 5.13e-07, + "kibbutz": 5.13e-07, + "kiefer": 5.13e-07, + "kilns": 5.13e-07, + "klm": 5.13e-07, + "knightley": 5.13e-07, + "kowalski": 5.13e-07, + "kya": 5.13e-07, + "larynx": 5.13e-07, + "lassie": 5.13e-07, + "laurens": 4.37e-07, + "lavigne": 5.13e-07, + "lawrences": 5.13e-07, + "lewiss": 5.13e-07, + "lewiston": 5.13e-07, + "lifter": 5.13e-07, + "lightbulb": 5.13e-07, + "lithography": 5.13e-07, + "loathsome": 5.13e-07, + "lode": 5.13e-07, + "loggers": 5.13e-07, + "loins": 5.13e-07, + "madonnas": 9.12e-08, + "magnitudes": 5.13e-07, + "maharaja": 5.13e-07, + "managements": 2.14e-07, + "manipulates": 5.13e-07, + "martell": 5.13e-07, + "marwan": 5.13e-07, + "marylands": 5.13e-07, + "masterson": 5.13e-07, + "matriarch": 5.13e-07, + "mauve": 5.13e-07, + "mccaskill": 5.13e-07, + "mcclelland": 5.13e-07, + "mcdavid": 5.13e-07, + "mcewen": 5.13e-07, + "meir": 5.13e-07, + "mellor": 5.13e-07, + "mera": 5.13e-07, + "messis": 5.13e-07, + "microfilm": 5.13e-07, + "mitts": 5.13e-07, + "modems": 5.13e-07, + "modicum": 5.13e-07, + "montagu": 5.13e-07, + "montclair": 5.13e-07, + "moreton": 5.13e-07, + "motorbikes": 5.13e-07, + "mouthwash": 5.13e-07, + "mowbray": 5.13e-07, + "mrc": 5.13e-07, + "mrsa": 5.13e-07, + "mss": 5.13e-07, + "mujahideen": 5.13e-07, + "multipliers": 5.13e-07, + "murat": 5.13e-07, + "nathans": 6.46e-08, + "nationalization": 5.13e-07, + "nauseating": 5.13e-07, + "neff": 5.13e-07, + "negan": 5.13e-07, + "nettle": 5.13e-07, + "newry": 5.13e-07, + "newtonian": 5.13e-07, + "normans": 3.55e-07, + "oakes": 5.13e-07, + "oldman": 5.13e-07, + "oli": 5.13e-07, + "olin": 5.13e-07, + "omits": 5.13e-07, + "omniscient": 5.13e-07, + "ona": 5.13e-07, + "opengl": 5.13e-07, + "oreal": 5.13e-07, + "oren": 5.13e-07, + "origination": 5.13e-07, + "ossetia": 5.13e-07, + "overdosed": 5.13e-07, + "overpopulation": 5.13e-07, + "overran": 5.13e-07, + "overshadow": 5.13e-07, + "pacer": 5.13e-07, + "pancras": 5.13e-07, + "paroled": 5.13e-07, + "partaking": 5.13e-07, + "parvati": 5.13e-07, + "patriarchs": 5.13e-07, + "paulsen": 5.13e-07, + "pavilions": 5.13e-07, + "pcm": 5.13e-07, + "peacocks": 8.32e-08, + "pedicure": 5.13e-07, + "pheromone": 5.13e-07, + "philistines": 5.13e-07, + "phish": 5.13e-07, + "placard": 5.13e-07, + "plutarch": 5.13e-07, + "polyps": 5.13e-07, + "postgame": 5.13e-07, + "postmodernism": 5.13e-07, + "pothole": 5.13e-07, + "potting": 5.13e-07, + "preconceptions": 5.13e-07, + "presides": 5.13e-07, + "primeval": 5.13e-07, + "procrastinate": 5.13e-07, + "promiscuity": 5.13e-07, + "provisioning": 5.13e-07, + "puddings": 5.13e-07, + "purplish": 5.13e-07, + "rabbinic": 5.13e-07, + "rabin": 5.13e-07, + "rakes": 5.13e-07, + "ranching": 5.13e-07, + "raqqa": 5.13e-07, + "rationalization": 5.13e-07, + "ravel": 5.13e-07, + "reachable": 5.13e-07, + "reaffirms": 5.13e-07, + "reappears": 5.13e-07, + "reardon": 5.13e-07, + "rebelling": 5.13e-07, + "recede": 5.13e-07, + "reciprocating": 5.13e-07, + "reductase": 5.13e-07, + "reestablish": 5.13e-07, + "reintroduce": 5.13e-07, + "reintroduction": 5.13e-07, + "rekindle": 5.13e-07, + "relapsed": 5.13e-07, + "relented": 5.13e-07, + "reposition": 5.13e-07, + "reproduces": 5.13e-07, + "reverts": 5.13e-07, + "revulsion": 5.13e-07, + "rhs": 5.13e-07, + "richelieu": 5.13e-07, + "ricos": 5.13e-07, + "rinsing": 5.13e-07, + "rly": 5.13e-07, + "rocknroll": 7.08e-08, + "rosenstein": 5.13e-07, + "roxbury": 5.13e-07, + "rtl": 5.13e-07, + "rubicon": 5.13e-07, + "safeties": 5.13e-07, + "samaritans": 1.02e-07, + "sanctified": 5.13e-07, + "sandalwood": 5.13e-07, + "sandberg": 5.13e-07, + "sanding": 5.13e-07, + "savant": 5.13e-07, + "scape": 5.13e-07, + "schoolgirls": 5.13e-07, + "sco": 5.13e-07, + "scrawny": 5.13e-07, + "seabirds": 5.13e-07, + "sear": 5.13e-07, + "sequins": 5.13e-07, + "seri": 5.13e-07, + "shabab": 5.13e-07, + "shackled": 5.13e-07, + "shoreditch": 5.13e-07, + "slop": 5.13e-07, + "smothering": 5.13e-07, + "smp": 5.13e-07, + "solvency": 5.13e-07, + "sommer": 5.13e-07, + "sophies": 5.13e-07, + "spyware": 5.13e-07, + "stade": 5.13e-07, + "stamens": 5.13e-07, + "stepmom": 5.13e-07, + "stevenage": 5.13e-07, + "stewie": 5.13e-07, + "stockbridge": 5.13e-07, + "stocky": 5.13e-07, + "stoll": 5.13e-07, + "straus": 5.13e-07, + "strutting": 5.13e-07, + "subsidence": 5.13e-07, + "subtracted": 5.13e-07, + "sullen": 5.13e-07, + "sump": 5.13e-07, + "superconducting": 5.13e-07, + "supervises": 5.13e-07, + "swirls": 5.13e-07, + "symbiosis": 5.13e-07, + "sympathise": 5.13e-07, + "synchronize": 5.13e-07, + "taffy": 5.13e-07, + "tantalizing": 5.13e-07, + "taos": 8.51e-08, + "tarek": 5.13e-07, + "targaryen": 5.13e-07, + "taster": 5.13e-07, + "teacup": 5.13e-07, + "technicalities": 5.13e-07, + "tectonics": 5.13e-07, + "teo": 5.13e-07, + "tepid": 5.13e-07, + "terrifies": 5.13e-07, + "testes": 5.13e-07, + "thatch": 5.13e-07, + "thawed": 5.13e-07, + "thicken": 5.13e-07, + "thornhill": 5.13e-07, + "throated": 5.13e-07, + "thumbnails": 5.13e-07, + "ticketmaster": 5.13e-07, + "tko": 5.13e-07, + "tmc": 5.13e-07, + "tmi": 5.13e-07, + "toa": 5.13e-07, + "tol": 5.13e-07, + "towson": 5.13e-07, + "tripe": 5.13e-07, + "trippin": 5.13e-07, + "tristram": 5.13e-07, + "trotted": 5.13e-07, + "troughs": 5.13e-07, + "tweeter": 5.13e-07, + "twinning": 5.13e-07, + "typewriters": 5.13e-07, + "unabated": 5.13e-07, + "unafraid": 5.13e-07, + "unambiguously": 5.13e-07, + "underpinnings": 5.13e-07, + "unearned": 5.13e-07, + "unenforceable": 5.13e-07, + "uninhabitable": 5.13e-07, + "unread": 5.13e-07, + "unsaturated": 5.13e-07, + "unsurpassed": 5.13e-07, + "urns": 5.13e-07, + "vadim": 5.13e-07, + "validates": 5.13e-07, + "valparaiso": 5.13e-07, + "vancouvers": 5.13e-07, + "vats": 5.13e-07, + "vaulting": 5.13e-07, + "vcs": 5.62e-08, + "venerated": 5.13e-07, + "vere": 5.13e-07, + "waisted": 5.13e-07, + "waiving": 5.13e-07, + "waldron": 5.13e-07, + "wandsworth": 5.13e-07, + "waring": 5.13e-07, + "waxy": 5.13e-07, + "whimper": 5.13e-07, + "whoopi": 5.13e-07, + "wiles": 5.13e-07, + "windermere": 5.13e-07, + "winkle": 5.13e-07, + "wistful": 5.13e-07, + "wizarding": 5.13e-07, + "wolfram": 5.13e-07, + "workaround": 5.13e-07, + "wpa": 5.13e-07, + "yeezus": 5.13e-07, + "yeezy": 5.13e-07, + "yeoman": 5.13e-07, + "yuk": 5.13e-07, + "yule": 5.13e-07, + "abounds": 5.01e-07, + "accumulator": 5.01e-07, + "aerosols": 5.01e-07, + "airfields": 5.01e-07, + "airpods": 5.01e-07, + "ajit": 5.01e-07, + "alaskas": 5.01e-07, + "allman": 5.01e-07, + "allude": 5.01e-07, + "amina": 5.01e-07, + "anas": 2.51e-07, + "anda": 5.01e-07, + "androgynous": 5.01e-07, + "animus": 5.01e-07, + "anion": 5.01e-07, + "antipathy": 5.01e-07, + "anubis": 5.01e-07, + "apd": 5.01e-07, + "archdeacon": 5.01e-07, + "arginine": 5.01e-07, + "armadillo": 5.01e-07, + "armband": 5.01e-07, + "arp": 5.01e-07, + "artefact": 5.01e-07, + "aslan": 5.01e-07, + "augustin": 5.01e-07, + "awning": 5.01e-07, + "awol": 5.01e-07, + "bacillus": 5.01e-07, + "balmy": 5.01e-07, + "bandmates": 5.01e-07, + "barbeque": 5.01e-07, + "bards": 1.82e-07, + "bayside": 5.01e-07, + "bento": 5.01e-07, + "berber": 5.01e-07, + "bicycling": 5.01e-07, + "binomial": 5.01e-07, + "blackie": 5.01e-07, + "blinders": 5.01e-07, + "bloodhound": 5.01e-07, + "booger": 5.01e-07, + "bowes": 5.01e-07, + "brandishing": 5.01e-07, + "bratislava": 5.01e-07, + "bridger": 5.01e-07, + "bromide": 5.01e-07, + "brookline": 5.01e-07, + "cabana": 5.01e-07, + "cadaver": 5.01e-07, + "caked": 5.01e-07, + "carnation": 5.01e-07, + "carsons": 5.01e-07, + "censuses": 5.01e-07, + "centauri": 5.01e-07, + "chand": 5.01e-07, + "chesterton": 5.01e-07, + "chickpeas": 5.01e-07, + "chipset": 5.01e-07, + "chitty": 5.01e-07, + "choppers": 5.01e-07, + "chromebook": 5.01e-07, + "chronicler": 5.01e-07, + "chub": 5.01e-07, + "chuffed": 5.01e-07, + "chutes": 5.01e-07, + "citric": 5.01e-07, + "clawing": 5.01e-07, + "cls": 5.01e-07, + "cobblestone": 5.01e-07, + "communique": 5.01e-07, + "compacted": 5.01e-07, + "complementing": 5.01e-07, + "condiment": 5.01e-07, + "confederations": 5.01e-07, + "conservationist": 5.01e-07, + "corroboration": 5.01e-07, + "cortana": 5.01e-07, + "cots": 5.01e-07, + "cowen": 5.01e-07, + "crim": 5.01e-07, + "cristian": 5.01e-07, + "croquet": 5.01e-07, + "crosshairs": 5.01e-07, + "cruzs": 5.01e-07, + "crystallized": 5.01e-07, + "cska": 5.01e-07, + "cuddled": 5.01e-07, + "cuppa": 5.01e-07, + "curzon": 5.01e-07, + "dancefloor": 5.01e-07, + "dancin": 5.01e-07, + "degenerated": 5.01e-07, + "degrades": 5.01e-07, + "delectable": 5.01e-07, + "demotion": 5.01e-07, + "denizens": 5.01e-07, + "derailment": 5.01e-07, + "descriptors": 5.01e-07, + "dif": 5.01e-07, + "discoverer": 5.01e-07, + "dislodged": 5.01e-07, + "dmca": 5.01e-07, + "doubters": 5.01e-07, + "dragoons": 5.01e-07, + "dreadfully": 5.01e-07, + "dredged": 5.01e-07, + "duarte": 5.01e-07, + "durst": 5.01e-07, + "duvall": 5.01e-07, + "echelons": 5.01e-07, + "eec": 5.01e-07, + "elation": 5.01e-07, + "elly": 5.01e-07, + "elucidate": 5.01e-07, + "emitters": 5.01e-07, + "engraver": 5.01e-07, + "enlarging": 5.01e-07, + "envisage": 5.01e-07, + "eon": 5.01e-07, + "etcetera": 5.01e-07, + "evictions": 5.01e-07, + "excavator": 5.01e-07, + "exclusionary": 5.01e-07, + "excommunication": 5.01e-07, + "fads": 5.01e-07, + "fafsa": 5.01e-07, + "fairing": 5.01e-07, + "farnborough": 5.01e-07, + "fatwa": 5.01e-07, + "fawkes": 5.01e-07, + "fishermans": 6.61e-08, + "flamingos": 5.01e-07, + "flippers": 5.01e-07, + "flog": 5.01e-07, + "flogged": 5.01e-07, + "fluorine": 5.01e-07, + "flushes": 5.01e-07, + "flynns": 5.01e-07, + "forehand": 5.01e-07, + "fortescue": 5.01e-07, + "foursquare": 5.01e-07, + "fuego": 5.01e-07, + "gcses": 5.01e-07, + "gillard": 5.01e-07, + "giroux": 5.01e-07, + "givens": 5.01e-07, + "gleeson": 5.01e-07, + "glencoe": 5.01e-07, + "glimpsed": 5.01e-07, + "glyph": 5.01e-07, + "gob": 5.01e-07, + "gohan": 5.01e-07, + "gollum": 5.01e-07, + "gordy": 5.01e-07, + "gotti": 5.01e-07, + "grammatically": 5.01e-07, + "gramophone": 5.01e-07, + "gratefully": 5.01e-07, + "grindr": 5.01e-07, + "gtr": 5.01e-07, + "gumbo": 5.01e-07, + "gwynedd": 5.01e-07, + "hadrian": 5.01e-07, + "halliwell": 5.01e-07, + "hansel": 5.01e-07, + "hardman": 5.01e-07, + "harrier": 5.01e-07, + "harshest": 5.01e-07, + "hartlepool": 5.01e-07, + "haymarket": 5.01e-07, + "heeded": 5.01e-07, + "helmand": 5.01e-07, + "herrmann": 5.01e-07, + "heyward": 5.01e-07, + "hibernate": 5.01e-07, + "hipaa": 5.01e-07, + "holborn": 5.01e-07, + "hollering": 5.01e-07, + "hollingsworth": 5.01e-07, + "hollyoaks": 5.01e-07, + "homeownership": 5.01e-07, + "homeward": 5.01e-07, + "hotdogs": 5.01e-07, + "hounded": 5.01e-07, + "iac": 5.01e-07, + "ibd": 5.01e-07, + "icann": 5.01e-07, + "igg": 5.01e-07, + "imitations": 5.01e-07, + "immanuel": 5.01e-07, + "impediments": 5.01e-07, + "implode": 5.01e-07, + "inane": 5.01e-07, + "industrialisation": 5.01e-07, + "ineptitude": 5.01e-07, + "inshore": 5.01e-07, + "instigating": 5.01e-07, + "instituto": 5.01e-07, + "intelligentsia": 5.01e-07, + "intensities": 5.01e-07, + "interagency": 5.01e-07, + "interconnect": 5.01e-07, + "interrelated": 5.01e-07, + "interviewee": 5.01e-07, + "irritant": 5.01e-07, + "ite": 5.01e-07, + "itis": 5.01e-07, + "jacqui": 5.01e-07, + "jak": 5.01e-07, + "jalan": 5.01e-07, + "jardine": 5.01e-07, + "jelena": 5.01e-07, + "jetpack": 5.01e-07, + "joao": 5.01e-07, + "jquery": 5.01e-07, + "juicing": 5.01e-07, + "jurist": 5.01e-07, + "kelowna": 5.01e-07, + "kenton": 5.01e-07, + "khamenei": 5.01e-07, + "kickbacks": 5.01e-07, + "kickin": 5.01e-07, + "kik": 5.01e-07, + "kisser": 5.01e-07, + "kwang": 5.01e-07, + "kyles": 1.29e-07, + "kyushu": 5.01e-07, + "labia": 5.01e-07, + "lakeshore": 5.01e-07, + "lakota": 5.01e-07, + "lawnmower": 5.01e-07, + "lazer": 5.01e-07, + "leaved": 5.01e-07, + "leeks": 5.01e-07, + "leibniz": 5.01e-07, + "leninist": 5.01e-07, + "lennie": 5.01e-07, + "leonidas": 5.01e-07, + "lik": 5.01e-07, + "litecoin": 5.01e-07, + "livia": 5.01e-07, + "longfellow": 5.01e-07, + "lop": 5.01e-07, + "lupita": 5.01e-07, + "lynchs": 5.01e-07, + "lysine": 5.01e-07, + "machiavelli": 5.01e-07, + "maier": 5.01e-07, + "majorly": 5.01e-07, + "malian": 5.01e-07, + "manicured": 5.01e-07, + "manolo": 5.01e-07, + "marais": 5.01e-07, + "marbella": 5.01e-07, + "mariam": 5.01e-07, + "marquise": 5.01e-07, + "mastectomy": 5.01e-07, + "maybelline": 5.01e-07, + "mcrae": 5.01e-07, + "mears": 5.01e-07, + "medellin": 5.01e-07, + "meiji": 5.01e-07, + "meteoric": 5.01e-07, + "midair": 5.01e-07, + "militaries": 5.01e-07, + "militiamen": 5.01e-07, + "milli": 5.01e-07, + "miscommunication": 5.01e-07, + "mohr": 5.01e-07, + "molester": 5.01e-07, + "monomer": 5.01e-07, + "moreland": 5.01e-07, + "moynihan": 5.01e-07, + "muff": 5.01e-07, + "muffler": 5.01e-07, + "multitudes": 5.01e-07, + "narrowest": 5.01e-07, + "necessitating": 5.01e-07, + "neckline": 5.01e-07, + "neuroscientist": 5.01e-07, + "neutralizing": 5.01e-07, + "ney": 5.01e-07, + "niels": 1.12e-08, + "nightmarish": 5.01e-07, + "nitty": 5.01e-07, + "noc": 5.01e-07, + "noire": 5.01e-07, + "northfield": 5.01e-07, + "northwards": 5.01e-07, + "nudged": 5.01e-07, + "obliquely": 5.01e-07, + "operationally": 5.01e-07, + "ophthalmologist": 5.01e-07, + "outermost": 5.01e-07, + "overheat": 5.01e-07, + "overlords": 5.01e-07, + "overthink": 5.01e-07, + "overzealous": 5.01e-07, + "ovid": 5.01e-07, + "pala": 5.01e-07, + "palgrave": 5.01e-07, + "paola": 5.01e-07, + "paperbacks": 5.01e-07, + "passcode": 5.01e-07, + "pbr": 5.01e-07, + "peasantry": 5.01e-07, + "persisting": 5.01e-07, + "photocopy": 5.01e-07, + "pitman": 5.01e-07, + "plying": 5.01e-07, + "pmo": 5.01e-07, + "polices": 4.79e-07, + "porosity": 5.01e-07, + "pouting": 5.01e-07, + "powells": 5.01e-08, + "prefixes": 5.01e-07, + "prejudicial": 5.01e-07, + "preliminaries": 5.01e-07, + "preponderance": 5.01e-07, + "presbyterians": 5.01e-07, + "preyed": 5.01e-07, + "probiotics": 5.01e-07, + "procrastinating": 5.01e-07, + "propertys": 5.01e-07, + "prot": 5.01e-07, + "protege": 5.01e-07, + "pulsar": 5.01e-07, + "putrid": 5.01e-07, + "pylons": 5.01e-07, + "quinns": 5.89e-08, + "racquet": 5.01e-07, + "ramped": 5.01e-07, + "ransomware": 5.01e-07, + "rapped": 5.01e-07, + "rawalpindi": 5.01e-07, + "rayner": 5.01e-07, + "rda": 5.01e-07, + "reactivated": 5.01e-07, + "recessions": 5.01e-07, + "redfern": 5.01e-07, + "regalia": 5.01e-07, + "remaster": 5.01e-07, + "repainted": 5.01e-07, + "reposting": 5.01e-07, + "reproducible": 5.01e-07, + "retrial": 5.01e-07, + "ricciardo": 5.01e-07, + "rippling": 5.01e-07, + "ris": 6.17e-08, + "ritualistic": 5.01e-07, + "rko": 5.01e-07, + "roethlisberger": 5.01e-07, + "rogen": 5.01e-07, + "rolfe": 5.01e-07, + "rollback": 5.01e-07, + "rorschach": 5.01e-07, + "rosenfeld": 5.01e-07, + "rota": 5.01e-07, + "royally": 5.01e-07, + "rube": 5.01e-07, + "rubiks": 5.01e-07, + "rucker": 5.01e-07, + "rusk": 5.01e-07, + "saggy": 5.01e-07, + "salvadoran": 5.01e-07, + "sanitizer": 5.01e-07, + "scanlon": 5.01e-07, + "schematics": 5.01e-07, + "schreiber": 5.01e-07, + "scoliosis": 5.01e-07, + "seiko": 5.01e-07, + "separatism": 5.01e-07, + "septa": 5.01e-07, + "serfs": 5.01e-07, + "shacks": 5.01e-07, + "shari": 5.01e-07, + "shibuya": 5.01e-07, + "shockwave": 5.01e-07, + "showrooms": 5.01e-07, + "shuttered": 5.01e-07, + "silurian": 5.01e-07, + "singling": 5.01e-07, + "sinning": 5.01e-07, + "skeet": 5.01e-07, + "skrillex": 5.01e-07, + "slouch": 5.01e-07, + "snapdragon": 5.01e-07, + "sneer": 5.01e-07, + "sola": 5.01e-07, + "somaliland": 5.01e-07, + "somalis": 5.01e-07, + "sorcerers": 2.69e-07, + "sorensen": 5.01e-07, + "sorrowful": 5.01e-07, + "spewed": 5.01e-07, + "splat": 5.01e-07, + "spokesmen": 5.01e-07, + "stabilise": 5.01e-07, + "stopover": 5.01e-07, + "suga": 5.01e-07, + "technicolor": 5.01e-07, + "thwarting": 5.01e-07, + "tidbits": 5.01e-07, + "tightens": 5.01e-07, + "tintin": 5.01e-07, + "tous": 5.01e-07, + "touts": 5.01e-07, + "tracksuit": 5.01e-07, + "transduction": 5.01e-07, + "triads": 5.01e-07, + "trinket": 5.01e-07, + "triplet": 5.01e-07, + "trolleys": 5.01e-07, + "troublemaker": 5.01e-07, + "truely": 5.01e-07, + "trumpeter": 5.01e-07, + "trusses": 5.01e-07, + "tshirt": 5.01e-07, + "tufted": 5.01e-07, + "tumult": 5.01e-07, + "typhoons": 5.01e-07, + "umi": 5.01e-07, + "uninitiated": 5.01e-07, + "uninspired": 5.01e-07, + "unrestrained": 5.01e-07, + "unsanitary": 5.01e-07, + "untoward": 5.01e-07, + "uppermost": 5.01e-07, + "ushers": 1.2e-07, + "usman": 5.01e-07, + "usurp": 5.01e-07, + "utahs": 5.01e-07, + "utero": 5.01e-07, + "utes": 5.01e-07, + "uu": 5.01e-07, + "vag": 5.01e-07, + "valeria": 5.01e-07, + "valverde": 5.01e-07, + "vasectomy": 5.01e-07, + "vd": 5.01e-07, + "verdant": 5.01e-07, + "vicarage": 5.01e-07, + "videotaped": 5.01e-07, + "vilified": 5.01e-07, + "waistline": 5.01e-07, + "weatherman": 5.01e-07, + "wf": 5.01e-07, + "whopper": 5.01e-07, + "wiretapping": 5.01e-07, + "woolen": 5.01e-07, + "worldnews": 5.01e-07, + "wringing": 5.01e-07, + "wristwatch": 5.01e-07, + "xeon": 5.01e-07, + "yangtze": 5.01e-07, + "yerevan": 5.01e-07, + "yonge": 5.01e-07, + "youssef": 5.01e-07, + "youtubes": 6.92e-08, + "aberrant": 4.9e-07, + "absinthe": 4.9e-07, + "absolved": 4.9e-07, + "abstaining": 4.9e-07, + "acetaminophen": 4.9e-07, + "adamantly": 4.9e-07, + "adder": 4.9e-07, + "administratively": 4.9e-07, + "advisories": 4.9e-07, + "adwords": 4.9e-07, + "affinities": 4.9e-07, + "agamemnon": 4.9e-07, + "ageless": 4.9e-07, + "agitators": 4.9e-07, + "agonists": 4.9e-07, + "ahab": 4.9e-07, + "airframe": 4.9e-07, + "akp": 4.9e-07, + "alegre": 4.9e-07, + "alessandra": 4.9e-07, + "algal": 4.9e-07, + "alisa": 4.9e-07, + "allay": 4.9e-07, + "anachronistic": 4.9e-07, + "anarcho": 4.9e-07, + "anatomically": 4.9e-07, + "ancelotti": 4.9e-07, + "andorra": 4.9e-07, + "annoyingly": 4.9e-07, + "answerable": 4.9e-07, + "aprils": 4.9e-07, + "apropos": 4.9e-07, + "archimedes": 4.9e-07, + "arran": 4.9e-07, + "asad": 4.9e-07, + "assembler": 4.9e-07, + "asymptotic": 4.9e-07, + "aviators": 4.9e-07, + "axelrod": 4.9e-07, + "ayesha": 4.9e-07, + "azul": 4.9e-07, + "bachchan": 4.9e-07, + "backfires": 4.9e-07, + "bailiffs": 4.9e-07, + "ballgame": 4.9e-07, + "barcelonas": 4.9e-07, + "barricaded": 4.9e-07, + "batmobile": 4.9e-07, + "bday": 5.5e-08, + "bedlam": 4.9e-07, + "beeping": 4.9e-07, + "beluga": 4.9e-07, + "bernies": 4.9e-07, + "beveridge": 4.9e-07, + "bhatt": 4.9e-07, + "bibliographic": 4.9e-07, + "biel": 4.9e-07, + "biopsies": 4.9e-07, + "blackest": 4.9e-07, + "blakely": 4.9e-07, + "bloodless": 4.9e-07, + "boateng": 4.9e-07, + "bookshelves": 4.9e-07, + "boreal": 4.9e-07, + "brackish": 4.9e-07, + "bream": 4.9e-07, + "brough": 4.9e-07, + "buckling": 4.9e-07, + "buries": 4.9e-07, + "burlap": 4.9e-07, + "byproducts": 4.9e-07, + "cackling": 4.9e-07, + "cadiz": 4.9e-07, + "caicos": 4.9e-07, + "calabria": 4.9e-07, + "capitalise": 4.9e-07, + "capstone": 4.9e-07, + "carpeting": 4.9e-07, + "carvalho": 4.9e-07, + "cassel": 4.9e-07, + "catalysis": 4.9e-07, + "cdm": 4.9e-07, + "cen": 4.9e-07, + "centralization": 4.9e-07, + "changeover": 4.9e-07, + "chins": 8.13e-08, + "chiseled": 4.9e-07, + "chromecast": 4.9e-07, + "chrono": 4.9e-07, + "cistern": 4.9e-07, + "citigroup": 4.9e-07, + "classifieds": 4.9e-07, + "cleverness": 4.9e-07, + "coagulation": 4.9e-07, + "coder": 4.9e-07, + "coldly": 4.9e-07, + "colloquially": 4.9e-07, + "congruent": 4.9e-07, + "contributory": 4.9e-07, + "convective": 4.9e-07, + "counterintuitive": 4.9e-07, + "coursing": 4.9e-07, + "crowdsourcing": 4.9e-07, + "crucify": 4.9e-07, + "cryptocurrencies": 4.9e-07, + "csiro": 4.9e-07, + "cuticle": 4.9e-07, + "cyberbullying": 4.9e-07, + "dalrymple": 4.9e-07, + "darwinian": 4.9e-07, + "dateline": 4.9e-07, + "dauntless": 4.9e-07, + "degas": 4.9e-07, + "denning": 4.9e-07, + "denvers": 4.9e-07, + "depleting": 4.9e-07, + "despatch": 4.9e-07, + "devotions": 4.9e-07, + "dialectic": 4.9e-07, + "diegos": 4.9e-07, + "dietitian": 4.9e-07, + "differentials": 4.9e-07, + "dijk": 4.9e-07, + "dinka": 4.9e-07, + "dismissals": 4.9e-07, + "disobeyed": 4.9e-07, + "disobeying": 4.9e-07, + "disorientation": 4.9e-07, + "dispositions": 4.9e-07, + "diurnal": 4.9e-07, + "divisible": 4.9e-07, + "domineering": 4.9e-07, + "downes": 4.9e-07, + "dredd": 4.9e-07, + "dunking": 4.9e-07, + "dura": 4.9e-07, + "dwarfed": 4.9e-07, + "dwyane": 4.9e-07, + "electrics": 1.2e-07, + "emancipated": 4.9e-07, + "embellishment": 4.9e-07, + "emblazoned": 4.9e-07, + "encodes": 4.9e-07, + "environmentalism": 4.9e-07, + "equalization": 4.9e-07, + "erupting": 4.9e-07, + "etchings": 4.9e-07, + "ethno": 4.9e-07, + "eto": 4.9e-07, + "eugenia": 4.9e-07, + "exclaiming": 4.9e-07, + "fabulously": 4.9e-07, + "faithless": 4.9e-07, + "falsetto": 4.9e-07, + "feliz": 4.9e-07, + "festering": 4.9e-07, + "fibonacci": 4.9e-07, + "finlands": 4.9e-07, + "firecracker": 4.9e-07, + "firecrackers": 4.9e-07, + "flabbergasted": 4.9e-07, + "flanker": 4.9e-07, + "flathead": 4.9e-07, + "forges": 4.9e-07, + "fortran": 4.9e-07, + "frontrunner": 4.9e-07, + "frowns": 4.9e-07, + "frs": 4.9e-07, + "frustrates": 4.9e-07, + "fuchsia": 4.9e-07, + "fukuoka": 4.9e-07, + "gant": 4.9e-07, + "garys": 4.9e-07, + "geraldo": 4.9e-07, + "geschichte": 4.9e-07, + "ghanas": 4.9e-07, + "ghazi": 4.9e-07, + "giancarlo": 4.9e-07, + "gillies": 4.9e-07, + "glittery": 4.9e-07, + "globular": 4.9e-07, + "glutathione": 4.9e-07, + "glyphosate": 4.9e-07, + "goddam": 4.9e-07, + "gow": 4.9e-07, + "grandpas": 1.82e-07, + "gro": 4.9e-07, + "groaned": 4.9e-07, + "guildhall": 4.9e-07, + "haldane": 4.9e-07, + "hanuman": 4.9e-07, + "harvards": 4.9e-07, + "haulage": 4.9e-07, + "headland": 4.9e-07, + "headstrong": 4.9e-07, + "hedgehogs": 4.9e-07, + "hefner": 4.9e-07, + "heinemann": 4.9e-07, + "herbivores": 4.9e-07, + "hildebrand": 4.9e-07, + "hn": 4.9e-07, + "holcomb": 4.9e-07, + "hollander": 4.9e-07, + "holley": 4.9e-07, + "hooligan": 4.9e-07, + "horizonte": 4.9e-07, + "howland": 4.9e-07, + "huffman": 4.9e-07, + "humongous": 4.9e-07, + "hunchback": 4.9e-07, + "hydrothermal": 4.9e-07, + "hydroxyl": 4.9e-07, + "hyperspace": 4.9e-07, + "hypo": 4.9e-07, + "ibid": 4.9e-07, + "ife": 4.9e-07, + "igf": 4.9e-07, + "impurity": 4.9e-07, + "inactivated": 4.9e-07, + "inalienable": 4.9e-07, + "incisions": 4.9e-07, + "incongruous": 4.9e-07, + "indio": 4.9e-07, + "indonesians": 4.9e-07, + "infographics": 4.9e-07, + "informations": 9.12e-08, + "inge": 4.9e-07, + "innkeeper": 4.9e-07, + "insufficiency": 4.9e-07, + "interdependence": 4.9e-07, + "interleukin": 4.9e-07, + "intifada": 4.9e-07, + "intracranial": 4.9e-07, + "intruding": 4.9e-07, + "irreducible": 4.9e-07, + "iwo": 4.9e-07, + "jiangsu": 4.9e-07, + "jiggle": 4.9e-07, + "jingles": 4.9e-07, + "jumbled": 4.9e-07, + "keeler": 4.9e-07, + "keita": 4.9e-07, + "kell": 4.9e-07, + "kellie": 4.9e-07, + "ketones": 4.9e-07, + "kitsch": 4.9e-07, + "klamath": 4.9e-07, + "kleenex": 4.9e-07, + "knick": 4.9e-07, + "kubo": 4.9e-07, + "lakeview": 4.9e-07, + "lazily": 4.9e-07, + "leadoff": 4.9e-07, + "lebowski": 4.9e-07, + "leger": 4.9e-07, + "leprechaun": 4.9e-07, + "lethargy": 4.9e-07, + "lettered": 4.9e-07, + "lic": 4.9e-07, + "liddell": 4.9e-07, + "lifeblood": 4.9e-07, + "lilo": 4.9e-07, + "lindley": 4.9e-07, + "linguistically": 4.9e-07, + "litt": 4.9e-07, + "littoral": 4.9e-07, + "lua": 4.9e-07, + "lumbering": 4.9e-07, + "macular": 4.9e-07, + "madhouse": 4.9e-07, + "madigan": 4.9e-07, + "maelstrom": 4.9e-07, + "mahan": 4.9e-07, + "makati": 4.9e-07, + "maligned": 4.9e-07, + "marchers": 4.9e-07, + "marianna": 4.9e-07, + "mariota": 4.9e-07, + "marylebone": 4.9e-07, + "mazes": 4.9e-07, + "mcavoy": 4.9e-07, + "meander": 4.9e-07, + "menon": 4.9e-07, + "mercier": 4.9e-07, + "meshes": 4.9e-07, + "mhc": 4.9e-07, + "microscopes": 4.9e-07, + "mideast": 4.9e-07, + "midseason": 4.9e-07, + "miku": 4.9e-07, + "milkshakes": 4.9e-07, + "mimosa": 4.9e-07, + "minty": 4.9e-07, + "misbehaving": 4.9e-07, + "misusing": 4.9e-07, + "moldy": 4.9e-07, + "moll": 4.9e-07, + "molloy": 4.9e-07, + "mommys": 4.9e-07, + "monahan": 4.9e-07, + "monorail": 4.9e-07, + "moraine": 4.9e-07, + "morehouse": 4.9e-07, + "morpheus": 4.9e-07, + "morphing": 4.9e-07, + "mothership": 4.9e-07, + "munchkin": 4.9e-07, + "museo": 4.9e-07, + "musharraf": 4.9e-07, + "nach": 4.9e-07, + "nanking": 4.9e-07, + "nationalised": 4.9e-07, + "navas": 4.9e-07, + "nicklaus": 4.9e-07, + "noida": 4.9e-07, + "nonviolence": 4.9e-07, + "noo": 4.9e-07, + "npd": 4.9e-07, + "nueva": 4.9e-07, + "nwo": 4.9e-07, + "oboe": 4.9e-07, + "ochre": 4.9e-07, + "ogle": 4.9e-07, + "oligarch": 4.9e-07, + "onesie": 4.9e-07, + "oot": 4.9e-07, + "oppo": 4.9e-07, + "opulence": 4.9e-07, + "orang": 4.9e-07, + "oshkosh": 4.9e-07, + "overeating": 4.9e-07, + "overheads": 4.9e-07, + "overlays": 4.9e-07, + "overreacted": 4.9e-07, + "oxidase": 4.9e-07, + "paget": 4.9e-07, + "paleozoic": 4.9e-07, + "pali": 4.9e-07, + "palpitations": 4.9e-07, + "pancho": 4.9e-07, + "pancreatitis": 4.9e-07, + "pandemonium": 4.9e-07, + "parlors": 4.9e-07, + "patronising": 4.9e-07, + "pattaya": 4.9e-07, + "payoffs": 4.9e-07, + "peacemaker": 4.9e-07, + "penske": 4.9e-07, + "permeates": 4.9e-07, + "perpetuates": 4.9e-07, + "personable": 4.9e-07, + "personalize": 4.9e-07, + "perturbed": 4.9e-07, + "phenotypes": 4.9e-07, + "philanthropists": 4.9e-07, + "phoenician": 4.9e-07, + "phoney": 4.9e-07, + "pickens": 4.9e-07, + "platypus": 4.9e-07, + "ple": 4.9e-07, + "plows": 4.9e-07, + "polanski": 4.9e-07, + "pollutant": 4.9e-07, + "polypropylene": 4.9e-07, + "prankster": 4.9e-07, + "prentiss": 4.9e-07, + "priestley": 4.9e-07, + "profitably": 4.9e-07, + "proliferate": 4.9e-07, + "propagandist": 4.9e-07, + "publically": 4.9e-07, + "publix": 4.9e-07, + "punting": 4.9e-07, + "pyre": 4.9e-07, + "quibble": 4.9e-07, + "quinton": 4.9e-07, + "raison": 4.9e-07, + "ralf": 4.9e-07, + "rasheed": 4.9e-07, + "ravishing": 4.9e-07, + "readout": 4.9e-07, + "reapply": 4.9e-07, + "recidivism": 4.9e-07, + "recollect": 4.9e-07, + "reids": 4.9e-07, + "reis": 6.61e-08, + "reiterates": 4.9e-07, + "relievers": 4.9e-07, + "reo": 4.9e-07, + "repeatable": 4.9e-07, + "replicates": 4.9e-07, + "requisition": 4.9e-07, + "resettled": 4.9e-07, + "resistances": 4.9e-07, + "resp": 4.9e-07, + "restarts": 4.9e-07, + "retrace": 4.9e-07, + "reusing": 4.9e-07, + "rfa": 4.9e-07, + "ridin": 4.9e-07, + "rivet": 4.9e-07, + "roa": 4.9e-07, + "roadhouse": 4.9e-07, + "romneys": 4.9e-07, + "romulus": 4.9e-07, + "roughing": 4.9e-07, + "rrp": 4.9e-07, + "ruffles": 4.9e-07, + "ruinous": 4.9e-07, + "sadat": 4.9e-07, + "saintly": 4.9e-07, + "saks": 4.9e-07, + "scalability": 4.9e-07, + "schindler": 4.9e-07, + "scuttle": 4.9e-07, + "secretarys": 4.9e-07, + "seein": 4.9e-07, + "seeley": 4.9e-07, + "selkirk": 4.9e-07, + "seltzer": 4.9e-07, + "senates": 5.5e-08, + "shakur": 4.9e-07, + "sharjah": 4.9e-07, + "sherwin": 4.9e-07, + "skippy": 4.9e-07, + "skyward": 4.9e-07, + "slings": 4.9e-07, + "sobre": 4.9e-07, + "solihull": 4.9e-07, + "solomons": 3.63e-07, + "speedo": 4.9e-07, + "spinster": 4.9e-07, + "spliced": 4.9e-07, + "sprinted": 4.9e-07, + "spud": 4.9e-07, + "squalor": 4.9e-07, + "stabilisation": 4.9e-07, + "startle": 4.9e-07, + "staunchly": 4.9e-07, + "steadfastly": 4.9e-07, + "straying": 4.9e-07, + "streaking": 4.9e-07, + "stubby": 4.9e-07, + "subjugated": 4.9e-07, + "subplot": 4.9e-07, + "subsidizing": 4.9e-07, + "subterfuge": 4.9e-07, + "sullivans": 7.24e-08, + "sunnyvale": 4.9e-07, + "supercharger": 4.9e-07, + "superfast": 4.9e-07, + "supersport": 4.9e-07, + "surfactants": 4.9e-07, + "surreptitiously": 4.9e-07, + "symonds": 4.9e-07, + "tablecloth": 4.9e-07, + "tacitly": 4.9e-07, + "tailing": 4.9e-07, + "tailings": 4.9e-07, + "tami": 4.9e-07, + "tapper": 4.9e-07, + "tardy": 4.9e-07, + "tassel": 4.9e-07, + "thicket": 4.9e-07, + "threefold": 4.9e-07, + "thruster": 4.9e-07, + "ths": 4.9e-07, + "tidying": 4.9e-07, + "tinned": 4.9e-07, + "toasting": 4.9e-07, + "torchwood": 4.9e-07, + "torrens": 4.9e-07, + "townhouses": 4.9e-07, + "transcribe": 4.9e-07, + "trapeze": 4.9e-07, + "triangulation": 4.9e-07, + "trifling": 4.9e-07, + "tsm": 4.9e-07, + "twirl": 4.9e-07, + "unconsciousness": 4.9e-07, + "unconvincing": 4.9e-07, + "uncooked": 4.9e-07, + "undaunted": 4.9e-07, + "underlining": 4.9e-07, + "underpinned": 4.9e-07, + "undeserved": 4.9e-07, + "unearth": 4.9e-07, + "unsaid": 4.9e-07, + "unsurprising": 4.9e-07, + "uppers": 4.9e-07, + "urquhart": 4.9e-07, + "uta": 4.9e-07, + "uttering": 4.9e-07, + "vardy": 4.9e-07, + "velvety": 4.9e-07, + "vim": 4.9e-07, + "wagga": 4.9e-07, + "walid": 4.9e-07, + "wallabies": 4.9e-07, + "wallaces": 4.9e-07, + "waukesha": 4.9e-07, + "webcomic": 4.9e-07, + "wheelie": 4.9e-07, + "wildflower": 4.9e-07, + "winemaker": 4.9e-07, + "wiretap": 4.9e-07, + "wirral": 4.9e-07, + "woeful": 4.9e-07, + "wolfson": 4.9e-07, + "wsu": 4.9e-07, + "wvu": 4.9e-07, + "xhosa": 4.9e-07, + "xps": 4.9e-07, + "yada": 4.9e-07, + "yardstick": 4.9e-07, + "zh": 4.9e-07, + "zhen": 4.9e-07, + "abate": 4.79e-07, + "abra": 4.79e-07, + "accesses": 4.79e-07, + "adenosine": 4.79e-07, + "adios": 4.79e-07, + "adjuster": 4.79e-07, + "adsense": 4.79e-07, + "affaires": 4.79e-07, + "aftertaste": 4.79e-07, + "airtel": 4.79e-07, + "ald": 4.79e-07, + "alleviated": 4.79e-07, + "amadeus": 4.79e-07, + "ambiance": 4.79e-07, + "analgesic": 4.79e-07, + "angkor": 4.79e-07, + "anh": 4.79e-07, + "antonin": 4.79e-07, + "apec": 4.79e-07, + "approximated": 4.79e-07, + "arlo": 4.79e-07, + "armstrongs": 5.01e-08, + "arnolds": 5.5e-08, + "ascends": 4.79e-07, + "aspirants": 4.79e-07, + "assisi": 4.79e-07, + "atwater": 4.79e-07, + "authentically": 4.79e-07, + "automaton": 4.79e-07, + "avalanches": 4.79e-07, + "axl": 4.79e-07, + "baboons": 4.79e-07, + "backflip": 4.79e-07, + "bade": 4.79e-07, + "baluchistan": 4.79e-07, + "baptize": 4.79e-07, + "batgirl": 4.79e-07, + "bathrobe": 4.79e-07, + "bef": 4.79e-07, + "beresford": 4.79e-07, + "berliner": 4.79e-07, + "biathlon": 4.79e-07, + "bir": 4.79e-07, + "blocs": 7.94e-08, + "bmp": 4.79e-07, + "bodyweight": 4.79e-07, + "bolo": 4.79e-07, + "bookie": 4.79e-07, + "bookmakers": 4.79e-07, + "bothersome": 4.79e-07, + "bou": 4.79e-07, + "bowe": 4.79e-07, + "brained": 4.79e-07, + "brantley": 4.79e-07, + "bsd": 4.79e-07, + "bundling": 4.79e-07, + "burleigh": 4.79e-07, + "busby": 4.79e-07, + "caching": 4.79e-07, + "calamities": 4.79e-07, + "campgrounds": 4.79e-07, + "canfield": 4.79e-07, + "cantina": 4.79e-07, + "carnivore": 4.79e-07, + "casement": 4.79e-07, + "catalans": 4.79e-07, + "cataloging": 4.79e-07, + "catnip": 4.79e-07, + "causative": 4.79e-07, + "cda": 4.79e-07, + "cdp": 4.79e-07, + "cesspool": 4.79e-07, + "chalky": 4.79e-07, + "chipmunks": 4.79e-07, + "churned": 4.79e-07, + "clio": 4.79e-07, + "collaboratively": 4.79e-07, + "commissar": 4.79e-07, + "conformed": 4.79e-07, + "congestive": 4.79e-07, + "consulates": 4.79e-07, + "corfu": 4.79e-07, + "corrupts": 4.79e-07, + "cupola": 4.79e-07, + "dabble": 4.79e-07, + "daesh": 4.79e-07, + "darting": 4.79e-07, + "dass": 4.79e-07, + "debunk": 4.79e-07, + "decays": 4.79e-07, + "decking": 4.79e-07, + "decrypt": 4.79e-07, + "deerfield": 4.79e-07, + "defectors": 4.79e-07, + "degenerates": 4.79e-07, + "depositions": 4.79e-07, + "despondent": 4.79e-07, + "despot": 4.79e-07, + "detachments": 4.79e-07, + "dialectical": 4.79e-07, + "digestible": 4.79e-07, + "disassembled": 4.79e-07, + "disembark": 4.79e-07, + "disgusts": 4.79e-07, + "dishonorable": 4.79e-07, + "disraeli": 4.79e-07, + "dogging": 4.79e-07, + "dopey": 4.79e-07, + "dubrovnik": 4.79e-07, + "ducky": 4.79e-07, + "duncans": 5.01e-08, + "dutt": 4.79e-07, + "easel": 4.79e-07, + "eastwards": 4.79e-07, + "ecs": 7.94e-08, + "edmondson": 4.79e-07, + "eek": 4.79e-07, + "eldorado": 4.79e-07, + "eliminations": 4.79e-07, + "ellipse": 4.79e-07, + "elysium": 4.79e-07, + "encoder": 4.79e-07, + "enormity": 4.79e-07, + "eons": 4.79e-07, + "espouse": 4.79e-07, + "exemplar": 4.79e-07, + "extender": 4.79e-07, + "extramarital": 4.79e-07, + "fandango": 4.79e-07, + "farber": 4.79e-07, + "farc": 4.79e-07, + "farina": 4.79e-07, + "fearlessly": 4.79e-07, + "fete": 4.79e-07, + "feynman": 4.79e-07, + "fiorentina": 4.79e-07, + "firewalls": 4.79e-07, + "fmri": 4.79e-07, + "foi": 4.79e-07, + "foie": 4.79e-07, + "foles": 4.79e-07, + "formalism": 4.79e-07, + "fortuitous": 4.79e-07, + "framingham": 4.79e-07, + "franchisee": 4.79e-07, + "franky": 4.79e-07, + "fredrik": 4.79e-07, + "freestanding": 4.79e-07, + "frenetic": 4.79e-07, + "fridges": 4.79e-07, + "frolic": 4.79e-07, + "funneled": 4.79e-07, + "fussing": 4.79e-07, + "gaff": 4.79e-07, + "galleys": 4.79e-07, + "ganesha": 4.79e-07, + "gangrene": 4.79e-07, + "gatekeepers": 4.79e-07, + "gilgamesh": 4.79e-07, + "gillingham": 4.79e-07, + "gini": 4.79e-07, + "glides": 4.79e-07, + "glosses": 4.79e-07, + "gluttony": 4.79e-07, + "goalkeeping": 4.79e-07, + "goaltending": 4.79e-07, + "goatee": 4.79e-07, + "gordo": 4.79e-07, + "gottfried": 4.79e-07, + "graceland": 4.79e-07, + "granddad": 4.79e-07, + "greyhounds": 4.79e-07, + "grieved": 4.79e-07, + "grist": 4.79e-07, + "grope": 4.79e-07, + "gto": 4.79e-07, + "guardsmen": 4.79e-07, + "gutenberg": 4.79e-07, + "gx": 4.79e-07, + "hadron": 4.79e-07, + "hammerhead": 4.79e-07, + "hampers": 4.79e-07, + "hangman": 4.79e-07, + "harvick": 4.79e-07, + "haughty": 4.79e-07, + "headmistress": 4.79e-07, + "headteacher": 4.79e-07, + "heavyweights": 4.79e-07, + "hela": 4.79e-07, + "hervey": 4.79e-07, + "hobbits": 4.79e-07, + "hogging": 4.79e-07, + "hoisting": 4.79e-07, + "horseradish": 4.79e-07, + "hotshot": 4.79e-07, + "householders": 4.79e-07, + "hus": 8.91e-08, + "hyland": 4.79e-07, + "hypoglycemia": 4.79e-07, + "hypothyroidism": 4.79e-07, + "ihs": 4.79e-07, + "immeasurably": 4.79e-07, + "imprecise": 4.79e-07, + "indigent": 4.79e-07, + "ingham": 4.79e-07, + "ings": 4.79e-07, + "inlay": 4.79e-07, + "intramural": 4.79e-07, + "invulnerable": 4.79e-07, + "irreconcilable": 4.79e-07, + "janitors": 6.03e-08, + "jawbone": 4.79e-07, + "jittery": 4.79e-07, + "joyner": 4.79e-07, + "judicious": 4.79e-07, + "kaka": 4.79e-07, + "kegs": 4.79e-07, + "kerri": 4.79e-07, + "kesha": 4.79e-07, + "khanna": 4.79e-07, + "kickass": 4.79e-07, + "kickback": 4.79e-07, + "kinsman": 4.79e-07, + "kirin": 4.79e-07, + "kowloon": 4.79e-07, + "krauss": 4.79e-07, + "kristine": 4.79e-07, + "kuroda": 4.79e-07, + "kyi": 4.79e-07, + "laboured": 4.79e-07, + "lankas": 4.79e-07, + "laudable": 4.79e-07, + "lbc": 4.79e-07, + "ldp": 4.79e-07, + "lessens": 4.79e-07, + "lessing": 4.79e-07, + "liberalisation": 4.79e-07, + "liftoff": 4.79e-07, + "lightfoot": 4.79e-07, + "linnaeus": 4.79e-07, + "liszt": 4.79e-07, + "logarithmic": 4.79e-07, + "loudness": 4.79e-07, + "lowery": 4.79e-07, + "ltte": 4.79e-07, + "lucasfilm": 4.79e-07, + "luxor": 4.79e-07, + "macroeconomics": 4.79e-07, + "majlis": 4.79e-07, + "majorca": 4.79e-07, + "manchin": 4.79e-07, + "mandi": 4.79e-07, + "mannheim": 4.79e-07, + "manors": 4.79e-07, + "mantras": 4.79e-07, + "marist": 4.79e-07, + "marysville": 4.79e-07, + "mathers": 4.79e-07, + "mchale": 4.79e-07, + "mclachlan": 4.79e-07, + "mec": 4.79e-07, + "megawatt": 4.79e-07, + "meri": 4.79e-07, + "mesozoic": 4.79e-07, + "metroid": 4.79e-07, + "midlothian": 4.79e-07, + "militarized": 4.79e-07, + "misinterpretation": 4.79e-07, + "mobbed": 4.79e-07, + "mobilised": 4.79e-07, + "moorland": 4.79e-07, + "morristown": 4.79e-07, + "mourinhos": 4.79e-07, + "naively": 4.79e-07, + "nappies": 4.79e-07, + "narcissus": 4.79e-07, + "nau": 4.79e-07, + "neurodegenerative": 4.79e-07, + "neva": 4.79e-07, + "nightwing": 4.79e-07, + "nitrates": 4.79e-07, + "nlrb": 4.79e-07, + "northumbria": 4.79e-07, + "nouvelle": 4.79e-07, + "npa": 4.79e-07, + "npcs": 6.61e-08, + "obv": 4.79e-07, + "occipital": 4.79e-07, + "ophthalmic": 4.79e-07, + "ordinating": 4.79e-07, + "ostentatious": 4.79e-07, + "osteopathic": 4.79e-07, + "osx": 4.79e-07, + "oversize": 4.79e-07, + "padlock": 4.79e-07, + "palau": 4.79e-07, + "paltrow": 4.79e-07, + "panini": 4.79e-07, + "paras": 4.79e-07, + "pasco": 4.79e-07, + "patina": 4.79e-07, + "pauly": 4.79e-07, + "pcos": 4.79e-07, + "perf": 4.79e-07, + "permeated": 4.79e-07, + "perspiration": 4.79e-07, + "phenotypic": 4.79e-07, + "philippians": 4.79e-07, + "pina": 4.79e-07, + "pirelli": 4.79e-07, + "plagiarized": 4.79e-07, + "plasmid": 4.79e-07, + "playthrough": 4.79e-07, + "pleaser": 4.79e-07, + "pliocene": 4.79e-07, + "plummeting": 4.79e-07, + "poach": 4.79e-07, + "policyholders": 4.79e-07, + "pontifical": 4.79e-07, + "postcolonial": 4.79e-07, + "precluded": 4.79e-07, + "prez": 4.79e-07, + "prosecco": 4.79e-07, + "prostrate": 4.79e-07, + "pubes": 4.79e-07, + "publicised": 4.79e-07, + "pushover": 4.79e-07, + "pythagoras": 4.79e-07, + "quicksand": 4.79e-07, + "quilting": 4.79e-07, + "raincoat": 4.79e-07, + "raine": 4.79e-07, + "randal": 4.79e-07, + "rasputin": 4.79e-07, + "ratcliffe": 4.79e-07, + "reconnected": 4.79e-07, + "reconsidering": 4.79e-07, + "redeveloped": 4.79e-07, + "refreshingly": 4.79e-07, + "refrigerate": 4.79e-07, + "refutes": 4.79e-07, + "reichstag": 4.79e-07, + "reiss": 4.79e-07, + "relativism": 4.79e-07, + "renata": 4.79e-07, + "renato": 4.79e-07, + "renditions": 4.79e-07, + "repelling": 4.79e-07, + "representational": 4.79e-07, + "republicanism": 4.79e-07, + "restaurateur": 4.79e-07, + "ribeiro": 4.79e-07, + "rickety": 4.79e-07, + "ricotta": 4.79e-07, + "riddick": 4.79e-07, + "ridership": 4.79e-07, + "rina": 4.79e-07, + "rox": 4.79e-07, + "rps": 4.79e-07, + "rsl": 4.79e-07, + "ruger": 4.79e-07, + "sacra": 4.79e-07, + "saddens": 4.79e-07, + "salinger": 4.79e-07, + "sappy": 4.79e-07, + "sark": 4.79e-07, + "sasquatch": 4.79e-07, + "saturns": 4.79e-07, + "saucers": 4.79e-07, + "saviors": 9.55e-08, + "scofield": 4.79e-07, + "semite": 4.79e-07, + "separations": 4.79e-07, + "sepulchre": 4.79e-07, + "sfo": 4.79e-07, + "shallots": 4.79e-07, + "shifters": 4.79e-07, + "shill": 4.79e-07, + "shins": 9.12e-08, + "shorted": 4.79e-07, + "sich": 4.79e-07, + "singhs": 4.79e-07, + "sipped": 4.79e-07, + "siting": 4.79e-07, + "sixpence": 4.79e-07, + "sjw": 4.79e-07, + "skank": 4.79e-07, + "skateboards": 4.79e-07, + "skinhead": 4.79e-07, + "slats": 4.79e-07, + "sligo": 4.79e-07, + "sneezed": 4.79e-07, + "snorkel": 4.79e-07, + "solenoid": 4.79e-07, + "songbird": 4.79e-07, + "sorties": 4.79e-07, + "spaulding": 4.79e-07, + "speer": 4.79e-07, + "spinoza": 4.79e-07, + "splendidly": 4.79e-07, + "sprawled": 4.79e-07, + "spyder": 4.79e-07, + "squaw": 4.79e-07, + "stabilised": 4.79e-07, + "starz": 4.79e-07, + "staunton": 4.79e-07, + "stiller": 4.79e-07, + "storehouse": 4.79e-07, + "stormont": 4.79e-07, + "straighter": 4.79e-07, + "striptease": 4.79e-07, + "suki": 4.79e-07, + "sumerian": 4.79e-07, + "supersede": 4.79e-07, + "sustainably": 4.79e-07, + "svt": 4.79e-07, + "swimsuits": 4.79e-07, + "swooped": 4.79e-07, + "synergistic": 4.79e-07, + "tanganyika": 4.79e-07, + "tantric": 4.79e-07, + "taoist": 4.79e-07, + "tats": 4.79e-07, + "taz": 4.79e-07, + "tbc": 4.79e-07, + "telegrams": 4.79e-07, + "telekom": 4.79e-07, + "thais": 4.17e-08, + "thar": 4.79e-07, + "theatrics": 4.79e-07, + "theodor": 4.79e-07, + "thermally": 4.79e-07, + "throb": 4.79e-07, + "tht": 4.79e-07, + "ticketed": 4.79e-07, + "timon": 4.79e-07, + "tipperary": 4.79e-07, + "toda": 4.79e-07, + "tormenting": 4.79e-07, + "touche": 4.79e-07, + "tov": 4.79e-07, + "toyed": 4.79e-07, + "trachea": 4.79e-07, + "transitory": 4.79e-07, + "transparently": 4.79e-07, + "treasonous": 4.79e-07, + "tribalism": 4.79e-07, + "trig": 4.79e-07, + "truckload": 4.79e-07, + "tss": 4.79e-07, + "tua": 4.79e-07, + "tyneside": 4.79e-07, + "tyrol": 4.79e-07, + "unattached": 4.79e-07, + "underlie": 4.79e-07, + "underlies": 4.79e-07, + "unger": 4.79e-07, + "unmanageable": 4.79e-07, + "unmoved": 4.79e-07, + "unt": 4.79e-07, + "uplifted": 4.79e-07, + "upshot": 4.79e-07, + "upsurge": 4.79e-07, + "uribe": 4.79e-07, + "valery": 4.79e-07, + "vasco": 4.79e-07, + "vcu": 4.79e-07, + "virginian": 4.79e-07, + "vivacious": 4.79e-07, + "vowing": 4.79e-07, + "voyeur": 4.79e-07, + "warlike": 4.79e-07, + "warmup": 4.79e-07, + "watercolors": 4.79e-07, + "watermelons": 4.79e-07, + "watersheds": 4.79e-07, + "weaned": 4.79e-07, + "wid": 4.79e-07, + "willi": 4.79e-07, + "winnebago": 4.79e-07, + "wisp": 4.79e-07, + "wold": 4.79e-07, + "woolworths": 9.12e-08, + "xena": 4.79e-07, + "xerxes": 4.79e-07, + "xue": 4.79e-07, + "yearling": 4.79e-07, + "zahra": 4.79e-07, + "zamora": 4.79e-07, + "zapata": 4.79e-07, + "zeiss": 4.79e-07, + "zhong": 4.79e-07, + "zimmermann": 4.79e-07, + "abbotts": 9.55e-08, + "abductions": 4.68e-07, + "ably": 4.68e-07, + "abortive": 4.68e-07, + "acr": 4.68e-07, + "afghanistans": 4.68e-07, + "agitating": 4.68e-07, + "aikido": 4.68e-07, + "aileen": 4.68e-07, + "akshay": 4.68e-07, + "alcoa": 4.68e-07, + "alkaloids": 4.68e-07, + "allahu": 4.68e-07, + "alm": 4.68e-07, + "alternated": 4.68e-07, + "amato": 4.68e-07, + "anagram": 4.68e-07, + "apaches": 4.68e-07, + "apologises": 4.68e-07, + "apostate": 4.68e-07, + "arabias": 4.68e-07, + "archway": 4.68e-07, + "arcy": 4.68e-07, + "ariane": 4.68e-07, + "artfully": 4.68e-07, + "artistes": 4.68e-07, + "asada": 4.68e-07, + "ashwin": 4.68e-07, + "axon": 4.68e-07, + "azam": 4.68e-07, + "azores": 4.68e-07, + "backpackers": 4.68e-07, + "bahn": 4.68e-07, + "ballooning": 4.68e-07, + "baptismal": 4.68e-07, + "basses": 4.68e-07, + "bauman": 4.68e-07, + "bca": 4.68e-07, + "beauregard": 4.68e-07, + "bede": 4.68e-07, + "beeswax": 4.68e-07, + "bentham": 4.68e-07, + "benthic": 4.68e-07, + "berated": 4.68e-07, + "bernal": 4.68e-07, + "bhd": 4.68e-07, + "bight": 4.68e-07, + "bilge": 4.68e-07, + "biohazard": 4.68e-07, + "bischoff": 4.68e-07, + "bissau": 4.68e-07, + "blouses": 4.68e-07, + "bonne": 4.68e-07, + "bozeman": 4.68e-07, + "breaststroke": 4.68e-07, + "breeches": 4.68e-07, + "bronzes": 4.68e-07, + "buttress": 4.68e-07, + "cabling": 4.68e-07, + "camber": 4.68e-07, + "canelo": 4.68e-07, + "cartography": 4.68e-07, + "cataclysmic": 4.68e-07, + "catharsis": 4.68e-07, + "cerebellum": 4.68e-07, + "chancellors": 4.27e-07, + "chau": 4.68e-07, + "chesney": 4.68e-07, + "chiral": 4.68e-07, + "choy": 4.68e-07, + "civilisations": 4.68e-07, + "codec": 4.68e-07, + "cohabitation": 4.68e-07, + "collapsible": 4.68e-07, + "conga": 4.68e-07, + "conjures": 4.68e-07, + "consumables": 4.68e-07, + "contractually": 4.68e-07, + "contravention": 4.68e-07, + "copier": 4.68e-07, + "corden": 4.68e-07, + "corticosteroids": 4.68e-07, + "courtyards": 4.68e-07, + "coyne": 4.68e-07, + "creamery": 4.68e-07, + "critiquing": 4.68e-07, + "crunchyroll": 4.68e-07, + "ctc": 4.68e-07, + "cytokine": 4.68e-07, + "daffy": 4.68e-07, + "dany": 4.68e-07, + "danzig": 4.68e-07, + "darko": 4.68e-07, + "defrauded": 4.68e-07, + "depose": 4.68e-07, + "deprecated": 4.68e-07, + "dic": 4.68e-07, + "dicey": 4.68e-07, + "dimmer": 4.68e-07, + "disconnecting": 4.68e-07, + "disinfection": 4.68e-07, + "disobedient": 4.68e-07, + "distantly": 4.68e-07, + "divestment": 4.68e-07, + "divya": 4.68e-07, + "dizzying": 4.68e-07, + "donbass": 4.68e-07, + "downtrodden": 4.68e-07, + "drowsiness": 4.68e-07, + "dulce": 4.68e-07, + "dumpling": 4.68e-07, + "dupree": 4.68e-07, + "dutifully": 4.68e-07, + "dysplasia": 4.68e-07, + "ecologist": 4.68e-07, + "edicts": 4.68e-07, + "eeoc": 4.68e-07, + "effluent": 4.68e-07, + "egress": 4.68e-07, + "eights": 4.68e-07, + "embodying": 4.68e-07, + "encapsulates": 4.68e-07, + "encephalopathy": 4.68e-07, + "endangerment": 4.68e-07, + "enrol": 4.68e-07, + "evangeline": 4.68e-07, + "eventuality": 4.68e-07, + "evermore": 4.68e-07, + "evolutions": 5.62e-08, + "excretion": 4.68e-07, + "exegesis": 4.68e-07, + "exhibitor": 4.68e-07, + "exhumed": 4.68e-07, + "expunged": 4.68e-07, + "extrajudicial": 4.68e-07, + "extrapolate": 4.68e-07, + "fal": 4.68e-07, + "faring": 4.68e-07, + "fingertip": 4.68e-07, + "finnegan": 4.68e-07, + "flavorful": 4.68e-07, + "floyds": 6.76e-08, + "forecasted": 4.68e-07, + "freemasons": 4.68e-07, + "ftl": 4.68e-07, + "fts": 1.07e-07, + "galena": 4.68e-07, + "gamecocks": 4.68e-07, + "georgians": 4.68e-07, + "ggg": 4.68e-07, + "ghee": 4.68e-07, + "girolamo": 4.68e-07, + "glyphs": 4.68e-07, + "gor": 4.68e-07, + "gott": 4.68e-07, + "gouging": 4.68e-07, + "gpus": 4.68e-07, + "grammer": 4.68e-07, + "gravitation": 4.68e-07, + "griff": 4.68e-07, + "grr": 4.68e-07, + "gyllenhaal": 4.68e-07, + "gyn": 4.68e-07, + "halen": 4.68e-07, + "harmonize": 4.68e-07, + "haskins": 4.68e-07, + "haworth": 4.68e-07, + "hazzard": 4.68e-07, + "hcg": 4.68e-07, + "headwaters": 4.68e-07, + "hennessey": 4.68e-07, + "herbarium": 4.68e-07, + "hewn": 4.68e-07, + "hinata": 4.68e-07, + "honeysuckle": 4.68e-07, + "hoppers": 1.41e-07, + "hoshi": 4.68e-07, + "houseboat": 4.68e-07, + "houthi": 4.68e-07, + "houthis": 4.68e-07, + "hypothalamus": 4.68e-07, + "iea": 4.68e-07, + "ila": 4.68e-07, + "imaged": 4.68e-07, + "immobilized": 4.68e-07, + "imparting": 4.68e-07, + "imperium": 4.68e-07, + "indenture": 4.68e-07, + "inhumans": 4.68e-07, + "inimitable": 4.68e-07, + "instilling": 4.68e-07, + "inversions": 4.68e-07, + "iom": 4.68e-07, + "iplayer": 4.68e-07, + "jada": 4.68e-07, + "jealously": 4.68e-07, + "jervis": 4.68e-07, + "jetta": 4.68e-07, + "jogger": 4.68e-07, + "jumpy": 4.68e-07, + "justinian": 4.68e-07, + "kampf": 4.68e-07, + "kandi": 4.68e-07, + "karlsruhe": 4.68e-07, + "kenmore": 4.68e-07, + "keogh": 4.68e-07, + "kierkegaard": 4.68e-07, + "kildare": 4.68e-07, + "kingman": 4.68e-07, + "knockouts": 4.68e-07, + "kroner": 4.68e-07, + "lacerations": 4.68e-07, + "lacs": 4.68e-07, + "ladybug": 4.68e-07, + "latif": 4.68e-07, + "lauer": 4.68e-07, + "layover": 4.68e-07, + "leathers": 4.68e-07, + "leveson": 4.68e-07, + "lichfield": 4.68e-07, + "liens": 4.68e-07, + "littlest": 4.68e-07, + "loath": 4.68e-07, + "longhorn": 4.68e-07, + "loopy": 4.68e-07, + "lun": 4.68e-07, + "maeve": 4.68e-07, + "magdalen": 4.68e-07, + "maidan": 4.68e-07, + "mair": 4.68e-07, + "mang": 4.68e-07, + "manifestly": 4.68e-07, + "manmohan": 4.68e-07, + "masa": 4.68e-07, + "matcha": 4.68e-07, + "matchbox": 4.68e-07, + "mathilde": 4.68e-07, + "mdr": 4.68e-07, + "mercia": 4.68e-07, + "mercies": 4.68e-07, + "mervyn": 4.68e-07, + "metamorphic": 4.68e-07, + "methuen": 4.68e-07, + "mews": 4.68e-07, + "minimums": 4.68e-07, + "modded": 4.68e-07, + "mongoose": 4.68e-07, + "monza": 4.68e-07, + "motility": 4.68e-07, + "moz": 4.68e-07, + "mucosa": 4.68e-07, + "munroe": 4.68e-07, + "mused": 4.68e-07, + "napoleons": 6.76e-08, + "nashua": 4.68e-07, + "natalya": 4.68e-07, + "naysayers": 4.68e-07, + "netizens": 4.68e-07, + "neuromuscular": 4.68e-07, + "nme": 4.68e-07, + "noblemen": 4.68e-07, + "nobu": 4.68e-07, + "nolans": 5.37e-08, + "nome": 4.68e-07, + "norths": 1.23e-07, + "northridge": 4.68e-07, + "nta": 4.68e-07, + "nunez": 4.68e-07, + "obeys": 4.68e-07, + "obsolescence": 4.68e-07, + "obstetrician": 4.68e-07, + "occ": 4.68e-07, + "oceanside": 4.68e-07, + "ogilvy": 4.68e-07, + "ordinal": 4.68e-07, + "outgrow": 4.68e-07, + "outsmart": 4.68e-07, + "overcooked": 4.68e-07, + "overrides": 4.68e-07, + "overstate": 4.68e-07, + "oxnard": 4.68e-07, + "parables": 4.68e-07, + "particulates": 4.68e-07, + "pashtun": 4.68e-07, + "pcbs": 4.68e-07, + "penile": 4.68e-07, + "perfusion": 4.68e-07, + "pessimist": 4.68e-07, + "physiotherapist": 4.68e-07, + "piecing": 4.68e-07, + "placards": 4.68e-07, + "plaguing": 4.68e-07, + "plantain": 4.68e-07, + "podcasting": 4.68e-07, + "poms": 4.68e-07, + "porky": 4.68e-07, + "poser": 4.68e-07, + "ppt": 4.68e-07, + "preschoolers": 4.68e-07, + "pronounces": 4.68e-07, + "pullin": 4.68e-07, + "pyeongchang": 4.68e-07, + "pylon": 4.68e-07, + "quantifying": 4.68e-07, + "quip": 4.68e-07, + "radishes": 4.68e-07, + "rayburn": 4.68e-07, + "recife": 4.68e-07, + "recyclable": 4.68e-07, + "redirecting": 4.68e-07, + "reenactment": 4.68e-07, + "refit": 4.68e-07, + "reiterating": 4.68e-07, + "rejuvenate": 4.68e-07, + "relaunched": 4.68e-07, + "renard": 4.68e-07, + "renderings": 4.68e-07, + "renton": 4.68e-07, + "repaying": 4.68e-07, + "rereading": 4.68e-07, + "resellers": 4.68e-07, + "respirator": 4.68e-07, + "resplendent": 4.68e-07, + "restated": 4.68e-07, + "revitalized": 4.68e-07, + "rhythmically": 4.68e-07, + "rigour": 4.68e-07, + "rileys": 4.68e-07, + "romani": 4.68e-07, + "roomy": 4.68e-07, + "rowena": 4.68e-07, + "rsc": 4.68e-07, + "rtc": 4.68e-07, + "rti": 4.68e-07, + "rulebook": 4.68e-07, + "salvia": 4.68e-07, + "saps": 1.02e-07, + "scm": 4.68e-07, + "seaton": 4.68e-07, + "seduces": 4.68e-07, + "seeps": 4.68e-07, + "segregate": 4.68e-07, + "seminaries": 4.68e-07, + "sfc": 4.68e-07, + "shaftesbury": 4.68e-07, + "shhhh": 4.68e-07, + "signer": 4.68e-07, + "signet": 4.68e-07, + "silicate": 4.68e-07, + "singlet": 4.68e-07, + "sirs": 8.13e-08, + "skewer": 4.68e-07, + "sloths": 4.68e-07, + "slugging": 4.68e-07, + "snares": 4.68e-07, + "soldered": 4.68e-07, + "spammers": 4.68e-07, + "spastic": 4.68e-07, + "specks": 1.23e-08, + "spina": 4.68e-07, + "squall": 4.68e-07, + "sst": 4.68e-07, + "stabilizers": 4.68e-07, + "starlet": 4.68e-07, + "stayin": 4.68e-07, + "steinbeck": 4.68e-07, + "stinson": 4.68e-07, + "stockpiles": 4.68e-07, + "stoners": 6.61e-08, + "stranding": 4.68e-07, + "strangeness": 4.68e-07, + "stratum": 4.68e-07, + "strenuously": 4.68e-07, + "strove": 4.68e-07, + "surmise": 4.68e-07, + "susana": 4.68e-07, + "swindle": 4.68e-07, + "swirled": 4.68e-07, + "swordfish": 4.68e-07, + "swot": 4.68e-07, + "takings": 4.68e-07, + "talkers": 4.68e-07, + "tcs": 4.68e-07, + "tegan": 4.68e-07, + "tempore": 4.68e-07, + "tentacle": 4.68e-07, + "terse": 4.68e-07, + "thackeray": 4.68e-07, + "thales": 4.68e-07, + "thawing": 4.68e-07, + "thermonuclear": 4.68e-07, + "thinnest": 4.68e-07, + "thrace": 4.68e-07, + "timeliness": 4.68e-07, + "tincture": 4.68e-07, + "tio": 4.68e-07, + "tivoli": 4.68e-07, + "tmp": 4.68e-07, + "tombstones": 4.68e-07, + "tonto": 4.68e-07, + "tooting": 4.68e-07, + "topps": 4.68e-07, + "tora": 4.68e-07, + "torments": 4.68e-07, + "traitorous": 4.68e-07, + "transact": 4.68e-07, + "trawler": 4.68e-07, + "triumphantly": 4.68e-07, + "trustworthiness": 4.68e-07, + "tsx": 4.68e-07, + "tuan": 4.68e-07, + "tuc": 4.68e-07, + "tunbridge": 4.68e-07, + "turkic": 4.68e-07, + "turnips": 4.68e-07, + "tuskegee": 4.68e-07, + "ubers": 1.05e-07, + "ultras": 4.68e-07, + "unadulterated": 4.68e-07, + "unbelievers": 4.68e-07, + "undeclared": 4.68e-07, + "undercurrent": 4.68e-07, + "undergrowth": 4.68e-07, + "underpin": 4.68e-07, + "unseemly": 4.68e-07, + "unsympathetic": 4.68e-07, + "unyielding": 4.68e-07, + "upheavals": 4.68e-07, + "urbanized": 4.68e-07, + "usages": 4.68e-07, + "vacuuming": 4.68e-07, + "vergara": 4.68e-07, + "vers": 4.68e-07, + "vesuvius": 4.68e-07, + "videography": 4.68e-07, + "viejo": 4.68e-07, + "wale": 4.68e-07, + "wallowing": 4.68e-07, + "wavered": 4.68e-07, + "wench": 4.68e-07, + "westin": 4.68e-07, + "wexler": 4.68e-07, + "whoevers": 4.68e-07, + "wiggles": 4.68e-07, + "wilberforce": 4.68e-07, + "wilfully": 4.68e-07, + "wirelessly": 4.68e-07, + "witchs": 4.68e-07, + "woking": 4.68e-07, + "woodhead": 4.68e-07, + "worsens": 4.68e-07, + "xxii": 4.68e-07, + "yeshiva": 4.68e-07, + "zany": 4.68e-07, + "zedd": 4.68e-07, + "zeno": 4.68e-07, + "zucker": 4.68e-07, + "aau": 4.57e-07, + "abalone": 4.57e-07, + "abdicate": 4.57e-07, + "accosted": 4.57e-07, + "adjournment": 4.57e-07, + "admonished": 4.57e-07, + "affable": 4.57e-07, + "aficionados": 4.57e-07, + "aggressors": 4.57e-07, + "airbrush": 4.57e-07, + "airsoft": 4.57e-07, + "alarmingly": 4.57e-07, + "algonquin": 4.57e-07, + "alon": 4.57e-07, + "alopecia": 4.57e-07, + "alzheimer": 4.57e-07, + "ander": 4.57e-07, + "anja": 4.57e-07, + "annika": 4.57e-07, + "apocryphal": 4.57e-07, + "arguable": 4.57e-07, + "arianna": 4.57e-07, + "aru": 4.57e-07, + "asghar": 4.57e-07, + "ashworth": 4.57e-07, + "assembles": 4.57e-07, + "avowed": 4.57e-07, + "bahama": 4.57e-07, + "baldness": 4.57e-07, + "bamford": 4.57e-07, + "bathhouse": 4.57e-07, + "bayonne": 4.57e-07, + "beekeeping": 4.57e-07, + "beltran": 4.57e-07, + "bennington": 4.57e-07, + "berk": 4.57e-07, + "bide": 4.57e-07, + "biotic": 4.57e-07, + "bisexuality": 4.57e-07, + "bismuth": 4.57e-07, + "bitters": 4.57e-07, + "biweekly": 4.57e-07, + "bizarrely": 4.57e-07, + "blacker": 4.57e-07, + "blemishes": 4.57e-07, + "bloomed": 4.57e-07, + "bloomer": 4.57e-07, + "bmo": 4.57e-07, + "boleyn": 4.57e-07, + "bolshoi": 4.57e-07, + "boulevards": 4.57e-07, + "brags": 4.57e-07, + "brainwash": 4.57e-07, + "breadwinner": 4.57e-07, + "bridgend": 4.57e-07, + "bridgestone": 4.57e-07, + "bulbous": 4.57e-07, + "bunbury": 4.57e-07, + "butternut": 4.57e-07, + "butting": 4.57e-07, + "cambria": 4.57e-07, + "capa": 4.57e-07, + "capillaries": 4.57e-07, + "carcinogens": 4.57e-07, + "cardiomyopathy": 4.57e-07, + "caregiving": 4.57e-07, + "carpeted": 4.57e-07, + "casas": 4.57e-07, + "cea": 4.57e-07, + "cerro": 4.57e-07, + "chaka": 4.57e-07, + "charly": 4.57e-07, + "chastised": 4.57e-07, + "cie": 4.57e-07, + "cin": 4.57e-07, + "circuses": 4.57e-07, + "clank": 4.57e-07, + "classifier": 4.57e-07, + "cliques": 4.57e-07, + "clp": 4.57e-07, + "combinatorial": 4.57e-07, + "compensates": 4.57e-07, + "constitutive": 4.57e-07, + "coolly": 4.57e-07, + "copping": 4.57e-07, + "cormier": 4.57e-07, + "cornering": 4.57e-07, + "coronal": 4.57e-07, + "counterweight": 4.57e-07, + "coupler": 4.57e-07, + "courtesan": 4.57e-07, + "cristobal": 4.57e-07, + "cuck": 4.57e-07, + "curable": 4.57e-07, + "curative": 4.57e-07, + "cushy": 4.57e-07, + "cysteine": 4.57e-07, + "dalmatian": 4.57e-07, + "danilo": 4.57e-07, + "darin": 4.57e-07, + "darkroom": 4.57e-07, + "daviss": 4.57e-07, + "decentralised": 4.57e-07, + "deciphering": 4.57e-07, + "defibrillator": 4.57e-07, + "desirability": 4.57e-07, + "deuterium": 4.57e-07, + "dietz": 4.57e-07, + "diluting": 4.57e-07, + "diplo": 4.57e-07, + "disconnection": 4.57e-07, + "disenchanted": 4.57e-07, + "distillers": 4.57e-07, + "dodgeball": 4.57e-07, + "dodges": 5.25e-08, + "donalds": 9.12e-08, + "downwind": 4.57e-07, + "drago": 4.57e-07, + "dri": 4.57e-07, + "dropouts": 4.57e-07, + "duckling": 4.57e-07, + "dunked": 4.57e-07, + "eac": 4.57e-07, + "ectopic": 4.57e-07, + "educates": 4.57e-07, + "elbert": 4.57e-07, + "elmira": 4.57e-07, + "endoscopic": 4.57e-07, + "engulf": 4.57e-07, + "enrollees": 4.57e-07, + "enrollments": 4.57e-07, + "enthralling": 4.57e-07, + "epping": 4.57e-07, + "equaled": 4.57e-07, + "equivalency": 4.57e-07, + "erc": 4.57e-07, + "essayist": 4.57e-07, + "excavate": 4.57e-07, + "exceptionalism": 4.57e-07, + "exchangers": 4.57e-07, + "excreted": 4.57e-07, + "fallback": 4.57e-07, + "faris": 4.57e-07, + "faroe": 4.57e-07, + "farsi": 4.57e-07, + "fess": 4.57e-07, + "feu": 4.57e-07, + "fib": 4.57e-07, + "fico": 4.57e-07, + "filename": 4.57e-07, + "finsbury": 4.57e-07, + "firebird": 4.57e-07, + "flings": 4.57e-07, + "foreheads": 4.57e-07, + "forgeries": 4.57e-07, + "forsythe": 4.57e-07, + "fossilized": 4.57e-07, + "fournier": 4.57e-07, + "franca": 4.57e-07, + "franchised": 4.57e-07, + "fraudsters": 4.57e-07, + "freddys": 4.57e-07, + "fromm": 4.57e-07, + "fsc": 4.57e-07, + "fte": 4.57e-07, + "gaffe": 4.57e-07, + "gallatin": 4.57e-07, + "gard": 4.57e-07, + "gargantuan": 4.57e-07, + "gavel": 4.57e-07, + "geometries": 4.57e-07, + "ghosted": 4.57e-07, + "glens": 1.2e-07, + "glitz": 4.57e-07, + "goalies": 6.03e-08, + "godhead": 4.57e-07, + "godlike": 4.57e-07, + "goofing": 4.57e-07, + "goverment": 4.57e-07, + "goya": 4.57e-07, + "grates": 4.57e-07, + "gravestone": 4.57e-07, + "gridiron": 4.57e-07, + "grohl": 4.57e-07, + "grp": 4.57e-07, + "grupo": 4.57e-07, + "haggis": 4.57e-07, + "hainan": 4.57e-07, + "hamad": 4.57e-07, + "hangings": 4.57e-07, + "headdress": 4.57e-07, + "heli": 4.57e-07, + "hemmed": 4.57e-07, + "hgh": 4.57e-07, + "higuain": 4.57e-07, + "hoarder": 4.57e-07, + "hoarse": 4.57e-07, + "holyoke": 4.57e-07, + "homebrew": 4.57e-07, + "homebuyers": 4.57e-07, + "hoppy": 4.57e-07, + "howells": 8.71e-08, + "hts": 4.57e-07, + "hydrographic": 4.57e-07, + "iago": 4.57e-07, + "icebergs": 4.57e-07, + "icelands": 4.57e-07, + "illegality": 4.57e-07, + "imperious": 4.57e-07, + "implored": 4.57e-07, + "indore": 4.57e-07, + "industrialised": 4.57e-07, + "infanticide": 4.57e-07, + "infestations": 4.57e-07, + "ingraham": 4.57e-07, + "injectors": 4.57e-07, + "injects": 4.57e-07, + "ino": 4.57e-07, + "inoculation": 4.57e-07, + "inordinate": 4.57e-07, + "inquires": 4.57e-07, + "insensitivity": 4.57e-07, + "insincere": 4.57e-07, + "instigator": 4.57e-07, + "insubordination": 4.57e-07, + "intercity": 4.57e-07, + "iras": 1.95e-07, + "isc": 4.57e-07, + "isotopic": 4.57e-07, + "iver": 4.57e-07, + "ivey": 4.57e-07, + "jal": 4.57e-07, + "jeopardizing": 4.57e-07, + "joakim": 4.57e-07, + "joggers": 4.57e-07, + "joh": 4.57e-07, + "johnstown": 4.57e-07, + "josep": 4.57e-07, + "karel": 4.57e-07, + "kebabs": 4.57e-07, + "khomeini": 4.57e-07, + "klinger": 4.57e-07, + "koalas": 4.57e-07, + "kodiak": 4.57e-07, + "kook": 4.57e-07, + "kronos": 4.57e-07, + "kunming": 4.57e-07, + "ladle": 4.57e-07, + "launchpad": 4.57e-07, + "laundered": 4.57e-07, + "laundromat": 4.57e-07, + "lavinia": 4.57e-07, + "lavrov": 4.57e-07, + "laxative": 4.57e-07, + "laxatives": 4.57e-07, + "leeward": 4.57e-07, + "lentil": 4.57e-07, + "lepage": 4.57e-07, + "lewisham": 4.57e-07, + "liaisons": 4.57e-07, + "lifeguards": 4.57e-07, + "lionsgate": 4.57e-07, + "liston": 4.57e-07, + "litters": 4.57e-07, + "lma": 4.57e-07, + "loca": 4.57e-07, + "lolo": 4.57e-07, + "lusaka": 4.57e-07, + "lustful": 4.57e-07, + "lustrous": 4.57e-07, + "macintyre": 4.57e-07, + "macroscopic": 4.57e-07, + "mahindra": 4.57e-07, + "maines": 9.33e-08, + "malden": 4.57e-07, + "marbled": 4.57e-07, + "margery": 4.57e-07, + "marten": 4.57e-07, + "materia": 4.57e-07, + "maxime": 4.57e-07, + "mbeki": 4.57e-07, + "mccollum": 4.57e-07, + "mcconaughey": 4.57e-07, + "mcmurray": 4.57e-07, + "meaner": 4.57e-07, + "medway": 4.57e-07, + "meetups": 4.57e-07, + "mensa": 4.57e-07, + "mignon": 4.57e-07, + "millicent": 4.57e-07, + "milt": 4.57e-07, + "mlg": 4.57e-07, + "moda": 4.57e-07, + "modric": 4.57e-07, + "morsi": 4.57e-07, + "morten": 4.57e-07, + "mosby": 4.57e-07, + "mosh": 4.57e-07, + "mosses": 4.57e-07, + "mozarts": 4.57e-07, + "muellers": 4.57e-07, + "mumbles": 4.57e-07, + "nabil": 4.57e-07, + "nationalisation": 4.57e-07, + "ncs": 4.57e-07, + "ndtv": 4.57e-07, + "newscast": 4.57e-07, + "nex": 4.57e-07, + "nfs": 4.57e-07, + "nicu": 4.57e-07, + "nighter": 4.57e-07, + "nir": 4.57e-07, + "nonverbal": 4.57e-07, + "nui": 4.57e-07, + "oakville": 4.57e-07, + "observatories": 4.57e-07, + "ooc": 4.57e-07, + "orchestrate": 4.57e-07, + "ordovician": 4.57e-07, + "otaku": 4.57e-07, + "ovechkin": 4.57e-07, + "overprotective": 4.57e-07, + "panache": 4.57e-07, + "panelist": 4.57e-07, + "paracetamol": 4.57e-07, + "paralyzing": 4.57e-07, + "parkin": 4.57e-07, + "parthenon": 4.57e-07, + "participle": 4.57e-07, + "pastimes": 4.57e-07, + "pathetically": 4.57e-07, + "pathophysiology": 4.57e-07, + "pauli": 4.57e-07, + "pdfs": 4.57e-07, + "pedantic": 4.57e-07, + "peered": 4.57e-07, + "pegging": 4.57e-07, + "peo": 4.57e-07, + "perthshire": 4.57e-07, + "perturbation": 4.57e-07, + "pha": 4.57e-07, + "phage": 4.57e-07, + "phallic": 4.57e-07, + "phobias": 4.57e-07, + "phonology": 4.57e-07, + "pickings": 4.57e-07, + "pima": 4.57e-07, + "pimping": 4.57e-07, + "pino": 4.57e-07, + "plateaus": 4.57e-07, + "pml": 4.57e-07, + "pocketbook": 4.57e-07, + "polymeric": 4.57e-07, + "portugals": 4.57e-07, + "ppr": 4.57e-07, + "precludes": 4.57e-07, + "prescient": 4.57e-07, + "procurator": 4.57e-07, + "prophesy": 4.57e-07, + "prouder": 4.57e-07, + "puffin": 4.57e-07, + "pumas": 5.62e-08, + "punts": 4.57e-07, + "purebred": 4.57e-07, + "purists": 4.57e-07, + "putney": 4.57e-07, + "qaida": 4.57e-07, + "rafferty": 4.57e-07, + "rar": 4.57e-07, + "ratepayers": 4.57e-07, + "recep": 4.57e-07, + "redline": 4.57e-07, + "rednecks": 4.57e-07, + "reefer": 4.57e-07, + "refilled": 4.57e-07, + "refrigerant": 4.57e-07, + "remarry": 4.57e-07, + "resiliency": 4.57e-07, + "retorted": 4.57e-07, + "revivals": 4.57e-07, + "revving": 4.57e-07, + "rhone": 4.57e-07, + "rhp": 4.57e-07, + "ridding": 4.57e-07, + "riddler": 4.57e-07, + "riordan": 4.57e-07, + "ripon": 4.57e-07, + "rit": 4.57e-07, + "rizal": 4.57e-07, + "rockabilly": 4.57e-07, + "rodin": 4.57e-07, + "roshan": 4.57e-07, + "salivary": 4.57e-07, + "saloons": 4.57e-07, + "sandford": 4.57e-07, + "sandor": 4.57e-07, + "sanitarium": 4.57e-07, + "sardine": 4.57e-07, + "sauerkraut": 4.57e-07, + "saville": 4.57e-07, + "sawn": 4.57e-07, + "scheer": 4.57e-07, + "schoolboys": 4.57e-07, + "seafloor": 4.57e-07, + "sedimentation": 4.57e-07, + "sequestered": 4.57e-07, + "sharpton": 4.57e-07, + "shavings": 4.57e-07, + "shek": 4.57e-07, + "shing": 4.57e-07, + "shirk": 4.57e-07, + "shitless": 4.57e-07, + "shoves": 4.57e-07, + "shrieks": 4.57e-07, + "shriver": 4.57e-07, + "skewers": 4.57e-07, + "slav": 4.57e-07, + "sleepwalking": 4.57e-07, + "slinky": 4.57e-07, + "slipknot": 4.57e-07, + "smirking": 4.57e-07, + "snd": 4.57e-07, + "snorkeling": 4.57e-07, + "snuggled": 4.57e-07, + "soames": 4.57e-07, + "softens": 4.57e-07, + "solon": 4.57e-07, + "speedster": 4.57e-07, + "spellbound": 4.57e-07, + "spiel": 4.57e-07, + "splint": 4.57e-07, + "spunk": 4.57e-07, + "squinting": 4.57e-07, + "squirming": 4.57e-07, + "statham": 4.57e-07, + "stc": 4.57e-07, + "stepan": 4.57e-07, + "stethoscope": 4.57e-07, + "stoops": 4.57e-07, + "strident": 4.57e-07, + "superstore": 4.57e-07, + "sutcliffe": 4.57e-07, + "svg": 4.57e-07, + "swank": 4.57e-07, + "swerving": 4.57e-07, + "swipes": 4.57e-07, + "syfy": 4.57e-07, + "syriac": 4.57e-07, + "tacks": 4.57e-07, + "takumi": 4.57e-07, + "tans": 1.66e-07, + "techcrunch": 4.57e-07, + "tendering": 4.57e-07, + "tenses": 4.57e-07, + "thay": 4.57e-07, + "thicc": 4.57e-07, + "thinkpad": 4.57e-07, + "thors": 6.46e-08, + "tilbury": 4.57e-07, + "tilda": 4.57e-07, + "toasts": 4.57e-07, + "tobey": 4.57e-07, + "tolkiens": 4.57e-07, + "tolling": 4.57e-07, + "tomi": 4.57e-07, + "torts": 4.57e-07, + "tradeoff": 4.57e-07, + "trapp": 4.57e-07, + "treadwell": 4.57e-07, + "tritium": 4.57e-07, + "tsn": 4.57e-07, + "tsu": 4.57e-07, + "tubby": 4.57e-07, + "tubers": 4.57e-07, + "tutti": 4.57e-07, + "twill": 4.57e-07, + "twinks": 4.57e-07, + "uavs": 4.57e-07, + "ubiquity": 4.57e-07, + "udall": 4.57e-07, + "unaccountable": 4.57e-07, + "unaffordable": 4.57e-07, + "underfoot": 4.57e-07, + "undrafted": 4.57e-07, + "unevenly": 4.57e-07, + "ung": 4.57e-07, + "unknowable": 4.57e-07, + "unreachable": 4.57e-07, + "unsealed": 4.57e-07, + "upc": 4.57e-07, + "upswing": 4.57e-07, + "urbanisation": 4.57e-07, + "uxbridge": 4.57e-07, + "valdes": 4.57e-07, + "varun": 4.57e-07, + "vastness": 4.57e-07, + "veganism": 4.57e-07, + "velasquez": 4.57e-07, + "verdun": 4.57e-07, + "vickie": 4.57e-07, + "vincennes": 4.57e-07, + "vogt": 4.57e-07, + "vou": 4.57e-07, + "waddell": 4.57e-07, + "wags": 4.57e-07, + "waikiki": 4.57e-07, + "waistcoat": 4.57e-07, + "wald": 4.57e-07, + "wankers": 4.57e-07, + "warburg": 4.57e-07, + "weeknd": 4.57e-07, + "wheelbarrow": 4.57e-07, + "whipple": 4.57e-07, + "wic": 4.57e-07, + "wrangling": 4.57e-07, + "yara": 4.57e-07, + "yawns": 4.57e-07, + "yellen": 4.57e-07, + "yost": 4.57e-07, + "yousef": 4.57e-07, + "yuna": 4.57e-07, + "zn": 4.57e-07, + "abacus": 4.47e-07, + "abbotsford": 4.47e-07, + "abkhazia": 4.47e-07, + "abolitionists": 4.47e-07, + "absorbers": 4.47e-07, + "acct": 4.47e-07, + "acetic": 4.47e-07, + "aed": 4.47e-07, + "affidavits": 4.47e-07, + "afr": 4.47e-07, + "agape": 4.47e-07, + "agh": 4.47e-07, + "ailes": 4.47e-07, + "aimless": 4.47e-07, + "akhtar": 4.47e-07, + "alasdair": 4.47e-07, + "aldous": 4.47e-07, + "aldrin": 4.47e-07, + "aliexpress": 4.47e-07, + "allegiances": 4.47e-07, + "allstate": 4.47e-07, + "alo": 4.47e-07, + "altho": 4.47e-07, + "ambrosia": 4.47e-07, + "americano": 4.47e-07, + "amitabh": 4.47e-07, + "amoral": 4.47e-07, + "anise": 4.47e-07, + "ansar": 4.47e-07, + "aragorn": 4.47e-07, + "argonne": 4.47e-07, + "argumentation": 4.47e-07, + "asphyxiation": 4.47e-07, + "assessors": 5.5e-08, + "astaire": 4.47e-07, + "attn": 4.47e-07, + "auden": 4.47e-07, + "austrias": 4.47e-07, + "avs": 4.47e-07, + "babyface": 4.47e-07, + "backstroke": 4.47e-07, + "baits": 4.47e-07, + "balsam": 4.47e-07, + "balzac": 4.47e-07, + "barbecues": 4.47e-07, + "barbell": 4.47e-07, + "barbican": 4.47e-07, + "baskin": 4.47e-07, + "bastions": 4.47e-07, + "bellator": 4.47e-07, + "benzodiazepines": 4.47e-07, + "bilingualism": 4.47e-07, + "biodiesel": 4.47e-07, + "blogosphere": 4.47e-07, + "bmt": 4.47e-07, + "bobble": 4.47e-07, + "bobsleigh": 4.47e-07, + "bohr": 4.47e-07, + "bola": 4.47e-07, + "boniface": 4.47e-07, + "boxy": 4.47e-07, + "boynton": 4.47e-07, + "brahmins": 4.47e-07, + "breakwater": 4.47e-07, + "breckenridge": 4.47e-07, + "broiler": 4.47e-07, + "brookhaven": 4.47e-07, + "buckner": 4.47e-07, + "buoyed": 4.47e-07, + "bushnell": 4.47e-07, + "bypasses": 4.47e-07, + "caliper": 4.47e-07, + "canopies": 4.47e-07, + "cargoes": 4.47e-07, + "caron": 4.47e-07, + "carted": 4.47e-07, + "cazorla": 4.47e-07, + "cbr": 4.47e-07, + "celluloid": 4.47e-07, + "chae": 4.47e-07, + "chantilly": 4.47e-07, + "chens": 4.47e-07, + "chimed": 4.47e-07, + "cilia": 4.47e-07, + "cinch": 4.47e-07, + "cirrus": 4.47e-07, + "clarksville": 4.47e-07, + "clatter": 4.47e-07, + "clench": 4.47e-07, + "clos": 4.47e-07, + "closeted": 4.47e-07, + "coinbase": 4.47e-07, + "colic": 4.47e-07, + "collectable": 4.47e-07, + "combats": 4.47e-07, + "commonsense": 4.47e-07, + "conceals": 4.47e-07, + "cond": 4.47e-07, + "confirmations": 4.47e-07, + "confound": 4.47e-07, + "conjugal": 4.47e-07, + "contouring": 4.47e-07, + "conyers": 4.47e-07, + "cornwallis": 4.47e-07, + "corr": 4.47e-07, + "couplings": 4.47e-07, + "courageously": 4.47e-07, + "covalent": 4.47e-07, + "crackhead": 4.47e-07, + "crawfish": 4.47e-07, + "crispr": 4.47e-07, + "cruciate": 4.47e-07, + "cudi": 4.47e-07, + "cufflinks": 4.47e-07, + "cussing": 4.47e-07, + "dandruff": 4.47e-07, + "darmstadt": 4.47e-07, + "dawsons": 4.47e-07, + "deductive": 4.47e-07, + "defile": 4.47e-07, + "defiled": 4.47e-07, + "dela": 4.47e-07, + "deletions": 4.47e-07, + "delved": 4.47e-07, + "depeche": 4.47e-07, + "deplete": 4.47e-07, + "deteriorates": 4.47e-07, + "devalue": 4.47e-07, + "devel": 4.47e-07, + "dido": 4.47e-07, + "dingle": 4.47e-07, + "diphtheria": 4.47e-07, + "disconnects": 4.47e-07, + "dispelled": 4.47e-07, + "dispensers": 4.47e-07, + "disturbingly": 4.47e-07, + "dob": 4.47e-07, + "doer": 4.47e-07, + "doorknob": 4.47e-07, + "doormat": 4.47e-07, + "downsize": 4.47e-07, + "dpr": 4.47e-07, + "dragoon": 4.47e-07, + "dsa": 4.47e-07, + "dwelt": 4.47e-07, + "easygoing": 4.47e-07, + "eben": 4.47e-07, + "elway": 4.47e-07, + "envisioning": 4.47e-07, + "envisions": 4.47e-07, + "epcot": 4.47e-07, + "epidermal": 4.47e-07, + "erratically": 4.47e-07, + "esperanza": 4.47e-07, + "essences": 4.47e-07, + "etna": 4.47e-07, + "etruscan": 4.47e-07, + "excusing": 4.47e-07, + "extraordinaire": 4.47e-07, + "facials": 4.47e-07, + "fallujah": 4.47e-07, + "farcical": 4.47e-07, + "fattest": 4.47e-07, + "fawning": 4.47e-07, + "featherweight": 4.47e-07, + "feigned": 4.47e-07, + "feinberg": 4.47e-07, + "ferraris": 3.39e-07, + "fetishes": 4.47e-07, + "filip": 4.47e-07, + "filippo": 4.47e-07, + "fiske": 4.47e-07, + "flasks": 4.47e-07, + "folate": 4.47e-07, + "folkestone": 4.47e-07, + "forthwith": 4.47e-07, + "frampton": 4.47e-07, + "frankfurter": 4.47e-07, + "fre": 4.47e-07, + "frets": 4.47e-07, + "frome": 4.47e-07, + "fulani": 4.47e-07, + "gassing": 4.47e-07, + "gautam": 4.47e-07, + "gbs": 2e-07, + "geri": 4.47e-07, + "gestalt": 4.47e-07, + "gfs": 2.34e-07, + "gigabyte": 4.47e-07, + "gilda": 4.47e-07, + "gipsy": 4.47e-07, + "giulio": 4.47e-07, + "glint": 4.47e-07, + "gloating": 4.47e-07, + "gnc": 4.47e-07, + "goad": 4.47e-07, + "goddamnit": 4.47e-07, + "grammars": 4.47e-07, + "greenlight": 4.47e-07, + "greig": 4.47e-07, + "greyish": 4.47e-07, + "grog": 4.47e-07, + "groupie": 4.47e-07, + "gruden": 4.47e-07, + "guardia": 4.47e-07, + "haggle": 4.47e-07, + "halcyon": 4.47e-07, + "halos": 6.17e-08, + "handicaps": 4.47e-07, + "handicraft": 4.47e-07, + "harshness": 4.47e-07, + "hashim": 4.47e-07, + "hea": 4.47e-07, + "headscarf": 4.47e-07, + "headshots": 4.47e-07, + "heaping": 4.47e-07, + "heartbeats": 4.47e-07, + "hedwig": 4.47e-07, + "heine": 4.47e-07, + "helios": 4.47e-07, + "hilo": 4.47e-07, + "hons": 4.47e-07, + "hotbed": 4.47e-07, + "hotness": 4.47e-07, + "hoya": 4.47e-07, + "hungarys": 4.47e-07, + "ians": 1.62e-07, + "ifrs": 4.47e-07, + "immunoglobulin": 4.47e-07, + "imperatives": 4.47e-07, + "incinerated": 4.47e-07, + "indented": 4.47e-07, + "inking": 4.47e-07, + "insolence": 4.47e-07, + "instigation": 4.47e-07, + "irresponsibility": 4.47e-07, + "islamism": 4.47e-07, + "jacinto": 4.47e-07, + "jafar": 8.51e-08, + "jamboree": 4.47e-07, + "jeanie": 4.47e-07, + "jeeves": 4.47e-07, + "jeopardized": 4.47e-07, + "jesuss": 4.47e-07, + "jeweller": 4.47e-07, + "jima": 4.47e-07, + "jorgensen": 4.47e-07, + "juilliard": 4.47e-07, + "jumpin": 4.47e-07, + "kao": 4.47e-07, + "karp": 4.47e-07, + "kasey": 4.47e-07, + "kass": 4.47e-07, + "katerina": 4.47e-07, + "kemal": 4.47e-07, + "kigali": 4.47e-07, + "kyra": 4.47e-07, + "lanyard": 4.47e-07, + "leavitt": 4.47e-07, + "lebrons": 1.35e-07, + "leesburg": 4.47e-07, + "lefts": 2.51e-07, + "letdown": 4.47e-07, + "lewinsky": 4.47e-07, + "libretto": 4.47e-07, + "lidar": 4.47e-07, + "lipoprotein": 4.47e-07, + "lod": 4.47e-07, + "lopes": 4.47e-07, + "lotions": 4.47e-07, + "lox": 4.47e-07, + "luckier": 4.47e-07, + "lundy": 4.47e-07, + "lycra": 4.47e-07, + "macclesfield": 4.47e-07, + "machina": 4.47e-07, + "maddow": 4.47e-07, + "madmen": 4.47e-07, + "mahon": 4.47e-07, + "malignancy": 4.47e-07, + "mamie": 4.47e-07, + "mandel": 4.47e-07, + "margarets": 4.47e-07, + "marginalization": 4.47e-07, + "marshy": 4.47e-07, + "masai": 4.47e-07, + "massing": 4.47e-07, + "matriculation": 4.47e-07, + "mcclintock": 4.47e-07, + "mclennan": 4.47e-07, + "mecklenburg": 4.47e-07, + "medallions": 4.47e-07, + "meister": 4.47e-07, + "mercifully": 4.47e-07, + "mersey": 4.47e-07, + "mev": 4.47e-07, + "michelles": 4.47e-07, + "microbiome": 4.47e-07, + "midgets": 4.47e-07, + "mindsets": 4.47e-07, + "ministrys": 4.47e-07, + "minutiae": 4.47e-07, + "misrepresent": 4.47e-07, + "misrepresenting": 4.47e-07, + "mitra": 4.47e-07, + "miyagi": 4.47e-07, + "mmmmm": 4.47e-07, + "mongrel": 4.47e-07, + "morin": 4.47e-07, + "moscows": 4.47e-07, + "mrp": 4.47e-07, + "mtvs": 4.47e-07, + "mulling": 4.47e-07, + "mundy": 4.47e-07, + "munn": 4.47e-07, + "musgrave": 4.47e-07, + "nairn": 4.47e-07, + "nak": 4.47e-07, + "nancys": 4.47e-07, + "nanoscale": 4.47e-07, + "napolitano": 4.47e-07, + "neely": 4.47e-07, + "neha": 4.47e-07, + "neiman": 4.47e-07, + "ner": 4.47e-07, + "nibbling": 4.47e-07, + "nisha": 4.47e-07, + "nita": 4.47e-07, + "nob": 4.47e-07, + "nother": 4.47e-07, + "nuys": 4.47e-07, + "oas": 4.47e-07, + "oberon": 4.47e-07, + "objectors": 4.47e-07, + "octagonal": 4.47e-07, + "ofcom": 4.47e-07, + "oldie": 4.47e-07, + "operable": 4.47e-07, + "organises": 4.47e-07, + "orgasmic": 4.47e-07, + "oui": 4.47e-07, + "outclassed": 4.47e-07, + "overflows": 4.47e-07, + "overhear": 4.47e-07, + "oyo": 4.47e-07, + "pacifism": 4.47e-07, + "padma": 4.47e-07, + "pampering": 4.47e-07, + "paralyze": 4.47e-07, + "parra": 4.47e-07, + "pascoe": 4.47e-07, + "pasquale": 4.47e-07, + "pelts": 4.47e-07, + "perennials": 4.47e-07, + "perp": 4.47e-07, + "perugia": 4.47e-07, + "pham": 4.47e-07, + "phu": 4.47e-07, + "pillsbury": 4.47e-07, + "pineda": 4.47e-07, + "pinewood": 4.47e-07, + "pio": 4.47e-07, + "pjs": 2.4e-07, + "platters": 4.47e-07, + "policymaking": 4.47e-07, + "porting": 4.47e-07, + "postnatal": 4.47e-07, + "powertrain": 4.47e-07, + "predefined": 4.47e-07, + "preferentially": 4.47e-07, + "prelate": 4.47e-07, + "premonition": 4.47e-07, + "presets": 4.47e-07, + "pretenders": 4.47e-07, + "primitives": 4.47e-07, + "propagandists": 4.47e-07, + "proportionality": 4.47e-07, + "proportionately": 4.47e-07, + "provident": 4.47e-07, + "pubescent": 4.47e-07, + "pyro": 4.47e-07, + "qingdao": 4.47e-07, + "quantifiable": 4.47e-07, + "raffaele": 4.47e-07, + "rajah": 4.47e-07, + "ramallah": 4.47e-07, + "randwick": 4.47e-07, + "rata": 4.47e-07, + "ravenna": 4.47e-07, + "rcd": 4.47e-07, + "reaffirming": 4.47e-07, + "recaps": 4.47e-07, + "recharging": 4.47e-07, + "reconsideration": 4.47e-07, + "recur": 4.47e-07, + "recursion": 4.47e-07, + "redheads": 4.47e-07, + "redirects": 4.47e-07, + "redundancies": 4.47e-07, + "registrars": 1.02e-07, + "rehman": 4.47e-07, + "rejoiced": 4.47e-07, + "religiosity": 4.47e-07, + "relished": 4.47e-07, + "reportage": 4.47e-07, + "resents": 4.47e-07, + "resets": 4.47e-07, + "reviled": 4.47e-07, + "rifled": 4.47e-07, + "riva": 4.47e-07, + "robison": 4.47e-07, + "roebuck": 4.47e-07, + "rossetti": 4.47e-07, + "rotator": 4.47e-07, + "rta": 4.47e-07, + "rubbers": 1.12e-08, + "sadist": 4.47e-07, + "sais": 4.47e-07, + "salamanca": 4.47e-07, + "salas": 4.47e-07, + "samara": 4.47e-07, + "sanaa": 2.95e-07, + "sault": 4.47e-07, + "sbi": 4.47e-07, + "scheduler": 4.47e-07, + "schott": 4.47e-07, + "screamer": 4.47e-07, + "scrumptious": 4.47e-07, + "sectioned": 4.47e-07, + "sendai": 4.47e-07, + "shackleton": 4.47e-07, + "shakedown": 4.47e-07, + "shamefully": 4.47e-07, + "shams": 4.47e-07, + "shariah": 7.59e-08, + "shimmy": 4.47e-07, + "shoestring": 4.47e-07, + "shucks": 4.47e-07, + "sired": 4.47e-07, + "sitka": 4.47e-07, + "sleaze": 4.47e-07, + "smg": 4.47e-07, + "smithers": 4.47e-07, + "smoothest": 4.47e-07, + "snags": 4.47e-07, + "snark": 4.47e-07, + "spartanburg": 4.47e-07, + "speculates": 4.47e-07, + "sperry": 4.47e-07, + "spurned": 4.47e-07, + "squamous": 4.47e-07, + "stagnated": 4.47e-07, + "staphylococcus": 4.47e-07, + "stator": 4.47e-07, + "steelhead": 4.47e-07, + "stewed": 4.47e-07, + "stews": 4.47e-07, + "stockman": 4.47e-07, + "stoppages": 4.47e-07, + "straights": 4.47e-07, + "stravinsky": 4.47e-07, + "stuntman": 4.47e-07, + "stylistically": 4.47e-07, + "subjectively": 4.47e-07, + "subpar": 4.47e-07, + "subsumed": 4.47e-07, + "suffixes": 4.47e-07, + "sunbeam": 4.47e-07, + "swanky": 4.47e-07, + "swaths": 4.47e-07, + "symbolizing": 4.47e-07, + "synchrotron": 4.47e-07, + "synthase": 4.47e-07, + "teixeira": 4.47e-07, + "tendulkar": 4.47e-07, + "teton": 4.47e-07, + "thereabouts": 4.47e-07, + "thermos": 4.47e-07, + "thrasher": 4.47e-07, + "timo": 4.47e-07, + "tine": 4.47e-07, + "tinsel": 4.47e-07, + "toppling": 4.47e-07, + "tortuous": 4.47e-07, + "toughen": 4.47e-07, + "trawl": 4.47e-07, + "triglycerides": 4.47e-07, + "triumphal": 4.47e-07, + "tuk": 4.47e-07, + "tulsi": 4.47e-07, + "typology": 4.47e-07, + "tywin": 4.47e-07, + "ultralight": 4.47e-07, + "uncooperative": 4.47e-07, + "underappreciated": 4.47e-07, + "undisciplined": 4.47e-07, + "uninjured": 4.47e-07, + "unlv": 4.47e-07, + "unobstructed": 4.47e-07, + "unobtrusive": 4.47e-07, + "unwitting": 4.47e-07, + "upholstered": 4.47e-07, + "upturned": 4.47e-07, + "usl": 4.47e-07, + "vandenberg": 4.47e-07, + "vaporized": 4.47e-07, + "variances": 4.47e-07, + "vaz": 4.47e-07, + "vela": 4.47e-07, + "vignette": 4.47e-07, + "vulgarity": 4.47e-07, + "wakanda": 4.47e-07, + "wanderlust": 4.47e-07, + "wardrobes": 4.47e-07, + "waterside": 4.47e-07, + "wattage": 4.47e-07, + "waxes": 4.47e-07, + "websters": 6.31e-08, + "wedgwood": 4.47e-07, + "weightless": 4.47e-07, + "wheelhouse": 4.47e-07, + "whiteley": 4.47e-07, + "whitworth": 4.47e-07, + "williamstown": 4.47e-07, + "withstanding": 4.47e-07, + "yucca": 4.47e-07, + "zaha": 4.47e-07, + "zappa": 4.47e-07, + "zx": 4.47e-07, + "abhor": 4.37e-07, + "abreu": 4.37e-07, + "absentia": 4.37e-07, + "accursed": 4.37e-07, + "adaptor": 4.37e-07, + "adj": 4.37e-07, + "aegon": 4.37e-07, + "aeon": 4.37e-07, + "aest": 4.37e-07, + "afterglow": 4.37e-07, + "aghast": 4.37e-07, + "agitate": 4.37e-07, + "ags": 2e-07, + "aight": 4.37e-07, + "alban": 4.37e-07, + "albertas": 4.37e-07, + "alderson": 4.37e-07, + "amador": 4.37e-07, + "amoeba": 4.37e-07, + "andalusia": 4.37e-07, + "annuals": 4.37e-07, + "anselm": 4.37e-07, + "antimatter": 4.37e-07, + "apologetics": 4.37e-07, + "append": 4.37e-07, + "appraisers": 4.37e-07, + "arie": 4.37e-07, + "arnett": 4.37e-07, + "aspirational": 4.37e-07, + "asr": 4.37e-07, + "atmos": 4.37e-07, + "australis": 4.37e-07, + "authoritys": 4.37e-07, + "automaker": 4.37e-07, + "autonomously": 4.37e-07, + "auxiliaries": 4.37e-07, + "awp": 4.37e-07, + "ayrton": 4.37e-07, + "azur": 4.37e-07, + "backpacker": 4.37e-07, + "baidu": 4.37e-07, + "baka": 4.37e-07, + "banbury": 4.37e-07, + "bani": 4.37e-07, + "bankstown": 4.37e-07, + "bared": 4.37e-07, + "bariatric": 4.37e-07, + "basu": 4.37e-07, + "baywatch": 4.37e-07, + "bcg": 4.37e-07, + "bedbugs": 4.37e-07, + "bedded": 4.37e-07, + "bedridden": 4.37e-07, + "berners": 4.37e-07, + "bild": 4.37e-07, + "binance": 4.37e-07, + "birding": 4.37e-07, + "bleh": 4.37e-07, + "blige": 4.37e-07, + "blushed": 4.37e-07, + "bms": 4.37e-07, + "bombarding": 4.37e-07, + "borgia": 4.37e-07, + "boulogne": 4.37e-07, + "bowies": 4.37e-07, + "brecon": 4.37e-07, + "broadcasted": 4.37e-07, + "bronzer": 4.37e-07, + "bukhari": 4.37e-07, + "burnet": 4.37e-07, + "burtons": 4.37e-07, + "buts": 4.37e-07, + "bx": 4.37e-07, + "caen": 4.37e-07, + "caldera": 4.37e-07, + "calvinist": 4.37e-07, + "capitan": 4.37e-07, + "carpe": 4.37e-07, + "carrollton": 4.37e-07, + "caseys": 4.37e-07, + "cataclysm": 4.37e-07, + "catapulted": 4.37e-07, + "cavani": 4.37e-07, + "cdma": 4.37e-07, + "censured": 4.37e-07, + "centrepiece": 4.37e-07, + "chairing": 4.37e-07, + "chaise": 4.37e-07, + "chakras": 4.37e-07, + "characterise": 4.37e-07, + "chautauqua": 4.37e-07, + "chiba": 4.37e-07, + "childers": 4.37e-07, + "chloes": 4.37e-07, + "choc": 4.37e-07, + "choco": 4.37e-07, + "chronograph": 4.37e-07, + "chul": 4.37e-07, + "clairvoyant": 4.37e-07, + "clarita": 4.37e-07, + "clc": 4.37e-07, + "coldness": 4.37e-07, + "coleslaw": 4.37e-07, + "collard": 4.37e-07, + "columbias": 4.37e-07, + "commercialized": 4.37e-07, + "committal": 4.37e-07, + "communicators": 4.37e-07, + "conceptualized": 4.37e-07, + "condensing": 4.37e-07, + "condoned": 4.37e-07, + "connaught": 4.37e-07, + "conniving": 4.37e-07, + "contemptuous": 4.37e-07, + "corroded": 4.37e-07, + "corvallis": 4.37e-07, + "cosmetology": 4.37e-07, + "cotswolds": 4.37e-07, + "counterintelligence": 4.37e-07, + "countertop": 4.37e-07, + "courtier": 4.37e-07, + "crag": 4.37e-07, + "cranium": 4.37e-07, + "crystallization": 4.37e-07, + "csl": 4.37e-07, + "cultivar": 4.37e-07, + "curtiss": 1.38e-07, + "dachshund": 4.37e-07, + "dagenham": 4.37e-07, + "damm": 4.37e-07, + "dampened": 4.37e-07, + "dastardly": 4.37e-07, + "dawns": 3.02e-07, + "deadpan": 4.37e-07, + "decibels": 4.37e-07, + "decried": 4.37e-07, + "deeming": 4.37e-07, + "delinquents": 4.37e-07, + "delorean": 4.37e-07, + "desecrated": 4.37e-07, + "deserting": 4.37e-07, + "detonating": 4.37e-07, + "detours": 4.37e-07, + "dewy": 4.37e-07, + "dilly": 4.37e-07, + "dimitrov": 4.37e-07, + "dings": 4.37e-07, + "dionysus": 4.37e-07, + "discontinuous": 4.37e-07, + "docklands": 4.37e-07, + "dolomite": 4.37e-07, + "dominatrix": 4.37e-07, + "dou": 4.37e-07, + "dov": 4.37e-07, + "doze": 4.37e-07, + "dreamcast": 4.37e-07, + "dwi": 4.37e-07, + "eamon": 4.37e-07, + "eckhart": 4.37e-07, + "eichmann": 4.37e-07, + "elaborates": 4.37e-07, + "elongation": 4.37e-07, + "embiid": 4.37e-07, + "emmerdale": 4.37e-07, + "enlists": 4.37e-07, + "enthused": 4.37e-07, + "erases": 4.37e-07, + "escapism": 4.37e-07, + "euripides": 4.37e-07, + "exasperation": 4.37e-07, + "excelling": 4.37e-07, + "exoskeleton": 4.37e-07, + "expropriation": 4.37e-07, + "extinguishers": 4.37e-07, + "extruded": 4.37e-07, + "falafel": 4.37e-07, + "fallacious": 4.37e-07, + "falstaff": 4.37e-07, + "famines": 4.37e-07, + "fanboys": 4.37e-07, + "fasted": 4.37e-07, + "fastidious": 4.37e-07, + "fealty": 4.37e-07, + "federalists": 4.37e-07, + "fibroblasts": 4.37e-07, + "fido": 4.37e-07, + "filial": 4.37e-07, + "fingerprinting": 4.37e-07, + "fisting": 4.37e-07, + "flaccid": 4.37e-07, + "flagpole": 4.37e-07, + "flamethrower": 4.37e-07, + "florists": 5.25e-08, + "fogg": 4.37e-07, + "footpaths": 4.37e-07, + "forays": 4.37e-07, + "francos": 4.37e-07, + "freda": 4.37e-07, + "freelancing": 4.37e-07, + "freeland": 4.37e-07, + "freezers": 4.37e-07, + "fut": 4.37e-07, + "fv": 4.37e-07, + "gameday": 4.37e-07, + "garnished": 4.37e-07, + "gastronomy": 4.37e-07, + "gauls": 4.37e-07, + "gazprom": 4.37e-07, + "generalised": 4.37e-07, + "generics": 4.37e-07, + "genteel": 4.37e-07, + "geographers": 4.37e-07, + "geotechnical": 4.37e-07, + "gesturing": 4.37e-07, + "ghani": 4.37e-07, + "glenwood": 4.37e-07, + "glib": 4.37e-07, + "glorification": 4.37e-07, + "goshen": 4.37e-07, + "govan": 4.37e-07, + "grands": 4.37e-07, + "gratuity": 4.37e-07, + "grayling": 4.37e-07, + "groningen": 4.37e-07, + "growled": 4.37e-07, + "gumball": 4.37e-07, + "haggling": 4.37e-07, + "hairdressing": 4.37e-07, + "handshakes": 4.37e-07, + "hardens": 1.55e-07, + "hardwoods": 4.37e-07, + "harker": 4.37e-07, + "harkness": 4.37e-07, + "harv": 4.37e-07, + "haye": 4.37e-07, + "hcv": 4.37e-07, + "headstones": 4.37e-07, + "heartbreaker": 4.37e-07, + "hemorrhoids": 4.37e-07, + "henshaw": 4.37e-07, + "herbalife": 4.37e-07, + "herders": 4.37e-07, + "hertford": 4.37e-07, + "hiphop": 4.37e-07, + "histamine": 4.37e-07, + "hitchhiking": 4.37e-07, + "hobbyists": 4.37e-07, + "holocene": 4.37e-07, + "hoosier": 4.37e-07, + "hrm": 4.37e-07, + "hsa": 4.37e-07, + "hst": 4.37e-07, + "humanely": 4.37e-07, + "hustled": 4.37e-07, + "huw": 4.37e-07, + "hynes": 4.37e-07, + "hyphen": 4.37e-07, + "ides": 1.91e-08, + "igloo": 4.37e-07, + "imessage": 4.37e-07, + "impregnable": 4.37e-07, + "impressionism": 4.37e-07, + "incredibles": 4.37e-07, + "indecency": 4.37e-07, + "indentation": 4.37e-07, + "inebriated": 4.37e-07, + "inexorably": 4.37e-07, + "insipid": 4.37e-07, + "intercollegiate": 4.37e-07, + "interdependent": 4.37e-07, + "itineraries": 4.37e-07, + "jamaicans": 4.37e-07, + "jessup": 4.37e-07, + "jewellers": 4.37e-07, + "jiffy": 4.37e-07, + "jor": 4.37e-07, + "jpl": 4.37e-07, + "jpn": 4.37e-07, + "kamara": 4.37e-07, + "kanpur": 4.37e-07, + "karting": 4.37e-07, + "karzai": 4.37e-07, + "keir": 4.37e-07, + "kemper": 4.37e-07, + "kenwood": 4.37e-07, + "ketone": 4.37e-07, + "kf": 4.37e-07, + "kiko": 4.37e-07, + "kimber": 4.37e-07, + "kingsbury": 4.37e-07, + "knackered": 4.37e-07, + "komodo": 4.37e-07, + "ktm": 4.37e-07, + "kunis": 4.37e-07, + "lagi": 4.37e-07, + "lah": 4.37e-07, + "lancers": 4.37e-07, + "lapland": 4.37e-07, + "leaded": 4.37e-07, + "lhasa": 4.37e-07, + "lhc": 4.37e-07, + "lightroom": 4.37e-07, + "lilys": 4.37e-07, + "lingard": 4.37e-07, + "livy": 4.37e-07, + "loaning": 4.37e-07, + "lofts": 4.37e-07, + "loi": 4.37e-07, + "lomond": 4.37e-07, + "lorena": 4.37e-07, + "lossless": 4.37e-07, + "lucan": 4.37e-07, + "lugs": 4.37e-07, + "lyceum": 4.37e-07, + "machinists": 4.37e-07, + "macrae": 4.37e-07, + "madera": 4.37e-07, + "madoff": 4.37e-07, + "maim": 4.37e-07, + "mamba": 4.37e-07, + "mammography": 4.37e-07, + "manchu": 4.37e-07, + "maneuverability": 4.37e-07, + "mangroves": 4.37e-07, + "mankinds": 4.37e-07, + "maples": 4.37e-07, + "marg": 4.37e-07, + "marooned": 4.37e-07, + "martians": 4.37e-07, + "mcallen": 4.37e-07, + "mcelroy": 4.37e-07, + "meena": 4.37e-07, + "merrier": 4.37e-07, + "mesmerising": 4.37e-07, + "mfs": 4.37e-07, + "milliken": 4.37e-07, + "mistrial": 4.37e-07, + "miyamoto": 4.37e-07, + "moffett": 4.37e-07, + "moh": 4.37e-07, + "monicas": 4.37e-07, + "montero": 4.37e-07, + "moorings": 4.37e-07, + "moretti": 4.37e-07, + "mortgaged": 4.37e-07, + "mossy": 4.37e-07, + "murad": 4.37e-07, + "muslin": 4.37e-07, + "myopic": 4.37e-07, + "nabi": 4.37e-07, + "nagel": 4.37e-07, + "naka": 4.37e-07, + "nape": 4.37e-07, + "natively": 4.37e-07, + "natos": 4.37e-07, + "naturals": 4.37e-07, + "nco": 4.37e-07, + "neel": 4.37e-07, + "nehemiah": 4.37e-07, + "nematodes": 4.37e-07, + "netscape": 4.37e-07, + "nida": 4.37e-07, + "nikkei": 4.37e-07, + "nipped": 4.37e-07, + "noncommercial": 4.37e-07, + "nondescript": 4.37e-07, + "norad": 4.37e-07, + "notables": 4.37e-07, + "objectification": 4.37e-07, + "officiate": 4.37e-07, + "ohms": 5.75e-08, + "ope": 4.37e-07, + "optimised": 4.37e-07, + "oracles": 2.63e-07, + "orbitals": 4.37e-07, + "origen": 4.37e-07, + "ornamented": 4.37e-07, + "oso": 4.37e-07, + "ots": 4.37e-07, + "outbid": 4.37e-07, + "outgrowth": 4.37e-07, + "outhouse": 4.37e-07, + "outlawing": 4.37e-07, + "overhanging": 4.37e-07, + "overreach": 4.37e-07, + "pacifier": 4.37e-07, + "pander": 4.37e-07, + "paralleled": 4.37e-07, + "pasts": 4.37e-07, + "patrician": 4.37e-07, + "pederson": 4.37e-07, + "pediatricians": 4.37e-07, + "peeked": 4.37e-07, + "pennsylvanias": 4.37e-07, + "perfumed": 4.37e-07, + "permutation": 4.37e-07, + "phan": 4.37e-07, + "phenol": 4.37e-07, + "philadelphias": 4.37e-07, + "phytoplankton": 4.37e-07, + "pirlo": 4.37e-07, + "plantar": 4.37e-07, + "platos": 4.37e-07, + "pliable": 4.37e-07, + "polemic": 4.37e-07, + "ponderosa": 4.37e-07, + "poppin": 4.37e-07, + "positron": 4.37e-07, + "praia": 4.37e-07, + "prewar": 4.37e-07, + "prodding": 4.37e-07, + "prognostic": 4.37e-07, + "proviso": 4.37e-07, + "prunes": 4.37e-07, + "pubg": 4.37e-07, + "puffer": 4.37e-07, + "purport": 4.37e-07, + "quarts": 4.37e-07, + "quattro": 4.37e-07, + "ques": 4.37e-07, + "queueing": 4.37e-07, + "quint": 4.37e-07, + "radicalization": 4.37e-07, + "radiologist": 4.37e-07, + "ragnarok": 4.37e-07, + "rashford": 4.37e-07, + "raspy": 4.37e-07, + "receivables": 4.37e-07, + "recites": 4.37e-07, + "recuperation": 4.37e-07, + "rediscovering": 4.37e-07, + "redshirt": 4.37e-07, + "referential": 4.37e-07, + "refinements": 4.37e-07, + "reflectors": 4.37e-07, + "regrowth": 4.37e-07, + "reimagined": 4.37e-07, + "reinvention": 4.37e-07, + "reit": 4.37e-07, + "relinquishing": 4.37e-07, + "renunciation": 4.37e-07, + "reparation": 4.37e-07, + "repute": 4.37e-07, + "retardant": 4.37e-07, + "reunites": 4.37e-07, + "revamping": 4.37e-07, + "reversals": 4.37e-07, + "rez": 4.37e-07, + "rhiannon": 4.37e-07, + "ricketts": 4.37e-07, + "ripen": 4.37e-07, + "romaine": 4.37e-07, + "roseville": 4.37e-07, + "rosss": 4.37e-07, + "rounders": 4.37e-07, + "rucksack": 4.37e-07, + "rvs": 1.35e-07, + "sacrilege": 4.37e-07, + "sadr": 4.37e-07, + "safekeeping": 4.37e-07, + "sahel": 4.37e-07, + "sallie": 4.37e-07, + "samaria": 4.37e-07, + "schoolyard": 4.37e-07, + "screenwriters": 4.37e-07, + "scruples": 4.37e-07, + "seafront": 4.37e-07, + "sedatives": 4.37e-07, + "seguin": 4.37e-07, + "selfishly": 4.37e-07, + "serif": 4.37e-07, + "serine": 4.37e-07, + "sexualized": 4.37e-07, + "shaheen": 4.37e-07, + "shallows": 4.37e-07, + "shawshank": 4.37e-07, + "shortfalls": 4.37e-07, + "showrunner": 4.37e-07, + "sickest": 4.37e-07, + "simcoe": 4.37e-07, + "sincerest": 4.37e-07, + "sistine": 4.37e-07, + "snazzy": 4.37e-07, + "snider": 4.37e-07, + "snipes": 4.37e-07, + "sorbet": 4.37e-07, + "soriano": 4.37e-07, + "specialities": 4.37e-07, + "spiny": 4.37e-07, + "spm": 4.37e-07, + "spreader": 4.37e-07, + "squarepants": 4.37e-07, + "ssb": 4.37e-07, + "stanleys": 4.37e-07, + "steepest": 4.37e-07, + "straightaway": 4.37e-07, + "strainer": 4.37e-07, + "sturt": 4.37e-07, + "subsides": 4.37e-07, + "subverted": 4.37e-07, + "sudoku": 4.37e-07, + "suis": 4.37e-07, + "surefire": 4.37e-07, + "surmised": 4.37e-07, + "swabs": 4.37e-07, + "sweetwater": 4.37e-07, + "symantec": 4.37e-07, + "tacitus": 4.37e-07, + "tambourine": 4.37e-07, + "tangy": 4.37e-07, + "tarik": 4.37e-07, + "tch": 4.37e-07, + "tensed": 4.37e-07, + "tft": 4.37e-07, + "throttling": 4.37e-07, + "tics": 4.37e-07, + "tilapia": 4.37e-07, + "timbre": 4.37e-07, + "tiptoe": 4.37e-07, + "tithes": 4.37e-07, + "tongued": 4.37e-07, + "tonkin": 4.37e-07, + "toppers": 4.37e-07, + "torrid": 4.37e-07, + "traumatised": 4.37e-07, + "trawling": 4.37e-07, + "trestle": 4.37e-07, + "troublemakers": 4.37e-07, + "tsunamis": 4.37e-07, + "tuber": 4.37e-07, + "tugged": 4.37e-07, + "ulcerative": 4.37e-07, + "unabridged": 4.37e-07, + "unbearably": 4.37e-07, + "underwriter": 4.37e-07, + "undeserving": 4.37e-07, + "unfunny": 4.37e-07, + "unkempt": 4.37e-07, + "unmitigated": 4.37e-07, + "unneeded": 4.37e-07, + "unsc": 4.37e-07, + "upmarket": 4.37e-07, + "upriver": 4.37e-07, + "uric": 4.37e-07, + "utley": 4.37e-07, + "utterances": 4.37e-07, + "venezuelans": 4.37e-07, + "virat": 4.37e-07, + "vit": 4.37e-07, + "vladivostok": 4.37e-07, + "vole": 4.37e-07, + "volker": 4.37e-07, + "vuelta": 4.37e-07, + "wagners": 4.37e-07, + "wallaby": 4.37e-07, + "warfarin": 4.37e-07, + "warplanes": 4.37e-07, + "warzone": 4.37e-07, + "welds": 4.37e-07, + "westphalia": 4.37e-07, + "whorls": 4.37e-07, + "wilders": 2.29e-07, + "wildwood": 4.37e-07, + "wilkerson": 4.37e-07, + "winder": 4.37e-07, + "wintering": 4.37e-07, + "workaholic": 4.37e-07, + "worthiness": 4.37e-07, + "wrt": 4.37e-07, + "yeager": 4.37e-07, + "yore": 1.78e-08, + "zedong": 4.37e-07, + "zeit": 4.37e-07, + "aamir": 4.27e-07, + "abdi": 4.27e-07, + "aberrations": 4.27e-07, + "addon": 4.27e-07, + "aeg": 4.27e-07, + "aerials": 4.27e-07, + "affix": 4.27e-07, + "afoul": 4.27e-07, + "ahmadinejad": 4.27e-07, + "airlock": 4.27e-07, + "alcatel": 4.27e-07, + "alicante": 4.27e-07, + "allergen": 4.27e-07, + "alleviation": 4.27e-07, + "alphabets": 4.27e-07, + "amara": 4.27e-07, + "ambrosio": 4.27e-07, + "analogs": 4.27e-07, + "anchorman": 4.27e-07, + "angolan": 4.27e-07, + "aphids": 4.27e-07, + "appendices": 4.27e-07, + "applesauce": 4.27e-07, + "aqsa": 4.27e-07, + "aromas": 4.27e-07, + "assuage": 4.27e-07, + "asthmatic": 4.27e-07, + "autopsies": 4.27e-07, + "awed": 4.27e-07, + "bachman": 4.27e-07, + "bailouts": 4.27e-07, + "ballets": 1.78e-07, + "balmoral": 4.27e-07, + "bana": 4.27e-07, + "barreled": 4.27e-07, + "battlegrounds": 4.27e-07, + "bazooka": 4.27e-07, + "beatle": 4.27e-07, + "beckoning": 4.27e-07, + "beckwith": 4.27e-07, + "beebe": 4.27e-07, + "belfort": 4.27e-07, + "bewilderment": 4.27e-07, + "beyer": 4.27e-07, + "bighorn": 4.27e-07, + "biloxi": 4.27e-07, + "biomarker": 4.27e-07, + "bitchin": 4.27e-07, + "bitrate": 4.27e-07, + "bittorrent": 4.27e-07, + "blankly": 4.27e-07, + "bletchley": 4.27e-07, + "blyth": 4.27e-07, + "boho": 4.27e-07, + "bombastic": 4.27e-07, + "braved": 4.27e-07, + "brienne": 4.27e-07, + "brocade": 4.27e-07, + "brt": 4.27e-07, + "btu": 4.27e-07, + "buddhas": 3.72e-07, + "bulldozers": 4.27e-07, + "bunks": 4.27e-07, + "butchering": 4.27e-07, + "cameroonian": 4.27e-07, + "capacitive": 4.27e-07, + "capaldi": 4.27e-07, + "carapace": 4.27e-07, + "carew": 4.27e-07, + "cecile": 4.27e-07, + "cecily": 4.27e-07, + "centurys": 4.27e-07, + "changi": 4.27e-07, + "chapelle": 4.27e-07, + "charlatan": 4.27e-07, + "chatterjee": 4.27e-07, + "checkbook": 4.27e-07, + "chhattisgarh": 4.27e-07, + "chillies": 4.27e-07, + "chim": 4.27e-07, + "chomping": 4.27e-07, + "christen": 4.27e-07, + "christiane": 4.27e-07, + "chucks": 3.24e-07, + "circulates": 4.27e-07, + "cityscape": 4.27e-07, + "clang": 4.27e-07, + "clergymen": 4.27e-07, + "closeup": 4.27e-07, + "clowning": 4.27e-07, + "cmp": 4.27e-07, + "coalesce": 4.27e-07, + "coldwater": 4.27e-07, + "competently": 4.27e-07, + "compresses": 4.27e-07, + "concacaf": 4.27e-07, + "conman": 4.27e-07, + "conning": 4.27e-07, + "constricted": 4.27e-07, + "contrarian": 4.27e-07, + "coped": 4.27e-07, + "cordially": 4.27e-07, + "cormac": 4.27e-07, + "corned": 4.27e-07, + "cornice": 4.27e-07, + "cornwell": 4.27e-07, + "corporeal": 4.27e-07, + "cowering": 4.27e-07, + "creeds": 7.76e-08, + "crepes": 4.27e-07, + "crispin": 4.27e-07, + "criticises": 4.27e-07, + "croats": 4.27e-07, + "crosswalk": 4.27e-07, + "crud": 4.27e-07, + "curation": 4.27e-07, + "curley": 4.27e-07, + "cushman": 4.27e-07, + "cybernetic": 4.27e-07, + "cygnus": 4.27e-07, + "cyndi": 4.27e-07, + "cyrillic": 4.27e-07, + "dsouza": 4.27e-07, + "dampening": 4.27e-07, + "darned": 4.27e-07, + "decaf": 4.27e-07, + "decapitation": 4.27e-07, + "deciphered": 4.27e-07, + "declarative": 4.27e-07, + "dede": 4.27e-07, + "demonstrable": 4.27e-07, + "demonstrative": 4.27e-07, + "despairing": 4.27e-07, + "deviates": 4.27e-07, + "digi": 4.27e-07, + "dillinger": 4.27e-07, + "dinky": 4.27e-07, + "disapproves": 4.27e-07, + "discontinuation": 4.27e-07, + "disliking": 4.27e-07, + "dismemberment": 4.27e-07, + "djing": 4.27e-07, + "dlr": 4.27e-07, + "dmx": 4.27e-07, + "dobby": 4.27e-07, + "doon": 4.27e-07, + "dorman": 4.27e-07, + "downplaying": 4.27e-07, + "doyles": 4.27e-07, + "drawstring": 4.27e-07, + "drunkenly": 4.27e-07, + "dumbbell": 4.27e-07, + "dutiful": 4.27e-07, + "earhart": 4.27e-07, + "earplugs": 4.27e-07, + "earshot": 4.27e-07, + "ecw": 4.27e-07, + "edn": 4.27e-07, + "efi": 4.27e-07, + "eke": 4.27e-07, + "electorates": 4.27e-07, + "elitism": 4.27e-07, + "elven": 4.27e-07, + "emigrant": 4.27e-07, + "enders": 2.57e-07, + "engender": 4.27e-07, + "entente": 4.27e-07, + "enveloping": 4.27e-07, + "escherichia": 4.27e-07, + "etudes": 4.27e-07, + "excavators": 4.27e-07, + "exhausts": 4.27e-07, + "exxonmobil": 4.27e-07, + "factional": 4.27e-07, + "fahey": 4.27e-07, + "felice": 4.27e-07, + "fermenting": 4.27e-07, + "fibromyalgia": 4.27e-07, + "fiftieth": 4.27e-07, + "flacco": 4.27e-07, + "flatbed": 4.27e-07, + "fms": 2.69e-07, + "foals": 4.27e-07, + "footbridge": 4.27e-07, + "forceps": 4.27e-07, + "forecasters": 4.27e-07, + "fos": 4.27e-07, + "frothy": 4.27e-07, + "fucken": 4.27e-07, + "fujitsu": 4.27e-07, + "fume": 4.27e-07, + "gallium": 4.27e-07, + "gantry": 4.27e-07, + "gargoyle": 4.27e-07, + "gaslight": 4.27e-07, + "gastro": 4.27e-07, + "gastroenterology": 4.27e-07, + "gcs": 4.27e-07, + "generalist": 4.27e-07, + "georgi": 4.27e-07, + "germinate": 4.27e-07, + "gershwin": 4.27e-07, + "ghg": 4.27e-07, + "girardi": 4.27e-07, + "gitmo": 4.27e-07, + "glades": 4.27e-07, + "glebe": 4.27e-07, + "glowed": 4.27e-07, + "godard": 4.27e-07, + "goh": 4.27e-07, + "gramps": 4.27e-07, + "granddaughters": 1.07e-07, + "grannies": 4.27e-07, + "gremlin": 4.27e-07, + "grrr": 4.27e-07, + "grudgingly": 4.27e-07, + "gryffindor": 4.27e-07, + "guadeloupe": 4.27e-07, + "gws": 5.89e-08, + "haddad": 4.27e-07, + "hallett": 4.27e-07, + "harbored": 4.27e-07, + "harmonized": 4.27e-07, + "headroom": 4.27e-07, + "hedley": 4.27e-07, + "henan": 4.27e-07, + "heparin": 4.27e-07, + "herded": 4.27e-07, + "hernando": 4.27e-07, + "hgtv": 4.27e-07, + "hikaru": 4.27e-07, + "hilal": 4.27e-07, + "hillel": 4.27e-07, + "hodgkin": 4.27e-07, + "hodor": 4.27e-07, + "hollands": 1.51e-07, + "homily": 4.27e-07, + "hor": 4.27e-07, + "hornby": 4.27e-07, + "humana": 4.27e-07, + "hummingbirds": 4.27e-07, + "humpty": 4.27e-07, + "hustlers": 4.27e-07, + "ibanez": 4.27e-07, + "icbm": 4.27e-07, + "ideation": 4.27e-07, + "iff": 4.27e-07, + "impeccably": 4.27e-07, + "impulsively": 4.27e-07, + "inedible": 4.27e-07, + "inequities": 4.27e-07, + "infinitesimal": 4.27e-07, + "informers": 4.27e-07, + "integrals": 4.27e-07, + "ipods": 4.27e-07, + "isolationist": 4.27e-07, + "iucn": 4.27e-07, + "jailhouse": 4.27e-07, + "jeanine": 4.27e-07, + "jeannette": 4.27e-07, + "jellies": 4.27e-07, + "jetblue": 4.27e-07, + "jubilant": 4.27e-07, + "kain": 4.27e-07, + "kamen": 4.27e-07, + "karat": 4.27e-07, + "karens": 1.23e-07, + "karmic": 4.27e-07, + "keefe": 4.27e-07, + "keener": 4.27e-07, + "keepsake": 4.27e-07, + "kerber": 4.27e-07, + "kilpatrick": 4.27e-07, + "kobo": 4.27e-07, + "kohls": 1.78e-07, + "kono": 4.27e-07, + "krill": 4.27e-07, + "krispy": 4.27e-07, + "krug": 4.27e-07, + "kruse": 4.27e-07, + "laceration": 4.27e-07, + "laplace": 4.27e-07, + "leonards": 1.86e-07, + "libor": 4.27e-07, + "lightened": 4.27e-07, + "liposuction": 4.27e-07, + "literatures": 7.41e-08, + "liven": 4.27e-07, + "lombardo": 4.27e-07, + "longo": 4.27e-07, + "loudon": 4.27e-07, + "lowdown": 4.27e-07, + "loy": 4.27e-07, + "ltr": 4.27e-07, + "lubricated": 4.27e-07, + "lucca": 4.27e-07, + "luk": 4.27e-07, + "lul": 4.27e-07, + "lyricism": 4.27e-07, + "madi": 4.27e-07, + "mages": 5.25e-08, + "maghreb": 4.27e-07, + "mahjong": 4.27e-07, + "maja": 4.27e-07, + "malabar": 4.27e-07, + "malala": 4.27e-07, + "mammary": 4.27e-07, + "maximized": 4.27e-07, + "meer": 4.27e-07, + "menendez": 4.27e-07, + "menopausal": 4.27e-07, + "mers": 4.27e-07, + "metered": 4.27e-07, + "mfg": 4.27e-07, + "mfw": 4.27e-07, + "michonne": 4.27e-07, + "mickeys": 5.62e-08, + "microbe": 4.27e-07, + "midline": 4.27e-07, + "millstone": 4.27e-07, + "mimicry": 4.27e-07, + "mitre": 4.27e-07, + "moonlit": 4.27e-07, + "morningstar": 4.27e-07, + "morphs": 4.27e-07, + "mortis": 4.27e-07, + "mote": 4.27e-07, + "moyer": 4.27e-07, + "multiracial": 4.27e-07, + "munoz": 4.27e-07, + "murchison": 4.27e-07, + "musashi": 4.27e-07, + "mutate": 4.27e-07, + "myeloid": 4.27e-07, + "naik": 4.27e-07, + "naira": 4.27e-07, + "nand": 4.27e-07, + "neglects": 4.27e-07, + "nep": 4.27e-07, + "nervosa": 4.27e-07, + "newsom": 4.27e-07, + "nez": 4.27e-07, + "nickelback": 4.27e-07, + "nimrod": 4.27e-07, + "njpw": 4.27e-07, + "nooooo": 4.27e-07, + "novelties": 4.27e-07, + "novi": 4.27e-07, + "nubian": 4.27e-07, + "nutt": 4.27e-07, + "oakwood": 4.27e-07, + "oblast": 4.27e-07, + "oeuvres": 4.27e-07, + "offhand": 4.27e-07, + "okra": 4.27e-07, + "olney": 4.27e-07, + "omelet": 4.27e-07, + "oozes": 4.27e-07, + "opi": 4.27e-07, + "optometry": 4.27e-07, + "orchestrating": 4.27e-07, + "orwellian": 4.27e-07, + "oscillators": 4.27e-07, + "otp": 4.27e-07, + "outtakes": 4.27e-07, + "pacifica": 4.27e-07, + "paella": 4.27e-07, + "pager": 4.27e-07, + "panicky": 4.27e-07, + "papier": 4.27e-07, + "parasol": 4.27e-07, + "parenthesis": 4.27e-07, + "parser": 4.27e-07, + "partick": 4.27e-07, + "pattison": 4.27e-07, + "peachtree": 4.27e-07, + "peele": 4.27e-07, + "pensive": 4.27e-07, + "performative": 4.27e-07, + "permeate": 4.27e-07, + "persevered": 4.27e-07, + "petticoat": 4.27e-07, + "pheasants": 4.27e-07, + "phenom": 4.27e-07, + "photosynthetic": 4.27e-07, + "pinging": 4.27e-07, + "pinion": 4.27e-07, + "pinter": 4.27e-07, + "pivots": 4.27e-07, + "plenipotentiary": 4.27e-07, + "plotters": 4.27e-07, + "pocono": 4.27e-07, + "pons": 4.27e-07, + "poppers": 4.27e-07, + "posses": 4.27e-07, + "precondition": 4.27e-07, + "preconditions": 4.27e-07, + "premierships": 4.27e-07, + "preppy": 4.27e-07, + "pretensions": 4.27e-07, + "priebus": 4.27e-07, + "professing": 4.27e-07, + "prospector": 4.27e-07, + "psychos": 4.27e-07, + "purvis": 4.27e-07, + "qian": 4.27e-07, + "qual": 4.27e-07, + "quantitatively": 4.27e-07, + "radiative": 4.27e-07, + "rambler": 4.27e-07, + "rance": 4.27e-07, + "rattan": 4.27e-07, + "reactivate": 4.27e-07, + "reapers": 7.76e-08, + "reassembled": 4.27e-07, + "rebalance": 4.27e-07, + "rebooting": 4.27e-07, + "recreates": 4.27e-07, + "refuting": 4.27e-07, + "regress": 4.27e-07, + "reintegration": 4.27e-07, + "rejoining": 4.27e-07, + "renegotiation": 4.27e-07, + "repositioning": 4.27e-07, + "reshaped": 4.27e-07, + "resurface": 4.27e-07, + "retails": 4.27e-07, + "retinue": 4.27e-07, + "rickey": 4.27e-07, + "rnas": 4.27e-07, + "roberson": 4.27e-07, + "rockaway": 4.27e-07, + "rockhampton": 4.27e-07, + "romanesque": 4.27e-07, + "roubles": 4.27e-07, + "rumba": 4.27e-07, + "saatchi": 4.27e-07, + "sallys": 4.27e-07, + "salvaging": 4.27e-07, + "sandi": 4.27e-07, + "saree": 4.27e-07, + "satirist": 4.27e-07, + "schrader": 4.27e-07, + "screenplays": 4.27e-07, + "segundo": 4.27e-07, + "sga": 4.27e-07, + "shaka": 4.27e-07, + "sharpshooter": 4.27e-07, + "shiner": 4.27e-07, + "shrugging": 4.27e-07, + "shrunken": 4.27e-07, + "sidetracked": 4.27e-07, + "silesia": 4.27e-07, + "singlehandedly": 4.27e-07, + "skiff": 4.27e-07, + "skittish": 4.27e-07, + "skopje": 4.27e-07, + "skynet": 4.27e-07, + "slattery": 4.27e-07, + "sleuth": 4.27e-07, + "slocum": 4.27e-07, + "sluice": 4.27e-07, + "smokeless": 4.27e-07, + "solidity": 4.27e-07, + "sorrento": 4.27e-07, + "speciation": 4.27e-07, + "splatoon": 4.27e-07, + "sportsnet": 4.27e-07, + "squaring": 4.27e-07, + "squeamish": 4.27e-07, + "stockade": 4.27e-07, + "stoicism": 4.27e-07, + "stoughton": 4.27e-07, + "straddles": 4.27e-07, + "strasburg": 4.27e-07, + "strontium": 4.27e-07, + "sturm": 4.27e-07, + "sunbury": 4.27e-07, + "superfund": 4.27e-07, + "supposition": 4.27e-07, + "suprised": 4.27e-07, + "svu": 4.27e-07, + "synchronised": 4.27e-07, + "tabasco": 4.27e-07, + "tagore": 4.27e-07, + "tantra": 4.27e-07, + "tarsus": 4.27e-07, + "tasker": 4.27e-07, + "teatro": 4.27e-07, + "theorizing": 4.27e-07, + "thermoplastic": 4.27e-07, + "thessaloniki": 4.27e-07, + "thickly": 4.27e-07, + "thro": 4.27e-07, + "timbuktu": 4.27e-07, + "timeshare": 4.27e-07, + "tino": 4.27e-07, + "tinto": 4.27e-07, + "tipper": 4.27e-07, + "titanfall": 4.27e-07, + "todds": 4.27e-07, + "toiling": 4.27e-07, + "toothbrushes": 4.27e-07, + "townshend": 4.27e-07, + "trailhead": 4.27e-07, + "transvestite": 4.27e-07, + "trask": 4.27e-07, + "trodden": 4.27e-07, + "tsang": 4.27e-07, + "tucks": 4.27e-07, + "turismo": 4.27e-07, + "tussle": 4.27e-07, + "twp": 4.27e-07, + "typist": 4.27e-07, + "tyr": 4.27e-07, + "uhhhh": 4.27e-07, + "uhuru": 4.27e-07, + "unaided": 4.27e-07, + "unbecoming": 4.27e-07, + "universalist": 4.27e-07, + "unmistakably": 4.27e-07, + "unrealized": 4.27e-07, + "unworkable": 4.27e-07, + "uppercut": 4.27e-07, + "uproot": 4.27e-07, + "usenet": 4.27e-07, + "valiantly": 4.27e-07, + "verandah": 4.27e-07, + "vermeer": 4.27e-07, + "villeneuve": 4.27e-07, + "virology": 4.27e-07, + "vivek": 4.27e-07, + "voir": 4.27e-07, + "voor": 4.27e-07, + "vulgaris": 4.27e-07, + "wastage": 4.27e-07, + "waterline": 4.27e-07, + "waxman": 4.27e-07, + "weariness": 4.27e-07, + "weblog": 4.27e-07, + "whalers": 4.27e-07, + "wheelbase": 4.27e-07, + "wholeness": 4.27e-07, + "williston": 4.27e-07, + "wilmer": 4.27e-07, + "wingate": 4.27e-07, + "woolley": 4.27e-07, + "woot": 4.27e-07, + "wrest": 4.27e-07, + "yannick": 4.27e-07, + "zillion": 4.27e-07, + "zona": 4.27e-07, + "zte": 4.27e-07, + "zynga": 4.27e-07, + "aar": 4.17e-07, + "acceptability": 4.17e-07, + "aceh": 4.17e-07, + "adjudged": 4.17e-07, + "adriano": 4.17e-07, + "ahaha": 4.17e-07, + "airbender": 4.17e-07, + "aire": 4.17e-07, + "alb": 4.17e-07, + "alcove": 4.17e-07, + "alger": 4.17e-07, + "alrighty": 4.17e-07, + "amira": 4.17e-07, + "ane": 4.17e-07, + "anesthesiologist": 4.17e-07, + "annualized": 4.17e-07, + "arcana": 4.17e-07, + "architecturally": 4.17e-07, + "ase": 4.17e-07, + "asimov": 4.17e-07, + "aspirant": 4.17e-07, + "assertiveness": 4.17e-07, + "assyrians": 4.17e-07, + "astride": 4.17e-07, + "astrophysicist": 4.17e-07, + "asx": 4.17e-07, + "ateneo": 4.17e-07, + "auerbach": 4.17e-07, + "aut": 4.17e-07, + "autocracy": 4.17e-07, + "autosomal": 4.17e-07, + "awwww": 4.17e-07, + "balloting": 4.17e-07, + "bandar": 4.17e-07, + "baratheon": 4.17e-07, + "basset": 4.17e-07, + "baynes": 4.17e-07, + "beaton": 4.17e-07, + "bestiality": 4.17e-07, + "biracial": 4.17e-07, + "bixby": 4.17e-07, + "ble": 4.17e-07, + "blk": 4.17e-07, + "bluray": 4.17e-07, + "blurs": 6.03e-08, + "blurted": 4.17e-07, + "bodice": 4.17e-07, + "bogdan": 4.17e-07, + "bozo": 4.17e-07, + "brac": 4.17e-07, + "brainy": 4.17e-07, + "braithwaite": 4.17e-07, + "bren": 4.17e-07, + "broach": 4.17e-07, + "broadbent": 4.17e-07, + "bromance": 4.17e-07, + "butane": 4.17e-07, + "bynum": 4.17e-07, + "cabbie": 4.17e-07, + "calcite": 4.17e-07, + "callan": 4.17e-07, + "candied": 4.17e-07, + "cantons": 4.17e-07, + "carbondale": 4.17e-07, + "castiel": 4.17e-07, + "celta": 4.17e-07, + "centrality": 4.17e-07, + "chamomile": 4.17e-07, + "childbearing": 4.17e-07, + "chippy": 4.17e-07, + "chives": 4.17e-07, + "chriss": 6.17e-08, + "chua": 4.17e-07, + "citroen": 4.17e-07, + "clamor": 4.17e-07, + "classless": 4.17e-07, + "clink": 4.17e-07, + "cloaking": 4.17e-07, + "coastlines": 4.17e-07, + "coelho": 4.17e-07, + "cognate": 4.17e-07, + "coking": 4.17e-07, + "colombians": 4.17e-07, + "configuring": 4.17e-07, + "conifers": 4.17e-07, + "connoisseurs": 4.17e-07, + "consoling": 4.17e-07, + "contaminant": 4.17e-07, + "contrition": 4.17e-07, + "converges": 4.17e-07, + "correlating": 4.17e-07, + "cosa": 4.17e-07, + "counterclockwise": 4.17e-07, + "crevice": 4.17e-07, + "crewman": 4.17e-07, + "crockery": 4.17e-07, + "croke": 4.17e-07, + "crusts": 4.17e-07, + "cums": 4.17e-07, + "cusack": 4.17e-07, + "cushioned": 4.17e-07, + "cvd": 4.17e-07, + "dais": 3.55e-08, + "dalhousie": 4.17e-07, + "defector": 4.17e-07, + "deferring": 4.17e-07, + "degeneracy": 4.17e-07, + "delphine": 4.17e-07, + "demoralized": 4.17e-07, + "denali": 4.17e-07, + "devastate": 4.17e-07, + "diesels": 8.91e-08, + "dimming": 4.17e-07, + "disciplining": 4.17e-07, + "disloyalty": 4.17e-07, + "divested": 4.17e-07, + "dll": 4.17e-07, + "dmz": 4.17e-07, + "doers": 4.17e-07, + "dollop": 4.17e-07, + "donatello": 4.17e-07, + "dongle": 4.17e-07, + "donohue": 4.17e-07, + "dosed": 4.17e-07, + "doused": 4.17e-07, + "drapery": 4.17e-07, + "drawdown": 4.17e-07, + "dreadlocks": 4.17e-07, + "dreadnought": 4.17e-07, + "dregs": 4.17e-07, + "driveways": 4.17e-07, + "edgerton": 4.17e-07, + "elissa": 4.17e-07, + "emptive": 4.17e-07, + "enablers": 4.17e-07, + "engendered": 4.17e-07, + "engined": 4.17e-07, + "entranced": 4.17e-07, + "escapades": 4.17e-07, + "escarpment": 4.17e-07, + "esperanto": 4.17e-07, + "eval": 4.17e-07, + "expedia": 4.17e-07, + "expos": 4.17e-07, + "extrinsic": 4.17e-07, + "fabrizio": 4.17e-07, + "facie": 4.17e-07, + "falcone": 4.17e-07, + "fantasizing": 4.17e-07, + "farid": 4.17e-07, + "farthing": 4.17e-07, + "fascinates": 4.17e-07, + "favs": 4.17e-07, + "feigning": 4.17e-07, + "fells": 4.17e-07, + "fenty": 4.17e-07, + "fett": 4.17e-07, + "fie": 4.17e-07, + "finality": 4.17e-07, + "flatbush": 4.17e-07, + "foldable": 4.17e-07, + "forebears": 4.17e-07, + "forestall": 4.17e-07, + "furthered": 4.17e-07, + "garlands": 1.17e-07, + "gatehouse": 4.17e-07, + "generalizing": 4.17e-07, + "gentlemanly": 4.17e-07, + "gesellschaft": 4.17e-07, + "gillett": 4.17e-07, + "giordano": 4.17e-07, + "gloat": 4.17e-07, + "glossed": 4.17e-07, + "glycerin": 4.17e-07, + "gog": 4.17e-07, + "goldeneye": 4.17e-07, + "goldilocks": 4.17e-07, + "goldmine": 4.17e-07, + "goodfellas": 4.17e-07, + "gorgon": 4.17e-07, + "gorillaz": 4.17e-07, + "grayish": 4.17e-07, + "griezmann": 4.17e-07, + "gris": 4.17e-07, + "gros": 4.17e-07, + "groupies": 4.17e-07, + "gurl": 4.17e-07, + "gymnastic": 4.17e-07, + "hahahah": 4.17e-07, + "handcuff": 4.17e-07, + "harbin": 4.17e-07, + "hardwired": 4.17e-07, + "harland": 4.17e-07, + "harpsichord": 4.17e-07, + "harriss": 5.25e-08, + "hashish": 4.17e-07, + "hawaiians": 4.17e-07, + "hematology": 4.17e-07, + "heroically": 4.17e-07, + "highgate": 4.17e-07, + "hindenburg": 4.17e-07, + "hinkley": 4.17e-07, + "histogram": 4.17e-07, + "hmo": 4.17e-07, + "hokey": 4.17e-07, + "husain": 4.17e-07, + "hutu": 4.17e-07, + "hydrochloric": 4.17e-07, + "hydrochloride": 4.17e-07, + "iata": 4.17e-07, + "ibsen": 4.17e-07, + "iep": 4.17e-07, + "ies": 4.17e-07, + "impolite": 4.17e-07, + "inbetween": 4.17e-07, + "infringements": 4.17e-07, + "insomniac": 4.17e-07, + "installers": 4.17e-07, + "interlock": 4.17e-07, + "interventionist": 4.17e-07, + "ionian": 4.17e-07, + "ionized": 4.17e-07, + "irrelevance": 4.17e-07, + "italiano": 4.17e-07, + "itemized": 4.17e-07, + "ivanovic": 4.17e-07, + "jabba": 4.17e-07, + "javanese": 4.17e-07, + "jawline": 4.17e-07, + "jaylen": 4.17e-07, + "jell": 4.17e-07, + "jit": 4.17e-07, + "joann": 4.17e-07, + "kaiju": 4.17e-07, + "kaminsky": 4.17e-07, + "kanan": 4.17e-07, + "karts": 4.17e-07, + "kerouac": 4.17e-07, + "kilgore": 4.17e-07, + "kitt": 4.17e-07, + "koji": 4.17e-07, + "kyoko": 4.17e-07, + "lacroix": 4.17e-07, + "langton": 4.17e-07, + "languishing": 4.17e-07, + "lauryn": 4.17e-07, + "laymen": 4.17e-07, + "layne": 4.17e-07, + "leandro": 4.17e-07, + "leathery": 4.17e-07, + "leclerc": 4.17e-07, + "libertarianism": 4.17e-07, + "lisle": 4.17e-07, + "lll": 5.01e-08, + "loam": 4.17e-07, + "lodi": 4.17e-07, + "lollipops": 4.17e-07, + "luger": 4.17e-07, + "lunges": 4.17e-07, + "lys": 1.15e-08, + "lytton": 4.17e-07, + "machu": 4.17e-07, + "maggies": 4.17e-07, + "maidenhead": 4.17e-07, + "malagasy": 4.17e-07, + "malfoy": 4.17e-07, + "malin": 4.17e-07, + "mammy": 4.17e-07, + "mannings": 7.24e-08, + "manuela": 4.17e-07, + "marlo": 4.17e-07, + "masque": 4.17e-07, + "masseuse": 4.17e-07, + "masson": 4.17e-07, + "matti": 4.17e-07, + "maulana": 4.17e-07, + "mayes": 4.17e-07, + "mcauliffe": 4.17e-07, + "mello": 4.17e-07, + "meltzer": 4.17e-07, + "mendocino": 4.17e-07, + "messer": 4.17e-07, + "meteorologists": 4.17e-07, + "metronome": 4.17e-07, + "metzger": 4.17e-07, + "mha": 4.17e-07, + "midrange": 4.17e-07, + "militaristic": 4.17e-07, + "mimicked": 4.17e-07, + "minimising": 4.17e-07, + "minnow": 4.17e-07, + "mirth": 4.17e-07, + "mitosis": 4.17e-07, + "mnemonic": 4.17e-07, + "mobilise": 4.17e-07, + "mofo": 4.17e-07, + "moonstone": 4.17e-07, + "morel": 4.17e-07, + "morey": 4.17e-07, + "moria": 4.17e-07, + "morningside": 4.17e-07, + "mothering": 4.17e-07, + "motorcyclists": 4.17e-07, + "natsu": 4.17e-07, + "naz": 4.17e-07, + "ndc": 4.17e-07, + "neds": 9.77e-08, + "neet": 4.17e-07, + "negotiates": 4.17e-07, + "nimbus": 4.17e-07, + "nog": 4.17e-07, + "notations": 4.17e-07, + "noyes": 4.17e-07, + "obscures": 4.17e-07, + "odis": 4.17e-07, + "ogilvie": 4.17e-07, + "oomph": 4.17e-07, + "ostracized": 4.17e-07, + "overvalued": 4.17e-07, + "overwork": 4.17e-07, + "pacman": 4.17e-07, + "paintbrush": 4.17e-07, + "passaic": 4.17e-07, + "patil": 4.17e-07, + "pcie": 4.17e-07, + "persecutions": 4.17e-07, + "pestering": 4.17e-07, + "pilkington": 4.17e-07, + "pivoting": 4.17e-07, + "pizzagate": 4.17e-07, + "plausibly": 4.17e-07, + "plebs": 4.17e-07, + "plucky": 4.17e-07, + "pocock": 4.17e-07, + "preposition": 4.17e-07, + "pretenses": 4.17e-07, + "privatised": 4.17e-07, + "proclamations": 4.17e-07, + "prohibitively": 4.17e-07, + "prost": 4.17e-07, + "proximate": 4.17e-07, + "puller": 4.17e-07, + "punctures": 4.17e-07, + "py": 4.17e-07, + "quadrupled": 4.17e-07, + "queasy": 4.17e-07, + "quiche": 4.17e-07, + "quips": 4.17e-07, + "qureshi": 4.17e-07, + "radley": 4.17e-07, + "rainstorm": 4.17e-07, + "rangel": 4.17e-07, + "rapprochement": 4.17e-07, + "rayleigh": 4.17e-07, + "reappearance": 4.17e-07, + "recompense": 4.17e-07, + "recuperating": 4.17e-07, + "redesigning": 4.17e-07, + "redlands": 4.17e-07, + "redraw": 4.17e-07, + "redrawn": 4.17e-07, + "refutation": 4.17e-07, + "remiss": 4.17e-07, + "remittance": 4.17e-07, + "renfrewshire": 4.17e-07, + "repudiated": 4.17e-07, + "resuscitate": 4.17e-07, + "reticent": 4.17e-07, + "reverie": 4.17e-07, + "revisionism": 4.17e-07, + "rewrites": 4.17e-07, + "rheumatism": 4.17e-07, + "rickman": 4.17e-07, + "rightwing": 4.17e-07, + "roused": 4.17e-07, + "ruble": 4.17e-07, + "ryerson": 4.17e-07, + "safeguarded": 4.17e-07, + "sakurai": 4.17e-07, + "santorini": 4.17e-07, + "sasaki": 4.17e-07, + "saya": 4.17e-07, + "schaeffer": 4.17e-07, + "schweinsteiger": 4.17e-07, + "scintillating": 4.17e-07, + "scribbling": 4.17e-07, + "scuttled": 4.17e-07, + "sectoral": 4.17e-07, + "selflessness": 4.17e-07, + "seong": 4.17e-07, + "sharapova": 4.17e-07, + "sharps": 1.95e-07, + "shauna": 4.17e-07, + "shimano": 4.17e-07, + "shinto": 4.17e-07, + "shrooms": 4.17e-07, + "shuddering": 4.17e-07, + "silken": 4.17e-07, + "slayers": 1.02e-07, + "slippage": 4.17e-07, + "slowness": 4.17e-07, + "slurred": 4.17e-07, + "smattering": 4.17e-07, + "snarl": 4.17e-07, + "snuggling": 4.17e-07, + "solvers": 4.17e-07, + "sook": 4.17e-07, + "sorbonne": 4.17e-07, + "spawns": 4.17e-07, + "spongy": 4.17e-07, + "spx": 4.17e-07, + "sterilize": 4.17e-07, + "stewardess": 4.17e-07, + "stockholder": 4.17e-07, + "storefronts": 4.17e-07, + "storyboard": 4.17e-07, + "stragglers": 4.17e-07, + "stratigraphy": 4.17e-07, + "striding": 4.17e-07, + "strom": 4.17e-07, + "stunting": 4.17e-07, + "surcharges": 4.17e-07, + "surest": 4.17e-07, + "suriname": 4.17e-07, + "swe": 4.17e-07, + "sweety": 4.17e-07, + "taiga": 4.17e-07, + "tangier": 4.17e-07, + "tapioca": 4.17e-07, + "taskforce": 4.17e-07, + "telemedicine": 4.17e-07, + "tendrils": 4.17e-07, + "teng": 4.17e-07, + "texarkana": 4.17e-07, + "tfc": 4.17e-07, + "thani": 4.17e-07, + "thickest": 4.17e-07, + "ticklish": 4.17e-07, + "timestamp": 4.17e-07, + "tivo": 4.17e-07, + "tolerates": 4.17e-07, + "tomo": 4.17e-07, + "tradesman": 4.17e-07, + "traditionalists": 4.17e-07, + "trappers": 4.17e-07, + "tulle": 4.17e-07, + "turtleneck": 4.17e-07, + "tutsi": 4.17e-07, + "twats": 4.17e-07, + "uab": 4.17e-07, + "ugc": 4.17e-07, + "ula": 4.17e-07, + "ulm": 4.17e-07, + "umberto": 4.17e-07, + "unconvinced": 4.17e-07, + "underclass": 4.17e-07, + "underhill": 4.17e-07, + "undertone": 4.17e-07, + "undressing": 4.17e-07, + "unpopularity": 4.17e-07, + "unquestionable": 4.17e-07, + "unreadable": 4.17e-07, + "unwinding": 4.17e-07, + "urchins": 4.17e-07, + "ursa": 4.17e-07, + "vanquish": 4.17e-07, + "variegated": 4.17e-07, + "vedanta": 4.17e-07, + "vehement": 4.17e-07, + "vel": 4.17e-07, + "velma": 4.17e-07, + "videotapes": 4.17e-07, + "vikas": 4.17e-07, + "vinaigrette": 4.17e-07, + "walkman": 4.17e-07, + "wallop": 4.17e-07, + "wcs": 4.17e-07, + "wea": 4.17e-07, + "weeknight": 4.17e-07, + "weenie": 4.17e-07, + "whet": 4.17e-07, + "whitehaven": 4.17e-07, + "wile": 4.17e-07, + "wilmot": 4.17e-07, + "wim": 4.17e-07, + "witten": 4.17e-07, + "wobbling": 4.17e-07, + "wowed": 4.17e-07, + "wps": 4.17e-07, + "wwes": 4.17e-07, + "xoxo": 4.17e-07, + "yamaguchi": 4.17e-07, + "yesteryear": 4.17e-07, + "ziggler": 4.17e-07, + "zipping": 4.17e-07, + "aced": 4.07e-07, + "advantaged": 4.07e-07, + "afm": 4.07e-07, + "agarwal": 4.07e-07, + "agl": 4.07e-07, + "airspeed": 4.07e-07, + "ake": 4.07e-07, + "albus": 4.07e-07, + "allocates": 4.07e-07, + "alphas": 1.38e-07, + "altoona": 4.07e-07, + "amplifies": 4.07e-07, + "amply": 4.07e-07, + "anglophone": 4.07e-07, + "annealing": 4.07e-07, + "annexing": 4.07e-07, + "antecedents": 4.07e-07, + "antiretroviral": 4.07e-07, + "antithetical": 4.07e-07, + "antler": 4.07e-07, + "aoa": 4.07e-07, + "aoi": 4.07e-07, + "applegate": 4.07e-07, + "apprenticed": 4.07e-07, + "arb": 4.07e-07, + "aris": 1.74e-07, + "arma": 4.07e-07, + "arn": 4.07e-07, + "aromatherapy": 4.07e-07, + "arranger": 4.07e-07, + "asb": 4.07e-07, + "aspirated": 4.07e-07, + "atchison": 4.07e-07, + "atr": 4.07e-07, + "attestation": 4.07e-07, + "aways": 4.07e-07, + "aylesbury": 4.07e-07, + "ayurveda": 4.07e-07, + "babar": 4.07e-07, + "baptisms": 4.07e-07, + "baraka": 4.07e-07, + "barbary": 4.07e-07, + "baudelaire": 4.07e-07, + "beached": 4.07e-07, + "beavis": 4.07e-07, + "beefing": 4.07e-07, + "belittling": 4.07e-07, + "bellini": 4.07e-07, + "bevel": 4.07e-07, + "birdsong": 4.07e-07, + "bizarro": 4.07e-07, + "blatt": 4.07e-07, + "blesses": 4.07e-07, + "blockaded": 4.07e-07, + "bly": 4.07e-07, + "bodhi": 4.07e-07, + "bookmaker": 4.07e-07, + "bradman": 4.07e-07, + "brava": 4.07e-07, + "brawling": 4.07e-07, + "breakouts": 4.07e-07, + "brezhnev": 4.07e-07, + "brin": 4.07e-07, + "brogan": 4.07e-07, + "bunyan": 4.07e-07, + "businesspeople": 4.07e-07, + "buzzword": 4.07e-07, + "cabbages": 4.07e-07, + "cacophony": 4.07e-07, + "caligula": 4.07e-07, + "capitalistic": 4.07e-07, + "caresses": 4.07e-07, + "carlsen": 4.07e-07, + "carnations": 4.07e-07, + "carruthers": 4.07e-07, + "carswell": 4.07e-07, + "cartoonists": 4.07e-07, + "castaway": 4.07e-07, + "catharine": 4.07e-07, + "cavanaugh": 4.07e-07, + "ccg": 4.07e-07, + "cenotaph": 4.07e-07, + "chafing": 4.07e-07, + "chairmans": 4.07e-07, + "chambered": 4.07e-07, + "chibi": 4.07e-07, + "chibok": 4.07e-07, + "chink": 4.07e-07, + "chl": 4.07e-07, + "cip": 4.07e-07, + "circumscribed": 4.07e-07, + "cking": 4.07e-07, + "clack": 4.07e-07, + "clicker": 4.07e-07, + "collation": 4.07e-07, + "colombias": 4.07e-07, + "comings": 4.07e-07, + "commandeered": 4.07e-07, + "commemorations": 4.07e-07, + "commentating": 4.07e-07, + "comprehending": 4.07e-07, + "confidentially": 4.07e-07, + "confining": 4.07e-07, + "confucianism": 4.07e-07, + "connectedness": 4.07e-07, + "conscripts": 4.07e-07, + "conservator": 4.07e-07, + "cooperates": 4.07e-07, + "cooperatively": 4.07e-07, + "copperfield": 4.07e-07, + "cou": 4.07e-07, + "counseled": 4.07e-07, + "covey": 4.07e-07, + "crewmen": 4.07e-07, + "crimp": 4.07e-07, + "cruces": 4.07e-07, + "cryo": 4.07e-07, + "curbed": 4.07e-07, + "customarily": 4.07e-07, + "dagestan": 4.07e-07, + "dartford": 4.07e-07, + "ddd": 4.07e-07, + "deactivation": 4.07e-07, + "debby": 4.07e-07, + "deductibles": 4.07e-07, + "deflate": 4.07e-07, + "demonize": 4.07e-07, + "dena": 4.07e-07, + "denunciation": 4.07e-07, + "dft": 4.07e-07, + "diazepam": 4.07e-07, + "discrediting": 4.07e-07, + "dished": 4.07e-07, + "dismount": 4.07e-07, + "diuretic": 4.07e-07, + "dnb": 4.07e-07, + "domini": 4.07e-07, + "doppelganger": 4.07e-07, + "dpa": 4.07e-07, + "drawbridge": 4.07e-07, + "drivin": 4.07e-07, + "drudge": 4.07e-07, + "drugging": 4.07e-07, + "duquesne": 4.07e-07, + "dwindle": 4.07e-07, + "eckert": 4.07e-07, + "eddies": 2.75e-07, + "edp": 4.07e-07, + "effector": 4.07e-07, + "ellery": 4.07e-07, + "encapsulation": 4.07e-07, + "enchantress": 4.07e-07, + "encircle": 4.07e-07, + "env": 4.07e-07, + "eoin": 4.07e-07, + "epas": 4.07e-07, + "epistemological": 4.07e-07, + "etiology": 4.07e-07, + "evangelion": 4.07e-07, + "exonerate": 4.07e-07, + "expediency": 4.07e-07, + "exudes": 4.07e-07, + "eyesore": 4.07e-07, + "faceoff": 4.07e-07, + "facile": 4.07e-07, + "facilitators": 4.07e-07, + "fatherless": 4.07e-07, + "featherstone": 4.07e-07, + "feely": 4.07e-07, + "fertilize": 4.07e-07, + "fiennes": 4.07e-07, + "fittingly": 4.07e-07, + "flossing": 4.07e-07, + "fluted": 4.07e-07, + "fogarty": 4.07e-07, + "foreshore": 4.07e-07, + "foyle": 4.07e-07, + "freds": 4.07e-07, + "frederik": 4.07e-07, + "frightens": 4.07e-07, + "fruiting": 4.07e-07, + "fuk": 4.07e-07, + "gangbang": 4.07e-07, + "gascoigne": 4.07e-07, + "gasses": 4.07e-07, + "gawain": 4.07e-07, + "gazes": 4.07e-07, + "geneticist": 4.07e-07, + "genotypes": 4.07e-07, + "gert": 4.07e-07, + "gilly": 4.07e-07, + "gizmo": 4.07e-07, + "glycine": 4.07e-07, + "godot": 4.07e-07, + "goop": 4.07e-07, + "gorsuch": 4.07e-07, + "gregson": 4.07e-07, + "griffins": 2.45e-07, + "grimace": 4.07e-07, + "groggy": 4.07e-07, + "grt": 4.07e-07, + "guano": 4.07e-07, + "guava": 4.07e-07, + "guinean": 4.07e-07, + "gwinnett": 4.07e-07, + "gwyn": 4.07e-07, + "gwynn": 4.07e-07, + "hab": 4.07e-07, + "habsburg": 4.07e-07, + "haller": 4.07e-07, + "halliburton": 4.07e-07, + "halstead": 4.07e-07, + "hammocks": 4.07e-07, + "hamstrings": 4.07e-07, + "handbooks": 4.07e-07, + "hanzo": 4.07e-07, + "harford": 4.07e-07, + "haslam": 4.07e-07, + "hematoma": 4.07e-07, + "hew": 4.07e-07, + "hhh": 4.07e-07, + "hideo": 4.07e-07, + "histology": 4.07e-07, + "hitching": 4.07e-07, + "homewood": 4.07e-07, + "homogeneity": 4.07e-07, + "hoss": 4.07e-07, + "hossein": 4.07e-07, + "hotties": 4.07e-07, + "hoyle": 4.07e-07, + "huerta": 4.07e-07, + "huma": 4.07e-07, + "humanists": 4.07e-07, + "humbert": 4.07e-07, + "hummel": 4.07e-07, + "huntress": 4.07e-07, + "husks": 4.07e-07, + "ichigo": 4.07e-07, + "icrc": 4.07e-07, + "idiopathic": 4.07e-07, + "ige": 4.07e-07, + "ij": 4.07e-07, + "illini": 4.07e-07, + "immigrate": 4.07e-07, + "imparts": 4.07e-07, + "implacable": 4.07e-07, + "implicating": 4.07e-07, + "imprisoning": 4.07e-07, + "inclusiveness": 4.07e-07, + "indemnify": 4.07e-07, + "indiscretion": 4.07e-07, + "indulgences": 4.07e-07, + "infirm": 4.07e-07, + "inga": 4.07e-07, + "intermodal": 4.07e-07, + "intraday": 4.07e-07, + "ishikawa": 4.07e-07, + "iwc": 4.07e-07, + "jackals": 4.07e-07, + "jaclyn": 4.07e-07, + "jailer": 4.07e-07, + "jamaat": 4.07e-07, + "jeffersons": 9.55e-08, + "jharkhand": 4.07e-07, + "jins": 4.07e-07, + "joists": 4.07e-07, + "jons": 9.12e-08, + "kanto": 4.07e-07, + "kanyes": 4.07e-07, + "karabakh": 4.07e-07, + "keiko": 4.07e-07, + "keiths": 4.07e-07, + "kenner": 4.07e-07, + "kennett": 4.07e-07, + "kerb": 4.07e-07, + "kiara": 4.07e-07, + "kidnaps": 4.07e-07, + "klingons": 4.07e-07, + "knott": 4.07e-07, + "kondo": 4.07e-07, + "kot": 4.07e-07, + "kwok": 4.07e-07, + "lacing": 4.07e-07, + "laidlaw": 4.07e-07, + "lambo": 4.07e-07, + "lanham": 4.07e-07, + "latches": 4.07e-07, + "ldr": 4.07e-07, + "lengthwise": 4.07e-07, + "lennons": 4.07e-07, + "lenore": 4.07e-07, + "leopoldo": 4.07e-07, + "linoleum": 4.07e-07, + "listeria": 4.07e-07, + "lockett": 4.07e-07, + "longview": 4.07e-07, + "lutherans": 4.07e-07, + "luxemburg": 4.07e-07, + "lyre": 4.07e-07, + "maas": 4.07e-07, + "maasai": 4.07e-07, + "magnanimous": 4.07e-07, + "magus": 4.07e-07, + "mammoths": 4.07e-07, + "manchurian": 4.07e-07, + "maniacal": 4.07e-07, + "manish": 4.07e-07, + "maries": 1.15e-07, + "marshawn": 4.07e-07, + "martel": 4.07e-07, + "materialist": 4.07e-07, + "matsumoto": 4.07e-07, + "maximizes": 4.07e-07, + "mccarthys": 4.07e-07, + "mccarty": 4.07e-07, + "mccauley": 4.07e-07, + "medica": 4.07e-07, + "meeker": 4.07e-07, + "metabolized": 4.07e-07, + "mewtwo": 4.07e-07, + "mfc": 4.07e-07, + "mickelson": 4.07e-07, + "micrograms": 4.07e-07, + "micronesia": 4.07e-07, + "mie": 4.07e-07, + "miniscule": 4.07e-07, + "ministering": 4.07e-07, + "miramar": 4.07e-07, + "miri": 4.07e-07, + "miro": 4.07e-07, + "miscalculation": 4.07e-07, + "misdirection": 4.07e-07, + "mlc": 4.07e-07, + "moc": 4.07e-07, + "modernised": 4.07e-07, + "modulating": 4.07e-07, + "monger": 4.07e-07, + "montpelier": 4.07e-07, + "montreals": 4.07e-07, + "mookie": 4.07e-07, + "morrell": 4.07e-07, + "mua": 4.07e-07, + "multicolored": 4.07e-07, + "multifamily": 4.07e-07, + "musing": 4.07e-07, + "mystified": 4.07e-07, + "narc": 4.07e-07, + "natl": 3.55e-07, + "natchez": 4.07e-07, + "natwest": 4.07e-07, + "naya": 4.07e-07, + "necromancer": 4.07e-07, + "neh": 4.07e-07, + "neurobiology": 4.07e-07, + "newmans": 4.07e-07, + "nics": 6.17e-08, + "nitride": 4.07e-07, + "noa": 4.07e-07, + "nobodies": 4.07e-07, + "norepinephrine": 4.07e-07, + "notional": 4.07e-07, + "nsaids": 4.07e-07, + "nuff": 4.07e-07, + "nuffield": 4.07e-07, + "obliging": 4.07e-07, + "observances": 4.07e-07, + "obverse": 4.07e-07, + "ocala": 4.07e-07, + "offing": 4.07e-07, + "offstage": 4.07e-07, + "oka": 4.07e-07, + "oooo": 4.07e-07, + "outkast": 4.07e-07, + "overlying": 4.07e-07, + "overridden": 4.07e-07, + "overruns": 4.07e-07, + "pacts": 4.07e-07, + "palatial": 4.07e-07, + "pappas": 4.07e-07, + "parley": 4.07e-07, + "parris": 4.07e-07, + "paucity": 4.07e-07, + "pavlov": 4.07e-07, + "peculiarly": 4.07e-07, + "peddler": 4.07e-07, + "pelagic": 4.07e-07, + "peppa": 4.07e-07, + "pepsico": 4.07e-07, + "persecuting": 4.07e-07, + "persephone": 4.07e-07, + "phds": 7.94e-08, + "phenomenally": 4.07e-07, + "phonics": 4.07e-07, + "phs": 4.07e-07, + "physiologically": 4.07e-07, + "pilgrimages": 4.07e-07, + "pithy": 4.07e-07, + "pittance": 4.07e-07, + "placental": 4.07e-07, + "plastering": 4.07e-07, + "plex": 4.07e-07, + "plop": 4.07e-07, + "poes": 8.32e-08, + "portobello": 4.07e-07, + "prancing": 4.07e-07, + "preclinical": 4.07e-07, + "primark": 4.07e-07, + "prisms": 4.07e-07, + "prowling": 4.07e-07, + "puccini": 4.07e-07, + "pujols": 4.07e-07, + "pulleys": 4.07e-07, + "pullover": 4.07e-07, + "pye": 4.07e-07, + "rafi": 4.07e-07, + "rapp": 4.07e-07, + "rarities": 4.07e-07, + "raster": 4.07e-07, + "rau": 4.07e-07, + "razak": 4.07e-07, + "reassessment": 4.07e-07, + "recharged": 4.07e-07, + "reconfigured": 4.07e-07, + "reeled": 4.07e-07, + "registrant": 4.07e-07, + "rehabilitating": 4.07e-07, + "reimer": 4.07e-07, + "rekindled": 4.07e-07, + "renouncing": 4.07e-07, + "repaint": 4.07e-07, + "reprocessing": 4.07e-07, + "repulsion": 4.07e-07, + "resistive": 4.07e-07, + "resurgent": 4.07e-07, + "rfp": 4.07e-07, + "rihannas": 4.07e-07, + "rika": 4.07e-07, + "rma": 4.07e-07, + "romanias": 4.07e-07, + "ronaldos": 4.07e-07, + "ronson": 4.07e-07, + "roosevelts": 8.51e-08, + "rosita": 4.07e-07, + "rothman": 4.07e-07, + "roxas": 4.07e-07, + "rubbery": 4.07e-07, + "rubys": 4.07e-07, + "ruths": 4.07e-07, + "sagas": 6.61e-08, + "salamanders": 4.07e-07, + "sameer": 4.07e-07, + "sandia": 4.07e-07, + "sashimi": 4.07e-07, + "sauber": 4.07e-07, + "sayed": 4.07e-07, + "scalding": 4.07e-07, + "sceptre": 4.07e-07, + "schmitz": 4.07e-07, + "scoundrels": 4.07e-07, + "scrambles": 4.07e-07, + "seacrest": 4.07e-07, + "seasonings": 4.07e-07, + "seditious": 4.07e-07, + "segway": 4.07e-07, + "selangor": 4.07e-07, + "senor": 4.07e-07, + "serviceman": 4.07e-07, + "seti": 4.07e-07, + "sfr": 4.07e-07, + "shinjuku": 4.07e-07, + "shopify": 4.07e-07, + "shorting": 4.07e-07, + "shortsighted": 4.07e-07, + "shunning": 4.07e-07, + "silverstein": 4.07e-07, + "simona": 4.07e-07, + "sinker": 4.07e-07, + "skyfall": 4.07e-07, + "slates": 7.24e-08, + "smartass": 4.07e-07, + "snodgrass": 4.07e-07, + "sono": 4.07e-07, + "sophocles": 4.07e-07, + "soren": 4.07e-07, + "sortie": 4.07e-07, + "sotomayor": 4.07e-07, + "standish": 4.07e-07, + "starburst": 4.07e-07, + "statist": 4.07e-07, + "statuette": 4.07e-07, + "steppes": 4.07e-07, + "storeroom": 4.07e-07, + "strumming": 4.07e-07, + "sua": 4.07e-07, + "subban": 4.07e-07, + "sucky": 4.07e-07, + "suiting": 4.07e-07, + "supersedes": 4.07e-07, + "swamy": 4.07e-07, + "swig": 4.07e-07, + "takeovers": 4.07e-07, + "tangles": 4.07e-07, + "tash": 4.07e-07, + "tass": 4.07e-07, + "taxidermy": 4.07e-07, + "tenner": 4.07e-07, + "texaco": 4.07e-07, + "thankless": 4.07e-07, + "thorin": 4.07e-07, + "thos": 4.07e-07, + "throwers": 4.07e-07, + "tightest": 4.07e-07, + "tillerson": 4.07e-07, + "tisdale": 4.07e-07, + "titian": 4.07e-07, + "todos": 4.07e-07, + "toiled": 4.07e-07, + "tomes": 4.07e-07, + "toots": 4.07e-07, + "trainor": 4.07e-07, + "triceps": 4.07e-07, + "tropez": 4.07e-07, + "tsui": 4.07e-07, + "ttp": 4.07e-07, + "tts": 5.89e-08, + "unapologetically": 4.07e-07, + "unappealing": 4.07e-07, + "uncivilized": 4.07e-07, + "underwritten": 4.07e-07, + "undoubted": 4.07e-07, + "unpatriotic": 4.07e-07, + "unrepentant": 4.07e-07, + "unsee": 4.07e-07, + "untidy": 4.07e-07, + "ural": 4.07e-07, + "useable": 4.07e-07, + "ushering": 4.07e-07, + "vassar": 4.07e-07, + "veep": 4.07e-07, + "velodrome": 4.07e-07, + "vevo": 4.07e-07, + "viewable": 4.07e-07, + "visionaries": 4.07e-07, + "vitals": 4.07e-07, + "waaaay": 4.07e-07, + "washable": 4.07e-07, + "washy": 4.07e-07, + "waterproofing": 4.07e-07, + "watters": 4.07e-07, + "waveguide": 4.07e-07, + "weaponized": 4.07e-07, + "wearers": 2.19e-07, + "weill": 4.07e-07, + "welders": 4.07e-07, + "werk": 4.07e-07, + "wetness": 4.07e-07, + "wheelers": 2.24e-07, + "wierd": 4.07e-07, + "wiggling": 4.07e-07, + "wilfried": 4.07e-07, + "wince": 4.07e-07, + "winemaking": 4.07e-07, + "wn": 4.07e-07, + "wnt": 4.07e-07, + "womanizer": 4.07e-07, + "woodbine": 4.07e-07, + "wreaking": 4.07e-07, + "wrecker": 4.07e-07, + "wrenches": 4.07e-07, + "xa": 4.07e-07, + "yulia": 4.07e-07, + "zayed": 4.07e-07, + "zealander": 4.07e-07, + "zuckerman": 4.07e-07, + "aachen": 3.98e-07, + "abn": 3.98e-07, + "abrasions": 3.98e-07, + "acetylcholine": 3.98e-07, + "aco": 3.98e-07, + "actives": 3.98e-07, + "adherent": 3.98e-07, + "adulation": 3.98e-07, + "adverbs": 3.98e-07, + "aforesaid": 3.98e-07, + "afridi": 3.98e-07, + "agr": 3.98e-07, + "ahmadi": 3.98e-07, + "airlifted": 3.98e-07, + "alans": 1.38e-07, + "aleksandar": 3.98e-07, + "amines": 3.98e-07, + "amniotic": 3.98e-07, + "amulets": 3.98e-07, + "amusements": 3.98e-07, + "antecedent": 3.98e-07, + "antiwar": 3.98e-07, + "aphasia": 3.98e-07, + "aphrodisiac": 3.98e-07, + "apm": 3.98e-07, + "aristotelian": 3.98e-07, + "arteta": 3.98e-07, + "astley": 3.98e-07, + "astrophysical": 3.98e-07, + "asunder": 3.98e-07, + "aum": 3.98e-07, + "automating": 3.98e-07, + "ayy": 3.98e-07, + "backstabbing": 3.98e-07, + "backstop": 3.98e-07, + "bauhaus": 3.98e-07, + "begets": 3.98e-07, + "belgiums": 3.98e-07, + "bernanke": 3.98e-07, + "bevin": 3.98e-07, + "bharti": 3.98e-07, + "bibliographies": 3.98e-07, + "bimonthly": 3.98e-07, + "binocular": 3.98e-07, + "bioethics": 3.98e-07, + "birdy": 3.98e-07, + "birkenhead": 3.98e-07, + "birkin": 3.98e-07, + "biter": 3.98e-07, + "blatter": 3.98e-07, + "bldg": 3.98e-07, + "bloat": 3.98e-07, + "boden": 3.98e-07, + "boers": 3.98e-07, + "bolus": 3.98e-07, + "botanists": 3.98e-07, + "breakin": 3.98e-07, + "bretton": 3.98e-07, + "breyer": 3.98e-07, + "brightens": 3.98e-07, + "briskly": 3.98e-07, + "bruiser": 3.98e-07, + "brunel": 3.98e-07, + "brutes": 3.98e-07, + "bubonic": 3.98e-07, + "buggers": 3.98e-07, + "bulger": 3.98e-07, + "burgos": 3.98e-07, + "burj": 3.98e-07, + "bursa": 3.98e-07, + "bushels": 3.98e-07, + "busta": 3.98e-07, + "bylaw": 3.98e-07, + "cabello": 3.98e-07, + "cached": 3.98e-07, + "caddie": 3.98e-07, + "caplan": 3.98e-07, + "carrillo": 3.98e-07, + "carrolls": 3.98e-07, + "castros": 3.98e-07, + "caterers": 3.98e-07, + "cations": 3.98e-07, + "cellophane": 3.98e-07, + "cept": 3.98e-07, + "cera": 3.98e-07, + "chaining": 3.98e-07, + "channelled": 3.98e-07, + "chiara": 3.98e-07, + "chiron": 3.98e-07, + "choker": 3.98e-07, + "chrysalis": 3.98e-07, + "chums": 3.98e-07, + "cialis": 3.98e-07, + "clamour": 3.98e-07, + "clarice": 3.98e-07, + "claudette": 3.98e-07, + "clenching": 3.98e-07, + "clumsily": 3.98e-07, + "cmv": 3.98e-07, + "codename": 3.98e-07, + "cofounder": 3.98e-07, + "collectives": 7.59e-08, + "colonizing": 3.98e-07, + "compressive": 3.98e-07, + "condoning": 3.98e-07, + "convalescent": 3.98e-07, + "costal": 3.98e-07, + "couscous": 3.98e-07, + "crassus": 3.98e-07, + "cristal": 3.98e-07, + "critiqued": 3.98e-07, + "croker": 3.98e-07, + "crompton": 3.98e-07, + "crone": 3.98e-07, + "crystallography": 3.98e-07, + "cupping": 3.98e-07, + "dabbling": 3.98e-07, + "dabs": 3.98e-07, + "dampers": 3.98e-07, + "dayz": 3.98e-07, + "decoys": 3.98e-07, + "decry": 3.98e-07, + "deferral": 3.98e-07, + "delisted": 3.98e-07, + "desc": 3.98e-07, + "desoto": 3.98e-07, + "deviantart": 3.98e-07, + "dirtbag": 3.98e-07, + "dirtier": 3.98e-07, + "disavow": 3.98e-07, + "discordant": 3.98e-07, + "dismounted": 3.98e-07, + "distrustful": 3.98e-07, + "dmg": 3.98e-07, + "downy": 3.98e-07, + "dragonball": 3.98e-07, + "dru": 3.98e-07, + "dsi": 3.98e-07, + "dualism": 3.98e-07, + "duplicating": 3.98e-07, + "durante": 3.98e-07, + "dwp": 3.98e-07, + "eazy": 3.98e-07, + "ecr": 3.98e-07, + "egon": 3.98e-07, + "elegans": 3.98e-07, + "embittered": 3.98e-07, + "emissaries": 3.98e-07, + "encyclopedias": 3.98e-07, + "endangers": 3.98e-07, + "enugu": 3.98e-07, + "epithets": 3.98e-07, + "esse": 3.98e-07, + "estimations": 3.98e-07, + "eunuchs": 3.98e-07, + "eves": 2.19e-07, + "evidentiary": 3.98e-07, + "ewen": 3.98e-07, + "exalt": 3.98e-07, + "executors": 3.98e-07, + "exoplanets": 3.98e-07, + "fairground": 3.98e-07, + "fairytales": 3.98e-07, + "fancier": 3.98e-07, + "fatherly": 3.98e-07, + "faultless": 3.98e-07, + "feedstock": 3.98e-07, + "fending": 3.98e-07, + "fistula": 3.98e-07, + "fjords": 3.98e-07, + "flemming": 3.98e-07, + "foxtrot": 3.98e-07, + "frith": 3.98e-07, + "frizzy": 3.98e-07, + "gabriels": 3.98e-07, + "garbled": 3.98e-07, + "garfunkel": 3.98e-07, + "gaskets": 3.98e-07, + "geert": 3.98e-07, + "generale": 3.98e-07, + "ginn": 3.98e-07, + "gla": 3.98e-07, + "godin": 3.98e-07, + "gpo": 3.98e-07, + "grimshaw": 3.98e-07, + "gronk": 3.98e-07, + "gsw": 3.98e-07, + "gulfstream": 3.98e-07, + "gyu": 3.98e-07, + "hachette": 3.98e-07, + "hadoop": 3.98e-07, + "hallucinogenic": 3.98e-07, + "halve": 3.98e-07, + "hamer": 3.98e-07, + "handfuls": 3.98e-07, + "harlot": 3.98e-07, + "headbutt": 3.98e-07, + "heathcote": 3.98e-07, + "hebei": 3.98e-07, + "hecht": 3.98e-07, + "heckler": 3.98e-07, + "heifer": 3.98e-07, + "hendersons": 6.61e-08, + "hendrickson": 3.98e-07, + "hezekiah": 3.98e-07, + "hmas": 3.98e-07, + "hoards": 3.98e-07, + "holger": 3.98e-07, + "hoosiers": 3.98e-07, + "hsi": 3.98e-07, + "hued": 3.98e-07, + "humbug": 3.98e-07, + "hydrological": 3.98e-07, + "icf": 3.98e-07, + "icm": 3.98e-07, + "imc": 3.98e-07, + "ime": 3.98e-07, + "impetuous": 3.98e-07, + "inadequately": 3.98e-07, + "inconvenienced": 3.98e-07, + "indignity": 3.98e-07, + "indisputably": 3.98e-07, + "indoctrinated": 3.98e-07, + "inflorescence": 3.98e-07, + "infowars": 3.98e-07, + "injectable": 3.98e-07, + "inky": 3.98e-07, + "inlets": 3.98e-07, + "innsbruck": 3.98e-07, + "interactivity": 3.98e-07, + "interdiction": 3.98e-07, + "intros": 3.98e-07, + "isl": 3.98e-07, + "jarred": 3.98e-07, + "jasmin": 3.98e-07, + "jaunt": 3.98e-07, + "jawaharlal": 3.98e-07, + "jointed": 3.98e-07, + "joong": 3.98e-07, + "jutting": 3.98e-07, + "kawaii": 3.98e-07, + "kayaks": 3.98e-07, + "keeley": 3.98e-07, + "keisha": 3.98e-07, + "kerrys": 3.98e-07, + "kindergartens": 3.98e-07, + "kneels": 3.98e-07, + "knits": 3.98e-07, + "kph": 3.98e-07, + "kyo": 3.98e-07, + "ladbrokes": 3.98e-07, + "laszlo": 3.98e-07, + "laud": 3.98e-07, + "leavin": 3.98e-07, + "legation": 3.98e-07, + "leh": 3.98e-07, + "letterhead": 3.98e-07, + "levity": 3.98e-07, + "lichtenstein": 3.98e-07, + "lidl": 3.98e-07, + "likud": 3.98e-07, + "limped": 3.98e-07, + "liquors": 3.98e-07, + "loh": 3.98e-07, + "lombardy": 3.98e-07, + "lorentz": 3.98e-07, + "louse": 3.98e-07, + "lsat": 3.98e-07, + "lucha": 3.98e-07, + "luciana": 3.98e-07, + "lucked": 3.98e-07, + "lugo": 3.98e-07, + "luhansk": 3.98e-07, + "maarten": 3.98e-07, + "mab": 3.98e-07, + "magick": 3.98e-07, + "malayan": 3.98e-07, + "malfeasance": 3.98e-07, + "mandeville": 3.98e-07, + "markey": 3.98e-07, + "markle": 3.98e-07, + "martinis": 3.98e-07, + "massaged": 3.98e-07, + "massif": 3.98e-07, + "mattingly": 3.98e-07, + "mccracken": 3.98e-07, + "mechanistic": 3.98e-07, + "meijer": 3.98e-07, + "mementos": 3.98e-07, + "mercado": 3.98e-07, + "mezzo": 3.98e-07, + "mightiest": 3.98e-07, + "mii": 3.98e-07, + "millenium": 3.98e-07, + "millimetre": 3.98e-07, + "minnows": 3.98e-07, + "mino": 3.98e-07, + "misappropriation": 3.98e-07, + "mishandling": 3.98e-07, + "misinterpret": 3.98e-07, + "misstep": 3.98e-07, + "mitsui": 3.98e-07, + "mmc": 3.98e-07, + "moguls": 3.98e-07, + "mohamad": 3.98e-07, + "montauk": 3.98e-07, + "moorhead": 3.98e-07, + "morello": 3.98e-07, + "motherfuckin": 3.98e-07, + "mowers": 3.98e-07, + "multichannel": 3.98e-07, + "mummified": 3.98e-07, + "musik": 3.98e-07, + "nacl": 3.98e-07, + "nagano": 3.98e-07, + "narcissists": 3.98e-07, + "narrators": 1.82e-07, + "natura": 3.98e-07, + "nawab": 3.98e-07, + "nct": 3.98e-07, + "nederland": 3.98e-07, + "neu": 3.98e-07, + "newington": 3.98e-07, + "newness": 3.98e-07, + "newsreader": 3.98e-07, + "nipping": 3.98e-07, + "nona": 3.98e-07, + "nontraditional": 3.98e-07, + "nori": 3.98e-07, + "obriens": 3.98e-07, + "octavian": 3.98e-07, + "oddest": 3.98e-07, + "olmsted": 3.98e-07, + "olympiad": 3.98e-07, + "optimise": 3.98e-07, + "oration": 3.98e-07, + "ordinates": 3.98e-07, + "orrin": 3.98e-07, + "ousting": 3.98e-07, + "overseers": 3.98e-07, + "oxidizing": 3.98e-07, + "paneling": 3.98e-07, + "panelled": 3.98e-07, + "pangs": 3.98e-07, + "pape": 3.98e-07, + "paribas": 3.98e-07, + "paschal": 3.98e-07, + "passivity": 3.98e-07, + "paterno": 3.98e-07, + "pcl": 3.98e-07, + "pec": 3.98e-07, + "peeks": 3.98e-07, + "percussive": 3.98e-07, + "perdue": 3.98e-07, + "phosphatase": 3.98e-07, + "pickets": 3.98e-07, + "piezoelectric": 3.98e-07, + "piglets": 3.98e-07, + "pinches": 3.98e-07, + "pir": 3.98e-07, + "pittsfield": 3.98e-07, + "plessis": 3.98e-07, + "plies": 3.98e-07, + "plinth": 3.98e-07, + "plos": 3.98e-07, + "pmc": 3.98e-07, + "polishes": 3.98e-07, + "polypeptide": 3.98e-07, + "postulate": 3.98e-07, + "presidio": 3.98e-07, + "priors": 7.76e-08, + "probiotic": 3.98e-07, + "productively": 3.98e-07, + "propylene": 3.98e-07, + "prosaic": 3.98e-07, + "proscribed": 3.98e-07, + "prosecutorial": 3.98e-07, + "pyrotechnics": 3.98e-07, + "qos": 3.98e-07, + "quacks": 3.98e-07, + "quandary": 3.98e-07, + "quietest": 3.98e-07, + "quipped": 3.98e-07, + "rabat": 3.98e-07, + "radisson": 3.98e-07, + "rajya": 3.98e-07, + "rationalism": 3.98e-07, + "rears": 3.98e-07, + "rebut": 3.98e-07, + "reclassified": 3.98e-07, + "reconnecting": 3.98e-07, + "redondo": 3.98e-07, + "refiners": 3.98e-07, + "reheat": 3.98e-07, + "reinhard": 3.98e-07, + "reinhart": 3.98e-07, + "reinvest": 3.98e-07, + "remorseful": 3.98e-07, + "repackaged": 3.98e-07, + "repented": 3.98e-07, + "reprogramming": 3.98e-07, + "restocking": 3.98e-07, + "reticence": 3.98e-07, + "reversion": 3.98e-07, + "reys": 5.13e-08, + "rhinestone": 3.98e-07, + "riemann": 3.98e-07, + "rittenhouse": 3.98e-07, + "roundabouts": 3.98e-07, + "rspca": 3.98e-07, + "rubinstein": 3.98e-07, + "rutter": 3.98e-07, + "saipan": 3.98e-07, + "saladin": 3.98e-07, + "saleem": 3.98e-07, + "sandown": 3.98e-07, + "sapphires": 3.98e-07, + "saran": 3.98e-07, + "scrip": 3.98e-07, + "scruff": 3.98e-07, + "scurrying": 3.98e-07, + "seafaring": 3.98e-07, + "sepp": 3.98e-07, + "sexiness": 3.98e-07, + "shania": 3.98e-07, + "shaquille": 3.98e-07, + "sheaf": 3.98e-07, + "shipwrecks": 3.98e-07, + "siesta": 3.98e-07, + "sikkim": 3.98e-07, + "sinhalese": 3.98e-07, + "skoda": 3.98e-07, + "slp": 3.98e-07, + "sniffer": 3.98e-07, + "snobs": 3.98e-07, + "snyders": 3.98e-07, + "socialise": 3.98e-07, + "sociopathic": 3.98e-07, + "sociopaths": 3.98e-07, + "sof": 3.98e-07, + "speedometer": 3.98e-07, + "splints": 3.98e-07, + "spoofing": 3.98e-07, + "squalid": 3.98e-07, + "staves": 3.98e-07, + "stillman": 3.98e-07, + "stockwell": 3.98e-07, + "stringed": 3.98e-07, + "strollers": 3.98e-07, + "strolls": 3.98e-07, + "styx": 3.98e-07, + "submerge": 3.98e-07, + "subordination": 3.98e-07, + "summarise": 3.98e-07, + "sunnah": 3.98e-07, + "surfactant": 3.98e-07, + "surry": 3.98e-07, + "survivability": 3.98e-07, + "sweltering": 3.98e-07, + "swooping": 3.98e-07, + "sz": 3.98e-07, + "tahrir": 3.98e-07, + "tannins": 3.98e-07, + "tanto": 3.98e-07, + "tarn": 3.98e-07, + "tater": 3.98e-07, + "taxicab": 3.98e-07, + "tdp": 3.98e-07, + "tedx": 3.98e-07, + "telluride": 3.98e-07, + "telus": 3.98e-07, + "tenements": 3.98e-07, + "thanet": 3.98e-07, + "themself": 3.98e-07, + "thule": 3.98e-07, + "thunk": 3.98e-07, + "tiber": 3.98e-07, + "tigger": 3.98e-07, + "tints": 3.98e-07, + "tokugawa": 3.98e-07, + "tonk": 3.98e-07, + "trevelyan": 3.98e-07, + "ttt": 3.98e-07, + "tupelo": 3.98e-07, + "ulta": 3.98e-07, + "unabashed": 3.98e-07, + "unencumbered": 3.98e-07, + "unfilled": 3.98e-07, + "unionization": 3.98e-07, + "unjustifiable": 3.98e-07, + "unnaturally": 3.98e-07, + "uttarakhand": 3.98e-07, + "uwu": 3.98e-07, + "vann": 3.98e-07, + "vazquez": 3.98e-07, + "vegetarianism": 3.98e-07, + "verstappen": 3.98e-07, + "vey": 3.98e-07, + "vicarious": 3.98e-07, + "villainy": 3.98e-07, + "virtuosity": 3.98e-07, + "virulence": 3.98e-07, + "vishal": 3.98e-07, + "vix": 3.98e-07, + "vizier": 3.98e-07, + "vries": 3.98e-07, + "waa": 3.98e-07, + "wali": 3.98e-07, + "walkable": 3.98e-07, + "walling": 3.98e-07, + "warmers": 3.98e-07, + "westbury": 3.98e-07, + "whimsy": 3.98e-07, + "whitcomb": 3.98e-07, + "wicca": 3.98e-07, + "willett": 3.98e-07, + "wilted": 3.98e-07, + "winging": 3.98e-07, + "wolfpack": 3.98e-07, + "worf": 3.98e-07, + "workpiece": 3.98e-07, + "wormwood": 3.98e-07, + "wrangle": 3.98e-07, + "youngblood": 3.98e-07, + "yucatan": 3.98e-07, + "zander": 3.98e-07, + "zeller": 3.98e-07, + "zhi": 3.98e-07, + "zircon": 3.98e-07, + "zora": 3.98e-07, + "aaaa": 3.89e-07, + "abated": 3.89e-07, + "abernathy": 3.89e-07, + "accrediting": 3.89e-07, + "aci": 3.89e-07, + "acoustical": 3.89e-07, + "advil": 3.89e-07, + "afflictions": 3.89e-07, + "afterall": 3.89e-07, + "aggregating": 3.89e-07, + "agitator": 3.89e-07, + "albedo": 3.89e-07, + "alcott": 3.89e-07, + "alisha": 3.89e-07, + "allyson": 3.89e-07, + "alun": 3.89e-07, + "alway": 3.89e-07, + "amateurish": 3.89e-07, + "anaphylaxis": 3.89e-07, + "ando": 3.89e-07, + "angelus": 3.89e-07, + "angora": 3.89e-07, + "anyplace": 3.89e-07, + "aos": 3.89e-07, + "appetizing": 3.89e-07, + "applicator": 3.89e-07, + "arbys": 3.89e-07, + "arsonist": 3.89e-07, + "artichokes": 3.89e-07, + "ashlee": 3.89e-07, + "aslam": 3.89e-07, + "asmr": 3.89e-07, + "asquith": 3.89e-07, + "assemblages": 3.89e-07, + "augmenting": 3.89e-07, + "axons": 3.89e-07, + "babbitt": 3.89e-07, + "bachs": 3.89e-07, + "ballin": 3.89e-07, + "baltimores": 3.89e-07, + "banc": 3.89e-07, + "barnacles": 3.89e-07, + "bast": 3.89e-07, + "beekeepers": 3.89e-07, + "benteke": 3.89e-07, + "berta": 3.89e-07, + "bests": 8.71e-08, + "beulah": 3.89e-07, + "biafra": 3.89e-07, + "biologic": 3.89e-07, + "bjj": 3.89e-07, + "blackfish": 3.89e-07, + "bleacher": 3.89e-07, + "blizzards": 1.38e-07, + "bloodiest": 3.89e-07, + "bloodshot": 3.89e-07, + "bnb": 3.89e-07, + "boku": 3.89e-07, + "bolognese": 3.89e-07, + "bolstering": 3.89e-07, + "brawls": 3.89e-07, + "bronchial": 3.89e-07, + "brownstone": 3.89e-07, + "buffered": 3.89e-07, + "burgoyne": 3.89e-07, + "burka": 3.89e-07, + "butterscotch": 3.89e-07, + "byung": 3.89e-07, + "caballero": 3.89e-07, + "caboose": 3.89e-07, + "caesarean": 3.89e-07, + "cair": 3.89e-07, + "calcareous": 3.89e-07, + "callus": 3.89e-07, + "cally": 3.89e-07, + "capella": 3.89e-07, + "capote": 3.89e-07, + "carmarthenshire": 3.89e-07, + "carotene": 3.89e-07, + "carpark": 3.89e-07, + "cartoonish": 3.89e-07, + "cassell": 3.89e-07, + "cesarean": 3.89e-07, + "chaim": 3.89e-07, + "chalets": 3.89e-07, + "characterizations": 3.89e-07, + "cherub": 3.89e-07, + "chiswick": 3.89e-07, + "chula": 3.89e-07, + "clearinghouse": 3.89e-07, + "cleve": 3.89e-07, + "coaxed": 3.89e-07, + "colloidal": 3.89e-07, + "colville": 3.89e-07, + "commited": 3.89e-07, + "conceptualize": 3.89e-07, + "concurrency": 3.89e-07, + "confidante": 3.89e-07, + "conifer": 3.89e-07, + "consumable": 3.89e-07, + "convener": 3.89e-07, + "coogan": 3.89e-07, + "corker": 3.89e-07, + "corroborating": 3.89e-07, + "corsa": 3.89e-07, + "cours": 3.89e-07, + "courtenay": 3.89e-07, + "courtly": 3.89e-07, + "cupertino": 3.89e-07, + "cutlass": 3.89e-07, + "cutouts": 3.89e-07, + "cvt": 3.89e-07, + "cybernetics": 3.89e-07, + "cymbal": 3.89e-07, + "dabbing": 3.89e-07, + "dachau": 3.89e-07, + "dalits": 3.89e-07, + "darjeeling": 3.89e-07, + "daydreams": 3.89e-07, + "deccan": 3.89e-07, + "decriminalization": 3.89e-07, + "dejan": 3.89e-07, + "delmar": 3.89e-07, + "demar": 3.89e-07, + "demarcus": 3.89e-07, + "demoralizing": 3.89e-07, + "denigrate": 3.89e-07, + "dennison": 3.89e-07, + "derrida": 3.89e-07, + "despatches": 3.89e-07, + "detonator": 3.89e-07, + "devereux": 3.89e-07, + "diametrically": 3.89e-07, + "dian": 3.89e-07, + "dirac": 3.89e-07, + "dissing": 3.89e-07, + "disuse": 3.89e-07, + "dmt": 3.89e-07, + "donal": 3.89e-07, + "dore": 3.89e-07, + "dorks": 3.89e-07, + "douse": 3.89e-07, + "downgrading": 3.89e-07, + "dozing": 3.89e-07, + "dramatized": 3.89e-07, + "drinkable": 3.89e-07, + "drooping": 3.89e-07, + "ecologists": 3.89e-07, + "edin": 3.89e-07, + "edson": 3.89e-07, + "elam": 3.89e-07, + "eller": 3.89e-07, + "embarassing": 3.89e-07, + "embellishments": 3.89e-07, + "emg": 3.89e-07, + "emigrating": 3.89e-07, + "empathic": 3.89e-07, + "energizing": 3.89e-07, + "engl": 3.89e-07, + "enumeration": 3.89e-07, + "epo": 3.89e-07, + "epson": 3.89e-07, + "esme": 3.89e-07, + "evocation": 3.89e-07, + "excepted": 3.89e-07, + "existentialism": 3.89e-07, + "exterminator": 3.89e-07, + "extinguishing": 3.89e-07, + "extradite": 3.89e-07, + "extrapolated": 3.89e-07, + "extricate": 3.89e-07, + "falsifying": 3.89e-07, + "farmville": 3.89e-07, + "faro": 3.89e-07, + "fassbender": 3.89e-07, + "fastener": 3.89e-07, + "fatale": 3.89e-07, + "fedor": 3.89e-07, + "fibula": 3.89e-07, + "fidget": 3.89e-07, + "filesystem": 3.89e-07, + "flexion": 3.89e-07, + "flippant": 3.89e-07, + "floater": 3.89e-07, + "fondue": 3.89e-07, + "forerunners": 3.89e-07, + "fretted": 3.89e-07, + "fuelling": 3.89e-07, + "gallardo": 3.89e-07, + "galt": 3.89e-07, + "galvin": 3.89e-07, + "ganglia": 3.89e-07, + "ganglion": 3.89e-07, + "gare": 3.89e-07, + "geeta": 3.89e-07, + "geographies": 3.89e-07, + "geospatial": 3.89e-07, + "geranium": 3.89e-07, + "geun": 3.89e-07, + "ghanaians": 3.89e-07, + "gilberto": 3.89e-07, + "gingerly": 3.89e-07, + "glared": 3.89e-07, + "glick": 3.89e-07, + "goalposts": 3.89e-07, + "godaddy": 3.89e-07, + "goer": 3.89e-07, + "goldsmiths": 1e-07, + "gowdy": 3.89e-07, + "gpm": 3.89e-07, + "gratified": 3.89e-07, + "groucho": 3.89e-07, + "grouchy": 3.89e-07, + "grownup": 3.89e-07, + "guaranty": 3.89e-07, + "gusty": 3.89e-07, + "haber": 3.89e-07, + "hagar": 3.89e-07, + "hagerstown": 3.89e-07, + "harmonizing": 3.89e-07, + "heaviness": 3.89e-07, + "hedonism": 3.89e-07, + "heirlooms": 3.89e-07, + "hereof": 3.89e-07, + "heretofore": 3.89e-07, + "hillsdale": 3.89e-07, + "hopewell": 3.89e-07, + "horoscopes": 3.89e-07, + "hospitalizations": 3.89e-07, + "hov": 3.89e-07, + "huntingtons": 3.89e-07, + "ichiro": 3.89e-07, + "immemorial": 3.89e-07, + "inequity": 3.89e-07, + "ines": 3.89e-07, + "inflected": 3.89e-07, + "infotainment": 3.89e-07, + "ingalls": 3.89e-07, + "ingersoll": 3.89e-07, + "inna": 3.89e-07, + "insinuate": 3.89e-07, + "inspects": 3.89e-07, + "interludes": 3.89e-07, + "iodide": 3.89e-07, + "irishmen": 3.89e-07, + "iva": 3.89e-07, + "ivana": 3.89e-07, + "iwatch": 3.89e-07, + "jacobite": 3.89e-07, + "jeffers": 3.89e-07, + "jesses": 3.89e-07, + "jindal": 3.89e-07, + "jodhpur": 3.89e-07, + "johor": 3.89e-07, + "jolene": 3.89e-07, + "joyces": 3.89e-07, + "juana": 3.89e-07, + "juiced": 3.89e-07, + "jumpstart": 3.89e-07, + "kabuki": 3.89e-07, + "karol": 3.89e-07, + "kelloggs": 5.62e-08, + "kindling": 3.89e-07, + "knell": 3.89e-07, + "koehler": 3.89e-07, + "kroll": 3.89e-07, + "laboring": 3.89e-07, + "ladakh": 3.89e-07, + "lannisters": 6.46e-08, + "laparoscopic": 3.89e-07, + "laurier": 3.89e-07, + "leer": 3.89e-07, + "legume": 3.89e-07, + "lemurs": 3.89e-07, + "linesman": 3.89e-07, + "lipa": 3.89e-07, + "ljubljana": 3.89e-07, + "locum": 3.89e-07, + "logie": 3.89e-07, + "lpc": 3.89e-07, + "lum": 3.89e-07, + "lunged": 3.89e-07, + "madder": 3.89e-07, + "mailboxes": 3.89e-07, + "malign": 3.89e-07, + "maliki": 3.89e-07, + "maltreatment": 3.89e-07, + "mandrake": 3.89e-07, + "maos": 3.89e-07, + "marburg": 3.89e-07, + "marinate": 3.89e-07, + "marque": 3.89e-07, + "marxs": 3.89e-07, + "mashable": 3.89e-07, + "maurer": 3.89e-07, + "mcghee": 3.89e-07, + "mcloughlin": 3.89e-07, + "mcnabb": 3.89e-07, + "mcveigh": 3.89e-07, + "meltdowns": 3.89e-07, + "memorization": 3.89e-07, + "mems": 3.89e-07, + "merida": 3.89e-07, + "merthyr": 3.89e-07, + "middlebury": 3.89e-07, + "millisecond": 3.89e-07, + "misdirected": 3.89e-07, + "missteps": 3.89e-07, + "mockingjay": 3.89e-07, + "moiety": 3.89e-07, + "moline": 3.89e-07, + "mollys": 3.89e-07, + "montreux": 3.89e-07, + "montserrat": 3.89e-07, + "mornington": 3.89e-07, + "morsel": 3.89e-07, + "mq": 3.89e-07, + "mucho": 3.89e-07, + "mugshot": 3.89e-07, + "mukesh": 3.89e-07, + "muncie": 3.89e-07, + "mundi": 3.89e-07, + "murillo": 3.89e-07, + "murthy": 3.89e-07, + "mythbusters": 3.89e-07, + "nabokov": 3.89e-07, + "naia": 3.89e-07, + "naperville": 3.89e-07, + "nary": 3.89e-07, + "nasi": 3.89e-07, + "nasr": 3.89e-07, + "nastiest": 3.89e-07, + "nei": 3.89e-07, + "newburgh": 3.89e-07, + "newsflash": 3.89e-07, + "nilly": 3.89e-07, + "nlp": 3.89e-07, + "nocturne": 3.89e-07, + "nongovernmental": 3.89e-07, + "nooks": 3.89e-07, + "nostra": 3.89e-07, + "nudging": 3.89e-07, + "oems": 3.89e-07, + "oma": 3.89e-07, + "ombre": 3.89e-07, + "optimizations": 3.89e-07, + "oran": 3.89e-07, + "ors": 3.89e-07, + "osc": 3.89e-07, + "oxycodone": 3.89e-07, + "pacheco": 3.89e-07, + "paleolithic": 3.89e-07, + "paraphrased": 3.89e-07, + "parisians": 3.89e-07, + "passageways": 3.89e-07, + "passersby": 3.89e-07, + "patrolman": 3.89e-07, + "peacekeeper": 3.89e-07, + "peake": 3.89e-07, + "penzance": 3.89e-07, + "perlman": 3.89e-07, + "perot": 3.89e-07, + "pert": 3.89e-07, + "petco": 3.89e-07, + "petraeus": 3.89e-07, + "picchu": 3.89e-07, + "pillaging": 3.89e-07, + "platoons": 3.89e-07, + "playmates": 3.89e-07, + "pma": 3.89e-07, + "pollsters": 3.89e-07, + "populists": 3.89e-07, + "portlands": 3.89e-07, + "practises": 3.89e-07, + "prat": 3.89e-07, + "pratchett": 3.89e-07, + "predate": 3.89e-07, + "predominate": 3.89e-07, + "prelims": 3.89e-07, + "presumes": 3.89e-07, + "principalities": 3.89e-07, + "printout": 3.89e-07, + "prodded": 3.89e-07, + "profiler": 3.89e-07, + "proofread": 3.89e-07, + "prophylactic": 3.89e-07, + "prophylaxis": 3.89e-07, + "pseudomonas": 3.89e-07, + "psh": 3.89e-07, + "ptv": 3.89e-07, + "pullout": 3.89e-07, + "puppeteer": 3.89e-07, + "purist": 3.89e-07, + "purposed": 3.89e-07, + "radiography": 3.89e-07, + "rajput": 3.89e-07, + "readied": 3.89e-07, + "recherche": 3.89e-07, + "reiki": 3.89e-07, + "reimbursements": 3.89e-07, + "reopens": 3.89e-07, + "repairman": 3.89e-07, + "rescuer": 3.89e-07, + "resurrecting": 3.89e-07, + "revolutionizing": 3.89e-07, + "rialto": 3.89e-07, + "ridgeway": 3.89e-07, + "ringleader": 3.89e-07, + "riverview": 3.89e-07, + "rococo": 3.89e-07, + "rodolfo": 3.89e-07, + "rong": 3.89e-07, + "rottweiler": 3.89e-07, + "rq": 3.89e-07, + "ruhr": 3.89e-07, + "rukh": 3.89e-07, + "rumblings": 3.89e-07, + "runescape": 3.89e-07, + "sandbags": 3.89e-07, + "sandeep": 3.89e-07, + "sapporo": 3.89e-07, + "sauer": 3.89e-07, + "scalping": 3.89e-07, + "scantily": 3.89e-07, + "scarlets": 3.89e-07, + "schmid": 3.89e-07, + "scsi": 3.89e-07, + "scurry": 3.89e-07, + "sebastien": 3.89e-07, + "secessionist": 3.89e-07, + "sedona": 3.89e-07, + "semites": 3.89e-07, + "sepals": 3.89e-07, + "serengeti": 3.89e-07, + "serialized": 3.89e-07, + "shader": 3.89e-07, + "shakin": 3.89e-07, + "shaper": 3.89e-07, + "sharkey": 3.89e-07, + "shaykh": 3.89e-07, + "sheamus": 3.89e-07, + "shekhar": 3.89e-07, + "sidestep": 3.89e-07, + "sieges": 3.89e-07, + "sinbad": 3.89e-07, + "slaw": 3.89e-07, + "smirked": 3.89e-07, + "smokescreen": 3.89e-07, + "snide": 3.89e-07, + "snohomish": 3.89e-07, + "snowballs": 7.76e-08, + "societe": 3.89e-07, + "solider": 3.89e-07, + "sov": 3.89e-07, + "sowed": 3.89e-07, + "sows": 3.89e-07, + "sprocket": 3.89e-07, + "squabble": 3.89e-07, + "squabbling": 3.89e-07, + "squeaking": 3.89e-07, + "sra": 3.89e-07, + "stapled": 3.89e-07, + "starbuck": 3.89e-07, + "starkey": 3.89e-07, + "startin": 3.89e-07, + "statins": 3.89e-07, + "steeplechase": 3.89e-07, + "steffen": 3.89e-07, + "sternly": 3.89e-07, + "stopwatch": 3.89e-07, + "stranglehold": 3.89e-07, + "stratospheric": 3.89e-07, + "streetwear": 3.89e-07, + "subcultures": 3.89e-07, + "subfamily": 3.89e-07, + "succulents": 3.89e-07, + "sulphate": 3.89e-07, + "superposition": 3.89e-07, + "suprise": 3.89e-07, + "sylvain": 3.89e-07, + "sympathizer": 3.89e-07, + "symposia": 3.89e-07, + "synchro": 3.89e-07, + "tachycardia": 3.89e-07, + "tactful": 3.89e-07, + "tafe": 3.89e-07, + "takeshi": 3.89e-07, + "tamarind": 3.89e-07, + "tapers": 3.89e-07, + "tarte": 3.89e-07, + "teared": 3.89e-07, + "telco": 3.89e-07, + "tete": 3.89e-07, + "theism": 3.89e-07, + "theocracy": 3.89e-07, + "theoretic": 3.89e-07, + "thun": 3.89e-07, + "tilley": 3.89e-07, + "tobi": 3.89e-07, + "toenail": 3.89e-07, + "toh": 3.89e-07, + "toussaint": 3.89e-07, + "tpc": 3.89e-07, + "tracers": 3.89e-07, + "trafficker": 3.89e-07, + "transducers": 3.89e-07, + "transfiguration": 3.89e-07, + "transphobia": 3.89e-07, + "trellis": 3.89e-07, + "tropicana": 3.89e-07, + "truthfulness": 3.89e-07, + "tryptophan": 3.89e-07, + "twd": 3.89e-07, + "typescript": 3.89e-07, + "tyrannosaurus": 3.89e-07, + "ulf": 3.89e-07, + "ullman": 3.89e-07, + "unblocked": 3.89e-07, + "undersized": 3.89e-07, + "understaffed": 3.89e-07, + "unexplainable": 3.89e-07, + "unflinching": 3.89e-07, + "uninhibited": 3.89e-07, + "unmodified": 3.89e-07, + "unpretentious": 3.89e-07, + "unprocessed": 3.89e-07, + "unseat": 3.89e-07, + "urbanism": 3.89e-07, + "uriel": 3.89e-07, + "usurper": 3.89e-07, + "vagaries": 3.89e-07, + "vamps": 3.89e-07, + "vermouth": 3.89e-07, + "verna": 3.89e-07, + "vespa": 3.89e-07, + "vesta": 3.89e-07, + "videographer": 3.89e-07, + "viewfinder": 3.89e-07, + "vonnegut": 3.89e-07, + "waikato": 3.89e-07, + "wanking": 3.89e-07, + "watchdogs": 3.89e-07, + "watchmaker": 3.89e-07, + "wawrinka": 3.89e-07, + "whe": 3.89e-07, + "whitefish": 3.89e-07, + "whittington": 3.89e-07, + "whoring": 3.89e-07, + "wiccan": 3.89e-07, + "wishy": 3.89e-07, + "wojciech": 3.89e-07, + "workbench": 3.89e-07, + "worksheets": 3.89e-07, + "wriggle": 3.89e-07, + "wrs": 8.13e-08, + "yama": 3.89e-07, + "yardley": 3.89e-07, + "yat": 3.89e-07, + "yearns": 3.89e-07, + "yemens": 3.89e-07, + "yoyo": 3.89e-07, + "yumi": 3.89e-07, + "aaliyah": 3.8e-07, + "aarhus": 3.8e-07, + "abdicated": 3.8e-07, + "abm": 3.8e-07, + "acceded": 3.8e-07, + "accruing": 3.8e-07, + "acquit": 3.8e-07, + "adjuvant": 3.8e-07, + "admixture": 3.8e-07, + "adopter": 3.8e-07, + "afa": 3.8e-07, + "aftershock": 3.8e-07, + "agence": 3.8e-07, + "airshow": 3.8e-07, + "albumin": 3.8e-07, + "algernon": 3.8e-07, + "aline": 3.8e-07, + "amaya": 3.8e-07, + "ambiguities": 3.8e-07, + "amirite": 3.8e-07, + "amuses": 3.8e-07, + "anchovy": 3.8e-07, + "anguished": 3.8e-07, + "antagonize": 3.8e-07, + "antalya": 3.8e-07, + "anthracite": 3.8e-07, + "appa": 3.8e-07, + "apparitions": 3.8e-07, + "applebees": 1.23e-07, + "appt": 3.8e-07, + "ariadne": 3.8e-07, + "arjuna": 3.8e-07, + "artifice": 3.8e-07, + "aryans": 3.8e-07, + "ashburn": 3.8e-07, + "asides": 3.8e-07, + "aspergillus": 3.8e-07, + "assistive": 3.8e-07, + "audibly": 3.8e-07, + "ayurvedic": 3.8e-07, + "baldy": 3.8e-07, + "balthazar": 3.8e-07, + "bartley": 3.8e-07, + "batons": 3.8e-07, + "batshit": 3.8e-07, + "beardsley": 3.8e-07, + "becks": 2.88e-07, + "begining": 3.8e-07, + "beni": 3.8e-07, + "betcha": 3.8e-07, + "bidet": 3.8e-07, + "bingley": 3.8e-07, + "biophysics": 3.8e-07, + "biscayne": 3.8e-07, + "blacksmiths": 1.26e-07, + "blobs": 3.8e-07, + "bluster": 3.8e-07, + "boc": 3.8e-07, + "bodes": 3.8e-07, + "bodie": 3.8e-07, + "bookworm": 3.8e-07, + "bowyer": 3.8e-07, + "braga": 3.8e-07, + "bratton": 3.8e-07, + "brut": 3.8e-07, + "bruyne": 3.8e-07, + "bsn": 3.8e-07, + "buell": 3.8e-07, + "bung": 3.8e-07, + "bungie": 3.8e-07, + "burkes": 9.33e-08, + "burqa": 3.8e-07, + "bursary": 3.8e-07, + "butted": 3.8e-07, + "cae": 3.8e-07, + "caffeinated": 3.8e-07, + "calvinism": 3.8e-07, + "cannery": 3.8e-07, + "canvassed": 3.8e-07, + "capra": 3.8e-07, + "captioning": 3.8e-07, + "carcinogen": 3.8e-07, + "careys": 3.8e-07, + "cased": 3.8e-07, + "catamaran": 3.8e-07, + "cates": 3.8e-07, + "catheters": 3.8e-07, + "caucasians": 3.8e-07, + "cavill": 3.8e-07, + "cdna": 3.8e-07, + "ceding": 3.8e-07, + "celled": 3.8e-07, + "changeling": 3.8e-07, + "chargeable": 3.8e-07, + "chastain": 3.8e-07, + "chatroom": 3.8e-07, + "cheadle": 3.8e-07, + "checkin": 3.8e-07, + "checklists": 3.8e-07, + "cheri": 3.8e-07, + "chieftains": 3.8e-07, + "chil": 3.8e-07, + "choreographers": 3.8e-07, + "christo": 3.8e-07, + "clasped": 3.8e-07, + "clo": 3.8e-07, + "cmb": 3.8e-07, + "coauthor": 3.8e-07, + "cocos": 1.38e-07, + "colson": 3.8e-07, + "comming": 3.8e-07, + "constantin": 3.8e-07, + "cookware": 3.8e-07, + "cooperstown": 3.8e-07, + "copacabana": 3.8e-07, + "cordell": 3.8e-07, + "corduroy": 3.8e-07, + "corky": 3.8e-07, + "corleone": 3.8e-07, + "corsets": 3.8e-07, + "cortland": 3.8e-07, + "counterculture": 3.8e-07, + "crandall": 3.8e-07, + "criminalize": 3.8e-07, + "crocheted": 3.8e-07, + "crummy": 3.8e-07, + "crusading": 3.8e-07, + "curating": 3.8e-07, + "curries": 3.8e-07, + "customizing": 3.8e-07, + "cyrano": 3.8e-07, + "dandenong": 3.8e-07, + "daniele": 3.8e-07, + "darla": 3.8e-07, + "darted": 3.8e-07, + "datacenter": 3.8e-07, + "decryption": 3.8e-07, + "degrasse": 3.8e-07, + "dembele": 3.8e-07, + "demean": 3.8e-07, + "deming": 3.8e-07, + "dempster": 3.8e-07, + "depaul": 3.8e-07, + "deterring": 3.8e-07, + "detoxification": 3.8e-07, + "deutschen": 3.8e-07, + "diatribe": 3.8e-07, + "dinar": 3.8e-07, + "dionne": 3.8e-07, + "diplomatically": 3.8e-07, + "disassemble": 3.8e-07, + "discards": 3.8e-07, + "discontinuing": 3.8e-07, + "disparage": 3.8e-07, + "disqualifying": 3.8e-07, + "ditty": 3.8e-07, + "dockers": 3.8e-07, + "dogfight": 3.8e-07, + "dordrecht": 3.8e-07, + "downers": 3.8e-07, + "downfield": 3.8e-07, + "downsized": 3.8e-07, + "dramatists": 3.8e-07, + "droll": 3.8e-07, + "drudgery": 3.8e-07, + "drupal": 3.8e-07, + "ducats": 3.8e-07, + "dulwich": 3.8e-07, + "dumbasses": 3.8e-07, + "durian": 3.8e-07, + "edinburghs": 3.8e-07, + "edl": 3.8e-07, + "edvard": 3.8e-07, + "egerton": 3.8e-07, + "electrocution": 3.8e-07, + "elkhart": 3.8e-07, + "emoluments": 3.8e-07, + "endometrial": 3.8e-07, + "energys": 3.8e-07, + "enright": 3.8e-07, + "erg": 3.8e-07, + "eucharistic": 3.8e-07, + "eusebius": 3.8e-07, + "excised": 3.8e-07, + "executioners": 8.71e-08, + "exhortation": 3.8e-07, + "exoplanet": 3.8e-07, + "exteriors": 3.8e-07, + "fader": 3.8e-07, + "fallopian": 3.8e-07, + "feign": 3.8e-07, + "fermanagh": 3.8e-07, + "fistful": 3.8e-07, + "fj": 3.8e-07, + "flamed": 3.8e-07, + "flatulence": 3.8e-07, + "flavia": 3.8e-07, + "flowchart": 3.8e-07, + "foetal": 3.8e-07, + "forgetfulness": 3.8e-07, + "fou": 3.8e-07, + "freshers": 3.8e-07, + "freuds": 3.8e-07, + "fujian": 3.8e-07, + "gaithersburg": 3.8e-07, + "garish": 3.8e-07, + "gba": 3.8e-07, + "gdi": 3.8e-07, + "geodetic": 3.8e-07, + "gian": 3.8e-07, + "gib": 3.8e-07, + "gilding": 3.8e-07, + "globalism": 3.8e-07, + "gluing": 3.8e-07, + "googly": 3.8e-07, + "gorham": 3.8e-07, + "greenbrier": 3.8e-07, + "gremlins": 3.8e-07, + "gringo": 3.8e-07, + "gunslinger": 3.8e-07, + "haan": 3.8e-07, + "hampering": 3.8e-07, + "hansard": 3.8e-07, + "harps": 3.8e-07, + "hashing": 3.8e-07, + "hayman": 3.8e-07, + "hayne": 3.8e-07, + "headspace": 3.8e-07, + "healthily": 3.8e-07, + "hedonistic": 3.8e-07, + "hegemonic": 3.8e-07, + "hehehe": 3.8e-07, + "hellboy": 3.8e-07, + "hemming": 3.8e-07, + "hesitates": 3.8e-07, + "hina": 3.8e-07, + "histological": 3.8e-07, + "hoaxes": 3.8e-07, + "hobbled": 3.8e-07, + "hodder": 3.8e-07, + "hooch": 3.8e-07, + "hsiao": 3.8e-07, + "hysterics": 3.8e-07, + "ibf": 3.8e-07, + "incas": 3.8e-07, + "incriminate": 3.8e-07, + "infill": 3.8e-07, + "inflame": 3.8e-07, + "injurious": 3.8e-07, + "integrator": 3.8e-07, + "interminable": 3.8e-07, + "interrogator": 3.8e-07, + "inthe": 3.8e-07, + "irks": 3.8e-07, + "irrigate": 3.8e-07, + "itty": 3.8e-07, + "januzaj": 3.8e-07, + "jigs": 3.8e-07, + "jinn": 3.8e-07, + "jura": 3.8e-07, + "kanawha": 3.8e-07, + "keratin": 3.8e-07, + "keurig": 3.8e-07, + "kidder": 3.8e-07, + "kinases": 3.8e-07, + "koichi": 3.8e-07, + "kom": 3.8e-07, + "kooky": 3.8e-07, + "lances": 1.66e-07, + "lansbury": 3.8e-07, + "larue": 3.8e-07, + "lauda": 3.8e-07, + "laureates": 3.8e-07, + "leaker": 3.8e-07, + "ledgers": 1.26e-07, + "leery": 3.8e-07, + "legislating": 3.8e-07, + "lepers": 3.8e-07, + "lessee": 3.8e-07, + "lethbridge": 3.8e-07, + "lettres": 3.8e-07, + "levees": 3.8e-07, + "lif": 3.8e-07, + "lobed": 3.8e-07, + "lodger": 3.8e-07, + "loew": 3.8e-07, + "lolol": 3.8e-07, + "lora": 3.8e-07, + "loveland": 3.8e-07, + "lubricating": 3.8e-07, + "lumley": 3.8e-07, + "magnetized": 3.8e-07, + "manon": 3.8e-07, + "marcella": 3.8e-07, + "marios": 1.1e-07, + "marple": 3.8e-07, + "massie": 3.8e-07, + "mastiff": 3.8e-07, + "mcewan": 3.8e-07, + "mcp": 3.8e-07, + "mediates": 3.8e-07, + "megadeth": 3.8e-07, + "mehr": 3.8e-07, + "melodious": 3.8e-07, + "microfinance": 3.8e-07, + "middleware": 3.8e-07, + "midori": 3.8e-07, + "midshipman": 3.8e-07, + "miffed": 3.8e-07, + "miho": 3.8e-07, + "minna": 3.8e-07, + "minot": 3.8e-07, + "mismanaged": 3.8e-07, + "mistral": 3.8e-07, + "mockingly": 3.8e-07, + "mook": 3.8e-07, + "morbidly": 3.8e-07, + "moresby": 3.8e-07, + "mucking": 3.8e-07, + "mudd": 3.8e-07, + "murano": 3.8e-07, + "muskegon": 3.8e-07, + "mvps": 8.71e-08, + "naan": 3.8e-07, + "naivety": 3.8e-07, + "nama": 3.8e-07, + "nanda": 3.8e-07, + "nastiness": 3.8e-07, + "nazarene": 3.8e-07, + "nem": 3.8e-07, + "newcomb": 3.8e-07, + "newsstand": 3.8e-07, + "nhls": 3.8e-07, + "nibbles": 3.8e-07, + "nonchalantly": 3.8e-07, + "normals": 3.8e-07, + "northwood": 3.8e-07, + "novartis": 3.8e-07, + "novgorod": 3.8e-07, + "nya": 3.8e-07, + "occasioned": 3.8e-07, + "occupier": 3.8e-07, + "odette": 3.8e-07, + "oki": 3.8e-07, + "oklahomas": 3.8e-07, + "omo": 3.8e-07, + "onetime": 3.8e-07, + "onondaga": 3.8e-07, + "orthography": 3.8e-07, + "ould": 3.8e-07, + "ovate": 3.8e-07, + "overflowed": 3.8e-07, + "overtakes": 3.8e-07, + "pageantry": 3.8e-07, + "parallelism": 3.8e-07, + "pba": 3.8e-07, + "peasy": 3.8e-07, + "pecans": 3.8e-07, + "penitent": 3.8e-07, + "pentagram": 3.8e-07, + "pettigrew": 3.8e-07, + "phe": 3.8e-07, + "philistine": 3.8e-07, + "phlegm": 3.8e-07, + "photonic": 3.8e-07, + "pianists": 3.8e-07, + "picketing": 3.8e-07, + "pka": 3.8e-07, + "poacher": 3.8e-07, + "poco": 3.8e-07, + "pomeranian": 3.8e-07, + "poon": 3.8e-07, + "possessor": 3.8e-07, + "precept": 3.8e-07, + "precipitous": 3.8e-07, + "previewed": 3.8e-07, + "prioritization": 3.8e-07, + "profiteering": 3.8e-07, + "proofreading": 3.8e-07, + "prospectors": 3.8e-07, + "prosser": 3.8e-07, + "prude": 3.8e-07, + "purifier": 3.8e-07, + "qiu": 3.8e-07, + "quartets": 7.76e-08, + "queers": 3.8e-07, + "quenching": 3.8e-07, + "racecar": 3.8e-07, + "radioed": 3.8e-07, + "raglan": 3.8e-07, + "ramone": 3.8e-07, + "rampaging": 3.8e-07, + "randomised": 3.8e-07, + "rapier": 3.8e-07, + "ravage": 3.8e-07, + "readjust": 3.8e-07, + "realizations": 3.8e-07, + "reams": 3.8e-07, + "redirection": 3.8e-07, + "reeses": 5.25e-08, + "reinvested": 3.8e-07, + "repeaters": 3.8e-07, + "reputedly": 3.8e-07, + "residencies": 3.8e-07, + "ridiculing": 3.8e-07, + "rifling": 3.8e-07, + "riverbed": 3.8e-07, + "robespierre": 3.8e-07, + "rons": 3.8e-07, + "rood": 3.8e-07, + "roundly": 3.8e-07, + "roz": 3.8e-07, + "rummaging": 3.8e-07, + "ryde": 3.8e-07, + "sacramental": 3.8e-07, + "sainsbury": 3.8e-07, + "sanctimonious": 3.8e-07, + "sardonic": 3.8e-07, + "sate": 3.8e-07, + "scabs": 3.8e-07, + "schafer": 3.8e-07, + "scunthorpe": 3.8e-07, + "sda": 3.8e-07, + "sdr": 3.8e-07, + "seabrook": 3.8e-07, + "sequencer": 3.8e-07, + "shittiest": 3.8e-07, + "shultz": 3.8e-07, + "siddiqui": 3.8e-07, + "sieg": 3.8e-07, + "siem": 3.8e-07, + "signers": 3.8e-07, + "sinead": 3.8e-07, + "singed": 3.8e-07, + "sle": 3.8e-07, + "sledding": 3.8e-07, + "snowboarders": 3.8e-07, + "snowdon": 3.8e-07, + "soaks": 3.8e-07, + "socialising": 3.8e-07, + "solidifying": 3.8e-07, + "solvable": 3.8e-07, + "sonatas": 3.8e-07, + "sone": 3.8e-07, + "sororities": 3.8e-07, + "sorrel": 3.8e-07, + "southwards": 3.8e-07, + "spanner": 3.8e-07, + "speakeasy": 3.8e-07, + "specialisation": 3.8e-07, + "spenser": 3.8e-07, + "spiritualism": 3.8e-07, + "srinivasan": 3.8e-07, + "sry": 3.8e-07, + "staccato": 3.8e-07, + "staid": 3.8e-07, + "steadman": 3.8e-07, + "steyn": 3.8e-07, + "stilettos": 3.8e-07, + "stormtrooper": 3.8e-07, + "strang": 3.8e-07, + "stubhub": 3.8e-07, + "subatomic": 3.8e-07, + "subclasses": 3.8e-07, + "subscribes": 3.8e-07, + "suharto": 3.8e-07, + "sulking": 3.8e-07, + "sunnyside": 3.8e-07, + "tallulah": 3.8e-07, + "tannehill": 3.8e-07, + "tastings": 3.8e-07, + "tatters": 3.8e-07, + "tayyip": 3.8e-07, + "tenderloin": 3.8e-07, + "thoroughfares": 3.8e-07, + "thunders": 1.7e-07, + "thymus": 3.8e-07, + "tidewater": 3.8e-07, + "timberland": 3.8e-07, + "tomcat": 3.8e-07, + "tomkins": 3.8e-07, + "tornados": 3.8e-07, + "tramps": 3.8e-07, + "transcribing": 3.8e-07, + "transcriptions": 3.8e-07, + "ttl": 3.8e-07, + "uml": 3.8e-07, + "unappreciated": 3.8e-07, + "uncaring": 3.8e-07, + "uncharacteristic": 3.8e-07, + "uncommonly": 3.8e-07, + "undercooked": 3.8e-07, + "unplayable": 3.8e-07, + "usefully": 3.8e-07, + "uts": 6.92e-08, + "vagueness": 3.8e-07, + "valerian": 3.8e-07, + "vexing": 3.8e-07, + "virginians": 3.8e-07, + "vivaldi": 3.8e-07, + "vivi": 3.8e-07, + "vocab": 3.8e-07, + "voicemails": 3.8e-07, + "wac": 3.8e-07, + "waddle": 3.8e-07, + "wades": 1.55e-07, + "waded": 3.8e-07, + "watchable": 3.8e-07, + "wayyy": 3.8e-07, + "wherewithal": 3.8e-07, + "whined": 3.8e-07, + "wirth": 3.8e-07, + "wombat": 3.8e-07, + "woolsey": 3.8e-07, + "workweek": 3.8e-07, + "yangs": 6.17e-08, + "yanking": 3.8e-07, + "yearned": 3.8e-07, + "zain": 3.8e-07, + "zooey": 3.8e-07, + "zuko": 3.8e-07, + "aaaah": 3.72e-07, + "abominations": 3.72e-07, + "absenteeism": 3.72e-07, + "acrylics": 3.72e-07, + "adventuring": 3.72e-07, + "aew": 3.72e-07, + "aficionado": 3.72e-07, + "ajar": 3.72e-07, + "albury": 3.72e-07, + "alene": 3.72e-07, + "allegra": 3.72e-07, + "anguilla": 3.72e-07, + "anjou": 3.72e-07, + "annalise": 3.72e-07, + "anova": 3.72e-07, + "antipsychotic": 3.72e-07, + "apl": 3.72e-07, + "apogee": 3.72e-07, + "aquatics": 3.72e-07, + "arora": 3.72e-07, + "arrayed": 3.72e-07, + "articulates": 3.72e-07, + "ashy": 3.72e-07, + "auc": 3.72e-07, + "backboard": 3.72e-07, + "bancorp": 3.72e-07, + "bandstand": 3.72e-07, + "banyan": 3.72e-07, + "bara": 3.72e-07, + "barnyard": 3.72e-07, + "basf": 3.72e-07, + "batt": 3.72e-07, + "bau": 3.72e-07, + "bazar": 3.72e-07, + "bbm": 3.72e-07, + "bcm": 3.72e-07, + "beaulieu": 3.72e-07, + "begrudge": 3.72e-07, + "belatedly": 3.72e-07, + "benadryl": 3.72e-07, + "bernd": 3.72e-07, + "biggar": 3.72e-07, + "bioavailability": 3.72e-07, + "biogas": 3.72e-07, + "biosciences": 3.72e-07, + "bisexuals": 3.72e-07, + "bishopric": 3.72e-07, + "blackhawk": 3.72e-07, + "blacking": 3.72e-07, + "blimey": 3.72e-07, + "blitzer": 3.72e-07, + "bolting": 3.72e-07, + "bookish": 3.72e-07, + "bookshops": 3.72e-07, + "bosphorus": 3.72e-07, + "brainiac": 3.72e-07, + "brasilia": 3.72e-07, + "brevard": 3.72e-07, + "brioche": 3.72e-07, + "brutish": 3.72e-07, + "bui": 3.72e-07, + "bukit": 3.72e-07, + "buller": 3.72e-07, + "bushing": 3.72e-07, + "busily": 3.72e-07, + "byline": 3.72e-07, + "calamari": 3.72e-07, + "cami": 3.72e-07, + "cannabinoids": 3.72e-07, + "captor": 3.72e-07, + "carlotta": 3.72e-07, + "carrs": 5.01e-08, + "carsten": 3.72e-07, + "cashman": 3.72e-07, + "caterina": 3.72e-07, + "caw": 3.72e-07, + "cci": 3.72e-07, + "ceaseless": 3.72e-07, + "charli": 3.72e-07, + "charmingly": 3.72e-07, + "childhoods": 7.94e-08, + "chinchilla": 3.72e-07, + "chrysanthemum": 3.72e-07, + "cobham": 3.72e-07, + "codenamed": 3.72e-07, + "cognitively": 3.72e-07, + "coining": 3.72e-07, + "collette": 3.72e-07, + "coms": 7.08e-08, + "concertos": 3.72e-07, + "concubines": 3.72e-07, + "conflagration": 3.72e-07, + "congenial": 3.72e-07, + "consoled": 3.72e-07, + "constriction": 3.72e-07, + "cookers": 3.72e-07, + "coppers": 6.46e-08, + "corks": 3.72e-07, + "coutts": 3.72e-07, + "coverup": 3.72e-07, + "coxs": 3.72e-07, + "creampie": 3.72e-07, + "credibly": 3.72e-07, + "cringed": 3.72e-07, + "crozier": 3.72e-07, + "crunched": 3.72e-07, + "cso": 3.72e-07, + "csv": 3.72e-07, + "csx": 3.72e-07, + "cumulus": 3.72e-07, + "cytotoxic": 3.72e-07, + "daedalus": 3.72e-07, + "dcc": 3.72e-07, + "debussy": 3.72e-07, + "decathlon": 3.72e-07, + "deflections": 3.72e-07, + "defrauding": 3.72e-07, + "depressant": 3.72e-07, + "derangement": 3.72e-07, + "derp": 3.72e-07, + "despotic": 3.72e-07, + "devito": 3.72e-07, + "disallow": 3.72e-07, + "discriminates": 3.72e-07, + "disgustingly": 3.72e-07, + "disulfide": 3.72e-07, + "dnp": 3.72e-07, + "doctorates": 3.72e-07, + "doghouse": 3.72e-07, + "dottie": 3.72e-07, + "doubleheader": 3.72e-07, + "drg": 3.72e-07, + "drivetrain": 3.72e-07, + "dropper": 3.72e-07, + "druze": 3.72e-07, + "dvorak": 3.72e-07, + "dysphoria": 3.72e-07, + "eclipsing": 3.72e-07, + "educations": 3.47e-07, + "einar": 3.72e-07, + "elks": 3.72e-07, + "emin": 3.72e-07, + "employability": 3.72e-07, + "enchant": 3.72e-07, + "engle": 3.72e-07, + "entanglements": 3.72e-07, + "equalize": 3.72e-07, + "esau": 3.72e-07, + "eschew": 3.72e-07, + "etude": 3.72e-07, + "exhaled": 3.72e-07, + "expanses": 3.72e-07, + "expansionist": 3.72e-07, + "expressionism": 3.72e-07, + "externalities": 3.72e-07, + "extractive": 3.72e-07, + "extrovert": 3.72e-07, + "fabius": 3.72e-07, + "faints": 3.72e-07, + "fata": 3.72e-07, + "feeney": 3.72e-07, + "fendi": 3.72e-07, + "fics": 3.72e-07, + "figment": 3.72e-07, + "firmament": 3.72e-07, + "fleck": 3.72e-07, + "flipside": 3.72e-07, + "floodwaters": 3.72e-07, + "floundering": 3.72e-07, + "fondant": 3.72e-07, + "foolhardy": 3.72e-07, + "fortaleza": 3.72e-07, + "fossa": 3.72e-07, + "fredo": 3.72e-07, + "freeware": 3.72e-07, + "furrow": 3.72e-07, + "gaffer": 3.72e-07, + "gaiety": 3.72e-07, + "galleon": 3.72e-07, + "gama": 3.72e-07, + "garnier": 3.72e-07, + "gauguin": 3.72e-07, + "geico": 3.72e-07, + "geist": 3.72e-07, + "generically": 3.72e-07, + "genitive": 3.72e-07, + "geoscience": 3.72e-07, + "girders": 3.72e-07, + "giveth": 3.72e-07, + "glenelg": 3.72e-07, + "globalized": 3.72e-07, + "glycerol": 3.72e-07, + "glycoprotein": 3.72e-07, + "godolphin": 3.72e-07, + "gooding": 3.72e-07, + "granary": 3.72e-07, + "graveyards": 3.72e-07, + "gravitas": 3.72e-07, + "greenback": 3.72e-07, + "gregs": 3.72e-07, + "grenfell": 3.72e-07, + "grieves": 3.72e-07, + "grimly": 3.72e-07, + "grooved": 3.72e-07, + "grosses": 3.72e-07, + "grownups": 3.72e-07, + "gutless": 3.72e-07, + "hak": 3.72e-07, + "hanes": 3.72e-07, + "harrods": 3.72e-07, + "hayashi": 3.72e-07, + "haywire": 3.72e-07, + "heaney": 3.72e-07, + "hendrik": 3.72e-07, + "heredity": 3.72e-07, + "hermosa": 3.72e-07, + "hibernating": 3.72e-07, + "highbury": 3.72e-07, + "hing": 3.72e-07, + "hobbyist": 3.72e-07, + "hocus": 3.72e-07, + "hollins": 3.72e-07, + "horvath": 3.72e-07, + "hosea": 3.72e-07, + "hsien": 3.72e-07, + "hymen": 3.72e-07, + "ices": 1.58e-07, + "idgaf": 3.72e-07, + "impairs": 3.72e-07, + "inaccurately": 3.72e-07, + "inadequacies": 3.72e-07, + "inaugurate": 3.72e-07, + "inching": 3.72e-07, + "inexhaustible": 3.72e-07, + "inexorable": 3.72e-07, + "inferring": 3.72e-07, + "infinitive": 3.72e-07, + "ingots": 3.72e-07, + "inoculated": 3.72e-07, + "inoue": 3.72e-07, + "instinctual": 3.72e-07, + "intangibles": 3.72e-07, + "intersected": 3.72e-07, + "iowas": 3.72e-07, + "irena": 3.72e-07, + "irfan": 3.72e-07, + "irregularity": 3.72e-07, + "irv": 3.72e-07, + "isco": 3.72e-07, + "islams": 3.72e-07, + "issac": 3.72e-07, + "janeway": 3.72e-07, + "jaye": 3.72e-07, + "jepsen": 3.72e-07, + "jessi": 3.72e-07, + "jogged": 3.72e-07, + "juli": 3.72e-07, + "kamloops": 3.72e-07, + "kandy": 3.72e-07, + "kaoru": 3.72e-07, + "kazuo": 3.72e-07, + "kempton": 3.72e-07, + "kens": 1.15e-07, + "kenilworth": 3.72e-07, + "khun": 3.72e-07, + "knead": 3.72e-07, + "kno": 3.72e-07, + "kop": 3.72e-07, + "landmines": 3.72e-07, + "laney": 3.72e-07, + "lanza": 3.72e-07, + "larrys": 3.72e-07, + "latinas": 3.72e-07, + "latour": 3.72e-07, + "lav": 3.72e-07, + "leapfrog": 3.72e-07, + "lemur": 3.72e-07, + "leyton": 3.72e-07, + "lieut": 3.72e-07, + "liken": 3.72e-07, + "linker": 3.72e-07, + "lismore": 3.72e-07, + "littlefield": 3.72e-07, + "loons": 3.72e-07, + "lovemaking": 3.72e-07, + "lovren": 3.72e-07, + "lugging": 3.72e-07, + "lululemon": 3.72e-07, + "lumens": 3.72e-07, + "lurked": 3.72e-07, + "magnetically": 3.72e-07, + "magnetite": 3.72e-07, + "malcom": 3.72e-07, + "malfunctioned": 3.72e-07, + "malo": 3.72e-07, + "mance": 3.72e-07, + "maneuvered": 3.72e-07, + "mappings": 3.72e-07, + "marauder": 3.72e-07, + "maribor": 3.72e-07, + "marksmanship": 3.72e-07, + "masood": 3.72e-07, + "masterfully": 3.72e-07, + "maurizio": 3.72e-07, + "mawr": 3.72e-07, + "maximising": 3.72e-07, + "mcenroe": 3.72e-07, + "mcmurdo": 3.72e-07, + "meath": 3.72e-07, + "merv": 3.72e-07, + "metalcore": 3.72e-07, + "metastases": 3.72e-07, + "meu": 3.72e-07, + "militarization": 3.72e-07, + "minimization": 3.72e-07, + "missa": 3.72e-07, + "mitchel": 3.72e-07, + "mitral": 3.72e-07, + "montmartre": 3.72e-07, + "morata": 3.72e-07, + "moribund": 3.72e-07, + "mortensen": 3.72e-07, + "mose": 3.72e-07, + "muda": 3.72e-07, + "mulatto": 3.72e-07, + "multicast": 3.72e-07, + "mumbo": 3.72e-07, + "musicianship": 3.72e-07, + "napster": 3.72e-07, + "narco": 3.72e-07, + "nci": 3.72e-07, + "needlework": 3.72e-07, + "nematode": 3.72e-07, + "neurosis": 3.72e-07, + "nevins": 3.72e-07, + "newhouse": 3.72e-07, + "newlywed": 3.72e-07, + "nicolson": 3.72e-07, + "nicosia": 3.72e-07, + "nominative": 3.72e-07, + "nono": 3.72e-07, + "northland": 3.72e-07, + "nougat": 3.72e-07, + "npt": 3.72e-07, + "nss": 3.72e-07, + "nullification": 3.72e-07, + "numeracy": 3.72e-07, + "nuptial": 3.72e-07, + "oban": 3.72e-07, + "obligate": 3.72e-07, + "obstetric": 3.72e-07, + "octaves": 3.72e-07, + "odeon": 3.72e-07, + "okanagan": 3.72e-07, + "oldfield": 3.72e-07, + "olsson": 3.72e-07, + "oppressing": 3.72e-07, + "outerwear": 3.72e-07, + "outflows": 3.72e-07, + "overdoing": 3.72e-07, + "overhauling": 3.72e-07, + "overwhelms": 3.72e-07, + "ows": 3.72e-07, + "oxon": 3.72e-07, + "pacification": 3.72e-07, + "palme": 3.72e-07, + "palos": 3.72e-07, + "paradis": 3.72e-07, + "parlay": 3.72e-07, + "penalised": 3.72e-07, + "peony": 3.72e-07, + "perceptible": 3.72e-07, + "perches": 3.72e-07, + "perinatal": 3.72e-07, + "permanente": 3.72e-07, + "personalization": 3.72e-07, + "persson": 3.72e-07, + "perusing": 3.72e-07, + "pester": 3.72e-07, + "petey": 3.72e-07, + "phonetics": 3.72e-07, + "piet": 3.72e-07, + "pika": 3.72e-07, + "pittsburghs": 3.72e-07, + "plodding": 3.72e-07, + "pluralistic": 3.72e-07, + "pocus": 3.72e-07, + "poetical": 3.72e-07, + "poltergeist": 3.72e-07, + "ponders": 3.72e-07, + "poops": 3.72e-07, + "potro": 3.72e-07, + "pounced": 3.72e-07, + "powerplant": 3.72e-07, + "preorders": 3.72e-07, + "printmaking": 3.72e-07, + "promissory": 3.72e-07, + "pruned": 3.72e-07, + "publ": 3.72e-07, + "pushers": 3.72e-07, + "pyke": 3.72e-07, + "pythagorean": 3.72e-07, + "qualitatively": 3.72e-07, + "quant": 3.72e-07, + "quinnipiac": 3.72e-07, + "ragtime": 3.72e-07, + "rawlins": 3.72e-07, + "rba": 3.72e-07, + "reassures": 3.72e-07, + "rebar": 3.72e-07, + "recliner": 3.72e-07, + "reconfigure": 3.72e-07, + "recreations": 3.72e-07, + "redemptive": 3.72e-07, + "redevelop": 3.72e-07, + "redwoods": 3.72e-07, + "refuelling": 3.72e-07, + "refurbish": 3.72e-07, + "reimagining": 3.72e-07, + "remodelling": 3.72e-07, + "remoteness": 3.72e-07, + "resonances": 3.72e-07, + "resonating": 3.72e-07, + "retold": 3.72e-07, + "retry": 3.72e-07, + "rhesus": 3.72e-07, + "rickard": 3.72e-07, + "ricoh": 3.72e-07, + "ridgway": 3.72e-07, + "riesling": 3.72e-07, + "rikki": 3.72e-07, + "rosenbaum": 3.72e-07, + "royalists": 3.72e-07, + "rudyard": 3.72e-07, + "smores": 7.41e-08, + "sacco": 3.72e-07, + "sadism": 3.72e-07, + "sagar": 3.72e-07, + "saki": 3.72e-07, + "salicylic": 3.72e-07, + "sandringham": 3.72e-07, + "sanitized": 3.72e-07, + "sarandon": 3.72e-07, + "saturate": 3.72e-07, + "schatz": 3.72e-07, + "scipio": 3.72e-07, + "scrupulous": 3.72e-07, + "seagate": 3.72e-07, + "sealer": 3.72e-07, + "sectarianism": 3.72e-07, + "semicircular": 3.72e-07, + "sez": 3.72e-07, + "shana": 3.72e-07, + "shashi": 3.72e-07, + "sheri": 3.72e-07, + "shootin": 3.72e-07, + "shortcoming": 3.72e-07, + "showmanship": 3.72e-07, + "sids": 1.58e-07, + "sifted": 3.72e-07, + "skydive": 3.72e-07, + "sleds": 3.72e-07, + "smock": 3.72e-07, + "smudged": 3.72e-07, + "sna": 3.72e-07, + "sniffs": 3.72e-07, + "snuffed": 3.72e-07, + "soca": 3.72e-07, + "socratic": 3.72e-07, + "solute": 3.72e-07, + "sombrero": 3.72e-07, + "sommers": 3.72e-07, + "souths": 3.02e-07, + "southerner": 3.72e-07, + "southpaw": 3.72e-07, + "specializations": 3.72e-07, + "sprayer": 3.72e-07, + "squirts": 3.72e-07, + "stags": 3.72e-07, + "stansted": 3.72e-07, + "staph": 3.72e-07, + "starchy": 3.72e-07, + "statuary": 3.72e-07, + "stereoscopic": 3.72e-07, + "stil": 3.72e-07, + "stoneware": 3.72e-07, + "stover": 3.72e-07, + "subreddit": 3.72e-07, + "suffused": 3.72e-07, + "svalbard": 3.72e-07, + "symbiote": 3.72e-07, + "symons": 3.72e-07, + "synthesizing": 3.72e-07, + "systematics": 3.72e-07, + "tactician": 3.72e-07, + "tah": 3.72e-07, + "tasers": 3.72e-07, + "tassels": 3.72e-07, + "tavistock": 3.72e-07, + "tdi": 3.72e-07, + "testaments": 3.72e-07, + "theon": 3.72e-07, + "thicknesses": 3.72e-07, + "thins": 3.72e-07, + "tiago": 3.72e-07, + "tidbit": 3.72e-07, + "tik": 3.72e-07, + "tobe": 3.72e-07, + "toma": 3.72e-07, + "torpedoed": 3.72e-07, + "torturous": 3.72e-07, + "torus": 3.72e-07, + "toth": 3.72e-07, + "touristy": 3.72e-07, + "transceiver": 3.72e-07, + "transcending": 3.72e-07, + "transmutation": 3.72e-07, + "ttip": 3.72e-07, + "turntables": 3.72e-07, + "twitchy": 3.72e-07, + "tyrrell": 3.72e-07, + "ufa": 3.72e-07, + "uhd": 3.72e-07, + "ultimo": 3.72e-07, + "unassisted": 3.72e-07, + "undercutting": 3.72e-07, + "undergarments": 3.72e-07, + "undertale": 3.72e-07, + "unranked": 3.72e-07, + "unsatisfying": 3.72e-07, + "unsophisticated": 3.72e-07, + "unspoiled": 3.72e-07, + "uriah": 3.72e-07, + "usm": 3.72e-07, + "vaca": 3.72e-07, + "veneto": 3.72e-07, + "verifies": 3.72e-07, + "vermillion": 3.72e-07, + "vh": 3.72e-07, + "vibrators": 3.72e-07, + "vinod": 3.72e-07, + "vitriolic": 3.72e-07, + "voight": 3.72e-07, + "volleys": 3.72e-07, + "wahoo": 3.72e-07, + "watercraft": 3.72e-07, + "waterlogged": 3.72e-07, + "whacking": 3.72e-07, + "whalen": 3.72e-07, + "whiteman": 3.72e-07, + "winemakers": 3.72e-07, + "wiretaps": 3.72e-07, + "wisteria": 3.72e-07, + "wordless": 3.72e-07, + "wyeth": 3.72e-07, + "wyo": 3.72e-07, + "yalta": 3.72e-07, + "yazidi": 3.72e-07, + "yiu": 3.72e-07, + "yp": 3.72e-07, + "yuh": 3.72e-07, + "zillow": 3.72e-07, + "zimbabwes": 3.72e-07, + "zippers": 3.72e-07, + "zoya": 3.72e-07, + "abetted": 3.63e-07, + "abit": 3.63e-07, + "abstracting": 3.63e-07, + "acb": 3.63e-07, + "actuated": 3.63e-07, + "addled": 3.63e-07, + "adil": 3.63e-07, + "aeneas": 3.63e-07, + "afs": 3.63e-07, + "aftershave": 3.63e-07, + "aiko": 3.63e-07, + "airdrop": 3.63e-07, + "akram": 3.63e-07, + "alarmist": 3.63e-07, + "althea": 3.63e-07, + "amari": 3.63e-07, + "ameliorate": 3.63e-07, + "americanism": 3.63e-07, + "anak": 3.63e-07, + "anderlecht": 3.63e-07, + "anemone": 3.63e-07, + "angell": 3.63e-07, + "antifreeze": 3.63e-07, + "arco": 3.63e-07, + "artem": 3.63e-07, + "artis": 3.63e-07, + "asinine": 3.63e-07, + "astrologers": 3.63e-07, + "authorising": 3.63e-07, + "autocad": 3.63e-07, + "babysitters": 6.61e-08, + "backyards": 3.63e-07, + "bails": 3.63e-07, + "bamba": 3.63e-07, + "bankrupted": 3.63e-07, + "barksdale": 3.63e-07, + "barrios": 3.63e-07, + "baumann": 3.63e-07, + "bawdy": 3.63e-07, + "beaut": 3.63e-07, + "becuase": 3.63e-07, + "befriending": 3.63e-07, + "begum": 3.63e-07, + "beijings": 3.63e-07, + "belfry": 3.63e-07, + "beloit": 3.63e-07, + "bemused": 3.63e-07, + "berating": 3.63e-07, + "berkowitz": 3.63e-07, + "bettys": 5.25e-08, + "bgs": 7.59e-08, + "bhagat": 3.63e-07, + "bianco": 3.63e-07, + "bicker": 3.63e-07, + "bicyclists": 3.63e-07, + "blackbeard": 3.63e-07, + "blitzkrieg": 3.63e-07, + "boozer": 3.63e-07, + "bossing": 3.63e-07, + "brabham": 3.63e-07, + "bradleys": 6.03e-08, + "bramble": 3.63e-07, + "bremer": 3.63e-07, + "bric": 3.63e-07, + "brics": 3.63e-07, + "bruni": 3.63e-07, + "bryans": 8.32e-08, + "bsb": 3.63e-07, + "burnished": 3.63e-07, + "bursaries": 3.63e-07, + "butchery": 3.63e-07, + "cala": 3.63e-07, + "calloway": 3.63e-07, + "candlesticks": 3.63e-07, + "carbonyl": 3.63e-07, + "cardenas": 3.63e-07, + "cardigans": 3.63e-07, + "catty": 3.63e-07, + "cavalli": 3.63e-07, + "ccl": 3.63e-07, + "cfd": 3.63e-07, + "charlize": 3.63e-07, + "chewie": 3.63e-07, + "chittagong": 3.63e-07, + "cinque": 3.63e-07, + "claustrophobia": 3.63e-07, + "cleaved": 3.63e-07, + "coleraine": 3.63e-07, + "computationally": 3.63e-07, + "concurrence": 3.63e-07, + "conscripted": 3.63e-07, + "conspiratorial": 3.63e-07, + "cookin": 3.63e-07, + "cornucopia": 3.63e-07, + "corvettes": 3.63e-07, + "cotswold": 3.63e-07, + "covariance": 3.63e-07, + "cowper": 3.63e-07, + "crabb": 3.63e-07, + "creepiest": 3.63e-07, + "crustacean": 3.63e-07, + "ctf": 3.63e-07, + "cuny": 3.63e-07, + "curia": 3.63e-07, + "currys": 1.7e-07, + "curtailing": 3.63e-07, + "cybermen": 3.63e-07, + "cyborgs": 3.63e-07, + "daffodil": 3.63e-07, + "dangled": 3.63e-07, + "darrin": 3.63e-07, + "debriefing": 3.63e-07, + "debutant": 3.63e-07, + "decorators": 3.63e-07, + "delineate": 3.63e-07, + "demure": 3.63e-07, + "depresses": 3.63e-07, + "descendents": 3.63e-07, + "detested": 3.63e-07, + "dethroned": 3.63e-07, + "dionysius": 3.63e-07, + "disavowed": 3.63e-07, + "discerned": 3.63e-07, + "disembarked": 3.63e-07, + "disinterest": 3.63e-07, + "dissented": 3.63e-07, + "dissuaded": 3.63e-07, + "dogwood": 3.63e-07, + "domiciled": 3.63e-07, + "dornan": 3.63e-07, + "dripped": 3.63e-07, + "dustbin": 3.63e-07, + "dutchess": 3.63e-07, + "edgewood": 3.63e-07, + "eevee": 3.63e-07, + "efe": 3.63e-07, + "eisner": 3.63e-07, + "electrophoresis": 3.63e-07, + "eliciting": 3.63e-07, + "elicits": 3.63e-07, + "ello": 3.63e-07, + "embalming": 3.63e-07, + "embezzled": 3.63e-07, + "encyclopedic": 3.63e-07, + "enos": 8.71e-08, + "entrees": 3.63e-07, + "epistemic": 3.63e-07, + "epub": 3.63e-07, + "estrangement": 3.63e-07, + "ethnology": 3.63e-07, + "etoo": 3.63e-07, + "evaporating": 3.63e-07, + "extenuating": 3.63e-07, + "facilitys": 3.63e-07, + "fallible": 3.63e-07, + "fandoms": 3.63e-07, + "farhan": 3.63e-07, + "fars": 3.63e-07, + "fenner": 3.63e-07, + "fides": 3.63e-07, + "filigree": 3.63e-07, + "fincher": 3.63e-07, + "firings": 3.63e-07, + "fissile": 3.63e-07, + "flagg": 3.63e-07, + "flaunts": 3.63e-07, + "fleischer": 3.63e-07, + "forking": 3.63e-07, + "freefall": 3.63e-07, + "frigging": 3.63e-07, + "fujifilm": 3.63e-07, + "furtherance": 3.63e-07, + "futon": 3.63e-07, + "gabor": 3.63e-07, + "gabriele": 3.63e-07, + "gangland": 3.63e-07, + "gating": 3.63e-07, + "gauthier": 3.63e-07, + "gaynor": 3.63e-07, + "geffen": 3.63e-07, + "geographer": 3.63e-07, + "georgette": 3.63e-07, + "gerda": 3.63e-07, + "gippsland": 3.63e-07, + "gisele": 3.63e-07, + "giuliano": 3.63e-07, + "glabrous": 3.63e-07, + "globo": 3.63e-07, + "gloved": 3.63e-07, + "gnaw": 3.63e-07, + "godson": 3.63e-07, + "grahame": 3.63e-07, + "grasse": 3.63e-07, + "gravelly": 3.63e-07, + "grazia": 3.63e-07, + "grenadines": 3.63e-07, + "grizzled": 3.63e-07, + "grosser": 3.63e-07, + "guetta": 3.63e-07, + "gusting": 3.63e-07, + "gwendolyn": 3.63e-07, + "haaretz": 3.63e-07, + "hagrid": 3.63e-07, + "halfpenny": 3.63e-07, + "hammam": 3.63e-07, + "harlequins": 3.63e-07, + "harmoniously": 3.63e-07, + "hasta": 3.63e-07, + "hayat": 3.63e-07, + "hazrat": 3.63e-07, + "headlamps": 3.63e-07, + "heartening": 3.63e-07, + "hebdo": 3.63e-07, + "hedged": 3.63e-07, + "hemi": 3.63e-07, + "hemmings": 3.63e-07, + "henny": 3.63e-07, + "hermetic": 3.63e-07, + "hessian": 3.63e-07, + "hic": 3.63e-07, + "hijacker": 3.63e-07, + "hippopotamus": 3.63e-07, + "hod": 3.63e-07, + "holla": 3.63e-07, + "homophobe": 3.63e-07, + "hondas": 1.17e-07, + "honeybees": 3.63e-07, + "honorees": 3.63e-07, + "hoopla": 3.63e-07, + "hora": 3.63e-07, + "hornsby": 3.63e-07, + "hrw": 3.63e-07, + "huffpost": 3.63e-07, + "hulme": 3.63e-07, + "humps": 3.63e-07, + "hurtling": 3.63e-07, + "hyperinflation": 3.63e-07, + "icj": 3.63e-07, + "identifications": 3.63e-07, + "ideologues": 3.63e-07, + "idiosyncrasies": 3.63e-07, + "imelda": 3.63e-07, + "immigrating": 3.63e-07, + "imperialists": 3.63e-07, + "imploded": 3.63e-07, + "incantation": 3.63e-07, + "infielder": 3.63e-07, + "infrastructural": 3.63e-07, + "inhumanity": 3.63e-07, + "inigo": 3.63e-07, + "initialization": 3.63e-07, + "inoffensive": 3.63e-07, + "inscrutable": 3.63e-07, + "intercede": 3.63e-07, + "internals": 3.63e-07, + "internationalization": 3.63e-07, + "irrationally": 3.63e-07, + "irrepressible": 3.63e-07, + "isha": 3.63e-07, + "ishida": 3.63e-07, + "isr": 3.63e-07, + "ith": 3.63e-07, + "ivar": 3.63e-07, + "jalapeno": 3.63e-07, + "joinery": 3.63e-07, + "jove": 3.63e-07, + "kaboom": 3.63e-07, + "katies": 3.63e-07, + "kaylee": 3.63e-07, + "kennys": 3.63e-07, + "kents": 1.17e-07, + "keswick": 3.63e-07, + "kettles": 5.25e-08, + "kilburn": 3.63e-07, + "knitwear": 3.63e-07, + "knowledgable": 3.63e-07, + "kompany": 3.63e-07, + "koscielny": 3.63e-07, + "kundalini": 3.63e-07, + "lally": 3.63e-07, + "laporte": 3.63e-07, + "latching": 3.63e-07, + "laver": 3.63e-07, + "lebanons": 3.63e-07, + "lel": 3.63e-07, + "leninism": 3.63e-07, + "liams": 3.63e-07, + "lichens": 3.63e-07, + "lithograph": 3.63e-07, + "lockup": 3.63e-07, + "lope": 3.63e-07, + "lorain": 3.63e-07, + "loring": 3.63e-07, + "lotr": 3.63e-07, + "louboutin": 3.63e-07, + "lovebirds": 3.63e-07, + "lsc": 3.63e-07, + "lucent": 3.63e-07, + "ludacris": 3.63e-07, + "lyell": 3.63e-07, + "macomb": 3.63e-07, + "madurai": 3.63e-07, + "margherita": 3.63e-07, + "marl": 3.63e-07, + "marne": 3.63e-07, + "marveled": 3.63e-07, + "matias": 3.63e-07, + "maxillary": 3.63e-07, + "mccluskey": 3.63e-07, + "mcmullen": 3.63e-07, + "meiosis": 3.63e-07, + "mela": 3.63e-07, + "mensch": 3.63e-07, + "menzel": 3.63e-07, + "merkels": 3.63e-07, + "messin": 3.63e-07, + "metacritic": 3.63e-07, + "meted": 3.63e-07, + "mgs": 8.13e-08, + "miroslav": 3.63e-07, + "misadventures": 3.63e-07, + "misconstrued": 3.63e-07, + "miser": 3.63e-07, + "mises": 3.63e-07, + "misreading": 3.63e-07, + "mizzou": 3.63e-07, + "mln": 3.63e-07, + "mmp": 3.63e-07, + "mockup": 3.63e-07, + "modena": 3.63e-07, + "monogatari": 3.63e-07, + "montaigne": 3.63e-07, + "montanas": 3.63e-07, + "moog": 3.63e-07, + "morison": 3.63e-07, + "moslem": 3.63e-07, + "mpaa": 3.63e-07, + "mpi": 3.63e-07, + "myopia": 3.63e-07, + "myrrh": 3.63e-07, + "naidu": 3.63e-07, + "nakedness": 3.63e-07, + "nashs": 3.63e-07, + "nazir": 3.63e-07, + "negates": 3.63e-07, + "negros": 3.63e-07, + "neurologic": 3.63e-07, + "newsday": 3.63e-07, + "newsreel": 3.63e-07, + "nikos": 3.63e-07, + "nitrite": 3.63e-07, + "nominates": 3.63e-07, + "npl": 3.63e-07, + "nrs": 3.63e-07, + "obfuscation": 3.63e-07, + "ome": 3.63e-07, + "omi": 3.63e-07, + "osceola": 3.63e-07, + "ozawa": 3.63e-07, + "pallas": 3.63e-07, + "pappy": 3.63e-07, + "parsonage": 3.63e-07, + "pecs": 3.63e-07, + "peebles": 3.63e-07, + "pees": 3.63e-07, + "peeta": 3.63e-07, + "pelle": 3.63e-07, + "pentax": 3.63e-07, + "perfectionism": 3.63e-07, + "perforation": 3.63e-07, + "periodicity": 3.63e-07, + "personals": 3.63e-07, + "pettis": 3.63e-07, + "phenolic": 3.63e-07, + "phosphor": 3.63e-07, + "photonics": 3.63e-07, + "pierrot": 3.63e-07, + "pigtails": 3.63e-07, + "pistachios": 3.63e-07, + "platformer": 3.63e-07, + "plied": 3.63e-07, + "pll": 3.63e-07, + "ponta": 3.63e-07, + "pooper": 3.63e-07, + "poppa": 3.63e-07, + "porpoise": 3.63e-07, + "portmanteau": 3.63e-07, + "postural": 3.63e-07, + "ppa": 3.63e-07, + "prednisone": 3.63e-07, + "preordered": 3.63e-07, + "professes": 3.63e-07, + "prototypical": 3.63e-07, + "pseudoscience": 3.63e-07, + "puritanical": 3.63e-07, + "pushups": 3.63e-07, + "pyrite": 3.63e-07, + "quadrants": 3.63e-07, + "quayle": 3.63e-07, + "quitter": 3.63e-07, + "rafter": 3.63e-07, + "raisers": 3.63e-07, + "rationalist": 3.63e-07, + "rcc": 3.63e-07, + "redknapp": 3.63e-07, + "reedy": 3.63e-07, + "refreshes": 3.63e-07, + "refurbishing": 3.63e-07, + "registrants": 3.63e-07, + "relapsing": 3.63e-07, + "repudiation": 3.63e-07, + "reselling": 3.63e-07, + "retaken": 3.63e-07, + "retaking": 3.63e-07, + "revis": 3.63e-07, + "rhee": 3.63e-07, + "rheumatic": 3.63e-07, + "ridiculousness": 3.63e-07, + "rinks": 3.63e-07, + "roadkill": 3.63e-07, + "romana": 3.63e-07, + "rooks": 3.63e-07, + "rooneys": 3.63e-07, + "roque": 3.63e-07, + "rostrum": 3.63e-07, + "rothstein": 3.63e-07, + "rua": 3.63e-07, + "sagebrush": 3.63e-07, + "saheb": 3.63e-07, + "sajid": 3.63e-07, + "sakho": 3.63e-07, + "sanctification": 3.63e-07, + "sandhurst": 3.63e-07, + "sandstones": 3.63e-07, + "sanfl": 3.63e-07, + "sau": 3.63e-07, + "savin": 3.63e-07, + "scalloped": 3.63e-07, + "scalps": 3.63e-07, + "schuylkill": 3.63e-07, + "scudder": 3.63e-07, + "sdp": 3.63e-07, + "seager": 3.63e-07, + "sealant": 3.63e-07, + "seeped": 3.63e-07, + "segue": 3.63e-07, + "sequin": 3.63e-07, + "sevenfold": 3.63e-07, + "sforza": 3.63e-07, + "shackle": 3.63e-07, + "shapely": 3.63e-07, + "shellac": 3.63e-07, + "shoelaces": 3.63e-07, + "shutdowns": 3.63e-07, + "sidi": 3.63e-07, + "sif": 3.63e-07, + "skirted": 3.63e-07, + "sleepiness": 3.63e-07, + "slurp": 3.63e-07, + "soothes": 3.63e-07, + "soundness": 3.63e-07, + "spammed": 3.63e-07, + "spca": 3.63e-07, + "spotters": 3.63e-07, + "springbok": 3.63e-07, + "springboks": 3.63e-07, + "squealed": 3.63e-07, + "srinivas": 3.63e-07, + "starkly": 3.63e-07, + "stealthily": 3.63e-07, + "stilted": 3.63e-07, + "stooped": 3.63e-07, + "stuyvesant": 3.63e-07, + "suds": 3.63e-07, + "sumitomo": 3.63e-07, + "sunburst": 3.63e-07, + "supplant": 3.63e-07, + "sura": 3.63e-07, + "sweatshop": 3.63e-07, + "synthetics": 3.63e-07, + "tada": 3.63e-07, + "taf": 3.63e-07, + "talkies": 3.63e-07, + "tamales": 3.63e-07, + "tastefully": 3.63e-07, + "tbe": 3.63e-07, + "technica": 3.63e-07, + "technologys": 3.63e-07, + "teetering": 3.63e-07, + "telegraphed": 3.63e-07, + "timezone": 3.63e-07, + "tohoku": 3.63e-07, + "townsfolk": 3.63e-07, + "traci": 3.63e-07, + "trav": 3.63e-07, + "treasurers": 1.62e-07, + "trt": 3.63e-07, + "tryst": 3.63e-07, + "tubal": 3.63e-07, + "tuft": 3.63e-07, + "turpentine": 3.63e-07, + "twang": 3.63e-07, + "typesetting": 3.63e-07, + "uas": 5.62e-08, + "ucs": 8.13e-08, + "udaipur": 3.63e-07, + "ugandas": 3.63e-07, + "underpass": 3.63e-07, + "undeterred": 3.63e-07, + "unhappily": 3.63e-07, + "unoriginal": 3.63e-07, + "unpalatable": 3.63e-07, + "unwillingly": 3.63e-07, + "unwrap": 3.63e-07, + "unzipped": 3.63e-07, + "upwardly": 3.63e-07, + "usr": 3.63e-07, + "uwe": 3.63e-07, + "uyghur": 3.63e-07, + "vanadium": 3.63e-07, + "varian": 3.63e-07, + "verdes": 3.63e-07, + "verlander": 3.63e-07, + "vernal": 3.63e-07, + "vibrato": 3.63e-07, + "viewings": 3.63e-07, + "waifu": 3.63e-07, + "waitrose": 3.63e-07, + "wakeup": 3.63e-07, + "walleye": 3.63e-07, + "wallingford": 3.63e-07, + "warnock": 3.63e-07, + "watchlist": 3.63e-07, + "wawa": 3.63e-07, + "westerner": 3.63e-07, + "whimpering": 3.63e-07, + "whisker": 3.63e-07, + "whorl": 3.63e-07, + "wickedly": 3.63e-07, + "wilhelmina": 3.63e-07, + "willey": 3.63e-07, + "williamss": 3.63e-07, + "wordy": 3.63e-07, + "wove": 3.63e-07, + "wozniak": 3.63e-07, + "wraparound": 3.63e-07, + "yasser": 3.63e-07, + "yau": 3.63e-07, + "yul": 3.63e-07, + "zainab": 3.63e-07, + "zenit": 3.63e-07, + "abducting": 3.55e-07, + "abides": 3.55e-07, + "aboriginals": 3.55e-07, + "accelerometer": 3.55e-07, + "acrimonious": 3.55e-07, + "adelphi": 3.55e-07, + "adorning": 3.55e-07, + "adverb": 3.55e-07, + "afrika": 3.55e-07, + "agt": 3.55e-07, + "alc": 3.55e-07, + "algo": 3.55e-07, + "allardyce": 3.55e-07, + "almaty": 3.55e-07, + "amb": 3.55e-07, + "anarchic": 3.55e-07, + "arkady": 3.55e-07, + "arras": 3.55e-07, + "ashdown": 3.55e-07, + "ashoka": 3.55e-07, + "asta": 3.55e-07, + "attache": 3.55e-07, + "aurelia": 3.55e-07, + "avondale": 3.55e-07, + "backtracking": 3.55e-07, + "bahamian": 3.55e-07, + "bamako": 3.55e-07, + "bandy": 3.55e-07, + "barbosa": 3.55e-07, + "barnacle": 3.55e-07, + "barometric": 3.55e-07, + "barstow": 3.55e-07, + "bby": 3.55e-07, + "beamer": 3.55e-07, + "beguiling": 3.55e-07, + "bendy": 3.55e-07, + "benigno": 3.55e-07, + "berets": 3.55e-07, + "berrys": 3.55e-07, + "bestie": 3.55e-07, + "bevy": 3.55e-07, + "bfi": 3.55e-07, + "bfs": 2.45e-07, + "bidirectional": 3.55e-07, + "biltmore": 3.55e-07, + "bioengineering": 3.55e-07, + "blanked": 3.55e-07, + "blowin": 3.55e-07, + "bmg": 3.55e-07, + "bogan": 3.55e-07, + "bpi": 3.55e-07, + "braveheart": 3.55e-07, + "breastfed": 3.55e-07, + "brodsky": 3.55e-07, + "brompton": 3.55e-07, + "bronzed": 3.55e-07, + "brooklyns": 3.55e-07, + "brunettes": 3.55e-07, + "bunched": 3.55e-07, + "bureaucracies": 3.55e-07, + "burney": 3.55e-07, + "burwell": 3.55e-07, + "bushings": 3.55e-07, + "buzzards": 3.55e-07, + "calipers": 3.55e-07, + "cantwell": 3.55e-07, + "carboxylic": 3.55e-07, + "carrasco": 3.55e-07, + "cataloguing": 3.55e-07, + "cathcart": 3.55e-07, + "causa": 3.55e-07, + "centimetre": 3.55e-07, + "certifies": 3.55e-07, + "cgt": 3.55e-07, + "chambre": 3.55e-07, + "chaparral": 3.55e-07, + "chivalrous": 3.55e-07, + "christiana": 3.55e-07, + "christos": 1.29e-08, + "ciel": 3.55e-07, + "clarifications": 3.55e-07, + "clasps": 3.55e-07, + "clouding": 3.55e-07, + "cmu": 3.55e-07, + "cobbles": 3.55e-07, + "cobras": 7.08e-08, + "combatting": 3.55e-07, + "computerised": 3.55e-07, + "confiscating": 3.55e-07, + "conformal": 3.55e-07, + "conformist": 3.55e-07, + "contemptible": 3.55e-07, + "contorted": 3.55e-07, + "costanza": 3.55e-07, + "courant": 3.55e-07, + "cower": 3.55e-07, + "crackpot": 3.55e-07, + "crewed": 3.55e-07, + "crist": 3.55e-07, + "croat": 3.55e-07, + "crowther": 3.55e-07, + "crusted": 3.55e-07, + "cubby": 3.55e-07, + "culvert": 3.55e-07, + "cumshot": 3.55e-07, + "cutscenes": 3.55e-07, + "dalia": 3.55e-07, + "dav": 3.55e-07, + "daya": 3.55e-07, + "decibel": 3.55e-07, + "deconstructed": 3.55e-07, + "defensemen": 3.55e-07, + "dependability": 3.55e-07, + "deregulated": 3.55e-07, + "dereliction": 3.55e-07, + "diario": 3.55e-07, + "dikes": 3.55e-07, + "dimer": 3.55e-07, + "disables": 3.55e-07, + "disinfect": 3.55e-07, + "disregards": 3.55e-07, + "dissension": 3.55e-07, + "distributive": 3.55e-07, + "dlp": 3.55e-07, + "dominus": 3.55e-07, + "dotcom": 3.55e-07, + "dour": 3.55e-07, + "downie": 3.55e-07, + "dox": 3.55e-07, + "dozier": 3.55e-07, + "dragonflies": 3.55e-07, + "dumpsters": 3.55e-07, + "dundalk": 3.55e-07, + "earthworms": 3.55e-07, + "echr": 3.55e-07, + "efficacious": 3.55e-07, + "eft": 3.55e-07, + "ehhh": 3.55e-07, + "ejaculate": 3.55e-07, + "elec": 3.55e-07, + "electromechanical": 3.55e-07, + "embellish": 3.55e-07, + "endeared": 3.55e-07, + "entrails": 3.55e-07, + "equalised": 3.55e-07, + "equalling": 3.55e-07, + "eri": 3.55e-07, + "eroticism": 3.55e-07, + "eshop": 3.55e-07, + "espinoza": 3.55e-07, + "exacerbating": 3.55e-07, + "exaggerates": 3.55e-07, + "exhilaration": 3.55e-07, + "exon": 3.55e-07, + "exotics": 3.55e-07, + "extensible": 3.55e-07, + "extrapolation": 3.55e-07, + "falsify": 3.55e-07, + "farris": 3.55e-07, + "faulting": 3.55e-07, + "fco": 3.55e-07, + "fea": 3.55e-07, + "febrile": 3.55e-07, + "fenn": 3.55e-07, + "fim": 3.55e-07, + "flail": 3.55e-07, + "flaked": 3.55e-07, + "foh": 3.55e-07, + "fomo": 3.55e-07, + "fondling": 3.55e-07, + "fpl": 3.55e-07, + "franciscans": 3.55e-07, + "freakish": 3.55e-07, + "fredrick": 3.55e-07, + "freeform": 3.55e-07, + "freemans": 3.55e-07, + "fronds": 3.55e-07, + "fyodor": 3.55e-07, + "gadsden": 3.55e-07, + "gainsborough": 3.55e-07, + "galvanised": 3.55e-07, + "gameboy": 3.55e-07, + "garbo": 3.55e-07, + "gbr": 3.55e-07, + "gere": 3.55e-07, + "gerson": 3.55e-07, + "gestured": 3.55e-07, + "geysers": 3.55e-07, + "giovanna": 3.55e-07, + "glazer": 3.55e-07, + "goalscoring": 3.55e-07, + "gogol": 3.55e-07, + "goldschmidt": 3.55e-07, + "goldwyn": 3.55e-07, + "gossips": 3.55e-07, + "grandstanding": 3.55e-07, + "graphing": 3.55e-07, + "greenhill": 3.55e-07, + "grissom": 3.55e-07, + "groton": 3.55e-07, + "guadalcanal": 3.55e-07, + "guardsman": 3.55e-07, + "gunship": 3.55e-07, + "guttural": 3.55e-07, + "gyroscope": 3.55e-07, + "hackathon": 3.55e-07, + "hammy": 3.55e-07, + "handedness": 3.55e-07, + "handkerchiefs": 3.55e-07, + "handley": 3.55e-07, + "hangars": 3.55e-07, + "hardys": 1.2e-07, + "hartwell": 3.55e-07, + "heartstrings": 3.55e-07, + "hellcat": 3.55e-07, + "hellhole": 3.55e-07, + "hellman": 3.55e-07, + "helmholtz": 3.55e-07, + "herat": 3.55e-07, + "hiddleston": 3.55e-07, + "hiit": 3.55e-07, + "hillcrest": 3.55e-07, + "hoare": 3.55e-07, + "hofmann": 3.55e-07, + "hogans": 3.55e-07, + "hoke": 3.55e-07, + "hokies": 3.55e-07, + "holdin": 3.55e-07, + "holier": 3.55e-07, + "holtby": 3.55e-07, + "holton": 3.55e-07, + "hoodoo": 3.55e-07, + "horsham": 3.55e-07, + "hrh": 3.55e-07, + "hubbell": 3.55e-07, + "hummels": 3.55e-07, + "hygienist": 3.55e-07, + "hypertext": 3.55e-07, + "idolized": 3.55e-07, + "ilan": 3.55e-07, + "illegible": 3.55e-07, + "immunities": 3.55e-07, + "immunological": 3.55e-07, + "impertinent": 3.55e-07, + "incised": 3.55e-07, + "indefatigable": 3.55e-07, + "individualist": 3.55e-07, + "ingles": 3.55e-07, + "insinuated": 3.55e-07, + "instrumentalist": 3.55e-07, + "interbank": 3.55e-07, + "intravenously": 3.55e-07, + "investigational": 3.55e-07, + "iri": 3.55e-07, + "irrationality": 3.55e-07, + "jamil": 3.55e-07, + "jawed": 3.55e-07, + "jemma": 3.55e-07, + "jenks": 3.55e-07, + "jesu": 3.55e-07, + "jojos": 3.55e-07, + "jonson": 3.55e-07, + "juggler": 3.55e-07, + "kabbalah": 3.55e-07, + "kanter": 3.55e-07, + "kenai": 3.55e-07, + "kendricks": 1.7e-07, + "ket": 3.55e-07, + "kitkat": 3.55e-07, + "kovacs": 3.55e-07, + "krazy": 3.55e-07, + "kreme": 3.55e-07, + "ksa": 3.55e-07, + "labouring": 3.55e-07, + "ladyship": 3.55e-07, + "lagrangian": 3.55e-07, + "languish": 3.55e-07, + "larch": 3.55e-07, + "lathrop": 3.55e-07, + "lavished": 3.55e-07, + "leamington": 3.55e-07, + "leander": 3.55e-07, + "leggett": 3.55e-07, + "lemieux": 3.55e-07, + "likens": 3.55e-07, + "liliana": 3.55e-07, + "limiter": 3.55e-07, + "limousines": 3.55e-07, + "linearity": 3.55e-07, + "lineker": 3.55e-07, + "lita": 3.55e-07, + "lockyer": 3.55e-07, + "looker": 3.55e-07, + "lsa": 3.55e-07, + "madisons": 3.55e-07, + "magyar": 3.55e-07, + "mahone": 3.55e-07, + "malady": 3.55e-07, + "mame": 3.55e-07, + "mantua": 3.55e-07, + "marche": 3.55e-07, + "mastodon": 3.55e-07, + "matlock": 3.55e-07, + "mav": 3.55e-07, + "mccown": 3.55e-07, + "meditated": 3.55e-07, + "meritocracy": 3.55e-07, + "merriman": 3.55e-07, + "metformin": 3.55e-07, + "midler": 3.55e-07, + "midshipmen": 3.55e-07, + "midsize": 3.55e-07, + "milks": 1.12e-07, + "minima": 3.55e-07, + "miscellany": 3.55e-07, + "misdiagnosed": 3.55e-07, + "mish": 3.55e-07, + "moderne": 3.55e-07, + "monson": 3.55e-07, + "moravian": 3.55e-07, + "morell": 3.55e-07, + "mota": 3.55e-07, + "moxie": 3.55e-07, + "mpn": 3.55e-07, + "mra": 3.55e-07, + "multiplies": 3.55e-07, + "mur": 3.55e-07, + "murine": 3.55e-07, + "mvs": 3.55e-07, + "nala": 3.55e-07, + "nbcuniversal": 3.55e-07, + "ncp": 3.55e-07, + "necktie": 3.55e-07, + "necrotic": 3.55e-07, + "negating": 3.55e-07, + "negev": 3.55e-07, + "neko": 3.55e-07, + "neoprene": 3.55e-07, + "neuroscientists": 3.55e-07, + "neves": 3.55e-07, + "newham": 3.55e-07, + "newlands": 3.55e-07, + "newsome": 3.55e-07, + "nhc": 3.55e-07, + "nightcrawler": 3.55e-07, + "nightgown": 3.55e-07, + "nightshade": 3.55e-07, + "nizam": 3.55e-07, + "nodal": 3.55e-07, + "nonzero": 3.55e-07, + "noriega": 3.55e-07, + "normalised": 3.55e-07, + "nosey": 3.55e-07, + "nott": 3.55e-07, + "nub": 3.55e-07, + "nuer": 3.55e-07, + "nutritionally": 3.55e-07, + "ocallaghan": 3.55e-07, + "obstetricians": 3.55e-07, + "ocho": 3.55e-07, + "okafor": 3.55e-07, + "oleksandr": 3.55e-07, + "oper": 3.55e-07, + "orwells": 3.55e-07, + "oughta": 3.55e-07, + "outlooks": 3.55e-07, + "outmoded": 3.55e-07, + "overfishing": 3.55e-07, + "oxo": 3.55e-07, + "oxygenated": 3.55e-07, + "paddled": 3.55e-07, + "paneled": 3.55e-07, + "pantera": 3.55e-07, + "paraplegic": 3.55e-07, + "passerby": 3.55e-07, + "paulette": 3.55e-07, + "paulus": 3.55e-07, + "pecos": 3.55e-07, + "peds": 3.55e-07, + "pertussis": 3.55e-07, + "pettiness": 3.55e-07, + "peyote": 3.55e-07, + "pff": 3.55e-07, + "pgp": 3.55e-07, + "physiologist": 3.55e-07, + "pillowcase": 3.55e-07, + "pincus": 3.55e-07, + "plausibility": 3.55e-07, + "playfulness": 3.55e-07, + "playroom": 3.55e-07, + "pleural": 3.55e-07, + "pmqs": 3.55e-07, + "pratap": 3.55e-07, + "predominance": 3.55e-07, + "prefixed": 3.55e-07, + "prepayment": 3.55e-07, + "pringles": 3.55e-07, + "privatize": 3.55e-07, + "prolapse": 3.55e-07, + "pubmed": 3.55e-07, + "puebla": 3.55e-07, + "pura": 3.55e-07, + "pursuers": 3.55e-07, + "purveyor": 3.55e-07, + "quebecs": 3.55e-07, + "quinta": 3.55e-07, + "rabbitohs": 3.55e-07, + "racehorses": 3.55e-07, + "radii": 3.55e-07, + "raikkonen": 3.55e-07, + "rasmus": 3.55e-07, + "rathbone": 3.55e-07, + "ravines": 3.55e-07, + "readying": 3.55e-07, + "recalcitrant": 3.55e-07, + "recs": 3.55e-07, + "rectification": 3.55e-07, + "reddick": 3.55e-07, + "regretful": 3.55e-07, + "regrouped": 3.55e-07, + "reminiscence": 3.55e-07, + "reorganizing": 3.55e-07, + "repossessed": 3.55e-07, + "repulse": 3.55e-07, + "rerouted": 3.55e-07, + "resourcefulness": 3.55e-07, + "resto": 3.55e-07, + "rices": 7.76e-08, + "richman": 3.55e-07, + "rie": 3.55e-07, + "rigors": 3.55e-07, + "riptide": 3.55e-07, + "rivas": 3.55e-07, + "rocca": 3.55e-07, + "rolando": 3.55e-07, + "romancing": 3.55e-07, + "roti": 3.55e-07, + "rungs": 3.55e-07, + "rushdie": 3.55e-07, + "sah": 3.55e-07, + "salafi": 3.55e-07, + "sani": 3.55e-07, + "satanism": 3.55e-07, + "schell": 3.55e-07, + "screensaver": 3.55e-07, + "sdgs": 3.55e-07, + "seder": 3.55e-07, + "sek": 3.55e-07, + "selectable": 3.55e-07, + "selig": 3.55e-07, + "selwyn": 3.55e-07, + "semaphore": 3.55e-07, + "shae": 3.55e-07, + "shaheed": 3.55e-07, + "shailene": 3.55e-07, + "shames": 3.55e-07, + "shel": 3.55e-07, + "shermans": 1.2e-07, + "shiba": 3.55e-07, + "shipbuilders": 3.55e-07, + "shitter": 3.55e-07, + "shoebox": 3.55e-07, + "sicko": 3.55e-07, + "sima": 3.55e-07, + "siriusxm": 3.55e-07, + "skinheads": 3.55e-07, + "skinning": 3.55e-07, + "slighted": 3.55e-07, + "slumping": 3.55e-07, + "smithy": 3.55e-07, + "sneering": 3.55e-07, + "snooty": 3.55e-07, + "snotty": 3.55e-07, + "songbook": 3.55e-07, + "spake": 3.55e-07, + "sportscenter": 3.55e-07, + "squatter": 3.55e-07, + "ssm": 3.55e-07, + "stabilizes": 3.55e-07, + "stickler": 3.55e-07, + "stott": 3.55e-07, + "studys": 3.55e-07, + "subjunctive": 3.55e-07, + "subsist": 3.55e-07, + "subverting": 3.55e-07, + "sulk": 3.55e-07, + "sunspot": 3.55e-07, + "superboy": 3.55e-07, + "supercell": 3.55e-07, + "supermodels": 3.55e-07, + "susans": 5.62e-08, + "swathes": 3.55e-07, + "swinburne": 3.55e-07, + "taiji": 3.55e-07, + "taki": 3.55e-07, + "tali": 3.55e-07, + "talladega": 3.55e-07, + "tastic": 3.55e-07, + "tedium": 3.55e-07, + "theodora": 3.55e-07, + "thoughtfulness": 3.55e-07, + "thousandth": 3.55e-07, + "tilden": 3.55e-07, + "timeouts": 3.55e-07, + "tittle": 3.55e-07, + "toddy": 3.55e-07, + "tokyos": 3.55e-07, + "toleration": 3.55e-07, + "topsoil": 3.55e-07, + "tradeoffs": 3.55e-07, + "transposed": 3.55e-07, + "trawlers": 3.55e-07, + "trembled": 3.55e-07, + "tremont": 3.55e-07, + "triumvirate": 3.55e-07, + "troubleshoot": 3.55e-07, + "trudeaus": 3.55e-07, + "tubman": 3.55e-07, + "turds": 3.55e-07, + "twc": 3.55e-07, + "tweeters": 3.55e-07, + "undercard": 3.55e-07, + "underwrite": 3.55e-07, + "undesired": 3.55e-07, + "unfurled": 3.55e-07, + "unimpressive": 3.55e-07, + "uninspiring": 3.55e-07, + "unraveled": 3.55e-07, + "unscripted": 3.55e-07, + "unser": 3.55e-07, + "unwrapped": 3.55e-07, + "unzip": 3.55e-07, + "upham": 3.55e-07, + "vallarta": 3.55e-07, + "vander": 3.55e-07, + "veering": 3.55e-07, + "vellum": 3.55e-07, + "ves": 3.55e-07, + "visualise": 3.55e-07, + "vlogs": 3.55e-07, + "voce": 3.55e-07, + "voorhees": 3.55e-07, + "votive": 3.55e-07, + "wannabes": 3.55e-07, + "warners": 1.91e-07, + "wengers": 3.55e-07, + "wetsuit": 3.55e-07, + "whiskies": 3.55e-07, + "whitten": 3.55e-07, + "wicklow": 3.55e-07, + "wilding": 3.55e-07, + "winslet": 3.55e-07, + "wolcott": 3.55e-07, + "writs": 3.55e-07, + "wyn": 3.55e-07, + "xiaoping": 3.55e-07, + "yarmouk": 3.55e-07, + "zorn": 3.55e-07, + "abdallah": 3.47e-07, + "abut": 3.47e-07, + "accumulations": 3.47e-07, + "adeline": 3.47e-07, + "adjudicated": 3.47e-07, + "adulterous": 3.47e-07, + "aerodrome": 3.47e-07, + "aftercare": 3.47e-07, + "agni": 3.47e-07, + "agrippa": 3.47e-07, + "ahhhhh": 3.47e-07, + "alliteration": 3.47e-07, + "allyn": 3.47e-07, + "altos": 3.47e-07, + "amandas": 3.47e-07, + "ambushes": 3.47e-07, + "amie": 3.47e-07, + "amiens": 3.47e-07, + "anheuser": 3.47e-07, + "anker": 3.47e-07, + "antimony": 3.47e-07, + "antonios": 3.47e-07, + "appraise": 3.47e-07, + "archbishops": 1.26e-07, + "arians": 3.47e-07, + "armature": 3.47e-07, + "attests": 3.47e-07, + "autobots": 3.47e-07, + "axa": 3.47e-07, + "axiomatic": 3.47e-07, + "backlit": 3.47e-07, + "ballantyne": 3.47e-07, + "ballsy": 3.47e-07, + "barbarous": 3.47e-07, + "bardot": 3.47e-07, + "baroda": 3.47e-07, + "baru": 3.47e-07, + "bashful": 3.47e-07, + "basildon": 3.47e-07, + "batik": 3.47e-07, + "battlements": 3.47e-07, + "bayless": 3.47e-07, + "beekeeper": 3.47e-07, + "befell": 3.47e-07, + "bettered": 3.47e-07, + "bettina": 3.47e-07, + "bewitching": 3.47e-07, + "bhushan": 3.47e-07, + "bibby": 3.47e-07, + "biographers": 3.47e-07, + "biomechanics": 3.47e-07, + "blanch": 3.47e-07, + "blindside": 3.47e-07, + "bloor": 3.47e-07, + "blotting": 3.47e-07, + "blunted": 3.47e-07, + "bookmarked": 3.47e-07, + "borat": 3.47e-07, + "borehole": 3.47e-07, + "bosque": 3.47e-07, + "bouillon": 3.47e-07, + "bourdain": 3.47e-07, + "bpl": 3.47e-07, + "bracts": 3.47e-07, + "bridgette": 3.47e-07, + "brockton": 3.47e-07, + "bryants": 3.47e-07, + "btr": 3.47e-07, + "bubbled": 3.47e-07, + "buggies": 3.47e-07, + "burnie": 3.47e-07, + "burnin": 3.47e-07, + "cahoots": 3.47e-07, + "cait": 3.47e-07, + "caius": 3.47e-07, + "calender": 3.47e-07, + "capitulated": 3.47e-07, + "caputo": 3.47e-07, + "casein": 3.47e-07, + "caskets": 3.47e-07, + "casted": 3.47e-07, + "categorizing": 3.47e-07, + "cftc": 3.47e-07, + "chandlers": 9.12e-08, + "chartres": 3.47e-07, + "chiller": 3.47e-07, + "chlorinated": 3.47e-07, + "clubbed": 3.47e-07, + "clyne": 3.47e-07, + "cmo": 3.47e-07, + "coachman": 3.47e-07, + "cocking": 3.47e-07, + "collides": 3.47e-07, + "collieries": 3.47e-07, + "colloquium": 3.47e-07, + "colossians": 3.47e-07, + "conger": 3.47e-07, + "coniferous": 3.47e-07, + "consciences": 3.47e-07, + "copulation": 3.47e-07, + "coq": 3.47e-07, + "coronet": 3.47e-07, + "cort": 3.47e-07, + "cortisone": 3.47e-07, + "coun": 3.47e-07, + "councilors": 3.47e-07, + "cradled": 3.47e-07, + "craggy": 3.47e-07, + "creatinine": 3.47e-07, + "cressida": 3.47e-07, + "cripples": 3.47e-07, + "cronyism": 3.47e-07, + "crp": 3.47e-07, + "cubicles": 3.47e-07, + "curlers": 3.47e-07, + "cwa": 3.47e-07, + "cynically": 3.47e-07, + "darden": 3.47e-07, + "darley": 3.47e-07, + "deadlift": 3.47e-07, + "delineation": 3.47e-07, + "demolitions": 3.47e-07, + "denture": 3.47e-07, + "deon": 3.47e-07, + "dera": 3.47e-07, + "desirous": 3.47e-07, + "deviating": 3.47e-07, + "dinars": 3.47e-07, + "disheveled": 3.47e-07, + "dispatchers": 3.47e-07, + "dissapointed": 3.47e-07, + "dissipates": 3.47e-07, + "diverts": 3.47e-07, + "divi": 3.47e-07, + "docu": 3.47e-07, + "domo": 3.47e-07, + "dovey": 3.47e-07, + "draftsman": 3.47e-07, + "dribbles": 3.47e-07, + "drinkwater": 3.47e-07, + "ducklings": 3.47e-07, + "dugdale": 3.47e-07, + "dusseldorf": 3.47e-07, + "eads": 3.47e-07, + "earthbound": 3.47e-07, + "eigenvalues": 3.47e-07, + "einer": 3.47e-07, + "emea": 3.47e-07, + "emmons": 3.47e-07, + "emoticons": 3.47e-07, + "enda": 3.47e-07, + "escapist": 3.47e-07, + "esso": 3.47e-07, + "eula": 3.47e-07, + "evert": 3.47e-07, + "ewa": 3.47e-07, + "exc": 3.47e-07, + "expletive": 3.47e-07, + "fain": 3.47e-07, + "fairtrade": 3.47e-07, + "fashionista": 3.47e-07, + "faucets": 3.47e-07, + "favela": 3.47e-07, + "ferried": 3.47e-07, + "ferrying": 3.47e-07, + "fertilisation": 3.47e-07, + "festivity": 3.47e-07, + "ffp": 3.47e-07, + "fining": 3.47e-07, + "flatmate": 3.47e-07, + "fondest": 3.47e-07, + "foodservice": 3.47e-07, + "foto": 3.47e-07, + "foxtel": 3.47e-07, + "framers": 3.47e-07, + "freedmen": 3.47e-07, + "freehand": 3.47e-07, + "freighters": 3.47e-07, + "fullbacks": 3.47e-07, + "funder": 3.47e-07, + "fussed": 3.47e-07, + "gainer": 3.47e-07, + "gallerys": 3.47e-07, + "gannett": 3.47e-07, + "ganz": 3.47e-07, + "gape": 3.47e-07, + "gdc": 3.47e-07, + "geraint": 3.47e-07, + "gigabytes": 3.47e-07, + "giorno": 3.47e-07, + "glitters": 3.47e-07, + "gmb": 3.47e-07, + "gobi": 3.47e-07, + "golovkin": 3.47e-07, + "goodison": 3.47e-07, + "grabber": 3.47e-07, + "granulated": 3.47e-07, + "gravesend": 3.47e-07, + "grenadier": 3.47e-07, + "grisham": 3.47e-07, + "grosjean": 3.47e-07, + "grouper": 3.47e-07, + "gustavus": 3.47e-07, + "gyrus": 3.47e-07, + "hacksaw": 3.47e-07, + "hager": 3.47e-07, + "haile": 3.47e-07, + "halide": 3.47e-07, + "handbrake": 3.47e-07, + "haphazardly": 3.47e-07, + "harte": 3.47e-07, + "hashem": 3.47e-07, + "hau": 3.47e-07, + "hawkeyes": 3.47e-07, + "headfirst": 3.47e-07, + "headley": 3.47e-07, + "headquarter": 3.47e-07, + "hec": 3.47e-07, + "heists": 3.47e-07, + "helpfully": 3.47e-07, + "hennepin": 3.47e-07, + "herons": 3.47e-07, + "herron": 3.47e-07, + "hetty": 3.47e-07, + "hilfiger": 3.47e-07, + "hillbillies": 3.47e-07, + "hmp": 3.47e-07, + "homeroom": 3.47e-07, + "homeschooled": 3.47e-07, + "honeybee": 3.47e-07, + "hosmer": 3.47e-07, + "hosp": 3.47e-07, + "hounding": 3.47e-07, + "hovercraft": 3.47e-07, + "howarth": 3.47e-07, + "huffing": 3.47e-07, + "hunks": 3.47e-07, + "hyperventilating": 3.47e-07, + "hypnotize": 3.47e-07, + "ick": 3.47e-07, + "ido": 3.47e-07, + "iirc": 3.47e-07, + "immersing": 3.47e-07, + "impresario": 3.47e-07, + "imps": 3.47e-07, + "incineration": 3.47e-07, + "incipient": 3.47e-07, + "infest": 3.47e-07, + "inhales": 3.47e-07, + "innards": 3.47e-07, + "interfacing": 3.47e-07, + "internalize": 3.47e-07, + "intimated": 3.47e-07, + "intranet": 3.47e-07, + "intubation": 3.47e-07, + "inventiveness": 3.47e-07, + "irises": 3.47e-07, + "isaf": 3.47e-07, + "islami": 3.47e-07, + "isolationism": 3.47e-07, + "isuzu": 3.47e-07, + "jailing": 3.47e-07, + "jamaal": 3.47e-07, + "jamaicas": 3.47e-07, + "jettison": 3.47e-07, + "jha": 3.47e-07, + "jio": 3.47e-07, + "joeys": 9.77e-08, + "joie": 3.47e-07, + "joseon": 3.47e-07, + "jsa": 3.47e-07, + "jut": 3.47e-07, + "kalman": 3.47e-07, + "kamehameha": 3.47e-07, + "karbala": 3.47e-07, + "kashi": 3.47e-07, + "kau": 3.47e-07, + "kea": 3.47e-07, + "keck": 3.47e-07, + "killa": 3.47e-07, + "klara": 3.47e-07, + "klondike": 3.47e-07, + "koeman": 3.47e-07, + "kola": 3.47e-07, + "labeouf": 3.47e-07, + "lacoste": 3.47e-07, + "ladybird": 3.47e-07, + "landmass": 3.47e-07, + "languid": 3.47e-07, + "leann": 3.47e-07, + "leche": 3.47e-07, + "leni": 3.47e-07, + "leotard": 3.47e-07, + "lidocaine": 3.47e-07, + "lionheart": 3.47e-07, + "lorelai": 3.47e-07, + "louisianas": 3.47e-07, + "loveliness": 3.47e-07, + "luminance": 3.47e-07, + "lundqvist": 3.47e-07, + "magnates": 3.47e-07, + "mandir": 3.47e-07, + "manoeuvring": 3.47e-07, + "marauding": 3.47e-07, + "marisol": 3.47e-07, + "martindale": 3.47e-07, + "masterminded": 3.47e-07, + "masterminds": 3.47e-07, + "mcadams": 3.47e-07, + "mcf": 3.47e-07, + "medalists": 3.47e-07, + "melina": 3.47e-07, + "meowing": 3.47e-07, + "metalworking": 3.47e-07, + "miao": 3.47e-07, + "microprocessors": 3.47e-07, + "microsd": 3.47e-07, + "milanese": 3.47e-07, + "milburn": 3.47e-07, + "miler": 3.47e-07, + "minimalistic": 3.47e-07, + "mirai": 3.47e-07, + "mise": 3.47e-07, + "misspelling": 3.47e-07, + "mizuno": 3.47e-07, + "modo": 3.47e-07, + "mollusks": 3.47e-07, + "mommies": 3.47e-07, + "monmouthshire": 3.47e-07, + "mooted": 3.47e-07, + "motherboards": 3.47e-07, + "motta": 3.47e-07, + "msps": 3.47e-07, + "mtr": 3.47e-07, + "muggle": 3.47e-07, + "multilevel": 3.47e-07, + "multimodal": 3.47e-07, + "murmured": 3.47e-07, + "musculature": 3.47e-07, + "mustapha": 3.47e-07, + "mwah": 3.47e-07, + "nal": 3.47e-07, + "nds": 3.47e-07, + "needful": 3.47e-07, + "newswire": 3.47e-07, + "nihon": 3.47e-07, + "nikes": 2.4e-07, + "nikolay": 3.47e-07, + "noggin": 3.47e-07, + "norcross": 3.47e-07, + "nuptials": 3.47e-07, + "nutritionists": 3.47e-07, + "odes": 3.47e-07, + "onn": 3.47e-07, + "opportunism": 3.47e-07, + "opry": 3.47e-07, + "orm": 3.47e-07, + "ourself": 3.47e-07, + "oviedo": 3.47e-07, + "pais": 3.89e-08, + "pamplona": 3.47e-07, + "paring": 3.47e-07, + "pegg": 3.47e-07, + "persimmon": 3.47e-07, + "persuades": 3.47e-07, + "pestle": 3.47e-07, + "petrochemicals": 3.47e-07, + "photometric": 3.47e-07, + "phy": 3.47e-07, + "pidgin": 3.47e-07, + "pinker": 3.47e-07, + "plover": 3.47e-07, + "pokey": 3.47e-07, + "policed": 3.47e-07, + "policewoman": 3.47e-07, + "polluters": 3.47e-07, + "polygonal": 3.47e-07, + "pontius": 3.47e-07, + "postdoc": 3.47e-07, + "postulates": 3.47e-07, + "potluck": 3.47e-07, + "powerhouses": 3.47e-07, + "precariously": 3.47e-07, + "prendergast": 3.47e-07, + "prepositions": 3.47e-07, + "pricked": 3.47e-07, + "privateer": 3.47e-07, + "procreate": 3.47e-07, + "progressivism": 3.47e-07, + "pronouncement": 3.47e-07, + "prospero": 3.47e-07, + "prowler": 3.47e-07, + "prt": 3.47e-07, + "pse": 3.47e-07, + "pss": 3.47e-07, + "psychosomatic": 3.47e-07, + "psychotropic": 3.47e-07, + "publicizing": 3.47e-07, + "qm": 3.47e-07, + "quantization": 3.47e-07, + "queenie": 3.47e-07, + "raa": 3.47e-07, + "rabbinical": 3.47e-07, + "rach": 3.47e-07, + "raga": 3.47e-07, + "raggedy": 3.47e-07, + "rawhide": 3.47e-07, + "reacher": 3.47e-07, + "reassemble": 3.47e-07, + "reauthorization": 3.47e-07, + "reconvene": 3.47e-07, + "recuse": 3.47e-07, + "redoing": 3.47e-07, + "regrouping": 3.47e-07, + "reinstalled": 3.47e-07, + "repressing": 3.47e-07, + "rhe": 3.47e-07, + "rhetorically": 3.47e-07, + "rhodesian": 3.47e-07, + "rhymed": 3.47e-07, + "riaa": 3.47e-07, + "ribosomal": 3.47e-07, + "richmonds": 3.47e-07, + "riddell": 3.47e-07, + "rizzoli": 3.47e-07, + "romford": 3.47e-07, + "roping": 3.47e-07, + "roslyn": 3.47e-07, + "rulemaking": 3.47e-07, + "rummage": 3.47e-07, + "salerno": 3.47e-07, + "salivating": 3.47e-07, + "saplings": 3.47e-07, + "sarge": 3.47e-07, + "saxe": 3.47e-07, + "schaffer": 3.47e-07, + "schopenhauer": 3.47e-07, + "sdl": 3.47e-07, + "seafarers": 3.47e-07, + "seaplane": 3.47e-07, + "seashells": 3.47e-07, + "selflessly": 3.47e-07, + "selfridge": 3.47e-07, + "sequester": 3.47e-07, + "shetty": 3.47e-07, + "shree": 3.47e-07, + "sidecar": 3.47e-07, + "simulcast": 3.47e-07, + "sittings": 3.47e-07, + "sli": 3.47e-07, + "smaug": 3.47e-07, + "snafu": 3.47e-07, + "snuggles": 3.47e-07, + "snugly": 3.47e-07, + "sofie": 3.47e-07, + "solemnity": 3.47e-07, + "sondheim": 3.47e-07, + "sourcebook": 3.47e-07, + "southwell": 3.47e-07, + "spg": 3.47e-07, + "spitz": 3.47e-07, + "spurts": 3.47e-07, + "squabbles": 3.47e-07, + "squished": 3.47e-07, + "srp": 3.47e-07, + "statin": 3.47e-07, + "stefanie": 3.47e-07, + "stevia": 3.47e-07, + "stoking": 3.47e-07, + "studious": 3.47e-07, + "stymied": 3.47e-07, + "styrene": 3.47e-07, + "surah": 3.47e-07, + "systemically": 3.47e-07, + "tadpoles": 3.47e-07, + "talley": 3.47e-07, + "tappan": 3.47e-07, + "taupe": 3.47e-07, + "tcg": 3.47e-07, + "tecumseh": 3.47e-07, + "testy": 3.47e-07, + "thabo": 3.47e-07, + "thalia": 3.47e-07, + "theorize": 3.47e-07, + "thereupon": 3.47e-07, + "thermometers": 3.47e-07, + "thermostats": 3.47e-07, + "thf": 3.47e-07, + "thievery": 3.47e-07, + "threesomes": 3.47e-07, + "thurmond": 3.47e-07, + "tiffin": 3.47e-07, + "timepiece": 3.47e-07, + "tourmaline": 3.47e-07, + "tourniquet": 3.47e-07, + "trac": 3.47e-07, + "transpose": 3.47e-07, + "transposition": 3.47e-07, + "trax": 3.47e-07, + "tresses": 3.47e-07, + "trinidadian": 3.47e-07, + "trios": 2.04e-07, + "trod": 3.47e-07, + "troubadour": 3.47e-07, + "tumbleweed": 3.47e-07, + "turkestan": 3.47e-07, + "turnkey": 3.47e-07, + "tva": 3.47e-07, + "twerk": 3.47e-07, + "uggs": 3.47e-07, + "ugo": 3.47e-07, + "unabashedly": 3.47e-07, + "unanimity": 3.47e-07, + "unassailable": 3.47e-07, + "unavailability": 3.47e-07, + "unbounded": 3.47e-07, + "unceremoniously": 3.47e-07, + "uncredited": 3.47e-07, + "undercarriage": 3.47e-07, + "unhindered": 3.47e-07, + "unimaginative": 3.47e-07, + "unquestioned": 3.47e-07, + "unreserved": 3.47e-07, + "untangle": 3.47e-07, + "usury": 3.47e-07, + "vacuous": 3.47e-07, + "valera": 3.47e-07, + "vecchio": 3.47e-07, + "veers": 3.47e-07, + "venetians": 3.47e-07, + "venturi": 3.47e-07, + "vestige": 3.47e-07, + "vibrancy": 3.47e-07, + "vicodin": 3.47e-07, + "vindicate": 3.47e-07, + "waddington": 3.47e-07, + "warrick": 3.47e-07, + "waveforms": 3.47e-07, + "wcf": 3.47e-07, + "weds": 3.47e-07, + "westcott": 3.47e-07, + "wharves": 3.47e-07, + "williamsport": 3.47e-07, + "willson": 3.47e-07, + "winnable": 3.47e-07, + "woburn": 3.47e-07, + "wolsey": 3.47e-07, + "wooo": 3.47e-07, + "worldviews": 3.47e-07, + "worley": 3.47e-07, + "xf": 3.47e-07, + "xtra": 3.47e-07, + "yougov": 3.47e-07, + "zechariah": 3.47e-07, + "zeitschrift": 3.47e-07, + "abl": 3.39e-07, + "acolytes": 3.39e-07, + "addo": 3.39e-07, + "aesop": 3.39e-07, + "agglomeration": 3.39e-07, + "alaric": 3.39e-07, + "alchemists": 6.03e-08, + "alissa": 3.39e-07, + "alix": 3.39e-07, + "alternation": 3.39e-07, + "amalfi": 3.39e-07, + "ambedkar": 3.39e-07, + "amelie": 3.39e-07, + "anachronism": 3.39e-07, + "anacostia": 3.39e-07, + "angelas": 3.39e-07, + "anglicans": 3.39e-07, + "annapurna": 3.39e-07, + "apostates": 3.39e-07, + "appel": 3.39e-07, + "arda": 3.39e-07, + "arquette": 3.39e-07, + "artagnan": 3.39e-07, + "arthropods": 3.39e-07, + "asme": 3.39e-07, + "ataxia": 3.39e-07, + "auctioning": 3.39e-07, + "augments": 3.39e-07, + "autodesk": 3.39e-07, + "awesomely": 3.39e-07, + "babylonia": 3.39e-07, + "baggies": 3.39e-07, + "bailly": 3.39e-07, + "balked": 3.39e-07, + "ballpoint": 3.39e-07, + "barneys": 2.24e-07, + "barratt": 3.39e-07, + "bassoon": 3.39e-07, + "batchelor": 3.39e-07, + "bayliss": 3.39e-07, + "beachy": 3.39e-07, + "beefed": 3.39e-07, + "bellagio": 3.39e-07, + "belli": 3.39e-07, + "bellowing": 3.39e-07, + "belvoir": 3.39e-07, + "berra": 3.39e-07, + "bestest": 3.39e-07, + "betel": 3.39e-07, + "betfair": 3.39e-07, + "bethune": 3.39e-07, + "betis": 3.39e-07, + "betsey": 3.39e-07, + "bex": 3.39e-07, + "bha": 3.39e-07, + "bhakti": 3.39e-07, + "bigs": 7.59e-08, + "billowing": 3.39e-07, + "biotin": 3.39e-07, + "bip": 3.39e-07, + "bish": 3.39e-07, + "bissell": 3.39e-07, + "blackfriars": 3.39e-07, + "blanchett": 3.39e-07, + "blubber": 3.39e-07, + "bluebell": 3.39e-07, + "blume": 3.39e-07, + "blunts": 7.94e-08, + "boaters": 3.39e-07, + "bojack": 3.39e-07, + "boldest": 3.39e-07, + "bonaventure": 3.39e-07, + "borer": 3.39e-07, + "boyds": 7.08e-08, + "bradenton": 3.39e-07, + "brazenly": 3.39e-07, + "brazier": 3.39e-07, + "bre": 3.39e-07, + "britta": 3.39e-07, + "broadchurch": 3.39e-07, + "brony": 3.39e-07, + "brownfield": 3.39e-07, + "brun": 3.39e-07, + "brunson": 3.39e-07, + "busing": 3.39e-07, + "caithness": 3.39e-07, + "cameramen": 3.39e-07, + "cantaloupe": 3.39e-07, + "caries": 3.39e-07, + "carle": 3.39e-07, + "cavan": 3.39e-07, + "charitys": 3.39e-07, + "charizard": 3.39e-07, + "charlatans": 3.39e-07, + "chastise": 3.39e-07, + "chiapas": 3.39e-07, + "chomp": 3.39e-07, + "ciaran": 3.39e-07, + "circumvented": 3.39e-07, + "clinique": 3.39e-07, + "cng": 3.39e-07, + "coffeehouse": 3.39e-07, + "coincident": 3.39e-07, + "colfax": 3.39e-07, + "colonist": 3.39e-07, + "commendations": 3.39e-07, + "competences": 3.39e-07, + "concurring": 3.39e-07, + "confusingly": 3.39e-07, + "conjectures": 3.39e-07, + "connacht": 3.39e-07, + "cornfield": 3.39e-07, + "corrine": 3.39e-07, + "costed": 3.39e-07, + "counterinsurgency": 3.39e-07, + "cpg": 3.39e-07, + "criminalization": 3.39e-07, + "cropper": 3.39e-07, + "crowing": 3.39e-07, + "crushers": 3.39e-07, + "csg": 3.39e-07, + "cubed": 3.39e-07, + "cuddy": 3.39e-07, + "culpa": 3.39e-07, + "cuneiform": 3.39e-07, + "cuttlefish": 3.39e-07, + "cyl": 3.39e-07, + "davina": 3.39e-07, + "deca": 3.39e-07, + "decanter": 3.39e-07, + "decimals": 3.39e-07, + "deconstruct": 3.39e-07, + "defame": 3.39e-07, + "deliberative": 3.39e-07, + "dhcp": 3.39e-07, + "differentially": 3.39e-07, + "dimaggio": 3.39e-07, + "directx": 3.39e-07, + "discouragement": 3.39e-07, + "discursive": 3.39e-07, + "dispassionate": 3.39e-07, + "displaces": 3.39e-07, + "disrepute": 3.39e-07, + "divan": 3.39e-07, + "dixit": 3.39e-07, + "doggies": 3.39e-07, + "donnell": 3.39e-07, + "doss": 3.39e-07, + "dozed": 3.39e-07, + "drifters": 3.39e-07, + "droning": 3.39e-07, + "earthlings": 3.39e-07, + "ecclesiastes": 3.39e-07, + "econometric": 3.39e-07, + "econometrics": 3.39e-07, + "edgewater": 3.39e-07, + "ejecting": 3.39e-07, + "elbe": 3.39e-07, + "elin": 3.39e-07, + "elspeth": 3.39e-07, + "eludes": 3.39e-07, + "emre": 3.39e-07, + "endicott": 3.39e-07, + "enfant": 3.39e-07, + "entomological": 3.39e-07, + "ephemera": 3.39e-07, + "erikson": 3.39e-07, + "eris": 3.39e-07, + "escapees": 3.39e-07, + "esi": 3.39e-07, + "esr": 3.39e-07, + "eukaryotes": 3.39e-07, + "everly": 3.39e-07, + "explainer": 3.39e-07, + "expressionist": 3.39e-07, + "extractions": 3.39e-07, + "fabrications": 3.39e-07, + "fairways": 3.39e-07, + "farquhar": 3.39e-07, + "fasts": 3.39e-07, + "fatigues": 3.39e-07, + "fergusons": 3.39e-07, + "feverishly": 3.39e-07, + "feyenoord": 3.39e-07, + "fibreglass": 3.39e-07, + "finches": 3.39e-07, + "flaking": 3.39e-07, + "flanges": 3.39e-07, + "flecks": 3.39e-07, + "flexor": 3.39e-07, + "flintshire": 3.39e-07, + "flipkart": 3.39e-07, + "flippin": 3.39e-07, + "francais": 3.39e-07, + "frc": 3.39e-07, + "fritters": 3.39e-07, + "frustratingly": 3.39e-07, + "funerary": 3.39e-07, + "furies": 3.39e-07, + "fusions": 3.39e-07, + "fwiw": 3.39e-07, + "gday": 3.39e-07, + "galaxys": 3.39e-07, + "garuda": 3.39e-07, + "gauche": 3.39e-07, + "gdpr": 3.39e-07, + "gelatinous": 3.39e-07, + "gennady": 3.39e-07, + "georgiana": 3.39e-07, + "glennon": 3.39e-07, + "gnocchi": 3.39e-07, + "gobsmacked": 3.39e-07, + "godliness": 3.39e-07, + "goldfinger": 3.39e-07, + "gooseberry": 3.39e-07, + "grappled": 3.39e-07, + "graz": 3.39e-07, + "gripes": 3.39e-07, + "grosso": 3.39e-07, + "gte": 3.39e-07, + "gunships": 3.39e-07, + "habana": 3.39e-07, + "haj": 3.39e-07, + "halpern": 3.39e-07, + "halving": 3.39e-07, + "handlebar": 3.39e-07, + "handoff": 3.39e-07, + "harvesters": 3.39e-07, + "hassles": 3.39e-07, + "headlamp": 3.39e-07, + "heffernan": 3.39e-07, + "heinlein": 3.39e-07, + "helmed": 3.39e-07, + "herts": 3.39e-07, + "hier": 3.39e-07, + "hillier": 3.39e-07, + "honble": 3.39e-07, + "hosed": 3.39e-07, + "hutchings": 3.39e-07, + "hydrostatic": 3.39e-07, + "hypersonic": 3.39e-07, + "iaa": 3.39e-07, + "ibc": 3.39e-07, + "ibrox": 3.39e-07, + "icecream": 3.39e-07, + "ifn": 3.39e-07, + "iia": 3.39e-07, + "imploring": 3.39e-07, + "incisors": 3.39e-07, + "incredulity": 3.39e-07, + "inducement": 3.39e-07, + "infomercial": 3.39e-07, + "infos": 3.39e-07, + "insurances": 3.39e-07, + "interventional": 3.39e-07, + "investigatory": 3.39e-07, + "irani": 3.39e-07, + "ishtar": 3.39e-07, + "isro": 3.39e-07, + "itvs": 3.39e-07, + "jarman": 3.39e-07, + "joyride": 3.39e-07, + "jubilation": 3.39e-07, + "julias": 3.39e-07, + "kadri": 3.39e-07, + "kalyan": 3.39e-07, + "kante": 3.39e-07, + "karam": 3.39e-07, + "ketchum": 3.39e-07, + "keying": 3.39e-07, + "kinross": 3.39e-07, + "kiri": 3.39e-07, + "kirkman": 3.39e-07, + "kratom": 3.39e-07, + "kree": 3.39e-07, + "kuomintang": 3.39e-07, + "kwazulu": 3.39e-07, + "lackawanna": 3.39e-07, + "lambeau": 3.39e-07, + "landless": 3.39e-07, + "langham": 3.39e-07, + "larder": 3.39e-07, + "lasagne": 3.39e-07, + "latrobe": 3.39e-07, + "legalised": 3.39e-07, + "leonie": 3.39e-07, + "letitia": 3.39e-07, + "letterbox": 3.39e-07, + "leuven": 3.39e-07, + "liana": 3.39e-07, + "libyas": 3.39e-07, + "linz": 3.39e-07, + "listless": 3.39e-07, + "localize": 3.39e-07, + "logger": 3.39e-07, + "logics": 7.41e-08, + "longitudinally": 3.39e-07, + "lorca": 3.39e-07, + "macadamia": 3.39e-07, + "macklin": 3.39e-07, + "maddison": 3.39e-07, + "madhu": 3.39e-07, + "malignancies": 3.39e-07, + "manet": 3.39e-07, + "manifestos": 3.39e-07, + "manitowoc": 3.39e-07, + "manliness": 3.39e-07, + "marinara": 3.39e-07, + "marmite": 3.39e-07, + "maxwells": 3.39e-07, + "mcadoo": 3.39e-07, + "meekly": 3.39e-07, + "megumi": 3.39e-07, + "methionine": 3.39e-07, + "metros": 2.69e-07, + "microbiota": 3.39e-07, + "mids": 1.17e-08, + "midwinter": 3.39e-07, + "miko": 3.39e-07, + "milans": 3.39e-07, + "milkman": 3.39e-07, + "minato": 3.39e-07, + "minton": 3.39e-07, + "minutemen": 3.39e-07, + "mirrorless": 3.39e-07, + "misbehavior": 3.39e-07, + "miscarried": 3.39e-07, + "missouris": 3.39e-07, + "miura": 3.39e-07, + "mkt": 3.39e-07, + "moir": 3.39e-07, + "mojito": 3.39e-07, + "molyneux": 3.39e-07, + "monteith": 3.39e-07, + "motorised": 3.39e-07, + "mouton": 3.39e-07, + "muggy": 3.39e-07, + "mulled": 3.39e-07, + "multiplicative": 3.39e-07, + "muting": 3.39e-07, + "mutters": 3.39e-07, + "mysterio": 3.39e-07, + "namespace": 3.39e-07, + "neto": 3.39e-07, + "newsfeed": 3.39e-07, + "niceties": 3.39e-07, + "nicoles": 3.39e-07, + "nid": 3.39e-07, + "nier": 3.39e-07, + "nighthawk": 3.39e-07, + "niu": 3.39e-07, + "nmc": 3.39e-07, + "nogales": 3.39e-07, + "nota": 3.39e-07, + "novellas": 3.39e-07, + "ntt": 3.39e-07, + "objector": 3.39e-07, + "obscenities": 3.39e-07, + "octavius": 3.39e-07, + "oden": 3.39e-07, + "offensives": 3.39e-07, + "ojai": 3.39e-07, + "optometrist": 3.39e-07, + "orangutans": 3.39e-07, + "orestes": 3.39e-07, + "overstepped": 3.39e-07, + "oye": 3.39e-07, + "ozarks": 3.39e-07, + "paa": 3.39e-07, + "paducah": 3.39e-07, + "paladins": 3.39e-07, + "parodied": 3.39e-07, + "passe": 3.39e-07, + "pawan": 3.39e-07, + "pdc": 3.39e-07, + "peeves": 3.39e-07, + "pelted": 3.39e-07, + "peppy": 3.39e-07, + "pepys": 3.39e-07, + "pervades": 3.39e-07, + "phobic": 3.39e-07, + "pierces": 2.4e-07, + "pillaged": 3.39e-07, + "pinged": 3.39e-07, + "piotr": 3.39e-07, + "pitfall": 3.39e-07, + "pivoted": 3.39e-07, + "polenta": 3.39e-07, + "polygamous": 3.39e-07, + "powerlessness": 3.39e-07, + "preteen": 3.39e-07, + "prided": 3.39e-07, + "pritchett": 3.39e-07, + "probst": 3.39e-07, + "proliferated": 3.39e-07, + "propels": 3.39e-07, + "prosciutto": 3.39e-07, + "psychoanalyst": 3.39e-07, + "pucks": 6.46e-08, + "purer": 3.39e-07, + "purveyors": 3.39e-07, + "pz": 3.39e-07, + "qp": 3.39e-07, + "quays": 3.39e-07, + "queso": 3.39e-07, + "quinine": 3.39e-07, + "quintus": 3.39e-07, + "rajeev": 3.39e-07, + "ral": 3.39e-07, + "rankine": 3.39e-07, + "rapt": 3.39e-07, + "reappointed": 3.39e-07, + "rearguard": 3.39e-07, + "reasonableness": 3.39e-07, + "rebalancing": 3.39e-07, + "rebus": 3.39e-07, + "redgrave": 3.39e-07, + "refereed": 3.39e-07, + "refilling": 3.39e-07, + "regressed": 3.39e-07, + "reims": 3.39e-07, + "rennes": 3.39e-07, + "revitalizing": 3.39e-07, + "revlon": 3.39e-07, + "rhoades": 3.39e-07, + "rhodium": 3.39e-07, + "ribbing": 3.39e-07, + "ricki": 3.39e-07, + "rida": 3.39e-07, + "righty": 3.39e-07, + "rimmer": 3.39e-07, + "risa": 3.39e-07, + "ritalin": 3.39e-07, + "rmt": 3.39e-07, + "robeson": 3.39e-07, + "ronaldinho": 3.39e-07, + "rooming": 3.39e-07, + "rosin": 3.39e-07, + "rsv": 3.39e-07, + "rubella": 3.39e-07, + "rumbled": 3.39e-07, + "ruptures": 3.39e-07, + "sangh": 3.39e-07, + "schaub": 3.39e-07, + "scrutinizing": 3.39e-07, + "seaway": 3.39e-07, + "semiautomatic": 3.39e-07, + "sfx": 3.39e-07, + "shales": 3.39e-07, + "sharpener": 3.39e-07, + "shawls": 3.39e-07, + "shekels": 3.39e-07, + "sherif": 3.39e-07, + "shorn": 3.39e-07, + "shortens": 3.39e-07, + "sideburns": 3.39e-07, + "sigurd": 3.39e-07, + "simian": 3.39e-07, + "simran": 3.39e-07, + "sio": 3.39e-07, + "skinnier": 3.39e-07, + "slandered": 3.39e-07, + "slays": 3.39e-07, + "slither": 3.39e-07, + "smallish": 3.39e-07, + "snarled": 3.39e-07, + "snk": 3.39e-07, + "snobbery": 3.39e-07, + "sorenson": 3.39e-07, + "sorkin": 3.39e-07, + "spacers": 3.39e-07, + "spiller": 3.39e-07, + "spurgeon": 3.39e-07, + "squidward": 3.39e-07, + "srsly": 3.39e-07, + "stabbings": 3.39e-07, + "staley": 3.39e-07, + "stapler": 3.39e-07, + "starlings": 3.39e-07, + "stef": 3.39e-07, + "sterility": 3.39e-07, + "sternberg": 3.39e-07, + "sterne": 3.39e-07, + "stg": 3.39e-07, + "stiffened": 3.39e-07, + "stonework": 3.39e-07, + "strahan": 3.39e-07, + "streptococcus": 3.39e-07, + "subroutine": 3.39e-07, + "succubus": 3.39e-07, + "supervillain": 3.39e-07, + "sweated": 3.39e-07, + "switzerlands": 3.39e-07, + "synch": 3.39e-07, + "synthesizers": 3.39e-07, + "taa": 3.39e-07, + "taman": 3.39e-07, + "tammany": 3.39e-07, + "tcl": 3.39e-07, + "tcr": 3.39e-07, + "teachable": 3.39e-07, + "techies": 3.39e-07, + "telephoto": 3.39e-07, + "teleported": 3.39e-07, + "teriyaki": 3.39e-07, + "tfa": 3.39e-07, + "theistic": 3.39e-07, + "theobald": 3.39e-07, + "thessalonians": 3.39e-07, + "thimble": 3.39e-07, + "thorp": 3.39e-07, + "tikka": 3.39e-07, + "timur": 3.39e-07, + "tokio": 3.39e-07, + "tommaso": 3.39e-07, + "toomey": 3.39e-07, + "tootsie": 3.39e-07, + "transits": 3.39e-07, + "treks": 1.26e-07, + "trespassers": 3.39e-07, + "trickled": 3.39e-07, + "triptych": 3.39e-07, + "trna": 3.39e-07, + "tro": 3.39e-07, + "tsarnaev": 3.39e-07, + "tuareg": 3.39e-07, + "tugboat": 3.39e-07, + "tulare": 3.39e-07, + "twinge": 3.39e-07, + "ucsb": 3.39e-07, + "uli": 3.39e-07, + "unbelief": 3.39e-07, + "uncharacteristically": 3.39e-07, + "underestimates": 3.39e-07, + "undid": 3.39e-07, + "unfocused": 3.39e-07, + "unimpeded": 3.39e-07, + "unmotivated": 3.39e-07, + "unsweetened": 3.39e-07, + "urals": 3.39e-07, + "usg": 3.39e-07, + "vai": 3.39e-07, + "validly": 3.39e-07, + "valli": 3.39e-07, + "varicose": 3.39e-07, + "vaunted": 3.39e-07, + "venezia": 3.39e-07, + "vestibular": 3.39e-07, + "vestments": 3.39e-07, + "vil": 3.39e-07, + "visualisation": 3.39e-07, + "vocations": 3.39e-07, + "wala": 3.39e-07, + "walken": 3.39e-07, + "wangs": 6.61e-08, + "warrantless": 3.39e-07, + "waterpark": 3.39e-07, + "wayback": 3.39e-07, + "wayyyy": 3.39e-07, + "wcc": 3.39e-07, + "weasels": 3.39e-07, + "webbed": 3.39e-07, + "webinars": 3.39e-07, + "ween": 3.39e-07, + "welshman": 3.39e-07, + "westboro": 3.39e-07, + "whitepaper": 3.39e-07, + "whitest": 3.39e-07, + "whooped": 3.39e-07, + "wishers": 3.39e-07, + "woodard": 3.39e-07, + "wrinkly": 3.39e-07, + "wuthering": 3.39e-07, + "yarrow": 3.39e-07, + "yearbooks": 3.39e-07, + "yesss": 3.39e-07, + "zaman": 3.39e-07, + "zeb": 3.39e-07, + "zinn": 3.39e-07, + "zirconia": 3.39e-07, + "zoloft": 3.39e-07, + "aan": 3.31e-07, + "abh": 3.31e-07, + "acharya": 3.31e-07, + "actuaries": 3.31e-07, + "adolfo": 3.31e-07, + "agha": 3.31e-07, + "ahsoka": 3.31e-07, + "aintree": 3.31e-07, + "airships": 3.31e-07, + "alanis": 3.31e-07, + "allard": 3.31e-07, + "angies": 3.31e-07, + "antsy": 3.31e-07, + "apac": 3.31e-07, + "apertures": 3.31e-07, + "apprised": 3.31e-07, + "arabidopsis": 3.31e-07, + "arendt": 3.31e-07, + "argentinean": 3.31e-07, + "arlen": 3.31e-07, + "arunachal": 3.31e-07, + "ashish": 3.31e-07, + "ashkenazi": 3.31e-07, + "assailed": 3.31e-07, + "astern": 3.31e-07, + "atpase": 3.31e-07, + "audra": 3.31e-07, + "autofocus": 3.31e-07, + "badoo": 3.31e-07, + "baghdadi": 3.31e-07, + "baldwins": 6.31e-08, + "balenciaga": 3.31e-07, + "baloney": 3.31e-07, + "bangin": 3.31e-07, + "banister": 3.31e-07, + "banque": 3.31e-07, + "barbaras": 3.31e-07, + "beatriz": 3.31e-07, + "beautification": 3.31e-07, + "belladonna": 3.31e-07, + "bellas": 2.88e-07, + "bexley": 3.31e-07, + "bhubaneswar": 3.31e-07, + "biochemist": 3.31e-07, + "birla": 3.31e-07, + "birminghams": 3.31e-07, + "blt": 3.31e-07, + "boaz": 3.31e-07, + "bobbin": 3.31e-07, + "bogo": 3.31e-07, + "bolden": 3.31e-07, + "boll": 3.31e-07, + "bolsters": 3.31e-07, + "boogeyman": 3.31e-07, + "boozy": 3.31e-07, + "bothwell": 3.31e-07, + "boyne": 3.31e-07, + "brackett": 3.31e-07, + "brainstem": 3.31e-07, + "brenton": 3.31e-07, + "brereton": 3.31e-07, + "bricklayer": 3.31e-07, + "browsed": 3.31e-07, + "bruin": 3.31e-07, + "bundaberg": 3.31e-07, + "businessweek": 3.31e-07, + "camacho": 3.31e-07, + "camellia": 3.31e-07, + "canonized": 3.31e-07, + "captivate": 3.31e-07, + "carling": 3.31e-07, + "carmarthen": 3.31e-07, + "carnaval": 3.31e-07, + "carvajal": 3.31e-07, + "cashews": 3.31e-07, + "catalyze": 3.31e-07, + "cavalcade": 3.31e-07, + "cerebrospinal": 3.31e-07, + "ceredigion": 3.31e-07, + "chamberlin": 3.31e-07, + "charless": 3.31e-07, + "chequered": 3.31e-07, + "chine": 3.31e-07, + "choosy": 3.31e-07, + "ciphers": 3.31e-07, + "circumventing": 3.31e-07, + "clarksburg": 3.31e-07, + "clostridium": 3.31e-07, + "coaxing": 3.31e-07, + "cockatoo": 3.31e-07, + "collectables": 3.31e-07, + "colm": 3.31e-07, + "colonised": 3.31e-07, + "commends": 3.31e-07, + "commonalities": 3.31e-07, + "compressions": 3.31e-07, + "concisely": 3.31e-07, + "conditionally": 3.31e-07, + "consummation": 3.31e-07, + "convents": 3.31e-07, + "conveyors": 3.31e-07, + "coons": 3.31e-07, + "copolymer": 3.31e-07, + "cpo": 3.31e-07, + "crags": 3.31e-07, + "crain": 3.31e-07, + "creak": 3.31e-07, + "creditable": 3.31e-07, + "cringey": 3.31e-07, + "cripps": 3.31e-07, + "curatorial": 3.31e-07, + "cutesy": 3.31e-07, + "cydia": 3.31e-07, + "dann": 3.31e-07, + "darshan": 3.31e-07, + "datum": 3.31e-07, + "davide": 3.31e-07, + "deathmatch": 3.31e-07, + "debutante": 3.31e-07, + "deconstructing": 3.31e-07, + "deepika": 3.31e-07, + "deflector": 3.31e-07, + "dehumanizing": 3.31e-07, + "delhis": 3.31e-07, + "deliberating": 3.31e-07, + "delos": 3.31e-07, + "demonizing": 3.31e-07, + "digitization": 3.31e-07, + "dinos": 1.12e-07, + "disassembly": 3.31e-07, + "displacements": 3.31e-07, + "dissonant": 3.31e-07, + "divulged": 3.31e-07, + "doric": 3.31e-07, + "doting": 3.31e-07, + "dra": 3.31e-07, + "dreamin": 3.31e-07, + "dreamlike": 3.31e-07, + "dressers": 3.31e-07, + "drummed": 3.31e-07, + "duggar": 3.31e-07, + "dulled": 3.31e-07, + "dvi": 3.31e-07, + "dyin": 3.31e-07, + "earthenware": 3.31e-07, + "egalitarianism": 3.31e-07, + "ehr": 3.31e-07, + "ekaterina": 3.31e-07, + "ekg": 3.31e-07, + "eloped": 3.31e-07, + "emanates": 3.31e-07, + "embezzling": 3.31e-07, + "ents": 3.31e-07, + "epc": 3.31e-07, + "epr": 3.31e-07, + "ert": 3.31e-07, + "escapade": 3.31e-07, + "essie": 3.31e-07, + "expending": 3.31e-07, + "expounded": 3.31e-07, + "extinctions": 3.31e-07, + "exude": 3.31e-07, + "facepalm": 3.31e-07, + "factorial": 3.31e-07, + "famers": 3.31e-07, + "fanta": 3.31e-07, + "fazio": 3.31e-07, + "feint": 3.31e-07, + "fergusson": 3.31e-07, + "fireballs": 3.31e-07, + "firebrand": 3.31e-07, + "fishs": 3.31e-07, + "flinched": 3.31e-07, + "fondle": 3.31e-07, + "foothill": 3.31e-07, + "frankston": 3.31e-07, + "freund": 3.31e-07, + "frontlines": 3.31e-07, + "froome": 3.31e-07, + "frosts": 2.34e-07, + "frugality": 3.31e-07, + "frys": 6.61e-08, + "funneling": 3.31e-07, + "furor": 3.31e-07, + "galling": 3.31e-07, + "garcias": 3.31e-07, + "gargoyles": 3.31e-07, + "gaslighting": 3.31e-07, + "gaspar": 3.31e-07, + "gerhardt": 3.31e-07, + "ghosting": 3.31e-07, + "gillan": 3.31e-07, + "gir": 3.31e-07, + "glum": 3.31e-07, + "gobbling": 3.31e-07, + "goetz": 3.31e-07, + "goldblum": 3.31e-07, + "goro": 3.31e-07, + "goswami": 3.31e-07, + "gouda": 3.31e-07, + "gouged": 3.31e-07, + "gravitated": 3.31e-07, + "griddle": 3.31e-07, + "grinnell": 3.31e-07, + "groundless": 3.31e-07, + "gsc": 3.31e-07, + "gunboats": 3.31e-07, + "gurgling": 3.31e-07, + "hampson": 3.31e-07, + "hannan": 3.31e-07, + "harington": 3.31e-07, + "haruka": 3.31e-07, + "haverhill": 3.31e-07, + "hazelwood": 3.31e-07, + "headboard": 3.31e-07, + "hebert": 3.31e-07, + "helo": 3.31e-07, + "hematopoietic": 3.31e-07, + "hercule": 3.31e-07, + "herculean": 3.31e-07, + "hereunder": 3.31e-07, + "heterosexuality": 3.31e-07, + "heuristics": 3.31e-07, + "hmv": 3.31e-07, + "hss": 3.31e-07, + "hydride": 3.31e-07, + "hypotension": 3.31e-07, + "iaaf": 3.31e-07, + "iap": 3.31e-07, + "idi": 3.31e-07, + "idps": 3.31e-07, + "ieds": 3.31e-07, + "illus": 3.31e-07, + "imd": 3.31e-07, + "imploding": 3.31e-07, + "improvisational": 3.31e-07, + "incubus": 3.31e-07, + "incurs": 3.31e-07, + "inductees": 3.31e-07, + "inflicts": 3.31e-07, + "infosys": 3.31e-07, + "inkjet": 3.31e-07, + "interlaced": 3.31e-07, + "intermarriage": 3.31e-07, + "inuyasha": 3.31e-07, + "invalidating": 3.31e-07, + "irresistibly": 3.31e-07, + "ismael": 3.31e-07, + "ivorian": 3.31e-07, + "ivs": 2.45e-07, + "iyer": 3.31e-07, + "jeffreys": 1.2e-07, + "jennifers": 3.31e-07, + "jerzy": 3.31e-07, + "jez": 3.31e-07, + "jilted": 3.31e-07, + "jiro": 3.31e-07, + "joels": 3.31e-07, + "journeying": 3.31e-07, + "jousting": 3.31e-07, + "juicer": 3.31e-07, + "justus": 3.31e-07, + "kalahari": 3.31e-07, + "karst": 3.31e-07, + "kenan": 3.31e-07, + "kentish": 3.31e-07, + "kes": 3.31e-07, + "keyboardist": 3.31e-07, + "keyser": 3.31e-07, + "kgs": 3.31e-07, + "kinnear": 3.31e-07, + "knightsbridge": 3.31e-07, + "kunst": 3.31e-07, + "kylo": 3.31e-07, + "kym": 3.31e-07, + "ladens": 3.31e-07, + "languished": 3.31e-07, + "lanning": 3.31e-07, + "lcc": 3.31e-07, + "lecter": 3.31e-07, + "legate": 3.31e-07, + "legoland": 3.31e-07, + "legolas": 3.31e-07, + "leong": 3.31e-07, + "lethality": 3.31e-07, + "levitate": 3.31e-07, + "levitation": 3.31e-07, + "lifters": 3.31e-07, + "lilley": 3.31e-07, + "linder": 3.31e-07, + "liquidator": 3.31e-07, + "lithgow": 3.31e-07, + "logarithm": 3.31e-07, + "longoria": 3.31e-07, + "lordy": 3.31e-07, + "lorelei": 3.31e-07, + "louth": 3.31e-07, + "lugano": 3.31e-07, + "mlady": 3.31e-07, + "maan": 3.31e-07, + "machiavellian": 3.31e-07, + "maimonides": 3.31e-07, + "maladies": 3.31e-07, + "manchesters": 3.31e-07, + "mandibular": 3.31e-07, + "manx": 3.31e-07, + "maoists": 3.31e-07, + "marrakesh": 3.31e-07, + "masochistic": 3.31e-07, + "mauna": 3.31e-07, + "mccarron": 3.31e-07, + "mccloud": 3.31e-07, + "midsection": 3.31e-07, + "mightier": 3.31e-07, + "mmol": 3.31e-07, + "modernise": 3.31e-07, + "mongo": 3.31e-07, + "monomers": 3.31e-07, + "montes": 5.75e-08, + "mountbatten": 3.31e-07, + "mucosal": 3.31e-07, + "muhammads": 3.31e-07, + "murdochs": 5.89e-08, + "musks": 3.31e-07, + "mustaches": 3.31e-07, + "myanmars": 3.31e-07, + "mykonos": 3.31e-07, + "mz": 3.31e-07, + "naloxone": 3.31e-07, + "nameplate": 3.31e-07, + "nanaimo": 3.31e-07, + "nasri": 3.31e-07, + "nella": 3.31e-07, + "nen": 3.31e-07, + "neoplasms": 3.31e-07, + "nevin": 3.31e-07, + "newscaster": 3.31e-07, + "newsprint": 3.31e-07, + "newyork": 3.31e-07, + "nha": 3.31e-07, + "nicolai": 3.31e-07, + "nikhil": 3.31e-07, + "noblest": 3.31e-07, + "nsas": 3.31e-07, + "ntc": 3.31e-07, + "nuri": 3.31e-07, + "obasanjo": 3.31e-07, + "oic": 3.31e-07, + "oliphant": 3.31e-07, + "olivias": 3.31e-07, + "ominously": 3.31e-07, + "onslow": 3.31e-07, + "optioned": 3.31e-07, + "ornithology": 3.31e-07, + "orthodontist": 3.31e-07, + "osorio": 3.31e-07, + "overcharged": 3.31e-07, + "overgrowth": 3.31e-07, + "overshoot": 3.31e-07, + "owo": 3.31e-07, + "paedophiles": 3.31e-07, + "paleontologist": 3.31e-07, + "panelling": 3.31e-07, + "panera": 3.31e-07, + "papillon": 3.31e-07, + "paredes": 3.31e-07, + "parque": 3.31e-07, + "pastiche": 3.31e-07, + "pater": 3.31e-07, + "pawtucket": 3.31e-07, + "pecker": 3.31e-07, + "penner": 3.31e-07, + "peritoneal": 3.31e-07, + "persevering": 3.31e-07, + "pettit": 3.31e-07, + "phallus": 3.31e-07, + "phenomenological": 3.31e-07, + "phonemes": 3.31e-07, + "phosphates": 3.31e-07, + "pinellas": 3.31e-07, + "plath": 3.31e-07, + "pld": 3.31e-07, + "pleasantries": 3.31e-07, + "polarisation": 3.31e-07, + "polarised": 3.31e-07, + "pollinated": 3.31e-07, + "predilection": 3.31e-07, + "principe": 3.31e-07, + "prion": 3.31e-07, + "profs": 3.31e-07, + "profusion": 3.31e-07, + "progenitors": 3.31e-07, + "protestations": 3.31e-07, + "pseudonyms": 3.31e-07, + "pucker": 3.31e-07, + "pullback": 3.31e-07, + "punted": 3.31e-07, + "pusha": 3.31e-07, + "pyne": 3.31e-07, + "qasim": 3.31e-07, + "rakesh": 3.31e-07, + "ranjit": 3.31e-07, + "ratatouille": 3.31e-07, + "raze": 3.31e-07, + "rct": 3.31e-07, + "reestablished": 3.31e-07, + "relent": 3.31e-07, + "renfrew": 3.31e-07, + "requisitioned": 3.31e-07, + "retest": 3.31e-07, + "retrain": 3.31e-07, + "retrofitted": 3.31e-07, + "rhododendron": 3.31e-07, + "rian": 3.31e-07, + "rifleman": 3.31e-07, + "rino": 3.31e-07, + "rns": 3.31e-07, + "roams": 3.31e-07, + "rosamund": 3.31e-07, + "rossini": 3.31e-07, + "roughed": 3.31e-07, + "roughest": 3.31e-07, + "rubenstein": 3.31e-07, + "rumbles": 3.31e-07, + "rusev": 3.31e-07, + "rushton": 3.31e-07, + "ruthlessness": 3.31e-07, + "sabo": 3.31e-07, + "sackville": 3.31e-07, + "sacral": 3.31e-07, + "samuelson": 3.31e-07, + "saracen": 3.31e-07, + "sassoon": 3.31e-07, + "sawmills": 3.31e-07, + "scherzer": 3.31e-07, + "schmuck": 3.31e-07, + "scrawled": 3.31e-07, + "scuffed": 3.31e-07, + "seaford": 3.31e-07, + "secondaries": 3.31e-07, + "sensationalism": 3.31e-07, + "septuagint": 3.31e-07, + "sheathed": 3.31e-07, + "shelburne": 3.31e-07, + "shinobi": 3.31e-07, + "shipman": 3.31e-07, + "shortbread": 3.31e-07, + "shtick": 3.31e-07, + "shulman": 3.31e-07, + "sidings": 3.31e-07, + "sinuous": 3.31e-07, + "sires": 3.31e-07, + "sirloin": 3.31e-07, + "sivan": 3.31e-07, + "skimp": 3.31e-07, + "skunks": 3.31e-07, + "slayed": 3.31e-07, + "slicer": 3.31e-07, + "slipstream": 3.31e-07, + "slumps": 3.31e-07, + "smit": 3.31e-07, + "snobby": 3.31e-07, + "snowboarder": 3.31e-07, + "sonics": 1.55e-07, + "spaceport": 3.31e-07, + "spayed": 3.31e-07, + "speedboat": 3.31e-07, + "spouts": 3.31e-07, + "sprees": 3.31e-07, + "spry": 3.31e-07, + "spurring": 3.31e-07, + "stalwarts": 3.31e-07, + "stanislaus": 3.31e-07, + "stealer": 3.31e-07, + "strabo": 3.31e-07, + "stringy": 3.31e-07, + "struct": 3.31e-07, + "stuarts": 1.66e-07, + "subsonic": 3.31e-07, + "substations": 3.31e-07, + "summery": 3.31e-07, + "suplex": 3.31e-07, + "survivalist": 3.31e-07, + "syrups": 3.31e-07, + "tableware": 3.31e-07, + "talc": 3.31e-07, + "tallis": 3.31e-07, + "tapeworm": 3.31e-07, + "tdm": 3.31e-07, + "teesside": 3.31e-07, + "telnet": 3.31e-07, + "tempering": 3.31e-07, + "tennessees": 3.31e-07, + "terminations": 3.31e-07, + "ternary": 3.31e-07, + "therewith": 3.31e-07, + "thes": 3.31e-07, + "thither": 3.31e-07, + "tid": 3.31e-07, + "tinfoil": 3.31e-07, + "tish": 3.31e-07, + "titania": 3.31e-07, + "tongan": 3.31e-07, + "toons": 3.31e-07, + "topanga": 3.31e-07, + "toyotas": 9.77e-08, + "transfixed": 3.31e-07, + "trended": 3.31e-07, + "tripura": 3.31e-07, + "troika": 3.31e-07, + "tryon": 3.31e-07, + "tula": 3.31e-07, + "tull": 3.31e-07, + "tunnelling": 3.31e-07, + "turnoff": 3.31e-07, + "uncouth": 3.31e-07, + "underutilized": 3.31e-07, + "unexploded": 3.31e-07, + "unhurt": 3.31e-07, + "unleaded": 3.31e-07, + "unpleasantness": 3.31e-07, + "unrivaled": 3.31e-07, + "unsalted": 3.31e-07, + "unsullied": 3.31e-07, + "unwed": 3.31e-07, + "urologist": 3.31e-07, + "utensil": 3.31e-07, + "vacuums": 3.31e-07, + "vanities": 3.31e-07, + "vaporizer": 3.31e-07, + "vasily": 3.31e-07, + "venables": 3.31e-07, + "venereal": 3.31e-07, + "vergil": 3.31e-07, + "vesting": 3.31e-07, + "virile": 3.31e-07, + "vitali": 3.31e-07, + "vittoria": 3.31e-07, + "vivendi": 3.31e-07, + "vmas": 3.31e-07, + "vss": 3.31e-07, + "wallach": 3.31e-07, + "washout": 3.31e-07, + "wattle": 3.31e-07, + "westpac": 3.31e-07, + "whatll": 3.31e-07, + "whither": 3.31e-07, + "wifey": 3.31e-07, + "wilco": 3.31e-07, + "wildebeest": 3.31e-07, + "wilks": 3.31e-07, + "wintertime": 3.31e-07, + "woodcut": 3.31e-07, + "woodlawn": 3.31e-07, + "wooed": 3.31e-07, + "wootton": 3.31e-07, + "xuan": 3.31e-07, + "yaoi": 3.31e-07, + "yasir": 3.31e-07, + "yatra": 3.31e-07, + "yb": 3.31e-07, + "yitzhak": 3.31e-07, + "yl": 3.31e-07, + "younis": 3.31e-07, + "zamboanga": 3.31e-07, + "zaza": 3.31e-07, + "zippy": 3.31e-07, + "aadmi": 3.24e-07, + "abstention": 3.24e-07, + "accusative": 3.24e-07, + "acquaint": 3.24e-07, + "acrobats": 3.24e-07, + "admonition": 3.24e-07, + "adolphus": 3.24e-07, + "ainslie": 3.24e-07, + "akers": 3.24e-07, + "alanine": 3.24e-07, + "alberts": 2.09e-07, + "allenby": 3.24e-07, + "allstar": 3.24e-07, + "amalia": 3.24e-07, + "amputations": 3.24e-07, + "anaemia": 3.24e-07, + "analyzers": 3.24e-07, + "andie": 3.24e-07, + "andrus": 3.24e-07, + "anesthesiology": 3.24e-07, + "angiography": 3.24e-07, + "annexe": 3.24e-07, + "antifungal": 3.24e-07, + "antigone": 3.24e-07, + "anythings": 5.62e-08, + "apos": 3.24e-07, + "appeasing": 3.24e-07, + "aquamarine": 3.24e-07, + "arbitrators": 3.24e-07, + "arbroath": 3.24e-07, + "assassinating": 3.24e-07, + "astringent": 3.24e-07, + "atalanta": 3.24e-07, + "athenaeum": 3.24e-07, + "atropine": 3.24e-07, + "attentively": 3.24e-07, + "auvergne": 3.24e-07, + "azimuth": 3.24e-07, + "bacardi": 3.24e-07, + "backdrops": 3.24e-07, + "bains": 5.13e-08, + "balaclava": 3.24e-07, + "bandicoot": 3.24e-07, + "bangle": 3.24e-07, + "banishing": 3.24e-07, + "bayes": 3.24e-07, + "bch": 3.24e-07, + "beadle": 3.24e-07, + "beautify": 3.24e-07, + "beckoned": 3.24e-07, + "befriends": 3.24e-07, + "beheld": 3.24e-07, + "belies": 3.24e-07, + "bessemer": 3.24e-07, + "bffs": 8.91e-08, + "bhs": 3.24e-07, + "bifida": 3.24e-07, + "blanton": 3.24e-07, + "blocky": 3.24e-07, + "bluebirds": 3.24e-07, + "bma": 3.24e-07, + "bmws": 2.34e-07, + "bodhisattva": 3.24e-07, + "boilerplate": 3.24e-07, + "boz": 3.24e-07, + "breakneck": 3.24e-07, + "bringer": 3.24e-07, + "broadens": 3.24e-07, + "brokeback": 3.24e-07, + "brosnan": 3.24e-07, + "brotha": 3.24e-07, + "brussel": 3.24e-07, + "buk": 3.24e-07, + "bukowski": 3.24e-07, + "bulkheads": 3.24e-07, + "bumgarner": 3.24e-07, + "businesss": 3.24e-07, + "cag": 3.24e-07, + "cammy": 3.24e-07, + "campy": 3.24e-07, + "capn": 3.24e-07, + "caressed": 3.24e-07, + "carnivals": 6.03e-08, + "caseload": 3.24e-07, + "cassia": 3.24e-07, + "catapults": 3.24e-07, + "changs": 5.37e-08, + "chattel": 3.24e-07, + "cheeto": 3.24e-07, + "chika": 3.24e-07, + "choe": 3.24e-07, + "chorale": 3.24e-07, + "chowdhury": 3.24e-07, + "ciro": 3.24e-07, + "clavicle": 3.24e-07, + "cleese": 3.24e-07, + "coalesced": 3.24e-07, + "coburg": 3.24e-07, + "cochise": 3.24e-07, + "coffman": 3.24e-07, + "colliers": 1.45e-07, + "colourless": 3.24e-07, + "commutative": 3.24e-07, + "compaction": 3.24e-07, + "composes": 3.24e-07, + "computes": 3.24e-07, + "concours": 3.24e-07, + "conformance": 3.24e-07, + "constraining": 3.24e-07, + "copywriter": 3.24e-07, + "correspondences": 3.24e-07, + "cosimo": 3.24e-07, + "cosine": 3.24e-07, + "cosmonaut": 3.24e-07, + "costner": 3.24e-07, + "cottrell": 3.24e-07, + "countable": 3.24e-07, + "couplet": 3.24e-07, + "creationists": 3.24e-07, + "cricketing": 3.24e-07, + "criminalized": 3.24e-07, + "crowne": 3.24e-07, + "curitiba": 3.24e-07, + "curler": 3.24e-07, + "currant": 3.24e-07, + "cutaway": 3.24e-07, + "dari": 3.24e-07, + "daz": 3.24e-07, + "decca": 3.24e-07, + "deducting": 3.24e-07, + "deejay": 3.24e-07, + "dees": 2.51e-07, + "defecation": 3.24e-07, + "defund": 3.24e-07, + "denbighshire": 3.24e-07, + "deprives": 3.24e-07, + "dern": 3.24e-07, + "desorption": 3.24e-07, + "destabilization": 3.24e-07, + "diller": 3.24e-07, + "dimethyl": 3.24e-07, + "diogenes": 3.24e-07, + "disbelieve": 3.24e-07, + "dispenses": 3.24e-07, + "dissipating": 3.24e-07, + "dividers": 3.24e-07, + "dmd": 6.03e-08, + "dogecoin": 3.24e-07, + "doggett": 3.24e-07, + "doobie": 3.24e-07, + "dori": 3.24e-07, + "dostoevsky": 3.24e-07, + "draughts": 3.24e-07, + "droop": 3.24e-07, + "duce": 3.24e-07, + "duplicity": 3.24e-07, + "dyck": 3.24e-07, + "eck": 3.24e-07, + "effervescent": 3.24e-07, + "eko": 3.24e-07, + "elearning": 3.24e-07, + "elliots": 3.24e-07, + "emanate": 3.24e-07, + "eminems": 3.24e-07, + "enactments": 3.24e-07, + "encapsulate": 3.24e-07, + "enduro": 3.24e-07, + "ens": 1.86e-08, + "entryway": 3.24e-07, + "eod": 3.24e-07, + "escalade": 3.24e-07, + "espousing": 3.24e-07, + "esv": 3.24e-07, + "ethiopias": 3.24e-07, + "eugenio": 3.24e-07, + "excerpted": 3.24e-07, + "fabrice": 3.24e-07, + "facetious": 3.24e-07, + "falsification": 3.24e-07, + "farooq": 3.24e-07, + "fascinate": 3.24e-07, + "fauci": 3.24e-07, + "femdom": 3.24e-07, + "ffxiv": 3.24e-07, + "fielders": 1.15e-07, + "finkelstein": 3.24e-07, + "firmino": 3.24e-07, + "fluxes": 3.24e-07, + "flyin": 3.24e-07, + "fma": 3.24e-07, + "follicular": 3.24e-07, + "footloose": 3.24e-07, + "forde": 3.24e-07, + "foreclose": 3.24e-07, + "forecourt": 3.24e-07, + "forewarned": 3.24e-07, + "forger": 3.24e-07, + "foundered": 3.24e-07, + "fpga": 3.24e-07, + "frankish": 3.24e-07, + "frankness": 3.24e-07, + "fredericton": 3.24e-07, + "freshener": 3.24e-07, + "frighteningly": 3.24e-07, + "frilly": 3.24e-07, + "furries": 3.24e-07, + "fusiliers": 3.24e-07, + "gagnon": 3.24e-07, + "gammon": 3.24e-07, + "gangway": 3.24e-07, + "garvin": 3.24e-07, + "gchq": 3.24e-07, + "generality": 3.24e-07, + "gente": 3.24e-07, + "georgy": 3.24e-07, + "giga": 3.24e-07, + "gli": 3.24e-07, + "globalists": 3.24e-07, + "glutes": 3.24e-07, + "gobbled": 3.24e-07, + "gordie": 3.24e-07, + "goring": 3.24e-07, + "governorate": 3.24e-07, + "grater": 3.24e-07, + "grogan": 3.24e-07, + "gruelling": 3.24e-07, + "guises": 3.24e-07, + "gushed": 3.24e-07, + "haddon": 3.24e-07, + "haight": 3.24e-07, + "hallie": 3.24e-07, + "hankering": 3.24e-07, + "hannigan": 3.24e-07, + "harkin": 3.24e-07, + "harrelson": 3.24e-07, + "hasidic": 3.24e-07, + "hattiesburg": 3.24e-07, + "haut": 3.24e-07, + "headingley": 3.24e-07, + "healths": 3.24e-07, + "helmsman": 3.24e-07, + "hendon": 3.24e-07, + "hieroglyphics": 3.24e-07, + "hindley": 3.24e-07, + "hippocampal": 3.24e-07, + "hitchhiker": 3.24e-07, + "hitomi": 3.24e-07, + "hoffa": 3.24e-07, + "hollys": 3.24e-07, + "homophobes": 3.24e-07, + "hosiery": 3.24e-07, + "housemaid": 3.24e-07, + "howler": 3.24e-07, + "hubbub": 3.24e-07, + "huda": 3.24e-07, + "humorously": 3.24e-07, + "husseins": 3.24e-07, + "hydrogenated": 3.24e-07, + "hydrophilic": 3.24e-07, + "ibo": 3.24e-07, + "idw": 3.24e-07, + "ignis": 3.24e-07, + "igt": 3.24e-07, + "ihop": 3.24e-07, + "imitators": 3.24e-07, + "inclusivity": 3.24e-07, + "incorrigible": 3.24e-07, + "insertions": 3.24e-07, + "insinuation": 3.24e-07, + "insulators": 3.24e-07, + "insures": 3.24e-07, + "interceptors": 3.24e-07, + "interchanges": 3.24e-07, + "internationalist": 3.24e-07, + "intersectional": 3.24e-07, + "invicta": 3.24e-07, + "iptv": 3.24e-07, + "irresponsibly": 3.24e-07, + "irreversibly": 3.24e-07, + "islay": 3.24e-07, + "iterate": 3.24e-07, + "itf": 3.24e-07, + "iud": 3.24e-07, + "iwata": 3.24e-07, + "jabari": 3.24e-07, + "jager": 3.24e-07, + "jerez": 3.24e-07, + "journaling": 3.24e-07, + "junius": 3.24e-07, + "kacey": 3.24e-07, + "karthik": 3.24e-07, + "katharina": 3.24e-07, + "katia": 3.24e-07, + "keeled": 3.24e-07, + "kenseth": 3.24e-07, + "keselowski": 3.24e-07, + "kilbride": 3.24e-07, + "kinsella": 3.24e-07, + "kirill": 3.24e-07, + "kirks": 6.92e-08, + "klee": 3.24e-07, + "knotty": 3.24e-07, + "knut": 3.24e-07, + "kotaku": 3.24e-07, + "kwai": 3.24e-07, + "lamas": 1.58e-07, + "lampert": 3.24e-07, + "landlines": 3.24e-07, + "lassen": 3.24e-07, + "latrine": 3.24e-07, + "latrines": 3.24e-07, + "lavine": 3.24e-07, + "leasehold": 3.24e-07, + "lech": 3.24e-07, + "legwork": 3.24e-07, + "leng": 3.24e-07, + "lepidoptera": 3.24e-07, + "leste": 3.24e-07, + "liaise": 3.24e-07, + "liaoning": 3.24e-07, + "libertine": 3.24e-07, + "libyans": 3.24e-07, + "lich": 3.24e-07, + "ligation": 3.24e-07, + "lightyear": 3.24e-07, + "limpopo": 3.24e-07, + "lindo": 3.24e-07, + "lissa": 3.24e-07, + "llandudno": 3.24e-07, + "lockouts": 3.24e-07, + "loli": 3.24e-07, + "lombok": 3.24e-07, + "ltv": 3.24e-07, + "luminescence": 3.24e-07, + "lune": 3.24e-07, + "macedon": 3.24e-07, + "machi": 3.24e-07, + "manoj": 3.24e-07, + "marat": 3.24e-07, + "masturbates": 3.24e-07, + "matson": 3.24e-07, + "mawson": 3.24e-07, + "mayans": 3.24e-07, + "maz": 3.24e-07, + "mcalpine": 3.24e-07, + "mcdonagh": 3.24e-07, + "mcginnis": 3.24e-07, + "mckellar": 3.24e-07, + "mdm": 3.24e-07, + "medallists": 3.24e-07, + "merriment": 3.24e-07, + "mertens": 3.24e-07, + "mignolet": 3.24e-07, + "minigames": 3.24e-07, + "misa": 3.24e-07, + "misbehave": 3.24e-07, + "mischa": 3.24e-07, + "mishandled": 3.24e-07, + "misshapen": 3.24e-07, + "mississippian": 3.24e-07, + "mittal": 3.24e-07, + "moccasins": 3.24e-07, + "mogg": 3.24e-07, + "moisturiser": 3.24e-07, + "moisturize": 3.24e-07, + "mondale": 3.24e-07, + "monotheistic": 3.24e-07, + "montezuma": 3.24e-07, + "mops": 3.24e-07, + "mtc": 3.24e-07, + "muggles": 3.24e-07, + "muhammadu": 3.24e-07, + "mva": 3.24e-07, + "myc": 3.24e-07, + "myelin": 3.24e-07, + "neils": 5.5e-08, + "neocon": 3.24e-07, + "neocons": 3.24e-07, + "nepa": 3.24e-07, + "newsstands": 3.24e-07, + "niacin": 3.24e-07, + "nickerson": 3.24e-07, + "nigra": 3.24e-07, + "niqab": 3.24e-07, + "nms": 3.24e-07, + "noma": 3.24e-07, + "nonhuman": 3.24e-07, + "nosebleed": 3.24e-07, + "nought": 3.24e-07, + "nri": 3.24e-07, + "nussbaum": 3.24e-07, + "okeeffe": 3.24e-07, + "offal": 3.24e-07, + "offsite": 3.24e-07, + "oldsmobile": 3.24e-07, + "omnium": 3.24e-07, + "oooooh": 3.24e-07, + "oratorio": 3.24e-07, + "oryx": 3.24e-07, + "otr": 3.24e-07, + "outshine": 3.24e-07, + "paddocks": 3.24e-07, + "palisade": 3.24e-07, + "palmdale": 3.24e-07, + "paratrooper": 3.24e-07, + "pardew": 3.24e-07, + "pardo": 3.24e-07, + "patrimony": 3.24e-07, + "perchance": 3.24e-07, + "peshmerga": 3.24e-07, + "petrograd": 3.24e-07, + "phonetically": 3.24e-07, + "phosphorous": 3.24e-07, + "pickford": 3.24e-07, + "pitied": 3.24e-07, + "pizarro": 3.24e-07, + "plaything": 3.24e-07, + "pnr": 3.24e-07, + "pocketing": 3.24e-07, + "podiums": 3.24e-07, + "pof": 3.24e-07, + "polycarbonate": 3.24e-07, + "pontificate": 3.24e-07, + "pou": 3.24e-07, + "ppb": 3.24e-07, + "preakness": 3.24e-07, + "precast": 3.24e-07, + "predestination": 3.24e-07, + "prefaced": 3.24e-07, + "proliferating": 3.24e-07, + "provocations": 3.24e-07, + "prussians": 3.24e-07, + "ptr": 3.24e-07, + "publican": 3.24e-07, + "pulverized": 3.24e-07, + "pumice": 3.24e-07, + "pupa": 3.24e-07, + "pyrex": 3.24e-07, + "ramses": 3.24e-07, + "rancor": 3.24e-07, + "ranieri": 3.24e-07, + "rationalized": 3.24e-07, + "ratner": 3.24e-07, + "reactivation": 3.24e-07, + "realists": 3.24e-07, + "reassert": 3.24e-07, + "reboots": 3.24e-07, + "recline": 3.24e-07, + "rectifier": 3.24e-07, + "redfield": 3.24e-07, + "rediscovery": 3.24e-07, + "rehash": 3.24e-07, + "reinterpretation": 3.24e-07, + "rejuvenating": 3.24e-07, + "replenishing": 3.24e-07, + "residuals": 3.24e-07, + "reticulum": 3.24e-07, + "retook": 3.24e-07, + "rif": 3.24e-07, + "righting": 3.24e-07, + "rikers": 7.08e-08, + "riotous": 3.24e-07, + "roasters": 3.24e-07, + "roca": 3.24e-07, + "rocketed": 3.24e-07, + "rolland": 3.24e-07, + "sabra": 3.24e-07, + "saddams": 3.24e-07, + "sambo": 3.24e-07, + "sangria": 3.24e-07, + "sano": 3.24e-07, + "scavenge": 3.24e-07, + "scg": 3.24e-07, + "schlegel": 3.24e-07, + "scowl": 3.24e-07, + "scribbles": 3.24e-07, + "seema": 3.24e-07, + "selden": 3.24e-07, + "selene": 3.24e-07, + "senescence": 3.24e-07, + "separable": 3.24e-07, + "sheared": 3.24e-07, + "shied": 3.24e-07, + "shortwave": 3.24e-07, + "shrubbery": 3.24e-07, + "shura": 3.24e-07, + "sila": 3.24e-07, + "siro": 3.24e-07, + "skidded": 3.24e-07, + "snc": 3.24e-07, + "snorts": 3.24e-07, + "softener": 3.24e-07, + "soledad": 3.24e-07, + "solidifies": 3.24e-07, + "sookie": 3.24e-07, + "sooty": 3.24e-07, + "spillover": 3.24e-07, + "spunky": 3.24e-07, + "squatted": 3.24e-07, + "squeaks": 3.24e-07, + "ssds": 3.24e-07, + "stagg": 3.24e-07, + "stanfords": 3.24e-07, + "statically": 3.24e-07, + "stephane": 3.24e-07, + "stingrays": 3.24e-07, + "stowaway": 3.24e-07, + "streeter": 3.24e-07, + "stretchers": 3.24e-07, + "strictures": 3.24e-07, + "stylised": 3.24e-07, + "sublimation": 3.24e-07, + "suboptimal": 3.24e-07, + "subsea": 3.24e-07, + "swa": 3.24e-07, + "swaraj": 3.24e-07, + "sweepers": 3.24e-07, + "swenson": 3.24e-07, + "switcher": 3.24e-07, + "sympathetically": 3.24e-07, + "tacking": 3.24e-07, + "tadpole": 3.24e-07, + "takei": 3.24e-07, + "tamir": 3.24e-07, + "tarred": 3.24e-07, + "tashkent": 3.24e-07, + "terns": 3.24e-07, + "terr": 3.24e-07, + "terran": 3.24e-07, + "tfs": 3.24e-07, + "theologically": 3.24e-07, + "timeslot": 3.24e-07, + "tirana": 3.24e-07, + "tiwari": 3.24e-07, + "tma": 3.24e-07, + "tobruk": 3.24e-07, + "tomar": 3.24e-07, + "tommie": 3.24e-07, + "transmembrane": 3.24e-07, + "travail": 3.24e-07, + "trophic": 3.24e-07, + "tsarist": 3.24e-07, + "tso": 3.24e-07, + "tubbs": 3.24e-07, + "tuckers": 6.92e-08, + "turpin": 3.24e-07, + "uke": 3.24e-07, + "unbuttoned": 3.24e-07, + "underlings": 3.24e-07, + "underperformed": 3.24e-07, + "uneasiness": 3.24e-07, + "unfailing": 3.24e-07, + "unfavorably": 3.24e-07, + "uniqlo": 3.24e-07, + "unknowing": 3.24e-07, + "unnerved": 3.24e-07, + "untie": 3.24e-07, + "untouchables": 3.24e-07, + "utilitarianism": 3.24e-07, + "vella": 3.24e-07, + "veneers": 3.24e-07, + "venter": 3.24e-07, + "ventilators": 3.24e-07, + "veronika": 3.24e-07, + "vetoes": 3.24e-07, + "volk": 3.24e-07, + "walkabout": 3.24e-07, + "wass": 3.24e-07, + "waterboarding": 3.24e-07, + "wbo": 3.24e-07, + "wearin": 3.24e-07, + "weaved": 3.24e-07, + "wellman": 3.24e-07, + "westwards": 3.24e-07, + "westworld": 3.24e-07, + "whitlam": 3.24e-07, + "windowsill": 3.24e-07, + "wining": 3.24e-07, + "wiry": 3.24e-07, + "wittenberg": 3.24e-07, + "wobbles": 3.24e-07, + "womanly": 3.24e-07, + "wrestles": 3.24e-07, + "xanadu": 3.24e-07, + "yancey": 3.24e-07, + "yano": 3.24e-07, + "yash": 3.24e-07, + "yeet": 3.24e-07, + "yhwh": 3.24e-07, + "zealot": 3.24e-07, + "zoologist": 3.24e-07, + "abattoir": 3.16e-07, + "abbess": 3.16e-07, + "abidjan": 3.16e-07, + "ableton": 3.16e-07, + "abp": 3.16e-07, + "accede": 3.16e-07, + "accrual": 3.16e-07, + "achiever": 3.16e-07, + "actuary": 3.16e-07, + "adagio": 3.16e-07, + "agostino": 3.16e-07, + "aircrew": 3.16e-07, + "airdrie": 3.16e-07, + "airmail": 3.16e-07, + "alchemical": 3.16e-07, + "aleutian": 3.16e-07, + "alexia": 3.16e-07, + "allegri": 3.16e-07, + "amputees": 3.16e-07, + "anaphylactic": 3.16e-07, + "anatomic": 3.16e-07, + "angering": 3.16e-07, + "angiogenesis": 3.16e-07, + "annunciation": 3.16e-07, + "aor": 3.16e-07, + "appl": 3.16e-07, + "apra": 3.16e-07, + "archon": 3.16e-07, + "arl": 3.16e-07, + "arrondissement": 3.16e-07, + "arthurian": 3.16e-07, + "articular": 3.16e-07, + "assemblys": 3.16e-07, + "asylums": 3.16e-07, + "avarice": 3.16e-07, + "avenida": 3.16e-07, + "averting": 3.16e-07, + "avicii": 3.16e-07, + "awsome": 3.16e-07, + "azkaban": 3.16e-07, + "badr": 3.16e-07, + "bajaj": 3.16e-07, + "ballantine": 3.16e-07, + "bannerman": 3.16e-07, + "barba": 3.16e-07, + "bares": 3.16e-07, + "barged": 3.16e-07, + "barony": 3.16e-07, + "barret": 3.16e-07, + "bashes": 3.16e-07, + "bata": 3.16e-07, + "bem": 3.16e-07, + "bernhardt": 3.16e-07, + "bhi": 3.16e-07, + "biding": 3.16e-07, + "bioscience": 3.16e-07, + "blackmore": 3.16e-07, + "blacksburg": 3.16e-07, + "blogpost": 3.16e-07, + "boastful": 3.16e-07, + "boatman": 3.16e-07, + "bogeyman": 3.16e-07, + "boney": 3.16e-07, + "boning": 3.16e-07, + "bonito": 3.16e-07, + "bork": 3.16e-07, + "botnet": 3.16e-07, + "bracketed": 3.16e-07, + "brads": 9.77e-08, + "braiding": 3.16e-07, + "brainerd": 3.16e-07, + "brazos": 3.16e-07, + "breslin": 3.16e-07, + "brien": 3.16e-07, + "brittney": 3.16e-07, + "brno": 3.16e-07, + "brokerages": 3.16e-07, + "bucked": 3.16e-07, + "bulking": 3.16e-07, + "bundestag": 3.16e-07, + "buttercream": 3.16e-07, + "butyl": 3.16e-07, + "canonization": 3.16e-07, + "capitulate": 3.16e-07, + "caramelized": 3.16e-07, + "carmody": 3.16e-07, + "cashless": 3.16e-07, + "catalunya": 3.16e-07, + "catskill": 3.16e-07, + "cavanagh": 3.16e-07, + "cbss": 3.16e-07, + "cbse": 3.16e-07, + "ccr": 3.16e-07, + "cdi": 3.16e-07, + "centerline": 3.16e-07, + "centurylink": 3.16e-07, + "charmaine": 3.16e-07, + "chars": 3.16e-07, + "chaudhary": 3.16e-07, + "chaudhry": 3.16e-07, + "chd": 3.16e-07, + "chianti": 3.16e-07, + "chicagoland": 3.16e-07, + "chickpea": 3.16e-07, + "chiropractors": 3.16e-07, + "chocolat": 3.16e-07, + "christiansen": 3.16e-07, + "chuan": 3.16e-07, + "chuckie": 3.16e-07, + "cim": 3.16e-07, + "cima": 3.16e-07, + "conchita": 3.16e-07, + "concordance": 3.16e-07, + "congresss": 3.16e-07, + "conwy": 3.16e-07, + "coot": 3.16e-07, + "cornstarch": 3.16e-07, + "crawfords": 5.25e-08, + "cruiserweight": 3.16e-07, + "dairies": 3.16e-07, + "dammed": 3.16e-07, + "daugherty": 3.16e-07, + "dayne": 3.16e-07, + "decimate": 3.16e-07, + "decrying": 3.16e-07, + "deform": 3.16e-07, + "defrost": 3.16e-07, + "dele": 3.16e-07, + "delegating": 3.16e-07, + "deltas": 2.09e-07, + "dench": 3.16e-07, + "denman": 3.16e-07, + "deptford": 3.16e-07, + "derwent": 3.16e-07, + "detentions": 3.16e-07, + "dewan": 3.16e-07, + "dexters": 3.16e-07, + "dfa": 3.16e-07, + "disbarred": 3.16e-07, + "disbursed": 3.16e-07, + "discipleship": 3.16e-07, + "discontinuity": 3.16e-07, + "disquiet": 3.16e-07, + "doberman": 3.16e-07, + "domesday": 3.16e-07, + "doodling": 3.16e-07, + "doofus": 3.16e-07, + "dotty": 3.16e-07, + "downbeat": 3.16e-07, + "downforce": 3.16e-07, + "drillers": 3.16e-07, + "droit": 3.16e-07, + "droopy": 3.16e-07, + "drysdale": 3.16e-07, + "duchamp": 3.16e-07, + "dumpty": 3.16e-07, + "dunce": 3.16e-07, + "dva": 3.16e-07, + "eamonn": 3.16e-07, + "eba": 3.16e-07, + "effigies": 3.16e-07, + "egbert": 3.16e-07, + "ehud": 3.16e-07, + "ellens": 3.16e-07, + "elmhurst": 3.16e-07, + "elope": 3.16e-07, + "elucidated": 3.16e-07, + "elvin": 3.16e-07, + "encamped": 3.16e-07, + "encampments": 3.16e-07, + "encloses": 3.16e-07, + "endearment": 3.16e-07, + "endzone": 3.16e-07, + "enhancers": 3.16e-07, + "enthroned": 3.16e-07, + "equalized": 3.16e-07, + "errata": 3.16e-07, + "essa": 3.16e-07, + "estrella": 3.16e-07, + "evander": 3.16e-07, + "ewes": 3.16e-07, + "exacerbates": 3.16e-07, + "expository": 3.16e-07, + "farragut": 3.16e-07, + "farrington": 3.16e-07, + "fatten": 3.16e-07, + "fba": 3.16e-07, + "feliciano": 3.16e-07, + "fernand": 3.16e-07, + "filipe": 3.16e-07, + "fitzsimmons": 3.16e-07, + "fizzle": 3.16e-07, + "flac": 3.16e-07, + "flemington": 3.16e-07, + "fletchers": 5.01e-08, + "fon": 3.16e-07, + "footman": 3.16e-07, + "freeview": 3.16e-07, + "fsm": 3.16e-07, + "fulfils": 3.16e-07, + "furthers": 3.16e-07, + "gamal": 3.16e-07, + "ganymede": 3.16e-07, + "garcinia": 3.16e-07, + "geomagnetic": 3.16e-07, + "gerontology": 3.16e-07, + "getup": 3.16e-07, + "gisborne": 3.16e-07, + "glaciation": 3.16e-07, + "glutamine": 3.16e-07, + "gomorrah": 3.16e-07, + "goofball": 3.16e-07, + "gorton": 3.16e-07, + "gracing": 3.16e-07, + "gravest": 3.16e-07, + "gronkowski": 3.16e-07, + "gustafson": 3.16e-07, + "hackensack": 3.16e-07, + "hairstylist": 3.16e-07, + "hajime": 3.16e-07, + "haldeman": 3.16e-07, + "hammonds": 1e-07, + "haney": 3.16e-07, + "happ": 3.16e-07, + "hardiness": 3.16e-07, + "hariri": 3.16e-07, + "harping": 3.16e-07, + "harpy": 3.16e-07, + "hashimoto": 3.16e-07, + "havelock": 3.16e-07, + "hazara": 3.16e-07, + "heckling": 3.16e-07, + "helipad": 3.16e-07, + "helmer": 3.16e-07, + "helter": 3.16e-07, + "hemorrhaging": 3.16e-07, + "herrings": 3.16e-07, + "hie": 3.16e-07, + "hight": 3.16e-07, + "hippocrates": 3.16e-07, + "hissed": 3.16e-07, + "hite": 3.16e-07, + "hoarded": 3.16e-07, + "hodson": 3.16e-07, + "homeric": 3.16e-07, + "horseracing": 3.16e-07, + "hortense": 3.16e-07, + "hps": 2.57e-07, + "hulking": 3.16e-07, + "humanoids": 3.16e-07, + "hundley": 3.16e-07, + "hypnotist": 3.16e-07, + "hypothesize": 3.16e-07, + "ibaka": 3.16e-07, + "ifr": 3.16e-07, + "iheartradio": 3.16e-07, + "iloilo": 3.16e-07, + "imbeciles": 3.16e-07, + "incites": 3.16e-07, + "infamously": 3.16e-07, + "infringes": 3.16e-07, + "infusing": 3.16e-07, + "intellectualism": 3.16e-07, + "interferometer": 3.16e-07, + "inverting": 3.16e-07, + "invictus": 3.16e-07, + "ipso": 3.16e-07, + "ipsos": 3.16e-07, + "irreparably": 3.16e-07, + "islamophobic": 3.16e-07, + "isotropic": 3.16e-07, + "itches": 3.16e-07, + "iti": 3.16e-07, + "jacquard": 3.16e-07, + "jaitley": 3.16e-07, + "jaunty": 3.16e-07, + "jayhawks": 3.16e-07, + "jenkinson": 3.16e-07, + "jobseekers": 3.16e-07, + "jonesboro": 3.16e-07, + "jpy": 3.16e-07, + "jughead": 3.16e-07, + "julianna": 3.16e-07, + "jutland": 3.16e-07, + "kamil": 3.16e-07, + "karna": 3.16e-07, + "karo": 3.16e-07, + "kayleigh": 3.16e-07, + "khakis": 3.16e-07, + "kiribati": 3.16e-07, + "klitschko": 3.16e-07, + "knave": 3.16e-07, + "kneecap": 3.16e-07, + "knowlton": 3.16e-07, + "knudsen": 3.16e-07, + "kogan": 3.16e-07, + "kurosawa": 3.16e-07, + "kurtis": 3.16e-07, + "lactating": 3.16e-07, + "lakefront": 3.16e-07, + "laminar": 3.16e-07, + "lamy": 3.16e-07, + "lanny": 3.16e-07, + "lans": 5.62e-08, + "lauds": 3.16e-07, + "leda": 3.16e-07, + "legalisation": 3.16e-07, + "lemmings": 3.16e-07, + "lemmon": 3.16e-07, + "lenten": 3.16e-07, + "leonora": 3.16e-07, + "litigants": 3.16e-07, + "logbook": 3.16e-07, + "logistically": 3.16e-07, + "lolz": 3.16e-07, + "loneliest": 3.16e-07, + "longford": 3.16e-07, + "looper": 3.16e-07, + "lsi": 3.16e-07, + "lullabies": 3.16e-07, + "lumumba": 3.16e-07, + "maf": 3.16e-07, + "magruder": 3.16e-07, + "malick": 3.16e-07, + "malkovich": 3.16e-07, + "malmo": 3.16e-07, + "mange": 3.16e-07, + "mansell": 3.16e-07, + "marca": 3.16e-07, + "marika": 3.16e-07, + "mariposa": 3.16e-07, + "marksmen": 3.16e-07, + "mashing": 3.16e-07, + "matey": 3.16e-07, + "mathematica": 3.16e-07, + "mato": 3.16e-07, + "mch": 3.16e-07, + "merrimack": 3.16e-07, + "methodism": 3.16e-07, + "metrology": 3.16e-07, + "mirna": 3.16e-07, + "miscalculated": 3.16e-07, + "miseries": 3.16e-07, + "mitcham": 3.16e-07, + "mobo": 3.16e-07, + "modding": 3.16e-07, + "moller": 3.16e-07, + "molluscs": 3.16e-07, + "mond": 3.16e-07, + "monopolistic": 3.16e-07, + "monotheism": 3.16e-07, + "monti": 3.16e-07, + "moonlighting": 3.16e-07, + "moravia": 3.16e-07, + "morelli": 3.16e-07, + "morphologically": 3.16e-07, + "moshi": 3.16e-07, + "motorboat": 3.16e-07, + "motte": 3.16e-07, + "mtl": 3.16e-07, + "multitask": 3.16e-07, + "mummys": 3.16e-07, + "murfreesboro": 3.16e-07, + "murs": 3.16e-07, + "nanna": 3.16e-07, + "nanoparticle": 3.16e-07, + "narcolepsy": 3.16e-07, + "nasl": 3.16e-07, + "netherland": 3.16e-07, + "neverending": 3.16e-07, + "nfa": 3.16e-07, + "ngs": 3.16e-07, + "niamh": 3.16e-07, + "niantic": 3.16e-07, + "nihilistic": 3.16e-07, + "niven": 3.16e-07, + "noll": 3.16e-07, + "nollywood": 3.16e-07, + "northstar": 3.16e-07, + "nostradamus": 3.16e-07, + "nowitzki": 3.16e-07, + "ntr": 3.16e-07, + "numero": 3.16e-07, + "numismatic": 3.16e-07, + "nunnery": 3.16e-07, + "offroad": 3.16e-07, + "omnia": 3.16e-07, + "oregonian": 3.16e-07, + "originators": 3.16e-07, + "ostensible": 3.16e-07, + "overactive": 3.16e-07, + "pareto": 3.16e-07, + "pathologies": 3.16e-07, + "paves": 3.16e-07, + "pbl": 3.16e-07, + "pde": 3.16e-07, + "peculiarity": 3.16e-07, + "pedaling": 3.16e-07, + "peridot": 3.16e-07, + "petrus": 3.16e-07, + "phaser": 3.16e-07, + "phylogeny": 3.16e-07, + "physic": 3.16e-07, + "pica": 3.16e-07, + "pickin": 3.16e-07, + "pickpocket": 3.16e-07, + "pineal": 3.16e-07, + "planking": 3.16e-07, + "playmaking": 3.16e-07, + "poirier": 3.16e-07, + "poopy": 3.16e-07, + "popovich": 3.16e-07, + "postmenopausal": 3.16e-07, + "poutine": 3.16e-07, + "praeger": 3.16e-07, + "preet": 3.16e-07, + "preform": 3.16e-07, + "prelim": 3.16e-07, + "prenup": 3.16e-07, + "preys": 3.16e-07, + "prnewswire": 3.16e-07, + "prongs": 3.16e-07, + "pronunciations": 3.16e-07, + "prospering": 3.16e-07, + "ptt": 3.16e-07, + "puta": 3.16e-07, + "qd": 3.16e-07, + "quarto": 3.16e-07, + "questioner": 3.16e-07, + "quintessentially": 3.16e-07, + "quora": 3.16e-07, + "qwerty": 3.16e-07, + "radiometric": 3.16e-07, + "rasta": 3.16e-07, + "raved": 3.16e-07, + "raynor": 3.16e-07, + "rdf": 3.16e-07, + "reconfiguration": 3.16e-07, + "reforestation": 3.16e-07, + "refunding": 3.16e-07, + "regretfully": 3.16e-07, + "reinstating": 3.16e-07, + "rejoices": 3.16e-07, + "relishing": 3.16e-07, + "remarriage": 3.16e-07, + "renaud": 3.16e-07, + "renshaw": 3.16e-07, + "retrieves": 3.16e-07, + "returner": 3.16e-07, + "revelry": 3.16e-07, + "riba": 3.16e-07, + "rime": 3.16e-07, + "rotisserie": 3.16e-07, + "rrna": 3.16e-07, + "sakai": 3.16e-07, + "samira": 3.16e-07, + "sanded": 3.16e-07, + "sapp": 3.16e-07, + "saras": 5.37e-08, + "sashes": 3.16e-07, + "saxton": 3.16e-07, + "sayer": 3.16e-07, + "scapegoats": 3.16e-07, + "sceptic": 3.16e-07, + "scrim": 3.16e-07, + "seahorse": 3.16e-07, + "sebring": 3.16e-07, + "seductively": 3.16e-07, + "sefton": 3.16e-07, + "selim": 3.16e-07, + "seraphim": 3.16e-07, + "sethi": 3.16e-07, + "shafer": 3.16e-07, + "shai": 3.16e-07, + "shampoos": 3.16e-07, + "shar": 3.16e-07, + "sharman": 3.16e-07, + "sharons": 3.16e-07, + "sheepskin": 3.16e-07, + "sherbet": 3.16e-07, + "shimizu": 3.16e-07, + "shoreham": 3.16e-07, + "sickens": 3.16e-07, + "siddhartha": 3.16e-07, + "sidekicks": 3.16e-07, + "simeone": 3.16e-07, + "simpleton": 3.16e-07, + "sissoko": 3.16e-07, + "skeeter": 3.16e-07, + "skelter": 3.16e-07, + "skilfully": 3.16e-07, + "skippers": 1.07e-07, + "skt": 3.16e-07, + "skylights": 3.16e-07, + "slovakian": 3.16e-07, + "smallwood": 3.16e-07, + "smirnoff": 3.16e-07, + "sncf": 3.16e-07, + "snobbish": 3.16e-07, + "snowdonia": 3.16e-07, + "soapbox": 3.16e-07, + "spearheading": 3.16e-07, + "spindles": 3.16e-07, + "spooning": 3.16e-07, + "squeals": 3.16e-07, + "ssg": 3.16e-07, + "standardisation": 3.16e-07, + "stanfield": 3.16e-07, + "stanislas": 3.16e-07, + "starches": 3.16e-07, + "starships": 3.16e-07, + "stedman": 3.16e-07, + "storks": 3.16e-07, + "strider": 3.16e-07, + "stutters": 3.16e-07, + "supplication": 3.16e-07, + "swayze": 3.16e-07, + "sylvania": 3.16e-07, + "symbolises": 3.16e-07, + "tabulated": 3.16e-07, + "tallying": 3.16e-07, + "taxon": 3.16e-07, + "tbm": 3.16e-07, + "tdd": 3.16e-07, + "teat": 3.16e-07, + "techie": 3.16e-07, + "teleprompter": 3.16e-07, + "tere": 3.16e-07, + "testa": 3.16e-07, + "tevez": 3.16e-07, + "textural": 3.16e-07, + "tgf": 3.16e-07, + "thunderclap": 3.16e-07, + "tiana": 3.16e-07, + "tikrit": 3.16e-07, + "toki": 3.16e-07, + "trailblazers": 3.16e-07, + "transiting": 3.16e-07, + "transpires": 3.16e-07, + "transponders": 3.16e-07, + "trespasses": 3.16e-07, + "trop": 3.16e-07, + "trowbridge": 3.16e-07, + "trundle": 3.16e-07, + "tsonga": 3.16e-07, + "tumbles": 3.16e-07, + "twee": 3.16e-07, + "tycho": 3.16e-07, + "tyndall": 3.16e-07, + "ucsd": 3.16e-07, + "uncoordinated": 3.16e-07, + "underwhelmed": 3.16e-07, + "unrwa": 3.16e-07, + "unstuck": 3.16e-07, + "unsuited": 3.16e-07, + "vapid": 3.16e-07, + "visser": 3.16e-07, + "vitale": 3.16e-07, + "vivre": 3.16e-07, + "wahl": 3.16e-07, + "wallflower": 3.16e-07, + "walts": 3.16e-07, + "wani": 3.16e-07, + "watercolours": 3.16e-07, + "watersports": 3.16e-07, + "wec": 3.16e-07, + "whi": 3.16e-07, + "whitewashing": 3.16e-07, + "wingfield": 3.16e-07, + "wishbone": 3.16e-07, + "wistfully": 3.16e-07, + "worshipful": 3.16e-07, + "wows": 6.03e-08, + "xhaka": 3.16e-07, + "xxiv": 3.16e-07, + "yeasts": 3.16e-07, + "yn": 3.16e-07, + "yunus": 3.16e-07, + "zeng": 3.16e-07, + "abramson": 3.09e-07, + "acca": 3.09e-07, + "adt": 3.09e-07, + "aeration": 3.09e-07, + "aftershocks": 3.09e-07, + "agassi": 3.09e-07, + "agassiz": 3.09e-07, + "aip": 3.09e-07, + "akita": 3.09e-07, + "akon": 3.09e-07, + "allin": 3.09e-07, + "aloysius": 3.09e-07, + "altair": 3.09e-07, + "anbar": 3.09e-07, + "anglian": 3.09e-07, + "annoyances": 3.09e-07, + "annul": 3.09e-07, + "antiaircraft": 3.09e-07, + "apg": 3.09e-07, + "aphorism": 3.09e-07, + "aplenty": 3.09e-07, + "ararat": 3.09e-07, + "archeologists": 3.09e-07, + "asami": 3.09e-07, + "aspartame": 3.09e-07, + "assimilating": 3.09e-07, + "attractively": 3.09e-07, + "auch": 3.09e-07, + "austens": 3.09e-07, + "austral": 3.09e-07, + "autobahn": 3.09e-07, + "aviary": 3.09e-07, + "baddie": 3.09e-07, + "ballerinas": 3.09e-07, + "bandleader": 3.09e-07, + "banknote": 3.09e-07, + "banshees": 3.09e-07, + "bcl": 3.09e-07, + "beachside": 3.09e-07, + "beauvoir": 3.09e-07, + "belittled": 3.09e-07, + "belton": 3.09e-07, + "benediction": 3.09e-07, + "betrothal": 3.09e-07, + "bfg": 3.09e-07, + "bhaskar": 3.09e-07, + "bijou": 3.09e-07, + "biota": 3.09e-07, + "biryani": 3.09e-07, + "boatload": 3.09e-07, + "bodleian": 3.09e-07, + "bodysuit": 3.09e-07, + "bolero": 3.09e-07, + "bolin": 3.09e-07, + "botw": 3.09e-07, + "bourbons": 3.09e-07, + "brasserie": 3.09e-07, + "breastplate": 3.09e-07, + "breathtakingly": 3.09e-07, + "briana": 3.09e-07, + "brooches": 3.09e-07, + "buch": 3.09e-07, + "budgie": 3.09e-07, + "bul": 3.09e-07, + "burris": 3.09e-07, + "buzzwords": 3.09e-07, + "cadavers": 3.09e-07, + "calabasas": 3.09e-07, + "canna": 3.09e-07, + "capsicum": 3.09e-07, + "carding": 3.09e-07, + "cardiopulmonary": 3.09e-07, + "casuals": 3.09e-07, + "cayuga": 3.09e-07, + "cfpb": 3.09e-07, + "chaco": 3.09e-07, + "chads": 9.55e-08, + "chaffetz": 3.09e-07, + "chagall": 3.09e-07, + "chantelle": 3.09e-07, + "chantry": 3.09e-07, + "chauvinism": 3.09e-07, + "cheol": 3.09e-07, + "cherbourg": 3.09e-07, + "chessboard": 3.09e-07, + "chilis": 1.55e-07, + "chiltern": 3.09e-07, + "chorley": 3.09e-07, + "christophers": 5.5e-08, + "cicada": 3.09e-07, + "climes": 3.09e-07, + "cny": 3.09e-07, + "cobol": 3.09e-07, + "codys": 3.09e-07, + "colemans": 3.09e-07, + "collett": 3.09e-07, + "collude": 3.09e-07, + "comparator": 3.09e-07, + "compasses": 3.09e-07, + "conductance": 3.09e-07, + "configurable": 3.09e-07, + "conflated": 3.09e-07, + "conjectured": 3.09e-07, + "contessa": 3.09e-07, + "cookout": 3.09e-07, + "copywriting": 3.09e-07, + "corliss": 3.09e-07, + "cornerstones": 3.09e-07, + "coterie": 3.09e-07, + "councilwoman": 3.09e-07, + "coverages": 3.09e-07, + "coves": 3.09e-07, + "crazily": 3.09e-07, + "creationist": 3.09e-07, + "cress": 3.09e-07, + "cron": 3.09e-07, + "croutons": 3.09e-07, + "cruze": 3.09e-07, + "csis": 3.09e-07, + "cultivators": 3.09e-07, + "cupped": 3.09e-07, + "cuties": 3.09e-07, + "cvc": 3.09e-07, + "damask": 3.09e-07, + "damme": 3.09e-07, + "daniella": 3.09e-07, + "daresay": 3.09e-07, + "deceiver": 3.09e-07, + "deceptions": 3.09e-07, + "defections": 3.09e-07, + "deliberated": 3.09e-07, + "delimited": 3.09e-07, + "delish": 3.09e-07, + "delray": 3.09e-07, + "demonized": 3.09e-07, + "dere": 3.09e-07, + "desdemona": 3.09e-07, + "destin": 3.09e-07, + "devours": 3.09e-07, + "diorama": 3.09e-07, + "diptera": 3.09e-07, + "disbanding": 3.09e-07, + "discolored": 3.09e-07, + "discontented": 3.09e-07, + "disenfranchisement": 3.09e-07, + "disorienting": 3.09e-07, + "dolomites": 3.09e-07, + "dramatics": 3.09e-07, + "drumsticks": 3.09e-07, + "dunaway": 3.09e-07, + "dunphy": 3.09e-07, + "eap": 3.09e-07, + "earphone": 3.09e-07, + "eastleigh": 3.09e-07, + "edgbaston": 3.09e-07, + "egged": 3.09e-07, + "eighths": 3.09e-07, + "embarkation": 3.09e-07, + "emts": 5.01e-08, + "ena": 3.09e-07, + "encroach": 3.09e-07, + "eni": 3.09e-07, + "epidemiologist": 3.09e-07, + "erebus": 3.09e-07, + "eschewed": 3.09e-07, + "esper": 3.09e-07, + "estuarine": 3.09e-07, + "eugen": 3.09e-07, + "evaluator": 3.09e-07, + "exempts": 3.09e-07, + "expeditiously": 3.09e-07, + "expositions": 3.09e-07, + "expound": 3.09e-07, + "fashionably": 3.09e-07, + "fathoms": 3.09e-07, + "feathery": 3.09e-07, + "feedings": 3.09e-07, + "feelgood": 3.09e-07, + "fellatio": 3.09e-07, + "fff": 3.09e-07, + "fft": 3.09e-07, + "fifo": 3.09e-07, + "fitchburg": 3.09e-07, + "fitzgeralds": 5.5e-08, + "fitzwilliam": 3.09e-07, + "fizzled": 3.09e-07, + "flapper": 3.09e-07, + "flay": 3.09e-07, + "flintstones": 3.09e-07, + "floodlights": 3.09e-07, + "florets": 3.09e-07, + "flyby": 3.09e-07, + "foibles": 3.09e-07, + "fonseca": 3.09e-07, + "fortis": 3.09e-07, + "foundries": 3.09e-07, + "fraudster": 3.09e-07, + "frazzled": 3.09e-07, + "fren": 3.09e-07, + "friendless": 3.09e-07, + "friendzone": 3.09e-07, + "frolicking": 3.09e-07, + "frothing": 3.09e-07, + "furtive": 3.09e-07, + "galerie": 3.09e-07, + "galle": 3.09e-07, + "gauged": 3.09e-07, + "gaurav": 3.09e-07, + "geckos": 3.09e-07, + "genealogies": 3.09e-07, + "geneticists": 3.09e-07, + "gennaro": 3.09e-07, + "geologically": 3.09e-07, + "ghulam": 3.09e-07, + "gimbal": 3.09e-07, + "gona": 3.09e-07, + "gosford": 3.09e-07, + "grandfathered": 3.09e-07, + "grc": 3.09e-07, + "greggs": 9.33e-08, + "gunderson": 3.09e-07, + "gunnison": 3.09e-07, + "guppy": 3.09e-07, + "guyanese": 3.09e-07, + "guzzling": 3.09e-07, + "gynaecology": 3.09e-07, + "hadfield": 3.09e-07, + "hammett": 3.09e-07, + "handstand": 3.09e-07, + "harambe": 3.09e-07, + "hardaway": 3.09e-07, + "hawkesbury": 3.09e-07, + "haydon": 3.09e-07, + "hca": 3.09e-07, + "heracles": 3.09e-07, + "heraldry": 3.09e-07, + "heresies": 3.09e-07, + "hermeneutics": 3.09e-07, + "hersheys": 3.09e-07, + "hittite": 3.09e-07, + "holst": 3.09e-07, + "homesteads": 3.09e-07, + "hori": 3.09e-07, + "horseshoes": 3.09e-07, + "howitzer": 3.09e-07, + "hudgens": 3.09e-07, + "hugger": 3.09e-07, + "humvee": 3.09e-07, + "hungrier": 3.09e-07, + "hyperplasia": 3.09e-07, + "hypertensive": 3.09e-07, + "iaf": 3.09e-07, + "iguanas": 3.09e-07, + "impedes": 3.09e-07, + "imperceptible": 3.09e-07, + "impregnate": 3.09e-07, + "indiscretions": 3.09e-07, + "industrially": 3.09e-07, + "innately": 3.09e-07, + "intuit": 3.09e-07, + "inu": 3.09e-07, + "investiture": 3.09e-07, + "isfahan": 3.09e-07, + "ishii": 3.09e-07, + "itn": 3.09e-07, + "ivanhoe": 3.09e-07, + "izumi": 3.09e-07, + "jackies": 3.09e-07, + "japs": 3.09e-07, + "jes": 3.09e-07, + "jettisoned": 3.09e-07, + "joi": 3.09e-07, + "jrs": 1.29e-07, + "julies": 3.09e-07, + "juncker": 3.09e-07, + "kailash": 3.09e-07, + "kanu": 3.09e-07, + "kaspersky": 3.09e-07, + "katowice": 3.09e-07, + "kellerman": 3.09e-07, + "kendo": 3.09e-07, + "kenshin": 3.09e-07, + "kha": 3.09e-07, + "kiffin": 3.09e-07, + "kirbys": 3.09e-07, + "kirkuk": 3.09e-07, + "knockoff": 3.09e-07, + "kotor": 3.09e-07, + "kristoff": 3.09e-07, + "landmine": 3.09e-07, + "lazaro": 3.09e-07, + "lefebvre": 3.09e-07, + "lefevre": 3.09e-07, + "legitimized": 3.09e-07, + "lenticular": 3.09e-07, + "leven": 3.09e-07, + "leverages": 3.09e-07, + "lexa": 3.09e-07, + "libtards": 3.09e-07, + "lins": 1.23e-07, + "lippincott": 3.09e-07, + "liveable": 3.09e-07, + "lodz": 3.09e-07, + "lollapalooza": 3.09e-07, + "longley": 3.09e-07, + "lowlife": 3.09e-07, + "lra": 3.09e-07, + "ludo": 3.09e-07, + "lusts": 3.09e-07, + "machetes": 3.09e-07, + "machismo": 3.09e-07, + "mahabharata": 3.09e-07, + "malformations": 3.09e-07, + "mammogram": 3.09e-07, + "manaus": 3.09e-07, + "mankato": 3.09e-07, + "marky": 3.09e-07, + "martinsville": 3.09e-07, + "masterplan": 3.09e-07, + "materialise": 3.09e-07, + "maxie": 3.09e-07, + "mccloskey": 3.09e-07, + "mccrory": 3.09e-07, + "mccutcheon": 3.09e-07, + "mcevoy": 3.09e-07, + "mclellan": 3.09e-07, + "meagher": 3.09e-07, + "medico": 3.09e-07, + "medulla": 3.09e-07, + "meerkat": 3.09e-07, + "mesenchymal": 3.09e-07, + "mesopotamian": 3.09e-07, + "metatarsal": 3.09e-07, + "mhm": 3.09e-07, + "microstructure": 3.09e-07, + "mikado": 3.09e-07, + "millen": 3.09e-07, + "mindlessly": 3.09e-07, + "mineralization": 3.09e-07, + "minuteman": 3.09e-07, + "minx": 3.09e-07, + "mips": 3.09e-07, + "misrepresentations": 3.09e-07, + "mistreat": 3.09e-07, + "moes": 7.76e-08, + "mongers": 3.09e-07, + "monroes": 3.09e-07, + "morehead": 3.09e-07, + "mosfet": 3.09e-07, + "mounties": 3.09e-07, + "mpp": 3.09e-07, + "muammar": 3.09e-07, + "mullahs": 3.09e-07, + "mullin": 3.09e-07, + "mycobacterium": 3.09e-07, + "mythologies": 3.09e-07, + "nars": 3.09e-07, + "nebuchadnezzar": 3.09e-07, + "nebulae": 3.09e-07, + "neigh": 3.09e-07, + "nessa": 3.09e-07, + "neuroimaging": 3.09e-07, + "neurologists": 3.09e-07, + "nicodemus": 3.09e-07, + "nikko": 3.09e-07, + "nimh": 3.09e-07, + "nimmo": 3.09e-07, + "noisily": 3.09e-07, + "nprs": 3.09e-07, + "nutting": 3.09e-07, + "oneills": 3.09e-07, + "obliges": 3.09e-07, + "odile": 3.09e-07, + "odours": 3.09e-07, + "ogres": 3.09e-07, + "ogun": 3.09e-07, + "ohhhhh": 3.09e-07, + "oke": 3.09e-07, + "ood": 3.09e-07, + "opines": 3.09e-07, + "oriel": 3.09e-07, + "ork": 3.09e-07, + "osmotic": 3.09e-07, + "ouse": 3.09e-07, + "outgunned": 3.09e-07, + "outlays": 3.09e-07, + "overburdened": 3.09e-07, + "overcharge": 3.09e-07, + "overhauls": 3.09e-07, + "overstatement": 3.09e-07, + "ovo": 3.09e-07, + "oxycontin": 3.09e-07, + "pacified": 3.09e-07, + "pagano": 3.09e-07, + "paki": 3.09e-07, + "palacio": 3.09e-07, + "papadopoulos": 3.09e-07, + "paragliding": 3.09e-07, + "paramore": 3.09e-07, + "pastes": 3.09e-07, + "pasteurized": 3.09e-07, + "pasties": 3.09e-07, + "paulinho": 3.09e-07, + "pekka": 3.09e-07, + "perrier": 3.09e-07, + "perturbations": 3.09e-07, + "phoenicians": 3.09e-07, + "pimlico": 3.09e-07, + "pinhole": 3.09e-07, + "pinnacles": 3.09e-07, + "pinpointed": 3.09e-07, + "pires": 3.09e-07, + "pitbulls": 6.17e-08, + "pitchforks": 3.09e-07, + "pogroms": 3.09e-07, + "polemical": 3.09e-07, + "polymorphisms": 3.09e-07, + "popularised": 3.09e-07, + "powerplay": 3.09e-07, + "predestined": 3.09e-07, + "protrude": 3.09e-07, + "prp": 3.09e-07, + "prue": 3.09e-07, + "psychopathy": 3.09e-07, + "puc": 3.09e-07, + "puente": 3.09e-07, + "quarried": 3.09e-07, + "quills": 3.09e-07, + "radek": 3.09e-07, + "radially": 3.09e-07, + "raith": 3.09e-07, + "ramseys": 3.09e-07, + "rattlesnakes": 3.09e-07, + "ravaging": 3.09e-07, + "realign": 3.09e-07, + "rebuilds": 3.09e-07, + "recanted": 3.09e-07, + "reiter": 3.09e-07, + "relapses": 3.09e-07, + "rending": 3.09e-07, + "repentant": 3.09e-07, + "reportable": 3.09e-07, + "reprogram": 3.09e-07, + "rescheduling": 3.09e-07, + "retracting": 3.09e-07, + "revisits": 3.09e-07, + "rigg": 3.09e-07, + "rile": 3.09e-07, + "ripened": 3.09e-07, + "riverboat": 3.09e-07, + "roadie": 3.09e-07, + "roaster": 3.09e-07, + "rodham": 3.09e-07, + "romper": 3.09e-07, + "roomie": 3.09e-07, + "rosanna": 3.09e-07, + "rupp": 3.09e-07, + "rushers": 3.09e-07, + "saar": 3.09e-07, + "sabin": 3.09e-07, + "safaris": 3.09e-07, + "sager": 3.09e-07, + "salutations": 3.09e-07, + "sangha": 3.09e-07, + "sanofi": 3.09e-07, + "sargon": 3.09e-07, + "satiety": 3.09e-07, + "scanlan": 3.09e-07, + "schroder": 3.09e-07, + "sculptured": 3.09e-07, + "seasonality": 3.09e-07, + "segmental": 3.09e-07, + "segura": 3.09e-07, + "semiotics": 3.09e-07, + "serfdom": 3.09e-07, + "shanes": 3.09e-07, + "sheepishly": 3.09e-07, + "shias": 3.09e-07, + "shipp": 3.09e-07, + "shoring": 3.09e-07, + "shuffles": 3.09e-07, + "shukla": 3.09e-07, + "sippy": 3.09e-07, + "sjws": 6.31e-08, + "skidding": 3.09e-07, + "slandering": 3.09e-07, + "smitty": 3.09e-07, + "smooch": 3.09e-07, + "snitches": 3.09e-07, + "sno": 3.09e-07, + "soares": 3.09e-07, + "sombra": 3.09e-07, + "sopa": 3.09e-07, + "southbank": 3.09e-07, + "spigot": 3.09e-07, + "sprightly": 3.09e-07, + "squandering": 3.09e-07, + "squids": 3.09e-07, + "stagnate": 3.09e-07, + "staines": 3.09e-07, + "stairways": 3.09e-07, + "stammer": 3.09e-07, + "starfire": 3.09e-07, + "stargazing": 3.09e-07, + "stavros": 3.09e-07, + "stencils": 3.09e-07, + "stiffen": 3.09e-07, + "stingers": 3.09e-07, + "stis": 3.09e-07, + "stockpiled": 3.09e-07, + "strasse": 3.09e-07, + "stupider": 3.09e-07, + "subjection": 3.09e-07, + "submachine": 3.09e-07, + "subtler": 3.09e-07, + "subwoofer": 3.09e-07, + "sulla": 3.09e-07, + "summarises": 3.09e-07, + "sunspots": 3.09e-07, + "superfood": 3.09e-07, + "supergroup": 3.09e-07, + "surg": 3.09e-07, + "suter": 3.09e-07, + "suzhou": 3.09e-07, + "swindled": 3.09e-07, + "symbolise": 3.09e-07, + "symmetrically": 3.09e-07, + "tahitian": 3.09e-07, + "tangents": 3.09e-07, + "taoism": 3.09e-07, + "tearfully": 3.09e-07, + "telegraphs": 6.46e-08, + "telemarketing": 3.09e-07, + "tempestuous": 3.09e-07, + "tempura": 3.09e-07, + "thanh": 3.09e-07, + "theophilus": 3.09e-07, + "thickets": 3.09e-07, + "timbered": 3.09e-07, + "tingly": 3.09e-07, + "tippy": 3.09e-07, + "tix": 3.09e-07, + "tomorrowland": 3.09e-07, + "touchpad": 3.09e-07, + "trajan": 3.09e-07, + "trapdoor": 3.09e-07, + "tricolor": 3.09e-07, + "triennial": 3.09e-07, + "tripling": 3.09e-07, + "trondheim": 3.09e-07, + "tuners": 3.09e-07, + "turvy": 3.09e-07, + "tus": 3.09e-07, + "udc": 3.09e-07, + "ummah": 3.09e-07, + "underhand": 3.09e-07, + "underpins": 3.09e-07, + "undifferentiated": 3.09e-07, + "undignified": 3.09e-07, + "unfeasible": 3.09e-07, + "unintelligent": 3.09e-07, + "unrecorded": 3.09e-07, + "urinals": 3.09e-07, + "utters": 3.09e-07, + "utv": 3.09e-07, + "velasco": 3.09e-07, + "vena": 3.09e-07, + "vladislav": 3.09e-07, + "vlc": 3.09e-07, + "voa": 3.09e-07, + "vomits": 3.09e-07, + "warblers": 3.09e-07, + "warthog": 3.09e-07, + "watercress": 3.09e-07, + "westland": 3.09e-07, + "whelp": 3.09e-07, + "wherewith": 3.09e-07, + "whitecaps": 3.09e-07, + "whitefield": 3.09e-07, + "whizz": 3.09e-07, + "wiggly": 3.09e-07, + "wooly": 3.09e-07, + "wuss": 3.09e-07, + "xlviii": 3.09e-07, + "yanukovych": 3.09e-07, + "yellowing": 3.09e-07, + "zan": 3.09e-07, + "zeroed": 3.09e-07, + "zod": 3.09e-07, + "abes": 3.02e-07, + "abhishek": 3.02e-07, + "abounding": 3.02e-07, + "abrahamic": 3.02e-07, + "acker": 3.02e-07, + "acquiesce": 3.02e-07, + "acyl": 3.02e-07, + "adcock": 3.02e-07, + "aditi": 3.02e-07, + "afghani": 3.02e-07, + "agricola": 3.02e-07, + "agustin": 3.02e-07, + "ails": 3.02e-07, + "aish": 3.02e-07, + "aishwarya": 3.02e-07, + "aks": 7.41e-08, + "alpert": 3.02e-07, + "alphabetic": 3.02e-07, + "altimeter": 3.02e-07, + "alumnae": 3.02e-07, + "amcs": 5.25e-08, + "ameer": 3.02e-07, + "ammar": 3.02e-07, + "amur": 3.02e-07, + "ananda": 3.02e-07, + "andrzej": 3.02e-07, + "animatronic": 3.02e-07, + "anisotropic": 3.02e-07, + "annandale": 3.02e-07, + "annenberg": 3.02e-07, + "anoint": 3.02e-07, + "antares": 3.02e-07, + "antihistamines": 3.02e-07, + "aot": 3.02e-07, + "apocrypha": 3.02e-07, + "apportionment": 3.02e-07, + "araki": 3.02e-07, + "aran": 3.02e-07, + "archivists": 3.02e-07, + "aristide": 3.02e-07, + "aronson": 3.02e-07, + "ashen": 3.02e-07, + "asn": 3.02e-07, + "atheistic": 3.02e-07, + "attlee": 3.02e-07, + "augur": 3.02e-07, + "authorizations": 3.02e-07, + "autocrat": 3.02e-07, + "ayahuasca": 3.02e-07, + "azeri": 3.02e-07, + "azusa": 3.02e-07, + "backlight": 3.02e-07, + "bakewell": 3.02e-07, + "balsa": 3.02e-07, + "barone": 3.02e-07, + "bartending": 3.02e-07, + "bayswater": 3.02e-07, + "beading": 3.02e-07, + "beady": 3.02e-07, + "beaverton": 3.02e-07, + "belknap": 3.02e-07, + "benders": 9.33e-08, + "berryman": 3.02e-07, + "besties": 3.02e-07, + "bestows": 3.02e-07, + "betas": 3.02e-07, + "betters": 3.02e-07, + "bibs": 3.02e-07, + "binh": 3.02e-07, + "blackbirds": 3.02e-07, + "blithe": 3.02e-07, + "blurt": 3.02e-07, + "bmj": 3.02e-07, + "boltzmann": 3.02e-07, + "bongs": 3.02e-07, + "borax": 3.02e-07, + "bourse": 3.02e-07, + "bq": 3.02e-07, + "braving": 3.02e-07, + "bricked": 3.02e-07, + "brooker": 3.02e-07, + "broussard": 3.02e-07, + "bruna": 3.02e-07, + "bruxelles": 3.02e-07, + "bushfire": 3.02e-07, + "bushman": 3.02e-07, + "buttock": 3.02e-07, + "camphor": 3.02e-07, + "canis": 3.02e-07, + "carman": 3.02e-07, + "carmela": 3.02e-07, + "carolines": 5.62e-08, + "cashflow": 3.02e-07, + "castel": 3.02e-07, + "cavemen": 3.02e-07, + "celestine": 3.02e-07, + "certainties": 3.02e-07, + "chainsaws": 3.02e-07, + "chickasaw": 3.02e-07, + "clancys": 3.02e-07, + "clattering": 3.02e-07, + "coherently": 3.02e-07, + "coitus": 3.02e-07, + "cokes": 1.07e-07, + "collectivism": 3.02e-07, + "columbo": 3.02e-07, + "conceptualization": 3.02e-07, + "confection": 3.02e-07, + "conformational": 3.02e-07, + "contrite": 3.02e-07, + "convenes": 3.02e-07, + "cordillera": 3.02e-07, + "cpe": 3.02e-07, + "crabbe": 3.02e-07, + "cradles": 3.02e-07, + "crawlers": 3.02e-07, + "criminalizing": 3.02e-07, + "crips": 3.02e-07, + "croce": 3.02e-07, + "crossroad": 3.02e-07, + "croton": 3.02e-07, + "cunard": 3.02e-07, + "curds": 3.02e-07, + "cya": 3.02e-07, + "daegu": 3.02e-07, + "dahmer": 3.02e-07, + "dampness": 3.02e-07, + "danton": 3.02e-07, + "decepticons": 3.02e-07, + "decoupling": 3.02e-07, + "defcon": 3.02e-07, + "defecting": 3.02e-07, + "delicatessen": 3.02e-07, + "delude": 3.02e-07, + "demagogue": 3.02e-07, + "dene": 3.02e-07, + "derailing": 3.02e-07, + "dicked": 3.02e-07, + "directness": 3.02e-07, + "disappointingly": 3.02e-07, + "disjoint": 3.02e-07, + "dislocations": 3.02e-07, + "distrusted": 3.02e-07, + "divorcee": 3.02e-07, + "diya": 3.02e-07, + "doma": 3.02e-07, + "doozy": 3.02e-07, + "dorfman": 3.02e-07, + "downgrades": 3.02e-07, + "dpm": 3.02e-07, + "dragnet": 3.02e-07, + "drawl": 3.02e-07, + "dreyfuss": 3.02e-07, + "dublins": 3.02e-07, + "duda": 3.02e-07, + "duffle": 3.02e-07, + "dupes": 3.02e-07, + "eason": 3.02e-07, + "easts": 1.23e-07, + "eavesdrop": 3.02e-07, + "eca": 3.02e-07, + "eccentricities": 3.02e-07, + "ecj": 3.02e-07, + "ecowas": 3.02e-07, + "eder": 3.02e-07, + "egocentric": 3.02e-07, + "electrolytic": 3.02e-07, + "elliotts": 3.02e-07, + "emirati": 3.02e-07, + "empiricism": 3.02e-07, + "emulators": 3.02e-07, + "enamoured": 3.02e-07, + "endeavoured": 3.02e-07, + "engulfing": 3.02e-07, + "enquired": 3.02e-07, + "enroute": 3.02e-07, + "envelop": 3.02e-07, + "equaling": 3.02e-07, + "escondido": 3.02e-07, + "espanyol": 3.02e-07, + "estella": 3.02e-07, + "evernote": 3.02e-07, + "evian": 3.02e-07, + "ewell": 3.02e-07, + "experimenter": 3.02e-07, + "extrapolating": 3.02e-07, + "eze": 3.02e-07, + "fantasized": 3.02e-07, + "fatboy": 3.02e-07, + "feathering": 3.02e-07, + "feckless": 3.02e-07, + "fela": 3.02e-07, + "fellowes": 3.02e-07, + "ferrero": 3.02e-07, + "fetches": 3.02e-07, + "fios": 3.02e-07, + "flan": 3.02e-07, + "flinching": 3.02e-07, + "fmc": 3.02e-07, + "fnb": 3.02e-07, + "followings": 3.02e-07, + "forbearance": 3.02e-07, + "fournette": 3.02e-07, + "freebsd": 3.02e-07, + "frontend": 3.02e-07, + "funko": 3.02e-07, + "gabba": 3.02e-07, + "gamification": 3.02e-07, + "gandy": 3.02e-07, + "gardners": 5.37e-08, + "gato": 3.02e-07, + "geochemical": 3.02e-07, + "geochemistry": 3.02e-07, + "geometrically": 3.02e-07, + "gfc": 3.02e-07, + "ghostwriter": 3.02e-07, + "gladness": 3.02e-07, + "glares": 3.02e-07, + "glc": 3.02e-07, + "glob": 3.02e-07, + "gormley": 3.02e-07, + "grandview": 3.02e-07, + "grattan": 3.02e-07, + "gravestones": 3.02e-07, + "greenes": 3.02e-07, + "gretna": 3.02e-07, + "grubs": 1.2e-08, + "grumbled": 3.02e-07, + "grylls": 3.02e-07, + "guidebooks": 3.02e-07, + "gumtree": 3.02e-07, + "gundy": 3.02e-07, + "gwangju": 3.02e-07, + "haag": 3.02e-07, + "haka": 3.02e-07, + "halford": 3.02e-07, + "havel": 3.02e-07, + "haverford": 3.02e-07, + "hayworth": 3.02e-07, + "hazen": 3.02e-07, + "headhunter": 3.02e-07, + "heer": 3.02e-07, + "hematite": 3.02e-07, + "herdsmen": 3.02e-07, + "heritable": 3.02e-07, + "hermaphrodite": 3.02e-07, + "heterosexuals": 3.02e-07, + "hfc": 3.02e-07, + "hine": 3.02e-07, + "hollie": 3.02e-07, + "homerun": 3.02e-07, + "hondo": 3.02e-07, + "hounslow": 3.02e-07, + "houseguests": 3.02e-07, + "howled": 3.02e-07, + "hums": 3.02e-07, + "hussars": 3.02e-07, + "hypodermic": 3.02e-07, + "idleness": 3.02e-07, + "idolize": 3.02e-07, + "idp": 3.02e-07, + "iiis": 1.05e-07, + "ilford": 3.02e-07, + "immunized": 3.02e-07, + "impeaching": 3.02e-07, + "incalculable": 3.02e-07, + "indemnification": 3.02e-07, + "infinitum": 3.02e-07, + "infuriates": 3.02e-07, + "insp": 3.02e-07, + "interwar": 3.02e-07, + "intruded": 3.02e-07, + "ipos": 3.02e-07, + "isolde": 3.02e-07, + "isomorphic": 3.02e-07, + "isopropyl": 3.02e-07, + "jagr": 3.02e-07, + "jeet": 3.02e-07, + "jetting": 3.02e-07, + "jewett": 3.02e-07, + "jolted": 3.02e-07, + "joules": 3.02e-07, + "jumpsuits": 3.02e-07, + "junes": 3.02e-07, + "juridical": 3.02e-07, + "kah": 3.02e-07, + "kahlo": 3.02e-07, + "kalam": 3.02e-07, + "katja": 3.02e-07, + "kek": 3.02e-07, + "kenna": 3.02e-07, + "kibble": 3.02e-07, + "kiir": 3.02e-07, + "killeen": 3.02e-07, + "kilter": 3.02e-07, + "kinsmen": 3.02e-07, + "kloss": 3.02e-07, + "kneading": 3.02e-07, + "kokoro": 3.02e-07, + "krishnan": 3.02e-07, + "kubota": 3.02e-07, + "kuro": 3.02e-07, + "kx": 3.02e-07, + "lamentations": 3.02e-07, + "laroche": 3.02e-07, + "lata": 3.02e-07, + "lauri": 3.02e-07, + "laziest": 3.02e-07, + "leaguers": 3.02e-07, + "leggy": 3.02e-07, + "leitch": 3.02e-07, + "leons": 3.02e-07, + "leyden": 3.02e-07, + "lgbti": 3.02e-07, + "liberators": 3.02e-07, + "limbic": 3.02e-07, + "lipo": 3.02e-07, + "liquorice": 3.02e-07, + "lithe": 3.02e-07, + "livres": 3.02e-07, + "logano": 3.02e-07, + "longshot": 3.02e-07, + "louvain": 3.02e-07, + "lucretia": 3.02e-07, + "lulled": 3.02e-07, + "lymphocyte": 3.02e-07, + "macgyver": 3.02e-07, + "makkah": 3.02e-07, + "malachite": 3.02e-07, + "managua": 3.02e-07, + "mangala": 3.02e-07, + "marchant": 3.02e-07, + "marinas": 1.29e-07, + "mccarthyism": 3.02e-07, + "mccourt": 3.02e-07, + "mccurdy": 3.02e-07, + "mcginn": 3.02e-07, + "medicate": 3.02e-07, + "megans": 3.02e-07, + "mejia": 3.02e-07, + "methotrexate": 3.02e-07, + "mian": 3.02e-07, + "microelectronics": 3.02e-07, + "microgravity": 3.02e-07, + "microsystems": 3.02e-07, + "mils": 3.02e-07, + "mingo": 3.02e-07, + "misbah": 3.02e-07, + "mitten": 3.02e-07, + "mnet": 3.02e-07, + "mok": 3.02e-07, + "mommas": 1.1e-07, + "montfort": 3.02e-07, + "mpd": 3.02e-07, + "msw": 3.02e-07, + "nadezhda": 3.02e-07, + "namibian": 3.02e-07, + "nanometers": 3.02e-07, + "nettie": 3.02e-07, + "neutrophils": 3.02e-07, + "nichol": 3.02e-07, + "niklas": 3.02e-07, + "nitin": 3.02e-07, + "nong": 3.02e-07, + "noninvasive": 3.02e-07, + "nonproliferation": 3.02e-07, + "nse": 3.02e-07, + "nyssa": 3.02e-07, + "odorless": 3.02e-07, + "oppositional": 3.02e-07, + "oppositions": 2.57e-07, + "ordain": 3.02e-07, + "organelles": 3.02e-07, + "outwit": 3.02e-07, + "overturns": 3.02e-07, + "oxidant": 3.02e-07, + "oxygenation": 3.02e-07, + "padang": 3.02e-07, + "paleontologists": 3.02e-07, + "palpatine": 3.02e-07, + "parakeet": 3.02e-07, + "paralytic": 3.02e-07, + "parfait": 3.02e-07, + "patella": 3.02e-07, + "patrik": 3.02e-07, + "pattie": 3.02e-07, + "paymaster": 3.02e-07, + "payson": 3.02e-07, + "pce": 3.02e-07, + "pdx": 3.02e-07, + "pecuniary": 3.02e-07, + "peddled": 3.02e-07, + "peeler": 3.02e-07, + "pelletier": 3.02e-07, + "pender": 3.02e-07, + "pennys": 3.02e-07, + "perera": 3.02e-07, + "perpetrate": 3.02e-07, + "petunia": 3.02e-07, + "phosphoric": 3.02e-07, + "phosphorylated": 3.02e-07, + "piney": 3.02e-07, + "plazas": 6.03e-08, + "pochettino": 3.02e-07, + "ponting": 3.02e-07, + "popsicles": 3.02e-07, + "porcine": 3.02e-07, + "pragmatist": 3.02e-07, + "precambrian": 3.02e-07, + "precipitating": 3.02e-07, + "pretreatment": 3.02e-07, + "pricier": 3.02e-07, + "prioritizes": 3.02e-07, + "privateers": 3.02e-07, + "propagates": 3.02e-07, + "prostatic": 3.02e-07, + "protrusion": 3.02e-07, + "provable": 3.02e-07, + "provocateur": 3.02e-07, + "psilocybin": 3.02e-07, + "psychopathology": 3.02e-07, + "puckett": 3.02e-07, + "pulis": 3.02e-07, + "purples": 3.02e-07, + "quercus": 3.02e-07, + "raab": 3.02e-07, + "rajapaksa": 3.02e-07, + "rationed": 3.02e-07, + "rawlinson": 3.02e-07, + "rawson": 3.02e-07, + "realness": 3.02e-07, + "receptacles": 3.02e-07, + "redmi": 3.02e-07, + "reflexively": 3.02e-07, + "refraining": 3.02e-07, + "renumbered": 3.02e-07, + "resentments": 3.02e-07, + "resize": 3.02e-07, + "revved": 3.02e-07, + "rhineland": 3.02e-07, + "ricard": 3.02e-07, + "richardsons": 5.25e-08, + "riche": 3.02e-07, + "richey": 3.02e-07, + "rincon": 3.02e-07, + "riverton": 3.02e-07, + "romanticized": 3.02e-07, + "romer": 3.02e-07, + "rst": 3.02e-07, + "ruffalo": 3.02e-07, + "rupaul": 3.02e-07, + "ryzen": 3.02e-07, + "saccharine": 3.02e-07, + "sakamoto": 3.02e-07, + "santino": 3.02e-07, + "sapling": 3.02e-07, + "sasa": 3.02e-07, + "saskia": 3.02e-07, + "sati": 3.02e-07, + "sbb": 3.02e-07, + "scaffolds": 3.02e-07, + "schoenberg": 3.02e-07, + "scholl": 3.02e-07, + "schoolmates": 3.02e-07, + "scolds": 3.02e-07, + "scrupulously": 3.02e-07, + "sdlp": 3.02e-07, + "seaward": 3.02e-07, + "sebastians": 3.02e-07, + "seco": 3.02e-07, + "seitz": 3.02e-07, + "semicolon": 3.02e-07, + "sensitively": 3.02e-07, + "seu": 3.02e-07, + "sev": 3.02e-07, + "sexed": 3.02e-07, + "shakhtar": 3.02e-07, + "sharpens": 3.02e-07, + "shattuck": 3.02e-07, + "shephard": 3.02e-07, + "shipboard": 3.02e-07, + "shootouts": 3.02e-07, + "shoppe": 3.02e-07, + "shorelines": 3.02e-07, + "shriveled": 3.02e-07, + "shunted": 3.02e-07, + "sisko": 3.02e-07, + "slanderous": 3.02e-07, + "slavonic": 3.02e-07, + "sleepin": 3.02e-07, + "sleepovers": 3.02e-07, + "slitting": 3.02e-07, + "snelling": 3.02e-07, + "snicker": 3.02e-07, + "snook": 3.02e-07, + "soba": 3.02e-07, + "sociopolitical": 3.02e-07, + "somersault": 3.02e-07, + "sommelier": 3.02e-07, + "soulmates": 3.02e-07, + "spiralling": 3.02e-07, + "squibb": 3.02e-07, + "stagnating": 3.02e-07, + "starstruck": 3.02e-07, + "steaua": 3.02e-07, + "stenographer": 3.02e-07, + "stoneman": 3.02e-07, + "stormtroopers": 3.02e-07, + "streetcars": 3.02e-07, + "striping": 3.02e-07, + "strum": 3.02e-07, + "suffragette": 3.02e-07, + "sumatran": 3.02e-07, + "supercomputers": 3.02e-07, + "superconductivity": 3.02e-07, + "supposes": 3.02e-07, + "swastikas": 3.02e-07, + "swingin": 3.02e-07, + "swisher": 3.02e-07, + "swooning": 3.02e-07, + "tamale": 3.02e-07, + "tarragon": 3.02e-07, + "tenancies": 3.02e-07, + "termini": 3.02e-07, + "testable": 3.02e-07, + "tetracycline": 3.02e-07, + "tew": 3.02e-07, + "thatchers": 5.37e-08, + "theroux": 3.02e-07, + "thirtieth": 3.02e-07, + "timmons": 3.02e-07, + "torr": 3.02e-07, + "tove": 3.02e-07, + "trang": 3.02e-07, + "trc": 3.02e-07, + "treacle": 3.02e-07, + "trev": 3.02e-07, + "treviso": 3.02e-07, + "tribals": 3.02e-07, + "tsb": 3.02e-07, + "twisters": 3.02e-07, + "twitches": 3.02e-07, + "tyree": 3.02e-07, + "umpiring": 3.02e-07, + "unapproved": 3.02e-07, + "underhanded": 3.02e-07, + "unfazed": 3.02e-07, + "unmask": 3.02e-07, + "unreservedly": 3.02e-07, + "uppity": 3.02e-07, + "upturn": 3.02e-07, + "vandy": 3.02e-07, + "vfw": 3.02e-07, + "vickery": 3.02e-07, + "victimhood": 3.02e-07, + "voltron": 3.02e-07, + "voy": 3.02e-07, + "waterborne": 3.02e-07, + "waziristan": 3.02e-07, + "weidman": 3.02e-07, + "wenn": 3.02e-07, + "wfp": 3.02e-07, + "whizzing": 3.02e-07, + "whoah": 3.02e-07, + "wildness": 3.02e-07, + "winchell": 3.02e-07, + "windsurfing": 3.02e-07, + "witney": 3.02e-07, + "worden": 3.02e-07, + "wormholes": 3.02e-07, + "worsley": 3.02e-07, + "wriggling": 3.02e-07, + "yeong": 3.02e-07, + "yessir": 3.02e-07, + "ym": 3.02e-07, + "yucky": 3.02e-07, + "zacks": 1.38e-07, + "zafar": 3.02e-07, + "zahir": 3.02e-07, + "aber": 2.95e-07, + "acclimated": 2.95e-07, + "acquiescence": 2.95e-07, + "acu": 2.95e-07, + "adamawa": 2.95e-07, + "adblock": 2.95e-07, + "adenocarcinoma": 2.95e-07, + "adjudicate": 2.95e-07, + "adornment": 2.95e-07, + "aedes": 2.95e-07, + "afrikaner": 2.95e-07, + "agnieszka": 2.95e-07, + "aii": 2.95e-07, + "alleyways": 2.95e-07, + "alloa": 2.95e-07, + "altona": 2.95e-07, + "alumna": 2.95e-07, + "alyson": 2.95e-07, + "amory": 2.95e-07, + "amplitudes": 2.95e-07, + "anatole": 2.95e-07, + "anatolian": 2.95e-07, + "angiotensin": 2.95e-07, + "anglais": 2.95e-07, + "anhui": 2.95e-07, + "antenatal": 2.95e-07, + "aon": 2.95e-07, + "aquaria": 2.95e-07, + "arca": 2.95e-07, + "ardmore": 2.95e-07, + "arses": 2.95e-07, + "asim": 2.95e-07, + "asterisks": 2.95e-07, + "astonish": 2.95e-07, + "auteur": 2.95e-07, + "availed": 2.95e-07, + "averys": 2.95e-07, + "awakenings": 2.95e-07, + "azov": 2.95e-07, + "babi": 2.95e-07, + "baccarat": 2.95e-07, + "badness": 2.95e-07, + "baes": 2.95e-07, + "bagger": 2.95e-07, + "barmaid": 2.95e-07, + "batu": 2.95e-07, + "bearcats": 2.95e-07, + "bedchamber": 2.95e-07, + "beeline": 2.95e-07, + "befuddled": 2.95e-07, + "bequeath": 2.95e-07, + "besieging": 2.95e-07, + "bifurcation": 2.95e-07, + "biofilm": 2.95e-07, + "blockages": 2.95e-07, + "bluestone": 2.95e-07, + "blustery": 2.95e-07, + "boles": 2.95e-07, + "bossa": 2.95e-07, + "bratty": 2.95e-07, + "brevet": 2.95e-07, + "bristling": 2.95e-07, + "brittain": 2.95e-07, + "broached": 2.95e-07, + "broomstick": 2.95e-07, + "brower": 2.95e-07, + "bruton": 2.95e-07, + "buckshot": 2.95e-07, + "buda": 2.95e-07, + "buffing": 2.95e-07, + "busking": 2.95e-07, + "bz": 2.95e-07, + "caerphilly": 2.95e-07, + "cakewalk": 2.95e-07, + "caliente": 2.95e-07, + "camberwell": 2.95e-07, + "camshaft": 2.95e-07, + "cann": 2.95e-07, + "capitalisation": 2.95e-07, + "capper": 2.95e-07, + "carjacking": 2.95e-07, + "carnarvon": 2.95e-07, + "cataloged": 2.95e-07, + "catlin": 2.95e-07, + "ceci": 2.95e-07, + "centigrade": 2.95e-07, + "cerebellar": 2.95e-07, + "cesaro": 2.95e-07, + "chamois": 2.95e-07, + "chapped": 2.95e-07, + "chapstick": 2.95e-07, + "chechens": 2.95e-07, + "cheep": 2.95e-07, + "chickenpox": 2.95e-07, + "chirac": 2.95e-07, + "cicadas": 2.95e-07, + "cirencester": 2.95e-07, + "clammy": 2.95e-07, + "classicism": 2.95e-07, + "cleanses": 2.95e-07, + "cloisters": 2.95e-07, + "clr": 2.95e-07, + "clydesdale": 2.95e-07, + "coexisting": 2.95e-07, + "colas": 1.29e-07, + "colley": 2.95e-07, + "comparably": 2.95e-07, + "connecticuts": 2.95e-07, + "conscript": 2.95e-07, + "convicting": 2.95e-07, + "convolution": 2.95e-07, + "cooped": 2.95e-07, + "coote": 2.95e-07, + "copilot": 2.95e-07, + "cornflakes": 2.95e-07, + "cornmeal": 2.95e-07, + "cosplayers": 2.95e-07, + "courtside": 2.95e-07, + "cpac": 2.95e-07, + "craddock": 2.95e-07, + "crikey": 2.95e-07, + "crosswords": 2.95e-07, + "crtc": 2.95e-07, + "crustal": 2.95e-07, + "crypts": 2.95e-07, + "culpepper": 2.95e-07, + "cusco": 2.95e-07, + "cws": 1.58e-07, + "daisuke": 2.95e-07, + "dangerfield": 2.95e-07, + "dassault": 2.95e-07, + "ddg": 2.95e-07, + "deangelo": 2.95e-07, + "debugger": 2.95e-07, + "decompress": 2.95e-07, + "deering": 2.95e-07, + "definetly": 2.95e-07, + "degli": 2.95e-07, + "deleuze": 2.95e-07, + "demilitarized": 2.95e-07, + "destabilized": 2.95e-07, + "detestable": 2.95e-07, + "diggin": 2.95e-07, + "disastrously": 2.95e-07, + "disreputable": 2.95e-07, + "distill": 2.95e-07, + "distiller": 2.95e-07, + "djinn": 2.95e-07, + "doan": 2.95e-07, + "dolla": 2.95e-07, + "domaine": 2.95e-07, + "dorsum": 2.95e-07, + "dothraki": 2.95e-07, + "duffield": 2.95e-07, + "dwts": 2.95e-07, + "ead": 2.95e-07, + "earthworks": 2.95e-07, + "eggshell": 2.95e-07, + "ehlers": 2.95e-07, + "emacs": 2.95e-07, + "embryology": 2.95e-07, + "enacts": 2.95e-07, + "eoc": 2.95e-07, + "estadio": 2.95e-07, + "ethers": 2.95e-07, + "evaporator": 2.95e-07, + "ewart": 2.95e-07, + "exaltation": 2.95e-07, + "exempting": 2.95e-07, + "exhaling": 2.95e-07, + "explosively": 2.95e-07, + "extorted": 2.95e-07, + "farewells": 2.95e-07, + "farhad": 2.95e-07, + "farouk": 2.95e-07, + "faunal": 2.95e-07, + "faxed": 2.95e-07, + "fiba": 2.95e-07, + "fidgeting": 2.95e-07, + "fiu": 2.95e-07, + "flexibly": 2.95e-07, + "flightless": 2.95e-07, + "fook": 2.95e-07, + "forethought": 2.95e-07, + "formalize": 2.95e-07, + "frag": 2.95e-07, + "frauen": 2.95e-07, + "freemen": 2.95e-07, + "froggy": 2.95e-07, + "frp": 2.95e-07, + "fuscous": 2.95e-07, + "futurism": 2.95e-07, + "gainful": 2.95e-07, + "gambier": 2.95e-07, + "ganguly": 2.95e-07, + "gastronomic": 2.95e-07, + "gatling": 2.95e-07, + "gautier": 2.95e-07, + "gazeta": 2.95e-07, + "gendarmes": 2.95e-07, + "generalisation": 2.95e-07, + "geriatrics": 2.95e-07, + "gers": 2.95e-07, + "getaways": 2.95e-07, + "gigolo": 2.95e-07, + "gilpin": 2.95e-07, + "girlish": 2.95e-07, + "glided": 2.95e-07, + "goi": 2.95e-07, + "goodly": 2.95e-07, + "graduations": 2.95e-07, + "griffey": 2.95e-07, + "grifter": 2.95e-07, + "gritted": 2.95e-07, + "groomsmen": 2.95e-07, + "groupe": 2.95e-07, + "growler": 2.95e-07, + "grumbles": 2.95e-07, + "guwahati": 2.95e-07, + "gyan": 2.95e-07, + "haigh": 2.95e-07, + "hamel": 2.95e-07, + "happenin": 2.95e-07, + "hatchlings": 2.95e-07, + "hatteras": 2.95e-07, + "hauler": 2.95e-07, + "hazelnuts": 2.95e-07, + "hearne": 2.95e-07, + "heber": 2.95e-07, + "heme": 2.95e-07, + "heng": 2.95e-07, + "heraldic": 2.95e-07, + "hereto": 2.95e-07, + "heya": 2.95e-07, + "hideously": 2.95e-07, + "hofer": 2.95e-07, + "homespun": 2.95e-07, + "hominem": 2.95e-07, + "homozygous": 2.95e-07, + "horta": 2.95e-07, + "hostesses": 2.95e-07, + "housings": 2.95e-07, + "huzzah": 2.95e-07, + "hydrodynamic": 2.95e-07, + "iem": 2.95e-07, + "imgur": 2.95e-07, + "imi": 2.95e-07, + "implicates": 2.95e-07, + "impound": 2.95e-07, + "inclines": 2.95e-07, + "insignificance": 2.95e-07, + "interlinked": 2.95e-07, + "interrogators": 2.95e-07, + "interurban": 2.95e-07, + "intuitions": 2.95e-07, + "invigorated": 2.95e-07, + "invincibility": 2.95e-07, + "ionosphere": 2.95e-07, + "isms": 2.95e-07, + "isomers": 2.95e-07, + "izmir": 2.95e-07, + "jaffna": 2.95e-07, + "jamey": 2.95e-07, + "jani": 2.95e-07, + "janko": 2.95e-07, + "jennys": 2.95e-07, + "jeweled": 2.95e-07, + "jitter": 2.95e-07, + "jourdan": 2.95e-07, + "joust": 2.95e-07, + "jutsu": 2.95e-07, + "jy": 2.95e-07, + "kapil": 2.95e-07, + "kasi": 2.95e-07, + "kasparov": 2.95e-07, + "katara": 2.95e-07, + "kayo": 2.95e-07, + "kestrel": 2.95e-07, + "kil": 2.95e-07, + "kilmer": 2.95e-07, + "kinematics": 2.95e-07, + "kissimmee": 2.95e-07, + "koda": 2.95e-07, + "krieg": 2.95e-07, + "krs": 2.95e-07, + "lafferty": 2.95e-07, + "lagerfeld": 2.95e-07, + "lamentable": 2.95e-07, + "lascivious": 2.95e-07, + "lasik": 2.95e-07, + "latifah": 2.95e-07, + "lawes": 2.95e-07, + "lawman": 2.95e-07, + "lca": 2.95e-07, + "lec": 2.95e-07, + "lejeune": 2.95e-07, + "lemony": 2.95e-07, + "lenz": 2.95e-07, + "letty": 2.95e-07, + "lewy": 2.95e-07, + "lifers": 2.95e-07, + "lindberg": 2.95e-07, + "liquidating": 2.95e-07, + "litigated": 2.95e-07, + "llanelli": 2.95e-07, + "lols": 2.95e-07, + "lonzo": 2.95e-07, + "looses": 2.95e-07, + "loup": 2.95e-07, + "luci": 2.95e-07, + "ludicrously": 2.95e-07, + "lupo": 2.95e-07, + "lurched": 2.95e-07, + "madrigal": 2.95e-07, + "mahathir": 2.95e-07, + "manda": 2.95e-07, + "marmaduke": 2.95e-07, + "maruti": 2.95e-07, + "maslow": 2.95e-07, + "mauser": 2.95e-07, + "mbta": 2.95e-07, + "mccrae": 2.95e-07, + "mccree": 2.95e-07, + "mcgarry": 2.95e-07, + "mcginty": 2.95e-07, + "mckeown": 2.95e-07, + "mcr": 2.95e-07, + "mcwilliams": 2.95e-07, + "meanie": 2.95e-07, + "meanness": 2.95e-07, + "melding": 2.95e-07, + "mellowed": 2.95e-07, + "memoranda": 2.95e-07, + "menard": 2.95e-07, + "michaud": 2.95e-07, + "midstream": 2.95e-07, + "minto": 2.95e-07, + "misfire": 2.95e-07, + "mishnah": 2.95e-07, + "mitotic": 2.95e-07, + "mohd": 2.95e-07, + "mone": 2.88e-08, + "monocle": 2.95e-07, + "monopolize": 2.95e-07, + "moti": 2.95e-07, + "mowgli": 2.95e-07, + "msd": 2.95e-07, + "msl": 2.95e-07, + "mtdna": 2.95e-07, + "mugger": 2.95e-07, + "mui": 2.95e-07, + "muldoon": 2.95e-07, + "multifunctional": 2.95e-07, + "murkowski": 2.95e-07, + "namco": 2.95e-07, + "narayana": 2.95e-07, + "narragansett": 2.95e-07, + "nava": 2.95e-07, + "naver": 2.95e-07, + "nbd": 2.95e-07, + "nextgen": 2.95e-07, + "nfpa": 2.95e-07, + "nibs": 2.95e-07, + "nii": 2.95e-07, + "nio": 2.95e-07, + "nivea": 2.95e-07, + "noms": 2.95e-07, + "norrie": 2.95e-07, + "notarized": 2.95e-07, + "nowak": 2.95e-07, + "nva": 2.95e-07, + "occuring": 2.95e-07, + "oceana": 2.95e-07, + "oed": 2.95e-07, + "offshoots": 2.95e-07, + "ogg": 2.95e-07, + "okie": 2.95e-07, + "omnipotence": 2.95e-07, + "opc": 2.95e-07, + "opossum": 2.95e-07, + "opportunists": 2.95e-07, + "optima": 2.95e-07, + "origi": 2.95e-07, + "ormsby": 2.95e-07, + "orthopedics": 2.95e-07, + "osh": 2.95e-07, + "outperforming": 2.95e-07, + "ovals": 2.95e-07, + "overplayed": 2.95e-07, + "oversold": 2.95e-07, + "overwrought": 2.95e-07, + "pacemakers": 2.95e-07, + "palacios": 2.95e-07, + "parachuting": 2.95e-07, + "paradiso": 2.95e-07, + "paraguayan": 2.95e-07, + "peaky": 2.95e-07, + "peale": 2.95e-07, + "pearsons": 2.95e-07, + "peet": 2.95e-07, + "penne": 2.95e-07, + "penta": 2.95e-07, + "percutaneous": 2.95e-07, + "pervez": 2.95e-07, + "petaluma": 2.95e-07, + "petiole": 2.95e-07, + "pickling": 2.95e-07, + "pippen": 2.95e-07, + "plasmodium": 2.95e-07, + "plotline": 2.95e-07, + "pollo": 2.95e-07, + "pollster": 2.95e-07, + "polonium": 2.95e-07, + "polyvinyl": 2.95e-07, + "pommel": 2.95e-07, + "ponderous": 2.95e-07, + "popov": 2.95e-07, + "posteriorly": 2.95e-07, + "pounders": 2.95e-07, + "pradhan": 2.95e-07, + "predeceased": 2.95e-07, + "preformed": 2.95e-07, + "preps": 2.95e-07, + "presidente": 2.95e-07, + "pritzker": 2.95e-07, + "proselytizing": 2.95e-07, + "pucci": 2.95e-07, + "pud": 2.95e-07, + "pudgy": 2.95e-07, + "pyruvate": 2.95e-07, + "quang": 2.95e-07, + "quds": 2.95e-07, + "quenched": 2.95e-07, + "quotable": 2.95e-07, + "randomization": 2.95e-07, + "ratty": 2.95e-07, + "redcliffe": 2.95e-07, + "reflectance": 2.95e-07, + "relegate": 2.95e-07, + "remeber": 2.95e-07, + "remodelled": 2.95e-07, + "remotes": 2.95e-07, + "renzo": 2.95e-07, + "reoccurring": 2.95e-07, + "reservist": 2.95e-07, + "resettle": 2.95e-07, + "resnick": 2.95e-07, + "restate": 2.95e-07, + "retinol": 2.95e-07, + "retrofitting": 2.95e-07, + "returnees": 2.95e-07, + "revenant": 2.95e-07, + "rhinestones": 2.95e-07, + "ries": 2.95e-07, + "riffing": 2.95e-07, + "riki": 2.95e-07, + "rollie": 2.95e-07, + "rothwell": 2.95e-07, + "rousseff": 2.95e-07, + "rowell": 2.95e-07, + "rpa": 2.95e-07, + "rpc": 2.95e-07, + "rspb": 2.95e-07, + "runt": 2.95e-07, + "saha": 2.95e-07, + "salk": 2.95e-07, + "sask": 2.95e-07, + "satyr": 2.95e-07, + "sayre": 2.95e-07, + "sciatica": 2.95e-07, + "scimitar": 2.95e-07, + "scrubber": 2.95e-07, + "scud": 2.95e-07, + "seceded": 2.95e-07, + "securitys": 2.95e-07, + "seepage": 2.95e-07, + "seesaw": 2.95e-07, + "sema": 2.95e-07, + "sephardic": 2.95e-07, + "serv": 2.95e-07, + "sgs": 2.95e-07, + "shabazz": 2.95e-07, + "shanxi": 2.95e-07, + "sharknado": 2.95e-07, + "sheboygan": 2.95e-07, + "shinzo": 2.95e-07, + "shires": 6.03e-08, + "shrouds": 2.95e-07, + "shuddered": 2.95e-07, + "siddharth": 2.95e-07, + "sidewinder": 2.95e-07, + "skaggs": 2.95e-07, + "skylark": 2.95e-07, + "skyway": 2.95e-07, + "smouldering": 2.95e-07, + "sociocultural": 2.95e-07, + "sokoto": 2.95e-07, + "speculum": 2.95e-07, + "spelman": 2.95e-07, + "spielbergs": 2.95e-07, + "spuds": 2.95e-07, + "ssris": 2.95e-07, + "statehouse": 2.95e-07, + "stellenbosch": 2.95e-07, + "sten": 2.95e-07, + "stents": 2.95e-07, + "stooping": 2.95e-07, + "strived": 2.95e-07, + "sty": 2.95e-07, + "subjugate": 2.95e-07, + "sublet": 2.95e-07, + "subsections": 2.95e-07, + "sulawesi": 2.95e-07, + "sultans": 2.09e-07, + "sunder": 2.95e-07, + "superlatives": 2.95e-07, + "supermassive": 2.95e-07, + "surfed": 2.95e-07, + "sussman": 2.95e-07, + "suzi": 2.95e-07, + "suzuka": 2.95e-07, + "swoosh": 2.95e-07, + "taketh": 2.95e-07, + "tarr": 2.95e-07, + "tars": 2.95e-07, + "taub": 2.95e-07, + "terrains": 2.95e-07, + "theocratic": 2.95e-07, + "thermoelectric": 2.95e-07, + "thet": 2.95e-07, + "timey": 2.95e-07, + "tippett": 2.95e-07, + "togethers": 2.95e-07, + "tonics": 2.95e-07, + "topo": 2.95e-07, + "tosca": 2.95e-07, + "tpb": 2.95e-07, + "tracklist": 2.95e-07, + "triomphe": 2.95e-07, + "truancy": 2.95e-07, + "trx": 2.95e-07, + "tsh": 2.95e-07, + "tunable": 2.95e-07, + "ucsf": 2.95e-07, + "uday": 2.95e-07, + "udon": 2.95e-07, + "unboxing": 2.95e-07, + "uncapped": 2.95e-07, + "unfollow": 2.95e-07, + "unrefined": 2.95e-07, + "unsportsmanlike": 2.95e-07, + "uppercase": 2.95e-07, + "uprooting": 2.95e-07, + "valeri": 2.95e-07, + "vaporize": 2.95e-07, + "varga": 2.95e-07, + "varietal": 2.95e-07, + "varma": 2.95e-07, + "varney": 2.95e-07, + "vedder": 2.95e-07, + "vestal": 2.95e-07, + "vestigial": 2.95e-07, + "virginal": 2.95e-07, + "visitations": 2.95e-07, + "vitreous": 2.95e-07, + "vocabularies": 2.95e-07, + "vortices": 2.95e-07, + "vpns": 2.95e-07, + "waaay": 2.95e-07, + "wads": 2.95e-07, + "waists": 2.95e-07, + "wast": 4.57e-08, + "waylon": 2.95e-07, + "whittled": 2.95e-07, + "xenia": 2.95e-07, + "xxv": 2.95e-07, + "yad": 2.95e-07, + "yadda": 2.95e-07, + "yana": 2.95e-07, + "yann": 2.95e-07, + "yoder": 2.95e-07, + "yor": 2.95e-07, + "zilch": 2.95e-07, + "zoes": 2.95e-07, + "zoran": 2.95e-07, + "abductor": 2.88e-07, + "abstentions": 2.88e-07, + "actualization": 2.88e-07, + "addons": 2.88e-07, + "adeles": 2.88e-07, + "adjudicator": 2.88e-07, + "adorns": 2.88e-07, + "afire": 2.88e-07, + "aflame": 2.88e-07, + "agen": 2.88e-07, + "aggro": 2.88e-07, + "airasia": 2.88e-07, + "akali": 2.88e-07, + "albee": 2.88e-07, + "aliasing": 2.88e-07, + "alleluia": 2.88e-07, + "alphanumeric": 2.88e-07, + "amas": 1.15e-07, + "amboy": 2.88e-07, + "ammon": 2.88e-07, + "amu": 2.88e-07, + "amusingly": 2.88e-07, + "amway": 2.88e-07, + "analytically": 2.88e-07, + "andalusian": 2.88e-07, + "anniston": 2.88e-07, + "antiochus": 2.88e-07, + "apace": 2.88e-07, + "appalachians": 2.88e-07, + "apportioned": 2.88e-07, + "ards": 2.88e-07, + "arles": 2.88e-07, + "arugula": 2.88e-07, + "asante": 2.88e-07, + "asperger": 2.88e-07, + "astroturf": 2.88e-07, + "athanasius": 2.88e-07, + "audios": 2.88e-07, + "aunties": 5.89e-08, + "autobiographies": 2.88e-07, + "autophagy": 2.88e-07, + "avanti": 2.88e-07, + "avidly": 2.88e-07, + "bahasa": 2.88e-07, + "bambino": 2.88e-07, + "barbecued": 2.88e-07, + "baristas": 2.88e-07, + "bartering": 2.88e-07, + "bartolo": 2.88e-07, + "basaltic": 2.88e-07, + "beanstalk": 2.88e-07, + "becketts": 2.88e-07, + "beckhams": 9.12e-08, + "beleive": 2.88e-07, + "belkin": 2.88e-07, + "benjamins": 2.51e-07, + "berea": 2.88e-07, + "bestowing": 2.88e-07, + "bhagavad": 2.88e-07, + "biannual": 2.88e-07, + "bibliographical": 2.88e-07, + "bier": 2.88e-07, + "bih": 2.88e-07, + "biliary": 2.88e-07, + "biophysical": 2.88e-07, + "bioware": 2.88e-07, + "biplane": 2.88e-07, + "blaney": 2.88e-07, + "bloodstained": 2.88e-07, + "boggles": 2.88e-07, + "bogie": 2.88e-07, + "boomtown": 2.88e-07, + "brandons": 2.88e-07, + "breck": 2.88e-07, + "brisbanes": 2.88e-07, + "brophy": 2.88e-07, + "browder": 2.88e-07, + "bruner": 2.88e-07, + "brutalized": 2.88e-07, + "buffets": 5.01e-08, + "bulges": 2.88e-07, + "bullfighting": 2.88e-07, + "burlingame": 2.88e-07, + "buzzy": 2.88e-07, + "cagliari": 2.88e-07, + "callow": 2.88e-07, + "candour": 2.88e-07, + "captaining": 2.88e-07, + "capua": 2.88e-07, + "caravaggio": 2.88e-07, + "cartographic": 2.88e-07, + "castlereagh": 2.88e-07, + "caswell": 2.88e-07, + "cbf": 2.88e-07, + "cdo": 2.88e-07, + "certiorari": 2.88e-07, + "cesium": 2.88e-07, + "ceviche": 2.88e-07, + "chainz": 2.88e-07, + "chapmans": 2.88e-07, + "checkerboard": 2.88e-07, + "cheech": 2.88e-07, + "cheeked": 2.88e-07, + "chih": 2.88e-07, + "chinaman": 2.88e-07, + "choline": 2.88e-07, + "chyna": 2.88e-07, + "circumspect": 2.88e-07, + "clausen": 2.88e-07, + "cleaves": 2.88e-07, + "cloudless": 2.88e-07, + "cmg": 2.88e-07, + "cnr": 2.88e-07, + "colada": 2.88e-07, + "coleoptera": 2.88e-07, + "collectivist": 2.88e-07, + "colonizers": 2.88e-07, + "combe": 2.88e-07, + "concussed": 2.88e-07, + "condit": 2.88e-07, + "connexion": 2.88e-07, + "consign": 2.88e-07, + "consolidates": 2.88e-07, + "constancy": 2.88e-07, + "constructivist": 2.88e-07, + "contraindications": 2.88e-07, + "conveyancing": 2.88e-07, + "coops": 2.88e-07, + "copes": 2.88e-07, + "copter": 2.88e-07, + "couched": 2.88e-07, + "cousteau": 2.88e-07, + "cowbell": 2.88e-07, + "cpap": 2.88e-07, + "crabby": 2.88e-07, + "cracow": 2.88e-07, + "creased": 2.88e-07, + "cretan": 2.88e-07, + "croatias": 2.88e-07, + "crocus": 2.88e-07, + "cromer": 2.88e-07, + "cronkite": 2.88e-07, + "crossley": 2.88e-07, + "cth": 2.88e-07, + "cwc": 2.88e-07, + "cypriots": 2.88e-07, + "daf": 2.88e-07, + "dagon": 2.88e-07, + "dandelions": 2.88e-07, + "darvish": 2.88e-07, + "dcu": 2.88e-07, + "debentures": 2.88e-07, + "deliciousness": 2.88e-07, + "depreciate": 2.88e-07, + "derbies": 2.88e-07, + "dermatologists": 2.88e-07, + "deron": 2.88e-07, + "deschamps": 2.88e-07, + "despotism": 2.88e-07, + "detracts": 2.88e-07, + "devolving": 2.88e-07, + "devonport": 2.88e-07, + "dfl": 2.88e-07, + "diehl": 2.88e-07, + "dietetics": 2.88e-07, + "diggle": 2.88e-07, + "dilbert": 2.88e-07, + "diploid": 2.88e-07, + "disenchantment": 2.88e-07, + "disfigurement": 2.88e-07, + "dishwashers": 2.88e-07, + "disinfected": 2.88e-07, + "dissociate": 2.88e-07, + "dogmas": 2.88e-07, + "dormancy": 2.88e-07, + "dostoyevsky": 2.88e-07, + "downriver": 2.88e-07, + "dressmaker": 2.88e-07, + "dumbbells": 2.88e-07, + "durch": 2.88e-07, + "easements": 2.88e-07, + "easyjet": 2.88e-07, + "ebs": 2.88e-07, + "ecf": 2.88e-07, + "editorship": 2.88e-07, + "ejector": 2.88e-07, + "elyse": 2.88e-07, + "elysian": 2.88e-07, + "embankments": 2.88e-07, + "emote": 2.88e-07, + "enchiladas": 2.88e-07, + "enriches": 2.88e-07, + "episcopalian": 2.88e-07, + "ermine": 2.88e-07, + "estado": 2.88e-07, + "eurostar": 2.88e-07, + "evangelization": 2.88e-07, + "evi": 2.88e-07, + "excruciatingly": 2.88e-07, + "exfoliating": 2.88e-07, + "exterminating": 2.88e-07, + "extravagantly": 2.88e-07, + "ezequiel": 2.88e-07, + "fansite": 2.88e-07, + "farmlands": 2.88e-07, + "fashioning": 2.88e-07, + "fdas": 2.88e-07, + "fearlessness": 2.88e-07, + "featureless": 2.88e-07, + "feld": 2.88e-07, + "ferociously": 2.88e-07, + "fictionalized": 2.88e-07, + "fiendish": 2.88e-07, + "fila": 2.88e-07, + "finery": 2.88e-07, + "firming": 2.88e-07, + "fishnet": 2.88e-07, + "fletch": 2.88e-07, + "flit": 2.88e-07, + "fmla": 2.88e-07, + "forthe": 2.88e-07, + "fortifying": 2.88e-07, + "frei": 2.88e-07, + "frequenting": 2.88e-07, + "furrowed": 2.88e-07, + "fyfe": 2.88e-07, + "gac": 2.88e-07, + "gallaudet": 2.88e-07, + "gamescom": 2.88e-07, + "gaskell": 2.88e-07, + "gault": 2.88e-07, + "gdansk": 2.88e-07, + "gerrit": 2.88e-07, + "getz": 2.88e-07, + "glial": 2.88e-07, + "globetrotters": 2.88e-07, + "glorifies": 2.88e-07, + "glycemic": 2.88e-07, + "gnat": 2.88e-07, + "gnats": 2.88e-07, + "goldfields": 2.88e-07, + "golgi": 2.88e-07, + "goonies": 2.88e-07, + "gos": 2.82e-07, + "govinda": 2.88e-07, + "grecian": 2.88e-07, + "grigg": 2.88e-07, + "grossest": 2.88e-07, + "gsk": 2.88e-07, + "gullies": 2.88e-07, + "gunboat": 2.88e-07, + "gynecological": 2.88e-07, + "haggerty": 2.88e-07, + "halton": 2.88e-07, + "hannon": 2.88e-07, + "haptic": 2.88e-07, + "harmonization": 2.88e-07, + "haruhi": 2.88e-07, + "hawkers": 2.88e-07, + "haz": 2.88e-07, + "headbands": 2.88e-07, + "headlock": 2.88e-07, + "headpiece": 2.88e-07, + "heartbreakers": 2.88e-07, + "hermits": 2.88e-07, + "herz": 2.88e-07, + "hillsong": 2.88e-07, + "hittin": 2.88e-07, + "holdsworth": 2.88e-07, + "holidaymakers": 2.88e-07, + "homered": 2.88e-07, + "hooke": 2.88e-07, + "horsey": 2.88e-07, + "hoxton": 2.88e-07, + "hpc": 2.88e-07, + "humidifier": 2.88e-07, + "hypersensitive": 2.88e-07, + "idiomatic": 2.88e-07, + "ijn": 2.88e-07, + "illuminations": 2.88e-07, + "immaculately": 2.88e-07, + "immolation": 2.88e-07, + "immunisation": 2.88e-07, + "impudent": 2.88e-07, + "incentivize": 2.88e-07, + "incontrovertible": 2.88e-07, + "incorruptible": 2.88e-07, + "incubate": 2.88e-07, + "ineffectiveness": 2.88e-07, + "inflight": 2.88e-07, + "ingrown": 2.88e-07, + "inte": 2.88e-07, + "inundation": 2.88e-07, + "isomer": 2.88e-07, + "italiana": 2.88e-07, + "iyengar": 2.88e-07, + "jalisco": 2.88e-07, + "jamb": 2.88e-07, + "janette": 2.88e-07, + "janitorial": 2.88e-07, + "jeremys": 2.88e-07, + "joc": 2.88e-07, + "jordon": 2.88e-07, + "juma": 2.88e-07, + "junko": 2.88e-07, + "kennard": 2.88e-07, + "killarney": 2.88e-07, + "kirwan": 2.88e-07, + "kokomo": 2.88e-07, + "kolo": 2.88e-07, + "korg": 2.88e-07, + "koto": 2.88e-07, + "ksi": 2.88e-07, + "kunal": 2.88e-07, + "kurd": 2.88e-07, + "lackeys": 2.88e-07, + "ladylike": 2.88e-07, + "lamberts": 9.12e-08, + "lamela": 2.88e-07, + "lani": 2.88e-07, + "layed": 2.88e-07, + "leben": 2.88e-07, + "legia": 2.88e-07, + "lemmy": 2.88e-07, + "letts": 2.88e-07, + "leu": 2.88e-07, + "levon": 2.88e-07, + "lfc": 2.88e-07, + "lifer": 2.88e-07, + "lignite": 2.88e-07, + "linc": 2.88e-07, + "linky": 2.88e-07, + "linwood": 2.88e-07, + "liquidators": 2.88e-07, + "lithographs": 2.88e-07, + "livonia": 2.88e-07, + "lobotomy": 2.88e-07, + "longworth": 2.88e-07, + "lorimer": 2.88e-07, + "lothar": 2.88e-07, + "lowestoft": 2.88e-07, + "lowther": 2.88e-07, + "lvg": 2.88e-07, + "lynchings": 2.88e-07, + "lyne": 2.88e-07, + "macdonalds": 1.66e-07, + "magisterial": 2.88e-07, + "mailings": 2.88e-07, + "makeovers": 2.88e-07, + "mandelson": 2.88e-07, + "mandibles": 2.88e-07, + "manipulators": 2.88e-07, + "manse": 2.88e-07, + "marcin": 2.88e-07, + "marshfield": 2.88e-07, + "marzipan": 2.88e-07, + "masterly": 2.88e-07, + "masterwork": 2.88e-07, + "masthead": 2.88e-07, + "materiality": 2.88e-07, + "matting": 2.88e-07, + "mbbs": 2.88e-07, + "mcat": 2.88e-07, + "melba": 2.88e-07, + "metabolize": 2.88e-07, + "mhs": 2.88e-07, + "mickie": 2.88e-07, + "mits": 1.2e-07, + "miyuki": 2.88e-07, + "moldovan": 2.88e-07, + "molinari": 2.88e-07, + "moloney": 2.88e-07, + "mopped": 2.88e-07, + "morro": 2.88e-07, + "mpls": 2.88e-07, + "mulcahy": 2.88e-07, + "multivitamin": 2.88e-07, + "murata": 2.88e-07, + "muy": 2.88e-07, + "nandi": 2.88e-07, + "nanette": 2.88e-07, + "nass": 2.88e-07, + "nationhood": 2.88e-07, + "neglectful": 2.88e-07, + "nevadas": 2.88e-07, + "ninas": 2.88e-07, + "noni": 2.88e-07, + "novosibirsk": 2.88e-07, + "nutcase": 2.88e-07, + "objectified": 2.88e-07, + "ods": 2.82e-08, + "oligocene": 2.88e-07, + "orsay": 2.88e-07, + "otl": 2.88e-07, + "outgrew": 2.88e-07, + "overconfident": 2.88e-07, + "palmas": 5.01e-08, + "parachuted": 2.88e-07, + "paralleling": 2.88e-07, + "paramilitaries": 2.88e-07, + "parklands": 2.88e-07, + "parquet": 2.88e-07, + "passat": 2.88e-07, + "paternalistic": 2.88e-07, + "patronized": 2.88e-07, + "pdr": 2.88e-07, + "pera": 2.88e-07, + "perdition": 2.88e-07, + "perus": 2.88e-07, + "pez": 2.88e-07, + "phaedra": 2.88e-07, + "pharmacokinetics": 2.88e-07, + "photocopies": 2.88e-07, + "pipers": 2.51e-07, + "pirie": 2.88e-07, + "pith": 2.88e-07, + "plaintive": 2.88e-07, + "plasmas": 2.88e-07, + "plotter": 2.88e-07, + "poehler": 2.88e-07, + "policyholder": 2.88e-07, + "polyunsaturated": 2.88e-07, + "pondicherry": 2.88e-07, + "popularize": 2.88e-07, + "poroshenko": 2.88e-07, + "poss": 1.12e-08, + "praiseworthy": 2.88e-07, + "predated": 2.88e-07, + "prelates": 2.88e-07, + "preoperative": 2.88e-07, + "pressurised": 2.88e-07, + "presupposes": 2.88e-07, + "previewing": 2.88e-07, + "prideful": 2.88e-07, + "psychometric": 2.88e-07, + "pupper": 2.88e-07, + "quai": 2.88e-07, + "quechua": 2.88e-07, + "quelled": 2.88e-07, + "querying": 2.88e-07, + "quickened": 2.88e-07, + "raghu": 2.88e-07, + "rands": 1.35e-07, + "ranted": 2.88e-07, + "rapeseed": 2.88e-07, + "rarefied": 2.88e-07, + "rask": 2.88e-07, + "rcp": 2.88e-07, + "rebukes": 2.88e-07, + "reclassification": 2.88e-07, + "recumbent": 2.88e-07, + "redshift": 2.88e-07, + "reframe": 2.88e-07, + "reproducibility": 2.88e-07, + "reprogrammed": 2.88e-07, + "restorer": 2.88e-07, + "reverent": 2.88e-07, + "revista": 2.88e-07, + "reyna": 2.88e-07, + "rfu": 2.88e-07, + "rhondda": 2.88e-07, + "ridings": 2.88e-07, + "ringwood": 2.88e-07, + "ritas": 2.88e-07, + "rivaled": 2.88e-07, + "rnli": 2.88e-07, + "rohr": 2.88e-07, + "romanov": 2.88e-07, + "roni": 2.88e-07, + "rosettes": 2.88e-07, + "royston": 2.88e-07, + "rsd": 2.88e-07, + "rtp": 2.88e-07, + "rtr": 2.88e-07, + "rupa": 2.88e-07, + "rvp": 2.88e-07, + "ryland": 2.88e-07, + "saarc": 2.88e-07, + "salacious": 2.88e-07, + "salting": 2.88e-07, + "sandpiper": 2.88e-07, + "sangster": 2.88e-07, + "satanists": 2.88e-07, + "saute": 2.88e-07, + "saxena": 2.88e-07, + "scabbard": 2.88e-07, + "scapula": 2.88e-07, + "scherer": 2.88e-07, + "schindlers": 2.88e-07, + "screamin": 2.88e-07, + "scribner": 2.88e-07, + "sensationalist": 2.88e-07, + "seon": 2.88e-07, + "serbias": 2.88e-07, + "sfs": 7.24e-08, + "shadowbanned": 2.88e-07, + "shand": 2.88e-07, + "shaqiri": 2.88e-07, + "shew": 2.88e-07, + "shimbun": 2.88e-07, + "shinn": 2.88e-07, + "sidearm": 2.88e-07, + "signpost": 2.88e-07, + "sinhala": 2.88e-07, + "siphoning": 2.88e-07, + "skatepark": 2.88e-07, + "skied": 2.88e-07, + "slicker": 2.88e-07, + "slurping": 2.88e-07, + "slyly": 2.88e-07, + "smi": 2.88e-07, + "snagging": 2.88e-07, + "snorlax": 2.88e-07, + "socorro": 2.88e-07, + "softcore": 2.88e-07, + "soiree": 2.88e-07, + "sont": 2.88e-07, + "sooooooo": 2.88e-07, + "soph": 2.88e-07, + "sounder": 2.88e-07, + "spaceman": 2.88e-07, + "spars": 2.88e-07, + "spearman": 2.88e-07, + "spenders": 2.88e-07, + "spiraled": 2.88e-07, + "splayed": 2.88e-07, + "spline": 2.88e-07, + "sportscaster": 2.88e-07, + "spratt": 2.88e-07, + "springy": 2.88e-07, + "spritz": 2.88e-07, + "squirted": 2.88e-07, + "sram": 2.88e-07, + "standouts": 2.88e-07, + "statics": 1.15e-08, + "stax": 2.88e-07, + "steamboats": 2.88e-07, + "steelworkers": 2.88e-07, + "steinway": 2.88e-07, + "stepbrother": 2.88e-07, + "stigmas": 2.88e-07, + "stocker": 2.88e-07, + "stomps": 2.88e-07, + "streaky": 2.88e-07, + "suc": 2.88e-07, + "sulaiman": 2.88e-07, + "sundial": 2.88e-07, + "suo": 2.88e-07, + "supranational": 2.88e-07, + "svc": 2.88e-07, + "sydenham": 2.88e-07, + "sym": 2.88e-07, + "symmetries": 2.88e-07, + "sympathized": 2.88e-07, + "taoiseach": 2.88e-07, + "tastier": 2.88e-07, + "tbr": 2.88e-07, + "tehreek": 2.88e-07, + "telegraphy": 2.88e-07, + "telekinesis": 2.88e-07, + "telematics": 2.88e-07, + "telepathically": 2.88e-07, + "terrifyingly": 2.88e-07, + "territorys": 2.88e-07, + "thoroughbreds": 2.88e-07, + "thoroughness": 2.88e-07, + "throttled": 2.88e-07, + "tiktok": 2.88e-07, + "tills": 5.37e-08, + "timelapse": 2.88e-07, + "timescales": 2.88e-07, + "tinkling": 2.88e-07, + "tinsley": 2.88e-07, + "tiramisu": 2.88e-07, + "tnc": 2.88e-07, + "tng": 2.88e-07, + "toasters": 2.88e-07, + "toothpicks": 2.88e-07, + "tpm": 2.88e-07, + "tq": 2.88e-07, + "trainspotting": 2.88e-07, + "tranche": 2.88e-07, + "transplanting": 2.88e-07, + "trashcan": 2.88e-07, + "travelogue": 2.88e-07, + "triathlete": 2.88e-07, + "trine": 2.88e-07, + "trix": 2.88e-07, + "trollope": 2.88e-07, + "trumpeting": 2.88e-07, + "tsc": 2.88e-07, + "tumblers": 2.88e-07, + "turan": 2.88e-07, + "turley": 2.88e-07, + "ucas": 2.88e-07, + "uj": 2.88e-07, + "undersigned": 2.88e-07, + "underused": 2.88e-07, + "unep": 2.88e-07, + "unionize": 2.88e-07, + "untraceable": 2.88e-07, + "urbane": 2.88e-07, + "uther": 2.88e-07, + "valladolid": 2.88e-07, + "villanueva": 2.88e-07, + "volcanism": 2.88e-07, + "volte": 2.88e-07, + "waldman": 2.88e-07, + "waltzing": 2.88e-07, + "warsi": 2.88e-07, + "wayans": 2.88e-07, + "waze": 2.88e-07, + "weatherford": 2.88e-07, + "webbs": 5.62e-08, + "webmd": 2.88e-07, + "welby": 2.88e-07, + "welter": 2.88e-07, + "wiesbaden": 2.88e-07, + "willingham": 2.88e-07, + "windowless": 2.88e-07, + "winky": 2.88e-07, + "wishart": 2.88e-07, + "woh": 2.88e-07, + "wolfman": 2.88e-07, + "woodwind": 2.88e-07, + "woop": 2.88e-07, + "worldcat": 2.88e-07, + "wracked": 2.88e-07, + "wrongdoings": 2.88e-07, + "wsb": 2.88e-07, + "yc": 2.88e-07, + "yehuda": 2.88e-07, + "yuba": 2.88e-07, + "yuko": 2.88e-07, + "yusef": 2.88e-07, + "zaragoza": 2.88e-07, + "zebrafish": 2.88e-07, + "zetas": 2.88e-07, + "zimmermans": 2.88e-07, + "zootopia": 2.88e-07, + "zr": 2.88e-07, + "abdulaziz": 2.82e-07, + "absolutism": 2.82e-07, + "abutting": 2.82e-07, + "academicians": 2.82e-07, + "accomodate": 2.82e-07, + "accrington": 2.82e-07, + "adorno": 2.82e-07, + "afrique": 2.82e-07, + "afterschool": 2.82e-07, + "aikman": 2.82e-07, + "aipac": 2.82e-07, + "akan": 2.82e-07, + "akane": 2.82e-07, + "alcantara": 2.82e-07, + "aldehyde": 2.82e-07, + "alexi": 2.82e-07, + "allis": 2.82e-07, + "allisons": 2.82e-07, + "allstars": 2.82e-07, + "alstom": 2.82e-07, + "alu": 2.82e-07, + "ambit": 2.82e-07, + "analytica": 2.82e-07, + "andretti": 2.82e-07, + "anemones": 2.82e-07, + "angsty": 2.82e-07, + "apb": 2.82e-07, + "appeased": 2.82e-07, + "appreciably": 2.82e-07, + "archiv": 2.82e-07, + "arcing": 2.82e-07, + "arnott": 2.82e-07, + "arrhythmias": 2.82e-07, + "arrowheads": 2.82e-07, + "arsenio": 2.82e-07, + "arthritic": 2.82e-07, + "ascents": 2.82e-07, + "asis": 2.82e-07, + "asterix": 2.82e-07, + "astigmatism": 2.82e-07, + "audiophile": 2.82e-07, + "audley": 2.82e-07, + "avast": 2.82e-07, + "avp": 2.82e-07, + "bacall": 2.82e-07, + "backgammon": 2.82e-07, + "badu": 2.82e-07, + "bair": 2.82e-07, + "bangladeshs": 2.82e-07, + "bapu": 2.82e-07, + "barbarity": 2.82e-07, + "barretts": 2.82e-07, + "barts": 2.29e-07, + "basta": 2.82e-07, + "bax": 2.82e-07, + "begone": 2.82e-07, + "belie": 2.82e-07, + "believeth": 2.82e-07, + "benidorm": 2.82e-07, + "berlioz": 2.82e-07, + "bernardi": 2.82e-07, + "biol": 2.82e-07, + "birdcage": 2.82e-07, + "birthmark": 2.82e-07, + "bisping": 2.82e-07, + "bisque": 2.82e-07, + "bitched": 2.82e-07, + "bjork": 2.82e-07, + "bjps": 2.82e-07, + "blackfoot": 2.82e-07, + "bladders": 2.82e-07, + "blanketed": 2.82e-07, + "bloemfontein": 2.82e-07, + "blotches": 2.82e-07, + "bmd": 2.82e-07, + "bolshevism": 2.82e-07, + "bonnets": 2.82e-07, + "botulism": 2.82e-07, + "boxcar": 2.82e-07, + "boykin": 2.82e-07, + "brandis": 2.82e-07, + "brandywine": 2.82e-07, + "brennans": 2.82e-07, + "brickell": 2.82e-07, + "brougham": 2.82e-07, + "browner": 2.82e-07, + "brzezinski": 2.82e-07, + "busquets": 2.82e-07, + "cabral": 2.82e-07, + "cagayan": 2.82e-07, + "cagney": 2.82e-07, + "cajon": 2.82e-07, + "calvins": 2.82e-07, + "calyx": 2.82e-07, + "canadensis": 2.82e-07, + "candelabra": 2.82e-07, + "cannula": 2.82e-07, + "canteens": 2.82e-07, + "cantona": 2.82e-07, + "cantrell": 2.82e-07, + "cardwell": 2.82e-07, + "carell": 2.82e-07, + "carlile": 2.82e-07, + "carrefour": 2.82e-07, + "cartwheel": 2.82e-07, + "cascadia": 2.82e-07, + "catchphrases": 2.82e-07, + "cavite": 2.82e-07, + "caxton": 2.82e-07, + "cdf": 2.82e-07, + "centaurs": 2.82e-07, + "charlottetown": 2.82e-07, + "chauhan": 2.82e-07, + "checkups": 2.82e-07, + "chronos": 2.82e-07, + "chumps": 2.82e-07, + "cicely": 2.82e-07, + "cincy": 2.82e-07, + "citron": 2.82e-07, + "claudine": 2.82e-07, + "clef": 2.82e-07, + "clothesline": 2.82e-07, + "coarsely": 2.82e-07, + "codification": 2.82e-07, + "codon": 2.82e-07, + "coetzee": 2.82e-07, + "commending": 2.82e-07, + "conant": 2.82e-07, + "congregated": 2.82e-07, + "consortia": 2.82e-07, + "contusion": 2.82e-07, + "corazon": 2.82e-07, + "corns": 2.82e-07, + "corsican": 2.82e-07, + "cortina": 2.82e-07, + "couplers": 2.82e-07, + "cradling": 2.82e-07, + "cranny": 2.82e-07, + "cretin": 2.82e-07, + "crittenden": 2.82e-07, + "crosstown": 2.82e-07, + "ctl": 2.82e-07, + "cultivates": 2.82e-07, + "customisation": 2.82e-07, + "cyberattacks": 2.82e-07, + "dafuq": 2.82e-07, + "danielson": 2.82e-07, + "dashwood": 2.82e-07, + "datas": 8.32e-08, + "dayan": 2.82e-07, + "dcp": 2.82e-07, + "deadlocked": 2.82e-07, + "debrief": 2.82e-07, + "deflects": 2.82e-07, + "dehradun": 2.82e-07, + "delacroix": 2.82e-07, + "delbert": 2.82e-07, + "delighting": 2.82e-07, + "delimitation": 2.82e-07, + "delores": 2.82e-07, + "deniability": 2.82e-07, + "deplored": 2.82e-07, + "deployable": 2.82e-07, + "dereks": 2.82e-07, + "desertification": 2.82e-07, + "detonators": 2.82e-07, + "deviance": 2.82e-07, + "dialling": 2.82e-07, + "diastolic": 2.82e-07, + "dictum": 2.82e-07, + "dier": 2.82e-07, + "dima": 2.82e-07, + "disbursements": 2.82e-07, + "disclaimers": 2.82e-07, + "distro": 2.82e-07, + "disunity": 2.82e-07, + "dme": 2.82e-07, + "dnf": 2.82e-07, + "dof": 2.82e-07, + "dono": 2.82e-07, + "dop": 2.82e-07, + "dube": 2.82e-07, + "duller": 2.82e-07, + "ecliptic": 2.82e-07, + "effusive": 2.82e-07, + "egging": 2.82e-07, + "ekiti": 2.82e-07, + "elbowed": 2.82e-07, + "ellwood": 2.82e-07, + "elmwood": 2.82e-07, + "elohim": 2.82e-07, + "embalmed": 2.82e-07, + "embarassed": 2.82e-07, + "endocrinologist": 2.82e-07, + "ensconced": 2.82e-07, + "entrusting": 2.82e-07, + "envisages": 2.82e-07, + "equidistant": 2.82e-07, + "erbil": 2.82e-07, + "erectus": 2.82e-07, + "erodes": 2.82e-07, + "esb": 2.82e-07, + "esd": 2.82e-07, + "etymological": 2.82e-07, + "evangelistic": 2.82e-07, + "evgeny": 2.82e-07, + "exacted": 2.82e-07, + "excusable": 2.82e-07, + "expendables": 2.82e-07, + "extolling": 2.82e-07, + "extroverted": 2.82e-07, + "fane": 2.82e-07, + "fausto": 2.82e-07, + "faxes": 2.82e-07, + "feldspar": 2.82e-07, + "fellini": 2.82e-07, + "ferg": 2.82e-07, + "fianna": 2.82e-07, + "filer": 2.82e-07, + "finalise": 2.82e-07, + "finicky": 2.82e-07, + "firenze": 2.82e-07, + "flatbread": 2.82e-07, + "flexes": 2.82e-07, + "floridians": 2.82e-07, + "flynt": 2.82e-07, + "fonte": 2.82e-07, + "footscray": 2.82e-07, + "formers": 1.55e-07, + "formless": 2.82e-07, + "fossilised": 2.82e-07, + "foxconn": 2.82e-07, + "fractals": 2.82e-07, + "frankensteins": 2.82e-07, + "fredericks": 1.2e-07, + "fuhrer": 2.82e-07, + "gamepad": 2.82e-07, + "gameplan": 2.82e-07, + "gamora": 2.82e-07, + "gauri": 2.82e-07, + "gazillion": 2.82e-07, + "ghb": 2.82e-07, + "ghraib": 2.82e-07, + "giffords": 2.82e-07, + "glasgows": 2.82e-07, + "glazes": 2.82e-07, + "glutton": 2.82e-07, + "goldstone": 2.82e-07, + "goner": 2.82e-07, + "gongs": 2.82e-07, + "gorky": 2.82e-07, + "grantee": 2.82e-07, + "grata": 2.82e-07, + "grooving": 2.82e-07, + "guardrail": 2.82e-07, + "guerin": 2.82e-07, + "gulen": 2.82e-07, + "gunk": 2.82e-07, + "gz": 2.82e-07, + "haida": 2.82e-07, + "handers": 2.82e-07, + "handicapping": 2.82e-07, + "harries": 2.82e-07, + "harrigan": 2.82e-07, + "harwich": 2.82e-07, + "hasselhoff": 2.82e-07, + "hcc": 2.82e-07, + "hersh": 2.82e-07, + "heseltine": 2.82e-07, + "hikari": 2.82e-07, + "hisham": 2.82e-07, + "hitchcocks": 2.82e-07, + "hitches": 2.82e-07, + "hitmen": 2.82e-07, + "hogue": 2.82e-07, + "honeys": 1.15e-07, + "hoots": 2.82e-07, + "hotchkiss": 2.82e-07, + "housekeepers": 2.82e-07, + "hplc": 2.82e-07, + "hsr": 2.82e-07, + "humanize": 2.82e-07, + "hungerford": 2.82e-07, + "huo": 2.82e-07, + "hurries": 2.82e-07, + "hypnotism": 2.82e-07, + "hyrule": 2.82e-07, + "idd": 1.05e-07, + "ilia": 2.82e-07, + "illiberal": 2.82e-07, + "ilm": 2.82e-07, + "immunizations": 2.82e-07, + "impressionistic": 2.82e-07, + "infiltrates": 2.82e-07, + "initialize": 2.82e-07, + "internationalism": 2.82e-07, + "intersectionality": 2.82e-07, + "intertidal": 2.82e-07, + "intimates": 2.82e-07, + "ironwood": 2.82e-07, + "isoforms": 2.82e-07, + "jobe": 2.82e-07, + "johny": 2.82e-07, + "joubert": 2.82e-07, + "jsc": 2.82e-07, + "jstor": 2.82e-07, + "jyp": 2.82e-07, + "kaley": 2.82e-07, + "kargil": 2.82e-07, + "keeling": 2.82e-07, + "kelleher": 2.82e-07, + "keppel": 2.82e-07, + "kesler": 2.82e-07, + "kiddy": 2.82e-07, + "kidz": 2.82e-07, + "kiernan": 2.82e-07, + "kilowatts": 2.82e-07, + "kimble": 2.82e-07, + "kindled": 2.82e-07, + "kirkcaldy": 2.82e-07, + "kirsch": 2.82e-07, + "kleins": 2.82e-07, + "kleiner": 2.82e-07, + "knockin": 2.82e-07, + "kolb": 2.82e-07, + "kombucha": 2.82e-07, + "krabs": 2.82e-07, + "kray": 2.82e-07, + "krupp": 2.82e-07, + "kuma": 2.82e-07, + "labelle": 2.82e-07, + "lacklustre": 2.82e-07, + "lak": 2.82e-07, + "lattices": 2.82e-07, + "laymans": 2.82e-07, + "leake": 2.82e-07, + "legg": 2.82e-07, + "lesbianism": 2.82e-07, + "letterpress": 2.82e-07, + "lexis": 6.17e-08, + "lignin": 2.82e-07, + "limber": 2.82e-07, + "littlejohn": 2.82e-07, + "llb": 2.82e-07, + "localisation": 2.82e-07, + "locos": 2.82e-07, + "londoner": 2.82e-07, + "lonergan": 2.82e-07, + "longstreet": 2.82e-07, + "longwood": 2.82e-07, + "lucidity": 2.82e-07, + "lusting": 2.82e-07, + "lynns": 2.82e-07, + "macaques": 2.82e-07, + "macedonians": 2.82e-07, + "machen": 2.82e-07, + "macneil": 2.82e-07, + "mailers": 7.41e-08, + "majestically": 2.82e-07, + "malawian": 2.82e-07, + "mancuso": 2.82e-07, + "mantelpiece": 2.82e-07, + "marleys": 2.82e-07, + "massager": 2.82e-07, + "matchless": 2.82e-07, + "materialised": 2.82e-07, + "matterhorn": 2.82e-07, + "maus": 2.82e-07, + "maxilla": 2.82e-07, + "mcinnes": 2.82e-07, + "mckellen": 2.82e-07, + "mcvey": 2.82e-07, + "meanders": 2.82e-07, + "meerut": 2.82e-07, + "megabytes": 2.82e-07, + "mennonites": 2.82e-07, + "metalwork": 2.82e-07, + "microbiological": 2.82e-07, + "mikasa": 2.82e-07, + "milkweed": 2.82e-07, + "millenials": 2.82e-07, + "milligram": 2.82e-07, + "minimised": 2.82e-07, + "ministered": 2.82e-07, + "minoan": 2.82e-07, + "minstrels": 2.82e-07, + "mobius": 2.82e-07, + "moen": 2.82e-07, + "morgenstern": 2.82e-07, + "mortifying": 2.82e-07, + "mortons": 2.82e-07, + "motioned": 2.82e-07, + "motorcycling": 2.82e-07, + "mouldings": 2.82e-07, + "mtf": 2.82e-07, + "multibillion": 2.82e-07, + "multicellular": 2.82e-07, + "mutes": 2.82e-07, + "mutilate": 2.82e-07, + "mwc": 2.82e-07, + "mycelium": 2.82e-07, + "myfitnesspal": 2.82e-07, + "nagorno": 2.82e-07, + "natale": 2.82e-07, + "necropolis": 2.82e-07, + "negligently": 2.82e-07, + "nemanja": 2.82e-07, + "nepals": 2.82e-07, + "newgate": 2.82e-07, + "nig": 2.82e-07, + "nkrumah": 2.82e-07, + "noche": 2.82e-07, + "nokias": 2.82e-07, + "noncompliance": 2.82e-07, + "northcote": 2.82e-07, + "novus": 2.82e-07, + "nowell": 2.82e-07, + "nubia": 2.82e-07, + "nuit": 2.82e-07, + "numbed": 2.82e-07, + "nylons": 2.82e-07, + "nyquist": 2.82e-07, + "ocarina": 2.82e-07, + "octavio": 2.82e-07, + "odometer": 2.82e-07, + "offloading": 2.82e-07, + "ohl": 2.82e-07, + "optus": 2.82e-07, + "orthodontic": 2.82e-07, + "otf": 2.82e-07, + "outfitting": 2.82e-07, + "outperforms": 2.82e-07, + "outrages": 2.82e-07, + "overstating": 2.82e-07, + "pabst": 2.82e-07, + "paged": 2.82e-07, + "papas": 2.82e-07, + "pappu": 2.82e-07, + "parrott": 2.82e-07, + "pashto": 2.82e-07, + "pata": 2.82e-07, + "patriarchate": 2.82e-07, + "pav": 2.82e-07, + "penmanship": 2.82e-07, + "perc": 2.82e-07, + "perce": 2.82e-07, + "percussionist": 2.82e-07, + "perfunctory": 2.82e-07, + "petsmart": 2.82e-07, + "pfi": 2.82e-07, + "phenyl": 2.82e-07, + "philological": 2.82e-07, + "photojournalism": 2.82e-07, + "pickwick": 2.82e-07, + "pilbara": 2.82e-07, + "pinckney": 2.82e-07, + "pindar": 2.82e-07, + "piraeus": 2.82e-07, + "pitying": 2.82e-07, + "pixelated": 2.82e-07, + "plp": 2.82e-07, + "pluses": 2.82e-07, + "pok": 2.82e-07, + "poodles": 2.82e-07, + "poors": 1.2e-07, + "populus": 2.82e-07, + "portillo": 2.82e-07, + "prater": 2.82e-07, + "presidencies": 2.82e-07, + "prise": 2.82e-07, + "proline": 2.82e-07, + "prostheses": 2.82e-07, + "protestor": 2.82e-07, + "purim": 2.82e-07, + "putts": 2.82e-07, + "pva": 2.82e-07, + "pyotr": 2.82e-07, + "quartzite": 2.82e-07, + "quietness": 2.82e-07, + "rabi": 2.82e-07, + "radiologists": 2.82e-07, + "rak": 2.82e-07, + "rakhine": 2.82e-07, + "rakuten": 2.82e-07, + "ramayana": 2.82e-07, + "ramsgate": 2.82e-07, + "raring": 2.82e-07, + "reformatory": 2.82e-07, + "regi": 2.82e-07, + "reprinting": 2.82e-07, + "reprising": 2.82e-07, + "repudiate": 2.82e-07, + "resonators": 2.82e-07, + "restaurateurs": 2.82e-07, + "retinopathy": 2.82e-07, + "revelatory": 2.82e-07, + "rewire": 2.82e-07, + "rfi": 2.82e-07, + "rinaldo": 2.82e-07, + "ringtones": 2.82e-07, + "rinpoche": 2.82e-07, + "roadworks": 2.82e-07, + "rosedale": 2.82e-07, + "russet": 2.82e-07, + "saboteurs": 2.82e-07, + "salva": 2.82e-07, + "samplers": 2.82e-07, + "sceptics": 2.82e-07, + "scilly": 2.82e-07, + "scuff": 2.82e-07, + "scylla": 2.82e-07, + "sdc": 2.82e-07, + "sellin": 2.82e-07, + "servile": 2.82e-07, + "sesh": 2.82e-07, + "seths": 2.82e-07, + "shagging": 2.82e-07, + "shamanism": 2.82e-07, + "sheepdog": 2.82e-07, + "shivaji": 2.82e-07, + "shlomo": 2.82e-07, + "shoshone": 2.82e-07, + "shunting": 2.82e-07, + "shutouts": 2.82e-07, + "sibyl": 2.82e-07, + "sikes": 2.82e-07, + "silverton": 2.82e-07, + "simmered": 2.82e-07, + "simonds": 2.82e-07, + "skidmore": 2.82e-07, + "skokie": 2.82e-07, + "sku": 2.82e-07, + "slavers": 2.82e-07, + "slaving": 2.82e-07, + "smartwatches": 2.82e-07, + "smarty": 2.82e-07, + "smelters": 2.82e-07, + "snores": 2.82e-07, + "sohn": 2.82e-07, + "solent": 2.82e-07, + "soliloquy": 2.82e-07, + "someway": 2.82e-07, + "somthing": 2.82e-07, + "sonically": 2.82e-07, + "soothed": 2.82e-07, + "soylent": 2.82e-07, + "spats": 2.82e-07, + "specious": 2.82e-07, + "speight": 2.82e-07, + "spews": 2.82e-07, + "squeaked": 2.82e-07, + "staggers": 2.82e-07, + "stepsister": 2.82e-07, + "steubenville": 2.82e-07, + "stradivarius": 2.82e-07, + "strategize": 2.82e-07, + "streetlights": 2.82e-07, + "studebaker": 2.82e-07, + "sucre": 2.82e-07, + "superconductors": 2.82e-07, + "supremes": 2.82e-07, + "swatting": 2.82e-07, + "swf": 2.82e-07, + "switzer": 2.82e-07, + "synoptic": 2.82e-07, + "taha": 2.82e-07, + "tannin": 2.82e-07, + "tantalum": 2.82e-07, + "tati": 2.82e-07, + "telethon": 2.82e-07, + "tgs": 2.82e-07, + "therefrom": 2.82e-07, + "thracian": 2.82e-07, + "thumper": 2.82e-07, + "thundered": 2.82e-07, + "tilton": 2.82e-07, + "tithing": 2.82e-07, + "tmnt": 2.82e-07, + "tmo": 2.82e-07, + "tmr": 2.82e-07, + "tonality": 2.82e-07, + "topmost": 2.82e-07, + "transients": 2.82e-07, + "trembles": 2.82e-07, + "trowel": 2.82e-07, + "tshirts": 2.82e-07, + "turbans": 2.82e-07, + "tvn": 2.82e-07, + "tweety": 2.82e-07, + "twinkies": 2.82e-07, + "tz": 2.82e-07, + "unaccustomed": 2.82e-07, + "unawares": 2.82e-07, + "universalism": 2.82e-07, + "unlearn": 2.82e-07, + "unscrew": 2.82e-07, + "unsub": 2.82e-07, + "valance": 2.82e-07, + "ved": 2.82e-07, + "ventriloquist": 2.82e-07, + "verticals": 2.82e-07, + "vesper": 2.82e-07, + "vfr": 2.82e-07, + "vied": 2.82e-07, + "vig": 2.82e-07, + "viggo": 2.82e-07, + "vma": 2.82e-07, + "vociferous": 2.82e-07, + "voles": 2.82e-07, + "waders": 2.82e-07, + "wails": 2.82e-07, + "walford": 2.82e-07, + "wanderings": 2.82e-07, + "weft": 2.82e-07, + "weinberger": 2.82e-07, + "wellies": 2.82e-07, + "wester": 2.82e-07, + "wey": 2.82e-07, + "whereof": 2.82e-07, + "whirring": 2.82e-07, + "windings": 2.82e-07, + "winstons": 2.82e-07, + "witte": 2.82e-07, + "wollaston": 2.82e-07, + "woodall": 2.82e-07, + "workflows": 2.82e-07, + "worshipper": 2.82e-07, + "xb": 2.82e-07, + "xj": 2.82e-07, + "yaz": 2.82e-07, + "yosef": 2.82e-07, + "ytd": 2.82e-07, + "zachariah": 2.82e-07, + "zambezi": 2.82e-07, + "zapped": 2.82e-07, + "zippo": 2.82e-07, + "zirconium": 2.82e-07, + "zor": 2.82e-07, + "abbe": 2.75e-07, + "abrasives": 2.75e-07, + "absurdities": 2.75e-07, + "acad": 2.75e-07, + "academician": 2.75e-07, + "acetylene": 2.75e-07, + "acidosis": 2.75e-07, + "actuation": 2.75e-07, + "adani": 2.75e-07, + "adelaides": 2.75e-07, + "adrenergic": 2.75e-07, + "airbrushed": 2.75e-07, + "aliphatic": 2.75e-07, + "alkaloid": 2.75e-07, + "alles": 2.75e-07, + "altima": 2.75e-07, + "amano": 2.75e-07, + "amendola": 2.75e-07, + "amide": 2.75e-07, + "amjad": 2.75e-07, + "anesthetics": 2.75e-07, + "anika": 2.75e-07, + "annexes": 2.75e-07, + "anticancer": 2.75e-07, + "approximating": 2.75e-07, + "aqaba": 2.75e-07, + "arapahoe": 2.75e-07, + "ardently": 2.75e-07, + "ariza": 2.75e-07, + "armchairs": 2.75e-07, + "arrogantly": 2.75e-07, + "ashfield": 2.75e-07, + "assiduously": 2.75e-07, + "astronautics": 2.75e-07, + "asv": 2.75e-07, + "asw": 2.75e-07, + "atb": 2.75e-07, + "ayodhya": 2.75e-07, + "baggins": 2.75e-07, + "baltics": 2.75e-07, + "bamboozled": 2.75e-07, + "banderas": 2.75e-07, + "barroso": 2.75e-07, + "bassey": 2.75e-07, + "basso": 2.75e-07, + "bausch": 2.75e-07, + "beaconsfield": 2.75e-07, + "beatdown": 2.75e-07, + "beatz": 2.75e-07, + "beckford": 2.75e-07, + "belafonte": 2.75e-07, + "bendix": 2.75e-07, + "benelux": 2.75e-07, + "benjy": 2.75e-07, + "berate": 2.75e-07, + "biomechanical": 2.75e-07, + "bishkek": 2.75e-07, + "blithely": 2.75e-07, + "blockades": 2.75e-07, + "blockading": 2.75e-07, + "bloodlust": 2.75e-07, + "blotter": 2.75e-07, + "blowouts": 2.75e-07, + "bool": 2.75e-07, + "borisov": 2.75e-07, + "bowdoin": 2.75e-07, + "brabant": 2.75e-07, + "brambles": 2.75e-07, + "brayden": 2.75e-07, + "bremner": 2.75e-07, + "bridgwater": 2.75e-07, + "brigid": 2.75e-07, + "brimmed": 2.75e-07, + "brodeur": 2.75e-07, + "broil": 2.75e-07, + "brokaw": 2.75e-07, + "bromine": 2.75e-07, + "bucolic": 2.75e-07, + "bunga": 2.75e-07, + "bure": 2.75e-07, + "bushfires": 2.75e-07, + "buttresses": 2.75e-07, + "buyouts": 2.75e-07, + "calabar": 2.75e-07, + "calibrating": 2.75e-07, + "cals": 2.19e-07, + "calving": 2.75e-07, + "camara": 2.75e-07, + "cantata": 2.75e-07, + "carli": 2.75e-07, + "carlsberg": 2.75e-07, + "castlevania": 2.75e-07, + "centrelink": 2.75e-07, + "cer": 2.75e-07, + "cespedes": 2.75e-07, + "cest": 2.75e-07, + "chanced": 2.75e-07, + "channelling": 2.75e-07, + "charon": 2.75e-07, + "chartreuse": 2.75e-07, + "chowk": 2.75e-07, + "christmases": 2.75e-07, + "cilla": 2.75e-07, + "clapp": 2.75e-07, + "claro": 2.75e-07, + "cleland": 2.75e-07, + "cloudflare": 2.75e-07, + "cmi": 2.75e-07, + "cocksucker": 2.75e-07, + "codecs": 2.75e-07, + "colonialist": 2.75e-07, + "colter": 2.75e-07, + "combust": 2.75e-07, + "commercialism": 2.75e-07, + "compulsively": 2.75e-07, + "concretely": 2.75e-07, + "congruence": 2.75e-07, + "conseil": 2.75e-07, + "coochie": 2.75e-07, + "cosmonauts": 2.75e-07, + "cowles": 2.75e-07, + "cpsu": 2.75e-07, + "cruyff": 2.75e-07, + "culkin": 2.75e-07, + "cumulatively": 2.75e-07, + "customise": 2.75e-07, + "cve": 2.75e-07, + "cyanobacteria": 2.75e-07, + "cynics": 2.75e-07, + "daa": 2.75e-07, + "dall": 2.75e-07, + "dansk": 2.75e-07, + "darkseid": 2.75e-07, + "darkside": 2.75e-07, + "dato": 2.75e-07, + "dears": 2.75e-07, + "deflating": 2.75e-07, + "deflationary": 2.75e-07, + "delany": 2.75e-07, + "demigod": 2.75e-07, + "desantis": 2.75e-07, + "descents": 2.75e-07, + "desh": 2.75e-07, + "didst": 2.75e-07, + "dilate": 2.75e-07, + "discos": 5.13e-08, + "disinfecting": 2.75e-07, + "diuretics": 2.75e-07, + "dmk": 2.75e-07, + "dolled": 2.75e-07, + "dray": 2.75e-07, + "dtc": 2.75e-07, + "dukakis": 2.75e-07, + "duomo": 2.75e-07, + "duopoly": 2.75e-07, + "dynamos": 2.75e-07, + "edgardo": 2.75e-07, + "edgeworth": 2.75e-07, + "edifying": 2.75e-07, + "eggshells": 2.75e-07, + "ellesmere": 2.75e-07, + "emanated": 2.75e-07, + "emr": 2.75e-07, + "enslaving": 2.75e-07, + "entombed": 2.75e-07, + "epicentre": 2.75e-07, + "equivalently": 2.75e-07, + "erasers": 2.75e-07, + "etheridge": 2.75e-07, + "evaluators": 2.75e-07, + "evita": 2.75e-07, + "excitatory": 2.75e-07, + "eyepiece": 2.75e-07, + "facies": 2.75e-07, + "fau": 2.75e-07, + "feingold": 2.75e-07, + "fenix": 2.75e-07, + "fiddly": 2.75e-07, + "filo": 2.75e-07, + "fluvial": 2.75e-07, + "fnatic": 2.75e-07, + "foci": 2.75e-07, + "fomc": 2.75e-07, + "fop": 2.75e-07, + "forgoing": 2.75e-07, + "forme": 2.75e-07, + "forsberg": 2.75e-07, + "fourfold": 2.75e-07, + "fpv": 2.75e-07, + "frack": 2.75e-07, + "frankincense": 2.75e-07, + "freese": 2.75e-07, + "frere": 2.75e-07, + "ftm": 2.75e-07, + "futbol": 2.75e-07, + "galician": 2.75e-07, + "gambles": 5.75e-08, + "gasification": 2.75e-07, + "gass": 2.75e-07, + "gatlin": 2.75e-07, + "gav": 2.75e-07, + "gehrig": 2.75e-07, + "geosciences": 2.75e-07, + "gerbil": 2.75e-07, + "getters": 2.75e-07, + "geyer": 2.75e-07, + "giddings": 2.75e-07, + "gimmicky": 2.75e-07, + "gorgeously": 2.75e-07, + "gossamer": 2.75e-07, + "gramercy": 2.75e-07, + "grantees": 2.75e-07, + "greinke": 2.75e-07, + "grillo": 2.75e-07, + "gruel": 2.75e-07, + "gtp": 2.75e-07, + "gua": 2.75e-07, + "hakan": 2.75e-07, + "happenstance": 2.75e-07, + "harbouring": 2.75e-07, + "harkins": 2.75e-07, + "harolds": 2.75e-07, + "harried": 2.75e-07, + "harriers": 2.75e-07, + "hbs": 2.75e-07, + "headcount": 2.75e-07, + "heartthrob": 2.75e-07, + "heaved": 2.75e-07, + "hellas": 2.75e-07, + "helsing": 2.75e-07, + "helvetica": 2.75e-07, + "hesitantly": 2.75e-07, + "heuer": 2.75e-07, + "hmph": 2.75e-07, + "hoarders": 2.75e-07, + "hockney": 2.75e-07, + "hodgkins": 1.41e-07, + "holdout": 2.75e-07, + "honoree": 2.75e-07, + "horsley": 2.75e-07, + "hosni": 2.75e-07, + "humorist": 2.75e-07, + "hyaluronic": 2.75e-07, + "hydrates": 2.75e-07, + "hydrologic": 2.75e-07, + "hyphae": 2.75e-07, + "ident": 2.75e-07, + "idyll": 2.75e-07, + "ihr": 2.75e-07, + "ikon": 2.75e-07, + "illusionist": 2.75e-07, + "impeller": 2.75e-07, + "implantable": 2.75e-07, + "imt": 2.75e-07, + "inattentive": 2.75e-07, + "indent": 2.75e-07, + "indiscreet": 2.75e-07, + "indium": 2.75e-07, + "integrations": 2.75e-07, + "janos": 2.75e-07, + "jibe": 2.75e-07, + "joses": 2.75e-07, + "joule": 2.75e-07, + "jst": 2.75e-07, + "julians": 2.75e-07, + "kaitlin": 2.75e-07, + "kalashnikov": 2.75e-07, + "kaos": 2.75e-07, + "keef": 2.75e-07, + "kenzo": 2.75e-07, + "ketogenic": 2.75e-07, + "khawaja": 2.75e-07, + "kikuyu": 2.75e-07, + "kingsway": 2.75e-07, + "kishore": 2.75e-07, + "kissy": 2.75e-07, + "kitted": 2.75e-07, + "kiva": 2.75e-07, + "kneed": 2.75e-07, + "knickerbocker": 2.75e-07, + "knifed": 2.75e-07, + "koa": 2.75e-07, + "kony": 2.75e-07, + "kz": 2.75e-07, + "ladyboy": 2.75e-07, + "lamina": 2.75e-07, + "lanark": 2.75e-07, + "landes": 2.75e-07, + "landy": 2.75e-07, + "lapierre": 2.75e-07, + "lapointe": 2.75e-07, + "larks": 2.75e-07, + "lasse": 2.75e-07, + "leaver": 2.75e-07, + "leckie": 2.75e-07, + "lectern": 2.75e-07, + "leftwing": 2.75e-07, + "legionnaires": 2.75e-07, + "lemuel": 2.75e-07, + "leticia": 2.75e-07, + "lett": 2.75e-07, + "levying": 2.75e-07, + "leyla": 2.75e-07, + "limos": 2.75e-07, + "lindas": 2.75e-07, + "loach": 2.75e-07, + "loyally": 2.75e-07, + "luang": 2.75e-07, + "lulz": 2.75e-07, + "lurie": 2.75e-07, + "luttrell": 2.75e-07, + "lyall": 2.75e-07, + "lyles": 8.32e-08, + "macarena": 2.75e-07, + "maclaren": 2.75e-07, + "macrophage": 2.75e-07, + "magnetization": 2.75e-07, + "magnussen": 2.75e-07, + "mahayana": 2.75e-07, + "maketh": 2.75e-07, + "mangan": 2.75e-07, + "mariel": 2.75e-07, + "marionette": 2.75e-07, + "marouane": 2.75e-07, + "masochist": 2.75e-07, + "masturbated": 2.75e-07, + "mbappe": 2.75e-07, + "mccartneys": 2.75e-07, + "mckeon": 2.75e-07, + "mct": 2.75e-07, + "megyn": 2.75e-07, + "memorise": 2.75e-07, + "merrell": 2.75e-07, + "meshed": 2.75e-07, + "microcontroller": 2.75e-07, + "microfiber": 2.75e-07, + "milosevic": 2.75e-07, + "mimo": 2.75e-07, + "miserables": 2.75e-07, + "mismatches": 2.75e-07, + "mitterrand": 2.75e-07, + "moca": 2.75e-07, + "modulators": 2.75e-07, + "molesters": 2.75e-07, + "momento": 2.75e-07, + "morose": 2.75e-07, + "morte": 2.75e-07, + "mujeres": 2.75e-07, + "mukhtar": 2.75e-07, + "multilayer": 2.75e-07, + "multiplexing": 2.75e-07, + "multnomah": 2.75e-07, + "mungo": 2.75e-07, + "munition": 2.75e-07, + "nascars": 2.75e-07, + "naughton": 2.75e-07, + "negra": 2.75e-07, + "neruda": 2.75e-07, + "newquay": 2.75e-07, + "noes": 2.75e-07, + "nonce": 2.75e-07, + "nudges": 2.75e-07, + "numerology": 2.75e-07, + "obannon": 2.75e-07, + "odwyer": 2.75e-07, + "ocasio": 2.75e-07, + "olli": 2.75e-07, + "oncologists": 2.75e-07, + "ondo": 2.75e-07, + "oprahs": 2.75e-07, + "optimistically": 2.75e-07, + "orlov": 2.75e-07, + "orly": 2.75e-07, + "orme": 2.75e-07, + "oroville": 2.75e-07, + "ottawas": 2.75e-07, + "oud": 2.75e-07, + "outpaced": 2.75e-07, + "overdosing": 2.75e-07, + "overstepping": 2.75e-07, + "pacifists": 2.75e-07, + "paddies": 2.75e-07, + "paediatrics": 2.75e-07, + "pairwise": 2.75e-07, + "pally": 2.75e-07, + "param": 2.75e-07, + "parkman": 2.75e-07, + "peddlers": 2.75e-07, + "pedestals": 2.75e-07, + "pendragon": 2.75e-07, + "pentagons": 5.5e-08, + "permaculture": 2.75e-07, + "petronas": 2.75e-07, + "philbin": 2.75e-07, + "philosophic": 2.75e-07, + "phoneme": 2.75e-07, + "phonemic": 2.75e-07, + "physiologic": 2.75e-07, + "picassos": 5.25e-08, + "pimped": 2.75e-07, + "pkg": 2.75e-07, + "plebeian": 2.75e-07, + "ploughs": 2.75e-07, + "poindexter": 2.75e-07, + "popo": 2.75e-07, + "possums": 2.75e-07, + "precession": 2.75e-07, + "preempt": 2.75e-07, + "prefectural": 2.75e-07, + "prichard": 2.75e-07, + "primavera": 2.75e-07, + "propositional": 2.75e-07, + "publicists": 2.75e-07, + "pummeled": 2.75e-07, + "purina": 2.75e-07, + "qadri": 2.75e-07, + "quatre": 2.75e-07, + "quincey": 2.75e-07, + "racquetball": 2.75e-07, + "radiographic": 2.75e-07, + "railroading": 2.75e-07, + "ralphs": 1.05e-07, + "ramblers": 2.75e-07, + "ramiro": 2.75e-07, + "ranchi": 2.75e-07, + "rationalizing": 2.75e-07, + "rayo": 2.75e-07, + "raz": 2.75e-07, + "ream": 2.75e-07, + "rebeccas": 2.75e-07, + "redder": 2.75e-07, + "refractor": 2.75e-07, + "regrow": 2.75e-07, + "remotest": 2.75e-07, + "repels": 2.75e-07, + "repositioned": 2.75e-07, + "retorts": 2.75e-07, + "retrievers": 2.75e-07, + "reuter": 2.75e-07, + "revaluation": 2.75e-07, + "riflemen": 2.75e-07, + "riposte": 2.75e-07, + "rive": 2.75e-07, + "rls": 5.25e-08, + "roark": 2.75e-07, + "robbo": 2.75e-07, + "robertsons": 2.75e-07, + "rocketing": 2.75e-07, + "rockport": 2.75e-07, + "roden": 2.75e-07, + "rosales": 2.75e-07, + "rosemont": 2.75e-07, + "roubaix": 2.75e-07, + "rowlands": 7.76e-08, + "ruf": 2.75e-07, + "ryback": 2.75e-07, + "saddening": 2.75e-07, + "sailings": 2.75e-07, + "sainthood": 2.75e-07, + "salud": 2.75e-07, + "salutation": 2.75e-07, + "sandisk": 2.75e-07, + "sapper": 2.75e-07, + "scandinavians": 2.75e-07, + "sciatic": 2.75e-07, + "scopus": 2.75e-07, + "scotiabank": 2.75e-07, + "screwball": 2.75e-07, + "seale": 2.75e-07, + "sekai": 2.75e-07, + "selah": 2.75e-07, + "semantically": 2.75e-07, + "semple": 2.75e-07, + "serums": 2.75e-07, + "sessile": 2.75e-07, + "settee": 2.75e-07, + "shami": 2.75e-07, + "shannons": 2.75e-07, + "shastri": 2.75e-07, + "shelbyville": 2.75e-07, + "sherbrooke": 2.75e-07, + "shigeru": 2.75e-07, + "shogunate": 2.75e-07, + "shure": 2.75e-07, + "shylock": 2.75e-07, + "sidon": 2.75e-07, + "sikorsky": 2.75e-07, + "sindhu": 2.75e-07, + "singularities": 2.75e-07, + "skewered": 2.75e-07, + "skimmer": 2.75e-07, + "slaughterhouses": 2.75e-07, + "slivers": 2.75e-07, + "smithereens": 2.75e-07, + "smithson": 2.75e-07, + "snf": 2.75e-07, + "snorkelling": 2.75e-07, + "socials": 2.75e-07, + "sodden": 2.75e-07, + "soli": 2.75e-07, + "southall": 2.75e-07, + "specie": 2.75e-07, + "speechwriter": 2.75e-07, + "spillage": 2.75e-07, + "spiritualist": 2.75e-07, + "spo": 2.75e-07, + "srebrenica": 2.75e-07, + "srm": 2.75e-07, + "sso": 2.75e-07, + "stabilising": 2.75e-07, + "stalinism": 2.75e-07, + "steamships": 2.75e-07, + "stiglitz": 2.75e-07, + "stinker": 2.75e-07, + "stipends": 2.75e-07, + "stirrup": 2.75e-07, + "stockdale": 2.75e-07, + "strangler": 2.75e-07, + "strasser": 2.75e-07, + "subgenre": 2.75e-07, + "subplots": 2.75e-07, + "succumbs": 2.75e-07, + "sultanate": 2.75e-07, + "sunlit": 2.75e-07, + "superbike": 2.75e-07, + "supers": 2.75e-07, + "suppressive": 2.75e-07, + "suva": 2.75e-07, + "swoops": 2.75e-07, + "synchronicity": 2.75e-07, + "syncs": 2.75e-07, + "syrah": 2.75e-07, + "tabular": 2.75e-07, + "tawdry": 2.75e-07, + "technics": 2.75e-07, + "temecula": 2.75e-07, + "thalamus": 2.75e-07, + "thibault": 2.75e-07, + "threshing": 2.75e-07, + "throngs": 2.75e-07, + "thwaites": 2.75e-07, + "tigre": 2.75e-07, + "timex": 2.75e-07, + "tns": 2.75e-07, + "torchlight": 2.75e-07, + "touristic": 2.75e-07, + "transl": 2.75e-07, + "transom": 2.75e-07, + "transsexuals": 2.75e-07, + "trigonometric": 2.75e-07, + "tunics": 2.75e-07, + "tuple": 2.75e-07, + "tupper": 2.75e-07, + "twiggy": 2.75e-07, + "typefaces": 2.75e-07, + "tysons": 1.62e-07, + "uic": 2.75e-07, + "uncountable": 2.75e-07, + "unearthly": 2.75e-07, + "unfashionable": 2.75e-07, + "unlit": 2.75e-07, + "unpainted": 2.75e-07, + "unpaved": 2.75e-07, + "updike": 2.75e-07, + "usagi": 2.75e-07, + "vandalised": 2.75e-07, + "vanya": 2.75e-07, + "vba": 2.75e-07, + "velour": 2.75e-07, + "verbose": 2.75e-07, + "verging": 2.75e-07, + "vespers": 2.75e-07, + "vilify": 2.75e-07, + "virility": 2.75e-07, + "wahhabi": 2.75e-07, + "walsingham": 2.75e-07, + "wam": 2.75e-07, + "warps": 2.75e-07, + "wasatch": 2.75e-07, + "weeden": 2.75e-07, + "weightlifter": 2.75e-07, + "westley": 2.75e-07, + "wilber": 2.75e-07, + "wildlings": 2.75e-07, + "wilford": 2.75e-07, + "windswept": 2.75e-07, + "winsor": 2.75e-07, + "wisps": 2.75e-07, + "wod": 2.75e-07, + "woodcuts": 2.75e-07, + "wozniacki": 2.75e-07, + "wrested": 2.75e-07, + "xiamen": 2.75e-07, + "yamazaki": 2.75e-07, + "yogyakarta": 2.75e-07, + "yohan": 2.75e-07, + "zakaria": 2.75e-07, + "zakir": 2.75e-07, + "zoltan": 2.75e-07, + "zookeeper": 2.75e-07, + "abbots": 6.17e-08, + "abcd": 2.69e-07, + "abramovich": 2.69e-07, + "absolutes": 2.69e-07, + "acheson": 2.69e-07, + "acknowledgements": 2.69e-07, + "acoustically": 2.69e-07, + "adelson": 2.69e-07, + "affine": 2.69e-07, + "afflict": 2.69e-07, + "agee": 2.69e-07, + "agronomy": 2.69e-07, + "ahern": 2.69e-07, + "aic": 2.69e-07, + "alexandrian": 2.69e-07, + "alhaji": 2.69e-07, + "alka": 2.69e-07, + "allegany": 2.69e-07, + "amerika": 2.69e-07, + "andriy": 2.69e-07, + "anp": 2.69e-07, + "anushka": 2.69e-07, + "apotheosis": 2.69e-07, + "arron": 2.69e-07, + "arti": 2.69e-07, + "astrazeneca": 2.69e-07, + "aught": 2.69e-07, + "augie": 2.69e-07, + "aurelio": 2.69e-07, + "autologous": 2.69e-07, + "ayo": 2.69e-07, + "babylonians": 2.69e-07, + "backcourt": 2.69e-07, + "bagh": 2.69e-07, + "bandmate": 2.69e-07, + "bantamweight": 2.69e-07, + "barrens": 2.69e-07, + "barty": 2.69e-07, + "bassline": 2.69e-07, + "bataan": 2.69e-07, + "bechtel": 2.69e-07, + "beetlejuice": 2.69e-07, + "belay": 2.69e-07, + "bellinger": 2.69e-07, + "belter": 2.69e-07, + "benzodiazepine": 2.69e-07, + "beths": 2.69e-07, + "bethnal": 2.69e-07, + "biomaterials": 2.69e-07, + "birthdate": 2.69e-07, + "blackett": 2.69e-07, + "blacklisting": 2.69e-07, + "blankenship": 2.69e-07, + "blanking": 2.69e-07, + "blogspot": 2.69e-07, + "bloop": 2.69e-07, + "bluesy": 2.69e-07, + "bobsled": 2.69e-07, + "bonk": 2.69e-07, + "borland": 2.69e-07, + "botticelli": 2.69e-07, + "boudreau": 2.69e-07, + "boylston": 2.69e-07, + "brae": 2.69e-07, + "brawler": 2.69e-07, + "brenna": 2.69e-07, + "brokering": 2.69e-07, + "buffed": 2.69e-07, + "bullitt": 2.69e-07, + "bungled": 2.69e-07, + "bunn": 2.69e-07, + "bunsen": 2.69e-07, + "burdett": 2.69e-07, + "burl": 2.69e-07, + "buscemi": 2.69e-07, + "bushland": 2.69e-07, + "bustin": 2.69e-07, + "cafeterias": 2.69e-07, + "calamitous": 2.69e-07, + "calgarys": 2.69e-07, + "canard": 2.69e-07, + "capitalised": 2.69e-07, + "caraway": 2.69e-07, + "cardozo": 2.69e-07, + "castleford": 2.69e-07, + "catatonic": 2.69e-07, + "causally": 2.69e-07, + "ccf": 2.69e-07, + "cenozoic": 2.69e-07, + "centerville": 2.69e-07, + "centrifuges": 2.69e-07, + "cerevisiae": 2.69e-07, + "cgs": 2.69e-07, + "chiaki": 2.69e-07, + "chon": 2.69e-07, + "chromebooks": 2.69e-07, + "chrysostom": 2.69e-07, + "circuitous": 2.69e-07, + "clamouring": 2.69e-07, + "clin": 2.69e-07, + "cloistered": 2.69e-07, + "commonwealths": 1.29e-07, + "commutation": 2.69e-07, + "concoct": 2.69e-07, + "conners": 8.51e-08, + "contoured": 2.69e-07, + "cooing": 2.69e-07, + "corbyns": 2.69e-07, + "cordoned": 2.69e-07, + "cori": 2.69e-07, + "costar": 2.69e-07, + "coster": 2.69e-07, + "cotto": 2.69e-07, + "creedence": 2.69e-07, + "creosote": 2.69e-07, + "crumbly": 2.69e-07, + "cubits": 2.69e-07, + "cultists": 2.69e-07, + "curio": 2.69e-07, + "cushioning": 2.69e-07, + "cust": 2.69e-07, + "cuzco": 2.69e-07, + "dakotas": 2.51e-07, + "damons": 2.69e-07, + "danni": 2.69e-07, + "dative": 2.69e-07, + "dcf": 2.69e-07, + "deadman": 2.69e-07, + "deathstroke": 2.69e-07, + "decentralisation": 2.69e-07, + "decolonization": 2.69e-07, + "defused": 2.69e-07, + "deke": 2.69e-07, + "deliverable": 2.69e-07, + "deluca": 2.69e-07, + "dendrites": 2.69e-07, + "deplore": 2.69e-07, + "depressingly": 2.69e-07, + "destitution": 2.69e-07, + "deville": 2.69e-07, + "dhamma": 2.69e-07, + "dili": 2.69e-07, + "dilma": 2.69e-07, + "dinh": 2.69e-07, + "disclaim": 2.69e-07, + "disillusion": 2.69e-07, + "distinctiveness": 2.69e-07, + "doldrums": 2.69e-07, + "dooku": 2.69e-07, + "dougal": 2.69e-07, + "dovetail": 2.69e-07, + "dramatization": 2.69e-07, + "dred": 2.69e-07, + "dressy": 2.69e-07, + "drews": 9.33e-08, + "dubais": 2.69e-07, + "dumbing": 2.69e-07, + "dunhill": 2.69e-07, + "durkin": 2.69e-07, + "eardrum": 2.69e-07, + "eastlake": 2.69e-07, + "ebt": 2.69e-07, + "ecotourism": 2.69e-07, + "elis": 2.19e-07, + "ellicott": 2.69e-07, + "ellipsis": 2.69e-07, + "elvish": 2.69e-07, + "emoticon": 2.69e-07, + "empathise": 2.69e-07, + "emporia": 2.69e-07, + "encroached": 2.69e-07, + "encyclical": 2.69e-07, + "endeavored": 2.69e-07, + "endow": 2.69e-07, + "eschatology": 2.69e-07, + "evp": 2.69e-07, + "extorting": 2.69e-07, + "falun": 2.69e-07, + "fawlty": 2.69e-07, + "fearfully": 2.69e-07, + "felines": 2.69e-07, + "firma": 2.69e-07, + "fishin": 2.69e-07, + "flemings": 1.02e-07, + "folksy": 2.69e-07, + "fontainebleau": 2.69e-07, + "foramen": 2.69e-07, + "forecaster": 2.69e-07, + "forfeiting": 2.69e-07, + "formica": 2.69e-07, + "fosse": 2.69e-07, + "freemason": 2.69e-07, + "fron": 2.69e-07, + "frontpage": 2.69e-07, + "frum": 2.69e-07, + "functionalities": 2.69e-07, + "fundraise": 2.69e-07, + "funimation": 2.69e-07, + "gardenia": 2.69e-07, + "gazetteer": 2.69e-07, + "germanium": 2.69e-07, + "gianna": 2.69e-07, + "gild": 2.69e-07, + "glasshouse": 2.69e-07, + "gleeful": 2.69e-07, + "gluck": 2.69e-07, + "goggle": 2.69e-07, + "goldfinch": 2.69e-07, + "goldin": 2.69e-07, + "gord": 2.69e-07, + "grasps": 2.69e-07, + "greenest": 2.69e-07, + "guangxi": 2.69e-07, + "gutman": 2.69e-07, + "hairdryer": 2.69e-07, + "harmlessly": 2.69e-07, + "hasegawa": 2.69e-07, + "hawkish": 2.69e-07, + "hazlitt": 2.69e-07, + "heightening": 2.69e-07, + "heightens": 2.69e-07, + "hema": 2.69e-07, + "hemodialysis": 2.69e-07, + "hensley": 2.69e-07, + "heung": 2.69e-07, + "hewson": 2.69e-07, + "hia": 2.69e-07, + "hieroglyphs": 2.69e-07, + "hitchhikers": 2.09e-07, + "hofstra": 2.69e-07, + "holdup": 2.69e-07, + "honked": 2.69e-07, + "hossain": 2.69e-07, + "hotlines": 2.69e-07, + "hotmail": 2.69e-07, + "hoverboard": 2.69e-07, + "hrd": 2.69e-07, + "humdrum": 2.69e-07, + "hunker": 2.69e-07, + "huy": 2.69e-07, + "ibu": 2.69e-07, + "icicle": 2.69e-07, + "ikeda": 2.69e-07, + "imager": 2.69e-07, + "imbalanced": 2.69e-07, + "impartially": 2.69e-07, + "impermeable": 2.69e-07, + "implanting": 2.69e-07, + "imprinting": 2.69e-07, + "inbetweeners": 2.69e-07, + "inborn": 2.69e-07, + "inductance": 2.69e-07, + "infallibility": 2.69e-07, + "infiltrators": 2.69e-07, + "inglorious": 2.69e-07, + "initialized": 2.69e-07, + "institutionalised": 2.69e-07, + "interstates": 2.69e-07, + "ints": 2.69e-07, + "iqs": 8.71e-08, + "ironies": 2.69e-07, + "irritants": 2.69e-07, + "isidore": 2.69e-07, + "italo": 2.69e-07, + "itm": 2.69e-07, + "izzo": 2.69e-07, + "jaan": 2.69e-07, + "jabbing": 2.69e-07, + "jadeja": 2.69e-07, + "janey": 2.69e-07, + "japonica": 2.69e-07, + "jarl": 2.69e-07, + "jeering": 2.69e-07, + "jessa": 2.69e-07, + "jokey": 2.69e-07, + "josephson": 2.69e-07, + "jostling": 2.69e-07, + "jungian": 2.69e-07, + "kagame": 2.69e-07, + "kakashi": 2.69e-07, + "kamp": 2.69e-07, + "kanata": 2.69e-07, + "kaori": 2.69e-07, + "kava": 2.69e-07, + "kellen": 2.69e-07, + "kem": 2.69e-07, + "keno": 2.69e-07, + "keren": 2.69e-07, + "knockers": 2.69e-07, + "korver": 2.69e-07, + "kostas": 2.69e-07, + "kou": 2.69e-07, + "krone": 2.69e-07, + "kuching": 2.69e-07, + "kudo": 2.69e-07, + "kui": 2.69e-07, + "kwa": 2.69e-07, + "labyrinthine": 2.69e-07, + "lahey": 2.69e-07, + "lambasted": 2.69e-07, + "lanzarote": 2.69e-07, + "lapels": 2.69e-07, + "laryngeal": 2.69e-07, + "lavery": 2.69e-07, + "laxmi": 2.69e-07, + "lbw": 2.69e-07, + "leaguer": 2.69e-07, + "leant": 2.69e-07, + "legalise": 2.69e-07, + "lela": 2.69e-07, + "lemongrass": 2.69e-07, + "leucine": 2.69e-07, + "lidia": 2.69e-07, + "lineal": 2.69e-07, + "lipman": 2.69e-07, + "litigate": 2.69e-07, + "livre": 2.69e-07, + "lloris": 2.69e-07, + "lockes": 2.69e-07, + "lockport": 2.69e-07, + "logins": 2.69e-07, + "longchamp": 2.69e-07, + "lubricate": 2.69e-07, + "lue": 2.69e-07, + "lugar": 2.69e-07, + "luminescent": 2.69e-07, + "lundgren": 2.69e-07, + "luthers": 2.69e-07, + "lysis": 2.69e-07, + "maar": 2.69e-07, + "macaque": 2.69e-07, + "machin": 2.69e-07, + "mackinac": 2.69e-07, + "madcap": 2.69e-07, + "maeda": 2.69e-07, + "maggi": 2.69e-07, + "mahendra": 2.69e-07, + "mainstays": 2.69e-07, + "mainwaring": 2.69e-07, + "malformation": 2.69e-07, + "manes": 4.9e-08, + "maquis": 2.69e-07, + "maritimes": 2.69e-07, + "marte": 2.69e-07, + "matric": 2.69e-07, + "mayall": 2.69e-07, + "mccaw": 2.69e-07, + "medan": 2.69e-07, + "mentalist": 2.69e-07, + "meso": 2.69e-07, + "metrical": 2.69e-07, + "micrometers": 2.69e-07, + "migos": 2.69e-07, + "mili": 2.69e-07, + "minder": 2.69e-07, + "mip": 2.69e-07, + "mirandas": 2.69e-07, + "misquoted": 2.69e-07, + "mmhg": 2.69e-07, + "mobley": 2.69e-07, + "moldings": 2.69e-07, + "mooch": 2.69e-07, + "morissette": 2.69e-07, + "morrill": 2.69e-07, + "mouldy": 2.69e-07, + "munger": 2.69e-07, + "munk": 2.69e-07, + "murph": 2.69e-07, + "museveni": 2.69e-07, + "musicality": 2.69e-07, + "musique": 2.69e-07, + "musky": 2.69e-07, + "muss": 2.69e-07, + "mwh": 2.69e-07, + "nablus": 2.69e-07, + "naf": 2.69e-07, + "nagaland": 2.69e-07, + "nando": 2.69e-07, + "nanomaterials": 2.69e-07, + "nassar": 2.69e-07, + "nastier": 2.69e-07, + "nata": 2.69e-07, + "nates": 6.76e-08, + "neem": 2.69e-07, + "neuman": 2.69e-07, + "neutralise": 2.69e-07, + "newland": 2.69e-07, + "nikolas": 2.69e-07, + "nimoy": 2.69e-07, + "nissen": 2.69e-07, + "noona": 2.69e-07, + "noosa": 2.69e-07, + "northam": 2.69e-07, + "nour": 2.69e-07, + "ntv": 2.69e-07, + "nycs": 2.69e-07, + "obrian": 2.69e-07, + "omeara": 2.69e-07, + "oca": 2.69e-07, + "octopuses": 2.69e-07, + "oms": 2.69e-07, + "onesies": 2.69e-07, + "oodles": 2.69e-07, + "orifices": 2.69e-07, + "ostriches": 2.69e-07, + "oto": 2.69e-07, + "overslept": 2.69e-07, + "oversupply": 2.69e-07, + "overwrite": 2.69e-07, + "painterly": 2.69e-07, + "palawan": 2.69e-07, + "pana": 2.69e-07, + "panna": 2.69e-07, + "pansies": 2.69e-07, + "paperless": 2.69e-07, + "patchouli": 2.69e-07, + "pearse": 2.69e-07, + "pelting": 2.69e-07, + "perennially": 2.69e-07, + "perforations": 2.69e-07, + "pericles": 2.69e-07, + "petted": 2.69e-07, + "pharm": 2.69e-07, + "physicals": 2.69e-07, + "planed": 2.69e-07, + "plasmids": 2.69e-07, + "playmakers": 2.69e-07, + "plein": 2.69e-07, + "poetically": 2.69e-07, + "pohl": 2.69e-07, + "politique": 2.69e-07, + "pollinate": 2.69e-07, + "polymorphic": 2.69e-07, + "pomegranates": 2.69e-07, + "preds": 2.69e-07, + "professorial": 2.69e-07, + "propofol": 2.69e-07, + "psalter": 2.69e-07, + "pwr": 2.69e-07, + "qed": 2.69e-07, + "quaking": 2.69e-07, + "quando": 2.69e-07, + "quasar": 2.69e-07, + "quickening": 2.69e-07, + "qvc": 2.69e-07, + "rafale": 2.69e-07, + "rager": 2.69e-07, + "rainmaker": 2.69e-07, + "ramsays": 2.69e-07, + "ramshackle": 2.69e-07, + "ranbir": 2.69e-07, + "randoms": 2.69e-07, + "rcm": 2.69e-07, + "redecorating": 2.69e-07, + "reenter": 2.69e-07, + "reformulated": 2.69e-07, + "refrains": 2.69e-07, + "rehired": 2.69e-07, + "rend": 2.69e-07, + "renzi": 2.69e-07, + "repos": 2.69e-07, + "resistivity": 2.69e-07, + "resourced": 2.69e-07, + "ridgefield": 2.69e-07, + "rien": 2.69e-07, + "rightist": 2.69e-07, + "ringers": 2.69e-07, + "ripoff": 2.69e-07, + "rippled": 2.69e-07, + "risque": 2.69e-07, + "robed": 2.69e-07, + "romulan": 2.69e-07, + "romy": 2.69e-07, + "rowntree": 2.69e-07, + "rrsp": 2.69e-07, + "rugrats": 2.69e-07, + "ruthie": 2.69e-07, + "sacrilegious": 2.69e-07, + "sacrosanct": 2.69e-07, + "sancti": 2.69e-07, + "sandbag": 2.69e-07, + "sated": 2.69e-07, + "scabies": 2.69e-07, + "scania": 2.69e-07, + "scatters": 2.69e-07, + "scf": 2.69e-07, + "schadenfreude": 2.69e-07, + "schaumburg": 2.69e-07, + "schleswig": 2.69e-07, + "searcher": 2.69e-07, + "sevenoaks": 2.69e-07, + "shakeup": 2.69e-07, + "sheaves": 2.69e-07, + "shinichi": 2.69e-07, + "sigourney": 2.69e-07, + "sigrid": 2.69e-07, + "silvester": 2.69e-07, + "singe": 2.69e-07, + "skateboarder": 2.69e-07, + "skynyrd": 2.69e-07, + "skytrain": 2.69e-07, + "slurring": 2.69e-07, + "smokehouse": 2.69e-07, + "snowmen": 2.69e-07, + "soir": 2.69e-07, + "solicitations": 2.69e-07, + "songbirds": 2.69e-07, + "soonest": 2.69e-07, + "soundproof": 2.69e-07, + "southfield": 2.69e-07, + "spacewalk": 2.69e-07, + "spay": 2.69e-07, + "sprig": 2.69e-07, + "sprigs": 2.69e-07, + "spyro": 2.69e-07, + "srl": 2.69e-07, + "steppin": 2.69e-07, + "steuben": 2.69e-07, + "stimson": 2.69e-07, + "stine": 2.69e-07, + "stockmarket": 2.69e-07, + "straddled": 2.69e-07, + "strava": 2.69e-07, + "streatham": 2.69e-07, + "stuttered": 2.69e-07, + "sudans": 2.69e-07, + "sudo": 2.69e-07, + "suet": 2.69e-07, + "sunburned": 2.69e-07, + "supremo": 2.69e-07, + "sutras": 2.69e-07, + "swatted": 2.69e-07, + "sways": 2.69e-07, + "swum": 2.69e-07, + "tablecloths": 2.69e-07, + "tallow": 2.69e-07, + "talmudic": 2.69e-07, + "tamoxifen": 2.69e-07, + "tardiness": 2.69e-07, + "tarry": 2.69e-07, + "tartarus": 2.69e-07, + "tates": 9.77e-08, + "teeter": 2.69e-07, + "tei": 2.69e-07, + "telomeres": 2.69e-07, + "temporally": 2.69e-07, + "testis": 2.69e-07, + "teva": 2.69e-07, + "theatrically": 2.69e-07, + "thibaut": 2.69e-07, + "thistles": 2.69e-07, + "threadbare": 2.69e-07, + "tigray": 2.69e-07, + "tir": 2.69e-07, + "tolman": 2.69e-07, + "tomasz": 2.69e-07, + "toughened": 2.69e-07, + "tourettes": 8.51e-08, + "toyo": 2.69e-07, + "trae": 2.69e-07, + "transgendered": 2.69e-07, + "transliteration": 2.69e-07, + "tremaine": 2.69e-07, + "tren": 2.69e-07, + "trilateral": 2.69e-07, + "trini": 2.69e-07, + "truant": 2.69e-07, + "trudged": 2.69e-07, + "truex": 2.69e-07, + "tseng": 2.69e-07, + "tudors": 2.69e-07, + "turnstiles": 2.69e-07, + "twi": 2.69e-07, + "tyndale": 2.69e-07, + "udo": 2.69e-07, + "ummmm": 2.69e-07, + "umno": 2.69e-07, + "unblemished": 2.69e-07, + "uncircumcised": 2.69e-07, + "underemployed": 2.69e-07, + "undertow": 2.69e-07, + "unmasking": 2.69e-07, + "unravelling": 2.69e-07, + "unshakable": 2.69e-07, + "vagrants": 2.69e-07, + "varela": 2.69e-07, + "verbiage": 2.69e-07, + "voigt": 2.69e-07, + "vostok": 2.69e-07, + "vulcans": 2.69e-07, + "wacker": 2.69e-07, + "wailed": 2.69e-07, + "waleed": 2.69e-07, + "waterville": 2.69e-07, + "weakling": 2.69e-07, + "webpages": 2.69e-07, + "weightlessness": 2.69e-07, + "weis": 7.41e-08, + "welland": 2.69e-07, + "willcox": 2.69e-07, + "windpipe": 2.69e-07, + "wks": 2.69e-07, + "wma": 2.69e-07, + "yarder": 2.69e-07, + "yelena": 2.69e-07, + "ypsilanti": 2.69e-07, + "yurt": 2.69e-07, + "yusuke": 2.69e-07, + "zweig": 2.69e-07, + "abbys": 2.63e-07, + "abhi": 2.63e-07, + "abington": 2.63e-07, + "abscesses": 2.63e-07, + "accutane": 2.63e-07, + "acquiesced": 2.63e-07, + "actu": 2.63e-07, + "addington": 2.63e-07, + "adha": 2.63e-07, + "adn": 2.63e-07, + "adolphe": 2.63e-07, + "afore": 2.63e-07, + "afzal": 2.63e-07, + "ahah": 2.63e-07, + "ainsley": 2.63e-07, + "alena": 2.63e-07, + "aliyev": 2.63e-07, + "alums": 2.63e-07, + "alwyn": 2.63e-07, + "amf": 2.63e-07, + "androgens": 2.63e-07, + "anecdotally": 2.63e-07, + "anticoagulant": 2.63e-07, + "antipsychotics": 2.63e-07, + "antonov": 2.63e-07, + "appellants": 5.37e-08, + "apprehending": 2.63e-07, + "aqueducts": 2.63e-07, + "aquitaine": 2.63e-07, + "arabica": 2.63e-07, + "arbitral": 2.63e-07, + "archeologist": 2.63e-07, + "ardennes": 2.63e-07, + "arndt": 2.63e-07, + "aromatics": 2.63e-07, + "artic": 2.63e-07, + "asshat": 2.63e-07, + "astrocytes": 2.63e-07, + "aubry": 2.63e-07, + "awakes": 2.63e-07, + "awami": 2.63e-07, + "backwaters": 2.63e-07, + "baha": 2.63e-07, + "baikal": 2.63e-07, + "bakker": 2.63e-07, + "bakshi": 2.63e-07, + "ballymena": 2.63e-07, + "banality": 2.63e-07, + "barangay": 2.63e-07, + "barbarossa": 2.63e-07, + "basilisk": 2.63e-07, + "bazaars": 2.63e-07, + "bbe": 2.63e-07, + "benetton": 2.63e-07, + "benue": 2.63e-07, + "bergdahl": 2.63e-07, + "betrayals": 2.63e-07, + "bettie": 2.63e-07, + "bint": 2.63e-07, + "biologics": 2.63e-07, + "biopharmaceutical": 2.63e-07, + "bipedal": 2.63e-07, + "bitmap": 2.63e-07, + "blackmon": 2.63e-07, + "blas": 2.63e-07, + "blinkers": 2.63e-07, + "blooper": 2.63e-07, + "bludgeoned": 2.63e-07, + "boggy": 2.63e-07, + "boners": 2.63e-07, + "boogers": 2.63e-07, + "booklist": 2.63e-07, + "bracknell": 2.63e-07, + "brainard": 2.63e-07, + "breakable": 2.63e-07, + "breathlessly": 2.63e-07, + "brescia": 2.63e-07, + "brubaker": 2.63e-07, + "bulldozed": 2.63e-07, + "burgesses": 2.63e-07, + "buzzes": 2.63e-07, + "byzantines": 2.63e-07, + "cadmus": 2.63e-07, + "calibers": 2.63e-07, + "canaanite": 2.63e-07, + "carbons": 2.63e-07, + "cardin": 2.63e-07, + "cardoso": 2.63e-07, + "carting": 2.63e-07, + "castello": 2.63e-07, + "castilian": 2.63e-07, + "catastrophically": 2.63e-07, + "catriona": 2.63e-07, + "centrals": 7.76e-08, + "centralize": 2.63e-07, + "cession": 2.63e-07, + "chadian": 2.63e-07, + "chakraborty": 2.63e-07, + "chamonix": 2.63e-07, + "chaplaincy": 2.63e-07, + "cheong": 2.63e-07, + "chided": 2.63e-07, + "chippendale": 2.63e-07, + "churchman": 2.63e-07, + "claymore": 2.63e-07, + "cocteau": 2.63e-07, + "coercing": 2.63e-07, + "collate": 2.63e-07, + "colonia": 2.63e-07, + "colonic": 2.63e-07, + "commissariat": 2.63e-07, + "compacts": 2.63e-07, + "condi": 2.63e-07, + "conic": 2.63e-07, + "consecrate": 2.63e-07, + "contingents": 2.63e-07, + "conways": 2.63e-07, + "corinna": 2.63e-07, + "corrector": 2.63e-07, + "corticosteroid": 2.63e-07, + "corvus": 2.63e-07, + "counterparty": 2.63e-07, + "crier": 2.63e-07, + "cringeworthy": 2.63e-07, + "cuckoos": 1.7e-07, + "cuda": 2.63e-07, + "danby": 2.63e-07, + "datta": 2.63e-07, + "dau": 2.63e-07, + "ddp": 2.63e-07, + "deena": 2.63e-07, + "deion": 2.63e-07, + "demeter": 2.63e-07, + "demille": 2.63e-07, + "denigrating": 2.63e-07, + "denouement": 2.63e-07, + "dines": 2.63e-07, + "dissociated": 2.63e-07, + "divisor": 2.63e-07, + "dixons": 1.2e-07, + "doane": 2.63e-07, + "donovans": 2.63e-07, + "dorcas": 2.63e-07, + "dorsett": 2.63e-07, + "dosent": 1.2e-07, + "dower": 2.63e-07, + "draughtsman": 2.63e-07, + "ductile": 2.63e-07, + "duelling": 2.63e-07, + "duk": 2.63e-07, + "eardrums": 2.63e-07, + "earthworm": 2.63e-07, + "ebbing": 2.63e-07, + "eberhard": 2.63e-07, + "ecchi": 2.63e-07, + "eccleston": 2.63e-07, + "eclampsia": 2.63e-07, + "emmanuelle": 2.63e-07, + "employable": 2.63e-07, + "encino": 2.63e-07, + "enmeshed": 2.63e-07, + "enquiring": 2.63e-07, + "equips": 2.63e-07, + "erb": 2.63e-07, + "estrogens": 2.63e-07, + "euphemisms": 2.63e-07, + "evades": 2.63e-07, + "evicting": 2.63e-07, + "ewald": 2.63e-07, + "exaggerations": 2.63e-07, + "exertions": 2.63e-07, + "exhaustively": 2.63e-07, + "exhibitionist": 2.63e-07, + "exhorted": 2.63e-07, + "faun": 2.63e-07, + "felder": 2.63e-07, + "ferraro": 2.63e-07, + "ferrier": 2.63e-07, + "fertilisers": 2.63e-07, + "festa": 2.63e-07, + "ficus": 2.63e-07, + "fieldhouse": 2.63e-07, + "fieri": 2.63e-07, + "fils": 2.63e-07, + "fiore": 2.63e-07, + "fitters": 2.63e-07, + "fleurs": 2.63e-07, + "fluoridation": 2.63e-07, + "fluttered": 2.63e-07, + "flyweight": 2.63e-07, + "fpc": 2.63e-07, + "freakishly": 2.63e-07, + "frenchie": 2.63e-07, + "fresnel": 2.63e-07, + "frictional": 2.63e-07, + "frito": 2.63e-07, + "futa": 2.63e-07, + "gaf": 2.63e-07, + "ganging": 2.63e-07, + "gau": 2.63e-07, + "geldof": 2.63e-07, + "genet": 2.63e-07, + "geng": 2.63e-07, + "genovese": 2.63e-07, + "gerais": 2.63e-07, + "ghats": 2.63e-07, + "gish": 2.63e-07, + "gladwell": 2.63e-07, + "glans": 2.63e-07, + "glas": 2.63e-07, + "glues": 2.63e-07, + "goering": 2.63e-07, + "gonads": 2.63e-07, + "greville": 2.63e-07, + "grounder": 2.63e-07, + "gullet": 2.63e-07, + "gustafsson": 2.63e-07, + "hafeez": 2.63e-07, + "hake": 2.63e-07, + "hamada": 2.63e-07, + "hammerstein": 2.63e-07, + "hansens": 2.63e-07, + "haringey": 2.63e-07, + "hartnell": 2.63e-07, + "havilland": 2.63e-07, + "helle": 2.63e-07, + "helton": 2.63e-07, + "herbst": 2.63e-07, + "hexadecimal": 2.63e-07, + "highbrow": 2.63e-07, + "hillock": 2.63e-07, + "hime": 2.63e-07, + "hippocratic": 2.63e-07, + "hmg": 2.63e-07, + "hmmmmm": 2.63e-07, + "hollered": 2.63e-07, + "hombres": 2.63e-07, + "homesickness": 2.63e-07, + "homoerotic": 2.63e-07, + "hooliganism": 2.63e-07, + "hufflepuff": 2.63e-07, + "huguenot": 2.63e-07, + "huguenots": 2.63e-07, + "humberside": 2.63e-07, + "hundredths": 2.63e-07, + "hydroponic": 2.63e-07, + "hyperbaric": 2.63e-07, + "hyperlink": 2.63e-07, + "ibe": 2.63e-07, + "ibra": 2.63e-07, + "icahn": 2.63e-07, + "idealists": 2.63e-07, + "ifi": 2.63e-07, + "ily": 2.63e-07, + "imbue": 2.63e-07, + "impressionists": 2.63e-07, + "inattention": 2.63e-07, + "inconsistently": 2.63e-07, + "incubating": 2.63e-07, + "industrie": 2.63e-07, + "inquisitors": 2.63e-07, + "institutionally": 2.63e-07, + "intelligencer": 2.63e-07, + "interning": 2.63e-07, + "interpretative": 2.63e-07, + "invariance": 2.63e-07, + "invariants": 2.63e-07, + "ipsa": 2.63e-07, + "ironworks": 2.63e-07, + "isiah": 2.63e-07, + "iter": 2.63e-07, + "jahan": 2.63e-07, + "jaina": 2.63e-07, + "janesville": 2.63e-07, + "jaywalking": 2.63e-07, + "jenga": 2.63e-07, + "jinks": 2.63e-07, + "joomla": 2.63e-07, + "judiciously": 2.63e-07, + "junky": 2.63e-07, + "kachin": 2.63e-07, + "kamui": 2.63e-07, + "kandinsky": 2.63e-07, + "karenina": 2.63e-07, + "kas": 2.63e-07, + "kdp": 2.63e-07, + "khabib": 2.63e-07, + "kiera": 2.63e-07, + "kilts": 2.63e-07, + "kinematic": 2.63e-07, + "kingfishers": 2.63e-07, + "kittys": 2.63e-07, + "knightly": 2.63e-07, + "kovalev": 2.63e-07, + "kuznetsov": 2.63e-07, + "lassiter": 2.63e-07, + "latakia": 2.63e-07, + "lazier": 2.63e-07, + "leptin": 2.63e-07, + "ler": 2.63e-07, + "libtard": 2.63e-07, + "likenesses": 2.63e-07, + "likening": 2.63e-07, + "liquefaction": 2.63e-07, + "lisburn": 2.63e-07, + "lithuanians": 2.63e-07, + "litigious": 2.63e-07, + "lmaooo": 2.63e-07, + "loe": 2.63e-07, + "lomas": 2.63e-07, + "lookouts": 2.63e-07, + "loosens": 2.63e-07, + "loras": 2.63e-07, + "lous": 8.71e-08, + "louiss": 2.63e-07, + "lumiere": 2.63e-07, + "lymphoid": 2.63e-07, + "lyndhurst": 2.63e-07, + "machida": 2.63e-07, + "maddux": 2.63e-07, + "madoka": 2.63e-07, + "maersk": 2.63e-07, + "maitre": 2.63e-07, + "mallett": 2.63e-07, + "manhandled": 2.63e-07, + "manns": 8.32e-08, + "maro": 2.63e-07, + "marshalling": 2.63e-07, + "maryville": 2.63e-07, + "masaki": 2.63e-07, + "masochism": 2.63e-07, + "mathur": 2.63e-07, + "maximization": 2.63e-07, + "maybach": 2.63e-07, + "mayberry": 2.63e-07, + "mcalister": 2.63e-07, + "mccomb": 2.63e-07, + "mcdougal": 2.63e-07, + "mckean": 2.63e-07, + "mcshane": 2.63e-07, + "mels": 7.08e-08, + "meldrum": 2.63e-07, + "mendelson": 2.63e-07, + "mendenhall": 2.63e-07, + "meo": 2.63e-07, + "meridians": 2.63e-07, + "metamorphoses": 2.63e-07, + "midcentury": 2.63e-07, + "migs": 2.63e-07, + "milla": 2.63e-07, + "misalignment": 2.63e-07, + "misheard": 2.63e-07, + "mistreating": 2.63e-07, + "mnf": 2.63e-07, + "mochi": 2.63e-07, + "mohair": 2.63e-07, + "moloch": 2.63e-07, + "monarchist": 2.63e-07, + "moni": 2.63e-07, + "montgomerie": 2.63e-07, + "moocs": 2.63e-07, + "moos": 2.63e-07, + "moroccans": 2.63e-07, + "moustaches": 2.63e-07, + "mse": 2.63e-07, + "msr": 2.63e-07, + "muirhead": 2.63e-07, + "multicolor": 2.63e-07, + "munir": 2.63e-07, + "murrow": 2.63e-07, + "mutineers": 2.63e-07, + "mutts": 2.63e-07, + "mykola": 2.63e-07, + "myrna": 2.63e-07, + "narita": 2.63e-07, + "nauseated": 2.63e-07, + "nema": 2.63e-07, + "neri": 2.63e-07, + "nestling": 2.63e-07, + "neuropsychological": 2.63e-07, + "nevill": 2.63e-07, + "newcombe": 2.63e-07, + "niel": 2.63e-07, + "nishikori": 2.63e-07, + "nitroglycerin": 2.63e-07, + "noobs": 2.63e-07, + "noooooo": 2.63e-07, + "nsx": 2.63e-07, + "nucleation": 2.63e-07, + "nusa": 2.63e-07, + "ofarrell": 2.63e-07, + "oan": 2.63e-07, + "oig": 2.63e-07, + "ojo": 2.63e-07, + "oldenburg": 2.63e-07, + "onedrive": 2.63e-07, + "orbis": 2.63e-07, + "orin": 2.63e-07, + "oscillate": 2.63e-07, + "oshawa": 2.63e-07, + "oster": 2.63e-07, + "oswalt": 2.63e-07, + "outa": 2.63e-07, + "outpace": 2.63e-07, + "overhearing": 2.63e-07, + "ovoid": 2.63e-07, + "padi": 2.63e-07, + "paf": 2.63e-07, + "panetta": 2.63e-07, + "panoramas": 2.63e-07, + "pardoning": 2.63e-07, + "parsnips": 2.63e-07, + "pasternak": 2.63e-07, + "pastrami": 2.63e-07, + "patios": 2.63e-07, + "pauley": 2.63e-07, + "pbuh": 2.63e-07, + "peacemakers": 2.63e-07, + "pectin": 2.63e-07, + "perla": 2.63e-07, + "pernambuco": 2.63e-07, + "philippi": 2.63e-07, + "pilsner": 2.63e-07, + "pitta": 2.63e-07, + "plait": 2.63e-07, + "plantagenet": 2.63e-07, + "plummets": 2.63e-07, + "pogue": 2.63e-07, + "poldark": 2.63e-07, + "poring": 2.63e-07, + "portly": 2.63e-07, + "postmarked": 2.63e-07, + "preoccupations": 2.63e-07, + "prequels": 2.63e-07, + "prerecorded": 2.63e-07, + "presale": 2.63e-07, + "pret": 2.63e-07, + "proffered": 2.63e-07, + "propulsive": 2.63e-07, + "provincetown": 2.63e-07, + "psb": 2.63e-07, + "pua": 2.63e-07, + "puppetry": 2.63e-07, + "quicktime": 2.63e-07, + "reactionaries": 2.63e-07, + "readies": 2.63e-07, + "readmitted": 2.63e-07, + "recant": 2.63e-07, + "recognitions": 2.63e-07, + "redoubt": 2.63e-07, + "reenact": 2.63e-07, + "regimented": 2.63e-07, + "reignited": 2.63e-07, + "reinterpreted": 2.63e-07, + "resuscitated": 2.63e-07, + "returnable": 2.63e-07, + "reverberation": 2.63e-07, + "ribosome": 2.63e-07, + "richfield": 2.63e-07, + "rightmove": 2.63e-07, + "rioja": 2.63e-07, + "roby": 2.63e-07, + "rockys": 2.63e-07, + "rosslyn": 2.63e-07, + "roush": 2.63e-07, + "rowlings": 2.63e-07, + "roxie": 2.63e-07, + "rpt": 2.63e-07, + "rupauls": 2.63e-07, + "ruslan": 2.63e-07, + "rwd": 2.63e-07, + "sailboats": 2.63e-07, + "samadhi": 2.63e-07, + "sandow": 2.63e-07, + "sanitize": 2.63e-07, + "sankey": 2.63e-07, + "sascha": 2.63e-07, + "saunas": 2.63e-07, + "savoring": 2.63e-07, + "scapegoating": 2.63e-07, + "schloss": 2.63e-07, + "schulman": 2.63e-07, + "scoffing": 2.63e-07, + "scrambler": 2.63e-07, + "scrapers": 2.63e-07, + "scrivener": 2.63e-07, + "sebi": 2.63e-07, + "sectionals": 2.63e-07, + "seers": 2.63e-07, + "seg": 2.63e-07, + "seligman": 2.63e-07, + "separators": 2.63e-07, + "serialization": 2.63e-07, + "shahs": 7.24e-08, + "shawna": 2.63e-07, + "sheaths": 2.63e-07, + "sheepish": 2.63e-07, + "sherrod": 2.63e-07, + "shevchenko": 2.63e-07, + "shindig": 2.63e-07, + "shuster": 2.63e-07, + "shyam": 2.63e-07, + "shyly": 2.63e-07, + "signora": 2.63e-07, + "sinusitis": 2.63e-07, + "sistema": 2.63e-07, + "skint": 2.63e-07, + "slackers": 2.63e-07, + "smm": 2.63e-07, + "smorgasbord": 2.63e-07, + "snaked": 2.63e-07, + "snaking": 2.63e-07, + "sniffles": 2.63e-07, + "solzhenitsyn": 2.63e-07, + "somalian": 2.63e-07, + "soundwave": 2.63e-07, + "speculator": 2.63e-07, + "splintering": 2.63e-07, + "spoofed": 2.63e-07, + "squawk": 2.63e-07, + "squier": 2.63e-07, + "ssw": 2.63e-07, + "stabler": 2.63e-07, + "stache": 2.63e-07, + "stammering": 2.63e-07, + "startlingly": 2.63e-07, + "steinmetz": 2.63e-07, + "strafing": 2.63e-07, + "studien": 2.63e-07, + "sufficed": 2.63e-07, + "suffices": 2.63e-07, + "suge": 2.63e-07, + "suggs": 2.63e-07, + "sumer": 2.63e-07, + "supine": 2.63e-07, + "survivorship": 2.63e-07, + "svoboda": 2.63e-07, + "swt": 2.63e-07, + "sycophants": 2.63e-07, + "tannery": 2.63e-07, + "tard": 2.63e-07, + "taryn": 2.63e-07, + "tbt": 2.63e-07, + "technic": 2.63e-07, + "technocratic": 2.63e-07, + "teigen": 2.63e-07, + "temerity": 2.63e-07, + "tempera": 2.63e-07, + "teresas": 2.63e-07, + "theodosius": 2.63e-07, + "throughs": 2.63e-07, + "thumped": 2.63e-07, + "tigress": 2.63e-07, + "tioga": 2.63e-07, + "tmt": 2.63e-07, + "torching": 2.63e-07, + "totems": 2.63e-07, + "towered": 2.63e-07, + "transgressive": 2.63e-07, + "trappist": 2.63e-07, + "traumatizing": 2.63e-07, + "tremolo": 2.63e-07, + "trike": 2.63e-07, + "trots": 2.63e-07, + "trudging": 2.63e-07, + "tsi": 2.63e-07, + "tsr": 2.63e-07, + "tweens": 2.63e-07, + "unadorned": 2.63e-07, + "undercuts": 2.63e-07, + "underscoring": 2.63e-07, + "ungainly": 2.63e-07, + "uninstalled": 2.63e-07, + "uprights": 2.63e-07, + "uscg": 2.63e-07, + "utf": 2.63e-07, + "velazquez": 2.63e-07, + "venmo": 2.63e-07, + "vesicle": 2.63e-07, + "vincis": 2.63e-07, + "vintages": 2.63e-07, + "visconti": 2.63e-07, + "vite": 2.63e-07, + "vy": 2.63e-07, + "waless": 2.63e-07, + "walthamstow": 2.63e-07, + "wardle": 2.63e-07, + "warfield": 2.63e-07, + "weeklies": 2.63e-07, + "weevils": 2.63e-07, + "westview": 2.63e-07, + "wildcards": 2.63e-07, + "wildlands": 2.63e-07, + "wincing": 2.63e-07, + "wispy": 2.63e-07, + "witter": 2.63e-07, + "worsted": 2.63e-07, + "wreaked": 2.63e-07, + "wrx": 2.63e-07, + "wwdc": 2.63e-07, + "xray": 2.63e-07, + "yessss": 2.63e-07, + "yj": 2.63e-07, + "yy": 2.63e-07, + "zaheer": 2.63e-07, + "zardari": 2.63e-07, + "zoot": 2.63e-07, + "aaas": 7.76e-08, + "aaf": 2.57e-07, + "abdulla": 2.57e-07, + "abet": 2.57e-07, + "aborting": 2.57e-07, + "abounded": 2.57e-07, + "acf": 2.57e-07, + "ached": 2.57e-07, + "acolyte": 2.57e-07, + "adela": 2.57e-07, + "adorably": 2.57e-07, + "adulterated": 2.57e-07, + "airfoil": 2.57e-07, + "aldean": 2.57e-07, + "alito": 2.57e-07, + "alk": 2.57e-07, + "alts": 2.57e-07, + "amoled": 2.57e-07, + "amputate": 2.57e-07, + "anally": 2.57e-07, + "aneurysms": 2.57e-07, + "anhydrous": 2.57e-07, + "annales": 2.57e-07, + "anselmo": 2.57e-07, + "anteriorly": 2.57e-07, + "aod": 2.57e-07, + "aqui": 2.57e-07, + "argan": 2.57e-07, + "argentines": 2.57e-07, + "arnt": 6.76e-08, + "arpaio": 2.57e-07, + "artemisia": 2.57e-07, + "ascap": 2.57e-07, + "asg": 2.57e-07, + "asphyxia": 2.57e-07, + "asturias": 2.57e-07, + "athol": 2.57e-07, + "attics": 2.57e-07, + "aubergine": 2.57e-07, + "availing": 2.57e-07, + "awestruck": 2.57e-07, + "awl": 2.57e-07, + "axillary": 2.57e-07, + "ayla": 2.57e-07, + "aza": 2.57e-07, + "backless": 2.57e-07, + "bahai": 8.32e-08, + "bahr": 2.57e-07, + "ballinger": 2.57e-07, + "balustrade": 2.57e-07, + "banach": 2.57e-07, + "barbuda": 2.57e-07, + "barents": 2.57e-07, + "basie": 2.57e-07, + "bathers": 2.57e-07, + "bayview": 2.57e-07, + "beek": 2.57e-07, + "befits": 2.57e-07, + "begat": 2.57e-07, + "bernabeu": 2.57e-07, + "bernoulli": 2.57e-07, + "berserker": 2.57e-07, + "beveled": 2.57e-07, + "binging": 2.57e-07, + "biochem": 2.57e-07, + "blau": 2.57e-07, + "blinder": 2.57e-07, + "blundell": 2.57e-07, + "bnsf": 2.57e-07, + "bohm": 2.57e-07, + "bohn": 2.57e-07, + "bonney": 2.57e-07, + "borderless": 2.57e-07, + "breaded": 2.57e-07, + "breivik": 2.57e-07, + "breslau": 2.57e-07, + "broods": 2.57e-07, + "broomfield": 2.57e-07, + "buccaneer": 2.57e-07, + "buffalos": 9.12e-08, + "buisness": 2.57e-07, + "bulawayo": 2.57e-07, + "bulgarias": 2.57e-07, + "bungle": 2.57e-07, + "burbs": 2.57e-07, + "bushwick": 2.57e-07, + "buti": 2.57e-07, + "bynes": 2.57e-07, + "cachet": 2.57e-07, + "cackle": 2.57e-07, + "calcification": 2.57e-07, + "calliope": 2.57e-07, + "campfires": 2.57e-07, + "cannabinoid": 2.57e-07, + "capoeira": 2.57e-07, + "cardholders": 2.57e-07, + "carmella": 2.57e-07, + "carplay": 2.57e-07, + "carstairs": 2.57e-07, + "casimir": 2.57e-07, + "catawba": 2.57e-07, + "caterham": 2.57e-07, + "changsha": 2.57e-07, + "chaperones": 2.57e-07, + "churns": 2.57e-07, + "circe": 2.57e-07, + "civilly": 2.57e-07, + "clairvoyance": 2.57e-07, + "clemons": 2.57e-07, + "clickbank": 2.57e-07, + "clift": 2.57e-07, + "clinker": 2.57e-07, + "cloakroom": 2.57e-07, + "clotted": 2.57e-07, + "clu": 2.57e-07, + "coenzyme": 2.57e-07, + "cohan": 2.57e-07, + "collating": 2.57e-07, + "colonnade": 2.57e-07, + "colorway": 2.57e-07, + "columba": 2.57e-07, + "contraptions": 2.57e-07, + "convertibles": 2.57e-07, + "corded": 2.57e-07, + "coriolanus": 2.57e-07, + "cosplayer": 2.57e-07, + "coulthard": 2.57e-07, + "courtrooms": 2.57e-07, + "covina": 2.57e-07, + "cresswell": 2.57e-07, + "crossbows": 2.57e-07, + "cruella": 2.57e-07, + "cti": 2.57e-07, + "cultura": 2.57e-07, + "curacao": 2.57e-07, + "curbside": 2.57e-07, + "cutback": 2.57e-07, + "cutty": 2.57e-07, + "cyclin": 2.57e-07, + "dafoe": 2.57e-07, + "daredevils": 6.03e-08, + "deepa": 2.57e-07, + "deformations": 2.57e-07, + "degrassi": 2.57e-07, + "dentition": 2.57e-07, + "dermis": 2.57e-07, + "dfb": 2.57e-07, + "dht": 2.57e-07, + "diallo": 2.57e-07, + "dicking": 2.57e-07, + "difficile": 2.57e-07, + "diffusing": 2.57e-07, + "dimensionality": 2.57e-07, + "dimitar": 2.57e-07, + "dingell": 2.57e-07, + "disintegrates": 2.57e-07, + "disparaged": 2.57e-07, + "dispelling": 2.57e-07, + "disruptor": 2.57e-07, + "dissed": 2.57e-07, + "dowdy": 2.57e-07, + "dro": 2.57e-07, + "dropkick": 2.57e-07, + "dtm": 2.57e-07, + "duplicitous": 2.57e-07, + "effusion": 2.57e-07, + "eggman": 2.57e-07, + "eggnog": 2.57e-07, + "electromagnetism": 2.57e-07, + "elegiac": 2.57e-07, + "eliminator": 2.57e-07, + "elio": 2.57e-07, + "ellipses": 2.57e-07, + "engravers": 2.57e-07, + "enliven": 2.57e-07, + "ennui": 2.57e-07, + "epitomized": 2.57e-07, + "eredivisie": 2.57e-07, + "esf": 2.57e-07, + "espana": 2.57e-07, + "ethans": 2.57e-07, + "euronews": 2.57e-07, + "excl": 2.57e-07, + "exorcise": 2.57e-07, + "experian": 2.57e-07, + "expropriated": 2.57e-07, + "extendable": 2.57e-07, + "factorization": 2.57e-07, + "factorys": 2.57e-07, + "fairbairn": 2.57e-07, + "fajr": 2.57e-07, + "falters": 2.57e-07, + "falwell": 2.57e-07, + "farmyard": 2.57e-07, + "faustus": 2.57e-07, + "feelers": 2.57e-07, + "ferb": 2.57e-07, + "fernanda": 2.57e-07, + "ferragamo": 2.57e-07, + "ferrante": 2.57e-07, + "fetishism": 2.57e-07, + "filmography": 2.57e-07, + "flagler": 2.57e-07, + "flatness": 2.57e-07, + "flaxseed": 2.57e-07, + "flayed": 2.57e-07, + "fleeced": 2.57e-07, + "flickered": 2.57e-07, + "flickers": 2.57e-07, + "foa": 2.57e-07, + "foamy": 2.57e-07, + "forevermore": 2.57e-07, + "foundling": 2.57e-07, + "franzen": 2.57e-07, + "fraunhofer": 2.57e-07, + "freemium": 2.57e-07, + "frequents": 2.57e-07, + "frivolity": 2.57e-07, + "fujita": 2.57e-07, + "fuqua": 2.57e-07, + "futurity": 2.57e-07, + "fuze": 2.57e-07, + "fwb": 2.57e-07, + "garrido": 2.57e-07, + "gayest": 2.57e-07, + "gev": 2.57e-07, + "ghar": 2.57e-07, + "ghoulish": 2.57e-07, + "gilberts": 7.08e-08, + "gimli": 2.57e-07, + "gins": 2.57e-07, + "goghs": 2.57e-07, + "goober": 2.57e-07, + "granby": 2.57e-07, + "grazie": 2.57e-07, + "grendel": 2.57e-07, + "griping": 2.57e-07, + "groomer": 2.57e-07, + "grudging": 2.57e-07, + "gsd": 2.57e-07, + "guang": 2.57e-07, + "hader": 2.57e-07, + "halperin": 2.57e-07, + "hamon": 2.57e-07, + "hants": 2.57e-07, + "hardcastle": 2.57e-07, + "hci": 2.57e-07, + "headhunters": 2.57e-07, + "heckled": 2.57e-07, + "helpdesk": 2.57e-07, + "hemophilia": 2.57e-07, + "herniated": 2.57e-07, + "hershel": 2.57e-07, + "hissy": 2.57e-07, + "hobble": 2.57e-07, + "hokage": 2.57e-07, + "honcho": 2.57e-07, + "hopkinson": 2.57e-07, + "hsieh": 2.57e-07, + "hubei": 2.57e-07, + "humped": 2.57e-07, + "ibex": 2.57e-07, + "icicles": 2.57e-07, + "ideologue": 2.57e-07, + "illuminator": 2.57e-07, + "inconsolable": 2.57e-07, + "incrimination": 2.57e-07, + "indulges": 2.57e-07, + "ineffable": 2.57e-07, + "infuriate": 2.57e-07, + "interpolated": 2.57e-07, + "intramuscular": 2.57e-07, + "invective": 2.57e-07, + "invoicing": 2.57e-07, + "isomorphism": 2.57e-07, + "iterated": 2.57e-07, + "ivanovich": 2.57e-07, + "jacobean": 2.57e-07, + "jacobin": 2.57e-07, + "jacque": 2.57e-07, + "jago": 2.57e-07, + "jailbait": 2.57e-07, + "jammers": 2.57e-07, + "jaques": 2.57e-07, + "jeopardise": 2.57e-07, + "jerusalems": 2.57e-07, + "jessy": 2.57e-07, + "jiggling": 2.57e-07, + "joans": 2.57e-07, + "jost": 2.57e-07, + "juri": 2.57e-07, + "kankakee": 2.57e-07, + "kaohsiung": 2.57e-07, + "karsten": 2.57e-07, + "kash": 2.57e-07, + "keke": 2.57e-07, + "kennesaw": 2.57e-07, + "khaleesi": 2.57e-07, + "klimt": 2.57e-07, + "kluwer": 2.57e-07, + "knapsack": 2.57e-07, + "koster": 2.57e-07, + "kovac": 2.57e-07, + "kuch": 2.57e-07, + "kuta": 2.57e-07, + "lalo": 2.57e-07, + "lanceolate": 2.57e-07, + "lashley": 2.57e-07, + "lawrenceville": 2.57e-07, + "leashes": 2.57e-07, + "lebedev": 2.57e-07, + "libro": 2.57e-07, + "lier": 2.57e-07, + "linfield": 2.57e-07, + "littler": 2.57e-07, + "lockerbie": 2.57e-07, + "lozano": 2.57e-07, + "lpl": 2.57e-07, + "lucrezia": 2.57e-07, + "ludhiana": 2.57e-07, + "macdougall": 2.57e-07, + "madea": 2.57e-07, + "maester": 2.57e-07, + "magister": 2.57e-07, + "mahama": 2.57e-07, + "mahinda": 2.57e-07, + "maksim": 2.57e-07, + "malarkey": 2.57e-07, + "malones": 2.57e-07, + "mangalore": 2.57e-07, + "mangos": 2.57e-07, + "maren": 2.57e-07, + "margaery": 2.57e-07, + "marsupial": 2.57e-07, + "masahiro": 2.57e-07, + "mcclaren": 2.57e-07, + "mdt": 2.57e-07, + "measurably": 2.57e-07, + "mechanization": 2.57e-07, + "melanogaster": 2.57e-07, + "memorably": 2.57e-07, + "menacingly": 2.57e-07, + "mensah": 2.57e-07, + "meriden": 2.57e-07, + "merman": 2.57e-07, + "mete": 2.57e-07, + "meuse": 2.57e-07, + "mexicana": 2.57e-07, + "mias": 7.76e-08, + "miata": 2.57e-07, + "microtubules": 2.57e-07, + "migrates": 2.57e-07, + "mimosas": 2.57e-07, + "minami": 2.57e-07, + "mindblowing": 2.57e-07, + "minivans": 2.57e-07, + "misaligned": 2.57e-07, + "mita": 2.57e-07, + "mitzi": 2.57e-07, + "mmf": 2.57e-07, + "molson": 2.57e-07, + "mondrian": 2.57e-07, + "moneyed": 2.57e-07, + "monongahela": 2.57e-07, + "montgomerys": 2.57e-07, + "mooc": 2.57e-07, + "motivators": 2.57e-07, + "motorhome": 2.57e-07, + "mro": 2.57e-07, + "murcia": 2.57e-07, + "murmansk": 2.57e-07, + "muscovite": 2.57e-07, + "muskrat": 2.57e-07, + "mutable": 2.57e-07, + "mutating": 2.57e-07, + "nagle": 2.57e-07, + "nags": 2.57e-07, + "navratilova": 2.57e-07, + "nelle": 2.57e-07, + "netanyahus": 2.57e-07, + "nett": 2.57e-07, + "nicene": 2.57e-07, + "nimitz": 2.57e-07, + "nisa": 2.57e-07, + "nisbet": 2.57e-07, + "nisi": 2.57e-07, + "nmda": 2.57e-07, + "nosferatu": 2.57e-07, + "notching": 2.57e-07, + "noth": 2.57e-07, + "npm": 2.57e-07, + "numan": 2.57e-07, + "omara": 2.57e-07, + "oberyn": 2.57e-07, + "obit": 2.57e-07, + "ohno": 2.57e-07, + "omani": 2.57e-07, + "onassis": 2.57e-07, + "onna": 2.57e-07, + "oppenheim": 2.57e-07, + "optician": 2.57e-07, + "optimists": 2.57e-07, + "orisa": 2.57e-07, + "orla": 2.57e-07, + "osvaldo": 2.57e-07, + "outdid": 2.57e-07, + "outsold": 2.57e-07, + "overcharging": 2.57e-07, + "overexpression": 2.57e-07, + "overshot": 2.57e-07, + "pacey": 2.57e-07, + "pacha": 2.57e-07, + "paean": 2.57e-07, + "parodying": 2.57e-07, + "parsnip": 2.57e-07, + "patria": 2.57e-07, + "patric": 2.57e-07, + "pawned": 2.57e-07, + "pcd": 2.57e-07, + "peal": 2.57e-07, + "peduncle": 2.57e-07, + "peeped": 2.57e-07, + "perak": 2.57e-07, + "petrobras": 2.57e-07, + "petrovich": 2.57e-07, + "pfs": 2.57e-07, + "picayune": 2.57e-07, + "piggies": 2.57e-07, + "pilipinas": 2.57e-07, + "placings": 2.57e-07, + "plantains": 2.57e-07, + "playset": 2.57e-07, + "pneumoniae": 2.57e-07, + "polyphonic": 2.57e-07, + "pompidou": 2.57e-07, + "positivism": 2.57e-07, + "preload": 2.57e-07, + "premeditation": 2.57e-07, + "premised": 2.57e-07, + "presidium": 2.57e-07, + "programing": 2.57e-07, + "promulgation": 2.57e-07, + "proofed": 2.57e-07, + "pru": 2.57e-07, + "punic": 2.57e-07, + "purnell": 2.57e-07, + "pwd": 2.57e-07, + "quadcopter": 2.57e-07, + "quiero": 2.57e-07, + "quieted": 2.57e-07, + "radnor": 2.57e-07, + "ramadi": 2.57e-07, + "rambles": 2.57e-07, + "rambunctious": 2.57e-07, + "rapturous": 2.57e-07, + "rauner": 2.57e-07, + "rayed": 2.57e-07, + "rcn": 2.57e-07, + "readmission": 2.57e-07, + "reaves": 2.57e-07, + "recedes": 2.57e-07, + "reflectivity": 2.57e-07, + "regen": 2.57e-07, + "reggio": 2.57e-07, + "reheated": 2.57e-07, + "reinvigorate": 2.57e-07, + "reinvigorated": 2.57e-07, + "reneged": 2.57e-07, + "repurpose": 2.57e-07, + "rer": 2.57e-07, + "reroute": 2.57e-07, + "retweeting": 2.57e-07, + "reuptake": 2.57e-07, + "rewatched": 2.57e-07, + "rickets": 2.57e-07, + "ror": 2.57e-07, + "roundtrip": 2.57e-07, + "ruan": 2.57e-07, + "ruc": 2.57e-07, + "saka": 2.57e-07, + "salgado": 2.57e-07, + "salutary": 2.57e-07, + "sandhu": 2.57e-07, + "santee": 2.57e-07, + "sarbanes": 2.57e-07, + "satanist": 2.57e-07, + "sbr": 2.57e-07, + "schemas": 2.57e-07, + "schick": 2.57e-07, + "schlumberger": 2.57e-07, + "schmidts": 2.57e-07, + "scientologists": 2.57e-07, + "scoffs": 2.57e-07, + "scrapbooking": 2.57e-07, + "sdsu": 2.57e-07, + "seagal": 2.57e-07, + "seaports": 2.57e-07, + "secreting": 2.57e-07, + "seddon": 2.57e-07, + "selfridges": 2.57e-07, + "seraph": 2.57e-07, + "serf": 2.57e-07, + "sexualities": 2.57e-07, + "shaanxi": 2.57e-07, + "shaders": 2.57e-07, + "shisha": 2.57e-07, + "shorthanded": 2.57e-07, + "shostakovich": 2.57e-07, + "showalter": 2.57e-07, + "shruti": 2.57e-07, + "sierras": 8.32e-08, + "simile": 2.57e-07, + "siphoned": 2.57e-07, + "sissies": 2.57e-07, + "sitar": 2.57e-07, + "situate": 2.57e-07, + "skillset": 2.57e-07, + "skipton": 2.57e-07, + "slushy": 2.57e-07, + "smoak": 2.57e-07, + "smth": 2.57e-07, + "smuts": 2.57e-07, + "snitching": 2.57e-07, + "snowshoe": 2.57e-07, + "sobel": 2.57e-07, + "sobered": 2.57e-07, + "solly": 2.57e-07, + "sonam": 2.57e-07, + "sonos": 2.57e-07, + "soule": 2.57e-07, + "soundscape": 2.57e-07, + "spangler": 2.57e-07, + "sperling": 2.57e-07, + "sportscar": 2.57e-07, + "spurrier": 2.57e-07, + "stacie": 2.57e-07, + "starc": 2.57e-07, + "steins": 2.19e-07, + "sterlings": 2.57e-07, + "stillbirth": 2.57e-07, + "stipulating": 2.57e-07, + "storrs": 2.57e-07, + "strappy": 2.57e-07, + "stratus": 2.57e-07, + "stressor": 2.57e-07, + "striatum": 2.57e-07, + "stringers": 2.57e-07, + "stromal": 2.57e-07, + "stylings": 2.57e-07, + "sufism": 2.57e-07, + "sultana": 2.57e-07, + "superfoods": 2.57e-07, + "suraj": 2.57e-07, + "suss": 2.57e-07, + "svenska": 2.57e-07, + "svr": 2.57e-07, + "switchblade": 2.57e-07, + "talbott": 2.57e-07, + "tasered": 2.57e-07, + "tatts": 2.57e-07, + "tatyana": 2.57e-07, + "tcc": 2.57e-07, + "teed": 2.57e-07, + "teensy": 2.57e-07, + "temperaments": 2.57e-07, + "tenures": 2.57e-07, + "thanx": 2.57e-07, + "thei": 2.57e-07, + "thomason": 2.57e-07, + "thumps": 2.57e-07, + "tibial": 2.57e-07, + "tog": 2.57e-07, + "topside": 2.57e-07, + "torrington": 2.57e-07, + "totti": 2.57e-07, + "tradable": 2.57e-07, + "transportable": 2.57e-07, + "treetops": 2.57e-07, + "tremblay": 2.57e-07, + "trespasser": 2.57e-07, + "truism": 2.57e-07, + "trumbo": 2.57e-07, + "tsung": 2.57e-07, + "turnin": 2.57e-07, + "uhc": 2.57e-07, + "ultrasounds": 2.57e-07, + "unchangeable": 2.57e-07, + "unforced": 2.57e-07, + "unni": 2.57e-07, + "urethane": 2.57e-07, + "vacating": 2.57e-07, + "vaccinating": 2.57e-07, + "valletta": 2.57e-07, + "varus": 2.57e-07, + "velez": 2.57e-07, + "venti": 2.57e-07, + "ventricles": 2.57e-07, + "verges": 2.57e-07, + "viber": 2.57e-07, + "vict": 2.57e-07, + "vigils": 2.57e-07, + "visualizations": 2.57e-07, + "vouched": 2.57e-07, + "voyeurism": 2.57e-07, + "vulgate": 2.57e-07, + "vz": 2.57e-07, + "wafting": 2.57e-07, + "wagoner": 2.57e-07, + "walmarts": 1.45e-07, + "wargaming": 2.57e-07, + "weeded": 2.57e-07, + "wgn": 2.57e-07, + "whisking": 2.57e-07, + "whiten": 2.57e-07, + "wiiu": 2.57e-07, + "wilf": 2.57e-07, + "wilting": 2.57e-07, + "wolfie": 2.57e-07, + "woodpeckers": 2.57e-07, + "woogie": 2.57e-07, + "wryly": 2.57e-07, + "xcx": 2.57e-07, + "yazidis": 2.57e-07, + "yazoo": 2.57e-07, + "yippee": 2.57e-07, + "ysl": 2.57e-07, + "yume": 2.57e-07, + "zacharias": 2.57e-07, + "zandt": 2.57e-07, + "zesty": 2.57e-07, + "zoolander": 2.57e-07, + "zooplankton": 2.57e-07, + "zoro": 2.57e-07, + "zuni": 2.57e-07, + "aadhaar": 2.51e-07, + "aapl": 2.51e-07, + "abelian": 2.51e-07, + "abell": 2.51e-07, + "absolutist": 2.51e-07, + "abul": 2.51e-07, + "abyssinia": 2.51e-07, + "accel": 2.51e-07, + "acclamation": 2.51e-07, + "adiabatic": 2.51e-07, + "adria": 2.51e-07, + "advisement": 2.51e-07, + "afterword": 2.51e-07, + "ageism": 2.51e-07, + "agrawal": 2.51e-07, + "ahahaha": 2.51e-07, + "ahi": 2.51e-07, + "aib": 2.51e-07, + "aliyah": 2.51e-07, + "allred": 2.51e-07, + "almeria": 2.51e-07, + "alphonso": 2.51e-07, + "altcoin": 2.51e-07, + "amaro": 2.51e-07, + "amazonia": 2.51e-07, + "ambers": 7.94e-08, + "americanized": 2.51e-07, + "analyte": 2.51e-07, + "anambra": 2.51e-07, + "ancona": 2.51e-07, + "andrej": 2.51e-07, + "anions": 2.51e-07, + "aphorisms": 2.51e-07, + "arman": 2.51e-07, + "arriba": 2.51e-07, + "arrington": 2.51e-07, + "arseholes": 2.51e-07, + "arvo": 2.51e-07, + "asceticism": 2.51e-07, + "ascorbic": 2.51e-07, + "asio": 2.51e-07, + "asli": 2.51e-07, + "asma": 2.51e-07, + "atacama": 2.51e-07, + "atg": 2.51e-07, + "atomizer": 2.51e-07, + "atwell": 2.51e-07, + "avo": 2.51e-07, + "ballers": 2.51e-07, + "ballooned": 2.51e-07, + "ballou": 2.51e-07, + "barbies": 1.74e-07, + "barden": 2.51e-07, + "bathes": 2.51e-07, + "battista": 2.51e-07, + "beachhead": 2.51e-07, + "befallen": 2.51e-07, + "begg": 2.51e-07, + "belgique": 2.51e-07, + "bellew": 2.51e-07, + "berm": 2.51e-07, + "bermondsey": 2.51e-07, + "bethenny": 2.51e-07, + "bhatia": 2.51e-07, + "bigtime": 2.51e-07, + "bikram": 2.51e-07, + "binned": 2.51e-07, + "biogenesis": 2.51e-07, + "birnbaum": 2.51e-07, + "bleating": 2.51e-07, + "bloodletting": 2.51e-07, + "blowtorch": 2.51e-07, + "bme": 2.51e-07, + "boban": 2.51e-07, + "bolan": 2.51e-07, + "bole": 2.51e-07, + "bonobos": 2.51e-07, + "boogaloo": 2.51e-07, + "botch": 2.51e-07, + "bowtie": 2.51e-07, + "boyband": 2.51e-07, + "breakpoint": 2.51e-07, + "brite": 2.51e-07, + "brouwer": 2.51e-07, + "brs": 2.51e-07, + "bsl": 2.51e-07, + "buckler": 2.51e-07, + "bugsy": 2.51e-07, + "burleson": 2.51e-07, + "burman": 2.51e-07, + "busi": 2.51e-07, + "buybacks": 2.51e-07, + "caesarea": 2.51e-07, + "cah": 2.51e-07, + "cambodias": 2.51e-07, + "campbelltown": 2.51e-07, + "canonically": 2.51e-07, + "captcha": 2.51e-07, + "carbonation": 2.51e-07, + "carves": 2.51e-07, + "catskills": 2.51e-07, + "cauchy": 2.51e-07, + "ceaselessly": 2.51e-07, + "celina": 2.51e-07, + "chafe": 2.51e-07, + "chc": 2.51e-07, + "cherishing": 2.51e-07, + "chummy": 2.51e-07, + "cisterns": 2.51e-07, + "clt": 2.51e-07, + "clued": 2.51e-07, + "cluttering": 2.51e-07, + "coarser": 2.51e-07, + "coby": 2.51e-07, + "coley": 2.51e-07, + "colonials": 2.51e-07, + "colostomy": 2.51e-07, + "columnar": 2.51e-07, + "commercialisation": 2.51e-07, + "commercialize": 2.51e-07, + "compagnie": 2.51e-07, + "concepcion": 2.51e-07, + "concurs": 2.51e-07, + "conflate": 2.51e-07, + "conflation": 2.51e-07, + "conjunctions": 2.51e-07, + "conservatoire": 2.51e-07, + "conservators": 2.51e-07, + "constricting": 2.51e-07, + "contras": 2.51e-07, + "coots": 2.51e-07, + "copycats": 2.51e-07, + "corman": 2.51e-07, + "corrode": 2.51e-07, + "cota": 2.51e-07, + "cowed": 2.51e-07, + "crannies": 2.51e-07, + "crapped": 2.51e-07, + "creasing": 2.51e-07, + "croak": 2.51e-07, + "crowed": 2.51e-07, + "csn": 2.51e-07, + "cubism": 2.51e-07, + "cubist": 2.51e-07, + "cud": 2.51e-07, + "curriculums": 2.51e-07, + "cwt": 2.51e-07, + "cyclonic": 2.51e-07, + "dailey": 2.51e-07, + "dalby": 2.51e-07, + "darrel": 2.51e-07, + "daunted": 2.51e-07, + "dda": 2.51e-07, + "deadlier": 2.51e-07, + "debater": 2.51e-07, + "debenhams": 2.51e-07, + "debits": 2.51e-07, + "decomposes": 2.51e-07, + "decrypted": 2.51e-07, + "defamed": 2.51e-07, + "defecate": 2.51e-07, + "densest": 2.51e-07, + "denys": 2.51e-07, + "depo": 2.51e-07, + "depositary": 2.51e-07, + "deprecation": 2.51e-07, + "depreciated": 2.51e-07, + "depreciating": 2.51e-07, + "deputation": 2.51e-07, + "deride": 2.51e-07, + "dervish": 2.51e-07, + "devereaux": 2.51e-07, + "devises": 2.51e-07, + "dewsbury": 2.51e-07, + "dietitians": 2.51e-07, + "diminution": 2.51e-07, + "dinklage": 2.51e-07, + "directorship": 2.51e-07, + "disaffection": 2.51e-07, + "discworld": 2.51e-07, + "dita": 2.51e-07, + "dming": 2.51e-07, + "dobbins": 2.51e-07, + "doms": 1.7e-07, + "donaghy": 2.51e-07, + "doren": 2.51e-07, + "downcast": 2.51e-07, + "drumpf": 2.51e-07, + "dufour": 2.51e-07, + "dutta": 2.51e-07, + "ecco": 2.51e-07, + "elenas": 2.51e-07, + "eluding": 2.51e-07, + "embarrasses": 2.51e-07, + "enameled": 2.51e-07, + "encumbered": 2.51e-07, + "endoplasmic": 2.51e-07, + "enlivened": 2.51e-07, + "enumerate": 2.51e-07, + "epigenetics": 2.51e-07, + "epochs": 2.51e-07, + "equanimity": 2.51e-07, + "equitably": 2.51e-07, + "eschewing": 2.51e-07, + "eurostat": 2.51e-07, + "evra": 2.51e-07, + "exasperating": 2.51e-07, + "exportation": 2.51e-07, + "expulsions": 2.51e-07, + "extents": 2.51e-07, + "extolled": 2.51e-07, + "extraterrestrials": 2.51e-07, + "fainter": 2.51e-07, + "fairweather": 2.51e-07, + "fangirl": 2.51e-07, + "farmworkers": 2.51e-07, + "fateh": 2.51e-07, + "fdny": 2.51e-07, + "feasted": 2.51e-07, + "fibroblast": 2.51e-07, + "fief": 2.51e-07, + "finales": 2.51e-07, + "firebirds": 2.51e-07, + "fls": 2.51e-07, + "foment": 2.51e-07, + "formalised": 2.51e-07, + "fot": 2.51e-07, + "founds": 2.51e-07, + "fowlers": 2.51e-07, + "frantz": 2.51e-07, + "frasers": 1.05e-07, + "frizz": 2.51e-07, + "frocks": 2.51e-07, + "fungicide": 2.51e-07, + "funnies": 2.51e-07, + "gacha": 2.51e-07, + "gallstones": 2.51e-07, + "ganda": 2.51e-07, + "gawk": 2.51e-07, + "gayatri": 2.51e-07, + "gendarmerie": 2.51e-07, + "genoese": 2.51e-07, + "geodesic": 2.51e-07, + "geostationary": 2.51e-07, + "giddens": 2.51e-07, + "ginormous": 2.51e-07, + "glaxosmithkline": 2.51e-07, + "gnp": 2.51e-07, + "goaded": 2.51e-07, + "goodfellow": 2.51e-07, + "gosport": 2.51e-07, + "gradation": 2.51e-07, + "gratings": 2.51e-07, + "grimaldi": 2.51e-07, + "gtav": 2.51e-07, + "guinevere": 2.51e-07, + "guizhou": 2.51e-07, + "gynaecologist": 2.51e-07, + "haar": 2.51e-07, + "hackneyed": 2.51e-07, + "hamed": 2.51e-07, + "hass": 2.51e-07, + "haya": 2.51e-07, + "heathcliff": 2.51e-07, + "heckle": 2.51e-07, + "hedda": 2.51e-07, + "henriques": 2.51e-07, + "herc": 2.51e-07, + "heriot": 2.51e-07, + "hermon": 2.51e-07, + "historicity": 2.51e-07, + "holdover": 2.51e-07, + "holyhead": 2.51e-07, + "honeydew": 2.51e-07, + "honeypot": 2.51e-07, + "horford": 2.51e-07, + "horsemanship": 2.51e-07, + "housewarming": 2.51e-07, + "howitzers": 2.51e-07, + "humberto": 2.51e-07, + "hustings": 2.51e-07, + "hutcherson": 2.51e-07, + "hypoxic": 2.51e-07, + "iib": 2.51e-07, + "ika": 2.51e-07, + "inboard": 2.51e-07, + "inched": 2.51e-07, + "incumbency": 2.51e-07, + "inducements": 2.51e-07, + "inelastic": 2.51e-07, + "ingle": 2.51e-07, + "inopportune": 2.51e-07, + "interscope": 2.51e-07, + "inxs": 2.51e-07, + "iow": 2.51e-07, + "jabez": 2.51e-07, + "jaco": 2.51e-07, + "jcpenney": 2.51e-07, + "jinxed": 2.51e-07, + "juni": 2.51e-07, + "junker": 2.51e-07, + "kalgoorlie": 2.51e-07, + "kann": 2.51e-07, + "kansai": 2.51e-07, + "karr": 2.51e-07, + "kasim": 2.51e-07, + "katanga": 2.51e-07, + "kearny": 2.51e-07, + "kehoe": 2.51e-07, + "kemble": 2.51e-07, + "ketosis": 2.51e-07, + "kevan": 2.51e-07, + "keystrokes": 2.51e-07, + "kharkov": 2.51e-07, + "kike": 2.51e-07, + "kiowa": 2.51e-07, + "kock": 2.51e-07, + "kwong": 2.51e-07, + "labial": 2.51e-07, + "lacquered": 2.51e-07, + "lagarde": 2.51e-07, + "landsat": 2.51e-07, + "lauper": 2.51e-07, + "lawley": 2.51e-07, + "lazuli": 2.51e-07, + "leaden": 2.51e-07, + "ledbetter": 2.51e-07, + "leicesters": 2.51e-07, + "lenins": 2.51e-07, + "lenoir": 2.51e-07, + "lerman": 2.51e-07, + "levitating": 2.51e-07, + "lilacs": 2.51e-07, + "linseed": 2.51e-07, + "lithosphere": 2.51e-07, + "loafer": 2.51e-07, + "logue": 2.51e-07, + "lundberg": 2.51e-07, + "luongo": 2.51e-07, + "mache": 2.51e-07, + "madan": 2.51e-07, + "magics": 1.51e-07, + "maiduguri": 2.51e-07, + "malformed": 2.51e-07, + "mammograms": 2.51e-07, + "manama": 2.51e-07, + "manilow": 2.51e-07, + "mannix": 2.51e-07, + "maplewood": 2.51e-07, + "marciano": 2.51e-07, + "mariko": 2.51e-07, + "markdown": 2.51e-07, + "marmot": 2.51e-07, + "matsui": 2.51e-07, + "maximally": 2.51e-07, + "mbt": 2.51e-07, + "mcauley": 2.51e-07, + "mcclatchy": 2.51e-07, + "mccool": 2.51e-07, + "mccullum": 2.51e-07, + "mcnaughton": 2.51e-07, + "mealy": 2.51e-07, + "meatless": 2.51e-07, + "mechanised": 2.51e-07, + "medtronic": 2.51e-07, + "melamine": 2.51e-07, + "menorah": 2.51e-07, + "methylated": 2.51e-07, + "microbiologist": 2.51e-07, + "minibar": 2.51e-07, + "minnelli": 2.51e-07, + "mintz": 2.51e-07, + "misaki": 2.51e-07, + "miscreants": 2.51e-07, + "missal": 2.51e-07, + "mlle": 2.51e-07, + "mna": 2.51e-07, + "mola": 2.51e-07, + "monogrammed": 2.51e-07, + "montego": 2.51e-07, + "moralistic": 2.51e-07, + "mordred": 2.51e-07, + "moreira": 2.51e-07, + "morgen": 2.51e-07, + "mouthwatering": 2.51e-07, + "mulroney": 2.51e-07, + "multimillionaire": 2.51e-07, + "muskoka": 2.51e-07, + "mustering": 2.51e-07, + "naito": 2.51e-07, + "najaf": 2.51e-07, + "nanotube": 2.51e-07, + "naveen": 2.51e-07, + "nein": 2.51e-07, + "nightcap": 2.51e-07, + "nighty": 2.51e-07, + "northgate": 2.51e-07, + "nosebleeds": 2.51e-07, + "notaries": 2.51e-07, + "nowt": 2.51e-07, + "oakdale": 2.51e-07, + "obliterating": 2.51e-07, + "oceanfront": 2.51e-07, + "ocp": 2.51e-07, + "oestrogen": 2.51e-07, + "olivine": 2.51e-07, + "omagh": 2.51e-07, + "oom": 2.51e-07, + "orban": 2.51e-07, + "osb": 2.51e-07, + "oscilloscope": 2.51e-07, + "ospina": 2.51e-07, + "otherness": 2.51e-07, + "outsized": 2.51e-07, + "outstripped": 2.51e-07, + "overextended": 2.51e-07, + "overreaching": 2.51e-07, + "overspending": 2.51e-07, + "oxbridge": 2.51e-07, + "paddys": 2.51e-07, + "pani": 2.51e-07, + "panto": 2.51e-07, + "partum": 2.51e-07, + "partway": 2.51e-07, + "pascual": 2.51e-07, + "paseo": 2.51e-07, + "patenting": 2.51e-07, + "pathologic": 2.51e-07, + "payin": 2.51e-07, + "peaceable": 2.51e-07, + "peacebuilding": 2.51e-07, + "peeved": 2.51e-07, + "peewee": 2.51e-07, + "penns": 8.71e-08, + "penobscot": 2.51e-07, + "perfecto": 2.51e-07, + "perma": 2.51e-07, + "perpetrating": 2.51e-07, + "perron": 2.51e-07, + "playthings": 2.51e-07, + "pleadings": 2.51e-07, + "pleiades": 2.51e-07, + "pln": 2.51e-07, + "plovdiv": 2.51e-07, + "pluripotent": 2.51e-07, + "podolski": 2.51e-07, + "pog": 2.51e-07, + "pogrom": 2.51e-07, + "posen": 2.51e-07, + "posi": 2.51e-07, + "predicates": 2.51e-07, + "presences": 2.51e-07, + "prioritised": 2.51e-07, + "prolongs": 2.51e-07, + "protip": 2.51e-07, + "provocatively": 2.51e-07, + "pul": 2.51e-07, + "puncher": 2.51e-07, + "purrs": 2.51e-07, + "pwm": 2.51e-07, + "qol": 2.51e-07, + "quelle": 2.51e-07, + "quinto": 2.51e-07, + "rachelle": 2.51e-07, + "racings": 2.51e-07, + "rajendra": 2.51e-07, + "rasp": 2.51e-07, + "ratifying": 2.51e-07, + "ratna": 2.51e-07, + "rayne": 2.51e-07, + "rectifying": 2.51e-07, + "redemptions": 2.51e-07, + "reeder": 2.51e-07, + "rehabilitative": 2.51e-07, + "reignite": 2.51e-07, + "reince": 2.51e-07, + "repainting": 2.51e-07, + "repatriate": 2.51e-07, + "respawn": 2.51e-07, + "reticle": 2.51e-07, + "revd": 5.37e-08, + "reve": 2.51e-07, + "reverberating": 2.51e-07, + "rezoning": 2.51e-07, + "rfe": 2.51e-07, + "rhizome": 2.51e-07, + "ricin": 2.51e-07, + "rickys": 2.51e-07, + "rimes": 2.51e-07, + "ritually": 2.51e-07, + "roadrunner": 2.51e-07, + "rogelio": 2.51e-07, + "rolla": 2.51e-07, + "rtf": 2.51e-07, + "saboteur": 2.51e-07, + "saison": 2.51e-07, + "samus": 2.51e-07, + "sappho": 2.51e-07, + "saris": 2.51e-07, + "sauteed": 2.51e-07, + "scherzinger": 2.51e-07, + "schuman": 2.51e-07, + "scl": 2.51e-07, + "seawall": 2.51e-07, + "secondarily": 2.51e-07, + "shani": 2.51e-07, + "shapeshifter": 2.51e-07, + "shiki": 2.51e-07, + "shivered": 2.51e-07, + "showgirl": 2.51e-07, + "silkworm": 2.51e-07, + "silliest": 2.51e-07, + "sinclairs": 2.51e-07, + "slags": 2.51e-07, + "slaver": 2.51e-07, + "slicked": 2.51e-07, + "smedley": 2.51e-07, + "smol": 2.51e-07, + "smollett": 2.51e-07, + "snooki": 2.51e-07, + "sofi": 2.51e-07, + "sog": 2.51e-07, + "sotto": 2.51e-07, + "soundgarden": 2.51e-07, + "soundstage": 2.51e-07, + "spatter": 2.51e-07, + "spaz": 2.51e-07, + "speared": 2.51e-07, + "spools": 2.51e-07, + "springdale": 2.51e-07, + "sqft": 2.51e-07, + "sro": 2.51e-07, + "stamos": 2.51e-07, + "stamper": 2.51e-07, + "steinem": 2.51e-07, + "stepper": 2.51e-07, + "stifles": 2.51e-07, + "stimulator": 2.51e-07, + "stopgap": 2.51e-07, + "stuckey": 2.51e-07, + "subiaco": 2.51e-07, + "subnet": 2.51e-07, + "sullied": 2.51e-07, + "sunblock": 2.51e-07, + "superconductor": 2.51e-07, + "superheated": 2.51e-07, + "supernovae": 2.51e-07, + "suppers": 2.51e-07, + "synchrony": 2.51e-07, + "taber": 2.51e-07, + "takagi": 2.51e-07, + "talcott": 2.51e-07, + "tamilnadu": 2.51e-07, + "taobao": 2.51e-07, + "taran": 2.51e-07, + "telcos": 2.51e-07, + "teletubbies": 2.51e-07, + "tempts": 2.51e-07, + "tenable": 2.51e-07, + "tenzin": 2.51e-07, + "tga": 2.51e-07, + "thacker": 2.51e-07, + "thalidomide": 2.51e-07, + "thingies": 2.51e-07, + "thurgood": 2.51e-07, + "thurlow": 2.51e-07, + "tif": 2.51e-07, + "timbaland": 2.51e-07, + "timorese": 2.51e-07, + "tindall": 2.51e-07, + "tite": 2.51e-07, + "toluene": 2.51e-07, + "trainwreck": 2.51e-07, + "treadmills": 2.51e-07, + "trebek": 2.51e-07, + "trice": 2.51e-07, + "triglyceride": 2.51e-07, + "trillium": 2.51e-07, + "trinitarian": 2.51e-07, + "trudge": 2.51e-07, + "tuam": 2.51e-07, + "tweedy": 2.51e-07, + "twinned": 2.51e-07, + "umc": 2.51e-07, + "umd": 2.51e-07, + "uncritical": 2.51e-07, + "unfeeling": 2.51e-07, + "unidirectional": 2.51e-07, + "unmade": 2.51e-07, + "unravels": 2.51e-07, + "unreliability": 2.51e-07, + "untainted": 2.51e-07, + "usu": 2.51e-07, + "usurping": 2.51e-07, + "vaal": 2.51e-07, + "valenti": 2.51e-07, + "valenzuela": 2.51e-07, + "vanna": 2.51e-07, + "vegemite": 2.51e-07, + "vicars": 1.05e-07, + "vieux": 2.51e-07, + "vlan": 2.51e-07, + "vocaloid": 2.51e-07, + "wain": 2.51e-07, + "waltzes": 2.51e-07, + "warlocks": 5.5e-08, + "waw": 2.51e-07, + "wedgie": 2.51e-07, + "weekender": 2.51e-07, + "weeklong": 2.51e-07, + "weirded": 2.51e-07, + "westernized": 2.51e-07, + "whaley": 2.51e-07, + "wheeze": 2.51e-07, + "whist": 2.51e-07, + "whitbread": 2.51e-07, + "wongs": 2.51e-07, + "woops": 2.51e-07, + "woozy": 2.51e-07, + "wulf": 2.51e-07, + "xiu": 2.51e-07, + "xrd": 2.51e-07, + "yasmine": 2.51e-07, + "yevgeny": 2.51e-07, + "yuppie": 2.51e-07, + "zam": 2.51e-07, + "zavala": 2.51e-07, + "zealously": 2.51e-07, + "zell": 2.51e-07, + "zimbabweans": 2.51e-07, + "zinger": 2.51e-07, + "zit": 2.51e-07, + "zwei": 2.51e-07, + "aardvark": 2.45e-07, + "absalom": 2.45e-07, + "abyssal": 2.45e-07, + "achy": 2.45e-07, + "adhesions": 2.45e-07, + "adirondacks": 2.45e-07, + "adress": 2.45e-07, + "adsl": 2.45e-07, + "airstream": 2.45e-07, + "akash": 2.45e-07, + "albin": 2.45e-07, + "alcorn": 2.45e-07, + "aleph": 2.45e-07, + "amico": 2.45e-07, + "angioplasty": 2.45e-07, + "annihilating": 2.45e-07, + "antagonizing": 2.45e-07, + "anthea": 2.45e-07, + "anticipatory": 2.45e-07, + "antonius": 2.45e-07, + "anurag": 2.45e-07, + "anywho": 2.45e-07, + "aphid": 2.45e-07, + "apoptotic": 2.45e-07, + "aral": 2.45e-07, + "aramis": 2.45e-07, + "areal": 2.45e-07, + "artesian": 2.45e-07, + "ashs": 2.45e-07, + "atul": 2.45e-07, + "augustinian": 2.45e-07, + "backhanded": 2.45e-07, + "backhoe": 2.45e-07, + "bagram": 2.45e-07, + "bakar": 2.45e-07, + "balearic": 2.45e-07, + "ballmer": 2.45e-07, + "bandra": 2.45e-07, + "bartel": 2.45e-07, + "basher": 2.45e-07, + "baste": 2.45e-07, + "bataille": 2.45e-07, + "batangas": 2.45e-07, + "batterys": 2.45e-07, + "bayeux": 2.45e-07, + "beautician": 2.45e-07, + "beckon": 2.45e-07, + "beget": 2.45e-07, + "belied": 2.45e-07, + "bellatrix": 2.45e-07, + "benazir": 2.45e-07, + "bentonite": 2.45e-07, + "berenson": 2.45e-07, + "bestial": 2.45e-07, + "betwixt": 2.45e-07, + "bgc": 2.45e-07, + "bhattacharya": 2.45e-07, + "bhavan": 2.45e-07, + "biddy": 2.45e-07, + "bigamy": 2.45e-07, + "billingsley": 2.45e-07, + "binks": 2.45e-07, + "blackheads": 2.45e-07, + "blare": 2.45e-07, + "bluefin": 2.45e-07, + "bna": 2.45e-07, + "bojan": 2.45e-07, + "bolger": 2.45e-07, + "boltons": 9.33e-08, + "bonafide": 2.45e-07, + "boof": 2.45e-07, + "boondocks": 2.45e-07, + "bord": 2.45e-07, + "bottoming": 2.45e-07, + "bouvier": 2.45e-07, + "bpo": 2.45e-07, + "bradfield": 2.45e-07, + "branden": 2.45e-07, + "brantford": 2.45e-07, + "breadsticks": 2.45e-07, + "breakeven": 2.45e-07, + "breathalyzer": 2.45e-07, + "brining": 2.45e-07, + "brio": 2.45e-07, + "bristled": 2.45e-07, + "broadsides": 2.45e-07, + "broiled": 2.45e-07, + "brolin": 2.45e-07, + "bsi": 2.45e-07, + "bss": 2.45e-07, + "btn": 2.45e-07, + "bubs": 2.45e-07, + "buchholz": 2.45e-07, + "bumblebees": 2.45e-07, + "bvs": 2.45e-07, + "cagey": 2.45e-07, + "camillo": 2.45e-07, + "capps": 2.45e-07, + "carbonaceous": 2.45e-07, + "carbonates": 2.45e-07, + "carbonic": 2.45e-07, + "carrara": 2.45e-07, + "caso": 2.45e-07, + "catt": 2.45e-07, + "ccw": 2.45e-07, + "celebrant": 2.45e-07, + "cengage": 2.45e-07, + "chauffeurs": 2.45e-07, + "checkbox": 2.45e-07, + "cherokees": 2.45e-07, + "chicory": 2.45e-07, + "chihuahuas": 2.45e-07, + "chileans": 2.45e-07, + "cib": 2.45e-07, + "cinta": 2.45e-07, + "citra": 2.45e-07, + "ckd": 2.45e-07, + "classifiers": 2.45e-07, + "clawson": 2.45e-07, + "clerkenwell": 2.45e-07, + "cleverest": 2.45e-07, + "clonal": 2.45e-07, + "cml": 2.45e-07, + "codify": 2.45e-07, + "colburn": 2.45e-07, + "collison": 2.45e-07, + "colorblind": 2.45e-07, + "condoleezza": 2.45e-07, + "conjunct": 2.45e-07, + "constrictor": 2.45e-07, + "consumerist": 2.45e-07, + "contador": 2.45e-07, + "contraindicated": 2.45e-07, + "conv": 2.45e-07, + "convenor": 2.45e-07, + "conversant": 2.45e-07, + "convivial": 2.45e-07, + "coquitlam": 2.45e-07, + "corse": 2.45e-07, + "coulomb": 2.45e-07, + "countermeasure": 2.45e-07, + "cranmer": 2.45e-07, + "crashers": 2.45e-07, + "creel": 2.45e-07, + "crofts": 5.13e-08, + "csd": 2.45e-07, + "cueto": 2.45e-07, + "culpeper": 2.45e-07, + "curates": 2.45e-07, + "cuse": 2.45e-07, + "cyprian": 2.45e-07, + "dailymotion": 2.45e-07, + "danganronpa": 2.45e-07, + "dappled": 2.45e-07, + "dardanelles": 2.45e-07, + "daren": 2.45e-07, + "darian": 2.45e-07, + "darnley": 2.45e-07, + "daylights": 2.45e-07, + "dedham": 2.45e-07, + "deets": 2.45e-07, + "defeatist": 2.45e-07, + "definable": 2.45e-07, + "delph": 2.45e-07, + "demarcated": 2.45e-07, + "deschanel": 2.45e-07, + "detaching": 2.45e-07, + "deters": 2.45e-07, + "deuces": 2.45e-07, + "diadem": 2.45e-07, + "dialled": 2.45e-07, + "diamondback": 2.45e-07, + "dib": 2.45e-07, + "diddle": 2.45e-07, + "diderot": 2.45e-07, + "dien": 2.45e-07, + "dietician": 2.45e-07, + "dinero": 2.45e-07, + "disciplinarian": 2.45e-07, + "disincentive": 2.45e-07, + "diversionary": 2.45e-07, + "divisiveness": 2.45e-07, + "dni": 2.45e-07, + "doctoring": 2.45e-07, + "dominik": 2.45e-07, + "donato": 2.45e-07, + "dood": 2.45e-07, + "doorsteps": 2.45e-07, + "doraemon": 2.45e-07, + "doral": 2.45e-07, + "dorne": 2.45e-07, + "dotting": 2.45e-07, + "dougs": 2.45e-07, + "dpt": 2.45e-07, + "draping": 2.45e-07, + "dso": 2.45e-07, + "duan": 2.45e-07, + "ducal": 2.45e-07, + "earnestness": 2.45e-07, + "ebbs": 2.45e-07, + "eberle": 2.45e-07, + "ecclestone": 2.45e-07, + "echos": 1.26e-07, + "economys": 2.45e-07, + "edelweiss": 2.45e-07, + "eep": 2.45e-07, + "eisen": 2.45e-07, + "electrolux": 2.45e-07, + "elizabethtown": 2.45e-07, + "elkin": 2.45e-07, + "ellies": 2.45e-07, + "ellipsoid": 2.45e-07, + "embraer": 2.45e-07, + "embry": 2.45e-07, + "emmerson": 2.45e-07, + "energised": 2.45e-07, + "energizer": 2.45e-07, + "erudition": 2.45e-07, + "escher": 2.45e-07, + "esk": 2.45e-07, + "euan": 2.45e-07, + "evaporative": 2.45e-07, + "evened": 2.45e-07, + "evertons": 2.45e-07, + "eviscerated": 2.45e-07, + "evolutionarily": 2.45e-07, + "exfoliate": 2.45e-07, + "exfoliation": 2.45e-07, + "exhalation": 2.45e-07, + "expels": 2.45e-07, + "faf": 2.45e-07, + "fairyland": 2.45e-07, + "famished": 2.45e-07, + "fccs": 2.45e-07, + "feige": 2.45e-07, + "fencer": 2.45e-07, + "ffl": 2.45e-07, + "fiddled": 2.45e-07, + "finlayson": 2.45e-07, + "finra": 2.45e-07, + "fiorina": 2.45e-07, + "fip": 2.45e-07, + "fishbowl": 2.45e-07, + "flexi": 2.45e-07, + "floaty": 2.45e-07, + "florals": 2.45e-07, + "florid": 2.45e-07, + "floridian": 2.45e-07, + "flours": 2.45e-07, + "flunked": 2.45e-07, + "foosball": 2.45e-07, + "foresees": 2.45e-07, + "foreshadow": 2.45e-07, + "forfar": 2.45e-07, + "forsaking": 2.45e-07, + "francoise": 2.45e-07, + "functionaries": 2.45e-07, + "gabbard": 2.45e-07, + "gagarin": 2.45e-07, + "galahad": 2.45e-07, + "gallifrey": 2.45e-07, + "galloped": 2.45e-07, + "gamespot": 2.45e-07, + "gardena": 2.45e-07, + "gastroenteritis": 2.45e-07, + "gentrified": 2.45e-07, + "ghs": 2.45e-07, + "ghul": 2.45e-07, + "ginkgo": 2.45e-07, + "girardeau": 2.45e-07, + "giuliana": 2.45e-07, + "glaad": 2.45e-07, + "glioblastoma": 2.45e-07, + "goan": 2.45e-07, + "goldfarb": 2.45e-07, + "gondor": 2.45e-07, + "gores": 1.26e-07, + "gpt": 2.45e-07, + "gramm": 2.45e-07, + "grampian": 2.45e-07, + "grandes": 1.86e-07, + "grannys": 2.45e-07, + "grapples": 2.45e-07, + "greedily": 2.45e-07, + "gregoire": 2.45e-07, + "grierson": 2.45e-07, + "grubb": 2.45e-07, + "gtd": 2.45e-07, + "guac": 2.45e-07, + "gumption": 2.45e-07, + "gympie": 2.45e-07, + "habe": 2.45e-07, + "haleys": 2.45e-07, + "hamdan": 2.45e-07, + "handels": 2.45e-07, + "hardwicke": 2.45e-07, + "hargrove": 2.45e-07, + "haruki": 2.45e-07, + "hashes": 2.45e-07, + "haswell": 2.45e-07, + "headman": 2.45e-07, + "headwear": 2.45e-07, + "hedgerows": 2.45e-07, + "hemphill": 2.45e-07, + "hepworth": 2.45e-07, + "herbivore": 2.45e-07, + "herewith": 2.45e-07, + "hewett": 2.45e-07, + "higginson": 2.45e-07, + "hmd": 2.45e-07, + "holme": 2.45e-07, + "hommes": 2.45e-07, + "horrifically": 2.45e-07, + "hotelier": 2.45e-07, + "hothouse": 2.45e-07, + "houseguest": 2.45e-07, + "humanized": 2.45e-07, + "hx": 2.45e-07, + "hydrocodone": 2.45e-07, + "hyphenated": 2.45e-07, + "hypnotherapy": 2.45e-07, + "ibooks": 2.45e-07, + "icr": 2.45e-07, + "idealised": 2.45e-07, + "ifl": 2.45e-07, + "igm": 2.45e-07, + "immunosuppressive": 2.45e-07, + "impairing": 2.45e-07, + "inauspicious": 2.45e-07, + "inbuilt": 2.45e-07, + "incantations": 2.45e-07, + "industrials": 2.45e-07, + "inflections": 2.45e-07, + "ingeniously": 2.45e-07, + "injunctive": 2.45e-07, + "insinuations": 2.45e-07, + "instabilities": 2.45e-07, + "integra": 2.45e-07, + "intelligences": 2.45e-07, + "interconnections": 2.45e-07, + "irgc": 2.45e-07, + "isak": 2.45e-07, + "jalal": 2.45e-07, + "janna": 2.45e-07, + "jara": 2.45e-07, + "jase": 2.45e-07, + "jazzed": 2.45e-07, + "jimin": 2.45e-07, + "jonjo": 2.45e-07, + "jono": 2.45e-07, + "jyoti": 2.45e-07, + "kaito": 2.45e-07, + "kak": 2.45e-07, + "kaleb": 2.45e-07, + "kaliningrad": 2.45e-07, + "kamchatka": 2.45e-07, + "kanna": 2.45e-07, + "kantor": 2.45e-07, + "kare": 2.45e-07, + "karolina": 2.45e-07, + "kathie": 2.45e-07, + "keighley": 2.45e-07, + "khl": 2.45e-07, + "kingsman": 2.45e-07, + "kobes": 2.45e-07, + "kone": 2.45e-07, + "kratos": 2.45e-07, + "krav": 2.45e-07, + "kristol": 2.45e-07, + "kum": 2.45e-07, + "kyla": 2.45e-07, + "lacan": 2.45e-07, + "laconic": 2.45e-07, + "laidback": 2.45e-07, + "lamentation": 2.45e-07, + "laotian": 2.45e-07, + "lateness": 2.45e-07, + "laughin": 2.45e-07, + "laure": 2.45e-07, + "lawd": 2.45e-07, + "leas": 7.76e-08, + "legitimizing": 2.45e-07, + "legrand": 2.45e-07, + "leppard": 2.45e-07, + "levites": 2.45e-07, + "lhp": 2.45e-07, + "ligne": 2.45e-07, + "lillys": 2.45e-07, + "lindgren": 2.45e-07, + "liss": 2.45e-07, + "llewelyn": 2.45e-07, + "lobbed": 2.45e-07, + "loko": 2.45e-07, + "lololol": 2.45e-07, + "londo": 2.45e-07, + "loreto": 2.45e-07, + "luanda": 2.45e-07, + "luminary": 2.45e-07, + "lynyrd": 2.45e-07, + "lysander": 2.45e-07, + "maida": 2.45e-07, + "mallow": 2.45e-07, + "manatees": 2.45e-07, + "mandal": 2.45e-07, + "mandarins": 2.45e-07, + "mangle": 2.45e-07, + "maniacally": 2.45e-07, + "manitou": 2.45e-07, + "manohar": 2.45e-07, + "maputo": 2.45e-07, + "marketability": 2.45e-07, + "massoud": 2.45e-07, + "mati": 2.45e-07, + "maturities": 2.45e-07, + "maudlin": 2.45e-07, + "maugham": 2.45e-07, + "maximo": 2.45e-07, + "maxims": 1.1e-07, + "maxis": 2.45e-07, + "mccray": 2.45e-07, + "mclane": 2.45e-07, + "meagan": 2.45e-07, + "megastar": 2.45e-07, + "mehra": 2.45e-07, + "melilla": 2.45e-07, + "mercurys": 2.45e-07, + "michelson": 2.45e-07, + "michiko": 2.45e-07, + "minos": 1.12e-08, + "minutely": 2.45e-07, + "miter": 2.45e-07, + "mito": 2.45e-07, + "mnc": 2.45e-07, + "mnd": 2.45e-07, + "monkees": 2.45e-07, + "moping": 2.45e-07, + "moretz": 2.45e-07, + "moslems": 2.45e-07, + "mots": 2.45e-07, + "multan": 2.45e-07, + "murali": 2.45e-07, + "nadya": 2.45e-07, + "nanak": 2.45e-07, + "nandini": 2.45e-07, + "nanometer": 2.45e-07, + "natsuki": 2.45e-07, + "natur": 2.45e-07, + "ncos": 2.45e-07, + "ndt": 2.45e-07, + "nef": 2.45e-07, + "newcastles": 2.45e-07, + "newsman": 2.45e-07, + "nijmegen": 2.45e-07, + "nlc": 2.45e-07, + "nobly": 2.45e-07, + "nomi": 2.45e-07, + "nonspecific": 2.45e-07, + "noreen": 2.45e-07, + "nuked": 2.45e-07, + "odonoghue": 2.45e-07, + "odm": 2.45e-07, + "ohs": 1.2e-07, + "oilfields": 2.45e-07, + "olathe": 2.45e-07, + "oldschool": 2.45e-07, + "oras": 2.45e-07, + "ordo": 2.45e-07, + "ort": 2.45e-07, + "osm": 2.45e-07, + "otero": 2.45e-07, + "overhand": 2.45e-07, + "overhyped": 2.45e-07, + "oversimplification": 2.45e-07, + "overwritten": 2.45e-07, + "ovr": 2.45e-07, + "ovum": 2.45e-07, + "pakhtunkhwa": 2.45e-07, + "pampers": 2.45e-07, + "panchayats": 2.45e-07, + "pantone": 2.45e-07, + "parabola": 2.45e-07, + "parishioner": 2.45e-07, + "parkside": 2.45e-07, + "pasa": 2.45e-07, + "pascale": 2.45e-07, + "pati": 2.45e-07, + "patricio": 2.45e-07, + "pavlova": 2.45e-07, + "pedrosa": 2.45e-07, + "pellegrino": 2.45e-07, + "penalizing": 2.45e-07, + "peonies": 2.45e-07, + "pepperdine": 2.45e-07, + "perestroika": 2.45e-07, + "periwinkle": 2.45e-07, + "perked": 2.45e-07, + "perpetuation": 2.45e-07, + "perri": 2.45e-07, + "persuasions": 2.45e-07, + "peruvians": 2.45e-07, + "peterman": 2.45e-07, + "pfister": 2.45e-07, + "phill": 2.45e-07, + "phillipe": 2.45e-07, + "photoshopping": 2.45e-07, + "pickard": 2.45e-07, + "pillai": 2.45e-07, + "pinkett": 2.45e-07, + "piste": 2.45e-07, + "pkwy": 2.45e-07, + "plainclothes": 2.45e-07, + "platz": 2.45e-07, + "pleasanton": 2.45e-07, + "pleasuring": 2.45e-07, + "pmr": 2.45e-07, + "pnw": 2.45e-07, + "poh": 2.45e-07, + "polak": 2.45e-07, + "polemics": 2.45e-07, + "politicization": 2.45e-07, + "polycystic": 2.45e-07, + "polyp": 2.45e-07, + "pompano": 2.45e-07, + "potpourri": 2.45e-07, + "practicalities": 2.45e-07, + "prance": 2.45e-07, + "pranksters": 2.45e-07, + "precipitously": 2.45e-07, + "preheated": 2.45e-07, + "prerogatives": 2.45e-07, + "pried": 2.45e-07, + "prieto": 2.45e-07, + "privatizing": 2.45e-07, + "probity": 2.45e-07, + "proboscis": 2.45e-07, + "proclivity": 2.45e-07, + "proprietorship": 2.45e-07, + "puglia": 2.45e-07, + "punto": 2.45e-07, + "purser": 2.45e-07, + "pylori": 2.45e-07, + "rackham": 2.45e-07, + "radiographs": 2.45e-07, + "ramada": 2.45e-07, + "rangefinder": 2.45e-07, + "rapacious": 2.45e-07, + "ravenswood": 2.45e-07, + "rdp": 2.45e-07, + "redefinition": 2.45e-07, + "redistributing": 2.45e-07, + "regionalism": 2.45e-07, + "regurgitation": 2.45e-07, + "rehnquist": 2.45e-07, + "reits": 2.45e-07, + "renegotiated": 2.45e-07, + "repossession": 2.45e-07, + "resenting": 2.45e-07, + "revo": 2.45e-07, + "revolutionised": 2.45e-07, + "rfk": 2.45e-07, + "rheumatology": 2.45e-07, + "rhinitis": 2.45e-07, + "rhyl": 2.45e-07, + "riaz": 2.45e-07, + "ridgewood": 2.45e-07, + "ripa": 2.45e-07, + "robustly": 2.45e-07, + "rockwood": 2.45e-07, + "rollicking": 2.45e-07, + "roosting": 2.45e-07, + "rothenberg": 2.45e-07, + "roto": 2.45e-07, + "rrr": 2.45e-07, + "rufous": 2.45e-07, + "runic": 2.45e-07, + "sabers": 2.45e-07, + "saccharomyces": 2.45e-07, + "saltire": 2.45e-07, + "sanjeev": 2.45e-07, + "saraswati": 2.45e-07, + "sava": 2.45e-07, + "scd": 2.45e-07, + "schenck": 2.45e-07, + "schnitzel": 2.45e-07, + "scratcher": 2.45e-07, + "scrutinised": 2.45e-07, + "seashell": 2.45e-07, + "sedge": 2.45e-07, + "sensitization": 2.45e-07, + "sensitized": 2.45e-07, + "serjeant": 2.45e-07, + "sfm": 2.45e-07, + "shafted": 2.45e-07, + "shamanic": 2.45e-07, + "shapeless": 2.45e-07, + "sharpshooters": 2.45e-07, + "shelleys": 2.45e-07, + "shelve": 2.45e-07, + "shima": 2.45e-07, + "shimla": 2.45e-07, + "shirin": 2.45e-07, + "shockwaves": 2.45e-07, + "shonda": 2.45e-07, + "shonen": 2.45e-07, + "shortcake": 2.45e-07, + "shrike": 2.45e-07, + "shrivel": 2.45e-07, + "sib": 2.45e-07, + "sibelius": 2.45e-07, + "slithering": 2.45e-07, + "sloshing": 2.45e-07, + "smd": 2.45e-07, + "smoot": 2.45e-07, + "smugly": 2.45e-07, + "sneered": 2.45e-07, + "snoozing": 2.45e-07, + "softcover": 2.45e-07, + "soiling": 2.45e-07, + "squirtle": 2.45e-07, + "staal": 2.45e-07, + "stam": 2.45e-07, + "standin": 2.45e-07, + "starfighter": 2.45e-07, + "steelworks": 2.45e-07, + "steffi": 2.45e-07, + "sterilisation": 2.45e-07, + "stigmata": 2.45e-07, + "stile": 2.45e-07, + "stratagem": 2.45e-07, + "striated": 2.45e-07, + "strutt": 2.45e-07, + "stunk": 2.45e-07, + "sturdier": 2.45e-07, + "subramanian": 2.45e-07, + "succesful": 2.45e-07, + "sugarcoat": 2.45e-07, + "supercritical": 2.45e-07, + "supermajority": 2.45e-07, + "surnamed": 2.45e-07, + "swiftness": 2.45e-07, + "symbolised": 2.45e-07, + "synchronizing": 2.45e-07, + "syne": 2.45e-07, + "tala": 2.45e-07, + "tambo": 2.45e-07, + "tarnishing": 2.45e-07, + "teddington": 2.45e-07, + "tema": 2.45e-07, + "thankfulness": 2.45e-07, + "thermals": 2.45e-07, + "thinness": 2.45e-07, + "throwin": 2.45e-07, + "thunderbolts": 2.45e-07, + "tidied": 2.45e-07, + "tipple": 2.45e-07, + "transnistria": 2.45e-07, + "traynor": 2.45e-07, + "trebled": 2.45e-07, + "trickles": 2.45e-07, + "trobe": 2.45e-07, + "tubercles": 2.45e-07, + "tucci": 2.45e-07, + "tunica": 2.45e-07, + "turnstile": 2.45e-07, + "twinkie": 2.45e-07, + "uclas": 2.45e-07, + "udemy": 2.45e-07, + "ulnar": 2.45e-07, + "umber": 2.45e-07, + "umbra": 2.45e-07, + "unashamed": 2.45e-07, + "unconstitutionally": 2.45e-07, + "unearthing": 2.45e-07, + "unhygienic": 2.45e-07, + "unnumbered": 2.45e-07, + "unobtainable": 2.45e-07, + "unseated": 2.45e-07, + "unter": 2.45e-07, + "untried": 2.45e-07, + "unwisely": 2.45e-07, + "upwind": 2.45e-07, + "urethral": 2.45e-07, + "vacationers": 2.45e-07, + "vagus": 2.45e-07, + "valdosta": 2.45e-07, + "varner": 2.45e-07, + "vinton": 2.45e-07, + "visalia": 2.45e-07, + "vivekananda": 2.45e-07, + "wahab": 2.45e-07, + "wailers": 2.45e-07, + "warding": 2.45e-07, + "warily": 2.45e-07, + "warr": 2.45e-07, + "wastelands": 2.45e-07, + "wausau": 2.45e-07, + "wavelet": 2.45e-07, + "webmaster": 2.45e-07, + "wiesel": 2.45e-07, + "wikipedias": 2.45e-07, + "wimps": 2.45e-07, + "windhoek": 2.45e-07, + "winsome": 2.45e-07, + "wintour": 2.45e-07, + "witwatersrand": 2.45e-07, + "wodehouse": 2.45e-07, + "wolfenstein": 2.45e-07, + "wonderment": 2.45e-07, + "woodburn": 2.45e-07, + "wrenched": 2.45e-07, + "wti": 2.45e-07, + "xan": 2.45e-07, + "yamashita": 2.45e-07, + "yankovic": 2.45e-07, + "yaris": 2.45e-07, + "yisrael": 2.45e-07, + "yousaf": 2.45e-07, + "yuu": 2.45e-07, + "yuzu": 2.45e-07, + "ywca": 2.45e-07, + "zaid": 2.45e-07, + "zev": 2.45e-07, + "zhan": 2.45e-07, + "ziegfeld": 2.45e-07, + "zinedine": 2.45e-07, + "aaaand": 2.4e-07, + "abia": 2.4e-07, + "abrogated": 2.4e-07, + "absolut": 2.4e-07, + "adjoins": 2.4e-07, + "aeschylus": 2.4e-07, + "aet": 2.4e-07, + "affixes": 2.4e-07, + "afton": 2.4e-07, + "ager": 2.4e-07, + "agnostics": 2.4e-07, + "agp": 2.4e-07, + "agricole": 2.4e-07, + "agu": 2.4e-07, + "ahrar": 2.4e-07, + "algerians": 2.4e-07, + "altrincham": 2.4e-07, + "amaranth": 2.4e-07, + "amat": 2.4e-07, + "ambani": 2.4e-07, + "ambidextrous": 2.4e-07, + "amundsen": 2.4e-07, + "analgesics": 2.4e-07, + "ands": 2.4e-07, + "anstey": 2.4e-07, + "anthropologie": 2.4e-07, + "approximates": 2.4e-07, + "archangels": 2.4e-07, + "arin": 2.4e-07, + "aristophanes": 2.4e-07, + "aspinall": 2.4e-07, + "atria": 2.4e-07, + "attesting": 2.4e-07, + "atti": 2.4e-07, + "attributions": 2.4e-07, + "aves": 1.17e-08, + "ayman": 2.4e-07, + "azar": 2.4e-07, + "backfiring": 2.4e-07, + "balmer": 2.4e-07, + "balor": 2.4e-07, + "barrons": 5.37e-08, + "barstool": 2.4e-07, + "bassam": 2.4e-07, + "batcave": 2.4e-07, + "baubles": 2.4e-07, + "baugh": 2.4e-07, + "bayan": 2.4e-07, + "bcp": 2.4e-07, + "beagles": 2.4e-07, + "begley": 2.4e-07, + "begrudgingly": 2.4e-07, + "belching": 2.4e-07, + "benioff": 2.4e-07, + "bhutanese": 2.4e-07, + "biarritz": 2.4e-07, + "bicyclist": 2.4e-07, + "bidwell": 2.4e-07, + "blandford": 2.4e-07, + "blips": 2.4e-07, + "bloomers": 2.4e-07, + "bloopers": 2.4e-07, + "bludgeon": 2.4e-07, + "bobbed": 2.4e-07, + "bobblehead": 2.4e-07, + "boeings": 2.4e-07, + "bolling": 2.4e-07, + "bonnaroo": 2.4e-07, + "bonobo": 2.4e-07, + "boombox": 2.4e-07, + "boracay": 2.4e-07, + "boughs": 2.4e-07, + "boxset": 2.4e-07, + "bregman": 2.4e-07, + "bringin": 2.4e-07, + "brusque": 2.4e-07, + "bry": 2.4e-07, + "bsf": 2.4e-07, + "bucknell": 2.4e-07, + "burgled": 2.4e-07, + "burk": 2.4e-07, + "burping": 2.4e-07, + "buxom": 2.4e-07, + "byways": 2.4e-07, + "cadillacs": 6.46e-08, + "calisthenics": 2.4e-07, + "callas": 2.4e-07, + "callbacks": 2.4e-07, + "camilo": 2.4e-07, + "canker": 2.4e-07, + "cantonment": 2.4e-07, + "carbone": 2.4e-07, + "carcinomas": 2.4e-07, + "cari": 2.4e-07, + "caritas": 2.4e-07, + "carles": 2.4e-07, + "carley": 2.4e-07, + "carlow": 2.4e-07, + "caseworker": 2.4e-07, + "cassiopeia": 2.4e-07, + "castell": 2.4e-07, + "cationic": 2.4e-07, + "cavitation": 2.4e-07, + "ced": 2.4e-07, + "celestia": 2.4e-07, + "ceta": 2.4e-07, + "chal": 2.4e-07, + "chanda": 2.4e-07, + "cheever": 2.4e-07, + "cheez": 2.4e-07, + "chelyabinsk": 2.4e-07, + "chicane": 2.4e-07, + "cleansers": 2.4e-07, + "clematis": 2.4e-07, + "climatology": 2.4e-07, + "cll": 2.4e-07, + "coakley": 2.4e-07, + "colle": 2.4e-07, + "commonest": 2.4e-07, + "compulsions": 2.4e-07, + "congregants": 2.4e-07, + "conjunctivitis": 2.4e-07, + "connally": 2.4e-07, + "conover": 2.4e-07, + "conrads": 2.4e-07, + "convalescence": 2.4e-07, + "cookson": 2.4e-07, + "corbusier": 2.4e-07, + "corporatism": 2.4e-07, + "cosplaying": 2.4e-07, + "countertops": 2.4e-07, + "couplets": 2.4e-07, + "cranbrook": 2.4e-07, + "crankcase": 2.4e-07, + "craw": 2.4e-07, + "creasy": 2.4e-07, + "crewmembers": 2.4e-07, + "criticality": 2.4e-07, + "crockpot": 2.4e-07, + "cruickshank": 2.4e-07, + "culloden": 2.4e-07, + "cunliffe": 2.4e-07, + "cylon": 2.4e-07, + "cyr": 2.4e-07, + "dabbed": 2.4e-07, + "dashcam": 2.4e-07, + "datsun": 2.4e-07, + "dawood": 2.4e-07, + "dearer": 2.4e-07, + "debased": 2.4e-07, + "deferential": 2.4e-07, + "defray": 2.4e-07, + "deliverer": 2.4e-07, + "demographically": 2.4e-07, + "deniz": 2.4e-07, + "depopulation": 2.4e-07, + "derick": 2.4e-07, + "derivations": 2.4e-07, + "derulo": 2.4e-07, + "descendent": 2.4e-07, + "deseret": 2.4e-07, + "desiccated": 2.4e-07, + "desjardins": 2.4e-07, + "despots": 2.4e-07, + "deutscher": 2.4e-07, + "deviants": 2.4e-07, + "diatoms": 2.4e-07, + "digitised": 2.4e-07, + "dinnertime": 2.4e-07, + "dirge": 2.4e-07, + "dismember": 2.4e-07, + "doggedly": 2.4e-07, + "dominator": 2.4e-07, + "dowel": 2.4e-07, + "dozer": 2.4e-07, + "duhamel": 2.4e-07, + "dullness": 2.4e-07, + "dunmore": 2.4e-07, + "dwarfism": 2.4e-07, + "dyna": 2.4e-07, + "eagleton": 2.4e-07, + "ecoboost": 2.4e-07, + "edgier": 2.4e-07, + "educative": 2.4e-07, + "egoism": 2.4e-07, + "eigenvalue": 2.4e-07, + "eir": 2.4e-07, + "eldar": 2.4e-07, + "elt": 2.4e-07, + "englander": 2.4e-07, + "enrage": 2.4e-07, + "enthalpy": 2.4e-07, + "errr": 2.4e-07, + "estee": 2.4e-07, + "etobicoke": 2.4e-07, + "exhilarated": 2.4e-07, + "existentialist": 2.4e-07, + "exoneration": 2.4e-07, + "fahad": 2.4e-07, + "farmstead": 2.4e-07, + "fatih": 2.4e-07, + "faulk": 2.4e-07, + "favreau": 2.4e-07, + "femi": 2.4e-07, + "feminization": 2.4e-07, + "fens": 2.4e-07, + "finchley": 2.4e-07, + "fitzgibbon": 2.4e-07, + "flagrantly": 2.4e-07, + "flotsam": 2.4e-07, + "flt": 2.4e-07, + "flutters": 2.4e-07, + "forefinger": 2.4e-07, + "fracas": 2.4e-07, + "frist": 2.4e-07, + "fundy": 2.4e-07, + "furrows": 2.4e-07, + "galton": 2.4e-07, + "gans": 2.4e-07, + "gargle": 2.4e-07, + "gassy": 2.4e-07, + "gastritis": 2.4e-07, + "gaultier": 2.4e-07, + "germania": 2.4e-07, + "gillen": 2.4e-07, + "ging": 2.4e-07, + "gingers": 8.51e-08, + "gizmodo": 2.4e-07, + "gizzard": 2.4e-07, + "glenns": 2.4e-07, + "godiva": 2.4e-07, + "goma": 2.4e-07, + "goodson": 2.4e-07, + "gratz": 2.4e-07, + "greensburg": 2.4e-07, + "grindstone": 2.4e-07, + "grubbing": 2.4e-07, + "guerillas": 2.4e-07, + "guilders": 2.4e-07, + "gulfport": 2.4e-07, + "gynecologists": 2.4e-07, + "hahahahahaha": 2.4e-07, + "hann": 2.4e-07, + "harada": 2.4e-07, + "harney": 2.4e-07, + "hcs": 2.4e-07, + "heeding": 2.4e-07, + "heralding": 2.4e-07, + "hetherington": 2.4e-07, + "hialeah": 2.4e-07, + "hibbard": 2.4e-07, + "hickok": 2.4e-07, + "higham": 2.4e-07, + "hinkle": 2.4e-07, + "hisses": 2.4e-07, + "hodgepodge": 2.4e-07, + "hoffmans": 2.4e-07, + "hogwash": 2.4e-07, + "hoists": 2.4e-07, + "holyfield": 2.4e-07, + "honorific": 2.4e-07, + "hopscotch": 2.4e-07, + "hornblower": 2.4e-07, + "houser": 2.4e-07, + "humus": 2.4e-07, + "hurls": 2.4e-07, + "hurwitz": 2.4e-07, + "hydraulically": 2.4e-07, + "hydrolyzed": 2.4e-07, + "icac": 2.4e-07, + "icbms": 2.4e-07, + "iker": 2.4e-07, + "impersonated": 2.4e-07, + "inaugurating": 2.4e-07, + "infantryman": 2.4e-07, + "ingot": 2.4e-07, + "inoperative": 2.4e-07, + "instil": 2.4e-07, + "interconnecting": 2.4e-07, + "internacional": 2.4e-07, + "intrauterine": 2.4e-07, + "invocations": 2.4e-07, + "ipp": 2.4e-07, + "irk": 2.4e-07, + "jad": 2.4e-07, + "jammy": 2.4e-07, + "jcb": 2.4e-07, + "jdm": 2.4e-07, + "jeffersonian": 2.4e-07, + "jessop": 2.4e-07, + "jeune": 2.4e-07, + "jiangxi": 2.4e-07, + "johnstons": 2.4e-07, + "joshuas": 2.4e-07, + "journos": 2.4e-07, + "jvm": 2.4e-07, + "kaolin": 2.4e-07, + "kats": 1.91e-07, + "kavanaughs": 2.4e-07, + "kinnock": 2.4e-07, + "kipp": 2.4e-07, + "kirkby": 2.4e-07, + "kirstie": 2.4e-07, + "kish": 2.4e-07, + "kiwanis": 2.4e-07, + "koga": 2.4e-07, + "komen": 2.4e-07, + "krasnodar": 2.4e-07, + "kraut": 2.4e-07, + "kul": 2.4e-07, + "kumasi": 2.4e-07, + "lactobacillus": 2.4e-07, + "lamest": 2.4e-07, + "leaderboards": 2.4e-07, + "leslies": 2.4e-07, + "levante": 2.4e-07, + "lhs": 2.4e-07, + "liddle": 2.4e-07, + "lig": 2.4e-07, + "lightbulbs": 2.4e-07, + "limoges": 2.4e-07, + "lisboa": 2.4e-07, + "littles": 1.48e-07, + "loiter": 2.4e-07, + "longingly": 2.4e-07, + "loosed": 2.4e-07, + "lopezs": 2.4e-07, + "lq": 2.4e-07, + "lto": 2.4e-07, + "maddon": 2.4e-07, + "magento": 2.4e-07, + "mainstreaming": 2.4e-07, + "maintainer": 2.4e-07, + "manuka": 2.4e-07, + "mapp": 2.4e-07, + "marginalize": 2.4e-07, + "mcdaniels": 2.4e-07, + "megapixels": 2.4e-07, + "mendelsohn": 2.4e-07, + "mercator": 2.4e-07, + "merdeka": 2.4e-07, + "merrin": 2.4e-07, + "meru": 2.4e-07, + "merwe": 2.4e-07, + "meshing": 2.4e-07, + "metta": 2.4e-07, + "microchips": 2.4e-07, + "micronutrients": 2.4e-07, + "milliner": 2.4e-07, + "miniaturized": 2.4e-07, + "miniskirt": 2.4e-07, + "misra": 2.4e-07, + "mitford": 2.4e-07, + "modernising": 2.4e-07, + "mog": 2.4e-07, + "monocytes": 2.4e-07, + "montano": 2.4e-07, + "moonrise": 2.4e-07, + "morozov": 2.4e-07, + "motes": 2.4e-07, + "motm": 2.4e-07, + "moviegoers": 2.4e-07, + "mulvaney": 2.4e-07, + "muna": 2.4e-07, + "nakamoto": 2.4e-07, + "narcos": 2.4e-07, + "nashvilles": 2.4e-07, + "navigates": 2.4e-07, + "nephrology": 2.4e-07, + "nessie": 2.4e-07, + "neutralised": 2.4e-07, + "neutralization": 2.4e-07, + "newbery": 2.4e-07, + "newby": 2.4e-07, + "newhaven": 2.4e-07, + "nila": 2.4e-07, + "nippy": 2.4e-07, + "nishi": 2.4e-07, + "nishimura": 2.4e-07, + "nits": 2.4e-07, + "nobis": 2.4e-07, + "nytimes": 2.4e-07, + "obp": 2.4e-07, + "ointments": 2.4e-07, + "okeechobee": 2.4e-07, + "onenote": 2.4e-07, + "oolong": 2.4e-07, + "orientalism": 2.4e-07, + "orsini": 2.4e-07, + "outfielders": 2.4e-07, + "overpaying": 2.4e-07, + "overproduction": 2.4e-07, + "overshadowing": 2.4e-07, + "overstep": 2.4e-07, + "pachinko": 2.4e-07, + "palatal": 2.4e-07, + "pallid": 2.4e-07, + "paro": 2.4e-07, + "parsed": 2.4e-07, + "patek": 2.4e-07, + "pavia": 2.4e-07, + "pedi": 2.4e-07, + "pennsylvanian": 2.4e-07, + "perceval": 2.4e-07, + "pergamon": 2.4e-07, + "peron": 2.4e-07, + "personage": 2.4e-07, + "petter": 2.4e-07, + "pilling": 2.4e-07, + "pinehurst": 2.4e-07, + "pinpointing": 2.4e-07, + "pmp": 2.4e-07, + "politifact": 2.4e-07, + "polyglot": 2.4e-07, + "pontypridd": 2.4e-07, + "popstar": 2.4e-07, + "porpoises": 2.4e-07, + "pouty": 2.4e-07, + "prabhu": 2.4e-07, + "prashant": 2.4e-07, + "preachy": 2.4e-07, + "preserver": 2.4e-07, + "prioritising": 2.4e-07, + "pris": 2.4e-07, + "prolongation": 2.4e-07, + "propellants": 2.4e-07, + "psychedelics": 2.4e-07, + "publicise": 2.4e-07, + "puerta": 2.4e-07, + "puyo": 2.4e-07, + "quanta": 2.4e-07, + "quimby": 2.4e-07, + "rabe": 2.4e-07, + "rader": 2.4e-07, + "raiden": 2.4e-07, + "ramakrishna": 2.4e-07, + "rationalisation": 2.4e-07, + "reallocated": 2.4e-07, + "recycles": 2.4e-07, + "referenda": 2.4e-07, + "reformists": 2.4e-07, + "refracted": 2.4e-07, + "reggaeton": 2.4e-07, + "reine": 2.4e-07, + "reintroducing": 2.4e-07, + "relatedness": 2.4e-07, + "relocations": 2.4e-07, + "repurposing": 2.4e-07, + "restocked": 2.4e-07, + "retaliating": 2.4e-07, + "retracing": 2.4e-07, + "retracts": 2.4e-07, + "retrenchment": 2.4e-07, + "revell": 2.4e-07, + "reynard": 2.4e-07, + "righteously": 2.4e-07, + "risc": 2.4e-07, + "roddick": 2.4e-07, + "roly": 2.4e-07, + "romcom": 2.4e-07, + "roomba": 2.4e-07, + "rosenblum": 2.4e-07, + "rosewater": 2.4e-07, + "rossiter": 2.4e-07, + "rothko": 2.4e-07, + "rowboat": 2.4e-07, + "roxburgh": 2.4e-07, + "rundle": 2.4e-07, + "sada": 2.4e-07, + "sahih": 2.4e-07, + "sammi": 2.4e-07, + "satires": 2.4e-07, + "schulte": 2.4e-07, + "schulze": 2.4e-07, + "scorecards": 2.4e-07, + "screentime": 2.4e-07, + "sct": 2.4e-07, + "scuttling": 2.4e-07, + "sdg": 2.4e-07, + "seabird": 2.4e-07, + "sealants": 2.4e-07, + "segregating": 2.4e-07, + "seidel": 2.4e-07, + "seiu": 2.4e-07, + "sence": 2.4e-07, + "severin": 2.4e-07, + "shandy": 2.4e-07, + "shere": 2.4e-07, + "shinobu": 2.4e-07, + "showpiece": 2.4e-07, + "showstopper": 2.4e-07, + "shumpert": 2.4e-07, + "sidewall": 2.4e-07, + "sinusoidal": 2.4e-07, + "siv": 2.4e-07, + "skewing": 2.4e-07, + "slink": 2.4e-07, + "slovaks": 2.4e-07, + "snead": 2.4e-07, + "snps": 1.51e-07, + "solana": 2.4e-07, + "sontag": 2.4e-07, + "souter": 2.4e-07, + "sowell": 2.4e-07, + "spacexs": 2.4e-07, + "splc": 2.4e-07, + "stadler": 2.4e-07, + "stadt": 2.4e-07, + "staggeringly": 2.4e-07, + "stamkos": 2.4e-07, + "stenson": 2.4e-07, + "stepney": 2.4e-07, + "stewing": 2.4e-07, + "stirrups": 2.4e-07, + "stn": 2.4e-07, + "straitjacket": 2.4e-07, + "stratocaster": 2.4e-07, + "stubbed": 2.4e-07, + "studi": 2.4e-07, + "subduing": 2.4e-07, + "subhuman": 2.4e-07, + "sulfates": 2.4e-07, + "suzette": 2.4e-07, + "tableaux": 2.4e-07, + "taillights": 2.4e-07, + "talus": 2.4e-07, + "tampico": 2.4e-07, + "tangentially": 2.4e-07, + "tarpaulin": 2.4e-07, + "tastebuds": 2.4e-07, + "telomere": 2.4e-07, + "terabytes": 2.4e-07, + "tesseract": 2.4e-07, + "tgv": 2.4e-07, + "thaksin": 2.4e-07, + "thoth": 2.4e-07, + "thurber": 2.4e-07, + "tiamat": 2.4e-07, + "timmins": 2.4e-07, + "tinny": 2.4e-07, + "tita": 2.4e-07, + "titi": 2.4e-07, + "titration": 2.4e-07, + "toefl": 2.4e-07, + "toilette": 2.4e-07, + "tonks": 2.4e-07, + "tonsillitis": 2.4e-07, + "toonami": 2.4e-07, + "topologies": 2.4e-07, + "torbay": 2.4e-07, + "toshio": 2.4e-07, + "totoro": 2.4e-07, + "totten": 2.4e-07, + "townes": 2.4e-07, + "tox": 2.4e-07, + "trialled": 2.4e-07, + "triceratops": 2.4e-07, + "tsinghua": 2.4e-07, + "turboprop": 2.4e-07, + "turkana": 2.4e-07, + "uaap": 2.4e-07, + "ucb": 2.4e-07, + "umami": 2.4e-07, + "umpteenth": 2.4e-07, + "unacceptably": 2.4e-07, + "uncommitted": 2.4e-07, + "unconstrained": 2.4e-07, + "uncultured": 2.4e-07, + "underarm": 2.4e-07, + "underpowered": 2.4e-07, + "unlockable": 2.4e-07, + "unsw": 2.4e-07, + "unwatchable": 2.4e-07, + "uploader": 2.4e-07, + "upwelling": 2.4e-07, + "utilises": 2.4e-07, + "vegf": 2.4e-07, + "vell": 2.4e-07, + "viera": 2.4e-07, + "vik": 2.4e-07, + "visors": 2.4e-07, + "vitoria": 2.4e-07, + "wacko": 2.4e-07, + "wafl": 2.4e-07, + "waft": 2.4e-07, + "walshs": 2.4e-07, + "washcloth": 2.4e-07, + "wassup": 2.4e-07, + "watermarks": 2.4e-07, + "waypoint": 2.4e-07, + "webby": 2.4e-07, + "wellspring": 2.4e-07, + "werden": 2.4e-07, + "wetzel": 2.4e-07, + "whistleblowing": 2.4e-07, + "widnes": 2.4e-07, + "wikis": 2.4e-07, + "wildland": 2.4e-07, + "winced": 2.4e-07, + "wisc": 2.4e-07, + "wreckers": 2.4e-07, + "xcode": 2.4e-07, + "xxvii": 2.4e-07, + "yearlong": 2.4e-07, + "yorkville": 2.4e-07, + "yuletide": 2.4e-07, + "zapp": 2.4e-07, + "zenyatta": 2.4e-07, + "zin": 2.4e-07, + "zou": 2.4e-07, + "abiotic": 2.34e-07, + "absconded": 2.34e-07, + "absorbance": 2.34e-07, + "absurdist": 2.34e-07, + "accomodation": 2.34e-07, + "acculturation": 2.34e-07, + "acevedo": 2.34e-07, + "acrid": 2.34e-07, + "adrianna": 2.34e-07, + "agg": 2.34e-07, + "aggravates": 2.34e-07, + "airfares": 2.34e-07, + "ajayi": 2.34e-07, + "alcock": 2.34e-07, + "aleksander": 2.34e-07, + "alister": 2.34e-07, + "allegiant": 2.34e-07, + "allgemeine": 2.34e-07, + "alpacas": 2.34e-07, + "americorps": 2.34e-07, + "amgen": 2.34e-07, + "amrita": 2.34e-07, + "amyotrophic": 2.34e-07, + "anais": 2.34e-07, + "analgesia": 2.34e-07, + "anisotropy": 2.34e-07, + "ankh": 2.34e-07, + "ansell": 2.34e-07, + "appomattox": 2.34e-07, + "appstore": 2.34e-07, + "arash": 2.34e-07, + "arbiters": 2.34e-07, + "arbuthnot": 2.34e-07, + "arellano": 2.34e-07, + "arima": 2.34e-07, + "armbands": 2.34e-07, + "arsonists": 2.34e-07, + "artpop": 2.34e-07, + "arum": 2.34e-07, + "aryl": 2.34e-07, + "asano": 2.34e-07, + "ascertaining": 2.34e-07, + "ashgate": 2.34e-07, + "asura": 2.34e-07, + "aswan": 2.34e-07, + "athabasca": 2.34e-07, + "atos": 2.34e-07, + "attentional": 2.34e-07, + "auras": 2.34e-07, + "bangladeshis": 2.34e-07, + "barging": 2.34e-07, + "baumgartner": 2.34e-07, + "bedouins": 2.34e-07, + "beefs": 2.34e-07, + "beekman": 2.34e-07, + "behar": 2.34e-07, + "bellman": 2.34e-07, + "belsen": 2.34e-07, + "benching": 2.34e-07, + "bendtner": 2.34e-07, + "bentonville": 2.34e-07, + "benzo": 2.34e-07, + "berdych": 2.34e-07, + "bergin": 2.34e-07, + "bettman": 2.34e-07, + "bigly": 2.34e-07, + "biko": 2.34e-07, + "billington": 2.34e-07, + "binaural": 2.34e-07, + "bindi": 2.34e-07, + "bioactive": 2.34e-07, + "birdwatching": 2.34e-07, + "blam": 2.34e-07, + "blenders": 2.34e-07, + "blistered": 2.34e-07, + "blitzed": 2.34e-07, + "bluewater": 2.34e-07, + "boj": 2.34e-07, + "bombardments": 2.34e-07, + "bottlenose": 2.34e-07, + "brassy": 2.34e-07, + "breckinridge": 2.34e-07, + "bridlington": 2.34e-07, + "brindle": 2.34e-07, + "brix": 2.34e-07, + "brocks": 2.34e-07, + "brownback": 2.34e-07, + "bumming": 2.34e-07, + "burge": 2.34e-07, + "burghley": 2.34e-07, + "burks": 2.34e-07, + "burwood": 2.34e-07, + "butthead": 2.34e-07, + "caliban": 2.34e-07, + "calluses": 2.34e-07, + "candi": 2.34e-07, + "capuchin": 2.34e-07, + "carteret": 2.34e-07, + "cartographer": 2.34e-07, + "caryl": 2.34e-07, + "cashs": 2.34e-07, + "castleton": 2.34e-07, + "catalyzes": 2.34e-07, + "catarina": 2.34e-07, + "catharines": 2.34e-07, + "cep": 2.34e-07, + "cetaceans": 2.34e-07, + "cfi": 2.34e-07, + "chabad": 2.34e-07, + "chaffee": 2.34e-07, + "chameleons": 2.34e-07, + "chatfield": 2.34e-07, + "chauvinist": 2.34e-07, + "chiquita": 2.34e-07, + "chisels": 2.34e-07, + "choudhury": 2.34e-07, + "chroniclers": 2.34e-07, + "cibc": 2.34e-07, + "citrix": 2.34e-07, + "clacton": 2.34e-07, + "clade": 2.34e-07, + "clanging": 2.34e-07, + "claras": 2.34e-07, + "classier": 2.34e-07, + "clea": 2.34e-07, + "cleat": 2.34e-07, + "climaxes": 2.34e-07, + "clumsiness": 2.34e-07, + "clydebank": 2.34e-07, + "cocoons": 2.34e-07, + "colander": 2.34e-07, + "colston": 2.34e-07, + "colum": 2.34e-07, + "combi": 2.34e-07, + "concoctions": 2.34e-07, + "condenses": 2.34e-07, + "conservatories": 2.34e-07, + "cooldown": 2.34e-07, + "coraline": 2.34e-07, + "corrado": 2.34e-07, + "covergirl": 2.34e-07, + "crayola": 2.34e-07, + "crevasse": 2.34e-07, + "crooner": 2.34e-07, + "crosstalk": 2.34e-07, + "cruelest": 2.34e-07, + "cupids": 1.15e-07, + "cussed": 2.34e-07, + "daiichi": 2.34e-07, + "dangles": 2.34e-07, + "dashboards": 2.34e-07, + "dawgs": 2.34e-07, + "dbt": 2.34e-07, + "deceaseds": 2.34e-07, + "declination": 2.34e-07, + "decoupled": 2.34e-07, + "defacing": 2.34e-07, + "defaming": 2.34e-07, + "defensiveness": 2.34e-07, + "defo": 2.34e-07, + "dello": 2.34e-07, + "dells": 1.95e-07, + "denunciations": 2.34e-07, + "dershowitz": 2.34e-07, + "desean": 2.34e-07, + "desensitized": 2.34e-07, + "digests": 2.34e-07, + "dinamo": 2.34e-07, + "disclaims": 2.34e-07, + "disorganised": 2.34e-07, + "diverges": 2.34e-07, + "divina": 2.34e-07, + "dolt": 2.34e-07, + "donk": 2.34e-07, + "dothan": 2.34e-07, + "drench": 2.34e-07, + "drexler": 2.34e-07, + "dribbled": 2.34e-07, + "dross": 2.34e-07, + "dweeb": 2.34e-07, + "dworkin": 2.34e-07, + "earmarks": 2.34e-07, + "eddington": 2.34e-07, + "edelstein": 2.34e-07, + "edta": 2.34e-07, + "eez": 2.34e-07, + "eggers": 2.34e-07, + "einhorn": 2.34e-07, + "elkhorn": 2.34e-07, + "emas": 2.34e-07, + "emulates": 2.34e-07, + "ende": 2.34e-07, + "enel": 2.34e-07, + "engrave": 2.34e-07, + "enjoined": 2.34e-07, + "entrapped": 2.34e-07, + "equivocal": 2.34e-07, + "erdogans": 2.34e-07, + "erna": 2.34e-07, + "espouses": 2.34e-07, + "ethane": 2.34e-07, + "euroleague": 2.34e-07, + "eusebio": 2.34e-07, + "eventing": 2.34e-07, + "everard": 2.34e-07, + "expediting": 2.34e-07, + "exuded": 2.34e-07, + "faure": 2.34e-07, + "fibro": 2.34e-07, + "fifield": 2.34e-07, + "fille": 2.34e-07, + "firebox": 2.34e-07, + "fistfight": 2.34e-07, + "fite": 2.34e-07, + "fitzhugh": 2.34e-07, + "fiving": 2.34e-07, + "fixable": 2.34e-07, + "flatiron": 2.34e-07, + "flighty": 2.34e-07, + "flintstone": 2.34e-07, + "florin": 2.34e-07, + "fouad": 2.34e-07, + "fractionation": 2.34e-07, + "fugly": 2.34e-07, + "fujiwara": 2.34e-07, + "fullers": 8.13e-08, + "fusco": 2.34e-07, + "galvanic": 2.34e-07, + "galvanizing": 2.34e-07, + "gametes": 2.34e-07, + "garretts": 2.34e-07, + "gayer": 2.34e-07, + "geer": 2.34e-07, + "gentoo": 2.34e-07, + "georgios": 2.34e-07, + "gilmer": 2.34e-07, + "gingham": 2.34e-07, + "glaringly": 2.34e-07, + "glitzy": 2.34e-07, + "glycolysis": 2.34e-07, + "gnarled": 2.34e-07, + "goodmans": 2.34e-07, + "gouache": 2.34e-07, + "grampa": 2.34e-07, + "gri": 2.34e-07, + "griffon": 2.34e-07, + "grote": 2.34e-07, + "gruen": 2.34e-07, + "guayaquil": 2.34e-07, + "gumi": 2.34e-07, + "gutta": 2.34e-07, + "habanero": 2.34e-07, + "hac": 2.34e-07, + "haitis": 2.34e-07, + "hallow": 2.34e-07, + "hallucinatory": 2.34e-07, + "hanan": 2.34e-07, + "hanky": 2.34e-07, + "haqqani": 2.34e-07, + "hardtop": 2.34e-07, + "haring": 2.34e-07, + "hartigan": 2.34e-07, + "hashed": 2.34e-07, + "hauntingly": 2.34e-07, + "hayao": 2.34e-07, + "hdp": 2.34e-07, + "heimlich": 2.34e-07, + "hemel": 2.34e-07, + "hemingways": 2.34e-07, + "henkel": 2.34e-07, + "herne": 2.34e-07, + "hiawatha": 2.34e-07, + "hifi": 2.34e-07, + "hindustani": 2.34e-07, + "hippodrome": 2.34e-07, + "hmu": 2.34e-07, + "hoang": 2.34e-07, + "holdem": 1.51e-07, + "hort": 2.34e-07, + "hoth": 2.34e-07, + "housewares": 2.34e-07, + "huddleston": 2.34e-07, + "huffed": 2.34e-07, + "humic": 2.34e-07, + "hummed": 2.34e-07, + "hurdler": 2.34e-07, + "hydrangea": 2.34e-07, + "hydrotherapy": 2.34e-07, + "iambic": 2.34e-07, + "ichabod": 2.34e-07, + "icl": 2.34e-07, + "iconoclastic": 2.34e-07, + "icts": 2.34e-07, + "ili": 2.34e-07, + "imperfectly": 2.34e-07, + "inauthentic": 2.34e-07, + "incontinent": 2.34e-07, + "infliction": 2.34e-07, + "interferometry": 2.34e-07, + "interject": 2.34e-07, + "interlocutor": 2.34e-07, + "intermountain": 2.34e-07, + "isabela": 2.34e-07, + "jat": 2.34e-07, + "jaz": 2.34e-07, + "jobber": 2.34e-07, + "jogs": 2.34e-07, + "jugglers": 2.34e-07, + "jungs": 2.34e-07, + "kade": 2.34e-07, + "kassel": 2.34e-07, + "khao": 2.34e-07, + "kidderminster": 2.34e-07, + "kinesiology": 2.34e-07, + "kirkham": 2.34e-07, + "koizumi": 2.34e-07, + "kopp": 2.34e-07, + "kryptonian": 2.34e-07, + "kuiper": 2.34e-07, + "lamia": 2.34e-07, + "laryngitis": 2.34e-07, + "lashkar": 2.34e-07, + "lavatories": 2.34e-07, + "lda": 2.34e-07, + "leal": 2.34e-07, + "learnings": 2.34e-07, + "legalistic": 2.34e-07, + "legge": 2.34e-07, + "legroom": 2.34e-07, + "lep": 2.34e-07, + "librarianship": 2.34e-07, + "lieber": 2.34e-07, + "lightspeed": 2.34e-07, + "lilli": 2.34e-07, + "lindholm": 2.34e-07, + "linea": 2.34e-07, + "logon": 2.34e-07, + "lolas": 2.34e-07, + "longboard": 2.34e-07, + "lov": 2.34e-07, + "lovesick": 2.34e-07, + "lublin": 2.34e-07, + "lunas": 8.51e-08, + "macaroons": 2.34e-07, + "maccabees": 2.34e-07, + "macks": 5.5e-08, + "magill": 2.34e-07, + "magnetosphere": 2.34e-07, + "mahrez": 2.34e-07, + "maiming": 2.34e-07, + "mainstage": 2.34e-07, + "majeure": 2.34e-07, + "malted": 2.34e-07, + "maman": 2.34e-07, + "mandalorian": 2.34e-07, + "mando": 2.34e-07, + "marchioness": 2.34e-07, + "marci": 2.34e-07, + "marlies": 2.34e-07, + "marni": 2.34e-07, + "martineau": 2.34e-07, + "masterworks": 2.34e-07, + "maxillofacial": 2.34e-07, + "mbp": 2.34e-07, + "medicating": 2.34e-07, + "melancholia": 2.34e-07, + "menelaus": 2.34e-07, + "meows": 2.34e-07, + "merlyn": 2.34e-07, + "michelangelos": 2.34e-07, + "michi": 2.34e-07, + "midriff": 2.34e-07, + "milena": 2.34e-07, + "millington": 2.34e-07, + "millsap": 2.34e-07, + "minden": 2.34e-07, + "missive": 2.34e-07, + "modernists": 2.34e-07, + "modularity": 2.34e-07, + "moffitt": 2.34e-07, + "molt": 2.34e-07, + "monsoons": 2.34e-07, + "montages": 2.34e-07, + "montefiore": 2.34e-07, + "moonves": 2.34e-07, + "morag": 2.34e-07, + "morsels": 2.34e-07, + "mostafa": 2.34e-07, + "motherless": 2.34e-07, + "multilayered": 2.34e-07, + "multiparty": 2.34e-07, + "mung": 2.34e-07, + "muon": 2.34e-07, + "mura": 2.34e-07, + "mylar": 2.34e-07, + "myosin": 2.34e-07, + "nadi": 2.34e-07, + "nadler": 2.34e-07, + "nari": 2.34e-07, + "nazionale": 2.34e-07, + "neater": 2.34e-07, + "nebraskas": 2.34e-07, + "neighborly": 2.34e-07, + "netbook": 2.34e-07, + "neuroblastoma": 2.34e-07, + "nonconformist": 2.34e-07, + "nonstandard": 2.34e-07, + "nop": 2.34e-07, + "northbrook": 2.34e-07, + "nosedive": 2.34e-07, + "novell": 2.34e-07, + "numa": 2.34e-07, + "obadiah": 2.34e-07, + "obliteration": 2.34e-07, + "ohne": 2.34e-07, + "oksana": 2.34e-07, + "oliva": 2.34e-07, + "omniscience": 2.34e-07, + "onl": 2.34e-07, + "ordeals": 2.34e-07, + "orthodontics": 2.34e-07, + "outdoorsy": 2.34e-07, + "overground": 2.34e-07, + "padgett": 2.34e-07, + "palates": 2.34e-07, + "parise": 2.34e-07, + "parkersburg": 2.34e-07, + "parnassus": 2.34e-07, + "partook": 2.34e-07, + "paye": 2.34e-07, + "paynes": 6.46e-08, + "payphone": 2.34e-07, + "pbx": 2.34e-07, + "peekaboo": 2.34e-07, + "pennell": 2.34e-07, + "pentateuch": 2.34e-07, + "pepin": 2.34e-07, + "perpignan": 2.34e-07, + "perversely": 2.34e-07, + "pervy": 2.34e-07, + "pestered": 2.34e-07, + "philomena": 2.34e-07, + "photocopying": 2.34e-07, + "piaget": 2.34e-07, + "pickpockets": 2.34e-07, + "pik": 2.34e-07, + "pinstripe": 2.34e-07, + "piranhas": 2.34e-07, + "platforming": 2.34e-07, + "pleats": 2.34e-07, + "plopped": 2.34e-07, + "pneumothorax": 2.34e-07, + "pokies": 2.34e-07, + "polaroids": 2.34e-07, + "porzingis": 2.34e-07, + "postpaid": 2.34e-07, + "pranking": 2.34e-07, + "pref": 2.34e-07, + "prefectures": 2.34e-07, + "prefered": 2.34e-07, + "prepackaged": 2.34e-07, + "prisma": 2.34e-07, + "priv": 2.34e-07, + "processional": 2.34e-07, + "profligate": 2.34e-07, + "prolactin": 2.34e-07, + "proteases": 2.34e-07, + "proteomics": 2.34e-07, + "proxima": 2.34e-07, + "psm": 2.34e-07, + "psr": 2.34e-07, + "psychical": 2.34e-07, + "ptfe": 2.34e-07, + "puerile": 2.34e-07, + "puyallup": 2.34e-07, + "pyrotechnic": 2.34e-07, + "qatars": 2.34e-07, + "quadriceps": 2.34e-07, + "quadrilateral": 2.34e-07, + "quartile": 2.34e-07, + "quickbooks": 2.34e-07, + "quitters": 2.34e-07, + "radhika": 2.34e-07, + "ragtag": 2.34e-07, + "ranveer": 2.34e-07, + "rapidity": 2.34e-07, + "ravindra": 2.34e-07, + "razzle": 2.34e-07, + "rdx": 2.34e-07, + "reay": 2.34e-07, + "rebutted": 2.34e-07, + "recasting": 2.34e-07, + "recheck": 2.34e-07, + "reconstitute": 2.34e-07, + "reconstitution": 2.34e-07, + "recused": 2.34e-07, + "redeems": 2.34e-07, + "redmayne": 2.34e-07, + "refitted": 2.34e-07, + "reframing": 2.34e-07, + "reining": 2.34e-07, + "remembrances": 2.34e-07, + "renwick": 2.34e-07, + "repeals": 2.34e-07, + "repubblica": 2.34e-07, + "rerouting": 2.34e-07, + "restatement": 2.34e-07, + "restive": 2.34e-07, + "retouching": 2.34e-07, + "rias": 2.34e-07, + "ridged": 2.34e-07, + "righted": 2.34e-07, + "riku": 2.34e-07, + "ripleys": 2.34e-07, + "rnb": 5.01e-08, + "rorys": 2.34e-07, + "roscommon": 2.34e-07, + "rosemarys": 2.34e-07, + "roslin": 2.34e-07, + "rummy": 2.34e-07, + "ruts": 2.34e-07, + "sainz": 2.34e-07, + "sameness": 2.34e-07, + "sanctify": 2.34e-07, + "satiated": 2.34e-07, + "sattar": 2.34e-07, + "savoir": 2.34e-07, + "saxo": 2.34e-07, + "sayaka": 2.34e-07, + "sayonara": 2.34e-07, + "sbu": 2.34e-07, + "scalped": 2.34e-07, + "scaremongering": 2.34e-07, + "scriptwriter": 2.34e-07, + "scummy": 2.34e-07, + "seaver": 2.34e-07, + "secretory": 2.34e-07, + "secularization": 2.34e-07, + "segovia": 2.34e-07, + "seis": 2.34e-07, + "sellars": 2.34e-07, + "sheeple": 2.34e-07, + "sheva": 2.34e-07, + "shiites": 8.91e-08, + "shira": 2.34e-07, + "shitheads": 2.34e-07, + "shota": 2.34e-07, + "shr": 2.34e-07, + "shuck": 2.34e-07, + "sidhu": 2.34e-07, + "sigil": 2.34e-07, + "silhouetted": 2.34e-07, + "silla": 2.34e-07, + "simonson": 2.34e-07, + "sint": 2.34e-07, + "slouching": 2.34e-07, + "smidge": 2.34e-07, + "snappers": 2.34e-07, + "sonu": 2.34e-07, + "sooth": 2.34e-07, + "sparkled": 2.34e-07, + "speeded": 2.34e-07, + "spellbinding": 2.34e-07, + "spiffy": 2.34e-07, + "sprains": 2.34e-07, + "ssu": 2.34e-07, + "stackhouse": 2.34e-07, + "stateroom": 2.34e-07, + "stavanger": 2.34e-07, + "stb": 2.34e-07, + "steeping": 2.34e-07, + "stevan": 2.34e-07, + "stilt": 2.34e-07, + "storia": 2.34e-07, + "stretton": 2.34e-07, + "subcategory": 2.34e-07, + "suffragettes": 2.34e-07, + "sulphide": 2.34e-07, + "sulzberger": 2.34e-07, + "sunscreens": 2.34e-07, + "swindler": 2.34e-07, + "swinney": 2.34e-07, + "swole": 2.34e-07, + "syl": 2.34e-07, + "sympathizing": 2.34e-07, + "syrupy": 2.34e-07, + "taciturn": 2.34e-07, + "tage": 2.34e-07, + "talentless": 2.34e-07, + "taskmaster": 2.34e-07, + "tastiest": 2.34e-07, + "tatsuya": 2.34e-07, + "technocrats": 2.34e-07, + "telescoping": 2.34e-07, + "tempos": 2.34e-07, + "tempus": 2.34e-07, + "tented": 2.34e-07, + "tert": 2.34e-07, + "thomsen": 2.34e-07, + "thots": 2.34e-07, + "tib": 2.34e-07, + "tice": 2.34e-07, + "tolbert": 2.34e-07, + "tooled": 2.34e-07, + "torpor": 2.34e-07, + "traceability": 2.34e-07, + "transfered": 2.34e-07, + "transmissible": 2.34e-07, + "trigg": 2.34e-07, + "trilling": 2.34e-07, + "trotters": 2.34e-07, + "trucked": 2.34e-07, + "truckee": 2.34e-07, + "tty": 2.34e-07, + "tussauds": 2.34e-07, + "typecast": 2.34e-07, + "typographic": 2.34e-07, + "ueno": 2.34e-07, + "unh": 2.34e-07, + "unicycle": 2.34e-07, + "unidentifiable": 2.34e-07, + "unpolished": 2.34e-07, + "untethered": 2.34e-07, + "unvaccinated": 2.34e-07, + "upp": 2.34e-07, + "vacuumed": 2.34e-07, + "vagabonds": 2.34e-07, + "valjean": 2.34e-07, + "valois": 2.34e-07, + "varnished": 2.34e-07, + "vasari": 2.34e-07, + "vicissitudes": 2.34e-07, + "vientiane": 2.34e-07, + "viktoria": 2.34e-07, + "vinyls": 2.34e-07, + "voyagers": 6.03e-08, + "wakey": 2.34e-07, + "wayfarer": 2.34e-07, + "weedy": 2.34e-07, + "weightloss": 2.34e-07, + "weintraub": 2.34e-07, + "wenatchee": 2.34e-07, + "wert": 2.34e-07, + "winches": 2.34e-07, + "wom": 2.34e-07, + "womenswear": 2.34e-07, + "wpc": 2.34e-07, + "wyatts": 2.34e-07, + "wyden": 2.34e-07, + "wyler": 2.34e-07, + "xxvi": 2.34e-07, + "xylophone": 2.34e-07, + "yai": 2.34e-07, + "yair": 2.34e-07, + "yasin": 2.34e-07, + "yeshua": 2.34e-07, + "yf": 2.34e-07, + "yugioh": 2.34e-07, + "zsa": 2.34e-07, + "zulus": 2.34e-07, + "aat": 2.29e-07, + "abeyance": 2.29e-07, + "aby": 2.29e-07, + "accentuates": 2.29e-07, + "acceptances": 2.29e-07, + "addi": 2.29e-07, + "addressable": 2.29e-07, + "adlai": 2.29e-07, + "aeolian": 2.29e-07, + "aftr": 2.29e-07, + "agnosticism": 2.29e-07, + "agonising": 2.29e-07, + "akt": 2.29e-07, + "alacrity": 2.29e-07, + "allying": 2.29e-07, + "ambler": 2.29e-07, + "amla": 2.29e-07, + "ammonites": 2.29e-07, + "anderton": 2.29e-07, + "andor": 2.29e-07, + "animes": 1.45e-07, + "antihistamine": 2.29e-07, + "aplomb": 2.29e-07, + "apologia": 2.29e-07, + "apparatuses": 2.29e-07, + "arabi": 2.29e-07, + "aramco": 2.29e-07, + "arbitrate": 2.29e-07, + "archies": 6.17e-08, + "arouses": 2.29e-07, + "artificer": 2.29e-07, + "arvin": 2.29e-07, + "ashtons": 2.29e-07, + "ashura": 2.29e-07, + "aspartate": 2.29e-07, + "atlases": 2.29e-07, + "atopic": 2.29e-07, + "attired": 2.29e-07, + "avram": 2.29e-07, + "awnings": 2.29e-07, + "ayre": 2.29e-07, + "azaleas": 9.33e-08, + "bacons": 2.29e-07, + "bacteriology": 2.29e-07, + "baklava": 2.29e-07, + "balliol": 2.29e-07, + "bamber": 2.29e-07, + "bankhead": 2.29e-07, + "bansal": 2.29e-07, + "barbieri": 2.29e-07, + "barbiturates": 2.29e-07, + "barcodes": 2.29e-07, + "barnstable": 2.29e-07, + "barnwell": 2.29e-07, + "barris": 2.29e-07, + "baskerville": 2.29e-07, + "beanbag": 2.29e-07, + "beautys": 2.29e-07, + "beckley": 2.29e-07, + "bedspread": 2.29e-07, + "bengalis": 2.29e-07, + "bergmann": 2.29e-07, + "besiege": 2.29e-07, + "bilaterally": 2.29e-07, + "binky": 2.29e-07, + "bituminous": 2.29e-07, + "blackheath": 2.29e-07, + "blacktown": 2.29e-07, + "bookmarking": 2.29e-07, + "borthwick": 2.29e-07, + "botulinum": 2.29e-07, + "bowditch": 2.29e-07, + "boyles": 1.2e-07, + "braked": 2.29e-07, + "brc": 2.29e-07, + "breda": 2.29e-07, + "broadmoor": 2.29e-07, + "broadways": 1.38e-08, + "bronwyn": 2.29e-07, + "bruckner": 2.29e-07, + "brunos": 2.29e-07, + "buf": 2.29e-07, + "burgas": 2.29e-07, + "burts": 2.29e-07, + "bussy": 2.29e-07, + "cabriolet": 2.29e-07, + "cains": 2.29e-07, + "calcified": 2.29e-07, + "calla": 2.29e-07, + "calvinists": 2.29e-07, + "cambodians": 2.29e-07, + "cantonal": 2.29e-07, + "caped": 2.29e-07, + "cardiologists": 2.29e-07, + "carpathian": 2.29e-07, + "cau": 2.29e-07, + "centralisation": 2.29e-07, + "cerebrovascular": 2.29e-07, + "ceuta": 2.29e-07, + "cgc": 2.29e-07, + "charades": 2.29e-07, + "charan": 2.29e-07, + "charlesworth": 2.29e-07, + "chatto": 2.29e-07, + "cherishes": 2.29e-07, + "choate": 2.29e-07, + "chol": 2.29e-07, + "chor": 2.29e-07, + "cielo": 2.29e-07, + "clarksons": 2.29e-07, + "claud": 2.29e-07, + "clitoral": 2.29e-07, + "clorox": 2.29e-07, + "cnd": 2.29e-07, + "cnrs": 2.29e-07, + "cobblers": 2.29e-07, + "cockerel": 2.29e-07, + "collabs": 2.29e-07, + "comely": 2.29e-07, + "commodores": 5.25e-08, + "comoros": 2.29e-07, + "compensations": 2.29e-07, + "conflating": 2.29e-07, + "conscientiously": 2.29e-07, + "coolie": 2.29e-07, + "cordero": 2.29e-07, + "coretta": 2.29e-07, + "corpora": 2.29e-07, + "corporatist": 2.29e-07, + "corsi": 2.29e-07, + "corte": 2.29e-07, + "cottle": 2.29e-07, + "cranford": 2.29e-07, + "crombie": 2.29e-07, + "cucamonga": 2.29e-07, + "cuvier": 2.29e-07, + "cyclotron": 2.29e-07, + "dabney": 2.29e-07, + "dacia": 2.29e-07, + "daisys": 2.29e-07, + "dalmatians": 2.29e-07, + "darkens": 2.29e-07, + "dasha": 2.29e-07, + "dayum": 2.29e-07, + "dazzles": 2.29e-07, + "decapitate": 2.29e-07, + "denby": 2.29e-07, + "derisive": 2.29e-07, + "desperado": 2.29e-07, + "dethrone": 2.29e-07, + "detonates": 2.29e-07, + "deviled": 2.29e-07, + "diamante": 2.29e-07, + "dianna": 2.29e-07, + "dimas": 2.29e-07, + "dinwiddie": 2.29e-07, + "distemper": 2.29e-07, + "distillate": 2.29e-07, + "domesticity": 2.29e-07, + "doria": 2.29e-07, + "dossiers": 2.29e-07, + "downpours": 2.29e-07, + "dravid": 2.29e-07, + "drumstick": 2.29e-07, + "dsr": 2.29e-07, + "dumbed": 2.29e-07, + "earbud": 2.29e-07, + "easternmost": 2.29e-07, + "edina": 2.29e-07, + "effingham": 2.29e-07, + "eggleston": 2.29e-07, + "eglinton": 2.29e-07, + "eisenstein": 2.29e-07, + "eleazar": 2.29e-07, + "electrify": 2.29e-07, + "emasculated": 2.29e-07, + "ephedrine": 2.29e-07, + "epitomizes": 2.29e-07, + "equifax": 2.29e-07, + "ero": 2.29e-07, + "esthetic": 2.29e-07, + "eudora": 2.29e-07, + "evesham": 2.29e-07, + "exmoor": 2.29e-07, + "expander": 2.29e-07, + "expansionism": 2.29e-07, + "ezio": 2.29e-07, + "faecal": 2.29e-07, + "fanon": 2.29e-07, + "faw": 2.29e-07, + "fdp": 2.29e-07, + "feder": 2.29e-07, + "fennell": 2.29e-07, + "fertilizing": 2.29e-07, + "fevered": 2.29e-07, + "finkel": 2.29e-07, + "flamini": 2.29e-07, + "flatmates": 2.29e-07, + "flattens": 2.29e-07, + "flava": 2.29e-07, + "flavouring": 2.29e-07, + "flurries": 2.29e-07, + "foodstuff": 2.29e-07, + "forney": 2.29e-07, + "foxnews": 2.29e-07, + "freckle": 2.29e-07, + "freckled": 2.29e-07, + "freddies": 2.29e-07, + "frightfully": 2.29e-07, + "fruitcake": 2.29e-07, + "fsh": 2.29e-07, + "fungicides": 2.29e-07, + "funke": 2.29e-07, + "furore": 2.29e-07, + "gadot": 2.29e-07, + "gaeta": 2.29e-07, + "gallaghers": 6.76e-08, + "gamboa": 2.29e-07, + "gana": 2.29e-07, + "ganache": 2.29e-07, + "gatos": 2.29e-07, + "gds": 2.29e-07, + "geoengineering": 2.29e-07, + "ghat": 2.29e-07, + "ghostface": 2.29e-07, + "gibby": 2.29e-07, + "glamping": 2.29e-07, + "gnosticism": 2.29e-07, + "goffin": 2.29e-07, + "gora": 2.29e-07, + "gracia": 2.29e-07, + "granularity": 2.29e-07, + "gregorys": 2.29e-07, + "grenadiers": 2.29e-07, + "grozny": 2.29e-07, + "grs": 2.29e-07, + "gtk": 2.29e-07, + "guk": 2.29e-07, + "hackman": 2.29e-07, + "halides": 2.29e-07, + "hallucinate": 2.29e-07, + "hanif": 2.29e-07, + "hattori": 2.29e-07, + "hbv": 2.29e-07, + "hdpe": 2.29e-07, + "headrest": 2.29e-07, + "heavies": 2.29e-07, + "heifers": 2.29e-07, + "heo": 2.29e-07, + "hermetically": 2.29e-07, + "heterozygous": 2.29e-07, + "higginbotham": 2.29e-07, + "hil": 2.29e-07, + "homilies": 2.29e-07, + "hoodlums": 2.29e-07, + "horry": 2.29e-07, + "houlihan": 2.29e-07, + "howlett": 2.29e-07, + "hulks": 1.41e-07, + "hydrants": 2.29e-07, + "hyeon": 2.29e-07, + "hysteresis": 2.29e-07, + "iim": 2.29e-07, + "iliac": 2.29e-07, + "impel": 2.29e-07, + "imperiled": 2.29e-07, + "impulsivity": 2.29e-07, + "imputed": 2.29e-07, + "incapacitate": 2.29e-07, + "inductor": 2.29e-07, + "infomercials": 2.29e-07, + "inger": 2.29e-07, + "inositol": 2.29e-07, + "inspite": 2.29e-07, + "insubstantial": 2.29e-07, + "intermingled": 2.29e-07, + "intertwining": 2.29e-07, + "interventionism": 2.29e-07, + "intraocular": 2.29e-07, + "ioi": 2.29e-07, + "ionia": 2.29e-07, + "iop": 2.29e-07, + "ipr": 2.29e-07, + "irredeemable": 2.29e-07, + "isf": 2.29e-07, + "isidro": 2.29e-07, + "isner": 2.29e-07, + "jahangir": 2.29e-07, + "jakub": 2.29e-07, + "jalalabad": 2.29e-07, + "janney": 2.29e-07, + "johar": 2.29e-07, + "joneses": 2.29e-07, + "jonsson": 2.29e-07, + "judes": 5.75e-08, + "juts": 2.29e-07, + "kaj": 2.29e-07, + "kapur": 2.29e-07, + "kashyap": 2.29e-07, + "kaspar": 2.29e-07, + "kawai": 2.29e-07, + "kays": 1.05e-07, + "kenzie": 2.29e-07, + "keyless": 2.29e-07, + "kieron": 2.29e-07, + "kilauea": 2.29e-07, + "kiley": 2.29e-07, + "kith": 2.29e-07, + "kootenay": 2.29e-07, + "kronor": 2.29e-07, + "kumari": 2.29e-07, + "kursk": 2.29e-07, + "lada": 2.29e-07, + "lafarge": 2.29e-07, + "lahm": 2.29e-07, + "lamarcus": 2.29e-07, + "languedoc": 2.29e-07, + "lattimore": 2.29e-07, + "leering": 2.29e-07, + "lehrer": 2.29e-07, + "lesbos": 2.29e-07, + "lessor": 2.29e-07, + "libelous": 2.29e-07, + "liberace": 2.29e-07, + "limon": 2.29e-07, + "lindstrom": 2.29e-07, + "linklater": 2.29e-07, + "lipscomb": 2.29e-07, + "litton": 2.29e-07, + "lizs": 2.29e-07, + "lochte": 2.29e-07, + "lordships": 2.29e-07, + "loyd": 2.29e-07, + "luau": 2.29e-07, + "luff": 2.29e-07, + "lunging": 2.29e-07, + "lustig": 2.29e-07, + "magnusson": 2.29e-07, + "malts": 2.29e-07, + "mamadou": 2.29e-07, + "maneuverable": 2.29e-07, + "mangold": 2.29e-07, + "manicures": 2.29e-07, + "mansur": 2.29e-07, + "marbury": 2.29e-07, + "marianas": 2.29e-07, + "mariupol": 2.29e-07, + "marketwatch": 2.29e-07, + "marvell": 2.29e-07, + "maslin": 2.29e-07, + "matheny": 2.29e-07, + "mathieson": 2.29e-07, + "mathison": 2.29e-07, + "matriculated": 2.29e-07, + "mauling": 2.29e-07, + "mayas": 9.77e-08, + "mcardle": 2.29e-07, + "mccrea": 2.29e-07, + "mcgrady": 2.29e-07, + "mcquaid": 2.29e-07, + "mdf": 2.29e-07, + "menachem": 2.29e-07, + "mencken": 2.29e-07, + "menstruating": 2.29e-07, + "merica": 2.29e-07, + "messe": 2.29e-07, + "methylene": 2.29e-07, + "michaelis": 2.29e-07, + "mikkelsen": 2.29e-07, + "mims": 2.29e-07, + "minaret": 2.29e-07, + "minho": 2.29e-07, + "minter": 2.29e-07, + "minuet": 2.29e-07, + "misadventure": 2.29e-07, + "mishima": 2.29e-07, + "missin": 2.29e-07, + "mitchum": 2.29e-07, + "mitigates": 2.29e-07, + "mixon": 2.29e-07, + "mobilising": 2.29e-07, + "moffatt": 2.29e-07, + "moisturized": 2.29e-07, + "monolingual": 2.29e-07, + "monopolized": 2.29e-07, + "monta": 2.29e-07, + "morass": 2.29e-07, + "morena": 2.29e-07, + "mozambican": 2.29e-07, + "mrnas": 2.29e-07, + "msnbcs": 2.29e-07, + "mtp": 2.29e-07, + "mughals": 2.29e-07, + "mul": 2.29e-07, + "myr": 2.29e-07, + "mystifying": 2.29e-07, + "nagisa": 2.29e-07, + "naivete": 2.29e-07, + "nanosecond": 2.29e-07, + "nathanael": 2.29e-07, + "natick": 2.29e-07, + "ndi": 2.29e-07, + "neuropsychology": 2.29e-07, + "newshour": 2.29e-07, + "nfp": 2.29e-07, + "nicklas": 2.29e-07, + "nielson": 2.29e-07, + "nightline": 2.29e-07, + "nihilist": 2.29e-07, + "nish": 2.29e-07, + "nlt": 2.29e-07, + "noctis": 2.29e-07, + "normie": 2.29e-07, + "nyongo": 2.29e-07, + "oases": 2.29e-07, + "oiler": 2.29e-07, + "oly": 2.29e-07, + "onda": 2.29e-07, + "onsen": 2.29e-07, + "ook": 2.29e-07, + "operetta": 2.29e-07, + "ornstein": 2.29e-07, + "osuna": 2.29e-07, + "otome": 2.29e-07, + "otra": 2.29e-07, + "outsmarted": 2.29e-07, + "overexcited": 2.29e-07, + "overpay": 2.29e-07, + "overshadows": 2.29e-07, + "overviews": 2.29e-07, + "ovulating": 2.29e-07, + "oxfords": 1.82e-07, + "oxidize": 2.29e-07, + "padawan": 2.29e-07, + "paedophilia": 2.29e-07, + "painlessly": 2.29e-07, + "pams": 2.29e-07, + "pangolin": 2.29e-07, + "paramour": 2.29e-07, + "parried": 2.29e-07, + "partiality": 2.29e-07, + "pastas": 2.29e-07, + "patronised": 2.29e-07, + "pdi": 2.29e-07, + "pella": 2.29e-07, + "peppery": 2.29e-07, + "perelman": 2.29e-07, + "perjured": 2.29e-07, + "personages": 2.29e-07, + "persuasively": 2.29e-07, + "pgi": 2.29e-07, + "pharoah": 2.29e-07, + "phc": 2.29e-07, + "phoebus": 2.29e-07, + "phylum": 2.29e-07, + "pianoforte": 2.29e-07, + "pincer": 2.29e-07, + "planer": 2.29e-07, + "plaudits": 2.29e-07, + "polyamory": 2.29e-07, + "poppe": 2.29e-07, + "porque": 2.29e-07, + "postpones": 2.29e-07, + "posttraumatic": 2.29e-07, + "potteries": 2.29e-07, + "powerpuff": 2.29e-07, + "prd": 2.29e-07, + "pressman": 2.29e-07, + "principia": 2.29e-07, + "pueblos": 2.29e-07, + "puncturing": 2.29e-07, + "qiang": 2.29e-07, + "quarreling": 2.29e-07, + "quayside": 2.29e-07, + "quel": 2.29e-07, + "questing": 2.29e-07, + "quine": 2.29e-07, + "quintero": 2.29e-07, + "rationalise": 2.29e-07, + "ratliff": 2.29e-07, + "raye": 2.29e-07, + "razorback": 2.29e-07, + "reassessed": 2.29e-07, + "redecorated": 2.29e-07, + "redeployment": 2.29e-07, + "refocused": 2.29e-07, + "reiko": 2.29e-07, + "reissues": 2.29e-07, + "remorseless": 2.29e-07, + "reorder": 2.29e-07, + "rescinding": 2.29e-07, + "retransmission": 2.29e-07, + "reuss": 2.29e-07, + "revocable": 2.29e-07, + "revolutionise": 2.29e-07, + "rewinding": 2.29e-07, + "ridicules": 2.29e-07, + "riedel": 2.29e-07, + "rimini": 2.29e-07, + "rng": 2.29e-07, + "robbies": 2.29e-07, + "rodwell": 2.29e-07, + "rolle": 2.29e-07, + "rosacea": 2.29e-07, + "rov": 2.29e-07, + "ruffian": 2.29e-07, + "runyon": 2.29e-07, + "rustled": 2.29e-07, + "sacre": 2.29e-07, + "sakhalin": 2.29e-07, + "sampras": 2.29e-07, + "sanhedrin": 2.29e-07, + "sante": 2.29e-07, + "santini": 2.29e-07, + "sapped": 2.29e-07, + "sartorial": 2.29e-07, + "satu": 2.29e-07, + "sauvage": 2.29e-07, + "scamper": 2.29e-07, + "sce": 2.29e-07, + "schiffer": 2.29e-07, + "schiphol": 2.29e-07, + "schooners": 2.29e-07, + "schweiz": 2.29e-07, + "scoped": 2.29e-07, + "scorpius": 2.29e-07, + "screencap": 2.29e-07, + "scruggs": 2.29e-07, + "seaborne": 2.29e-07, + "seacoast": 2.29e-07, + "seagrass": 2.29e-07, + "seaworthy": 2.29e-07, + "seh": 2.29e-07, + "semyon": 2.29e-07, + "sepa": 2.29e-07, + "sepang": 2.29e-07, + "serenaded": 2.29e-07, + "sergi": 2.29e-07, + "sess": 2.29e-07, + "sff": 2.29e-07, + "sgi": 2.29e-07, + "shagged": 2.29e-07, + "shallot": 2.29e-07, + "shebang": 2.29e-07, + "sherborne": 2.29e-07, + "sica": 2.29e-07, + "sider": 2.29e-07, + "signe": 2.29e-07, + "silvas": 2.29e-07, + "sinkholes": 2.29e-07, + "skateboarders": 2.29e-07, + "skybox": 2.29e-07, + "slaughters": 2.29e-07, + "slicks": 2.29e-07, + "slinger": 2.29e-07, + "slotting": 2.29e-07, + "snarls": 2.29e-07, + "snowmobiles": 2.29e-07, + "snuggly": 2.29e-07, + "soler": 2.29e-07, + "soni": 2.29e-07, + "sonoran": 2.29e-07, + "speakerphone": 2.29e-07, + "sph": 2.29e-07, + "spinoffs": 2.29e-07, + "spivey": 2.29e-07, + "spss": 2.29e-07, + "spurn": 2.29e-07, + "squashing": 2.29e-07, + "starwood": 2.29e-07, + "steadied": 2.29e-07, + "stiffening": 2.29e-07, + "stilwell": 2.29e-07, + "strathmore": 2.29e-07, + "stroman": 2.29e-07, + "strychnine": 2.29e-07, + "subsidise": 2.29e-07, + "suckered": 2.29e-07, + "sula": 2.29e-07, + "sulphuric": 2.29e-07, + "sunburnt": 2.29e-07, + "sunda": 2.29e-07, + "sunrises": 2.29e-07, + "supercharge": 2.29e-07, + "surfboards": 2.29e-07, + "swarthmore": 2.29e-07, + "symbian": 2.29e-07, + "sympathisers": 2.29e-07, + "tabbed": 2.29e-07, + "tabula": 2.29e-07, + "tactfully": 2.29e-07, + "talal": 2.29e-07, + "talismans": 2.29e-07, + "tamaki": 2.29e-07, + "tamaulipas": 2.29e-07, + "tandoori": 2.29e-07, + "tankard": 2.29e-07, + "taras": 2.14e-07, + "tarpon": 2.29e-07, + "tarps": 2.29e-07, + "tce": 2.29e-07, + "tej": 2.29e-07, + "tendinitis": 2.29e-07, + "tenors": 2.29e-07, + "terrarium": 2.29e-07, + "tetrahedral": 2.29e-07, + "thespian": 2.29e-07, + "thibodeau": 2.29e-07, + "thucydides": 2.29e-07, + "thusly": 2.29e-07, + "tilling": 2.29e-07, + "tinas": 2.29e-07, + "tinkle": 2.29e-07, + "tld": 2.29e-07, + "tobys": 2.29e-07, + "tocqueville": 2.29e-07, + "tortoiseshell": 2.29e-07, + "toucan": 2.29e-07, + "transpire": 2.29e-07, + "trifles": 2.29e-07, + "triplicate": 2.29e-07, + "trl": 2.29e-07, + "tuo": 2.29e-07, + "ture": 2.29e-07, + "umbria": 2.29e-07, + "unashamedly": 2.29e-07, + "unassigned": 2.29e-07, + "unavoidably": 2.29e-07, + "uncompressed": 2.29e-07, + "underperform": 2.29e-07, + "unidos": 2.29e-07, + "uninvolved": 2.29e-07, + "unironically": 2.29e-07, + "unmolested": 2.29e-07, + "unsanctioned": 2.29e-07, + "unthinking": 2.29e-07, + "vainly": 2.29e-07, + "vala": 2.29e-07, + "vandalizing": 2.29e-07, + "vesey": 2.29e-07, + "vics": 1.45e-07, + "vitor": 2.29e-07, + "vixens": 2.29e-07, + "wagered": 2.29e-07, + "wakefulness": 2.29e-07, + "walworth": 2.29e-07, + "wareham": 2.29e-07, + "warhols": 5.75e-08, + "wasim": 2.29e-07, + "watercourses": 2.29e-07, + "weise": 2.29e-07, + "welle": 2.29e-07, + "werribee": 2.29e-07, + "whaler": 2.29e-07, + "whatevs": 2.29e-07, + "wheelock": 2.29e-07, + "whitehorse": 2.29e-07, + "whitelist": 2.29e-07, + "wideband": 2.29e-07, + "widowers": 2.29e-07, + "wigmore": 2.29e-07, + "wintergreen": 2.29e-07, + "wird": 2.29e-07, + "wmo": 2.29e-07, + "wrung": 2.29e-07, + "wyandotte": 2.29e-07, + "xg": 2.29e-07, + "yamuna": 2.29e-07, + "yawned": 2.29e-07, + "youn": 2.29e-07, + "zaki": 2.29e-07, + "zico": 2.29e-07, + "zilla": 2.29e-07, + "zoroastrian": 2.29e-07, + "zune": 2.29e-07, + "aad": 2.24e-07, + "aaj": 2.24e-07, + "abutment": 2.24e-07, + "accusatory": 2.24e-07, + "adjuncts": 2.24e-07, + "advani": 2.24e-07, + "aeruginosa": 2.24e-07, + "afflicting": 2.24e-07, + "afrin": 2.24e-07, + "agincourt": 2.24e-07, + "agron": 2.24e-07, + "agus": 2.24e-07, + "ajc": 2.24e-07, + "akio": 2.24e-07, + "akkadian": 2.24e-07, + "akwa": 2.24e-07, + "albanese": 2.24e-07, + "albers": 2.24e-07, + "aleister": 2.24e-07, + "alek": 2.24e-07, + "alg": 2.24e-07, + "alittle": 2.24e-07, + "allegories": 2.24e-07, + "anf": 2.24e-07, + "antiquaries": 2.24e-07, + "antiquary": 2.24e-07, + "applejack": 2.24e-07, + "apprehensions": 2.24e-07, + "areola": 2.24e-07, + "argonauts": 2.24e-07, + "armrest": 2.24e-07, + "arrieta": 2.24e-07, + "artois": 2.24e-07, + "ashkelon": 2.24e-07, + "ashmore": 2.24e-07, + "athletically": 2.24e-07, + "attenuate": 2.24e-07, + "autobot": 2.24e-07, + "ayub": 2.24e-07, + "bagdad": 2.24e-07, + "bagpipe": 2.24e-07, + "baguettes": 2.24e-07, + "ballina": 2.24e-07, + "barbera": 2.24e-07, + "barreling": 2.24e-07, + "basle": 2.24e-07, + "bateson": 2.24e-07, + "bauchi": 2.24e-07, + "bedsheets": 2.24e-07, + "beheadings": 2.24e-07, + "bellowed": 2.24e-07, + "bemoaning": 2.24e-07, + "benedetto": 2.24e-07, + "benedicts": 2.24e-07, + "berkeleys": 2.24e-07, + "betrayer": 2.24e-07, + "bettencourt": 2.24e-07, + "bibb": 2.24e-07, + "biblioteca": 2.24e-07, + "bifurcated": 2.24e-07, + "billets": 2.24e-07, + "biofeedback": 2.24e-07, + "bjs": 2.19e-07, + "blinker": 2.24e-07, + "blockchains": 2.24e-07, + "blundering": 2.24e-07, + "boh": 2.24e-07, + "bonifacio": 2.24e-07, + "bonilla": 2.24e-07, + "boohoo": 2.24e-07, + "bookcases": 2.24e-07, + "bookends": 2.24e-07, + "boorish": 2.24e-07, + "borderland": 2.24e-07, + "bortles": 2.24e-07, + "bougainville": 2.24e-07, + "bradstreet": 2.24e-07, + "brainpower": 2.24e-07, + "brandished": 2.24e-07, + "brauer": 2.24e-07, + "brier": 2.24e-07, + "brigands": 2.24e-07, + "britches": 2.24e-07, + "brunet": 2.24e-07, + "brunton": 2.24e-07, + "burdening": 2.24e-07, + "burro": 2.24e-07, + "buyin": 2.24e-07, + "cadogan": 2.24e-07, + "campania": 2.24e-07, + "canaria": 2.24e-07, + "caning": 2.24e-07, + "cannock": 2.24e-07, + "capel": 2.24e-07, + "carryover": 2.24e-07, + "cartwheels": 2.24e-07, + "cashes": 2.24e-07, + "cassio": 2.24e-07, + "castaways": 2.24e-07, + "catelyn": 2.24e-07, + "cbbc": 2.24e-07, + "cbm": 2.24e-07, + "cdg": 2.24e-07, + "centrists": 2.24e-07, + "chacha": 2.24e-07, + "changin": 2.24e-07, + "charcuterie": 2.24e-07, + "chequers": 2.24e-07, + "chidambaram": 2.24e-07, + "chik": 2.24e-07, + "chinos": 2.24e-07, + "cholo": 2.24e-07, + "choreograph": 2.24e-07, + "christmastime": 2.24e-07, + "churkin": 2.24e-07, + "clas": 2.24e-07, + "cletus": 2.24e-07, + "cleverer": 2.24e-07, + "cliched": 2.24e-07, + "clichy": 2.24e-07, + "clincher": 2.24e-07, + "cloture": 2.24e-07, + "clovers": 2.24e-07, + "clowes": 2.24e-07, + "clwyd": 2.24e-07, + "cmr": 2.24e-07, + "coho": 2.24e-07, + "coldwell": 2.24e-07, + "colins": 2.24e-07, + "collegial": 2.24e-07, + "colonna": 2.24e-07, + "colourpop": 2.24e-07, + "comas": 2.24e-07, + "comeys": 2.24e-07, + "comprehended": 2.24e-07, + "concha": 2.24e-07, + "condors": 2.24e-07, + "confides": 2.24e-07, + "constrains": 2.24e-07, + "constructivism": 2.24e-07, + "cooch": 2.24e-07, + "coppa": 2.24e-07, + "cornel": 2.24e-07, + "cornyn": 2.24e-07, + "corroborates": 2.24e-07, + "coty": 2.24e-07, + "coulee": 2.24e-07, + "counterfeits": 2.24e-07, + "cowdenbeath": 2.24e-07, + "cowgirls": 2.24e-07, + "crea": 2.24e-07, + "creaky": 2.24e-07, + "crowdsourced": 2.24e-07, + "crystallize": 2.24e-07, + "csb": 2.24e-07, + "cunha": 2.24e-07, + "cunningly": 2.24e-07, + "cura": 2.24e-07, + "curried": 2.24e-07, + "cva": 2.24e-07, + "cytotoxicity": 2.24e-07, + "davidsons": 2.24e-07, + "davinci": 2.24e-07, + "dawa": 2.24e-07, + "dct": 2.24e-07, + "deaconess": 2.24e-07, + "dearie": 2.24e-07, + "debi": 2.24e-07, + "deceives": 2.24e-07, + "decimation": 2.24e-07, + "decriminalized": 2.24e-07, + "deeded": 2.24e-07, + "defra": 2.24e-07, + "deluding": 2.24e-07, + "dennett": 2.24e-07, + "deportivo": 2.24e-07, + "detainment": 2.24e-07, + "deut": 2.24e-07, + "devastatingly": 2.24e-07, + "devolves": 2.24e-07, + "dingwall": 2.24e-07, + "diocletian": 2.24e-07, + "disassociate": 2.24e-07, + "disdainful": 2.24e-07, + "dishonestly": 2.24e-07, + "disinfectants": 2.24e-07, + "diz": 2.24e-07, + "dmr": 2.24e-07, + "doble": 2.24e-07, + "doling": 2.24e-07, + "dotson": 2.24e-07, + "doty": 2.24e-07, + "downloader": 2.24e-07, + "dravidian": 2.24e-07, + "dreamliner": 2.24e-07, + "driller": 2.24e-07, + "drouin": 2.24e-07, + "drumbeat": 2.24e-07, + "dubbo": 2.24e-07, + "dunns": 2.24e-07, + "educationally": 2.24e-07, + "ees": 1e-07, + "ehs": 2.24e-07, + "eic": 2.24e-07, + "eld": 2.24e-07, + "electioneering": 2.24e-07, + "elim": 2.24e-07, + "elland": 2.24e-07, + "emmaus": 2.24e-07, + "emmerich": 2.24e-07, + "emplacement": 2.24e-07, + "emulsions": 2.24e-07, + "enchilada": 2.24e-07, + "endear": 2.24e-07, + "enrolls": 2.24e-07, + "equilateral": 2.24e-07, + "escalante": 2.24e-07, + "evanescence": 2.24e-07, + "evangelicalism": 2.24e-07, + "exhumation": 2.24e-07, + "experimenters": 2.24e-07, + "expletives": 2.24e-07, + "eyal": 2.24e-07, + "eyeshadows": 2.24e-07, + "fabien": 2.24e-07, + "faeries": 2.24e-07, + "failsafe": 2.24e-07, + "farmhouses": 2.24e-07, + "fatass": 2.24e-07, + "fattah": 2.24e-07, + "featurette": 2.24e-07, + "feedbacks": 2.24e-07, + "ferc": 2.24e-07, + "ferengi": 2.24e-07, + "festus": 2.24e-07, + "fgs": 2.24e-07, + "fiedler": 2.24e-07, + "fijians": 2.24e-07, + "fisheye": 2.24e-07, + "flatline": 2.24e-07, + "flaubert": 2.24e-07, + "flitting": 2.24e-07, + "flycatcher": 2.24e-07, + "fnaf": 2.24e-07, + "fokker": 2.24e-07, + "fom": 2.24e-07, + "foodborne": 2.24e-07, + "frac": 2.24e-07, + "fram": 2.24e-07, + "freire": 2.24e-07, + "friedlander": 2.24e-07, + "frontispiece": 2.24e-07, + "fullmetal": 2.24e-07, + "fullscreen": 2.24e-07, + "gagne": 2.24e-07, + "galina": 2.24e-07, + "gallantly": 2.24e-07, + "garros": 2.24e-07, + "genealogist": 2.24e-07, + "gershon": 2.24e-07, + "ges": 1.86e-07, + "gic": 2.24e-07, + "gillibrand": 2.24e-07, + "gilligans": 2.24e-07, + "giri": 2.24e-07, + "glanville": 2.24e-07, + "gnashing": 2.24e-07, + "gnawed": 2.24e-07, + "goe": 2.24e-07, + "goldy": 2.24e-07, + "gorse": 2.24e-07, + "gourds": 2.24e-07, + "granddaddy": 2.24e-07, + "grassed": 2.24e-07, + "gratia": 2.24e-07, + "greendale": 2.24e-07, + "grenier": 2.24e-07, + "greyjoy": 2.24e-07, + "grotesquely": 2.24e-07, + "grungy": 2.24e-07, + "gunsmith": 2.24e-07, + "gushes": 2.24e-07, + "hafez": 2.24e-07, + "hagel": 2.24e-07, + "hairbrush": 2.24e-07, + "hallucinogens": 2.24e-07, + "hamstrung": 2.24e-07, + "handrail": 2.24e-07, + "harboured": 2.24e-07, + "hardliners": 2.24e-07, + "hargrave": 2.24e-07, + "hartnett": 2.24e-07, + "harvie": 2.24e-07, + "havasu": 2.24e-07, + "hawick": 2.24e-07, + "hbc": 2.24e-07, + "hdi": 2.24e-07, + "helio": 2.24e-07, + "henrico": 2.24e-07, + "henriette": 2.24e-07, + "herbalist": 2.24e-07, + "heritability": 2.24e-07, + "herkimer": 2.24e-07, + "herve": 2.24e-07, + "hesitancy": 2.24e-07, + "hickson": 2.24e-07, + "hieroglyphic": 2.24e-07, + "hilde": 2.24e-07, + "hindmarsh": 2.24e-07, + "hispaniola": 2.24e-07, + "hobbling": 2.24e-07, + "hodgkinson": 2.24e-07, + "hoey": 2.24e-07, + "holodeck": 2.24e-07, + "hpd": 2.24e-07, + "humanizing": 2.24e-07, + "hydroponics": 2.24e-07, + "ihc": 2.24e-07, + "iknow": 2.24e-07, + "ilham": 2.24e-07, + "ilona": 2.24e-07, + "imaginings": 2.24e-07, + "imm": 2.24e-07, + "imminently": 2.24e-07, + "immobility": 2.24e-07, + "immobilize": 2.24e-07, + "imperator": 2.24e-07, + "imperials": 2.24e-07, + "impermissible": 2.24e-07, + "improvisations": 2.24e-07, + "imprudent": 2.24e-07, + "incoherently": 2.24e-07, + "indentations": 2.24e-07, + "independant": 2.24e-07, + "indu": 2.24e-07, + "inhalers": 2.24e-07, + "interdict": 2.24e-07, + "interjected": 2.24e-07, + "interrogative": 2.24e-07, + "intransigence": 2.24e-07, + "ipf": 2.24e-07, + "irr": 2.24e-07, + "islip": 2.24e-07, + "jackasses": 2.24e-07, + "jarrah": 2.24e-07, + "jeezy": 2.24e-07, + "jef": 2.24e-07, + "jesper": 2.24e-07, + "joko": 2.24e-07, + "jonestown": 2.24e-07, + "joyously": 2.24e-07, + "jsut": 2.24e-07, + "kagura": 2.24e-07, + "kamel": 2.24e-07, + "karine": 2.24e-07, + "karlie": 2.24e-07, + "kashgar": 2.24e-07, + "kazoo": 2.24e-07, + "kbps": 2.24e-07, + "kemba": 2.24e-07, + "kenley": 2.24e-07, + "ketch": 2.24e-07, + "kettlebell": 2.24e-07, + "kingsford": 2.24e-07, + "klum": 2.24e-07, + "knocker": 2.24e-07, + "kosta": 2.24e-07, + "kroenke": 2.24e-07, + "kross": 2.24e-07, + "ksu": 2.24e-07, + "kuang": 2.24e-07, + "kubricks": 2.24e-07, + "kuti": 2.24e-07, + "kylies": 2.24e-07, + "landholders": 2.24e-07, + "latins": 2.24e-07, + "lcp": 2.24e-07, + "leichhardt": 2.24e-07, + "lettin": 2.24e-07, + "lgb": 2.24e-07, + "licensor": 2.24e-07, + "lifespans": 2.24e-07, + "lindsays": 2.24e-07, + "linlithgow": 2.24e-07, + "linotype": 2.24e-07, + "listenin": 2.24e-07, + "llorente": 2.24e-07, + "loafing": 2.24e-07, + "loners": 2.24e-07, + "longmont": 2.24e-07, + "lossy": 2.24e-07, + "lovelies": 2.24e-07, + "lpn": 2.24e-07, + "lta": 2.24e-07, + "lukashenko": 2.24e-07, + "lumping": 2.24e-07, + "lusk": 2.24e-07, + "lutyens": 2.24e-07, + "luxuriant": 2.24e-07, + "macduff": 2.24e-07, + "maclaine": 2.24e-07, + "majesties": 2.24e-07, + "malarial": 2.24e-07, + "malmesbury": 2.24e-07, + "manville": 2.24e-07, + "margolis": 2.24e-07, + "marlena": 2.24e-07, + "masseur": 2.24e-07, + "mathura": 2.24e-07, + "matos": 2.24e-07, + "matsuda": 2.24e-07, + "mauer": 2.24e-07, + "mccandless": 2.24e-07, + "mechs": 2.24e-07, + "meigs": 2.24e-07, + "mfi": 2.24e-07, + "mfr": 2.24e-07, + "mgt": 2.24e-07, + "midrash": 2.24e-07, + "mies": 2.24e-07, + "mikaela": 2.24e-07, + "moistened": 2.24e-07, + "monad": 2.24e-07, + "moneyball": 2.24e-07, + "moolah": 2.24e-07, + "mordaunt": 2.24e-07, + "morita": 2.24e-07, + "moskowitz": 2.24e-07, + "mosman": 2.24e-07, + "moy": 2.24e-07, + "msft": 2.24e-07, + "mth": 2.24e-07, + "multiyear": 2.24e-07, + "nabisco": 2.24e-07, + "nadh": 2.24e-07, + "nephi": 2.24e-07, + "nesta": 2.24e-07, + "neuropathic": 2.24e-07, + "neuropsychiatric": 2.24e-07, + "nevermore": 2.24e-07, + "newburyport": 2.24e-07, + "newspaperman": 2.24e-07, + "niceness": 2.24e-07, + "nicolette": 2.24e-07, + "noch": 2.24e-07, + "nonwhite": 2.24e-07, + "norden": 2.24e-07, + "noticias": 2.24e-07, + "obscura": 2.24e-07, + "obvs": 2.24e-07, + "oesophagus": 2.24e-07, + "offa": 2.24e-07, + "offical": 2.24e-07, + "olof": 2.24e-07, + "omicron": 2.24e-07, + "oompa": 2.24e-07, + "orbison": 2.24e-07, + "oriole": 2.24e-07, + "orman": 2.24e-07, + "osbornes": 2.24e-07, + "overconfidence": 2.24e-07, + "overdrawn": 2.24e-07, + "oya": 2.24e-07, + "pago": 2.24e-07, + "pagodas": 2.24e-07, + "palins": 2.24e-07, + "parkhurst": 2.24e-07, + "patois": 2.24e-07, + "paywall": 2.24e-07, + "pentland": 2.24e-07, + "perimeters": 2.24e-07, + "perrine": 2.24e-07, + "phantasy": 2.24e-07, + "phlox": 2.24e-07, + "pickaxe": 2.24e-07, + "picnicking": 2.24e-07, + "picts": 2.24e-07, + "piggott": 2.24e-07, + "pish": 2.24e-07, + "pitcairn": 2.24e-07, + "playpen": 2.24e-07, + "plm": 2.24e-07, + "poignancy": 2.24e-07, + "pollux": 2.24e-07, + "pottsville": 2.24e-07, + "powerline": 2.24e-07, + "praetorian": 2.24e-07, + "pranked": 2.24e-07, + "preempted": 2.24e-07, + "pretax": 2.24e-07, + "primera": 2.24e-07, + "procedurally": 2.24e-07, + "proclivities": 2.24e-07, + "prowse": 2.24e-07, + "pso": 2.24e-07, + "pula": 2.24e-07, + "pupae": 2.24e-07, + "pursuer": 2.24e-07, + "putsch": 2.24e-07, + "quadrature": 2.24e-07, + "quadriplegic": 2.24e-07, + "quasars": 2.24e-07, + "quelling": 2.24e-07, + "quiescent": 2.24e-07, + "quintessence": 2.24e-07, + "quizzing": 2.24e-07, + "qumran": 2.24e-07, + "quod": 2.24e-07, + "rabb": 2.24e-07, + "rakitic": 2.24e-07, + "rando": 2.24e-07, + "raritan": 2.24e-07, + "rashi": 2.24e-07, + "reappearing": 2.24e-07, + "rearrangements": 2.24e-07, + "rearward": 2.24e-07, + "rebbe": 2.24e-07, + "recalibrate": 2.24e-07, + "redbull": 2.24e-07, + "redecorate": 2.24e-07, + "redefines": 2.24e-07, + "redeploy": 2.24e-07, + "redheaded": 2.24e-07, + "redick": 2.24e-07, + "reeking": 2.24e-07, + "reem": 2.24e-07, + "reexamine": 2.24e-07, + "relishes": 2.24e-07, + "resubmit": 2.24e-07, + "resveratrol": 2.24e-07, + "retrovirus": 2.24e-07, + "revises": 2.24e-07, + "ribcage": 2.24e-07, + "ribosomes": 2.24e-07, + "rideau": 2.24e-07, + "ringling": 2.24e-07, + "rmc": 2.24e-07, + "roadsides": 2.24e-07, + "roadtrip": 2.24e-07, + "rocher": 2.24e-07, + "rochford": 2.24e-07, + "rosies": 2.24e-07, + "rotorua": 2.24e-07, + "rou": 2.24e-07, + "rudest": 2.24e-07, + "rudiments": 2.24e-07, + "ruffin": 2.24e-07, + "runcorn": 2.24e-07, + "rupiah": 2.24e-07, + "sabc": 2.24e-07, + "sabi": 2.24e-07, + "sacrum": 2.24e-07, + "safran": 2.24e-07, + "sandys": 2.19e-07, + "sanji": 2.24e-07, + "sapping": 2.24e-07, + "saruman": 2.24e-07, + "sawtooth": 2.24e-07, + "sayyaf": 2.24e-07, + "scarsdale": 2.24e-07, + "scram": 2.24e-07, + "screwdrivers": 2.24e-07, + "scrubbers": 2.24e-07, + "seahawk": 2.24e-07, + "seance": 2.24e-07, + "seascape": 2.24e-07, + "sebastopol": 2.24e-07, + "seducer": 2.24e-07, + "selectmen": 2.24e-07, + "senders": 8.32e-08, + "sennheiser": 2.24e-07, + "septal": 2.24e-07, + "serially": 2.24e-07, + "seve": 2.24e-07, + "severs": 2.24e-07, + "sevier": 2.24e-07, + "sexing": 2.24e-07, + "shamus": 2.24e-07, + "shemales": 2.24e-07, + "sherrill": 2.24e-07, + "shoelace": 2.24e-07, + "showrunners": 2.24e-07, + "shrieked": 2.24e-07, + "silencers": 2.24e-07, + "skylines": 2.24e-07, + "slat": 2.24e-07, + "slugged": 2.24e-07, + "smudges": 2.24e-07, + "snatcher": 2.24e-07, + "snatchers": 2.24e-07, + "snipped": 2.24e-07, + "snopes": 2.24e-07, + "softie": 2.24e-07, + "sokka": 2.24e-07, + "souk": 2.24e-07, + "sours": 2.24e-07, + "spearing": 2.24e-07, + "spiritus": 2.24e-07, + "spoilage": 2.24e-07, + "sputum": 2.24e-07, + "squelch": 2.24e-07, + "stacker": 2.24e-07, + "stallings": 2.24e-07, + "starwars": 2.24e-07, + "statuettes": 2.24e-07, + "stilton": 2.24e-07, + "stinkin": 2.24e-07, + "stockbrokers": 2.24e-07, + "stonewalling": 2.24e-07, + "stoppard": 2.24e-07, + "stor": 2.24e-07, + "storekeeper": 2.24e-07, + "stowell": 2.24e-07, + "streetlight": 2.24e-07, + "streetwise": 2.24e-07, + "strix": 2.24e-07, + "studiously": 2.24e-07, + "subcategories": 2.24e-07, + "submariner": 2.24e-07, + "sunfish": 2.24e-07, + "superhighway": 2.24e-07, + "swimmingly": 2.24e-07, + "sylar": 2.24e-07, + "synods": 2.24e-07, + "synovial": 2.24e-07, + "tchalla": 2.24e-07, + "taek": 2.24e-07, + "tain": 2.24e-07, + "tamura": 2.24e-07, + "taranaki": 2.24e-07, + "tartare": 2.24e-07, + "taskbar": 2.24e-07, + "tatooine": 2.24e-07, + "teatime": 2.24e-07, + "telekinetic": 2.24e-07, + "thein": 2.24e-07, + "thomsons": 2.24e-07, + "thronged": 2.24e-07, + "ticonderoga": 2.24e-07, + "tiebreak": 2.24e-07, + "tiempo": 2.24e-07, + "tillage": 2.24e-07, + "timidly": 2.24e-07, + "titling": 2.24e-07, + "toei": 2.24e-07, + "tolled": 2.24e-07, + "tonka": 2.24e-07, + "tonsil": 2.24e-07, + "touchline": 2.24e-07, + "tracys": 2.24e-07, + "tranquilizers": 2.24e-07, + "transept": 2.24e-07, + "trenchant": 2.24e-07, + "tress": 2.24e-07, + "trilby": 2.24e-07, + "tuf": 2.24e-07, + "tumi": 2.24e-07, + "tunstall": 2.24e-07, + "turbocharger": 2.24e-07, + "tynan": 2.24e-07, + "ucp": 2.24e-07, + "ukips": 2.24e-07, + "ulan": 2.24e-07, + "ulna": 2.24e-07, + "unacknowledged": 2.24e-07, + "uncollected": 2.24e-07, + "uncompleted": 2.24e-07, + "uncontroversial": 2.24e-07, + "uncritically": 2.24e-07, + "undertakers": 1.23e-07, + "undervalue": 2.24e-07, + "unforeseeable": 2.24e-07, + "unperturbed": 2.24e-07, + "upstage": 2.24e-07, + "uq": 2.24e-07, + "utm": 2.24e-07, + "uvb": 2.24e-07, + "vajpayee": 2.24e-07, + "varys": 2.24e-07, + "vibratory": 2.24e-07, + "vikki": 2.24e-07, + "vill": 2.24e-07, + "vinay": 2.24e-07, + "vinces": 2.24e-07, + "violator": 2.24e-07, + "violette": 2.24e-07, + "visakhapatnam": 2.24e-07, + "viscera": 2.24e-07, + "volodymyr": 2.24e-07, + "waaaaay": 2.24e-07, + "waif": 2.24e-07, + "waives": 2.24e-07, + "warpath": 2.24e-07, + "warrnambool": 2.24e-07, + "watercourse": 2.24e-07, + "weeb": 2.24e-07, + "wef": 2.24e-07, + "weissman": 2.24e-07, + "wellingtons": 1.17e-07, + "westmorland": 2.24e-07, + "westover": 2.24e-07, + "wgbh": 2.24e-07, + "wgc": 2.24e-07, + "wiese": 2.24e-07, + "wilmore": 2.24e-07, + "wilts": 2.24e-07, + "wipo": 2.24e-07, + "woodys": 2.24e-07, + "woolworth": 2.24e-07, + "wou": 2.24e-07, + "wuz": 2.24e-07, + "xabi": 2.24e-07, + "xen": 2.24e-07, + "yami": 2.24e-07, + "yellowknife": 2.24e-07, + "yemenis": 2.24e-07, + "yorkie": 2.24e-07, + "yousuf": 2.24e-07, + "yuji": 2.24e-07, + "yukio": 2.24e-07, + "zai": 2.24e-07, + "zf": 2.24e-07, + "zhivago": 2.24e-07, + "zohar": 2.24e-07, + "zygote": 2.24e-07, + "abad": 2.19e-07, + "acai": 2.19e-07, + "accoutrements": 2.19e-07, + "acrimony": 2.19e-07, + "addressee": 2.19e-07, + "adenine": 2.19e-07, + "adu": 2.19e-07, + "aeneid": 2.19e-07, + "agoraphobia": 2.19e-07, + "airpower": 2.19e-07, + "albarn": 2.19e-07, + "albertans": 2.19e-07, + "alejandra": 2.19e-07, + "alienware": 2.19e-07, + "altercations": 2.19e-07, + "amds": 2.19e-07, + "ameen": 2.19e-07, + "ameri": 2.19e-07, + "anka": 2.19e-07, + "anopheles": 2.19e-07, + "apn": 2.19e-07, + "approvingly": 2.19e-07, + "apse": 2.19e-07, + "arboreal": 2.19e-07, + "ardor": 2.19e-07, + "arial": 2.19e-07, + "armenias": 2.19e-07, + "asin": 2.19e-07, + "attwood": 2.19e-07, + "avc": 2.19e-07, + "awad": 2.19e-07, + "backus": 2.19e-07, + "badri": 2.19e-07, + "bakelite": 2.19e-07, + "baloo": 2.19e-07, + "banfield": 2.19e-07, + "bangerz": 2.19e-07, + "banzai": 2.19e-07, + "barkers": 9.55e-08, + "bartoli": 2.19e-07, + "bathsheba": 2.19e-07, + "bathtubs": 2.19e-07, + "batts": 2.19e-07, + "bawled": 2.19e-07, + "bbva": 2.19e-07, + "bcd": 2.19e-07, + "beachs": 2.19e-07, + "beazley": 2.19e-07, + "beckys": 2.19e-07, + "beng": 2.19e-07, + "benzoyl": 2.19e-07, + "berthing": 2.19e-07, + "berthold": 2.19e-07, + "besotted": 2.19e-07, + "bett": 2.19e-07, + "bexar": 2.19e-07, + "biosecurity": 2.19e-07, + "bipartisanship": 2.19e-07, + "birkenau": 2.19e-07, + "birther": 2.19e-07, + "birthstone": 2.19e-07, + "bodmin": 2.19e-07, + "boehm": 2.19e-07, + "bogeys": 2.19e-07, + "bohemians": 2.19e-07, + "bomba": 2.19e-07, + "boozing": 2.19e-07, + "bouldering": 2.19e-07, + "boylan": 2.19e-07, + "braindead": 2.19e-07, + "branco": 2.19e-07, + "braunschweig": 2.19e-07, + "brawny": 2.19e-07, + "breastmilk": 2.19e-07, + "breathy": 2.19e-07, + "breuer": 2.19e-07, + "briefest": 2.19e-07, + "broadcom": 2.19e-07, + "btec": 2.19e-07, + "bullfrog": 2.19e-07, + "businesslike": 2.19e-07, + "callen": 2.19e-07, + "caltrans": 2.19e-07, + "cannoli": 2.19e-07, + "canst": 2.19e-07, + "cantankerous": 2.19e-07, + "capello": 2.19e-07, + "caricom": 2.19e-07, + "carragher": 2.19e-07, + "carthaginians": 2.19e-07, + "cassino": 2.19e-07, + "cei": 2.19e-07, + "cfe": 2.19e-07, + "cfu": 2.19e-07, + "chakrabarti": 2.19e-07, + "chemtrails": 2.19e-07, + "cinders": 2.19e-07, + "circumferential": 2.19e-07, + "clambered": 2.19e-07, + "clandestinely": 2.19e-07, + "clobbered": 2.19e-07, + "clumping": 2.19e-07, + "coalfield": 2.19e-07, + "cobblestones": 2.19e-07, + "cockle": 2.19e-07, + "codebase": 2.19e-07, + "cohesiveness": 2.19e-07, + "coi": 2.19e-07, + "coldstream": 2.19e-07, + "comanches": 2.19e-07, + "comeuppance": 2.19e-07, + "commerical": 2.19e-07, + "confiding": 2.19e-07, + "confusions": 2.19e-07, + "conversationalist": 2.19e-07, + "copse": 2.19e-07, + "corgis": 2.19e-07, + "cormorant": 2.19e-07, + "costliest": 2.19e-07, + "courtland": 2.19e-07, + "cowes": 2.19e-07, + "crafter": 2.19e-07, + "crosbys": 2.19e-07, + "crossrail": 2.19e-07, + "cryer": 2.19e-07, + "currants": 2.19e-07, + "curren": 2.19e-07, + "currier": 2.19e-07, + "cybertron": 2.19e-07, + "daan": 2.19e-07, + "dalla": 2.19e-07, + "damped": 2.19e-07, + "damsels": 2.19e-07, + "dasher": 2.19e-07, + "datuk": 2.19e-07, + "daum": 2.19e-07, + "dbm": 2.19e-07, + "dcm": 2.19e-07, + "deactivating": 2.19e-07, + "deckard": 2.19e-07, + "deferment": 2.19e-07, + "defusing": 2.19e-07, + "demerit": 2.19e-07, + "denatured": 2.19e-07, + "derails": 2.19e-07, + "devoutly": 2.19e-07, + "diageo": 2.19e-07, + "diagonals": 2.19e-07, + "dieppe": 2.19e-07, + "differentiable": 2.19e-07, + "digitizing": 2.19e-07, + "dignify": 2.19e-07, + "dilip": 2.19e-07, + "dimorphism": 2.19e-07, + "disadvantageous": 2.19e-07, + "disharmony": 2.19e-07, + "disinherited": 2.19e-07, + "dookie": 2.19e-07, + "dorr": 2.19e-07, + "dowell": 2.19e-07, + "drugstores": 2.19e-07, + "dtv": 2.19e-07, + "dunbartonshire": 2.19e-07, + "duro": 2.19e-07, + "dyk": 2.19e-07, + "eam": 2.19e-07, + "easterners": 2.19e-07, + "eastland": 2.19e-07, + "ebro": 2.19e-07, + "ecuadors": 2.19e-07, + "edgware": 2.19e-07, + "edsa": 2.19e-07, + "effectual": 2.19e-07, + "egfr": 2.19e-07, + "eiji": 2.19e-07, + "eldritch": 2.19e-07, + "electroplating": 2.19e-07, + "eliezer": 2.19e-07, + "elisabetta": 2.19e-07, + "emiliano": 2.19e-07, + "empt": 2.19e-07, + "endor": 2.19e-07, + "endorser": 2.19e-07, + "enniskillen": 2.19e-07, + "entendre": 2.19e-07, + "enteric": 2.19e-07, + "epidemiologists": 2.19e-07, + "epsteins": 2.19e-07, + "ersatz": 2.19e-07, + "eurosceptic": 2.19e-07, + "eurosport": 2.19e-07, + "exhales": 2.19e-07, + "exmouth": 2.19e-07, + "exploitable": 2.19e-07, + "extenders": 2.19e-07, + "factly": 2.19e-07, + "fairmount": 2.19e-07, + "fara": 2.19e-07, + "farrakhan": 2.19e-07, + "fifas": 2.19e-07, + "filers": 2.19e-07, + "fino": 2.19e-07, + "flam": 2.19e-07, + "floaters": 2.19e-07, + "florio": 2.19e-07, + "foamed": 2.19e-07, + "folktales": 2.19e-07, + "foolin": 2.19e-07, + "footers": 2.19e-07, + "footfall": 2.19e-07, + "fortieth": 2.19e-07, + "fossiliferous": 2.19e-07, + "fractious": 2.19e-07, + "franke": 2.19e-07, + "fredric": 2.19e-07, + "freitas": 2.19e-07, + "frieza": 2.19e-07, + "fue": 2.19e-07, + "functionary": 2.19e-07, + "gaffes": 2.19e-07, + "galactus": 2.19e-07, + "galls": 2.19e-07, + "gantt": 2.19e-07, + "garners": 1.66e-07, + "gata": 2.19e-07, + "gazetted": 2.19e-07, + "gbm": 2.19e-07, + "gehry": 2.19e-07, + "gelatine": 2.19e-07, + "gellar": 2.19e-07, + "geomorphology": 2.19e-07, + "gilgit": 2.19e-07, + "giorgi": 2.19e-07, + "gizmos": 2.19e-07, + "glamor": 2.19e-07, + "gls": 2.19e-07, + "gnr": 2.19e-07, + "goel": 2.19e-07, + "gooder": 2.19e-07, + "gox": 2.19e-07, + "gramma": 2.19e-07, + "greasing": 2.19e-07, + "greenstone": 2.19e-07, + "grice": 2.19e-07, + "grievously": 2.19e-07, + "gsr": 2.19e-07, + "gulps": 2.19e-07, + "guna": 2.19e-07, + "gunplay": 2.19e-07, + "gur": 2.19e-07, + "halep": 2.19e-07, + "haman": 2.19e-07, + "haneda": 2.19e-07, + "harvin": 2.19e-07, + "harwell": 2.19e-07, + "hasina": 2.19e-07, + "hawa": 2.19e-07, + "hcm": 2.19e-07, + "heald": 2.19e-07, + "heartaches": 2.19e-07, + "heim": 2.19e-07, + "hems": 2.19e-07, + "hepatocytes": 2.19e-07, + "herringbone": 2.19e-07, + "hickenlooper": 2.19e-07, + "homogenized": 2.19e-07, + "honshu": 2.19e-07, + "hosanna": 2.19e-07, + "hotshots": 2.19e-07, + "hsm": 2.19e-07, + "humiliations": 2.19e-07, + "huntly": 2.19e-07, + "hydrogenation": 2.19e-07, + "hymenoptera": 2.19e-07, + "hyperthermia": 2.19e-07, + "hyperthyroidism": 2.19e-07, + "idm": 2.19e-07, + "ignominious": 2.19e-07, + "ihre": 2.19e-07, + "ilana": 2.19e-07, + "imbedded": 2.19e-07, + "imperil": 2.19e-07, + "impreza": 2.19e-07, + "indelibly": 2.19e-07, + "innuendos": 2.19e-07, + "instar": 2.19e-07, + "intergroup": 2.19e-07, + "inveterate": 2.19e-07, + "ipanema": 2.19e-07, + "ipm": 2.19e-07, + "irn": 2.19e-07, + "isaak": 2.19e-07, + "italicized": 2.19e-07, + "ius": 7.08e-08, + "izzie": 2.19e-07, + "jailbroken": 2.19e-07, + "janets": 2.19e-07, + "jcc": 2.19e-07, + "jebel": 2.19e-07, + "jenkin": 2.19e-07, + "jiao": 2.19e-07, + "jonesy": 2.19e-07, + "joost": 2.19e-07, + "journo": 2.19e-07, + "joyless": 2.19e-07, + "jumanji": 2.19e-07, + "junket": 2.19e-07, + "justina": 2.19e-07, + "jvc": 2.19e-07, + "kabila": 2.19e-07, + "kajal": 2.19e-07, + "kamran": 2.19e-07, + "kareena": 2.19e-07, + "katrin": 2.19e-07, + "kells": 2.19e-07, + "kennan": 2.19e-07, + "kickball": 2.19e-07, + "kiddin": 2.19e-07, + "kingswood": 2.19e-07, + "kirov": 2.19e-07, + "kishi": 2.19e-07, + "kitchenaid": 2.19e-07, + "kiyoshi": 2.19e-07, + "klerk": 2.19e-07, + "kooks": 2.19e-07, + "koons": 2.19e-07, + "koufax": 2.19e-07, + "krauthammer": 2.19e-07, + "kubiak": 2.19e-07, + "kwik": 2.19e-07, + "kyrgios": 2.19e-07, + "lacma": 2.19e-07, + "laddie": 2.19e-07, + "lambton": 2.19e-07, + "laminates": 2.19e-07, + "lamppost": 2.19e-07, + "lanas": 1.26e-08, + "lecherous": 2.19e-07, + "leiter": 2.19e-07, + "lentz": 2.19e-07, + "lettings": 2.19e-07, + "lgs": 1.82e-07, + "libertad": 2.19e-07, + "libri": 2.19e-07, + "likey": 2.19e-07, + "litigator": 2.19e-07, + "lius": 2.19e-07, + "livejournal": 2.19e-07, + "losin": 2.19e-07, + "louises": 2.19e-07, + "lucina": 2.19e-07, + "lupton": 2.19e-07, + "luzerne": 2.19e-07, + "macchiato": 2.19e-07, + "machar": 2.19e-07, + "maggiore": 2.19e-07, + "magikarp": 2.19e-07, + "magmatic": 2.19e-07, + "magog": 2.19e-07, + "malang": 2.19e-07, + "malcolms": 2.19e-07, + "manhunter": 2.19e-07, + "mapper": 2.19e-07, + "marcie": 2.19e-07, + "maron": 2.19e-07, + "marsala": 2.19e-07, + "marshland": 2.19e-07, + "mcgonagall": 2.19e-07, + "mcnab": 2.19e-07, + "meadowlands": 2.19e-07, + "meine": 2.19e-07, + "melded": 2.19e-07, + "melvyn": 2.19e-07, + "memorialize": 2.19e-07, + "merah": 2.19e-07, + "merediths": 2.19e-07, + "microarray": 2.19e-07, + "milani": 2.19e-07, + "millbrook": 2.19e-07, + "minchin": 2.19e-07, + "mincing": 2.19e-07, + "miramax": 2.19e-07, + "mizuki": 2.19e-07, + "mobi": 2.19e-07, + "mohave": 2.19e-07, + "mojang": 2.19e-07, + "mollusca": 2.19e-07, + "monarchical": 2.19e-07, + "monetizing": 2.19e-07, + "mopar": 2.19e-07, + "moralizing": 2.19e-07, + "moroccos": 2.19e-07, + "morphin": 2.19e-07, + "mouthpieces": 2.19e-07, + "mre": 2.19e-07, + "mudstone": 2.19e-07, + "muerte": 2.19e-07, + "mufasa": 2.19e-07, + "multifunction": 2.19e-07, + "muskogee": 2.19e-07, + "mutagenesis": 2.19e-07, + "mycroft": 2.19e-07, + "mylan": 2.19e-07, + "myst": 2.19e-07, + "nakajima": 2.19e-07, + "naman": 2.19e-07, + "nanostructures": 2.19e-07, + "nasrallah": 2.19e-07, + "neodymium": 2.19e-07, + "netherworld": 2.19e-07, + "neuroendocrine": 2.19e-07, + "neuroses": 2.19e-07, + "nevilles": 2.19e-07, + "newhall": 2.19e-07, + "ngozi": 2.19e-07, + "nhra": 2.19e-07, + "nichole": 2.19e-07, + "nika": 2.19e-07, + "niobium": 2.19e-07, + "normand": 2.19e-07, + "northeasterly": 2.19e-07, + "northerner": 2.19e-07, + "notte": 2.19e-07, + "nrw": 2.19e-07, + "nutters": 2.19e-07, + "nymphomaniac": 2.19e-07, + "oshaughnessy": 2.19e-07, + "obc": 2.19e-07, + "ocelot": 2.19e-07, + "ochs": 2.19e-07, + "oiling": 2.19e-07, + "oozed": 2.19e-07, + "opals": 2.19e-07, + "operatively": 2.19e-07, + "ophir": 2.19e-07, + "orlandos": 2.19e-07, + "ostracism": 2.19e-07, + "ouachita": 2.19e-07, + "outpatients": 2.19e-07, + "overhangs": 2.19e-07, + "oversimplified": 2.19e-07, + "ovi": 2.19e-07, + "oxalate": 2.19e-07, + "palaeolithic": 2.19e-07, + "pandemics": 2.19e-07, + "paperweight": 2.19e-07, + "parenteral": 2.19e-07, + "parsi": 2.19e-07, + "partizan": 2.19e-07, + "pashtuns": 2.19e-07, + "pathan": 2.19e-07, + "paulas": 2.19e-07, + "pdb": 2.19e-07, + "pecked": 2.19e-07, + "peen": 2.19e-07, + "pennywise": 2.19e-07, + "peopled": 2.19e-07, + "peppercorns": 2.19e-07, + "perilously": 2.19e-07, + "peritonitis": 2.19e-07, + "pertained": 2.19e-07, + "perversions": 2.19e-07, + "peterhead": 2.19e-07, + "pharyngeal": 2.19e-07, + "phoenixs": 2.19e-07, + "picton": 2.19e-07, + "pinhead": 2.19e-07, + "pitifully": 2.19e-07, + "pitkin": 2.19e-07, + "piya": 2.19e-07, + "playgroup": 2.19e-07, + "podemos": 2.19e-07, + "poitiers": 2.19e-07, + "pollinator": 2.19e-07, + "polycrystalline": 2.19e-07, + "ponsonby": 2.19e-07, + "porphyry": 2.19e-07, + "posada": 2.19e-07, + "prager": 2.19e-07, + "prefab": 2.19e-07, + "pretension": 2.19e-07, + "prissy": 2.19e-07, + "prolog": 2.19e-07, + "provisioned": 2.19e-07, + "puffins": 2.19e-07, + "punctuate": 2.19e-07, + "punky": 2.19e-07, + "purifiers": 2.19e-07, + "pygmies": 2.19e-07, + "pynchon": 2.19e-07, + "quarreled": 2.19e-07, + "radicalisation": 2.19e-07, + "radioshack": 2.19e-07, + "raimi": 2.19e-07, + "rakhi": 2.19e-07, + "rann": 2.19e-07, + "ransome": 2.19e-07, + "raonic": 2.19e-07, + "rares": 2.19e-07, + "rashly": 2.19e-07, + "ravana": 2.19e-07, + "rayman": 2.19e-07, + "reaps": 2.19e-07, + "rebuff": 2.19e-07, + "recapturing": 2.19e-07, + "recouped": 2.19e-07, + "recursively": 2.19e-07, + "redeployed": 2.19e-07, + "refusals": 2.19e-07, + "regenerates": 2.19e-07, + "regressions": 2.19e-07, + "reinstalling": 2.19e-07, + "relearn": 2.19e-07, + "remitted": 2.19e-07, + "replicator": 2.19e-07, + "reprised": 2.19e-07, + "repubs": 2.19e-07, + "reputational": 2.19e-07, + "retinas": 2.19e-07, + "rexs": 2.19e-07, + "rilke": 2.19e-07, + "rivaling": 2.19e-07, + "riverine": 2.19e-07, + "riz": 2.19e-07, + "rlc": 2.19e-07, + "rnd": 2.19e-07, + "rocksteady": 2.19e-07, + "rol": 2.19e-07, + "rosas": 1.86e-07, + "rosey": 2.19e-07, + "rosneft": 2.19e-07, + "rtg": 2.19e-07, + "ruffians": 2.19e-07, + "ruggles": 2.19e-07, + "ruud": 2.19e-07, + "ryman": 2.19e-07, + "sado": 2.19e-07, + "sak": 2.19e-07, + "saleable": 2.19e-07, + "salix": 2.19e-07, + "sankara": 2.19e-07, + "sanya": 2.19e-07, + "sashas": 2.19e-07, + "satish": 2.19e-07, + "scalise": 2.19e-07, + "scanty": 2.19e-07, + "schnell": 2.19e-07, + "schon": 2.19e-07, + "scorcher": 2.19e-07, + "sealers": 2.19e-07, + "sealy": 2.19e-07, + "sebaceous": 2.19e-07, + "seif": 2.19e-07, + "serendipitous": 2.19e-07, + "serenely": 2.19e-07, + "sgd": 2.19e-07, + "sharm": 2.19e-07, + "shaughnessy": 2.19e-07, + "shavers": 2.19e-07, + "sheathing": 2.19e-07, + "shee": 2.19e-07, + "shenyang": 2.19e-07, + "shimmery": 2.19e-07, + "shockers": 2.19e-07, + "shod": 2.19e-07, + "shor": 2.19e-07, + "shouldering": 2.19e-07, + "shoveled": 2.19e-07, + "shute": 2.19e-07, + "sikorski": 2.19e-07, + "silverback": 2.19e-07, + "simferopol": 2.19e-07, + "sinjar": 2.19e-07, + "sintering": 2.19e-07, + "siya": 2.19e-07, + "skein": 2.19e-07, + "skilling": 2.19e-07, + "skool": 2.19e-07, + "slammer": 2.19e-07, + "slights": 2.19e-07, + "slogging": 2.19e-07, + "smalley": 2.19e-07, + "smarties": 2.19e-07, + "smothers": 2.19e-07, + "smr": 2.19e-07, + "snakeskin": 2.19e-07, + "somalias": 2.19e-07, + "sophias": 2.19e-07, + "soulja": 2.19e-07, + "spitfires": 2.19e-07, + "spliff": 2.19e-07, + "sputtered": 2.19e-07, + "srf": 2.19e-07, + "stairwells": 2.19e-07, + "stanislaw": 2.19e-07, + "steamroller": 2.19e-07, + "steinfeld": 2.19e-07, + "stele": 2.19e-07, + "sterner": 2.19e-07, + "stix": 2.19e-07, + "storer": 2.19e-07, + "storyboards": 2.19e-07, + "stumping": 2.19e-07, + "subhash": 2.19e-07, + "subzero": 2.19e-07, + "sumac": 2.19e-07, + "sux": 2.19e-07, + "syllabic": 2.19e-07, + "syme": 2.19e-07, + "szabo": 2.19e-07, + "tabu": 2.19e-07, + "tackler": 2.19e-07, + "tadashi": 2.19e-07, + "tarantulas": 2.19e-07, + "tattle": 2.19e-07, + "teahouse": 2.19e-07, + "technische": 2.19e-07, + "tedesco": 2.19e-07, + "teleconference": 2.19e-07, + "telex": 2.19e-07, + "teu": 2.19e-07, + "tham": 2.19e-07, + "theosophical": 2.19e-07, + "thresher": 2.19e-07, + "throwbacks": 2.19e-07, + "timidity": 2.19e-07, + "tisch": 2.19e-07, + "tmobile": 2.19e-07, + "tomoko": 2.19e-07, + "toole": 2.19e-07, + "tozer": 2.19e-07, + "trampolines": 2.19e-07, + "transgress": 2.19e-07, + "translink": 2.19e-07, + "trekked": 2.19e-07, + "tripods": 2.19e-07, + "trivandrum": 2.19e-07, + "troupes": 6.61e-08, + "tuileries": 2.19e-07, + "turgid": 2.19e-07, + "turton": 2.19e-07, + "tustin": 2.19e-07, + "tuxedos": 2.19e-07, + "tycoons": 2.19e-07, + "tyga": 2.19e-07, + "uchiha": 2.19e-07, + "umbrage": 2.19e-07, + "umbridge": 2.19e-07, + "unapproachable": 2.19e-07, + "unbeliever": 2.19e-07, + "unde": 2.19e-07, + "undefended": 2.19e-07, + "unimaginably": 2.19e-07, + "unloads": 2.19e-07, + "unm": 2.19e-07, + "unpleasantly": 2.19e-07, + "unrated": 2.19e-07, + "uruk": 2.19e-07, + "usada": 2.19e-07, + "usos": 2.19e-07, + "valero": 2.19e-07, + "venal": 2.19e-07, + "veyron": 2.19e-07, + "vicenza": 2.19e-07, + "vietcong": 2.19e-07, + "vina": 2.19e-07, + "vitiligo": 2.19e-07, + "volunteerism": 2.19e-07, + "volusia": 2.19e-07, + "vyacheslav": 2.19e-07, + "wana": 2.19e-07, + "wanes": 2.19e-07, + "warder": 2.19e-07, + "watterson": 2.19e-07, + "waynesboro": 2.19e-07, + "wearily": 2.19e-07, + "weems": 2.19e-07, + "weepy": 2.19e-07, + "weitzman": 2.19e-07, + "weizmann": 2.19e-07, + "westernmost": 2.19e-07, + "westlife": 2.19e-07, + "whl": 2.19e-07, + "wikia": 2.19e-07, + "winterbottom": 2.19e-07, + "witching": 2.19e-07, + "woon": 2.19e-07, + "wus": 1e-07, + "xeno": 2.19e-07, + "xero": 2.19e-07, + "xpress": 2.19e-07, + "yael": 2.19e-07, + "yapping": 2.19e-07, + "yellin": 2.19e-07, + "yeomanry": 2.19e-07, + "yerba": 2.19e-07, + "yodel": 2.19e-07, + "zar": 2.19e-07, + "aaaaand": 2.14e-07, + "abolishment": 2.14e-07, + "abso": 2.14e-07, + "abutments": 2.14e-07, + "academical": 2.14e-07, + "acadian": 2.14e-07, + "acclimate": 2.14e-07, + "accompaniments": 2.14e-07, + "acd": 2.14e-07, + "acn": 2.14e-07, + "acquirer": 2.14e-07, + "affirmatively": 2.14e-07, + "agonized": 2.14e-07, + "aho": 2.14e-07, + "alaa": 2.14e-07, + "albinism": 2.14e-07, + "alcs": 2.14e-07, + "alda": 2.14e-07, + "aleks": 2.14e-07, + "aleksei": 2.14e-07, + "alga": 2.14e-07, + "allez": 2.14e-07, + "altai": 2.14e-07, + "ambiguously": 2.14e-07, + "amnesiac": 2.14e-07, + "andronicus": 2.14e-07, + "antic": 2.14e-07, + "aqa": 2.14e-07, + "arthropod": 2.14e-07, + "aruna": 2.14e-07, + "arv": 2.14e-07, + "asaph": 2.14e-07, + "astoundingly": 2.14e-07, + "atolls": 2.14e-07, + "audiology": 2.14e-07, + "ault": 2.14e-07, + "autotune": 2.14e-07, + "autre": 2.14e-07, + "averill": 2.14e-07, + "avigdor": 2.14e-07, + "ayton": 2.14e-07, + "backbench": 2.14e-07, + "backbenchers": 2.14e-07, + "badgering": 2.14e-07, + "bakken": 2.14e-07, + "baptizing": 2.14e-07, + "barossa": 2.14e-07, + "barrera": 2.14e-07, + "bated": 2.14e-07, + "baud": 2.14e-07, + "baxters": 6.61e-08, + "bayfield": 2.14e-07, + "belden": 2.14e-07, + "bellerin": 2.14e-07, + "belushi": 2.14e-07, + "benham": 2.14e-07, + "bennys": 2.14e-07, + "bergamo": 2.14e-07, + "bergstrom": 2.14e-07, + "bhabhi": 2.14e-07, + "bihari": 2.14e-07, + "billabong": 2.14e-07, + "biomes": 2.14e-07, + "biostatistics": 2.14e-07, + "blane": 2.14e-07, + "bohol": 2.14e-07, + "bootlegs": 2.14e-07, + "bosoms": 2.14e-07, + "bossed": 2.14e-07, + "bott": 2.14e-07, + "bougie": 2.14e-07, + "brack": 2.14e-07, + "branagh": 2.14e-07, + "branford": 2.14e-07, + "brazzaville": 2.14e-07, + "brexiteers": 2.14e-07, + "brights": 1.2e-07, + "brokenness": 2.14e-07, + "brookside": 2.14e-07, + "brownian": 2.14e-07, + "bsg": 2.14e-07, + "buckman": 2.14e-07, + "bugg": 2.14e-07, + "burford": 2.14e-07, + "burrowed": 2.14e-07, + "byod": 2.14e-07, + "cabell": 2.14e-07, + "canandaigua": 2.14e-07, + "cantu": 2.14e-07, + "capsize": 2.14e-07, + "carnes": 2.14e-07, + "cassation": 2.14e-07, + "castilla": 2.14e-07, + "castrate": 2.14e-07, + "catheterization": 2.14e-07, + "cbb": 2.14e-07, + "ccb": 2.14e-07, + "ccu": 2.14e-07, + "cecelia": 2.14e-07, + "centralia": 2.14e-07, + "centreville": 2.14e-07, + "centurions": 2.14e-07, + "cess": 2.14e-07, + "champa": 2.14e-07, + "chartering": 2.14e-07, + "chastising": 2.14e-07, + "cheekbone": 2.14e-07, + "chillicothe": 2.14e-07, + "chola": 2.14e-07, + "chrysanthemums": 2.14e-07, + "cian": 2.14e-07, + "cissy": 2.14e-07, + "cistercian": 2.14e-07, + "clickable": 2.14e-07, + "coeliac": 2.14e-07, + "cogan": 2.14e-07, + "colorist": 2.14e-07, + "colorized": 2.14e-07, + "colwyn": 2.14e-07, + "comintern": 2.14e-07, + "comparability": 2.14e-07, + "compo": 2.14e-07, + "consistory": 2.14e-07, + "constitutionalism": 2.14e-07, + "constrict": 2.14e-07, + "consuelo": 2.14e-07, + "conus": 2.14e-07, + "cooties": 2.14e-07, + "copland": 2.14e-07, + "copts": 2.14e-07, + "costuming": 2.14e-07, + "coverts": 2.14e-07, + "coworking": 2.14e-07, + "credulity": 2.14e-07, + "cronenberg": 2.14e-07, + "crouse": 2.14e-07, + "crum": 2.14e-07, + "cued": 2.14e-07, + "cuevas": 2.14e-07, + "culverts": 2.14e-07, + "cutscene": 2.14e-07, + "dama": 2.14e-07, + "danner": 2.14e-07, + "dano": 2.14e-07, + "daraa": 2.14e-07, + "darya": 2.14e-07, + "debonair": 2.14e-07, + "debunks": 2.14e-07, + "decedent": 2.14e-07, + "decimating": 2.14e-07, + "deified": 2.14e-07, + "denbigh": 2.14e-07, + "depopulated": 2.14e-07, + "deshaun": 2.14e-07, + "destro": 2.14e-07, + "determinate": 2.14e-07, + "dexamethasone": 2.14e-07, + "diddly": 2.14e-07, + "disembarking": 2.14e-07, + "disquieting": 2.14e-07, + "ditka": 2.14e-07, + "dls": 2.14e-07, + "dnt": 7.08e-08, + "dockside": 2.14e-07, + "dok": 2.14e-07, + "domine": 2.14e-07, + "donatella": 2.14e-07, + "donnas": 1.02e-07, + "dopaminergic": 2.14e-07, + "dosh": 2.14e-07, + "downlink": 2.14e-07, + "draftees": 2.14e-07, + "draxler": 2.14e-07, + "dreyer": 2.14e-07, + "drizzled": 2.14e-07, + "drogo": 2.14e-07, + "drunkards": 2.14e-07, + "dryly": 2.14e-07, + "dte": 2.14e-07, + "ducktales": 2.14e-07, + "dunblane": 2.14e-07, + "duns": 2.09e-08, + "dusters": 2.14e-07, + "ean": 2.14e-07, + "echolocation": 2.14e-07, + "eclecticism": 2.14e-07, + "ecp": 2.14e-07, + "ehm": 2.14e-07, + "elihu": 2.14e-07, + "elroy": 2.14e-07, + "emus": 2.14e-07, + "encrypting": 2.14e-07, + "engorged": 2.14e-07, + "enrolments": 2.14e-07, + "entebbe": 2.14e-07, + "entrap": 2.14e-07, + "entrench": 2.14e-07, + "entwistle": 2.14e-07, + "escapee": 2.14e-07, + "esperance": 2.14e-07, + "etl": 2.14e-07, + "eurydice": 2.14e-07, + "evac": 2.14e-07, + "everdeen": 2.14e-07, + "evergreens": 2.14e-07, + "exchangeable": 2.14e-07, + "exemplars": 2.14e-07, + "eyeglass": 2.14e-07, + "faithfull": 2.14e-07, + "fashionistas": 2.14e-07, + "fathering": 2.14e-07, + "ferndale": 2.14e-07, + "fick": 2.14e-07, + "fidesz": 2.14e-07, + "fingerprinted": 2.14e-07, + "fitr": 2.14e-07, + "florentino": 2.14e-07, + "fluorite": 2.14e-07, + "flys": 1.91e-07, + "folger": 2.14e-07, + "footstool": 2.14e-07, + "foran": 2.14e-07, + "forgivable": 2.14e-07, + "francaise": 2.14e-07, + "frankies": 2.14e-07, + "franny": 2.14e-07, + "frawley": 2.14e-07, + "frobisher": 2.14e-07, + "fukuda": 2.14e-07, + "fulmer": 2.14e-07, + "gaither": 2.14e-07, + "garrisoned": 2.14e-07, + "gena": 2.14e-07, + "generalities": 2.14e-07, + "genocides": 2.14e-07, + "germane": 2.14e-07, + "gertie": 2.14e-07, + "ghaziabad": 2.14e-07, + "gid": 2.14e-07, + "gilson": 2.14e-07, + "glucocorticoid": 2.14e-07, + "glucosamine": 2.14e-07, + "gneiss": 2.14e-07, + "godparents": 2.14e-07, + "gomer": 2.14e-07, + "goofed": 2.14e-07, + "gratuities": 2.14e-07, + "greenblatt": 2.14e-07, + "greiner": 2.14e-07, + "grigor": 2.14e-07, + "grilles": 2.14e-07, + "groupthink": 2.14e-07, + "hadrians": 2.14e-07, + "haris": 2.14e-07, + "harmer": 2.14e-07, + "hartland": 2.14e-07, + "hemolytic": 2.14e-07, + "heptathlon": 2.14e-07, + "heterodox": 2.14e-07, + "hev": 2.14e-07, + "highwayman": 2.14e-07, + "himym": 2.14e-07, + "hobos": 2.14e-07, + "holsters": 2.14e-07, + "hominid": 2.14e-07, + "hsp": 2.14e-07, + "hurtin": 2.14e-07, + "hutcheson": 2.14e-07, + "hymnal": 2.14e-07, + "hypothalamic": 2.14e-07, + "iad": 2.14e-07, + "ignoramus": 2.14e-07, + "imaginatively": 2.14e-07, + "imago": 2.14e-07, + "impostors": 2.14e-07, + "incinerate": 2.14e-07, + "indepth": 2.14e-07, + "indictable": 2.14e-07, + "inductee": 2.14e-07, + "infante": 2.14e-07, + "inflates": 2.14e-07, + "inouye": 2.14e-07, + "instigators": 2.14e-07, + "institutionalization": 2.14e-07, + "intricacy": 2.14e-07, + "irksome": 2.14e-07, + "ironside": 2.14e-07, + "irt": 2.14e-07, + "isaacson": 2.14e-07, + "jabbed": 2.14e-07, + "jackhammer": 2.14e-07, + "jainism": 2.14e-07, + "jammin": 2.14e-07, + "jcp": 2.14e-07, + "jensens": 2.14e-07, + "jessies": 2.14e-07, + "jetted": 2.14e-07, + "jinan": 2.14e-07, + "jostled": 2.14e-07, + "jsp": 2.14e-07, + "kabaddi": 2.14e-07, + "kaga": 2.14e-07, + "karn": 2.14e-07, + "katakana": 2.14e-07, + "kayne": 2.14e-07, + "kemi": 2.14e-07, + "khali": 2.14e-07, + "khalsa": 2.14e-07, + "khutor": 2.14e-07, + "kingsland": 2.14e-07, + "klass": 2.14e-07, + "kleine": 2.14e-07, + "komatsu": 2.14e-07, + "kore": 2.14e-07, + "koreatown": 2.14e-07, + "kremer": 2.14e-07, + "kth": 2.14e-07, + "kuna": 2.14e-07, + "lambing": 2.14e-07, + "lamination": 2.14e-07, + "lampoon": 2.14e-07, + "landa": 2.14e-07, + "laughably": 2.14e-07, + "laughton": 2.14e-07, + "laz": 2.14e-07, + "lek": 2.14e-07, + "lele": 2.14e-07, + "lemming": 2.14e-07, + "leprechauns": 2.14e-07, + "libertys": 2.14e-07, + "limburg": 2.14e-07, + "linchpin": 2.14e-07, + "lindt": 2.14e-07, + "lisbeth": 2.14e-07, + "livelier": 2.14e-07, + "lmaoo": 2.14e-07, + "longish": 2.14e-07, + "loonies": 2.14e-07, + "loooong": 2.14e-07, + "loris": 8.91e-08, + "lowrie": 2.14e-07, + "luann": 2.14e-07, + "luft": 2.14e-07, + "lyndsey": 2.14e-07, + "macaw": 2.14e-07, + "maglev": 2.14e-07, + "malevolence": 2.14e-07, + "malinowski": 2.14e-07, + "mallon": 2.14e-07, + "malory": 2.14e-07, + "manas": 2.09e-08, + "manasseh": 2.14e-07, + "manos": 2.14e-07, + "marinette": 2.14e-07, + "marsupials": 2.14e-07, + "masao": 2.14e-07, + "mase": 2.14e-07, + "masri": 2.14e-07, + "mattes": 2.14e-07, + "mccutchen": 2.14e-07, + "mcginley": 2.14e-07, + "meacham": 2.14e-07, + "medio": 2.14e-07, + "megaton": 2.14e-07, + "mell": 2.14e-07, + "mertesacker": 2.14e-07, + "mescaline": 2.14e-07, + "metis": 2.14e-07, + "midazolam": 2.14e-07, + "mikkel": 2.14e-07, + "miming": 2.14e-07, + "minajs": 2.14e-07, + "minarets": 2.14e-07, + "minolta": 2.14e-07, + "miserly": 2.14e-07, + "miya": 2.14e-07, + "mmt": 2.14e-07, + "mockumentary": 2.14e-07, + "modulates": 2.14e-07, + "modulo": 2.14e-07, + "molokai": 2.14e-07, + "mongodb": 2.14e-07, + "mongoloid": 2.14e-07, + "monoamine": 2.14e-07, + "monreal": 2.14e-07, + "montez": 2.14e-07, + "morden": 2.14e-07, + "mork": 2.14e-07, + "mosher": 2.14e-07, + "motile": 2.14e-07, + "motu": 2.14e-07, + "moyers": 2.14e-07, + "nahum": 2.14e-07, + "naoki": 2.14e-07, + "nephilim": 2.14e-07, + "neurosciences": 2.14e-07, + "neurotoxin": 2.14e-07, + "nibbled": 2.14e-07, + "nicolaus": 2.14e-07, + "nighters": 2.14e-07, + "nikolaj": 2.14e-07, + "nlcs": 2.14e-07, + "nonpublic": 2.14e-07, + "norcal": 2.14e-07, + "norsk": 2.14e-07, + "northrup": 2.14e-07, + "nq": 2.14e-07, + "nsync": 2.14e-07, + "nuc": 2.14e-07, + "nuneaton": 2.14e-07, + "nuno": 2.14e-07, + "nwt": 2.14e-07, + "odowd": 2.14e-07, + "obediently": 2.14e-07, + "objectifying": 2.14e-07, + "ock": 2.14e-07, + "oglethorpe": 2.14e-07, + "olbermann": 2.14e-07, + "openssl": 2.14e-07, + "ordinaries": 2.14e-07, + "ornery": 2.14e-07, + "osun": 2.14e-07, + "ouagadougou": 2.14e-07, + "outlasted": 2.14e-07, + "outstandingly": 2.14e-07, + "owensboro": 2.14e-07, + "owings": 2.14e-07, + "papyri": 2.14e-07, + "parathyroid": 2.14e-07, + "partie": 2.14e-07, + "patiala": 2.14e-07, + "pattersons": 2.14e-07, + "paxman": 2.14e-07, + "pearlman": 2.14e-07, + "pedigrees": 2.14e-07, + "pekin": 2.14e-07, + "percocet": 2.14e-07, + "pervading": 2.14e-07, + "pharynx": 2.14e-07, + "philby": 2.14e-07, + "philosophie": 2.14e-07, + "pitney": 2.14e-07, + "pixars": 2.14e-07, + "plas": 2.14e-07, + "plasters": 2.14e-07, + "pmt": 2.14e-07, + "pob": 2.14e-07, + "politicking": 2.14e-07, + "pompadour": 2.14e-07, + "pontus": 2.14e-07, + "positing": 2.14e-07, + "postmark": 2.14e-07, + "poznan": 2.14e-07, + "pradeep": 2.14e-07, + "pragmatically": 2.14e-07, + "preamp": 2.14e-07, + "preeclampsia": 2.14e-07, + "preemption": 2.14e-07, + "preselected": 2.14e-07, + "priam": 2.14e-07, + "prin": 2.14e-07, + "princesss": 2.14e-07, + "prn": 2.14e-07, + "prods": 2.14e-07, + "protrudes": 2.14e-07, + "prudently": 2.14e-07, + "ptolemaic": 2.14e-07, + "pummel": 2.14e-07, + "puppys": 2.14e-07, + "pyrmont": 2.14e-07, + "pyroclastic": 2.14e-07, + "qaedas": 2.14e-07, + "qiao": 2.14e-07, + "quesadilla": 2.14e-07, + "quixotic": 2.14e-07, + "rais": 5.89e-08, + "rationales": 2.14e-07, + "raymonds": 2.14e-07, + "recherches": 2.14e-07, + "recurred": 2.14e-07, + "regurgitate": 2.14e-07, + "relegating": 2.14e-07, + "remixing": 2.14e-07, + "replanted": 2.14e-07, + "reprimands": 2.14e-07, + "repurchased": 2.14e-07, + "respirators": 2.14e-07, + "rfs": 2.14e-07, + "ribery": 2.14e-07, + "richs": 2.14e-07, + "ridgeline": 2.14e-07, + "rigger": 2.14e-07, + "rinaldi": 2.14e-07, + "rioted": 2.14e-07, + "riverwalk": 2.14e-07, + "rmit": 2.14e-07, + "rochefort": 2.14e-07, + "rohde": 2.14e-07, + "rojava": 2.14e-07, + "roose": 2.14e-07, + "rosalyn": 2.14e-07, + "rosenblatt": 2.14e-07, + "roths": 2.14e-07, + "rubrics": 2.14e-07, + "rupturing": 2.14e-07, + "ryuji": 2.14e-07, + "sagna": 2.14e-07, + "salih": 2.14e-07, + "salo": 2.14e-07, + "samsara": 2.14e-07, + "sanju": 2.14e-07, + "sarnia": 2.14e-07, + "sartorius": 2.14e-07, + "satsuma": 2.14e-07, + "sayles": 2.14e-07, + "saylor": 2.14e-07, + "scallions": 2.14e-07, + "schuler": 2.14e-07, + "scowling": 2.14e-07, + "screeches": 2.14e-07, + "scrunched": 2.14e-07, + "seaview": 2.14e-07, + "securitization": 2.14e-07, + "seger": 2.14e-07, + "sentience": 2.14e-07, + "seva": 2.14e-07, + "shanna": 2.14e-07, + "sherpas": 2.14e-07, + "shinee": 2.14e-07, + "shoaib": 2.14e-07, + "shoplifter": 2.14e-07, + "shouldn": 2.14e-07, + "showgirls": 2.14e-07, + "sidwell": 2.14e-07, + "silage": 2.14e-07, + "sindhi": 2.14e-07, + "sinew": 2.14e-07, + "singletary": 2.14e-07, + "sisterly": 2.14e-07, + "skelly": 2.14e-07, + "sks": 2.14e-07, + "skylanders": 2.14e-07, + "snubs": 2.14e-07, + "soapstone": 2.14e-07, + "soldiering": 2.14e-07, + "soong": 2.14e-07, + "soundbite": 2.14e-07, + "spattered": 2.14e-07, + "spect": 2.14e-07, + "spellman": 2.14e-07, + "spla": 2.14e-07, + "splitters": 2.14e-07, + "sportive": 2.14e-07, + "sre": 2.14e-07, + "srivastava": 2.14e-07, + "standardizing": 2.14e-07, + "stang": 2.14e-07, + "stanislav": 2.14e-07, + "starke": 2.14e-07, + "stashing": 2.14e-07, + "stauffer": 2.14e-07, + "stereotypically": 2.14e-07, + "sterns": 1.38e-07, + "stoplight": 2.14e-07, + "strangelove": 2.14e-07, + "straub": 2.14e-07, + "striations": 2.14e-07, + "stromberg": 2.14e-07, + "strowman": 2.14e-07, + "subcommittees": 2.14e-07, + "substantively": 2.14e-07, + "suckle": 2.14e-07, + "sulky": 2.14e-07, + "suman": 2.14e-07, + "survivable": 2.14e-07, + "suttons": 5.89e-08, + "sweatshops": 2.14e-07, + "syncope": 2.14e-07, + "tamayo": 2.14e-07, + "tamsin": 2.14e-07, + "tare": 2.14e-07, + "tauranga": 2.14e-07, + "taurine": 2.14e-07, + "tcf": 2.14e-07, + "telehealth": 2.14e-07, + "tennessean": 2.14e-07, + "terraforming": 2.14e-07, + "thera": 2.14e-07, + "thetford": 2.14e-07, + "thorburn": 2.14e-07, + "thumbing": 2.14e-07, + "tilak": 2.14e-07, + "timekeeping": 2.14e-07, + "tines": 2.14e-07, + "tingles": 2.14e-07, + "tinkerbell": 2.14e-07, + "toeing": 2.14e-07, + "tourneys": 2.14e-07, + "tranmere": 2.14e-07, + "tranquilizer": 2.14e-07, + "treblinka": 2.14e-07, + "trekkers": 2.14e-07, + "tripathi": 2.14e-07, + "trounced": 2.14e-07, + "tulloch": 2.14e-07, + "turbidity": 2.14e-07, + "twitched": 2.14e-07, + "tyme": 2.14e-07, + "tyron": 2.14e-07, + "uac": 2.14e-07, + "ucd": 2.14e-07, + "ukranian": 2.14e-07, + "unachievable": 2.14e-07, + "unaddressed": 2.14e-07, + "unclog": 2.14e-07, + "uncompetitive": 2.14e-07, + "undesirables": 2.14e-07, + "uneasily": 2.14e-07, + "unemotional": 2.14e-07, + "unemployable": 2.14e-07, + "unencrypted": 2.14e-07, + "universals": 1.74e-07, + "unmissable": 2.14e-07, + "unrealistically": 2.14e-07, + "untroubled": 2.14e-07, + "unwary": 2.14e-07, + "upended": 2.14e-07, + "urie": 2.14e-07, + "uselessness": 2.14e-07, + "usmnt": 2.14e-07, + "uspto": 2.14e-07, + "usta": 2.14e-07, + "usurpation": 2.14e-07, + "uy": 2.14e-07, + "vada": 2.14e-07, + "vagrancy": 2.14e-07, + "varane": 2.14e-07, + "vaticans": 2.14e-07, + "veined": 2.14e-07, + "velociraptor": 2.14e-07, + "viticulture": 2.14e-07, + "viviane": 2.14e-07, + "voi": 2.14e-07, + "voxel": 2.14e-07, + "waal": 2.14e-07, + "waffen": 2.14e-07, + "wagstaff": 2.14e-07, + "wark": 2.14e-07, + "warrenton": 2.14e-07, + "waster": 2.14e-07, + "weeknights": 2.14e-07, + "weiser": 2.14e-07, + "wew": 2.14e-07, + "wher": 2.14e-07, + "whittingham": 2.14e-07, + "whittling": 2.14e-07, + "witchy": 2.14e-07, + "wobbled": 2.14e-07, + "wooten": 2.14e-07, + "workarounds": 2.14e-07, + "workdays": 2.14e-07, + "wranglers": 2.14e-07, + "yoked": 2.14e-07, + "yousafzai": 2.14e-07, + "zahn": 2.14e-07, + "zaidi": 2.14e-07, + "zakat": 2.14e-07, + "zarya": 2.14e-07, + "zeeland": 2.14e-07, + "zeroing": 2.14e-07, + "abernethy": 2.09e-07, + "abundances": 2.09e-07, + "abyssinian": 2.09e-07, + "acapella": 2.09e-07, + "ackermann": 2.09e-07, + "acls": 2.09e-07, + "adjusters": 2.09e-07, + "adulterer": 2.09e-07, + "aerated": 2.09e-07, + "afflicts": 2.09e-07, + "afk": 2.09e-07, + "agc": 2.09e-07, + "aina": 2.09e-07, + "aio": 2.09e-07, + "ajmal": 2.09e-07, + "akashi": 2.09e-07, + "alanna": 2.09e-07, + "alberti": 2.09e-07, + "alkalinity": 2.09e-07, + "amado": 2.09e-07, + "amiri": 2.09e-07, + "ancien": 2.09e-07, + "animalistic": 2.09e-07, + "animates": 2.09e-07, + "annunzio": 2.09e-07, + "anse": 2.09e-07, + "antietam": 2.09e-07, + "apcs": 2.09e-07, + "apollos": 1.35e-07, + "arabesque": 2.09e-07, + "arielle": 2.09e-07, + "arthroscopic": 2.09e-07, + "atar": 2.09e-07, + "atleti": 2.09e-07, + "attunement": 2.09e-07, + "aubameyang": 2.09e-07, + "auroras": 1.51e-07, + "avr": 2.09e-07, + "axonal": 2.09e-07, + "azarenka": 2.09e-07, + "bandanna": 2.09e-07, + "bandied": 2.09e-07, + "barbier": 2.09e-07, + "bardo": 2.09e-07, + "barmy": 2.09e-07, + "barrick": 2.09e-07, + "bartram": 2.09e-07, + "basques": 2.09e-07, + "basquiat": 2.09e-07, + "bawl": 2.09e-07, + "bayreuth": 2.09e-07, + "beane": 2.09e-07, + "beaujolais": 2.09e-07, + "behring": 2.09e-07, + "belgrave": 2.09e-07, + "bellwether": 2.09e-07, + "benedetti": 2.09e-07, + "benefice": 2.09e-07, + "bequests": 2.09e-07, + "berkman": 2.09e-07, + "bernards": 1.1e-07, + "bernini": 2.09e-07, + "besiktas": 2.09e-07, + "betfred": 2.09e-07, + "bhangra": 2.09e-07, + "biles": 2.09e-07, + "bina": 2.09e-07, + "birdhouse": 2.09e-07, + "biro": 2.09e-07, + "birt": 2.09e-07, + "bisbee": 2.09e-07, + "blotted": 2.09e-07, + "bluth": 2.09e-07, + "bodo": 2.09e-07, + "boldin": 2.09e-07, + "bolter": 2.09e-07, + "bongos": 2.09e-07, + "boni": 2.09e-07, + "bosley": 2.09e-07, + "bourque": 2.09e-07, + "boyes": 2.09e-07, + "brazile": 2.09e-07, + "bretagne": 2.09e-07, + "broadsheet": 2.09e-07, + "brockman": 2.09e-07, + "brownell": 2.09e-07, + "buble": 2.09e-07, + "bulacan": 2.09e-07, + "bulldoze": 2.09e-07, + "buono": 2.09e-07, + "burghers": 2.09e-07, + "burkhardt": 2.09e-07, + "burnings": 2.09e-07, + "bygones": 2.09e-07, + "caffe": 2.09e-07, + "calipari": 2.09e-07, + "camarillo": 2.09e-07, + "capex": 2.09e-07, + "capp": 2.09e-07, + "capsaicin": 2.09e-07, + "carbines": 2.09e-07, + "carbonara": 2.09e-07, + "carfax": 2.09e-07, + "carmona": 2.09e-07, + "carthaginian": 2.09e-07, + "casebook": 2.09e-07, + "caspase": 2.09e-07, + "cde": 2.09e-07, + "centrum": 2.09e-07, + "chaldean": 2.09e-07, + "chamberlains": 7.76e-08, + "chana": 2.09e-07, + "characterises": 2.09e-07, + "charmander": 2.09e-07, + "charteris": 2.09e-07, + "cheerio": 2.09e-07, + "chevelle": 2.09e-07, + "cheyne": 2.09e-07, + "chipsets": 2.09e-07, + "chuang": 2.09e-07, + "chutzpah": 2.09e-07, + "cii": 2.09e-07, + "cil": 2.09e-07, + "cingulate": 2.09e-07, + "circulars": 2.09e-07, + "ciscos": 2.09e-07, + "cisneros": 2.09e-07, + "citrine": 2.09e-07, + "clamshell": 2.09e-07, + "clod": 2.09e-07, + "clowney": 2.09e-07, + "cluck": 2.09e-07, + "cluj": 2.09e-07, + "cne": 2.09e-07, + "coalfields": 2.09e-07, + "coddle": 2.09e-07, + "collet": 2.09e-07, + "coman": 2.09e-07, + "commodification": 2.09e-07, + "concessional": 2.09e-07, + "confections": 2.09e-07, + "conlan": 2.09e-07, + "construe": 2.09e-07, + "coombes": 2.09e-07, + "cooter": 2.09e-07, + "cosponsors": 2.09e-07, + "coughlan": 2.09e-07, + "counselled": 2.09e-07, + "counterfactual": 2.09e-07, + "couric": 2.09e-07, + "courtesans": 2.09e-07, + "courthouses": 2.09e-07, + "cozumel": 2.09e-07, + "crafters": 2.09e-07, + "cranfield": 2.09e-07, + "craniofacial": 2.09e-07, + "crappie": 2.09e-07, + "crean": 2.09e-07, + "crimped": 2.09e-07, + "crinkle": 2.09e-07, + "crl": 2.09e-07, + "cropland": 2.09e-07, + "crumple": 2.09e-07, + "curvaceous": 2.09e-07, + "cutlets": 2.09e-07, + "cwm": 2.09e-07, + "cyberattack": 2.09e-07, + "dabo": 2.09e-07, + "dalmatia": 2.09e-07, + "damming": 2.09e-07, + "danse": 2.09e-07, + "danson": 2.09e-07, + "deadshot": 2.09e-07, + "deadweight": 2.09e-07, + "deauville": 2.09e-07, + "decepticon": 2.09e-07, + "dedications": 2.09e-07, + "deface": 2.09e-07, + "dehumanization": 2.09e-07, + "deliverables": 2.09e-07, + "demesne": 2.09e-07, + "ders": 2.09e-07, + "desensitization": 2.09e-07, + "deum": 2.09e-07, + "dietetic": 2.09e-07, + "dignitary": 2.09e-07, + "dimensionless": 2.09e-07, + "dinger": 2.09e-07, + "discretely": 2.09e-07, + "disengaging": 2.09e-07, + "disorganization": 2.09e-07, + "dissolute": 2.09e-07, + "distended": 2.09e-07, + "dmso": 2.09e-07, + "dogfish": 2.09e-07, + "donde": 2.09e-07, + "donn": 2.09e-07, + "dorking": 2.09e-07, + "dosa": 2.09e-07, + "doublet": 2.09e-07, + "douchebags": 2.09e-07, + "dragic": 2.09e-07, + "draperies": 2.09e-07, + "drenching": 2.09e-07, + "dsg": 2.09e-07, + "dti": 2.09e-07, + "dufresne": 2.09e-07, + "dumpy": 2.09e-07, + "dunleavy": 2.09e-07, + "dunstable": 2.09e-07, + "dupage": 2.09e-07, + "durden": 2.09e-07, + "dux": 2.09e-07, + "ecclesia": 2.09e-07, + "eeyore": 2.09e-07, + "efta": 2.09e-07, + "egret": 2.09e-07, + "elson": 2.09e-07, + "eltham": 2.09e-07, + "enemas": 2.09e-07, + "engadget": 2.09e-07, + "ensnared": 2.09e-07, + "entreat": 2.09e-07, + "episcopate": 2.09e-07, + "equalizing": 2.09e-07, + "equilibria": 2.09e-07, + "equus": 2.09e-07, + "erins": 2.09e-07, + "erk": 2.09e-07, + "ern": 2.09e-07, + "esmond": 2.09e-07, + "espy": 2.09e-07, + "esto": 2.09e-07, + "esu": 2.09e-07, + "etre": 2.09e-07, + "eustis": 2.09e-07, + "evas": 9.33e-08, + "extortionate": 2.09e-07, + "facs": 2.09e-07, + "fajitas": 2.09e-07, + "falsity": 2.09e-07, + "farron": 2.09e-07, + "favorability": 2.09e-07, + "favouritism": 2.09e-07, + "februarys": 2.09e-07, + "fertilised": 2.09e-07, + "fests": 2.09e-07, + "fibroids": 2.09e-07, + "fiddles": 2.09e-07, + "fivefold": 2.09e-07, + "flavius": 2.09e-07, + "flecked": 2.09e-07, + "floured": 2.09e-07, + "foleys": 2.09e-07, + "fomenting": 2.09e-07, + "fondled": 2.09e-07, + "footings": 2.09e-07, + "forfeits": 2.09e-07, + "fpr": 2.09e-07, + "frenkel": 2.09e-07, + "freq": 2.09e-07, + "fubar": 2.09e-07, + "gaiden": 2.09e-07, + "ganged": 2.09e-07, + "garters": 2.09e-07, + "gatt": 2.09e-07, + "gbc": 2.09e-07, + "gemmell": 2.09e-07, + "genuineness": 2.09e-07, + "geraldton": 2.09e-07, + "gerlach": 2.09e-07, + "gfa": 2.09e-07, + "gfp": 2.09e-07, + "gingival": 2.09e-07, + "ginza": 2.09e-07, + "girona": 2.09e-07, + "glenview": 2.09e-07, + "glitching": 2.09e-07, + "glitchy": 2.09e-07, + "gnosis": 2.09e-07, + "gobs": 2.09e-07, + "gorda": 2.09e-07, + "goyal": 2.09e-07, + "grandly": 2.09e-07, + "grav": 2.09e-07, + "graydon": 2.09e-07, + "graziano": 2.09e-07, + "grimoire": 2.09e-07, + "grizz": 2.09e-07, + "gromit": 2.09e-07, + "groth": 2.09e-07, + "gse": 2.09e-07, + "gudrun": 2.09e-07, + "guin": 2.09e-07, + "gummies": 2.09e-07, + "gwynne": 2.09e-07, + "haarlem": 2.09e-07, + "hangul": 2.09e-07, + "hannes": 2.09e-07, + "harpo": 2.09e-07, + "hassled": 2.09e-07, + "hatta": 2.09e-07, + "hatters": 5.89e-08, + "havnt": 1.35e-07, + "hazlewood": 2.09e-07, + "headlands": 2.09e-07, + "headstock": 2.09e-07, + "hemispherical": 2.09e-07, + "herm": 2.09e-07, + "hernan": 2.09e-07, + "hockley": 2.09e-07, + "holdens": 2.09e-07, + "honeymooners": 2.09e-07, + "horacio": 2.09e-07, + "horgan": 2.09e-07, + "hra": 2.09e-07, + "hugos": 7.08e-08, + "hydrocephalus": 2.09e-07, + "hypertrophic": 2.09e-07, + "iab": 2.09e-07, + "ican": 2.09e-07, + "icelanders": 2.09e-07, + "idx": 2.09e-07, + "iko": 2.09e-07, + "imbibe": 2.09e-07, + "immunocompromised": 2.09e-07, + "impassive": 2.09e-07, + "impermanence": 2.09e-07, + "imposters": 2.09e-07, + "impudence": 2.09e-07, + "incoherence": 2.09e-07, + "incompleteness": 2.09e-07, + "indignities": 2.09e-07, + "infirmity": 2.09e-07, + "ingmar": 2.09e-07, + "initiators": 2.09e-07, + "inlays": 2.09e-07, + "inshallah": 2.09e-07, + "internist": 2.09e-07, + "intransitive": 2.09e-07, + "inverters": 2.09e-07, + "invigorate": 2.09e-07, + "inviolable": 2.09e-07, + "irvings": 2.09e-07, + "ishaq": 2.09e-07, + "isherwood": 2.09e-07, + "isothermal": 2.09e-07, + "iwan": 2.09e-07, + "jeers": 2.09e-07, + "jukes": 2.09e-07, + "kakao": 2.09e-07, + "kaleidoscopic": 2.09e-07, + "kalimantan": 2.09e-07, + "kamla": 2.09e-07, + "kanda": 2.09e-07, + "kantian": 2.09e-07, + "karpov": 2.09e-07, + "karyn": 2.09e-07, + "katsina": 2.09e-07, + "kennebec": 2.09e-07, + "kian": 2.09e-07, + "kingsbridge": 2.09e-07, + "kipper": 2.09e-07, + "kis": 5.75e-08, + "kismet": 2.09e-07, + "kitsune": 2.09e-07, + "kneeled": 2.09e-07, + "koe": 2.09e-07, + "komi": 2.09e-07, + "koontz": 2.09e-07, + "kozak": 2.09e-07, + "krasinski": 2.09e-07, + "kristallnacht": 2.09e-07, + "kron": 2.09e-07, + "kucinich": 2.09e-07, + "kurz": 2.09e-07, + "lacuna": 2.09e-07, + "lage": 2.09e-07, + "langs": 1.02e-07, + "lauding": 2.09e-07, + "lavin": 2.09e-07, + "leakers": 2.09e-07, + "leaven": 2.09e-07, + "lederer": 2.09e-07, + "leena": 2.09e-07, + "leftie": 2.09e-07, + "leibowitz": 2.09e-07, + "leones": 2.09e-07, + "licht": 2.09e-07, + "liffey": 2.09e-07, + "limassol": 2.09e-07, + "linehan": 2.09e-07, + "lintel": 2.09e-07, + "liqueurs": 2.09e-07, + "literati": 2.09e-07, + "liturgies": 2.09e-07, + "loaner": 2.09e-07, + "localism": 2.09e-07, + "longmans": 2.09e-07, + "loong": 2.09e-07, + "lowenstein": 2.09e-07, + "lucero": 2.09e-07, + "lufkin": 2.09e-07, + "lymphocytic": 2.09e-07, + "lyte": 2.09e-07, + "magica": 2.09e-07, + "magnolias": 2.09e-07, + "magnuson": 2.09e-07, + "maladaptive": 2.09e-07, + "mamet": 2.09e-07, + "mancha": 2.09e-07, + "mandelas": 2.09e-07, + "manheim": 2.09e-07, + "mapuche": 2.09e-07, + "marjory": 2.09e-07, + "maroc": 2.09e-07, + "martinelli": 2.09e-07, + "maryann": 2.09e-07, + "massacring": 2.09e-07, + "mazur": 2.09e-07, + "mcadam": 2.09e-07, + "mcluhan": 2.09e-07, + "mdp": 2.09e-07, + "meads": 8.71e-08, + "meddled": 2.09e-07, + "megalomaniac": 2.09e-07, + "memorialized": 2.09e-07, + "mert": 2.09e-07, + "michie": 2.09e-07, + "micrometer": 2.09e-07, + "microorganism": 2.09e-07, + "micros": 2.09e-07, + "microtubule": 2.09e-07, + "milhouse": 2.09e-07, + "milwaukees": 2.09e-07, + "mingus": 2.09e-07, + "minigame": 2.09e-07, + "misidentified": 2.09e-07, + "misspoke": 2.09e-07, + "mns": 2.09e-07, + "moba": 2.09e-07, + "moeller": 2.09e-07, + "mohegan": 2.09e-07, + "montebello": 2.09e-07, + "moriah": 2.09e-07, + "morriss": 6.61e-08, + "mousetrap": 2.09e-07, + "mris": 2.09e-07, + "msci": 2.09e-07, + "mujer": 2.09e-07, + "mullan": 2.09e-07, + "murrieta": 2.09e-07, + "musketeer": 2.09e-07, + "mutilating": 2.09e-07, + "naboo": 2.09e-07, + "nagged": 2.09e-07, + "nati": 2.09e-07, + "naturist": 2.09e-07, + "nayak": 2.09e-07, + "neophyte": 2.09e-07, + "nepean": 2.09e-07, + "newkirk": 2.09e-07, + "newsrooms": 2.09e-07, + "nextel": 2.09e-07, + "nima": 2.09e-07, + "niue": 2.09e-07, + "nnn": 2.09e-07, + "nobler": 2.09e-07, + "nock": 2.09e-07, + "nonconforming": 2.09e-07, + "nonessential": 2.09e-07, + "noriko": 2.09e-07, + "nosing": 2.09e-07, + "nouri": 2.09e-07, + "nourishes": 2.09e-07, + "nozomi": 2.09e-07, + "nsu": 2.09e-07, + "nuovo": 2.09e-07, + "nyasaland": 2.09e-07, + "odriscoll": 2.09e-07, + "ogorman": 2.09e-07, + "ober": 2.09e-07, + "oberoi": 2.09e-07, + "octa": 2.09e-07, + "ogawa": 2.09e-07, + "olivet": 2.09e-07, + "omnivorous": 2.09e-07, + "oneworld": 2.09e-07, + "optometrists": 2.09e-07, + "orienteering": 2.09e-07, + "orinoco": 2.09e-07, + "orozco": 2.09e-07, + "orthopaedics": 2.09e-07, + "outpacing": 2.09e-07, + "outwith": 2.09e-07, + "overabundance": 2.09e-07, + "overage": 2.09e-07, + "overloads": 2.09e-07, + "owain": 2.09e-07, + "paas": 2.09e-07, + "pampanga": 2.09e-07, + "pankhurst": 2.09e-07, + "panoply": 2.09e-07, + "pansexual": 2.09e-07, + "paperclip": 2.09e-07, + "papuan": 2.09e-07, + "paralympian": 2.09e-07, + "paramus": 2.09e-07, + "parm": 2.09e-07, + "pastore": 2.09e-07, + "pavarotti": 2.09e-07, + "pawar": 2.09e-07, + "pbc": 2.09e-07, + "peacemaking": 2.09e-07, + "pedos": 2.09e-07, + "peloponnesian": 2.09e-07, + "pennines": 2.09e-07, + "penthouses": 2.09e-07, + "peon": 2.09e-07, + "perusal": 2.09e-07, + "pesa": 2.09e-07, + "pft": 2.09e-07, + "pge": 2.09e-07, + "phantasm": 2.09e-07, + "philpott": 2.09e-07, + "pietersen": 2.09e-07, + "pinup": 2.09e-07, + "pistorius": 2.09e-07, + "plaines": 2.09e-07, + "pleb": 2.09e-07, + "poitier": 2.09e-07, + "pokeball": 2.09e-07, + "polities": 2.09e-07, + "pollinating": 2.09e-07, + "ppo": 2.09e-07, + "praetor": 2.09e-07, + "prearranged": 2.09e-07, + "preening": 2.09e-07, + "preschools": 2.09e-07, + "prestwick": 2.09e-07, + "presumptions": 2.09e-07, + "printouts": 2.09e-07, + "psf": 2.09e-07, + "publius": 2.09e-07, + "pve": 2.09e-07, + "pvr": 2.09e-07, + "pygmalion": 2.09e-07, + "pyjama": 2.09e-07, + "pyo": 2.09e-07, + "pyrolysis": 2.09e-07, + "quackery": 2.09e-07, + "quali": 2.09e-07, + "quarles": 2.09e-07, + "quizzed": 2.09e-07, + "qv": 2.09e-07, + "rabia": 2.09e-07, + "rabindranath": 2.09e-07, + "rafah": 2.09e-07, + "raindrop": 2.09e-07, + "ramey": 2.09e-07, + "randalls": 2.09e-07, + "ratan": 2.09e-07, + "rattler": 2.09e-07, + "rauch": 2.09e-07, + "rcr": 2.09e-07, + "reactants": 2.09e-07, + "reanimated": 2.09e-07, + "reappraisal": 2.09e-07, + "reattach": 2.09e-07, + "rebounder": 2.09e-07, + "rebroadcast": 2.09e-07, + "reclined": 2.09e-07, + "reconditioning": 2.09e-07, + "rede": 2.09e-07, + "reducer": 2.09e-07, + "reeked": 2.09e-07, + "rego": 2.09e-07, + "renan": 2.09e-07, + "requisites": 2.09e-07, + "resurfaces": 2.09e-07, + "rewiring": 2.09e-07, + "reznor": 2.09e-07, + "rhoads": 2.09e-07, + "ribble": 2.09e-07, + "riggins": 2.09e-07, + "riko": 2.09e-07, + "rimbaud": 2.09e-07, + "rinds": 2.09e-07, + "ringleaders": 2.09e-07, + "rizvi": 2.09e-07, + "roading": 2.09e-07, + "robinhood": 2.09e-07, + "roch": 2.09e-07, + "rudman": 2.09e-07, + "rudra": 2.09e-07, + "ruefully": 2.09e-07, + "rumpus": 2.09e-07, + "saic": 2.09e-07, + "saldana": 2.09e-07, + "salience": 2.09e-07, + "salut": 2.09e-07, + "sandinista": 2.09e-07, + "sassafras": 2.09e-07, + "scamp": 2.09e-07, + "schoolmate": 2.09e-07, + "screed": 2.09e-07, + "sdcc": 2.09e-07, + "secularist": 2.09e-07, + "seibert": 2.09e-07, + "sequitur": 2.09e-07, + "seul": 2.09e-07, + "severino": 2.09e-07, + "shafiq": 2.09e-07, + "shills": 2.09e-07, + "shipbuilder": 2.09e-07, + "showboat": 2.09e-07, + "showground": 2.09e-07, + "shrewdly": 2.09e-07, + "shuns": 2.09e-07, + "sickles": 2.09e-07, + "sigel": 2.09e-07, + "signposts": 2.09e-07, + "sikhism": 2.09e-07, + "sive": 2.09e-07, + "slanders": 2.09e-07, + "slithered": 2.09e-07, + "smo": 2.09e-07, + "smokies": 2.09e-07, + "smolensk": 2.09e-07, + "smtp": 2.09e-07, + "snowpack": 2.09e-07, + "snsd": 2.09e-07, + "socialistic": 2.09e-07, + "sohail": 2.09e-07, + "soju": 2.09e-07, + "sonne": 2.09e-07, + "soria": 2.09e-07, + "sorrell": 2.09e-07, + "soundings": 2.09e-07, + "soundscapes": 2.09e-07, + "spacesuit": 2.09e-07, + "spams": 2.09e-07, + "spanx": 2.09e-07, + "spearmint": 2.09e-07, + "speedier": 2.09e-07, + "spengler": 2.09e-07, + "spica": 2.09e-07, + "spinnin": 2.09e-07, + "spoonfuls": 2.09e-07, + "squawking": 2.09e-07, + "srb": 2.09e-07, + "stackable": 2.09e-07, + "stalag": 2.09e-07, + "stiffed": 2.09e-07, + "storytime": 2.09e-07, + "streamlines": 2.09e-07, + "strudel": 2.09e-07, + "sturges": 2.09e-07, + "subcontract": 2.09e-07, + "succ": 2.09e-07, + "summarising": 2.09e-07, + "summerville": 2.09e-07, + "superdome": 2.09e-07, + "superoxide": 2.09e-07, + "sustainment": 2.09e-07, + "swashbuckling": 2.09e-07, + "swill": 2.09e-07, + "synthesised": 2.09e-07, + "syr": 2.09e-07, + "tabi": 2.09e-07, + "tabulation": 2.09e-07, + "tailspin": 2.09e-07, + "tanja": 2.09e-07, + "taw": 2.09e-07, + "tdc": 2.09e-07, + "teardrops": 2.09e-07, + "telos": 2.09e-07, + "tethering": 2.09e-07, + "theis": 2.09e-07, + "thessaly": 2.09e-07, + "thiefs": 2.09e-07, + "thirsting": 2.09e-07, + "thorndike": 2.09e-07, + "tillis": 2.09e-07, + "tinkered": 2.09e-07, + "tipster": 2.09e-07, + "tla": 2.09e-07, + "todoroki": 2.09e-07, + "toluca": 2.09e-07, + "tonawanda": 2.09e-07, + "tonbridge": 2.09e-07, + "toothy": 2.09e-07, + "toshi": 2.09e-07, + "tosser": 2.09e-07, + "tought": 2.09e-07, + "tpg": 2.09e-07, + "tph": 2.09e-07, + "tpu": 2.09e-07, + "traditionalism": 2.09e-07, + "tramadol": 2.09e-07, + "trapezoidal": 2.09e-07, + "travertine": 2.09e-07, + "troposphere": 2.09e-07, + "tsing": 2.09e-07, + "twittering": 2.09e-07, + "uan": 2.09e-07, + "uighur": 2.09e-07, + "ulla": 2.09e-07, + "unbranded": 2.09e-07, + "undergrads": 2.09e-07, + "undiluted": 2.09e-07, + "uninfected": 2.09e-07, + "unlined": 2.09e-07, + "unplugging": 2.09e-07, + "unrecognised": 2.09e-07, + "unsolvable": 2.09e-07, + "unspoilt": 2.09e-07, + "unstressed": 2.09e-07, + "upperclassmen": 2.09e-07, + "usaa": 2.09e-07, + "uscs": 2.09e-07, + "uselessly": 2.09e-07, + "usga": 2.09e-07, + "uyghurs": 2.09e-07, + "verizons": 2.09e-07, + "vermonts": 2.09e-07, + "vespasian": 2.09e-07, + "viki": 2.09e-07, + "vineland": 2.09e-07, + "viscose": 2.09e-07, + "vlogger": 2.09e-07, + "vocalizations": 2.09e-07, + "voiding": 2.09e-07, + "wanamaker": 2.09e-07, + "waratahs": 2.09e-07, + "wardell": 2.09e-07, + "washi": 2.09e-07, + "wasters": 2.09e-07, + "watling": 2.09e-07, + "weare": 2.09e-07, + "webcomics": 2.09e-07, + "weiland": 2.09e-07, + "weirs": 1.35e-07, + "wendt": 2.09e-07, + "weng": 2.09e-07, + "whetstone": 2.09e-07, + "whiteout": 2.09e-07, + "wicketkeeper": 2.09e-07, + "wieland": 2.09e-07, + "wildman": 2.09e-07, + "windowed": 2.09e-07, + "windshields": 2.09e-07, + "wireline": 2.09e-07, + "witless": 2.09e-07, + "wix": 2.09e-07, + "wls": 2.09e-07, + "woc": 2.09e-07, + "workroom": 2.09e-07, + "wsop": 2.09e-07, + "yasiel": 2.09e-07, + "yasuo": 2.09e-07, + "yh": 2.09e-07, + "yuka": 2.09e-07, + "ziva": 2.09e-07, + "aal": 2.04e-07, + "abdullahi": 2.04e-07, + "abhorred": 2.04e-07, + "ablative": 2.04e-07, + "accompli": 2.04e-07, + "acerbic": 2.04e-07, + "activations": 2.04e-07, + "adebayor": 2.04e-07, + "adjoint": 2.04e-07, + "adoptees": 2.04e-07, + "adroit": 2.04e-07, + "adsorbed": 2.04e-07, + "agains": 2.04e-07, + "ahmadiyya": 2.04e-07, + "ahora": 2.04e-07, + "ahsan": 2.04e-07, + "aioli": 2.04e-07, + "airhead": 2.04e-07, + "airless": 2.04e-07, + "airworthiness": 2.04e-07, + "akiko": 2.04e-07, + "aldehydes": 2.04e-07, + "alsatian": 2.04e-07, + "amistad": 2.04e-07, + "amro": 2.04e-07, + "amylase": 2.04e-07, + "anionic": 2.04e-07, + "annesley": 2.04e-07, + "antoninus": 2.04e-07, + "aoe": 2.04e-07, + "appallingly": 2.04e-07, + "appendectomy": 2.04e-07, + "applet": 2.04e-07, + "arachnid": 2.04e-07, + "arashi": 2.04e-07, + "arbuckle": 2.04e-07, + "arik": 2.04e-07, + "arista": 2.04e-07, + "armadale": 2.04e-07, + "arriva": 2.04e-07, + "ashburton": 2.04e-07, + "ashtrays": 2.04e-07, + "aspca": 2.04e-07, + "astound": 2.04e-07, + "ativan": 2.04e-07, + "aventura": 2.04e-07, + "awk": 2.04e-07, + "azerbaijans": 2.04e-07, + "badal": 2.04e-07, + "baffin": 2.04e-07, + "baggie": 2.04e-07, + "bamberg": 2.04e-07, + "banca": 2.04e-07, + "banqueting": 2.04e-07, + "barest": 2.04e-07, + "barrages": 2.04e-07, + "barrelled": 2.04e-07, + "bayne": 2.04e-07, + "beals": 2.04e-07, + "beano": 2.04e-07, + "beckmann": 2.04e-07, + "beelzebub": 2.04e-07, + "bega": 2.04e-07, + "behinds": 2.04e-07, + "behr": 2.04e-07, + "belgravia": 2.04e-07, + "bergamot": 2.04e-07, + "besson": 2.04e-07, + "biked": 2.04e-07, + "bilirubin": 2.04e-07, + "billionth": 2.04e-07, + "bioenergy": 2.04e-07, + "biomedicine": 2.04e-07, + "birdlife": 2.04e-07, + "biswas": 2.04e-07, + "blain": 2.04e-07, + "blanched": 2.04e-07, + "bloomingdales": 6.76e-08, + "bludgeoning": 2.04e-07, + "bluebells": 2.04e-07, + "bofa": 2.04e-07, + "boobie": 2.04e-07, + "boric": 2.04e-07, + "brachial": 2.04e-07, + "brayton": 2.04e-07, + "bretts": 2.04e-07, + "brita": 2.04e-07, + "britpop": 2.04e-07, + "brokenhearted": 2.04e-07, + "bromo": 2.04e-07, + "bsu": 2.04e-07, + "buckhead": 2.04e-07, + "buffetts": 2.04e-07, + "buffoons": 2.04e-07, + "bukkake": 2.04e-07, + "bullhorn": 2.04e-07, + "bungling": 2.04e-07, + "buzzkill": 2.04e-07, + "callisto": 2.04e-07, + "candidature": 2.04e-07, + "cappadocia": 2.04e-07, + "carbo": 2.04e-07, + "cardinality": 2.04e-07, + "carmack": 2.04e-07, + "carnot": 2.04e-07, + "carotenoids": 2.04e-07, + "cartilaginous": 2.04e-07, + "cbeebies": 2.04e-07, + "cellmate": 2.04e-07, + "cellulosic": 2.04e-07, + "celt": 2.04e-07, + "chabot": 2.04e-07, + "chace": 2.04e-07, + "chairlift": 2.04e-07, + "chaturbate": 2.04e-07, + "childe": 2.04e-07, + "chirps": 2.04e-07, + "chloroplast": 2.04e-07, + "chloroplasts": 2.04e-07, + "chronometer": 2.04e-07, + "circassian": 2.04e-07, + "cleaving": 2.04e-07, + "clerkship": 2.04e-07, + "clinches": 2.04e-07, + "cockles": 2.04e-07, + "coddled": 2.04e-07, + "coddling": 2.04e-07, + "cohabiting": 2.04e-07, + "compactness": 2.04e-07, + "concentrator": 2.04e-07, + "condemnations": 2.04e-07, + "connick": 2.04e-07, + "corry": 2.04e-07, + "costigan": 2.04e-07, + "cowling": 2.04e-07, + "crackles": 2.04e-07, + "crapping": 2.04e-07, + "cravat": 2.04e-07, + "creditworthiness": 2.04e-07, + "crf": 2.04e-07, + "cringy": 2.04e-07, + "crossbones": 2.04e-07, + "crossdressing": 2.04e-07, + "cuervo": 2.04e-07, + "cuomos": 2.04e-07, + "curfews": 2.04e-07, + "curios": 2.04e-07, + "daewoo": 2.04e-07, + "daggett": 2.04e-07, + "dalziel": 2.04e-07, + "danske": 2.04e-07, + "dbl": 2.04e-07, + "dceu": 2.04e-07, + "declaratory": 2.04e-07, + "declension": 2.04e-07, + "dehumidifier": 2.04e-07, + "deidre": 2.04e-07, + "demobilization": 2.04e-07, + "desu": 2.04e-07, + "detections": 2.04e-07, + "devaluing": 2.04e-07, + "dewhurst": 2.04e-07, + "dextrose": 2.04e-07, + "dialectics": 2.04e-07, + "dichotomous": 2.04e-07, + "dieing": 2.04e-07, + "dik": 2.04e-07, + "dinged": 2.04e-07, + "disallowing": 2.04e-07, + "dishwashing": 2.04e-07, + "disposes": 2.04e-07, + "dispossession": 2.04e-07, + "disqualifies": 2.04e-07, + "disruptors": 2.04e-07, + "dithering": 2.04e-07, + "divulging": 2.04e-07, + "dobbin": 2.04e-07, + "docherty": 2.04e-07, + "dongguan": 2.04e-07, + "dongs": 7.08e-08, + "doody": 2.04e-07, + "draculas": 2.04e-07, + "dragan": 2.04e-07, + "drizzling": 2.04e-07, + "drogheda": 2.04e-07, + "durants": 2.04e-07, + "dws": 2.04e-07, + "easley": 2.04e-07, + "ebv": 2.04e-07, + "edx": 2.04e-07, + "ejaculated": 2.04e-07, + "electrodynamics": 2.04e-07, + "elli": 2.04e-07, + "emd": 2.04e-07, + "eme": 2.04e-07, + "emmeline": 2.04e-07, + "endymion": 2.04e-07, + "envelops": 2.04e-07, + "epipen": 2.04e-07, + "equalise": 2.04e-07, + "erring": 2.04e-07, + "esea": 2.04e-07, + "eulogies": 2.04e-07, + "eurocentric": 2.04e-07, + "evidential": 2.04e-07, + "exhortations": 2.04e-07, + "expeditious": 2.04e-07, + "expressiveness": 2.04e-07, + "fareed": 2.04e-07, + "faridabad": 2.04e-07, + "farrier": 2.04e-07, + "fatness": 2.04e-07, + "fatties": 2.04e-07, + "fayre": 2.04e-07, + "federals": 2.04e-07, + "fernandinho": 2.04e-07, + "ferrand": 2.04e-07, + "ferri": 2.04e-07, + "ferric": 2.04e-07, + "ferrite": 2.04e-07, + "fid": 2.04e-07, + "findley": 2.04e-07, + "fixate": 2.04e-07, + "fkn": 2.04e-07, + "flankers": 2.04e-07, + "flannels": 2.04e-07, + "flasher": 2.04e-07, + "flatts": 2.04e-07, + "flavorings": 2.04e-07, + "fock": 2.04e-07, + "fogel": 2.04e-07, + "follett": 2.04e-07, + "fonder": 2.04e-07, + "foretell": 2.04e-07, + "foward": 2.04e-07, + "frill": 2.04e-07, + "frm": 2.04e-07, + "fuckface": 2.04e-07, + "fusarium": 2.04e-07, + "gaas": 2.04e-07, + "gaetano": 2.04e-07, + "gainers": 2.04e-07, + "galesburg": 2.04e-07, + "galvanize": 2.04e-07, + "gara": 2.04e-07, + "garcon": 2.04e-07, + "gaucho": 2.04e-07, + "gazelles": 2.04e-07, + "gelling": 2.04e-07, + "generalisations": 2.04e-07, + "genova": 2.04e-07, + "gianluigi": 2.04e-07, + "gilad": 2.04e-07, + "gilts": 2.04e-07, + "ginebra": 2.04e-07, + "gna": 2.04e-07, + "golda": 2.04e-07, + "gorka": 2.04e-07, + "gravis": 2.04e-07, + "gravitating": 2.04e-07, + "grayscale": 2.04e-07, + "greenlit": 2.04e-07, + "grimms": 1.1e-07, + "griselda": 2.04e-07, + "gsi": 2.04e-07, + "guenther": 2.04e-07, + "guha": 2.04e-07, + "gulping": 2.04e-07, + "gustaf": 2.04e-07, + "hada": 2.04e-07, + "hailstorm": 2.04e-07, + "haku": 2.04e-07, + "halsted": 2.04e-07, + "hambleton": 2.04e-07, + "hampshires": 2.04e-07, + "handmaiden": 2.04e-07, + "hashmi": 2.04e-07, + "haulers": 2.04e-07, + "hauptmann": 2.04e-07, + "hcp": 2.04e-07, + "heatsink": 2.04e-07, + "heatstroke": 2.04e-07, + "herbivorous": 2.04e-07, + "herzl": 2.04e-07, + "hideki": 2.04e-07, + "hideouts": 2.04e-07, + "highlighters": 2.04e-07, + "highrise": 2.04e-07, + "hindutva": 2.04e-07, + "hobgoblin": 2.04e-07, + "hobie": 2.04e-07, + "holbein": 2.04e-07, + "homa": 2.04e-07, + "hooting": 2.04e-07, + "horwood": 2.04e-07, + "hoteliers": 2.04e-07, + "hous": 2.04e-07, + "hovel": 2.04e-07, + "hughie": 2.04e-07, + "humiliates": 2.04e-07, + "hurston": 2.04e-07, + "huygens": 2.04e-07, + "hyperglycemia": 2.04e-07, + "icebox": 2.04e-07, + "ileana": 2.04e-07, + "illa": 2.04e-07, + "ille": 2.04e-07, + "imani": 2.04e-07, + "impeachable": 2.04e-07, + "imperialistic": 2.04e-07, + "impinge": 2.04e-07, + "implores": 2.04e-07, + "inarticulate": 2.04e-07, + "infective": 2.04e-07, + "infor": 2.04e-07, + "iniquities": 2.04e-07, + "innovated": 2.04e-07, + "insoles": 2.04e-07, + "instrumentalists": 2.04e-07, + "interconnectedness": 2.04e-07, + "interfacial": 2.04e-07, + "interloper": 2.04e-07, + "inyo": 2.04e-07, + "ironstone": 2.04e-07, + "itemize": 2.04e-07, + "ivanovna": 2.04e-07, + "jami": 2.04e-07, + "jeffree": 2.04e-07, + "jills": 2.04e-07, + "jiri": 2.04e-07, + "joanie": 2.04e-07, + "joelle": 2.04e-07, + "jools": 2.04e-07, + "jou": 2.04e-07, + "juul": 2.04e-07, + "kaede": 2.04e-07, + "kaffir": 2.04e-07, + "katelyn": 2.04e-07, + "kazuma": 2.04e-07, + "keil": 2.04e-07, + "khal": 2.04e-07, + "killua": 2.04e-07, + "kingmaker": 2.04e-07, + "klobuchar": 2.04e-07, + "knowhow": 2.04e-07, + "kory": 2.04e-07, + "kreider": 2.04e-07, + "kriss": 2.04e-07, + "kuni": 2.04e-07, + "kut": 2.04e-07, + "labrum": 2.04e-07, + "lae": 2.04e-07, + "lahiri": 2.04e-07, + "landforms": 2.04e-07, + "langkawi": 2.04e-07, + "largesse": 2.04e-07, + "lasses": 2.04e-07, + "latam": 2.04e-07, + "lathes": 2.04e-07, + "latinx": 2.04e-07, + "lcm": 2.04e-07, + "leadville": 2.04e-07, + "legless": 2.04e-07, + "leman": 2.04e-07, + "lewisburg": 2.04e-07, + "lfl": 2.04e-07, + "liaising": 2.04e-07, + "libero": 2.04e-07, + "lightheaded": 2.04e-07, + "lilting": 2.04e-07, + "limestones": 2.04e-07, + "listers": 5.37e-08, + "litigating": 2.04e-07, + "littlefinger": 2.04e-07, + "longings": 2.04e-07, + "lozenge": 2.04e-07, + "lozenges": 2.04e-07, + "lso": 2.04e-07, + "lucass": 2.04e-07, + "lucifers": 2.04e-07, + "luma": 2.04e-07, + "lumina": 2.04e-07, + "lydon": 2.04e-07, + "lyttelton": 2.04e-07, + "macey": 2.04e-07, + "macromolecular": 2.04e-07, + "mada": 2.04e-07, + "magnifies": 2.04e-07, + "mahomes": 2.04e-07, + "malina": 2.04e-07, + "maratha": 2.04e-07, + "marblehead": 2.04e-07, + "marvins": 2.04e-07, + "masc": 2.04e-07, + "mayoralty": 2.04e-07, + "mbit": 2.04e-07, + "mcbain": 2.04e-07, + "mcclean": 2.04e-07, + "mccoll": 2.04e-07, + "mcconnells": 2.04e-07, + "mccoys": 1.07e-07, + "mcduck": 2.04e-07, + "mcw": 2.04e-07, + "mealtime": 2.04e-07, + "meany": 2.04e-07, + "meathead": 2.04e-07, + "medline": 2.04e-07, + "meerkats": 2.04e-07, + "melissas": 2.04e-07, + "meningococcal": 2.04e-07, + "menominee": 2.04e-07, + "michell": 2.04e-07, + "midsomer": 2.04e-07, + "mien": 2.04e-07, + "mikko": 2.04e-07, + "mimes": 2.04e-07, + "minefields": 2.04e-07, + "mineralized": 2.04e-07, + "mineralogical": 2.04e-07, + "mirko": 2.04e-07, + "misappropriated": 2.04e-07, + "mississippis": 2.04e-07, + "mitty": 2.04e-07, + "mnh": 2.04e-07, + "modigliani": 2.04e-07, + "molto": 2.04e-07, + "monotype": 2.04e-07, + "monro": 2.04e-07, + "montag": 2.04e-07, + "mopeds": 2.04e-07, + "morelos": 2.04e-07, + "mountings": 2.04e-07, + "mouthy": 2.04e-07, + "mox": 2.04e-07, + "mraz": 2.04e-07, + "mtt": 2.04e-07, + "muddied": 2.04e-07, + "mudslides": 2.04e-07, + "mulls": 2.04e-07, + "mumtaz": 2.04e-07, + "munchkins": 2.04e-07, + "murtagh": 2.04e-07, + "muzik": 2.04e-07, + "myrick": 2.04e-07, + "naam": 2.04e-07, + "naina": 2.04e-07, + "naturalised": 2.04e-07, + "navalny": 2.04e-07, + "nayarit": 2.04e-07, + "nazca": 2.04e-07, + "ncaas": 5.75e-08, + "neda": 2.04e-07, + "nek": 2.04e-07, + "nespresso": 2.04e-07, + "neuberger": 2.04e-07, + "newmark": 2.04e-07, + "nicoll": 2.04e-07, + "niner": 2.04e-07, + "nodule": 2.04e-07, + "nolte": 2.04e-07, + "nonbinary": 2.04e-07, + "nonfat": 2.04e-07, + "normalisation": 2.04e-07, + "normalise": 2.04e-07, + "nostrum": 2.04e-07, + "noto": 2.04e-07, + "novello": 2.04e-07, + "nsp": 2.04e-07, + "ntp": 2.04e-07, + "nup": 2.04e-07, + "oconnors": 2.04e-07, + "oaklands": 8.71e-08, + "obscenely": 2.04e-07, + "ocampo": 2.04e-07, + "octavo": 2.04e-07, + "octo": 2.04e-07, + "oer": 2.04e-07, + "ogs": 7.59e-08, + "onc": 2.04e-07, + "onlooker": 2.04e-07, + "ooooo": 2.04e-07, + "ooty": 2.04e-07, + "opticians": 2.04e-07, + "organometallic": 2.04e-07, + "orientalist": 2.04e-07, + "ose": 2.04e-07, + "oup": 2.04e-07, + "outstrip": 2.04e-07, + "overdrafts": 2.04e-07, + "overlaying": 2.04e-07, + "oversea": 2.04e-07, + "palatinate": 2.04e-07, + "palmieri": 2.04e-07, + "paneer": 2.04e-07, + "papillomavirus": 2.04e-07, + "parter": 2.04e-07, + "pastoralists": 2.04e-07, + "pathologically": 2.04e-07, + "pauling": 2.04e-07, + "paupers": 6.31e-08, + "pausanias": 2.04e-07, + "pch": 2.04e-07, + "pediment": 2.04e-07, + "penciled": 2.04e-07, + "penetrative": 2.04e-07, + "pennants": 2.04e-07, + "pepa": 2.04e-07, + "pergola": 2.04e-07, + "peripatetic": 2.04e-07, + "perverting": 2.04e-07, + "pienaar": 2.04e-07, + "pierpont": 2.04e-07, + "pillowcases": 2.04e-07, + "pimentel": 2.04e-07, + "pitiless": 2.04e-07, + "pki": 2.04e-07, + "plaintext": 2.04e-07, + "plante": 2.04e-07, + "playboys": 1.12e-07, + "poisonings": 2.04e-07, + "pokerstars": 2.04e-07, + "politicizing": 2.04e-07, + "polos": 6.92e-08, + "polyphony": 2.04e-07, + "pontefract": 2.04e-07, + "popularizing": 2.04e-07, + "poste": 2.04e-07, + "pothead": 2.04e-07, + "preemptively": 2.04e-07, + "preludes": 2.04e-07, + "prenuptial": 2.04e-07, + "preppers": 2.04e-07, + "prestons": 2.04e-07, + "prodigies": 2.04e-07, + "prokofiev": 2.04e-07, + "proliferative": 2.04e-07, + "prostaglandin": 2.04e-07, + "protrusions": 2.04e-07, + "prout": 2.04e-07, + "psychedelia": 2.04e-07, + "pulisic": 2.04e-07, + "purana": 2.04e-07, + "pushin": 2.04e-07, + "quatro": 2.04e-07, + "racialized": 2.04e-07, + "radionuclides": 2.04e-07, + "rads": 2.04e-07, + "ramaphosa": 2.04e-07, + "rapoport": 2.04e-07, + "rara": 2.04e-07, + "razorbacks": 2.04e-07, + "reconnection": 2.04e-07, + "redbox": 2.04e-07, + "redrawing": 2.04e-07, + "referent": 2.04e-07, + "renta": 2.04e-07, + "repenting": 2.04e-07, + "replant": 2.04e-07, + "replanting": 2.04e-07, + "reuven": 2.04e-07, + "reveling": 2.04e-07, + "riad": 2.04e-07, + "rial": 2.04e-07, + "rima": 2.04e-07, + "roadies": 2.04e-07, + "rosina": 2.04e-07, + "rothschilds": 7.76e-08, + "roxana": 2.04e-07, + "royle": 2.04e-07, + "rwby": 2.04e-07, + "rz": 2.04e-07, + "safi": 2.04e-07, + "saldanha": 2.04e-07, + "samarra": 2.04e-07, + "samberg": 2.04e-07, + "sanada": 2.04e-07, + "sandbar": 2.04e-07, + "sapa": 2.04e-07, + "sawa": 2.04e-07, + "sayyid": 2.04e-07, + "scarfs": 2.04e-07, + "scavenged": 2.04e-07, + "schist": 2.04e-07, + "schtick": 2.04e-07, + "schuller": 2.04e-07, + "scoresheet": 2.04e-07, + "scouse": 2.04e-07, + "scree": 2.04e-07, + "screwy": 2.04e-07, + "scrubby": 2.04e-07, + "searchlights": 2.04e-07, + "seismology": 2.04e-07, + "semiotic": 2.04e-07, + "sentai": 2.04e-07, + "sentosa": 2.04e-07, + "sequined": 2.04e-07, + "sexless": 2.04e-07, + "shahbaz": 2.04e-07, + "shedd": 2.04e-07, + "sheikhs": 7.08e-08, + "shimada": 2.04e-07, + "shippuden": 2.04e-07, + "shoah": 2.04e-07, + "shuttling": 2.04e-07, + "sigmar": 2.04e-07, + "similiar": 2.04e-07, + "sirte": 2.04e-07, + "sisyphus": 2.04e-07, + "sizemore": 2.04e-07, + "sizzles": 2.04e-07, + "skegness": 2.04e-07, + "slagging": 2.04e-07, + "slava": 2.04e-07, + "slimmed": 2.04e-07, + "smugness": 2.04e-07, + "sorel": 2.04e-07, + "spectrograph": 2.04e-07, + "spindly": 2.04e-07, + "spinel": 2.04e-07, + "spokespeople": 2.04e-07, + "springsteens": 2.04e-07, + "sqm": 2.04e-07, + "stebbins": 2.04e-07, + "steeles": 5.13e-08, + "steinbrenner": 2.04e-07, + "stepchildren": 2.04e-07, + "stephanies": 2.04e-07, + "ster": 2.04e-07, + "stf": 2.04e-07, + "stoddart": 2.04e-07, + "stonebridge": 2.04e-07, + "straightforwardly": 2.04e-07, + "strangles": 2.04e-07, + "subgenus": 2.04e-07, + "subic": 2.04e-07, + "sunbae": 2.04e-07, + "superfamily": 2.04e-07, + "supermax": 2.04e-07, + "swaggering": 2.04e-07, + "swindling": 2.04e-07, + "tahini": 2.04e-07, + "tailback": 2.04e-07, + "tailwind": 2.04e-07, + "takeuchi": 2.04e-07, + "tamu": 2.04e-07, + "tandon": 2.04e-07, + "tani": 2.04e-07, + "tantalising": 2.04e-07, + "taxman": 2.04e-07, + "tedeschi": 2.04e-07, + "teleporting": 2.04e-07, + "telfer": 2.04e-07, + "temptress": 2.04e-07, + "tewkesbury": 2.04e-07, + "theatricality": 2.04e-07, + "thk": 2.04e-07, + "throught": 2.04e-07, + "titillating": 2.04e-07, + "toba": 2.04e-07, + "toboggan": 2.04e-07, + "toho": 2.04e-07, + "tommorow": 2.04e-07, + "tormentor": 2.04e-07, + "torturer": 2.04e-07, + "toru": 2.04e-07, + "towpath": 2.04e-07, + "toynbee": 2.04e-07, + "transacted": 2.04e-07, + "travails": 2.04e-07, + "traversal": 2.04e-07, + "treme": 2.04e-07, + "tricare": 2.04e-07, + "truckloads": 2.04e-07, + "tullius": 2.04e-07, + "turku": 2.04e-07, + "tuvalu": 2.04e-07, + "ull": 6.17e-08, + "unbalance": 2.04e-07, + "underemployment": 2.04e-07, + "uneconomic": 2.04e-07, + "unga": 2.04e-07, + "unheated": 2.04e-07, + "unlearned": 2.04e-07, + "unquenchable": 2.04e-07, + "unshaven": 2.04e-07, + "upskirt": 2.04e-07, + "urinated": 2.04e-07, + "usha": 2.04e-07, + "utep": 2.04e-07, + "utsa": 2.04e-07, + "uup": 2.04e-07, + "vanden": 2.04e-07, + "vento": 2.04e-07, + "vico": 2.04e-07, + "videotaping": 2.04e-07, + "visayas": 2.04e-07, + "vivisection": 2.04e-07, + "vra": 2.04e-07, + "wacom": 2.04e-07, + "waitlist": 2.04e-07, + "walder": 2.04e-07, + "warframe": 2.04e-07, + "washboard": 2.04e-07, + "washoe": 2.04e-07, + "wegener": 2.04e-07, + "werth": 2.04e-07, + "wets": 2.04e-07, + "whinge": 2.04e-07, + "whitneys": 2.04e-07, + "whs": 2.04e-07, + "wiig": 2.04e-07, + "williamsons": 2.04e-07, + "willies": 2.04e-07, + "windstorm": 2.04e-07, + "wmc": 2.04e-07, + "wms": 2.04e-07, + "wolseley": 2.04e-07, + "workup": 2.04e-07, + "workwear": 2.04e-07, + "wyvern": 2.04e-07, + "xvideos": 2.04e-07, + "xxviii": 2.04e-07, + "yahoos": 1.32e-07, + "yeap": 2.04e-07, + "yeol": 2.04e-07, + "yggdrasil": 2.04e-07, + "yojana": 2.04e-07, + "zarathustra": 2.04e-07, + "zines": 2.04e-07, + "zits": 2.04e-07, + "abadi": 2e-07, + "abbeville": 2e-07, + "abbeys": 1.86e-07, + "abbottabad": 2e-07, + "aboveground": 2e-07, + "absentees": 2e-07, + "abuzz": 2e-07, + "accompanist": 2e-07, + "adan": 2e-07, + "adductor": 2e-07, + "adrians": 2e-07, + "aea": 2e-07, + "aedt": 2e-07, + "aeroflot": 2e-07, + "afferent": 2e-07, + "ajith": 2e-07, + "akatsuki": 2e-07, + "alaba": 2e-07, + "aligarh": 2e-07, + "allaah": 2e-07, + "aller": 2e-07, + "allerton": 2e-07, + "alleviates": 2e-07, + "allright": 2e-07, + "allys": 2e-07, + "alnwick": 2e-07, + "alpes": 2e-07, + "altcoins": 2e-07, + "amble": 2e-07, + "amortized": 2e-07, + "anadolu": 2e-07, + "antelopes": 2e-07, + "anyday": 2e-07, + "aoyama": 2e-07, + "approbation": 2e-07, + "arcadian": 2e-07, + "archaea": 2e-07, + "armes": 2e-07, + "arpa": 2e-07, + "arpeggios": 2e-07, + "atal": 2e-07, + "athlone": 2e-07, + "attentiveness": 2e-07, + "auburns": 2e-07, + "aurobindo": 2e-07, + "authorial": 2e-07, + "autres": 2e-07, + "avraham": 2e-07, + "babb": 2e-07, + "babson": 2e-07, + "backstrom": 2e-07, + "backtracked": 2e-07, + "baelish": 2e-07, + "bagwell": 2e-07, + "bahar": 2e-07, + "baily": 2e-07, + "balaji": 2e-07, + "balu": 2e-07, + "bandidos": 2e-07, + "bankrolled": 2e-07, + "barnhart": 2e-07, + "barrowman": 2e-07, + "bci": 2e-07, + "bdc": 2e-07, + "beaked": 2e-07, + "beaty": 2e-07, + "beecham": 2e-07, + "beggin": 2e-07, + "behemoths": 2e-07, + "bemidji": 2e-07, + "bended": 2e-07, + "berenice": 2e-07, + "bilayer": 2e-07, + "billows": 2e-07, + "binning": 2e-07, + "bizkit": 2e-07, + "blantyre": 2e-07, + "blindingly": 2e-07, + "blots": 2e-07, + "bogies": 2e-07, + "boilermakers": 2e-07, + "bojangles": 2e-07, + "bolsonaro": 2e-07, + "bootle": 2e-07, + "boren": 2e-07, + "bossier": 2e-07, + "brainwave": 2e-07, + "bratwurst": 2e-07, + "brickyard": 2e-07, + "brito": 2e-07, + "brutalist": 2e-07, + "bryony": 2e-07, + "buccal": 2e-07, + "buckaroo": 2e-07, + "bullocks": 1.62e-07, + "bunnings": 2e-07, + "burdick": 2e-07, + "burry": 2e-07, + "buttressed": 2e-07, + "bys": 2e-07, + "cablevision": 2e-07, + "caddo": 2e-07, + "californication": 2e-07, + "campari": 2e-07, + "carcassonne": 2e-07, + "carnahan": 2e-07, + "castellano": 2e-07, + "castellanos": 2e-07, + "ccgs": 2e-07, + "centerfold": 2e-07, + "centipedes": 2e-07, + "centrale": 2e-07, + "cerf": 2e-07, + "cerulean": 2e-07, + "cft": 2e-07, + "cgm": 2e-07, + "changeup": 2e-07, + "chappie": 2e-07, + "charterhouse": 2e-07, + "chatbot": 2e-07, + "chauvinistic": 2e-07, + "cheerfulness": 2e-07, + "chenoweth": 2e-07, + "chichi": 2e-07, + "chihiro": 2e-07, + "choudary": 2e-07, + "circumvention": 2e-07, + "claflin": 2e-07, + "clif": 2e-07, + "closers": 2e-07, + "coiling": 2e-07, + "coked": 2e-07, + "commode": 2e-07, + "compartmentalized": 2e-07, + "completly": 2e-07, + "condones": 2e-07, + "conquistadors": 2e-07, + "contextually": 2e-07, + "contravene": 2e-07, + "contre": 2e-07, + "convulsed": 2e-07, + "copolymers": 2e-07, + "counterfeiters": 2e-07, + "coupes": 2e-07, + "coursera": 2e-07, + "couturier": 2e-07, + "crackheads": 2e-07, + "craigie": 2e-07, + "crampton": 2e-07, + "cretins": 2e-07, + "crimewatch": 2e-07, + "crowleys": 2e-07, + "ctu": 2e-07, + "cumbrian": 2e-07, + "cunnilingus": 2e-07, + "cuoco": 2e-07, + "cytoskeleton": 2e-07, + "daemons": 2e-07, + "daud": 2e-07, + "dcr": 2e-07, + "decriminalize": 2e-07, + "deepthroat": 2e-07, + "deftones": 2e-07, + "defunding": 2e-07, + "demigods": 2e-07, + "demurred": 2e-07, + "dente": 2e-07, + "desecrate": 2e-07, + "despising": 2e-07, + "devore": 2e-07, + "dewalt": 2e-07, + "dfid": 2e-07, + "dimitris": 2e-07, + "dioxin": 2e-07, + "discernable": 2e-07, + "dispels": 2e-07, + "disrespects": 2e-07, + "dobie": 2e-07, + "docent": 2e-07, + "downplays": 2e-07, + "downstate": 2e-07, + "downturns": 2e-07, + "dramatize": 2e-07, + "dsb": 2e-07, + "dungeness": 2e-07, + "dunst": 2e-07, + "dvla": 2e-07, + "dyad": 2e-07, + "dystonia": 2e-07, + "earful": 2e-07, + "edifices": 2e-07, + "efflux": 2e-07, + "einem": 2e-07, + "elko": 2e-07, + "embolden": 2e-07, + "embossing": 2e-07, + "endeavoring": 2e-07, + "epicurean": 2e-07, + "epistolary": 2e-07, + "equalities": 2e-07, + "ericson": 2e-07, + "eruptive": 2e-07, + "esg": 2e-07, + "esm": 2e-07, + "evaluative": 2e-07, + "excercise": 2e-07, + "excrete": 2e-07, + "extol": 2e-07, + "fabry": 2e-07, + "fairplay": 2e-07, + "fangled": 2e-07, + "fash": 2e-07, + "fatalism": 2e-07, + "fava": 2e-07, + "feminized": 2e-07, + "ferromagnetic": 2e-07, + "fidgety": 2e-07, + "fiefdom": 2e-07, + "fightback": 2e-07, + "fijis": 2e-07, + "filamentous": 2e-07, + "fineness": 2e-07, + "finitely": 2e-07, + "fisticuffs": 2e-07, + "flavonoids": 2e-07, + "florins": 2e-07, + "foghorn": 2e-07, + "folios": 2e-07, + "francia": 2e-07, + "franklyn": 2e-07, + "fraying": 2e-07, + "freo": 2e-07, + "frictionless": 2e-07, + "frictions": 2e-07, + "friedmans": 2e-07, + "fuente": 2e-07, + "galilean": 2e-07, + "gargano": 2e-07, + "gaspard": 2e-07, + "gats": 2e-07, + "gautama": 2e-07, + "getafe": 2e-07, + "ghouta": 2e-07, + "glp": 2e-07, + "glucagon": 2e-07, + "glycoproteins": 2e-07, + "gpc": 2e-07, + "granule": 2e-07, + "gratin": 2e-07, + "gravesite": 2e-07, + "greenpoint": 2e-07, + "grouch": 2e-07, + "grunwald": 2e-07, + "guanine": 2e-07, + "guff": 2e-07, + "gummi": 2e-07, + "gunny": 2e-07, + "haben": 2e-07, + "hamdi": 2e-07, + "hamels": 2e-07, + "hankey": 2e-07, + "harasses": 2e-07, + "harleys": 1.1e-07, + "harpoons": 2e-07, + "harrisonburg": 2e-07, + "hashanah": 2e-07, + "hastening": 2e-07, + "hbr": 2e-07, + "headwind": 2e-07, + "hernandezs": 2e-07, + "hertha": 2e-07, + "hgv": 2e-07, + "hinterlands": 2e-07, + "hitchin": 2e-07, + "hoch": 2e-07, + "holidaying": 2e-07, + "holl": 2e-07, + "hollandaise": 2e-07, + "holts": 8.13e-08, + "homesteading": 2e-07, + "hometowns": 2e-07, + "hoppe": 2e-07, + "hospices": 2e-07, + "howto": 2e-07, + "hsin": 2e-07, + "hte": 2e-07, + "hyder": 2e-07, + "hypochondriac": 2e-07, + "hywel": 2e-07, + "idler": 2e-07, + "ift": 2e-07, + "ignominy": 2e-07, + "immortalised": 2e-07, + "inaba": 2e-07, + "indisposed": 2e-07, + "inducible": 2e-07, + "inequitable": 2e-07, + "inputting": 2e-07, + "interlocked": 2e-07, + "internazionale": 2e-07, + "intracoastal": 2e-07, + "introversion": 2e-07, + "iol": 2e-07, + "irkutsk": 2e-07, + "irvington": 2e-07, + "itachi": 2e-07, + "ivanova": 2e-07, + "iwas": 2e-07, + "jacobus": 2e-07, + "jahn": 2e-07, + "jango": 2e-07, + "jarod": 2e-07, + "jav": 2e-07, + "javid": 2e-07, + "jjs": 5.25e-08, + "joana": 2e-07, + "joiners": 2e-07, + "jorah": 2e-07, + "jps": 7.24e-08, + "junaid": 2e-07, + "kaman": 2e-07, + "kars": 2e-07, + "kashmiris": 2e-07, + "kati": 2e-07, + "kaul": 2e-07, + "keele": 2e-07, + "keels": 2e-07, + "kees": 1.7e-08, + "kellers": 2e-07, + "kellner": 2e-07, + "kellyanne": 2e-07, + "kenta": 2e-07, + "keokuk": 2e-07, + "kerfuffle": 2e-07, + "khatib": 2e-07, + "kilroy": 2e-07, + "kindles": 2e-07, + "kissin": 2e-07, + "kivu": 2e-07, + "kleinman": 2e-07, + "ksc": 2e-07, + "kvm": 2e-07, + "kyun": 2e-07, + "lacazette": 2e-07, + "lanai": 2e-07, + "landscaper": 2e-07, + "laurentian": 2e-07, + "lautrec": 2e-07, + "layin": 2e-07, + "lehner": 2e-07, + "lensing": 2e-07, + "liberalized": 2e-07, + "lightens": 2e-07, + "lochs": 2e-07, + "loess": 2e-07, + "lom": 2e-07, + "longmire": 2e-07, + "loudmouth": 2e-07, + "lucic": 2e-07, + "lucile": 2e-07, + "lunt": 2e-07, + "macarons": 2e-07, + "magnesia": 2e-07, + "mammon": 2e-07, + "marke": 2e-07, + "martys": 2e-07, + "marvelled": 2e-07, + "marvelously": 2e-07, + "marxian": 2e-07, + "mascherano": 2e-07, + "massimiliano": 2e-07, + "mathewson": 2e-07, + "mathilda": 2e-07, + "mayers": 1.02e-07, + "mciver": 2e-07, + "mclain": 2e-07, + "menards": 2e-07, + "menezes": 2e-07, + "metamorphosed": 2e-07, + "mfp": 2e-07, + "microcomputer": 2e-07, + "microseconds": 2e-07, + "middleburg": 2e-07, + "midges": 2e-07, + "misinterpreting": 2e-07, + "mista": 2e-07, + "mkx": 2e-07, + "moccasin": 2e-07, + "moet": 2e-07, + "mohsen": 2e-07, + "monasticism": 2e-07, + "monoculture": 2e-07, + "montane": 2e-07, + "moonwalk": 2e-07, + "morrigan": 2e-07, + "motherf": 2e-07, + "mpr": 2e-07, + "mso": 2e-07, + "mtu": 2e-07, + "mulvey": 2e-07, + "mumbais": 2e-07, + "municipally": 2e-07, + "musselburgh": 2e-07, + "mwd": 2e-07, + "nakano": 2e-07, + "nansen": 2e-07, + "napped": 2e-07, + "nasties": 2e-07, + "natalies": 2e-07, + "nde": 2e-07, + "neals": 2e-07, + "neary": 2e-07, + "needlepoint": 2e-07, + "neuralgia": 2e-07, + "newscasts": 2e-07, + "niosh": 2e-07, + "nipper": 2e-07, + "nitrile": 2e-07, + "nkjv": 2e-07, + "noblesse": 2e-07, + "normandie": 2e-07, + "nortons": 2e-07, + "nosql": 2e-07, + "novosti": 2e-07, + "noy": 2e-07, + "nullifying": 2e-07, + "nuncio": 2e-07, + "nuova": 2e-07, + "nurtures": 2e-07, + "nvidias": 2e-07, + "oakleigh": 2e-07, + "obstructs": 2e-07, + "obtrusive": 2e-07, + "odins": 2e-07, + "ogling": 2e-07, + "oink": 2e-07, + "oligopoly": 2e-07, + "olympiakos": 2e-07, + "oocytes": 2e-07, + "openstack": 2e-07, + "opine": 2e-07, + "optimising": 2e-07, + "orde": 2e-07, + "orford": 2e-07, + "orienting": 2e-07, + "orland": 2e-07, + "orthographic": 2e-07, + "ostia": 2e-07, + "oswalds": 2e-07, + "othe": 2e-07, + "otolaryngology": 2e-07, + "overeat": 2e-07, + "overrode": 2e-07, + "paisa": 2e-07, + "palaeontology": 2e-07, + "palomar": 2e-07, + "pankaj": 2e-07, + "parfum": 2e-07, + "patisserie": 2e-07, + "pbt": 2e-07, + "peaceably": 2e-07, + "perishing": 2e-07, + "pernod": 2e-07, + "petticoats": 2e-07, + "philemon": 2e-07, + "photoelectric": 2e-07, + "photosensitive": 2e-07, + "photoshoots": 2e-07, + "phra": 2e-07, + "picot": 2e-07, + "pilasters": 2e-07, + "pileup": 2e-07, + "pincers": 2e-07, + "pincher": 2e-07, + "pinkman": 2e-07, + "piscataway": 2e-07, + "plainview": 2e-07, + "playwriting": 2e-07, + "plotlines": 2e-07, + "polanco": 2e-07, + "policemans": 2e-07, + "polytheism": 2e-07, + "pontoons": 2e-07, + "pooley": 2e-07, + "popeyes": 1.51e-07, + "portent": 2e-07, + "posers": 2e-07, + "poul": 2e-07, + "prana": 2e-07, + "prayerful": 2e-07, + "precipitates": 2e-07, + "predominates": 2e-07, + "prek": 2e-07, + "prepper": 2e-07, + "preselection": 2e-07, + "proffer": 2e-07, + "profiteers": 2e-07, + "prospectively": 2e-07, + "protozoa": 2e-07, + "provolone": 2e-07, + "prow": 2e-07, + "prunus": 2e-07, + "pyd": 2e-07, + "radamel": 2e-07, + "raincoats": 2e-07, + "raitt": 2e-07, + "ramsden": 2e-07, + "raper": 2e-07, + "rater": 2e-07, + "rcb": 2e-07, + "readin": 2e-07, + "reallocation": 2e-07, + "reassign": 2e-07, + "reconvened": 2e-07, + "redditch": 2e-07, + "redesigns": 2e-07, + "reductionist": 2e-07, + "reevaluation": 2e-07, + "regulus": 2e-07, + "rehydration": 2e-07, + "reigate": 2e-07, + "reined": 2e-07, + "rejoins": 2e-07, + "rekindling": 2e-07, + "reliquary": 2e-07, + "renderer": 2e-07, + "repopulate": 2e-07, + "republica": 2e-07, + "rerum": 2e-07, + "resisters": 2e-07, + "resourcing": 2e-07, + "retouched": 2e-07, + "reverberated": 2e-07, + "rha": 2e-07, + "rimming": 2e-07, + "rinne": 2e-07, + "rolo": 2e-07, + "romanticize": 2e-07, + "roomed": 2e-07, + "rosebery": 2e-07, + "roshi": 2e-07, + "rpf": 2e-07, + "rsm": 2e-07, + "rumen": 2e-07, + "russe": 2e-07, + "rustlers": 2e-07, + "ruthven": 2e-07, + "saco": 2e-07, + "sadc": 2e-07, + "salamis": 2e-07, + "samarkand": 2e-07, + "sammie": 2e-07, + "sangre": 2e-07, + "santoro": 2e-07, + "sardinian": 2e-07, + "sarita": 2e-07, + "sarwar": 2e-07, + "satsuki": 2e-07, + "saturating": 2e-07, + "sauk": 2e-07, + "sauls": 2e-07, + "scalpers": 2e-07, + "scarily": 2e-07, + "sched": 2e-07, + "schizoid": 2e-07, + "schoen": 2e-07, + "scholz": 2e-07, + "scientologist": 2e-07, + "screener": 2e-07, + "scrounge": 2e-07, + "scurried": 2e-07, + "seiji": 2e-07, + "seppuku": 2e-07, + "septembers": 2e-07, + "sepulveda": 2e-07, + "serenas": 2e-07, + "sext": 2e-07, + "seyfried": 2e-07, + "shapeshifting": 2e-07, + "shawarma": 2e-07, + "shelvey": 2e-07, + "shepards": 2e-07, + "shibata": 2e-07, + "shipmates": 2e-07, + "showa": 2e-07, + "shum": 2e-07, + "shutterstock": 2e-07, + "sicken": 2e-07, + "signups": 2e-07, + "simp": 2e-07, + "sinatras": 2e-07, + "sleeplessness": 2e-07, + "sleuthing": 2e-07, + "slumdog": 2e-07, + "smote": 2e-07, + "sockeye": 2e-07, + "sofitel": 2e-07, + "softwood": 2e-07, + "sojourner": 2e-07, + "solas": 2e-07, + "solicits": 2e-07, + "solus": 2e-07, + "soppy": 2e-07, + "soundboard": 2e-07, + "souped": 2e-07, + "souris": 2e-07, + "spaniels": 2e-07, + "spartak": 2e-07, + "ssri": 2e-07, + "starmer": 2e-07, + "steagall": 2e-07, + "steiger": 2e-07, + "stellas": 2e-07, + "sterilised": 2e-07, + "sterilizing": 2e-07, + "steroidal": 2e-07, + "stornoway": 2e-07, + "strafford": 2e-07, + "stranraer": 2e-07, + "stumpy": 2e-07, + "stupa": 2e-07, + "subcompact": 2e-07, + "subdural": 2e-07, + "submerging": 2e-07, + "subsp": 2e-07, + "succour": 2e-07, + "sulcus": 2e-07, + "suntrust": 2e-07, + "supa": 2e-07, + "superwoman": 2e-07, + "svensson": 2e-07, + "swc": 2e-07, + "swr": 2e-07, + "talcum": 2e-07, + "talksport": 2e-07, + "talmadge": 2e-07, + "tamp": 2e-07, + "teddys": 2e-07, + "telecaster": 2e-07, + "tepco": 2e-07, + "tepper": 2e-07, + "tetrahedron": 2e-07, + "thiem": 2e-07, + "thornberry": 2e-07, + "thorsten": 2e-07, + "thunderdome": 2e-07, + "thurrock": 2e-07, + "topiary": 2e-07, + "tota": 2e-07, + "tracheal": 2e-07, + "traill": 2e-07, + "trannies": 2e-07, + "transversely": 2e-07, + "trevino": 2e-07, + "tribunes": 9.55e-08, + "tricolour": 2e-07, + "trivially": 2e-07, + "turbos": 2e-07, + "turnabout": 2e-07, + "turnouts": 2e-07, + "twente": 2e-07, + "typ": 2e-07, + "ugandans": 2e-07, + "uist": 2e-07, + "ulbricht": 2e-07, + "understate": 2e-07, + "undistinguished": 2e-07, + "unfailingly": 2e-07, + "unobserved": 2e-07, + "unprincipled": 2e-07, + "unrepresented": 2e-07, + "unshakeable": 2e-07, + "unspeakably": 2e-07, + "unwound": 2e-07, + "upsc": 2e-07, + "upsides": 2e-07, + "usin": 2e-07, + "vampiric": 2e-07, + "vanda": 2e-07, + "vanek": 2e-07, + "vanes": 2e-07, + "vapours": 2e-07, + "vari": 2e-07, + "variational": 2e-07, + "vaux": 2e-07, + "vdc": 2e-07, + "velar": 2e-07, + "verbena": 2e-07, + "verdis": 2e-07, + "vigilantism": 2e-07, + "villegas": 2e-07, + "virtus": 2e-07, + "volkov": 2e-07, + "volpe": 2e-07, + "vvd": 2e-07, + "waals": 2e-07, + "wargames": 2e-07, + "warmups": 2e-07, + "washtenaw": 2e-07, + "weald": 2e-07, + "weingarten": 2e-07, + "weitz": 2e-07, + "wendi": 2e-07, + "westjet": 2e-07, + "whalley": 2e-07, + "wheatgrass": 2e-07, + "whitford": 2e-07, + "widener": 2e-07, + "wildes": 5.75e-08, + "windex": 2e-07, + "wladimir": 2e-07, + "wofford": 2e-07, + "wogan": 2e-07, + "woodchuck": 2e-07, + "wooldridge": 2e-07, + "wylde": 2e-07, + "xis": 8.13e-08, + "yaar": 2e-07, + "yogic": 2e-07, + "yugo": 2e-07, + "yuval": 2e-07, + "ziploc": 2e-07, + "zito": 2e-07, + "abled": 1.95e-07, + "aboot": 1.95e-07, + "acha": 1.95e-07, + "adana": 1.95e-07, + "admonish": 1.95e-07, + "adrianne": 1.95e-07, + "affectation": 1.95e-07, + "agger": 1.95e-07, + "akc": 1.95e-07, + "akuma": 1.95e-07, + "alessio": 1.95e-07, + "allston": 1.95e-07, + "allways": 1.95e-07, + "altarpiece": 1.95e-07, + "ambushing": 1.95e-07, + "andalucia": 1.95e-07, + "angeline": 1.95e-07, + "annotate": 1.95e-07, + "anther": 1.95e-07, + "anthers": 1.95e-07, + "applique": 1.95e-07, + "arak": 1.95e-07, + "arjen": 1.95e-07, + "arshad": 1.95e-07, + "artes": 1.95e-07, + "arusha": 1.95e-07, + "assi": 1.95e-07, + "atlus": 1.95e-07, + "audis": 1.07e-07, + "azteca": 1.95e-07, + "bachata": 1.95e-07, + "balancer": 1.95e-07, + "ballesteros": 1.95e-07, + "barham": 1.95e-07, + "basterds": 1.95e-07, + "basti": 1.95e-07, + "bathgate": 1.95e-07, + "bathwater": 1.95e-07, + "bauble": 1.95e-07, + "bayt": 1.95e-07, + "beall": 1.95e-07, + "bebo": 1.95e-07, + "bedazzled": 1.95e-07, + "bedfellows": 1.95e-07, + "beefcake": 1.95e-07, + "behrens": 1.95e-07, + "belen": 1.95e-07, + "bemoan": 1.95e-07, + "benet": 1.95e-07, + "bergkamp": 1.95e-07, + "berklee": 1.95e-07, + "bgp": 1.95e-07, + "bigwigs": 1.95e-07, + "billable": 1.95e-07, + "binney": 1.95e-07, + "bioterrorism": 1.95e-07, + "birches": 1.95e-07, + "birkbeck": 1.95e-07, + "bisected": 1.95e-07, + "blab": 1.95e-07, + "blakey": 1.95e-07, + "bleecker": 1.95e-07, + "blowfish": 1.95e-07, + "bogle": 1.95e-07, + "bogor": 1.95e-07, + "bondsman": 1.95e-07, + "bookmaking": 1.95e-07, + "boreholes": 1.95e-07, + "boruto": 1.95e-07, + "bosa": 1.95e-07, + "boseman": 1.95e-07, + "bosons": 1.95e-07, + "boult": 1.95e-07, + "bowker": 1.95e-07, + "boyden": 1.95e-07, + "brendans": 1.95e-07, + "broadsword": 1.95e-07, + "brogue": 1.95e-07, + "bta": 1.95e-07, + "buffeted": 1.95e-07, + "bulbasaur": 1.95e-07, + "buttigieg": 1.95e-07, + "cabeza": 1.95e-07, + "caddies": 1.95e-07, + "calvo": 1.95e-07, + "canby": 1.95e-07, + "cannibalistic": 1.95e-07, + "carissa": 1.95e-07, + "carti": 1.95e-07, + "carvers": 1.2e-07, + "casework": 1.95e-07, + "caulk": 1.95e-07, + "cct": 1.95e-07, + "cdcs": 5.01e-08, + "chancellery": 1.95e-07, + "chanson": 1.95e-07, + "chatrooms": 1.95e-07, + "chea": 1.95e-07, + "cherubs": 1.95e-07, + "chitchat": 1.95e-07, + "chittenden": 1.95e-07, + "chokehold": 1.95e-07, + "churros": 1.95e-07, + "cincinnatis": 1.95e-07, + "cinderellas": 1.95e-07, + "circ": 1.95e-07, + "clearings": 1.95e-07, + "cloying": 1.95e-07, + "coalescing": 1.95e-07, + "cobweb": 1.95e-07, + "coffs": 1.95e-07, + "collegium": 1.95e-07, + "colonialists": 1.95e-07, + "commodus": 1.95e-07, + "complementarity": 1.95e-07, + "compositing": 1.95e-07, + "conakry": 1.95e-07, + "connemara": 1.95e-07, + "conserves": 1.95e-07, + "conspires": 1.95e-07, + "coord": 1.95e-07, + "coram": 1.95e-07, + "corea": 1.95e-07, + "cored": 1.95e-07, + "counteracting": 1.95e-07, + "cowie": 1.95e-07, + "craic": 1.95e-07, + "credentialed": 1.95e-07, + "credulous": 1.95e-07, + "criminologist": 1.95e-07, + "crocheting": 1.95e-07, + "crossbody": 1.95e-07, + "crystallised": 1.95e-07, + "crystallographic": 1.95e-07, + "curvilinear": 1.95e-07, + "cush": 1.95e-07, + "cutts": 1.95e-07, + "cytosol": 1.95e-07, + "daiquiri": 1.95e-07, + "dalglish": 1.95e-07, + "damen": 1.95e-07, + "dauphine": 1.95e-07, + "debauched": 1.95e-07, + "dehydrate": 1.95e-07, + "delon": 1.95e-07, + "delong": 1.95e-07, + "demerara": 1.95e-07, + "demote": 1.95e-07, + "dependants": 1.95e-07, + "deportees": 1.95e-07, + "derisively": 1.95e-07, + "designee": 1.95e-07, + "despaired": 1.95e-07, + "deterrents": 1.95e-07, + "dfe": 1.95e-07, + "dga": 1.95e-07, + "digitizer": 1.95e-07, + "dims": 1.95e-07, + "dirksen": 1.95e-07, + "distributional": 1.95e-07, + "diwan": 1.95e-07, + "dlamini": 1.95e-07, + "doki": 1.95e-07, + "dpd": 1.95e-07, + "drafters": 1.95e-07, + "dropship": 1.95e-07, + "dsd": 1.95e-07, + "dstv": 1.95e-07, + "dualistic": 1.95e-07, + "ducted": 1.95e-07, + "duffys": 1.95e-07, + "dunwoody": 1.95e-07, + "dwt": 1.95e-07, + "dysfunctions": 1.95e-07, + "dzeko": 1.95e-07, + "edification": 1.95e-07, + "edwardsville": 1.95e-07, + "eeo": 1.95e-07, + "eet": 1.95e-07, + "efc": 1.95e-07, + "einen": 1.95e-07, + "electroshock": 1.95e-07, + "elem": 1.95e-07, + "eliots": 1.95e-07, + "elopement": 1.95e-07, + "elucidation": 1.95e-07, + "eman": 1.95e-07, + "embellishing": 1.95e-07, + "emmitt": 1.95e-07, + "enceladus": 1.95e-07, + "encirclement": 1.95e-07, + "endocarditis": 1.95e-07, + "enfants": 1.95e-07, + "epiphone": 1.95e-07, + "equestria": 1.95e-07, + "equivocation": 1.95e-07, + "erh": 1.95e-07, + "erlang": 1.95e-07, + "eschews": 1.95e-07, + "esher": 1.95e-07, + "estimators": 1.95e-07, + "estonians": 1.95e-07, + "eubank": 1.95e-07, + "evel": 1.95e-07, + "everthing": 1.95e-07, + "exemplifying": 1.95e-07, + "exhibitionism": 1.95e-07, + "extremis": 1.95e-07, + "eyeballing": 1.95e-07, + "fabricator": 1.95e-07, + "facemask": 1.95e-07, + "factionalism": 1.95e-07, + "fagin": 1.95e-07, + "fah": 1.95e-07, + "fahd": 1.95e-07, + "fak": 1.95e-07, + "falconry": 1.95e-07, + "fanclub": 1.95e-07, + "fanfics": 1.95e-07, + "fanservice": 1.95e-07, + "fbr": 1.95e-07, + "fecundity": 1.95e-07, + "fetid": 1.95e-07, + "ffc": 1.95e-07, + "ffffff": 1.95e-07, + "fica": 1.95e-07, + "fini": 1.95e-07, + "fishermens": 1.95e-07, + "fishmonger": 1.95e-07, + "fixings": 1.95e-07, + "flamethrowers": 1.95e-07, + "flapped": 1.95e-07, + "flatters": 1.95e-07, + "floodplains": 1.95e-07, + "fmv": 1.95e-07, + "foiling": 1.95e-07, + "forasmuch": 1.95e-07, + "foreknowledge": 1.95e-07, + "foxboro": 1.95e-07, + "fretboard": 1.95e-07, + "friedel": 1.95e-07, + "frisch": 1.95e-07, + "frisian": 1.95e-07, + "frosh": 1.95e-07, + "fss": 1.95e-07, + "fuckhead": 1.95e-07, + "fujimori": 1.95e-07, + "furtado": 1.95e-07, + "fz": 1.95e-07, + "gacy": 1.95e-07, + "gae": 1.95e-07, + "garrard": 1.95e-07, + "gatineau": 1.95e-07, + "gearboxes": 1.95e-07, + "generalissimo": 1.95e-07, + "geralt": 1.95e-07, + "ghandi": 1.95e-07, + "glycosylation": 1.95e-07, + "glyndebourne": 1.95e-07, + "gook": 1.95e-07, + "gopi": 1.95e-07, + "gori": 1.95e-07, + "goy": 1.95e-07, + "gree": 1.95e-07, + "griffen": 1.95e-07, + "groff": 1.95e-07, + "groundnut": 1.95e-07, + "groundswell": 1.95e-07, + "grump": 1.95e-07, + "gyros": 1.95e-07, + "hags": 1.95e-07, + "hamden": 1.95e-07, + "haploid": 1.95e-07, + "havers": 1.95e-07, + "hawn": 1.95e-07, + "hearken": 1.95e-07, + "hegarty": 1.95e-07, + "henk": 1.95e-07, + "hersey": 1.95e-07, + "hiragana": 1.95e-07, + "histrionic": 1.95e-07, + "hoary": 1.95e-07, + "hoffenheim": 1.95e-07, + "homebase": 1.95e-07, + "homos": 1.95e-07, + "hoodlum": 1.95e-07, + "hoody": 1.95e-07, + "hpe": 1.95e-07, + "hydrogel": 1.95e-07, + "hyperloop": 1.95e-07, + "icebreakers": 1.95e-07, + "iet": 1.95e-07, + "iger": 1.95e-07, + "ihe": 1.95e-07, + "ilse": 1.95e-07, + "imad": 1.95e-07, + "immensity": 1.95e-07, + "impersonations": 1.95e-07, + "impregnating": 1.95e-07, + "improbably": 1.95e-07, + "imputation": 1.95e-07, + "inculcate": 1.95e-07, + "indole": 1.95e-07, + "ingratitude": 1.95e-07, + "inheritors": 1.95e-07, + "integrally": 1.95e-07, + "intelligibility": 1.95e-07, + "interlocutors": 1.95e-07, + "internalization": 1.95e-07, + "interoperable": 1.95e-07, + "intransigent": 1.95e-07, + "involvements": 1.95e-07, + "ipas": 5.75e-08, + "irascible": 1.95e-07, + "iro": 1.95e-07, + "iru": 1.95e-07, + "isdn": 1.95e-07, + "iwa": 1.95e-07, + "izzard": 1.95e-07, + "jacinta": 1.95e-07, + "jacketed": 1.95e-07, + "jacopo": 1.95e-07, + "jammies": 1.95e-07, + "jangling": 1.95e-07, + "jann": 1.95e-07, + "jansson": 1.95e-07, + "jeered": 1.95e-07, + "jerrold": 1.95e-07, + "jilly": 1.95e-07, + "jockeying": 1.95e-07, + "jolts": 1.95e-07, + "jussi": 1.95e-07, + "kaep": 1.95e-07, + "kailua": 1.95e-07, + "kaji": 1.95e-07, + "kalle": 1.95e-07, + "karas": 1.23e-07, + "karolinska": 1.95e-07, + "katherines": 1.95e-07, + "katsu": 1.95e-07, + "kaw": 1.95e-07, + "kcl": 1.95e-07, + "keenum": 1.95e-07, + "kennington": 1.95e-07, + "kfar": 1.95e-07, + "kochs": 1.62e-07, + "kogi": 1.95e-07, + "kongo": 1.95e-07, + "krampus": 1.95e-07, + "kurzweil": 1.95e-07, + "kyc": 1.95e-07, + "lading": 1.95e-07, + "langue": 1.95e-07, + "largemouth": 1.95e-07, + "larrabee": 1.95e-07, + "laundries": 1.95e-07, + "lavelle": 1.95e-07, + "layups": 1.95e-07, + "leafed": 1.95e-07, + "legalities": 1.95e-07, + "leighs": 1.95e-07, + "leroux": 1.95e-07, + "leukocyte": 1.95e-07, + "liberates": 1.95e-07, + "liberman": 1.95e-07, + "lii": 1.95e-07, + "lindner": 1.95e-07, + "linley": 1.95e-07, + "lipase": 1.95e-07, + "lippi": 1.95e-07, + "lithographic": 1.95e-07, + "livewire": 1.95e-07, + "llm": 1.95e-07, + "lmg": 1.95e-07, + "lollies": 1.95e-07, + "loro": 1.95e-07, + "lovelock": 1.95e-07, + "lunching": 1.95e-07, + "lusitania": 1.95e-07, + "lynton": 1.95e-07, + "macadam": 1.95e-07, + "macromolecules": 1.95e-07, + "madinah": 1.95e-07, + "mafioso": 1.95e-07, + "magnetometer": 1.95e-07, + "magnitsky": 1.95e-07, + "mahalo": 1.95e-07, + "mahoning": 1.95e-07, + "maintainers": 1.95e-07, + "malema": 1.95e-07, + "maliks": 1.95e-07, + "manufactory": 1.95e-07, + "marcela": 1.95e-07, + "maree": 1.95e-07, + "marimba": 1.95e-07, + "marly": 1.95e-07, + "martialed": 1.95e-07, + "marton": 1.95e-07, + "marwick": 1.95e-07, + "marymount": 1.95e-07, + "matin": 1.95e-07, + "mattia": 1.95e-07, + "maumee": 1.95e-07, + "mauritanian": 1.95e-07, + "mbas": 1.95e-07, + "mcnamee": 1.95e-07, + "meatpacking": 1.95e-07, + "medians": 1.95e-07, + "melendez": 1.95e-07, + "memoria": 1.95e-07, + "menaced": 1.95e-07, + "mephisto": 1.95e-07, + "mercure": 1.95e-07, + "mestizo": 1.95e-07, + "mgh": 1.95e-07, + "michaelmas": 1.95e-07, + "microrna": 1.95e-07, + "microwaved": 1.95e-07, + "midyear": 1.95e-07, + "millan": 1.95e-07, + "minesweeper": 1.95e-07, + "minnetonka": 1.95e-07, + "miscegenation": 1.95e-07, + "misogynists": 1.95e-07, + "mkr": 1.95e-07, + "mnuchin": 1.95e-07, + "monumentally": 1.95e-07, + "moree": 1.95e-07, + "morne": 1.95e-07, + "mortification": 1.95e-07, + "mucky": 1.95e-07, + "mudder": 1.95e-07, + "musee": 1.95e-07, + "musgrove": 1.95e-07, + "mustafi": 1.95e-07, + "mycenaean": 1.95e-07, + "myo": 1.95e-07, + "naca": 1.95e-07, + "nacht": 1.95e-07, + "nagato": 1.95e-07, + "nasheed": 1.95e-07, + "nationalize": 1.95e-07, + "nazar": 1.95e-07, + "nels": 1.95e-07, + "newbold": 1.95e-07, + "newfangled": 1.95e-07, + "nflpa": 1.95e-07, + "nieves": 1.95e-07, + "nigella": 1.95e-07, + "ningbo": 1.95e-07, + "nissans": 5.01e-08, + "nittany": 1.95e-07, + "nobunaga": 1.95e-07, + "nonstick": 1.95e-07, + "nontrivial": 1.95e-07, + "notley": 1.95e-07, + "npv": 1.95e-07, + "ntu": 1.95e-07, + "numerator": 1.95e-07, + "nuthin": 1.95e-07, + "nutjob": 1.95e-07, + "nutritive": 1.95e-07, + "oberst": 1.95e-07, + "objectify": 1.95e-07, + "oceanographer": 1.95e-07, + "offscreen": 1.95e-07, + "ogdensburg": 1.95e-07, + "ohana": 1.95e-07, + "ois": 1.95e-07, + "omelettes": 1.95e-07, + "oncogene": 1.95e-07, + "ontologies": 1.95e-07, + "orem": 1.95e-07, + "orhan": 1.95e-07, + "oshie": 1.95e-07, + "othman": 1.95e-07, + "outrigger": 1.95e-07, + "overestimating": 1.95e-07, + "overstuffed": 1.95e-07, + "padukone": 1.95e-07, + "palomino": 1.95e-07, + "pancetta": 1.95e-07, + "pappus": 1.07e-08, + "parlours": 1.95e-07, + "pawnbroker": 1.95e-07, + "payee": 1.95e-07, + "peaty": 1.95e-07, + "pedantry": 1.95e-07, + "pedros": 1.95e-07, + "peltier": 1.95e-07, + "perigee": 1.95e-07, + "pervaded": 1.95e-07, + "pesetas": 1.95e-07, + "phenix": 1.95e-07, + "phenylalanine": 1.95e-07, + "phono": 1.95e-07, + "photocopied": 1.95e-07, + "pinkney": 1.95e-07, + "pinwheel": 1.95e-07, + "pinyin": 1.95e-07, + "piri": 1.95e-07, + "pitstop": 1.95e-07, + "playability": 1.95e-07, + "plexiglass": 1.95e-07, + "poignantly": 1.95e-07, + "poona": 1.95e-07, + "populating": 1.95e-07, + "postsynaptic": 1.95e-07, + "poynter": 1.95e-07, + "practicum": 1.95e-07, + "preceptor": 1.95e-07, + "prefects": 1.95e-07, + "preloaded": 1.95e-07, + "pressurization": 1.95e-07, + "profuse": 1.95e-07, + "promulgate": 1.95e-07, + "prosody": 1.95e-07, + "proteolytic": 1.95e-07, + "prudish": 1.95e-07, + "psychically": 1.95e-07, + "pterodactyl": 1.95e-07, + "ptp": 1.95e-07, + "pulau": 1.95e-07, + "pullen": 1.95e-07, + "pulsars": 1.95e-07, + "puna": 1.95e-07, + "quesadillas": 1.95e-07, + "quranic": 1.26e-07, + "radiofrequency": 1.95e-07, + "rafiq": 1.95e-07, + "raipur": 1.95e-07, + "raksha": 1.95e-07, + "rammstein": 1.95e-07, + "randys": 1.95e-07, + "rappahannock": 1.95e-07, + "rasping": 1.95e-07, + "ratting": 1.95e-07, + "reasserted": 1.95e-07, + "recognizance": 1.95e-07, + "recoiled": 1.95e-07, + "recriminations": 1.95e-07, + "redaction": 1.95e-07, + "redden": 1.95e-07, + "redid": 1.95e-07, + "redolent": 1.95e-07, + "reestablishing": 1.95e-07, + "refectory": 1.95e-07, + "regia": 1.95e-07, + "rehoboth": 1.95e-07, + "rendell": 1.95e-07, + "retooled": 1.95e-07, + "reveled": 1.95e-07, + "reverberate": 1.95e-07, + "rhizomes": 1.95e-07, + "ribbentrop": 1.95e-07, + "ringworm": 1.95e-07, + "riveras": 1.95e-07, + "robredo": 1.95e-07, + "rogerson": 1.95e-07, + "rohrabacher": 1.95e-07, + "romagna": 1.95e-07, + "ronde": 1.95e-07, + "roofer": 1.95e-07, + "rossum": 1.95e-07, + "rrb": 1.95e-07, + "rumination": 1.95e-07, + "sago": 1.95e-07, + "samaj": 1.95e-07, + "sampdoria": 1.95e-07, + "sania": 1.95e-07, + "sattler": 1.95e-07, + "scharf": 1.95e-07, + "schoolteachers": 1.95e-07, + "scornful": 1.95e-07, + "scrunch": 1.95e-07, + "scull": 1.95e-07, + "secretes": 1.95e-07, + "secularists": 1.95e-07, + "sella": 1.95e-07, + "serhiy": 1.95e-07, + "serous": 1.95e-07, + "sfi": 1.95e-07, + "sfv": 1.95e-07, + "shanties": 1.95e-07, + "shawns": 1.95e-07, + "shepparton": 1.95e-07, + "shhhhh": 1.95e-07, + "shirking": 1.95e-07, + "shitstorm": 1.95e-07, + "shp": 1.95e-07, + "shula": 1.95e-07, + "signposted": 1.95e-07, + "sklar": 1.95e-07, + "slippy": 1.95e-07, + "slovene": 1.95e-07, + "smallholder": 1.95e-07, + "smarting": 1.95e-07, + "smidgen": 1.95e-07, + "smurfette": 1.95e-07, + "snitched": 1.95e-07, + "sods": 1.95e-07, + "sok": 1.95e-07, + "sondra": 1.95e-07, + "songstress": 1.95e-07, + "sorter": 1.95e-07, + "southsea": 1.95e-07, + "sparc": 1.95e-07, + "sparklers": 1.95e-07, + "spirituals": 1.95e-07, + "spitalfields": 1.95e-07, + "spouted": 1.95e-07, + "squamish": 1.95e-07, + "squib": 1.95e-07, + "starrer": 1.95e-07, + "statler": 1.95e-07, + "steadier": 1.95e-07, + "steerage": 1.95e-07, + "stepford": 1.95e-07, + "stereos": 1.95e-07, + "stillwell": 1.95e-07, + "structuralism": 1.95e-07, + "stylishly": 1.95e-07, + "suey": 1.95e-07, + "sumi": 1.95e-07, + "sundar": 1.95e-07, + "sunless": 1.95e-07, + "superfan": 1.95e-07, + "susa": 1.95e-07, + "swathe": 1.95e-07, + "swordsmen": 1.95e-07, + "synchronisation": 1.95e-07, + "synonymy": 1.95e-07, + "syriza": 1.95e-07, + "tabata": 1.95e-07, + "taff": 1.95e-07, + "taffeta": 1.95e-07, + "tangerines": 1.95e-07, + "tapir": 1.95e-07, + "tapp": 1.95e-07, + "tci": 1.95e-07, + "teck": 1.95e-07, + "tegucigalpa": 1.95e-07, + "teheran": 1.95e-07, + "telemundo": 1.95e-07, + "teleports": 1.95e-07, + "tengo": 1.95e-07, + "terrill": 1.95e-07, + "tfr": 1.95e-07, + "theorie": 1.95e-07, + "thinners": 1.95e-07, + "thomasville": 1.95e-07, + "thome": 1.95e-07, + "thruway": 1.95e-07, + "tiaras": 1.95e-07, + "tibor": 1.95e-07, + "timms": 1.95e-07, + "titos": 1.95e-07, + "toney": 1.95e-07, + "tonite": 1.95e-07, + "torsional": 1.95e-07, + "tracie": 1.95e-07, + "triathletes": 1.95e-07, + "trigeminal": 1.95e-07, + "trin": 1.95e-07, + "troon": 1.95e-07, + "twains": 1.95e-07, + "twiddling": 1.95e-07, + "tydfil": 1.95e-07, + "tze": 1.95e-07, + "ubiquitin": 1.95e-07, + "ucr": 1.95e-07, + "uda": 1.95e-07, + "udder": 1.95e-07, + "udi": 1.95e-07, + "ueda": 1.95e-07, + "ulloa": 1.95e-07, + "unaudited": 1.95e-07, + "uncategorized": 1.95e-07, + "uncoupling": 1.95e-07, + "undernourished": 1.95e-07, + "unequally": 1.95e-07, + "unforgiven": 1.95e-07, + "unleavened": 1.95e-07, + "unquestioning": 1.95e-07, + "unripe": 1.95e-07, + "unseasonably": 1.95e-07, + "unstated": 1.95e-07, + "unwinnable": 1.95e-07, + "vaclav": 1.95e-07, + "varley": 1.95e-07, + "vasa": 1.95e-07, + "vasculitis": 1.95e-07, + "vce": 1.95e-07, + "ventilate": 1.95e-07, + "verner": 1.95e-07, + "veronicas": 1.17e-07, + "vies": 1.95e-07, + "vijayawada": 1.95e-07, + "violinists": 1.95e-07, + "votre": 1.95e-07, + "vrs": 1.95e-07, + "waken": 1.95e-07, + "walley": 1.95e-07, + "wdc": 1.95e-07, + "welled": 1.95e-07, + "werder": 1.95e-07, + "werke": 1.95e-07, + "whataburger": 1.95e-07, + "whinging": 1.95e-07, + "whitelaw": 1.95e-07, + "wiggin": 1.95e-07, + "windbreaker": 1.95e-07, + "winstone": 1.95e-07, + "winx": 1.95e-07, + "wj": 1.95e-07, + "wonk": 1.95e-07, + "woooo": 1.95e-07, + "workbooks": 1.95e-07, + "wpp": 1.95e-07, + "wraiths": 1.95e-07, + "wringer": 1.95e-07, + "wrinkling": 1.95e-07, + "writeup": 1.95e-07, + "xiong": 1.95e-07, + "yankton": 1.95e-07, + "yeezys": 1.95e-07, + "yim": 1.95e-07, + "yobe": 1.95e-07, + "yossi": 1.95e-07, + "yuuki": 1.95e-07, + "yuvraj": 1.95e-07, + "zeman": 1.95e-07, + "zhuang": 1.95e-07, + "zwischen": 1.95e-07, + "aab": 1.91e-07, + "abaddon": 1.91e-07, + "abbasi": 1.91e-07, + "abbi": 1.91e-07, + "abergavenny": 1.91e-07, + "abhors": 1.91e-07, + "accelerometers": 1.91e-07, + "achille": 1.91e-07, + "adina": 1.91e-07, + "adulterers": 1.91e-07, + "adventists": 1.91e-07, + "aftereffects": 1.91e-07, + "agata": 1.91e-07, + "aggregators": 1.91e-07, + "agin": 1.91e-07, + "ainge": 1.91e-07, + "ajmer": 1.91e-07, + "akmal": 1.91e-07, + "alfreds": 1.91e-07, + "alim": 1.91e-07, + "alpharetta": 1.91e-07, + "aniline": 1.91e-07, + "anklet": 1.91e-07, + "anteater": 1.91e-07, + "antihero": 1.91e-07, + "antitank": 1.91e-07, + "applicators": 1.91e-07, + "aqi": 1.91e-07, + "arxiv": 1.91e-07, + "asch": 1.91e-07, + "ashutosh": 1.91e-07, + "aspersions": 1.91e-07, + "athene": 1.91e-07, + "aurangzeb": 1.91e-07, + "autoplay": 1.91e-07, + "awacs": 1.91e-07, + "ayah": 1.91e-07, + "aylmer": 1.91e-07, + "babette": 1.91e-07, + "bache": 1.91e-07, + "backwardness": 1.91e-07, + "bads": 9.33e-08, + "balto": 1.91e-07, + "barakat": 1.91e-07, + "barros": 1.91e-07, + "bartered": 1.91e-07, + "baselines": 1.91e-07, + "batson": 1.91e-07, + "beanies": 1.91e-07, + "belair": 1.91e-07, + "belial": 1.91e-07, + "bellicose": 1.91e-07, + "berner": 1.91e-07, + "besting": 1.91e-07, + "bexhill": 1.91e-07, + "bicameral": 1.91e-07, + "biogeography": 1.91e-07, + "biomed": 1.91e-07, + "birthrate": 1.91e-07, + "biscay": 1.91e-07, + "bitsy": 1.91e-07, + "biya": 1.91e-07, + "blakeney": 1.91e-07, + "blotch": 1.91e-07, + "bonar": 1.91e-07, + "bonehead": 1.91e-07, + "bonhoeffer": 1.91e-07, + "bons": 1.91e-07, + "booz": 1.91e-07, + "borel": 1.91e-07, + "bostock": 1.91e-07, + "bravos": 1.26e-07, + "brazzers": 1.91e-07, + "breaux": 1.91e-07, + "bridgetown": 1.91e-07, + "broadwater": 1.91e-07, + "bronfman": 1.91e-07, + "brushstrokes": 1.91e-07, + "bsnl": 1.91e-07, + "bullen": 1.91e-07, + "bumi": 1.91e-07, + "bunkhouse": 1.91e-07, + "bushido": 1.91e-07, + "bvb": 1.91e-07, + "byun": 1.91e-07, + "cabled": 1.91e-07, + "calabrese": 1.91e-07, + "callousness": 1.91e-07, + "cambridges": 1.91e-07, + "cantos": 1.91e-07, + "canuck": 1.91e-07, + "capistrano": 1.91e-07, + "carolingian": 1.91e-07, + "cassis": 1.91e-07, + "categorise": 1.91e-07, + "categorizes": 1.91e-07, + "cbj": 1.91e-07, + "chafed": 1.91e-07, + "changelog": 1.91e-07, + "chantel": 1.91e-07, + "chek": 1.91e-07, + "chemie": 1.91e-07, + "cheval": 1.91e-07, + "chinks": 1.91e-07, + "chosun": 1.91e-07, + "christinas": 1.91e-07, + "cigna": 1.91e-07, + "claridge": 1.91e-07, + "clg": 1.91e-07, + "clobber": 1.91e-07, + "clothier": 1.91e-07, + "coattails": 1.91e-07, + "cochabamba": 1.91e-07, + "cockpits": 1.91e-07, + "codeword": 1.91e-07, + "coleen": 1.91e-07, + "collinson": 1.91e-07, + "comorbid": 1.91e-07, + "confit": 1.91e-07, + "conglomeration": 1.91e-07, + "connotes": 1.91e-07, + "conscientiousness": 1.91e-07, + "considine": 1.91e-07, + "consignments": 1.91e-07, + "consignor": 1.91e-07, + "contrivance": 1.91e-07, + "conversed": 1.91e-07, + "convos": 1.91e-07, + "copperhead": 1.91e-07, + "coriolis": 1.91e-07, + "cormack": 1.91e-07, + "corpsman": 1.91e-07, + "correia": 1.91e-07, + "cortese": 1.91e-07, + "costlier": 1.91e-07, + "courtneys": 1.91e-07, + "crb": 1.91e-07, + "creech": 1.91e-07, + "creepier": 1.91e-07, + "creoles": 1.91e-07, + "crisscross": 1.91e-07, + "crowdfunded": 1.91e-07, + "ctp": 1.91e-07, + "cultivator": 1.91e-07, + "curlew": 1.91e-07, + "cytosolic": 1.91e-07, + "dahlias": 1.91e-07, + "debaters": 1.91e-07, + "decelerate": 1.91e-07, + "declassification": 1.91e-07, + "degrom": 1.91e-07, + "denigrated": 1.91e-07, + "devoe": 1.91e-07, + "dexterous": 1.91e-07, + "didcot": 1.91e-07, + "dieters": 1.91e-07, + "digitize": 1.91e-07, + "digoxin": 1.91e-07, + "dilettante": 1.91e-07, + "disenfranchise": 1.91e-07, + "disfiguring": 1.91e-07, + "disinclined": 1.91e-07, + "divines": 1.91e-07, + "dogshit": 1.91e-07, + "donelson": 1.91e-07, + "dorothys": 1.91e-07, + "dorsally": 1.91e-07, + "downpayment": 1.91e-07, + "dragonite": 1.91e-07, + "dreamworld": 1.91e-07, + "drescher": 1.91e-07, + "dth": 1.91e-07, + "dualshock": 1.91e-07, + "duodenum": 1.91e-07, + "durin": 1.91e-07, + "dushanbe": 1.91e-07, + "dusts": 1.91e-07, + "dwelled": 1.91e-07, + "dyno": 1.91e-07, + "eagan": 1.91e-07, + "ebc": 1.91e-07, + "echocardiography": 1.91e-07, + "eckhardt": 1.91e-07, + "eckstein": 1.91e-07, + "effacing": 1.91e-07, + "egotism": 1.91e-07, + "eichel": 1.91e-07, + "eilish": 1.91e-07, + "ells": 1.91e-07, + "elsas": 1.91e-07, + "elytra": 1.91e-07, + "emanuele": 1.91e-07, + "embargoes": 1.91e-07, + "emotes": 1.91e-07, + "empath": 1.91e-07, + "encircles": 1.91e-07, + "endothelium": 1.91e-07, + "enola": 1.91e-07, + "enraptured": 1.91e-07, + "ensnare": 1.91e-07, + "ergodic": 1.91e-07, + "ery": 1.91e-07, + "esh": 1.91e-07, + "eventhough": 1.91e-07, + "ewww": 1.91e-07, + "exalts": 1.91e-07, + "explainable": 1.91e-07, + "expressionless": 1.91e-07, + "extruder": 1.91e-07, + "fangio": 1.91e-07, + "fanzine": 1.91e-07, + "farfetched": 1.91e-07, + "fatalistic": 1.91e-07, + "fathead": 1.91e-07, + "favelas": 1.91e-07, + "fawad": 1.91e-07, + "fct": 1.91e-07, + "federica": 1.91e-07, + "ffxv": 1.91e-07, + "fiercer": 1.91e-07, + "fillon": 1.91e-07, + "finis": 1.91e-07, + "finna": 1.91e-07, + "finned": 1.91e-07, + "fischers": 1.91e-07, + "flsa": 1.91e-07, + "foisted": 1.91e-07, + "fok": 1.91e-07, + "foll": 1.91e-07, + "foreshadows": 1.91e-07, + "fount": 1.91e-07, + "fountainhead": 1.91e-07, + "fov": 1.91e-07, + "franchisor": 1.91e-07, + "frappuccino": 1.91e-07, + "fricken": 1.91e-07, + "frumpy": 1.91e-07, + "fuckable": 1.91e-07, + "fujii": 1.91e-07, + "funhouse": 1.91e-07, + "funnest": 1.91e-07, + "gaddafis": 1.91e-07, + "gaels": 1.91e-07, + "gainsbourg": 1.91e-07, + "gamba": 1.91e-07, + "garp": 1.91e-07, + "gasquet": 1.91e-07, + "gauntlets": 1.91e-07, + "gawler": 1.91e-07, + "genealogists": 1.91e-07, + "gillman": 1.91e-07, + "giotto": 1.91e-07, + "gladiatorial": 1.91e-07, + "glioma": 1.91e-07, + "globus": 1.91e-07, + "goalscorers": 1.91e-07, + "gondolas": 1.91e-07, + "gooden": 1.91e-07, + "gosselin": 1.91e-07, + "gotha": 1.91e-07, + "gracilis": 1.91e-07, + "graco": 1.91e-07, + "granderson": 1.91e-07, + "grandstands": 1.91e-07, + "gratify": 1.91e-07, + "grift": 1.91e-07, + "grigory": 1.91e-07, + "grovel": 1.91e-07, + "grunted": 1.91e-07, + "gujrat": 1.91e-07, + "gwb": 1.91e-07, + "haase": 1.91e-07, + "habermas": 1.91e-07, + "haemoglobin": 1.91e-07, + "hakuna": 1.91e-07, + "hali": 1.91e-07, + "handa": 1.91e-07, + "handrails": 1.91e-07, + "hannay": 1.91e-07, + "harmonisation": 1.91e-07, + "hastert": 1.91e-07, + "hayter": 1.91e-07, + "headwinds": 1.91e-07, + "heartened": 1.91e-07, + "heathers": 1.58e-07, + "hepatocellular": 1.91e-07, + "hfcs": 1.91e-07, + "hii": 1.91e-07, + "hillis": 1.91e-07, + "hls": 1.91e-07, + "hofstadter": 1.91e-07, + "homecare": 1.91e-07, + "hoodwinked": 1.91e-07, + "horticulturist": 1.91e-07, + "howson": 1.91e-07, + "hullabaloo": 1.91e-07, + "hulled": 1.91e-07, + "humayun": 1.91e-07, + "hunches": 1.91e-07, + "huskers": 1.91e-07, + "huss": 1.91e-07, + "huxtable": 1.91e-07, + "hyattsville": 1.91e-07, + "hydroxylase": 1.91e-07, + "hygienists": 1.91e-07, + "hyperlinks": 1.91e-07, + "hypoallergenic": 1.91e-07, + "icarly": 1.91e-07, + "icici": 1.91e-07, + "idr": 1.91e-07, + "immobilization": 1.91e-07, + "immuno": 1.91e-07, + "impingement": 1.91e-07, + "imprimatur": 1.91e-07, + "inbev": 1.91e-07, + "incan": 1.91e-07, + "incarnated": 1.91e-07, + "incentivized": 1.91e-07, + "incinerators": 1.91e-07, + "inspiron": 1.91e-07, + "intelsat": 1.91e-07, + "internecine": 1.91e-07, + "intertwine": 1.91e-07, + "invalidates": 1.91e-07, + "invitees": 1.91e-07, + "irretrievably": 1.91e-07, + "isola": 1.91e-07, + "ivans": 1.91e-07, + "jacko": 1.91e-07, + "jangle": 1.91e-07, + "janusz": 1.91e-07, + "jaxx": 1.91e-07, + "jds": 1.2e-07, + "jedediah": 1.91e-07, + "jefe": 1.91e-07, + "jellybean": 1.91e-07, + "jenners": 6.03e-08, + "jere": 1.91e-07, + "jeri": 1.91e-07, + "jermain": 1.91e-07, + "jiji": 1.91e-07, + "joaquim": 1.91e-07, + "joly": 1.91e-07, + "jozef": 1.91e-07, + "judean": 1.91e-07, + "judicially": 1.91e-07, + "judys": 1.91e-07, + "jumbotron": 1.91e-07, + "kafir": 1.91e-07, + "kanazawa": 1.91e-07, + "karnak": 1.91e-07, + "karoo": 1.91e-07, + "kasumi": 1.91e-07, + "keitel": 1.91e-07, + "khadija": 1.91e-07, + "kingly": 1.91e-07, + "kitchenware": 1.91e-07, + "kody": 1.91e-07, + "koop": 1.91e-07, + "kora": 1.91e-07, + "koren": 1.91e-07, + "koss": 1.91e-07, + "krantz": 1.91e-07, + "kress": 1.91e-07, + "kumars": 1.91e-07, + "kurts": 1.91e-07, + "kwara": 1.91e-07, + "labo": 1.91e-07, + "laboriously": 1.91e-07, + "lacerated": 1.91e-07, + "lagers": 1.91e-07, + "lameness": 1.91e-07, + "lamprey": 1.91e-07, + "lariat": 1.91e-07, + "layperson": 1.91e-07, + "leatherhead": 1.91e-07, + "lense": 1.91e-07, + "leonor": 1.91e-07, + "levene": 1.91e-07, + "levenson": 1.91e-07, + "lightsabers": 1.91e-07, + "limehouse": 1.91e-07, + "linke": 1.91e-07, + "littlewood": 1.91e-07, + "liveliness": 1.91e-07, + "lls": 1.91e-07, + "lmc": 1.91e-07, + "lns": 1.91e-07, + "loathes": 1.91e-07, + "lobbing": 1.91e-07, + "lockstep": 1.91e-07, + "lordes": 1.91e-07, + "lorrie": 1.91e-07, + "louisvilles": 1.91e-07, + "ltp": 1.91e-07, + "lucious": 1.91e-07, + "lyfe": 1.91e-07, + "lysosomal": 1.91e-07, + "macready": 1.91e-07, + "madd": 1.91e-07, + "madhuri": 1.91e-07, + "madiba": 1.91e-07, + "magdeburg": 1.91e-07, + "maharajah": 1.91e-07, + "mainsail": 1.91e-07, + "maire": 1.91e-07, + "maldon": 1.91e-07, + "mannerism": 1.91e-07, + "mannion": 1.91e-07, + "marden": 1.91e-07, + "marquardt": 1.91e-07, + "marshalled": 1.91e-07, + "martinsburg": 1.91e-07, + "mashups": 1.91e-07, + "matz": 1.91e-07, + "maximums": 1.91e-07, + "maye": 1.91e-07, + "mcclendon": 1.91e-07, + "mccready": 1.91e-07, + "mcgann": 1.91e-07, + "mckesson": 1.91e-07, + "mckim": 1.91e-07, + "mcnuggets": 1.91e-07, + "meissner": 1.91e-07, + "melange": 1.91e-07, + "melly": 1.91e-07, + "menage": 1.91e-07, + "mende": 1.91e-07, + "merion": 1.91e-07, + "messner": 1.91e-07, + "metatron": 1.91e-07, + "metra": 1.91e-07, + "metropole": 1.91e-07, + "micromanage": 1.91e-07, + "millinery": 1.91e-07, + "millman": 1.91e-07, + "minting": 1.91e-07, + "mireille": 1.91e-07, + "mishmash": 1.91e-07, + "misplace": 1.91e-07, + "mizoram": 1.91e-07, + "mkv": 1.91e-07, + "mlbs": 1.91e-07, + "moieties": 1.91e-07, + "mollusk": 1.91e-07, + "monero": 1.91e-07, + "moneymaker": 1.91e-07, + "monfils": 1.91e-07, + "montagne": 1.91e-07, + "morpheme": 1.91e-07, + "morphemes": 1.91e-07, + "moskva": 1.91e-07, + "moura": 1.91e-07, + "mouses": 6.46e-08, + "mtm": 1.91e-07, + "mto": 1.91e-07, + "muffle": 1.91e-07, + "multiethnic": 1.91e-07, + "multiplexed": 1.91e-07, + "mundt": 1.91e-07, + "murrayfield": 1.91e-07, + "mycorrhizal": 1.91e-07, + "nadeem": 1.91e-07, + "nadph": 1.91e-07, + "nahi": 1.91e-07, + "nanas": 6.92e-08, + "nanowires": 1.91e-07, + "narwhal": 1.91e-07, + "nathanson": 1.91e-07, + "necker": 1.91e-07, + "neonates": 1.91e-07, + "neurosurgical": 1.91e-07, + "nge": 1.91e-07, + "niccolo": 1.91e-07, + "niet": 1.91e-07, + "nixed": 1.91e-07, + "nomine": 1.91e-07, + "nondiscrimination": 1.91e-07, + "nordisk": 1.91e-07, + "novembers": 1.91e-07, + "nyan": 1.91e-07, + "obfuscate": 1.91e-07, + "obo": 1.91e-07, + "odinga": 1.91e-07, + "officialdom": 1.91e-07, + "offloaded": 1.91e-07, + "onboarding": 1.91e-07, + "ophthalmologists": 1.91e-07, + "orangeburg": 1.91e-07, + "orators": 1.91e-07, + "ossie": 1.91e-07, + "ostend": 1.91e-07, + "outtake": 1.91e-07, + "ovations": 1.91e-07, + "overclocking": 1.91e-07, + "overpayment": 1.91e-07, + "overstayed": 1.91e-07, + "overtone": 1.91e-07, + "owari": 1.91e-07, + "pakenham": 1.91e-07, + "paled": 1.91e-07, + "pallbearers": 1.91e-07, + "pampa": 1.91e-07, + "pandya": 1.91e-07, + "panellists": 1.91e-07, + "pantsuit": 1.91e-07, + "parasympathetic": 1.91e-07, + "partido": 1.91e-07, + "pascals": 1.91e-07, + "patanjali": 1.91e-07, + "pato": 1.91e-07, + "pattys": 1.91e-07, + "pecks": 9.33e-08, + "pedicures": 1.91e-07, + "peggys": 1.91e-07, + "pel": 1.91e-07, + "pelly": 1.91e-07, + "perioperative": 1.91e-07, + "persepolis": 1.91e-07, + "pinstripes": 1.91e-07, + "pipette": 1.91e-07, + "pirating": 1.91e-07, + "piso": 1.91e-07, + "pitty": 1.91e-07, + "pizzazz": 1.91e-07, + "plexiglas": 1.91e-07, + "plimpton": 1.91e-07, + "polina": 1.91e-07, + "pomade": 1.91e-07, + "poppet": 1.91e-07, + "porsches": 1.38e-07, + "portadown": 1.91e-07, + "porthole": 1.91e-07, + "pratts": 1.91e-07, + "predispose": 1.91e-07, + "prego": 1.91e-07, + "preparer": 1.91e-07, + "presuppositions": 1.91e-07, + "privatise": 1.91e-07, + "psionic": 1.91e-07, + "psni": 1.91e-07, + "pth": 1.91e-07, + "puckered": 1.91e-07, + "pumper": 1.91e-07, + "puritanism": 1.91e-07, + "puro": 1.91e-07, + "puto": 1.91e-07, + "quadrennial": 1.91e-07, + "rabinowitz": 1.91e-07, + "ragging": 1.91e-07, + "rania": 1.91e-07, + "rappaport": 1.91e-07, + "rashmi": 1.91e-07, + "ratcheting": 1.91e-07, + "rauf": 1.91e-07, + "rayna": 1.91e-07, + "realigned": 1.91e-07, + "reena": 1.91e-07, + "refactoring": 1.91e-07, + "refiner": 1.91e-07, + "regensburg": 1.91e-07, + "reimagine": 1.91e-07, + "rela": 1.91e-07, + "relived": 1.91e-07, + "remainers": 1.91e-07, + "renounces": 1.91e-07, + "reorganised": 1.91e-07, + "repackage": 1.91e-07, + "repping": 1.91e-07, + "retraced": 1.91e-07, + "retroviral": 1.91e-07, + "riek": 1.91e-07, + "ringmaster": 1.91e-07, + "riv": 1.91e-07, + "riverhead": 1.91e-07, + "ronstadt": 1.91e-07, + "rop": 1.91e-07, + "roseland": 1.91e-07, + "rosemarie": 1.91e-07, + "rosier": 1.91e-07, + "rosser": 1.91e-07, + "roxane": 1.91e-07, + "rpo": 1.91e-07, + "rtm": 1.91e-07, + "rtx": 1.91e-07, + "ruminating": 1.91e-07, + "saadi": 1.91e-07, + "saleswoman": 1.91e-07, + "samos": 1.91e-07, + "sandburg": 1.91e-07, + "sande": 1.91e-07, + "sandrine": 1.91e-07, + "sanna": 1.91e-07, + "sarai": 1.91e-07, + "satiric": 1.91e-07, + "satoru": 1.91e-07, + "sausalito": 1.91e-07, + "scarp": 1.91e-07, + "schemer": 1.91e-07, + "schizophrenics": 1.91e-07, + "schleicher": 1.91e-07, + "schmeichel": 1.91e-07, + "scrapyard": 1.91e-07, + "screamers": 1.91e-07, + "seasick": 1.91e-07, + "sengoku": 1.91e-07, + "seta": 1.91e-07, + "sextant": 1.91e-07, + "sgc": 1.91e-07, + "shalimar": 1.91e-07, + "shambhala": 1.91e-07, + "shamir": 1.91e-07, + "shareware": 1.91e-07, + "shinigami": 1.91e-07, + "shoop": 1.91e-07, + "shuttled": 1.91e-07, + "signifier": 1.91e-07, + "simcity": 1.91e-07, + "sinensis": 1.91e-07, + "siti": 1.91e-07, + "skews": 1.91e-07, + "skillz": 1.91e-07, + "skinless": 1.91e-07, + "skirmishing": 1.91e-07, + "skydiver": 1.91e-07, + "smasher": 1.91e-07, + "smirks": 1.91e-07, + "smooches": 1.91e-07, + "sneakily": 1.91e-07, + "socked": 1.91e-07, + "softwares": 1.38e-07, + "soled": 1.91e-07, + "somos": 1.91e-07, + "soraya": 1.91e-07, + "soupy": 1.91e-07, + "spectrometers": 1.91e-07, + "splashy": 1.91e-07, + "spotifys": 1.91e-07, + "starched": 1.91e-07, + "stargazer": 1.91e-07, + "statecraft": 1.91e-07, + "stationing": 1.91e-07, + "stato": 1.91e-07, + "stoller": 1.91e-07, + "submitter": 1.91e-07, + "subroutines": 1.91e-07, + "subtotal": 1.91e-07, + "sugared": 1.91e-07, + "sugden": 1.91e-07, + "summoner": 1.91e-07, + "suncorp": 1.91e-07, + "suntan": 1.91e-07, + "superyacht": 1.91e-07, + "surreptitious": 1.91e-07, + "swirly": 1.91e-07, + "synching": 1.91e-07, + "szechuan": 1.91e-07, + "tachibana": 1.91e-07, + "taichi": 1.91e-07, + "tailpipe": 1.91e-07, + "takeo": 1.91e-07, + "tamimi": 1.91e-07, + "tamiya": 1.91e-07, + "tanis": 1.91e-07, + "targ": 1.91e-07, + "tarleton": 1.91e-07, + "tase": 1.91e-07, + "teodoro": 1.91e-07, + "terrapin": 1.91e-07, + "thiruvananthapuram": 1.91e-07, + "tiernan": 1.91e-07, + "tighe": 1.91e-07, + "tings": 1.91e-07, + "tiptoeing": 1.91e-07, + "tomoe": 1.91e-07, + "toph": 1.91e-07, + "topher": 1.91e-07, + "topically": 1.91e-07, + "toros": 1.15e-07, + "townley": 1.91e-07, + "tpd": 1.91e-07, + "tramping": 1.91e-07, + "traviata": 1.91e-07, + "trendsetter": 1.91e-07, + "trimmers": 1.91e-07, + "troys": 1.91e-07, + "truncation": 1.91e-07, + "tubules": 1.91e-07, + "tuco": 1.91e-07, + "twining": 1.91e-07, + "uch": 1.91e-07, + "umbilicus": 1.91e-07, + "ume": 1.91e-07, + "uncivil": 1.91e-07, + "underlay": 1.91e-07, + "undershirt": 1.91e-07, + "understory": 1.91e-07, + "unerring": 1.91e-07, + "unf": 1.91e-07, + "unfriend": 1.91e-07, + "uninstalling": 1.91e-07, + "unpredictably": 1.91e-07, + "unrepresentative": 1.91e-07, + "unsavoury": 1.91e-07, + "untruthful": 1.91e-07, + "unum": 1.91e-07, + "ura": 1.91e-07, + "uscis": 1.91e-07, + "vali": 1.91e-07, + "valkyries": 1.91e-07, + "vancomycin": 1.91e-07, + "vasculature": 1.91e-07, + "vegetal": 1.91e-07, + "veld": 1.91e-07, + "venerate": 1.91e-07, + "victimless": 1.91e-07, + "ving": 1.91e-07, + "viol": 1.91e-07, + "votto": 1.91e-07, + "vst": 1.91e-07, + "waldemar": 1.91e-07, + "wantonly": 1.91e-07, + "wapping": 1.91e-07, + "washrooms": 1.91e-07, + "wazir": 1.91e-07, + "wenzel": 1.91e-07, + "westfall": 1.91e-07, + "wetherby": 1.91e-07, + "whiskeys": 1.91e-07, + "wielder": 1.91e-07, + "wigwam": 1.91e-07, + "winningest": 1.91e-07, + "wmds": 1.91e-07, + "wombats": 1.91e-07, + "worryingly": 1.91e-07, + "wreaks": 1.91e-07, + "wretches": 1.91e-07, + "wroclaw": 1.91e-07, + "wuxi": 1.91e-07, + "wynonna": 1.91e-07, + "xlr": 1.91e-07, + "xun": 1.91e-07, + "yaakov": 1.91e-07, + "yahtzee": 1.91e-07, + "yeas": 1.91e-07, + "yesh": 1.91e-07, + "yogis": 1.91e-07, + "yoni": 1.91e-07, + "youse": 1.26e-08, + "zachs": 1.91e-07, + "zanesville": 1.91e-07, + "aai": 1.86e-07, + "abating": 1.86e-07, + "ableist": 1.86e-07, + "abr": 1.86e-07, + "abrogation": 1.86e-07, + "abstractly": 1.86e-07, + "abuela": 1.86e-07, + "abuts": 1.86e-07, + "adenauer": 1.86e-07, + "adepts": 1.86e-07, + "afflecks": 1.86e-07, + "aggressions": 1.86e-07, + "agosto": 1.86e-07, + "ainu": 1.86e-07, + "aircon": 1.86e-07, + "akagi": 1.86e-07, + "akai": 1.86e-07, + "alby": 1.86e-07, + "alibis": 1.86e-07, + "allspice": 1.86e-07, + "alternators": 1.86e-07, + "altmann": 1.86e-07, + "aminu": 1.86e-07, + "amsterdams": 1.86e-07, + "amyloidosis": 1.86e-07, + "androgyny": 1.86e-07, + "anesthetized": 1.86e-07, + "angelika": 1.86e-07, + "annecy": 1.86e-07, + "anodized": 1.86e-07, + "anoxic": 1.86e-07, + "antis": 1.86e-07, + "antofagasta": 1.86e-07, + "apatow": 1.86e-07, + "ashdod": 1.86e-07, + "assamese": 1.86e-07, + "assayed": 1.86e-07, + "assizes": 1.86e-07, + "asymptotically": 1.86e-07, + "atrophied": 1.86e-07, + "augustines": 1.86e-07, + "auk": 1.86e-07, + "automatics": 1.86e-07, + "aymara": 1.86e-07, + "ayyy": 1.86e-07, + "babbage": 1.86e-07, + "babymetal": 1.86e-07, + "backflips": 1.86e-07, + "balan": 1.86e-07, + "ballance": 1.86e-07, + "bandera": 1.86e-07, + "bangui": 1.86e-07, + "bannockburn": 1.86e-07, + "barat": 1.86e-07, + "barbadian": 1.86e-07, + "barnstaple": 1.86e-07, + "barrs": 1.86e-07, + "bartolomeo": 1.86e-07, + "barzani": 1.86e-07, + "bassinet": 1.86e-07, + "baying": 1.86e-07, + "bcr": 1.86e-07, + "beatin": 1.86e-07, + "beechwood": 1.86e-07, + "beh": 1.86e-07, + "behaviorist": 1.86e-07, + "belch": 1.86e-07, + "bellum": 1.86e-07, + "bemoaned": 1.86e-07, + "bentleys": 1.35e-07, + "besser": 1.86e-07, + "bestiary": 1.86e-07, + "bgm": 1.86e-07, + "bibliotheca": 1.86e-07, + "bilderberg": 1.86e-07, + "biomolecules": 1.86e-07, + "birks": 1.86e-07, + "biscotti": 1.86e-07, + "bjarne": 1.86e-07, + "blinky": 1.86e-07, + "bloombergs": 1.86e-07, + "bloomin": 1.86e-07, + "blowed": 1.86e-07, + "blundered": 1.86e-07, + "bnc": 1.86e-07, + "bodine": 1.86e-07, + "boggle": 1.86e-07, + "bolland": 1.86e-07, + "bombast": 1.86e-07, + "bootstraps": 1.86e-07, + "bravura": 1.86e-07, + "bridgeman": 1.86e-07, + "brp": 1.86e-07, + "brumbies": 1.86e-07, + "buchenwald": 1.86e-07, + "buckskin": 1.86e-07, + "bulma": 1.86e-07, + "bulwer": 1.86e-07, + "buncha": 1.86e-07, + "buona": 1.86e-07, + "burne": 1.86e-07, + "burpees": 1.86e-07, + "bustamante": 1.86e-07, + "buu": 1.86e-07, + "cabbies": 1.86e-07, + "calabash": 1.86e-07, + "caliphs": 1.86e-07, + "canio": 1.86e-07, + "careening": 1.86e-07, + "caricatured": 1.86e-07, + "carillon": 1.86e-07, + "catchments": 1.86e-07, + "caton": 1.86e-07, + "cavaliere": 1.86e-07, + "cento": 1.86e-07, + "chafee": 1.86e-07, + "chagas": 1.86e-07, + "challis": 1.86e-07, + "chastened": 1.86e-07, + "chatbots": 1.86e-07, + "chattahoochee": 1.86e-07, + "chatterton": 1.86e-07, + "chav": 1.86e-07, + "checksum": 1.86e-07, + "cheneys": 1.86e-07, + "chepstow": 1.86e-07, + "cheryls": 1.86e-07, + "chicagoans": 1.86e-07, + "chie": 1.86e-07, + "chilies": 1.86e-07, + "choosers": 1.86e-07, + "choses": 1.86e-07, + "christines": 1.86e-07, + "ciders": 1.86e-07, + "clares": 1.86e-07, + "clarinets": 1.86e-07, + "clinking": 1.86e-07, + "clojure": 1.86e-07, + "cluny": 1.86e-07, + "coasted": 1.86e-07, + "cochlea": 1.86e-07, + "coeducational": 1.86e-07, + "coldfield": 1.86e-07, + "colonise": 1.86e-07, + "colquhoun": 1.86e-07, + "commedia": 1.86e-07, + "compostela": 1.86e-07, + "conc": 1.86e-07, + "concatenation": 1.86e-07, + "concertina": 1.86e-07, + "contravened": 1.86e-07, + "copula": 1.86e-07, + "corley": 1.86e-07, + "cormorants": 1.86e-07, + "corriere": 1.86e-07, + "corruptions": 1.86e-07, + "councilmember": 1.86e-07, + "coveralls": 1.86e-07, + "cpsc": 1.86e-07, + "crespo": 1.86e-07, + "crisper": 1.86e-07, + "crofton": 1.86e-07, + "crooning": 1.86e-07, + "crosswalks": 1.86e-07, + "cruikshank": 1.86e-07, + "crumpets": 1.86e-07, + "ctd": 1.86e-07, + "cuadrado": 1.86e-07, + "cunninghams": 1.86e-07, + "curdling": 1.86e-07, + "cuttin": 1.86e-07, + "dail": 1.86e-07, + "danas": 1.86e-07, + "dandridge": 1.86e-07, + "darcey": 1.86e-07, + "darknet": 1.86e-07, + "dasgupta": 1.86e-07, + "datsyuk": 1.86e-07, + "daws": 1.86e-07, + "deads": 1.07e-07, + "decries": 1.86e-07, + "demagogues": 1.86e-07, + "demerits": 1.86e-07, + "demosthenes": 1.86e-07, + "deschutes": 1.86e-07, + "desecrating": 1.86e-07, + "devilishly": 1.86e-07, + "dickenson": 1.86e-07, + "diecast": 1.86e-07, + "diez": 1.86e-07, + "digitalis": 1.86e-07, + "dimon": 1.86e-07, + "dingus": 1.86e-07, + "disbelieving": 1.86e-07, + "disentangle": 1.86e-07, + "dispersive": 1.86e-07, + "divestiture": 1.86e-07, + "dmp": 1.86e-07, + "doak": 1.86e-07, + "doled": 1.86e-07, + "donbas": 1.86e-07, + "doot": 1.86e-07, + "dort": 1.86e-07, + "dpc": 1.86e-07, + "dreamcatcher": 1.86e-07, + "druggie": 1.86e-07, + "duque": 1.86e-07, + "dvb": 1.86e-07, + "dwights": 1.86e-07, + "dybala": 1.86e-07, + "earlobe": 1.86e-07, + "echidna": 1.86e-07, + "eci": 1.86e-07, + "editable": 1.86e-07, + "edom": 1.86e-07, + "elocution": 1.86e-07, + "elucidating": 1.86e-07, + "empanadas": 1.86e-07, + "engin": 1.86e-07, + "entomologists": 1.86e-07, + "epigrams": 1.86e-07, + "episcopalians": 1.86e-07, + "epworth": 1.86e-07, + "erving": 1.86e-07, + "eschatological": 1.86e-07, + "estoppel": 1.86e-07, + "euromillions": 1.86e-07, + "evangelize": 1.86e-07, + "everson": 1.86e-07, + "evgeni": 1.86e-07, + "exhorting": 1.86e-07, + "expunge": 1.86e-07, + "fabre": 1.86e-07, + "falciparum": 1.86e-07, + "fattened": 1.86e-07, + "fcb": 1.86e-07, + "fck": 1.86e-07, + "felixs": 1.86e-07, + "festooned": 1.86e-07, + "fips": 1.86e-07, + "fiverr": 1.86e-07, + "fixers": 1.86e-07, + "fka": 1.86e-07, + "flagellation": 1.86e-07, + "flashcards": 1.86e-07, + "fluttershy": 1.86e-07, + "foch": 1.86e-07, + "fogged": 1.86e-07, + "follette": 1.86e-07, + "formulates": 1.86e-07, + "foulkes": 1.86e-07, + "freeholders": 1.86e-07, + "freewheeling": 1.86e-07, + "frig": 1.86e-07, + "frontera": 1.86e-07, + "fuad": 1.86e-07, + "fuckup": 1.86e-07, + "fulford": 1.86e-07, + "fumigation": 1.86e-07, + "gallegos": 1.86e-07, + "galleons": 1.86e-07, + "gallops": 1.86e-07, + "gambian": 1.86e-07, + "gamekeeper": 1.86e-07, + "garrity": 1.86e-07, + "gazza": 1.86e-07, + "gec": 1.86e-07, + "gelman": 1.86e-07, + "genting": 1.86e-07, + "getcha": 1.86e-07, + "gibney": 1.86e-07, + "giglio": 1.86e-07, + "glace": 1.86e-07, + "glassdoor": 1.86e-07, + "goldmans": 1.86e-07, + "gossipy": 1.86e-07, + "govind": 1.86e-07, + "graver": 1.86e-07, + "grodd": 1.86e-07, + "gruyter": 1.86e-07, + "gsh": 1.86e-07, + "gunmetal": 1.86e-07, + "gynecologic": 1.86e-07, + "hacer": 1.86e-07, + "hadden": 1.86e-07, + "hadiths": 1.86e-07, + "hamelin": 1.86e-07, + "hamming": 1.86e-07, + "handmaids": 9.55e-08, + "hartz": 1.86e-07, + "harun": 1.86e-07, + "haviland": 1.86e-07, + "hellbent": 1.86e-07, + "hellraiser": 1.86e-07, + "hexagons": 1.86e-07, + "hexham": 1.86e-07, + "hingis": 1.86e-07, + "hinsdale": 1.86e-07, + "hislop": 1.86e-07, + "hittites": 1.86e-07, + "homefront": 1.86e-07, + "hore": 1.86e-07, + "houseman": 1.86e-07, + "houten": 1.86e-07, + "howre": 1.86e-07, + "humbles": 1.86e-07, + "huppert": 1.86e-07, + "hyannis": 1.86e-07, + "hylton": 1.86e-07, + "hypnotised": 1.86e-07, + "ibom": 1.86e-07, + "icos": 5.13e-08, + "idahos": 1.86e-07, + "ietf": 1.86e-07, + "igo": 1.86e-07, + "immanent": 1.86e-07, + "immodest": 1.86e-07, + "imphal": 1.86e-07, + "imu": 1.86e-07, + "inboxes": 1.86e-07, + "incompletely": 1.86e-07, + "inexpensively": 1.86e-07, + "innis": 1.86e-07, + "instants": 1.86e-07, + "intentionality": 1.86e-07, + "interbreeding": 1.86e-07, + "interwebs": 1.86e-07, + "invoiced": 1.86e-07, + "inwood": 1.86e-07, + "irie": 1.86e-07, + "irreverence": 1.86e-07, + "irritations": 1.86e-07, + "issei": 1.86e-07, + "ivys": 1.86e-07, + "jambalaya": 1.86e-07, + "jameel": 1.86e-07, + "jareds": 1.86e-07, + "jaune": 1.86e-07, + "javad": 1.86e-07, + "jawad": 1.86e-07, + "jaymes": 1.86e-07, + "jcs": 7.41e-08, + "jeepers": 1.86e-07, + "jewelled": 1.86e-07, + "jewishness": 1.86e-07, + "jfks": 1.86e-07, + "jis": 1.48e-07, + "jist": 1.86e-07, + "jls": 1.86e-07, + "josey": 1.86e-07, + "journeymen": 1.86e-07, + "judaic": 1.86e-07, + "jumeirah": 1.86e-07, + "kaaba": 1.86e-07, + "kalb": 1.86e-07, + "kamakura": 1.86e-07, + "kanagawa": 1.86e-07, + "karls": 1.86e-07, + "katrine": 1.86e-07, + "kayakers": 1.86e-07, + "kaze": 1.86e-07, + "killick": 1.86e-07, + "kimbrel": 1.86e-07, + "kirtland": 1.86e-07, + "kitsap": 1.86e-07, + "klose": 1.86e-07, + "klotz": 1.86e-07, + "knacks": 1.86e-07, + "kneecaps": 1.86e-07, + "koolaid": 1.86e-07, + "koro": 1.86e-07, + "kvyat": 1.86e-07, + "lafleur": 1.86e-07, + "lampshade": 1.86e-07, + "lancs": 1.86e-07, + "langlois": 1.86e-07, + "lapdog": 1.86e-07, + "laravel": 1.86e-07, + "lasky": 1.86e-07, + "lateran": 1.86e-07, + "lawsons": 1.86e-07, + "lbp": 1.86e-07, + "leavened": 1.86e-07, + "leeson": 1.86e-07, + "leukocytes": 1.86e-07, + "lfs": 1.86e-07, + "libera": 1.86e-07, + "libertines": 1.86e-07, + "licker": 1.86e-07, + "lida": 1.86e-07, + "lifeforms": 1.86e-07, + "lifesavers": 1.86e-07, + "ligatures": 1.86e-07, + "liveries": 1.86e-07, + "lovie": 1.86e-07, + "lulls": 1.86e-07, + "lumsden": 1.86e-07, + "lymington": 1.86e-07, + "lymphomas": 1.86e-07, + "lytle": 1.86e-07, + "machinegun": 1.86e-07, + "madero": 1.86e-07, + "magnifier": 1.86e-07, + "malbec": 1.86e-07, + "mandell": 1.86e-07, + "manilla": 1.86e-07, + "manti": 1.86e-07, + "marigolds": 1.86e-07, + "marseillaise": 1.86e-07, + "marts": 1.29e-07, + "maryanne": 1.86e-07, + "maryse": 1.86e-07, + "mastitis": 1.86e-07, + "matriarchal": 1.86e-07, + "matta": 1.86e-07, + "maytag": 1.86e-07, + "mbr": 1.86e-07, + "mcgregors": 1.86e-07, + "meester": 1.86e-07, + "melaka": 1.86e-07, + "mele": 1.86e-07, + "mellencamp": 1.86e-07, + "mengele": 1.86e-07, + "merlins": 1.86e-07, + "meron": 1.86e-07, + "mesmerised": 1.86e-07, + "mette": 1.86e-07, + "miasma": 1.86e-07, + "microeconomics": 1.86e-07, + "milady": 1.86e-07, + "minke": 1.86e-07, + "mks": 1.86e-07, + "mmd": 1.86e-07, + "modell": 1.86e-07, + "monetized": 1.86e-07, + "monoliths": 1.86e-07, + "montys": 1.86e-07, + "moodie": 1.86e-07, + "morrie": 1.86e-07, + "mowry": 1.86e-07, + "mpumalanga": 1.86e-07, + "muds": 1.86e-07, + "mudslide": 1.86e-07, + "mugshots": 1.86e-07, + "muirfield": 1.86e-07, + "mujahid": 1.86e-07, + "mula": 1.86e-07, + "multicenter": 1.86e-07, + "muskie": 1.86e-07, + "musta": 1.86e-07, + "naturelle": 1.86e-07, + "nauvoo": 1.86e-07, + "neptunes": 1.05e-07, + "neurodevelopmental": 1.86e-07, + "neurogenesis": 1.86e-07, + "neutering": 1.86e-07, + "neutralizes": 1.86e-07, + "neutrophil": 1.86e-07, + "nextdoor": 1.86e-07, + "niang": 1.86e-07, + "nica": 1.86e-07, + "nicholl": 1.86e-07, + "nicobar": 1.86e-07, + "nikkor": 1.86e-07, + "noakes": 1.86e-07, + "nol": 1.86e-07, + "noland": 1.86e-07, + "nondisclosure": 1.86e-07, + "nontoxic": 1.86e-07, + "noras": 1.86e-07, + "northport": 1.86e-07, + "northwesterly": 1.86e-07, + "ntfs": 1.86e-07, + "oday": 5.75e-08, + "oloughlin": 1.86e-07, + "oreillys": 1.86e-07, + "obnoxiously": 1.86e-07, + "oconee": 1.86e-07, + "octahedral": 1.86e-07, + "okamoto": 1.86e-07, + "olmstead": 1.86e-07, + "omari": 1.86e-07, + "optimizer": 1.86e-07, + "orderlies": 1.86e-07, + "orochi": 1.86e-07, + "oromo": 1.86e-07, + "outland": 1.86e-07, + "overlain": 1.86e-07, + "overpowers": 1.86e-07, + "oxlade": 1.86e-07, + "padlocks": 1.86e-07, + "panos": 1.86e-07, + "parasitism": 1.86e-07, + "particularity": 1.86e-07, + "pawel": 1.86e-07, + "peice": 1.86e-07, + "penfield": 1.86e-07, + "pennine": 1.86e-07, + "peons": 1.86e-07, + "peppercorn": 1.86e-07, + "percys": 1.86e-07, + "perfects": 1.86e-07, + "perfumery": 1.86e-07, + "perlmutter": 1.86e-07, + "petar": 1.86e-07, + "pettersson": 1.86e-07, + "pffft": 1.86e-07, + "pharisee": 1.86e-07, + "phenols": 1.86e-07, + "photobook": 1.86e-07, + "photovoltaics": 1.86e-07, + "physiologists": 1.86e-07, + "pii": 1.86e-07, + "plod": 1.86e-07, + "plucks": 1.86e-07, + "pocatello": 1.86e-07, + "podiatrist": 1.86e-07, + "polarities": 1.86e-07, + "pollyanna": 1.86e-07, + "pols": 1.86e-07, + "polyphenols": 1.86e-07, + "polysaccharide": 1.86e-07, + "ponchos": 1.86e-07, + "ponty": 1.86e-07, + "potemkin": 1.86e-07, + "powhatan": 1.86e-07, + "powwow": 1.86e-07, + "pragmatics": 1.86e-07, + "predating": 1.86e-07, + "premade": 1.86e-07, + "presleys": 1.86e-07, + "presque": 1.86e-07, + "priestesses": 1.86e-07, + "prokaryotic": 1.86e-07, + "prorated": 1.86e-07, + "pubis": 1.86e-07, + "puyol": 1.86e-07, + "qigong": 1.86e-07, + "qty": 1.86e-07, + "quails": 1.86e-07, + "quantized": 1.86e-07, + "quasimodo": 1.86e-07, + "quebecois": 1.86e-07, + "quik": 1.86e-07, + "radovan": 1.86e-07, + "ragan": 1.86e-07, + "ramo": 1.86e-07, + "ranjan": 1.86e-07, + "ravenclaw": 1.86e-07, + "razing": 1.86e-07, + "rebs": 1.86e-07, + "reconciles": 1.86e-07, + "reconditioned": 1.86e-07, + "redeye": 1.86e-07, + "refillable": 1.86e-07, + "regale": 1.86e-07, + "regurgitated": 1.86e-07, + "reintegrate": 1.86e-07, + "rekha": 1.86e-07, + "reme": 1.86e-07, + "reni": 1.86e-07, + "renly": 1.86e-07, + "reordering": 1.86e-07, + "repeatability": 1.86e-07, + "resound": 1.86e-07, + "retakes": 1.86e-07, + "rhein": 1.86e-07, + "rhimes": 1.86e-07, + "rhododendrons": 1.86e-07, + "richies": 1.86e-07, + "ridesharing": 1.86e-07, + "rivero": 1.86e-07, + "riviere": 1.86e-07, + "rix": 1.86e-07, + "rodan": 1.86e-07, + "rolly": 1.86e-07, + "romany": 1.86e-07, + "roode": 1.86e-07, + "rotund": 1.86e-07, + "rubios": 1.86e-07, + "runabout": 1.86e-07, + "ruston": 1.86e-07, + "salvageable": 1.86e-07, + "sandcastle": 1.86e-07, + "sanitizing": 1.86e-07, + "sardis": 1.86e-07, + "sargeant": 1.86e-07, + "sarong": 1.86e-07, + "sasse": 1.86e-07, + "saussure": 1.86e-07, + "savaged": 1.86e-07, + "savio": 1.86e-07, + "savored": 1.86e-07, + "scandalized": 1.86e-07, + "schenk": 1.86e-07, + "schnauzer": 1.86e-07, + "schoolroom": 1.86e-07, + "scions": 1.86e-07, + "scorseses": 1.86e-07, + "scotrail": 1.86e-07, + "scrapbooks": 1.86e-07, + "scrawl": 1.86e-07, + "screeched": 1.86e-07, + "scurrilous": 1.86e-07, + "seamanship": 1.86e-07, + "seedless": 1.86e-07, + "semana": 1.86e-07, + "semicircle": 1.86e-07, + "sett": 1.86e-07, + "sextet": 1.86e-07, + "shabbos": 1.86e-07, + "shepherding": 1.86e-07, + "shithouse": 1.86e-07, + "shitshow": 1.86e-07, + "shmuel": 1.86e-07, + "shoji": 1.86e-07, + "shuttleworth": 1.86e-07, + "shying": 1.86e-07, + "sleepwear": 1.86e-07, + "smalltalk": 1.86e-07, + "snowdens": 1.86e-07, + "socialised": 1.86e-07, + "socialites": 1.86e-07, + "soldado": 1.86e-07, + "songz": 1.86e-07, + "souffle": 1.86e-07, + "southwesterly": 1.86e-07, + "sowerby": 1.86e-07, + "spandau": 1.86e-07, + "speeder": 1.86e-07, + "squashes": 1.86e-07, + "stansfield": 1.86e-07, + "steams": 7.59e-08, + "stigmatization": 1.86e-07, + "stigmatizing": 1.86e-07, + "stim": 1.86e-07, + "stockyards": 1.86e-07, + "strada": 1.86e-07, + "straightener": 1.86e-07, + "strindberg": 1.86e-07, + "struthers": 1.86e-07, + "subchapter": 1.86e-07, + "subdivide": 1.86e-07, + "suborbital": 1.86e-07, + "subregion": 1.86e-07, + "subservience": 1.86e-07, + "subverts": 1.86e-07, + "sufis": 1.86e-07, + "sukarno": 1.86e-07, + "suppository": 1.86e-07, + "suppressors": 1.86e-07, + "swire": 1.86e-07, + "swizz": 1.86e-07, + "swp": 1.86e-07, + "sws": 1.86e-07, + "tabling": 1.86e-07, + "takedowns": 1.86e-07, + "takoma": 1.86e-07, + "taku": 1.86e-07, + "talos": 1.86e-07, + "tambor": 1.86e-07, + "tampere": 1.86e-07, + "tanga": 1.86e-07, + "tapia": 1.86e-07, + "tarantinos": 1.86e-07, + "tasmanias": 1.86e-07, + "taxiing": 1.86e-07, + "tchaikovskys": 1.86e-07, + "tdf": 1.86e-07, + "teargas": 1.86e-07, + "teats": 1.86e-07, + "textron": 1.86e-07, + "tgt": 1.86e-07, + "thaler": 1.86e-07, + "thao": 1.86e-07, + "thems": 1.26e-07, + "theorys": 1.86e-07, + "thiamine": 1.86e-07, + "threonine": 1.86e-07, + "throwdown": 1.86e-07, + "thumbed": 1.86e-07, + "tiberias": 1.86e-07, + "timekeeper": 1.86e-07, + "tinting": 1.86e-07, + "tiverton": 1.86e-07, + "tizzy": 1.86e-07, + "tle": 1.86e-07, + "tob": 1.86e-07, + "tof": 1.86e-07, + "tolliver": 1.86e-07, + "tortuga": 1.86e-07, + "tourette": 1.86e-07, + "towner": 1.86e-07, + "tows": 1.86e-07, + "toya": 1.86e-07, + "toyama": 1.86e-07, + "trackpad": 1.86e-07, + "trapezoid": 1.86e-07, + "treacy": 1.86e-07, + "trills": 1.86e-07, + "tring": 1.86e-07, + "tst": 1.86e-07, + "tums": 1.86e-07, + "tutankhamun": 1.86e-07, + "twits": 1.86e-07, + "typifies": 1.86e-07, + "uaes": 1.86e-07, + "uddin": 1.86e-07, + "ufcs": 1.86e-07, + "uhs": 1.86e-07, + "ulmer": 1.86e-07, + "ultraman": 1.86e-07, + "unanswerable": 1.86e-07, + "undercurrents": 1.86e-07, + "undoes": 1.86e-07, + "unescos": 1.86e-07, + "unexamined": 1.86e-07, + "unheeded": 1.86e-07, + "unmentioned": 1.86e-07, + "unsettle": 1.86e-07, + "unviable": 1.86e-07, + "unwrapping": 1.86e-07, + "upmc": 1.86e-07, + "urself": 1.86e-07, + "vadodara": 1.86e-07, + "vaio": 1.86e-07, + "velo": 1.86e-07, + "venable": 1.86e-07, + "vermaelen": 1.86e-07, + "vetter": 1.86e-07, + "vexatious": 1.86e-07, + "vibrated": 1.86e-07, + "victimised": 1.86e-07, + "vihar": 1.86e-07, + "violetta": 1.86e-07, + "vivacity": 1.86e-07, + "wageningen": 1.86e-07, + "waggoner": 1.86e-07, + "wahhabism": 1.86e-07, + "walmsley": 1.86e-07, + "wario": 1.86e-07, + "warmonger": 1.86e-07, + "warmongering": 1.86e-07, + "waterhole": 1.86e-07, + "weg": 1.86e-07, + "weisz": 1.86e-07, + "welton": 1.86e-07, + "welts": 1.86e-07, + "wendel": 1.86e-07, + "wenzhou": 1.86e-07, + "wep": 1.86e-07, + "wholehearted": 1.86e-07, + "wholesaling": 1.86e-07, + "whyre": 1.86e-07, + "wilbert": 1.86e-07, + "wombs": 1.86e-07, + "wonderwall": 1.86e-07, + "worksite": 1.86e-07, + "woz": 1.86e-07, + "wsl": 1.86e-07, + "wulff": 1.86e-07, + "wythe": 1.86e-07, + "xenoblade": 1.86e-07, + "xor": 1.86e-07, + "xxxi": 1.86e-07, + "xxxxx": 1.86e-07, + "yandex": 1.86e-07, + "yass": 1.86e-07, + "yess": 1.86e-07, + "yori": 1.86e-07, + "yuge": 1.86e-07, + "zaria": 1.86e-07, + "zermatt": 1.86e-07, + "zhangs": 1.86e-07, + "zuckerbergs": 1.86e-07, + "abouts": 1.26e-08, + "acknowledgments": 1.82e-07, + "ackroyd": 1.82e-07, + "adenovirus": 1.82e-07, + "admissibility": 1.82e-07, + "admonishing": 1.82e-07, + "aiims": 1.82e-07, + "ail": 1.82e-07, + "akka": 1.82e-07, + "alaskans": 1.82e-07, + "alds": 1.82e-07, + "aled": 1.82e-07, + "alessia": 1.82e-07, + "allister": 1.82e-07, + "alois": 1.82e-07, + "alok": 1.82e-07, + "altaf": 1.82e-07, + "ammonite": 1.82e-07, + "amoxicillin": 1.82e-07, + "andesite": 1.82e-07, + "anhydride": 1.82e-07, + "annulus": 1.82e-07, + "antibes": 1.82e-07, + "aperitif": 1.82e-07, + "aphex": 1.82e-07, + "apostrophes": 1.82e-07, + "argento": 1.82e-07, + "ascribing": 1.82e-07, + "ashtabula": 1.82e-07, + "assemblers": 1.82e-07, + "astin": 1.82e-07, + "asuna": 1.82e-07, + "atif": 1.82e-07, + "autoclave": 1.82e-07, + "axially": 1.82e-07, + "ayu": 1.82e-07, + "baahubali": 1.82e-07, + "babington": 1.82e-07, + "backdoors": 1.82e-07, + "backes": 1.82e-07, + "bagan": 1.82e-07, + "baier": 1.82e-07, + "bairstow": 1.82e-07, + "bajwa": 1.82e-07, + "bakri": 1.82e-07, + "balanchine": 1.82e-07, + "baler": 1.82e-07, + "bame": 1.82e-07, + "barc": 1.82e-07, + "bartow": 1.82e-07, + "bastogne": 1.82e-07, + "batley": 1.82e-07, + "bayonetta": 1.82e-07, + "beca": 1.82e-07, + "bek": 1.82e-07, + "berates": 1.82e-07, + "bergerac": 1.82e-07, + "berle": 1.82e-07, + "betz": 1.82e-07, + "biasing": 1.82e-07, + "biblically": 1.82e-07, + "billiton": 1.82e-07, + "biofilms": 1.82e-07, + "birk": 1.82e-07, + "bivouac": 1.82e-07, + "bix": 1.82e-07, + "blarney": 1.82e-07, + "blowhard": 1.82e-07, + "bluntness": 1.82e-07, + "bocce": 1.82e-07, + "bokep": 1.82e-07, + "borscht": 1.82e-07, + "bourg": 1.82e-07, + "bovary": 1.82e-07, + "boxwood": 1.82e-07, + "breadfruit": 1.82e-07, + "breathers": 1.82e-07, + "bremerton": 1.82e-07, + "brightside": 1.82e-07, + "brm": 1.82e-07, + "btv": 1.82e-07, + "budden": 1.82e-07, + "bunce": 1.82e-07, + "bunnys": 1.82e-07, + "burps": 1.82e-07, + "bussed": 1.82e-07, + "cahn": 1.82e-07, + "calista": 1.82e-07, + "camorra": 1.82e-07, + "campervan": 1.82e-07, + "cancelation": 1.82e-07, + "cannae": 1.82e-07, + "carrol": 1.82e-07, + "castigated": 1.82e-07, + "castille": 1.82e-07, + "catcalling": 1.82e-07, + "categorisation": 1.82e-07, + "ceb": 1.82e-07, + "ceri": 1.82e-07, + "certificated": 1.82e-07, + "chama": 1.82e-07, + "cheapskate": 1.82e-07, + "checkouts": 1.82e-07, + "chert": 1.82e-07, + "chesters": 6.61e-08, + "chickened": 1.82e-07, + "chilliwack": 1.82e-07, + "chocolatey": 1.82e-07, + "christology": 1.82e-07, + "chugged": 1.82e-07, + "chui": 1.82e-07, + "cios": 6.46e-08, + "circumnavigate": 1.82e-07, + "clackamas": 1.82e-07, + "claes": 1.82e-07, + "claxton": 1.82e-07, + "clearfield": 1.82e-07, + "coghlan": 1.82e-07, + "colberts": 1.82e-07, + "collectivization": 1.82e-07, + "collinsville": 1.82e-07, + "collis": 1.82e-07, + "compactor": 1.82e-07, + "compote": 1.82e-07, + "compressible": 1.82e-07, + "confidants": 1.82e-07, + "confirmatory": 1.82e-07, + "congeniality": 1.82e-07, + "contentions": 1.82e-07, + "continuo": 1.82e-07, + "convulsing": 1.82e-07, + "cornerbacks": 1.82e-07, + "cosima": 1.82e-07, + "costumer": 1.82e-07, + "covalently": 1.82e-07, + "cowherd": 1.82e-07, + "cpb": 1.82e-07, + "crackdowns": 1.82e-07, + "creaming": 1.82e-07, + "crema": 1.82e-07, + "cremona": 1.82e-07, + "cruelties": 1.82e-07, + "cudgel": 1.82e-07, + "culbertson": 1.82e-07, + "cumbernauld": 1.82e-07, + "cylons": 1.82e-07, + "dado": 1.82e-07, + "dahlgren": 1.82e-07, + "dalston": 1.82e-07, + "danziger": 1.82e-07, + "dayal": 1.82e-07, + "dce": 1.82e-07, + "deadspin": 1.82e-07, + "deezer": 1.82e-07, + "deign": 1.82e-07, + "delancey": 1.82e-07, + "dentate": 1.82e-07, + "depts": 1.82e-07, + "dewi": 1.82e-07, + "dibble": 1.82e-07, + "diggity": 1.82e-07, + "dimwit": 1.82e-07, + "diodorus": 1.82e-07, + "dipstick": 1.82e-07, + "disambiguation": 1.82e-07, + "dissenter": 1.82e-07, + "divalent": 1.82e-07, + "diviner": 1.82e-07, + "djt": 1.82e-07, + "dnipro": 1.82e-07, + "donoghue": 1.82e-07, + "douches": 1.82e-07, + "doula": 1.82e-07, + "duchene": 1.82e-07, + "duchenne": 1.82e-07, + "dungannon": 1.82e-07, + "dwarka": 1.82e-07, + "eadie": 1.82e-07, + "earldom": 1.82e-07, + "earley": 1.82e-07, + "earthwork": 1.82e-07, + "eccentrics": 1.82e-07, + "echols": 1.82e-07, + "egmont": 1.82e-07, + "eire": 1.82e-07, + "ekman": 1.82e-07, + "eldredge": 1.82e-07, + "eleanors": 1.82e-07, + "electrocute": 1.82e-07, + "elfin": 1.82e-07, + "elina": 1.82e-07, + "elitists": 1.82e-07, + "ellas": 7.59e-08, + "elma": 1.82e-07, + "elsinore": 1.82e-07, + "enamelled": 1.82e-07, + "enbridge": 1.82e-07, + "encroachments": 1.82e-07, + "enlarges": 1.82e-07, + "entrainment": 1.82e-07, + "eres": 1.82e-07, + "eskom": 1.82e-07, + "exacerbation": 1.82e-07, + "excitability": 1.82e-07, + "exegetical": 1.82e-07, + "existance": 1.82e-07, + "exorcisms": 1.82e-07, + "exothermic": 1.82e-07, + "expansionary": 1.82e-07, + "expectancies": 1.82e-07, + "expensively": 1.82e-07, + "facedown": 1.82e-07, + "fairley": 1.82e-07, + "fakers": 1.82e-07, + "farnese": 1.82e-07, + "farren": 1.82e-07, + "farrer": 1.82e-07, + "fasciitis": 1.82e-07, + "fazed": 1.82e-07, + "fehr": 1.82e-07, + "fenech": 1.82e-07, + "fibrils": 1.82e-07, + "figo": 1.82e-07, + "fingerboard": 1.82e-07, + "fking": 1.82e-07, + "flab": 1.82e-07, + "flaunted": 1.82e-07, + "fluffed": 1.82e-07, + "fns": 1.82e-07, + "foerster": 1.82e-07, + "fogs": 1.82e-07, + "footstep": 1.82e-07, + "foraged": 1.82e-07, + "foragers": 1.82e-07, + "forecastle": 1.82e-07, + "franconia": 1.82e-07, + "friedland": 1.82e-07, + "friendzoned": 1.82e-07, + "fritter": 1.82e-07, + "fultz": 1.82e-07, + "futura": 1.82e-07, + "gabapentin": 1.82e-07, + "galactose": 1.82e-07, + "galas": 1.82e-07, + "gallus": 1.82e-07, + "gawking": 1.82e-07, + "gazas": 1.82e-07, + "generis": 1.82e-07, + "geocaching": 1.82e-07, + "geolocation": 1.82e-07, + "geraghty": 1.82e-07, + "germinal": 1.82e-07, + "gethsemane": 1.82e-07, + "giggly": 1.82e-07, + "gioia": 1.82e-07, + "gisela": 1.82e-07, + "glazier": 1.82e-07, + "glu": 1.82e-07, + "gmat": 1.82e-07, + "goalpost": 1.82e-07, + "godavari": 1.82e-07, + "godforsaken": 1.82e-07, + "goguryeo": 1.82e-07, + "gombe": 1.82e-07, + "gorging": 1.82e-07, + "gota": 1.82e-07, + "graying": 1.82e-07, + "greenaway": 1.82e-07, + "grima": 1.82e-07, + "gristle": 1.82e-07, + "grumps": 1.82e-07, + "guar": 1.82e-07, + "guid": 1.82e-07, + "gurps": 1.82e-07, + "gurung": 1.82e-07, + "gwalior": 1.82e-07, + "hammad": 1.82e-07, + "hammon": 1.82e-07, + "hanbury": 1.82e-07, + "handloom": 1.82e-07, + "hanyu": 1.82e-07, + "harajuku": 1.82e-07, + "hards": 1.82e-07, + "harish": 1.82e-07, + "harmonise": 1.82e-07, + "harmonised": 1.82e-07, + "hatin": 1.82e-07, + "hatreds": 1.82e-07, + "hava": 1.82e-07, + "hecate": 1.82e-07, + "hemorrhoid": 1.82e-07, + "hfs": 1.82e-07, + "hilux": 1.82e-07, + "hmc": 1.82e-07, + "homan": 1.82e-07, + "hones": 1.82e-07, + "honeyed": 1.82e-07, + "horrendously": 1.82e-07, + "horrocks": 1.82e-07, + "howden": 1.82e-07, + "hsing": 1.82e-07, + "huan": 1.82e-07, + "humphry": 1.82e-07, + "huth": 1.82e-07, + "hutson": 1.82e-07, + "iditarod": 1.82e-07, + "igp": 1.82e-07, + "illiquid": 1.82e-07, + "illusive": 1.82e-07, + "imei": 1.82e-07, + "impelled": 1.82e-07, + "incapacitating": 1.82e-07, + "indistinctly": 1.82e-07, + "indolent": 1.82e-07, + "inductively": 1.82e-07, + "infantrymen": 1.82e-07, + "infeasible": 1.82e-07, + "informa": 1.82e-07, + "inoculate": 1.82e-07, + "insistently": 1.82e-07, + "insula": 1.82e-07, + "integrable": 1.82e-07, + "interleaved": 1.82e-07, + "intermedia": 1.82e-07, + "intimidates": 1.82e-07, + "intrastate": 1.82e-07, + "invisibly": 1.82e-07, + "ior": 1.82e-07, + "iou": 1.82e-07, + "iscariot": 1.82e-07, + "islamization": 1.82e-07, + "istituto": 1.82e-07, + "itl": 1.82e-07, + "jabber": 1.82e-07, + "jades": 1.12e-07, + "jamia": 1.82e-07, + "jatt": 1.82e-07, + "jawa": 1.82e-07, + "jehan": 1.82e-07, + "jennas": 1.82e-07, + "jeroen": 1.82e-07, + "jeu": 1.82e-07, + "jomo": 1.82e-07, + "jordin": 1.82e-07, + "josip": 1.82e-07, + "jovan": 1.82e-07, + "julienne": 1.82e-07, + "junie": 1.82e-07, + "juried": 1.82e-07, + "kaa": 1.82e-07, + "kabuto": 1.82e-07, + "kage": 1.82e-07, + "kaminski": 1.82e-07, + "katt": 1.82e-07, + "keely": 1.82e-07, + "kelton": 1.82e-07, + "kenichi": 1.82e-07, + "kerrs": 1.82e-07, + "keystroke": 1.82e-07, + "khashoggi": 1.82e-07, + "khedira": 1.82e-07, + "killjoy": 1.82e-07, + "kina": 1.82e-07, + "kirkus": 1.82e-07, + "kitchenette": 1.82e-07, + "kittredge": 1.82e-07, + "knighton": 1.82e-07, + "knoxs": 1.82e-07, + "kohlberg": 1.82e-07, + "krasny": 1.82e-07, + "lamarr": 1.82e-07, + "langdale": 1.82e-07, + "langhorne": 1.82e-07, + "larp": 1.82e-07, + "lashings": 1.82e-07, + "lats": 1.82e-07, + "lavas": 1.82e-07, + "lawmaking": 1.82e-07, + "laxman": 1.82e-07, + "lazare": 1.82e-07, + "lcl": 1.82e-07, + "lcr": 1.82e-07, + "leaderless": 1.82e-07, + "legato": 1.82e-07, + "legibility": 1.82e-07, + "legionella": 1.82e-07, + "lelouch": 1.82e-07, + "lesters": 1.82e-07, + "letchworth": 1.82e-07, + "leve": 1.82e-07, + "lez": 1.82e-07, + "libations": 1.82e-07, + "licenced": 1.82e-07, + "lionesses": 1.82e-07, + "litigant": 1.82e-07, + "lito": 1.82e-07, + "loadings": 1.82e-07, + "lochaber": 1.82e-07, + "loggerheads": 1.82e-07, + "loney": 1.82e-07, + "longbow": 1.82e-07, + "lotsa": 1.82e-07, + "lrc": 1.82e-07, + "lumberjacks": 1.82e-07, + "luxuriously": 1.82e-07, + "lycan": 1.82e-07, + "lyla": 1.82e-07, + "maclennan": 1.82e-07, + "magaluf": 1.82e-07, + "malton": 1.82e-07, + "manton": 1.82e-07, + "marchetti": 1.82e-07, + "margaux": 1.82e-07, + "mariage": 1.82e-07, + "maryborough": 1.82e-07, + "mascarpone": 1.82e-07, + "matata": 1.82e-07, + "matsuyama": 1.82e-07, + "matthieu": 1.82e-07, + "mayr": 1.82e-07, + "mazar": 1.82e-07, + "mcas": 1.82e-07, + "mccune": 1.82e-07, + "mcdowall": 1.82e-07, + "mcinerney": 1.82e-07, + "mclarens": 6.76e-08, + "medrano": 1.82e-07, + "meech": 1.82e-07, + "melia": 1.82e-07, + "mercs": 1.82e-07, + "metternich": 1.82e-07, + "micks": 1.82e-07, + "microcontrollers": 1.82e-07, + "microservices": 1.82e-07, + "mildura": 1.82e-07, + "millett": 1.82e-07, + "mineola": 1.82e-07, + "miniaturization": 1.82e-07, + "mislaid": 1.82e-07, + "misspell": 1.82e-07, + "mof": 1.82e-07, + "moga": 1.82e-07, + "mohsin": 1.82e-07, + "monsantos": 1.82e-07, + "monstrosities": 1.82e-07, + "montesquieu": 1.82e-07, + "moomin": 1.82e-07, + "moreso": 1.82e-07, + "morland": 1.82e-07, + "moselle": 1.82e-07, + "mothballed": 1.82e-07, + "movistar": 1.82e-07, + "mqm": 1.82e-07, + "muharram": 1.82e-07, + "mulcair": 1.82e-07, + "muto": 1.82e-07, + "naeem": 1.82e-07, + "naomis": 1.82e-07, + "nbcsn": 1.82e-07, + "negus": 1.82e-07, + "nemours": 1.82e-07, + "neoconservative": 1.82e-07, + "neoplastic": 1.82e-07, + "neymars": 1.82e-07, + "ngai": 1.82e-07, + "nhat": 1.82e-07, + "nif": 1.82e-07, + "niggling": 1.82e-07, + "nne": 1.82e-07, + "noda": 1.82e-07, + "nombre": 1.82e-07, + "nore": 1.82e-07, + "nortel": 1.82e-07, + "nsg": 1.82e-07, + "nso": 1.82e-07, + "nuestra": 1.82e-07, + "nuna": 1.82e-07, + "nunca": 1.82e-07, + "obie": 1.82e-07, + "occultist": 1.82e-07, + "oko": 1.82e-07, + "oladipo": 1.82e-07, + "oort": 1.82e-07, + "orf": 1.82e-07, + "ornithologist": 1.82e-07, + "ottos": 1.82e-07, + "overburden": 1.82e-07, + "overpopulated": 1.82e-07, + "oxidizer": 1.82e-07, + "ozymandias": 1.82e-07, + "pagers": 1.82e-07, + "paiges": 1.82e-07, + "pampas": 1.82e-07, + "parisi": 1.82e-07, + "parkville": 1.82e-07, + "parttime": 1.82e-07, + "paternalism": 1.82e-07, + "pavers": 1.82e-07, + "pawing": 1.82e-07, + "pbo": 1.82e-07, + "peinture": 1.82e-07, + "pels": 1.82e-07, + "pelton": 1.82e-07, + "percolating": 1.82e-07, + "perkin": 1.82e-07, + "peroxidase": 1.82e-07, + "perths": 1.82e-07, + "perused": 1.82e-07, + "petioles": 1.82e-07, + "philandering": 1.82e-07, + "physiotherapists": 1.82e-07, + "pigskin": 1.82e-07, + "pinata": 1.82e-07, + "pks": 1.82e-07, + "plagiarizing": 1.82e-07, + "polybius": 1.82e-07, + "polychrome": 1.82e-07, + "ponytails": 1.82e-07, + "poussin": 1.82e-07, + "prahran": 1.82e-07, + "premarket": 1.82e-07, + "privet": 1.82e-07, + "problema": 1.82e-07, + "projekt": 1.82e-07, + "purred": 1.82e-07, + "putz": 1.82e-07, + "pyrrhic": 1.82e-07, + "quoi": 1.82e-07, + "racetracks": 1.82e-07, + "radians": 1.82e-07, + "rahane": 1.82e-07, + "rajab": 1.82e-07, + "ramu": 1.82e-07, + "raskin": 1.82e-07, + "rcw": 1.82e-07, + "rdc": 1.82e-07, + "reactant": 1.82e-07, + "reassuringly": 1.82e-07, + "reconfiguring": 1.82e-07, + "redcar": 1.82e-07, + "redouble": 1.82e-07, + "refurb": 1.82e-07, + "regularization": 1.82e-07, + "reinterpret": 1.82e-07, + "relaxant": 1.82e-07, + "reminisces": 1.82e-07, + "renege": 1.82e-07, + "repairable": 1.82e-07, + "reposts": 1.82e-07, + "retailed": 1.82e-07, + "reticulated": 1.82e-07, + "reveille": 1.82e-07, + "rheims": 1.82e-07, + "rics": 1.82e-07, + "rivalled": 1.82e-07, + "rodd": 1.82e-07, + "rodriguezs": 1.82e-07, + "roemer": 1.82e-07, + "romanoff": 1.82e-07, + "romelu": 1.82e-07, + "romeros": 1.82e-07, + "roomful": 1.82e-07, + "rosanne": 1.82e-07, + "rossa": 1.82e-07, + "rotavirus": 1.82e-07, + "roussel": 1.82e-07, + "rpms": 1.82e-07, + "rubberized": 1.82e-07, + "rumford": 1.82e-07, + "sacristy": 1.82e-07, + "saddleback": 1.82e-07, + "saddler": 1.82e-07, + "sags": 1.82e-07, + "sahil": 1.82e-07, + "salton": 1.82e-07, + "santosh": 1.82e-07, + "sanusi": 1.82e-07, + "saranac": 1.82e-07, + "schelling": 1.82e-07, + "schneiderman": 1.82e-07, + "schur": 1.82e-07, + "schwinn": 1.82e-07, + "searcy": 1.82e-07, + "seigneur": 1.82e-07, + "serkis": 1.82e-07, + "sexualizing": 1.82e-07, + "sfw": 1.82e-07, + "shambolic": 1.82e-07, + "shapers": 1.82e-07, + "sheehy": 1.82e-07, + "shelbys": 1.82e-07, + "shimmers": 1.82e-07, + "shireen": 1.82e-07, + "shoujo": 1.82e-07, + "shrews": 1.82e-07, + "sigismund": 1.82e-07, + "sigurdsson": 1.82e-07, + "singalong": 1.82e-07, + "sinless": 1.82e-07, + "slapper": 1.82e-07, + "slobodan": 1.82e-07, + "slowpoke": 1.82e-07, + "smilin": 1.82e-07, + "snared": 1.82e-07, + "sneijder": 1.82e-07, + "snowballed": 1.82e-07, + "sociability": 1.82e-07, + "socs": 1.82e-07, + "soes": 1.82e-07, + "sofias": 1.82e-07, + "solberg": 1.82e-07, + "soloing": 1.82e-07, + "sonorous": 1.82e-07, + "spammer": 1.82e-07, + "spanky": 1.82e-07, + "spectres": 1.82e-07, + "spee": 1.82e-07, + "sphagnum": 1.82e-07, + "spink": 1.82e-07, + "spinnaker": 1.82e-07, + "spivak": 1.82e-07, + "spokespersons": 1.82e-07, + "spoofs": 1.82e-07, + "sportswriter": 1.82e-07, + "sprockets": 1.82e-07, + "spt": 1.82e-07, + "squints": 1.82e-07, + "squishing": 1.82e-07, + "starlets": 1.82e-07, + "steadfastness": 1.82e-07, + "steadiness": 1.82e-07, + "stepwise": 1.82e-07, + "stonehaven": 1.82e-07, + "storybrooke": 1.82e-07, + "strachey": 1.82e-07, + "stratos": 1.82e-07, + "stroma": 1.82e-07, + "subcontracted": 1.82e-07, + "subsiding": 1.82e-07, + "substructure": 1.82e-07, + "sunning": 1.82e-07, + "superego": 1.82e-07, + "superseding": 1.82e-07, + "suppl": 1.82e-07, + "susy": 1.82e-07, + "sweeties": 1.82e-07, + "swishing": 1.82e-07, + "syllabi": 1.82e-07, + "syncopated": 1.82e-07, + "syndicalism": 1.82e-07, + "tacs": 1.82e-07, + "tactless": 1.82e-07, + "taillight": 1.82e-07, + "takata": 1.82e-07, + "taluk": 1.82e-07, + "tamra": 1.82e-07, + "taney": 1.82e-07, + "tangling": 1.82e-07, + "tarrytown": 1.82e-07, + "tartars": 1.82e-07, + "telegraphic": 1.82e-07, + "tertullian": 1.82e-07, + "thallium": 1.82e-07, + "theos": 9.55e-08, + "tibbs": 1.82e-07, + "tila": 1.82e-07, + "tillie": 1.82e-07, + "tinctures": 1.82e-07, + "tissot": 1.82e-07, + "tomtom": 1.82e-07, + "tormentors": 1.82e-07, + "torsten": 1.82e-07, + "torturers": 1.82e-07, + "totnes": 1.82e-07, + "tracery": 1.82e-07, + "transacting": 1.82e-07, + "travancore": 1.82e-07, + "trevors": 1.82e-07, + "triode": 1.82e-07, + "troilus": 1.82e-07, + "trombones": 1.82e-07, + "troyes": 1.82e-07, + "truckin": 1.82e-07, + "tsetse": 1.82e-07, + "tsla": 1.82e-07, + "tummies": 1.82e-07, + "tunney": 1.82e-07, + "tyco": 1.82e-07, + "tyro": 1.82e-07, + "ubud": 1.82e-07, + "uct": 1.82e-07, + "uit": 1.82e-07, + "ultrafast": 1.82e-07, + "umma": 1.82e-07, + "unenviable": 1.82e-07, + "unfamiliarity": 1.82e-07, + "ungovernable": 1.82e-07, + "unguided": 1.82e-07, + "unimpeachable": 1.82e-07, + "unroll": 1.82e-07, + "untruths": 1.82e-07, + "upend": 1.82e-07, + "uptempo": 1.82e-07, + "urticaria": 1.82e-07, + "usoc": 1.82e-07, + "vaders": 1.82e-07, + "valens": 1.82e-07, + "valets": 1.82e-07, + "vaporization": 1.82e-07, + "variably": 1.82e-07, + "varro": 1.82e-07, + "venetia": 1.82e-07, + "ventilating": 1.82e-07, + "victorville": 1.82e-07, + "vilification": 1.82e-07, + "vilma": 1.82e-07, + "viner": 1.82e-07, + "vio": 1.82e-07, + "vitesse": 1.82e-07, + "vlsi": 1.82e-07, + "vocalization": 1.82e-07, + "vociferously": 1.82e-07, + "wagyu": 1.82e-07, + "wallin": 1.82e-07, + "warbling": 1.82e-07, + "waterstones": 1.82e-07, + "wavers": 1.82e-07, + "wds": 1.82e-07, + "webbers": 1.82e-07, + "weekes": 1.82e-07, + "wessel": 1.82e-07, + "wga": 1.82e-07, + "wheelwright": 1.82e-07, + "whitmans": 1.82e-07, + "whitstable": 1.82e-07, + "wicking": 1.82e-07, + "wif": 1.82e-07, + "wiggled": 1.82e-07, + "winchesters": 7.94e-08, + "wingless": 1.82e-07, + "wirt": 1.82e-07, + "witham": 1.82e-07, + "wollstonecraft": 1.82e-07, + "workaholics": 1.82e-07, + "wotton": 1.82e-07, + "xz": 1.82e-07, + "yukari": 1.82e-07, + "yuppies": 1.82e-07, + "yura": 1.82e-07, + "zalman": 1.82e-07, + "zina": 1.82e-07, + "zong": 1.82e-07, + "zoroastrianism": 1.82e-07, + "acetylation": 1.78e-07, + "achebe": 1.78e-07, + "adjacency": 1.78e-07, + "adonai": 1.78e-07, + "agn": 1.78e-07, + "agressive": 1.78e-07, + "ahhhhhh": 1.78e-07, + "aird": 1.78e-07, + "albicans": 1.78e-07, + "alienates": 1.78e-07, + "allu": 1.78e-07, + "alsop": 1.78e-07, + "altamont": 1.78e-07, + "altera": 1.78e-07, + "amadou": 1.78e-07, + "ambassadorial": 1.78e-07, + "amici": 1.78e-07, + "ampicillin": 1.78e-07, + "andante": 1.78e-07, + "andra": 1.78e-07, + "animatronics": 1.78e-07, + "anis": 2.75e-08, + "antti": 1.78e-07, + "apoplectic": 1.78e-07, + "appiah": 1.78e-07, + "appleseed": 1.78e-07, + "arachnids": 1.78e-07, + "arbour": 1.78e-07, + "ardour": 1.78e-07, + "ascribes": 1.78e-07, + "assanges": 1.78e-07, + "async": 1.78e-07, + "athlon": 1.78e-07, + "atten": 1.78e-07, + "attractor": 1.78e-07, + "authoritatively": 1.78e-07, + "aven": 1.78e-07, + "aventador": 1.78e-07, + "avn": 1.78e-07, + "ayes": 1.78e-07, + "aykroyd": 1.78e-07, + "azadi": 1.78e-07, + "azevedo": 1.78e-07, + "bacharach": 1.78e-07, + "baddeley": 1.78e-07, + "baroni": 1.78e-07, + "barthes": 1.78e-07, + "bartok": 1.78e-07, + "bartons": 1.78e-07, + "battler": 1.78e-07, + "bayerns": 1.78e-07, + "beckenham": 1.78e-07, + "beckinsale": 1.78e-07, + "beeing": 1.78e-07, + "beeston": 1.78e-07, + "belk": 1.78e-07, + "bemis": 1.78e-07, + "benares": 1.78e-07, + "bengt": 1.78e-07, + "benzoate": 1.78e-07, + "berkut": 1.78e-07, + "beshear": 1.78e-07, + "bharati": 1.78e-07, + "bhat": 1.78e-07, + "bicester": 1.78e-07, + "birdland": 1.78e-07, + "blacken": 1.78e-07, + "blather": 1.78e-07, + "bloomingdale": 1.78e-07, + "boldface": 1.78e-07, + "bootie": 1.78e-07, + "bormann": 1.78e-07, + "bovis": 1.78e-07, + "brawley": 1.78e-07, + "bresson": 1.78e-07, + "bricklayers": 1.78e-07, + "bridgehead": 1.78e-07, + "bridgeton": 1.78e-07, + "bristols": 1.78e-07, + "broadview": 1.78e-07, + "broking": 1.78e-07, + "brum": 1.78e-07, + "brushless": 1.78e-07, + "buckleys": 1.78e-07, + "bugler": 1.78e-07, + "businesswomen": 1.78e-07, + "cabos": 1.78e-07, + "caceres": 1.78e-07, + "caernarfon": 1.78e-07, + "calaveras": 1.78e-07, + "callout": 1.78e-07, + "camembert": 1.78e-07, + "cameroons": 1.12e-07, + "campylobacter": 1.78e-07, + "candide": 1.78e-07, + "candlelit": 1.78e-07, + "cantilevered": 1.78e-07, + "capetown": 1.78e-07, + "carabinieri": 1.78e-07, + "cardiothoracic": 1.78e-07, + "carmelite": 1.78e-07, + "carport": 1.78e-07, + "carranza": 1.78e-07, + "cascaded": 1.78e-07, + "casseroles": 1.78e-07, + "cata": 1.78e-07, + "cather": 1.78e-07, + "cathys": 1.78e-07, + "cautioning": 1.78e-07, + "caz": 1.78e-07, + "ccna": 1.78e-07, + "ceballos": 1.78e-07, + "cellini": 1.78e-07, + "centralizing": 1.78e-07, + "cerebro": 1.78e-07, + "cette": 1.78e-07, + "cfcs": 1.78e-07, + "chablis": 1.78e-07, + "chainsmokers": 1.78e-07, + "chaplins": 1.78e-07, + "charcot": 1.78e-07, + "chatters": 1.78e-07, + "ched": 1.78e-07, + "cheesesteak": 1.78e-07, + "childishness": 1.78e-07, + "clasping": 1.78e-07, + "clattenburg": 1.78e-07, + "clave": 1.78e-07, + "cleverley": 1.78e-07, + "clumped": 1.78e-07, + "cognizance": 1.78e-07, + "conceptualizing": 1.78e-07, + "condescend": 1.78e-07, + "conestoga": 1.78e-07, + "congressmans": 1.78e-07, + "contro": 1.78e-07, + "cornices": 1.78e-07, + "corvo": 1.78e-07, + "cottons": 1.55e-07, + "counterattacks": 1.78e-07, + "coursed": 1.78e-07, + "crisscrossed": 1.78e-07, + "cronk": 1.78e-07, + "cubbies": 1.78e-07, + "cuesta": 1.78e-07, + "cuming": 1.78e-07, + "cutoffs": 1.78e-07, + "cyruss": 1.78e-07, + "cytometry": 1.78e-07, + "dafydd": 1.78e-07, + "daigo": 1.78e-07, + "dain": 1.78e-07, + "dando": 1.78e-07, + "dccc": 1.78e-07, + "democratisation": 1.78e-07, + "depredations": 1.78e-07, + "derm": 1.78e-07, + "desde": 1.78e-07, + "dfc": 1.78e-07, + "dignitas": 1.78e-07, + "digression": 1.78e-07, + "disa": 1.78e-07, + "dishonourable": 1.78e-07, + "divergences": 1.78e-07, + "divesting": 1.78e-07, + "dolor": 1.78e-07, + "domi": 1.78e-07, + "domina": 1.78e-07, + "domus": 1.78e-07, + "doxycycline": 1.78e-07, + "doyen": 1.78e-07, + "drover": 1.78e-07, + "dryland": 1.78e-07, + "dufferin": 1.78e-07, + "dunford": 1.78e-07, + "dupuis": 1.78e-07, + "durrell": 1.78e-07, + "dvt": 1.78e-07, + "earnshaw": 1.78e-07, + "ecl": 1.78e-07, + "edinburg": 1.78e-07, + "editorially": 1.78e-07, + "edwardes": 1.78e-07, + "eka": 1.78e-07, + "electrophysiology": 1.78e-07, + "eloy": 1.78e-07, + "elp": 1.78e-07, + "elric": 1.78e-07, + "enchantments": 1.78e-07, + "endeavouring": 1.78e-07, + "endorphin": 1.78e-07, + "engulfs": 1.78e-07, + "ennobled": 1.78e-07, + "enya": 1.78e-07, + "eoe": 1.78e-07, + "epictetus": 1.78e-07, + "episcopacy": 1.78e-07, + "erykah": 1.78e-07, + "erythema": 1.78e-07, + "exculpatory": 1.78e-07, + "extremly": 1.78e-07, + "eyck": 1.78e-07, + "eyrie": 1.78e-07, + "fairings": 1.78e-07, + "faisalabad": 1.78e-07, + "fallons": 1.78e-07, + "famille": 1.78e-07, + "faria": 1.78e-07, + "fayed": 1.78e-07, + "ferenc": 1.78e-07, + "fetters": 1.78e-07, + "fiestas": 1.78e-07, + "filmfare": 1.78e-07, + "finnigan": 1.78e-07, + "firebase": 1.78e-07, + "firewire": 1.78e-07, + "firmed": 1.78e-07, + "fleshing": 1.78e-07, + "flim": 1.78e-07, + "flir": 1.78e-07, + "fln": 1.78e-07, + "floundered": 1.78e-07, + "flout": 1.78e-07, + "foc": 1.78e-07, + "formulary": 1.78e-07, + "foxborough": 1.78e-07, + "frailties": 1.78e-07, + "frankland": 1.78e-07, + "freshening": 1.78e-07, + "frontenac": 1.78e-07, + "fryers": 1.78e-07, + "ftr": 1.78e-07, + "fukuyama": 1.78e-07, + "fumed": 1.78e-07, + "furloughed": 1.78e-07, + "furnishes": 1.78e-07, + "furred": 1.78e-07, + "furys": 1.78e-07, + "galli": 1.78e-07, + "gamed": 1.78e-07, + "garam": 1.78e-07, + "gase": 1.78e-07, + "gatto": 1.78e-07, + "gayness": 1.78e-07, + "gendarme": 1.78e-07, + "genki": 1.78e-07, + "geocentric": 1.78e-07, + "gianluca": 1.78e-07, + "gigging": 1.78e-07, + "gingivitis": 1.78e-07, + "ginobili": 1.78e-07, + "glengarry": 1.78e-07, + "glimmering": 1.78e-07, + "glisten": 1.78e-07, + "glittered": 1.78e-07, + "glucocorticoids": 1.78e-07, + "glutinous": 1.78e-07, + "goading": 1.78e-07, + "goblets": 1.78e-07, + "goldbergs": 1.2e-07, + "goldsboro": 1.78e-07, + "gomezs": 1.78e-07, + "gprs": 1.78e-07, + "grambling": 1.78e-07, + "grammarians": 1.78e-07, + "gratuitously": 1.78e-07, + "gravedigger": 1.78e-07, + "greeter": 1.78e-07, + "grinstead": 1.78e-07, + "groovin": 1.78e-07, + "grose": 1.78e-07, + "growlers": 1.78e-07, + "grrrr": 1.78e-07, + "gunfighter": 1.78e-07, + "gunns": 7.41e-08, + "gurkha": 1.78e-07, + "gurkhas": 1.78e-07, + "guterres": 1.78e-07, + "gwan": 1.78e-07, + "hadassah": 1.78e-07, + "halfpipe": 1.78e-07, + "hameed": 1.78e-07, + "handjobs": 1.78e-07, + "handsomest": 1.78e-07, + "haran": 1.78e-07, + "hasn": 1.78e-07, + "haughton": 1.78e-07, + "havok": 1.78e-07, + "hearers": 1.78e-07, + "helices": 1.78e-07, + "hermine": 1.78e-07, + "hesiod": 1.78e-07, + "highline": 1.78e-07, + "hijabs": 1.78e-07, + "hilaire": 1.78e-07, + "hird": 1.78e-07, + "histidine": 1.78e-07, + "hoar": 1.78e-07, + "hoeing": 1.78e-07, + "homebound": 1.78e-07, + "homunculus": 1.78e-07, + "horwitz": 1.78e-07, + "hubba": 1.78e-07, + "hughs": 1.78e-07, + "humanitarianism": 1.78e-07, + "hurtado": 1.78e-07, + "husker": 1.78e-07, + "hyaline": 1.78e-07, + "hydrazine": 1.78e-07, + "hyoid": 1.78e-07, + "hyperdrive": 1.78e-07, + "hypnotizing": 1.78e-07, + "ifyou": 1.78e-07, + "ikes": 1.78e-07, + "illy": 1.78e-07, + "imovie": 1.78e-07, + "impertinence": 1.78e-07, + "impregnation": 1.78e-07, + "indesign": 1.78e-07, + "indexation": 1.78e-07, + "indoctrinate": 1.78e-07, + "induct": 1.78e-07, + "innova": 1.78e-07, + "inquests": 1.78e-07, + "instyle": 1.78e-07, + "internalizing": 1.78e-07, + "irenes": 1.78e-07, + "irregulars": 1.78e-07, + "irreligious": 1.78e-07, + "iy": 1.78e-07, + "jabal": 1.78e-07, + "jackrabbit": 1.78e-07, + "janson": 1.78e-07, + "javelins": 1.78e-07, + "jeffords": 1.78e-07, + "jingling": 1.78e-07, + "jochen": 1.78e-07, + "joist": 1.78e-07, + "jol": 1.78e-07, + "jotaro": 1.78e-07, + "jsf": 1.78e-07, + "jule": 1.78e-07, + "junkers": 1.78e-07, + "jurong": 1.78e-07, + "kalin": 1.78e-07, + "kazakhstans": 1.78e-07, + "kegan": 1.78e-07, + "keirin": 1.78e-07, + "kermode": 1.78e-07, + "kerner": 1.78e-07, + "kersey": 1.78e-07, + "khe": 1.78e-07, + "khoury": 1.78e-07, + "kickstand": 1.78e-07, + "kirke": 1.78e-07, + "kishan": 1.78e-07, + "kishimoto": 1.78e-07, + "kitson": 1.78e-07, + "klang": 1.78e-07, + "krg": 1.78e-07, + "kubernetes": 1.78e-07, + "kula": 1.78e-07, + "kulkarni": 1.78e-07, + "kunitz": 1.78e-07, + "kyocera": 1.78e-07, + "lamars": 1.78e-07, + "latta": 1.78e-07, + "latvians": 1.78e-07, + "laudanum": 1.78e-07, + "laughingstock": 1.78e-07, + "layaway": 1.78e-07, + "ldc": 1.78e-07, + "lemay": 1.78e-07, + "lewisville": 1.78e-07, + "liddy": 1.78e-07, + "limpet": 1.78e-07, + "linoleic": 1.78e-07, + "lio": 1.78e-07, + "lippman": 1.78e-07, + "lisi": 1.78e-07, + "liste": 1.78e-07, + "lites": 1.78e-07, + "lockjaw": 1.78e-07, + "loggins": 1.78e-07, + "loll": 1.78e-07, + "longue": 1.78e-07, + "loni": 1.78e-07, + "looong": 1.78e-07, + "lorazepam": 1.78e-07, + "lsp": 1.78e-07, + "ludovic": 1.78e-07, + "ludovico": 1.78e-07, + "lunchroom": 1.78e-07, + "lychee": 1.78e-07, + "lytham": 1.78e-07, + "macallan": 1.78e-07, + "macan": 1.78e-07, + "maccabi": 1.78e-07, + "macdowell": 1.78e-07, + "machinima": 1.78e-07, + "macneill": 1.78e-07, + "macross": 1.78e-07, + "madelyn": 1.78e-07, + "mainlanders": 1.78e-07, + "maka": 1.78e-07, + "maktoum": 1.78e-07, + "malan": 1.78e-07, + "malley": 1.78e-07, + "mally": 1.78e-07, + "mand": 1.78e-07, + "manoa": 1.78e-07, + "mansoor": 1.78e-07, + "manticore": 1.78e-07, + "marceau": 1.78e-07, + "marduk": 1.78e-07, + "marfa": 1.78e-07, + "margret": 1.78e-07, + "marmont": 1.78e-07, + "masih": 1.78e-07, + "massena": 1.78e-07, + "massy": 1.78e-07, + "masterclasses": 1.78e-07, + "mateen": 1.78e-07, + "mattias": 1.78e-07, + "maurier": 1.78e-07, + "mccloy": 1.78e-07, + "mcdevitt": 1.78e-07, + "mclemore": 1.78e-07, + "mcneal": 1.78e-07, + "mcqueens": 1.78e-07, + "mdgs": 1.78e-07, + "meandered": 1.78e-07, + "meep": 1.78e-07, + "meereen": 1.78e-07, + "meetin": 1.78e-07, + "melanesian": 1.78e-07, + "membered": 1.78e-07, + "mesmer": 1.78e-07, + "metroplex": 1.78e-07, + "michener": 1.78e-07, + "milbank": 1.78e-07, + "millenia": 1.78e-07, + "mincemeat": 1.78e-07, + "minibuses": 1.78e-07, + "minkowski": 1.78e-07, + "minnesotans": 1.78e-07, + "misdiagnosis": 1.78e-07, + "mktg": 1.78e-07, + "mle": 1.78e-07, + "mmj": 1.78e-07, + "moats": 1.78e-07, + "mobutu": 1.78e-07, + "modafinil": 1.78e-07, + "modifiable": 1.78e-07, + "mogwai": 1.78e-07, + "mohammedan": 1.78e-07, + "moises": 1.78e-07, + "moisten": 1.78e-07, + "moniz": 1.78e-07, + "monstrously": 1.78e-07, + "montparnasse": 1.78e-07, + "mope": 1.78e-07, + "mordant": 1.78e-07, + "morgenthau": 1.78e-07, + "mors": 1.78e-07, + "moschino": 1.78e-07, + "mothra": 1.78e-07, + "moult": 1.78e-07, + "mourner": 1.78e-07, + "movember": 1.78e-07, + "moylan": 1.78e-07, + "muertos": 1.78e-07, + "muhlenberg": 1.78e-07, + "muk": 1.78e-07, + "mulching": 1.78e-07, + "mulgrew": 1.78e-07, + "murrell": 1.78e-07, + "murry": 1.78e-07, + "muscatine": 1.78e-07, + "muschamp": 1.78e-07, + "muscovy": 1.78e-07, + "mutinous": 1.78e-07, + "mwe": 1.78e-07, + "mwr": 1.78e-07, + "naim": 1.78e-07, + "nakuru": 1.78e-07, + "nappa": 1.78e-07, + "nativist": 1.78e-07, + "necking": 1.78e-07, + "nega": 1.78e-07, + "nellis": 1.78e-07, + "neoplasm": 1.78e-07, + "nephropathy": 1.78e-07, + "nervy": 1.78e-07, + "nesbit": 1.78e-07, + "neurosurgeons": 1.78e-07, + "nicking": 1.78e-07, + "nmd": 1.78e-07, + "noguchi": 1.78e-07, + "norristown": 1.78e-07, + "northants": 1.78e-07, + "nuisances": 1.78e-07, + "nuzzle": 1.78e-07, + "oconner": 1.78e-07, + "oaf": 1.78e-07, + "offi": 1.78e-07, + "offshoring": 1.78e-07, + "okazaki": 1.78e-07, + "okinawan": 1.78e-07, + "olav": 1.78e-07, + "oleh": 1.78e-07, + "omars": 1.78e-07, + "oneonta": 1.78e-07, + "oocyte": 1.78e-07, + "orions": 9.12e-08, + "ornithological": 1.78e-07, + "osamu": 1.78e-07, + "otho": 1.78e-07, + "outbuilding": 1.78e-07, + "outflank": 1.78e-07, + "outwitted": 1.78e-07, + "overexposed": 1.78e-07, + "overqualified": 1.78e-07, + "oxidants": 1.78e-07, + "paediatrician": 1.78e-07, + "pagination": 1.78e-07, + "paintwork": 1.78e-07, + "paleontological": 1.78e-07, + "pantries": 1.78e-07, + "paoli": 1.78e-07, + "pariss": 1.78e-07, + "parishad": 1.78e-07, + "parle": 1.78e-07, + "partiers": 1.78e-07, + "pathfinders": 1.78e-07, + "pdl": 1.78e-07, + "pedometer": 1.78e-07, + "pendle": 1.78e-07, + "penitence": 1.78e-07, + "penumbra": 1.78e-07, + "perspex": 1.78e-07, + "pessimists": 1.78e-07, + "philatelic": 1.78e-07, + "phobos": 1.78e-07, + "phoenicia": 1.78e-07, + "picketed": 1.78e-07, + "pict": 1.78e-07, + "pinnock": 1.78e-07, + "pipa": 1.78e-07, + "pitino": 1.78e-07, + "pkr": 1.78e-07, + "pnas": 1.78e-07, + "polarize": 1.78e-07, + "polysaccharides": 1.78e-07, + "pomfret": 1.78e-07, + "porgy": 1.78e-07, + "portnoy": 1.78e-07, + "postgresql": 1.78e-07, + "potosi": 1.78e-07, + "pranab": 1.78e-07, + "printings": 1.78e-07, + "proj": 1.78e-07, + "pui": 1.78e-07, + "punjabis": 1.78e-07, + "pureed": 1.78e-07, + "purifies": 1.78e-07, + "qadir": 1.78e-07, + "qtr": 1.78e-07, + "quand": 1.78e-07, + "quarrelling": 1.78e-07, + "radiata": 1.78e-07, + "radicalised": 1.78e-07, + "radix": 1.78e-07, + "radu": 1.78e-07, + "raffi": 1.78e-07, + "railroaded": 1.78e-07, + "rajkot": 1.78e-07, + "ramage": 1.78e-07, + "ramzan": 1.78e-07, + "rdr": 1.78e-07, + "realpolitik": 1.78e-07, + "rearmament": 1.78e-07, + "reciprocation": 1.78e-07, + "redbridge": 1.78e-07, + "reducible": 1.78e-07, + "reedus": 1.78e-07, + "refines": 1.78e-07, + "reitman": 1.78e-07, + "remainders": 1.78e-07, + "reminisced": 1.78e-07, + "repack": 1.78e-07, + "repartee": 1.78e-07, + "repercussion": 1.78e-07, + "repro": 1.78e-07, + "requester": 1.78e-07, + "retrained": 1.78e-07, + "revelers": 1.78e-07, + "reynold": 1.78e-07, + "rhinoplasty": 1.78e-07, + "ribeye": 1.78e-07, + "rickards": 1.78e-07, + "rickshaws": 1.78e-07, + "ridder": 1.78e-07, + "rifkin": 1.78e-07, + "rightness": 1.78e-07, + "rivlin": 1.78e-07, + "roja": 1.78e-07, + "rosehill": 1.78e-07, + "rossis": 1.78e-07, + "roughshod": 1.78e-07, + "royer": 1.78e-07, + "rozier": 1.78e-07, + "ruto": 1.78e-07, + "safeco": 1.78e-07, + "sahm": 1.78e-07, + "saner": 1.78e-07, + "sarcoidosis": 1.78e-07, + "satiate": 1.78e-07, + "saviours": 8.13e-08, + "sawant": 1.78e-07, + "schechter": 1.78e-07, + "schnabel": 1.78e-07, + "schreiner": 1.78e-07, + "scythian": 1.78e-07, + "seismicity": 1.78e-07, + "sensex": 1.78e-07, + "servicemembers": 1.78e-07, + "sfp": 1.78e-07, + "sharmila": 1.78e-07, + "shilpa": 1.78e-07, + "shinsuke": 1.78e-07, + "shivani": 1.78e-07, + "shockley": 1.78e-07, + "shoeless": 1.78e-07, + "showin": 1.78e-07, + "silvana": 1.78e-07, + "sinan": 1.78e-07, + "skinners": 8.13e-08, + "skylab": 1.78e-07, + "slanting": 1.78e-07, + "slaters": 5.62e-08, + "sleeker": 1.78e-07, + "slimes": 1.78e-07, + "slippin": 1.78e-07, + "smithsonians": 1.78e-07, + "snips": 1.78e-07, + "snouts": 1.78e-07, + "snowshoes": 1.78e-07, + "snowstorms": 1.78e-07, + "soh": 1.78e-07, + "sorption": 1.78e-07, + "soundbites": 1.78e-07, + "soundsystem": 1.78e-07, + "southwick": 1.78e-07, + "spittle": 1.78e-07, + "sproles": 1.78e-07, + "spyglass": 1.78e-07, + "squeaker": 1.78e-07, + "squinted": 1.78e-07, + "sridevi": 1.78e-07, + "srv": 1.78e-07, + "stalactites": 1.78e-07, + "stannard": 1.78e-07, + "steadying": 1.78e-07, + "steppenwolf": 1.78e-07, + "stickiness": 1.78e-07, + "stirrings": 1.78e-07, + "stoics": 1.78e-07, + "stoltenberg": 1.78e-07, + "stumpf": 1.78e-07, + "styler": 1.78e-07, + "sufjan": 1.78e-07, + "summerfield": 1.78e-07, + "symington": 1.78e-07, + "synesthesia": 1.78e-07, + "talbert": 1.78e-07, + "tanners": 1.35e-07, + "tante": 1.78e-07, + "tari": 1.78e-07, + "tatler": 1.78e-07, + "taxiway": 1.78e-07, + "tedder": 1.78e-07, + "teepee": 1.78e-07, + "tenney": 1.78e-07, + "tesoro": 1.78e-07, + "tetsuo": 1.78e-07, + "tev": 1.78e-07, + "texass": 1.78e-07, + "tge": 1.78e-07, + "thelonious": 1.78e-07, + "theosophy": 1.78e-07, + "therapeutically": 1.78e-07, + "thermite": 1.78e-07, + "thrips": 1.78e-07, + "thur": 1.78e-07, + "timepieces": 1.78e-07, + "tinie": 1.78e-07, + "tipu": 1.78e-07, + "tmj": 1.78e-07, + "toit": 1.78e-07, + "tokamak": 1.78e-07, + "tomahawks": 1.78e-07, + "tonio": 1.78e-07, + "toroidal": 1.78e-07, + "tpi": 1.78e-07, + "transferase": 1.78e-07, + "transgenders": 1.78e-07, + "triathlons": 1.78e-07, + "trib": 1.78e-07, + "triphosphate": 1.78e-07, + "troi": 1.78e-07, + "tsg": 1.78e-07, + "tsipras": 1.78e-07, + "tthe": 1.78e-07, + "turki": 1.78e-07, + "turncoat": 1.78e-07, + "turney": 1.78e-07, + "tush": 1.78e-07, + "twombly": 1.78e-07, + "udinese": 1.78e-07, + "ulama": 1.78e-07, + "ultimatums": 1.78e-07, + "unders": 1.78e-07, + "underwire": 1.78e-07, + "undiminished": 1.78e-07, + "unenthusiastic": 1.78e-07, + "upanishads": 1.78e-07, + "usefull": 1.78e-07, + "usi": 1.78e-07, + "vashem": 1.78e-07, + "vcrs": 1.78e-07, + "vergne": 1.78e-07, + "vernons": 1.78e-07, + "veuve": 1.78e-07, + "viciousness": 1.78e-07, + "vicomte": 1.78e-07, + "vosges": 1.78e-07, + "wahid": 1.78e-07, + "wargame": 1.78e-07, + "watashi": 1.78e-07, + "waypoints": 1.78e-07, + "wdw": 1.78e-07, + "welwyn": 1.78e-07, + "wesen": 1.78e-07, + "wetmore": 1.78e-07, + "whippet": 1.78e-07, + "whois": 1.78e-07, + "whorehouse": 1.78e-07, + "wickes": 1.78e-07, + "wigglesworth": 1.78e-07, + "wilk": 1.78e-07, + "wilmslow": 1.78e-07, + "wisniewski": 1.78e-07, + "wizkid": 1.78e-07, + "wolters": 1.78e-07, + "woodwinds": 1.78e-07, + "wortley": 1.78e-07, + "wsa": 1.78e-07, + "wsw": 1.78e-07, + "wz": 1.78e-07, + "yancy": 1.78e-07, + "yarbrough": 1.78e-07, + "yearlings": 1.78e-07, + "yeomen": 1.78e-07, + "yoshis": 1.78e-07, + "yoshiki": 1.78e-07, + "yuris": 1.78e-07, + "yuriy": 1.78e-07, + "zapping": 1.78e-07, + "zelena": 1.78e-07, + "zhukov": 1.78e-07, + "zipline": 1.78e-07, + "zno": 1.78e-07, + "zoster": 1.78e-07, + "zulfiqar": 1.78e-07, + "abacha": 1.74e-07, + "abaya": 1.74e-07, + "abney": 1.74e-07, + "abruzzo": 1.74e-07, + "adelina": 1.74e-07, + "ady": 1.74e-07, + "aei": 1.74e-07, + "aeons": 1.74e-07, + "aep": 1.74e-07, + "afaik": 1.74e-07, + "affray": 1.74e-07, + "afscme": 1.74e-07, + "agonies": 1.74e-07, + "agronomist": 1.74e-07, + "aif": 1.74e-07, + "ailsa": 1.74e-07, + "albertine": 1.74e-07, + "alfresco": 1.74e-07, + "amana": 1.74e-07, + "amani": 1.74e-07, + "amaral": 1.74e-07, + "ambo": 1.74e-07, + "amersham": 1.74e-07, + "amores": 1.74e-07, + "angelos": 1.32e-07, + "angriest": 1.74e-07, + "antisense": 1.74e-07, + "anza": 1.74e-07, + "appetit": 1.74e-07, + "arai": 1.74e-07, + "arcuate": 1.74e-07, + "aristotles": 1.74e-07, + "armbar": 1.74e-07, + "armidale": 1.74e-07, + "armistead": 1.74e-07, + "arryn": 1.74e-07, + "askari": 1.74e-07, + "astrolabe": 1.74e-07, + "astronomically": 1.74e-07, + "attleboro": 1.74e-07, + "atvs": 5.37e-08, + "augustan": 1.74e-07, + "aurum": 1.74e-07, + "azazel": 1.74e-07, + "backlogs": 1.74e-07, + "badged": 1.74e-07, + "bafana": 1.74e-07, + "balms": 1.74e-07, + "banaras": 1.74e-07, + "bande": 1.74e-07, + "baro": 1.74e-07, + "basalts": 1.74e-07, + "basi": 1.74e-07, + "baucus": 1.74e-07, + "bauers": 1.74e-07, + "baw": 1.74e-07, + "bbn": 1.74e-07, + "bedell": 1.74e-07, + "bedroomed": 1.74e-07, + "beehives": 1.74e-07, + "bellaire": 1.74e-07, + "bellybutton": 1.74e-07, + "bendis": 1.74e-07, + "berndt": 1.74e-07, + "bespectacled": 1.74e-07, + "bez": 1.74e-07, + "bian": 1.74e-07, + "binges": 1.74e-07, + "binnie": 1.74e-07, + "bivalves": 1.74e-07, + "bks": 1.74e-07, + "blackford": 1.74e-07, + "blacksmithing": 1.74e-07, + "blacktop": 1.74e-07, + "blass": 1.74e-07, + "blok": 1.74e-07, + "bnd": 1.74e-07, + "bodley": 1.74e-07, + "bombshells": 1.74e-07, + "bootlegging": 1.74e-07, + "bootloader": 1.74e-07, + "bootstrapping": 1.74e-07, + "boras": 1.74e-07, + "bordello": 1.74e-07, + "borns": 1.74e-07, + "bouche": 1.74e-07, + "boye": 1.74e-07, + "bramley": 1.74e-07, + "branca": 1.74e-07, + "branislav": 1.74e-07, + "brannigan": 1.74e-07, + "brannon": 1.74e-07, + "brassica": 1.74e-07, + "brattleboro": 1.74e-07, + "braverman": 1.74e-07, + "brevis": 1.74e-07, + "brickworks": 1.74e-07, + "bris": 1.74e-07, + "broody": 1.74e-07, + "btcc": 1.74e-07, + "buehler": 1.74e-07, + "bulla": 1.74e-07, + "bullfighter": 1.74e-07, + "bullring": 1.74e-07, + "bulova": 1.74e-07, + "burkett": 1.74e-07, + "busey": 1.74e-07, + "busker": 1.74e-07, + "butadiene": 1.74e-07, + "buttes": 1.74e-07, + "cadences": 1.74e-07, + "cahiers": 1.74e-07, + "callender": 1.74e-07, + "callings": 1.74e-07, + "camelback": 1.74e-07, + "cannonballs": 1.74e-07, + "canute": 1.74e-07, + "capitaine": 1.74e-07, + "cardholder": 1.74e-07, + "carnitine": 1.74e-07, + "carolinians": 1.74e-07, + "cartouche": 1.74e-07, + "carville": 1.74e-07, + "cassian": 1.74e-07, + "cassidys": 1.74e-07, + "cawley": 1.74e-07, + "cbcs": 1.74e-07, + "centerpieces": 1.74e-07, + "cga": 1.74e-07, + "chaldeans": 1.74e-07, + "chambliss": 1.74e-07, + "chappy": 1.74e-07, + "chertsey": 1.74e-07, + "chev": 1.74e-07, + "chicanery": 1.74e-07, + "chippenham": 1.74e-07, + "chitin": 1.74e-07, + "chuy": 1.74e-07, + "cimarron": 1.74e-07, + "cipriani": 1.74e-07, + "cisgender": 1.74e-07, + "clasico": 1.74e-07, + "claypool": 1.74e-07, + "clitheroe": 1.74e-07, + "colangelo": 1.74e-07, + "colonys": 1.74e-07, + "comerica": 1.74e-07, + "commandeer": 1.74e-07, + "commun": 1.74e-07, + "compensator": 1.74e-07, + "comtesse": 1.74e-07, + "conceives": 1.74e-07, + "conjurer": 1.74e-07, + "contextualize": 1.74e-07, + "contralateral": 1.74e-07, + "contusions": 1.74e-07, + "corne": 1.74e-07, + "counteracts": 1.74e-07, + "cous": 1.74e-07, + "crd": 1.74e-07, + "creat": 1.74e-07, + "cromartie": 1.74e-07, + "cros": 1.74e-07, + "cruisin": 1.74e-07, + "curiae": 1.74e-07, + "customizations": 1.74e-07, + "dahls": 1.74e-07, + "dakin": 1.74e-07, + "dalliance": 1.74e-07, + "daltons": 1.2e-07, + "darke": 1.74e-07, + "ddu": 1.74e-07, + "deegan": 1.74e-07, + "defers": 1.74e-07, + "deism": 1.74e-07, + "dej": 1.74e-07, + "demonization": 1.74e-07, + "denigration": 1.74e-07, + "determinedly": 1.74e-07, + "detonations": 1.74e-07, + "dfg": 1.74e-07, + "diam": 1.74e-07, + "dich": 1.74e-07, + "didgeridoo": 1.74e-07, + "dierks": 1.74e-07, + "dii": 1.74e-07, + "dilla": 1.74e-07, + "dimers": 1.74e-07, + "dinning": 1.74e-07, + "disassociated": 1.74e-07, + "dishevelled": 1.74e-07, + "disperses": 1.74e-07, + "displayport": 1.74e-07, + "ditzy": 1.74e-07, + "diu": 1.74e-07, + "dkk": 1.74e-07, + "doggystyle": 1.74e-07, + "donati": 1.74e-07, + "dordogne": 1.74e-07, + "dosimetry": 1.74e-07, + "doughy": 1.74e-07, + "douma": 1.74e-07, + "draghi": 1.74e-07, + "dudgeon": 1.74e-07, + "dunder": 1.74e-07, + "durrant": 1.74e-07, + "dutchmen": 1.74e-07, + "duxbury": 1.74e-07, + "dwarven": 1.74e-07, + "earmark": 1.74e-07, + "edsel": 1.74e-07, + "educ": 1.74e-07, + "efa": 1.74e-07, + "eleni": 1.74e-07, + "elyria": 1.74e-07, + "emplacements": 1.74e-07, + "empted": 1.74e-07, + "engenders": 1.74e-07, + "engi": 1.74e-07, + "engrained": 1.74e-07, + "enso": 1.74e-07, + "erfurt": 1.74e-07, + "erythromycin": 1.74e-07, + "ethier": 1.74e-07, + "ethnological": 1.74e-07, + "eubanks": 1.74e-07, + "eurocopter": 1.74e-07, + "ewok": 1.74e-07, + "exons": 1.74e-07, + "fabricators": 1.74e-07, + "fabricius": 1.74e-07, + "familiars": 1.74e-07, + "fannin": 1.74e-07, + "farrelly": 1.74e-07, + "fdc": 1.74e-07, + "feck": 1.74e-07, + "ferran": 1.74e-07, + "fhm": 1.74e-07, + "filmic": 1.74e-07, + "fishburne": 1.74e-07, + "flinn": 1.74e-07, + "flints": 1.41e-07, + "fogging": 1.74e-07, + "formic": 1.74e-07, + "francisca": 1.74e-07, + "frankford": 1.74e-07, + "frederica": 1.74e-07, + "ftb": 1.74e-07, + "ftd": 1.74e-07, + "fug": 1.74e-07, + "fuzhou": 1.74e-07, + "gabbert": 1.74e-07, + "gainfully": 1.74e-07, + "gansu": 1.74e-07, + "garten": 1.74e-07, + "garwood": 1.74e-07, + "gasser": 1.74e-07, + "gavins": 1.74e-07, + "gaydar": 1.74e-07, + "gelb": 1.74e-07, + "generalizes": 1.74e-07, + "genii": 1.74e-07, + "gentlest": 1.74e-07, + "geodesy": 1.74e-07, + "germinated": 1.74e-07, + "glasser": 1.74e-07, + "glossing": 1.74e-07, + "glycerine": 1.74e-07, + "goebel": 1.74e-07, + "gondwana": 1.74e-07, + "goodspeed": 1.74e-07, + "gowan": 1.74e-07, + "gpi": 1.74e-07, + "grama": 1.74e-07, + "grandi": 1.74e-07, + "granites": 1.74e-07, + "grau": 1.74e-07, + "gravitys": 1.74e-07, + "graysons": 1.74e-07, + "gribble": 1.74e-07, + "grifters": 1.74e-07, + "grindelwald": 1.74e-07, + "gritting": 1.74e-07, + "habitability": 1.74e-07, + "hairstyling": 1.74e-07, + "halfling": 1.74e-07, + "hamblin": 1.74e-07, + "hancocks": 1.74e-07, + "hanne": 1.74e-07, + "hanrahan": 1.74e-07, + "hansons": 1.74e-07, + "haroon": 1.74e-07, + "haydock": 1.74e-07, + "headstart": 1.74e-07, + "hegelian": 1.74e-07, + "hemispheric": 1.74e-07, + "herold": 1.74e-07, + "herrington": 1.74e-07, + "hiltons": 1.74e-07, + "hizb": 1.74e-07, + "holdouts": 1.74e-07, + "holies": 1.74e-07, + "hominids": 1.74e-07, + "hooky": 1.74e-07, + "howrah": 1.74e-07, + "hsiang": 1.74e-07, + "humvees": 1.74e-07, + "husayn": 1.74e-07, + "hybridized": 1.74e-07, + "iana": 1.74e-07, + "iginla": 1.74e-07, + "ignoble": 1.74e-07, + "illingworth": 1.74e-07, + "imbibed": 1.74e-07, + "imperceptibly": 1.74e-07, + "impoverishment": 1.74e-07, + "indecipherable": 1.74e-07, + "infers": 1.74e-07, + "ingratiate": 1.74e-07, + "inguinal": 1.74e-07, + "initio": 1.74e-07, + "inslee": 1.74e-07, + "instrumentality": 1.74e-07, + "insurgencies": 1.74e-07, + "intercalated": 1.74e-07, + "intermolecular": 1.74e-07, + "iowans": 1.74e-07, + "irradiance": 1.74e-07, + "irrawaddy": 1.74e-07, + "isadora": 1.74e-07, + "isley": 1.74e-07, + "isoform": 1.74e-07, + "istvan": 1.74e-07, + "italianate": 1.74e-07, + "jaimie": 1.74e-07, + "jamar": 1.74e-07, + "jarrow": 1.74e-07, + "jaundiced": 1.74e-07, + "jesters": 6.61e-08, + "johanson": 1.74e-07, + "joji": 1.74e-07, + "jotted": 1.74e-07, + "judgeship": 1.74e-07, + "jujitsu": 1.74e-07, + "juxtaposing": 1.74e-07, + "kael": 1.74e-07, + "kahan": 1.74e-07, + "kais": 8.71e-08, + "kaneko": 1.74e-07, + "kapoors": 1.74e-07, + "karloff": 1.74e-07, + "kartik": 1.74e-07, + "ked": 1.74e-07, + "kendalls": 1.74e-07, + "kerman": 1.74e-07, + "keung": 1.74e-07, + "kevorkian": 1.74e-07, + "keyring": 1.74e-07, + "khair": 1.74e-07, + "khosla": 1.74e-07, + "kimbrough": 1.74e-07, + "kir": 1.74e-07, + "kisan": 1.74e-07, + "kla": 1.74e-07, + "knotts": 1.7e-07, + "kozlowski": 1.74e-07, + "kraftwerk": 1.74e-07, + "kristof": 1.74e-07, + "kuru": 1.74e-07, + "kye": 1.74e-07, + "kyler": 1.74e-07, + "laconia": 1.74e-07, + "ladysmith": 1.74e-07, + "lafitte": 1.74e-07, + "lait": 1.74e-07, + "lamm": 1.74e-07, + "larisa": 1.74e-07, + "lascelles": 1.74e-07, + "laypeople": 1.74e-07, + "leduc": 1.74e-07, + "legislations": 1.74e-07, + "leominster": 1.74e-07, + "lesbo": 1.74e-07, + "levys": 1.74e-07, + "leys": 1.74e-07, + "liane": 1.74e-07, + "liebe": 1.74e-07, + "lill": 1.74e-07, + "liminal": 1.74e-07, + "lithic": 1.74e-07, + "livings": 7.24e-08, + "loran": 1.74e-07, + "lorre": 1.74e-07, + "lsus": 1.74e-07, + "lubin": 1.74e-07, + "luckey": 1.74e-07, + "luddite": 1.74e-07, + "lusted": 1.74e-07, + "lymphoblastic": 1.74e-07, + "macnamara": 1.74e-07, + "madara": 1.74e-07, + "madhav": 1.74e-07, + "magik": 1.74e-07, + "magritte": 1.74e-07, + "mamoru": 1.74e-07, + "manali": 1.74e-07, + "manservant": 1.74e-07, + "markos": 1.74e-07, + "markovic": 1.74e-07, + "marra": 1.74e-07, + "marvellously": 1.74e-07, + "mattson": 1.74e-07, + "maxing": 1.74e-07, + "mccalls": 1.74e-07, + "mccarran": 1.74e-07, + "mccook": 1.74e-07, + "mcglynn": 1.74e-07, + "mdd": 1.74e-07, + "mdl": 1.74e-07, + "mealtimes": 1.74e-07, + "megalithic": 1.74e-07, + "meghalaya": 1.74e-07, + "mesolithic": 1.74e-07, + "metairie": 1.74e-07, + "metrorail": 1.74e-07, + "microfluidic": 1.74e-07, + "micrornas": 1.74e-07, + "milgram": 1.74e-07, + "mindedly": 1.74e-07, + "misprint": 1.74e-07, + "misrepresents": 1.74e-07, + "mkhitaryan": 1.74e-07, + "modeler": 1.74e-07, + "modelo": 1.74e-07, + "moderns": 1.74e-07, + "mohawks": 1.74e-07, + "mohit": 1.74e-07, + "moldavia": 1.74e-07, + "mordechai": 1.74e-07, + "mostyn": 1.74e-07, + "moultrie": 1.74e-07, + "muesli": 1.74e-07, + "musicology": 1.74e-07, + "mutagen": 1.74e-07, + "nagata": 1.74e-07, + "nandos": 7.59e-08, + "narain": 1.74e-07, + "naturel": 1.74e-07, + "naxos": 1.74e-07, + "nazarbayev": 1.74e-07, + "nearness": 1.74e-07, + "necro": 1.74e-07, + "needling": 1.74e-07, + "neurophysiology": 1.74e-07, + "neurotoxic": 1.74e-07, + "nevers": 1.74e-07, + "nff": 1.74e-07, + "nicotinic": 1.74e-07, + "nietzsches": 1.74e-07, + "nkvd": 1.74e-07, + "normalizes": 1.74e-07, + "npo": 1.74e-07, + "nrt": 1.74e-07, + "nsl": 1.74e-07, + "nsn": 1.74e-07, + "nti": 1.74e-07, + "nubile": 1.74e-07, + "nucleoside": 1.74e-07, + "nudists": 1.74e-07, + "nvr": 1.74e-07, + "odonovan": 1.74e-07, + "octet": 1.74e-07, + "oes": 1.74e-07, + "ohara": 1.74e-07, + "oid": 1.74e-07, + "omri": 1.74e-07, + "opensource": 1.74e-07, + "orbited": 1.74e-07, + "osd": 1.74e-07, + "osler": 1.74e-07, + "osp": 1.74e-07, + "osteopathy": 1.74e-07, + "otherworld": 1.74e-07, + "overnights": 1.74e-07, + "overpasses": 1.74e-07, + "overrepresented": 1.74e-07, + "overruling": 1.74e-07, + "overrunning": 1.74e-07, + "padme": 1.74e-07, + "padstow": 1.74e-07, + "paise": 1.74e-07, + "palmar": 1.74e-07, + "panza": 1.74e-07, + "paphos": 1.74e-07, + "paps": 1.74e-07, + "paralegals": 1.74e-07, + "parasitology": 1.74e-07, + "parkview": 1.74e-07, + "parsifal": 1.74e-07, + "pasig": 1.74e-07, + "pasok": 1.74e-07, + "patricians": 1.74e-07, + "paytm": 1.74e-07, + "pdo": 1.74e-07, + "permeating": 1.74e-07, + "perps": 1.74e-07, + "perse": 1.74e-07, + "petronius": 1.74e-07, + "pfeifer": 1.74e-07, + "pfp": 1.74e-07, + "phthalate": 1.74e-07, + "pinder": 1.74e-07, + "pippi": 1.74e-07, + "playford": 1.74e-07, + "plumbed": 1.74e-07, + "pluralist": 1.74e-07, + "plutocracy": 1.74e-07, + "pneumococcal": 1.74e-07, + "podcaster": 1.74e-07, + "pola": 1.74e-07, + "politica": 1.74e-07, + "politicize": 1.74e-07, + "polycyclic": 1.74e-07, + "poonam": 1.74e-07, + "poulter": 1.74e-07, + "poulton": 1.74e-07, + "powerade": 1.74e-07, + "powerfull": 1.74e-07, + "preeti": 1.74e-07, + "pristina": 1.74e-07, + "prl": 1.74e-07, + "propitious": 1.74e-07, + "propranolol": 1.74e-07, + "prosocial": 1.74e-07, + "psychotherapists": 1.74e-07, + "publicans": 1.74e-07, + "purl": 1.74e-07, + "pushkar": 1.74e-07, + "qaddafi": 1.74e-07, + "qanon": 1.74e-07, + "qcd": 1.74e-07, + "qubits": 1.74e-07, + "queanbeyan": 1.74e-07, + "quorn": 1.74e-07, + "racoon": 1.74e-07, + "raisa": 1.74e-07, + "rambled": 1.74e-07, + "ramis": 1.74e-07, + "rampal": 1.74e-07, + "rashida": 1.74e-07, + "ratted": 1.74e-07, + "readjustment": 1.74e-07, + "receptionists": 1.74e-07, + "recharges": 1.74e-07, + "recirculation": 1.74e-07, + "recto": 1.74e-07, + "redhill": 1.74e-07, + "reheating": 1.74e-07, + "rehire": 1.74e-07, + "reincarnate": 1.74e-07, + "reith": 1.74e-07, + "rendez": 1.74e-07, + "repellant": 1.74e-07, + "restlessly": 1.74e-07, + "retell": 1.74e-07, + "reverberations": 1.74e-07, + "revitalise": 1.74e-07, + "revoir": 1.74e-07, + "rhd": 1.74e-07, + "ricas": 1.74e-07, + "ripken": 1.74e-07, + "rippon": 1.74e-07, + "rivington": 1.74e-07, + "riyad": 1.74e-07, + "robie": 1.74e-07, + "robusta": 1.74e-07, + "rocketry": 1.74e-07, + "rocko": 1.74e-07, + "romulans": 1.74e-07, + "rtb": 1.74e-07, + "rudys": 1.74e-07, + "ruh": 1.74e-07, + "rumple": 1.74e-07, + "rumpled": 1.74e-07, + "runaround": 1.74e-07, + "ryle": 1.74e-07, + "safa": 1.74e-07, + "saget": 1.74e-07, + "sagittal": 1.74e-07, + "sailfish": 1.74e-07, + "saltiness": 1.74e-07, + "sammys": 1.74e-07, + "samo": 1.74e-07, + "samoans": 1.74e-07, + "sandhya": 1.74e-07, + "sandoz": 1.74e-07, + "sanyo": 1.74e-07, + "sapir": 1.74e-07, + "sarada": 1.74e-07, + "satay": 1.74e-07, + "sayid": 1.74e-07, + "sbp": 1.74e-07, + "scaredy": 1.74e-07, + "schnapps": 1.74e-07, + "schneiderlin": 1.74e-07, + "schwartzman": 1.74e-07, + "screeners": 1.74e-07, + "scrutinise": 1.74e-07, + "seagoing": 1.74e-07, + "sef": 1.74e-07, + "segel": 1.74e-07, + "seifert": 1.74e-07, + "selassie": 1.74e-07, + "selleck": 1.74e-07, + "selznick": 1.74e-07, + "semarang": 1.74e-07, + "semolina": 1.74e-07, + "septimus": 1.74e-07, + "sete": 1.74e-07, + "seto": 1.74e-07, + "severally": 1.74e-07, + "sewol": 1.74e-07, + "sgp": 1.74e-07, + "shadi": 1.74e-07, + "shahi": 1.74e-07, + "shakey": 1.74e-07, + "shanked": 1.74e-07, + "shehu": 1.74e-07, + "sheringham": 1.74e-07, + "shitbag": 1.74e-07, + "shutoff": 1.74e-07, + "siang": 1.74e-07, + "siete": 1.74e-07, + "sira": 1.74e-07, + "sissi": 1.74e-07, + "skagit": 1.74e-07, + "slathered": 1.74e-07, + "slavin": 1.74e-07, + "slobs": 1.74e-07, + "slt": 1.74e-07, + "slumbering": 1.74e-07, + "smallholders": 1.74e-07, + "smarmy": 1.74e-07, + "smutty": 1.74e-07, + "sneed": 1.74e-07, + "sniffling": 1.74e-07, + "sobotka": 1.74e-07, + "speedos": 1.74e-07, + "speedwagon": 1.74e-07, + "speller": 1.74e-07, + "spinks": 1.74e-07, + "spreaders": 1.74e-07, + "sproul": 1.74e-07, + "steptoe": 1.74e-07, + "stol": 1.74e-07, + "straightens": 1.74e-07, + "strenght": 1.74e-07, + "strobel": 1.74e-07, + "sublingual": 1.74e-07, + "subsoil": 1.74e-07, + "succes": 1.74e-07, + "sunbathe": 1.74e-07, + "sunt": 1.74e-07, + "surinam": 1.74e-07, + "swaggy": 1.74e-07, + "sweetening": 1.74e-07, + "swordsmanship": 1.74e-07, + "synthetase": 1.74e-07, + "synthetically": 1.74e-07, + "takada": 1.74e-07, + "taleb": 1.74e-07, + "talkback": 1.74e-07, + "talleyrand": 1.74e-07, + "tamim": 1.74e-07, + "tanf": 1.74e-07, + "tannenbaum": 1.74e-07, + "tashi": 1.74e-07, + "tatami": 1.74e-07, + "tautology": 1.74e-07, + "taxidermist": 1.74e-07, + "tbp": 1.74e-07, + "tco": 1.74e-07, + "teemu": 1.74e-07, + "telemarketer": 1.74e-07, + "teletype": 1.74e-07, + "terpenes": 1.74e-07, + "terraria": 1.74e-07, + "throaty": 1.74e-07, + "thrombocytopenia": 1.74e-07, + "thunderstruck": 1.74e-07, + "timken": 1.74e-07, + "titusville": 1.74e-07, + "toca": 1.74e-07, + "torsos": 1.74e-07, + "tovey": 1.74e-07, + "trak": 1.74e-07, + "transcriptase": 1.74e-07, + "transversal": 1.74e-07, + "traore": 1.74e-07, + "treeline": 1.74e-07, + "trespassed": 1.74e-07, + "trevi": 1.74e-07, + "tria": 1.74e-07, + "trumpers": 1.74e-07, + "truncate": 1.74e-07, + "trw": 1.74e-07, + "tuples": 1.74e-07, + "uca": 1.74e-07, + "ues": 1.74e-07, + "ultramarine": 1.74e-07, + "uncheck": 1.74e-07, + "underling": 1.74e-07, + "unifies": 1.74e-07, + "unimproved": 1.74e-07, + "unita": 1.74e-07, + "univers": 1.74e-07, + "universitas": 1.74e-07, + "unpaired": 1.74e-07, + "unreality": 1.74e-07, + "unseeded": 1.74e-07, + "unsinkable": 1.74e-07, + "untranslated": 1.74e-07, + "utopias": 1.74e-07, + "valerius": 1.74e-07, + "valyrian": 1.74e-07, + "vanessas": 1.74e-07, + "varicella": 1.74e-07, + "verbalize": 1.74e-07, + "verte": 1.74e-07, + "vette": 1.74e-07, + "victimize": 1.74e-07, + "volcker": 1.74e-07, + "voyeuristic": 1.74e-07, + "waheed": 1.74e-07, + "wakeman": 1.74e-07, + "wallenberg": 1.74e-07, + "warded": 1.74e-07, + "waukegan": 1.74e-07, + "weatherproof": 1.74e-07, + "weisman": 1.74e-07, + "whitsunday": 1.74e-07, + "wilkin": 1.74e-07, + "willys": 1.12e-07, + "wnw": 1.74e-07, + "wolfes": 1.74e-07, + "woodhull": 1.74e-07, + "woos": 1.26e-07, + "wordsmith": 1.74e-07, + "writhe": 1.74e-07, + "wsp": 1.74e-07, + "xaviers": 1.74e-07, + "yaa": 1.74e-07, + "yamauchi": 1.74e-07, + "yelich": 1.74e-07, + "yog": 1.74e-07, + "yomi": 1.74e-07, + "yugoslavian": 1.74e-07, + "zahid": 1.74e-07, + "aaaaah": 1.7e-07, + "aarti": 1.7e-07, + "abbreviate": 1.7e-07, + "abid": 1.7e-07, + "abies": 1.7e-07, + "accentuating": 1.7e-07, + "accross": 1.7e-07, + "acro": 1.7e-07, + "acv": 1.7e-07, + "addisons": 1.7e-07, + "adelman": 1.7e-07, + "africana": 1.7e-07, + "afrikaners": 1.7e-07, + "afterburner": 1.7e-07, + "afterparty": 1.7e-07, + "afters": 1.7e-07, + "agathe": 1.7e-07, + "ahm": 1.7e-07, + "airlie": 1.7e-07, + "alamein": 1.7e-07, + "albacore": 1.7e-07, + "aliya": 1.7e-07, + "allium": 1.7e-07, + "amalgamate": 1.7e-07, + "amare": 1.2e-07, + "amn": 1.7e-07, + "amun": 1.7e-07, + "anaemic": 1.7e-07, + "anaesthetist": 1.7e-07, + "anissa": 1.7e-07, + "anr": 1.7e-07, + "antero": 1.7e-07, + "anthropocene": 1.7e-07, + "anticlimactic": 1.7e-07, + "antonis": 1.7e-07, + "anyhoo": 1.7e-07, + "apollonius": 1.7e-07, + "appraising": 1.7e-07, + "arup": 1.7e-07, + "asana": 1.7e-07, + "aseptic": 1.7e-07, + "astrodome": 1.7e-07, + "asuncion": 1.7e-07, + "atman": 1.7e-07, + "attar": 1.7e-07, + "aubert": 1.7e-07, + "aucklands": 1.7e-07, + "augusts": 1.7e-07, + "awan": 1.7e-07, + "ayan": 1.7e-07, + "azeroth": 1.7e-07, + "azim": 1.7e-07, + "azrael": 1.7e-07, + "baader": 1.7e-07, + "backsliding": 1.7e-07, + "badawi": 1.7e-07, + "badshah": 1.7e-07, + "banga": 1.7e-07, + "bankrolling": 1.7e-07, + "baobab": 1.7e-07, + "bareilles": 1.7e-07, + "basha": 1.7e-07, + "basketballs": 1.35e-07, + "batwoman": 1.7e-07, + "baur": 1.7e-07, + "beckers": 1.7e-07, + "beechcraft": 1.7e-07, + "beeped": 1.7e-07, + "befor": 1.7e-07, + "beli": 1.7e-07, + "bellflower": 1.7e-07, + "bensons": 1.7e-07, + "berbatov": 1.7e-07, + "bere": 1.7e-07, + "bernese": 1.7e-07, + "bessel": 1.7e-07, + "bfc": 1.7e-07, + "bhumibol": 1.7e-07, + "billingham": 1.7e-07, + "biomolecular": 1.7e-07, + "blech": 1.7e-07, + "blick": 1.7e-07, + "blizzcon": 1.7e-07, + "blumberg": 1.7e-07, + "bmr": 1.7e-07, + "bns": 1.7e-07, + "bochum": 1.7e-07, + "bokeh": 1.7e-07, + "bolingbroke": 1.7e-07, + "bolivarian": 1.7e-07, + "bollards": 1.7e-07, + "bookbinding": 1.7e-07, + "bpp": 1.7e-07, + "brainwaves": 1.7e-07, + "breanna": 1.7e-07, + "brechin": 1.7e-07, + "breezed": 1.7e-07, + "briefcases": 1.7e-07, + "bronn": 1.7e-07, + "burgundian": 1.7e-07, + "burhan": 1.7e-07, + "burkhart": 1.7e-07, + "bycatch": 1.7e-07, + "byway": 1.7e-07, + "calderwood": 1.7e-07, + "canaanites": 1.7e-07, + "candler": 1.7e-07, + "capsid": 1.7e-07, + "carburetors": 1.7e-07, + "carmaker": 1.7e-07, + "carpooling": 1.7e-07, + "cartoony": 1.7e-07, + "casco": 1.7e-07, + "cassock": 1.7e-07, + "castelli": 1.7e-07, + "castrol": 1.7e-07, + "centring": 1.7e-07, + "chalking": 1.7e-07, + "chapeau": 1.7e-07, + "ches": 1.7e-07, + "chetan": 1.7e-07, + "chirpy": 1.7e-07, + "cholinergic": 1.7e-07, + "choon": 1.7e-07, + "cinematographers": 1.7e-07, + "cinnabar": 1.7e-07, + "cisplatin": 1.7e-07, + "civitas": 1.7e-07, + "clanton": 1.7e-07, + "climaxed": 1.7e-07, + "clunk": 1.7e-07, + "coauthors": 1.7e-07, + "cobains": 1.7e-07, + "cof": 1.7e-07, + "colwell": 1.7e-07, + "combinatorics": 1.7e-07, + "commentate": 1.7e-07, + "communis": 1.7e-07, + "comradeship": 1.7e-07, + "confocal": 1.7e-07, + "congregating": 1.7e-07, + "conjugates": 1.7e-07, + "contd": 8.51e-08, + "coolio": 1.7e-07, + "coppin": 1.7e-07, + "corked": 1.7e-07, + "corneille": 1.7e-07, + "cornhill": 1.7e-07, + "councilmen": 1.7e-07, + "credentialing": 1.7e-07, + "creston": 1.7e-07, + "croup": 1.7e-07, + "crunk": 1.7e-07, + "csk": 1.7e-07, + "cuellar": 1.7e-07, + "cuenca": 1.7e-07, + "culp": 1.7e-07, + "curtailment": 1.7e-07, + "cvr": 1.7e-07, + "daniell": 1.7e-07, + "deanery": 1.7e-07, + "deaton": 1.7e-07, + "debited": 1.7e-07, + "declassify": 1.7e-07, + "declutter": 1.7e-07, + "deland": 1.7e-07, + "delegitimize": 1.7e-07, + "delfino": 1.7e-07, + "deniro": 1.7e-07, + "denpasar": 1.7e-07, + "depletes": 1.7e-07, + "deposing": 1.7e-07, + "dermott": 1.7e-07, + "detests": 1.7e-07, + "devizes": 1.7e-07, + "diffuses": 1.7e-07, + "dilutes": 1.7e-07, + "dimensionally": 1.7e-07, + "dippy": 1.7e-07, + "discogs": 1.7e-07, + "discontinuities": 1.7e-07, + "discoverers": 1.7e-07, + "disproven": 1.7e-07, + "dmytro": 1.7e-07, + "dockyards": 1.7e-07, + "domestics": 1.7e-07, + "dominantly": 1.7e-07, + "domme": 1.7e-07, + "dooby": 1.7e-07, + "dote": 1.7e-07, + "doubtfire": 1.7e-07, + "douro": 1.7e-07, + "dudu": 1.7e-07, + "dungarees": 1.7e-07, + "duong": 1.7e-07, + "dus": 1.7e-07, + "dzhokhar": 1.7e-07, + "eal": 1.7e-07, + "eastwoods": 1.7e-07, + "ebbed": 1.7e-07, + "ebi": 1.7e-07, + "edmontons": 1.7e-07, + "effendi": 1.7e-07, + "egoist": 1.7e-07, + "egrets": 1.7e-07, + "eisenhowers": 1.7e-07, + "eisteddfod": 1.7e-07, + "elaines": 1.7e-07, + "electromagnet": 1.7e-07, + "elster": 1.7e-07, + "emancipate": 1.7e-07, + "endnotes": 1.7e-07, + "endocytosis": 1.7e-07, + "engler": 1.7e-07, + "entrancing": 1.7e-07, + "entreaties": 1.7e-07, + "erisa": 1.7e-07, + "erma": 1.7e-07, + "erythematosus": 1.7e-07, + "erythrocytes": 1.7e-07, + "espanol": 1.7e-07, + "euromaidan": 1.7e-07, + "europol": 1.7e-07, + "everitt": 1.7e-07, + "exhort": 1.7e-07, + "exploiters": 1.7e-07, + "extracurriculars": 1.7e-07, + "extraterritorial": 1.7e-07, + "extroverts": 1.7e-07, + "factbook": 1.7e-07, + "fairport": 1.7e-07, + "faiz": 1.7e-07, + "fama": 1.7e-07, + "familiarise": 1.7e-07, + "fant": 1.7e-07, + "faraj": 1.7e-07, + "farmingdale": 1.7e-07, + "farringdon": 1.7e-07, + "fath": 1.7e-07, + "fatuous": 1.7e-07, + "fdd": 1.7e-07, + "felixstowe": 1.7e-07, + "fellers": 1.7e-07, + "fended": 1.7e-07, + "festschrift": 1.7e-07, + "fili": 1.7e-07, + "fiqh": 1.7e-07, + "fishnets": 1.7e-07, + "fitton": 1.7e-07, + "fiz": 1.7e-07, + "flagships": 1.7e-07, + "fleischmann": 1.7e-07, + "flexors": 1.7e-07, + "fmr": 1.7e-07, + "forgone": 1.7e-07, + "forwarder": 1.7e-07, + "fotos": 1.7e-07, + "fpa": 1.7e-07, + "fraenkel": 1.7e-07, + "frege": 1.7e-07, + "frigidaire": 1.7e-07, + "fritsch": 1.7e-07, + "frond": 1.7e-07, + "fudging": 1.7e-07, + "funicular": 1.7e-07, + "furtively": 1.7e-07, + "fwc": 1.7e-07, + "gaillard": 1.7e-07, + "galadriel": 1.7e-07, + "galliano": 1.7e-07, + "gann": 1.7e-07, + "gatlinburg": 1.7e-07, + "gce": 1.7e-07, + "gci": 1.7e-07, + "geet": 1.7e-07, + "gekko": 1.7e-07, + "generalise": 1.7e-07, + "geraniums": 1.7e-07, + "gerbils": 1.7e-07, + "gerrards": 5.75e-08, + "gethin": 1.7e-07, + "ghazni": 1.7e-07, + "ghc": 1.7e-07, + "gielgud": 1.7e-07, + "giv": 1.7e-07, + "glassed": 1.7e-07, + "goeth": 1.7e-07, + "goldenrod": 1.7e-07, + "gom": 1.7e-07, + "gored": 1.7e-07, + "gou": 1.7e-07, + "graciousness": 1.7e-07, + "gradations": 1.7e-07, + "grantor": 1.7e-07, + "graven": 1.7e-07, + "greystone": 1.7e-07, + "groundskeeper": 1.7e-07, + "guage": 1.7e-07, + "guarani": 1.7e-07, + "guardiolas": 1.7e-07, + "guh": 1.7e-07, + "gulped": 1.7e-07, + "guppies": 1.7e-07, + "gustin": 1.7e-07, + "hadji": 1.7e-07, + "hagerty": 1.7e-07, + "hairston": 1.7e-07, + "hallowell": 1.7e-07, + "hamp": 1.7e-07, + "hanako": 1.7e-07, + "hansa": 1.7e-07, + "harrahs": 1.7e-07, + "harrassment": 1.7e-07, + "hatcheries": 1.7e-07, + "headedness": 1.7e-07, + "headship": 1.7e-07, + "hermano": 1.7e-07, + "heterocyclic": 1.7e-07, + "heyer": 1.7e-07, + "hig": 1.7e-07, + "hijinks": 1.7e-07, + "hijo": 1.7e-07, + "hingham": 1.7e-07, + "hino": 1.7e-07, + "hiroyuki": 1.7e-07, + "histones": 1.7e-07, + "holcombe": 1.7e-07, + "holzer": 1.7e-07, + "homestuck": 1.7e-07, + "homonymous": 1.7e-07, + "honks": 1.7e-07, + "honore": 1.7e-07, + "honourably": 1.7e-07, + "howlin": 1.7e-07, + "hubbys": 1.7e-07, + "hulbert": 1.7e-07, + "humes": 7.59e-08, + "hunkered": 1.7e-07, + "hustles": 1.7e-07, + "hypoglycemic": 1.7e-07, + "iban": 1.7e-07, + "icn": 1.7e-07, + "ifunny": 1.7e-07, + "ignorantly": 1.7e-07, + "iin": 1.7e-07, + "iles": 1.7e-07, + "ilium": 1.7e-07, + "impaling": 1.7e-07, + "impersonators": 1.7e-07, + "imre": 1.7e-07, + "incomparably": 1.7e-07, + "inde": 1.7e-07, + "inefficiently": 1.7e-07, + "inheritances": 1.7e-07, + "inordinately": 1.7e-07, + "interconnects": 1.7e-07, + "interfax": 1.7e-07, + "intermixed": 1.7e-07, + "inti": 1.7e-07, + "intriguingly": 1.7e-07, + "invalidation": 1.7e-07, + "invincibles": 1.7e-07, + "invulnerability": 1.7e-07, + "iovine": 1.7e-07, + "ipoh": 1.7e-07, + "irenaeus": 1.7e-07, + "isabellas": 1.7e-07, + "isleworth": 1.7e-07, + "jacquie": 1.7e-07, + "jaffar": 1.7e-07, + "jailers": 1.7e-07, + "jalil": 1.7e-07, + "jamba": 1.7e-07, + "jamila": 1.7e-07, + "jarret": 1.7e-07, + "javits": 1.7e-07, + "jayalalithaa": 1.7e-07, + "jeg": 1.7e-07, + "jetsons": 1.7e-07, + "jobbing": 1.7e-07, + "jocasta": 1.7e-07, + "jory": 1.7e-07, + "juste": 1.7e-07, + "kadir": 1.7e-07, + "kaizer": 1.7e-07, + "kasabian": 1.7e-07, + "katey": 1.7e-07, + "kavya": 1.7e-07, + "kdb": 1.7e-07, + "keepsakes": 1.7e-07, + "kelis": 1.7e-07, + "kenworthy": 1.7e-07, + "kerns": 6.76e-08, + "kidston": 1.7e-07, + "kingsport": 1.7e-07, + "kinsler": 1.7e-07, + "kirishima": 1.7e-07, + "kirkwall": 1.7e-07, + "klaas": 1.7e-07, + "klinsmann": 1.7e-07, + "knitters": 1.7e-07, + "knolls": 1.7e-07, + "knowable": 1.7e-07, + "knutsford": 1.7e-07, + "kosmos": 1.7e-07, + "kramers": 5.75e-08, + "kyaw": 1.7e-07, + "lamarck": 1.7e-07, + "lanvin": 1.7e-07, + "larose": 1.7e-07, + "lautner": 1.7e-07, + "lave": 1.7e-07, + "lazard": 1.7e-07, + "ldh": 1.7e-07, + "lega": 1.7e-07, + "legendre": 1.7e-07, + "lennart": 1.7e-07, + "lesean": 1.7e-07, + "leventhal": 1.7e-07, + "liger": 1.7e-07, + "lillehammer": 1.7e-07, + "limbed": 1.7e-07, + "lippmann": 1.7e-07, + "lisette": 1.7e-07, + "litterally": 1.7e-07, + "livesey": 1.7e-07, + "liveth": 1.7e-07, + "locarno": 1.7e-07, + "loman": 1.7e-07, + "looky": 1.7e-07, + "loooove": 1.7e-07, + "lowrey": 1.7e-07, + "loz": 1.7e-07, + "lpa": 1.7e-07, + "luba": 1.7e-07, + "lucci": 1.7e-07, + "lud": 1.7e-07, + "lugosi": 1.7e-07, + "lunn": 1.7e-07, + "lynsey": 1.7e-07, + "lysol": 1.7e-07, + "macc": 1.7e-07, + "madrasa": 1.7e-07, + "mahadev": 1.7e-07, + "mallee": 1.7e-07, + "mallets": 1.7e-07, + "mander": 1.7e-07, + "manis": 4.79e-08, + "manorial": 1.7e-07, + "mapes": 1.7e-07, + "marcs": 1.7e-07, + "marchs": 1.7e-07, + "mariinsky": 1.7e-07, + "marmara": 1.7e-07, + "marquees": 1.7e-07, + "matchy": 1.7e-07, + "maypole": 1.7e-07, + "mcclane": 1.7e-07, + "mcguigan": 1.7e-07, + "medeiros": 1.7e-07, + "medevac": 1.7e-07, + "megabyte": 1.7e-07, + "melchior": 1.7e-07, + "menaces": 1.7e-07, + "mentalities": 1.7e-07, + "mephistopheles": 1.7e-07, + "mercosur": 1.7e-07, + "mesas": 1.7e-07, + "metaphoric": 1.7e-07, + "mfm": 1.7e-07, + "mfn": 1.7e-07, + "microclimate": 1.7e-07, + "midden": 1.7e-07, + "middletons": 1.7e-07, + "mildest": 1.7e-07, + "miltons": 1.7e-07, + "misato": 1.7e-07, + "mislabeled": 1.7e-07, + "mistry": 1.7e-07, + "mitchs": 1.7e-07, + "moderna": 1.7e-07, + "moisturizers": 1.7e-07, + "molting": 1.7e-07, + "momoa": 1.7e-07, + "montcalm": 1.7e-07, + "montecito": 1.7e-07, + "moroni": 1.7e-07, + "morphogenesis": 1.7e-07, + "moxley": 1.7e-07, + "moyo": 1.7e-07, + "mti": 1.7e-07, + "muc": 1.7e-07, + "mudra": 1.7e-07, + "muggers": 1.7e-07, + "multivitamins": 1.7e-07, + "munchausen": 1.7e-07, + "mundell": 1.7e-07, + "munichs": 1.7e-07, + "murk": 1.7e-07, + "mutates": 1.7e-07, + "nade": 1.7e-07, + "narrations": 1.7e-07, + "naseem": 1.7e-07, + "navin": 1.7e-07, + "ncb": 1.7e-07, + "nebo": 1.7e-07, + "neckties": 1.7e-07, + "neos": 6.46e-08, + "netaji": 1.7e-07, + "neuroticism": 1.7e-07, + "neverwinter": 1.7e-07, + "nickle": 1.7e-07, + "niemi": 1.7e-07, + "nightingales": 7.59e-08, + "nikkis": 1.7e-07, + "ninian": 1.7e-07, + "ninjago": 1.7e-07, + "nirvanas": 1.7e-07, + "nla": 1.7e-07, + "nnamdi": 1.7e-07, + "nobby": 1.7e-07, + "nonfarm": 1.7e-07, + "nonresident": 1.7e-07, + "nonsteroidal": 1.7e-07, + "norbury": 1.7e-07, + "norovirus": 1.7e-07, + "noyce": 1.7e-07, + "nro": 1.7e-07, + "nsi": 1.7e-07, + "obstinacy": 1.7e-07, + "occultism": 1.7e-07, + "octobers": 1.7e-07, + "oeil": 1.7e-07, + "ofi": 1.7e-07, + "ogata": 1.7e-07, + "omelets": 1.7e-07, + "omnidirectional": 1.7e-07, + "omnivore": 1.7e-07, + "ondemand": 1.7e-07, + "ony": 1.7e-07, + "ooops": 1.7e-07, + "oppresses": 1.7e-07, + "oram": 1.7e-07, + "orpington": 1.7e-07, + "ory": 1.7e-07, + "oswestry": 1.7e-07, + "ote": 1.7e-07, + "otsego": 1.7e-07, + "otway": 1.7e-07, + "outgroup": 1.7e-07, + "overeem": 1.7e-07, + "overexposure": 1.7e-07, + "overspend": 1.7e-07, + "padraig": 1.7e-07, + "pahang": 1.7e-07, + "parthian": 1.7e-07, + "pathak": 1.7e-07, + "patuxent": 1.7e-07, + "pbm": 1.7e-07, + "pentatonic": 1.7e-07, + "perching": 1.7e-07, + "personifies": 1.7e-07, + "perversity": 1.7e-07, + "pervs": 1.7e-07, + "petered": 1.7e-07, + "petworth": 1.7e-07, + "peytons": 1.7e-07, + "pharmacokinetic": 1.7e-07, + "pharmacologic": 1.7e-07, + "philander": 1.7e-07, + "phong": 1.7e-07, + "pidgeon": 1.7e-07, + "piedras": 1.7e-07, + "pilcher": 1.7e-07, + "pillbox": 1.7e-07, + "pinner": 1.7e-07, + "pinpoints": 1.7e-07, + "piquant": 1.7e-07, + "planktonic": 1.7e-07, + "plasterer": 1.7e-07, + "playdate": 1.7e-07, + "playfair": 1.7e-07, + "pleasantville": 1.7e-07, + "politicised": 1.7e-07, + "politicos": 5.62e-08, + "polluter": 1.7e-07, + "pookie": 1.7e-07, + "popularization": 1.7e-07, + "porteous": 1.7e-07, + "postcodes": 1.7e-07, + "poulsen": 1.7e-07, + "pounces": 1.7e-07, + "prac": 1.7e-07, + "preordained": 1.7e-07, + "prepay": 1.7e-07, + "presi": 1.7e-07, + "pressley": 1.7e-07, + "prevost": 1.7e-07, + "pricking": 1.7e-07, + "prions": 1.7e-07, + "pron": 1.7e-07, + "psychoanalysts": 1.7e-07, + "pudge": 1.7e-07, + "pujol": 1.7e-07, + "pulpy": 1.7e-07, + "pulsation": 1.7e-07, + "ql": 1.7e-07, + "quarrelled": 1.7e-07, + "quartering": 1.7e-07, + "quotidian": 1.7e-07, + "rachid": 1.7e-07, + "rachmaninoff": 1.7e-07, + "racquets": 1.7e-07, + "radiologic": 1.7e-07, + "raghavan": 1.7e-07, + "rajasthani": 1.7e-07, + "rakyat": 1.7e-07, + "ramin": 1.7e-07, + "ramrod": 1.7e-07, + "rappel": 1.7e-07, + "rashtriya": 1.7e-07, + "rawr": 1.7e-07, + "reassurances": 1.7e-07, + "recapping": 1.7e-07, + "reclaims": 1.7e-07, + "rectilinear": 1.7e-07, + "recurs": 1.7e-07, + "refinanced": 1.7e-07, + "refocusing": 1.7e-07, + "regressing": 1.7e-07, + "regula": 1.7e-07, + "rehashed": 1.7e-07, + "repackaging": 1.7e-07, + "repetitious": 1.7e-07, + "resi": 1.7e-07, + "respec": 1.7e-07, + "reverently": 1.7e-07, + "rewired": 1.7e-07, + "riboflavin": 1.7e-07, + "rideshare": 1.7e-07, + "riel": 1.7e-07, + "rightward": 1.7e-07, + "ripeness": 1.7e-07, + "ripens": 1.7e-07, + "ritzy": 1.7e-07, + "rives": 1.7e-07, + "robards": 1.7e-07, + "robbin": 1.7e-07, + "rockfish": 1.7e-07, + "roker": 1.7e-07, + "royalton": 1.7e-07, + "ruination": 1.7e-07, + "ruminants": 1.7e-07, + "rutger": 1.7e-07, + "salems": 1.7e-07, + "samford": 1.7e-07, + "sanchezs": 1.7e-07, + "sappers": 1.7e-07, + "satyagraha": 1.7e-07, + "saunter": 1.7e-07, + "saxophones": 1.7e-07, + "scalded": 1.7e-07, + "scapular": 1.7e-07, + "schaffner": 1.7e-07, + "schisms": 1.7e-07, + "schutz": 1.7e-07, + "scintillation": 1.7e-07, + "scn": 1.7e-07, + "sdh": 1.7e-07, + "seaweeds": 1.7e-07, + "servicer": 1.7e-07, + "setae": 1.7e-07, + "shadwell": 1.7e-07, + "shahrukh": 1.7e-07, + "shahzad": 1.7e-07, + "shanghais": 1.7e-07, + "shayna": 1.7e-07, + "sheed": 1.7e-07, + "shinkansen": 1.7e-07, + "shitfaced": 1.7e-07, + "shoplifters": 1.7e-07, + "shreve": 1.7e-07, + "shrift": 1.7e-07, + "sigint": 1.7e-07, + "silversmith": 1.7e-07, + "siskiyou": 1.7e-07, + "sixtus": 1.7e-07, + "skirmishers": 1.7e-07, + "skulking": 1.7e-07, + "slather": 1.7e-07, + "slopestyle": 1.7e-07, + "slurpee": 1.7e-07, + "snapple": 1.7e-07, + "snickering": 1.7e-07, + "socialisation": 1.7e-07, + "soderbergh": 1.7e-07, + "solvay": 1.7e-07, + "somone": 1.7e-07, + "soper": 1.7e-07, + "soundcheck": 1.7e-07, + "southey": 1.7e-07, + "speckle": 1.7e-07, + "spendthrift": 1.7e-07, + "spey": 1.7e-07, + "spie": 1.7e-07, + "squiggly": 1.7e-07, + "statoil": 1.7e-07, + "steelmaking": 1.7e-07, + "stenhouse": 1.7e-07, + "storages": 1.7e-07, + "stormers": 1.7e-07, + "stovetop": 1.7e-07, + "stowage": 1.7e-07, + "streetscape": 1.7e-07, + "subcellular": 1.7e-07, + "substratum": 1.7e-07, + "sunita": 1.7e-07, + "superfly": 1.7e-07, + "susi": 1.7e-07, + "sutta": 1.7e-07, + "suturing": 1.7e-07, + "suzan": 1.7e-07, + "suze": 1.7e-07, + "swaddling": 1.7e-07, + "swifter": 1.7e-07, + "swindlers": 1.7e-07, + "tablelands": 1.7e-07, + "taiko": 1.7e-07, + "taiping": 1.7e-07, + "tams": 1.7e-07, + "tano": 1.7e-07, + "tased": 1.7e-07, + "tassie": 1.7e-07, + "tbl": 1.7e-07, + "tcw": 1.7e-07, + "telenovela": 1.7e-07, + "tench": 1.7e-07, + "tensei": 1.7e-07, + "terrapins": 1.7e-07, + "terrazzo": 1.7e-07, + "tetsuya": 1.7e-07, + "thalassemia": 1.7e-07, + "theresienstadt": 1.7e-07, + "thiers": 1.7e-07, + "thoma": 1.7e-07, + "thornbury": 1.7e-07, + "timberline": 1.7e-07, + "timezones": 1.7e-07, + "tinkers": 6.92e-08, + "tirupati": 1.7e-07, + "tomfoolery": 1.7e-07, + "touhou": 1.7e-07, + "trackage": 1.7e-07, + "trammell": 1.7e-07, + "transdermal": 1.7e-07, + "trefoil": 1.7e-07, + "trichy": 1.7e-07, + "triune": 1.7e-07, + "truong": 1.7e-07, + "truscott": 1.7e-07, + "tto": 1.7e-07, + "tuolumne": 1.7e-07, + "tvc": 1.7e-07, + "tyrese": 1.7e-07, + "uglies": 1.7e-07, + "ultrasonography": 1.7e-07, + "uluru": 1.7e-07, + "unceasing": 1.7e-07, + "uncorrected": 1.7e-07, + "underdevelopment": 1.7e-07, + "underfloor": 1.7e-07, + "underfunding": 1.7e-07, + "unexpired": 1.7e-07, + "unfurl": 1.7e-07, + "uniontown": 1.7e-07, + "unitarians": 1.7e-07, + "unp": 1.7e-07, + "unremitting": 1.7e-07, + "unspent": 1.7e-07, + "unvarnished": 1.7e-07, + "upstaged": 1.7e-07, + "urological": 1.7e-07, + "utr": 1.7e-07, + "uz": 1.7e-07, + "vampirism": 1.7e-07, + "vara": 1.7e-07, + "varia": 1.7e-07, + "vater": 1.7e-07, + "vehemence": 1.7e-07, + "vesa": 1.7e-07, + "vez": 1.7e-07, + "vibrio": 1.7e-07, + "villar": 1.7e-07, + "viscerally": 1.7e-07, + "vitus": 1.7e-07, + "vizio": 1.7e-07, + "vollmer": 1.7e-07, + "vtb": 1.7e-07, + "waltons": 1.62e-07, + "wats": 1.7e-07, + "weigel": 1.7e-07, + "wesleys": 1.7e-07, + "weyl": 1.7e-07, + "whacks": 1.7e-07, + "whitchurch": 1.7e-07, + "whitehurst": 1.7e-07, + "whitesnake": 1.7e-07, + "whitmer": 1.7e-07, + "whodunit": 1.7e-07, + "whooo": 1.7e-07, + "widowhood": 1.7e-07, + "willmott": 1.7e-07, + "wlan": 1.7e-07, + "womanizing": 1.7e-07, + "woodsman": 1.7e-07, + "worrall": 1.7e-07, + "wru": 1.7e-07, + "xk": 1.7e-07, + "yellowfin": 1.7e-07, + "yoshino": 1.7e-07, + "zarif": 1.7e-07, + "zawahiri": 1.7e-07, + "zay": 1.7e-07, + "zug": 1.7e-07, + "abdulrahman": 1.66e-07, + "abg": 1.66e-07, + "abydos": 1.66e-07, + "academie": 1.66e-07, + "acces": 1.66e-07, + "accrues": 1.66e-07, + "adamss": 1.66e-07, + "adh": 1.66e-07, + "adornments": 1.66e-07, + "akademie": 1.66e-07, + "aker": 1.66e-07, + "akerman": 1.66e-07, + "alisons": 1.66e-07, + "altuve": 1.66e-07, + "amazonas": 1.66e-07, + "amell": 1.66e-07, + "amharic": 1.66e-07, + "amzn": 1.66e-07, + "anatomist": 1.66e-07, + "andro": 1.66e-07, + "anent": 1.66e-07, + "antagonized": 1.66e-07, + "anticoagulants": 1.66e-07, + "appartment": 1.66e-07, + "apts": 1.66e-07, + "arce": 1.66e-07, + "archuleta": 1.66e-07, + "arthouse": 1.66e-07, + "ascetics": 1.66e-07, + "atla": 1.66e-07, + "atoned": 1.66e-07, + "austell": 1.66e-07, + "autocomplete": 1.66e-07, + "autosport": 1.66e-07, + "autozone": 1.66e-07, + "avm": 1.66e-07, + "awfulness": 1.66e-07, + "backache": 1.66e-07, + "baikonur": 1.66e-07, + "balch": 1.66e-07, + "baldock": 1.66e-07, + "balthasar": 1.66e-07, + "banu": 1.66e-07, + "baps": 1.66e-07, + "barcas": 1.66e-07, + "bardem": 1.66e-07, + "bartlet": 1.66e-07, + "basting": 1.66e-07, + "bde": 1.66e-07, + "bdp": 1.66e-07, + "bearden": 1.66e-07, + "beautifull": 1.66e-07, + "beautifying": 1.66e-07, + "beeb": 1.66e-07, + "beguiled": 1.66e-07, + "beira": 1.66e-07, + "bejeweled": 1.66e-07, + "benatar": 1.66e-07, + "bep": 1.66e-07, + "bergson": 1.66e-07, + "berke": 1.66e-07, + "bernsteins": 1.66e-07, + "bestbuy": 1.66e-07, + "bethe": 1.66e-07, + "beti": 1.66e-07, + "bezels": 1.66e-07, + "bhatti": 1.66e-07, + "bierce": 1.66e-07, + "binged": 1.66e-07, + "binns": 1.66e-07, + "birrell": 1.66e-07, + "bishopsgate": 1.66e-07, + "bisset": 1.66e-07, + "bleary": 1.66e-07, + "blockhead": 1.66e-07, + "blodgett": 1.66e-07, + "blowup": 1.66e-07, + "bluer": 1.66e-07, + "blyton": 1.66e-07, + "boatswain": 1.66e-07, + "bodrum": 1.66e-07, + "bognor": 1.66e-07, + "bolivias": 1.66e-07, + "bollard": 1.66e-07, + "boomerangs": 1.66e-07, + "booyah": 1.66e-07, + "borger": 1.66e-07, + "bpt": 1.66e-07, + "brenden": 1.66e-07, + "brianne": 1.66e-07, + "brittens": 1.66e-07, + "broyles": 1.66e-07, + "brumby": 1.66e-07, + "brydon": 1.66e-07, + "bskyb": 1.66e-07, + "bso": 1.66e-07, + "bueller": 1.66e-07, + "bugles": 1.66e-07, + "bulli": 1.66e-07, + "bundesbank": 1.66e-07, + "burnell": 1.66e-07, + "burrard": 1.66e-07, + "burrs": 8.71e-08, + "bushmen": 1.66e-07, + "bussing": 1.66e-07, + "buttler": 1.66e-07, + "bwi": 1.66e-07, + "cabaye": 1.66e-07, + "caley": 1.66e-07, + "camerawork": 1.66e-07, + "candyman": 1.66e-07, + "cannondale": 1.66e-07, + "capito": 1.66e-07, + "carcinogenesis": 1.66e-07, + "carib": 1.66e-07, + "carlito": 1.66e-07, + "carltons": 1.66e-07, + "castaneda": 1.66e-07, + "cathleen": 1.66e-07, + "caulking": 1.66e-07, + "cavell": 1.66e-07, + "cce": 1.66e-07, + "cdos": 1.66e-07, + "ceilidh": 1.66e-07, + "centos": 1.66e-07, + "centrifugation": 1.66e-07, + "certs": 1.66e-07, + "chandni": 1.66e-07, + "chasin": 1.66e-07, + "chemin": 1.66e-07, + "chickadee": 1.66e-07, + "chickamauga": 1.66e-07, + "chipman": 1.66e-07, + "chivalric": 1.66e-07, + "chivers": 1.66e-07, + "chopstick": 1.66e-07, + "choreographic": 1.66e-07, + "christiania": 1.66e-07, + "christus": 1.66e-07, + "churchmen": 1.66e-07, + "cillian": 1.66e-07, + "circuited": 1.66e-07, + "circumflex": 1.66e-07, + "clamber": 1.66e-07, + "clanking": 1.66e-07, + "claptrap": 1.66e-07, + "classico": 1.66e-07, + "classiest": 1.66e-07, + "clementi": 1.66e-07, + "cloverfield": 1.66e-07, + "clusterfuck": 1.66e-07, + "codices": 1.66e-07, + "cofactor": 1.66e-07, + "collings": 1.66e-07, + "colostrum": 1.66e-07, + "comedienne": 1.66e-07, + "commision": 1.66e-07, + "confidences": 1.66e-07, + "conquistador": 1.66e-07, + "contortions": 1.66e-07, + "cornhuskers": 1.66e-07, + "coruscant": 1.66e-07, + "counteroffensive": 1.66e-07, + "creche": 1.66e-07, + "crip": 1.66e-07, + "crofters": 1.66e-07, + "crucifixes": 1.66e-07, + "crus": 1.66e-07, + "cucks": 1.66e-07, + "curr": 1.66e-07, + "customisable": 1.66e-07, + "cuttack": 1.66e-07, + "cytology": 1.66e-07, + "cytosine": 1.66e-07, + "daejeon": 1.66e-07, + "damnedest": 1.66e-07, + "dampier": 1.66e-07, + "danke": 1.66e-07, + "daro": 1.66e-07, + "davin": 1.66e-07, + "ddc": 1.66e-07, + "deathless": 1.66e-07, + "debilitated": 1.66e-07, + "delineating": 1.66e-07, + "demetri": 1.66e-07, + "demolishes": 1.66e-07, + "dentin": 1.66e-07, + "despondency": 1.66e-07, + "destabilise": 1.66e-07, + "destructing": 1.66e-07, + "detente": 1.66e-07, + "detracted": 1.66e-07, + "detracting": 1.66e-07, + "devas": 1.66e-07, + "devitt": 1.66e-07, + "diablos": 1.66e-07, + "diatonic": 1.66e-07, + "dicing": 1.66e-07, + "diethyl": 1.66e-07, + "dimpled": 1.66e-07, + "dinnerware": 1.66e-07, + "dirichlet": 1.66e-07, + "disproving": 1.66e-07, + "divvy": 1.66e-07, + "dixieland": 1.66e-07, + "dmf": 1.66e-07, + "dockery": 1.66e-07, + "domitian": 1.66e-07, + "dorinda": 1.66e-07, + "dren": 1.66e-07, + "dtp": 1.66e-07, + "duckett": 1.66e-07, + "dykstra": 1.66e-07, + "eaa": 1.66e-07, + "ebon": 1.66e-07, + "egomaniac": 1.66e-07, + "eharmony": 1.66e-07, + "eibar": 1.66e-07, + "eines": 1.66e-07, + "elbowing": 1.66e-07, + "elc": 1.66e-07, + "electrochemistry": 1.66e-07, + "elementals": 1.66e-07, + "elrond": 1.66e-07, + "elwyn": 1.66e-07, + "embeds": 1.66e-07, + "emersons": 1.66e-07, + "enamels": 1.66e-07, + "englishwoman": 1.66e-07, + "erlich": 1.66e-07, + "ernestine": 1.66e-07, + "erza": 1.66e-07, + "espace": 1.66e-07, + "esparza": 1.66e-07, + "estonias": 1.66e-07, + "ett": 1.66e-07, + "evildoers": 1.66e-07, + "evin": 1.66e-07, + "exorcised": 1.66e-07, + "extensor": 1.66e-07, + "fantasyland": 1.66e-07, + "faversham": 1.66e-07, + "faz": 1.66e-07, + "feist": 1.66e-07, + "fermions": 1.66e-07, + "ferruginous": 1.66e-07, + "ferryman": 1.66e-07, + "fierceness": 1.66e-07, + "finalising": 1.66e-07, + "firemans": 1.66e-07, + "fishtail": 1.66e-07, + "flagella": 1.66e-07, + "flagstone": 1.66e-07, + "flavin": 1.66e-07, + "flavio": 1.66e-07, + "fleshlight": 1.66e-07, + "floodwater": 1.66e-07, + "flouting": 1.66e-07, + "flowy": 1.66e-07, + "flukes": 1.66e-07, + "folkloric": 1.66e-07, + "fonz": 1.66e-07, + "formby": 1.66e-07, + "foxhole": 1.66e-07, + "fractionally": 1.66e-07, + "frameless": 1.66e-07, + "francie": 1.66e-07, + "franking": 1.66e-07, + "freeholder": 1.66e-07, + "freekick": 1.66e-07, + "freon": 1.66e-07, + "friel": 1.66e-07, + "friesland": 1.66e-07, + "fringing": 1.66e-07, + "frisson": 1.66e-07, + "frittata": 1.66e-07, + "fsp": 1.66e-07, + "fusiform": 1.66e-07, + "gabbar": 1.66e-07, + "gani": 1.66e-07, + "gantz": 1.66e-07, + "gastroenterologist": 1.66e-07, + "gatti": 1.66e-07, + "geetha": 1.66e-07, + "geithner": 1.66e-07, + "gelled": 1.66e-07, + "gfe": 1.66e-07, + "gibran": 1.66e-07, + "gilliland": 1.66e-07, + "gird": 1.66e-07, + "girlhood": 1.66e-07, + "glinda": 1.66e-07, + "gluttonous": 1.66e-07, + "gmg": 1.66e-07, + "gobert": 1.66e-07, + "goldsworthy": 1.66e-07, + "golfs": 9.33e-08, + "gonsalves": 1.66e-07, + "gorakhpur": 1.66e-07, + "gorgonzola": 1.66e-07, + "grabbers": 1.66e-07, + "grappa": 1.66e-07, + "grasso": 1.66e-07, + "grenache": 1.66e-07, + "gringos": 1.66e-07, + "gripper": 1.66e-07, + "groban": 1.66e-07, + "grubbs": 1.66e-07, + "guarantors": 1.66e-07, + "gvt": 1.66e-07, + "gwendolen": 1.66e-07, + "hace": 1.66e-07, + "hacky": 1.66e-07, + "haft": 1.66e-07, + "hals": 1.23e-07, + "handbuch": 1.66e-07, + "hanssen": 1.66e-07, + "hasler": 1.66e-07, + "hdfc": 1.66e-07, + "hearths": 1.66e-07, + "hedgerow": 1.66e-07, + "hedy": 1.66e-07, + "hendo": 1.66e-07, + "hernias": 1.66e-07, + "hft": 1.66e-07, + "highsmith": 1.66e-07, + "hinch": 1.66e-07, + "hindrances": 1.66e-07, + "hirohito": 1.66e-07, + "hnd": 1.66e-07, + "hockeys": 1.66e-07, + "hodgins": 1.66e-07, + "holing": 1.66e-07, + "holistically": 1.66e-07, + "homed": 1.66e-07, + "homogenization": 1.66e-07, + "hoppin": 1.66e-07, + "hospitalisation": 1.66e-07, + "hossa": 1.66e-07, + "hostiles": 1.66e-07, + "hotch": 1.66e-07, + "hqs": 5.62e-08, + "humeral": 1.66e-07, + "humorless": 1.66e-07, + "hydrodynamics": 1.66e-07, + "iau": 1.66e-07, + "ibaraki": 1.66e-07, + "ibarra": 1.66e-07, + "idb": 1.66e-07, + "idolizes": 1.66e-07, + "idt": 1.66e-07, + "ifttt": 1.66e-07, + "ignazio": 1.66e-07, + "ilc": 1.66e-07, + "immunofluorescence": 1.66e-07, + "impale": 1.66e-07, + "impoundment": 1.66e-07, + "incisor": 1.66e-07, + "incredulously": 1.66e-07, + "infanta": 1.66e-07, + "inseminated": 1.66e-07, + "insinuates": 1.66e-07, + "integrators": 1.66e-07, + "intendant": 1.66e-07, + "interactively": 1.66e-07, + "interweaving": 1.66e-07, + "intoned": 1.66e-07, + "ipt": 1.66e-07, + "ipv": 1.66e-07, + "ironwork": 1.66e-07, + "isaias": 1.66e-07, + "isee": 1.66e-07, + "itar": 1.66e-07, + "itsy": 1.66e-07, + "ivr": 1.66e-07, + "jacek": 1.66e-07, + "jackpots": 1.66e-07, + "jains": 1.66e-07, + "jaish": 1.66e-07, + "jari": 1.66e-07, + "jaroslav": 1.66e-07, + "jetties": 1.66e-07, + "jiggy": 1.66e-07, + "jil": 1.66e-07, + "jla": 1.66e-07, + "joffreys": 1.66e-07, + "jojoba": 1.66e-07, + "jona": 1.66e-07, + "jonnie": 1.66e-07, + "jostle": 1.66e-07, + "jpm": 1.66e-07, + "judicature": 1.66e-07, + "julys": 1.66e-07, + "justo": 1.66e-07, + "kader": 1.66e-07, + "kail": 1.66e-07, + "kaku": 1.66e-07, + "kamar": 1.66e-07, + "kampuchea": 1.66e-07, + "karmas": 1.17e-07, + "kase": 1.66e-07, + "katha": 1.66e-07, + "keim": 1.66e-07, + "kemps": 5.75e-08, + "ketchikan": 1.66e-07, + "khat": 1.66e-07, + "kiely": 1.66e-07, + "kikuchi": 1.66e-07, + "killen": 1.66e-07, + "kindhearted": 1.66e-07, + "kingstown": 1.66e-07, + "kole": 1.66e-07, + "kow": 1.66e-07, + "kpk": 1.66e-07, + "kripke": 1.66e-07, + "kristie": 1.66e-07, + "krona": 1.66e-07, + "krupa": 1.66e-07, + "krystle": 1.66e-07, + "krzysztof": 1.66e-07, + "kst": 1.66e-07, + "kublai": 1.66e-07, + "kuk": 1.66e-07, + "kuku": 1.66e-07, + "kva": 1.66e-07, + "lackadaisical": 1.66e-07, + "ladybugs": 1.66e-07, + "lambie": 1.66e-07, + "lankford": 1.66e-07, + "lawlor": 1.66e-07, + "laxity": 1.66e-07, + "leftism": 1.66e-07, + "legislatively": 1.66e-07, + "leoni": 1.66e-07, + "leyva": 1.66e-07, + "lfa": 1.66e-07, + "liberians": 1.66e-07, + "lifelines": 1.66e-07, + "lilia": 1.66e-07, + "limiters": 1.66e-07, + "limps": 1.66e-07, + "listerine": 1.66e-07, + "lmp": 1.66e-07, + "loamy": 1.66e-07, + "lofted": 1.66e-07, + "logarithms": 1.66e-07, + "lokis": 1.66e-07, + "lompoc": 1.66e-07, + "longboat": 1.66e-07, + "longbottom": 1.66e-07, + "longines": 1.66e-07, + "lookie": 1.66e-07, + "loughlin": 1.66e-07, + "lti": 1.66e-07, + "luminal": 1.66e-07, + "lumix": 1.66e-07, + "lurching": 1.66e-07, + "lycoming": 1.66e-07, + "maca": 1.66e-07, + "maes": 1.45e-07, + "maginot": 1.66e-07, + "magnanimity": 1.66e-07, + "maior": 1.66e-07, + "makarov": 1.66e-07, + "makassar": 1.66e-07, + "malate": 1.66e-07, + "mandrel": 1.66e-07, + "mansons": 1.66e-07, + "marengo": 1.66e-07, + "markowitz": 1.66e-07, + "maroney": 1.66e-07, + "marshs": 1.66e-07, + "martingale": 1.66e-07, + "marveling": 1.66e-07, + "maupin": 1.66e-07, + "maxfield": 1.66e-07, + "maywood": 1.66e-07, + "mazel": 1.66e-07, + "mbti": 1.66e-07, + "mearns": 1.66e-07, + "megs": 1.58e-07, + "megahertz": 1.66e-07, + "megaman": 1.66e-07, + "meghna": 1.66e-07, + "mellen": 1.66e-07, + "melty": 1.66e-07, + "mendy": 1.66e-07, + "mesoamerica": 1.66e-07, + "mesoamerican": 1.66e-07, + "methylphenidate": 1.66e-07, + "mhd": 1.66e-07, + "micellar": 1.66e-07, + "microscopically": 1.66e-07, + "miguels": 1.66e-07, + "mileys": 1.66e-07, + "militarist": 1.66e-07, + "millburn": 1.66e-07, + "milpitas": 1.66e-07, + "minny": 1.66e-07, + "misspellings": 1.66e-07, + "mizuho": 1.66e-07, + "mmmmmm": 1.66e-07, + "mobbing": 1.66e-07, + "moduli": 1.66e-07, + "mohali": 1.66e-07, + "molle": 1.66e-07, + "monarchists": 1.66e-07, + "moncada": 1.66e-07, + "mongolians": 1.66e-07, + "monosyllabic": 1.66e-07, + "moonbeam": 1.66e-07, + "mormont": 1.66e-07, + "morpeth": 1.66e-07, + "mossberg": 1.66e-07, + "motorcar": 1.66e-07, + "mown": 1.66e-07, + "mpv": 1.66e-07, + "mtx": 1.66e-07, + "mulla": 1.66e-07, + "munday": 1.66e-07, + "muti": 1.66e-07, + "mycology": 1.66e-07, + "nakagawa": 1.66e-07, + "namath": 1.66e-07, + "naoh": 1.66e-07, + "naoko": 1.66e-07, + "narbonne": 1.66e-07, + "nauseam": 1.66e-07, + "neocortex": 1.66e-07, + "newstead": 1.66e-07, + "nilsen": 1.66e-07, + "nimbly": 1.66e-07, + "nld": 1.66e-07, + "nls": 1.66e-07, + "noddy": 1.66e-07, + "noice": 1.66e-07, + "nonchalance": 1.66e-07, + "nooooooo": 1.66e-07, + "nostrand": 1.66e-07, + "nrk": 1.66e-07, + "nucleophilic": 1.66e-07, + "nudie": 1.66e-07, + "nug": 1.66e-07, + "nympho": 1.66e-07, + "nzd": 1.66e-07, + "obstructionist": 1.66e-07, + "odie": 1.66e-07, + "officinalis": 1.66e-07, + "oks": 1.66e-07, + "oligonucleotide": 1.66e-07, + "omegle": 1.66e-07, + "oona": 1.66e-07, + "optimizes": 1.66e-07, + "orth": 1.66e-07, + "oscillates": 1.66e-07, + "ossian": 1.66e-07, + "osteen": 1.66e-07, + "otg": 1.66e-07, + "ous": 5.62e-08, + "outcropping": 1.66e-07, + "outmatched": 1.66e-07, + "overpayments": 1.66e-07, + "pacifics": 1.66e-07, + "pacifying": 1.66e-07, + "palmed": 1.66e-07, + "panik": 1.66e-07, + "paperboard": 1.66e-07, + "patristic": 1.66e-07, + "pavillion": 1.66e-07, + "penicillium": 1.66e-07, + "penna": 1.66e-07, + "personae": 1.66e-07, + "pesci": 1.66e-07, + "petroglyphs": 1.66e-07, + "petry": 1.66e-07, + "pfeffer": 1.66e-07, + "phoebes": 1.66e-07, + "phospholipids": 1.66e-07, + "phosphorescent": 1.66e-07, + "phraseology": 1.66e-07, + "phthalates": 1.66e-07, + "piaf": 1.66e-07, + "platini": 1.66e-07, + "platts": 1.66e-07, + "plattsburgh": 1.66e-07, + "plowman": 1.66e-07, + "plr": 1.66e-07, + "plumlee": 1.66e-07, + "plurals": 1.66e-07, + "plushie": 1.66e-07, + "pna": 1.66e-07, + "pnb": 1.66e-07, + "podge": 1.66e-07, + "polyamorous": 1.66e-07, + "polygamist": 1.66e-07, + "porcupines": 1.66e-07, + "pornos": 1.66e-07, + "portlandia": 1.66e-07, + "postmasters": 1.66e-07, + "powershot": 1.66e-07, + "ppf": 1.66e-07, + "praha": 1.66e-07, + "praveen": 1.66e-07, + "predominated": 1.66e-07, + "prefaces": 1.66e-07, + "pricy": 1.66e-07, + "prophesies": 1.66e-07, + "propos": 1.66e-07, + "prospers": 1.66e-07, + "psgs": 1.66e-07, + "pursuance": 1.66e-07, + "pwg": 1.66e-07, + "qo": 1.66e-07, + "quarrelsome": 1.66e-07, + "quem": 1.66e-07, + "quintanilla": 1.66e-07, + "quintin": 1.66e-07, + "quire": 1.66e-07, + "rafiki": 1.66e-07, + "raha": 1.66e-07, + "raji": 1.66e-07, + "ralphie": 1.66e-07, + "randa": 1.66e-07, + "ransomed": 1.66e-07, + "raphaelite": 1.66e-07, + "rawat": 1.66e-07, + "reassembling": 1.66e-07, + "rebuking": 1.66e-07, + "rebuttals": 1.66e-07, + "recapitulation": 1.66e-07, + "recce": 1.66e-07, + "reclassify": 1.66e-07, + "recreationally": 1.66e-07, + "redoubled": 1.66e-07, + "redskin": 1.66e-07, + "reichert": 1.66e-07, + "rendon": 1.66e-07, + "reorganise": 1.66e-07, + "reorientation": 1.66e-07, + "repr": 1.66e-07, + "restrains": 1.66e-07, + "retentive": 1.66e-07, + "retinitis": 1.66e-07, + "retool": 1.66e-07, + "revokes": 1.66e-07, + "riemannian": 1.66e-07, + "ritu": 1.66e-07, + "rmi": 1.66e-07, + "rosyth": 1.66e-07, + "rrs": 1.66e-07, + "rtz": 1.66e-07, + "rubes": 1.66e-07, + "rumsey": 1.66e-07, + "rushs": 1.66e-07, + "rza": 1.66e-07, + "sacredness": 1.66e-07, + "safehouse": 1.66e-07, + "sagged": 1.66e-07, + "salar": 1.66e-07, + "salat": 1.66e-07, + "samhain": 1.66e-07, + "samui": 1.66e-07, + "sanu": 1.66e-07, + "saru": 1.66e-07, + "savi": 1.66e-07, + "sawyers": 1.58e-07, + "schlong": 1.66e-07, + "schweizer": 1.66e-07, + "sebelius": 1.66e-07, + "secessionists": 1.66e-07, + "senility": 1.66e-07, + "sephiroth": 1.66e-07, + "serco": 1.66e-07, + "sergius": 1.66e-07, + "shalini": 1.66e-07, + "shareable": 1.66e-07, + "shareef": 1.66e-07, + "sheerans": 1.66e-07, + "sherlocks": 1.66e-07, + "sherrie": 1.66e-07, + "shipowner": 1.66e-07, + "shizuoka": 1.66e-07, + "shoegaze": 1.66e-07, + "showboating": 1.66e-07, + "sime": 1.66e-07, + "simo": 1.66e-07, + "slaveholders": 1.66e-07, + "smriti": 1.66e-07, + "snakebite": 1.66e-07, + "snowdrop": 1.66e-07, + "soas": 1.66e-07, + "soco": 1.66e-07, + "sokolov": 1.66e-07, + "sorin": 1.66e-07, + "souness": 1.66e-07, + "southeasterly": 1.66e-07, + "soyinka": 1.66e-07, + "spammy": 1.66e-07, + "sparkler": 1.66e-07, + "sputter": 1.66e-07, + "stacys": 1.66e-07, + "starscream": 1.66e-07, + "starves": 1.66e-07, + "statesmanship": 1.66e-07, + "stephanopoulos": 1.66e-07, + "stevensons": 1.66e-07, + "stiffly": 1.66e-07, + "stigmatize": 1.66e-07, + "stimpson": 1.66e-07, + "stirrer": 1.66e-07, + "stosur": 1.66e-07, + "stovall": 1.66e-07, + "strategizing": 1.66e-07, + "strop": 1.66e-07, + "strutted": 1.66e-07, + "subaltern": 1.66e-07, + "subarachnoid": 1.66e-07, + "subpopulations": 1.66e-07, + "subsisting": 1.66e-07, + "sudhir": 1.66e-07, + "suetonius": 1.66e-07, + "sulley": 1.66e-07, + "supermen": 1.66e-07, + "supplanting": 1.66e-07, + "surfeit": 1.66e-07, + "surfs": 1.2e-07, + "sushma": 1.66e-07, + "svelte": 1.66e-07, + "swanton": 1.66e-07, + "symes": 1.66e-07, + "symon": 1.66e-07, + "syntheses": 1.66e-07, + "tahu": 1.66e-07, + "takeoffs": 1.66e-07, + "tamagotchi": 1.66e-07, + "tarun": 1.66e-07, + "tarver": 1.66e-07, + "tasso": 1.66e-07, + "tasters": 1.66e-07, + "tawa": 1.66e-07, + "tde": 1.66e-07, + "tdk": 1.66e-07, + "teacups": 1.66e-07, + "teasdale": 1.66e-07, + "telecasts": 1.66e-07, + "telemarketers": 1.66e-07, + "televise": 1.66e-07, + "terme": 1.66e-07, + "terminators": 1.66e-07, + "terps": 1.66e-07, + "terrifically": 1.66e-07, + "terroristic": 1.66e-07, + "testbed": 1.66e-07, + "texte": 1.66e-07, + "theists": 1.66e-07, + "theravada": 1.66e-07, + "thia": 1.66e-07, + "thuggish": 1.66e-07, + "thuringia": 1.66e-07, + "thw": 1.66e-07, + "thwarts": 1.66e-07, + "tibi": 1.66e-07, + "tico": 1.66e-07, + "tilled": 1.66e-07, + "timestamps": 1.66e-07, + "timm": 1.66e-07, + "tions": 1.66e-07, + "tiptoes": 1.66e-07, + "tmd": 1.66e-07, + "torry": 1.66e-07, + "tottenhams": 1.66e-07, + "toujours": 1.66e-07, + "toupee": 1.66e-07, + "tourer": 1.66e-07, + "tousled": 1.66e-07, + "townhall": 1.66e-07, + "toxicological": 1.66e-07, + "traduction": 1.66e-07, + "trai": 1.66e-07, + "transgressed": 1.66e-07, + "trilobites": 1.66e-07, + "triumphing": 1.66e-07, + "troughton": 1.66e-07, + "trusteeship": 1.66e-07, + "tsars": 8.71e-08, + "tsubasa": 1.66e-07, + "tulum": 1.66e-07, + "tuts": 8.91e-08, + "tvp": 1.66e-07, + "tymoshenko": 1.66e-07, + "uff": 1.66e-07, + "ughhh": 1.66e-07, + "ulsan": 1.66e-07, + "umesh": 1.66e-07, + "ums": 1.66e-07, + "unbelieving": 1.66e-07, + "underaged": 1.66e-07, + "undigested": 1.66e-07, + "unequalled": 1.66e-07, + "unfavourably": 1.66e-07, + "unsaved": 1.66e-07, + "untaxed": 1.66e-07, + "untruth": 1.66e-07, + "upjohn": 1.66e-07, + "urbino": 1.66e-07, + "vad": 1.66e-07, + "vaporizing": 1.66e-07, + "varnishes": 1.66e-07, + "venizelos": 1.66e-07, + "vetoing": 1.66e-07, + "videoconferencing": 1.66e-07, + "viennas": 1.66e-07, + "vilifying": 1.66e-07, + "vilna": 1.66e-07, + "vintners": 1.66e-07, + "vipassana": 1.66e-07, + "vistula": 1.66e-07, + "vitruvius": 1.66e-07, + "vivant": 1.66e-07, + "vloggers": 1.66e-07, + "vocs": 1.66e-07, + "vogler": 1.66e-07, + "voiceovers": 1.66e-07, + "voltaic": 1.66e-07, + "vrc": 1.66e-07, + "vtol": 1.66e-07, + "waddling": 1.66e-07, + "waltrip": 1.66e-07, + "wans": 8.13e-08, + "warhorse": 1.66e-07, + "wavefront": 1.66e-07, + "wayyyyy": 1.66e-07, + "wegmans": 1.66e-07, + "weh": 1.66e-07, + "wellbutrin": 1.66e-07, + "whic": 1.66e-07, + "whimpers": 1.66e-07, + "whirled": 1.66e-07, + "wih": 1.66e-07, + "willet": 1.66e-07, + "windup": 1.66e-07, + "wohl": 1.66e-07, + "wonton": 1.66e-07, + "woodworth": 1.66e-07, + "workgroup": 1.66e-07, + "wrens": 6.17e-08, + "wsc": 1.66e-07, + "wukong": 1.66e-07, + "wycliffe": 1.66e-07, + "yakov": 1.66e-07, + "yarborough": 1.66e-07, + "yassin": 1.66e-07, + "yasuda": 1.66e-07, + "yeesh": 1.66e-07, + "yellowed": 1.66e-07, + "yellowtail": 1.66e-07, + "yokai": 1.66e-07, + "yona": 1.66e-07, + "yoshiko": 1.66e-07, + "yury": 1.66e-07, + "yzerman": 1.66e-07, + "zags": 1.66e-07, + "zamboni": 1.66e-07, + "zappos": 1.66e-07, + "zec": 1.66e-07, + "zellweger": 1.66e-07, + "zendaya": 1.66e-07, + "ziad": 1.66e-07, + "absconding": 1.62e-07, + "acceptably": 1.62e-07, + "activators": 1.62e-07, + "adversities": 1.62e-07, + "affaire": 1.62e-07, + "afrobeat": 1.62e-07, + "agers": 1.62e-07, + "aglow": 1.62e-07, + "akari": 1.62e-07, + "albertson": 1.62e-07, + "aldosterone": 1.62e-07, + "allayed": 1.62e-07, + "alolan": 1.62e-07, + "alte": 1.62e-07, + "alveoli": 1.62e-07, + "ampere": 1.62e-07, + "amphora": 1.62e-07, + "anagrams": 1.62e-07, + "androgenic": 1.62e-07, + "anthemic": 1.62e-07, + "antidotes": 1.62e-07, + "antigenic": 1.62e-07, + "aphis": 1.62e-07, + "apia": 1.62e-07, + "apoplexy": 1.62e-07, + "aright": 1.62e-07, + "arius": 1.62e-07, + "arkin": 1.62e-07, + "arlette": 1.62e-07, + "aske": 1.62e-07, + "atherosclerotic": 1.62e-07, + "atlantean": 1.62e-07, + "atoning": 1.62e-07, + "aub": 1.62e-07, + "auditoriums": 1.62e-07, + "aurangabad": 1.62e-07, + "avenatti": 1.62e-07, + "aversive": 1.62e-07, + "awardee": 1.62e-07, + "awardees": 1.62e-07, + "awb": 1.62e-07, + "balder": 1.62e-07, + "bando": 1.62e-07, + "bandon": 1.62e-07, + "bannock": 1.62e-07, + "banta": 1.62e-07, + "bantering": 1.62e-07, + "baran": 1.62e-07, + "bascom": 1.62e-07, + "baseband": 1.62e-07, + "basmati": 1.62e-07, + "baymax": 1.62e-07, + "bayshore": 1.62e-07, + "bbqs": 7.76e-08, + "beatification": 1.62e-07, + "bedi": 1.62e-07, + "beersheba": 1.62e-07, + "beggs": 1.62e-07, + "belligerents": 1.62e-07, + "bellis": 1.62e-07, + "berkshires": 1.62e-07, + "beste": 1.62e-07, + "biosynthetic": 1.62e-07, + "blac": 1.62e-07, + "blackcurrant": 1.62e-07, + "blackwall": 1.62e-07, + "blaenau": 1.62e-07, + "bleeping": 1.62e-07, + "blitzing": 1.62e-07, + "blois": 1.62e-07, + "bluey": 1.62e-07, + "boda": 1.62e-07, + "bodacious": 1.62e-07, + "bogue": 1.62e-07, + "boothe": 1.62e-07, + "botton": 1.62e-07, + "bpc": 1.62e-07, + "branchs": 1.62e-07, + "brandes": 1.62e-07, + "bria": 1.62e-07, + "brightons": 1.62e-07, + "broun": 1.62e-07, + "brownstein": 1.62e-07, + "brule": 1.62e-07, + "brynn": 1.62e-07, + "budging": 1.62e-07, + "buggered": 1.62e-07, + "bulimic": 1.62e-07, + "bulked": 1.62e-07, + "bulkier": 1.62e-07, + "bullwinkle": 1.62e-07, + "bunching": 1.62e-07, + "buprenorphine": 1.62e-07, + "byram": 1.62e-07, + "caiman": 1.62e-07, + "caldecott": 1.62e-07, + "calibrations": 1.62e-07, + "camellias": 1.62e-07, + "capitalizes": 1.62e-07, + "carden": 1.62e-07, + "carmina": 1.62e-07, + "carribean": 1.62e-07, + "carty": 1.62e-07, + "catalase": 1.62e-07, + "cattlemen": 1.62e-07, + "celica": 1.62e-07, + "centenarians": 1.62e-07, + "centra": 1.62e-07, + "centripetal": 1.62e-07, + "cfda": 1.62e-07, + "chambermaid": 1.62e-07, + "chambersburg": 1.62e-07, + "chargeback": 1.62e-07, + "charitably": 1.62e-07, + "charl": 1.62e-07, + "chimeras": 1.62e-07, + "chive": 1.62e-07, + "choreo": 1.62e-07, + "choristers": 1.62e-07, + "chugs": 1.62e-07, + "clearness": 1.62e-07, + "clop": 1.62e-07, + "cobs": 1.62e-07, + "comercial": 1.62e-07, + "commiserate": 1.62e-07, + "comorbidity": 1.62e-07, + "complainer": 1.62e-07, + "compulsorily": 1.62e-07, + "computable": 1.62e-07, + "conroe": 1.62e-07, + "conservatorship": 1.62e-07, + "constantino": 1.62e-07, + "contentedly": 1.62e-07, + "continua": 1.62e-07, + "contortionist": 1.62e-07, + "contr": 1.62e-07, + "contravenes": 1.62e-07, + "copepods": 1.62e-07, + "cordy": 1.62e-07, + "cornhole": 1.62e-07, + "cornwalls": 1.62e-07, + "corporals": 1.62e-07, + "corrin": 1.62e-07, + "cortlandt": 1.62e-07, + "cosette": 1.62e-07, + "cosi": 1.62e-07, + "cott": 1.62e-07, + "counterclaim": 1.62e-07, + "countryfile": 1.62e-07, + "courteney": 1.62e-07, + "courtesies": 1.62e-07, + "cowered": 1.62e-07, + "cpas": 1.62e-07, + "creswell": 1.62e-07, + "crisply": 1.62e-07, + "crosswise": 1.62e-07, + "crumlin": 1.62e-07, + "crutchfield": 1.62e-07, + "cullum": 1.62e-07, + "culturing": 1.62e-07, + "curmudgeon": 1.62e-07, + "cyclo": 1.62e-07, + "cynon": 1.62e-07, + "cys": 1.62e-07, + "dacre": 1.62e-07, + "dagmar": 1.62e-07, + "danaher": 1.62e-07, + "dander": 1.62e-07, + "danielles": 1.62e-07, + "deadass": 1.62e-07, + "dehydrating": 1.62e-07, + "deluged": 1.62e-07, + "denuded": 1.62e-07, + "denzil": 1.62e-07, + "depolarization": 1.62e-07, + "depositional": 1.62e-07, + "deregulate": 1.62e-07, + "desiccation": 1.62e-07, + "detains": 1.62e-07, + "deutsches": 1.62e-07, + "dgs": 1.62e-07, + "dict": 1.62e-07, + "diffrent": 1.62e-07, + "diogo": 1.62e-07, + "discriminant": 1.62e-07, + "disick": 1.62e-07, + "dispirited": 1.62e-07, + "disrespectfully": 1.62e-07, + "divining": 1.62e-07, + "djia": 1.62e-07, + "dnipropetrovsk": 1.62e-07, + "doig": 1.62e-07, + "donington": 1.62e-07, + "doorknobs": 1.62e-07, + "downe": 1.62e-07, + "droppin": 1.62e-07, + "drow": 1.62e-07, + "duracell": 1.62e-07, + "durbar": 1.62e-07, + "eakin": 1.62e-07, + "ebm": 1.62e-07, + "ecclesiastic": 1.62e-07, + "ecn": 1.62e-07, + "edda": 1.62e-07, + "edisons": 1.62e-07, + "effin": 1.62e-07, + "effy": 1.62e-07, + "egghead": 1.62e-07, + "eggplants": 1.62e-07, + "eib": 1.62e-07, + "eilat": 1.62e-07, + "ellsbury": 1.62e-07, + "elston": 1.62e-07, + "emer": 1.62e-07, + "emphases": 1.62e-07, + "encapsulating": 1.62e-07, + "ence": 1.62e-07, + "enchanter": 1.62e-07, + "encores": 1.62e-07, + "endoscope": 1.62e-07, + "energia": 1.62e-07, + "ensenada": 1.62e-07, + "eonni": 1.62e-07, + "epicurus": 1.62e-07, + "epidemiologic": 1.62e-07, + "equalising": 1.62e-07, + "erogenous": 1.62e-07, + "escapement": 1.62e-07, + "essai": 1.62e-07, + "ete": 1.62e-07, + "etherington": 1.62e-07, + "eti": 1.62e-07, + "euronext": 1.62e-07, + "evinced": 1.62e-07, + "exhume": 1.62e-07, + "expressways": 1.62e-07, + "exuding": 1.62e-07, + "exum": 1.62e-07, + "fareham": 1.62e-07, + "fds": 1.62e-07, + "felonious": 1.62e-07, + "fenian": 1.62e-07, + "feuer": 1.62e-07, + "fibrin": 1.62e-07, + "fillion": 1.62e-07, + "fingerless": 1.62e-07, + "fitful": 1.62e-07, + "fitzsimons": 1.62e-07, + "fleecing": 1.62e-07, + "focusses": 1.62e-07, + "footie": 1.62e-07, + "footlocker": 1.62e-07, + "foots": 1.2e-07, + "fortuitously": 1.62e-07, + "fragmenting": 1.62e-07, + "freestone": 1.62e-07, + "frenchy": 1.62e-07, + "friesen": 1.62e-07, + "futurists": 1.62e-07, + "gabler": 1.62e-07, + "gago": 1.62e-07, + "gannet": 1.62e-07, + "garnishment": 1.62e-07, + "garson": 1.62e-07, + "gazzetta": 1.62e-07, + "genies": 8.13e-08, + "ggs": 8.51e-08, + "ghazal": 1.62e-07, + "gide": 1.62e-07, + "gintama": 1.62e-07, + "giraud": 1.62e-07, + "glassman": 1.62e-07, + "glbt": 1.62e-07, + "goaltenders": 1.62e-07, + "golgotha": 1.62e-07, + "gordian": 1.62e-07, + "gouges": 1.62e-07, + "grandees": 1.62e-07, + "graveside": 1.62e-07, + "graviton": 1.62e-07, + "grebe": 1.62e-07, + "greenbacks": 1.62e-07, + "grieg": 1.62e-07, + "grigio": 1.62e-07, + "grimacing": 1.62e-07, + "grinded": 1.62e-07, + "growin": 1.62e-07, + "grubhub": 1.62e-07, + "gtc": 1.62e-07, + "gulati": 1.62e-07, + "gules": 1.62e-07, + "guyer": 1.62e-07, + "gynaecological": 1.62e-07, + "haf": 1.62e-07, + "halla": 1.62e-07, + "hanoverian": 1.62e-07, + "haque": 1.62e-07, + "hartsfield": 1.62e-07, + "hattrick": 1.62e-07, + "haupt": 1.62e-07, + "haver": 1.62e-07, + "hazell": 1.62e-07, + "hbk": 1.62e-07, + "headdresses": 1.62e-07, + "hedonic": 1.62e-07, + "heenan": 1.62e-07, + "heffron": 1.62e-07, + "heliport": 1.62e-07, + "helpfulness": 1.62e-07, + "hephaestus": 1.62e-07, + "hesketh": 1.62e-07, + "heydrich": 1.62e-07, + "hildegard": 1.62e-07, + "hipper": 1.62e-07, + "hiroki": 1.62e-07, + "hololens": 1.62e-07, + "honneur": 1.62e-07, + "hosing": 1.62e-07, + "huffy": 1.62e-07, + "hurr": 1.62e-07, + "hydrangeas": 1.62e-07, + "hypno": 1.62e-07, + "icardi": 1.62e-07, + "iden": 1.62e-07, + "idg": 1.62e-07, + "idina": 1.62e-07, + "igs": 7.41e-08, + "ilene": 1.62e-07, + "improprieties": 1.62e-07, + "inapplicable": 1.62e-07, + "incs": 1.62e-07, + "incarcerate": 1.62e-07, + "inder": 1.62e-07, + "indescribably": 1.62e-07, + "inexact": 1.62e-07, + "infidelities": 1.62e-07, + "informality": 1.62e-07, + "inmarsat": 1.62e-07, + "integrin": 1.62e-07, + "interferences": 1.62e-07, + "interregnum": 1.62e-07, + "intimation": 1.62e-07, + "intrudes": 1.62e-07, + "inured": 1.62e-07, + "isds": 1.62e-07, + "ishihara": 1.62e-07, + "isosceles": 1.62e-07, + "itp": 1.62e-07, + "itsuki": 1.62e-07, + "iww": 1.62e-07, + "jame": 1.62e-07, + "jarrell": 1.62e-07, + "javale": 1.62e-07, + "jbs": 7.41e-08, + "jigglypuff": 1.62e-07, + "jobbers": 1.62e-07, + "joblessness": 1.62e-07, + "jocular": 1.62e-07, + "jordanians": 1.62e-07, + "juans": 1.62e-07, + "juggled": 1.62e-07, + "julep": 1.62e-07, + "jupp": 1.62e-07, + "kafkas": 1.62e-07, + "kahlil": 1.62e-07, + "kaia": 1.62e-07, + "kaif": 1.62e-07, + "karimov": 1.62e-07, + "keychains": 1.62e-07, + "khadi": 1.62e-07, + "kickstarted": 1.62e-07, + "kier": 1.62e-07, + "killzone": 1.62e-07, + "kitschy": 1.62e-07, + "kling": 1.62e-07, + "koba": 1.62e-07, + "kolbe": 1.62e-07, + "komarov": 1.62e-07, + "kookaburra": 1.62e-07, + "kopi": 1.62e-07, + "kori": 1.62e-07, + "kosciusko": 1.62e-07, + "krab": 1.62e-07, + "kraemer": 1.62e-07, + "krasnoyarsk": 1.62e-07, + "krispies": 1.62e-07, + "kristofferson": 1.62e-07, + "krum": 1.62e-07, + "krzyzewski": 1.62e-07, + "ktla": 1.62e-07, + "kuno": 1.62e-07, + "kurta": 1.62e-07, + "labyrinths": 1.62e-07, + "laggy": 1.62e-07, + "laika": 1.62e-07, + "lankans": 1.62e-07, + "lasseter": 1.62e-07, + "lawyering": 1.62e-07, + "lazlo": 1.62e-07, + "leahs": 1.62e-07, + "legging": 1.62e-07, + "lettre": 1.62e-07, + "levines": 1.62e-07, + "lexisnexis": 1.62e-07, + "libertadores": 1.62e-07, + "lile": 1.62e-07, + "liliane": 1.62e-07, + "lilt": 1.62e-07, + "lindelof": 1.62e-07, + "lionfish": 1.62e-07, + "llangollen": 1.62e-07, + "loke": 1.62e-07, + "loraine": 1.62e-07, + "lorie": 1.62e-07, + "lorin": 1.62e-07, + "lovelier": 1.62e-07, + "lrs": 1.62e-07, + "luigis": 1.62e-07, + "lundin": 1.62e-07, + "lysa": 1.62e-07, + "mainframes": 1.62e-07, + "maintainable": 1.62e-07, + "mallya": 1.62e-07, + "maltby": 1.62e-07, + "malthus": 1.62e-07, + "mamata": 1.62e-07, + "mandan": 1.62e-07, + "mangal": 1.62e-07, + "mangum": 1.62e-07, + "marga": 1.62e-07, + "margulies": 1.62e-07, + "marinating": 1.62e-07, + "markel": 1.62e-07, + "marling": 1.62e-07, + "masada": 1.62e-07, + "masaya": 1.62e-07, + "mastic": 1.62e-07, + "matsushita": 1.62e-07, + "maule": 1.62e-07, + "mcb": 1.62e-07, + "mcgwire": 1.62e-07, + "mcreynolds": 1.62e-07, + "mcvay": 1.62e-07, + "meares": 1.62e-07, + "megami": 1.62e-07, + "megas": 1.62e-07, + "memorised": 1.62e-07, + "merest": 1.62e-07, + "mertz": 1.62e-07, + "metabolically": 1.62e-07, + "metamorphism": 1.62e-07, + "methuselah": 1.62e-07, + "metrolink": 1.62e-07, + "mhp": 1.62e-07, + "michaelson": 1.62e-07, + "mickle": 1.62e-07, + "miele": 1.62e-07, + "mikayla": 1.62e-07, + "mima": 1.62e-07, + "misbehaved": 1.62e-07, + "misdemeanour": 1.62e-07, + "misunderstands": 1.62e-07, + "mmh": 1.62e-07, + "montmorency": 1.62e-07, + "morg": 1.62e-07, + "motored": 1.62e-07, + "moviepass": 1.62e-07, + "mpl": 1.62e-07, + "multicoloured": 1.62e-07, + "mummification": 1.62e-07, + "muta": 1.62e-07, + "muzzled": 1.62e-07, + "nacelle": 1.62e-07, + "nacogdoches": 1.62e-07, + "nagai": 1.62e-07, + "naija": 1.62e-07, + "namur": 1.62e-07, + "nanyang": 1.62e-07, + "narcisse": 1.62e-07, + "nasional": 1.62e-07, + "natsume": 1.62e-07, + "naturalness": 1.62e-07, + "necromancy": 1.62e-07, + "nectarines": 1.62e-07, + "negri": 1.62e-07, + "newish": 1.62e-07, + "newts": 5.5e-08, + "nicholsons": 1.62e-07, + "nido": 1.62e-07, + "nisar": 1.62e-07, + "nitish": 1.62e-07, + "nomen": 1.62e-07, + "nonna": 1.62e-07, + "norge": 1.62e-07, + "northup": 1.62e-07, + "novaya": 1.62e-07, + "nycfc": 1.62e-07, + "occluded": 1.62e-07, + "oce": 1.62e-07, + "ofer": 1.62e-07, + "ofs": 1.62e-07, + "olam": 1.62e-07, + "olmert": 1.62e-07, + "olusegun": 1.62e-07, + "omarosa": 1.62e-07, + "onthe": 1.62e-07, + "oor": 1.62e-07, + "ordre": 1.62e-07, + "organo": 1.62e-07, + "oru": 1.62e-07, + "outdoorsman": 1.62e-07, + "outscoring": 1.62e-07, + "owt": 1.62e-07, + "palpably": 1.62e-07, + "paperboy": 1.62e-07, + "passos": 1.62e-07, + "pastorate": 1.62e-07, + "pattons": 1.62e-07, + "pdm": 1.62e-07, + "peacefulness": 1.62e-07, + "peay": 1.62e-07, + "pedroia": 1.62e-07, + "pem": 1.62e-07, + "pencilled": 1.62e-07, + "peplum": 1.62e-07, + "pepto": 1.62e-07, + "percents": 1.62e-07, + "periodontitis": 1.62e-07, + "perlite": 1.62e-07, + "personify": 1.62e-07, + "petrarch": 1.62e-07, + "petrel": 1.62e-07, + "philp": 1.62e-07, + "phonon": 1.62e-07, + "photochemical": 1.62e-07, + "pilfering": 1.62e-07, + "plats": 1.62e-07, + "plebeians": 1.62e-07, + "ploys": 1.62e-07, + "pointlessly": 1.62e-07, + "polynesians": 1.62e-07, + "popups": 1.62e-07, + "posix": 1.62e-07, + "pouncing": 1.62e-07, + "pred": 1.62e-07, + "preprint": 1.62e-07, + "prepubescent": 1.62e-07, + "pressler": 1.62e-07, + "prf": 1.62e-07, + "probly": 1.62e-07, + "profanities": 1.62e-07, + "provocateurs": 1.62e-07, + "psalmist": 1.62e-07, + "pssst": 1.62e-07, + "pudong": 1.62e-07, + "punchlines": 1.62e-07, + "punctually": 1.62e-07, + "punditry": 1.62e-07, + "pvs": 1.62e-07, + "pws": 1.62e-07, + "pyridine": 1.62e-07, + "pyrrhus": 1.62e-07, + "quashing": 1.62e-07, + "quickfire": 1.62e-07, + "radiations": 1.62e-07, + "raekwon": 1.62e-07, + "ragdoll": 1.62e-07, + "ragin": 1.62e-07, + "raila": 1.62e-07, + "rainn": 1.62e-07, + "rajinikanth": 1.62e-07, + "rajoy": 1.62e-07, + "ramah": 1.62e-07, + "rasul": 1.62e-07, + "ratzinger": 1.62e-07, + "rawness": 1.62e-07, + "reapplied": 1.62e-07, + "recitations": 1.62e-07, + "recommit": 1.62e-07, + "regine": 1.62e-07, + "regurgitating": 1.62e-07, + "reiser": 1.62e-07, + "renmin": 1.62e-07, + "repetitively": 1.62e-07, + "repossess": 1.62e-07, + "rescission": 1.62e-07, + "resized": 1.62e-07, + "restorers": 1.62e-07, + "restrepo": 1.62e-07, + "retooling": 1.62e-07, + "reva": 1.62e-07, + "revisionists": 1.62e-07, + "rhodri": 1.62e-07, + "rhona": 1.62e-07, + "ricocheted": 1.62e-07, + "riles": 1.62e-07, + "rockhold": 1.62e-07, + "rodeos": 1.62e-07, + "ronnies": 6.76e-08, + "rooke": 1.62e-07, + "rothbard": 1.62e-07, + "rso": 1.62e-07, + "rsp": 1.62e-07, + "ruckman": 1.62e-07, + "rud": 1.62e-07, + "ruffling": 1.62e-07, + "runge": 1.62e-07, + "sabathia": 1.62e-07, + "sachet": 1.62e-07, + "saira": 1.62e-07, + "sakshi": 1.62e-07, + "sali": 1.62e-07, + "saltzman": 1.62e-07, + "samad": 1.62e-07, + "sangam": 1.62e-07, + "savitar": 1.62e-07, + "savoie": 1.62e-07, + "sbt": 1.62e-07, + "scampered": 1.62e-07, + "schramm": 1.62e-07, + "scrapper": 1.62e-07, + "scythians": 1.62e-07, + "sde": 1.62e-07, + "seceding": 1.62e-07, + "seely": 1.62e-07, + "seki": 1.62e-07, + "sela": 1.62e-07, + "selhurst": 1.62e-07, + "sensu": 1.62e-07, + "seperated": 1.62e-07, + "serbo": 1.62e-07, + "sexualised": 1.62e-07, + "sharples": 1.62e-07, + "shekel": 1.62e-07, + "sheree": 1.62e-07, + "shipowners": 1.62e-07, + "shul": 1.62e-07, + "shyamalan": 1.62e-07, + "sicilians": 1.62e-07, + "sidereal": 1.62e-07, + "sidestepped": 1.62e-07, + "sigur": 1.62e-07, + "silverlight": 1.62e-07, + "simples": 1.62e-07, + "singleness": 1.62e-07, + "sinica": 1.62e-07, + "skeletor": 1.62e-07, + "skimmers": 1.62e-07, + "skol": 1.62e-07, + "slenderman": 1.62e-07, + "slims": 1.55e-07, + "slovenly": 1.62e-07, + "smooths": 1.62e-07, + "sniffle": 1.62e-07, + "snipping": 1.62e-07, + "snowmelt": 1.62e-07, + "soccers": 1.62e-07, + "softy": 1.62e-07, + "solarium": 1.62e-07, + "solidworks": 1.62e-07, + "sonogram": 1.62e-07, + "sori": 1.62e-07, + "spall": 1.62e-07, + "splines": 1.62e-07, + "splurging": 1.62e-07, + "squirmed": 1.62e-07, + "sru": 1.62e-07, + "stampa": 1.62e-07, + "stationers": 1.62e-07, + "staycation": 1.62e-07, + "stoma": 1.62e-07, + "stonehouse": 1.62e-07, + "streit": 1.62e-07, + "strikeforce": 1.62e-07, + "subscript": 1.62e-07, + "substituents": 1.62e-07, + "succinate": 1.62e-07, + "suntory": 1.62e-07, + "supercomputing": 1.62e-07, + "suppositories": 1.62e-07, + "surbiton": 1.62e-07, + "surmount": 1.62e-07, + "suse": 1.62e-07, + "suso": 1.62e-07, + "svd": 1.62e-07, + "swanepoel": 1.62e-07, + "swash": 1.62e-07, + "swee": 1.62e-07, + "symbology": 1.62e-07, + "tachometer": 1.62e-07, + "tachyon": 1.62e-07, + "taht": 1.62e-07, + "tamas": 1.74e-08, + "taproom": 1.62e-07, + "tarnation": 1.62e-07, + "tauri": 1.38e-08, + "taya": 1.62e-07, + "tayler": 1.62e-07, + "tehrans": 1.62e-07, + "tello": 1.62e-07, + "telomerase": 1.62e-07, + "texturing": 1.62e-07, + "thana": 1.62e-07, + "thanatos": 1.62e-07, + "theist": 1.62e-07, + "theodoric": 1.62e-07, + "theresas": 1.62e-07, + "thermopylae": 1.62e-07, + "thora": 1.62e-07, + "thorntons": 1.62e-07, + "thumbprint": 1.62e-07, + "timberlakes": 1.62e-07, + "tocopherol": 1.62e-07, + "tojo": 1.62e-07, + "tokai": 1.62e-07, + "toland": 1.62e-07, + "tope": 1.62e-07, + "torii": 1.62e-07, + "torrence": 1.62e-07, + "towie": 1.62e-07, + "towners": 1.62e-07, + "trabajo": 1.62e-07, + "tractable": 1.62e-07, + "trailblazing": 1.62e-07, + "transcanada": 1.62e-07, + "transshipment": 1.62e-07, + "transvestites": 1.62e-07, + "treaters": 1.62e-07, + "triplex": 1.62e-07, + "trippers": 1.62e-07, + "trompe": 1.62e-07, + "troup": 1.62e-07, + "trueman": 1.62e-07, + "trumper": 1.62e-07, + "ttm": 1.62e-07, + "tuneful": 1.62e-07, + "twix": 1.62e-07, + "tyger": 1.62e-07, + "typeset": 1.62e-07, + "uba": 1.62e-07, + "uchida": 1.62e-07, + "uid": 1.62e-07, + "unfollowed": 1.62e-07, + "unicellular": 1.62e-07, + "universitat": 1.62e-07, + "unlabeled": 1.62e-07, + "unlikable": 1.62e-07, + "unrighteousness": 1.62e-07, + "unrolled": 1.62e-07, + "unzips": 1.62e-07, + "valais": 1.62e-07, + "vallee": 1.62e-07, + "valls": 1.62e-07, + "vapes": 1.62e-07, + "vasili": 1.62e-07, + "veitch": 1.62e-07, + "ventrally": 1.62e-07, + "vermeulen": 1.62e-07, + "vib": 1.62e-07, + "victimisation": 1.62e-07, + "vilas": 1.62e-07, + "virginie": 1.62e-07, + "visigoths": 1.62e-07, + "waah": 1.62e-07, + "wafted": 1.62e-07, + "waratah": 1.62e-07, + "wariness": 1.62e-07, + "washingtonian": 1.62e-07, + "wasson": 1.62e-07, + "watchs": 1.62e-07, + "watchmakers": 1.62e-07, + "watchword": 1.62e-07, + "wattpad": 1.62e-07, + "weaklings": 1.62e-07, + "weatherby": 1.62e-07, + "webers": 1.62e-07, + "weiwei": 1.62e-07, + "welly": 1.62e-07, + "weren": 1.62e-07, + "wessels": 1.62e-07, + "weybridge": 1.62e-07, + "wfc": 1.62e-07, + "whee": 1.62e-07, + "wieners": 1.62e-07, + "wimax": 1.62e-07, + "wisher": 1.62e-07, + "womp": 1.62e-07, + "workspaces": 1.62e-07, + "wouldst": 1.62e-07, + "wrack": 1.62e-07, + "wrathful": 1.62e-07, + "wrongdoers": 1.62e-07, + "wurst": 1.62e-07, + "wx": 1.62e-07, + "wyss": 1.62e-07, + "xcom": 1.62e-07, + "xenopus": 1.62e-07, + "xxix": 1.62e-07, + "xylem": 1.62e-07, + "yeates": 1.62e-07, + "yemi": 1.62e-07, + "yik": 1.62e-07, + "youself": 1.62e-07, + "youthfulness": 1.62e-07, + "zabel": 1.62e-07, + "zbigniew": 1.62e-07, + "zhengzhou": 1.62e-07, + "zindagi": 1.62e-07, + "zoopla": 1.62e-07, + "zp": 1.62e-07, + "zygmunt": 1.62e-07, + "zzz": 1.62e-07, + "aaand": 1.58e-07, + "aav": 1.58e-07, + "abductors": 1.58e-07, + "abedin": 1.58e-07, + "abelard": 1.58e-07, + "abnegation": 1.58e-07, + "accc": 1.58e-07, + "adora": 1.58e-07, + "aggarwal": 1.58e-07, + "ahmadis": 1.58e-07, + "airdrops": 1.58e-07, + "aitchison": 1.58e-07, + "akiba": 1.58e-07, + "alai": 1.58e-07, + "alamogordo": 1.58e-07, + "albie": 1.58e-07, + "alcibiades": 1.58e-07, + "alderaan": 1.58e-07, + "alitalia": 1.58e-07, + "allergan": 1.58e-07, + "amery": 1.58e-07, + "amidships": 1.58e-07, + "anat": 1.58e-07, + "anesthesiologists": 1.58e-07, + "anglos": 1.58e-07, + "anitas": 1.58e-07, + "antipodes": 1.58e-07, + "apatite": 1.58e-07, + "apportion": 1.58e-07, + "aprilia": 1.58e-07, + "arad": 1.58e-07, + "armas": 1.58e-07, + "armors": 6.31e-08, + "ataturk": 1.58e-07, + "ater": 1.58e-07, + "austerlitz": 1.58e-07, + "authenticating": 1.58e-07, + "autry": 1.58e-07, + "aver": 1.58e-07, + "avner": 1.58e-07, + "avoidant": 1.58e-07, + "awg": 1.58e-07, + "awlaki": 1.58e-07, + "awn": 1.58e-07, + "axing": 1.58e-07, + "azaria": 1.58e-07, + "azzam": 1.58e-07, + "backbencher": 1.58e-07, + "backpage": 1.58e-07, + "bago": 1.58e-07, + "bailie": 1.58e-07, + "ballplayer": 1.58e-07, + "bandaid": 1.58e-07, + "banjos": 1.58e-07, + "bartels": 1.58e-07, + "bartlesville": 1.58e-07, + "bastrop": 1.58e-07, + "batra": 1.58e-07, + "batum": 1.58e-07, + "bball": 1.58e-07, + "bct": 1.58e-07, + "beatnik": 1.58e-07, + "becerra": 1.58e-07, + "befalls": 1.58e-07, + "belmore": 1.58e-07, + "beltline": 1.58e-07, + "benzyl": 1.58e-07, + "betancourt": 1.58e-07, + "bilinear": 1.58e-07, + "blackpink": 1.58e-07, + "blofeld": 1.58e-07, + "bloodstains": 1.58e-07, + "bluffton": 1.58e-07, + "boccaccio": 1.58e-07, + "boheme": 1.58e-07, + "bolded": 1.58e-07, + "bolsa": 1.58e-07, + "bonaire": 1.58e-07, + "bookman": 1.58e-07, + "boons": 1.58e-07, + "botham": 1.58e-07, + "bottlers": 1.58e-07, + "boyo": 1.58e-07, + "bradfords": 1.58e-07, + "braff": 1.58e-07, + "brandish": 1.58e-07, + "brassard": 1.58e-07, + "brca": 1.58e-07, + "brd": 1.58e-07, + "bringbackourgirls": 1.58e-07, + "brinton": 1.58e-07, + "briny": 1.58e-07, + "broner": 1.58e-07, + "buggery": 1.58e-07, + "buggin": 1.58e-07, + "buon": 1.58e-07, + "burdette": 1.58e-07, + "buuren": 1.58e-07, + "byd": 1.58e-07, + "byelection": 1.58e-07, + "byrons": 1.58e-07, + "caan": 1.58e-07, + "calebs": 1.58e-07, + "calicut": 1.58e-07, + "calorific": 1.58e-07, + "calzone": 1.58e-07, + "camargo": 1.58e-07, + "capacious": 1.58e-07, + "carbuncle": 1.58e-07, + "carefull": 1.58e-07, + "casbah": 1.58e-07, + "cashel": 1.58e-07, + "casus": 1.58e-07, + "catwalks": 1.58e-07, + "cbl": 1.58e-07, + "cboe": 1.58e-07, + "celebritys": 1.58e-07, + "celeron": 1.58e-07, + "cephalopods": 1.58e-07, + "cerritos": 1.58e-07, + "charney": 1.58e-07, + "chastisement": 1.58e-07, + "cheapness": 1.58e-07, + "chemotherapeutic": 1.58e-07, + "cherubim": 1.58e-07, + "chevrons": 1.58e-07, + "chickenshit": 1.58e-07, + "chiesa": 1.58e-07, + "chimeric": 1.58e-07, + "chiselled": 1.58e-07, + "chorlton": 1.58e-07, + "chupacabra": 1.58e-07, + "ciliary": 1.58e-07, + "cinematographic": 1.58e-07, + "clemenceau": 1.58e-07, + "cobden": 1.58e-07, + "cockiness": 1.58e-07, + "collateralized": 1.58e-07, + "colne": 1.58e-07, + "commish": 1.58e-07, + "comorbidities": 1.58e-07, + "complainers": 1.58e-07, + "confederated": 1.58e-07, + "connollys": 1.58e-07, + "consorts": 1.58e-07, + "consultancies": 1.58e-07, + "corgan": 1.58e-07, + "corneas": 1.58e-07, + "coronel": 1.58e-07, + "cosbys": 1.58e-07, + "costumers": 1.58e-07, + "countervailing": 1.58e-07, + "countywide": 1.58e-07, + "coveting": 1.58e-07, + "crackin": 1.58e-07, + "cravens": 6.03e-08, + "cres": 1.58e-07, + "crimping": 1.58e-07, + "croon": 1.58e-07, + "croquettes": 1.58e-07, + "crosley": 1.58e-07, + "csir": 1.58e-07, + "cuando": 1.58e-07, + "cuatro": 1.58e-07, + "cullman": 1.58e-07, + "culls": 1.58e-07, + "curdled": 1.58e-07, + "cusps": 1.58e-07, + "cutlers": 5.37e-08, + "dalles": 1.58e-07, + "dancy": 1.58e-07, + "danko": 1.58e-07, + "darnold": 1.58e-07, + "daughtry": 1.58e-07, + "davi": 1.58e-07, + "davros": 1.58e-07, + "dayna": 1.58e-07, + "dbms": 1.58e-07, + "dearing": 1.58e-07, + "decant": 1.58e-07, + "deepmind": 1.58e-07, + "defiling": 1.58e-07, + "dehumanized": 1.58e-07, + "dein": 1.58e-07, + "deku": 1.58e-07, + "delisting": 1.58e-07, + "demoralize": 1.58e-07, + "denon": 1.58e-07, + "depute": 1.58e-07, + "destructor": 1.58e-07, + "detoxing": 1.58e-07, + "devaney": 1.58e-07, + "deve": 1.58e-07, + "devries": 1.58e-07, + "dham": 1.58e-07, + "diffusers": 1.58e-07, + "disjunction": 1.58e-07, + "dismissively": 1.58e-07, + "displease": 1.58e-07, + "distaff": 1.58e-07, + "divorcees": 1.58e-07, + "dkny": 1.58e-07, + "dois": 1.58e-07, + "doohan": 1.58e-07, + "dreamweaver": 1.58e-07, + "drei": 1.58e-07, + "drumroll": 1.58e-07, + "dta": 1.58e-07, + "duals": 1.58e-07, + "duchovny": 1.58e-07, + "duddy": 1.58e-07, + "dugouts": 1.58e-07, + "dullest": 1.58e-07, + "dunya": 1.58e-07, + "durr": 1.58e-07, + "duvalier": 1.58e-07, + "duvernay": 1.58e-07, + "dvm": 1.58e-07, + "ects": 1.58e-07, + "eed": 1.58e-07, + "efferent": 1.58e-07, + "egoistic": 1.58e-07, + "eit": 1.58e-07, + "elana": 1.58e-07, + "elastomer": 1.58e-07, + "eleonora": 1.58e-07, + "elif": 1.58e-07, + "elke": 1.58e-07, + "ellisons": 1.58e-07, + "emdr": 1.58e-07, + "emv": 1.58e-07, + "energie": 1.58e-07, + "enraging": 1.58e-07, + "entangle": 1.58e-07, + "erez": 1.58e-07, + "esha": 1.58e-07, + "estevez": 1.58e-07, + "etoile": 1.58e-07, + "eugh": 1.58e-07, + "eurofighter": 1.58e-07, + "euthanize": 1.58e-07, + "eviscerate": 1.58e-07, + "facsimiles": 1.58e-07, + "famicom": 1.58e-07, + "fanbases": 1.58e-07, + "farkas": 1.58e-07, + "farrells": 1.58e-07, + "farsighted": 1.58e-07, + "fearon": 1.58e-07, + "feria": 1.58e-07, + "ferretti": 1.58e-07, + "feted": 1.58e-07, + "fibrinogen": 1.58e-07, + "figural": 1.58e-07, + "firebombing": 1.58e-07, + "fixe": 1.58e-07, + "flav": 1.58e-07, + "florissant": 1.58e-07, + "fluidly": 1.58e-07, + "fluoro": 1.58e-07, + "fonds": 1.58e-07, + "fons": 1.58e-07, + "foodbank": 1.58e-07, + "forages": 1.58e-07, + "foro": 1.58e-07, + "freakout": 1.58e-07, + "freakshow": 1.58e-07, + "freeloaders": 1.58e-07, + "freewill": 1.58e-07, + "fsi": 1.58e-07, + "fsn": 1.58e-07, + "funfair": 1.58e-07, + "furstenberg": 1.58e-07, + "furyk": 1.58e-07, + "gaily": 1.58e-07, + "galilei": 1.58e-07, + "gargling": 1.58e-07, + "gca": 1.58e-07, + "gcd": 1.58e-07, + "gdf": 1.58e-07, + "gelder": 1.58e-07, + "geoghegan": 1.58e-07, + "gestural": 1.58e-07, + "gimlet": 1.58e-07, + "gladden": 1.58e-07, + "glasnost": 1.58e-07, + "glendon": 1.58e-07, + "glickman": 1.58e-07, + "globals": 5.01e-08, + "glomerular": 1.58e-07, + "glycolic": 1.58e-07, + "gmm": 1.58e-07, + "goddaughter": 1.58e-07, + "gok": 1.58e-07, + "goldfield": 1.58e-07, + "gorski": 1.58e-07, + "gosnell": 1.58e-07, + "gramsci": 1.58e-07, + "grandin": 1.58e-07, + "granitic": 1.58e-07, + "grantland": 1.58e-07, + "grat": 1.58e-07, + "gravure": 1.58e-07, + "greely": 1.58e-07, + "greencastle": 1.58e-07, + "grovelling": 1.58e-07, + "gryphon": 1.58e-07, + "gss": 1.58e-07, + "gsu": 1.58e-07, + "gtl": 1.58e-07, + "guanajuato": 1.58e-07, + "gunston": 1.58e-07, + "gwa": 1.58e-07, + "haidar": 1.58e-07, + "halim": 1.58e-07, + "halpert": 1.58e-07, + "handi": 1.58e-07, + "haplotype": 1.58e-07, + "hardings": 1.58e-07, + "harpenden": 1.58e-07, + "harpist": 1.58e-07, + "hatha": 1.58e-07, + "heaves": 1.58e-07, + "hecklers": 1.58e-07, + "hellen": 1.58e-07, + "helmeted": 1.58e-07, + "helpings": 1.58e-07, + "herberts": 1.58e-07, + "hillard": 1.58e-07, + "hilltops": 1.58e-07, + "hipped": 1.58e-07, + "hir": 1.58e-07, + "hira": 1.58e-07, + "hirai": 1.58e-07, + "hirschfeld": 1.58e-07, + "hollies": 1.58e-07, + "hollowing": 1.58e-07, + "homocysteine": 1.58e-07, + "honorius": 1.58e-07, + "hopman": 1.58e-07, + "horvat": 1.58e-07, + "hout": 1.58e-07, + "howser": 1.58e-07, + "hrp": 1.58e-07, + "huntin": 1.58e-07, + "iai": 1.58e-07, + "ibp": 1.58e-07, + "icg": 1.58e-07, + "idem": 1.58e-07, + "iftar": 1.58e-07, + "iguodala": 1.58e-07, + "illegitimacy": 1.58e-07, + "imogene": 1.58e-07, + "impracticable": 1.58e-07, + "inaccessibility": 1.58e-07, + "inadvisable": 1.58e-07, + "incongruity": 1.58e-07, + "indubitably": 1.58e-07, + "infuses": 1.58e-07, + "inheritor": 1.58e-07, + "inhouse": 1.58e-07, + "inseam": 1.58e-07, + "instated": 1.58e-07, + "insubordinate": 1.58e-07, + "intemperate": 1.58e-07, + "interspecies": 1.58e-07, + "intubated": 1.58e-07, + "invalidity": 1.58e-07, + "inverts": 1.58e-07, + "iof": 1.58e-07, + "ious": 1.58e-07, + "ipd": 1.58e-07, + "iquique": 1.58e-07, + "irwins": 1.58e-07, + "iskandar": 1.58e-07, + "jackfruit": 1.58e-07, + "jamais": 1.58e-07, + "jct": 1.58e-07, + "jeopardizes": 1.58e-07, + "jeunesse": 1.58e-07, + "jiggly": 1.58e-07, + "jinny": 1.58e-07, + "jordana": 1.58e-07, + "josefina": 1.58e-07, + "joslin": 1.58e-07, + "joslyn": 1.58e-07, + "jrue": 1.58e-07, + "jubal": 1.58e-07, + "jund": 1.58e-07, + "jyn": 1.58e-07, + "kab": 1.58e-07, + "kabhi": 1.58e-07, + "kaden": 1.58e-07, + "kaguya": 1.58e-07, + "kame": 1.58e-07, + "kempe": 1.58e-07, + "keo": 1.58e-07, + "kerstin": 1.58e-07, + "keynotes": 1.58e-07, + "khel": 1.58e-07, + "kickoffs": 1.58e-07, + "kido": 1.58e-07, + "kiis": 1.58e-07, + "killah": 1.58e-07, + "kinabalu": 1.58e-07, + "kinston": 1.58e-07, + "kittel": 1.58e-07, + "kiyoko": 1.58e-07, + "kizer": 1.58e-07, + "knope": 1.58e-07, + "knoweth": 1.58e-07, + "koen": 1.58e-07, + "kosovos": 1.58e-07, + "krist": 1.58e-07, + "kuhl": 1.58e-07, + "kumbaya": 1.58e-07, + "kunta": 1.58e-07, + "kunz": 1.58e-07, + "kuz": 1.58e-07, + "lafontaine": 1.58e-07, + "lali": 1.58e-07, + "lalit": 1.58e-07, + "lalu": 1.58e-07, + "langmuir": 1.58e-07, + "lanolin": 1.58e-07, + "larimer": 1.58e-07, + "larne": 1.58e-07, + "lavar": 1.58e-07, + "lawbreakers": 1.58e-07, + "ldap": 1.58e-07, + "lecithin": 1.58e-07, + "leclair": 1.58e-07, + "leet": 1.58e-07, + "legalism": 1.58e-07, + "leitrim": 1.58e-07, + "lendl": 1.58e-07, + "lerwick": 1.58e-07, + "levar": 1.58e-07, + "lexapro": 1.58e-07, + "libation": 1.58e-07, + "lightnin": 1.58e-07, + "lingus": 1.58e-07, + "lippy": 1.58e-07, + "llano": 1.58e-07, + "lmk": 1.58e-07, + "lobs": 1.58e-07, + "lodgers": 1.58e-07, + "loewe": 1.58e-07, + "loggia": 1.58e-07, + "loughton": 1.58e-07, + "lrb": 1.58e-07, + "lupine": 1.58e-07, + "luria": 1.58e-07, + "mabry": 1.58e-07, + "madeley": 1.58e-07, + "madox": 1.58e-07, + "magellanic": 1.58e-07, + "magoo": 1.58e-07, + "mahony": 1.58e-07, + "maint": 1.58e-07, + "makita": 1.58e-07, + "mandzukic": 1.58e-07, + "manne": 1.58e-07, + "mapa": 1.58e-07, + "marner": 1.58e-07, + "marron": 1.58e-07, + "marsalis": 1.58e-07, + "marth": 1.58e-07, + "masher": 1.58e-07, + "matilde": 1.58e-07, + "matrilineal": 1.58e-07, + "matzo": 1.58e-07, + "maybes": 1.58e-07, + "mccreary": 1.58e-07, + "mcgees": 1.58e-07, + "mcmorris": 1.58e-07, + "mcphail": 1.58e-07, + "mediafire": 1.58e-07, + "meekness": 1.58e-07, + "melcher": 1.58e-07, + "meltwater": 1.58e-07, + "meriwether": 1.58e-07, + "metallicas": 1.58e-07, + "mezcal": 1.58e-07, + "milian": 1.58e-07, + "mineworkers": 1.58e-07, + "minuses": 1.58e-07, + "misanthrope": 1.58e-07, + "misanthropic": 1.58e-07, + "misbehaviour": 1.58e-07, + "misleadingly": 1.58e-07, + "miyake": 1.58e-07, + "miyu": 1.58e-07, + "mkii": 1.58e-07, + "moar": 1.58e-07, + "modoc": 1.58e-07, + "mohandas": 1.58e-07, + "mohs": 1.58e-07, + "monteiro": 1.58e-07, + "mortician": 1.58e-07, + "mosely": 1.58e-07, + "motorhead": 1.58e-07, + "mouthfeel": 1.58e-07, + "msgr": 1.58e-07, + "msk": 1.58e-07, + "mullens": 6.17e-08, + "munna": 1.58e-07, + "muskingum": 1.58e-07, + "mutuals": 5.75e-08, + "naff": 1.58e-07, + "narmada": 1.58e-07, + "necrophilia": 1.58e-07, + "necrotizing": 1.58e-07, + "neurone": 1.58e-07, + "neurotoxicity": 1.58e-07, + "newsreels": 1.58e-07, + "nginx": 1.58e-07, + "nickelodeons": 1.58e-07, + "nini": 1.58e-07, + "nioh": 1.58e-07, + "nismo": 1.58e-07, + "norco": 1.58e-07, + "norland": 1.58e-07, + "northeastward": 1.58e-07, + "northmen": 1.58e-07, + "ntn": 1.58e-07, + "nukem": 1.58e-07, + "nurburgring": 1.58e-07, + "nyack": 1.58e-07, + "nylander": 1.58e-07, + "oau": 1.58e-07, + "oblate": 1.58e-07, + "occlusive": 1.58e-07, + "omnis": 1.58e-07, + "oon": 1.58e-07, + "opcw": 1.58e-07, + "outgoings": 1.58e-07, + "overwintering": 1.58e-07, + "overworld": 1.58e-07, + "oww": 1.58e-07, + "paganini": 1.58e-07, + "pahlavi": 1.58e-07, + "pahs": 1.58e-07, + "palfrey": 1.58e-07, + "palmolive": 1.58e-07, + "panamera": 1.58e-07, + "papillae": 1.58e-07, + "pappa": 1.58e-07, + "paracelsus": 1.58e-07, + "parakeets": 1.58e-07, + "parana": 1.58e-07, + "parham": 1.58e-07, + "pasar": 1.58e-07, + "patra": 1.58e-07, + "paulding": 1.58e-07, + "pawnshop": 1.58e-07, + "payet": 1.58e-07, + "peary": 1.58e-07, + "pelosis": 1.58e-07, + "pembina": 1.58e-07, + "peptic": 1.58e-07, + "perineum": 1.58e-07, + "perle": 1.58e-07, + "perovskite": 1.58e-07, + "perumal": 1.58e-07, + "petaling": 1.58e-07, + "pgm": 1.58e-07, + "phaeton": 1.58e-07, + "phar": 1.58e-07, + "phillippe": 1.58e-07, + "phinney": 1.58e-07, + "photojournalists": 1.58e-07, + "photoreceptor": 1.58e-07, + "pierres": 1.58e-07, + "piezo": 1.58e-07, + "pigeonhole": 1.58e-07, + "pillay": 1.58e-07, + "pimento": 1.58e-07, + "pimpernel": 1.58e-07, + "pitiable": 1.58e-07, + "placebos": 1.58e-07, + "plainer": 1.58e-07, + "pmid": 1.58e-07, + "populi": 1.58e-07, + "pored": 1.58e-07, + "pornographers": 1.58e-07, + "positivist": 1.58e-07, + "posy": 1.58e-07, + "pottermore": 1.58e-07, + "prather": 1.58e-07, + "pravin": 1.58e-07, + "prensa": 1.58e-07, + "princesa": 1.58e-07, + "prithvi": 1.58e-07, + "profligacy": 1.58e-07, + "profundity": 1.58e-07, + "protean": 1.58e-07, + "psas": 1.58e-07, + "publica": 1.58e-07, + "pudsey": 1.58e-07, + "pummeling": 1.58e-07, + "punked": 1.58e-07, + "pursed": 1.58e-07, + "pusan": 1.58e-07, + "puzzler": 1.58e-07, + "quadra": 1.58e-07, + "quesada": 1.58e-07, + "quickstep": 1.58e-07, + "quintile": 1.58e-07, + "radioheads": 1.58e-07, + "radioisotope": 1.58e-07, + "raeburn": 1.58e-07, + "ragweed": 1.58e-07, + "railcar": 1.58e-07, + "rajat": 1.58e-07, + "ramires": 1.58e-07, + "raph": 1.58e-07, + "ravish": 1.58e-07, + "readme": 1.58e-07, + "realest": 1.58e-07, + "reallocate": 1.58e-07, + "reattached": 1.58e-07, + "recalculated": 1.58e-07, + "recrimination": 1.58e-07, + "rect": 1.58e-07, + "refering": 1.58e-07, + "refried": 1.58e-07, + "rehydrate": 1.58e-07, + "rejoinder": 1.58e-07, + "repairer": 1.58e-07, + "repays": 1.58e-07, + "reperfusion": 1.58e-07, + "reprobate": 1.58e-07, + "republication": 1.58e-07, + "resizing": 1.58e-07, + "restating": 1.58e-07, + "retching": 1.58e-07, + "riddim": 1.58e-07, + "riffle": 1.58e-07, + "rigoletto": 1.58e-07, + "rih": 1.58e-07, + "rijksmuseum": 1.58e-07, + "ringgit": 1.58e-07, + "riri": 1.58e-07, + "ritualized": 1.58e-07, + "rockstars": 5.62e-08, + "rosencrantz": 1.58e-07, + "roundups": 1.58e-07, + "ryong": 1.58e-07, + "sadhu": 1.58e-07, + "sadlers": 1.58e-07, + "sagrada": 1.58e-07, + "sahar": 1.58e-07, + "saida": 1.58e-07, + "saku": 1.58e-07, + "salahuddin": 1.58e-07, + "sall": 1.58e-07, + "sandhills": 1.58e-07, + "sandiego": 1.58e-07, + "sapien": 1.58e-07, + "sapna": 1.58e-07, + "sarees": 1.58e-07, + "sarri": 1.58e-07, + "sauntered": 1.58e-07, + "schein": 1.58e-07, + "schmaltz": 1.58e-07, + "scooted": 1.58e-07, + "scoville": 1.58e-07, + "scrums": 1.58e-07, + "seahorses": 1.58e-07, + "seca": 1.58e-07, + "seminarians": 1.58e-07, + "sennett": 1.58e-07, + "sentra": 1.58e-07, + "serbians": 1.58e-07, + "sextus": 1.58e-07, + "shabana": 1.58e-07, + "shamrocks": 1.58e-07, + "shant": 4.27e-08, + "shawcross": 1.58e-07, + "shepherdess": 1.58e-07, + "shg": 1.58e-07, + "shovelling": 1.58e-07, + "sidenote": 1.58e-07, + "siebert": 1.58e-07, + "silliman": 1.58e-07, + "silvestri": 1.58e-07, + "simones": 1.58e-07, + "simonsen": 1.58e-07, + "sisson": 1.58e-07, + "sista": 1.58e-07, + "sittingbourne": 1.58e-07, + "sitwell": 1.58e-07, + "sizzler": 1.58e-07, + "skal": 1.58e-07, + "slidell": 1.58e-07, + "slouchy": 1.58e-07, + "smallmouth": 1.58e-07, + "smirnov": 1.58e-07, + "smokestack": 1.58e-07, + "snubbing": 1.58e-07, + "sociale": 1.58e-07, + "solanum": 1.58e-07, + "solway": 1.58e-07, + "somoza": 1.58e-07, + "soothsayer": 1.58e-07, + "sops": 1.58e-07, + "spasticity": 1.58e-07, + "spearheads": 1.58e-07, + "specular": 1.58e-07, + "spfl": 1.58e-07, + "spironolactone": 1.58e-07, + "splm": 1.58e-07, + "spotlighted": 1.58e-07, + "spotlighting": 1.58e-07, + "squeegee": 1.58e-07, + "stanwyck": 1.58e-07, + "stealers": 1.58e-07, + "steeler": 1.58e-07, + "steinitz": 1.58e-07, + "stenberg": 1.58e-07, + "stengel": 1.58e-07, + "stopes": 1.58e-07, + "stoping": 1.58e-07, + "stour": 1.58e-07, + "stourbridge": 1.58e-07, + "strictness": 1.58e-07, + "stuxnet": 1.58e-07, + "sugarloaf": 1.58e-07, + "sukhoi": 1.58e-07, + "sulfite": 1.58e-07, + "sundaes": 1.58e-07, + "sunnier": 1.58e-07, + "superscript": 1.58e-07, + "suppressant": 1.58e-07, + "svm": 1.58e-07, + "svn": 1.58e-07, + "swales": 1.58e-07, + "swope": 1.58e-07, + "sycophant": 1.58e-07, + "taguchi": 1.58e-07, + "takao": 1.58e-07, + "tanna": 1.58e-07, + "tarde": 1.58e-07, + "tatarstan": 1.58e-07, + "tayo": 1.58e-07, + "teardown": 1.58e-07, + "techy": 1.58e-07, + "telecommuting": 1.58e-07, + "telephonic": 1.58e-07, + "telephoning": 1.58e-07, + "teleporter": 1.58e-07, + "telkom": 1.58e-07, + "tellingly": 1.58e-07, + "tempeh": 1.58e-07, + "tenby": 1.58e-07, + "tensors": 1.58e-07, + "tep": 1.58e-07, + "terahertz": 1.58e-07, + "terroir": 1.58e-07, + "tgi": 1.58e-07, + "thiessen": 1.58e-07, + "thresh": 1.58e-07, + "tika": 1.58e-07, + "timeframes": 1.58e-07, + "tinea": 1.58e-07, + "tirades": 1.58e-07, + "titicaca": 1.58e-07, + "tmg": 1.58e-07, + "toffees": 1.58e-07, + "tolo": 1.58e-07, + "topp": 1.58e-07, + "townie": 1.58e-07, + "toxoplasmosis": 1.58e-07, + "tradespeople": 1.58e-07, + "transboundary": 1.58e-07, + "transcranial": 1.58e-07, + "transpo": 1.58e-07, + "trd": 1.58e-07, + "treasurys": 1.58e-07, + "trickiest": 1.58e-07, + "tripper": 1.58e-07, + "trooping": 1.58e-07, + "truffaut": 1.58e-07, + "tubulin": 1.58e-07, + "tude": 1.58e-07, + "tuohy": 1.58e-07, + "tuscarora": 1.58e-07, + "tyner": 1.58e-07, + "uah": 1.58e-07, + "uhhhhh": 1.58e-07, + "uis": 1.58e-07, + "uncluttered": 1.58e-07, + "uncoated": 1.58e-07, + "underbrush": 1.58e-07, + "underestimation": 1.58e-07, + "uneaten": 1.58e-07, + "unhook": 1.58e-07, + "unjustifiably": 1.58e-07, + "unk": 1.58e-07, + "unravelled": 1.58e-07, + "unrighteous": 1.58e-07, + "unscented": 1.58e-07, + "upstarts": 1.58e-07, + "uptrend": 1.58e-07, + "urinalysis": 1.58e-07, + "usk": 1.58e-07, + "valerio": 1.58e-07, + "vandross": 1.58e-07, + "vasil": 1.58e-07, + "vaya": 1.58e-07, + "vec": 1.58e-07, + "veena": 1.58e-07, + "veronese": 1.58e-07, + "vidic": 1.58e-07, + "volatiles": 1.58e-07, + "vore": 1.58e-07, + "waker": 1.58e-07, + "waltzed": 1.58e-07, + "walz": 1.58e-07, + "warranting": 1.58e-07, + "waterslide": 1.58e-07, + "wbs": 6.17e-08, + "wein": 1.58e-07, + "werther": 1.58e-07, + "whiners": 1.58e-07, + "whitesides": 1.58e-07, + "wightman": 1.58e-07, + "winans": 1.58e-07, + "windus": 1.58e-07, + "wiretapped": 1.58e-07, + "withholds": 1.58e-07, + "wmv": 1.58e-07, + "woodblock": 1.58e-07, + "woodwards": 1.58e-07, + "wresting": 1.58e-07, + "writting": 1.58e-07, + "wts": 1.58e-07, + "wushu": 1.58e-07, + "wyckoff": 1.58e-07, + "xers": 1.58e-07, + "yag": 1.58e-07, + "yaks": 1.58e-07, + "yakubu": 1.58e-07, + "yedlin": 1.58e-07, + "yola": 1.58e-07, + "yorick": 1.58e-07, + "yoshio": 1.58e-07, + "yus": 6.31e-08, + "zambias": 1.58e-07, + "zaps": 1.58e-07, + "zeid": 1.58e-07, + "zoonotic": 1.58e-07, + "aalto": 1.55e-07, + "abella": 1.55e-07, + "abhorrence": 1.55e-07, + "ableism": 1.55e-07, + "abolishes": 1.55e-07, + "abracadabra": 1.55e-07, + "accelerations": 1.55e-07, + "accessorize": 1.55e-07, + "adulting": 1.55e-07, + "advantageously": 1.55e-07, + "aggregations": 1.55e-07, + "aguas": 1.55e-07, + "aik": 1.55e-07, + "akiyama": 1.55e-07, + "albertsons": 1.55e-07, + "alcoves": 1.55e-07, + "aldgate": 1.55e-07, + "alecs": 1.55e-07, + "alexandr": 1.55e-07, + "alighted": 1.55e-07, + "alpina": 1.55e-07, + "alshon": 1.55e-07, + "altidore": 1.55e-07, + "amida": 1.55e-07, + "ammi": 1.55e-07, + "analyser": 1.55e-07, + "anny": 1.55e-07, + "anodes": 1.55e-07, + "arabians": 1.55e-07, + "araneta": 1.55e-07, + "args": 1.55e-07, + "arkwright": 1.55e-07, + "asymmetrically": 1.55e-07, + "atkin": 1.55e-07, + "autoimmunity": 1.55e-07, + "axs": 1.55e-07, + "azo": 1.55e-07, + "babas": 1.55e-07, + "baber": 1.55e-07, + "babysat": 1.55e-07, + "badder": 1.55e-07, + "bairds": 1.55e-07, + "balaam": 1.55e-07, + "baling": 1.55e-07, + "balla": 1.55e-07, + "bamboos": 1.55e-07, + "bandanas": 1.55e-07, + "bannatyne": 1.55e-07, + "barite": 1.55e-07, + "barlows": 1.55e-07, + "baronial": 1.55e-07, + "barreto": 1.55e-07, + "bary": 1.55e-07, + "bcf": 1.55e-07, + "bdd": 1.55e-07, + "beakers": 1.55e-07, + "beasties": 1.55e-07, + "beauvais": 1.55e-07, + "bellucci": 1.55e-07, + "beneficent": 1.55e-07, + "benes": 1.55e-07, + "berbers": 1.55e-07, + "berisha": 1.55e-07, + "bernays": 1.55e-07, + "berns": 1.55e-07, + "besant": 1.55e-07, + "bialik": 1.55e-07, + "bickford": 1.55e-07, + "bielefeld": 1.55e-07, + "biffy": 1.55e-07, + "bila": 1.55e-07, + "bimini": 1.55e-07, + "blom": 1.55e-07, + "bloomsburg": 1.55e-07, + "bohun": 1.55e-07, + "bonin": 1.55e-07, + "bookable": 1.55e-07, + "boorman": 1.55e-07, + "bootleggers": 1.55e-07, + "borgo": 1.55e-07, + "bradlee": 1.55e-07, + "brannan": 1.55e-07, + "braunfels": 1.55e-07, + "breitling": 1.55e-07, + "bridgman": 1.55e-07, + "brigand": 1.55e-07, + "brion": 1.55e-07, + "bristly": 1.55e-07, + "broadleaf": 1.55e-07, + "brugge": 1.55e-07, + "bruns": 1.55e-07, + "brushy": 1.55e-07, + "bulaga": 1.55e-07, + "bullfight": 1.55e-07, + "burglarized": 1.55e-07, + "bursar": 1.55e-07, + "busk": 1.55e-07, + "bustier": 1.55e-07, + "bux": 1.55e-07, + "byob": 1.55e-07, + "byrds": 6.46e-08, + "caesium": 1.55e-07, + "cajole": 1.55e-07, + "cajoled": 1.55e-07, + "candela": 1.55e-07, + "capon": 1.55e-07, + "cardano": 1.55e-07, + "caribe": 1.55e-07, + "carmilla": 1.55e-07, + "carpaccio": 1.55e-07, + "carre": 1.55e-07, + "carvel": 1.55e-07, + "casale": 1.55e-07, + "cbre": 1.55e-07, + "cetacean": 1.55e-07, + "cezanne": 1.55e-07, + "cgl": 1.55e-07, + "champlin": 1.55e-07, + "chandos": 1.55e-07, + "chapbook": 1.55e-07, + "chapple": 1.55e-07, + "chatswood": 1.55e-07, + "chatterbox": 1.55e-07, + "chelan": 1.55e-07, + "chikungunya": 1.55e-07, + "chitosan": 1.55e-07, + "chromite": 1.55e-07, + "chuka": 1.55e-07, + "churlish": 1.55e-07, + "circumnavigation": 1.55e-07, + "clambering": 1.55e-07, + "clampdown": 1.55e-07, + "classs": 1.55e-07, + "cleburne": 1.55e-07, + "cmm": 1.55e-07, + "coady": 1.55e-07, + "coatbridge": 1.55e-07, + "coauthored": 1.55e-07, + "coddington": 1.55e-07, + "coexisted": 1.55e-07, + "coimbra": 1.55e-07, + "coir": 1.55e-07, + "colborne": 1.55e-07, + "collies": 1.55e-07, + "colloid": 1.55e-07, + "columella": 1.55e-07, + "comcasts": 1.55e-07, + "committeeman": 1.55e-07, + "compunction": 1.55e-07, + "comrie": 1.55e-07, + "confectionary": 1.55e-07, + "confounds": 1.55e-07, + "consol": 1.55e-07, + "contemporaneously": 1.55e-07, + "continuations": 1.55e-07, + "convulsive": 1.55e-07, + "corel": 1.55e-07, + "corelli": 1.55e-07, + "corina": 1.55e-07, + "coromandel": 1.55e-07, + "corre": 1.55e-07, + "corruptly": 1.55e-07, + "cosmodrome": 1.55e-07, + "cosmopolitanism": 1.55e-07, + "courgette": 1.55e-07, + "crestwood": 1.55e-07, + "crevasses": 1.55e-07, + "croaked": 1.55e-07, + "crosbie": 1.55e-07, + "crotty": 1.55e-07, + "cullinan": 1.55e-07, + "cultic": 1.55e-07, + "curcumin": 1.55e-07, + "cuticles": 1.55e-07, + "cwd": 1.55e-07, + "cyclically": 1.55e-07, + "cystitis": 1.55e-07, + "czechoslovakian": 1.55e-07, + "daimyo": 1.55e-07, + "daiwa": 1.55e-07, + "dake": 1.55e-07, + "dami": 1.55e-07, + "damocles": 1.55e-07, + "daniil": 1.55e-07, + "daschle": 1.55e-07, + "dbe": 1.55e-07, + "decelerating": 1.55e-07, + "decentralize": 1.55e-07, + "decima": 1.55e-07, + "decorates": 1.55e-07, + "defecating": 1.55e-07, + "degenerating": 1.55e-07, + "dementors": 1.55e-07, + "deplores": 1.55e-07, + "dewatering": 1.55e-07, + "dianes": 1.55e-07, + "diarist": 1.55e-07, + "digitisation": 1.55e-07, + "digne": 1.55e-07, + "dimitrios": 1.55e-07, + "directorates": 1.55e-07, + "disbelievers": 1.55e-07, + "discredits": 1.55e-07, + "dispensable": 1.55e-07, + "divinities": 1.55e-07, + "dmm": 1.55e-07, + "dockets": 1.55e-07, + "dodgson": 1.55e-07, + "dongfeng": 1.55e-07, + "dopant": 1.55e-07, + "doucet": 1.55e-07, + "doughboy": 1.55e-07, + "dramedy": 1.55e-07, + "dreamgirls": 1.55e-07, + "dreamscape": 1.55e-07, + "dropdown": 1.55e-07, + "drusilla": 1.55e-07, + "dtd": 1.55e-07, + "ducey": 1.55e-07, + "duisburg": 1.55e-07, + "dyfed": 1.55e-07, + "dysregulation": 1.55e-07, + "earthling": 1.55e-07, + "ede": 1.55e-07, + "eiko": 1.55e-07, + "ejections": 1.55e-07, + "elantra": 1.55e-07, + "elche": 1.55e-07, + "electrocardiogram": 1.55e-07, + "elgort": 1.55e-07, + "elwell": 1.55e-07, + "elysees": 1.55e-07, + "emb": 1.55e-07, + "embarcadero": 1.55e-07, + "embroider": 1.55e-07, + "emeryville": 1.55e-07, + "enchants": 1.55e-07, + "enjoin": 1.55e-07, + "enshrine": 1.55e-07, + "enunciated": 1.55e-07, + "envies": 1.55e-07, + "epigraph": 1.55e-07, + "epitope": 1.55e-07, + "eragon": 1.55e-07, + "erector": 1.55e-07, + "esco": 1.55e-07, + "essentialism": 1.55e-07, + "estero": 1.55e-07, + "estudios": 1.55e-07, + "euphemistically": 1.55e-07, + "evangelizing": 1.55e-07, + "eventualities": 1.55e-07, + "ews": 1.55e-07, + "exclamations": 1.55e-07, + "exigent": 1.55e-07, + "exim": 1.55e-07, + "expectantly": 1.55e-07, + "extractors": 1.55e-07, + "faas": 1.55e-07, + "faceplate": 1.55e-07, + "fahim": 1.55e-07, + "fanciest": 1.55e-07, + "farwell": 1.55e-07, + "faut": 1.55e-07, + "fgc": 1.55e-07, + "fiefs": 1.55e-07, + "figueres": 1.55e-07, + "fiori": 1.55e-07, + "fixin": 1.55e-07, + "flatware": 1.55e-07, + "florences": 1.55e-07, + "fluor": 1.55e-07, + "fluoxetine": 1.55e-07, + "footlights": 1.55e-07, + "forst": 1.55e-07, + "fortin": 1.55e-07, + "fpi": 1.55e-07, + "fredonia": 1.55e-07, + "freeride": 1.55e-07, + "freshened": 1.55e-07, + "frieden": 1.55e-07, + "froot": 1.55e-07, + "fsf": 1.55e-07, + "fso": 1.55e-07, + "functionalism": 1.55e-07, + "fwa": 1.55e-07, + "fws": 1.55e-07, + "gaborone": 1.55e-07, + "gaijin": 1.55e-07, + "gally": 1.55e-07, + "gamaliel": 1.55e-07, + "gameshow": 1.55e-07, + "gandhian": 1.55e-07, + "gandhiji": 1.55e-07, + "gangplank": 1.55e-07, + "garg": 1.55e-07, + "garo": 1.55e-07, + "garratt": 1.55e-07, + "gascon": 1.55e-07, + "gazpacho": 1.55e-07, + "geass": 1.55e-07, + "gell": 1.55e-07, + "gerards": 1.55e-07, + "gilder": 1.55e-07, + "gim": 1.55e-07, + "giudice": 1.55e-07, + "gleaner": 1.55e-07, + "glimmers": 1.55e-07, + "gni": 1.55e-07, + "gnrh": 1.55e-07, + "goofs": 1.55e-07, + "gothams": 1.55e-07, + "goulash": 1.55e-07, + "gozo": 1.55e-07, + "gracchus": 1.55e-07, + "grameen": 1.55e-07, + "grimaced": 1.55e-07, + "grom": 1.55e-07, + "guernica": 1.55e-07, + "gumby": 1.55e-07, + "gusta": 1.55e-07, + "habibi": 1.55e-07, + "hackles": 1.55e-07, + "haddington": 1.55e-07, + "hahaa": 1.55e-07, + "halleck": 1.55e-07, + "hallucinogen": 1.55e-07, + "hammel": 1.55e-07, + "handmaid": 1.55e-07, + "hannas": 1.55e-07, + "harbingers": 1.55e-07, + "hardstyle": 1.55e-07, + "haren": 1.55e-07, + "harken": 1.55e-07, + "harlingen": 1.55e-07, + "harmonium": 1.55e-07, + "hawt": 1.55e-07, + "hayato": 1.55e-07, + "hearin": 1.55e-07, + "hectors": 1.55e-07, + "hedrick": 1.55e-07, + "helensburgh": 1.55e-07, + "helge": 1.55e-07, + "helmsley": 1.55e-07, + "hemet": 1.55e-07, + "hendersonville": 1.55e-07, + "hermanos": 1.55e-07, + "hesitations": 1.55e-07, + "hiatt": 1.55e-07, + "hildreth": 1.55e-07, + "hiromi": 1.55e-07, + "hirsh": 1.55e-07, + "hoedown": 1.55e-07, + "hoge": 1.55e-07, + "homeboys": 1.55e-07, + "homesteaders": 1.55e-07, + "hoofs": 1.55e-07, + "hopwood": 1.55e-07, + "horney": 1.55e-07, + "hothead": 1.55e-07, + "huai": 1.55e-07, + "huffpo": 1.55e-07, + "humblest": 1.55e-07, + "huntsmen": 1.55e-07, + "husserl": 1.55e-07, + "hydrocortisone": 1.55e-07, + "ibi": 1.55e-07, + "icke": 1.55e-07, + "iic": 1.55e-07, + "iida": 1.55e-07, + "illmatic": 1.55e-07, + "immunosuppression": 1.55e-07, + "impermanent": 1.55e-07, + "impulsiveness": 1.55e-07, + "incommunicado": 1.55e-07, + "indic": 1.55e-07, + "indiscipline": 1.55e-07, + "industria": 1.55e-07, + "inflexibility": 1.55e-07, + "inflorescences": 1.55e-07, + "innervation": 1.55e-07, + "inpatients": 1.55e-07, + "inscribe": 1.55e-07, + "insead": 1.55e-07, + "insomuch": 1.55e-07, + "interchanged": 1.55e-07, + "internalised": 1.55e-07, + "intraoperative": 1.55e-07, + "invalids": 1.55e-07, + "ione": 1.55e-07, + "ishq": 1.55e-07, + "isk": 1.55e-07, + "ison": 1.55e-07, + "itasca": 1.55e-07, + "ity": 1.55e-07, + "jellicoe": 1.55e-07, + "jenifer": 1.55e-07, + "jerkin": 1.55e-07, + "jeux": 1.55e-07, + "jilin": 1.55e-07, + "jintao": 1.55e-07, + "jolting": 1.55e-07, + "jours": 1.55e-07, + "jovian": 1.55e-07, + "juggles": 1.55e-07, + "juns": 1.55e-07, + "junhui": 1.55e-07, + "junks": 1.55e-07, + "juvenal": 1.55e-07, + "kahneman": 1.55e-07, + "kalmar": 1.55e-07, + "kanta": 1.55e-07, + "kapp": 1.55e-07, + "kasem": 1.55e-07, + "kaunas": 1.55e-07, + "kedah": 1.55e-07, + "kelantan": 1.55e-07, + "keng": 1.55e-07, + "keough": 1.55e-07, + "kesh": 1.55e-07, + "khai": 1.55e-07, + "khoo": 1.55e-07, + "kimba": 1.55e-07, + "kinsley": 1.55e-07, + "kirti": 1.55e-07, + "kiryu": 1.55e-07, + "kitano": 1.55e-07, + "kiya": 1.55e-07, + "knifing": 1.55e-07, + "knorr": 1.55e-07, + "koya": 1.55e-07, + "kropotkin": 1.55e-07, + "krsna": 1.55e-07, + "kuba": 1.55e-07, + "kutch": 1.55e-07, + "lado": 1.55e-07, + "lahaina": 1.55e-07, + "laras": 1.55e-07, + "largs": 1.55e-07, + "laters": 1.55e-07, + "lebeau": 1.55e-07, + "leghorn": 1.55e-07, + "lehi": 1.55e-07, + "lengthens": 1.55e-07, + "letterkenny": 1.55e-07, + "levey": 1.55e-07, + "libreoffice": 1.55e-07, + "lieder": 1.55e-07, + "lightnings": 1.15e-07, + "liguria": 1.55e-07, + "lindisfarne": 1.55e-07, + "literals": 1.55e-07, + "lithuanias": 1.55e-07, + "lockbox": 1.55e-07, + "locomotor": 1.55e-07, + "loincloth": 1.55e-07, + "lomb": 1.55e-07, + "lonestar": 1.55e-07, + "looooong": 1.55e-07, + "lopped": 1.55e-07, + "louies": 1.55e-07, + "loverboy": 1.55e-07, + "lowbrow": 1.55e-07, + "lowenthal": 1.55e-07, + "luckless": 1.55e-07, + "lujan": 1.55e-07, + "lulus": 1.55e-07, + "macha": 1.55e-07, + "machel": 1.55e-07, + "macht": 1.55e-07, + "mackinaw": 1.55e-07, + "macmahon": 1.55e-07, + "madina": 1.55e-07, + "mafic": 1.55e-07, + "magisterium": 1.55e-07, + "magni": 1.55e-07, + "majin": 1.55e-07, + "makepeace": 1.55e-07, + "malika": 1.55e-07, + "mallards": 1.55e-07, + "malleability": 1.55e-07, + "malus": 1.55e-07, + "mamo": 1.55e-07, + "manaforts": 1.55e-07, + "mandingo": 1.55e-07, + "manfredi": 1.55e-07, + "marcell": 1.55e-07, + "marchesa": 1.55e-07, + "marginalisation": 1.55e-07, + "marionettes": 1.55e-07, + "mariska": 1.55e-07, + "marrone": 1.55e-07, + "martinezs": 1.55e-07, + "masquerades": 1.55e-07, + "massillon": 1.55e-07, + "matchstick": 1.55e-07, + "mbb": 1.55e-07, + "mcclung": 1.55e-07, + "mcentire": 1.55e-07, + "mdi": 1.55e-07, + "mediatek": 1.55e-07, + "meese": 1.55e-07, + "membranous": 1.55e-07, + "menses": 1.55e-07, + "mesenteric": 1.55e-07, + "mesoderm": 1.55e-07, + "miggy": 1.55e-07, + "milken": 1.55e-07, + "millwork": 1.55e-07, + "mimetic": 1.55e-07, + "minoru": 1.55e-07, + "mirabeau": 1.55e-07, + "misjudge": 1.55e-07, + "mnemonics": 1.55e-07, + "molde": 1.55e-07, + "moncrieff": 1.55e-07, + "mondeo": 1.55e-07, + "monets": 1.55e-07, + "monseigneur": 1.55e-07, + "mooning": 1.55e-07, + "moraines": 1.55e-07, + "msv": 1.55e-07, + "mudge": 1.55e-07, + "mullingar": 1.55e-07, + "munched": 1.55e-07, + "mundus": 1.55e-07, + "musgraves": 1.55e-07, + "mussolinis": 1.55e-07, + "myopathy": 1.55e-07, + "nampa": 1.55e-07, + "narrowness": 1.55e-07, + "nascimento": 1.55e-07, + "ncbi": 1.55e-07, + "nce": 1.55e-07, + "ndf": 1.55e-07, + "ndis": 1.55e-07, + "neatness": 1.55e-07, + "nena": 1.55e-07, + "neros": 1.55e-07, + "newberg": 1.55e-07, + "newegg": 1.55e-07, + "nicolae": 1.55e-07, + "nielsens": 1.55e-07, + "niemeyer": 1.55e-07, + "nihil": 1.55e-07, + "niigata": 1.55e-07, + "niobe": 1.55e-07, + "nirmala": 1.55e-07, + "nma": 1.55e-07, + "noels": 1.55e-07, + "noisier": 1.55e-07, + "normalising": 1.55e-07, + "nosh": 1.55e-07, + "novy": 1.55e-07, + "nras": 1.55e-07, + "nrm": 1.55e-07, + "nrp": 1.55e-07, + "nucky": 1.55e-07, + "nutley": 1.55e-07, + "oac": 1.55e-07, + "obelisks": 1.55e-07, + "obfuscated": 1.55e-07, + "oif": 1.55e-07, + "okayama": 1.55e-07, + "okoye": 1.55e-07, + "oleic": 1.55e-07, + "ols": 1.55e-07, + "omid": 1.55e-07, + "operand": 1.55e-07, + "oporto": 1.55e-07, + "opr": 1.55e-07, + "oscillatory": 1.55e-07, + "overbooked": 1.55e-07, + "overcompensate": 1.55e-07, + "paignton": 1.55e-07, + "panellist": 1.55e-07, + "papered": 1.55e-07, + "paracord": 1.55e-07, + "parang": 1.55e-07, + "pardee": 1.55e-07, + "paroles": 1.55e-07, + "participations": 1.55e-07, + "patagonian": 1.55e-07, + "patroness": 1.55e-07, + "pcf": 1.55e-07, + "peart": 1.55e-07, + "pedalling": 1.55e-07, + "peephole": 1.55e-07, + "pek": 1.55e-07, + "penalizes": 1.55e-07, + "peretz": 1.55e-07, + "petrova": 1.55e-07, + "petula": 1.55e-07, + "phospholipid": 1.55e-07, + "photogrammetry": 1.55e-07, + "pigtail": 1.55e-07, + "pimpin": 1.55e-07, + "pisco": 1.55e-07, + "piu": 1.55e-07, + "pleat": 1.55e-07, + "pmd": 1.55e-07, + "pns": 1.55e-07, + "pock": 1.55e-07, + "podcasters": 1.55e-07, + "podiatry": 1.55e-07, + "pokhara": 1.55e-07, + "policys": 1.55e-07, + "pollak": 1.55e-07, + "polytheistic": 1.55e-07, + "portes": 1.55e-07, + "postmodernist": 1.55e-07, + "potentiality": 1.55e-07, + "powerup": 1.55e-07, + "prato": 1.55e-07, + "presage": 1.55e-07, + "prinz": 1.55e-07, + "projectionist": 1.55e-07, + "projet": 1.55e-07, + "proscenium": 1.55e-07, + "pseudoephedrine": 1.55e-07, + "pukes": 1.55e-07, + "pulver": 1.55e-07, + "pursing": 1.55e-07, + "putrajaya": 1.55e-07, + "puzzlement": 1.55e-07, + "quien": 1.55e-07, + "quinones": 1.55e-07, + "quirke": 1.55e-07, + "ramzi": 1.55e-07, + "randell": 1.55e-07, + "ratchets": 1.55e-07, + "rathore": 1.55e-07, + "raver": 1.55e-07, + "ravings": 1.55e-07, + "recitative": 1.55e-07, + "reconstructs": 1.55e-07, + "rectus": 1.55e-07, + "reevaluated": 1.55e-07, + "refitting": 1.55e-07, + "reformat": 1.55e-07, + "rehabbing": 1.55e-07, + "rehashing": 1.55e-07, + "reichenbach": 1.55e-07, + "repents": 1.55e-07, + "repressor": 1.55e-07, + "repub": 1.55e-07, + "resorption": 1.55e-07, + "retested": 1.55e-07, + "retouch": 1.55e-07, + "retroviruses": 1.55e-07, + "revellers": 1.55e-07, + "righ": 1.55e-07, + "riverbanks": 1.55e-07, + "riya": 1.55e-07, + "romanticizing": 1.55e-07, + "rookery": 1.55e-07, + "roomate": 1.55e-07, + "rootstock": 1.55e-07, + "rostral": 1.55e-07, + "rotatable": 1.55e-07, + "rtw": 1.55e-07, + "ruta": 1.55e-07, + "rutile": 1.55e-07, + "ryota": 1.55e-07, + "saakashvili": 1.55e-07, + "sabr": 1.55e-07, + "sachi": 1.55e-07, + "sadhana": 1.55e-07, + "salesmanship": 1.55e-07, + "salish": 1.55e-07, + "samajwadi": 1.55e-07, + "samanthas": 1.55e-07, + "samia": 1.55e-07, + "samsons": 1.55e-07, + "sanctus": 1.55e-07, + "sandersons": 1.55e-07, + "sandton": 1.55e-07, + "sarmiento": 1.55e-07, + "scampering": 1.55e-07, + "schrute": 1.55e-07, + "scioto": 1.55e-07, + "scooting": 1.55e-07, + "scrounging": 1.55e-07, + "scv": 1.55e-07, + "sedalia": 1.55e-07, + "sedaris": 1.55e-07, + "sehwag": 1.55e-07, + "selva": 1.55e-07, + "senora": 1.55e-07, + "serio": 1.55e-07, + "servos": 1.55e-07, + "sewall": 1.55e-07, + "sexualization": 1.55e-07, + "sey": 1.55e-07, + "sfu": 1.55e-07, + "sgr": 1.55e-07, + "shallowness": 1.55e-07, + "sharecroppers": 1.55e-07, + "shayla": 1.55e-07, + "sheedy": 1.55e-07, + "sheffields": 1.55e-07, + "shikoku": 1.55e-07, + "shiller": 1.55e-07, + "shingo": 1.55e-07, + "shinier": 1.55e-07, + "shir": 1.55e-07, + "shittier": 1.55e-07, + "showgrounds": 1.55e-07, + "sidmouth": 1.55e-07, + "sightedness": 1.55e-07, + "signore": 1.55e-07, + "silberman": 1.55e-07, + "simla": 1.55e-07, + "sisal": 1.55e-07, + "slavish": 1.55e-07, + "sloshed": 1.55e-07, + "slowdowns": 1.55e-07, + "smee": 1.55e-07, + "snapback": 1.55e-07, + "snippy": 1.55e-07, + "soberly": 1.55e-07, + "socceroos": 1.55e-07, + "somersaults": 1.55e-07, + "sonali": 1.55e-07, + "sonnys": 1.55e-07, + "sood": 1.55e-07, + "spader": 1.55e-07, + "spitsbergen": 1.55e-07, + "splenda": 1.55e-07, + "sprayers": 1.55e-07, + "staci": 1.55e-07, + "stepchild": 1.55e-07, + "stodgy": 1.55e-07, + "strabane": 1.55e-07, + "stretford": 1.55e-07, + "subsidising": 1.55e-07, + "subsidizes": 1.55e-07, + "subtractive": 1.55e-07, + "suckin": 1.55e-07, + "sveta": 1.55e-07, + "swaddle": 1.55e-07, + "swathed": 1.55e-07, + "sweeting": 1.55e-07, + "swingman": 1.55e-07, + "sympathizes": 1.55e-07, + "syndicalist": 1.55e-07, + "tabriz": 1.55e-07, + "taels": 1.55e-07, + "tanglewood": 1.55e-07, + "tapeworms": 1.55e-07, + "targetted": 1.55e-07, + "tatty": 1.55e-07, + "tcas": 1.55e-07, + "teamster": 1.55e-07, + "technicals": 1.55e-07, + "tejada": 1.55e-07, + "televisa": 1.55e-07, + "tena": 1.55e-07, + "tenaciously": 1.55e-07, + "tengu": 1.55e-07, + "tenon": 1.55e-07, + "tewksbury": 1.55e-07, + "thacher": 1.55e-07, + "thame": 1.55e-07, + "thaws": 1.55e-07, + "thq": 1.55e-07, + "thrifting": 1.55e-07, + "tilde": 1.55e-07, + "timpani": 1.55e-07, + "toastmasters": 1.55e-07, + "touchscreens": 1.55e-07, + "townsends": 1.55e-07, + "tplf": 1.55e-07, + "tpr": 1.55e-07, + "tracksuits": 1.55e-07, + "transmute": 1.55e-07, + "tricycles": 1.55e-07, + "trou": 1.55e-07, + "trumans": 1.55e-07, + "trumpeted": 1.55e-07, + "trussed": 1.55e-07, + "tubercle": 1.55e-07, + "tuberous": 1.55e-07, + "turbot": 1.55e-07, + "tutt": 1.55e-07, + "twirled": 1.55e-07, + "twosome": 1.55e-07, + "ultrathin": 1.55e-07, + "unamerican": 1.55e-07, + "uncultivated": 1.55e-07, + "underachieving": 1.55e-07, + "underarms": 1.55e-07, + "underreported": 1.55e-07, + "undescribed": 1.55e-07, + "unfortunates": 1.55e-07, + "unfreeze": 1.55e-07, + "unfriended": 1.55e-07, + "unido": 1.55e-07, + "univariate": 1.55e-07, + "unsworth": 1.55e-07, + "upd": 1.55e-07, + "upr": 1.55e-07, + "utp": 1.55e-07, + "uvf": 1.55e-07, + "uwa": 1.55e-07, + "valar": 1.55e-07, + "valente": 1.55e-07, + "valla": 1.55e-07, + "valueless": 1.55e-07, + "vandalize": 1.55e-07, + "vanier": 1.55e-07, + "vasopressin": 1.55e-07, + "vegetated": 1.55e-07, + "vika": 1.55e-07, + "villette": 1.55e-07, + "vodkas": 1.55e-07, + "volterra": 1.55e-07, + "wabc": 1.55e-07, + "warmongers": 1.55e-07, + "wasa": 1.55e-07, + "watney": 1.55e-07, + "weiners": 5.37e-08, + "weinstock": 1.55e-07, + "welshpool": 1.55e-07, + "wendover": 1.55e-07, + "weyland": 1.55e-07, + "whiles": 1.55e-07, + "whitened": 1.55e-07, + "widodo": 1.55e-07, + "widowmaker": 1.55e-07, + "wildling": 1.55e-07, + "wolfowitz": 1.55e-07, + "wonderfull": 1.55e-07, + "woodshed": 1.55e-07, + "woodworkers": 1.55e-07, + "woonsocket": 1.55e-07, + "workmanlike": 1.55e-07, + "worthlessness": 1.55e-07, + "wotan": 1.55e-07, + "woy": 1.55e-07, + "wq": 1.55e-07, + "wyllie": 1.55e-07, + "xbl": 1.55e-07, + "yagami": 1.55e-07, + "youporn": 1.55e-07, + "yuichi": 1.55e-07, + "zambrano": 1.55e-07, + "zao": 1.55e-07, + "zapper": 1.55e-07, + "zarqawi": 1.55e-07, + "zea": 1.55e-07, + "zelaya": 1.55e-07, + "zerg": 1.55e-07, + "ziff": 1.55e-07, + "zijn": 1.55e-07, + "zink": 1.55e-07, + "zobrist": 1.55e-07, + "zouma": 1.55e-07, + "zverev": 1.55e-07, + "abdur": 1.51e-07, + "acceptors": 1.51e-07, + "acetaldehyde": 1.51e-07, + "actualized": 1.51e-07, + "adachi": 1.51e-07, + "adaptors": 1.51e-07, + "adjoined": 1.51e-07, + "agholor": 1.51e-07, + "ahca": 1.51e-07, + "ahistorical": 1.51e-07, + "aiello": 1.51e-07, + "aizawa": 1.51e-07, + "akihabara": 1.51e-07, + "alaina": 1.51e-07, + "alcide": 1.51e-07, + "alliterative": 1.51e-07, + "alll": 1.51e-07, + "alonsos": 1.51e-07, + "altamira": 1.51e-07, + "amityville": 1.51e-07, + "anaya": 1.51e-07, + "annemarie": 1.51e-07, + "anodyne": 1.51e-07, + "anthro": 1.51e-07, + "apologetically": 1.51e-07, + "appian": 1.51e-07, + "appy": 1.51e-07, + "arapaho": 1.51e-07, + "araujo": 1.51e-07, + "arcata": 1.51e-07, + "arica": 1.51e-07, + "armless": 1.51e-07, + "arra": 1.51e-07, + "artesia": 1.51e-07, + "arthroplasty": 1.51e-07, + "articulations": 1.51e-07, + "assignee": 1.51e-07, + "assis": 1.51e-07, + "astounds": 1.51e-07, + "atma": 1.51e-07, + "auxin": 1.51e-07, + "avb": 1.51e-07, + "avoca": 1.51e-07, + "baar": 1.51e-07, + "babadook": 1.51e-07, + "backspace": 1.51e-07, + "bacteriophage": 1.51e-07, + "baga": 1.51e-07, + "baie": 1.51e-07, + "baile": 1.51e-07, + "bakunin": 1.51e-07, + "balakrishnan": 1.51e-07, + "banditry": 1.51e-07, + "barbaro": 1.51e-07, + "bartz": 1.51e-07, + "bbt": 1.51e-07, + "bdnf": 1.51e-07, + "beamish": 1.51e-07, + "bearcat": 1.51e-07, + "beatbox": 1.51e-07, + "beatboxing": 1.51e-07, + "behooves": 1.51e-07, + "beiber": 1.51e-07, + "belford": 1.51e-07, + "benighted": 1.51e-07, + "bettors": 1.51e-07, + "bij": 1.51e-07, + "billeted": 1.51e-07, + "bivalve": 1.51e-07, + "blagojevich": 1.51e-07, + "blairite": 1.51e-07, + "blevins": 1.51e-07, + "bluebeard": 1.51e-07, + "bluejays": 1.51e-07, + "bluest": 1.51e-07, + "bnt": 1.51e-07, + "boatmen": 1.51e-07, + "boeuf": 1.51e-07, + "bohannon": 1.51e-07, + "bomberman": 1.51e-07, + "bottega": 1.51e-07, + "boxster": 1.51e-07, + "brawlers": 1.51e-07, + "braying": 1.51e-07, + "breakpoints": 1.51e-07, + "brewhouse": 1.51e-07, + "brigantine": 1.51e-07, + "brockway": 1.51e-07, + "brod": 1.51e-07, + "bromsgrove": 1.51e-07, + "bryon": 1.51e-07, + "bude": 1.51e-07, + "bugbear": 1.51e-07, + "bunton": 1.51e-07, + "burd": 1.51e-07, + "burdon": 1.51e-07, + "buttonhole": 1.51e-07, + "bvi": 1.51e-07, + "cadherin": 1.51e-07, + "caird": 1.51e-07, + "caking": 1.51e-07, + "caltex": 1.51e-07, + "caned": 1.51e-07, + "canova": 1.51e-07, + "canvassers": 1.51e-07, + "caramelised": 1.51e-07, + "carlene": 1.51e-07, + "carpentier": 1.51e-07, + "cartooning": 1.51e-07, + "casablancas": 1.51e-07, + "casca": 1.51e-07, + "casella": 1.51e-07, + "cauldrons": 1.51e-07, + "cerebrum": 1.51e-07, + "certifiable": 1.51e-07, + "ceu": 1.51e-07, + "chawla": 1.51e-07, + "cheapen": 1.51e-07, + "cheesed": 1.51e-07, + "chide": 1.51e-07, + "childishly": 1.51e-07, + "chillax": 1.51e-07, + "chinn": 1.51e-07, + "christof": 1.51e-07, + "chrom": 1.51e-07, + "churro": 1.51e-07, + "cinemax": 1.51e-07, + "cinna": 1.51e-07, + "citadels": 1.51e-07, + "classism": 1.51e-07, + "cleves": 1.51e-07, + "cliffords": 1.51e-07, + "clk": 1.51e-07, + "cloven": 1.51e-07, + "clownfish": 1.51e-07, + "cobbs": 1.51e-07, + "codons": 1.51e-07, + "coffer": 1.51e-07, + "collectivity": 1.51e-07, + "collyer": 1.51e-07, + "comandante": 1.51e-07, + "commissars": 1.51e-07, + "communally": 1.51e-07, + "condescendingly": 1.51e-07, + "confectioners": 5.13e-08, + "congealed": 1.51e-07, + "conran": 1.51e-07, + "contravening": 1.51e-07, + "contrive": 1.51e-07, + "coombe": 1.51e-07, + "copulate": 1.51e-07, + "cornfields": 1.51e-07, + "corsage": 1.51e-07, + "cosmetically": 1.51e-07, + "cosplays": 1.51e-07, + "costellos": 1.51e-07, + "counterexample": 1.51e-07, + "cpf": 1.51e-07, + "crated": 1.51e-07, + "creepily": 1.51e-07, + "croaking": 1.51e-07, + "croatians": 1.51e-07, + "cronus": 1.51e-07, + "cruciform": 1.51e-07, + "cruse": 1.51e-07, + "crutcher": 1.51e-07, + "cushings": 1.51e-07, + "cuthbertson": 1.51e-07, + "dadi": 1.51e-07, + "dahomey": 1.51e-07, + "daimon": 1.51e-07, + "daltrey": 1.51e-07, + "datasheet": 1.51e-07, + "dats": 7.94e-08, + "deadlifts": 1.51e-07, + "debenture": 1.51e-07, + "decadal": 1.51e-07, + "decamp": 1.51e-07, + "decoders": 1.51e-07, + "decommission": 1.51e-07, + "deedee": 1.51e-07, + "deeside": 1.51e-07, + "deformable": 1.51e-07, + "delaunay": 1.51e-07, + "delco": 1.51e-07, + "demagoguery": 1.51e-07, + "deni": 1.51e-07, + "depay": 1.51e-07, + "devan": 1.51e-07, + "develope": 1.51e-07, + "devendra": 1.51e-07, + "dfo": 1.51e-07, + "dhar": 1.51e-07, + "dhu": 1.51e-07, + "diatomaceous": 1.51e-07, + "dickensian": 1.51e-07, + "dini": 1.51e-07, + "dinkins": 1.51e-07, + "dippers": 1.51e-07, + "discolor": 1.51e-07, + "discontents": 1.51e-07, + "disdained": 1.51e-07, + "disproves": 1.51e-07, + "dissections": 1.51e-07, + "dmi": 1.51e-07, + "dobrev": 1.51e-07, + "dohc": 1.51e-07, + "doit": 1.51e-07, + "dollies": 1.51e-07, + "dorota": 1.51e-07, + "doulton": 1.51e-07, + "downtrend": 1.51e-07, + "dres": 8.51e-08, + "drl": 1.51e-07, + "drools": 1.51e-07, + "drubbing": 1.51e-07, + "duchies": 1.51e-07, + "dumbstruck": 1.51e-07, + "dumper": 1.51e-07, + "dupre": 1.51e-07, + "dut": 1.51e-07, + "earwax": 1.51e-07, + "eastham": 1.51e-07, + "ebr": 1.51e-07, + "ecce": 1.51e-07, + "eclair": 1.51e-07, + "egr": 1.51e-07, + "ehrenberg": 1.51e-07, + "eightfold": 1.51e-07, + "elden": 1.51e-07, + "emanation": 1.51e-07, + "embarrassments": 1.51e-07, + "embryogenesis": 1.51e-07, + "emm": 1.51e-07, + "encumbrance": 1.51e-07, + "energise": 1.51e-07, + "engelmann": 1.51e-07, + "ensuite": 1.51e-07, + "ente": 1.51e-07, + "epically": 1.51e-07, + "equalisation": 1.51e-07, + "erlangen": 1.51e-07, + "esri": 1.51e-07, + "esthetics": 1.51e-07, + "etruscans": 1.51e-07, + "euphonium": 1.51e-07, + "evangelista": 1.51e-07, + "existences": 1.51e-07, + "fatma": 1.51e-07, + "fawns": 1.51e-07, + "fbc": 1.51e-07, + "felted": 1.51e-07, + "fenchurch": 1.51e-07, + "ferdinando": 1.51e-07, + "fived": 1.51e-07, + "flournoy": 1.51e-07, + "flouted": 1.51e-07, + "forklifts": 1.51e-07, + "fowls": 1.51e-07, + "freightliner": 1.51e-07, + "freinds": 1.51e-07, + "frg": 1.51e-07, + "frisked": 1.51e-07, + "fsg": 1.51e-07, + "fudged": 1.51e-07, + "func": 1.51e-07, + "gaffigan": 1.51e-07, + "gallacher": 1.51e-07, + "gangly": 1.51e-07, + "garrix": 1.51e-07, + "gavan": 1.51e-07, + "gcu": 1.51e-07, + "genentech": 1.51e-07, + "gerri": 1.51e-07, + "gertrud": 1.51e-07, + "geum": 1.51e-07, + "gfx": 1.51e-07, + "gianfranco": 1.51e-07, + "gigawatts": 1.51e-07, + "gilani": 1.51e-07, + "girling": 1.51e-07, + "gladiolus": 1.51e-07, + "gleaning": 1.51e-07, + "glovers": 5.62e-08, + "gnd": 1.51e-07, + "godley": 1.51e-07, + "gogglebox": 1.51e-07, + "gonorrhoea": 1.51e-07, + "goren": 1.51e-07, + "gotze": 1.51e-07, + "grabby": 1.51e-07, + "grandee": 1.51e-07, + "grassi": 1.51e-07, + "grete": 1.51e-07, + "gridley": 1.51e-07, + "grm": 1.51e-07, + "groening": 1.51e-07, + "gue": 1.51e-07, + "guerlain": 1.51e-07, + "gunfights": 1.51e-07, + "gurdwara": 1.51e-07, + "guruji": 1.51e-07, + "gwadar": 1.51e-07, + "hairpins": 1.51e-07, + "harewood": 1.51e-07, + "harlots": 1.51e-07, + "harrold": 1.51e-07, + "haruna": 1.51e-07, + "hashemi": 1.51e-07, + "hassans": 1.51e-07, + "hathor": 1.51e-07, + "hati": 1.51e-07, + "haugen": 1.51e-07, + "hemorrhages": 1.51e-07, + "henryk": 1.51e-07, + "herculaneum": 1.51e-07, + "heritages": 1.51e-07, + "hermeneutic": 1.51e-07, + "hideyoshi": 1.51e-07, + "highpoint": 1.51e-07, + "hijacks": 1.51e-07, + "hinman": 1.51e-07, + "hirano": 1.51e-07, + "hitchhike": 1.51e-07, + "hoddle": 1.51e-07, + "hoffer": 1.51e-07, + "hollinger": 1.51e-07, + "holodomor": 1.51e-07, + "homotopy": 1.51e-07, + "hoovering": 1.51e-07, + "hopin": 1.51e-07, + "hormuz": 1.51e-07, + "hosking": 1.51e-07, + "hotcakes": 1.51e-07, + "houma": 1.51e-07, + "hspa": 1.51e-07, + "htp": 1.51e-07, + "huggers": 1.51e-07, + "humph": 1.51e-07, + "hyslop": 1.51e-07, + "iarc": 1.51e-07, + "icbc": 1.51e-07, + "igniter": 1.51e-07, + "improbability": 1.51e-07, + "imtiaz": 1.51e-07, + "inactivate": 1.51e-07, + "indecisiveness": 1.51e-07, + "indwelling": 1.51e-07, + "ingame": 1.51e-07, + "initiations": 1.51e-07, + "inj": 1.51e-07, + "inspo": 1.51e-07, + "instagrams": 1.26e-07, + "intercooler": 1.51e-07, + "intercostal": 1.51e-07, + "interjections": 1.51e-07, + "interscholastic": 1.51e-07, + "intestate": 1.51e-07, + "intravascular": 1.51e-07, + "intron": 1.51e-07, + "iquitos": 1.51e-07, + "ird": 1.51e-07, + "iteratively": 1.51e-07, + "jacobites": 1.51e-07, + "jacquelyn": 1.51e-07, + "jaspers": 1.12e-07, + "jerker": 1.51e-07, + "jernigan": 1.51e-07, + "jetlag": 1.51e-07, + "jewelery": 1.51e-07, + "jingoism": 1.51e-07, + "jingoistic": 1.51e-07, + "junge": 1.51e-07, + "kagome": 1.51e-07, + "kahuna": 1.51e-07, + "kairos": 1.51e-07, + "kasai": 1.51e-07, + "kaushal": 1.51e-07, + "kazakhs": 1.51e-07, + "kazi": 1.51e-07, + "kbc": 1.51e-07, + "keenness": 1.51e-07, + "kennet": 1.51e-07, + "kennewick": 1.51e-07, + "khattab": 1.51e-07, + "kimonos": 1.51e-07, + "kingsville": 1.51e-07, + "kirito": 1.51e-07, + "klonopin": 1.51e-07, + "klopps": 1.51e-07, + "knucklehead": 1.51e-07, + "koma": 1.51e-07, + "korda": 1.51e-07, + "korps": 1.51e-07, + "kossuth": 1.51e-07, + "kranz": 1.51e-07, + "kravis": 1.51e-07, + "kura": 1.51e-07, + "kuzma": 1.51e-07, + "lancia": 1.51e-07, + "landward": 1.51e-07, + "lansky": 1.51e-07, + "laparoscopy": 1.51e-07, + "lasker": 1.51e-07, + "lawford": 1.51e-07, + "leveon": 1.51e-07, + "lede": 1.51e-07, + "ledoux": 1.51e-07, + "leftward": 1.51e-07, + "legalising": 1.51e-07, + "legionnaire": 1.51e-07, + "leishmaniasis": 1.51e-07, + "lennard": 1.51e-07, + "leonardos": 1.51e-07, + "leotards": 1.51e-07, + "lepore": 1.51e-07, + "leur": 1.51e-07, + "levesque": 1.51e-07, + "lief": 1.51e-07, + "liggett": 1.51e-07, + "lindemann": 1.51e-07, + "linguine": 1.51e-07, + "liquefy": 1.51e-07, + "lmaoooo": 1.51e-07, + "localizing": 1.51e-07, + "loic": 1.51e-07, + "lookbook": 1.51e-07, + "loompa": 1.51e-07, + "loona": 1.51e-07, + "lovelorn": 1.51e-07, + "lucks": 8.71e-08, + "lumbered": 1.51e-07, + "lydias": 1.51e-07, + "macbooks": 1.51e-07, + "mackenzies": 1.51e-07, + "maharishi": 1.51e-07, + "majeed": 1.51e-07, + "makarova": 1.51e-07, + "malena": 1.51e-07, + "malvinas": 1.51e-07, + "mamiya": 1.51e-07, + "manion": 1.51e-07, + "markie": 1.51e-07, + "mcgurk": 1.51e-07, + "mcleish": 1.51e-07, + "mco": 1.51e-07, + "mechatronics": 1.51e-07, + "medullary": 1.51e-07, + "melds": 1.51e-07, + "mendicant": 1.51e-07, + "mendota": 1.51e-07, + "merengue": 1.51e-07, + "microenvironment": 1.51e-07, + "microglia": 1.51e-07, + "milepost": 1.51e-07, + "milliliters": 1.51e-07, + "minori": 1.51e-07, + "miscarry": 1.51e-07, + "mischievously": 1.51e-07, + "misperceptions": 1.51e-07, + "misrata": 1.51e-07, + "molitor": 1.51e-07, + "monetarily": 1.51e-07, + "moneylenders": 1.51e-07, + "mongrels": 1.51e-07, + "monopolizing": 1.51e-07, + "mooresville": 1.51e-07, + "moralist": 1.51e-07, + "morneau": 1.51e-07, + "mosey": 1.51e-07, + "mousa": 1.51e-07, + "mowat": 1.51e-07, + "moxon": 1.51e-07, + "mrf": 1.51e-07, + "msh": 1.51e-07, + "muffs": 1.51e-07, + "mugabes": 1.51e-07, + "mugen": 1.51e-07, + "mulk": 1.51e-07, + "multistage": 1.51e-07, + "murica": 1.51e-07, + "mutch": 1.51e-07, + "myocardium": 1.51e-07, + "nakayama": 1.51e-07, + "nanites": 1.51e-07, + "nanoseconds": 1.51e-07, + "nargis": 1.51e-07, + "naso": 1.51e-07, + "navarra": 1.51e-07, + "nazim": 1.51e-07, + "netgear": 1.51e-07, + "netter": 1.51e-07, + "neurobiological": 1.51e-07, + "neutrally": 1.51e-07, + "newsagent": 1.51e-07, + "ninh": 1.51e-07, + "nonbelievers": 1.51e-07, + "noncommittal": 1.51e-07, + "nordics": 1.51e-07, + "northbridge": 1.51e-07, + "nove": 1.51e-07, + "nsdap": 1.51e-07, + "nyman": 1.51e-07, + "offerman": 1.51e-07, + "ofthis": 1.51e-07, + "oho": 1.51e-07, + "oilman": 1.51e-07, + "okita": 1.51e-07, + "oleander": 1.51e-07, + "oligarchic": 1.51e-07, + "omnivores": 1.51e-07, + "oncogenic": 1.51e-07, + "operant": 1.51e-07, + "ornithologists": 1.51e-07, + "osasuna": 1.51e-07, + "oshima": 1.51e-07, + "osho": 1.51e-07, + "ouest": 1.51e-07, + "overcook": 1.51e-07, + "overdid": 1.51e-07, + "overdramatic": 1.51e-07, + "overdressed": 1.51e-07, + "overthrows": 1.51e-07, + "pae": 1.51e-07, + "palantir": 1.51e-07, + "palaver": 1.51e-07, + "paling": 1.51e-07, + "panamas": 1.51e-07, + "parallelogram": 1.51e-07, + "parroting": 1.51e-07, + "parsimonious": 1.51e-07, + "participative": 1.51e-07, + "partridges": 1.51e-07, + "pasolini": 1.51e-07, + "pathe": 1.51e-07, + "pco": 1.51e-07, + "pdas": 1.51e-07, + "peavy": 1.51e-07, + "penman": 1.51e-07, + "perchlorate": 1.51e-07, + "perihelion": 1.51e-07, + "peripherally": 1.51e-07, + "perrault": 1.51e-07, + "personalisation": 1.51e-07, + "petre": 1.51e-07, + "phalanges": 1.51e-07, + "photometry": 1.51e-07, + "phrenology": 1.51e-07, + "phrygian": 1.51e-07, + "picea": 1.51e-07, + "pietermaritzburg": 1.51e-07, + "pinal": 1.51e-07, + "pirouette": 1.51e-07, + "pissarro": 1.51e-07, + "piz": 1.51e-07, + "pkc": 1.51e-07, + "plater": 1.51e-07, + "pleasingly": 1.51e-07, + "plt": 1.51e-07, + "plutos": 1.51e-07, + "poconos": 1.51e-07, + "polisher": 1.51e-07, + "polska": 1.51e-07, + "polymath": 1.51e-07, + "pontifex": 1.51e-07, + "porterfield": 1.51e-07, + "poultice": 1.51e-07, + "prattle": 1.51e-07, + "propublica": 1.51e-07, + "psyches": 1.51e-07, + "puccinis": 1.51e-07, + "puk": 1.51e-07, + "purine": 1.51e-07, + "putters": 1.51e-07, + "puy": 1.51e-07, + "pwa": 1.51e-07, + "quizzical": 1.51e-07, + "qutb": 1.51e-07, + "railcars": 1.51e-07, + "rainstorms": 1.51e-07, + "ramachandran": 1.51e-07, + "rappelling": 1.51e-07, + "rationalizations": 1.51e-07, + "rbf": 1.51e-07, + "readymade": 1.51e-07, + "reappointment": 1.51e-07, + "recordkeeping": 1.51e-07, + "rectitude": 1.51e-07, + "redeveloping": 1.51e-07, + "reeducation": 1.51e-07, + "regex": 1.51e-07, + "reginas": 1.51e-07, + "rell": 1.51e-07, + "remunerated": 1.51e-07, + "renegotiating": 1.51e-07, + "renny": 1.51e-07, + "reorient": 1.51e-07, + "repl": 1.51e-07, + "replicant": 1.51e-07, + "resemblances": 1.51e-07, + "retaliates": 1.51e-07, + "retractor": 1.51e-07, + "revivalist": 1.51e-07, + "reynaldo": 1.51e-07, + "ribera": 1.51e-07, + "ribose": 1.51e-07, + "ried": 1.51e-07, + "rigours": 1.51e-07, + "ringgold": 1.51e-07, + "rishikesh": 1.51e-07, + "rnr": 1.51e-07, + "roane": 1.51e-07, + "rodrick": 1.51e-07, + "roop": 1.51e-07, + "rosalia": 1.51e-07, + "rosamond": 1.51e-07, + "rosecrans": 1.51e-07, + "roselle": 1.51e-07, + "roundness": 1.51e-07, + "rous": 1.51e-07, + "rowman": 1.51e-07, + "rtv": 1.51e-07, + "rubidium": 1.51e-07, + "ruk": 1.51e-07, + "rukia": 1.51e-07, + "runneth": 1.51e-07, + "sabu": 1.51e-07, + "sainted": 1.51e-07, + "salvini": 1.51e-07, + "sandhill": 1.51e-07, + "sandwell": 1.51e-07, + "scada": 1.51e-07, + "schemed": 1.51e-07, + "scherzo": 1.51e-07, + "schooldays": 1.51e-07, + "scleroderma": 1.51e-07, + "scottsboro": 1.51e-07, + "scuderia": 1.51e-07, + "scullery": 1.51e-07, + "seethe": 1.51e-07, + "segregationist": 1.51e-07, + "sews": 1.51e-07, + "shal": 1.51e-07, + "shara": 1.51e-07, + "sheahan": 1.51e-07, + "shiatsu": 1.51e-07, + "shue": 1.51e-07, + "sibs": 1.51e-07, + "sieur": 1.51e-07, + "sigs": 1.51e-07, + "silesian": 1.51e-07, + "silicates": 1.51e-07, + "siltstone": 1.51e-07, + "sipp": 1.51e-07, + "skrtel": 1.51e-07, + "slants": 1.51e-07, + "slavishly": 1.51e-07, + "sld": 1.51e-07, + "sleepwalker": 1.51e-07, + "sleuths": 1.51e-07, + "slobbering": 1.51e-07, + "slu": 1.51e-07, + "smallness": 1.51e-07, + "smf": 1.51e-07, + "soaker": 1.51e-07, + "socom": 1.51e-07, + "solarcity": 1.51e-07, + "solidification": 1.51e-07, + "somatosensory": 1.51e-07, + "soooooooo": 1.51e-07, + "sota": 1.51e-07, + "southpark": 1.51e-07, + "spadina": 1.51e-07, + "spicing": 1.51e-07, + "splices": 1.51e-07, + "splurged": 1.51e-07, + "sportsbook": 1.51e-07, + "spurting": 1.51e-07, + "squalls": 1.51e-07, + "stably": 1.51e-07, + "stammered": 1.51e-07, + "stampeders": 1.51e-07, + "stander": 1.51e-07, + "stantons": 1.51e-07, + "stealin": 1.51e-07, + "stirlingshire": 1.51e-07, + "stitcher": 1.51e-07, + "stoopid": 1.51e-07, + "storehouses": 1.51e-07, + "stormer": 1.51e-07, + "stoudemire": 1.51e-07, + "strayer": 1.51e-07, + "stromboli": 1.51e-07, + "stroudsburg": 1.51e-07, + "stx": 1.51e-07, + "sundress": 1.51e-07, + "superglue": 1.51e-07, + "surer": 1.51e-07, + "sze": 1.51e-07, + "tallmadge": 1.51e-07, + "tamarack": 1.51e-07, + "tanka": 1.51e-07, + "tant": 1.51e-07, + "tapings": 1.51e-07, + "targetting": 1.51e-07, + "tattersall": 1.51e-07, + "tavon": 1.51e-07, + "tazewell": 1.51e-07, + "tdr": 1.51e-07, + "teapots": 1.51e-07, + "telenor": 1.51e-07, + "temasek": 1.51e-07, + "tensing": 1.51e-07, + "tethers": 1.51e-07, + "tgif": 1.51e-07, + "thameslink": 1.51e-07, + "thb": 1.51e-07, + "thereve": 1.51e-07, + "thiele": 1.51e-07, + "thirsk": 1.51e-07, + "thiss": 1.51e-07, + "thrushes": 1.51e-07, + "thst": 1.51e-07, + "thunderball": 1.51e-07, + "tiburon": 1.51e-07, + "tiddies": 1.51e-07, + "tilson": 1.51e-07, + "tlr": 1.51e-07, + "todas": 1.51e-07, + "tollywood": 1.51e-07, + "tomic": 1.51e-07, + "tomy": 1.51e-07, + "tonally": 1.51e-07, + "topham": 1.51e-07, + "topsail": 1.51e-07, + "tortorella": 1.51e-07, + "tothe": 1.51e-07, + "traipsing": 1.51e-07, + "tranches": 1.51e-07, + "transexual": 1.51e-07, + "transworld": 1.51e-07, + "treeless": 1.51e-07, + "tripwire": 1.51e-07, + "trow": 1.51e-07, + "trubisky": 1.51e-07, + "trypsin": 1.51e-07, + "turnbulls": 1.51e-07, + "tutsis": 1.51e-07, + "udf": 1.51e-07, + "ughh": 1.51e-07, + "uhl": 1.51e-07, + "ulceration": 1.51e-07, + "umpqua": 1.51e-07, + "underclassmen": 1.51e-07, + "unexciting": 1.51e-07, + "unhooked": 1.51e-07, + "unlovable": 1.51e-07, + "unquote": 1.51e-07, + "untalented": 1.51e-07, + "untangling": 1.51e-07, + "unwelcoming": 1.51e-07, + "uthman": 1.51e-07, + "uzbeks": 1.51e-07, + "valk": 1.51e-07, + "vande": 1.51e-07, + "vang": 1.51e-07, + "velveteen": 1.51e-07, + "verano": 1.51e-07, + "verisimilitude": 1.51e-07, + "vetch": 1.51e-07, + "victoire": 1.51e-07, + "vikes": 1.51e-07, + "virion": 1.51e-07, + "vlogging": 1.51e-07, + "vonn": 1.51e-07, + "vvv": 1.51e-07, + "wael": 1.51e-07, + "walruses": 1.51e-07, + "waterless": 1.51e-07, + "waylaid": 1.51e-07, + "weal": 1.51e-07, + "webkit": 1.51e-07, + "wedderburn": 1.51e-07, + "wegner": 1.51e-07, + "weidenfeld": 1.51e-07, + "weiler": 1.51e-07, + "whaddya": 1.51e-07, + "wheatland": 1.51e-07, + "whiteboards": 1.51e-07, + "whitson": 1.51e-07, + "wittman": 1.51e-07, + "wolverton": 1.51e-07, + "woodworker": 1.51e-07, + "wooh": 1.51e-07, + "wooley": 1.51e-07, + "worshiper": 1.51e-07, + "woul": 1.51e-07, + "xhtml": 1.51e-07, + "yayoi": 1.51e-07, + "ygritte": 1.51e-07, + "yos": 9.12e-08, + "yukiko": 1.51e-07, + "yulin": 1.51e-07, + "zebulon": 1.51e-07, + "zeolite": 1.51e-07, + "zep": 1.51e-07, + "zk": 1.51e-07, + "zoidberg": 1.51e-07, + "zt": 1.51e-07, + "abcnews": 1.48e-07, + "abhay": 1.48e-07, + "absa": 1.48e-07, + "absolving": 1.48e-07, + "accessions": 1.48e-07, + "ackley": 1.48e-07, + "acquisitive": 1.48e-07, + "adamantium": 1.48e-07, + "adoptable": 1.48e-07, + "adware": 1.48e-07, + "aerie": 1.48e-07, + "aerobatic": 1.48e-07, + "afg": 1.48e-07, + "ahmeds": 1.48e-07, + "aiadmk": 1.48e-07, + "alcan": 1.48e-07, + "alco": 1.48e-07, + "aldeburgh": 1.48e-07, + "aleck": 1.48e-07, + "alessi": 1.48e-07, + "algebraically": 1.48e-07, + "alj": 1.48e-07, + "alouettes": 1.48e-07, + "alys": 1.48e-07, + "amaretto": 1.48e-07, + "amberley": 1.48e-07, + "americanization": 1.48e-07, + "amerindian": 1.48e-07, + "ameritrade": 1.48e-07, + "amrit": 1.48e-07, + "anabaptists": 1.48e-07, + "anarkali": 1.48e-07, + "aneurism": 1.48e-07, + "angeli": 1.48e-07, + "angularjs": 1.48e-07, + "animas": 1.48e-07, + "anklets": 1.48e-07, + "annihilator": 1.48e-07, + "antar": 1.48e-07, + "anticoagulation": 1.48e-07, + "anythin": 1.48e-07, + "anzio": 1.48e-07, + "apha": 1.48e-07, + "apostolate": 1.48e-07, + "arequipa": 1.48e-07, + "arfa": 1.48e-07, + "arguement": 1.48e-07, + "armorial": 1.48e-07, + "arounds": 1.48e-07, + "arsen": 1.48e-07, + "arwen": 1.48e-07, + "asce": 1.48e-07, + "asgardian": 1.48e-07, + "astrakhan": 1.48e-07, + "atlee": 1.48e-07, + "aubin": 1.48e-07, + "aul": 1.48e-07, + "automatons": 1.48e-07, + "bnai": 1.48e-07, + "babak": 1.48e-07, + "backdated": 1.48e-07, + "backfill": 1.48e-07, + "badi": 1.48e-07, + "ballrooms": 1.48e-07, + "ballston": 1.48e-07, + "bankrupting": 1.48e-07, + "banton": 1.48e-07, + "barkin": 1.48e-07, + "barras": 1.48e-08, + "barroom": 1.48e-07, + "bayh": 1.48e-07, + "baylors": 1.48e-07, + "bda": 1.48e-07, + "beatport": 1.48e-07, + "beaucoup": 1.48e-07, + "bedbug": 1.48e-07, + "behan": 1.48e-07, + "bellamys": 1.48e-07, + "bercow": 1.48e-07, + "bethan": 1.48e-07, + "bhagwan": 1.48e-07, + "biafran": 1.48e-07, + "bicolor": 1.48e-07, + "bie": 1.48e-07, + "bilson": 1.48e-07, + "biosafety": 1.48e-07, + "bitchs": 1.48e-07, + "biters": 1.48e-07, + "blackthorn": 1.48e-07, + "blanketing": 1.48e-07, + "blotchy": 1.48e-07, + "bobbins": 1.48e-07, + "boneyard": 1.48e-07, + "boog": 1.48e-07, + "boondoggle": 1.48e-07, + "boosh": 1.48e-07, + "bosnians": 1.48e-07, + "bostonian": 1.48e-07, + "bostwick": 1.48e-07, + "boulanger": 1.48e-07, + "bph": 1.48e-07, + "bramwell": 1.48e-07, + "briand": 1.48e-07, + "brickman": 1.48e-07, + "briers": 1.48e-07, + "brodys": 1.48e-07, + "bromberg": 1.48e-07, + "btb": 1.48e-07, + "bucko": 1.48e-07, + "budged": 1.48e-07, + "buffoonery": 1.48e-07, + "bulgari": 1.48e-07, + "buncombe": 1.48e-07, + "bunge": 1.48e-07, + "burbage": 1.48e-07, + "bureaux": 1.48e-07, + "burghs": 1.48e-07, + "bussiness": 1.48e-07, + "cadman": 1.48e-07, + "calloused": 1.48e-07, + "cambogia": 1.48e-07, + "camilleri": 1.48e-07, + "canavan": 1.48e-07, + "canoga": 1.48e-07, + "captivates": 1.48e-07, + "carberry": 1.48e-07, + "carboxyl": 1.48e-07, + "carex": 1.48e-07, + "carnaby": 1.48e-07, + "carnelian": 1.48e-07, + "catenin": 1.48e-07, + "cayce": 1.48e-07, + "cayley": 1.48e-07, + "cellos": 1.48e-07, + "celso": 1.48e-07, + "centroid": 1.48e-07, + "cerium": 1.48e-07, + "chak": 1.48e-07, + "charlevoix": 1.48e-07, + "chaves": 1.48e-07, + "chekhovs": 1.48e-07, + "chelation": 1.48e-07, + "chemise": 1.48e-07, + "chiarelli": 1.48e-07, + "chiellini": 1.48e-07, + "chimie": 1.48e-07, + "choreographing": 1.48e-07, + "christabel": 1.48e-07, + "chur": 1.48e-07, + "cilicia": 1.48e-07, + "cineplex": 1.48e-07, + "cinq": 1.48e-07, + "cityscapes": 1.48e-07, + "clarisse": 1.48e-07, + "classicist": 1.48e-07, + "clattered": 1.48e-07, + "clausewitz": 1.48e-07, + "cleef": 1.48e-07, + "cliffside": 1.48e-07, + "cogeneration": 1.48e-07, + "colchicine": 1.48e-07, + "colorways": 1.48e-07, + "colouration": 1.48e-07, + "combinator": 1.48e-07, + "communing": 1.48e-07, + "concocting": 1.48e-07, + "concordat": 1.48e-07, + "concussive": 1.48e-07, + "confluent": 1.48e-07, + "coniston": 1.48e-07, + "contin": 1.48e-07, + "coppice": 1.48e-07, + "copyist": 1.48e-07, + "coreys": 1.48e-07, + "cornette": 1.48e-07, + "corpo": 1.48e-07, + "corsairs": 1.48e-07, + "cortege": 1.48e-07, + "corys": 1.48e-07, + "cosh": 1.48e-07, + "counteracted": 1.48e-07, + "covariant": 1.48e-07, + "coverdale": 1.48e-07, + "crackled": 1.48e-07, + "craftspeople": 1.48e-07, + "cranbourne": 1.48e-07, + "creo": 1.48e-07, + "crisco": 1.48e-07, + "criterium": 1.48e-07, + "crue": 1.48e-07, + "crystallizes": 1.48e-07, + "custis": 1.48e-07, + "cyanogen": 1.48e-07, + "danza": 1.48e-07, + "darr": 1.48e-07, + "dawe": 1.48e-07, + "daye": 1.48e-07, + "dbd": 1.48e-07, + "debbies": 1.48e-07, + "decisiveness": 1.48e-07, + "defaulters": 1.48e-07, + "defensor": 1.48e-07, + "defibrillators": 1.48e-07, + "deleon": 1.48e-07, + "deliriously": 1.48e-07, + "demeaned": 1.48e-07, + "demoralised": 1.48e-07, + "dennehy": 1.48e-07, + "devry": 1.48e-07, + "dhea": 1.48e-07, + "diatribes": 1.48e-07, + "dichotomies": 1.48e-07, + "diehards": 1.48e-07, + "differentiator": 1.48e-07, + "dillingham": 1.48e-07, + "dimwitted": 1.48e-07, + "dingoes": 1.48e-07, + "dirks": 8.91e-08, + "disassembling": 1.48e-07, + "disburse": 1.48e-07, + "dislocate": 1.48e-07, + "disobeys": 1.48e-07, + "disseminates": 1.48e-07, + "dito": 1.48e-07, + "dizzee": 1.48e-07, + "dlf": 1.48e-07, + "dominika": 1.48e-07, + "dorito": 1.48e-07, + "dorrit": 1.48e-07, + "doted": 1.48e-07, + "doy": 1.48e-07, + "dramatised": 1.48e-07, + "dramatizes": 1.48e-07, + "drapers": 1.38e-07, + "drippings": 1.48e-07, + "driveshaft": 1.48e-07, + "dually": 1.48e-07, + "dubey": 1.48e-07, + "duolingo": 1.48e-07, + "duras": 1.48e-07, + "dyn": 1.48e-07, + "dysphagia": 1.48e-07, + "earlobes": 1.48e-07, + "earmuffs": 1.48e-07, + "ebullient": 1.48e-07, + "ech": 1.48e-07, + "eef": 1.48e-07, + "eerdmans": 1.48e-07, + "ega": 1.48e-07, + "egregiously": 1.48e-07, + "ehealth": 1.48e-07, + "eidolon": 1.48e-07, + "eldred": 1.48e-07, + "elixirs": 1.48e-07, + "emden": 1.48e-07, + "emerg": 1.48e-07, + "emptier": 1.48e-07, + "emption": 1.48e-07, + "enb": 1.48e-07, + "enes": 1.48e-07, + "enforceability": 1.48e-07, + "englanders": 1.48e-07, + "enlargements": 1.48e-07, + "enunciate": 1.48e-07, + "environ": 1.48e-07, + "ephron": 1.48e-07, + "epigram": 1.48e-07, + "epitopes": 1.48e-07, + "esch": 1.48e-07, + "escuela": 1.48e-07, + "espada": 1.48e-07, + "estar": 1.48e-07, + "estimable": 1.48e-07, + "etisalat": 1.48e-07, + "ettore": 1.48e-07, + "excommunicate": 1.48e-07, + "eyelet": 1.48e-07, + "ezras": 1.48e-07, + "fabienne": 1.48e-07, + "fakery": 1.48e-07, + "fakir": 1.48e-07, + "familiarized": 1.48e-07, + "fanatically": 1.48e-07, + "fastback": 1.48e-07, + "fauntleroy": 1.48e-07, + "fdrs": 1.48e-07, + "feasibly": 1.48e-07, + "fect": 1.48e-07, + "fermin": 1.48e-07, + "fescue": 1.48e-07, + "fif": 1.48e-07, + "filbert": 1.48e-07, + "fing": 1.48e-07, + "firelight": 1.48e-07, + "fisker": 1.48e-07, + "flirtations": 1.48e-07, + "floes": 1.48e-07, + "flub": 1.48e-07, + "flunk": 1.48e-07, + "foligno": 1.48e-07, + "forewing": 1.48e-07, + "foshan": 1.48e-07, + "foust": 1.48e-07, + "franciss": 1.48e-07, + "frederico": 1.48e-07, + "frontrunners": 1.48e-07, + "fud": 1.48e-07, + "fungible": 1.48e-07, + "gainz": 1.48e-07, + "galifianakis": 1.48e-07, + "galindo": 1.48e-07, + "gallego": 1.48e-07, + "gallia": 1.48e-07, + "galvez": 1.48e-07, + "garay": 1.48e-07, + "garcetti": 1.48e-07, + "gbh": 1.48e-07, + "gehrigs": 1.48e-07, + "geneseo": 1.48e-07, + "genny": 1.48e-07, + "germline": 1.48e-07, + "giamatti": 1.48e-07, + "gie": 1.48e-07, + "glinting": 1.48e-07, + "glitched": 1.48e-07, + "globalised": 1.48e-07, + "glottal": 1.48e-07, + "glynne": 1.48e-07, + "godfathers": 1.48e-07, + "goins": 1.48e-07, + "goodenough": 1.48e-07, + "goog": 1.48e-07, + "gooseberries": 1.48e-07, + "gorged": 1.48e-07, + "goryeo": 1.48e-07, + "gotland": 1.48e-07, + "gottschalk": 1.48e-07, + "granaries": 1.48e-07, + "granit": 1.48e-07, + "groomers": 1.48e-07, + "grounders": 1.48e-07, + "gsx": 1.48e-07, + "guccifer": 1.48e-07, + "guildenstern": 1.48e-07, + "gwendoline": 1.48e-07, + "gymnasiums": 1.48e-07, + "gyre": 1.48e-07, + "haiyan": 1.48e-07, + "halladay": 1.48e-07, + "halston": 1.48e-07, + "hanyang": 1.48e-07, + "hapsburg": 1.48e-07, + "harbison": 1.48e-07, + "hardinge": 1.48e-07, + "hartung": 1.48e-07, + "hasselbeck": 1.48e-07, + "hatchling": 1.48e-07, + "hayride": 1.48e-07, + "hazelton": 1.48e-07, + "hbp": 1.48e-07, + "hcr": 1.48e-07, + "hdb": 1.48e-07, + "headmasters": 1.02e-07, + "heartedness": 1.48e-07, + "heartlands": 1.48e-07, + "hedman": 1.48e-07, + "heep": 1.48e-07, + "hegemon": 1.48e-07, + "heian": 1.48e-07, + "heigl": 1.48e-07, + "heilongjiang": 1.48e-07, + "heliocentric": 1.48e-07, + "hennig": 1.48e-07, + "hepa": 1.48e-07, + "hexes": 1.48e-07, + "hierarchically": 1.48e-07, + "hieronymus": 1.48e-07, + "hillingdon": 1.48e-07, + "hirsi": 1.48e-07, + "hisself": 1.48e-07, + "holography": 1.48e-07, + "homemakers": 1.48e-07, + "homescreen": 1.48e-07, + "honan": 1.48e-07, + "hoovers": 7.59e-08, + "horsing": 1.48e-07, + "hoylake": 1.48e-07, + "hrithik": 1.48e-07, + "huaweis": 1.48e-07, + "hulse": 1.48e-07, + "humors": 1.48e-07, + "hussy": 1.48e-07, + "hypermarket": 1.48e-07, + "hyphens": 1.48e-07, + "hypochlorite": 1.48e-07, + "iaas": 1.48e-07, + "ieyasu": 1.48e-07, + "igi": 1.48e-07, + "ihsa": 1.48e-07, + "illyria": 1.48e-07, + "imap": 1.48e-07, + "imitative": 1.48e-07, + "imitator": 1.48e-07, + "incapacitation": 1.48e-07, + "incompressible": 1.48e-07, + "inculcated": 1.48e-07, + "infiltrator": 1.48e-07, + "ingroup": 1.48e-07, + "inimical": 1.48e-07, + "inka": 1.48e-07, + "instills": 1.48e-07, + "interdepartmental": 1.48e-07, + "interdimensional": 1.48e-07, + "interposed": 1.48e-07, + "iridescence": 1.48e-07, + "ize": 1.48e-07, + "jaa": 1.48e-07, + "jaap": 1.48e-07, + "jaber": 1.48e-07, + "jacaranda": 1.48e-07, + "jalapenos": 1.48e-07, + "jammeh": 1.48e-07, + "jeffersonville": 1.48e-07, + "jerri": 1.48e-07, + "jetstar": 1.48e-07, + "jhansi": 1.48e-07, + "josette": 1.48e-07, + "joysticks": 1.48e-07, + "kaczynski": 1.48e-07, + "kaki": 1.48e-07, + "kassim": 1.48e-07, + "kazuya": 1.48e-07, + "kbr": 1.48e-07, + "keefer": 1.48e-07, + "keiser": 1.48e-07, + "kenn": 1.48e-07, + "kezia": 1.48e-07, + "khatami": 1.48e-07, + "khushi": 1.48e-07, + "kitana": 1.48e-07, + "kneaded": 1.48e-07, + "knifes": 9.77e-08, + "knowed": 1.48e-07, + "krissy": 1.48e-07, + "ksh": 1.48e-07, + "kts": 1.48e-07, + "kuchar": 1.48e-07, + "lacquers": 1.48e-07, + "lamer": 1.48e-07, + "lampooned": 1.48e-07, + "landover": 1.48e-07, + "laneway": 1.48e-07, + "lansdale": 1.48e-07, + "lanzhou": 1.48e-07, + "larchmont": 1.48e-07, + "larnaca": 1.48e-07, + "lates": 1.48e-07, + "lausd": 1.48e-07, + "lawfulness": 1.48e-07, + "lawndale": 1.48e-07, + "lazing": 1.48e-07, + "lcds": 1.48e-07, + "leached": 1.48e-07, + "leakey": 1.48e-07, + "lef": 1.48e-07, + "leftmost": 1.48e-07, + "leis": 1.48e-07, + "lemar": 1.48e-07, + "lestat": 1.48e-07, + "ligo": 1.48e-07, + "lindquist": 1.48e-07, + "lipschitz": 1.48e-07, + "livestreams": 1.48e-07, + "livorno": 1.48e-07, + "lix": 1.48e-07, + "locators": 1.48e-07, + "lockscreen": 1.48e-07, + "loggerhead": 1.48e-07, + "longleat": 1.48e-07, + "lookalikes": 1.48e-07, + "loretto": 1.48e-07, + "lounger": 1.48e-07, + "loveday": 1.48e-07, + "loya": 1.48e-07, + "lsm": 1.48e-07, + "lss": 1.48e-07, + "luckys": 1.48e-07, + "lurker": 1.48e-07, + "lyudmila": 1.48e-07, + "maccallum": 1.48e-07, + "maddalena": 1.48e-07, + "maggio": 1.48e-07, + "magistracy": 1.48e-07, + "magnetron": 1.48e-07, + "malak": 1.48e-07, + "maldini": 1.48e-07, + "maldivian": 1.48e-07, + "manbij": 1.48e-07, + "mandurah": 1.48e-07, + "manju": 1.48e-07, + "mannitol": 1.48e-07, + "mannys": 1.48e-07, + "marbling": 1.48e-07, + "marceline": 1.48e-07, + "marcelle": 1.48e-07, + "marihuana": 1.48e-07, + "marini": 1.48e-07, + "marita": 1.48e-07, + "marthe": 1.48e-07, + "martinus": 1.48e-07, + "martius": 1.48e-07, + "marya": 1.48e-07, + "materializes": 1.48e-07, + "mayra": 1.48e-07, + "mazarin": 1.48e-07, + "mccurry": 1.48e-07, + "mce": 1.48e-07, + "mcgehee": 1.48e-07, + "mckays": 1.48e-07, + "mcmichael": 1.48e-07, + "mcmullin": 1.48e-07, + "meas": 1.48e-07, + "melanesia": 1.48e-07, + "melanomas": 1.48e-07, + "mercers": 1.2e-07, + "mero": 1.48e-07, + "messiness": 1.48e-07, + "metastasized": 1.48e-07, + "methicillin": 1.48e-07, + "microcephaly": 1.48e-07, + "microsecond": 1.48e-07, + "millais": 1.48e-07, + "misrule": 1.48e-07, + "mmg": 1.48e-07, + "mncs": 1.48e-07, + "mobb": 1.48e-07, + "mojitos": 1.48e-07, + "moncler": 1.48e-07, + "monotherapy": 1.48e-07, + "montel": 1.48e-07, + "mony": 1.48e-07, + "morrisville": 1.48e-07, + "mosca": 1.48e-07, + "motd": 1.48e-07, + "mountjoy": 1.48e-07, + "msb": 1.48e-07, + "mufflers": 1.48e-07, + "mumm": 1.48e-07, + "murdo": 1.48e-07, + "musume": 1.48e-07, + "nagi": 1.48e-07, + "namo": 1.48e-07, + "nanami": 1.48e-07, + "nannys": 1.48e-07, + "naoto": 1.48e-07, + "nasim": 1.48e-07, + "nbr": 1.48e-07, + "nees": 1.48e-07, + "neustadt": 1.48e-07, + "newsagents": 1.48e-07, + "nfu": 1.48e-07, + "nishida": 1.48e-07, + "nolen": 1.48e-07, + "nonlethal": 1.48e-07, + "novas": 1.26e-07, + "novick": 1.48e-07, + "nrf": 1.48e-07, + "nsaid": 1.48e-07, + "nsclc": 1.48e-07, + "nuclides": 1.48e-07, + "nwsl": 1.48e-07, + "oakmont": 1.48e-07, + "objectivism": 1.48e-07, + "obliterates": 1.48e-07, + "officiant": 1.48e-07, + "okavango": 1.48e-07, + "oklahoman": 1.48e-07, + "olb": 1.48e-07, + "oline": 1.48e-07, + "ontop": 1.48e-07, + "oopsie": 1.48e-07, + "operculum": 1.48e-07, + "orbiters": 1.48e-07, + "orginal": 1.48e-07, + "orientals": 1.48e-07, + "orpheum": 1.48e-07, + "outnumbering": 1.48e-07, + "overstock": 1.48e-07, + "overstreet": 1.48e-07, + "oxbow": 1.48e-07, + "paleocene": 1.48e-07, + "palindrome": 1.48e-07, + "paltz": 1.48e-07, + "papillary": 1.48e-07, + "paralyzes": 1.48e-07, + "paramagnetic": 1.48e-07, + "pares": 1.48e-07, + "parisien": 1.48e-07, + "parolees": 1.48e-07, + "partials": 1.48e-07, + "pasteurization": 1.48e-07, + "patnaik": 1.48e-07, + "patronise": 1.48e-07, + "payless": 1.48e-07, + "pbk": 1.48e-07, + "pcv": 1.48e-07, + "peepers": 1.48e-07, + "pema": 1.48e-07, + "percolation": 1.48e-07, + "perpendicularly": 1.48e-07, + "perris": 1.48e-07, + "persecutors": 1.48e-07, + "pervade": 1.48e-07, + "petits": 1.48e-07, + "petrino": 1.48e-07, + "petros": 1.48e-07, + "peu": 1.48e-07, + "peut": 1.48e-07, + "phagocytosis": 1.48e-07, + "photoreceptors": 1.48e-07, + "phx": 1.48e-07, + "physiques": 1.48e-07, + "pigmentosa": 1.48e-07, + "pilaf": 1.48e-07, + "pils": 1.48e-07, + "pinnate": 1.48e-07, + "pitter": 1.48e-07, + "platitude": 1.48e-07, + "pliant": 1.48e-07, + "plushies": 1.48e-07, + "pois": 1.48e-07, + "polley": 1.48e-07, + "pollutes": 1.48e-07, + "polysilicon": 1.48e-07, + "polytechnique": 1.48e-07, + "pongo": 1.48e-07, + "pott": 1.48e-07, + "powerboat": 1.48e-07, + "powerpc": 1.48e-07, + "precluding": 1.48e-07, + "preece": 1.48e-07, + "prepositional": 1.48e-07, + "presaged": 1.48e-07, + "pressings": 1.48e-07, + "priceline": 1.48e-07, + "printf": 1.48e-07, + "professorships": 1.48e-07, + "proserpine": 1.48e-07, + "prurient": 1.48e-07, + "psychodynamic": 1.48e-07, + "ptb": 1.48e-07, + "pushchair": 1.48e-07, + "quadrangular": 1.48e-07, + "quae": 1.48e-07, + "quantifies": 1.48e-07, + "qubit": 1.48e-07, + "quivers": 1.48e-07, + "rabaul": 1.48e-07, + "rado": 1.48e-07, + "ramana": 1.48e-07, + "ramat": 1.48e-07, + "rbg": 1.48e-07, + "recurved": 1.48e-07, + "reda": 1.48e-07, + "redzone": 1.48e-07, + "reenacting": 1.48e-07, + "refurbishments": 1.48e-07, + "regicide": 1.48e-07, + "regolith": 1.48e-07, + "reloads": 1.48e-07, + "relocates": 1.48e-07, + "renminbi": 1.48e-07, + "rennet": 1.48e-07, + "reproaches": 1.48e-07, + "requisitions": 1.48e-07, + "resurrects": 1.48e-07, + "retardants": 1.48e-07, + "rfra": 1.48e-07, + "risley": 1.48e-07, + "rito": 1.48e-07, + "rmp": 1.48e-07, + "rolands": 1.48e-07, + "rooker": 1.48e-07, + "rootless": 1.48e-07, + "rosaries": 1.48e-07, + "rto": 1.48e-07, + "rudin": 1.48e-07, + "rueful": 1.48e-07, + "rumah": 1.48e-07, + "ruminate": 1.48e-07, + "runnings": 1.48e-07, + "rustin": 1.48e-07, + "sabato": 1.48e-07, + "sackett": 1.48e-07, + "sadists": 1.48e-07, + "sahab": 1.48e-07, + "samaras": 1.48e-07, + "samosas": 1.48e-07, + "sanrio": 1.48e-07, + "sanz": 1.48e-07, + "satterfield": 1.48e-07, + "savannas": 1.48e-07, + "scald": 1.48e-07, + "scampi": 1.48e-07, + "scarecrows": 1.48e-07, + "schematically": 1.48e-07, + "schirmer": 1.48e-07, + "schumachers": 1.48e-07, + "schwimmer": 1.48e-07, + "sclerotic": 1.48e-07, + "secaucus": 1.48e-07, + "senza": 1.48e-07, + "shafi": 1.48e-07, + "shamu": 1.48e-07, + "shiitake": 1.48e-07, + "shino": 1.48e-07, + "shoemakers": 5.13e-08, + "shouty": 1.48e-07, + "shroff": 1.48e-07, + "shuai": 1.48e-07, + "shuichi": 1.48e-07, + "shuman": 1.48e-07, + "shuri": 1.48e-07, + "sicilia": 1.48e-07, + "silvestre": 1.48e-07, + "sinestro": 1.48e-07, + "slaved": 1.48e-07, + "slayton": 1.48e-07, + "sledges": 1.48e-07, + "slobber": 1.48e-07, + "sloppiness": 1.48e-07, + "smartness": 1.48e-07, + "smn": 1.48e-07, + "snapchats": 1e-07, + "snowbird": 1.48e-07, + "snowmobiling": 1.48e-07, + "sokol": 1.48e-07, + "sower": 1.48e-07, + "spanos": 1.48e-07, + "specialism": 1.48e-07, + "speirs": 1.48e-07, + "speke": 1.48e-07, + "speyer": 1.48e-07, + "splenic": 1.48e-07, + "spon": 1.48e-07, + "stabiliser": 1.48e-07, + "stallman": 1.48e-07, + "stapling": 1.48e-07, + "starkville": 1.48e-07, + "starrs": 5.5e-08, + "statuesque": 1.48e-07, + "stefania": 1.48e-07, + "stenciled": 1.48e-07, + "steyer": 1.48e-07, + "stippling": 1.48e-07, + "stowaways": 1.48e-07, + "strapon": 1.48e-07, + "subcontracting": 1.48e-07, + "subfamilies": 1.48e-07, + "subtilis": 1.48e-07, + "sug": 1.48e-07, + "sugarman": 1.48e-07, + "sunglass": 1.48e-07, + "supersymmetry": 1.48e-07, + "suspender": 1.48e-07, + "sut": 1.48e-07, + "suzanna": 1.48e-07, + "swarthy": 1.48e-07, + "swati": 1.48e-07, + "swerves": 1.48e-07, + "switchback": 1.48e-07, + "swooned": 1.48e-07, + "sycophantic": 1.48e-07, + "symbolising": 1.48e-07, + "symposiums": 1.48e-07, + "systematized": 1.48e-07, + "systemd": 1.48e-07, + "tabla": 1.48e-07, + "tammi": 1.48e-07, + "tannic": 1.48e-07, + "tansy": 1.48e-07, + "tearoom": 1.48e-07, + "teena": 1.48e-07, + "teil": 1.48e-07, + "tendai": 1.48e-07, + "tetley": 1.48e-07, + "thawne": 1.48e-07, + "theming": 1.48e-07, + "thew": 1.48e-07, + "thorson": 1.48e-07, + "thre": 1.48e-07, + "throughly": 1.48e-07, + "thuggery": 1.48e-07, + "thyssen": 1.48e-07, + "tidwell": 1.48e-07, + "tiene": 1.48e-07, + "tiffani": 1.48e-07, + "timmys": 1.48e-07, + "tipi": 1.48e-07, + "tipp": 1.48e-07, + "tippers": 1.48e-07, + "tira": 1.48e-07, + "titleist": 1.48e-07, + "tnm": 1.48e-07, + "toff": 1.48e-07, + "toko": 1.48e-07, + "tolle": 1.48e-07, + "tomei": 1.48e-07, + "tortellini": 1.48e-07, + "totemic": 1.48e-07, + "tottering": 1.48e-07, + "tracheotomy": 1.48e-07, + "transceivers": 1.48e-07, + "transfection": 1.48e-07, + "trattoria": 1.48e-07, + "treetop": 1.48e-07, + "trento": 1.48e-07, + "trestles": 1.48e-07, + "triangulate": 1.48e-07, + "trichomes": 1.48e-07, + "tricksters": 1.48e-07, + "tristar": 1.48e-07, + "trivedi": 1.48e-07, + "trulia": 1.48e-07, + "tupou": 1.48e-07, + "tws": 1.48e-07, + "tyagi": 1.48e-07, + "tyrod": 1.48e-07, + "uel": 1.48e-07, + "uffizi": 1.48e-07, + "ultimates": 1.48e-07, + "unaids": 1.48e-07, + "uncannily": 1.48e-07, + "uncounted": 1.48e-07, + "unelectable": 1.48e-07, + "unequaled": 1.48e-07, + "unglued": 1.48e-07, + "unheralded": 1.48e-07, + "unibody": 1.48e-07, + "universalis": 1.48e-07, + "unrecognisable": 1.48e-07, + "untersuchungen": 1.48e-07, + "upvote": 1.48e-07, + "ursus": 1.48e-07, + "usama": 1.48e-07, + "uwp": 1.48e-07, + "vaillant": 1.48e-07, + "valedictory": 1.48e-07, + "veronique": 1.48e-07, + "verratti": 1.48e-07, + "vicks": 1.07e-07, + "vijaya": 1.48e-07, + "villareal": 1.48e-07, + "vincente": 1.48e-07, + "virtuosic": 1.48e-07, + "vives": 1.58e-08, + "vns": 1.48e-07, + "vulkan": 1.48e-07, + "waffling": 1.48e-07, + "warminster": 1.48e-07, + "warszawa": 1.48e-07, + "watchmaking": 1.48e-07, + "waveguides": 1.48e-07, + "wca": 1.48e-07, + "wdm": 1.48e-07, + "whiner": 1.48e-07, + "whitespace": 1.48e-07, + "wht": 1.48e-07, + "wiebe": 1.48e-07, + "winnipegs": 1.48e-07, + "withal": 1.48e-07, + "wmu": 1.48e-07, + "woocommerce": 1.48e-07, + "woofer": 1.48e-07, + "worrier": 1.48e-07, + "wss": 1.48e-07, + "wyck": 1.48e-07, + "xcel": 1.48e-07, + "xlix": 1.48e-07, + "xn": 1.48e-07, + "xxxvi": 1.48e-07, + "yaga": 1.48e-07, + "yales": 1.48e-07, + "yannis": 1.48e-07, + "yearnings": 1.48e-07, + "yesssss": 1.48e-07, + "yoel": 1.48e-07, + "yoichi": 1.48e-07, + "yuta": 1.48e-07, + "zaw": 1.48e-07, + "zemin": 1.48e-07, + "zena": 1.48e-07, + "zinfandel": 1.48e-07, + "zog": 1.48e-07, + "zook": 1.48e-07, + "zuniga": 1.48e-07, + "zvi": 1.48e-07, + "aag": 1.45e-07, + "aberdare": 1.45e-07, + "abided": 1.45e-07, + "absorbable": 1.45e-07, + "accademia": 1.45e-07, + "accor": 1.45e-07, + "accumbens": 1.45e-07, + "acg": 1.45e-07, + "acth": 1.45e-07, + "actualy": 1.45e-07, + "acyclic": 1.45e-07, + "adichie": 1.45e-07, + "adjudicating": 1.45e-07, + "adulteration": 1.45e-07, + "advaita": 1.45e-07, + "adweek": 1.45e-07, + "agb": 1.45e-07, + "aggrandizement": 1.45e-07, + "agroforestry": 1.45e-07, + "agung": 1.45e-07, + "ahd": 1.45e-07, + "ahr": 1.45e-07, + "ahram": 1.45e-07, + "airbrushing": 1.45e-07, + "akechi": 1.45e-07, + "akeem": 1.45e-07, + "aldine": 1.45e-07, + "aldon": 1.45e-07, + "alen": 1.45e-07, + "alesha": 1.45e-07, + "algoma": 1.45e-07, + "alluvium": 1.45e-07, + "almagro": 1.45e-07, + "amesbury": 1.45e-07, + "amperage": 1.45e-07, + "amx": 1.45e-07, + "anasazi": 1.45e-07, + "angiosperms": 1.45e-07, + "anglicanism": 1.45e-07, + "anish": 1.45e-07, + "annabella": 1.45e-07, + "annabeth": 1.45e-07, + "annealed": 1.45e-07, + "ansa": 1.45e-07, + "antacids": 1.45e-07, + "antechamber": 1.45e-07, + "applebaum": 1.45e-07, + "appling": 1.45e-07, + "appropriates": 1.45e-07, + "aqap": 1.45e-07, + "archons": 1.45e-07, + "archy": 1.45e-07, + "argonaut": 1.45e-07, + "armoire": 1.45e-07, + "arvada": 1.45e-07, + "ascendance": 1.45e-07, + "attainder": 1.45e-07, + "atu": 1.45e-07, + "auberge": 1.45e-07, + "authenticator": 1.45e-07, + "authoritarians": 1.45e-07, + "autocar": 1.45e-07, + "avebury": 1.45e-07, + "azt": 1.45e-07, + "baas": 1.45e-07, + "babby": 1.45e-07, + "baftas": 1.45e-07, + "bahrains": 1.45e-07, + "bamboozle": 1.45e-07, + "bandura": 1.45e-07, + "bangkoks": 1.45e-07, + "baseboard": 1.45e-07, + "battaglia": 1.45e-07, + "bavarians": 1.45e-07, + "baytown": 1.45e-07, + "bedecked": 1.45e-07, + "beeches": 1.45e-07, + "behaviorism": 1.45e-07, + "believability": 1.45e-07, + "bellerophon": 1.45e-07, + "benda": 1.45e-07, + "berge": 1.45e-07, + "bester": 1.45e-07, + "beswick": 1.45e-07, + "bettis": 1.45e-07, + "betweens": 1.45e-07, + "bfr": 1.45e-07, + "bickley": 1.45e-07, + "billa": 1.45e-07, + "biosensors": 1.45e-07, + "bitfinex": 1.45e-07, + "bizzare": 1.45e-07, + "blackstar": 1.45e-07, + "blase": 1.45e-07, + "blaspheme": 1.45e-07, + "blest": 1.45e-07, + "blonds": 1.45e-07, + "blubbering": 1.45e-07, + "bluegill": 1.45e-07, + "bof": 1.45e-07, + "bops": 1.45e-07, + "bottler": 1.45e-07, + "bottomley": 1.45e-07, + "bourget": 1.45e-07, + "bourn": 1.45e-07, + "brachiopods": 1.45e-07, + "brann": 1.45e-07, + "branning": 1.45e-07, + "braque": 1.45e-07, + "brents": 1.45e-07, + "brewpub": 1.45e-07, + "bridie": 1.45e-07, + "briefer": 1.45e-07, + "brierley": 1.45e-07, + "brims": 1.45e-07, + "brittan": 1.45e-07, + "brontosaurus": 1.45e-07, + "broomsticks": 1.45e-07, + "brouhaha": 1.45e-07, + "brrr": 1.45e-07, + "brulee": 1.45e-07, + "buffys": 1.45e-07, + "bullcrap": 1.45e-07, + "buskers": 1.45e-07, + "calabrian": 1.45e-07, + "calkins": 1.45e-07, + "calmest": 1.45e-07, + "calvinistic": 1.45e-07, + "cama": 1.45e-07, + "cameroun": 1.45e-07, + "cappy": 1.45e-07, + "carafe": 1.45e-07, + "carburettor": 1.45e-07, + "cardassian": 1.45e-07, + "carn": 1.45e-07, + "carpathians": 1.45e-07, + "cathal": 1.45e-07, + "catton": 1.45e-07, + "catullus": 1.45e-07, + "cebuano": 1.45e-07, + "celadon": 1.45e-07, + "centcom": 1.45e-07, + "cerrone": 1.45e-07, + "chamorro": 1.45e-07, + "charbonneau": 1.45e-07, + "chaya": 1.45e-07, + "cheatin": 1.45e-07, + "chicas": 1.45e-07, + "chicka": 1.45e-07, + "chidi": 1.45e-07, + "chook": 1.45e-07, + "circulator": 1.45e-07, + "classwork": 1.45e-07, + "clemsons": 1.45e-07, + "cloaca": 1.45e-07, + "closeups": 1.45e-07, + "cloverdale": 1.45e-07, + "cmf": 1.45e-07, + "codfish": 1.45e-07, + "colegio": 1.45e-07, + "colons": 1.45e-07, + "complexions": 1.45e-07, + "connivance": 1.45e-07, + "conrail": 1.45e-07, + "contralto": 1.45e-07, + "conundrums": 1.45e-07, + "convalescing": 1.45e-07, + "coquette": 1.45e-07, + "correlative": 1.45e-07, + "corzine": 1.45e-07, + "coxswain": 1.45e-07, + "cran": 1.45e-07, + "crestfallen": 1.45e-07, + "crv": 1.45e-07, + "culottes": 1.45e-07, + "curtly": 1.45e-07, + "cyc": 1.45e-07, + "cyclocross": 1.45e-07, + "dacca": 1.45e-07, + "dalal": 1.45e-07, + "damnable": 1.45e-07, + "danceable": 1.45e-07, + "darcys": 1.45e-07, + "daub": 1.45e-07, + "dawley": 1.45e-07, + "dde": 1.45e-07, + "deadening": 1.45e-07, + "dealin": 1.45e-07, + "deers": 1.07e-07, + "deet": 1.45e-07, + "defencemen": 1.45e-07, + "defrosting": 1.45e-07, + "denuclearization": 1.45e-07, + "deodorants": 1.45e-07, + "deplorables": 1.45e-07, + "derecho": 1.45e-07, + "dermatological": 1.45e-07, + "derriere": 1.45e-07, + "devalues": 1.45e-07, + "diabolic": 1.45e-07, + "diasporic": 1.45e-07, + "dinghies": 1.45e-07, + "dione": 1.45e-07, + "dioramas": 1.45e-07, + "dirigible": 1.45e-07, + "disbandment": 1.45e-07, + "discomforts": 1.45e-07, + "discoverable": 1.45e-07, + "disestablishment": 1.45e-07, + "disparagement": 1.45e-07, + "dissects": 1.45e-07, + "distally": 1.45e-07, + "dooms": 1.41e-07, + "doorstop": 1.45e-07, + "dopa": 1.45e-07, + "douce": 1.45e-07, + "dousing": 1.45e-07, + "dovetails": 1.45e-07, + "dowels": 1.45e-07, + "downfalls": 1.45e-07, + "dpo": 1.45e-07, + "dreamhack": 1.45e-07, + "drizzly": 1.45e-07, + "dtf": 1.45e-07, + "duchesne": 1.45e-07, + "ducting": 1.45e-07, + "duis": 1.45e-07, + "dumbledores": 1.45e-07, + "duplexes": 1.45e-07, + "dyadic": 1.45e-07, + "dyspnea": 1.45e-07, + "eakins": 1.45e-07, + "earworm": 1.45e-07, + "ebit": 1.45e-07, + "eckersley": 1.45e-07, + "egf": 1.45e-07, + "ehhhh": 1.45e-07, + "electable": 1.45e-07, + "elkton": 1.45e-07, + "ellsberg": 1.45e-07, + "elmos": 1.45e-07, + "embodiments": 1.45e-07, + "entitling": 1.45e-07, + "entwicklung": 1.45e-07, + "enuff": 1.45e-07, + "enver": 1.45e-07, + "enviro": 1.45e-07, + "equipe": 1.45e-07, + "erle": 1.45e-07, + "estrange": 1.45e-07, + "ethicists": 1.45e-07, + "eutrophication": 1.45e-07, + "evey": 1.45e-07, + "evol": 1.45e-07, + "excitations": 1.45e-07, + "expounding": 1.45e-07, + "expresso": 1.45e-07, + "exterminators": 1.45e-07, + "exultant": 1.45e-07, + "facings": 1.45e-07, + "fahy": 1.45e-07, + "familiarly": 1.45e-07, + "fasb": 1.45e-07, + "fauquier": 1.45e-07, + "fcm": 1.45e-07, + "fcp": 1.45e-07, + "feets": 1.45e-07, + "fictive": 1.45e-07, + "fiddlers": 7.08e-08, + "filipinas": 1.45e-07, + "fionas": 1.45e-07, + "flamengo": 1.45e-07, + "fobs": 1.45e-07, + "fod": 1.45e-07, + "folktale": 1.45e-07, + "fomented": 1.45e-07, + "fondation": 1.45e-07, + "fone": 1.45e-07, + "fordyce": 1.45e-07, + "foreseeing": 1.45e-07, + "formalization": 1.45e-07, + "fortier": 1.45e-07, + "fptp": 1.45e-07, + "fraiche": 1.45e-07, + "frenchs": 1.45e-07, + "fresheners": 1.45e-07, + "frontcourt": 1.45e-07, + "fudd": 1.45e-07, + "galatea": 1.45e-07, + "gambhir": 1.45e-07, + "gamertag": 1.45e-07, + "gams": 1.45e-07, + "gari": 1.45e-07, + "gauzy": 1.45e-07, + "gbe": 1.45e-07, + "genk": 1.45e-07, + "gero": 1.45e-07, + "getzlaf": 1.45e-07, + "ghose": 1.45e-07, + "ght": 1.45e-07, + "giada": 1.45e-07, + "gili": 1.45e-07, + "giraldo": 1.45e-07, + "gleneagles": 1.45e-07, + "gluon": 1.45e-07, + "gluteus": 1.45e-07, + "goldust": 1.45e-07, + "gooders": 1.45e-07, + "gordan": 1.45e-07, + "goreng": 1.45e-07, + "gotch": 1.45e-07, + "gourmand": 1.45e-07, + "granth": 1.45e-07, + "grappler": 1.45e-07, + "gretsch": 1.45e-07, + "grimaces": 1.45e-07, + "grittier": 1.45e-07, + "gsl": 1.45e-07, + "guapo": 1.45e-07, + "guillain": 1.45e-07, + "gummer": 1.45e-07, + "guntur": 1.45e-07, + "guzzle": 1.45e-07, + "gwar": 1.45e-07, + "habituated": 1.45e-07, + "habituation": 1.45e-07, + "hagia": 1.45e-07, + "hailstones": 1.45e-07, + "hajji": 1.45e-07, + "halpin": 1.45e-07, + "hamann": 1.45e-07, + "haplogroup": 1.45e-07, + "harpies": 1.45e-07, + "harsha": 1.45e-07, + "hasselblad": 1.45e-07, + "hassling": 1.45e-07, + "havas": 1.45e-07, + "hawthorns": 5.25e-08, + "hayabusa": 1.45e-07, + "hayakawa": 1.45e-07, + "haydens": 1.45e-07, + "hazaras": 1.45e-07, + "hds": 1.45e-07, + "hedberg": 1.45e-07, + "hemodynamic": 1.45e-07, + "henne": 1.45e-07, + "hermans": 6.92e-08, + "hermaphrodites": 1.45e-07, + "herren": 1.45e-07, + "hevc": 1.45e-07, + "highwaymen": 1.45e-07, + "hippolytus": 1.45e-07, + "hirsute": 1.45e-07, + "hispano": 1.45e-07, + "hitt": 1.45e-07, + "hoban": 1.45e-07, + "hodgman": 1.45e-07, + "holby": 1.45e-07, + "holmgren": 1.45e-07, + "holroyd": 1.45e-07, + "homestand": 1.45e-07, + "horning": 1.45e-07, + "htt": 1.45e-07, + "hubcaps": 1.45e-07, + "huddling": 1.45e-07, + "huffs": 1.45e-07, + "humanitarians": 1.45e-07, + "humored": 1.45e-07, + "hypotenuse": 1.45e-07, + "iconographic": 1.45e-07, + "iie": 1.45e-07, + "imperishable": 1.45e-07, + "impinging": 1.45e-07, + "imr": 1.45e-07, + "inaugurates": 1.45e-07, + "incognita": 1.45e-07, + "incompatibilities": 1.45e-07, + "incompetency": 1.45e-07, + "indefinable": 1.45e-07, + "indemnified": 1.45e-07, + "inductions": 1.45e-07, + "ineos": 1.45e-07, + "inferiors": 1.45e-07, + "infinitesimally": 1.45e-07, + "interfaced": 1.45e-07, + "interjection": 1.45e-07, + "interlopers": 1.45e-07, + "inverclyde": 1.45e-07, + "ipsum": 1.45e-07, + "irrigating": 1.45e-07, + "iterating": 1.45e-07, + "ites": 1.45e-07, + "iuds": 1.45e-07, + "iwi": 1.45e-07, + "iwm": 1.45e-07, + "iwobi": 1.45e-07, + "jabalpur": 1.45e-07, + "jackmans": 1.45e-07, + "jacobins": 1.45e-07, + "jans": 7.76e-08, + "jasmines": 1.45e-07, + "jenelle": 1.45e-07, + "joffe": 1.45e-07, + "jokic": 1.45e-07, + "jota": 1.45e-07, + "juergen": 1.45e-07, + "jx": 1.45e-07, + "kaisers": 1.45e-07, + "kamiya": 1.45e-07, + "kanga": 1.45e-07, + "kapital": 1.45e-07, + "karamazov": 1.45e-07, + "kasia": 1.45e-07, + "kavita": 1.45e-07, + "kayser": 1.45e-07, + "keeneland": 1.45e-07, + "kernan": 1.45e-07, + "khadr": 1.45e-07, + "kibaki": 1.45e-07, + "kix": 1.45e-07, + "knossos": 1.45e-07, + "knowest": 1.45e-07, + "knowin": 1.45e-07, + "knutson": 1.45e-07, + "kojo": 1.45e-07, + "kooning": 1.45e-07, + "koppel": 1.45e-07, + "kowtow": 1.45e-07, + "kpis": 1.45e-07, + "kratz": 1.45e-07, + "kunduz": 1.45e-07, + "kwun": 1.45e-07, + "laff": 1.45e-07, + "lakeville": 1.45e-07, + "lamu": 1.45e-07, + "lande": 1.45e-07, + "lastest": 1.45e-07, + "lavage": 1.45e-07, + "laze": 1.45e-07, + "lbd": 1.45e-07, + "lectureship": 1.45e-07, + "lemaire": 1.45e-07, + "leonhard": 1.45e-07, + "letang": 1.45e-07, + "levert": 1.45e-07, + "lexy": 1.45e-07, + "lgm": 1.45e-07, + "likeminded": 1.45e-07, + "lingfield": 1.45e-07, + "linh": 1.45e-07, + "lipinski": 1.45e-07, + "locative": 1.45e-07, + "lombards": 1.45e-07, + "longinus": 1.45e-07, + "lovat": 1.45e-07, + "lowing": 1.45e-07, + "ltm": 1.45e-07, + "luan": 1.45e-07, + "lucite": 1.45e-07, + "ludogorets": 1.45e-07, + "lumpkin": 1.45e-07, + "lyricists": 1.45e-07, + "macula": 1.45e-07, + "mahajan": 1.45e-07, + "maigret": 1.45e-07, + "mailroom": 1.45e-07, + "makino": 1.45e-07, + "malam": 1.45e-07, + "mannering": 1.45e-07, + "maracaibo": 1.45e-07, + "masi": 1.45e-07, + "massless": 1.45e-07, + "masuk": 1.45e-07, + "matsu": 1.45e-07, + "matuidi": 1.45e-07, + "mayu": 1.45e-07, + "mccafferty": 1.45e-07, + "meenakshi": 1.45e-07, + "megha": 1.45e-07, + "meles": 1.45e-07, + "mendelian": 1.45e-07, + "meritocratic": 1.45e-07, + "metallurgist": 1.45e-07, + "metastable": 1.45e-07, + "methacrylate": 1.45e-07, + "mgo": 1.45e-07, + "micha": 1.45e-07, + "milch": 1.45e-07, + "mirabella": 1.45e-07, + "misleads": 1.45e-07, + "mixup": 1.45e-07, + "miyazakis": 1.45e-07, + "mjolnir": 1.45e-07, + "mmi": 1.45e-07, + "modulations": 1.45e-07, + "mohammeds": 1.45e-07, + "moise": 1.45e-07, + "moksha": 1.45e-07, + "moltke": 1.45e-07, + "monocular": 1.45e-07, + "monolayer": 1.45e-07, + "monotonic": 1.45e-07, + "montenegrin": 1.45e-07, + "moraes": 1.45e-07, + "mortise": 1.45e-07, + "mtor": 1.45e-07, + "mullets": 1.07e-08, + "multimeter": 1.45e-07, + "multiplatform": 1.45e-07, + "mutha": 1.45e-07, + "mutilations": 1.45e-07, + "nametag": 1.45e-07, + "nanotech": 1.45e-07, + "naproxen": 1.45e-07, + "narayanan": 1.45e-07, + "nashik": 1.45e-07, + "nawal": 1.45e-07, + "necronomicon": 1.45e-07, + "netizen": 1.45e-07, + "neuf": 1.45e-07, + "neutrogena": 1.45e-07, + "neutropenia": 1.45e-07, + "newnham": 1.45e-07, + "newsmagazine": 1.45e-07, + "nhi": 1.45e-07, + "nicaea": 1.45e-07, + "niemann": 1.45e-07, + "nightwish": 1.45e-07, + "nitrocellulose": 1.45e-07, + "nnw": 1.45e-07, + "noches": 1.45e-07, + "nonconformity": 1.45e-07, + "nonexistence": 1.45e-07, + "nootropics": 1.45e-07, + "nouvel": 1.45e-07, + "nouvelles": 1.45e-07, + "nyberg": 1.45e-07, + "nyerere": 1.45e-07, + "okane": 1.45e-07, + "objectivist": 1.45e-07, + "occidentalis": 1.45e-07, + "occurence": 1.45e-07, + "octogenarian": 1.45e-07, + "odb": 1.45e-07, + "odum": 1.45e-07, + "oedema": 1.45e-07, + "officeholders": 1.45e-07, + "oficial": 1.45e-07, + "olefin": 1.45e-07, + "olicity": 1.45e-07, + "olivetti": 1.45e-07, + "olya": 1.45e-07, + "omran": 1.45e-07, + "omsk": 1.45e-07, + "openbsd": 1.45e-07, + "opossums": 1.45e-07, + "ordway": 1.45e-07, + "organa": 1.45e-07, + "orl": 1.45e-07, + "osterman": 1.45e-07, + "otitis": 1.45e-07, + "ottumwa": 1.45e-07, + "ouyang": 1.45e-07, + "oversights": 1.45e-07, + "ovulate": 1.45e-07, + "ozuna": 1.45e-07, + "paclitaxel": 1.45e-07, + "pagani": 1.45e-07, + "pallor": 1.45e-07, + "palp": 1.45e-07, + "pangea": 1.45e-07, + "paperwhite": 1.45e-07, + "paquin": 1.45e-07, + "paradigmatic": 1.45e-07, + "parapsychology": 1.45e-07, + "parolee": 1.45e-07, + "parsecs": 1.45e-07, + "parva": 1.45e-07, + "patellar": 1.45e-07, + "patentable": 1.45e-07, + "patroclus": 1.45e-07, + "patronus": 1.45e-07, + "pavlo": 1.45e-07, + "peekskill": 1.45e-07, + "peloponnese": 1.45e-07, + "pendergast": 1.45e-07, + "pendlebury": 1.45e-07, + "pentameter": 1.45e-07, + "pentobarbital": 1.45e-07, + "percentiles": 1.45e-07, + "personalise": 1.45e-07, + "phaneuf": 1.45e-07, + "photorealistic": 1.45e-07, + "piledriver": 1.45e-07, + "pilings": 1.45e-07, + "pinchot": 1.45e-07, + "pincushion": 1.45e-07, + "plaice": 1.45e-07, + "platted": 1.45e-07, + "polypeptides": 1.45e-07, + "polythene": 1.45e-07, + "pomerania": 1.45e-07, + "ponca": 1.45e-07, + "pone": 1.45e-07, + "poorhouse": 1.45e-07, + "popham": 1.45e-07, + "portcullis": 1.45e-07, + "portis": 1.45e-07, + "preble": 1.45e-07, + "preen": 1.45e-07, + "presupposition": 1.45e-07, + "previn": 1.45e-07, + "primogeniture": 1.45e-07, + "princeps": 1.45e-07, + "priti": 1.45e-07, + "privation": 1.45e-07, + "prokaryotes": 1.45e-07, + "prompter": 1.45e-07, + "propounded": 1.45e-07, + "proquest": 1.45e-07, + "prudhoe": 1.45e-07, + "pseudonymous": 1.45e-07, + "psx": 1.45e-07, + "pujara": 1.45e-07, + "putra": 1.45e-07, + "pwi": 1.45e-07, + "quadro": 1.45e-07, + "qualia": 1.45e-07, + "quam": 1.45e-07, + "quavo": 1.45e-07, + "quirkiness": 1.45e-07, + "ragu": 1.45e-07, + "rahi": 1.45e-07, + "raimondo": 1.45e-07, + "rakim": 1.45e-07, + "rameses": 1.45e-07, + "ranga": 1.45e-07, + "ransacking": 1.45e-07, + "raptures": 1.45e-07, + "rattlers": 1.45e-07, + "ravenhill": 1.45e-07, + "reaffirmation": 1.45e-07, + "reassessing": 1.45e-07, + "reawakening": 1.45e-07, + "recalculate": 1.45e-07, + "reco": 1.45e-07, + "recommenced": 1.45e-07, + "recurrences": 1.45e-07, + "recyclables": 1.45e-07, + "redcoats": 1.45e-07, + "redoubtable": 1.45e-07, + "reformulation": 1.45e-07, + "reidy": 1.45e-07, + "reimbursing": 1.45e-07, + "reinvesting": 1.45e-07, + "reitz": 1.45e-07, + "relict": 1.45e-07, + "renaldo": 1.45e-07, + "renate": 1.45e-07, + "reproached": 1.45e-07, + "reserva": 1.45e-07, + "resinous": 1.45e-07, + "retd": 1.45e-07, + "rethought": 1.45e-07, + "revie": 1.45e-07, + "revitalised": 1.45e-07, + "rfd": 1.45e-07, + "rizwan": 1.45e-07, + "rohrer": 1.45e-07, + "romping": 1.45e-07, + "roofers": 1.45e-07, + "rosemount": 1.45e-07, + "rosens": 1.45e-07, + "rostock": 1.45e-07, + "roughriders": 1.45e-07, + "rozelle": 1.45e-07, + "rpe": 1.45e-07, + "ruislip": 1.45e-07, + "rumer": 1.45e-07, + "ruminations": 1.45e-07, + "rustenburg": 1.45e-07, + "ruthenium": 1.45e-07, + "ryders": 5.89e-08, + "sachiko": 1.45e-07, + "salieri": 1.45e-07, + "sallow": 1.45e-07, + "salvos": 1.45e-07, + "samiti": 1.45e-07, + "sapienza": 1.45e-07, + "scaife": 1.45e-07, + "schwarzer": 1.45e-07, + "scrims": 1.45e-07, + "seascapes": 1.45e-07, + "secondment": 1.45e-07, + "sedin": 1.45e-07, + "sere": 1.45e-07, + "serenades": 1.45e-07, + "setu": 1.45e-07, + "setzer": 1.45e-07, + "sexo": 1.45e-07, + "sheff": 1.45e-07, + "shiga": 1.45e-07, + "shillong": 1.45e-07, + "shinning": 1.45e-07, + "shitpost": 1.45e-07, + "shriners": 1.45e-07, + "shuttering": 1.45e-07, + "silber": 1.45e-07, + "sisley": 1.45e-07, + "skechers": 1.45e-07, + "sketchbooks": 1.45e-07, + "slm": 1.45e-07, + "sloss": 1.45e-07, + "sneha": 1.45e-07, + "snowdrops": 1.45e-07, + "snowfalls": 1.45e-07, + "snowplow": 1.45e-07, + "sociolinguistics": 1.45e-07, + "solders": 1.45e-07, + "solutes": 1.45e-07, + "sonntag": 1.45e-07, + "souring": 1.45e-07, + "sparred": 1.45e-07, + "spocks": 1.45e-07, + "sponging": 1.45e-07, + "sportspeople": 1.45e-07, + "spv": 1.45e-07, + "srk": 1.45e-07, + "stashes": 1.45e-07, + "staters": 1.45e-07, + "statism": 1.45e-07, + "stillbirths": 1.45e-07, + "stimulatory": 1.45e-07, + "stoichiometric": 1.45e-07, + "stoped": 1.45e-07, + "straighteners": 1.45e-07, + "streptomyces": 1.45e-07, + "strozzi": 1.45e-07, + "stymie": 1.45e-07, + "subparagraph": 1.45e-07, + "suchet": 1.45e-07, + "suggestively": 1.45e-07, + "sulzer": 1.45e-07, + "summonses": 1.45e-07, + "suomi": 1.45e-07, + "superbad": 1.45e-07, + "superbugs": 1.45e-07, + "superficiality": 1.45e-07, + "surfin": 1.45e-07, + "surrealists": 1.45e-07, + "surtees": 1.45e-07, + "swale": 1.45e-07, + "swart": 1.45e-07, + "swordplay": 1.45e-07, + "syco": 1.45e-07, + "syst": 1.45e-07, + "tacloban": 1.45e-07, + "takayama": 1.45e-07, + "tanz": 1.45e-07, + "tanzanias": 1.45e-07, + "taormina": 1.45e-07, + "tapu": 1.45e-07, + "tauber": 1.45e-07, + "taye": 1.45e-07, + "tefl": 1.45e-07, + "tejas": 1.45e-07, + "teledyne": 1.45e-07, + "tellurium": 1.45e-07, + "terrorising": 1.45e-07, + "tessie": 1.45e-07, + "tetsu": 1.45e-07, + "thd": 1.45e-07, + "theban": 1.45e-07, + "themis": 1.45e-07, + "thermocouple": 1.45e-07, + "thurso": 1.45e-07, + "thz": 1.45e-07, + "tiga": 1.45e-07, + "tillamook": 1.45e-07, + "tisha": 1.45e-07, + "toggles": 1.45e-07, + "toils": 1.45e-07, + "tola": 1.45e-07, + "tommen": 1.45e-07, + "torvalds": 1.45e-07, + "tovar": 1.45e-07, + "trackside": 1.45e-07, + "tractatus": 1.45e-07, + "transfected": 1.45e-07, + "transylvanian": 1.45e-07, + "trashes": 1.45e-07, + "treves": 1.45e-07, + "triangulated": 1.45e-07, + "triplett": 1.45e-07, + "trisomy": 1.45e-07, + "troglodytes": 1.45e-07, + "troubadours": 1.45e-07, + "tsuki": 1.45e-07, + "tsushima": 1.45e-07, + "ttr": 1.45e-07, + "turbid": 1.45e-07, + "uea": 1.45e-07, + "ullah": 1.45e-07, + "underwoods": 5.62e-08, + "unfccc": 1.45e-07, + "unfpa": 1.45e-07, + "unmanaged": 1.45e-07, + "unsourced": 1.45e-07, + "unsuspected": 1.45e-07, + "upfield": 1.45e-07, + "uru": 1.45e-07, + "valtteri": 1.45e-07, + "vapers": 1.45e-07, + "vay": 1.45e-07, + "veh": 1.45e-07, + "veneta": 1.45e-07, + "viiis": 1.45e-07, + "vimy": 1.45e-07, + "vinh": 1.45e-07, + "vinicius": 1.45e-07, + "virologist": 1.45e-07, + "vogues": 1.45e-07, + "voto": 1.45e-07, + "waimea": 1.45e-07, + "walkover": 1.45e-07, + "waqar": 1.45e-07, + "weddell": 1.45e-07, + "welchs": 1.45e-07, + "wenceslas": 1.45e-07, + "wenham": 1.45e-07, + "wheaties": 1.45e-07, + "whoopee": 1.45e-07, + "willowbrook": 1.45e-07, + "windom": 1.45e-07, + "winstanley": 1.45e-07, + "wint": 1.45e-07, + "witchery": 1.45e-07, + "wonderin": 1.45e-07, + "woolies": 1.45e-07, + "workmates": 1.45e-07, + "wri": 1.45e-07, + "wun": 1.45e-07, + "xchange": 1.45e-07, + "xfl": 1.45e-07, + "xmen": 1.45e-07, + "xxxtentacion": 1.45e-07, + "yachty": 1.45e-07, + "yala": 1.45e-07, + "yaounde": 1.45e-07, + "yeahhh": 1.45e-07, + "yoh": 1.45e-07, + "yout": 1.45e-07, + "zeppelins": 1.38e-07, + "zis": 1.45e-07, + "zm": 1.45e-07, + "zoologists": 1.45e-07, + "abbasid": 1.41e-07, + "accts": 1.41e-07, + "achingly": 1.41e-07, + "adoptee": 1.41e-07, + "affronted": 1.41e-07, + "afls": 1.41e-07, + "africanus": 1.41e-07, + "ahe": 1.41e-07, + "akhenaten": 1.41e-07, + "aksel": 1.41e-07, + "alamitos": 1.41e-07, + "alawite": 1.41e-07, + "alcala": 1.41e-07, + "alleyne": 1.41e-07, + "alllll": 1.41e-07, + "alola": 1.41e-07, + "amalie": 1.41e-07, + "ambergris": 1.41e-07, + "amelias": 1.41e-07, + "ampersand": 1.41e-07, + "amsa": 1.41e-07, + "amstel": 1.41e-07, + "anan": 1.41e-07, + "andreu": 1.41e-07, + "angier": 1.41e-07, + "ania": 1.41e-07, + "anim": 1.41e-07, + "anschluss": 1.41e-07, + "antes": 1.41e-07, + "aoife": 1.41e-07, + "aotearoa": 1.41e-07, + "arakan": 1.41e-07, + "aransas": 1.41e-07, + "archbold": 1.41e-07, + "archenemy": 1.41e-07, + "argentinians": 1.41e-07, + "ariels": 1.41e-07, + "armrests": 1.41e-07, + "arri": 1.41e-07, + "asari": 1.41e-07, + "ashbury": 1.41e-07, + "ashi": 1.41e-07, + "asik": 1.41e-07, + "assiduous": 1.41e-07, + "assize": 1.41e-07, + "astragalus": 1.41e-07, + "astrophysicists": 1.41e-07, + "atsushi": 1.41e-07, + "augmentations": 1.41e-07, + "augustana": 1.41e-07, + "automates": 1.41e-07, + "avaliable": 1.41e-07, + "awwwww": 1.41e-07, + "backstreets": 1.41e-07, + "bailee": 1.41e-07, + "bailiwick": 1.41e-07, + "baleful": 1.41e-07, + "ballas": 1.41e-07, + "barque": 1.41e-07, + "bayo": 1.41e-07, + "beata": 1.41e-07, + "beaune": 1.41e-07, + "bechdel": 1.41e-07, + "beens": 1.41e-07, + "beery": 1.41e-07, + "beeson": 1.41e-07, + "behn": 1.41e-07, + "belasco": 1.41e-07, + "beltsville": 1.41e-07, + "bentinck": 1.41e-07, + "berglund": 1.41e-07, + "berliners": 1.41e-07, + "berthed": 1.41e-07, + "betances": 1.41e-07, + "bewick": 1.41e-07, + "bick": 1.41e-07, + "biggins": 1.41e-07, + "bimodal": 1.41e-07, + "bioluminescent": 1.41e-07, + "birney": 1.41e-07, + "bisphenol": 1.41e-07, + "blastoise": 1.41e-07, + "blimps": 1.41e-07, + "blo": 1.41e-07, + "bloodstock": 1.41e-07, + "blued": 1.41e-07, + "boardrooms": 1.41e-07, + "bocelli": 1.41e-07, + "bolles": 1.41e-07, + "boma": 1.41e-07, + "bonbon": 1.41e-07, + "bonino": 1.41e-07, + "bootlegger": 1.41e-07, + "bootsy": 1.41e-07, + "bopping": 1.41e-07, + "boromir": 1.41e-07, + "bostonians": 1.41e-07, + "botanicals": 1.41e-07, + "boutros": 1.41e-07, + "bowsers": 1.41e-07, + "boxs": 1.41e-07, + "brahmana": 1.41e-07, + "brahmaputra": 1.41e-07, + "bratz": 1.41e-07, + "brazing": 1.41e-07, + "breadwinners": 1.41e-07, + "breathlessness": 1.41e-07, + "briles": 1.41e-07, + "brinkman": 1.41e-07, + "brl": 1.41e-07, + "broadhurst": 1.41e-07, + "brr": 1.41e-07, + "buenas": 1.41e-07, + "bulldozing": 1.41e-07, + "bullhead": 1.41e-07, + "bullingdon": 1.41e-07, + "bundt": 1.41e-07, + "bunty": 1.41e-07, + "cabinetry": 1.41e-07, + "cabrillo": 1.41e-07, + "cadastral": 1.41e-07, + "callao": 1.41e-07, + "calvados": 1.41e-07, + "camcorders": 1.41e-07, + "canmore": 1.41e-07, + "canvasses": 1.41e-07, + "capybara": 1.41e-07, + "cardona": 1.41e-07, + "carlsons": 1.41e-07, + "carrigan": 1.41e-07, + "carwyn": 1.41e-07, + "cassies": 1.41e-07, + "catalano": 1.41e-07, + "cavallo": 1.41e-07, + "cavour": 1.41e-07, + "cco": 1.41e-07, + "cdb": 1.41e-07, + "cero": 1.41e-07, + "chacon": 1.41e-07, + "cheesecloth": 1.41e-07, + "chesty": 1.41e-07, + "chex": 1.41e-07, + "chiao": 1.41e-07, + "chiaroscuro": 1.41e-07, + "chitra": 1.41e-07, + "chlorination": 1.41e-07, + "chron": 1.41e-07, + "churchgoers": 1.41e-07, + "chvrches": 1.41e-07, + "cinemascore": 1.41e-07, + "cinnabon": 1.41e-07, + "circassians": 1.41e-07, + "circumpolar": 1.41e-07, + "clannad": 1.41e-07, + "clapboard": 1.41e-07, + "classe": 1.41e-07, + "coalescence": 1.41e-07, + "coccyx": 1.41e-07, + "cockrell": 1.41e-07, + "cocksucking": 1.41e-07, + "cognates": 1.41e-07, + "cogswell": 1.41e-07, + "coldplays": 1.41e-07, + "colfer": 1.41e-07, + "colonizer": 1.41e-07, + "colophon": 1.41e-07, + "comedown": 1.41e-07, + "comeon": 1.41e-07, + "compa": 1.41e-07, + "compleat": 1.41e-07, + "compositor": 1.41e-07, + "contextualized": 1.41e-07, + "coogee": 1.41e-07, + "copiers": 1.41e-07, + "copra": 1.41e-07, + "cornelis": 1.41e-07, + "cornells": 1.41e-07, + "cornflower": 1.41e-07, + "corniche": 1.41e-07, + "coro": 1.41e-07, + "corruptible": 1.41e-07, + "cotes": 1.41e-07, + "cottontail": 1.41e-07, + "coulsons": 1.41e-07, + "counterbalanced": 1.41e-07, + "cowhide": 1.41e-07, + "creaks": 1.41e-07, + "crescents": 1.41e-07, + "crewmember": 1.41e-07, + "crn": 1.41e-07, + "cromarty": 1.41e-07, + "crosswind": 1.41e-07, + "crucifying": 1.41e-07, + "cryptically": 1.41e-07, + "ctm": 1.41e-07, + "curragh": 1.41e-07, + "dacha": 1.41e-07, + "dalam": 1.41e-07, + "daman": 1.41e-07, + "datura": 1.41e-07, + "davila": 1.41e-07, + "debo": 1.41e-07, + "deeps": 1.41e-07, + "deez": 1.41e-07, + "deff": 1.41e-07, + "dehumanize": 1.41e-07, + "dejection": 1.41e-07, + "delineates": 1.41e-07, + "delt": 1.41e-07, + "demobilized": 1.41e-07, + "democratizing": 1.41e-07, + "demystify": 1.41e-07, + "denialism": 1.41e-07, + "denizen": 1.41e-07, + "designator": 1.41e-07, + "deu": 1.41e-07, + "developement": 1.41e-07, + "dhanush": 1.41e-07, + "dharwad": 1.41e-07, + "dialer": 1.41e-07, + "dialogs": 1.41e-07, + "diggings": 1.41e-07, + "dinsmore": 1.41e-07, + "diop": 1.41e-07, + "directionality": 1.41e-07, + "dirhams": 1.41e-07, + "disarms": 1.41e-07, + "dislodging": 1.41e-07, + "disposables": 1.41e-07, + "dlt": 1.41e-07, + "dnieper": 1.41e-07, + "doktor": 1.41e-07, + "drafter": 1.41e-07, + "drang": 1.41e-07, + "dreadnoughts": 1.41e-07, + "drooled": 1.41e-07, + "druggist": 1.41e-07, + "dslrs": 1.41e-07, + "duchesse": 1.41e-07, + "dwarfing": 1.41e-07, + "edamame": 1.41e-07, + "effectors": 1.41e-07, + "efg": 1.41e-07, + "eggy": 1.41e-07, + "eitc": 1.41e-07, + "ejects": 1.41e-07, + "eland": 1.41e-07, + "elegies": 1.41e-07, + "eloping": 1.41e-07, + "elphinstone": 1.41e-07, + "emeli": 1.41e-07, + "encoders": 1.41e-07, + "energetics": 1.41e-07, + "engr": 1.41e-07, + "enticement": 1.41e-07, + "entices": 1.41e-07, + "eol": 1.41e-07, + "epirus": 1.41e-07, + "ericas": 1.41e-07, + "ethnocentric": 1.41e-07, + "etsu": 1.41e-07, + "euphorbia": 1.41e-07, + "evanescent": 1.41e-07, + "exacerbations": 1.41e-07, + "explication": 1.41e-07, + "factoid": 1.41e-07, + "fallibility": 1.41e-07, + "farscape": 1.41e-07, + "fastballs": 1.41e-07, + "fatwas": 1.41e-07, + "fcf": 1.41e-07, + "fenimore": 1.41e-07, + "fettuccine": 1.41e-07, + "filles": 1.41e-07, + "finchs": 1.41e-07, + "fizzing": 1.41e-07, + "flanged": 1.41e-07, + "flintlock": 1.41e-07, + "floe": 1.41e-07, + "florent": 1.41e-07, + "floris": 1.41e-07, + "fluidized": 1.41e-07, + "flw": 1.41e-07, + "footfalls": 1.41e-07, + "forgers": 1.41e-07, + "formalin": 1.41e-07, + "frankl": 1.41e-07, + "fuckwit": 1.41e-07, + "fujimoto": 1.41e-07, + "fulsome": 1.41e-07, + "functor": 1.41e-07, + "fusilier": 1.41e-07, + "futuro": 1.41e-07, + "gadd": 1.41e-07, + "gaetz": 1.41e-07, + "galois": 1.41e-07, + "gaskin": 1.41e-07, + "gastropods": 1.41e-07, + "gasworks": 1.41e-07, + "gauchos": 1.41e-07, + "gcm": 1.41e-07, + "gef": 1.41e-07, + "gigafactory": 1.41e-07, + "ginas": 1.41e-07, + "glazers": 1.41e-07, + "goc": 1.41e-07, + "gojira": 1.41e-07, + "gonadotropin": 1.41e-07, + "gotchu": 1.41e-07, + "gouverneur": 1.41e-07, + "graben": 1.41e-07, + "grado": 1.41e-07, + "grisha": 1.41e-07, + "gulags": 1.41e-07, + "gynaecologists": 1.41e-07, + "gynecomastia": 1.41e-07, + "gyroscopic": 1.41e-07, + "haddonfield": 1.41e-07, + "haircare": 1.41e-07, + "halas": 1.41e-07, + "halleys": 1.41e-07, + "hanseatic": 1.41e-07, + "harari": 1.41e-07, + "harb": 1.41e-07, + "hardwork": 1.41e-07, + "harriett": 1.41e-07, + "haruko": 1.41e-07, + "hauer": 1.41e-07, + "hauntings": 1.41e-07, + "hbcu": 1.41e-07, + "hdx": 1.41e-07, + "headin": 1.41e-07, + "heaths": 1.23e-07, + "hecker": 1.41e-07, + "henin": 1.41e-07, + "henriksen": 1.41e-07, + "heraclitus": 1.41e-07, + "herniation": 1.41e-07, + "herriot": 1.41e-07, + "hewes": 1.41e-07, + "higashi": 1.41e-07, + "hijackings": 1.41e-07, + "hinson": 1.41e-07, + "histologic": 1.41e-07, + "hoag": 1.41e-07, + "hockenheim": 1.41e-07, + "hoda": 1.41e-07, + "holtzman": 1.41e-07, + "homebuyer": 1.41e-07, + "homeware": 1.41e-07, + "honoka": 1.41e-07, + "hooley": 1.41e-07, + "hooping": 1.41e-07, + "hopkinton": 1.41e-07, + "horcrux": 1.41e-07, + "housecleaning": 1.41e-07, + "houseplants": 1.41e-07, + "howley": 1.41e-07, + "humbleness": 1.41e-07, + "humoured": 1.41e-07, + "hund": 1.41e-07, + "hungrily": 1.41e-07, + "hxh": 1.41e-07, + "hypervisor": 1.41e-07, + "hypotheticals": 1.41e-07, + "hythe": 1.41e-07, + "ibb": 1.41e-07, + "iconoclast": 1.41e-07, + "idolatrous": 1.41e-07, + "ihg": 1.41e-07, + "iiia": 1.41e-07, + "illicitly": 1.41e-07, + "impaler": 1.41e-07, + "impish": 1.41e-07, + "implodes": 1.41e-07, + "imsa": 1.41e-07, + "incentivise": 1.41e-07, + "incidentals": 1.41e-07, + "indifferently": 1.41e-07, + "inec": 1.41e-07, + "infesting": 1.41e-07, + "inkwell": 1.41e-07, + "insole": 1.41e-07, + "instrumented": 1.41e-07, + "intercellular": 1.41e-07, + "intermingling": 1.41e-07, + "internationalisation": 1.41e-07, + "intervertebral": 1.41e-07, + "invariable": 1.41e-07, + "inventoried": 1.41e-07, + "iori": 1.41e-07, + "ipecac": 1.41e-07, + "isang": 1.41e-07, + "isbell": 1.41e-07, + "ishant": 1.41e-07, + "isos": 1.41e-07, + "itb": 1.41e-07, + "itr": 1.41e-07, + "ivc": 1.41e-07, + "izz": 1.41e-07, + "jackdaw": 1.41e-07, + "janne": 1.41e-07, + "janvier": 1.41e-07, + "jehu": 1.41e-07, + "jms": 1.41e-07, + "joab": 1.41e-07, + "jobsite": 1.41e-07, + "joburg": 5.62e-08, + "jonze": 1.41e-07, + "jorgenson": 1.41e-07, + "joris": 1.41e-07, + "juxtapose": 1.41e-07, + "kadyrov": 1.41e-07, + "kageyama": 1.41e-07, + "kagoshima": 1.41e-07, + "kampung": 1.41e-07, + "karelia": 1.41e-07, + "kegel": 1.41e-07, + "kellett": 1.41e-07, + "khon": 1.41e-07, + "kilmore": 1.41e-07, + "kindergartners": 1.41e-07, + "kisumu": 1.41e-07, + "kleist": 1.41e-07, + "kluber": 1.41e-07, + "knievel": 1.41e-07, + "kobach": 1.41e-07, + "kof": 1.41e-07, + "kolarov": 1.41e-07, + "kraven": 1.41e-07, + "kremlins": 1.41e-07, + "krull": 1.41e-07, + "kubica": 1.41e-07, + "kumamoto": 1.41e-07, + "kumi": 1.41e-07, + "kumiko": 1.41e-07, + "lacombe": 1.41e-07, + "lactase": 1.41e-07, + "lacustrine": 1.41e-07, + "lairs": 1.41e-07, + "lancasters": 8.91e-08, + "lancing": 1.41e-07, + "landi": 1.41e-07, + "lardner": 1.41e-07, + "lath": 1.41e-07, + "lawmen": 1.41e-07, + "leatherman": 1.41e-07, + "lector": 1.41e-07, + "lemke": 1.41e-07, + "levantine": 1.41e-07, + "lfo": 1.41e-07, + "lianne": 1.41e-07, + "liberalize": 1.41e-07, + "lidded": 1.41e-07, + "liew": 1.41e-07, + "liman": 1.41e-07, + "linares": 1.41e-07, + "liquified": 1.41e-07, + "lirr": 1.41e-07, + "litle": 1.41e-07, + "lme": 1.41e-07, + "lofoten": 1.41e-07, + "looseness": 1.41e-07, + "lovecrafts": 1.41e-07, + "lowen": 1.41e-07, + "lucho": 1.41e-07, + "lurgan": 1.41e-07, + "lxx": 1.41e-07, + "lynden": 1.41e-07, + "lynnwood": 1.41e-07, + "magnon": 1.41e-07, + "makan": 1.41e-07, + "maltas": 1.41e-07, + "malwarebytes": 1.41e-07, + "managment": 1.41e-07, + "maraschino": 1.41e-07, + "marchi": 1.41e-07, + "margaritaville": 1.41e-07, + "marginalizing": 1.41e-07, + "marit": 1.41e-07, + "maritza": 1.41e-07, + "maronite": 1.41e-07, + "maryhill": 1.41e-07, + "matamoros": 1.41e-07, + "maung": 1.41e-07, + "mauritian": 1.41e-07, + "mavic": 1.41e-07, + "mccallister": 1.41e-07, + "mcdiarmid": 1.41e-07, + "mckibben": 1.41e-07, + "mde": 1.41e-07, + "meddlesome": 1.41e-07, + "medes": 1.41e-07, + "megaupload": 1.41e-07, + "megazord": 1.41e-07, + "meikle": 1.41e-07, + "melnyk": 1.41e-07, + "mercantilism": 1.41e-07, + "meself": 1.41e-07, + "michoacan": 1.41e-07, + "microvascular": 1.41e-07, + "midbrain": 1.41e-07, + "mik": 1.41e-07, + "millbank": 1.41e-07, + "milliliter": 1.41e-07, + "millward": 1.41e-07, + "miraflores": 1.41e-07, + "miscreant": 1.41e-07, + "miyako": 1.41e-07, + "mizrahi": 1.41e-07, + "mld": 1.41e-07, + "mnt": 1.41e-07, + "moka": 1.41e-07, + "mollusc": 1.41e-07, + "moneygram": 1.41e-07, + "mourne": 1.41e-07, + "mtd": 1.41e-07, + "multidrug": 1.41e-07, + "muncy": 1.41e-07, + "murr": 1.41e-07, + "murugan": 1.41e-07, + "mutagenic": 1.41e-07, + "nadeau": 1.41e-07, + "nagas": 1.41e-07, + "narasimha": 1.41e-07, + "naru": 1.41e-07, + "natch": 1.41e-07, + "nawa": 1.41e-07, + "nber": 1.41e-07, + "ncl": 1.41e-07, + "nder": 1.41e-07, + "ndsu": 1.41e-07, + "neave": 1.41e-07, + "negara": 1.41e-07, + "nelsen": 1.41e-07, + "nestlings": 1.41e-07, + "neues": 1.41e-07, + "nian": 1.41e-07, + "nickleby": 1.41e-07, + "nightlight": 1.41e-07, + "nodular": 1.41e-07, + "nof": 1.41e-07, + "noonday": 1.41e-07, + "northumbrian": 1.41e-07, + "nosleep": 1.41e-07, + "novelization": 1.41e-07, + "nst": 1.41e-07, + "nullifies": 1.41e-07, + "nunc": 1.41e-07, + "nyo": 1.41e-07, + "obra": 1.41e-07, + "oci": 1.41e-07, + "offenbach": 1.41e-07, + "oge": 1.41e-07, + "ohioans": 1.41e-07, + "okanogan": 1.41e-07, + "olay": 1.41e-07, + "olympiacos": 1.41e-07, + "omc": 1.41e-07, + "ongc": 1.41e-07, + "onomatopoeia": 1.41e-07, + "onr": 1.41e-07, + "ontarians": 1.41e-07, + "opd": 1.41e-07, + "oped": 1.41e-07, + "opposable": 1.41e-07, + "optoelectronic": 1.41e-07, + "orden": 1.41e-07, + "organists": 1.41e-07, + "oriente": 1.41e-07, + "orn": 1.41e-07, + "ostracised": 1.41e-07, + "otley": 1.41e-07, + "outgrowing": 1.41e-07, + "outputting": 1.41e-07, + "outshines": 1.41e-07, + "outsides": 1.41e-07, + "oversubscribed": 1.41e-07, + "paes": 1.41e-07, + "pails": 1.41e-07, + "panky": 1.41e-07, + "pano": 1.41e-07, + "parenthetical": 1.41e-07, + "parkrun": 1.41e-07, + "patels": 1.41e-07, + "pearsall": 1.41e-07, + "pelo": 1.41e-07, + "pemex": 1.41e-07, + "pences": 1.41e-07, + "pendulums": 1.41e-07, + "penetrations": 1.41e-07, + "percolate": 1.41e-07, + "perishables": 1.41e-07, + "pesach": 1.41e-07, + "petyr": 1.41e-07, + "pewds": 1.41e-07, + "pfd": 1.41e-07, + "phasers": 1.41e-07, + "phytophthora": 1.41e-07, + "pili": 1.41e-07, + "pilsen": 1.41e-07, + "pisgah": 1.41e-07, + "piven": 1.41e-07, + "placeholders": 1.41e-07, + "plateaued": 1.41e-07, + "plonk": 1.41e-07, + "pnd": 1.41e-07, + "pokeballs": 1.41e-07, + "pokestop": 1.41e-07, + "polit": 1.41e-07, + "poplars": 1.41e-07, + "portishead": 1.41e-07, + "potd": 1.41e-07, + "poulin": 1.41e-07, + "pouliot": 1.41e-07, + "predispositions": 1.41e-07, + "premed": 1.41e-07, + "premonitions": 1.41e-07, + "preparers": 1.41e-07, + "presss": 1.41e-07, + "presynaptic": 1.41e-07, + "pretences": 1.41e-07, + "prettily": 1.41e-07, + "probert": 1.41e-07, + "prophetess": 1.41e-07, + "propionate": 1.41e-07, + "prostatectomy": 1.41e-07, + "protec": 1.41e-07, + "proterozoic": 1.41e-07, + "psoe": 1.41e-07, + "puede": 1.41e-07, + "pulpits": 1.41e-07, + "pupal": 1.41e-07, + "pyaar": 1.41e-07, + "quadrupole": 1.41e-07, + "quarantines": 1.41e-07, + "quibbling": 1.41e-07, + "quickens": 1.41e-07, + "raad": 1.41e-07, + "radhakrishnan": 1.41e-07, + "raghav": 1.41e-07, + "rajon": 1.41e-07, + "ramesses": 1.41e-07, + "rampages": 1.41e-07, + "rancour": 1.41e-07, + "rawdon": 1.41e-07, + "rdm": 1.41e-07, + "readjusting": 1.41e-07, + "redbook": 1.41e-07, + "redtube": 1.41e-07, + "reenactments": 1.41e-07, + "reentered": 1.41e-07, + "refrigerants": 1.41e-07, + "rega": 1.41e-07, + "regt": 1.41e-07, + "replicators": 1.41e-07, + "reprises": 1.41e-07, + "retrospectives": 1.41e-07, + "rhyolite": 1.41e-07, + "ricker": 1.41e-07, + "riis": 1.41e-07, + "ritchies": 1.41e-07, + "riza": 1.41e-07, + "rondon": 1.41e-07, + "roomies": 1.41e-07, + "roon": 1.41e-07, + "rosner": 1.41e-07, + "rotter": 1.41e-07, + "rouble": 1.41e-07, + "rudderless": 1.41e-07, + "rudimental": 1.41e-07, + "rutten": 1.41e-07, + "saada": 1.41e-07, + "salafist": 1.41e-07, + "salwar": 1.41e-07, + "sambal": 1.41e-07, + "samsonite": 1.41e-07, + "sango": 1.41e-07, + "santiagos": 1.41e-07, + "sarina": 1.41e-07, + "satirizing": 1.41e-07, + "satomi": 1.41e-07, + "saugus": 1.41e-07, + "schall": 1.41e-07, + "schaller": 1.41e-07, + "schlock": 1.41e-07, + "scid": 1.41e-07, + "scituate": 1.41e-07, + "seaforth": 1.41e-07, + "seagram": 1.41e-07, + "seamed": 1.41e-07, + "sebum": 1.41e-07, + "secularized": 1.41e-07, + "seismological": 1.41e-07, + "selectman": 1.41e-07, + "sendoff": 1.41e-07, + "sengupta": 1.41e-07, + "shadowrun": 1.41e-07, + "shakily": 1.41e-07, + "sharad": 1.41e-07, + "shaul": 1.41e-07, + "shinde": 1.41e-07, + "shinin": 1.41e-07, + "shintaro": 1.41e-07, + "shion": 1.41e-07, + "shirleys": 1.41e-07, + "shoehorn": 1.41e-07, + "shrove": 1.41e-07, + "shrubby": 1.41e-07, + "shubert": 1.41e-07, + "sida": 1.41e-07, + "signifiers": 1.41e-07, + "silicones": 1.41e-07, + "silversmiths": 1.41e-07, + "simmers": 1.41e-07, + "sinews": 1.41e-07, + "sixtieth": 1.41e-07, + "smashwords": 1.41e-07, + "snapdeal": 1.41e-07, + "sneers": 1.41e-07, + "snowshoeing": 1.41e-07, + "sophistry": 1.41e-07, + "southamptons": 1.41e-07, + "sparrowhawk": 1.41e-07, + "speckles": 1.41e-07, + "sperms": 1.41e-07, + "spiers": 1.41e-07, + "splattering": 1.41e-07, + "springvale": 1.41e-07, + "spurlock": 1.41e-07, + "spys": 1.41e-07, + "sqn": 1.41e-07, + "starnes": 1.41e-07, + "staterooms": 1.41e-07, + "stephenie": 1.41e-07, + "steric": 1.41e-07, + "stilled": 1.41e-07, + "stoichiometry": 1.41e-07, + "stowing": 1.41e-07, + "stricker": 1.41e-07, + "strongs": 1.41e-07, + "structuralist": 1.41e-07, + "stuffer": 1.41e-07, + "subfield": 1.41e-07, + "subgenres": 1.41e-07, + "sublimated": 1.41e-07, + "succor": 1.41e-07, + "sudetenland": 1.41e-07, + "sumerians": 1.41e-07, + "summ": 1.41e-07, + "sunderlands": 1.41e-07, + "sundries": 1.41e-07, + "supernumerary": 1.41e-07, + "supersize": 1.41e-07, + "surrealistic": 1.41e-07, + "susu": 1.41e-07, + "switchgear": 1.41e-07, + "swivels": 1.41e-07, + "sylhet": 1.41e-07, + "synchronously": 1.41e-07, + "syncretism": 1.41e-07, + "syntactically": 1.41e-07, + "synthesizes": 1.41e-07, + "tabb": 1.41e-07, + "tamron": 1.41e-07, + "targa": 1.41e-07, + "tarragona": 1.41e-07, + "taubman": 1.41e-07, + "taupo": 1.41e-07, + "tct": 1.41e-07, + "tda": 1.41e-07, + "tellus": 1.41e-07, + "tempah": 1.41e-07, + "terrorised": 1.41e-07, + "terrorizes": 1.41e-07, + "tevin": 1.41e-07, + "thaliana": 1.41e-07, + "thoughtlessly": 1.41e-07, + "throckmorton": 1.41e-07, + "tifa": 1.41e-07, + "timelessness": 1.41e-07, + "timi": 1.41e-07, + "tolstoys": 1.41e-07, + "tonia": 1.41e-07, + "toolkits": 1.41e-07, + "totter": 1.41e-07, + "trea": 1.41e-07, + "trejo": 1.41e-07, + "trex": 1.41e-07, + "trialling": 1.41e-07, + "trilogies": 1.41e-07, + "trumpeters": 1.41e-07, + "tsao": 1.41e-07, + "tsun": 1.41e-07, + "tsundere": 1.41e-07, + "tule": 1.41e-07, + "tunneled": 1.41e-07, + "tura": 1.41e-07, + "turris": 1.41e-07, + "tutto": 1.41e-07, + "tweaker": 1.41e-07, + "tweeps": 1.41e-07, + "twirls": 1.41e-07, + "tyke": 1.41e-07, + "tyrus": 1.41e-07, + "ual": 1.41e-07, + "uefi": 1.41e-07, + "ulema": 1.41e-07, + "ulrike": 1.41e-07, + "umts": 1.41e-07, + "unbutton": 1.41e-07, + "uncharitable": 1.41e-07, + "uncoupled": 1.41e-07, + "unfrozen": 1.41e-07, + "unhurried": 1.41e-07, + "unipolar": 1.41e-07, + "unluckily": 1.41e-07, + "unpopulated": 1.41e-07, + "uris": 1.41e-07, + "uttermost": 1.41e-07, + "vals": 1.02e-07, + "varmint": 1.41e-07, + "vars": 1.41e-07, + "vca": 1.41e-07, + "vectoring": 1.41e-07, + "veera": 1.41e-07, + "verdasco": 1.41e-07, + "vereen": 1.41e-07, + "vernier": 1.41e-07, + "vici": 1.41e-07, + "violeta": 1.41e-07, + "vitis": 1.41e-07, + "vmi": 1.41e-07, + "voz": 1.41e-07, + "vreeland": 1.41e-07, + "waterworld": 1.41e-07, + "weaponize": 1.41e-07, + "wearied": 1.41e-07, + "webgl": 1.41e-07, + "wendigo": 1.41e-07, + "westernization": 1.41e-07, + "westerville": 1.41e-07, + "westphal": 1.41e-07, + "weta": 1.41e-07, + "whatcom": 1.41e-07, + "wheelies": 1.41e-07, + "whiney": 1.41e-07, + "whizzed": 1.41e-07, + "whoopie": 1.41e-07, + "whoppers": 1.41e-07, + "wmata": 1.41e-07, + "wokingham": 1.41e-07, + "woodsy": 1.41e-07, + "woong": 1.41e-07, + "workforces": 1.41e-07, + "wpi": 1.41e-07, + "wynton": 1.41e-07, + "yagi": 1.41e-07, + "yamagata": 1.41e-07, + "yanni": 1.41e-07, + "yips": 1.41e-07, + "yodeling": 1.41e-07, + "yoi": 1.41e-07, + "yuga": 1.41e-07, + "yugi": 1.41e-07, + "yz": 1.41e-07, + "zenfone": 1.41e-07, + "zenon": 1.41e-07, + "zetterberg": 1.41e-07, + "zeynep": 1.41e-07, + "zinke": 1.41e-07, + "ziplock": 1.41e-07, + "aaahhh": 1.38e-07, + "aalborg": 1.38e-07, + "aami": 1.38e-07, + "accumulators": 1.38e-07, + "activ": 1.38e-07, + "adjectival": 1.38e-07, + "adobo": 1.38e-07, + "aegypti": 1.38e-07, + "agonize": 1.38e-07, + "agw": 1.38e-07, + "ahrens": 1.38e-07, + "ahu": 1.38e-07, + "aine": 1.38e-07, + "aisling": 1.38e-07, + "ajs": 7.94e-08, + "aji": 1.38e-07, + "akamai": 1.38e-07, + "akhil": 1.38e-07, + "aladdins": 1.38e-07, + "alcazar": 1.38e-07, + "alfaro": 1.38e-07, + "alfonse": 1.38e-07, + "alif": 1.38e-07, + "allendale": 1.38e-07, + "almanack": 1.38e-07, + "alongs": 1.38e-07, + "altus": 1.38e-07, + "amaryllis": 1.38e-07, + "amash": 1.38e-07, + "americanus": 1.38e-07, + "anadarko": 1.38e-07, + "ananias": 1.38e-07, + "anastomosis": 1.38e-07, + "andheri": 1.38e-07, + "angiogram": 1.38e-07, + "animism": 1.38e-07, + "anjem": 1.38e-07, + "ankit": 1.38e-07, + "antihypertensive": 1.38e-07, + "antimicrobials": 1.38e-07, + "antone": 1.38e-07, + "apus": 2.69e-08, + "aras": 1.38e-07, + "arecibo": 1.38e-07, + "arion": 1.38e-07, + "armadillos": 1.38e-07, + "armories": 1.38e-07, + "arnica": 1.38e-07, + "ashington": 1.38e-07, + "ashur": 1.38e-07, + "assemblywoman": 1.38e-07, + "assignable": 1.38e-07, + "asti": 1.38e-07, + "astrophotography": 1.38e-07, + "atavistic": 1.38e-07, + "atcc": 1.38e-07, + "atd": 1.38e-07, + "augurs": 1.38e-07, + "autocorrelation": 1.38e-07, + "autumns": 8.91e-08, + "avas": 1.38e-07, + "avinash": 1.38e-07, + "avl": 1.38e-07, + "ayako": 1.38e-07, + "backman": 1.38e-07, + "backstories": 1.38e-07, + "balham": 1.38e-07, + "ballplayers": 1.38e-07, + "banna": 1.38e-07, + "bannu": 1.38e-07, + "bano": 1.38e-07, + "barefaced": 1.38e-07, + "barwick": 1.38e-07, + "basemen": 1.38e-07, + "baser": 1.38e-07, + "basse": 1.38e-07, + "bastien": 1.38e-07, + "batiste": 1.38e-07, + "beatable": 1.38e-07, + "beauteous": 1.38e-07, + "bedminster": 1.38e-07, + "beeper": 1.38e-07, + "benjie": 1.38e-07, + "benner": 1.38e-07, + "berezovsky": 1.38e-07, + "bergh": 1.38e-07, + "berhad": 1.38e-07, + "berrien": 1.38e-07, + "betamax": 1.38e-07, + "bhawan": 1.38e-07, + "biancas": 1.38e-07, + "bimbos": 1.38e-07, + "birgit": 1.38e-07, + "blacklight": 1.38e-07, + "blackmailer": 1.38e-07, + "blackmun": 1.38e-07, + "blaire": 1.38e-07, + "blakeley": 1.38e-07, + "blalock": 1.38e-07, + "blockheads": 1.38e-07, + "blueline": 1.38e-07, + "boehringer": 1.38e-07, + "boks": 1.38e-07, + "bonucci": 1.38e-07, + "borrego": 1.38e-07, + "botnets": 1.38e-07, + "bozak": 1.38e-07, + "bradycardia": 1.38e-07, + "braggart": 1.38e-07, + "branchlets": 1.38e-07, + "breakdancing": 1.38e-07, + "breccia": 1.38e-07, + "brekkie": 1.38e-07, + "breville": 1.38e-07, + "brookville": 1.38e-07, + "brotherhoods": 1.32e-07, + "bruschetta": 1.38e-07, + "btl": 1.38e-07, + "bucher": 1.38e-07, + "buen": 1.38e-07, + "bupa": 1.38e-07, + "burchell": 1.38e-07, + "burmas": 1.38e-07, + "byword": 1.38e-07, + "cabelas": 1.38e-07, + "cackled": 1.38e-07, + "caffrey": 1.38e-07, + "caisson": 1.38e-07, + "callander": 1.38e-07, + "callously": 1.38e-07, + "camas": 1.38e-07, + "camillus": 1.38e-07, + "campanella": 1.38e-07, + "candelaria": 1.38e-07, + "canongate": 1.38e-07, + "canseco": 1.38e-07, + "cardiffs": 1.38e-07, + "carhartt": 1.38e-07, + "caris": 1.38e-07, + "carlingford": 1.38e-07, + "carola": 1.38e-07, + "carousing": 1.38e-07, + "carwash": 1.38e-07, + "casterly": 1.38e-07, + "catchup": 1.38e-07, + "catkins": 1.38e-07, + "cauvery": 1.38e-07, + "cavorting": 1.38e-07, + "celebrants": 1.38e-07, + "cgmp": 1.38e-07, + "chandi": 1.38e-07, + "chandu": 1.38e-07, + "characterising": 1.38e-07, + "cheviot": 1.38e-07, + "chios": 1.38e-07, + "chiyo": 1.38e-07, + "chlorides": 1.38e-07, + "chocolatier": 1.38e-07, + "choicest": 1.38e-07, + "chopins": 1.38e-07, + "chota": 1.38e-07, + "chryslers": 1.38e-07, + "cleantech": 1.38e-07, + "clearview": 1.38e-07, + "cliffhangers": 1.38e-07, + "clucking": 1.38e-07, + "clymer": 1.38e-07, + "cockatoos": 1.38e-07, + "cockerell": 1.38e-07, + "codependent": 1.38e-07, + "cohomology": 1.38e-07, + "commandery": 1.38e-07, + "communalism": 1.38e-07, + "communi": 1.38e-07, + "commutator": 1.38e-07, + "compactly": 1.38e-07, + "comscore": 1.38e-07, + "condensers": 1.38e-07, + "congratz": 1.38e-07, + "congressionally": 1.38e-07, + "conidia": 1.38e-07, + "conlin": 1.38e-07, + "conny": 1.38e-07, + "contractile": 1.38e-07, + "convulsion": 1.38e-07, + "copernican": 1.38e-07, + "cordes": 1.38e-07, + "corin": 1.38e-07, + "corpulent": 1.38e-07, + "corralled": 1.38e-07, + "corrals": 1.38e-07, + "cph": 1.38e-07, + "crawlspace": 1.38e-07, + "criminologists": 1.38e-07, + "crispness": 1.38e-07, + "crysis": 1.38e-07, + "cutch": 1.38e-07, + "cutlet": 1.38e-07, + "dania": 1.38e-07, + "daoud": 1.38e-07, + "darussalam": 1.38e-07, + "darwish": 1.38e-07, + "deadbolt": 1.38e-07, + "deary": 1.38e-07, + "deboer": 1.38e-07, + "debora": 1.38e-07, + "deckers": 8.32e-08, + "defeatism": 1.38e-07, + "deforming": 1.38e-07, + "defrosted": 1.38e-07, + "demain": 1.38e-07, + "demoralising": 1.38e-07, + "denominators": 1.38e-07, + "deriding": 1.38e-07, + "determinative": 1.38e-07, + "determiner": 1.38e-07, + "dgaf": 1.38e-07, + "diavolo": 1.38e-07, + "dicker": 1.38e-07, + "digressions": 1.38e-07, + "dineen": 1.38e-07, + "dions": 1.38e-07, + "diouf": 1.38e-07, + "directionless": 1.38e-07, + "directorships": 1.38e-07, + "discoloured": 1.38e-07, + "dishonoured": 1.38e-07, + "disp": 1.38e-07, + "dissents": 1.38e-07, + "dojs": 1.38e-07, + "dolittle": 1.38e-07, + "doner": 1.38e-07, + "donte": 1.38e-07, + "douchey": 1.38e-07, + "doxorubicin": 1.38e-07, + "drownings": 1.38e-07, + "drumline": 1.38e-07, + "drunker": 1.38e-07, + "duodenal": 1.38e-07, + "duping": 1.38e-07, + "dupuy": 1.38e-07, + "dural": 1.38e-07, + "duryea": 1.38e-07, + "dynastys": 1.38e-07, + "earache": 1.38e-07, + "echinacea": 1.38e-07, + "echl": 1.38e-07, + "econo": 1.38e-07, + "edgars": 8.71e-08, + "edoardo": 1.38e-07, + "egm": 1.38e-07, + "egyptology": 1.38e-07, + "eiger": 1.38e-07, + "elastin": 1.38e-07, + "emanations": 1.38e-07, + "emerick": 1.38e-07, + "emporio": 1.38e-07, + "encasing": 1.38e-07, + "endometrium": 1.38e-07, + "engelbert": 1.38e-07, + "enriquez": 1.38e-07, + "enum": 1.38e-07, + "eran": 1.38e-07, + "erdman": 1.38e-07, + "erste": 1.38e-07, + "escobars": 1.38e-07, + "esma": 1.38e-07, + "esthers": 1.38e-07, + "eugenic": 1.38e-07, + "exh": 1.38e-07, + "explosiveness": 1.38e-07, + "extirpated": 1.38e-07, + "eying": 1.38e-07, + "fabolous": 1.38e-07, + "fairbank": 1.38e-07, + "fairhaven": 1.38e-07, + "fangirls": 1.38e-07, + "farmiga": 1.38e-07, + "fatso": 1.38e-07, + "fdg": 1.38e-07, + "fede": 1.38e-07, + "feebly": 1.38e-07, + "ferdinands": 1.38e-07, + "fernie": 1.38e-07, + "ferrera": 1.38e-07, + "ffi": 1.38e-07, + "fhe": 1.38e-07, + "figuration": 1.38e-07, + "finkle": 1.38e-07, + "fitzmaurice": 1.38e-07, + "fivethirtyeight": 1.38e-07, + "foist": 1.38e-07, + "foliar": 1.38e-07, + "forrests": 1.38e-07, + "forrestal": 1.38e-07, + "fowle": 1.38e-07, + "franked": 1.38e-07, + "freeborn": 1.38e-07, + "frente": 1.38e-07, + "frio": 1.38e-07, + "frites": 1.38e-07, + "fromage": 1.38e-07, + "furosemide": 1.38e-07, + "furst": 1.38e-07, + "gabled": 1.38e-07, + "gak": 1.38e-07, + "gammy": 1.38e-07, + "gannets": 1.38e-07, + "ganon": 1.38e-07, + "garfields": 1.38e-07, + "gaster": 1.38e-07, + "gentian": 1.38e-07, + "gerhart": 1.38e-07, + "germplasm": 1.38e-07, + "gerrymandered": 1.38e-07, + "geta": 1.38e-07, + "giannini": 1.38e-07, + "giardia": 1.38e-07, + "gideons": 1.38e-07, + "gilford": 1.38e-07, + "gillum": 1.38e-07, + "gits": 1.38e-07, + "gladbach": 1.38e-07, + "gld": 1.38e-07, + "glencore": 1.38e-07, + "glendora": 1.38e-07, + "governorships": 1.38e-07, + "grandy": 1.38e-07, + "granlund": 1.38e-07, + "gravels": 1.38e-07, + "greatful": 1.38e-07, + "grigsby": 1.38e-07, + "groveling": 1.38e-07, + "gstaad": 1.38e-07, + "gurgle": 1.38e-07, + "habsburgs": 1.38e-07, + "hafner": 1.38e-07, + "hailsham": 1.38e-07, + "halak": 1.38e-07, + "hallucinated": 1.38e-07, + "hame": 1.38e-07, + "hammurabi": 1.38e-07, + "hapa": 1.38e-07, + "harasser": 1.38e-07, + "hardwell": 1.38e-07, + "harmonys": 1.38e-07, + "haro": 1.38e-07, + "hatchets": 1.38e-07, + "hatem": 1.38e-07, + "hazleton": 1.38e-07, + "hba": 1.38e-07, + "headcanon": 1.38e-07, + "hedland": 1.38e-07, + "heide": 1.38e-07, + "hempel": 1.38e-07, + "henn": 1.38e-07, + "hereabouts": 1.38e-07, + "hexane": 1.38e-07, + "hilla": 1.38e-07, + "hiroko": 1.38e-07, + "histrionics": 1.38e-07, + "hmi": 1.38e-07, + "hoardings": 1.38e-07, + "homebody": 1.38e-07, + "homekit": 1.38e-07, + "homeostatic": 1.38e-07, + "hornsey": 1.38e-07, + "horsehair": 1.38e-07, + "howitt": 1.38e-07, + "hsia": 1.38e-07, + "hsn": 1.38e-07, + "hubspot": 1.38e-07, + "hunny": 1.38e-07, + "hussar": 1.38e-07, + "iast": 1.38e-07, + "ibt": 1.38e-07, + "iconoclasm": 1.38e-07, + "idolizing": 1.38e-07, + "ier": 1.38e-07, + "iiii": 1.38e-07, + "ilhan": 1.38e-07, + "ilkley": 1.38e-07, + "ilsa": 1.38e-07, + "indah": 1.38e-07, + "indicting": 1.38e-07, + "indignantly": 1.38e-07, + "inductors": 1.38e-07, + "inflammable": 1.38e-07, + "infosec": 1.38e-07, + "inhomogeneous": 1.38e-07, + "insaf": 1.38e-07, + "instanced": 1.38e-07, + "institutionalize": 1.38e-07, + "insurrections": 1.38e-07, + "intermarried": 1.38e-07, + "intramolecular": 1.38e-07, + "ionospheric": 1.38e-07, + "isadore": 1.38e-07, + "ising": 1.38e-07, + "jabhat": 1.38e-07, + "jagdish": 1.38e-07, + "jaggery": 1.38e-07, + "jalandhar": 1.38e-07, + "jayanti": 1.38e-07, + "jedburgh": 1.38e-07, + "jeer": 1.38e-07, + "jep": 1.38e-07, + "jibes": 1.38e-07, + "judgy": 1.38e-07, + "juntas": 1.15e-07, + "kafr": 1.38e-07, + "kalpana": 1.38e-07, + "kanal": 1.38e-07, + "kants": 1.38e-07, + "karman": 1.38e-07, + "kartel": 1.38e-07, + "kaun": 1.38e-07, + "kayden": 1.38e-07, + "kennelly": 1.38e-07, + "kif": 1.38e-07, + "killswitch": 1.38e-07, + "knuckleheads": 1.38e-07, + "krabi": 1.38e-07, + "krall": 1.38e-07, + "kur": 1.38e-07, + "laffer": 1.38e-07, + "lagan": 1.38e-07, + "lalita": 1.38e-07, + "lalor": 1.38e-07, + "laminating": 1.38e-07, + "landrieu": 1.38e-07, + "langevin": 1.38e-07, + "lanyards": 1.38e-07, + "latoya": 1.38e-07, + "lauries": 1.38e-07, + "ldf": 1.38e-07, + "legionaries": 1.38e-07, + "legitimise": 1.38e-07, + "lermontov": 1.38e-07, + "letizia": 1.38e-07, + "lhd": 1.38e-07, + "liek": 1.38e-07, + "lightbox": 1.38e-07, + "linx": 1.38e-07, + "livingroom": 1.38e-07, + "lnc": 1.38e-07, + "lndian": 1.38e-07, + "lockdowns": 1.38e-07, + "loewen": 1.38e-07, + "loews": 5.5e-08, + "logar": 1.38e-07, + "logout": 1.38e-07, + "longlist": 1.38e-07, + "longshore": 1.38e-07, + "lonny": 1.38e-07, + "lorenzos": 1.38e-07, + "lorton": 1.38e-07, + "ltl": 1.38e-07, + "ludgate": 1.38e-07, + "luh": 1.38e-07, + "lut": 1.38e-07, + "lvmh": 1.38e-07, + "macauley": 1.38e-07, + "macaws": 1.38e-07, + "madura": 1.38e-07, + "malic": 1.38e-07, + "mannose": 1.38e-07, + "manoeuvred": 1.38e-07, + "mansplaining": 1.38e-07, + "mantles": 1.38e-07, + "marcelino": 1.38e-07, + "marchese": 1.38e-07, + "mariette": 1.38e-07, + "markups": 1.38e-07, + "marmion": 1.38e-07, + "masaru": 1.38e-07, + "masted": 1.38e-07, + "masterstroke": 1.38e-07, + "masuda": 1.38e-07, + "maturely": 1.38e-07, + "mcburney": 1.38e-07, + "mcn": 1.38e-07, + "mcvie": 1.38e-07, + "mechanicsburg": 1.38e-07, + "meditates": 1.38e-07, + "megalomania": 1.38e-07, + "mendacity": 1.38e-07, + "merce": 1.38e-07, + "merk": 1.38e-07, + "merwin": 1.38e-07, + "meson": 1.38e-07, + "metacarpal": 1.38e-07, + "mexicali": 1.38e-07, + "michels": 9.55e-08, + "millville": 1.38e-07, + "mirabilis": 1.38e-07, + "mirnas": 1.38e-07, + "miscavige": 1.38e-07, + "misperception": 1.38e-07, + "mocs": 1.38e-07, + "moj": 1.38e-07, + "mommsen": 1.38e-07, + "monckton": 1.38e-07, + "monomeric": 1.38e-07, + "mononuclear": 1.38e-07, + "monopole": 1.38e-07, + "monounsaturated": 1.38e-07, + "monroeville": 1.38e-07, + "morphe": 1.38e-07, + "mosfets": 1.38e-07, + "multivariable": 1.38e-07, + "murch": 1.38e-07, + "mycenae": 1.38e-07, + "mycoplasma": 1.38e-07, + "myerson": 1.38e-07, + "natter": 1.38e-07, + "ncd": 1.38e-07, + "nclb": 1.38e-07, + "ndaa": 1.38e-07, + "nefertiti": 1.38e-07, + "neoplasia": 1.38e-07, + "neotropical": 1.38e-07, + "nephritis": 1.38e-07, + "netapp": 1.38e-07, + "neurodegeneration": 1.38e-07, + "neurofibromatosis": 1.38e-07, + "nigam": 1.38e-07, + "nitpicking": 1.38e-07, + "nitwit": 1.38e-07, + "nodejs": 1.38e-07, + "noirs": 1.38e-07, + "nonparametric": 1.38e-07, + "npn": 1.38e-07, + "nrdc": 1.38e-07, + "nuzzling": 1.38e-07, + "nvme": 1.38e-07, + "nyg": 1.38e-07, + "nzs": 5.37e-08, + "obsequious": 1.38e-07, + "ochreous": 1.38e-07, + "oedipal": 1.38e-07, + "ogier": 1.38e-07, + "ohhhhhh": 1.38e-07, + "ohr": 1.38e-07, + "ohv": 1.38e-07, + "oilseed": 1.38e-07, + "oise": 1.38e-07, + "olean": 1.38e-07, + "ollies": 1.38e-07, + "omd": 1.38e-07, + "onerepublic": 1.38e-07, + "oulu": 1.38e-07, + "overcoats": 1.38e-07, + "overstretched": 1.38e-07, + "owler": 1.38e-07, + "pacioretty": 1.38e-07, + "palliser": 1.38e-07, + "pangolins": 1.38e-07, + "pantheism": 1.38e-07, + "pantomimes": 1.38e-07, + "parcells": 1.38e-07, + "parenchyma": 1.38e-07, + "parkas": 1.38e-07, + "pascagoula": 1.38e-07, + "pecorino": 1.38e-07, + "penticton": 1.38e-07, + "perezs": 1.38e-07, + "pericardial": 1.38e-07, + "permittivity": 1.38e-07, + "perplexity": 1.38e-07, + "pervasiveness": 1.38e-07, + "photocopier": 1.38e-07, + "phuong": 1.38e-07, + "pigeonholed": 1.38e-07, + "pigott": 1.38e-07, + "pikmin": 1.38e-07, + "pipework": 1.38e-07, + "placated": 1.38e-07, + "plumper": 1.38e-07, + "plunket": 1.38e-07, + "polarising": 1.38e-07, + "poliovirus": 1.38e-07, + "polyamide": 1.38e-07, + "portend": 1.38e-07, + "portentous": 1.38e-07, + "porth": 1.38e-07, + "postmen": 1.38e-07, + "potentiometer": 1.38e-07, + "praline": 1.38e-07, + "predicaments": 1.38e-07, + "prematurity": 1.38e-07, + "prettiness": 1.38e-07, + "privat": 1.38e-07, + "proconsul": 1.38e-07, + "proofreader": 1.38e-07, + "propositioned": 1.38e-07, + "prosecutes": 1.38e-07, + "proudhon": 1.38e-07, + "pugnacious": 1.38e-07, + "pyrophosphate": 1.38e-07, + "qn": 1.38e-07, + "queensway": 1.38e-07, + "queerness": 1.38e-07, + "quintuple": 1.38e-07, + "racketeer": 1.38e-07, + "rade": 1.38e-07, + "radioisotopes": 1.38e-07, + "raku": 1.38e-07, + "rans": 5.37e-08, + "rapa": 1.38e-07, + "razz": 1.38e-07, + "readjusted": 1.38e-07, + "rearm": 1.38e-07, + "reburied": 1.38e-07, + "recalibration": 1.38e-07, + "recency": 1.38e-07, + "recoils": 1.38e-07, + "recusal": 1.38e-07, + "redblacks": 1.38e-07, + "regaled": 1.38e-07, + "regius": 1.38e-07, + "rehearing": 1.38e-07, + "rehoming": 1.38e-07, + "relaunching": 1.38e-07, + "renae": 1.38e-07, + "repressions": 1.38e-07, + "resend": 1.38e-07, + "resoundingly": 1.38e-07, + "resubmitted": 1.38e-07, + "reverberates": 1.38e-07, + "reverential": 1.38e-07, + "rga": 1.38e-07, + "rhi": 1.38e-07, + "rhythmical": 1.38e-07, + "richt": 1.38e-07, + "rigel": 1.38e-07, + "rightists": 1.38e-07, + "rightmost": 1.38e-07, + "rivendell": 1.38e-07, + "rmr": 1.38e-07, + "rnai": 1.38e-07, + "rockdale": 1.38e-07, + "rollerblading": 1.38e-07, + "romeos": 8.13e-08, + "romi": 1.38e-07, + "rowdies": 1.38e-07, + "rubi": 1.38e-07, + "rudders": 1.38e-07, + "rudge": 1.38e-07, + "ruggedness": 1.38e-07, + "ruprecht": 1.38e-07, + "rutting": 1.38e-07, + "safford": 1.38e-07, + "safra": 1.38e-07, + "sain": 1.38e-07, + "salvadorans": 1.38e-07, + "sandbanks": 1.38e-07, + "sangamon": 1.38e-07, + "sansom": 1.38e-07, + "santayana": 1.38e-07, + "saoirse": 1.38e-07, + "sarum": 1.38e-07, + "satisfyingly": 1.38e-07, + "sawgrass": 1.38e-07, + "saxby": 1.38e-07, + "scapes": 1.38e-07, + "scarcer": 1.38e-07, + "schiavo": 1.38e-07, + "schoolcraft": 1.38e-07, + "scissorhands": 1.38e-07, + "sclc": 1.38e-07, + "scu": 1.38e-07, + "scythes": 1.38e-07, + "sdm": 1.38e-07, + "sebastiano": 1.38e-07, + "seinen": 1.38e-07, + "seiya": 1.38e-07, + "seouls": 1.38e-07, + "septicaemia": 1.38e-07, + "seria": 1.38e-07, + "sertraline": 1.38e-07, + "servi": 1.38e-07, + "sfn": 1.38e-07, + "shaina": 1.38e-07, + "shankly": 1.38e-07, + "sharmas": 1.38e-07, + "shd": 1.38e-07, + "shepperton": 1.38e-07, + "shifa": 1.38e-07, + "shinawatra": 1.38e-07, + "shittin": 1.38e-07, + "shorebirds": 1.38e-07, + "showtimes": 1.35e-07, + "shraddha": 1.38e-07, + "shuffleboard": 1.38e-07, + "shuler": 1.38e-07, + "sidestepping": 1.38e-07, + "sidewalls": 1.38e-07, + "sihanouk": 1.38e-07, + "silvano": 1.38e-07, + "similes": 1.38e-07, + "simpkins": 1.38e-07, + "sinfonia": 1.38e-07, + "sintered": 1.38e-07, + "skee": 1.38e-07, + "skink": 1.38e-07, + "slashdot": 1.38e-07, + "slaven": 1.38e-07, + "slimmest": 1.38e-07, + "sloot": 1.38e-07, + "sluggishness": 1.38e-07, + "smithville": 1.38e-07, + "sociolinguistic": 1.38e-07, + "somerton": 1.38e-07, + "spic": 1.38e-07, + "spinelli": 1.38e-07, + "spondylitis": 1.38e-07, + "spooned": 1.38e-07, + "spotsylvania": 1.38e-07, + "spratly": 1.38e-07, + "springwood": 1.38e-07, + "ssf": 1.38e-07, + "starck": 1.38e-07, + "stardew": 1.38e-07, + "starman": 1.38e-07, + "starrett": 1.38e-07, + "statesboro": 1.38e-07, + "steeds": 1.38e-07, + "stegen": 1.38e-07, + "steno": 1.38e-07, + "stephano": 1.38e-07, + "stickman": 1.38e-07, + "stieglitz": 1.38e-07, + "storch": 1.38e-07, + "stortford": 1.38e-07, + "strathfield": 1.38e-07, + "striae": 1.38e-07, + "stupefied": 1.38e-07, + "subclinical": 1.38e-07, + "suboxone": 1.38e-07, + "substantiation": 1.38e-07, + "sucka": 1.38e-07, + "suleman": 1.38e-07, + "summerhouse": 1.38e-07, + "superchargers": 1.38e-07, + "sushil": 1.38e-07, + "svend": 1.38e-07, + "sympathiser": 1.38e-07, + "tadeusz": 1.38e-07, + "tagger": 1.38e-07, + "taichung": 1.38e-07, + "talktalk": 1.38e-07, + "tangos": 1.38e-07, + "tanjung": 1.38e-07, + "tapi": 1.38e-07, + "tarawa": 1.38e-07, + "teabag": 1.38e-07, + "teehee": 1.38e-07, + "tegra": 1.38e-07, + "teleological": 1.38e-07, + "tenanted": 1.38e-07, + "tesol": 1.38e-07, + "theologies": 1.38e-07, + "throttles": 1.38e-07, + "tickler": 1.38e-07, + "tipo": 1.38e-07, + "tippecanoe": 1.38e-07, + "titted": 1.38e-07, + "tlp": 1.38e-07, + "toady": 1.38e-07, + "todt": 1.38e-07, + "tollway": 1.38e-07, + "toolset": 1.38e-07, + "toriyama": 1.38e-07, + "touraine": 1.38e-07, + "toxics": 1.38e-07, + "trane": 1.38e-07, + "transkei": 1.38e-07, + "travelodge": 1.38e-07, + "trinh": 1.38e-07, + "trinitys": 1.38e-07, + "trost": 1.38e-07, + "troth": 1.38e-07, + "tsukuba": 1.38e-07, + "tta": 1.38e-07, + "tunings": 1.38e-07, + "turbotax": 1.38e-07, + "turnarounds": 1.38e-07, + "twe": 1.38e-07, + "twu": 1.38e-07, + "typhon": 1.38e-07, + "ucsc": 1.38e-07, + "uighurs": 1.38e-07, + "ukr": 1.38e-07, + "umayyad": 1.38e-07, + "umg": 1.38e-07, + "umpteen": 1.38e-07, + "unctad": 1.38e-07, + "unfree": 1.38e-07, + "unfurnished": 1.38e-07, + "unluckiest": 1.38e-07, + "unwholesome": 1.38e-07, + "updraft": 1.38e-07, + "upmost": 1.38e-07, + "ustream": 1.38e-07, + "vandalia": 1.38e-07, + "vcc": 1.38e-07, + "vedra": 1.38e-07, + "velveeta": 1.38e-07, + "venkat": 1.38e-07, + "venta": 1.38e-07, + "viewport": 1.38e-07, + "virago": 1.38e-07, + "volcanos": 1.2e-07, + "vts": 1.38e-07, + "wachovia": 1.38e-07, + "wafa": 1.38e-07, + "wallys": 1.38e-07, + "wanyama": 1.38e-07, + "watsonville": 1.38e-07, + "wbz": 1.38e-07, + "weatherly": 1.38e-07, + "websphere": 1.38e-07, + "wellhead": 1.38e-07, + "westbrooks": 5.01e-08, + "whaaat": 1.38e-07, + "wheelbarrows": 1.38e-07, + "wheezy": 1.38e-07, + "wilkinsons": 1.38e-07, + "wimmer": 1.38e-07, + "wirtz": 1.38e-07, + "wistar": 1.38e-07, + "woden": 1.38e-07, + "wole": 1.38e-07, + "woodridge": 1.38e-07, + "wookie": 1.38e-07, + "wos": 1.38e-07, + "wristwatches": 1.38e-07, + "wrongness": 1.38e-07, + "wunder": 1.38e-07, + "wwiii": 1.38e-07, + "xbmc": 1.38e-07, + "xxxii": 1.38e-07, + "xxxv": 1.38e-07, + "yaman": 1.38e-07, + "yandere": 1.38e-07, + "yegor": 1.38e-07, + "yello": 1.38e-07, + "yelping": 1.38e-07, + "yolande": 1.38e-07, + "yoshimura": 1.38e-07, + "younique": 1.38e-07, + "yttrium": 1.38e-07, + "zana": 1.38e-07, + "zebedee": 1.38e-07, + "zenobia": 1.38e-07, + "zululand": 1.38e-07, + "abattoirs": 1.35e-07, + "abdo": 1.35e-07, + "abels": 5.37e-08, + "abril": 1.35e-07, + "abstruse": 1.35e-07, + "acland": 1.35e-07, + "adaline": 1.35e-07, + "adenoma": 1.35e-07, + "adobes": 1.35e-07, + "adverbial": 1.35e-07, + "aftra": 1.35e-07, + "agriculturally": 1.35e-07, + "aileron": 1.35e-07, + "airey": 1.35e-07, + "akiva": 1.35e-07, + "alachua": 1.35e-07, + "albi": 1.35e-07, + "albo": 1.35e-07, + "alderney": 1.35e-07, + "aldus": 1.35e-07, + "aleksey": 1.35e-07, + "alicias": 1.35e-07, + "alinsky": 1.35e-07, + "almshouses": 1.35e-07, + "aloofness": 1.35e-07, + "alpe": 1.35e-07, + "alpena": 1.35e-07, + "amala": 1.35e-07, + "amanita": 1.35e-07, + "ambling": 1.35e-07, + "ambrosius": 1.35e-07, + "ameliorated": 1.35e-07, + "anaesthetics": 1.35e-07, + "angelico": 1.35e-07, + "annis": 1.35e-07, + "anstruther": 1.35e-07, + "anticipations": 1.35e-07, + "aop": 1.35e-07, + "apollon": 1.35e-07, + "aptitudes": 1.35e-07, + "apy": 1.35e-07, + "arabiya": 1.35e-07, + "arachidonic": 1.35e-07, + "arbitrariness": 1.35e-07, + "arezzo": 1.35e-07, + "argosy": 1.35e-07, + "arod": 1.35e-07, + "arsenide": 1.35e-07, + "asamoah": 1.35e-07, + "asan": 1.35e-07, + "ashbourne": 1.35e-07, + "assaf": 1.35e-07, + "asswipe": 1.35e-07, + "astutely": 1.35e-07, + "atheneum": 1.35e-07, + "atmospherics": 1.35e-07, + "atomized": 1.35e-07, + "auer": 1.35e-07, + "ayam": 1.35e-07, + "backlund": 1.35e-07, + "backsides": 1.35e-07, + "badasses": 1.35e-07, + "bahru": 1.35e-07, + "bairns": 1.35e-07, + "bajo": 1.35e-07, + "baldini": 1.35e-07, + "ballards": 1.35e-07, + "ballparks": 1.35e-07, + "barringer": 1.35e-07, + "barro": 1.35e-07, + "basho": 1.35e-07, + "basils": 1.35e-07, + "basile": 1.35e-07, + "bassists": 1.35e-07, + "bayelsa": 1.35e-07, + "beas": 1.07e-07, + "bedraggled": 1.35e-07, + "begonia": 1.35e-07, + "benchers": 1.35e-07, + "benq": 1.35e-07, + "berardi": 1.35e-07, + "bermudez": 1.35e-07, + "berto": 1.35e-07, + "berwyn": 1.35e-07, + "besar": 1.35e-07, + "bga": 1.35e-07, + "bilinguals": 1.35e-07, + "billups": 1.35e-07, + "bingeing": 1.35e-07, + "biogeochemical": 1.35e-07, + "bioluminescence": 1.35e-07, + "blais": 1.35e-07, + "blathering": 1.35e-07, + "blurbs": 1.35e-07, + "bni": 1.35e-07, + "boatyard": 1.35e-07, + "bodin": 1.35e-07, + "bookend": 1.35e-07, + "bookers": 1.17e-07, + "boones": 1.35e-07, + "bossman": 1.35e-07, + "bowmans": 1.35e-07, + "bramall": 1.35e-07, + "bratt": 1.35e-07, + "bricker": 1.35e-07, + "brome": 1.35e-07, + "bronstein": 1.35e-07, + "brushwork": 1.35e-07, + "bubby": 1.35e-07, + "buc": 1.35e-07, + "burdock": 1.35e-07, + "burgher": 1.35e-07, + "bursitis": 1.35e-07, + "bushmaster": 1.35e-07, + "busines": 1.35e-07, + "busybody": 1.35e-07, + "butlins": 1.35e-07, + "butyrate": 1.35e-07, + "buzzcocks": 1.35e-07, + "cackles": 1.35e-07, + "cada": 1.35e-07, + "caiaphas": 1.35e-07, + "cajuns": 1.35e-07, + "campana": 1.35e-07, + "cand": 1.35e-07, + "capably": 1.35e-07, + "carnatic": 1.35e-07, + "carolinian": 1.35e-07, + "carradine": 1.35e-07, + "casi": 1.35e-07, + "catsuit": 1.35e-07, + "cbrn": 1.35e-07, + "cch": 1.35e-07, + "ceasar": 1.35e-07, + "cedarville": 1.35e-07, + "cellino": 1.35e-07, + "ceremoniously": 1.35e-07, + "chainmail": 1.35e-07, + "chalks": 1.35e-07, + "chamfered": 1.35e-07, + "chardon": 1.35e-07, + "chateaubriand": 1.35e-07, + "chateaux": 1.35e-07, + "chieh": 1.35e-07, + "clarkston": 1.35e-07, + "clindamycin": 1.35e-07, + "coffe": 1.35e-07, + "coffeemaker": 1.35e-07, + "cometary": 1.35e-07, + "concomitantly": 1.35e-07, + "conformations": 1.35e-07, + "constantia": 1.35e-07, + "consulship": 1.35e-07, + "contemptuously": 1.35e-07, + "contrapuntal": 1.35e-07, + "corbis": 1.35e-07, + "cornrows": 1.35e-07, + "cosponsor": 1.35e-07, + "costin": 1.35e-07, + "courteously": 1.35e-07, + "cremer": 1.35e-07, + "croom": 1.35e-07, + "crowdfund": 1.35e-07, + "curnow": 1.35e-07, + "cybercriminals": 1.35e-07, + "czarist": 1.35e-07, + "damas": 1.35e-07, + "dannie": 1.35e-07, + "darrens": 1.35e-07, + "dashiell": 1.35e-07, + "databank": 1.35e-07, + "davidoff": 1.35e-07, + "deanne": 1.35e-07, + "decapitating": 1.35e-07, + "decouple": 1.35e-07, + "dek": 1.35e-07, + "deltoid": 1.35e-07, + "democratize": 1.35e-07, + "demonology": 1.35e-07, + "depositor": 1.35e-07, + "dervishes": 1.35e-07, + "detoxify": 1.35e-07, + "deyoung": 1.35e-07, + "dharam": 1.35e-07, + "diaby": 1.35e-07, + "dickenss": 1.35e-07, + "dictionnaire": 1.35e-07, + "dimbleby": 1.35e-07, + "disfigure": 1.35e-07, + "disowning": 1.35e-07, + "dmb": 1.35e-07, + "doggone": 1.35e-07, + "donat": 1.35e-07, + "dorner": 1.35e-07, + "drabble": 1.35e-07, + "drafty": 1.35e-07, + "dratini": 1.35e-07, + "dressmaking": 1.35e-07, + "dujardin": 1.35e-07, + "dunker": 1.35e-07, + "dutertes": 1.35e-07, + "dyche": 1.35e-07, + "earnt": 1.35e-07, + "ebrahim": 1.35e-07, + "ebrd": 1.35e-07, + "ecclesial": 1.35e-07, + "ecd": 1.35e-07, + "edens": 1.32e-07, + "eintracht": 1.35e-07, + "elderberry": 1.35e-07, + "embargoed": 1.35e-07, + "embolization": 1.35e-07, + "enfranchised": 1.35e-07, + "engelhardt": 1.35e-07, + "engg": 1.35e-07, + "entrenchment": 1.35e-07, + "epiphanies": 1.35e-07, + "epochal": 1.35e-07, + "equis": 1.35e-07, + "esrb": 1.35e-07, + "essien": 1.35e-07, + "evaders": 1.35e-07, + "everclear": 1.35e-07, + "eveyone": 1.35e-07, + "ewoks": 1.35e-07, + "facultative": 1.35e-07, + "fairlie": 1.35e-07, + "fajardo": 1.35e-07, + "faxing": 1.35e-07, + "fci": 1.35e-07, + "fels": 1.35e-07, + "fermilab": 1.35e-07, + "ferranti": 1.35e-07, + "festivus": 1.35e-07, + "ffg": 1.35e-07, + "fhwa": 1.35e-07, + "figureheads": 1.35e-07, + "filho": 1.35e-07, + "filmy": 1.35e-07, + "fio": 1.35e-07, + "flapjack": 1.35e-07, + "fledging": 1.35e-07, + "flore": 1.35e-07, + "flotus": 1.35e-07, + "flr": 1.35e-07, + "flyknit": 1.35e-07, + "fogle": 1.35e-07, + "fonzie": 1.35e-07, + "forreal": 1.35e-07, + "foursomes": 1.35e-07, + "framerate": 1.35e-07, + "freest": 1.35e-07, + "freeza": 1.35e-07, + "frenchwoman": 1.35e-07, + "fribourg": 1.35e-07, + "frink": 1.35e-07, + "fru": 1.35e-07, + "fto": 1.35e-07, + "futaba": 1.35e-07, + "gallimard": 1.35e-07, + "gambon": 1.35e-07, + "gametime": 1.35e-07, + "gane": 1.35e-07, + "garang": 1.35e-07, + "gatewood": 1.35e-07, + "gaw": 1.35e-07, + "generalists": 1.35e-07, + "georgiou": 1.35e-07, + "gershom": 1.35e-07, + "ghq": 1.35e-07, + "girdles": 1.35e-07, + "girlies": 1.35e-07, + "giulianis": 1.35e-07, + "gleams": 1.35e-07, + "gnostics": 1.35e-07, + "goji": 1.35e-07, + "golson": 1.35e-07, + "gorey": 1.35e-07, + "gover": 1.35e-07, + "gpas": 1.35e-07, + "gpp": 1.35e-07, + "granulation": 1.35e-07, + "grapevines": 1.35e-07, + "gratefulness": 1.35e-07, + "gravitationally": 1.35e-07, + "greyson": 1.35e-07, + "guesthouses": 1.35e-07, + "guptill": 1.35e-07, + "gussie": 1.35e-07, + "guttering": 1.35e-07, + "gwens": 1.35e-07, + "gye": 1.35e-07, + "hangmans": 1.35e-07, + "hanh": 1.35e-07, + "hanke": 1.35e-07, + "hannaford": 1.35e-07, + "haps": 1.35e-07, + "harr": 1.35e-07, + "hastie": 1.35e-07, + "hatchbacks": 1.35e-07, + "haugh": 1.35e-07, + "haunches": 1.35e-07, + "hawkings": 1.35e-07, + "hayleys": 1.35e-07, + "hebden": 1.35e-07, + "hebridean": 1.35e-07, + "hek": 1.35e-07, + "helenas": 1.35e-07, + "hendrixs": 1.35e-07, + "hepatology": 1.35e-07, + "hetfield": 1.35e-07, + "highball": 1.35e-07, + "hindquarters": 1.35e-07, + "historicism": 1.35e-07, + "holdfast": 1.35e-07, + "holey": 1.35e-07, + "holgate": 1.35e-07, + "homewares": 1.35e-07, + "hootie": 1.35e-07, + "horrify": 1.35e-07, + "hoshino": 1.35e-07, + "hovey": 1.35e-07, + "hpi": 1.35e-07, + "hsd": 1.35e-07, + "hsg": 1.35e-07, + "huf": 1.35e-07, + "hunterdon": 1.35e-07, + "iar": 1.35e-07, + "ibuki": 1.35e-07, + "ical": 1.35e-07, + "iht": 1.35e-07, + "ilyas": 1.35e-07, + "imai": 1.35e-07, + "imbibing": 1.35e-07, + "imprisons": 1.35e-07, + "inestimable": 1.35e-07, + "inferential": 1.35e-07, + "ingenue": 1.35e-07, + "inhofe": 1.35e-07, + "inis": 1.35e-07, + "inno": 1.35e-07, + "instantiated": 1.35e-07, + "intellects": 1.35e-07, + "internees": 1.35e-07, + "introns": 1.35e-07, + "ioan": 1.35e-07, + "ipsec": 1.35e-07, + "ital": 1.35e-07, + "izu": 1.35e-07, + "jacksonian": 1.35e-07, + "jagan": 1.35e-07, + "jaisalmer": 1.35e-07, + "jao": 1.35e-07, + "jaxon": 1.35e-07, + "jeane": 1.35e-07, + "jolies": 1.35e-07, + "jony": 1.35e-07, + "judaea": 1.35e-07, + "juiciest": 1.35e-07, + "kae": 1.35e-07, + "kahns": 1.35e-07, + "kaling": 1.35e-07, + "kalispell": 1.35e-07, + "kamo": 1.35e-07, + "kanaan": 1.35e-07, + "kaput": 1.35e-07, + "karuna": 1.35e-07, + "kawa": 1.35e-07, + "kefir": 1.35e-07, + "keisuke": 1.35e-07, + "kelty": 1.35e-07, + "kembla": 1.35e-07, + "kentuckians": 1.35e-07, + "keown": 1.35e-07, + "kerensky": 1.35e-07, + "kinesthetic": 1.35e-07, + "kinoshita": 1.35e-07, + "kiro": 1.35e-07, + "kitab": 1.35e-07, + "knitter": 1.35e-07, + "koku": 1.35e-07, + "konica": 1.35e-07, + "koon": 1.35e-07, + "kosh": 1.35e-07, + "kotler": 1.35e-07, + "krabby": 1.35e-07, + "kreis": 1.35e-07, + "krish": 1.35e-07, + "kro": 1.35e-07, + "kudu": 1.35e-07, + "kudzu": 1.35e-07, + "kultur": 1.35e-07, + "kunkel": 1.35e-07, + "kupchak": 1.35e-07, + "lackland": 1.35e-07, + "lacrimal": 1.35e-07, + "lancome": 1.35e-07, + "lantz": 1.35e-07, + "lapeer": 1.35e-07, + "laterite": 1.35e-07, + "learnin": 1.35e-07, + "leatherface": 1.35e-07, + "lebrun": 1.35e-07, + "leff": 1.35e-07, + "lefroy": 1.35e-07, + "legalese": 1.35e-07, + "lengthier": 1.35e-07, + "lessig": 1.35e-07, + "lethally": 1.35e-07, + "leva": 1.35e-07, + "levitated": 1.35e-07, + "liberias": 1.35e-07, + "liebherr": 1.35e-07, + "liev": 1.35e-07, + "lightman": 1.35e-07, + "lilongwe": 1.35e-07, + "limey": 1.35e-07, + "linga": 1.35e-07, + "lipitor": 1.35e-07, + "litho": 1.35e-07, + "loanwords": 1.35e-07, + "logician": 1.35e-07, + "lohmann": 1.35e-07, + "lolling": 1.35e-07, + "longa": 1.35e-07, + "longus": 1.35e-07, + "lorax": 1.35e-07, + "lout": 1.35e-07, + "lugged": 1.35e-07, + "luncheons": 1.35e-07, + "lunenburg": 1.35e-07, + "lupa": 1.35e-07, + "lymphedema": 1.35e-07, + "mahe": 1.35e-07, + "mahlers": 1.35e-07, + "mahwah": 1.35e-07, + "maintainability": 1.35e-07, + "majoras": 1.35e-07, + "maleness": 1.35e-07, + "malinga": 1.35e-07, + "manistee": 1.35e-07, + "maoism": 1.35e-07, + "marcuse": 1.35e-07, + "marikana": 1.35e-07, + "marikina": 1.35e-07, + "marjoram": 1.35e-07, + "marland": 1.35e-07, + "marrero": 1.35e-07, + "marriner": 1.35e-07, + "maruyama": 1.35e-07, + "matas": 7.76e-08, + "matinees": 1.35e-07, + "maupassant": 1.35e-07, + "maxon": 1.35e-07, + "maysville": 1.35e-07, + "mayweathers": 1.35e-07, + "mazatlan": 1.35e-07, + "mcandrew": 1.35e-07, + "mcbeal": 1.35e-07, + "mccreery": 1.35e-07, + "mccue": 1.35e-07, + "mcduffie": 1.35e-07, + "mcintire": 1.35e-07, + "mckechnie": 1.35e-07, + "mckeever": 1.35e-07, + "mcmillen": 1.35e-07, + "meaninglessness": 1.35e-07, + "megalopolis": 1.35e-07, + "megrahi": 1.35e-07, + "melchizedek": 1.35e-07, + "menschen": 1.35e-07, + "merrifield": 1.35e-07, + "mesmeric": 1.35e-07, + "metronidazole": 1.35e-07, + "meunier": 1.35e-07, + "mey": 1.35e-07, + "mfer": 1.35e-07, + "michio": 1.35e-07, + "micra": 1.35e-07, + "micronutrient": 1.35e-07, + "middles": 1.35e-07, + "midian": 1.35e-07, + "mightnt": 1.35e-07, + "mineta": 1.35e-07, + "minks": 1.35e-07, + "minsky": 1.35e-07, + "mirotic": 1.35e-07, + "mispronounced": 1.35e-07, + "moberly": 1.35e-07, + "mobilizes": 1.35e-07, + "modish": 1.35e-07, + "moebius": 1.35e-07, + "mohenjo": 1.35e-07, + "molnar": 1.35e-07, + "monae": 1.35e-07, + "moneymaking": 1.35e-07, + "moorhouse": 1.35e-07, + "morans": 1.35e-07, + "morphy": 1.35e-07, + "mostar": 1.35e-07, + "mountie": 1.35e-07, + "moustafa": 1.35e-07, + "moyen": 1.35e-07, + "mpo": 1.35e-07, + "mres": 1.35e-07, + "mucked": 1.35e-07, + "muddling": 1.35e-07, + "multiplexes": 1.35e-07, + "multipoint": 1.35e-07, + "mushtaq": 1.35e-07, + "muth": 1.35e-07, + "mutuality": 1.35e-07, + "myasthenia": 1.35e-07, + "nadals": 1.35e-07, + "naftali": 1.35e-07, + "nahuatl": 1.35e-07, + "naltrexone": 1.35e-07, + "nant": 1.35e-07, + "naphtha": 1.35e-07, + "neenah": 1.35e-07, + "neoconservatives": 1.35e-07, + "nerfed": 1.35e-07, + "nesters": 1.35e-07, + "neurologically": 1.35e-07, + "newsgroup": 1.35e-07, + "newtownards": 1.35e-07, + "nitpick": 1.35e-07, + "nlm": 1.35e-07, + "noaas": 1.35e-07, + "nonpayment": 1.35e-07, + "noontime": 1.35e-07, + "northwestward": 1.35e-07, + "novitiate": 1.35e-07, + "nunu": 1.35e-07, + "nutted": 1.35e-07, + "obed": 1.35e-07, + "obr": 1.35e-07, + "obsesses": 1.35e-07, + "occident": 1.35e-07, + "octal": 1.35e-07, + "odu": 1.35e-07, + "oesophageal": 1.35e-07, + "offed": 1.35e-07, + "okubo": 1.35e-07, + "olle": 1.35e-07, + "onofrio": 1.35e-07, + "opps": 1.35e-07, + "orations": 1.35e-07, + "oratorical": 1.35e-07, + "orfeo": 1.35e-07, + "organelle": 1.35e-07, + "origine": 1.35e-07, + "ossified": 1.35e-07, + "ostentatiously": 1.35e-07, + "osteomyelitis": 1.35e-07, + "oti": 1.35e-07, + "otsuka": 1.35e-07, + "oude": 1.35e-07, + "outsell": 1.35e-07, + "outselling": 1.35e-07, + "overlong": 1.35e-07, + "overstay": 1.35e-07, + "oviduct": 1.35e-07, + "owa": 1.35e-07, + "oxidizes": 1.35e-07, + "oxtail": 1.35e-07, + "pablos": 1.35e-07, + "paca": 1.35e-07, + "packin": 1.35e-07, + "padlocked": 1.35e-07, + "padova": 1.35e-07, + "paiute": 1.35e-07, + "paix": 1.35e-07, + "palanquin": 1.35e-07, + "palu": 1.35e-07, + "palumbo": 1.35e-07, + "pandavas": 1.35e-07, + "panhandling": 1.35e-07, + "pantene": 1.35e-07, + "parsippany": 1.35e-07, + "passin": 1.35e-07, + "paternoster": 1.35e-07, + "pathankot": 1.35e-07, + "peavey": 1.35e-07, + "pedant": 1.35e-07, + "pedicels": 1.35e-07, + "penitential": 1.35e-07, + "perfections": 1.35e-07, + "perineal": 1.35e-07, + "peritoneum": 1.35e-07, + "persimmons": 1.35e-07, + "phablet": 1.35e-07, + "pharos": 1.35e-07, + "phb": 1.35e-07, + "phillys": 1.35e-07, + "phosphors": 1.35e-07, + "physicochemical": 1.35e-07, + "piller": 1.35e-07, + "pisano": 1.35e-07, + "pitchford": 1.35e-07, + "placido": 1.35e-07, + "plaits": 1.35e-07, + "plutocrats": 1.35e-07, + "politik": 1.35e-07, + "pollan": 1.35e-07, + "pontchartrain": 1.35e-07, + "pontificating": 1.35e-07, + "poofy": 1.35e-07, + "poppys": 1.35e-07, + "portents": 1.35e-07, + "portrush": 1.35e-07, + "postmates": 1.35e-07, + "prednisolone": 1.35e-07, + "preschooler": 1.35e-07, + "pretorius": 1.35e-07, + "prins": 1.35e-07, + "prm": 1.35e-07, + "progestin": 1.35e-07, + "protectorates": 1.35e-07, + "protruded": 1.35e-07, + "prudhomme": 1.35e-07, + "publique": 1.35e-07, + "pugsley": 1.35e-07, + "pumbaa": 1.35e-07, + "punchbowl": 1.35e-07, + "purley": 1.35e-07, + "pusey": 1.35e-07, + "quelques": 1.35e-07, + "quieting": 1.35e-07, + "quilty": 1.35e-07, + "raconteur": 1.35e-07, + "radi": 1.35e-07, + "radionuclide": 1.35e-07, + "raghuram": 1.35e-07, + "raheel": 1.35e-07, + "rahway": 1.35e-07, + "ramadhan": 1.35e-07, + "rast": 1.35e-07, + "raters": 1.35e-07, + "rawley": 1.35e-07, + "razr": 1.35e-07, + "reamed": 1.35e-07, + "rebuffs": 1.35e-07, + "reccomend": 1.35e-07, + "reck": 1.35e-07, + "recode": 1.35e-07, + "rectors": 1.35e-07, + "recut": 1.35e-07, + "reddened": 1.35e-07, + "reddington": 1.35e-07, + "reflexology": 1.35e-07, + "reforma": 1.35e-07, + "rehn": 1.35e-07, + "religio": 1.35e-07, + "remitting": 1.35e-07, + "repellents": 1.35e-07, + "republish": 1.35e-07, + "resta": 1.35e-07, + "reticular": 1.35e-07, + "reynaud": 1.35e-07, + "rhenish": 1.35e-07, + "rimmel": 1.35e-07, + "rion": 1.35e-07, + "riskiest": 1.35e-07, + "riverina": 1.35e-07, + "robey": 1.35e-07, + "rockwall": 1.35e-07, + "roddenberry": 1.35e-07, + "roguish": 1.35e-07, + "roid": 1.35e-07, + "roiling": 1.35e-07, + "roisin": 1.35e-07, + "romanization": 1.35e-07, + "roosts": 1.35e-07, + "rosenzweig": 1.35e-07, + "rsr": 1.35e-07, + "rubik": 1.35e-07, + "ruder": 1.35e-07, + "russos": 1.35e-07, + "rva": 1.35e-07, + "ryukyu": 1.35e-07, + "sabe": 1.35e-07, + "sables": 1.35e-07, + "saddling": 1.35e-07, + "sakharov": 1.35e-07, + "salubrious": 1.35e-07, + "samosa": 1.35e-07, + "samu": 1.35e-07, + "sangakkara": 1.35e-07, + "sarfraz": 1.35e-07, + "sbd": 1.35e-07, + "scheherazade": 1.35e-07, + "schizo": 1.35e-07, + "scientifique": 1.35e-07, + "scipione": 1.35e-07, + "scullys": 1.35e-07, + "seabury": 1.35e-07, + "secy": 1.35e-07, + "segunda": 1.35e-07, + "sewa": 1.35e-07, + "shak": 1.35e-07, + "shanley": 1.35e-07, + "sharifs": 1.35e-07, + "sharpies": 1.35e-07, + "sheard": 1.35e-07, + "shirazi": 1.35e-07, + "shm": 1.35e-07, + "shon": 1.35e-07, + "shoud": 1.35e-07, + "shumway": 1.35e-07, + "sias": 6.76e-08, + "sialkot": 1.35e-07, + "sicknesses": 1.35e-07, + "sidelights": 1.35e-07, + "sige": 1.35e-07, + "sillier": 1.35e-07, + "simplifications": 1.35e-07, + "simulacrum": 1.35e-07, + "sinema": 1.35e-07, + "sinfield": 1.35e-07, + "siraj": 1.35e-07, + "skeins": 1.35e-07, + "sledging": 1.35e-07, + "slimane": 1.35e-07, + "slumbers": 1.35e-07, + "smarten": 1.35e-07, + "smiler": 1.35e-07, + "sniveling": 1.35e-07, + "sociales": 1.35e-07, + "soliman": 1.35e-07, + "somnath": 1.35e-07, + "southworth": 1.35e-07, + "speci": 1.35e-07, + "speedball": 1.35e-07, + "speedup": 1.35e-07, + "spermatozoa": 1.35e-07, + "spielman": 1.35e-07, + "spor": 1.35e-07, + "spork": 1.35e-07, + "spymaster": 1.35e-07, + "ssrs": 1.35e-07, + "stablemate": 1.35e-07, + "stackpole": 1.35e-07, + "stadio": 1.35e-07, + "stas": 1.35e-07, + "statesville": 1.35e-07, + "stefans": 1.35e-07, + "stendhal": 1.35e-07, + "stennis": 1.35e-07, + "stoically": 1.35e-07, + "stolz": 1.35e-07, + "stonington": 1.35e-07, + "straker": 1.35e-07, + "strongmen": 1.35e-07, + "strzok": 1.35e-07, + "stubblefield": 1.35e-07, + "studia": 1.35e-07, + "sturtevant": 1.35e-07, + "subletting": 1.35e-07, + "subliminally": 1.35e-07, + "submersion": 1.35e-07, + "sugarland": 1.35e-07, + "sugg": 1.35e-07, + "sugiyama": 1.35e-07, + "sulfides": 1.35e-07, + "sunbeams": 1.35e-07, + "sunbelt": 1.35e-07, + "supernatant": 1.35e-07, + "superset": 1.35e-07, + "suvarnabhumi": 1.35e-07, + "sweetcorn": 1.35e-07, + "swi": 1.35e-07, + "swilling": 1.35e-07, + "switchbacks": 1.35e-07, + "symbolist": 1.35e-07, + "synopses": 1.35e-07, + "tarquin": 1.35e-07, + "taverna": 1.35e-07, + "teenie": 1.35e-07, + "telemachus": 1.35e-07, + "tensioned": 1.35e-07, + "tepe": 1.35e-07, + "terrane": 1.35e-07, + "tescos": 5.89e-08, + "tharoor": 1.35e-07, + "tharp": 1.35e-07, + "thnx": 1.35e-07, + "thompkins": 1.35e-07, + "thrashers": 1.35e-07, + "throbs": 1.35e-07, + "tientsin": 1.35e-07, + "tirpitz": 1.35e-07, + "tjs": 7.59e-08, + "tnr": 1.35e-07, + "toohey": 1.35e-07, + "toolbars": 1.35e-07, + "tooley": 1.35e-07, + "toorak": 1.35e-07, + "toque": 1.35e-07, + "tors": 1.35e-07, + "toshiro": 1.35e-07, + "toty": 1.35e-07, + "tpe": 1.35e-07, + "transience": 1.35e-07, + "transubstantiation": 1.35e-07, + "tremain": 1.35e-07, + "trg": 1.35e-07, + "trivium": 1.35e-07, + "trousseau": 1.35e-07, + "trudi": 1.35e-07, + "trung": 1.35e-07, + "ttg": 1.35e-07, + "tunde": 1.35e-07, + "tvt": 1.35e-07, + "twaddle": 1.35e-07, + "twilights": 6.17e-08, + "tympanum": 1.35e-07, + "typewritten": 1.35e-07, + "uche": 1.35e-07, + "udine": 1.35e-07, + "ullmann": 1.35e-07, + "unabomber": 1.35e-07, + "unbleached": 1.35e-07, + "uneconomical": 1.35e-07, + "unlikeable": 1.35e-07, + "unmoving": 1.35e-07, + "unsociable": 1.35e-07, + "unu": 1.35e-07, + "upcycled": 1.35e-07, + "usurpers": 1.35e-07, + "utan": 1.35e-07, + "valdivia": 1.35e-07, + "valentia": 1.35e-07, + "valuer": 1.35e-07, + "vaulter": 1.35e-07, + "vcd": 1.35e-07, + "veen": 1.35e-07, + "vendettas": 1.35e-07, + "vermicelli": 1.35e-07, + "verney": 1.35e-07, + "vhp": 1.35e-07, + "villard": 1.35e-07, + "vining": 1.35e-07, + "violas": 6.31e-08, + "virgilio": 1.35e-07, + "virtualized": 1.35e-07, + "vizag": 1.35e-07, + "vocalizing": 1.35e-07, + "vodacom": 1.35e-07, + "voronezh": 1.35e-07, + "vouching": 1.35e-07, + "walliams": 1.35e-07, + "watan": 1.35e-07, + "webtoon": 1.35e-07, + "weeny": 1.35e-07, + "welford": 1.35e-07, + "wenner": 1.35e-07, + "whacky": 1.35e-07, + "whatley": 1.35e-07, + "whittemore": 1.35e-07, + "wia": 1.35e-07, + "wigner": 1.35e-07, + "willesden": 1.35e-07, + "winer": 1.35e-07, + "winnetka": 1.35e-07, + "wizz": 1.35e-07, + "wlw": 1.35e-07, + "worksop": 1.35e-07, + "wormed": 1.35e-07, + "wpm": 1.35e-07, + "wsm": 1.35e-07, + "wyclef": 1.35e-07, + "wyomings": 1.35e-07, + "xlvii": 1.35e-07, + "xxxiii": 1.35e-07, + "yavapai": 1.35e-07, + "yekaterinburg": 1.35e-07, + "yerkes": 1.35e-07, + "yogurts": 1.35e-07, + "yokoyama": 1.35e-07, + "yomiuri": 1.35e-07, + "yutaka": 1.35e-07, + "zahara": 1.35e-07, + "zale": 1.35e-07, + "zant": 1.35e-07, + "zeigler": 1.35e-07, + "zephaniah": 1.35e-07, + "zippered": 1.35e-07, + "zondervan": 1.35e-07, + "zyl": 1.35e-07, + "ablett": 1.32e-07, + "absolutly": 1.32e-07, + "absolves": 1.32e-07, + "academe": 1.32e-07, + "accelerant": 1.32e-07, + "accredit": 1.32e-07, + "accuweather": 1.32e-07, + "acqua": 1.32e-07, + "adducts": 1.32e-07, + "aerojet": 1.32e-07, + "agon": 1.32e-07, + "agric": 1.32e-07, + "agronomic": 1.32e-07, + "aharon": 1.32e-07, + "ahuja": 1.32e-07, + "aisi": 1.32e-07, + "aleksandra": 1.32e-07, + "alginate": 1.32e-07, + "allready": 1.32e-07, + "amiright": 1.32e-07, + "ammann": 1.32e-07, + "amv": 1.32e-07, + "anamorphic": 1.32e-07, + "andersonville": 1.32e-07, + "andthe": 1.32e-07, + "animo": 1.32e-07, + "ansible": 1.32e-07, + "anta": 1.32e-07, + "antacid": 1.32e-07, + "antimalarial": 1.32e-07, + "antitumor": 1.32e-07, + "apothecaries": 1.32e-07, + "appellations": 1.32e-07, + "appelle": 1.32e-07, + "appending": 1.32e-07, + "applecare": 1.32e-07, + "aranda": 1.32e-07, + "armie": 1.32e-07, + "aromatase": 1.32e-07, + "aroostook": 1.32e-07, + "aryeh": 1.32e-07, + "ashrae": 1.32e-07, + "ashurst": 1.32e-07, + "assessee": 1.32e-07, + "asymmetries": 1.32e-07, + "atholl": 1.32e-07, + "auster": 1.32e-07, + "avro": 1.32e-07, + "avx": 1.32e-07, + "ayutthaya": 1.32e-07, + "baat": 1.32e-07, + "backhaul": 1.32e-07, + "backwash": 1.32e-07, + "bagot": 1.32e-07, + "bakke": 1.32e-07, + "balin": 1.32e-07, + "baluch": 1.32e-07, + "banes": 6.92e-08, + "banishes": 1.32e-07, + "bantams": 1.32e-07, + "barabbas": 1.32e-07, + "barbecuing": 1.32e-07, + "basinger": 1.32e-07, + "bathory": 1.32e-07, + "baze": 1.32e-07, + "bbg": 1.32e-07, + "beatiful": 1.32e-07, + "becasue": 1.32e-07, + "beeman": 1.32e-07, + "behaviorally": 1.32e-07, + "bellarmine": 1.32e-07, + "belligerence": 1.32e-07, + "belmar": 1.32e-07, + "bergdorf": 1.32e-07, + "berri": 1.32e-07, + "bestival": 1.32e-07, + "bibliophile": 1.32e-07, + "bicentenary": 1.32e-07, + "bielsa": 1.32e-07, + "billow": 1.32e-07, + "binet": 1.32e-07, + "binyamin": 1.32e-07, + "bipartite": 1.32e-07, + "birgitte": 1.32e-07, + "blabbering": 1.32e-07, + "blackfeet": 1.32e-07, + "blacklists": 1.32e-07, + "blackstock": 1.32e-07, + "blakemore": 1.32e-07, + "blart": 1.32e-07, + "bleat": 1.32e-07, + "bleeker": 1.32e-07, + "blinkered": 1.32e-07, + "bloodhounds": 1.32e-07, + "bloodstone": 1.32e-07, + "bluefield": 1.32e-07, + "bluefish": 1.32e-07, + "bnl": 1.32e-07, + "boardgame": 1.32e-07, + "bochy": 1.32e-07, + "bonnies": 5.13e-08, + "boor": 1.32e-07, + "borini": 1.32e-07, + "bornstein": 1.32e-07, + "bostick": 1.32e-07, + "boule": 1.32e-07, + "boxcars": 1.32e-07, + "bozos": 1.32e-07, + "brakeman": 1.32e-07, + "brander": 1.32e-07, + "brasileiro": 1.32e-07, + "brgy": 1.32e-07, + "briquettes": 1.32e-07, + "brixham": 1.32e-07, + "broadwell": 1.32e-07, + "brooklands": 1.32e-07, + "brundle": 1.32e-07, + "brune": 1.32e-07, + "bullshitter": 1.32e-07, + "bumpkin": 1.32e-07, + "butterflys": 1.32e-07, + "cabanas": 1.32e-07, + "cadell": 1.32e-07, + "caden": 1.32e-07, + "cairngorms": 1.32e-07, + "cakey": 1.32e-07, + "calton": 1.32e-07, + "cambio": 1.32e-07, + "caprica": 1.32e-07, + "capsizing": 1.32e-07, + "carlys": 1.32e-07, + "carmax": 1.32e-07, + "carper": 1.32e-07, + "casson": 1.32e-07, + "catalyzing": 1.32e-07, + "catfight": 1.32e-07, + "catz": 1.32e-07, + "caus": 1.32e-07, + "cellulitis": 1.32e-07, + "cenk": 1.32e-07, + "cephalic": 1.32e-07, + "charleroi": 1.32e-07, + "chauffeured": 1.32e-07, + "chay": 1.32e-07, + "cheatham": 1.32e-07, + "chel": 1.32e-07, + "chenango": 1.32e-07, + "chis": 9.77e-08, + "chn": 1.32e-07, + "choirmaster": 1.32e-07, + "chok": 1.32e-07, + "cici": 1.32e-07, + "circulations": 1.32e-07, + "civet": 1.32e-07, + "civilizing": 1.32e-07, + "claudias": 1.32e-07, + "clemence": 1.32e-07, + "clic": 1.32e-07, + "closeout": 1.32e-07, + "clydes": 1.32e-07, + "cmyk": 1.32e-07, + "coahuila": 1.32e-07, + "comex": 1.32e-07, + "compacting": 1.32e-07, + "compassionately": 1.32e-07, + "consolidations": 1.32e-07, + "consorting": 1.32e-07, + "coring": 1.32e-07, + "cosponsored": 1.32e-07, + "counterparties": 1.32e-07, + "crapper": 1.32e-07, + "crasher": 1.32e-07, + "crawlies": 1.32e-07, + "creepypasta": 1.32e-07, + "cremate": 1.32e-07, + "crestview": 1.32e-07, + "crom": 1.32e-07, + "crossman": 1.32e-07, + "culebra": 1.32e-07, + "cumbia": 1.32e-07, + "cyrenaica": 1.32e-07, + "cyrene": 1.32e-07, + "dace": 1.32e-07, + "dalzell": 1.32e-07, + "dampens": 1.32e-07, + "daoist": 1.32e-07, + "darlinghurst": 1.32e-07, + "daron": 1.32e-07, + "dbu": 1.32e-07, + "deadhead": 1.32e-07, + "deforest": 1.32e-07, + "deist": 1.32e-07, + "demilitarization": 1.32e-07, + "depardieu": 1.32e-07, + "depersonalization": 1.32e-07, + "dest": 1.32e-07, + "devant": 1.32e-07, + "devante": 1.32e-07, + "devers": 1.32e-07, + "dewine": 1.32e-07, + "dhan": 1.32e-07, + "dhc": 1.32e-07, + "diazs": 1.32e-07, + "diebold": 1.32e-07, + "dilatation": 1.32e-07, + "dismantles": 1.32e-07, + "dispassionately": 1.32e-07, + "displeasing": 1.32e-07, + "divot": 1.32e-07, + "doch": 1.32e-07, + "docomo": 1.32e-07, + "documentarian": 1.32e-07, + "dortmunds": 1.32e-07, + "dovetailed": 1.32e-07, + "dowsing": 1.32e-07, + "doylestown": 1.32e-07, + "dreier": 1.32e-07, + "drippy": 1.32e-07, + "dryad": 1.32e-07, + "dtr": 1.32e-07, + "duffer": 1.32e-07, + "dulcimer": 1.32e-07, + "dulls": 1.32e-07, + "dunhams": 1.32e-07, + "dunwich": 1.32e-07, + "durhams": 1.32e-07, + "durkheim": 1.32e-07, + "efcc": 1.32e-07, + "efs": 1.32e-07, + "eglin": 1.32e-07, + "ehsan": 1.32e-07, + "eigenvectors": 1.32e-07, + "eliott": 1.32e-07, + "elmendorf": 1.32e-07, + "emad": 1.32e-07, + "encarnacion": 1.32e-07, + "encinitas": 1.32e-07, + "endorsers": 1.32e-07, + "englund": 1.32e-07, + "entrenching": 1.32e-07, + "enumerates": 1.32e-07, + "ept": 1.32e-07, + "equinoxes": 1.32e-07, + "erastus": 1.32e-07, + "erdmann": 1.32e-07, + "erhard": 1.32e-07, + "erne": 1.32e-07, + "etymologically": 1.32e-07, + "evelina": 1.32e-07, + "everquest": 1.32e-07, + "exigencies": 1.32e-07, + "farmhand": 1.32e-07, + "farnum": 1.32e-07, + "fdm": 1.32e-07, + "feedstocks": 1.32e-07, + "feldstein": 1.32e-07, + "feltham": 1.32e-07, + "fenerbahce": 1.32e-07, + "fermat": 1.32e-07, + "ffm": 1.32e-07, + "fgf": 1.32e-07, + "filibustering": 1.32e-07, + "finasteride": 1.32e-07, + "finca": 1.32e-07, + "finial": 1.32e-07, + "finucane": 1.32e-07, + "fisch": 1.32e-07, + "fleischman": 1.32e-07, + "floodlight": 1.32e-07, + "floorboard": 1.32e-07, + "foden": 1.32e-07, + "fodor": 1.32e-07, + "fois": 1.32e-07, + "footmen": 1.32e-07, + "footsie": 1.32e-07, + "forebrain": 1.32e-07, + "formalizing": 1.32e-07, + "fractionated": 1.32e-07, + "framer": 1.32e-07, + "fransisco": 1.32e-07, + "frap": 1.32e-07, + "frelimo": 1.32e-07, + "frolics": 1.32e-07, + "fsd": 1.32e-07, + "fucktard": 1.32e-07, + "fuhrman": 1.32e-07, + "gaddis": 1.32e-07, + "gadfly": 1.32e-07, + "galan": 1.32e-07, + "garba": 1.32e-07, + "gardai": 1.32e-07, + "garlick": 1.32e-07, + "gastonia": 1.32e-07, + "gath": 1.32e-07, + "gaudreau": 1.32e-07, + "geosynchronous": 1.32e-07, + "gervase": 1.32e-07, + "gesticulating": 1.32e-07, + "ghd": 1.32e-07, + "gigas": 1.32e-07, + "glaucous": 1.32e-07, + "glia": 1.32e-07, + "glidden": 1.32e-07, + "glossop": 1.32e-07, + "glowy": 1.32e-07, + "goby": 1.32e-07, + "godden": 1.32e-07, + "gohmert": 1.32e-07, + "goldblatt": 1.32e-07, + "goldenberg": 1.32e-07, + "gortat": 1.32e-07, + "gose": 1.32e-07, + "goulds": 1.32e-07, + "gowanus": 1.32e-07, + "graber": 1.32e-07, + "grails": 1.32e-07, + "grandis": 1.32e-07, + "grazer": 1.32e-07, + "greaser": 1.32e-07, + "griz": 1.32e-07, + "grn": 1.32e-07, + "guilfoyle": 1.32e-07, + "guillen": 1.32e-07, + "gullibility": 1.32e-07, + "gumshoe": 1.32e-07, + "guv": 1.32e-07, + "gyrating": 1.32e-07, + "hadar": 1.32e-07, + "hadn": 1.32e-07, + "haemophilia": 1.32e-07, + "haemorrhagic": 1.32e-07, + "haier": 1.32e-07, + "hakusho": 1.32e-07, + "haliburton": 1.32e-07, + "halp": 1.32e-07, + "handprints": 1.32e-07, + "hankins": 1.32e-07, + "hardt": 1.32e-07, + "harmonia": 1.32e-07, + "hassell": 1.32e-07, + "hata": 1.32e-07, + "hatsune": 1.32e-07, + "haverfordwest": 1.32e-07, + "hayfield": 1.32e-07, + "hebe": 1.32e-07, + "helpin": 1.32e-07, + "hesperia": 1.32e-07, + "heteronormative": 1.32e-07, + "hibachi": 1.32e-07, + "histopathology": 1.32e-07, + "hitchhiked": 1.32e-07, + "hix": 1.32e-07, + "hmos": 1.32e-07, + "hoagie": 1.32e-07, + "hollingworth": 1.32e-07, + "holomorphic": 1.32e-07, + "holter": 1.32e-07, + "homburg": 1.32e-07, + "honeycutt": 1.32e-07, + "hosseini": 1.32e-07, + "humoral": 1.32e-07, + "hup": 1.32e-07, + "hurdling": 1.32e-07, + "icty": 1.32e-07, + "ifp": 1.32e-07, + "ilp": 1.32e-07, + "impersonates": 1.32e-07, + "impious": 1.32e-07, + "imus": 1.32e-07, + "inbounds": 1.32e-07, + "indianola": 1.32e-07, + "inducer": 1.32e-07, + "inelegant": 1.32e-07, + "infirmities": 1.32e-07, + "ingo": 1.32e-07, + "inkster": 1.32e-07, + "inoculations": 1.32e-07, + "instep": 1.32e-07, + "interrogates": 1.32e-07, + "isham": 1.32e-07, + "isreal": 1.32e-07, + "isthmian": 1.32e-07, + "istria": 1.32e-07, + "itza": 1.32e-07, + "iui": 1.32e-07, + "izvestia": 1.32e-07, + "jarry": 1.32e-07, + "jayme": 1.32e-07, + "jealousies": 1.32e-07, + "jedward": 1.32e-07, + "jeebies": 1.32e-07, + "jermyn": 1.32e-07, + "jeromes": 1.32e-07, + "jessen": 1.32e-07, + "jiminy": 1.32e-07, + "jobcentre": 1.32e-07, + "jockstrap": 1.32e-07, + "joppa": 1.32e-07, + "jotting": 1.32e-07, + "jrotc": 1.32e-07, + "judoka": 1.32e-07, + "juliets": 1.32e-07, + "juniata": 1.32e-07, + "juxtaposes": 1.32e-07, + "jynx": 1.32e-07, + "kabc": 1.32e-07, + "kahne": 1.32e-07, + "kalil": 1.32e-07, + "karras": 1.32e-07, + "kathys": 1.32e-07, + "kaufmans": 1.32e-07, + "kayfabe": 1.32e-07, + "kep": 1.32e-07, + "kerberos": 1.32e-07, + "kerchief": 1.32e-07, + "kersten": 1.32e-07, + "kili": 1.32e-07, + "kilian": 1.32e-07, + "killjoys": 1.32e-07, + "kimiko": 1.32e-07, + "kingfish": 1.32e-07, + "kingwood": 1.32e-07, + "kinsale": 1.32e-07, + "kirschner": 1.32e-07, + "kitchin": 1.32e-07, + "klink": 1.32e-07, + "klutz": 1.32e-07, + "knobby": 1.32e-07, + "knockoffs": 1.32e-07, + "knotting": 1.32e-07, + "kod": 1.29e-07, + "koke": 1.32e-07, + "korey": 1.32e-07, + "kra": 1.32e-07, + "kungfu": 1.32e-07, + "kushners": 1.32e-07, + "kwanzaa": 1.32e-07, + "laertes": 1.32e-07, + "lakin": 1.32e-07, + "lamotte": 1.32e-07, + "larkspur": 1.32e-07, + "lassa": 1.32e-07, + "leafing": 1.32e-07, + "lectionary": 1.32e-07, + "legalizes": 1.32e-07, + "lemond": 1.32e-07, + "lenora": 1.32e-07, + "lento": 1.32e-07, + "libbys": 1.32e-07, + "liberalizing": 1.32e-07, + "liesl": 1.32e-07, + "likelier": 1.32e-07, + "lindon": 1.32e-07, + "linnean": 1.32e-07, + "linnet": 1.32e-07, + "linsey": 1.32e-07, + "lipgloss": 1.32e-07, + "lipoproteins": 1.32e-07, + "locklear": 1.32e-07, + "loeffler": 1.32e-07, + "looe": 1.32e-07, + "lordly": 1.32e-07, + "loth": 1.32e-07, + "louw": 1.32e-07, + "lowball": 1.32e-07, + "lowrys": 1.32e-07, + "lub": 1.32e-07, + "ludendorff": 1.32e-07, + "lutheranism": 1.32e-07, + "lynde": 1.32e-07, + "macworld": 1.32e-07, + "magyars": 1.32e-07, + "majoritys": 1.32e-07, + "maks": 1.32e-07, + "maladjusted": 1.32e-07, + "marinus": 1.32e-07, + "markt": 1.32e-07, + "marquesas": 1.32e-07, + "masamune": 1.32e-07, + "masayoshi": 1.32e-07, + "maser": 1.32e-07, + "masoud": 1.32e-07, + "matera": 1.32e-07, + "maybank": 1.32e-07, + "maynooth": 1.32e-07, + "maza": 1.32e-07, + "mazza": 1.32e-07, + "mccaffery": 1.32e-07, + "mcminnville": 1.32e-07, + "mcneese": 1.32e-07, + "mcnutt": 1.32e-07, + "mcsally": 1.32e-07, + "mdg": 1.32e-07, + "mdx": 1.32e-07, + "meadville": 1.32e-07, + "mechanicals": 1.32e-07, + "meda": 1.32e-07, + "megabus": 1.32e-07, + "megalodon": 1.32e-07, + "meis": 1.1e-07, + "meisner": 1.32e-07, + "meno": 1.32e-07, + "menos": 1.32e-07, + "merchandiser": 1.32e-07, + "metzler": 1.32e-07, + "midgard": 1.32e-07, + "millican": 1.32e-07, + "mingles": 1.32e-07, + "minuets": 1.32e-07, + "misfired": 1.32e-07, + "misting": 1.32e-07, + "mitsuru": 1.32e-07, + "mize": 1.32e-07, + "moeen": 1.32e-07, + "mohammadi": 1.32e-07, + "molesworth": 1.32e-07, + "monkfish": 1.32e-07, + "mononoke": 1.32e-07, + "montblanc": 1.32e-07, + "monteverdi": 1.32e-07, + "moonshot": 1.32e-07, + "morant": 1.32e-07, + "morricone": 1.32e-07, + "moulder": 1.32e-07, + "mountaintops": 1.32e-07, + "mountford": 1.32e-07, + "mous": 1.32e-07, + "mouthfuls": 1.32e-07, + "mpm": 1.32e-07, + "mpx": 1.32e-07, + "mths": 1.32e-07, + "multilingualism": 1.32e-07, + "muniz": 1.32e-07, + "musi": 1.32e-07, + "mys": 1.32e-07, + "nabbing": 1.32e-07, + "nadja": 1.32e-07, + "namor": 1.32e-07, + "nans": 6.46e-08, + "nanoscience": 1.32e-07, + "nares": 1.32e-07, + "nasu": 1.32e-07, + "naughtiness": 1.32e-07, + "navidad": 1.32e-07, + "nederlands": 1.32e-07, + "neer": 1.32e-07, + "negi": 1.32e-07, + "neighbourly": 1.32e-07, + "nerv": 1.32e-07, + "newbridge": 1.32e-07, + "newsgroups": 1.32e-07, + "nicolo": 1.32e-07, + "nidhi": 1.32e-07, + "nieman": 1.32e-07, + "nien": 1.32e-07, + "nikolaus": 1.32e-07, + "nonono": 1.32e-07, + "nonplussed": 1.32e-07, + "nootka": 1.32e-07, + "nto": 1.32e-07, + "nucleon": 1.32e-07, + "numismatics": 1.32e-07, + "nung": 1.32e-07, + "nym": 1.32e-07, + "omahony": 1.32e-07, + "oakeshott": 1.32e-07, + "obamacares": 1.32e-07, + "obgyn": 1.32e-07, + "occams": 1.32e-07, + "ocha": 1.32e-07, + "ofelia": 1.32e-07, + "offsides": 1.32e-07, + "ogc": 1.32e-07, + "ogi": 1.32e-07, + "oha": 1.32e-07, + "oligonucleotides": 1.32e-07, + "olu": 1.32e-07, + "omm": 1.32e-07, + "ondrej": 1.32e-07, + "onze": 1.32e-07, + "ooooooh": 1.32e-07, + "opencast": 1.32e-07, + "optimality": 1.32e-07, + "orel": 1.32e-07, + "orta": 1.32e-07, + "ostentation": 1.32e-07, + "otb": 1.32e-07, + "otherside": 1.32e-07, + "outcall": 1.32e-07, + "outfitter": 1.32e-07, + "overhears": 1.32e-07, + "overy": 1.32e-07, + "paar": 1.32e-07, + "paddlers": 1.32e-07, + "palladian": 1.32e-07, + "pandits": 1.32e-07, + "papandreou": 1.32e-07, + "papermaking": 1.32e-07, + "paraphrases": 1.32e-07, + "parfitt": 1.32e-07, + "pariahs": 1.32e-07, + "parlement": 1.32e-07, + "particularities": 1.32e-07, + "passchendaele": 1.32e-07, + "passmore": 1.32e-07, + "patrilineal": 1.32e-07, + "pcso": 1.32e-07, + "peeters": 1.32e-07, + "penarth": 1.32e-07, + "pend": 1.32e-07, + "pentathlon": 1.32e-07, + "pentecostals": 1.32e-07, + "perfectionists": 1.32e-07, + "perfumer": 1.32e-07, + "perryville": 1.32e-07, + "petites": 1.32e-07, + "petrology": 1.32e-07, + "pharmacopoeia": 1.32e-07, + "phila": 1.32e-07, + "philanthropies": 1.32e-07, + "phillis": 1.32e-07, + "phonebook": 1.32e-07, + "physiographic": 1.32e-07, + "pickpocketing": 1.32e-07, + "piecewise": 1.32e-07, + "pilfered": 1.32e-07, + "pillion": 1.32e-07, + "pillory": 1.32e-07, + "placerville": 1.32e-07, + "plage": 1.32e-07, + "poch": 1.32e-07, + "poinsettia": 1.32e-07, + "pokemons": 1.32e-07, + "poling": 1.32e-07, + "polyhedral": 1.32e-07, + "pooches": 1.32e-07, + "porco": 1.32e-07, + "porthos": 1.32e-07, + "portugese": 1.32e-07, + "potheads": 1.32e-07, + "pottinger": 1.32e-07, + "prajapati": 1.32e-07, + "pran": 1.32e-07, + "precognition": 1.32e-07, + "preeminence": 1.32e-07, + "prg": 1.32e-07, + "prodigiously": 1.32e-07, + "proteasome": 1.32e-07, + "pulps": 1.32e-07, + "pulteney": 1.32e-07, + "pulverize": 1.32e-07, + "punkd": 1.32e-07, + "pvd": 1.32e-07, + "pwn": 1.32e-07, + "qassam": 1.32e-07, + "qinghai": 1.32e-07, + "quetzalcoatl": 1.32e-07, + "quibbles": 1.32e-07, + "rabelais": 1.32e-07, + "radian": 1.32e-07, + "rafs": 1.32e-07, + "ragland": 1.32e-07, + "railgun": 1.32e-07, + "rangeland": 1.32e-07, + "rapey": 1.32e-07, + "rastafari": 1.32e-07, + "rattus": 1.32e-07, + "ratu": 1.32e-07, + "rayyan": 1.32e-07, + "rcts": 1.32e-07, + "readouts": 1.32e-07, + "reanimation": 1.32e-07, + "rebutting": 1.32e-07, + "recomend": 1.32e-07, + "recycler": 1.32e-07, + "redland": 1.32e-07, + "reevaluating": 1.32e-07, + "reichs": 6.46e-08, + "reparative": 1.32e-07, + "reshuffled": 1.32e-07, + "respectably": 1.32e-07, + "revelstoke": 1.32e-07, + "rhombus": 1.32e-07, + "ringwald": 1.32e-07, + "rinna": 1.32e-07, + "rinses": 1.32e-07, + "rivalling": 1.32e-07, + "rivkin": 1.32e-07, + "rize": 1.32e-07, + "rohingyas": 1.32e-07, + "rolodex": 1.32e-07, + "romas": 1.32e-07, + "roofline": 1.32e-07, + "rost": 1.32e-07, + "routh": 1.32e-07, + "royces": 6.92e-08, + "rtt": 1.32e-07, + "rustam": 1.32e-07, + "rwandas": 1.32e-07, + "rwc": 1.32e-07, + "sachets": 1.32e-07, + "saenz": 1.32e-07, + "safflower": 1.32e-07, + "saguaro": 1.32e-07, + "sait": 1.32e-07, + "salivate": 1.32e-07, + "salta": 1.32e-07, + "sandras": 1.32e-07, + "saro": 1.32e-07, + "sassuolo": 1.32e-07, + "savchenko": 1.32e-07, + "sbe": 1.32e-07, + "schacht": 1.32e-07, + "schlafly": 1.32e-07, + "schoharie": 1.32e-07, + "scoutmaster": 1.32e-07, + "scraggly": 1.32e-07, + "scrotal": 1.32e-07, + "scuffling": 1.32e-07, + "sdb": 1.32e-07, + "seasickness": 1.32e-07, + "seconding": 1.32e-07, + "sehr": 1.32e-07, + "sempre": 1.32e-07, + "sensationalized": 1.32e-07, + "sensorimotor": 1.32e-07, + "serenading": 1.32e-07, + "servicers": 1.32e-07, + "shaadi": 1.32e-07, + "sheiks": 6.61e-08, + "sheridans": 1.32e-07, + "shevardnadze": 1.32e-07, + "shiel": 1.32e-07, + "shiels": 1.32e-07, + "shik": 1.32e-07, + "shoeing": 1.32e-07, + "shrestha": 1.32e-07, + "shutup": 1.32e-07, + "siddons": 1.32e-07, + "siders": 1.32e-07, + "siempre": 1.32e-07, + "signification": 1.32e-07, + "siphons": 1.32e-07, + "sirna": 1.32e-07, + "sitewide": 1.32e-07, + "sjc": 1.32e-07, + "sloops": 1.32e-07, + "sncc": 1.32e-07, + "snmp": 1.32e-07, + "snog": 1.32e-07, + "sodding": 1.32e-07, + "sodomized": 1.32e-07, + "sols": 8.13e-08, + "sould": 1.32e-07, + "speedsters": 1.32e-07, + "splatters": 1.32e-07, + "spn": 1.32e-07, + "springville": 1.32e-07, + "sprouse": 1.32e-07, + "stabilisers": 1.32e-07, + "stace": 1.32e-07, + "stanger": 1.32e-07, + "stansbury": 1.32e-07, + "stauffenberg": 1.32e-07, + "staunchest": 1.32e-07, + "stegosaurus": 1.32e-07, + "stk": 1.32e-07, + "stokely": 1.32e-07, + "stonemason": 1.32e-07, + "strategical": 1.32e-07, + "striven": 1.32e-07, + "stroganoff": 1.32e-07, + "stroh": 1.32e-07, + "substituent": 1.32e-07, + "suitland": 1.32e-07, + "suleyman": 1.32e-07, + "summative": 1.32e-07, + "sund": 1.32e-07, + "sunnydale": 1.32e-07, + "sunstroke": 1.32e-07, + "supervillains": 1.32e-07, + "suriya": 1.32e-07, + "sweeneys": 1.32e-07, + "switchers": 1.32e-07, + "syllogism": 1.32e-07, + "sysadmin": 1.32e-07, + "taba": 1.32e-07, + "tabernacles": 1.32e-07, + "tainting": 1.32e-07, + "takis": 1.32e-07, + "tamika": 1.32e-07, + "tangiers": 1.32e-07, + "tannen": 1.32e-07, + "tapa": 1.32e-07, + "tarkovsky": 1.32e-07, + "tatsu": 1.32e-07, + "taxicabs": 1.32e-07, + "telepath": 1.32e-07, + "temperley": 1.32e-07, + "tendonitis": 1.32e-07, + "teotihuacan": 1.32e-07, + "terrorise": 1.32e-07, + "testator": 1.32e-07, + "testi": 1.32e-07, + "throwed": 1.32e-07, + "thudding": 1.32e-07, + "tilghman": 1.32e-07, + "tini": 1.32e-07, + "tive": 1.32e-07, + "tlw": 1.32e-07, + "toler": 1.32e-07, + "toners": 1.32e-07, + "tonopah": 1.32e-07, + "transiently": 1.32e-07, + "transmuted": 1.32e-07, + "transpiration": 1.32e-07, + "transposing": 1.32e-07, + "trb": 1.32e-07, + "tretinoin": 1.32e-07, + "tricyclic": 1.32e-07, + "triforce": 1.32e-07, + "triste": 1.32e-07, + "tuchel": 1.32e-07, + "tuh": 1.32e-07, + "turlock": 1.32e-07, + "tutte": 1.32e-07, + "twiddle": 1.32e-07, + "twomey": 1.32e-07, + "udders": 1.32e-07, + "unblocking": 1.32e-07, + "undirected": 1.32e-07, + "unfurling": 1.32e-07, + "unisa": 1.32e-07, + "unitedhealth": 1.32e-07, + "unpardonable": 1.32e-07, + "unpromising": 1.32e-07, + "unscrewed": 1.32e-07, + "unspectacular": 1.32e-07, + "uplifts": 1.32e-07, + "upson": 1.32e-07, + "usar": 1.32e-07, + "ushuaia": 1.32e-07, + "valen": 1.32e-07, + "vani": 1.32e-07, + "vaqueros": 1.32e-07, + "vasoconstriction": 1.32e-07, + "velde": 1.32e-07, + "verger": 1.32e-07, + "versioning": 1.32e-07, + "volkoff": 1.32e-07, + "vtec": 1.32e-07, + "wagnerian": 1.32e-07, + "waley": 1.32e-07, + "wallachia": 1.32e-07, + "walloon": 1.32e-07, + "wallstreet": 1.32e-07, + "warde": 1.32e-07, + "warri": 1.32e-07, + "warringah": 1.32e-07, + "wazoo": 1.32e-07, + "weee": 1.32e-07, + "welty": 1.32e-07, + "wemyss": 1.32e-07, + "wend": 1.32e-07, + "wheal": 1.32e-07, + "wheatstone": 1.32e-07, + "whipper": 1.32e-07, + "whitetail": 1.32e-07, + "whooshing": 1.32e-07, + "wickersham": 1.32e-07, + "wike": 1.32e-07, + "wille": 1.32e-07, + "willems": 1.32e-07, + "windu": 1.32e-07, + "wingtip": 1.32e-07, + "wintered": 1.32e-07, + "winterthur": 1.32e-07, + "wintery": 1.32e-07, + "wipro": 1.32e-07, + "witha": 1.32e-07, + "woodcutter": 1.32e-07, + "woodie": 1.32e-07, + "worrell": 1.32e-07, + "wreathed": 1.32e-07, + "wriggled": 1.32e-07, + "writin": 1.32e-07, + "wwa": 1.32e-07, + "wynter": 1.32e-07, + "xli": 1.32e-07, + "xxxiv": 1.32e-07, + "yare": 1.32e-07, + "yeahs": 1.32e-07, + "younes": 1.32e-07, + "yushchenko": 1.32e-07, + "yvon": 1.32e-07, + "yw": 1.32e-07, + "zama": 1.32e-07, + "zelig": 1.32e-07, + "zumas": 1.32e-07, + "zuri": 1.32e-07, + "ablution": 1.29e-07, + "aborigine": 1.29e-07, + "abovementioned": 1.29e-07, + "accu": 1.29e-07, + "activex": 1.29e-07, + "affordably": 1.29e-07, + "agadir": 1.29e-07, + "agog": 1.29e-07, + "agreeably": 1.29e-07, + "aguinaldo": 1.29e-07, + "aichi": 1.29e-07, + "alawites": 1.29e-07, + "alberton": 1.29e-07, + "albu": 1.29e-07, + "alcalde": 1.29e-07, + "alcides": 1.29e-07, + "algerias": 1.29e-07, + "aljazeera": 1.29e-07, + "allergist": 1.29e-07, + "aloo": 1.29e-07, + "alvis": 1.29e-07, + "alyn": 1.29e-07, + "amba": 1.29e-07, + "ambala": 1.29e-07, + "amm": 1.29e-07, + "andersens": 1.29e-07, + "andras": 1.29e-07, + "andresen": 1.29e-07, + "angulo": 1.29e-07, + "animaniacs": 1.29e-07, + "anju": 1.29e-07, + "annus": 1.29e-07, + "anthropoid": 1.29e-07, + "antislavery": 1.29e-07, + "aou": 1.29e-07, + "apeshit": 1.29e-07, + "apna": 1.29e-07, + "appleyard": 1.29e-07, + "arcanum": 1.29e-07, + "armagnac": 1.29e-07, + "arslan": 1.29e-07, + "asanas": 1.29e-07, + "assail": 1.29e-07, + "assented": 1.29e-07, + "atomics": 1.29e-07, + "attitudinal": 1.29e-07, + "audie": 1.29e-07, + "audiophiles": 1.29e-07, + "audreys": 1.29e-07, + "authorises": 1.29e-07, + "autoantibodies": 1.29e-07, + "autochthonous": 1.29e-07, + "autocrats": 1.29e-07, + "avni": 1.29e-07, + "aylward": 1.29e-07, + "baath": 1.29e-07, + "bachelet": 1.29e-07, + "backbreaking": 1.29e-07, + "backscatter": 1.29e-07, + "badman": 1.29e-07, + "badrinath": 1.29e-07, + "bakugou": 1.29e-07, + "balon": 1.29e-07, + "balrog": 1.29e-07, + "bambang": 1.29e-07, + "banh": 1.29e-07, + "bankable": 1.29e-07, + "bann": 1.29e-07, + "barbiturate": 1.29e-07, + "barboza": 1.29e-07, + "barco": 1.29e-07, + "barefooted": 1.29e-07, + "barfield": 1.29e-07, + "barnstorming": 1.29e-07, + "barranquilla": 1.29e-07, + "beadwork": 1.29e-07, + "becouse": 1.29e-07, + "beim": 1.29e-07, + "beka": 1.29e-07, + "bellend": 1.29e-07, + "benedikt": 1.29e-07, + "benefices": 1.29e-07, + "berchtesgaden": 1.29e-07, + "bete": 1.29e-07, + "biba": 1.29e-07, + "biennially": 1.29e-07, + "blackberrys": 7.59e-08, + "blaisdell": 1.29e-07, + "blowhole": 1.29e-07, + "boardgames": 1.29e-07, + "bods": 1.29e-07, + "bolas": 1.29e-07, + "bolasie": 1.29e-07, + "bootable": 1.29e-07, + "borghese": 1.29e-07, + "borodin": 1.29e-07, + "bost": 1.29e-07, + "bothell": 1.29e-07, + "bougainvillea": 1.29e-07, + "boughton": 1.29e-07, + "bourdon": 1.29e-07, + "bowens": 1.29e-07, + "bracketing": 1.29e-07, + "braniff": 1.29e-07, + "brashear": 1.29e-07, + "brauns": 1.29e-07, + "breedlove": 1.29e-07, + "breve": 1.29e-07, + "brewerys": 1.29e-07, + "brightman": 1.29e-07, + "buenaventura": 1.29e-07, + "buganda": 1.29e-07, + "bukhara": 1.29e-07, + "bulmer": 1.29e-07, + "bunion": 1.29e-07, + "bunions": 1.29e-07, + "burling": 1.29e-07, + "burros": 1.29e-07, + "burstein": 1.29e-07, + "bused": 1.29e-07, + "businessperson": 1.29e-07, + "buuuut": 1.29e-07, + "cabrini": 1.29e-07, + "cajoling": 1.29e-07, + "calma": 1.29e-07, + "caltrain": 1.29e-07, + "campeche": 1.29e-07, + "canticle": 1.29e-07, + "cappuccinos": 1.29e-07, + "caramels": 1.29e-07, + "carillion": 1.29e-07, + "carob": 1.29e-07, + "carolla": 1.29e-07, + "cartographers": 1.29e-07, + "catan": 1.29e-07, + "catfishing": 1.29e-07, + "celebes": 1.29e-07, + "ceremonially": 1.29e-07, + "chale": 1.29e-07, + "charioteer": 1.29e-07, + "chartier": 1.29e-07, + "chavs": 1.29e-07, + "cheerily": 1.29e-07, + "chell": 1.29e-07, + "chiding": 1.29e-07, + "chirped": 1.29e-07, + "chortle": 1.29e-07, + "chowing": 1.29e-07, + "chuen": 1.29e-07, + "chukchi": 1.29e-07, + "clairmont": 1.29e-07, + "cliftonville": 1.29e-07, + "clipart": 1.29e-07, + "cloche": 1.29e-07, + "cockfighting": 1.29e-07, + "codifying": 1.29e-07, + "coh": 1.29e-07, + "coit": 1.29e-07, + "colloids": 1.29e-07, + "comber": 1.29e-07, + "comercio": 1.29e-07, + "comforters": 1.29e-07, + "comity": 1.29e-07, + "commerzbank": 1.29e-07, + "comport": 1.29e-07, + "comprehends": 1.29e-07, + "concessionary": 1.29e-07, + "confectioner": 1.29e-07, + "contaminates": 1.29e-07, + "continuities": 1.29e-07, + "convexity": 1.29e-07, + "cooktown": 1.29e-07, + "coppell": 1.29e-07, + "coppolas": 1.29e-07, + "counsell": 1.29e-07, + "coupland": 1.29e-07, + "covenanters": 1.29e-07, + "covetous": 1.29e-07, + "cratered": 1.29e-07, + "creon": 1.29e-07, + "crisscrossing": 1.29e-07, + "crosslinking": 1.29e-07, + "cvp": 1.29e-07, + "cyclase": 1.29e-07, + "cyp": 1.29e-07, + "dalkeith": 1.29e-07, + "danae": 1.29e-07, + "dappy": 1.29e-07, + "darmian": 1.29e-07, + "dbc": 1.29e-07, + "debutantes": 1.29e-07, + "decease": 1.29e-07, + "decisionmaking": 1.29e-07, + "decluttering": 1.29e-07, + "defacto": 1.29e-07, + "definitly": 1.29e-07, + "delis": 1.29e-07, + "dellinger": 1.29e-07, + "demba": 1.29e-07, + "demers": 1.29e-07, + "demonetisation": 1.29e-07, + "dempseys": 1.29e-07, + "deportes": 1.29e-07, + "depps": 1.29e-07, + "detaches": 1.29e-07, + "devastates": 1.29e-07, + "dever": 1.29e-07, + "devons": 1.29e-07, + "dewayne": 1.29e-07, + "dhoom": 1.29e-07, + "dickinsons": 1.29e-07, + "dictaphone": 1.29e-07, + "diphosphate": 1.29e-07, + "direc": 1.29e-07, + "discotheque": 1.29e-07, + "discourteous": 1.29e-07, + "dither": 1.29e-07, + "doff": 1.29e-07, + "dogmatism": 1.29e-07, + "doily": 1.29e-07, + "dokkan": 1.29e-07, + "dramatizing": 1.29e-07, + "draven": 1.29e-07, + "drb": 1.29e-07, + "drea": 1.29e-07, + "dremel": 1.29e-07, + "drovers": 1.29e-07, + "dsu": 1.29e-07, + "duckie": 1.29e-07, + "ductal": 1.29e-07, + "dungy": 1.29e-07, + "duplications": 1.29e-07, + "dyne": 1.29e-07, + "dys": 1.29e-07, + "eave": 1.29e-07, + "edberg": 1.29e-07, + "edler": 1.29e-07, + "eider": 1.29e-07, + "ejecta": 1.29e-07, + "electrophysiological": 1.29e-07, + "emba": 1.29e-07, + "embroideries": 1.29e-07, + "emulsifier": 1.29e-07, + "encouragingly": 1.29e-07, + "enought": 1.29e-07, + "enunciation": 1.29e-07, + "erol": 1.29e-07, + "essayists": 1.29e-07, + "estrogenic": 1.29e-07, + "eternals": 1.29e-07, + "etheric": 1.29e-07, + "etv": 1.29e-07, + "eugenes": 1.29e-07, + "eveline": 1.29e-07, + "eventide": 1.29e-07, + "exonerating": 1.29e-07, + "exoskeletons": 1.29e-07, + "expiation": 1.29e-07, + "exynos": 1.29e-07, + "factsheet": 1.29e-07, + "fairclough": 1.29e-07, + "fantasizes": 1.29e-07, + "fargos": 1.29e-07, + "fearnley": 1.29e-07, + "feeler": 1.29e-07, + "felis": 1.29e-07, + "ferrers": 1.29e-07, + "ferriss": 1.29e-07, + "fessenden": 1.29e-07, + "fhd": 1.29e-07, + "filibusters": 1.29e-07, + "finke": 1.29e-07, + "firebomb": 1.29e-07, + "firefights": 1.29e-07, + "flagellum": 1.29e-07, + "fleetingly": 1.29e-07, + "flory": 1.29e-07, + "fmf": 1.29e-07, + "foraminifera": 1.29e-07, + "foxglove": 1.29e-07, + "franko": 1.29e-07, + "frid": 1.29e-07, + "froch": 1.29e-07, + "froyo": 1.29e-07, + "fruitvale": 1.29e-07, + "ftir": 1.29e-07, + "functionalist": 1.29e-07, + "funereal": 1.29e-07, + "fxx": 1.29e-07, + "fye": 1.29e-07, + "gaimans": 1.29e-07, + "gangbusters": 1.29e-07, + "garoppolo": 1.29e-07, + "garrow": 1.29e-07, + "garrulous": 1.29e-07, + "gatiss": 1.29e-07, + "gatton": 1.29e-07, + "gaudi": 1.29e-07, + "gcn": 1.29e-07, + "gdm": 1.29e-07, + "genderless": 1.29e-07, + "geophysicist": 1.29e-07, + "germanicus": 1.29e-07, + "gherkin": 1.29e-07, + "gigante": 1.29e-07, + "giovani": 1.29e-07, + "glaciated": 1.29e-07, + "glaswegian": 1.29e-07, + "glaxo": 1.29e-07, + "gle": 1.29e-07, + "globulin": 1.29e-07, + "gns": 1.29e-07, + "goggins": 1.29e-07, + "goleta": 1.29e-07, + "goodale": 1.29e-07, + "goodwins": 1.29e-07, + "gotye": 1.29e-07, + "gpd": 1.29e-07, + "grable": 1.29e-07, + "grammarian": 1.29e-07, + "grampians": 1.29e-07, + "grazes": 1.29e-07, + "greenough": 1.29e-07, + "grep": 1.29e-07, + "griner": 1.29e-07, + "groat": 1.29e-07, + "guardrails": 1.29e-07, + "gugu": 1.29e-07, + "gusher": 1.29e-07, + "gva": 1.29e-07, + "haberdashery": 1.29e-07, + "hadleigh": 1.29e-07, + "hage": 1.29e-07, + "hamzah": 1.29e-07, + "handprint": 1.29e-07, + "handwashing": 1.29e-07, + "handwork": 1.29e-07, + "hanno": 1.29e-07, + "haplotypes": 1.29e-07, + "hardboiled": 1.29e-07, + "hardee": 1.29e-07, + "hardison": 1.29e-07, + "harith": 1.29e-07, + "harmonically": 1.29e-07, + "hartleys": 1.29e-07, + "hct": 1.29e-07, + "headscarves": 1.29e-07, + "heedless": 1.29e-07, + "heflin": 1.29e-07, + "helicobacter": 1.29e-07, + "hellos": 1.29e-07, + "hematologic": 1.29e-07, + "hendy": 1.29e-07, + "herby": 1.29e-07, + "herdsman": 1.29e-07, + "heredia": 1.29e-07, + "hestia": 1.29e-07, + "heymann": 1.29e-07, + "hgs": 1.29e-07, + "highfield": 1.29e-07, + "hilson": 1.29e-07, + "hilversum": 1.29e-07, + "hixon": 1.29e-07, + "hochschule": 1.29e-07, + "holywell": 1.29e-07, + "homebuilding": 1.29e-07, + "hoochie": 1.29e-07, + "hoofed": 1.29e-07, + "hooman": 1.29e-07, + "hoorah": 1.29e-07, + "horcruxes": 1.29e-07, + "hosokawa": 1.29e-07, + "hotwire": 1.29e-07, + "hsl": 1.29e-07, + "hubbards": 1.29e-07, + "hungama": 1.29e-07, + "hydrogels": 1.29e-07, + "idealization": 1.29e-07, + "igc": 1.29e-07, + "ihave": 1.29e-07, + "iihs": 1.29e-07, + "ilfracombe": 1.29e-07, + "illumina": 1.29e-07, + "immunohistochemical": 1.29e-07, + "immunohistochemistry": 1.29e-07, + "impactor": 1.29e-07, + "impugn": 1.29e-07, + "inconveniently": 1.29e-07, + "indexer": 1.29e-07, + "individualised": 1.29e-07, + "inflaming": 1.29e-07, + "inhg": 1.29e-07, + "insigne": 1.29e-07, + "interglacial": 1.29e-07, + "interrelationships": 1.29e-07, + "intrust": 1.29e-07, + "invitee": 1.29e-07, + "ironical": 1.29e-07, + "isb": 1.29e-07, + "ivica": 1.29e-07, + "iza": 1.29e-07, + "jahrbuch": 1.29e-07, + "javert": 1.29e-07, + "jenin": 1.29e-07, + "jepson": 1.29e-07, + "jigger": 1.29e-07, + "jirga": 1.29e-07, + "jmp": 1.29e-07, + "jocko": 1.29e-07, + "johnsen": 1.29e-07, + "jolson": 1.29e-07, + "juggalos": 1.29e-07, + "kac": 1.29e-07, + "kagami": 1.29e-07, + "kaisa": 1.29e-07, + "kaplans": 1.29e-07, + "karunanidhi": 1.29e-07, + "kazumi": 1.29e-07, + "kcc": 1.29e-07, + "kcs": 6.92e-08, + "keatons": 1.29e-07, + "keenest": 1.29e-07, + "keeney": 1.29e-07, + "keiji": 1.29e-07, + "keine": 1.29e-07, + "kellan": 1.29e-07, + "kerrie": 1.29e-07, + "kerwin": 1.29e-07, + "ketoacidosis": 1.29e-07, + "khalaf": 1.29e-07, + "khurshid": 1.29e-07, + "kiba": 1.29e-07, + "kickboxer": 1.29e-07, + "kilotons": 1.29e-07, + "kimmels": 1.29e-07, + "kine": 1.29e-07, + "kingsguard": 1.29e-07, + "kislyak": 1.29e-07, + "kiting": 1.29e-07, + "kmc": 1.29e-07, + "knowl": 1.29e-07, + "koller": 1.29e-07, + "koryo": 1.29e-07, + "koskinen": 1.29e-07, + "krasnaya": 1.29e-07, + "krell": 1.29e-07, + "kru": 1.29e-07, + "krul": 1.29e-07, + "kuban": 1.29e-07, + "kuwaits": 1.29e-07, + "kyodo": 1.29e-07, + "laetitia": 1.29e-07, + "lalla": 1.29e-07, + "lampedusa": 1.29e-07, + "lamson": 1.29e-07, + "lancastrian": 1.29e-07, + "langa": 1.29e-07, + "lapp": 1.29e-07, + "laterals": 1.29e-07, + "laudatory": 1.29e-07, + "laughingly": 1.29e-07, + "lavoisier": 1.29e-07, + "leaderships": 1.23e-07, + "leashed": 1.29e-07, + "leilani": 1.29e-07, + "leonean": 1.29e-07, + "lessees": 1.29e-07, + "leverett": 1.29e-07, + "lewa": 1.29e-07, + "lewdness": 1.29e-07, + "lgbtqia": 1.29e-07, + "lias": 3.8e-08, + "lieb": 1.29e-07, + "lilliput": 1.29e-07, + "linq": 1.29e-07, + "literatur": 1.29e-07, + "litvinenko": 1.29e-07, + "locksmiths": 1.29e-07, + "logicians": 1.29e-07, + "longhouse": 1.29e-07, + "looove": 1.29e-07, + "loquacious": 1.29e-07, + "lothario": 1.29e-07, + "lotz": 1.29e-07, + "lpo": 1.29e-07, + "lpr": 1.29e-07, + "lsb": 1.29e-07, + "lumi": 1.29e-07, + "lynwood": 1.29e-07, + "macaron": 1.29e-07, + "maccoll": 1.29e-07, + "macd": 1.29e-07, + "mahers": 1.29e-07, + "maina": 1.29e-07, + "mainstreet": 1.29e-07, + "majora": 1.29e-07, + "malaika": 1.29e-07, + "malting": 1.29e-07, + "malu": 1.29e-07, + "mandelbaum": 1.29e-07, + "manhandling": 1.29e-07, + "manningham": 1.29e-07, + "manzoni": 1.29e-07, + "maracas": 1.29e-07, + "marleau": 1.29e-07, + "matsuri": 1.29e-07, + "mausoleums": 1.29e-07, + "mcdade": 1.29e-07, + "medially": 1.29e-07, + "medicina": 1.29e-07, + "medicinally": 1.29e-07, + "mef": 1.29e-07, + "mehmed": 1.29e-07, + "melayu": 1.29e-07, + "melisandre": 1.29e-07, + "menai": 1.29e-07, + "menorca": 1.29e-07, + "menudo": 1.29e-07, + "mercutio": 1.29e-07, + "merriweather": 1.29e-07, + "mervin": 1.29e-07, + "merz": 1.29e-07, + "metabolizing": 1.29e-07, + "metamaterials": 1.29e-07, + "metropolises": 1.29e-07, + "mexicano": 1.29e-07, + "mft": 1.29e-07, + "mhmm": 1.29e-07, + "miah": 1.29e-07, + "michail": 1.29e-07, + "mikan": 1.29e-07, + "mimis": 5.13e-08, + "misspent": 1.29e-07, + "mke": 1.29e-07, + "mockups": 1.29e-07, + "mois": 1.29e-07, + "monism": 1.29e-07, + "monoclinic": 1.29e-07, + "monsta": 1.29e-07, + "moodle": 1.29e-07, + "moonraker": 1.29e-07, + "morphologies": 1.29e-07, + "moscone": 1.29e-07, + "mossman": 1.29e-07, + "mouser": 1.29e-07, + "mpt": 1.29e-07, + "msds": 1.29e-07, + "mucha": 1.29e-07, + "mujica": 1.29e-07, + "mult": 1.29e-07, + "multigenerational": 1.29e-07, + "naar": 1.29e-07, + "nahyan": 1.29e-07, + "naipaul": 1.29e-07, + "nairo": 1.29e-07, + "nameplates": 1.29e-07, + "nandita": 1.29e-07, + "nantwich": 1.29e-07, + "natacha": 1.29e-07, + "neediness": 1.29e-07, + "neeraj": 1.29e-07, + "netsuite": 1.29e-07, + "nettleton": 1.29e-07, + "newson": 1.29e-07, + "nfb": 1.29e-07, + "niebuhr": 1.29e-07, + "nietzschean": 1.29e-07, + "nightwear": 1.29e-07, + "nims": 1.29e-07, + "nonrefundable": 1.29e-07, + "northwoods": 1.29e-07, + "nostalgically": 1.29e-07, + "novena": 1.29e-07, + "nuria": 1.29e-07, + "nxp": 1.29e-07, + "nyi": 1.29e-07, + "nypds": 1.29e-07, + "oflaherty": 1.29e-07, + "oap": 1.29e-07, + "observables": 1.29e-07, + "obviate": 1.29e-07, + "oglesby": 1.29e-07, + "oligomers": 1.29e-07, + "operands": 1.29e-07, + "opprobrium": 1.29e-07, + "oregonians": 1.29e-07, + "organza": 1.29e-07, + "oris": 1.29e-07, + "osei": 1.29e-07, + "oses": 1.29e-07, + "osteosarcoma": 1.29e-07, + "oudh": 1.29e-07, + "ouroboros": 1.29e-07, + "outflanked": 1.29e-07, + "outhouses": 1.29e-07, + "overachiever": 1.29e-07, + "overbite": 1.29e-07, + "overcapacity": 1.29e-07, + "overwriting": 1.29e-07, + "paak": 1.29e-07, + "palaeontologist": 1.29e-07, + "palouse": 1.29e-07, + "panopticon": 1.29e-07, + "panton": 1.29e-07, + "paparazzo": 1.29e-07, + "papp": 1.29e-07, + "paraglider": 1.29e-07, + "parameterized": 1.29e-07, + "parasols": 1.29e-07, + "parsimony": 1.29e-07, + "participles": 1.29e-07, + "parveen": 1.29e-07, + "patmos": 1.29e-07, + "pearland": 1.29e-07, + "pedagogic": 1.29e-07, + "pedis": 1.29e-07, + "penalise": 1.29e-07, + "penfold": 1.29e-07, + "peppering": 1.29e-07, + "perdido": 1.29e-07, + "perishes": 1.29e-07, + "perspiring": 1.29e-07, + "pfff": 1.29e-07, + "pgc": 1.29e-07, + "phages": 1.29e-07, + "phloem": 1.29e-07, + "phot": 1.29e-07, + "photog": 1.29e-07, + "physik": 1.29e-07, + "pib": 1.29e-07, + "pinafore": 1.29e-07, + "placating": 1.29e-07, + "plaited": 1.29e-07, + "plasmon": 1.29e-07, + "playas": 1.29e-07, + "plumed": 1.29e-07, + "plunk": 1.29e-07, + "pnl": 1.29e-07, + "polito": 1.29e-07, + "poshmark": 1.29e-07, + "poston": 1.29e-07, + "potentialities": 1.29e-07, + "poundland": 1.29e-07, + "powerplants": 1.29e-07, + "preconception": 1.29e-07, + "preggers": 1.29e-07, + "prehensile": 1.29e-07, + "preservationists": 1.29e-07, + "printmaker": 1.29e-07, + "profil": 1.29e-07, + "promenades": 1.29e-07, + "prostaglandins": 1.29e-07, + "pryde": 1.29e-07, + "ptl": 1.29e-07, + "puli": 1.29e-07, + "puno": 1.29e-07, + "puranas": 1.29e-07, + "purkinje": 1.29e-07, + "pussycats": 1.29e-07, + "pustules": 1.29e-07, + "qts": 1.29e-07, + "questa": 1.29e-07, + "questo": 1.29e-07, + "ramazan": 1.29e-07, + "randstad": 1.29e-07, + "ratcliff": 1.29e-07, + "rathbun": 1.29e-07, + "realestate": 1.29e-07, + "realigning": 1.29e-07, + "reanalysis": 1.29e-07, + "rebeca": 1.29e-07, + "receptivity": 1.29e-07, + "reconfigurable": 1.29e-07, + "recurve": 1.29e-07, + "redpath": 1.29e-07, + "reema": 1.29e-07, + "religionists": 1.29e-07, + "remediate": 1.29e-07, + "remini": 1.29e-07, + "reneging": 1.29e-07, + "renfro": 1.29e-07, + "repsol": 1.29e-07, + "reptilians": 1.29e-07, + "reseda": 1.29e-07, + "resettling": 1.29e-07, + "reshma": 1.29e-07, + "retinoic": 1.29e-07, + "retread": 1.29e-07, + "rgs": 1.29e-07, + "rhinelander": 1.29e-07, + "rhoa": 1.29e-07, + "riggers": 1.29e-07, + "rivoli": 1.29e-07, + "rogaine": 1.29e-07, + "rosco": 1.29e-07, + "roseburg": 1.29e-07, + "rothesay": 1.29e-07, + "rpr": 1.29e-07, + "rudds": 1.29e-07, + "ruddock": 1.29e-07, + "rums": 1.29e-07, + "ruperts": 1.29e-07, + "russellville": 1.29e-07, + "rutherglen": 1.29e-07, + "rydberg": 1.29e-07, + "rydell": 1.29e-07, + "ryoma": 1.29e-07, + "sackcloth": 1.29e-07, + "safar": 1.29e-07, + "salvadors": 1.29e-07, + "samburu": 1.29e-07, + "saml": 1.29e-07, + "sandinistas": 1.29e-07, + "sandlot": 1.29e-07, + "sarang": 1.29e-07, + "sarcophagi": 1.29e-07, + "sarsaparilla": 1.29e-07, + "satirists": 1.29e-07, + "satirized": 1.29e-07, + "satori": 1.29e-07, + "satyrs": 1.29e-07, + "savants": 1.29e-07, + "schiaparelli": 1.29e-07, + "schiele": 1.29e-07, + "schlosser": 1.29e-07, + "schmucks": 1.29e-07, + "schwarzkopf": 1.29e-07, + "scola": 1.29e-07, + "scoreboards": 1.29e-07, + "scours": 1.29e-07, + "screamo": 1.29e-07, + "sctv": 1.29e-07, + "seamer": 1.29e-07, + "seamstresses": 1.29e-07, + "seductress": 1.29e-07, + "sefer": 1.29e-07, + "sehgal": 1.29e-07, + "seiler": 1.29e-07, + "seldon": 1.29e-07, + "sellouts": 1.29e-07, + "senhor": 1.29e-07, + "shadowhunters": 1.29e-07, + "shakib": 1.29e-07, + "shalit": 1.29e-07, + "shallowly": 1.29e-07, + "shearling": 1.29e-07, + "sheetz": 1.29e-07, + "sheldons": 1.29e-07, + "shenmue": 1.29e-07, + "shepherded": 1.29e-07, + "shero": 1.29e-07, + "sherriff": 1.29e-07, + "shoko": 1.29e-07, + "shored": 1.29e-07, + "showery": 1.29e-07, + "showoff": 1.29e-07, + "siler": 1.29e-07, + "silty": 1.29e-07, + "sinfulness": 1.29e-07, + "siouxsie": 1.29e-07, + "sitc": 1.29e-07, + "sitch": 1.29e-07, + "skf": 1.29e-07, + "slacked": 1.29e-07, + "slimani": 1.29e-07, + "slimline": 1.29e-07, + "smeaton": 1.29e-07, + "sng": 1.29e-07, + "sny": 1.29e-07, + "sobers": 1.29e-07, + "sobriquet": 1.29e-07, + "solipsism": 1.29e-07, + "sonal": 1.29e-07, + "sonnen": 1.29e-07, + "sorrentino": 1.29e-07, + "soundless": 1.29e-07, + "souther": 1.29e-07, + "spectrums": 5.75e-08, + "splashdown": 1.29e-07, + "spluttering": 1.29e-07, + "stagecraft": 1.29e-07, + "stela": 1.29e-07, + "stephon": 1.29e-07, + "stewardesses": 1.29e-07, + "stickney": 1.29e-07, + "stimpy": 1.29e-07, + "stonewalled": 1.29e-07, + "strabismus": 1.29e-07, + "struve": 1.29e-07, + "subarctic": 1.29e-07, + "subhas": 1.29e-07, + "submarginal": 1.29e-07, + "subramaniam": 1.29e-07, + "suess": 1.29e-07, + "suffocates": 1.29e-07, + "suna": 1.29e-07, + "sunniest": 1.29e-07, + "supernaturally": 1.29e-07, + "surveil": 1.29e-07, + "swapo": 1.29e-07, + "sweeny": 1.29e-07, + "sza": 1.29e-07, + "tach": 1.29e-07, + "taliaferro": 1.29e-07, + "taliesin": 1.29e-07, + "taranto": 1.29e-07, + "taters": 1.29e-07, + "tatted": 1.29e-07, + "tavi": 1.29e-07, + "taylormade": 1.29e-07, + "teabags": 1.29e-07, + "tensioning": 1.29e-07, + "thereunder": 1.29e-07, + "thess": 1.29e-07, + "thessalonica": 1.29e-07, + "thrombin": 1.29e-07, + "thrombus": 1.29e-07, + "thune": 1.29e-07, + "thuy": 1.29e-07, + "tiesto": 1.29e-07, + "tilney": 1.29e-07, + "timespan": 1.29e-07, + "tipoff": 1.29e-07, + "tlx": 1.29e-07, + "toller": 1.29e-07, + "tomasi": 1.29e-07, + "topix": 1.29e-07, + "torte": 1.29e-07, + "tounge": 1.29e-07, + "traeger": 1.29e-07, + "transparencies": 1.29e-07, + "travelin": 1.29e-07, + "treacherously": 1.29e-07, + "tremayne": 1.29e-07, + "tribesman": 1.29e-07, + "trifled": 1.29e-07, + "troponin": 1.29e-07, + "trumpism": 1.29e-07, + "tsvangirai": 1.29e-07, + "tte": 1.29e-07, + "tuchman": 1.29e-07, + "tuffy": 1.29e-07, + "tumbleweeds": 1.29e-07, + "turbojet": 1.29e-07, + "turgenev": 1.29e-07, + "tutus": 1.29e-07, + "twerp": 1.29e-07, + "twh": 1.29e-07, + "tyreke": 1.29e-07, + "ube": 1.29e-07, + "uehara": 1.29e-07, + "unbending": 1.29e-07, + "unburdened": 1.29e-07, + "underrate": 1.29e-07, + "understeer": 1.29e-07, + "unexpressed": 1.29e-07, + "universidade": 1.29e-07, + "unnoticeable": 1.29e-07, + "unrecoverable": 1.29e-07, + "uomo": 1.29e-07, + "usdas": 1.29e-07, + "usfs": 1.29e-07, + "vacationed": 1.29e-07, + "vagal": 1.29e-07, + "valenciennes": 1.29e-07, + "vallecano": 1.29e-07, + "vanishingly": 1.29e-07, + "veiling": 1.29e-07, + "verbier": 1.29e-07, + "verboten": 1.29e-07, + "verena": 1.29e-07, + "vesicular": 1.29e-07, + "vezina": 1.29e-07, + "vibing": 1.29e-07, + "villalobos": 1.29e-07, + "vindicates": 1.29e-07, + "visio": 1.29e-07, + "voit": 1.29e-07, + "voom": 1.29e-07, + "waid": 1.29e-07, + "waitressing": 1.29e-07, + "walkley": 1.29e-07, + "wantin": 1.29e-07, + "warpaint": 1.29e-07, + "watermarked": 1.29e-07, + "waterson": 1.29e-07, + "wattles": 1.29e-07, + "weet": 1.29e-07, + "wellingborough": 1.29e-07, + "whitestone": 1.29e-07, + "wideman": 1.29e-07, + "wiesenthal": 1.29e-07, + "wilburn": 1.29e-07, + "wilden": 1.29e-07, + "wildrose": 1.29e-07, + "wilko": 1.29e-07, + "willam": 1.29e-07, + "windrush": 1.29e-07, + "winship": 1.29e-07, + "winstead": 1.29e-07, + "wisbech": 1.29e-07, + "withe": 1.29e-07, + "wizened": 1.29e-07, + "wll": 1.29e-07, + "wnbl": 1.29e-07, + "wrappings": 1.29e-07, + "wyse": 1.29e-07, + "xhamster": 1.29e-07, + "xscape": 1.29e-07, + "yachtsman": 1.29e-07, + "yaqui": 1.29e-07, + "yeller": 1.29e-07, + "yeomans": 1.29e-07, + "yhe": 1.29e-07, + "yigal": 1.29e-07, + "yk": 1.29e-07, + "ysgol": 1.29e-07, + "zigzagging": 1.29e-07, + "zigzags": 1.29e-07, + "zita": 1.29e-07, + "aaaaaand": 1.26e-07, + "aahh": 1.26e-07, + "abarth": 1.26e-07, + "abdelaziz": 1.26e-07, + "abeokuta": 1.26e-07, + "abigails": 1.26e-07, + "acco": 1.26e-07, + "acrostic": 1.26e-07, + "actuate": 1.26e-07, + "adamu": 1.26e-07, + "adas": 9.77e-08, + "adie": 1.26e-07, + "aerodynamically": 1.26e-07, + "afforestation": 1.26e-07, + "agrippina": 1.26e-07, + "ahimsa": 1.26e-07, + "ailey": 1.26e-07, + "akins": 1.26e-07, + "akufo": 1.26e-07, + "alaikum": 1.26e-07, + "alprazolam": 1.26e-07, + "alucard": 1.26e-07, + "amarna": 1.26e-07, + "anabel": 1.26e-07, + "anachronisms": 1.26e-07, + "analogously": 1.26e-07, + "ananya": 1.26e-07, + "angostura": 1.26e-07, + "anos": 1.26e-07, + "anticonvulsant": 1.26e-07, + "aoba": 1.26e-07, + "apennines": 1.26e-07, + "aph": 1.26e-07, + "arbutus": 1.26e-07, + "archi": 1.26e-07, + "arcturus": 1.26e-07, + "arithmetical": 1.26e-07, + "arminian": 1.26e-07, + "asco": 1.26e-07, + "askance": 1.26e-07, + "asmara": 1.26e-07, + "aspirate": 1.26e-07, + "athelstan": 1.26e-07, + "atn": 1.26e-07, + "atreus": 1.26e-07, + "atte": 1.26e-07, + "aydin": 1.26e-07, + "bacha": 1.26e-07, + "bacolod": 1.26e-07, + "bacteriologist": 1.26e-07, + "baekje": 1.26e-07, + "bagchi": 1.26e-07, + "baio": 1.26e-07, + "balcombe": 1.26e-07, + "baleen": 1.26e-07, + "balti": 1.26e-07, + "bandido": 1.26e-07, + "banos": 1.26e-07, + "barnier": 1.26e-07, + "baulk": 1.26e-07, + "bazillion": 1.26e-07, + "beachwood": 1.26e-07, + "beate": 1.26e-07, + "begbie": 1.26e-07, + "beholding": 1.26e-07, + "belittles": 1.26e-07, + "bellona": 1.26e-07, + "belvidere": 1.26e-07, + "benaud": 1.26e-07, + "benicio": 1.26e-07, + "benj": 1.26e-07, + "beri": 1.26e-07, + "bernat": 1.26e-07, + "bevis": 1.26e-07, + "bhalla": 1.26e-07, + "biao": 1.26e-07, + "biller": 1.26e-07, + "binny": 1.26e-07, + "biogenic": 1.26e-07, + "bionics": 1.26e-07, + "bioreactor": 1.26e-07, + "bioremediation": 1.26e-07, + "birchwood": 1.26e-07, + "birders": 1.26e-07, + "birr": 1.26e-07, + "bismark": 1.26e-07, + "blared": 1.26e-07, + "blindspot": 1.26e-07, + "blithering": 1.26e-07, + "blunderbuss": 1.26e-07, + "bobbitt": 1.26e-07, + "boddy": 1.26e-07, + "bodkin": 1.26e-07, + "bonzo": 1.26e-07, + "boonies": 1.26e-07, + "borman": 1.26e-07, + "borstal": 1.26e-07, + "bowring": 1.26e-07, + "bridgegate": 1.26e-07, + "britannic": 1.26e-07, + "broder": 1.26e-07, + "brookdale": 1.26e-07, + "browed": 1.26e-07, + "brubeck": 1.26e-07, + "bryden": 1.26e-07, + "bullsh": 1.26e-07, + "burnishing": 1.26e-07, + "burnouts": 1.26e-07, + "butz": 1.26e-07, + "byng": 1.26e-07, + "caca": 1.26e-07, + "caillou": 1.26e-07, + "calligrapher": 1.26e-07, + "cambrai": 1.26e-07, + "cannibalize": 1.26e-07, + "cantors": 1.26e-07, + "capela": 1.26e-07, + "carin": 1.26e-07, + "carine": 1.26e-07, + "carjacked": 1.26e-07, + "carlsson": 1.26e-07, + "carrow": 1.26e-07, + "cartes": 1.26e-07, + "caryn": 1.26e-07, + "cassady": 1.26e-07, + "castiglione": 1.26e-07, + "catched": 1.26e-07, + "catterick": 1.26e-07, + "caul": 1.26e-07, + "ccn": 1.26e-07, + "cella": 1.26e-07, + "cemetary": 1.26e-07, + "cfg": 1.26e-07, + "chairpersons": 1.26e-07, + "chalices": 1.26e-07, + "chaminade": 1.26e-07, + "chandrasekhar": 1.26e-07, + "charmian": 1.26e-07, + "chattels": 1.26e-07, + "chaudhuri": 1.26e-07, + "chavo": 1.26e-07, + "cheapo": 1.26e-07, + "cheon": 1.26e-07, + "chewable": 1.26e-07, + "chicana": 1.26e-07, + "chillers": 1.26e-07, + "chimamanda": 1.26e-07, + "chode": 1.26e-07, + "choudhary": 1.26e-07, + "chukka": 1.26e-07, + "chuo": 1.26e-07, + "cienega": 1.26e-07, + "ciprofloxacin": 1.26e-07, + "claytons": 1.26e-07, + "clegane": 1.26e-07, + "clooneys": 1.26e-07, + "cloudiness": 1.26e-07, + "coladas": 1.26e-07, + "commercializing": 1.26e-07, + "compartmentalize": 1.26e-07, + "comptia": 1.26e-07, + "condorcet": 1.26e-07, + "congreve": 1.26e-07, + "constantius": 1.26e-07, + "continence": 1.26e-07, + "converses": 1.26e-07, + "convolutional": 1.26e-07, + "coppery": 1.26e-07, + "cotillion": 1.26e-07, + "cottonmouth": 1.26e-07, + "courbet": 1.26e-07, + "couse": 1.26e-07, + "creds": 1.26e-07, + "cresting": 1.26e-07, + "crh": 1.26e-07, + "cringes": 1.26e-07, + "cromwells": 1.26e-07, + "crookes": 1.26e-07, + "crouches": 1.26e-07, + "crumpet": 1.26e-07, + "crybabies": 1.26e-07, + "cueing": 1.26e-07, + "cvn": 1.26e-07, + "cyclades": 1.26e-07, + "cyclosporine": 1.26e-07, + "czars": 1.26e-07, + "daguerreotype": 1.26e-07, + "dahan": 1.26e-07, + "dairying": 1.26e-07, + "dallin": 1.26e-07, + "damascene": 1.26e-07, + "damiano": 1.26e-07, + "danang": 1.26e-07, + "danone": 1.26e-07, + "darl": 1.26e-07, + "darragh": 1.26e-07, + "daventry": 1.26e-07, + "dawlish": 1.26e-07, + "dcl": 1.26e-07, + "ddl": 1.26e-07, + "deakins": 1.26e-07, + "debase": 1.26e-07, + "decoction": 1.26e-07, + "decontaminated": 1.26e-07, + "deflectors": 1.26e-07, + "derailleur": 1.26e-07, + "destabilising": 1.26e-07, + "destructively": 1.26e-07, + "desultory": 1.26e-07, + "deval": 1.26e-07, + "dewa": 1.26e-07, + "dhe": 1.26e-07, + "diagon": 1.26e-07, + "diatom": 1.26e-07, + "diffident": 1.26e-07, + "diggy": 1.26e-07, + "dilating": 1.26e-07, + "dillons": 1.26e-07, + "dimond": 1.26e-07, + "disequilibrium": 1.26e-07, + "disgracefully": 1.26e-07, + "dislocating": 1.26e-07, + "dismally": 1.26e-07, + "diverticulitis": 1.26e-07, + "divisors": 1.26e-07, + "doke": 1.26e-07, + "doles": 1.26e-07, + "dominics": 1.26e-07, + "donegan": 1.26e-07, + "dopes": 1.26e-07, + "doppelgangers": 1.26e-07, + "dorf": 1.26e-07, + "doro": 1.26e-07, + "dressler": 1.26e-07, + "dtt": 1.26e-07, + "dulling": 1.26e-07, + "dyce": 1.26e-07, + "dysart": 1.26e-07, + "easa": 1.26e-07, + "eastport": 1.26e-07, + "eddard": 1.26e-07, + "edel": 1.26e-07, + "edg": 1.26e-07, + "effervescence": 1.26e-07, + "effete": 1.26e-07, + "eigen": 1.26e-07, + "elastomeric": 1.26e-07, + "elastomers": 1.26e-07, + "elfman": 1.26e-07, + "elijahs": 1.26e-07, + "eloi": 1.26e-07, + "embassys": 1.26e-07, + "emme": 1.26e-07, + "emptor": 1.26e-07, + "ennio": 1.26e-07, + "enrages": 1.26e-07, + "enviroment": 1.26e-07, + "epg": 1.26e-07, + "erina": 1.26e-07, + "erlanger": 1.26e-07, + "erythrocyte": 1.26e-07, + "espirito": 1.26e-07, + "esser": 1.26e-07, + "estas": 1.26e-07, + "estoy": 1.26e-07, + "etruria": 1.26e-07, + "eurythmics": 1.26e-07, + "eventuate": 1.26e-07, + "exa": 1.26e-07, + "excoriated": 1.26e-07, + "expe": 1.26e-07, + "expounds": 1.26e-07, + "expropriate": 1.26e-07, + "extensibility": 1.26e-07, + "extensional": 1.26e-07, + "falla": 1.26e-07, + "farge": 1.26e-07, + "fatiguing": 1.26e-07, + "fatt": 1.26e-07, + "faubourg": 1.26e-07, + "faulkners": 1.26e-07, + "fbo": 1.26e-07, + "fearne": 1.26e-07, + "femtosecond": 1.26e-07, + "ferments": 1.26e-07, + "fernald": 1.26e-07, + "fetter": 1.26e-07, + "fictionalised": 1.26e-07, + "fidelis": 1.26e-07, + "fidler": 1.26e-07, + "figgins": 1.26e-07, + "finaly": 1.26e-07, + "firmin": 1.26e-07, + "flashs": 1.26e-07, + "flatt": 1.26e-07, + "flipboard": 1.26e-07, + "flippantly": 1.26e-07, + "flutist": 1.26e-07, + "fnl": 1.26e-07, + "fof": 1.26e-07, + "folkways": 1.26e-07, + "followin": 1.26e-07, + "foremans": 1.26e-07, + "formalist": 1.26e-07, + "fortes": 1.26e-07, + "foxe": 1.26e-07, + "fpm": 1.26e-07, + "frederickson": 1.26e-07, + "freind": 1.26e-07, + "frenchies": 1.26e-07, + "frugally": 1.26e-07, + "fruitlessly": 1.26e-07, + "fsr": 1.26e-07, + "fti": 1.26e-07, + "ftv": 1.26e-07, + "functionalized": 1.26e-07, + "furth": 1.26e-07, + "fylde": 1.26e-07, + "gadolinium": 1.26e-07, + "gamedev": 1.26e-07, + "garbutt": 1.26e-07, + "garrys": 1.26e-07, + "gashes": 1.26e-07, + "gatekeeping": 1.26e-07, + "gazans": 1.26e-07, + "gbps": 1.26e-07, + "gcr": 1.26e-07, + "geb": 1.26e-07, + "geena": 1.26e-07, + "geezers": 1.26e-07, + "geld": 1.26e-07, + "genderqueer": 1.26e-07, + "gener": 1.26e-07, + "germano": 1.26e-07, + "germinating": 1.26e-07, + "gilbertson": 1.26e-07, + "gillie": 1.26e-07, + "gillon": 1.26e-07, + "gimenez": 1.26e-07, + "gleb": 1.26e-07, + "glocks": 1.26e-07, + "glorias": 1.26e-07, + "gnabry": 1.26e-07, + "gobbles": 1.26e-07, + "goshawk": 1.26e-07, + "gosse": 1.26e-07, + "gotg": 1.26e-07, + "goulet": 1.26e-07, + "granta": 1.26e-07, + "gravimetric": 1.26e-07, + "grazers": 1.26e-07, + "grb": 1.26e-07, + "greases": 1.26e-07, + "greenlee": 1.26e-07, + "greve": 1.26e-07, + "grimmer": 1.26e-07, + "grommet": 1.26e-07, + "gtb": 1.26e-07, + "guardhouse": 1.26e-07, + "gulab": 1.26e-07, + "gwp": 1.26e-07, + "gyno": 1.26e-07, + "haberman": 1.26e-07, + "hahahahah": 1.26e-07, + "hahahahahahaha": 1.26e-07, + "hailee": 1.26e-07, + "hairpiece": 1.26e-07, + "hakka": 1.26e-07, + "haleigh": 1.26e-07, + "halfs": 6.76e-08, + "halitosis": 1.26e-07, + "halverson": 1.26e-07, + "hammersley": 1.26e-07, + "haridwar": 1.26e-07, + "hathaways": 1.26e-07, + "haystacks": 1.26e-07, + "haytham": 1.26e-07, + "hazare": 1.26e-07, + "hazeltine": 1.26e-07, + "heartiest": 1.26e-07, + "heheh": 1.26e-07, + "heliopolis": 1.26e-07, + "hellers": 1.26e-07, + "helly": 1.26e-07, + "helmuth": 1.26e-07, + "heloise": 1.26e-07, + "hemsley": 1.26e-07, + "herath": 1.26e-07, + "herrin": 1.26e-07, + "hezbollahs": 1.26e-07, + "hider": 1.26e-07, + "higuchi": 1.26e-07, + "hildebrandt": 1.26e-07, + "hinde": 1.26e-07, + "hinojosa": 1.26e-07, + "hisoka": 1.26e-07, + "historiographical": 1.26e-07, + "historique": 1.26e-07, + "hizbullah": 1.26e-07, + "hocks": 1.26e-07, + "holbrooke": 1.26e-07, + "holdovers": 1.26e-07, + "holywood": 1.26e-07, + "homebush": 1.26e-07, + "homemaking": 1.26e-07, + "hormel": 1.26e-07, + "hota": 1.26e-07, + "huberman": 1.26e-07, + "humidor": 1.26e-07, + "hutus": 1.26e-07, + "hyperpigmentation": 1.26e-07, + "ickes": 1.26e-07, + "ielts": 1.26e-07, + "ifsc": 1.26e-07, + "iglesia": 1.26e-07, + "ilb": 1.26e-07, + "illiterates": 1.26e-07, + "illya": 1.26e-07, + "ilocos": 1.26e-07, + "ilyich": 1.26e-07, + "immer": 1.26e-07, + "impost": 1.26e-07, + "impugned": 1.26e-07, + "inari": 1.26e-07, + "incivility": 1.26e-07, + "indigestible": 1.26e-07, + "inescapably": 1.26e-07, + "ingratiating": 1.26e-07, + "insensible": 1.26e-07, + "interlacing": 1.26e-07, + "intermingle": 1.26e-07, + "interreligious": 1.26e-07, + "invisalign": 1.26e-07, + "ioa": 1.26e-07, + "isas": 5.25e-08, + "issy": 1.26e-07, + "iya": 1.26e-07, + "jacki": 1.26e-07, + "jaromir": 1.26e-07, + "jaron": 1.26e-07, + "jerkoff": 1.26e-07, + "jetski": 1.26e-07, + "jibril": 1.26e-07, + "jiggs": 1.26e-07, + "jobseeker": 1.26e-07, + "jokowi": 1.26e-07, + "joondalup": 1.26e-07, + "jordie": 1.26e-07, + "jordyn": 1.26e-07, + "jorgen": 1.26e-07, + "juggalo": 1.26e-07, + "juvie": 1.26e-07, + "kaneki": 1.26e-07, + "kani": 1.26e-07, + "karishma": 1.26e-07, + "kasten": 1.26e-07, + "kayaker": 1.26e-07, + "kherson": 1.26e-07, + "kief": 1.26e-07, + "kieffer": 1.26e-07, + "kieren": 1.26e-07, + "kinfolk": 1.26e-07, + "kingpins": 1.26e-07, + "kirchhoff": 1.26e-07, + "kitamura": 1.26e-07, + "komo": 1.26e-07, + "kopitar": 1.26e-07, + "kort": 1.26e-07, + "kras": 1.26e-07, + "krishan": 1.26e-07, + "kuei": 1.26e-07, + "kurtzman": 1.26e-07, + "kweli": 1.26e-07, + "kwesi": 1.26e-07, + "lade": 1.26e-07, + "lahood": 1.26e-07, + "larkins": 1.2e-07, + "larsons": 1.26e-07, + "latvias": 1.26e-07, + "lavoie": 1.26e-07, + "lawal": 1.26e-07, + "lawnmowers": 1.26e-07, + "laycock": 1.26e-07, + "leagueoflegends": 1.26e-07, + "learjet": 1.26e-07, + "leeching": 1.26e-07, + "lehr": 1.26e-07, + "lehtinen": 1.26e-07, + "leibovitz": 1.26e-07, + "lene": 1.26e-07, + "lfg": 1.26e-07, + "liebig": 1.26e-07, + "likeliest": 1.26e-07, + "lindor": 1.26e-07, + "lippe": 1.26e-07, + "lippert": 1.26e-07, + "lockable": 1.26e-07, + "longline": 1.26e-07, + "lool": 1.26e-07, + "lota": 1.26e-07, + "lowden": 1.26e-07, + "ltda": 1.26e-07, + "lucretius": 1.26e-07, + "lukin": 1.26e-07, + "lungu": 1.26e-07, + "luthier": 1.26e-07, + "mable": 1.26e-07, + "maclin": 1.26e-07, + "maidana": 1.26e-07, + "makerere": 1.26e-07, + "malabsorption": 1.26e-07, + "malcontents": 1.26e-07, + "mangy": 1.26e-07, + "manilas": 1.26e-07, + "manoeuvrability": 1.26e-07, + "mantri": 1.26e-07, + "mardy": 1.26e-07, + "marfan": 1.26e-07, + "margit": 1.26e-07, + "maribel": 1.26e-07, + "marriageable": 1.26e-07, + "masako": 1.26e-07, + "maybelle": 1.26e-07, + "mayville": 1.26e-07, + "mazzini": 1.26e-07, + "mccarter": 1.26e-07, + "mcgoldrick": 1.26e-07, + "mckernan": 1.26e-07, + "mcquade": 1.26e-07, + "meb": 1.26e-07, + "megabits": 1.26e-07, + "megara": 1.26e-07, + "meiotic": 1.26e-07, + "mejor": 1.26e-07, + "melb": 1.26e-07, + "mellie": 1.26e-07, + "mends": 1.26e-07, + "mercys": 1.26e-07, + "messieurs": 1.26e-07, + "microbrewery": 1.26e-07, + "microchipped": 1.26e-07, + "micromanaging": 1.26e-07, + "microspheres": 1.26e-07, + "miers": 1.26e-07, + "mija": 1.26e-07, + "mikoto": 1.26e-07, + "militar": 1.26e-07, + "minders": 1.26e-07, + "minifigures": 1.26e-07, + "minimisation": 1.26e-07, + "minimises": 1.26e-07, + "mirada": 1.26e-07, + "mirages": 1.26e-07, + "mistrusted": 1.26e-07, + "mithras": 1.26e-07, + "mjs": 1.26e-07, + "mlr": 1.26e-07, + "mmu": 1.26e-07, + "mochizuki": 1.26e-07, + "mofos": 1.26e-07, + "mohicans": 1.26e-07, + "mohini": 1.26e-07, + "mousavi": 1.26e-07, + "muggings": 1.26e-07, + "multifarious": 1.26e-07, + "multiphase": 1.26e-07, + "munshi": 1.26e-07, + "mushrooming": 1.26e-07, + "mutational": 1.26e-07, + "nabeel": 1.26e-07, + "napper": 1.26e-07, + "narciso": 1.26e-07, + "nativism": 1.26e-07, + "natsumi": 1.26e-07, + "naveed": 1.26e-07, + "nays": 1.26e-07, + "neatest": 1.26e-07, + "neca": 1.26e-07, + "negroni": 1.26e-07, + "nibali": 1.26e-07, + "nicos": 8.13e-08, + "nicolet": 1.26e-07, + "nippers": 1.26e-07, + "noblesville": 1.26e-07, + "nonfunctional": 1.26e-07, + "nonlinearity": 1.26e-07, + "nul": 1.26e-07, + "nunzio": 1.26e-07, + "nygaard": 1.26e-07, + "nyquil": 1.26e-07, + "odea": 1.26e-07, + "oakridge": 1.26e-07, + "oam": 1.26e-07, + "obafemi": 1.26e-07, + "obeisance": 1.26e-07, + "obrador": 1.26e-07, + "obstructionism": 1.26e-07, + "oddballs": 1.26e-07, + "odder": 1.26e-07, + "odense": 1.26e-07, + "olcott": 1.26e-07, + "omnipresence": 1.26e-07, + "omv": 1.26e-07, + "onee": 1.26e-07, + "operon": 1.26e-07, + "opo": 1.26e-07, + "opti": 1.26e-07, + "orchestrator": 1.26e-07, + "orono": 1.26e-07, + "osteopath": 1.26e-07, + "oswaldo": 1.26e-07, + "outstrips": 1.26e-07, + "paderborn": 1.26e-07, + "pangasinan": 1.26e-07, + "papel": 1.26e-07, + "paramounts": 1.26e-07, + "pathogenicity": 1.26e-07, + "patrolmen": 1.26e-07, + "paule": 1.26e-07, + "pavlovian": 1.26e-07, + "pendulous": 1.26e-07, + "pepito": 1.26e-07, + "pericardium": 1.26e-07, + "pertwee": 1.26e-07, + "petrovic": 1.26e-07, + "physiognomy": 1.26e-07, + "pictou": 1.26e-07, + "pif": 1.26e-07, + "pinna": 1.26e-07, + "piquet": 1.26e-07, + "plagiarize": 1.26e-07, + "platonism": 1.26e-07, + "platteville": 1.26e-07, + "plumped": 1.26e-07, + "pocketbooks": 1.26e-07, + "poeple": 1.26e-07, + "polytechnics": 1.26e-07, + "poore": 1.26e-07, + "popp": 1.26e-07, + "portables": 1.26e-07, + "pouted": 1.26e-07, + "poynton": 1.26e-07, + "prang": 1.26e-07, + "precis": 1.26e-07, + "preferment": 1.26e-07, + "preinstalled": 1.26e-07, + "prescience": 1.26e-07, + "preternatural": 1.26e-07, + "protozoan": 1.26e-07, + "provincials": 1.26e-07, + "psus": 1.26e-07, + "psychogenic": 1.26e-07, + "puddin": 1.26e-07, + "puppeteers": 1.26e-07, + "purpura": 1.26e-07, + "pushpa": 1.26e-07, + "pyar": 1.26e-07, + "quacking": 1.26e-07, + "quadrillion": 1.26e-07, + "queiroz": 1.26e-07, + "quilter": 1.26e-07, + "rafsanjani": 1.26e-07, + "rahat": 1.26e-07, + "rajas": 8.51e-08, + "rajkumar": 1.26e-07, + "rajputs": 1.26e-07, + "ramakrishnan": 1.26e-07, + "rane": 1.26e-07, + "rantings": 1.26e-07, + "rapaport": 1.26e-07, + "raphaels": 1.26e-07, + "rasool": 1.26e-07, + "ratifies": 1.26e-07, + "rbl": 1.26e-07, + "reactance": 1.26e-07, + "reactivating": 1.26e-07, + "reapportionment": 1.26e-07, + "reasonings": 1.26e-07, + "recieving": 1.26e-07, + "recollected": 1.26e-07, + "reconfirmed": 1.26e-07, + "redhat": 1.26e-07, + "redistributive": 1.26e-07, + "redlining": 1.26e-07, + "reductionism": 1.26e-07, + "reentering": 1.26e-07, + "reestablishment": 1.26e-07, + "reformatted": 1.26e-07, + "refracting": 1.26e-07, + "regio": 1.26e-07, + "reinvents": 1.26e-07, + "rens": 8.71e-08, + "renames": 1.26e-07, + "renaults": 1.26e-07, + "renu": 1.26e-07, + "repairers": 1.26e-07, + "reshuffling": 1.26e-07, + "retributive": 1.26e-07, + "reu": 1.26e-07, + "revelled": 1.26e-07, + "revelling": 1.26e-07, + "reviewable": 1.26e-07, + "ril": 1.26e-07, + "rimsky": 1.26e-07, + "rist": 1.26e-07, + "riverrun": 1.26e-07, + "rmx": 1.26e-07, + "rnase": 1.26e-07, + "rodolphe": 1.26e-07, + "rof": 1.26e-07, + "roguelike": 1.26e-07, + "romanized": 1.26e-07, + "romilly": 1.26e-07, + "roquefort": 1.26e-07, + "rosella": 1.26e-07, + "rotorcraft": 1.26e-07, + "rovere": 1.26e-07, + "roya": 1.26e-07, + "rudiger": 1.26e-07, + "ruffed": 1.26e-07, + "rummaged": 1.26e-07, + "runnymede": 1.26e-07, + "rwa": 1.26e-07, + "rylands": 1.26e-07, + "sackler": 1.26e-07, + "saddlebags": 1.26e-07, + "saltpeter": 1.26e-07, + "sandilands": 1.26e-07, + "santamaria": 1.26e-07, + "sapient": 1.26e-07, + "sates": 1.26e-07, + "saudia": 1.26e-07, + "saurons": 1.26e-07, + "savouring": 1.26e-07, + "scalias": 1.26e-07, + "schultze": 1.26e-07, + "scobie": 1.26e-07, + "scotto": 1.26e-07, + "scudamore": 1.26e-07, + "seatac": 1.26e-07, + "secord": 1.26e-07, + "sectioning": 1.26e-07, + "sedges": 1.26e-07, + "seedings": 1.26e-07, + "selloff": 1.26e-07, + "semiannual": 1.26e-07, + "senanayake": 1.26e-07, + "senorita": 1.26e-07, + "sepoy": 1.26e-07, + "seren": 1.26e-07, + "sert": 1.26e-07, + "sfg": 1.26e-07, + "shabu": 1.26e-07, + "shampooing": 1.26e-07, + "shareholdings": 1.26e-07, + "shc": 1.26e-07, + "shirou": 1.26e-07, + "shiseido": 1.26e-07, + "shivas": 1.26e-07, + "shoprite": 1.26e-07, + "shuriken": 1.26e-07, + "siad": 1.26e-07, + "sightseers": 1.26e-07, + "sike": 1.26e-07, + "silkscreen": 1.26e-07, + "sirleaf": 1.26e-07, + "sjp": 1.26e-07, + "skanky": 1.26e-07, + "skeptically": 1.26e-07, + "skims": 1.26e-07, + "skywalk": 1.26e-07, + "slosh": 1.26e-07, + "smal": 1.26e-07, + "smits": 1.26e-07, + "snus": 1.26e-07, + "solskjaer": 1.26e-07, + "somebodies": 1.26e-07, + "soporific": 1.26e-07, + "sorokin": 1.26e-07, + "soundproofing": 1.26e-07, + "spanks": 1.26e-07, + "sparkman": 1.26e-07, + "speedrun": 1.26e-07, + "spiritualists": 1.26e-07, + "spiros": 1.26e-07, + "spoor": 1.26e-07, + "sportsperson": 1.26e-07, + "springhill": 1.26e-07, + "spruced": 1.26e-07, + "srh": 1.26e-07, + "ssid": 1.26e-07, + "staffords": 1.26e-07, + "standardise": 1.26e-07, + "stanmore": 1.26e-07, + "starsky": 1.26e-07, + "steeled": 1.26e-07, + "stephs": 1.26e-07, + "stiftung": 1.26e-07, + "stockists": 1.26e-07, + "stockroom": 1.26e-07, + "stokers": 7.94e-08, + "stoneham": 1.26e-07, + "strausss": 1.26e-07, + "strawman": 1.26e-07, + "streptomycin": 1.26e-07, + "stringfellow": 1.26e-07, + "sturgeons": 1.26e-07, + "subtitling": 1.26e-07, + "subtracts": 1.26e-07, + "subversives": 1.26e-07, + "sundowns": 1.26e-07, + "superfine": 1.26e-07, + "superimpose": 1.26e-07, + "surratt": 1.26e-07, + "sutters": 1.26e-07, + "sverige": 1.26e-07, + "sveriges": 1.26e-07, + "svs": 1.26e-07, + "swaddled": 1.26e-07, + "swamiji": 1.26e-07, + "swanston": 1.26e-07, + "sylvanus": 1.26e-07, + "synched": 1.26e-07, + "syndergaard": 1.26e-07, + "synge": 1.26e-07, + "tailbone": 1.26e-07, + "taksim": 1.26e-07, + "talbots": 7.24e-08, + "tameside": 1.26e-07, + "tanahashi": 1.26e-07, + "tawney": 1.26e-07, + "technik": 1.26e-07, + "teeing": 1.26e-07, + "terabyte": 1.26e-07, + "tereza": 1.26e-07, + "theatricals": 1.26e-07, + "therrien": 1.26e-07, + "thibs": 1.26e-07, + "thiol": 1.26e-07, + "thm": 1.26e-07, + "ticino": 1.26e-07, + "tinashe": 1.26e-07, + "tolson": 1.26e-07, + "toyoda": 1.26e-07, + "tradeable": 1.26e-07, + "transmittance": 1.26e-07, + "traumatize": 1.26e-07, + "tredegar": 1.26e-07, + "trents": 1.26e-07, + "trivialize": 1.26e-07, + "trotskyist": 1.26e-07, + "truncheon": 1.26e-07, + "tudo": 1.26e-07, + "tunisians": 1.26e-07, + "turco": 1.26e-07, + "twigg": 1.26e-07, + "twitpic": 1.26e-07, + "tybalt": 1.26e-07, + "tympanic": 1.26e-07, + "tyrian": 1.26e-07, + "tyrwhitt": 1.26e-07, + "uil": 1.26e-07, + "uman": 1.26e-07, + "umaru": 1.26e-07, + "umatilla": 1.26e-07, + "umbc": 1.26e-07, + "unadjusted": 1.26e-07, + "uncharged": 1.26e-07, + "unconsolidated": 1.26e-07, + "uncontaminated": 1.26e-07, + "uncorrelated": 1.26e-07, + "undermanned": 1.26e-07, + "undulations": 1.26e-07, + "unearths": 1.26e-07, + "unmixed": 1.26e-07, + "unswerving": 1.26e-07, + "upsell": 1.26e-07, + "uruguays": 1.26e-07, + "usopp": 1.26e-07, + "usui": 1.26e-07, + "vainglory": 1.26e-07, + "valderrama": 1.26e-07, + "vanderpump": 1.26e-07, + "vaud": 1.26e-07, + "vbs": 1.26e-07, + "venkatesh": 1.26e-07, + "venoms": 1.26e-07, + "verein": 1.26e-07, + "verlaine": 1.26e-07, + "vettels": 1.26e-07, + "vettori": 1.26e-07, + "visualised": 1.26e-07, + "viswanathan": 1.26e-07, + "vitrified": 1.26e-07, + "voldemorts": 1.26e-07, + "voraciously": 1.26e-07, + "waddled": 1.26e-07, + "wainscoting": 1.26e-07, + "walkies": 1.26e-07, + "wampum": 1.26e-07, + "wann": 1.26e-07, + "warders": 1.26e-07, + "warg": 1.26e-07, + "waterboy": 1.26e-07, + "watkinson": 1.26e-07, + "wau": 1.26e-07, + "wavell": 1.26e-07, + "weblogs": 1.26e-07, + "weenies": 1.26e-07, + "wesker": 1.26e-07, + "westen": 1.26e-07, + "westmeath": 1.26e-07, + "wetted": 1.26e-07, + "whitton": 1.26e-07, + "wholesomeness": 1.26e-07, + "whyalla": 1.26e-07, + "willits": 1.26e-07, + "winamp": 1.26e-07, + "wingsuit": 1.26e-07, + "winklevoss": 1.26e-07, + "winterbourne": 1.26e-07, + "wld": 1.26e-07, + "wookiee": 1.26e-07, + "worthies": 1.26e-07, + "wpf": 1.26e-07, + "wroth": 1.26e-07, + "wtb": 1.26e-07, + "wunderkind": 1.26e-07, + "wunderlich": 1.26e-07, + "wuppertal": 1.26e-07, + "wwc": 1.26e-07, + "wysiwyg": 1.26e-07, + "yani": 1.26e-07, + "yearwood": 1.26e-07, + "yella": 1.26e-07, + "yester": 1.26e-07, + "yiannopoulos": 1.26e-07, + "ynez": 1.26e-07, + "yorkshires": 1.26e-07, + "zanetti": 1.26e-07, + "zemo": 1.26e-07, + "zolpidem": 1.26e-07, + "zon": 1.26e-07, + "zubair": 1.26e-07, + "zumwalt": 1.26e-07, + "abdurrahman": 1.23e-07, + "abq": 1.23e-07, + "abstinent": 1.23e-07, + "abysmally": 1.23e-07, + "acclimation": 1.23e-07, + "accommodative": 1.23e-07, + "activewear": 1.23e-07, + "adda": 1.23e-07, + "adderley": 1.23e-07, + "adit": 1.23e-07, + "adjunctive": 1.23e-07, + "admonishes": 1.23e-07, + "admonitions": 1.23e-07, + "aera": 1.23e-07, + "afe": 1.23e-07, + "afonso": 1.23e-07, + "akhbar": 1.23e-07, + "akhilesh": 1.23e-07, + "albinos": 1.23e-07, + "alighting": 1.23e-07, + "allee": 1.23e-07, + "allergenic": 1.23e-07, + "allyl": 1.23e-07, + "alphaville": 1.23e-07, + "altadena": 1.23e-07, + "alvi": 1.23e-07, + "amisom": 1.23e-07, + "amours": 1.23e-07, + "anabaptist": 1.23e-07, + "andreessen": 1.23e-07, + "andropov": 1.23e-07, + "anibal": 1.23e-07, + "animosities": 1.23e-07, + "ankylosing": 1.23e-07, + "annihilates": 1.23e-07, + "anoka": 1.23e-07, + "antananarivo": 1.23e-07, + "antara": 1.23e-07, + "antonella": 1.23e-07, + "anvils": 1.23e-07, + "aping": 1.23e-07, + "apoc": 1.23e-07, + "arata": 1.23e-07, + "araya": 1.23e-07, + "archways": 1.23e-07, + "aric": 1.23e-07, + "arisa": 1.23e-07, + "arnab": 1.23e-07, + "arnon": 1.23e-07, + "arq": 1.23e-07, + "ascites": 1.23e-07, + "asoka": 1.23e-07, + "asphyxiated": 1.23e-07, + "aspic": 1.23e-07, + "asvab": 1.23e-07, + "aurea": 1.23e-07, + "avaya": 1.23e-07, + "avedon": 1.23e-07, + "avicenna": 1.23e-07, + "ayat": 1.23e-07, + "ayew": 1.23e-07, + "azuma": 1.23e-07, + "babydoll": 1.23e-07, + "badgered": 1.23e-07, + "balak": 1.23e-07, + "balks": 1.23e-07, + "baltistan": 1.23e-07, + "bandgap": 1.23e-07, + "barbe": 1.23e-07, + "barger": 1.23e-07, + "barolo": 1.23e-07, + "barrette": 1.23e-07, + "bartleby": 1.23e-07, + "barto": 1.23e-07, + "batam": 1.23e-07, + "bbfc": 1.23e-07, + "bcuz": 1.23e-07, + "bechuanaland": 1.23e-07, + "beene": 1.23e-07, + "behoove": 1.23e-07, + "belding": 1.23e-07, + "belloc": 1.23e-07, + "beltre": 1.23e-07, + "beppe": 1.23e-07, + "bertolt": 1.23e-07, + "bhandari": 1.23e-07, + "bharata": 1.23e-07, + "biodynamic": 1.23e-07, + "bissett": 1.23e-07, + "bist": 1.23e-07, + "bittern": 1.23e-07, + "blackening": 1.23e-07, + "blackhead": 1.23e-07, + "bleakness": 1.23e-07, + "bleeder": 1.23e-07, + "blights": 1.23e-07, + "blockhouse": 1.23e-07, + "boater": 1.23e-07, + "bodegas": 1.23e-07, + "boonville": 1.23e-07, + "bopper": 1.23e-07, + "borosilicate": 1.23e-07, + "bosporus": 1.23e-07, + "bote": 1.23e-07, + "bourgogne": 1.23e-07, + "braemar": 1.23e-07, + "brailsford": 1.23e-07, + "braless": 1.23e-07, + "branko": 1.23e-07, + "braz": 1.23e-07, + "breading": 1.23e-07, + "brendas": 1.23e-07, + "bridport": 1.23e-07, + "brindley": 1.23e-07, + "britishness": 1.23e-07, + "broiling": 1.23e-07, + "bronies": 1.23e-07, + "brookwood": 1.23e-07, + "brownes": 1.23e-07, + "bua": 1.23e-07, + "buckminster": 1.23e-07, + "bundeswehr": 1.23e-07, + "bungo": 1.23e-07, + "burchard": 1.23e-07, + "caging": 1.23e-07, + "caledon": 1.23e-07, + "calli": 1.23e-07, + "calligraphic": 1.23e-07, + "campanile": 1.23e-07, + "campinas": 1.23e-07, + "caos": 6.17e-08, + "capi": 1.23e-07, + "capitalising": 1.23e-07, + "captiva": 1.23e-07, + "capuano": 1.23e-07, + "carbonite": 1.23e-07, + "careerbuilder": 1.23e-07, + "caren": 1.23e-07, + "carlie": 1.23e-07, + "carmens": 1.23e-07, + "cashin": 1.23e-07, + "castrating": 1.23e-07, + "castres": 1.23e-07, + "cathie": 1.23e-07, + "cavalryman": 1.23e-07, + "ceausescu": 1.23e-07, + "cedes": 1.23e-07, + "celle": 1.23e-07, + "celsus": 1.23e-07, + "cfos": 1.23e-07, + "chadli": 1.23e-07, + "chaebol": 1.23e-07, + "chaitanya": 1.23e-07, + "chanels": 5.01e-08, + "charmers": 1.23e-07, + "chasse": 1.23e-07, + "cheesecakes": 1.23e-07, + "chenille": 1.23e-07, + "chichen": 1.23e-07, + "chides": 1.23e-07, + "chm": 1.23e-07, + "chokers": 1.23e-07, + "chretien": 1.23e-07, + "cilic": 1.23e-07, + "cindys": 1.23e-07, + "cishet": 1.23e-07, + "ciu": 1.23e-07, + "climatologists": 1.23e-07, + "clonazepam": 1.23e-07, + "coif": 1.23e-07, + "coital": 1.23e-07, + "colonnades": 1.23e-07, + "comission": 1.23e-07, + "compartmentalization": 1.23e-07, + "computerworld": 1.23e-07, + "conditionals": 1.23e-07, + "confessors": 1.23e-07, + "connies": 1.23e-07, + "conocophillips": 1.23e-07, + "consolations": 1.23e-07, + "copp": 1.23e-07, + "cotillard": 1.23e-07, + "covariates": 1.23e-07, + "criminalizes": 1.23e-07, + "croaker": 1.23e-07, + "crosser": 1.23e-07, + "crossers": 1.23e-07, + "cua": 1.23e-07, + "cuffing": 1.23e-07, + "cuisinart": 1.23e-07, + "culex": 1.23e-07, + "cultist": 1.23e-07, + "cyclamen": 1.23e-07, + "cyn": 1.23e-07, + "dacs": 1.23e-07, + "dahlberg": 1.23e-07, + "dala": 1.23e-07, + "damion": 1.23e-07, + "danis": 8.51e-08, + "davido": 1.23e-07, + "deadbeats": 1.23e-07, + "deceivers": 1.23e-07, + "decennial": 1.23e-07, + "declarer": 1.23e-07, + "deducing": 1.23e-07, + "deffo": 1.23e-07, + "deimos": 1.23e-07, + "delawares": 1.23e-07, + "demaryius": 1.23e-07, + "denn": 1.23e-07, + "deportment": 1.23e-07, + "derringer": 1.23e-07, + "desertions": 1.23e-07, + "detrick": 1.23e-07, + "dettori": 1.23e-07, + "diab": 1.23e-07, + "didion": 1.23e-07, + "diene": 1.23e-07, + "digitalization": 1.23e-07, + "dihedral": 1.23e-07, + "diluent": 1.23e-07, + "dioxins": 1.23e-07, + "diphthong": 1.23e-07, + "disbelieved": 1.23e-07, + "discontinuance": 1.23e-07, + "dismembering": 1.23e-07, + "disorientated": 1.23e-07, + "disparagingly": 1.23e-07, + "dle": 1.23e-07, + "dogfighting": 1.23e-07, + "dombrowski": 1.23e-07, + "domenic": 1.23e-07, + "domesticate": 1.23e-07, + "doop": 1.23e-07, + "doubtlessly": 1.23e-07, + "dougan": 1.23e-07, + "downtempo": 1.23e-07, + "dromore": 1.23e-07, + "druitt": 1.23e-07, + "drydock": 1.23e-07, + "dsw": 1.23e-07, + "dubiously": 1.23e-07, + "ductility": 1.23e-07, + "duffs": 1.23e-07, + "dukedom": 1.23e-07, + "dulcet": 1.23e-07, + "dunston": 1.23e-07, + "durie": 1.23e-07, + "dwindles": 1.23e-07, + "eae": 1.23e-07, + "ebays": 1.23e-07, + "ecumenism": 1.23e-07, + "eglise": 1.23e-07, + "ellman": 1.23e-07, + "ellyn": 1.23e-07, + "elution": 1.23e-07, + "emeka": 1.23e-07, + "emmie": 1.23e-07, + "emollient": 1.23e-07, + "emptively": 1.23e-07, + "encase": 1.23e-07, + "encrypts": 1.23e-07, + "endovascular": 1.23e-07, + "enfranchisement": 1.23e-07, + "engram": 1.23e-07, + "ensigns": 1.23e-07, + "entailing": 1.23e-07, + "eosinophilic": 1.23e-07, + "eqt": 1.23e-07, + "ereader": 1.23e-07, + "ergot": 1.23e-07, + "escutcheon": 1.23e-07, + "ethnocentrism": 1.23e-07, + "euch": 1.23e-07, + "eui": 1.23e-07, + "exemple": 1.23e-07, + "exhorts": 1.23e-07, + "fairey": 1.23e-07, + "falchion": 1.23e-07, + "fallows": 1.23e-07, + "falmer": 1.23e-07, + "farquharson": 1.23e-07, + "faruk": 1.23e-07, + "fastlane": 1.23e-07, + "fcpa": 1.23e-07, + "feckin": 1.23e-07, + "feild": 1.23e-07, + "fenugreek": 1.23e-07, + "ferber": 1.23e-07, + "filthiest": 1.23e-07, + "fister": 1.23e-07, + "fiv": 1.23e-07, + "flammability": 1.23e-07, + "flanigan": 1.23e-07, + "flappers": 1.23e-07, + "flatland": 1.23e-07, + "flounders": 1.23e-07, + "fogo": 1.23e-07, + "forefoot": 1.23e-07, + "foremen": 1.23e-07, + "foretaste": 1.23e-07, + "formwork": 1.23e-07, + "frelinghuysen": 1.23e-07, + "friedmann": 1.23e-07, + "fritos": 1.23e-07, + "fruited": 1.23e-07, + "fuca": 1.23e-07, + "fugees": 1.23e-07, + "fuh": 1.23e-07, + "fumigated": 1.23e-07, + "funes": 1.23e-07, + "furby": 1.23e-07, + "furloughs": 1.23e-07, + "gabel": 1.23e-07, + "galileos": 1.23e-07, + "gamesmanship": 1.23e-07, + "gamey": 1.23e-07, + "gamings": 1.23e-07, + "gano": 1.23e-07, + "garageband": 1.23e-07, + "garnets": 2.63e-08, + "gatefold": 1.23e-07, + "gaur": 1.23e-07, + "gayes": 1.23e-07, + "gaziantep": 1.23e-07, + "gcp": 1.23e-07, + "geddy": 1.23e-07, + "gfr": 1.23e-07, + "giger": 1.23e-07, + "gimmie": 1.23e-07, + "globetrotter": 1.23e-07, + "gloster": 1.23e-07, + "glucan": 1.23e-07, + "glutamic": 1.23e-07, + "glycosides": 1.23e-07, + "gmac": 1.23e-07, + "goodes": 1.23e-07, + "goodhue": 1.23e-07, + "goole": 1.23e-07, + "gopalakrishnan": 1.23e-07, + "granma": 1.23e-07, + "greenbaum": 1.23e-07, + "greenhalgh": 1.23e-07, + "greenhorn": 1.23e-07, + "grigori": 1.23e-07, + "grint": 1.23e-07, + "grossi": 1.23e-07, + "grouting": 1.23e-07, + "gso": 1.23e-07, + "guatemalas": 1.23e-07, + "guglielmo": 1.23e-07, + "guilherme": 1.23e-07, + "guiness": 1.23e-07, + "gunz": 1.23e-07, + "guth": 1.23e-07, + "habitations": 1.23e-07, + "hagiography": 1.23e-07, + "halima": 1.23e-07, + "hamlyn": 1.23e-07, + "hangry": 1.23e-07, + "hannibals": 1.23e-07, + "hansson": 1.23e-07, + "hanwell": 1.23e-07, + "harborough": 1.23e-07, + "harems": 1.23e-07, + "harnett": 1.23e-07, + "harrassed": 1.23e-07, + "havering": 1.23e-07, + "headbutting": 1.23e-07, + "headteachers": 1.23e-07, + "healings": 1.23e-07, + "hearer": 1.23e-07, + "heike": 1.23e-07, + "heimdall": 1.23e-07, + "hellion": 1.23e-07, + "helpmann": 1.23e-07, + "hendra": 1.23e-07, + "hermitian": 1.23e-07, + "hfa": 1.23e-07, + "hif": 1.23e-07, + "hln": 1.23e-07, + "homages": 1.23e-07, + "homegirl": 1.23e-07, + "honecker": 1.23e-07, + "houck": 1.23e-07, + "hubli": 1.23e-07, + "hudak": 1.23e-07, + "huevos": 1.23e-07, + "huggies": 1.23e-07, + "hughess": 1.23e-07, + "hulton": 1.23e-07, + "hunnam": 1.23e-07, + "hyang": 1.23e-07, + "hypes": 1.23e-07, + "hypocritically": 1.23e-07, + "hypotensive": 1.23e-07, + "idealize": 1.23e-07, + "idled": 1.23e-07, + "idolaters": 1.23e-07, + "ifb": 1.23e-07, + "igcse": 1.23e-07, + "ignace": 1.23e-07, + "iki": 1.23e-07, + "ilex": 1.23e-07, + "immobilised": 1.23e-07, + "indecently": 1.23e-07, + "ineligibility": 1.23e-07, + "ingres": 1.23e-07, + "insidiously": 1.23e-07, + "insulates": 1.23e-07, + "invidious": 1.23e-07, + "isamu": 1.23e-07, + "isao": 1.23e-07, + "ishares": 1.23e-07, + "istanbuls": 1.23e-07, + "iwill": 1.23e-07, + "jagannath": 1.23e-07, + "jaimes": 1.23e-07, + "janel": 1.23e-07, + "janina": 1.23e-07, + "javan": 1.23e-07, + "jaycee": 1.23e-07, + "jellybeans": 1.23e-07, + "jhelum": 1.23e-07, + "jhs": 1.23e-07, + "jif": 1.23e-07, + "jkr": 1.23e-07, + "jll": 1.23e-07, + "joby": 1.23e-07, + "jonty": 1.23e-07, + "jowls": 1.23e-07, + "judaica": 1.23e-07, + "jungkook": 1.23e-07, + "juxtapositions": 1.23e-07, + "kaba": 1.23e-07, + "kalinga": 1.23e-07, + "kalla": 1.23e-07, + "kameez": 1.23e-07, + "karimi": 1.23e-07, + "katsura": 1.23e-07, + "kaunda": 1.23e-07, + "kayode": 1.23e-07, + "keble": 1.23e-07, + "kerch": 1.23e-07, + "kerley": 1.23e-07, + "kerrang": 1.23e-07, + "kher": 1.23e-07, + "kiku": 1.23e-07, + "kirkbride": 1.23e-07, + "klansmen": 1.23e-07, + "klezmer": 1.23e-07, + "komsomol": 1.23e-07, + "kotori": 1.23e-07, + "kpc": 1.23e-07, + "kpi": 1.23e-07, + "kq": 1.23e-07, + "kristensen": 1.23e-07, + "kristoffer": 1.23e-07, + "krk": 1.23e-07, + "kusama": 1.23e-07, + "kwak": 1.23e-07, + "laci": 1.23e-07, + "lakshman": 1.23e-07, + "lames": 1.23e-07, + "lampe": 1.23e-07, + "lamport": 1.23e-07, + "lanchester": 1.23e-07, + "lantana": 1.23e-07, + "laudrup": 1.23e-07, + "laugher": 1.23e-07, + "leakages": 1.23e-07, + "ledecky": 1.23e-07, + "lederhosen": 1.23e-07, + "leishman": 1.23e-07, + "lenas": 1.23e-07, + "lenard": 1.23e-07, + "lesh": 1.23e-07, + "leveller": 1.23e-07, + "lexmark": 1.23e-07, + "lfp": 1.23e-07, + "liat": 1.23e-07, + "licencing": 1.23e-07, + "liebman": 1.23e-07, + "lightweights": 1.23e-07, + "lincecum": 1.23e-07, + "liveliest": 1.23e-07, + "livestreaming": 1.23e-07, + "lmt": 1.23e-07, + "lond": 1.23e-07, + "lonelier": 1.23e-07, + "lookers": 1.23e-07, + "loui": 1.23e-07, + "luhrmann": 1.23e-07, + "luise": 1.23e-07, + "lumberyard": 1.23e-07, + "luxembourgs": 1.23e-07, + "luxuriate": 1.23e-07, + "lycopene": 1.23e-07, + "lydian": 1.23e-07, + "lysenko": 1.23e-07, + "macartney": 1.23e-07, + "macias": 1.23e-07, + "maclachlan": 1.23e-07, + "macleans": 5.5e-08, + "magmas": 1.23e-07, + "maitreya": 1.23e-07, + "maler": 1.23e-07, + "malini": 1.23e-07, + "manik": 1.23e-07, + "mannish": 1.23e-07, + "mansa": 1.23e-07, + "mansi": 1.23e-07, + "mapk": 1.23e-07, + "maras": 8.51e-08, + "maran": 1.23e-07, + "marant": 1.23e-07, + "marathoner": 1.23e-07, + "mariella": 1.23e-07, + "markit": 1.23e-07, + "marrickville": 1.23e-07, + "marshaling": 1.23e-07, + "marshalltown": 1.23e-07, + "marshmello": 1.23e-07, + "matar": 1.23e-07, + "matrons": 1.23e-07, + "maxey": 1.23e-07, + "mcalester": 1.23e-07, + "mccleary": 1.23e-07, + "mccombs": 1.23e-07, + "mcfall": 1.23e-07, + "mcv": 1.23e-07, + "mcx": 1.23e-07, + "meanies": 1.23e-07, + "meisel": 1.23e-07, + "mene": 1.23e-07, + "mentee": 1.23e-07, + "meringues": 1.23e-07, + "merkle": 1.23e-07, + "merson": 1.23e-07, + "messerschmitt": 1.23e-07, + "metrosexual": 1.23e-07, + "michiel": 1.23e-07, + "micr": 1.23e-07, + "micromax": 1.23e-07, + "midgley": 1.23e-07, + "mikami": 1.23e-07, + "milam": 1.23e-07, + "milroy": 1.23e-07, + "misanthropy": 1.23e-07, + "misfires": 1.23e-07, + "moche": 1.23e-07, + "modelers": 1.23e-07, + "mohinder": 1.23e-07, + "moisturising": 1.23e-07, + "moley": 1.23e-07, + "monacos": 1.23e-07, + "moncrief": 1.23e-07, + "moneybags": 1.23e-07, + "monstercat": 1.23e-07, + "moorpark": 1.23e-07, + "mord": 1.23e-07, + "morenos": 1.23e-07, + "morimoto": 1.23e-07, + "motioning": 1.23e-07, + "motorolas": 1.23e-07, + "moustakas": 1.23e-07, + "msus": 1.23e-07, + "multifocal": 1.23e-07, + "mumma": 1.23e-07, + "munchen": 1.23e-07, + "muntz": 1.23e-07, + "musicologist": 1.23e-07, + "mvd": 1.23e-07, + "myint": 1.23e-07, + "mylo": 1.23e-07, + "naas": 1.23e-07, + "nadella": 1.23e-07, + "nagarjuna": 1.23e-07, + "nakai": 1.23e-07, + "namib": 1.23e-07, + "nanobots": 1.23e-07, + "nantz": 1.23e-07, + "narcan": 1.23e-07, + "narcissa": 1.23e-07, + "natchitoches": 1.23e-07, + "navier": 1.23e-07, + "ndebele": 1.23e-07, + "negeri": 1.23e-07, + "nemtsov": 1.23e-07, + "nerva": 1.23e-07, + "neuroplasticity": 1.23e-07, + "neuville": 1.23e-07, + "newhart": 1.23e-07, + "newsboys": 1.23e-07, + "newsmen": 1.23e-07, + "newswatch": 1.23e-07, + "nightie": 1.23e-07, + "nirmal": 1.23e-07, + "nisei": 1.23e-07, + "nitrites": 1.23e-07, + "nomos": 1.23e-07, + "nonreligious": 1.23e-07, + "normies": 1.23e-07, + "norquist": 1.23e-07, + "norske": 1.23e-07, + "novotel": 1.23e-07, + "nowe": 1.23e-07, + "nspcc": 1.23e-07, + "nue": 1.23e-07, + "numbs": 1.23e-07, + "nyah": 1.23e-07, + "obvi": 1.23e-07, + "octahedron": 1.23e-07, + "ojeda": 1.23e-07, + "okabe": 1.23e-07, + "olsens": 1.23e-07, + "ond": 1.23e-07, + "onodera": 1.23e-07, + "onstar": 1.23e-07, + "orga": 1.23e-07, + "osbert": 1.23e-07, + "osr": 1.23e-07, + "ossification": 1.23e-07, + "otten": 1.23e-07, + "outran": 1.23e-07, + "overconsumption": 1.23e-07, + "overgrazing": 1.23e-07, + "overmatched": 1.23e-07, + "overworking": 1.23e-07, + "ozu": 1.23e-07, + "pacifiers": 1.23e-07, + "paks": 5.37e-08, + "palembang": 1.23e-07, + "panniers": 1.23e-07, + "pantanal": 1.23e-07, + "papilloma": 1.23e-07, + "paragons": 1.23e-07, + "paralyse": 1.23e-07, + "paraplegia": 1.23e-07, + "parkwood": 1.23e-07, + "parthians": 1.23e-07, + "patmore": 1.23e-07, + "patri": 1.23e-07, + "patt": 1.23e-07, + "pcg": 1.23e-07, + "pennsylvanians": 1.23e-07, + "penton": 1.23e-07, + "penury": 1.23e-07, + "perdita": 1.23e-07, + "perfidious": 1.23e-07, + "perianth": 1.23e-07, + "pern": 1.23e-07, + "phillipines": 1.23e-07, + "philologist": 1.23e-07, + "phir": 1.23e-07, + "phonecall": 1.23e-07, + "photosphere": 1.23e-07, + "picaresque": 1.23e-07, + "pieters": 1.23e-07, + "pilger": 1.23e-07, + "pintura": 1.23e-07, + "pipped": 1.23e-07, + "playbill": 1.23e-07, + "plovers": 1.23e-07, + "plumping": 1.23e-07, + "polarizer": 1.23e-07, + "pomo": 1.23e-07, + "ponton": 1.23e-07, + "portends": 1.23e-07, + "portofino": 1.23e-07, + "prams": 1.23e-07, + "precancerous": 1.23e-07, + "predisposing": 1.23e-07, + "presuppose": 1.23e-07, + "pripyat": 1.23e-07, + "promethean": 1.23e-07, + "prostration": 1.23e-07, + "providential": 1.23e-07, + "provincially": 1.23e-07, + "psoriatic": 1.23e-07, + "psychopharmacology": 1.23e-07, + "psychosexual": 1.23e-07, + "puh": 1.23e-07, + "punxsutawney": 1.23e-07, + "pushcart": 1.23e-07, + "quadrupling": 1.23e-07, + "quitman": 1.23e-07, + "rabobank": 1.23e-07, + "racemes": 1.23e-07, + "radicalize": 1.23e-07, + "radiometer": 1.23e-07, + "rafinha": 1.23e-07, + "ramus": 1.23e-07, + "rastafarian": 1.23e-07, + "rattray": 1.23e-07, + "ravers": 1.23e-07, + "ravished": 1.23e-07, + "reabsorbed": 1.23e-07, + "reacquainted": 1.23e-07, + "reanimate": 1.23e-07, + "reavers": 1.23e-07, + "reawakened": 1.23e-07, + "recht": 1.23e-07, + "reinterpreting": 1.23e-07, + "relat": 1.23e-07, + "rembrandts": 6.61e-08, + "renin": 1.23e-07, + "repertoires": 1.23e-07, + "replicable": 1.23e-07, + "reprieved": 1.23e-07, + "researchs": 1.23e-07, + "resected": 1.23e-07, + "reshoot": 1.23e-07, + "reto": 1.23e-07, + "retried": 1.23e-07, + "reupload": 1.23e-07, + "rexroth": 1.23e-07, + "riband": 1.23e-07, + "rigo": 1.23e-07, + "rizzi": 1.23e-07, + "rlly": 1.23e-07, + "robi": 1.23e-07, + "rockn": 1.23e-07, + "romsey": 1.23e-07, + "roskilde": 1.23e-07, + "rossendale": 1.23e-07, + "rottweilers": 1.23e-07, + "routs": 1.23e-07, + "rrc": 1.23e-07, + "rsfsr": 1.23e-07, + "ruminant": 1.23e-07, + "rushworth": 1.23e-07, + "russa": 1.23e-07, + "rvd": 1.23e-07, + "rws": 1.23e-07, + "ryker": 1.23e-07, + "saal": 1.23e-07, + "saavedra": 1.23e-07, + "sabotages": 1.23e-07, + "sabrinas": 1.23e-07, + "sach": 1.23e-07, + "sachem": 1.23e-07, + "samwell": 1.23e-07, + "sanctorum": 1.23e-07, + "sanogo": 1.23e-07, + "saori": 1.23e-07, + "satchels": 1.23e-07, + "savino": 1.23e-07, + "scad": 1.23e-07, + "scheffer": 1.23e-07, + "schimmel": 1.23e-07, + "schismatic": 1.23e-07, + "schistosomiasis": 1.23e-07, + "schuberts": 1.23e-07, + "scientism": 1.23e-07, + "scrubland": 1.23e-07, + "searles": 1.23e-07, + "segall": 1.23e-07, + "selfs": 7.41e-08, + "semifinalist": 1.23e-07, + "seminyak": 1.23e-07, + "serviceability": 1.23e-07, + "sevigny": 1.23e-07, + "sexualize": 1.23e-07, + "shambling": 1.23e-07, + "shanker": 1.23e-07, + "shelagh": 1.23e-07, + "sherm": 1.23e-07, + "shipton": 1.23e-07, + "shitposting": 1.23e-07, + "shl": 1.23e-07, + "shopaholic": 1.23e-07, + "shoplift": 1.23e-07, + "shreya": 1.23e-07, + "sideman": 1.23e-07, + "sii": 1.23e-07, + "sika": 1.23e-07, + "silkworms": 1.23e-07, + "sines": 1.23e-07, + "singtel": 1.23e-07, + "skintight": 1.23e-07, + "skyscanner": 1.23e-07, + "slades": 1.23e-07, + "sleepwalk": 1.23e-07, + "slg": 1.23e-07, + "slipway": 1.23e-07, + "sniped": 1.23e-07, + "sodexo": 1.23e-07, + "soham": 1.23e-07, + "solicitous": 1.23e-07, + "solow": 1.23e-07, + "sonnenberg": 1.23e-07, + "sonofabitch": 1.23e-07, + "sopping": 1.23e-07, + "soundscan": 1.23e-07, + "southeastward": 1.23e-07, + "soz": 1.23e-07, + "spasmodic": 1.23e-07, + "speach": 1.23e-07, + "speeders": 1.23e-07, + "spezza": 1.23e-07, + "spittin": 1.23e-07, + "splay": 1.23e-07, + "sproule": 1.23e-07, + "squiggle": 1.23e-07, + "staats": 1.23e-07, + "standoffish": 1.23e-07, + "stapp": 1.23e-07, + "statutorily": 1.23e-07, + "steeples": 1.23e-07, + "steepness": 1.23e-07, + "stitt": 1.23e-07, + "stoltz": 1.23e-07, + "stomachache": 1.23e-07, + "stratagems": 1.23e-07, + "subalpine": 1.23e-07, + "subclavian": 1.23e-07, + "sublease": 1.23e-07, + "sublimely": 1.23e-07, + "subluxation": 1.23e-07, + "subnational": 1.23e-07, + "suma": 1.23e-07, + "summerlin": 1.23e-07, + "sumpter": 1.23e-07, + "sunna": 1.23e-07, + "supercharging": 1.23e-07, + "surmounting": 1.23e-07, + "suzerainty": 1.23e-07, + "svendsen": 1.23e-07, + "swabbed": 1.23e-07, + "sylvias": 1.23e-07, + "sympathised": 1.23e-07, + "synthesise": 1.23e-07, + "tagus": 1.23e-07, + "taints": 1.23e-07, + "taiwo": 1.23e-07, + "talibans": 1.23e-07, + "talwar": 1.23e-07, + "tamerlane": 1.23e-07, + "tancredi": 1.23e-07, + "tane": 1.23e-07, + "tantalus": 1.23e-07, + "tarin": 1.23e-07, + "tartu": 1.23e-07, + "tatsuo": 1.23e-07, + "tavenner": 1.23e-07, + "tayside": 1.23e-07, + "teaneck": 1.23e-07, + "tempests": 1.23e-07, + "tfp": 1.23e-07, + "thousandths": 1.23e-07, + "thundercats": 1.23e-07, + "tighty": 1.23e-07, + "tinier": 1.23e-07, + "tinkler": 1.23e-07, + "toft": 1.23e-07, + "togolese": 1.23e-07, + "tonsillectomy": 1.23e-07, + "tooltip": 1.23e-07, + "toombs": 1.23e-07, + "torp": 1.23e-07, + "toscanini": 1.23e-07, + "toscano": 1.23e-07, + "tpo": 1.23e-07, + "transmigration": 1.23e-07, + "treyarch": 1.23e-07, + "trumping": 1.23e-07, + "tsmc": 1.23e-07, + "tsukasa": 1.23e-07, + "typological": 1.23e-07, + "uck": 1.23e-07, + "ueber": 1.23e-07, + "uhura": 1.23e-07, + "ukiah": 1.23e-07, + "umrah": 1.23e-07, + "unalienable": 1.23e-07, + "unasked": 1.23e-07, + "unblinking": 1.23e-07, + "uncivilised": 1.23e-07, + "uncompensated": 1.23e-07, + "unconquered": 1.23e-07, + "undemanding": 1.23e-07, + "underinsured": 1.23e-07, + "undersides": 1.23e-07, + "unissued": 1.23e-07, + "unisys": 1.23e-07, + "unl": 1.23e-07, + "unlearning": 1.23e-07, + "unmanly": 1.23e-07, + "unquiet": 1.23e-07, + "unspecific": 1.23e-07, + "untiring": 1.23e-07, + "untreatable": 1.23e-07, + "usted": 1.23e-07, + "vaccaro": 1.23e-07, + "vam": 1.23e-07, + "vania": 1.23e-07, + "vaporizes": 1.23e-07, + "varden": 1.23e-07, + "venda": 1.23e-07, + "veras": 1.23e-07, + "verifier": 1.23e-07, + "verry": 1.23e-07, + "vetiver": 1.23e-07, + "vgc": 1.23e-07, + "viaducts": 1.23e-07, + "villian": 1.23e-07, + "viney": 1.23e-07, + "virgen": 1.23e-07, + "virions": 1.23e-07, + "virulently": 1.23e-07, + "vividness": 1.23e-07, + "vliet": 1.23e-07, + "volkswagens": 5.75e-08, + "voyaging": 1.23e-07, + "vulpes": 1.23e-07, + "wacha": 1.23e-07, + "wagged": 1.23e-07, + "waggon": 1.23e-07, + "waitangi": 1.23e-07, + "waked": 1.23e-07, + "walang": 1.23e-07, + "wallsend": 1.23e-07, + "wangaratta": 1.23e-07, + "watauga": 1.23e-07, + "wavefunction": 1.23e-07, + "wcbs": 1.23e-07, + "wechsler": 1.23e-07, + "wertheim": 1.23e-07, + "wertheimer": 1.23e-07, + "westbourne": 1.23e-07, + "weyerhaeuser": 1.23e-07, + "whan": 1.23e-07, + "wheats": 1.23e-07, + "whistlers": 5.62e-08, + "whitt": 1.23e-07, + "whittlesey": 1.23e-07, + "wholemeal": 1.23e-07, + "windchill": 1.23e-07, + "woa": 1.23e-07, + "womenfolk": 1.23e-07, + "wonderboy": 1.23e-07, + "wonga": 1.23e-07, + "writhed": 1.23e-07, + "xlv": 1.23e-07, + "yeehaw": 1.23e-07, + "yoho": 1.23e-07, + "yuya": 1.23e-07, + "yuzuru": 1.23e-07, + "zadok": 1.23e-07, + "zang": 1.23e-07, + "zanuck": 1.23e-07, + "zc": 1.23e-07, + "zhe": 1.23e-07, + "zille": 1.23e-07, + "zl": 1.23e-07, + "zoroaster": 1.23e-07, + "aao": 1.2e-07, + "abrogate": 1.2e-07, + "acanthus": 1.2e-07, + "acheron": 1.2e-07, + "acog": 1.2e-07, + "acrylate": 1.2e-07, + "adders": 1.2e-07, + "adulyadej": 1.2e-07, + "afew": 1.2e-07, + "affixing": 1.2e-07, + "agoura": 1.2e-07, + "aion": 1.2e-07, + "akimbo": 1.2e-07, + "albanias": 1.2e-07, + "albano": 1.2e-07, + "aldis": 7.76e-08, + "alexandros": 1.2e-07, + "alkenes": 1.2e-07, + "alten": 1.2e-07, + "amadeo": 1.2e-07, + "amartya": 1.2e-07, + "ambi": 1.2e-07, + "ambled": 1.2e-07, + "amhara": 1.2e-07, + "amitriptyline": 1.2e-07, + "amparo": 1.2e-07, + "analytes": 1.2e-07, + "aniseed": 1.2e-07, + "anjelica": 1.2e-07, + "antediluvian": 1.2e-07, + "antetokounmpo": 1.2e-07, + "anticorruption": 1.2e-07, + "antifascist": 1.2e-07, + "anupam": 1.2e-07, + "anxiolytic": 1.2e-07, + "aosta": 1.2e-07, + "apollonia": 1.2e-07, + "appr": 1.2e-07, + "arcelormittal": 1.2e-07, + "aronofsky": 1.2e-07, + "arpeggio": 1.2e-07, + "arroz": 1.2e-07, + "arvn": 1.2e-07, + "arx": 1.2e-07, + "ashmolean": 1.2e-07, + "asiana": 1.2e-07, + "asker": 1.2e-07, + "athan": 1.2e-07, + "atonal": 1.2e-07, + "attainments": 1.2e-07, + "aurore": 1.2e-07, + "awc": 1.2e-07, + "axils": 1.2e-07, + "azeem": 1.2e-07, + "backslash": 1.2e-07, + "bagong": 1.2e-07, + "balustrades": 1.2e-07, + "bampton": 1.2e-07, + "bandhan": 1.2e-07, + "banting": 1.2e-07, + "barajas": 1.2e-07, + "barnetts": 1.2e-07, + "bashers": 1.2e-07, + "basked": 1.2e-07, + "batwing": 1.2e-07, + "baume": 1.2e-07, + "baylis": 1.2e-07, + "bcn": 1.2e-07, + "beacuse": 1.2e-07, + "bearskin": 1.2e-07, + "beatitudes": 1.2e-07, + "becher": 1.2e-07, + "bedsheet": 1.2e-07, + "belanger": 1.2e-07, + "bemoans": 1.2e-07, + "benedick": 1.2e-07, + "beneficially": 1.2e-07, + "beter": 1.2e-07, + "beyblade": 1.2e-07, + "bhargava": 1.2e-07, + "bicknell": 1.2e-07, + "biggles": 1.2e-07, + "bikaner": 1.2e-07, + "binational": 1.2e-07, + "bintang": 1.2e-07, + "biopharma": 1.2e-07, + "birkett": 1.2e-07, + "bismillah": 1.2e-07, + "blighty": 1.2e-07, + "blindfolds": 1.2e-07, + "bln": 1.2e-07, + "blud": 1.2e-07, + "bodhisattvas": 1.2e-07, + "boldt": 1.2e-07, + "bolivians": 1.2e-07, + "borja": 1.2e-07, + "brane": 1.2e-07, + "broglie": 1.2e-07, + "bruegel": 1.2e-07, + "brung": 1.2e-07, + "bsr": 1.2e-07, + "bto": 1.2e-07, + "bubbler": 1.2e-07, + "buckthorn": 1.2e-07, + "buhl": 1.2e-07, + "burak": 1.2e-07, + "burpee": 1.2e-07, + "bushehr": 1.2e-07, + "bushell": 1.2e-07, + "bushrangers": 1.2e-07, + "buzzers": 1.2e-07, + "byo": 1.2e-07, + "cabe": 1.2e-07, + "cadenza": 1.2e-07, + "callosum": 1.2e-07, + "camberley": 1.2e-07, + "camisole": 1.2e-07, + "candys": 2.45e-08, + "capones": 1.2e-07, + "caput": 1.2e-07, + "carmakers": 1.2e-07, + "carnell": 1.2e-07, + "carrickfergus": 1.2e-07, + "casilla": 1.2e-07, + "cassavetes": 1.2e-07, + "castroneves": 1.2e-07, + "catamarans": 1.2e-07, + "cathryn": 1.2e-07, + "cck": 1.2e-07, + "cele": 1.2e-07, + "centrifuged": 1.2e-07, + "cephalopod": 1.2e-07, + "cerise": 1.2e-07, + "chahal": 1.2e-07, + "chalcedon": 1.2e-07, + "chalcedony": 1.2e-07, + "chancellorsville": 1.2e-07, + "changchun": 1.2e-07, + "chardin": 1.2e-07, + "chasms": 1.2e-07, + "cheapside": 1.2e-07, + "checkmark": 1.2e-07, + "chelating": 1.2e-07, + "chemokine": 1.2e-07, + "chicopee": 1.2e-07, + "chisinau": 1.2e-07, + "chloro": 1.2e-07, + "christianitys": 1.2e-07, + "christmassy": 1.2e-07, + "chromatographic": 1.2e-07, + "chromes": 1.2e-07, + "chrystal": 1.2e-07, + "cinched": 1.2e-07, + "classist": 1.2e-07, + "claudes": 1.2e-07, + "cleanups": 1.2e-07, + "cleon": 1.2e-07, + "cleopatras": 1.2e-07, + "climaxing": 1.2e-07, + "clomid": 1.2e-07, + "clonidine": 1.2e-07, + "cno": 1.2e-07, + "coagulated": 1.2e-07, + "colgan": 1.2e-07, + "colonising": 1.2e-07, + "comix": 1.2e-07, + "commandeering": 1.2e-07, + "compellingly": 1.2e-07, + "complet": 1.2e-07, + "condensates": 1.2e-07, + "congos": 1.2e-07, + "conjugations": 1.2e-07, + "corday": 1.2e-07, + "cordons": 1.2e-07, + "cornetto": 1.2e-07, + "coul": 1.2e-07, + "counterrevolutionary": 1.2e-07, + "countin": 1.2e-07, + "covets": 1.2e-07, + "coyly": 1.2e-07, + "craigavon": 1.2e-07, + "createspace": 1.2e-07, + "creepin": 1.2e-07, + "crespi": 1.2e-07, + "cribbage": 1.2e-07, + "crinkled": 1.2e-07, + "critchley": 1.2e-07, + "crna": 1.2e-07, + "crosscountry": 1.2e-07, + "ctx": 1.2e-07, + "cty": 1.2e-07, + "cullens": 6.31e-08, + "cyclophosphamide": 1.2e-07, + "danks": 1.2e-07, + "dazs": 1.2e-07, + "deactivates": 1.2e-07, + "debasement": 1.2e-07, + "decameron": 1.2e-07, + "decamped": 1.2e-07, + "decriminalizing": 1.2e-07, + "deduces": 1.2e-07, + "demeans": 1.2e-07, + "denard": 1.2e-07, + "deneuve": 1.2e-07, + "dennings": 1.2e-07, + "derailments": 1.2e-07, + "derbys": 6.61e-08, + "derma": 1.2e-07, + "detent": 1.2e-07, + "dfm": 1.2e-07, + "dicaprios": 1.2e-07, + "dichroic": 1.2e-07, + "dimorphic": 1.2e-07, + "dinks": 1.2e-07, + "disassociation": 1.2e-07, + "discal": 1.2e-07, + "disconsolate": 1.2e-07, + "discords": 1.2e-07, + "disputation": 1.2e-07, + "dodie": 1.2e-07, + "doest": 8.32e-08, + "dogfights": 1.2e-07, + "doof": 1.2e-07, + "dorris": 1.2e-07, + "douala": 1.2e-07, + "doubletree": 1.2e-07, + "dubliners": 1.2e-07, + "duelist": 1.2e-07, + "dumoulin": 1.2e-07, + "durum": 1.2e-07, + "dwr": 1.2e-07, + "dxd": 1.2e-07, + "eady": 1.2e-07, + "ebu": 1.2e-07, + "ecmo": 1.2e-07, + "edginess": 1.2e-07, + "eero": 1.2e-07, + "effed": 1.2e-07, + "egs": 1.2e-07, + "ehe": 1.2e-07, + "eich": 1.2e-07, + "elbridge": 1.2e-07, + "engendering": 1.2e-07, + "enigmas": 1.2e-07, + "enumerating": 1.2e-07, + "envying": 1.2e-07, + "ephemeris": 1.2e-07, + "epitomised": 1.2e-07, + "eretz": 1.2e-07, + "eru": 1.2e-07, + "escambia": 1.2e-07, + "estab": 1.2e-07, + "estefan": 1.2e-07, + "estela": 1.2e-07, + "evry": 8.71e-08, + "evergrande": 1.2e-07, + "exelon": 1.2e-07, + "externality": 1.2e-07, + "exton": 1.2e-07, + "eyepatch": 1.2e-07, + "faberge": 1.2e-07, + "fabinho": 1.2e-07, + "familiarizing": 1.2e-07, + "fancying": 1.2e-07, + "fanduel": 1.2e-07, + "fatman": 1.2e-07, + "faustina": 1.2e-07, + "federers": 1.2e-07, + "fedoras": 1.2e-07, + "felts": 1.2e-07, + "fencers": 1.2e-07, + "ferroelectric": 1.2e-07, + "fetes": 1.2e-07, + "filenames": 1.2e-07, + "fingal": 1.2e-07, + "firetruck": 1.2e-07, + "firman": 1.2e-07, + "flashmob": 1.2e-07, + "flintoff": 1.2e-07, + "floodlit": 1.2e-07, + "flummoxed": 1.2e-07, + "foaled": 1.2e-07, + "folie": 1.2e-07, + "fortunato": 1.2e-07, + "fothergill": 1.2e-07, + "fourthly": 1.2e-07, + "francophones": 1.2e-07, + "friedkin": 1.2e-07, + "friezes": 1.2e-07, + "frontside": 1.2e-07, + "fuckboy": 1.2e-07, + "fugazi": 1.2e-07, + "fumio": 1.2e-07, + "futher": 1.2e-07, + "gais": 1.2e-07, + "gapes": 1.2e-07, + "gapped": 1.2e-07, + "gardasil": 1.2e-07, + "gastrectomy": 1.2e-07, + "gastroesophageal": 1.2e-07, + "gattis": 1.2e-07, + "glenmore": 1.2e-07, + "glenville": 1.2e-07, + "glug": 1.2e-07, + "glute": 1.2e-07, + "gly": 1.2e-07, + "goodchild": 1.2e-07, + "goslings": 7.24e-08, + "gotv": 1.2e-07, + "gourley": 1.2e-07, + "gracey": 1.2e-07, + "grangemouth": 1.2e-07, + "greenstein": 1.2e-07, + "grenadine": 1.2e-07, + "grippy": 1.2e-07, + "guilin": 1.2e-07, + "gujranwala": 1.2e-07, + "gumbel": 1.2e-07, + "gunung": 1.2e-07, + "guten": 1.2e-07, + "hachi": 1.2e-07, + "haeckel": 1.2e-07, + "halbert": 1.2e-07, + "hanafi": 1.2e-07, + "handicapper": 1.2e-07, + "hanse": 1.2e-07, + "harassers": 1.2e-07, + "harrod": 1.2e-07, + "hase": 1.2e-07, + "hassler": 1.2e-07, + "hatted": 1.2e-07, + "hauck": 1.2e-07, + "hawken": 1.2e-07, + "hayfever": 1.2e-07, + "headhunting": 1.2e-07, + "heatwaves": 1.2e-07, + "heffer": 1.2e-07, + "heintz": 1.2e-07, + "hering": 1.2e-07, + "hexa": 1.2e-07, + "hibbing": 1.2e-07, + "hibernia": 1.2e-07, + "hibiki": 1.2e-07, + "hickam": 1.2e-07, + "highnesses": 1.2e-07, + "himawari": 1.2e-07, + "hinchcliffe": 1.2e-07, + "hitmaker": 1.2e-07, + "hojo": 1.2e-07, + "holston": 1.2e-07, + "homebuilders": 1.2e-07, + "homophones": 1.2e-07, + "hote": 1.2e-07, + "hotpot": 1.2e-07, + "houseplant": 1.2e-07, + "huet": 1.2e-07, + "huhne": 1.2e-07, + "hydrography": 1.2e-07, + "hynde": 1.2e-07, + "hypogonadism": 1.2e-07, + "ichikawa": 1.2e-07, + "ilbo": 1.2e-07, + "incharge": 1.2e-07, + "incompetents": 1.2e-07, + "incongruent": 1.2e-07, + "indochinese": 1.2e-07, + "indolence": 1.2e-07, + "infantino": 1.2e-07, + "ingeborg": 1.2e-07, + "innisfree": 1.2e-07, + "instate": 1.2e-07, + "instore": 1.2e-07, + "instrumentally": 1.2e-07, + "intaglio": 1.2e-07, + "interceded": 1.2e-07, + "interchanging": 1.2e-07, + "iod": 1.2e-07, + "iphoto": 1.2e-07, + "ischia": 1.2e-07, + "issaquah": 1.2e-07, + "iterator": 1.2e-07, + "itil": 1.2e-07, + "ivermectin": 1.2e-07, + "izaak": 1.2e-07, + "jambo": 1.2e-07, + "jawbreaker": 1.2e-07, + "jaworski": 1.2e-07, + "jeannine": 1.2e-07, + "jerrod": 1.2e-07, + "jetsam": 1.2e-07, + "jonahs": 1.2e-07, + "jonge": 1.2e-07, + "jossey": 1.2e-07, + "jourdain": 1.2e-07, + "jowett": 1.2e-07, + "jozy": 1.2e-07, + "juche": 1.2e-07, + "jugg": 1.2e-07, + "kantar": 1.2e-07, + "kasbah": 1.2e-07, + "kathi": 1.2e-07, + "katra": 1.2e-07, + "kawakami": 1.2e-07, + "kazama": 1.2e-07, + "kcna": 1.2e-07, + "keratinocytes": 1.2e-07, + "kester": 1.2e-07, + "ketcham": 1.2e-07, + "keylor": 1.2e-07, + "kijiji": 1.2e-07, + "kindergarteners": 1.2e-07, + "kinloch": 1.2e-07, + "kio": 1.2e-07, + "kipnis": 1.2e-07, + "kippers": 1.2e-07, + "klaxon": 1.2e-07, + "kleptocracy": 1.2e-07, + "klub": 1.2e-07, + "koirala": 1.2e-07, + "kolchak": 1.2e-07, + "kolmogorov": 1.2e-07, + "kotlin": 1.2e-07, + "krakatoa": 1.2e-07, + "kuh": 1.2e-07, + "kwiatkowski": 1.2e-07, + "laboratoire": 1.2e-07, + "ladner": 1.2e-07, + "laf": 1.2e-07, + "lainey": 1.2e-07, + "lambasting": 1.2e-07, + "lamellar": 1.2e-07, + "lamin": 1.2e-07, + "landsman": 1.2e-07, + "leanna": 1.2e-07, + "leconte": 1.2e-07, + "lectin": 1.2e-07, + "leeuw": 1.2e-07, + "lemoine": 1.2e-07, + "lenihan": 1.2e-07, + "levins": 6.17e-08, + "lhr": 1.2e-07, + "licentiate": 1.2e-07, + "lindell": 1.2e-07, + "lobelia": 1.2e-07, + "lodgepole": 1.2e-07, + "lofgren": 1.2e-07, + "lofton": 1.2e-07, + "londres": 1.2e-07, + "loots": 1.2e-07, + "lorient": 1.2e-07, + "lorillard": 1.2e-07, + "lrp": 1.2e-07, + "lutely": 1.2e-07, + "lvt": 1.2e-07, + "lyonnais": 1.2e-07, + "lyse": 1.2e-07, + "maam": 1.2e-07, + "macca": 1.2e-07, + "macleish": 1.2e-07, + "mader": 1.2e-07, + "maggy": 1.2e-07, + "maghrib": 1.2e-07, + "maidservant": 1.2e-07, + "majumdar": 1.2e-07, + "makar": 1.2e-07, + "malm": 1.2e-07, + "malty": 1.2e-07, + "mamacita": 1.2e-07, + "manchukuo": 1.2e-07, + "manchus": 1.2e-07, + "margiela": 1.2e-07, + "marler": 1.2e-07, + "marquand": 1.2e-07, + "marri": 1.2e-07, + "masturbator": 1.2e-07, + "mayotte": 1.2e-07, + "mbar": 1.2e-07, + "mbl": 1.2e-07, + "mccully": 1.2e-07, + "mctavish": 1.2e-07, + "medfield": 1.2e-07, + "medicis": 1.2e-07, + "megafauna": 1.2e-07, + "megane": 1.2e-07, + "mellifluous": 1.2e-07, + "mellish": 1.2e-07, + "memorializing": 1.2e-07, + "mercato": 1.2e-07, + "merchantmen": 1.2e-07, + "mgb": 1.2e-07, + "mikulski": 1.2e-07, + "mineralogist": 1.2e-07, + "minicab": 1.2e-07, + "ministership": 1.2e-07, + "misr": 1.2e-07, + "missives": 1.2e-07, + "missourians": 1.2e-07, + "misuses": 1.2e-07, + "mlt": 1.2e-07, + "moin": 1.2e-07, + "moko": 1.2e-07, + "momenta": 1.2e-07, + "monoplane": 1.2e-07, + "mooching": 1.2e-07, + "mopey": 1.2e-07, + "morticia": 1.2e-07, + "movingly": 1.2e-07, + "moyle": 1.2e-07, + "mozgov": 1.2e-07, + "mpas": 1.2e-07, + "mphil": 1.2e-07, + "muji": 1.2e-07, + "mulgrave": 1.2e-07, + "multiplexer": 1.2e-07, + "murtaza": 1.2e-07, + "muscarinic": 1.2e-07, + "musick": 1.2e-07, + "muzaffarnagar": 1.2e-07, + "mwa": 1.2e-07, + "myriam": 1.2e-07, + "nace": 1.2e-07, + "nack": 1.2e-07, + "najjar": 1.2e-07, + "nanite": 1.2e-07, + "naresh": 1.2e-07, + "narvik": 1.2e-07, + "nassim": 1.2e-07, + "nationalizing": 1.2e-07, + "naturalisation": 1.2e-07, + "naturopathic": 1.2e-07, + "nealon": 1.2e-07, + "nectarine": 1.2e-07, + "neela": 1.2e-07, + "nellore": 1.2e-07, + "nerc": 1.2e-07, + "neurocognitive": 1.2e-07, + "neurogenic": 1.2e-07, + "newsboy": 1.2e-07, + "niamey": 1.2e-07, + "niti": 1.2e-07, + "niya": 1.2e-07, + "nizhny": 1.2e-07, + "nlds": 1.2e-07, + "nnpc": 1.2e-07, + "nonpareil": 1.2e-07, + "norther": 1.2e-07, + "nowra": 1.2e-07, + "nph": 1.2e-07, + "nris": 1.2e-07, + "ntl": 1.2e-07, + "nurul": 1.2e-07, + "oflynn": 1.2e-07, + "omalleys": 1.2e-07, + "obviousness": 1.2e-07, + "occasioning": 1.2e-07, + "occlusal": 1.2e-07, + "odp": 1.2e-07, + "ofdm": 1.2e-07, + "officious": 1.2e-07, + "oga": 1.2e-07, + "oglala": 1.2e-07, + "olajuwon": 1.2e-07, + "olmec": 1.2e-07, + "olmos": 1.2e-07, + "oml": 1.2e-07, + "opencl": 1.2e-07, + "oppositely": 1.2e-07, + "orch": 1.2e-07, + "oricon": 1.2e-07, + "orogeny": 1.2e-07, + "orthostatic": 1.2e-07, + "osl": 1.2e-07, + "outscore": 1.2e-07, + "outshone": 1.2e-07, + "overestimates": 1.2e-07, + "pada": 1.2e-07, + "pageviews": 1.2e-07, + "pamuk": 1.2e-07, + "paquette": 1.2e-07, + "parapets": 1.2e-07, + "parlayed": 1.2e-07, + "partygoers": 1.2e-07, + "passivation": 1.2e-07, + "payal": 1.2e-07, + "paynter": 1.2e-07, + "peddles": 1.2e-07, + "pedicel": 1.2e-07, + "pentagonal": 1.2e-07, + "pentonville": 1.2e-07, + "peremptory": 1.2e-07, + "perms": 1.2e-07, + "personalfinance": 1.2e-07, + "peto": 1.2e-07, + "petulance": 1.2e-07, + "pfaff": 1.2e-07, + "pgr": 1.2e-07, + "phl": 1.2e-07, + "phonies": 1.2e-07, + "pinay": 1.2e-07, + "pira": 1.2e-07, + "piv": 1.2e-07, + "plaine": 1.2e-07, + "plame": 1.2e-07, + "plautus": 1.2e-07, + "playfield": 1.2e-07, + "plympton": 1.2e-07, + "pnm": 1.2e-07, + "poder": 1.2e-07, + "polonius": 1.2e-07, + "polson": 1.2e-07, + "polyclonal": 1.2e-07, + "pomeranz": 1.2e-07, + "popolo": 1.2e-07, + "porphyria": 1.2e-07, + "portos": 1.2e-07, + "prb": 1.2e-07, + "preggo": 1.2e-07, + "preliminarily": 1.2e-07, + "presbyter": 1.2e-07, + "prescotts": 1.2e-07, + "prestressed": 1.2e-07, + "pretties": 1.2e-07, + "princip": 1.2e-07, + "prk": 1.2e-07, + "prolife": 1.2e-07, + "prostituted": 1.2e-07, + "provably": 1.2e-07, + "pskov": 1.2e-07, + "pssh": 1.2e-07, + "publicis": 1.2e-07, + "pulsations": 1.2e-07, + "pvv": 1.2e-07, + "qamar": 1.2e-07, + "quantifiers": 1.2e-07, + "queensferry": 1.2e-07, + "quoth": 1.2e-07, + "radials": 1.2e-07, + "raed": 1.2e-07, + "raffia": 1.2e-07, + "raiola": 1.2e-07, + "ramanujan": 1.2e-07, + "ransoms": 1.2e-07, + "rationalists": 1.2e-07, + "raymundo": 1.2e-07, + "reais": 1.2e-07, + "realdonaldtrump": 1.2e-07, + "reall": 1.2e-07, + "recognizably": 1.2e-07, + "recordable": 1.2e-07, + "rediculous": 1.2e-07, + "refrigerating": 1.2e-07, + "reisman": 1.2e-07, + "rekt": 1.2e-07, + "remastering": 1.2e-07, + "renormalization": 1.2e-07, + "repairmen": 1.2e-07, + "reprocessed": 1.2e-07, + "reso": 1.2e-07, + "reuther": 1.2e-07, + "reword": 1.2e-07, + "rheology": 1.2e-07, + "rheumatologist": 1.2e-07, + "rhian": 1.2e-07, + "rhianna": 1.2e-07, + "rhum": 1.2e-07, + "ribald": 1.2e-07, + "rickenbacker": 1.2e-07, + "rioter": 1.2e-07, + "riverbend": 1.2e-07, + "riveter": 1.2e-07, + "roadrunners": 1.2e-07, + "robina": 1.2e-07, + "robocalls": 1.2e-07, + "rubra": 1.2e-07, + "rustom": 1.2e-07, + "rya": 1.2e-07, + "rylan": 1.2e-07, + "sabri": 1.2e-07, + "sadako": 1.2e-07, + "sako": 1.2e-07, + "sambar": 1.2e-07, + "sampaoli": 1.2e-07, + "samy": 1.2e-07, + "sandcastles": 1.2e-07, + "sandie": 1.2e-07, + "sanibel": 1.2e-07, + "sanne": 1.2e-07, + "satcom": 1.2e-07, + "sathya": 1.2e-07, + "satirize": 1.2e-07, + "scandalously": 1.2e-07, + "schachter": 1.2e-07, + "schapiro": 1.2e-07, + "schenker": 1.2e-07, + "schlossberg": 1.2e-07, + "schneiders": 1.2e-07, + "schwann": 1.2e-07, + "screencaps": 1.2e-07, + "scuse": 1.2e-07, + "semifinalists": 1.2e-07, + "senedd": 1.2e-07, + "senn": 1.2e-07, + "sepoys": 1.2e-07, + "seurat": 1.2e-07, + "shapeshifters": 1.2e-07, + "shawty": 1.2e-07, + "shazia": 1.2e-07, + "shehzad": 1.2e-07, + "sheldrake": 1.2e-07, + "shims": 1.2e-07, + "shingeki": 1.2e-07, + "shizuka": 1.2e-07, + "shrivelled": 1.2e-07, + "sibi": 1.2e-07, + "siddique": 1.2e-07, + "sieves": 1.2e-07, + "siggy": 1.2e-07, + "sigi": 1.2e-07, + "simpletons": 1.2e-07, + "singletons": 1.2e-07, + "siskel": 1.2e-07, + "skinnies": 1.2e-07, + "skullcap": 1.2e-07, + "slac": 1.2e-07, + "slugfest": 1.2e-07, + "slumming": 1.2e-07, + "smelted": 1.2e-07, + "smk": 1.2e-07, + "smudging": 1.2e-07, + "smw": 1.2e-07, + "sniggering": 1.2e-07, + "snoops": 6.92e-08, + "snowboards": 1.2e-07, + "sory": 1.2e-07, + "speyside": 1.2e-07, + "spira": 1.2e-07, + "spirally": 1.2e-07, + "spirulina": 1.2e-07, + "splotches": 1.2e-07, + "sportsmans": 1.2e-07, + "springfields": 1.2e-07, + "spurr": 1.2e-07, + "sqa": 1.2e-07, + "squiggles": 1.2e-07, + "squinty": 1.2e-07, + "sree": 1.2e-07, + "sriram": 1.2e-07, + "ssdi": 1.2e-07, + "stagflation": 1.2e-07, + "stal": 1.2e-07, + "stanly": 1.2e-07, + "starbase": 1.2e-07, + "stater": 1.2e-07, + "staub": 1.2e-07, + "steamrolled": 1.2e-07, + "stell": 1.2e-07, + "stellate": 1.2e-07, + "stempel": 1.2e-07, + "stickin": 1.2e-07, + "stomper": 1.2e-07, + "ston": 1.2e-07, + "straightest": 1.2e-07, + "subacute": 1.2e-07, + "subang": 1.2e-07, + "subdomain": 1.2e-07, + "suda": 1.2e-07, + "sule": 1.2e-07, + "sumit": 1.2e-07, + "sungai": 1.2e-07, + "sunrisers": 1.2e-07, + "sunstone": 1.2e-07, + "supercup": 1.2e-07, + "superstorm": 1.2e-07, + "suwon": 1.2e-07, + "suzukis": 1.2e-07, + "sva": 1.2e-07, + "swalwell": 1.2e-07, + "swashbuckler": 1.2e-07, + "switchover": 1.2e-07, + "sybase": 1.2e-07, + "sylmar": 1.2e-07, + "sylva": 1.2e-07, + "symbiont": 1.2e-07, + "synchronise": 1.2e-07, + "tabard": 1.2e-07, + "taeyeon": 1.2e-07, + "taiz": 1.2e-07, + "takara": 1.2e-07, + "taluka": 1.2e-07, + "tanneries": 1.2e-07, + "tanu": 1.2e-07, + "tarasenko": 1.2e-07, + "tartrate": 1.2e-07, + "tarzana": 1.2e-07, + "teasingly": 1.2e-07, + "tebbit": 1.2e-07, + "technocracy": 1.2e-07, + "technocrat": 1.2e-07, + "teel": 1.2e-07, + "tehachapi": 1.2e-07, + "teja": 1.2e-07, + "tenenbaum": 1.2e-07, + "tensorflow": 1.2e-07, + "terracing": 1.2e-07, + "tey": 1.2e-07, + "thal": 1.2e-07, + "thich": 1.2e-07, + "thingie": 1.2e-07, + "thrawn": 1.2e-07, + "tibbetts": 1.2e-07, + "ticky": 1.2e-07, + "tikal": 1.2e-07, + "tilikum": 1.2e-07, + "tks": 1.2e-07, + "tni": 1.2e-07, + "toiletry": 1.2e-07, + "tolland": 1.2e-07, + "topples": 1.2e-07, + "tortious": 1.2e-07, + "tosa": 1.2e-07, + "totaly": 1.2e-07, + "toxicities": 1.2e-07, + "trager": 1.2e-07, + "transamerica": 1.2e-07, + "transfigured": 1.2e-07, + "transliterated": 1.2e-07, + "tras": 1.2e-07, + "trebles": 1.2e-07, + "tribble": 1.2e-07, + "trotz": 1.2e-07, + "tshwane": 1.2e-07, + "ttd": 1.2e-07, + "tuitions": 1.2e-07, + "turings": 1.2e-07, + "turpitude": 1.2e-07, + "tuzla": 1.2e-07, + "tvxq": 1.2e-07, + "twixt": 1.2e-07, + "tybee": 1.2e-07, + "ubaldo": 1.2e-07, + "ujjain": 1.2e-07, + "ultrabook": 1.2e-07, + "unbundling": 1.2e-07, + "unburied": 1.2e-07, + "unburned": 1.2e-07, + "uncertainly": 1.2e-07, + "underperformance": 1.2e-07, + "ungulates": 1.2e-07, + "unitas": 1.2e-07, + "unromantic": 1.2e-07, + "unruffled": 1.2e-07, + "unseating": 1.2e-07, + "unsubsidized": 1.2e-07, + "untrusted": 1.2e-07, + "unverifiable": 1.2e-07, + "upm": 1.2e-07, + "upregulation": 1.2e-07, + "upvotes": 1.2e-07, + "urbanites": 1.2e-07, + "urm": 1.2e-07, + "usfws": 1.2e-07, + "uzumaki": 1.2e-07, + "vajra": 1.2e-07, + "valdemar": 1.2e-07, + "valles": 1.2e-07, + "vandyke": 1.2e-07, + "vauban": 1.2e-07, + "vav": 1.2e-07, + "vch": 1.2e-07, + "veiny": 1.2e-07, + "verandas": 1.2e-07, + "verhoeven": 1.2e-07, + "vermeil": 1.2e-07, + "vertonghen": 1.2e-07, + "villers": 1.2e-07, + "vindicator": 1.2e-07, + "virtanen": 1.2e-07, + "virtualbox": 1.2e-07, + "vivax": 1.2e-07, + "vorster": 1.2e-07, + "vsc": 1.2e-07, + "wak": 1.2e-07, + "wallander": 1.2e-07, + "wallington": 1.2e-07, + "warble": 1.2e-07, + "wardlaw": 1.2e-07, + "warplane": 1.2e-07, + "warty": 1.2e-07, + "wasser": 1.2e-07, + "wastebasket": 1.2e-07, + "wataru": 1.2e-07, + "watchtowers": 1.2e-07, + "weisberg": 1.2e-07, + "westphalian": 1.2e-07, + "wethersfield": 1.2e-07, + "wetsuits": 1.2e-07, + "whc": 1.2e-07, + "wheezes": 1.2e-07, + "whidbey": 1.2e-07, + "whisperers": 1.2e-07, + "whut": 1.2e-07, + "wiccans": 1.2e-07, + "widebody": 1.2e-07, + "wilmette": 1.2e-07, + "wishaw": 1.2e-07, + "wmf": 1.2e-07, + "wog": 1.2e-07, + "workmans": 1.2e-07, + "worl": 1.2e-07, + "woth": 1.2e-07, + "woud": 1.2e-07, + "wsh": 1.2e-07, + "wurm": 1.2e-07, + "xlii": 1.2e-07, + "yelps": 1.2e-07, + "yeni": 1.2e-07, + "yid": 1.2e-07, + "yondu": 1.2e-07, + "yonhap": 1.2e-07, + "yoongi": 1.2e-07, + "youngman": 1.2e-07, + "ysidro": 1.2e-07, + "zdnet": 1.2e-07, + "zener": 1.2e-07, + "zhongshan": 1.2e-07, + "zima": 1.2e-07, + "zool": 1.2e-07, + "zygomatic": 1.2e-07, + "abang": 1.17e-07, + "abhimanyu": 1.17e-07, + "aborts": 1.17e-07, + "abramowitz": 1.17e-07, + "abscond": 1.17e-07, + "acas": 7.94e-08, + "achim": 1.17e-07, + "adem": 1.17e-07, + "aeron": 1.17e-07, + "afrojack": 1.17e-07, + "ageist": 1.17e-07, + "agitations": 1.17e-07, + "agricultures": 1.17e-07, + "airconditioning": 1.17e-07, + "ajo": 1.17e-07, + "alastor": 1.17e-07, + "aln": 1.17e-07, + "ambleside": 1.17e-07, + "ambroses": 1.17e-07, + "aminotransferase": 1.17e-07, + "ancs": 1.17e-07, + "aneurin": 1.17e-07, + "angelous": 1.17e-07, + "anouk": 1.17e-07, + "antin": 1.17e-07, + "antitoxin": 1.17e-07, + "antonelli": 1.17e-07, + "apalachicola": 1.17e-07, + "apolo": 1.17e-07, + "apres": 1.17e-07, + "aquaponics": 1.17e-07, + "archrival": 1.17e-07, + "arclight": 1.17e-07, + "arcos": 1.17e-07, + "arirang": 1.17e-07, + "aristides": 1.7e-08, + "arris": 1.17e-07, + "arvid": 1.17e-07, + "askreddit": 1.17e-07, + "assa": 1.17e-07, + "assignation": 1.17e-07, + "assuaged": 1.17e-07, + "astroworld": 1.17e-07, + "atiku": 1.17e-07, + "ation": 1.17e-07, + "attenuator": 1.17e-07, + "atwoods": 1.17e-07, + "auric": 1.17e-07, + "autor": 1.17e-07, + "avoir": 1.17e-07, + "backbones": 1.17e-07, + "baki": 1.17e-07, + "balad": 1.17e-07, + "baltar": 1.17e-07, + "bangtan": 1.17e-07, + "bannons": 1.17e-07, + "baphomet": 1.17e-07, + "bardsley": 1.17e-07, + "bartholomews": 1.17e-07, + "bartletts": 1.17e-07, + "basham": 1.17e-07, + "bastia": 1.17e-07, + "bayleigh": 1.17e-07, + "bazin": 1.17e-07, + "beardless": 1.17e-07, + "beautified": 1.17e-07, + "beefsteak": 1.17e-07, + "befit": 1.17e-07, + "bendable": 1.17e-07, + "benford": 1.17e-07, + "berthier": 1.17e-07, + "bessy": 1.17e-07, + "bestfriend": 1.17e-07, + "bhanu": 1.17e-07, + "bickel": 1.17e-07, + "biddeford": 1.17e-07, + "bidi": 1.17e-07, + "bigge": 1.17e-07, + "bilk": 1.17e-07, + "biodegradation": 1.17e-07, + "bipod": 1.17e-07, + "birdseye": 1.17e-07, + "birger": 1.17e-07, + "bisects": 1.17e-07, + "bishoprics": 1.17e-07, + "bitterest": 1.17e-07, + "blacc": 1.17e-07, + "blackballed": 1.17e-07, + "blackburns": 1.17e-07, + "blag": 1.17e-07, + "blasphemer": 1.17e-07, + "blurts": 1.17e-07, + "boothroyd": 1.17e-07, + "boros": 1.17e-07, + "bors": 1.17e-07, + "botting": 1.17e-07, + "bourdieu": 1.17e-07, + "braai": 1.17e-07, + "brasher": 1.17e-07, + "brentano": 1.17e-07, + "bretons": 1.17e-07, + "brinks": 1.17e-07, + "brockville": 1.17e-07, + "bruckheimer": 1.17e-07, + "buffeting": 1.17e-07, + "buna": 1.17e-07, + "bundys": 1.17e-07, + "buri": 1.17e-07, + "burkhalter": 1.17e-07, + "burqas": 1.17e-07, + "bwa": 1.17e-07, + "byrom": 1.17e-07, + "bytecode": 1.17e-07, + "cabarets": 1.17e-07, + "caja": 1.17e-07, + "calorimetry": 1.17e-07, + "calpers": 1.17e-07, + "carbonized": 1.17e-07, + "carboxylate": 1.17e-07, + "carrell": 1.17e-07, + "caseloads": 1.17e-07, + "caseworkers": 1.17e-07, + "catacomb": 1.17e-07, + "cef": 1.17e-07, + "centralism": 1.17e-07, + "centrism": 1.17e-07, + "cereus": 1.17e-07, + "chambray": 1.17e-07, + "chania": 1.17e-07, + "chanukah": 1.17e-07, + "chaperon": 1.17e-07, + "chekov": 1.17e-07, + "chemung": 1.17e-07, + "chery": 1.17e-07, + "chesley": 1.17e-07, + "chetty": 1.17e-07, + "chibnall": 1.17e-07, + "chinua": 1.17e-07, + "chirality": 1.17e-07, + "chitwood": 1.17e-07, + "chloroquine": 1.17e-07, + "choong": 1.17e-07, + "chows": 7.41e-08, + "cineworld": 1.17e-07, + "civilizational": 1.17e-07, + "cleanings": 1.17e-07, + "cleavers": 2.51e-08, + "clemmons": 1.17e-07, + "clubman": 1.17e-07, + "cmhc": 1.17e-07, + "coadjutor": 1.17e-07, + "cocksuckers": 1.17e-07, + "coffeeshop": 1.17e-07, + "coghill": 1.17e-07, + "coheed": 1.17e-07, + "cojones": 1.17e-07, + "colorfully": 1.17e-07, + "colquitt": 1.17e-07, + "columbuss": 1.17e-07, + "composted": 1.17e-07, + "conchords": 1.17e-07, + "congdon": 1.17e-07, + "consigliere": 1.17e-07, + "consigning": 1.17e-07, + "consonance": 1.17e-07, + "constitutionalist": 1.17e-07, + "contes": 1.05e-07, + "coolies": 1.17e-07, + "coronas": 1.17e-07, + "corot": 1.17e-07, + "corroding": 1.17e-07, + "cosco": 1.17e-07, + "cottagers": 1.17e-07, + "cpj": 1.17e-07, + "cryopreservation": 1.17e-07, + "cubano": 1.17e-07, + "cubit": 1.17e-07, + "cubitt": 1.17e-07, + "cujo": 1.17e-07, + "culberson": 1.17e-07, + "cully": 1.17e-07, + "cvg": 1.17e-07, + "cyclopedia": 1.17e-07, + "daigle": 1.17e-07, + "dalvin": 1.17e-07, + "damo": 1.17e-07, + "dard": 1.17e-07, + "dati": 1.17e-07, + "datin": 1.17e-07, + "datong": 1.17e-07, + "ddb": 1.17e-07, + "deathcore": 1.17e-07, + "deathtrap": 1.17e-07, + "debridement": 1.17e-07, + "decarboxylase": 1.17e-07, + "decriminalisation": 1.17e-07, + "defilement": 1.17e-07, + "delinquencies": 1.17e-07, + "delly": 1.17e-07, + "delphic": 1.17e-07, + "demiurge": 1.17e-07, + "derren": 1.17e-07, + "desa": 1.17e-07, + "deselect": 1.17e-07, + "deshmukh": 1.17e-07, + "desmonds": 1.17e-07, + "destructed": 1.17e-07, + "dgb": 1.17e-07, + "dhhs": 1.17e-07, + "dialectal": 1.17e-07, + "diamine": 1.17e-07, + "diddley": 1.17e-07, + "didsbury": 1.17e-07, + "digicel": 1.17e-07, + "dijkstra": 1.17e-07, + "dilley": 1.17e-07, + "disbarment": 1.17e-07, + "discombobulated": 1.17e-07, + "disfavor": 1.17e-07, + "disinvestment": 1.17e-07, + "dissembling": 1.17e-07, + "distresses": 1.17e-07, + "doerr": 1.17e-07, + "domingue": 1.17e-07, + "doncic": 1.17e-07, + "dorsalis": 1.17e-07, + "doubter": 1.17e-07, + "dowson": 1.17e-07, + "drac": 1.17e-07, + "drafthouse": 1.17e-07, + "drams": 1.17e-07, + "drian": 1.17e-07, + "dubinsky": 1.17e-07, + "dudleys": 1.17e-07, + "dunton": 1.17e-07, + "duplicative": 1.17e-07, + "dusan": 1.17e-07, + "dyspepsia": 1.17e-07, + "earwig": 1.17e-07, + "ectoplasm": 1.17e-07, + "ector": 1.17e-07, + "egremont": 1.17e-07, + "ehrman": 1.17e-07, + "eisley": 1.17e-07, + "eklund": 1.17e-07, + "elr": 1.17e-07, + "elrod": 1.17e-07, + "elwin": 1.17e-07, + "embo": 1.17e-07, + "emplaced": 1.17e-07, + "emulsified": 1.17e-07, + "enc": 1.17e-07, + "enquires": 1.17e-07, + "eritreans": 1.17e-07, + "ertz": 1.17e-07, + "esas": 8.32e-08, + "escargot": 1.17e-07, + "ethology": 1.17e-07, + "evelyns": 1.17e-07, + "evenin": 1.17e-07, + "eveything": 1.17e-07, + "evga": 1.17e-07, + "evolutionists": 1.17e-07, + "exorcists": 1.17e-07, + "exper": 1.17e-07, + "fajita": 1.17e-07, + "falkner": 1.17e-07, + "fanciers": 1.17e-07, + "farages": 1.17e-07, + "farces": 1.17e-07, + "fatca": 1.17e-07, + "faustian": 1.17e-07, + "fcr": 1.17e-07, + "feo": 1.17e-07, + "fergal": 1.17e-07, + "ferritin": 1.17e-07, + "fibroid": 1.17e-07, + "fibronectin": 1.17e-07, + "fidelio": 1.17e-07, + "fii": 1.17e-07, + "filmer": 1.17e-07, + "finalization": 1.17e-07, + "fitment": 1.17e-07, + "fizzles": 1.17e-07, + "fleeces": 1.17e-07, + "fluffing": 1.17e-07, + "fmcg": 1.17e-07, + "focaccia": 1.17e-07, + "fondo": 1.17e-07, + "foreland": 1.17e-07, + "forelegs": 1.17e-07, + "fpgas": 1.17e-07, + "fredrickson": 1.17e-07, + "frou": 1.17e-07, + "fst": 1.17e-07, + "ftth": 1.17e-07, + "fubuki": 1.17e-07, + "fus": 6.03e-08, + "gagner": 1.17e-07, + "gainst": 1.17e-07, + "ganassi": 1.17e-07, + "gandhinagar": 1.17e-07, + "ganna": 1.17e-07, + "gatland": 1.17e-07, + "gavaskar": 1.17e-07, + "gaviria": 1.17e-07, + "gda": 1.17e-07, + "gelfand": 1.17e-07, + "gentrifying": 1.17e-07, + "geralds": 1.17e-07, + "geting": 1.17e-07, + "ghazali": 1.17e-07, + "giambattista": 1.17e-07, + "gidget": 1.17e-07, + "gidley": 1.17e-07, + "glados": 1.17e-07, + "gmd": 1.17e-07, + "gmod": 1.17e-07, + "gobbler": 1.17e-07, + "godoy": 1.17e-07, + "goli": 1.17e-07, + "goodrem": 1.17e-07, + "gossett": 1.17e-07, + "goyim": 1.17e-07, + "graeco": 1.17e-07, + "grigson": 1.17e-07, + "gripen": 1.17e-07, + "grosz": 1.17e-07, + "gullivers": 1.17e-07, + "gunslingers": 1.17e-07, + "gurren": 1.17e-07, + "gusset": 1.17e-07, + "guttman": 1.17e-07, + "gwr": 1.17e-07, + "gyal": 1.17e-07, + "gyroscopes": 1.17e-07, + "hagelin": 1.17e-07, + "hairball": 1.17e-07, + "halil": 1.17e-07, + "halogens": 1.17e-07, + "harangue": 1.17e-07, + "hardees": 1.17e-07, + "haribo": 1.17e-07, + "harking": 1.17e-07, + "harks": 1.17e-07, + "hazels": 1.17e-07, + "heartworm": 1.17e-07, + "heebie": 1.17e-07, + "heskey": 1.17e-07, + "hijra": 1.17e-07, + "himes": 1.17e-07, + "himmel": 1.17e-07, + "hirose": 1.17e-07, + "hispania": 1.17e-07, + "histograms": 1.17e-07, + "hkd": 1.17e-07, + "hmt": 1.17e-07, + "holmberg": 1.17e-07, + "hoole": 1.17e-07, + "hooter": 1.17e-07, + "hootsuite": 1.17e-07, + "hostetler": 1.17e-07, + "hotfix": 1.17e-07, + "hotstar": 1.17e-07, + "hoult": 1.17e-07, + "houndstooth": 1.17e-07, + "housebound": 1.17e-07, + "housley": 1.17e-07, + "housman": 1.17e-07, + "howse": 1.17e-07, + "hox": 1.17e-07, + "hta": 1.17e-07, + "htcs": 1.17e-07, + "htv": 1.17e-07, + "humours": 1.17e-07, + "hydrofluoric": 1.17e-07, + "hygroscopic": 1.17e-07, + "hypoplasia": 1.17e-07, + "idlewild": 1.17e-07, + "ifbb": 1.17e-07, + "iha": 1.17e-07, + "improver": 1.17e-07, + "incirlik": 1.17e-07, + "incriminated": 1.17e-07, + "infinities": 1.17e-07, + "inhabitable": 1.17e-07, + "initializing": 1.17e-07, + "injun": 1.17e-07, + "innervated": 1.17e-07, + "insincerity": 1.17e-07, + "internationalists": 1.17e-07, + "intoxicants": 1.17e-07, + "inundate": 1.17e-07, + "invercargill": 1.17e-07, + "ipe": 1.17e-07, + "iphigenia": 1.17e-07, + "ipsy": 1.17e-07, + "ithink": 1.17e-07, + "jablonski": 1.17e-07, + "jadhav": 1.17e-07, + "jaha": 1.17e-07, + "jankowski": 1.17e-07, + "janky": 1.17e-07, + "jebb": 1.17e-07, + "jemison": 1.17e-07, + "jerald": 1.17e-07, + "jetliner": 1.17e-07, + "jinja": 1.17e-07, + "jira": 1.17e-07, + "jitterbug": 1.17e-07, + "jizzed": 1.17e-07, + "jowl": 1.17e-07, + "joya": 1.17e-07, + "juanito": 1.17e-07, + "juda": 1.17e-07, + "juden": 1.17e-07, + "justa": 1.17e-07, + "kairi": 1.17e-07, + "kaizen": 1.17e-07, + "kallis": 1.17e-07, + "kalu": 1.17e-07, + "kalyani": 1.17e-07, + "karev": 1.17e-07, + "karis": 1.17e-07, + "karius": 1.17e-07, + "karta": 1.17e-07, + "kasdan": 1.17e-07, + "kassandra": 1.17e-07, + "kerem": 1.17e-07, + "kero": 1.17e-07, + "kers": 1.17e-07, + "keshi": 1.17e-07, + "kham": 1.17e-07, + "khamis": 1.17e-07, + "kho": 1.17e-07, + "khris": 1.17e-07, + "kickapoo": 1.17e-07, + "kii": 1.17e-07, + "kimberlite": 1.17e-07, + "kincardine": 1.17e-07, + "kins": 1.17e-07, + "kintyre": 1.17e-07, + "kirklees": 1.17e-07, + "knower": 1.17e-07, + "knute": 1.17e-07, + "kobold": 1.17e-07, + "kodachrome": 1.17e-07, + "kolhapur": 1.17e-07, + "konan": 1.17e-07, + "koopa": 1.17e-07, + "krishnas": 1.17e-07, + "kristal": 1.17e-07, + "kroc": 1.17e-07, + "ksenia": 1.17e-07, + "kunar": 1.17e-07, + "kure": 1.17e-07, + "kusanagi": 1.17e-07, + "kuttner": 1.17e-07, + "lagu": 1.17e-07, + "landsberg": 1.17e-07, + "lapham": 1.17e-07, + "lassies": 1.17e-07, + "laverty": 1.17e-07, + "ldn": 1.17e-07, + "leddy": 1.17e-07, + "legitimizes": 1.17e-07, + "leiva": 1.17e-07, + "lettie": 1.17e-07, + "levison": 1.17e-07, + "lha": 1.17e-07, + "libdems": 1.17e-07, + "licentious": 1.17e-07, + "lika": 1.17e-07, + "lilah": 1.17e-07, + "liotta": 1.17e-07, + "lipsky": 1.17e-07, + "liriano": 1.17e-07, + "llandaff": 1.17e-07, + "loadout": 1.17e-07, + "loder": 1.17e-07, + "loge": 1.17e-07, + "logjam": 1.17e-07, + "longitudes": 1.17e-07, + "loool": 1.17e-07, + "lores": 1.17e-07, + "ltds": 1.17e-07, + "lus": 8.13e-08, + "lubed": 1.17e-07, + "lucias": 1.17e-07, + "lucilla": 1.17e-07, + "ludington": 1.17e-07, + "lumineers": 1.17e-07, + "macdougal": 1.17e-07, + "maclay": 1.17e-07, + "maddies": 1.17e-07, + "madrigals": 1.17e-07, + "mafias": 1.07e-07, + "magnetics": 1.17e-07, + "maiko": 1.17e-07, + "maillot": 1.17e-07, + "makerspace": 1.17e-07, + "malar": 1.17e-07, + "malthouse": 1.17e-07, + "malvo": 1.17e-07, + "mangas": 7.08e-08, + "mangling": 1.17e-07, + "manholes": 1.17e-07, + "marcion": 1.17e-07, + "marilyns": 1.17e-07, + "marring": 1.17e-07, + "martinet": 1.17e-07, + "masayuki": 1.17e-07, + "masta": 1.17e-07, + "matsunaga": 1.17e-07, + "mattison": 1.17e-07, + "maybin": 1.17e-07, + "mbd": 1.17e-07, + "mckeen": 1.17e-07, + "mckelvey": 1.17e-07, + "mckenney": 1.17e-07, + "mclaurin": 1.17e-07, + "mcleans": 1.17e-07, + "mclendon": 1.17e-07, + "mcmuffin": 1.17e-07, + "mcroberts": 1.17e-07, + "meadowlark": 1.17e-07, + "mechanisation": 1.17e-07, + "megiddo": 1.17e-07, + "mehndi": 1.17e-07, + "melnick": 1.17e-07, + "melodically": 1.17e-07, + "menken": 1.17e-07, + "meowth": 1.17e-07, + "mfb": 1.17e-07, + "mgk": 1.17e-07, + "mgp": 1.17e-07, + "microarrays": 1.17e-07, + "micromanagement": 1.17e-07, + "microwaving": 1.17e-07, + "mifune": 1.17e-07, + "milledgeville": 1.17e-07, + "miniskirts": 1.17e-07, + "mintage": 1.17e-07, + "mirador": 1.17e-07, + "mircea": 1.17e-07, + "miscalculations": 1.17e-07, + "miscast": 1.17e-07, + "misdirect": 1.17e-07, + "misericordia": 1.17e-07, + "mishawaka": 1.17e-07, + "misinterpretations": 1.17e-07, + "mitsuko": 1.17e-07, + "mitte": 1.17e-07, + "miwa": 1.17e-07, + "mkay": 8.13e-08, + "mmhmm": 1.17e-07, + "mmos": 1.17e-07, + "moai": 1.17e-07, + "mohican": 1.17e-07, + "molton": 1.17e-07, + "monbiot": 1.17e-07, + "monocyte": 1.17e-07, + "montville": 1.17e-07, + "moscato": 1.17e-07, + "motrin": 1.17e-07, + "mottram": 1.17e-07, + "mourad": 1.17e-07, + "moyles": 1.17e-07, + "muguruza": 1.17e-07, + "multis": 1.17e-07, + "nacelles": 1.17e-07, + "nagin": 1.17e-07, + "naha": 1.17e-07, + "nahh": 1.17e-07, + "nahin": 1.17e-07, + "nakba": 1.17e-07, + "nangarhar": 1.17e-07, + "naphthalene": 1.17e-07, + "nard": 1.17e-07, + "naumann": 1.17e-07, + "nematic": 1.17e-07, + "neosho": 1.17e-07, + "nerdist": 1.17e-07, + "neta": 1.17e-07, + "nevil": 1.17e-07, + "nihal": 1.17e-07, + "nimby": 1.17e-07, + "ninjutsu": 1.17e-07, + "nitrogenous": 1.17e-07, + "nmm": 1.17e-07, + "nondestructive": 1.17e-07, + "norsemen": 1.17e-07, + "northcott": 1.17e-07, + "notated": 1.17e-07, + "notionally": 1.17e-07, + "npi": 1.17e-07, + "nuala": 1.17e-07, + "nutri": 1.17e-07, + "nvda": 1.17e-07, + "nwr": 1.17e-07, + "nyborg": 1.17e-07, + "nystagmus": 1.17e-07, + "ofallon": 1.17e-07, + "oakhurst": 1.17e-07, + "obd": 1.17e-07, + "obstetrical": 1.17e-07, + "odenkirk": 1.17e-07, + "oilseeds": 1.17e-07, + "olivo": 1.17e-07, + "oncogenes": 1.17e-07, + "onitsha": 1.17e-07, + "opeth": 1.17e-07, + "opining": 1.17e-07, + "opto": 1.17e-07, + "oranje": 1.17e-07, + "oriana": 1.17e-07, + "orkut": 1.17e-07, + "ostrander": 1.17e-07, + "ostrovsky": 1.17e-07, + "ouattara": 1.17e-07, + "outplay": 1.17e-07, + "outvoted": 1.17e-07, + "overman": 1.17e-07, + "overripe": 1.17e-07, + "owsley": 1.17e-07, + "packham": 1.17e-07, + "palladio": 1.17e-07, + "panay": 1.17e-07, + "pangaea": 1.17e-07, + "paralysing": 1.17e-07, + "partington": 1.17e-07, + "pash": 1.17e-07, + "passphrase": 1.17e-07, + "passu": 1.17e-07, + "paxson": 1.17e-07, + "pdk": 1.17e-07, + "peatlands": 1.17e-07, + "peats": 1.17e-07, + "pendent": 1.17e-07, + "peninsulas": 9.33e-08, + "perforating": 1.17e-07, + "perpetua": 1.17e-07, + "perrie": 1.17e-07, + "pex": 1.17e-07, + "pharmacologically": 1.17e-07, + "phenobarbital": 1.17e-07, + "phenytoin": 1.17e-07, + "phlegmatic": 1.17e-07, + "photobomb": 1.17e-07, + "piatt": 1.17e-07, + "pickerel": 1.17e-07, + "pickler": 1.17e-07, + "pinecone": 1.17e-07, + "pineville": 1.17e-07, + "pirro": 1.17e-07, + "pisani": 1.17e-07, + "pismo": 1.17e-07, + "planta": 1.17e-07, + "plasterboard": 1.17e-07, + "plu": 1.17e-07, + "pme": 1.17e-07, + "pneumonic": 1.17e-07, + "poldi": 1.17e-07, + "pontypool": 1.17e-07, + "poos": 1.17e-07, + "popish": 1.17e-07, + "popularise": 1.17e-07, + "porcello": 1.17e-07, + "portholes": 1.17e-07, + "posible": 1.17e-07, + "pottstown": 1.17e-07, + "ppk": 1.17e-07, + "prabang": 1.17e-07, + "pragmatists": 1.17e-07, + "preflight": 1.17e-07, + "premenstrual": 1.17e-07, + "pressurize": 1.17e-07, + "pretexts": 1.17e-07, + "primitivism": 1.17e-07, + "princesse": 1.17e-07, + "pring": 1.17e-07, + "privatising": 1.17e-07, + "privileging": 1.17e-07, + "proces": 1.17e-07, + "procrastinated": 1.17e-07, + "procrastinator": 1.17e-07, + "pronominal": 1.17e-07, + "proprioception": 1.17e-07, + "psychodrama": 1.17e-07, + "psyop": 1.17e-07, + "puckering": 1.17e-07, + "pugilist": 1.17e-07, + "pullup": 1.17e-07, + "punny": 1.17e-07, + "pyramus": 1.17e-07, + "queef": 1.17e-07, + "queensberry": 1.17e-07, + "querrey": 1.17e-07, + "quizlet": 1.17e-07, + "quoc": 1.17e-07, + "qwest": 1.17e-07, + "radin": 1.17e-07, + "raees": 1.17e-07, + "raiment": 1.17e-07, + "ransack": 1.17e-07, + "rbd": 1.17e-07, + "rci": 1.17e-07, + "readmissions": 1.17e-07, + "reauthorize": 1.17e-07, + "recapitalization": 1.17e-07, + "recirculating": 1.17e-07, + "recollects": 1.17e-07, + "recombine": 1.17e-07, + "redditor": 1.17e-07, + "redfish": 1.17e-07, + "refered": 1.17e-07, + "refinishing": 1.17e-07, + "refueled": 1.17e-07, + "reggies": 1.17e-07, + "reh": 1.17e-07, + "relearning": 1.17e-07, + "relives": 1.17e-07, + "rencontres": 1.17e-07, + "reordered": 1.17e-07, + "represses": 1.17e-07, + "reprimanding": 1.17e-07, + "revamps": 1.17e-07, + "reversibly": 1.17e-07, + "revit": 1.17e-07, + "revitalisation": 1.17e-07, + "rewound": 1.17e-07, + "rials": 1.17e-07, + "rickles": 1.17e-07, + "ricocheting": 1.17e-07, + "ridleys": 1.17e-07, + "rienzi": 1.17e-07, + "rlm": 1.17e-07, + "robinho": 1.17e-07, + "roches": 6.03e-08, + "rocketeer": 1.17e-07, + "rodneys": 1.17e-07, + "roeder": 1.17e-07, + "rohe": 1.17e-07, + "rohini": 1.17e-07, + "rois": 1.17e-07, + "rone": 1.17e-07, + "rosalina": 1.17e-07, + "rubbermaid": 1.17e-07, + "rulership": 1.17e-07, + "runciman": 1.17e-07, + "rwe": 1.17e-07, + "ryobi": 1.17e-07, + "sahi": 1.17e-07, + "salonika": 1.17e-07, + "sanctifying": 1.17e-07, + "sandbank": 1.17e-07, + "sanh": 1.17e-07, + "sanson": 1.17e-07, + "saroyan": 1.17e-07, + "sashay": 1.17e-07, + "sasso": 1.17e-07, + "satiation": 1.17e-07, + "savitri": 1.17e-07, + "sconces": 1.17e-07, + "scopolamine": 1.17e-07, + "scorchers": 1.17e-07, + "scriptwriters": 1.17e-07, + "sdhc": 1.17e-07, + "sdo": 1.17e-07, + "seafarer": 1.17e-07, + "sealand": 1.17e-07, + "seda": 1.17e-07, + "sedley": 1.17e-07, + "seel": 1.17e-07, + "segues": 1.17e-07, + "semin": 1.17e-07, + "sensationally": 1.17e-07, + "sensitize": 1.17e-07, + "sessional": 1.17e-07, + "shapeshift": 1.17e-07, + "shearman": 1.17e-07, + "shenton": 1.17e-07, + "sheol": 1.17e-07, + "sherds": 1.17e-07, + "shinsengumi": 1.17e-07, + "shkreli": 1.17e-07, + "shofar": 1.17e-07, + "shola": 1.17e-07, + "shoul": 1.17e-07, + "shoutouts": 1.17e-07, + "shox": 1.17e-07, + "sht": 1.17e-07, + "sickos": 1.17e-07, + "sidra": 1.17e-07, + "sildenafil": 1.17e-07, + "silencio": 1.17e-07, + "silverfish": 1.17e-07, + "sinewy": 1.17e-07, + "singhal": 1.17e-07, + "sippin": 1.17e-07, + "sisk": 1.17e-07, + "skeffington": 1.17e-07, + "skene": 1.17e-07, + "skyping": 1.17e-07, + "skyrockets": 1.17e-07, + "slayings": 1.17e-07, + "slingers": 1.17e-07, + "sloe": 1.17e-07, + "sloppily": 1.17e-07, + "slyke": 1.17e-07, + "smileys": 7.41e-08, + "snowballing": 1.17e-07, + "snu": 1.17e-07, + "solaire": 1.17e-07, + "solari": 1.17e-07, + "sophomoric": 1.17e-07, + "sorbitol": 1.17e-07, + "souled": 1.17e-07, + "sourceforge": 1.17e-07, + "southwold": 1.17e-07, + "spacial": 1.17e-07, + "speakin": 1.17e-07, + "spen": 1.17e-07, + "spheroid": 1.17e-07, + "sphinxes": 1.17e-07, + "spicier": 1.17e-07, + "sportster": 1.17e-07, + "sprucing": 1.17e-07, + "srikanth": 1.17e-07, + "stampeding": 1.17e-07, + "steller": 1.17e-07, + "stepladder": 1.17e-07, + "sterol": 1.17e-07, + "stomata": 1.17e-07, + "strafe": 1.17e-07, + "strathcona": 1.17e-07, + "strickler": 1.17e-07, + "stritch": 1.17e-07, + "strummer": 1.17e-07, + "subjugating": 1.17e-07, + "submersibles": 1.17e-07, + "subspaces": 1.17e-07, + "sumlin": 1.17e-07, + "sunburns": 1.17e-07, + "supernovas": 1.17e-07, + "svo": 1.17e-07, + "swett": 1.17e-07, + "swindell": 1.17e-07, + "switchable": 1.17e-07, + "sylla": 1.17e-07, + "tachi": 1.17e-07, + "taika": 1.17e-07, + "talkshow": 1.17e-07, + "tames": 1.17e-07, + "tanah": 1.17e-07, + "tanger": 1.17e-07, + "tards": 1.17e-07, + "tarring": 1.17e-07, + "tarsal": 1.17e-07, + "teamviewer": 1.17e-07, + "teddies": 1.17e-07, + "teem": 1.17e-07, + "televangelist": 1.17e-07, + "tethys": 1.17e-07, + "themistocles": 1.17e-07, + "thenceforth": 1.17e-07, + "theorised": 1.17e-07, + "thetis": 1.17e-07, + "thien": 1.17e-07, + "tilburg": 1.17e-07, + "tillotson": 1.17e-07, + "tizen": 1.17e-07, + "tods": 5.37e-08, + "topcoat": 1.17e-07, + "topman": 1.17e-07, + "topos": 1.17e-07, + "torys": 1.17e-07, + "toughening": 1.17e-07, + "toute": 1.17e-07, + "traktor": 1.17e-07, + "tramples": 1.17e-07, + "transferee": 1.17e-07, + "transhumanism": 1.17e-07, + "transpersonal": 1.17e-07, + "trebuchet": 1.17e-07, + "triana": 1.17e-07, + "trie": 1.17e-07, + "troye": 1.17e-07, + "troyer": 1.17e-07, + "truax": 1.17e-07, + "tsubaki": 1.17e-07, + "tubule": 1.17e-07, + "tufa": 1.17e-07, + "tup": 1.17e-07, + "tweeds": 1.17e-07, + "typists": 1.17e-07, + "tyus": 1.17e-07, + "ulrik": 1.17e-07, + "unai": 1.17e-07, + "unam": 1.17e-07, + "unbeknown": 1.17e-07, + "unbidden": 1.17e-07, + "unboxed": 1.17e-07, + "unclos": 1.17e-07, + "understating": 1.17e-07, + "unevenness": 1.17e-07, + "unflappable": 1.17e-07, + "unflinchingly": 1.17e-07, + "ungar": 1.17e-07, + "unordered": 1.17e-07, + "unsentimental": 1.17e-07, + "unsparing": 1.17e-07, + "unsupportive": 1.17e-07, + "unzipping": 1.17e-07, + "upregulated": 1.17e-07, + "urf": 1.17e-07, + "urologists": 1.17e-07, + "ursuline": 1.17e-07, + "uws": 5.62e-08, + "vacay": 1.17e-07, + "vacillating": 1.17e-07, + "vaguest": 1.17e-07, + "valmont": 1.17e-07, + "vaporizers": 1.17e-07, + "vash": 1.17e-07, + "vashti": 1.17e-07, + "vaucluse": 1.17e-07, + "veblen": 1.17e-07, + "velvets": 5.01e-08, + "veolia": 1.17e-07, + "verdugo": 1.17e-07, + "vespucci": 1.17e-07, + "vienne": 1.17e-07, + "villani": 1.17e-07, + "violoncello": 1.17e-07, + "virgils": 1.17e-07, + "virgina": 1.17e-07, + "vulcanized": 1.17e-07, + "wadding": 1.17e-07, + "wafts": 1.17e-07, + "waggle": 1.17e-07, + "waistcoats": 1.17e-07, + "wallen": 1.17e-07, + "wayy": 1.17e-07, + "wch": 1.17e-07, + "weinsteins": 1.17e-07, + "wenches": 1.17e-07, + "whis": 1.17e-07, + "whm": 1.17e-07, + "wieder": 1.17e-07, + "windies": 1.17e-07, + "wino": 1.17e-07, + "withington": 1.17e-07, + "withrow": 1.17e-07, + "withstands": 1.17e-07, + "wku": 1.17e-07, + "womankind": 1.17e-07, + "woodcraft": 1.17e-07, + "wooooo": 1.17e-07, + "xlvi": 1.17e-07, + "yaba": 1.17e-07, + "yeoh": 1.17e-07, + "yevhen": 1.17e-07, + "yokes": 1.17e-07, + "yosuke": 1.17e-07, + "ypu": 1.17e-07, + "yuriko": 1.17e-07, + "zaibatsu": 1.17e-07, + "zdf": 1.17e-07, + "zhuge": 1.17e-07, + "zingers": 1.17e-07, + "zuid": 1.17e-07, + "abdelkader": 1.15e-07, + "accustom": 1.15e-07, + "achtung": 1.15e-07, + "actualize": 1.15e-07, + "adat": 1.15e-07, + "agarose": 1.15e-07, + "agnelli": 1.15e-07, + "aguayo": 1.15e-07, + "ahearn": 1.15e-07, + "ailerons": 1.15e-07, + "aimer": 1.15e-07, + "aisa": 1.15e-07, + "akkad": 1.15e-07, + "alarmists": 1.15e-07, + "albertville": 1.15e-07, + "albuterol": 1.15e-07, + "alimentary": 1.15e-07, + "almanacs": 1.15e-07, + "altright": 1.15e-07, + "amanpour": 1.15e-07, + "amaterasu": 1.15e-07, + "amelioration": 1.15e-07, + "ammunitions": 1.15e-07, + "amoy": 1.15e-07, + "andries": 1.15e-07, + "anglicized": 1.15e-07, + "anorak": 1.15e-07, + "anthocyanins": 1.15e-07, + "anticompetitive": 1.15e-07, + "antigonus": 1.15e-07, + "aom": 1.15e-07, + "applewhite": 1.15e-07, + "aquarian": 1.15e-07, + "arbitrations": 1.15e-07, + "arby": 1.15e-07, + "areva": 1.15e-07, + "arminius": 1.15e-07, + "armond": 1.15e-07, + "arnot": 1.15e-07, + "arrowsmith": 1.15e-07, + "artform": 1.15e-07, + "arundhati": 1.15e-07, + "assen": 1.15e-07, + "aten": 1.15e-07, + "audiotape": 1.15e-07, + "auroral": 1.15e-07, + "australopithecus": 1.15e-07, + "avada": 1.15e-07, + "avenir": 1.15e-07, + "ayotte": 1.15e-07, + "azealia": 1.15e-07, + "azide": 1.15e-07, + "azula": 1.15e-07, + "azura": 1.15e-07, + "baan": 1.15e-07, + "babangida": 1.15e-07, + "backroads": 1.15e-07, + "backswing": 1.15e-07, + "badmouth": 1.15e-07, + "bagman": 1.15e-07, + "bahaha": 1.15e-07, + "bahu": 1.15e-07, + "bajan": 1.15e-07, + "baptista": 1.15e-07, + "bareilly": 1.15e-07, + "barenaked": 1.15e-07, + "barrell": 1.15e-07, + "barretto": 1.15e-07, + "bartsch": 1.15e-07, + "baryshnikov": 1.15e-07, + "bassano": 1.15e-07, + "basslines": 1.15e-07, + "battlecruiser": 1.15e-07, + "beckenbauer": 1.15e-07, + "becton": 1.15e-07, + "belizean": 1.15e-07, + "benchmarked": 1.15e-07, + "benno": 1.15e-07, + "benoist": 1.15e-07, + "berlinale": 1.15e-07, + "berts": 1.15e-07, + "berthe": 1.15e-07, + "betaine": 1.15e-07, + "betide": 1.15e-07, + "bettor": 1.15e-07, + "beurre": 1.15e-07, + "beys": 1.15e-07, + "bfm": 1.15e-07, + "bhim": 1.15e-07, + "biermann": 1.15e-07, + "bijan": 1.15e-07, + "bikeway": 1.15e-07, + "billericay": 1.15e-07, + "biron": 1.15e-07, + "bittner": 1.15e-07, + "blabbing": 1.15e-07, + "bleedin": 1.15e-07, + "blemished": 1.15e-07, + "bli": 1.15e-07, + "blustering": 1.15e-07, + "bnf": 1.15e-07, + "bofors": 1.15e-07, + "bonnard": 1.15e-07, + "bopp": 1.15e-07, + "borate": 1.15e-07, + "borgen": 1.15e-07, + "botelho": 1.15e-07, + "bothy": 1.15e-07, + "boudin": 1.15e-07, + "bourguignon": 1.15e-07, + "bouton": 1.15e-07, + "braham": 1.15e-07, + "brathwaite": 1.15e-07, + "breadcrumb": 1.15e-07, + "breds": 1.15e-07, + "bridgets": 1.15e-07, + "brillo": 1.15e-07, + "brinker": 1.15e-07, + "briony": 1.15e-07, + "britneys": 1.15e-07, + "brolly": 1.15e-07, + "brucellosis": 1.15e-07, + "brunches": 1.15e-07, + "btk": 1.15e-07, + "buellers": 1.15e-07, + "buildin": 1.15e-07, + "bula": 1.15e-07, + "burra": 1.15e-07, + "burridge": 1.15e-07, + "busyness": 1.15e-07, + "butkus": 1.15e-07, + "caballeros": 1.15e-07, + "cadburys": 1.15e-07, + "cagle": 1.15e-07, + "callsign": 1.15e-07, + "calvino": 1.15e-07, + "canberras": 1.15e-07, + "candidiasis": 1.15e-07, + "canted": 1.15e-07, + "capris": 1.15e-07, + "capsizes": 1.15e-07, + "capsular": 1.15e-07, + "caracalla": 1.15e-07, + "cargos": 1.15e-07, + "carotenoid": 1.15e-07, + "carphone": 1.15e-07, + "carpio": 1.15e-07, + "carron": 1.15e-07, + "catalysed": 1.15e-07, + "cavers": 1.15e-07, + "cayo": 1.15e-07, + "centenarian": 1.15e-07, + "ceramide": 1.15e-07, + "certitude": 1.15e-07, + "chappaqua": 1.15e-07, + "chavan": 1.15e-07, + "chavezs": 1.15e-07, + "cheesing": 1.15e-07, + "chemnitz": 1.15e-07, + "chesham": 1.15e-07, + "chiari": 1.15e-07, + "chicha": 1.15e-07, + "chikara": 1.15e-07, + "chillout": 1.15e-07, + "chocked": 1.15e-07, + "cholla": 1.15e-07, + "chromed": 1.15e-07, + "cina": 1.15e-07, + "circularly": 1.15e-07, + "civilize": 1.15e-07, + "clansmen": 1.15e-07, + "cleethorpes": 1.15e-07, + "clickers": 1.15e-07, + "clicquot": 1.15e-07, + "climatologist": 1.15e-07, + "clow": 1.15e-07, + "clubhouses": 1.15e-07, + "clytemnestra": 1.15e-07, + "cnts": 1.15e-07, + "cocke": 1.15e-07, + "cockerill": 1.15e-07, + "coinsurance": 1.15e-07, + "collinsworth": 1.15e-07, + "communistic": 1.15e-07, + "compere": 1.15e-07, + "concessionaire": 1.15e-07, + "conditionality": 1.15e-07, + "conta": 1.15e-07, + "cookes": 1.15e-07, + "corregidor": 1.15e-07, + "cotterill": 1.15e-07, + "cottesloe": 1.15e-07, + "countercultural": 1.15e-07, + "counterpoints": 1.15e-07, + "couponing": 1.15e-07, + "cozying": 1.15e-07, + "crabbing": 1.15e-07, + "creepiness": 1.15e-07, + "crematory": 1.15e-07, + "crissy": 1.15e-07, + "croesus": 1.15e-07, + "crotches": 1.15e-07, + "crowdsource": 1.15e-07, + "crowes": 9.55e-08, + "cumshots": 1.15e-07, + "daringly": 1.15e-07, + "darks": 1.15e-07, + "dasa": 1.15e-07, + "daviess": 7.94e-08, + "dbacks": 1.15e-07, + "deaver": 1.15e-07, + "debuchy": 1.15e-07, + "decaffeinated": 1.15e-07, + "deci": 1.15e-07, + "decrypting": 1.15e-07, + "defi": 1.15e-07, + "deification": 1.15e-07, + "deigned": 1.15e-07, + "demian": 1.15e-07, + "demoed": 1.15e-07, + "demographers": 1.15e-07, + "demonise": 1.15e-07, + "deputized": 1.15e-07, + "derogation": 1.15e-07, + "dessie": 1.15e-07, + "destructiveness": 1.15e-07, + "dhillon": 1.15e-07, + "dhow": 1.15e-07, + "dicta": 1.15e-07, + "dieback": 1.15e-07, + "dignities": 1.15e-07, + "dilworth": 1.15e-07, + "dingley": 1.15e-07, + "diphenhydramine": 1.15e-07, + "diphthongs": 1.15e-07, + "dipshits": 1.15e-07, + "dirtbags": 1.15e-07, + "discolouration": 1.15e-07, + "disengages": 1.15e-07, + "disincentives": 1.15e-07, + "disneyworld": 1.15e-07, + "dissociating": 1.15e-07, + "donnan": 1.15e-07, + "doogie": 1.15e-07, + "doorkeeper": 1.15e-07, + "dorje": 1.15e-07, + "dowie": 1.15e-07, + "drainages": 1.15e-07, + "dreamtime": 1.15e-07, + "dredges": 1.15e-07, + "dromedary": 1.15e-07, + "ductwork": 1.15e-07, + "duvets": 1.15e-07, + "dvrs": 1.15e-07, + "dyers": 1.12e-07, + "ecstacy": 1.15e-07, + "edgewise": 1.15e-07, + "edinson": 1.15e-07, + "effluents": 1.15e-07, + "egmond": 1.15e-07, + "electricals": 1.15e-07, + "electromagnets": 1.15e-07, + "elliss": 1.15e-07, + "enablement": 1.15e-07, + "encyclopaedic": 1.15e-07, + "entitys": 1.15e-07, + "epitaphs": 1.15e-07, + "epoque": 1.15e-07, + "errs": 1.15e-07, + "erv": 1.15e-07, + "erythropoietin": 1.15e-07, + "ette": 1.15e-07, + "eua": 1.15e-07, + "eurogamer": 1.15e-07, + "evacuates": 1.15e-07, + "evilly": 1.15e-07, + "evilness": 1.15e-07, + "exotica": 1.15e-07, + "exoticism": 1.15e-07, + "externals": 1.15e-07, + "extricated": 1.15e-07, + "famas": 1.15e-07, + "fani": 1.15e-07, + "fanshawe": 1.15e-07, + "faramir": 1.15e-07, + "fasti": 1.15e-07, + "fcking": 1.15e-07, + "fers": 1.15e-07, + "fetishist": 1.15e-07, + "fev": 1.15e-07, + "fierro": 1.15e-07, + "fira": 1.15e-07, + "firebug": 1.15e-07, + "fisc": 1.15e-07, + "fishbone": 1.15e-07, + "fishmongers": 1.15e-07, + "fixating": 1.15e-07, + "flails": 1.15e-07, + "flakey": 1.15e-07, + "flashcard": 1.15e-07, + "flc": 1.15e-07, + "flix": 1.15e-07, + "fluoridated": 1.15e-07, + "fna": 1.15e-07, + "foretells": 1.15e-07, + "formate": 1.15e-07, + "forsters": 1.15e-07, + "fourty": 1.15e-07, + "fowles": 1.15e-07, + "freeloading": 1.15e-07, + "frenemies": 1.15e-07, + "fresenius": 1.15e-07, + "fricative": 1.15e-07, + "frogger": 1.15e-07, + "frutti": 1.15e-07, + "ftt": 1.15e-07, + "fuddy": 1.15e-07, + "fukin": 1.15e-07, + "fukui": 1.15e-07, + "fuld": 1.15e-07, + "fuq": 1.15e-07, + "fuuuuck": 1.15e-07, + "gages": 1.15e-07, + "gailey": 1.15e-07, + "garces": 1.15e-07, + "garman": 1.15e-07, + "garou": 1.15e-07, + "gast": 1.15e-07, + "gehenna": 1.15e-07, + "geisel": 1.15e-07, + "geneve": 1.15e-07, + "geode": 1.15e-07, + "gerrymander": 1.15e-07, + "gies": 1.15e-07, + "giessen": 1.15e-07, + "giftedness": 1.15e-07, + "gion": 1.15e-07, + "glamis": 1.15e-07, + "gleamed": 1.15e-07, + "glenlivet": 1.15e-07, + "glenrothes": 1.15e-07, + "gluconeogenesis": 1.15e-07, + "glucoside": 1.15e-07, + "godalming": 1.15e-07, + "goddamit": 1.15e-07, + "godwins": 1.15e-07, + "godzillas": 1.15e-07, + "goiter": 1.15e-07, + "gomis": 1.15e-07, + "gopnik": 1.15e-07, + "gort": 1.15e-07, + "govts": 5.89e-08, + "gowda": 1.15e-07, + "grats": 1.15e-07, + "gruyere": 1.15e-07, + "guatemalans": 1.15e-07, + "gude": 1.15e-07, + "gulden": 1.15e-07, + "gwh": 1.15e-07, + "gyles": 1.15e-07, + "hahnemann": 1.15e-07, + "hames": 1.15e-07, + "hanscom": 1.15e-07, + "harlech": 1.15e-07, + "harringtons": 1.15e-07, + "hartwig": 1.15e-07, + "haughey": 1.15e-07, + "hayama": 1.15e-07, + "hazed": 1.15e-07, + "hdc": 1.15e-07, + "headbanging": 1.15e-07, + "hedlund": 1.15e-07, + "henke": 1.15e-07, + "hibbs": 1.15e-07, + "hield": 1.15e-07, + "highlife": 1.15e-07, + "hippolyte": 1.15e-07, + "histologically": 1.15e-07, + "hitz": 1.15e-07, + "hlf": 1.15e-07, + "hobhouse": 1.15e-07, + "hok": 1.15e-07, + "holderness": 1.15e-07, + "homolog": 1.15e-07, + "honiara": 1.15e-07, + "honorarium": 1.15e-07, + "hopf": 1.15e-07, + "horas": 1.15e-07, + "horseplay": 1.15e-07, + "hotbeds": 1.15e-07, + "howlers": 1.15e-07, + "hugest": 1.15e-07, + "hydrofoil": 1.15e-07, + "hypatia": 1.15e-07, + "hyperventilation": 1.15e-07, + "hyponatremia": 1.15e-07, + "hysteric": 1.15e-07, + "iag": 1.15e-07, + "ibr": 1.15e-07, + "icom": 1.15e-07, + "idee": 1.15e-07, + "ifrit": 1.15e-07, + "igh": 1.15e-07, + "iir": 1.15e-07, + "ikaw": 1.15e-07, + "iku": 1.15e-07, + "imlay": 1.15e-07, + "immortalize": 1.15e-07, + "immunize": 1.15e-07, + "incall": 1.15e-07, + "incentivizing": 1.15e-07, + "inchoate": 1.15e-07, + "inconsiderable": 1.15e-07, + "inconstant": 1.15e-07, + "incorporeal": 1.15e-07, + "inextricable": 1.15e-07, + "infarct": 1.15e-07, + "inflectional": 1.15e-07, + "instacart": 1.15e-07, + "interlaken": 1.15e-07, + "intermediation": 1.15e-07, + "interspecific": 1.15e-07, + "intresting": 1.15e-07, + "involution": 1.15e-07, + "iolaus": 1.15e-07, + "irobot": 1.15e-07, + "iselin": 1.15e-07, + "isiss": 1.15e-07, + "isolator": 1.15e-07, + "jacobian": 1.15e-07, + "jailor": 1.15e-07, + "jair": 1.15e-07, + "jairus": 1.15e-07, + "janu": 1.15e-07, + "jayant": 1.15e-07, + "jeffress": 1.15e-07, + "jihadism": 1.15e-07, + "joad": 1.15e-07, + "jre": 1.15e-07, + "jtbc": 1.15e-07, + "jui": 1.15e-07, + "kalo": 1.15e-07, + "kalos": 1.15e-07, + "kamau": 1.15e-07, + "kampong": 1.15e-07, + "kangs": 1.15e-07, + "kashima": 1.15e-07, + "kashmirs": 1.15e-07, + "katys": 1.15e-07, + "kaushik": 1.15e-07, + "keeton": 1.15e-07, + "keon": 1.15e-07, + "khama": 1.15e-07, + "khurana": 1.15e-07, + "kilby": 1.15e-07, + "klug": 1.15e-07, + "knotweed": 1.15e-07, + "knowle": 1.15e-07, + "knuckled": 1.15e-07, + "knuth": 1.15e-07, + "koan": 1.15e-07, + "koc": 1.15e-07, + "koenigsegg": 1.15e-07, + "kojak": 1.15e-07, + "komal": 1.15e-07, + "koroma": 1.15e-07, + "koval": 1.15e-07, + "kovalchuk": 1.15e-07, + "kozhikode": 1.15e-07, + "kozlov": 1.15e-07, + "ksl": 1.15e-07, + "ksp": 1.15e-07, + "kuznetsova": 1.15e-07, + "labile": 1.15e-07, + "ladles": 1.15e-07, + "lari": 1.15e-07, + "leafless": 1.15e-07, + "leatherback": 1.15e-07, + "lederman": 1.15e-07, + "leen": 1.15e-07, + "lenovos": 1.15e-07, + "leonore": 1.15e-07, + "lettuces": 1.15e-07, + "librettist": 1.15e-07, + "lichtenberg": 1.15e-07, + "lickin": 1.15e-07, + "likability": 1.15e-07, + "lings": 9.12e-08, + "lish": 1.15e-07, + "littlehampton": 1.15e-07, + "liveleak": 1.15e-07, + "lna": 1.15e-07, + "loanee": 1.15e-07, + "lohengrin": 1.15e-07, + "lookit": 1.15e-07, + "loonie": 1.15e-07, + "loungers": 1.15e-07, + "louts": 1.15e-07, + "loveridge": 1.15e-07, + "lpm": 1.15e-07, + "lulling": 1.15e-07, + "lundquist": 1.15e-07, + "lutea": 1.15e-07, + "lvn": 1.15e-07, + "lvov": 1.15e-07, + "lyapunov": 1.15e-07, + "lyrica": 1.15e-07, + "macbride": 1.15e-07, + "macedo": 1.15e-07, + "macmillans": 1.15e-07, + "magnificat": 1.15e-07, + "mago": 1.15e-07, + "maillard": 1.15e-07, + "mailonline": 1.15e-07, + "majuro": 1.15e-07, + "makerbot": 1.15e-07, + "malachy": 1.15e-07, + "mallika": 1.15e-07, + "malpas": 1.15e-07, + "malthusian": 1.15e-07, + "mandla": 1.15e-07, + "manzano": 1.15e-07, + "marah": 1.15e-07, + "marcio": 1.15e-07, + "marginalia": 1.15e-07, + "margrave": 1.15e-07, + "marions": 1.15e-07, + "marotta": 1.15e-07, + "martinson": 1.15e-07, + "matip": 1.15e-07, + "mattei": 1.15e-07, + "matteson": 1.15e-07, + "mavi": 1.15e-07, + "maximalist": 1.15e-07, + "mcconville": 1.15e-07, + "mcds": 7.59e-08, + "mcelwain": 1.15e-07, + "mcgahn": 1.15e-07, + "meaghan": 1.15e-07, + "meinhof": 1.15e-07, + "melodramas": 1.15e-07, + "memnon": 1.15e-07, + "mendacious": 1.15e-07, + "menfolk": 1.15e-07, + "mentos": 1.15e-07, + "merivale": 1.15e-07, + "merkur": 1.15e-07, + "merryweather": 1.15e-07, + "mestre": 1.15e-07, + "microalgae": 1.15e-07, + "microcomputers": 1.15e-07, + "microeconomic": 1.15e-07, + "microfiche": 1.15e-07, + "microsatellite": 1.15e-07, + "midnite": 1.15e-07, + "milibands": 1.15e-07, + "mindfuck": 1.15e-07, + "mironov": 1.15e-07, + "misapprehension": 1.15e-07, + "misfiring": 1.15e-07, + "missoni": 1.15e-07, + "misstatements": 1.15e-07, + "mixology": 1.15e-07, + "monas": 4.37e-08, + "monied": 1.15e-07, + "moonless": 1.15e-07, + "mortgagee": 1.15e-07, + "mosse": 1.15e-07, + "mtgox": 1.15e-07, + "muang": 1.15e-07, + "mumia": 1.15e-07, + "munda": 1.15e-07, + "mushroomed": 1.15e-07, + "mutinied": 1.15e-07, + "muzak": 1.15e-07, + "muzzles": 1.15e-07, + "myeong": 1.15e-07, + "naics": 1.15e-07, + "naidoo": 1.15e-07, + "namah": 1.15e-07, + "nanocrystals": 1.15e-07, + "naptime": 1.15e-07, + "naqvi": 1.15e-07, + "narratively": 1.15e-07, + "navajos": 1.15e-07, + "nbi": 1.15e-07, + "neato": 1.15e-07, + "networth": 1.15e-07, + "neufeld": 1.15e-07, + "nidal": 1.15e-07, + "nigels": 1.15e-07, + "nilson": 1.15e-07, + "nimr": 1.15e-07, + "noblewoman": 1.15e-07, + "noho": 1.15e-07, + "nonsmokers": 1.15e-07, + "normale": 1.15e-07, + "norn": 1.15e-07, + "northshore": 1.15e-07, + "novato": 1.15e-07, + "ntpc": 1.15e-07, + "nugs": 1.15e-07, + "nuk": 1.15e-07, + "nureyev": 1.15e-07, + "nwc": 1.15e-07, + "nyus": 1.15e-07, + "odonnells": 1.15e-07, + "oberhausen": 1.15e-07, + "occultation": 1.15e-07, + "ofhis": 1.15e-07, + "oia": 1.15e-07, + "oishi": 1.15e-07, + "oldtown": 1.15e-07, + "omnichannel": 1.15e-07, + "opportunistically": 1.15e-07, + "orazio": 1.15e-07, + "overplay": 1.15e-07, + "overshooting": 1.15e-07, + "oyu": 1.15e-07, + "paintballs": 1.15e-07, + "panem": 1.15e-07, + "pantaloons": 1.15e-07, + "papery": 1.15e-07, + "papoose": 1.15e-07, + "parkdale": 1.15e-07, + "pasay": 1.15e-07, + "passant": 1.15e-07, + "passbook": 1.15e-07, + "pastured": 1.15e-07, + "pataki": 1.15e-07, + "patricias": 1.15e-07, + "paver": 1.15e-07, + "pawpaw": 1.15e-07, + "peanutbutter": 1.15e-07, + "pedicle": 1.15e-07, + "peltz": 1.15e-07, + "pemba": 1.15e-07, + "pepes": 9.77e-08, + "percenters": 1.15e-07, + "peretti": 1.15e-07, + "permanency": 1.15e-07, + "petoskey": 1.15e-07, + "petrovna": 1.15e-07, + "petunias": 1.15e-07, + "pharaonic": 1.15e-07, + "philately": 1.15e-07, + "phosphodiesterase": 1.15e-07, + "photoelectron": 1.15e-07, + "physico": 1.15e-07, + "pilfer": 1.15e-07, + "pinta": 1.15e-07, + "plagioclase": 1.15e-07, + "plasticine": 1.15e-07, + "platon": 1.15e-07, + "pmb": 1.15e-07, + "pmf": 1.15e-07, + "pmma": 1.15e-07, + "pollitt": 1.15e-07, + "polyhedra": 1.15e-07, + "polyhedron": 1.15e-07, + "poot": 1.15e-07, + "positano": 1.15e-07, + "postponements": 1.15e-07, + "potatoe": 1.15e-07, + "pouts": 1.15e-07, + "pramod": 1.15e-07, + "prebendary": 1.15e-07, + "precure": 1.15e-07, + "predisposes": 1.15e-07, + "preemie": 1.15e-07, + "preproduction": 1.15e-07, + "preprogrammed": 1.15e-07, + "presentational": 1.15e-07, + "prideaux": 1.15e-07, + "prioress": 1.15e-07, + "profesional": 1.15e-07, + "profumo": 1.15e-07, + "proteas": 1.15e-07, + "protractor": 1.15e-07, + "prr": 1.15e-07, + "psat": 1.15e-07, + "psychomotor": 1.15e-07, + "pterosaurs": 1.15e-07, + "purchasable": 1.15e-07, + "purdah": 1.15e-07, + "purpurea": 1.15e-07, + "pushup": 1.15e-07, + "qotd": 1.15e-07, + "quadrille": 1.15e-07, + "quebecers": 1.15e-07, + "quiff": 1.15e-07, + "quintal": 1.15e-07, + "quitted": 1.15e-07, + "rahn": 1.15e-07, + "rall": 1.15e-07, + "ramapo": 1.15e-07, + "ranma": 1.15e-07, + "rato": 1.15e-07, + "rch": 1.15e-07, + "reassembly": 1.15e-07, + "recalibrated": 1.15e-07, + "recertification": 1.15e-07, + "recommence": 1.15e-07, + "reconciliations": 1.15e-07, + "reconquest": 1.15e-07, + "recyclers": 1.15e-07, + "reet": 1.15e-07, + "reimburses": 1.15e-07, + "reinstates": 1.15e-07, + "reintegrated": 1.15e-07, + "remount": 1.15e-07, + "renn": 1.15e-07, + "restrictor": 1.15e-07, + "returnee": 1.15e-07, + "reusability": 1.15e-07, + "reveries": 1.15e-07, + "rgiii": 1.15e-07, + "robotnik": 1.15e-07, + "rockefellers": 1.1e-07, + "roehampton": 1.15e-07, + "rogoff": 1.15e-07, + "rollerball": 1.15e-07, + "rolph": 1.15e-07, + "roppongi": 1.15e-07, + "rosado": 1.15e-07, + "rosebank": 1.15e-07, + "rosicky": 1.15e-07, + "rostered": 1.15e-07, + "roughnecks": 1.15e-07, + "rouses": 1.15e-07, + "rse": 1.15e-07, + "rudnick": 1.15e-07, + "rusts": 1.15e-07, + "rybak": 1.15e-07, + "sabans": 1.15e-07, + "sabot": 1.15e-07, + "salable": 1.15e-07, + "salafism": 1.15e-07, + "sando": 1.15e-07, + "sanitizers": 1.15e-07, + "sanjana": 1.15e-07, + "sargasso": 1.15e-07, + "sarkeesian": 1.15e-07, + "sater": 1.15e-07, + "satnav": 1.15e-07, + "satyam": 1.15e-07, + "savonarola": 1.15e-07, + "saybrook": 1.15e-07, + "sayeed": 1.15e-07, + "sayle": 1.15e-07, + "sayo": 1.15e-07, + "sayuri": 1.15e-07, + "schaaf": 1.15e-07, + "schecter": 1.15e-07, + "schneier": 1.15e-07, + "schwartzs": 1.15e-07, + "scintilla": 1.15e-07, + "scor": 1.15e-07, + "scotti": 1.15e-07, + "scrabbling": 1.15e-07, + "scripta": 1.15e-07, + "scuffles": 1.15e-07, + "sculpts": 1.15e-07, + "seidman": 1.15e-07, + "seismically": 1.15e-07, + "sekou": 1.15e-07, + "selenas": 1.15e-07, + "selly": 1.15e-07, + "seol": 1.15e-07, + "severest": 1.15e-07, + "shap": 1.15e-07, + "shapewear": 1.15e-07, + "shapiros": 1.15e-07, + "sharer": 1.15e-07, + "sheerness": 1.15e-07, + "sherburne": 1.15e-07, + "sherrington": 1.15e-07, + "shilton": 1.15e-07, + "shiori": 1.15e-07, + "shipmate": 1.15e-07, + "shorthair": 1.15e-07, + "shortlived": 1.15e-07, + "sikander": 1.15e-07, + "silmarillion": 1.15e-07, + "sils": 1.15e-07, + "silvered": 1.15e-07, + "simm": 1.15e-07, + "simson": 1.15e-07, + "skagway": 1.15e-07, + "skanks": 1.15e-07, + "skrull": 1.15e-07, + "skydivers": 1.15e-07, + "slammin": 1.15e-07, + "slideshows": 1.15e-07, + "smdh": 1.15e-07, + "smokestacks": 1.15e-07, + "smsf": 1.15e-07, + "snicket": 1.15e-07, + "snoqualmie": 1.15e-07, + "soley": 1.15e-07, + "sophy": 1.15e-07, + "soso": 1.15e-07, + "southington": 1.15e-07, + "spacecrafts": 5.37e-08, + "spanglish": 1.15e-07, + "spankings": 1.15e-07, + "spatio": 1.15e-07, + "specificities": 1.15e-07, + "spermatogenesis": 1.15e-07, + "spikey": 1.15e-07, + "splish": 1.15e-07, + "spooking": 1.15e-07, + "sqrt": 1.15e-07, + "srd": 1.15e-07, + "stahp": 1.15e-07, + "stanwood": 1.15e-07, + "stephensons": 1.15e-07, + "stich": 1.15e-07, + "stripy": 1.15e-07, + "sturgess": 1.15e-07, + "subcutaneously": 1.15e-07, + "sukuk": 1.15e-07, + "suncoast": 1.15e-07, + "sunway": 1.15e-07, + "supercross": 1.15e-07, + "supersized": 1.15e-07, + "supplications": 1.15e-07, + "suppositions": 1.15e-07, + "surmises": 1.15e-07, + "sustainer": 1.15e-07, + "swazi": 1.15e-07, + "switcheroo": 1.15e-07, + "syncopation": 1.15e-07, + "syngenta": 1.15e-07, + "synthpop": 1.15e-07, + "systemwide": 1.15e-07, + "szczesny": 1.15e-07, + "tarbell": 1.15e-07, + "tav": 1.15e-07, + "technetium": 1.15e-07, + "tecmo": 1.15e-07, + "teg": 1.15e-07, + "tegel": 1.15e-07, + "telepresence": 1.15e-07, + "televising": 1.15e-07, + "terje": 1.15e-07, + "terrine": 1.15e-07, + "tetrad": 1.15e-07, + "tff": 1.15e-07, + "thermostatic": 1.15e-07, + "thickener": 1.15e-07, + "thinktank": 1.15e-07, + "thwack": 1.15e-07, + "tiddy": 1.15e-07, + "timberlands": 1.15e-07, + "tiv": 1.15e-07, + "tokenism": 1.15e-07, + "tolerability": 1.15e-07, + "tollbooth": 1.15e-07, + "tomoya": 1.15e-07, + "tomsk": 1.15e-07, + "tono": 1.15e-07, + "touma": 1.15e-07, + "tpn": 1.15e-07, + "tractive": 1.15e-07, + "tralee": 1.15e-07, + "transpacific": 1.15e-07, + "tranter": 1.15e-07, + "trekker": 1.15e-07, + "trenchard": 1.15e-07, + "trentino": 1.15e-07, + "trilingual": 1.15e-07, + "trolleybus": 1.15e-07, + "trombonist": 1.15e-07, + "tromp": 1.15e-07, + "trouncing": 1.15e-07, + "trussell": 1.15e-07, + "tsl": 1.15e-07, + "tunas": 1.15e-07, + "tunisias": 1.15e-07, + "tuv": 1.15e-07, + "tweek": 1.15e-07, + "tys": 1.15e-07, + "tynemouth": 1.15e-07, + "tyreese": 1.15e-07, + "tyt": 1.15e-07, + "uemura": 1.15e-07, + "ulric": 1.15e-07, + "ulu": 1.15e-07, + "unalterable": 1.15e-07, + "uncirculated": 1.15e-07, + "undelivered": 1.15e-07, + "undercoat": 1.15e-07, + "underplayed": 1.15e-07, + "undisguised": 1.15e-07, + "unenlightened": 1.15e-07, + "unhrc": 1.15e-07, + "unobtrusively": 1.15e-07, + "unproblematic": 1.15e-07, + "unquestioningly": 1.15e-07, + "uoc": 1.15e-07, + "uproarious": 1.15e-07, + "upwork": 1.15e-07, + "urlacher": 1.15e-07, + "uwi": 1.15e-07, + "vales": 9.12e-08, + "valter": 1.15e-07, + "valuers": 1.15e-07, + "vaporwave": 1.15e-07, + "varghese": 1.15e-07, + "vaso": 1.15e-07, + "vasu": 1.15e-07, + "vdi": 1.15e-07, + "venices": 1.15e-07, + "vidi": 1.15e-07, + "vilest": 1.15e-07, + "vindicating": 1.15e-07, + "vinland": 1.15e-07, + "virender": 1.15e-07, + "visite": 1.15e-07, + "vla": 1.15e-07, + "vocalize": 1.15e-07, + "vorticity": 1.15e-07, + "vsa": 1.15e-07, + "vsi": 1.15e-07, + "vtr": 1.15e-07, + "walkouts": 1.15e-07, + "wanganui": 1.15e-07, + "wao": 1.15e-07, + "warfighter": 1.15e-07, + "warton": 1.15e-07, + "wastin": 1.15e-07, + "watkin": 1.15e-07, + "wavelets": 1.15e-07, + "weah": 1.15e-07, + "webcasts": 1.15e-07, + "wensleydale": 1.15e-07, + "werdum": 1.15e-07, + "wescott": 1.15e-07, + "whaaaat": 1.15e-07, + "whimpered": 1.15e-07, + "whirlpools": 1.15e-07, + "whisks": 1.15e-07, + "wholes": 1.15e-07, + "wildfowl": 1.15e-07, + "willkie": 1.15e-07, + "winterton": 1.15e-07, + "wisecracks": 1.15e-07, + "wittle": 1.15e-07, + "worldcom": 1.15e-07, + "wowing": 1.15e-07, + "wrasse": 1.15e-07, + "wtt": 1.15e-07, + "wyld": 1.15e-07, + "xxxvii": 1.15e-07, + "yey": 1.15e-07, + "yod": 1.15e-07, + "yokota": 1.15e-07, + "yorba": 1.15e-07, + "yoru": 1.15e-07, + "zal": 1.15e-07, + "zat": 1.15e-07, + "zb": 1.15e-07, + "zg": 1.15e-07, + "zimmers": 1.15e-07, + "zwingli": 1.15e-07, + "aaronson": 1.12e-07, + "aave": 1.12e-07, + "abdicating": 1.12e-07, + "abductees": 1.12e-07, + "abducts": 1.12e-07, + "abend": 1.12e-07, + "abiola": 1.12e-07, + "absentmindedly": 1.12e-07, + "actinides": 1.12e-07, + "activites": 1.12e-07, + "adaptions": 1.12e-07, + "adarsh": 1.12e-07, + "adcs": 1.12e-07, + "adduced": 1.12e-07, + "adenomas": 1.12e-07, + "admiringly": 1.12e-07, + "adroitly": 1.12e-07, + "aerobatics": 1.12e-07, + "afo": 1.12e-07, + "aggrandizing": 1.12e-07, + "agitprop": 1.12e-07, + "agonizingly": 1.12e-07, + "ahahah": 1.12e-07, + "airframes": 1.12e-07, + "aladin": 1.12e-07, + "albumen": 1.12e-07, + "algol": 1.12e-07, + "alikes": 1.12e-07, + "alkmaar": 1.12e-07, + "alliant": 1.12e-07, + "allogeneic": 1.12e-07, + "allograft": 1.12e-07, + "allopathic": 1.12e-07, + "almshouse": 1.12e-07, + "alper": 1.12e-07, + "alyce": 1.12e-07, + "amalgamating": 1.12e-07, + "amaru": 1.12e-07, + "amh": 1.12e-07, + "amuck": 1.12e-07, + "anata": 1.12e-07, + "annotating": 1.12e-07, + "apopka": 1.12e-07, + "appelbaum": 1.12e-07, + "apposite": 1.12e-07, + "apulia": 1.12e-07, + "arbors": 1.12e-07, + "armstead": 1.12e-07, + "arrangers": 1.12e-07, + "arround": 1.12e-07, + "arthroscopy": 1.12e-07, + "asexuality": 1.12e-07, + "asimovs": 1.12e-07, + "askmen": 1.12e-07, + "asse": 1.12e-07, + "asser": 1.12e-07, + "assiniboine": 1.12e-07, + "astbury": 1.12e-07, + "aude": 1.12e-07, + "aujourdhui": 1.12e-07, + "aussi": 1.12e-07, + "aventis": 1.12e-07, + "avia": 1.12e-07, + "ayaan": 1.12e-07, + "ayoub": 1.12e-07, + "backburner": 1.12e-07, + "backplane": 1.12e-07, + "bandaging": 1.12e-07, + "barberton": 1.12e-07, + "bardic": 1.12e-07, + "barwon": 1.12e-07, + "basswood": 1.12e-07, + "batching": 1.12e-07, + "bateau": 1.12e-07, + "bathhouses": 1.12e-07, + "battlers": 1.12e-07, + "bawa": 1.12e-07, + "bdr": 1.12e-07, + "beastmaster": 1.12e-07, + "beatified": 1.12e-07, + "beckerman": 1.12e-07, + "beecroft": 1.12e-07, + "begonias": 1.12e-07, + "begovic": 1.12e-07, + "believin": 1.12e-07, + "benita": 1.12e-07, + "benvenuto": 1.12e-07, + "berrigan": 1.12e-07, + "betelgeuse": 1.12e-07, + "betula": 1.12e-07, + "bfp": 1.12e-07, + "bhk": 1.12e-07, + "bice": 1.12e-07, + "bichon": 1.12e-07, + "bicol": 1.12e-07, + "bideford": 1.12e-07, + "bigwig": 1.12e-07, + "bildt": 1.12e-07, + "biochemists": 1.12e-07, + "biosensor": 1.12e-07, + "biotechnological": 1.12e-07, + "birchall": 1.12e-07, + "biss": 1.12e-07, + "bitte": 1.12e-07, + "blandly": 1.12e-07, + "blavatsky": 1.12e-07, + "blitzes": 1.12e-07, + "blurting": 1.12e-07, + "bogaerts": 1.12e-07, + "bomer": 1.12e-07, + "bort": 1.12e-07, + "bosman": 1.12e-07, + "boudreaux": 1.12e-07, + "boyega": 1.12e-07, + "boyko": 1.12e-07, + "brach": 1.12e-07, + "brachytherapy": 1.12e-07, + "breakaways": 1.12e-07, + "breviary": 1.12e-07, + "brielle": 1.12e-07, + "brindisi": 1.12e-07, + "broadstairs": 1.12e-07, + "brockovich": 1.12e-07, + "brok": 1.12e-07, + "broly": 1.12e-07, + "brossard": 1.12e-07, + "brutalities": 1.12e-07, + "btm": 1.12e-07, + "buchman": 1.12e-07, + "buildable": 1.12e-07, + "busied": 1.12e-07, + "calorimeter": 1.12e-07, + "capitalisms": 1.12e-07, + "caprices": 1.12e-07, + "capulet": 1.12e-07, + "carabiner": 1.12e-07, + "cariboo": 1.12e-07, + "carnoustie": 1.12e-07, + "carrel": 1.12e-07, + "cartersville": 1.12e-07, + "cassano": 1.12e-07, + "catabolism": 1.12e-07, + "catesby": 1.12e-07, + "cauley": 1.12e-07, + "cavett": 1.12e-07, + "cbus": 1.12e-07, + "celeriac": 1.12e-07, + "cerezo": 1.12e-07, + "chakrabarty": 1.12e-07, + "challah": 1.12e-07, + "chappelles": 1.12e-07, + "characterful": 1.12e-07, + "charleys": 1.12e-07, + "charmin": 1.12e-07, + "charnel": 1.12e-07, + "charring": 1.12e-07, + "chatillon": 1.12e-07, + "childline": 1.12e-07, + "chillingly": 1.12e-07, + "chlorate": 1.12e-07, + "chondroitin": 1.12e-07, + "chorionic": 1.12e-07, + "choux": 1.12e-07, + "christianized": 1.12e-07, + "christiano": 1.12e-07, + "chungking": 1.12e-07, + "ciba": 1.12e-07, + "cinerea": 1.12e-07, + "circumcise": 1.12e-07, + "cisse": 1.12e-07, + "cks": 1.12e-07, + "clacking": 1.12e-07, + "clades": 1.12e-07, + "clyburn": 1.12e-07, + "cobbett": 1.12e-07, + "cogito": 1.12e-07, + "coherency": 1.12e-07, + "cohle": 1.12e-07, + "coloureds": 1.12e-07, + "combated": 1.12e-07, + "comeau": 1.12e-07, + "commercialised": 1.12e-07, + "comon": 1.12e-07, + "compl": 1.12e-07, + "compuserve": 1.12e-07, + "conaway": 1.12e-07, + "confiscations": 1.12e-07, + "copiously": 1.12e-07, + "coprocessor": 1.12e-07, + "coquelin": 1.12e-07, + "corbet": 1.12e-07, + "corson": 1.12e-07, + "courgettes": 1.12e-07, + "crains": 1.12e-07, + "crosland": 1.12e-07, + "crossbreed": 1.12e-07, + "crossdresser": 1.12e-07, + "crossland": 1.12e-07, + "crotchety": 1.12e-07, + "cruddy": 1.12e-07, + "cryogenics": 1.12e-07, + "cubical": 1.12e-07, + "cudahy": 1.12e-07, + "cursus": 1.12e-07, + "curtsy": 1.12e-07, + "curveballs": 1.12e-07, + "dachshunds": 1.12e-07, + "dagens": 1.12e-07, + "daikon": 1.12e-07, + "dantonio": 1.12e-07, + "deeley": 1.12e-07, + "deferrals": 1.12e-07, + "defunded": 1.12e-07, + "delamination": 1.12e-07, + "delius": 1.12e-07, + "democracys": 1.12e-07, + "deripaska": 1.12e-07, + "derwin": 1.12e-07, + "deshpande": 1.12e-07, + "despairs": 1.12e-07, + "dess": 1.02e-08, + "devdas": 1.12e-07, + "diaghilev": 1.12e-07, + "diasporas": 1.12e-07, + "diaw": 1.12e-07, + "diemen": 1.12e-07, + "dilutions": 1.12e-07, + "dimanche": 1.12e-07, + "diol": 1.12e-07, + "disqualifications": 1.12e-07, + "disses": 1.12e-07, + "distros": 1.12e-07, + "distrusts": 1.12e-07, + "donaldsons": 1.12e-07, + "doormen": 1.12e-07, + "doujin": 1.12e-07, + "dowler": 1.12e-07, + "downdraft": 1.12e-07, + "downwardly": 1.12e-07, + "dreamily": 1.12e-07, + "ducasse": 1.12e-07, + "dunia": 1.12e-07, + "durning": 1.12e-07, + "dysmorphic": 1.12e-07, + "ecclesiology": 1.12e-07, + "elderflower": 1.12e-07, + "electorally": 1.12e-07, + "elmers": 1.12e-07, + "elmont": 1.12e-07, + "eln": 1.12e-07, + "elwes": 1.12e-07, + "emploi": 1.12e-07, + "endothermic": 1.12e-07, + "energising": 1.12e-07, + "energizes": 1.12e-07, + "enthusiasms": 1.12e-07, + "entrained": 1.12e-07, + "entropic": 1.12e-07, + "epfl": 1.12e-07, + "espanola": 1.12e-07, + "esport": 1.12e-07, + "ethicist": 1.12e-07, + "euphemistic": 1.12e-07, + "evelyne": 1.12e-07, + "exif": 1.12e-07, + "facially": 1.12e-07, + "factoids": 1.12e-07, + "fadi": 1.12e-07, + "falken": 1.12e-07, + "farben": 1.12e-07, + "fastness": 1.12e-07, + "fedorov": 1.12e-07, + "feeny": 1.12e-07, + "feig": 1.12e-07, + "feigns": 1.12e-07, + "feis": 5.01e-08, + "fems": 1.12e-07, + "fera": 1.12e-07, + "fermion": 1.12e-07, + "feuerbach": 1.12e-07, + "fiances": 1.12e-07, + "figgis": 1.12e-07, + "firebombed": 1.12e-07, + "fitzherbert": 1.12e-07, + "fitzy": 1.12e-07, + "flatlands": 1.12e-07, + "flavourings": 1.12e-07, + "florey": 1.12e-07, + "flossie": 1.12e-07, + "flv": 1.12e-07, + "flyovers": 1.12e-07, + "flytrap": 1.12e-07, + "fmt": 1.12e-07, + "foreach": 1.12e-07, + "foundering": 1.12e-07, + "fouquet": 1.12e-07, + "fouts": 1.12e-07, + "fq": 1.12e-07, + "freeloader": 1.12e-07, + "freighted": 1.12e-07, + "frescos": 1.12e-07, + "frilled": 1.12e-07, + "friz": 1.12e-07, + "frostburg": 1.12e-07, + "fum": 1.12e-07, + "fursuit": 1.12e-07, + "futur": 1.12e-07, + "fxs": 1.12e-07, + "gaan": 1.12e-07, + "gadgetry": 1.12e-07, + "gagan": 1.12e-07, + "gaiters": 1.12e-07, + "garlicky": 1.12e-07, + "garonne": 1.12e-07, + "garver": 1.12e-07, + "gattuso": 1.12e-07, + "gentlewoman": 1.12e-07, + "geste": 1.12e-07, + "gfi": 1.12e-07, + "giantess": 1.12e-07, + "gifu": 1.12e-07, + "ginette": 1.12e-07, + "giz": 1.12e-07, + "glennie": 1.12e-07, + "gluteal": 1.12e-07, + "gmr": 1.12e-07, + "gokhale": 1.12e-07, + "goold": 1.12e-07, + "goos": 1.12e-07, + "gourlay": 1.12e-07, + "governesses": 1.12e-07, + "gowen": 1.12e-07, + "gpr": 1.12e-07, + "grahamstown": 1.12e-07, + "grandiosity": 1.12e-07, + "gren": 1.12e-07, + "greying": 1.12e-07, + "griefs": 1.12e-07, + "groundout": 1.12e-07, + "gulley": 1.12e-07, + "gundlach": 1.12e-07, + "guus": 1.12e-07, + "guyot": 1.12e-07, + "guyton": 1.12e-07, + "haagen": 1.12e-07, + "hakone": 1.12e-07, + "halberd": 1.12e-07, + "halfords": 1.12e-07, + "hammerheads": 1.12e-07, + "handcuffing": 1.12e-07, + "handstands": 1.12e-07, + "handsy": 1.12e-07, + "hapoel": 1.12e-07, + "hardcopy": 1.12e-07, + "hardesty": 1.12e-07, + "haredi": 1.12e-07, + "harty": 1.12e-07, + "hatt": 1.12e-07, + "havisham": 1.12e-07, + "haywards": 1.02e-07, + "hbcus": 1.12e-07, + "headey": 1.12e-07, + "heartwood": 1.12e-07, + "hef": 1.12e-07, + "heineman": 1.12e-07, + "heis": 1.12e-07, + "hemiptera": 1.12e-07, + "hench": 1.12e-07, + "hensel": 1.12e-07, + "hensons": 1.12e-07, + "herakles": 1.12e-07, + "heu": 1.12e-07, + "hilts": 1.12e-07, + "hindman": 1.12e-07, + "hoagland": 1.12e-07, + "hobsbawm": 1.12e-07, + "hohenzollern": 1.12e-07, + "hollers": 1.12e-07, + "hols": 1.12e-07, + "hominin": 1.12e-07, + "honiton": 1.12e-07, + "hootenanny": 1.12e-07, + "hopsin": 1.12e-07, + "hornaday": 1.12e-07, + "hostname": 1.12e-07, + "hozier": 1.12e-07, + "hucknall": 1.12e-07, + "hullo": 1.12e-07, + "humpbacks": 1.12e-07, + "hurtled": 1.12e-07, + "hyndman": 1.12e-07, + "idl": 1.12e-07, + "ifo": 1.12e-07, + "iihf": 1.12e-07, + "iits": 1.12e-07, + "ilorin": 1.12e-07, + "imbues": 1.12e-07, + "imfs": 1.12e-07, + "impounding": 1.12e-07, + "indyref": 1.12e-07, + "infineon": 1.12e-07, + "inglourious": 1.12e-07, + "interdenominational": 1.12e-07, + "interregional": 1.12e-07, + "irak": 1.12e-07, + "irregardless": 1.12e-07, + "isna": 1.12e-07, + "iupui": 1.12e-07, + "ivories": 1.12e-07, + "janta": 1.12e-07, + "januarys": 1.12e-07, + "jardim": 1.12e-07, + "jauregui": 1.12e-07, + "jayce": 1.12e-07, + "jeevan": 1.12e-07, + "jeh": 1.12e-07, + "jeopardised": 1.12e-07, + "jessel": 1.12e-07, + "jetson": 1.12e-07, + "jho": 1.12e-07, + "jse": 1.12e-07, + "kahl": 1.12e-07, + "kakadu": 1.12e-07, + "kannan": 1.12e-07, + "karlsen": 1.12e-07, + "karyotype": 1.12e-07, + "katrinas": 1.12e-07, + "katzenberg": 1.12e-07, + "kaveri": 1.12e-07, + "kazakhstani": 1.12e-07, + "kearse": 1.12e-07, + "kelman": 1.12e-07, + "kerrville": 1.12e-07, + "khost": 1.12e-07, + "kingdon": 1.12e-07, + "kiplings": 1.12e-07, + "kishida": 1.12e-07, + "kittle": 1.12e-07, + "kjell": 1.12e-07, + "klassen": 1.12e-07, + "klebsiella": 1.12e-07, + "kocher": 1.12e-07, + "konya": 1.12e-07, + "kootenai": 1.12e-07, + "kresge": 1.12e-07, + "kugel": 1.12e-07, + "kundan": 1.12e-07, + "kuntz": 1.12e-07, + "kynaston": 1.12e-07, + "labradors": 1.12e-07, + "landrum": 1.12e-07, + "lanthanum": 1.12e-07, + "lapu": 1.12e-07, + "lateef": 1.12e-07, + "lauro": 1.12e-07, + "leber": 1.12e-07, + "ledbury": 1.12e-07, + "lestrade": 1.12e-07, + "letos": 1.12e-07, + "letourneau": 1.12e-07, + "levitan": 1.12e-07, + "libros": 1.12e-07, + "licious": 1.12e-07, + "lieve": 1.12e-07, + "ligase": 1.12e-07, + "limas": 1.12e-07, + "lincs": 1.12e-07, + "lipophilic": 1.12e-07, + "liq": 1.12e-07, + "litte": 1.12e-07, + "livability": 1.12e-07, + "livi": 1.12e-07, + "llewyn": 1.12e-07, + "lmr": 1.12e-07, + "lmu": 1.12e-07, + "loftier": 1.12e-07, + "lona": 1.12e-07, + "longe": 1.12e-07, + "loofah": 1.12e-07, + "loria": 1.12e-07, + "loupe": 1.12e-07, + "lovecraftian": 1.12e-07, + "ludlam": 1.12e-07, + "luella": 1.12e-07, + "lunched": 1.12e-07, + "lurkers": 1.12e-07, + "lxi": 1.12e-07, + "macaroon": 1.12e-07, + "macdonnell": 1.12e-07, + "mackin": 1.12e-07, + "maclellan": 1.12e-07, + "macromedia": 1.12e-07, + "madding": 1.12e-07, + "mado": 1.12e-07, + "maggs": 1.12e-07, + "magnums": 1.12e-07, + "mahabharat": 1.12e-07, + "mailbag": 1.12e-07, + "mainichi": 1.12e-07, + "malcontent": 1.12e-07, + "malka": 1.12e-07, + "malling": 1.12e-07, + "maltose": 1.12e-07, + "malum": 1.12e-07, + "manado": 1.12e-07, + "manan": 1.12e-07, + "manana": 1.12e-07, + "manfully": 1.12e-07, + "manioc": 1.12e-07, + "manzanita": 1.12e-07, + "marathas": 1.12e-07, + "margolin": 1.12e-07, + "markson": 1.12e-07, + "marlee": 1.12e-07, + "marmoset": 1.12e-07, + "marquetry": 1.12e-07, + "marwood": 1.12e-07, + "mashhad": 1.12e-07, + "matriarchy": 1.12e-07, + "matsuoka": 1.12e-07, + "mauch": 1.12e-07, + "maxson": 1.12e-07, + "mccrary": 1.12e-07, + "mccullers": 1.12e-07, + "mcgrew": 1.12e-07, + "mclntyre": 1.12e-07, + "mcmahons": 1.12e-07, + "medlock": 1.12e-07, + "megatons": 1.12e-07, + "meissen": 1.12e-07, + "melancon": 1.12e-07, + "melanocytes": 1.12e-07, + "memorys": 1.12e-07, + "mentone": 1.12e-07, + "merkley": 1.12e-07, + "metas": 1.12e-07, + "mff": 1.12e-07, + "microplastics": 1.12e-07, + "midrib": 1.12e-07, + "mikal": 1.12e-07, + "millay": 1.12e-07, + "millies": 1.12e-07, + "mimesis": 1.12e-07, + "mings": 6.31e-08, + "minha": 1.12e-07, + "minimus": 1.12e-07, + "minnies": 1.12e-07, + "misapplied": 1.12e-07, + "misdemeanours": 1.12e-07, + "mistranslation": 1.12e-07, + "mistrustful": 1.12e-07, + "mnangagwa": 1.12e-07, + "moco": 1.12e-07, + "molineux": 1.12e-07, + "mondragon": 1.12e-07, + "moneylender": 1.12e-07, + "montour": 1.12e-07, + "moonee": 1.12e-07, + "morbius": 1.12e-07, + "morra": 1.12e-07, + "mostert": 1.12e-07, + "mousepad": 1.12e-07, + "mrd": 1.12e-07, + "mtsu": 1.12e-07, + "mukti": 1.12e-07, + "multicore": 1.12e-07, + "mundial": 1.12e-07, + "musicale": 1.12e-07, + "musso": 1.12e-07, + "myx": 1.12e-07, + "nabs": 1.78e-08, + "nain": 1.12e-07, + "nanowrimo": 1.12e-07, + "nasik": 1.12e-07, + "natascha": 1.12e-07, + "ndps": 1.12e-07, + "ndrangheta": 1.12e-07, + "nearsighted": 1.12e-07, + "nemeth": 1.12e-07, + "neogene": 1.12e-07, + "nestorius": 1.12e-07, + "netto": 1.12e-07, + "netware": 1.12e-07, + "neurotrophic": 1.12e-07, + "ngan": 1.12e-07, + "nias": 5.01e-08, + "nicolle": 1.12e-07, + "noisiest": 1.12e-07, + "nolo": 1.12e-07, + "nonalcoholic": 1.12e-07, + "noncombatants": 1.12e-07, + "noncommissioned": 1.12e-07, + "nordberg": 1.12e-07, + "norml": 1.12e-07, + "norwell": 1.12e-07, + "novela": 1.12e-07, + "novum": 1.12e-07, + "nsd": 1.12e-07, + "nswrl": 1.12e-07, + "numberless": 1.12e-07, + "nusrat": 1.12e-07, + "nypl": 1.12e-07, + "oaky": 1.12e-07, + "obits": 1.12e-07, + "objets": 1.12e-07, + "oddie": 1.12e-07, + "ohi": 1.12e-07, + "oie": 1.12e-07, + "olivares": 1.12e-07, + "olt": 1.12e-07, + "opensuse": 1.12e-07, + "opn": 1.12e-07, + "orangemen": 1.12e-07, + "orangey": 1.12e-07, + "orillia": 1.12e-07, + "ormonde": 1.12e-07, + "orne": 1.12e-07, + "oropharyngeal": 1.12e-07, + "orthotics": 1.12e-07, + "osmium": 1.12e-07, + "ouray": 1.12e-07, + "outfall": 1.12e-07, + "outsize": 1.12e-07, + "ovc": 1.12e-07, + "overacting": 1.12e-07, + "overcompensating": 1.12e-07, + "oxalic": 1.12e-07, + "paik": 1.12e-07, + "palahniuk": 1.12e-07, + "palimpsest": 1.12e-07, + "palpation": 1.12e-07, + "panettiere": 1.12e-07, + "panjab": 1.12e-07, + "pantai": 1.12e-07, + "panzers": 1.12e-07, + "papist": 1.12e-07, + "paraiso": 1.12e-07, + "parkways": 1.12e-07, + "parler": 1.12e-07, + "parotid": 1.12e-07, + "parses": 1.12e-07, + "passionfruit": 1.12e-07, + "patras": 1.12e-07, + "patrizia": 1.12e-07, + "payables": 1.12e-07, + "paymasters": 1.12e-07, + "pbe": 1.12e-07, + "pbp": 1.12e-07, + "pdd": 1.12e-07, + "pectoralis": 1.12e-07, + "pelley": 1.12e-07, + "pennyworth": 1.12e-07, + "pentru": 1.12e-07, + "permeation": 1.12e-07, + "perreault": 1.12e-07, + "perrot": 1.12e-07, + "perryman": 1.12e-07, + "personalizing": 1.12e-07, + "pettibone": 1.12e-07, + "pettitte": 1.12e-07, + "phon": 1.12e-07, + "phr": 1.12e-07, + "picatinny": 1.12e-07, + "picc": 1.12e-07, + "piedra": 1.12e-07, + "piggybacking": 1.12e-07, + "pila": 1.12e-07, + "pinche": 1.12e-07, + "pinheiro": 1.12e-07, + "pinko": 1.12e-07, + "pion": 1.12e-07, + "piscina": 1.12e-07, + "piti": 1.12e-07, + "pitti": 1.12e-07, + "piyush": 1.12e-07, + "plantarum": 1.12e-07, + "pleasance": 1.12e-07, + "pleurisy": 1.12e-07, + "polisario": 1.12e-07, + "pomodoro": 1.12e-07, + "portas": 1.12e-07, + "porterhouse": 1.12e-07, + "portola": 1.12e-07, + "positrons": 1.12e-07, + "possessiveness": 1.12e-07, + "postgrad": 1.12e-07, + "potlatch": 1.12e-07, + "potties": 1.12e-07, + "pouncey": 1.12e-07, + "pourquoi": 1.12e-07, + "poway": 1.12e-07, + "powerlines": 1.12e-07, + "prejudge": 1.12e-07, + "preprocessing": 1.12e-07, + "preprocessor": 1.12e-07, + "prestatyn": 1.12e-07, + "preteens": 1.12e-07, + "princetons": 1.12e-07, + "probative": 1.12e-07, + "produc": 1.12e-07, + "programm": 1.12e-07, + "prolapsed": 1.12e-07, + "pronotum": 1.12e-07, + "proteome": 1.12e-07, + "ptarmigan": 1.12e-07, + "publick": 1.12e-07, + "pugin": 1.12e-07, + "puntland": 1.12e-07, + "purposeless": 1.12e-07, + "purty": 1.12e-07, + "purves": 1.12e-07, + "qrs": 1.12e-07, + "quantifier": 1.12e-07, + "quarantining": 1.12e-07, + "quiets": 1.12e-07, + "raby": 1.12e-07, + "radcliff": 1.12e-07, + "ragini": 1.12e-07, + "rainfalls": 1.12e-07, + "ravan": 1.12e-07, + "reales": 1.12e-07, + "realme": 1.12e-07, + "recouping": 1.12e-07, + "redactions": 1.12e-07, + "reddits": 1.12e-07, + "reemergence": 1.12e-07, + "reenacted": 1.12e-07, + "rehome": 1.12e-07, + "reiteration": 1.12e-07, + "reorganizations": 1.12e-07, + "replications": 1.12e-07, + "republika": 1.12e-07, + "repudiating": 1.12e-07, + "resales": 1.12e-07, + "ressler": 1.12e-07, + "rett": 1.12e-07, + "reunified": 1.12e-07, + "rhcp": 1.12e-07, + "richa": 1.12e-07, + "rifkind": 1.12e-07, + "rimfire": 1.12e-07, + "rippers": 1.12e-07, + "roadwork": 1.12e-07, + "roids": 1.12e-07, + "rollercoasters": 1.12e-07, + "romine": 1.12e-07, + "rosea": 1.12e-07, + "roundish": 1.12e-07, + "rowse": 1.12e-07, + "ruber": 1.12e-07, + "rubins": 1.12e-07, + "ruggedly": 1.12e-07, + "ruy": 1.12e-07, + "ryoko": 1.12e-07, + "saat": 1.12e-07, + "sacher": 1.12e-07, + "sadies": 1.12e-07, + "sagamore": 1.12e-07, + "sahaba": 1.12e-07, + "saiyans": 1.12e-07, + "salama": 1.12e-07, + "saltier": 1.12e-07, + "samuelsson": 1.12e-07, + "sarris": 1.12e-07, + "sather": 1.12e-07, + "saturnalia": 1.12e-07, + "scallion": 1.12e-07, + "scarpa": 1.12e-07, + "scher": 1.12e-07, + "schiano": 1.12e-07, + "schild": 1.12e-07, + "schlitz": 1.12e-07, + "schreck": 1.12e-07, + "scotsmen": 1.12e-07, + "scourges": 1.12e-07, + "screenshotted": 1.12e-07, + "scribd": 1.12e-07, + "seaplanes": 1.12e-07, + "secundum": 1.12e-07, + "seige": 1.12e-07, + "selwood": 1.12e-07, + "semiconducting": 1.12e-07, + "semigroup": 1.12e-07, + "sene": 1.12e-07, + "senselessly": 1.12e-07, + "seperately": 1.12e-07, + "sereno": 1.12e-07, + "serling": 1.12e-07, + "serna": 1.12e-07, + "serotype": 1.12e-07, + "serpico": 1.12e-07, + "sette": 1.12e-07, + "shahin": 1.12e-07, + "sharky": 1.12e-07, + "shearers": 5.37e-08, + "shelia": 1.12e-07, + "shilo": 1.12e-07, + "shinhwa": 1.12e-07, + "shiz": 1.12e-07, + "shobha": 1.12e-07, + "shoshana": 1.12e-07, + "shredders": 1.12e-07, + "shwe": 1.12e-07, + "sidharth": 1.12e-07, + "signee": 1.12e-07, + "sintra": 1.12e-07, + "sixer": 1.12e-07, + "sketchup": 1.12e-07, + "skippered": 1.12e-07, + "skittle": 1.12e-07, + "slickers": 1.12e-07, + "slingshots": 1.12e-07, + "slovenias": 1.12e-07, + "smiting": 1.12e-07, + "sml": 1.12e-07, + "smok": 1.12e-07, + "sneddon": 1.12e-07, + "snogging": 1.12e-07, + "sodastream": 1.12e-07, + "soleimani": 1.12e-07, + "soll": 1.12e-07, + "sommerville": 1.12e-07, + "sonias": 1.12e-07, + "soos": 9.55e-08, + "sourness": 1.12e-07, + "southwestward": 1.12e-07, + "spann": 1.12e-07, + "spectrophotometer": 1.12e-07, + "speculatively": 1.12e-07, + "spinsters": 1.12e-07, + "spiralled": 1.12e-07, + "sportier": 1.12e-07, + "sprache": 1.12e-07, + "sprue": 1.12e-07, + "sqlite": 1.12e-07, + "stabling": 1.12e-07, + "staceys": 1.12e-07, + "stakeout": 1.12e-07, + "starin": 1.12e-07, + "startles": 1.12e-07, + "stawell": 1.12e-07, + "steffens": 1.12e-07, + "stereochemistry": 1.12e-07, + "stereotactic": 1.12e-07, + "sternal": 1.12e-07, + "stigmatised": 1.12e-07, + "stra": 1.12e-07, + "stripling": 1.12e-07, + "subcortical": 1.12e-07, + "suborder": 1.12e-07, + "substantia": 1.12e-07, + "suburbanites": 1.12e-07, + "successions": 1.12e-07, + "sucralose": 1.12e-07, + "suddenness": 1.12e-07, + "summerland": 1.12e-07, + "sunbed": 1.12e-07, + "sunland": 1.12e-07, + "sunnies": 1.12e-07, + "sunnys": 1.12e-07, + "surv": 1.12e-07, + "surveilled": 1.12e-07, + "surveilling": 1.12e-07, + "suspiria": 1.12e-07, + "susumu": 1.12e-07, + "suzumiya": 1.12e-07, + "svengali": 1.12e-07, + "takano": 1.12e-07, + "talky": 1.12e-07, + "tallman": 1.12e-07, + "tanakas": 1.12e-07, + "tanuki": 1.12e-07, + "targum": 1.12e-07, + "tarly": 1.12e-07, + "tatoo": 1.12e-07, + "tef": 1.12e-07, + "tela": 1.12e-07, + "tenzing": 1.12e-07, + "terming": 1.12e-07, + "terrebonne": 1.12e-07, + "tez": 1.12e-07, + "tgp": 1.12e-07, + "thallus": 1.12e-07, + "thapar": 1.12e-07, + "theotokos": 1.12e-07, + "thoracotomy": 1.12e-07, + "tigh": 1.12e-07, + "timebomb": 1.12e-07, + "titers": 1.12e-07, + "tiwa": 1.12e-07, + "tlcs": 1.12e-07, + "tno": 1.12e-07, + "todorov": 1.12e-07, + "toodles": 1.12e-07, + "toontown": 1.12e-07, + "tpt": 1.12e-07, + "transcriber": 1.12e-07, + "trant": 1.12e-07, + "trello": 1.12e-07, + "trenching": 1.12e-07, + "trf": 1.12e-07, + "tricuspid": 1.12e-07, + "triviality": 1.12e-07, + "trustful": 1.12e-07, + "truther": 1.12e-07, + "trys": 5.62e-08, + "twitterverse": 1.12e-07, + "twrp": 1.12e-07, + "tynecastle": 1.12e-07, + "ubisofts": 1.12e-07, + "ulrika": 1.12e-07, + "unb": 1.12e-07, + "unclothed": 1.12e-07, + "unconquerable": 1.12e-07, + "underachievers": 1.12e-07, + "unexceptional": 1.12e-07, + "unfixed": 1.12e-07, + "universiti": 1.12e-07, + "unnie": 1.12e-07, + "unorganised": 1.12e-07, + "unprompted": 1.12e-07, + "unruh": 1.12e-07, + "unscramble": 1.12e-07, + "untying": 1.12e-07, + "upsilon": 1.12e-07, + "ussf": 1.12e-07, + "utena": 1.12e-07, + "utis": 1.12e-07, + "vacaville": 1.12e-07, + "valine": 1.12e-07, + "valorous": 1.12e-07, + "vds": 1.12e-07, + "veidt": 1.12e-07, + "veloso": 1.12e-07, + "veni": 1.12e-07, + "ventana": 1.12e-07, + "verifications": 1.12e-07, + "vibranium": 1.12e-07, + "victorino": 1.12e-07, + "videographers": 1.12e-07, + "vindictiveness": 1.12e-07, + "visualising": 1.12e-07, + "vixx": 1.12e-07, + "volcanics": 1.12e-07, + "vong": 1.12e-07, + "vot": 1.12e-07, + "vws": 1.12e-07, + "waititi": 1.12e-07, + "wallenstein": 1.12e-07, + "waseda": 1.12e-07, + "wate": 1.12e-07, + "webrtc": 1.12e-07, + "weetabix": 1.12e-07, + "wegman": 1.12e-07, + "wenlock": 1.12e-07, + "westford": 1.12e-07, + "whatta": 1.12e-07, + "wijnaldum": 1.12e-07, + "wilby": 1.12e-07, + "wined": 1.12e-07, + "wingback": 1.12e-07, + "wisley": 1.12e-07, + "witnesss": 1.12e-07, + "wolford": 1.12e-07, + "woll": 1.12e-07, + "workington": 1.12e-07, + "worktop": 1.12e-07, + "worming": 1.12e-07, + "wynyard": 1.12e-07, + "xls": 1.12e-07, + "yalu": 1.12e-07, + "yehudi": 1.12e-07, + "yersinia": 1.12e-07, + "yoshioka": 1.12e-07, + "yukawa": 1.12e-07, + "yuli": 1.12e-07, + "zabaleta": 1.12e-07, + "zacatecas": 1.12e-07, + "zaitsev": 1.12e-07, + "zajac": 1.12e-07, + "zend": 1.12e-07, + "zloty": 1.12e-07, + "zodiacal": 1.12e-07, + "zouk": 1.12e-07, + "zuo": 1.12e-07, + "aaaaa": 1.1e-07, + "aaahh": 1.1e-07, + "abdu": 1.1e-07, + "abf": 1.1e-07, + "abraxas": 1.1e-07, + "acq": 1.1e-07, + "actes": 1.1e-07, + "acuna": 1.1e-07, + "acyclovir": 1.1e-07, + "adar": 1.1e-07, + "adebayo": 1.1e-07, + "adjudicators": 1.1e-07, + "adra": 1.1e-07, + "adulteress": 1.1e-07, + "airstrips": 1.1e-07, + "akbari": 1.1e-07, + "akm": 1.1e-07, + "alabang": 1.1e-07, + "alcon": 1.1e-07, + "aldwych": 1.1e-07, + "alii": 1.1e-07, + "alkylation": 1.1e-07, + "almas": 9.12e-08, + "alyosha": 1.1e-07, + "amalgamations": 1.1e-07, + "amateurism": 1.1e-07, + "amazeballs": 1.1e-07, + "ambridge": 1.1e-07, + "ampoule": 1.1e-07, + "anatomists": 1.1e-07, + "anesthetist": 1.1e-07, + "angelis": 1.1e-07, + "anglin": 1.1e-07, + "anhalt": 1.1e-07, + "anscombe": 1.1e-07, + "ansley": 1.1e-07, + "anteaters": 1.1e-07, + "anticlimax": 1.1e-07, + "antiphon": 1.1e-07, + "antivirals": 1.1e-07, + "aoun": 1.1e-07, + "apgar": 1.1e-07, + "arbeit": 1.1e-07, + "arcgis": 1.1e-07, + "arish": 1.1e-07, + "arliss": 1.1e-07, + "armee": 1.1e-07, + "asiago": 1.1e-07, + "assem": 1.1e-07, + "astarte": 1.1e-07, + "astonishes": 1.1e-07, + "astrobiology": 1.1e-07, + "asya": 1.1e-07, + "athenas": 1.1e-07, + "atresia": 1.1e-07, + "augh": 1.1e-07, + "avaricious": 1.1e-07, + "averell": 1.1e-07, + "awal": 1.1e-07, + "awf": 1.1e-07, + "babatunde": 1.1e-07, + "babin": 1.1e-07, + "babri": 1.1e-07, + "backlink": 1.1e-07, + "baf": 1.1e-07, + "bagatelle": 1.1e-07, + "bairn": 1.1e-07, + "baldurs": 1.1e-07, + "baltasar": 1.1e-07, + "banbridge": 1.1e-07, + "bape": 1.1e-07, + "barometers": 1.1e-07, + "bartle": 1.1e-07, + "bassnectar": 1.1e-07, + "baster": 1.1e-07, + "battier": 1.1e-07, + "bayly": 1.1e-07, + "beatific": 1.1e-07, + "beaverbrook": 1.1e-07, + "becalmed": 1.1e-07, + "beda": 1.1e-07, + "beeching": 1.1e-07, + "beguile": 1.1e-07, + "beller": 1.1e-07, + "benbow": 1.1e-07, + "benedictus": 1.1e-07, + "bermudas": 1.1e-07, + "bernalillo": 1.1e-07, + "bertelsmann": 1.1e-07, + "berti": 1.1e-07, + "betjeman": 1.1e-07, + "bhajan": 1.1e-07, + "bhardwaj": 1.1e-07, + "bho": 1.1e-07, + "biatch": 1.1e-07, + "bilaspur": 1.1e-07, + "billerica": 1.1e-07, + "bilton": 1.1e-07, + "bima": 1.1e-07, + "biosystems": 1.1e-07, + "birthmarks": 1.1e-07, + "blancos": 1.1e-07, + "blankie": 1.1e-07, + "blucher": 1.1e-07, + "bogans": 1.1e-07, + "bogdanov": 1.1e-07, + "boingo": 1.1e-07, + "bombards": 1.1e-07, + "booboo": 1.1e-07, + "booke": 1.1e-07, + "bosniaks": 1.1e-07, + "bowerman": 1.1e-07, + "bowness": 1.1e-07, + "breadboard": 1.1e-07, + "brewin": 1.1e-07, + "bridgnorth": 1.1e-07, + "broaching": 1.1e-07, + "brogues": 1.1e-07, + "bronc": 1.1e-07, + "brundage": 1.1e-07, + "brunello": 1.1e-07, + "bsm": 1.1e-07, + "bulged": 1.1e-07, + "bulle": 1.1e-07, + "bupropion": 1.1e-07, + "burges": 1.1e-07, + "burnetts": 1.1e-07, + "burnish": 1.1e-07, + "burped": 1.1e-07, + "burried": 1.1e-07, + "butterball": 1.1e-07, + "buttering": 1.1e-07, + "bwv": 1.1e-07, + "bylsma": 1.1e-07, + "caddyshack": 1.1e-07, + "cagliostro": 1.1e-07, + "cahokia": 1.1e-07, + "caloundra": 1.1e-07, + "calvi": 1.1e-07, + "camomile": 1.1e-07, + "canapes": 1.1e-07, + "candyland": 1.1e-07, + "cantatas": 1.1e-07, + "cantt": 1.1e-07, + "cardassians": 1.1e-07, + "carloads": 1.1e-07, + "carm": 1.1e-07, + "carmi": 1.1e-07, + "carnitas": 1.1e-07, + "carryout": 1.1e-07, + "carvin": 1.1e-07, + "castellan": 1.1e-07, + "catalonian": 1.1e-07, + "catcalls": 1.1e-07, + "catena": 1.1e-07, + "cattaraugus": 1.1e-07, + "cauterize": 1.1e-07, + "cavil": 1.1e-07, + "cawdor": 1.1e-07, + "champagnes": 1.1e-07, + "chanter": 1.1e-07, + "chaperoned": 1.1e-07, + "chari": 1.1e-07, + "charis": 1.1e-07, + "charybdis": 1.1e-07, + "chatman": 1.1e-07, + "chaturvedi": 1.1e-07, + "chazelle": 1.1e-07, + "cheeseman": 1.1e-07, + "chernov": 1.1e-07, + "chicagoan": 1.1e-07, + "chicharito": 1.1e-07, + "chinamen": 1.1e-07, + "choa": 1.1e-07, + "chobani": 1.1e-07, + "chocobo": 1.1e-07, + "chorister": 1.1e-07, + "chumash": 1.1e-07, + "cienfuegos": 1.1e-07, + "cipriano": 1.1e-07, + "cita": 1.1e-07, + "citta": 1.1e-07, + "cked": 1.1e-07, + "clackmannanshire": 1.1e-07, + "claymores": 1.1e-07, + "cleavages": 1.1e-07, + "cobo": 1.1e-07, + "cointelpro": 1.1e-07, + "columbiana": 1.1e-07, + "colusa": 1.1e-07, + "combusted": 1.1e-07, + "comicon": 1.1e-07, + "commiting": 1.1e-07, + "comptes": 1.1e-07, + "concertmaster": 1.1e-07, + "concho": 1.1e-07, + "congee": 1.1e-07, + "containerized": 1.1e-07, + "contrastive": 1.1e-07, + "coren": 1.1e-07, + "cosas": 1.1e-07, + "cosatu": 1.1e-07, + "cosmologists": 1.1e-07, + "coss": 1.1e-07, + "counterexamples": 1.1e-07, + "courtauld": 1.1e-07, + "cracknell": 1.1e-07, + "crampons": 1.1e-07, + "creaked": 1.1e-07, + "creutzfeldt": 1.1e-07, + "crimestoppers": 1.1e-07, + "crippen": 1.1e-07, + "crofting": 1.1e-07, + "crothers": 1.1e-07, + "csos": 1.1e-07, + "curtius": 1.1e-07, + "curwen": 1.1e-07, + "cusa": 1.1e-07, + "cytomegalovirus": 1.1e-07, + "dagan": 1.1e-07, + "darent": 1.1e-07, + "darter": 1.1e-07, + "dashi": 1.1e-07, + "daunt": 1.1e-07, + "dawah": 1.1e-07, + "daylong": 1.1e-07, + "deano": 1.1e-07, + "debutants": 1.1e-07, + "degen": 1.1e-07, + "degradable": 1.1e-07, + "dejesus": 1.1e-07, + "demarcate": 1.1e-07, + "demonetization": 1.1e-07, + "demystifying": 1.1e-07, + "denarii": 1.1e-07, + "denholm": 1.1e-07, + "deok": 1.1e-07, + "depew": 1.1e-07, + "depuis": 1.1e-07, + "derna": 1.1e-07, + "derricks": 6.46e-08, + "descript": 1.1e-07, + "desiccant": 1.1e-07, + "despacito": 1.1e-07, + "dessau": 1.1e-07, + "dickies": 1.1e-07, + "digester": 1.1e-07, + "dillards": 1.1e-07, + "dimm": 1.1e-07, + "dinsdale": 1.1e-07, + "dipoles": 1.1e-07, + "disaggregated": 1.1e-07, + "discoverys": 1.1e-07, + "dishonorably": 1.1e-07, + "distil": 1.1e-07, + "distrusting": 1.1e-07, + "divs": 1.1e-07, + "diyala": 1.1e-07, + "dobell": 1.1e-07, + "doheny": 1.1e-07, + "dornoch": 1.1e-07, + "doron": 1.1e-07, + "doublespeak": 1.1e-07, + "downrange": 1.1e-07, + "downtowns": 9.55e-08, + "dph": 1.1e-07, + "draftkings": 1.1e-07, + "dragster": 1.1e-07, + "drainpipe": 1.1e-07, + "drivable": 1.1e-07, + "drogon": 1.1e-07, + "dubin": 1.1e-07, + "dudek": 1.1e-07, + "duell": 1.1e-07, + "dummett": 1.1e-07, + "durfee": 1.1e-07, + "dvs": 1.1e-07, + "dwain": 1.1e-07, + "eartha": 1.1e-07, + "eberhardt": 1.1e-07, + "eby": 1.1e-07, + "ecig": 1.1e-07, + "eelam": 1.1e-07, + "egger": 1.1e-07, + "eked": 1.1e-07, + "electroconvulsive": 1.1e-07, + "eley": 1.1e-07, + "eliasson": 1.1e-07, + "elodie": 1.1e-07, + "emerton": 1.1e-07, + "emmylou": 1.1e-07, + "enshrines": 1.1e-07, + "entendres": 1.1e-07, + "enteral": 1.1e-07, + "entrusts": 1.1e-07, + "eom": 1.1e-07, + "epitomize": 1.1e-07, + "epos": 1.1e-07, + "erdem": 1.1e-07, + "eriks": 1.1e-07, + "erl": 1.1e-07, + "ernakulam": 1.1e-07, + "erosive": 1.1e-07, + "estancia": 1.1e-07, + "esxi": 1.1e-07, + "ethnics": 1.1e-07, + "euc": 1.1e-07, + "eulogized": 1.1e-07, + "evanss": 1.1e-07, + "evensong": 1.1e-07, + "exacts": 1.1e-07, + "exalting": 1.1e-07, + "executables": 1.1e-07, + "existentially": 1.1e-07, + "extols": 1.1e-07, + "extraversion": 1.1e-07, + "ezine": 1.1e-07, + "faience": 1.1e-07, + "failover": 1.1e-07, + "fanged": 1.1e-07, + "farida": 1.1e-07, + "farman": 1.1e-07, + "fascistic": 1.1e-07, + "favorited": 1.1e-07, + "fearmongering": 1.1e-07, + "federici": 1.1e-07, + "fibs": 1.1e-07, + "fiefdoms": 1.1e-07, + "fionn": 1.1e-07, + "firestarter": 1.1e-07, + "fiume": 1.1e-07, + "flatlining": 1.1e-07, + "flatscreen": 1.1e-07, + "fmg": 1.1e-07, + "fmln": 1.1e-07, + "foon": 1.1e-07, + "forager": 1.1e-07, + "forsook": 1.1e-07, + "francona": 1.1e-07, + "frannie": 1.1e-07, + "freie": 1.1e-07, + "frenchmans": 1.1e-07, + "friedan": 1.1e-07, + "friggen": 1.1e-07, + "fuerteventura": 1.1e-07, + "fuzzies": 1.1e-07, + "fuzziness": 1.1e-07, + "fyne": 1.1e-07, + "galeria": 1.1e-07, + "galeries": 1.1e-07, + "gamely": 1.1e-07, + "garfinkel": 1.1e-07, + "garside": 1.1e-07, + "gaughan": 1.1e-07, + "gavrilo": 1.1e-07, + "gbagbo": 1.1e-07, + "gbf": 1.1e-07, + "geir": 1.1e-07, + "geoffroy": 1.1e-07, + "gera": 1.1e-07, + "gha": 1.1e-07, + "ghostwriters": 1.1e-07, + "giacometti": 1.1e-07, + "giffard": 1.1e-07, + "gloriana": 1.1e-07, + "gnss": 1.1e-07, + "gobind": 1.1e-07, + "golkar": 1.1e-07, + "gollancz": 1.1e-07, + "gonadal": 1.1e-07, + "gondii": 1.1e-07, + "graciela": 1.1e-07, + "graig": 1.1e-07, + "granados": 1.1e-07, + "gratiot": 1.1e-07, + "greengrocer": 1.1e-07, + "greenies": 1.1e-07, + "greenlands": 1.1e-07, + "greyfriars": 1.1e-07, + "grindcore": 1.1e-07, + "groce": 1.1e-07, + "guay": 1.1e-07, + "guida": 1.1e-07, + "guidry": 1.1e-07, + "guis": 1.1e-07, + "gurdy": 1.1e-07, + "gute": 1.1e-07, + "guyz": 1.1e-07, + "haaa": 1.1e-07, + "haakon": 1.1e-07, + "hachiman": 1.1e-07, + "hade": 1.1e-07, + "haematology": 1.1e-07, + "halden": 1.1e-07, + "hance": 1.1e-07, + "handpainted": 1.1e-07, + "hansford": 1.1e-07, + "hardier": 1.1e-07, + "hargitay": 1.1e-07, + "harmondsworth": 1.1e-07, + "hastens": 1.1e-07, + "hawkgirl": 1.1e-07, + "haws": 1.1e-07, + "hayate": 1.1e-07, + "hdds": 1.1e-07, + "heared": 1.1e-07, + "heatley": 1.1e-07, + "hedonist": 1.1e-07, + "heitkamp": 1.1e-07, + "hele": 1.1e-07, + "hellsing": 1.1e-07, + "hemolysis": 1.1e-07, + "henhouse": 1.1e-07, + "hepatocyte": 1.1e-07, + "hicksville": 1.1e-07, + "hilarys": 1.1e-07, + "hipp": 1.1e-07, + "hirata": 1.1e-07, + "hitless": 1.1e-07, + "hoek": 1.1e-07, + "hofman": 1.1e-07, + "hokusai": 1.1e-07, + "holladay": 1.1e-07, + "homi": 1.1e-07, + "hookworm": 1.1e-07, + "hotham": 1.1e-07, + "hoyas": 1.1e-07, + "hre": 1.1e-07, + "hsus": 1.1e-07, + "humm": 1.1e-07, + "huon": 1.1e-07, + "huracan": 1.1e-07, + "hurtle": 1.1e-07, + "husqvarna": 1.1e-07, + "hutto": 1.1e-07, + "hyperventilate": 1.1e-07, + "hypothermic": 1.1e-07, + "ibrahims": 1.1e-07, + "icona": 1.1e-07, + "idriss": 1.1e-07, + "igloos": 1.1e-07, + "ihn": 1.1e-07, + "ikeas": 1.1e-07, + "impels": 1.1e-07, + "impr": 1.1e-07, + "inchon": 1.1e-07, + "inco": 1.1e-07, + "inconveniencing": 1.1e-07, + "incremented": 1.1e-07, + "individuation": 1.1e-07, + "infielders": 1.1e-07, + "infuriatingly": 1.1e-07, + "insolation": 1.1e-07, + "interlace": 1.1e-07, + "internationales": 1.1e-07, + "interrelationship": 1.1e-07, + "invertible": 1.1e-07, + "invisibles": 1.1e-07, + "ipi": 1.1e-07, + "iqaluit": 1.1e-07, + "irby": 1.1e-07, + "isac": 1.1e-07, + "isan": 1.1e-07, + "isengard": 1.1e-07, + "ishiguro": 1.1e-07, + "jaffrey": 1.1e-07, + "jeepney": 1.1e-07, + "jeronimo": 1.1e-07, + "jigging": 1.1e-07, + "jizya": 1.1e-07, + "jnu": 1.1e-07, + "jrr": 1.1e-07, + "juliano": 1.1e-07, + "julieta": 1.1e-07, + "kaftan": 1.1e-07, + "kalani": 1.1e-07, + "kalanick": 1.1e-07, + "kalina": 1.1e-07, + "kamini": 1.1e-07, + "kanaka": 1.1e-07, + "kanban": 1.1e-07, + "kanya": 1.1e-07, + "karnes": 1.1e-07, + "karon": 1.1e-07, + "kasuga": 1.1e-07, + "katzs": 1.1e-07, + "kazuki": 1.1e-07, + "keatings": 1.1e-07, + "keio": 1.1e-07, + "keneally": 1.1e-07, + "khas": 1.1e-07, + "kibosh": 1.1e-07, + "kida": 1.1e-07, + "kikis": 1.1e-07, + "killington": 1.1e-07, + "kiswahili": 1.1e-07, + "kitto": 1.1e-07, + "kluge": 1.1e-07, + "knowsley": 1.1e-07, + "knudson": 1.1e-07, + "koblenz": 1.1e-07, + "kordofan": 1.1e-07, + "korner": 1.1e-07, + "kpn": 1.1e-07, + "krasner": 1.1e-07, + "kull": 1.1e-07, + "kyl": 1.1e-07, + "lactam": 1.1e-07, + "ladyboys": 1.1e-07, + "lampshades": 1.1e-07, + "landrys": 1.1e-07, + "languidly": 1.1e-07, + "lansley": 1.1e-07, + "laois": 1.1e-07, + "laparotomy": 1.1e-07, + "lapidary": 1.1e-07, + "lapidus": 1.1e-07, + "lathered": 1.1e-07, + "laurance": 1.1e-07, + "lazo": 1.1e-07, + "lbl": 1.1e-07, + "lbo": 1.1e-07, + "lck": 1.1e-07, + "leavening": 1.1e-07, + "lege": 1.1e-07, + "legionary": 1.1e-07, + "legitimation": 1.1e-07, + "leitmotif": 1.1e-07, + "lemaitre": 1.1e-07, + "lemos": 1.1e-07, + "lenape": 1.1e-07, + "letta": 1.1e-07, + "lewistown": 1.1e-07, + "limpid": 1.1e-07, + "lipopolysaccharide": 1.1e-07, + "liposomes": 1.1e-07, + "lithology": 1.1e-07, + "liye": 1.1e-07, + "llosa": 1.1e-07, + "lohans": 1.1e-07, + "lookups": 1.1e-07, + "loreal": 1.1e-07, + "louvers": 1.1e-07, + "lowcountry": 1.1e-07, + "lowy": 1.1e-07, + "lucario": 1.1e-07, + "lunsford": 1.1e-07, + "lve": 1.1e-07, + "lynd": 1.1e-07, + "lytic": 1.1e-07, + "maccas": 1.1e-07, + "macdiarmid": 1.1e-07, + "machineguns": 1.1e-07, + "maci": 1.1e-07, + "madani": 1.1e-07, + "maddock": 1.1e-07, + "maestros": 5.37e-08, + "maho": 1.1e-07, + "makeups": 1.1e-07, + "malevich": 1.1e-07, + "malheur": 1.1e-07, + "malky": 1.1e-07, + "malle": 1.1e-07, + "mandelbrot": 1.1e-07, + "mantegna": 1.1e-07, + "manuels": 1.1e-07, + "maplestory": 1.1e-07, + "mapleton": 1.1e-07, + "marcum": 1.1e-07, + "maroni": 1.1e-07, + "marshlands": 1.1e-07, + "maskell": 1.1e-07, + "masterminding": 1.1e-07, + "matins": 1.1e-07, + "matthiessen": 1.1e-07, + "mccanns": 6.92e-08, + "mccausland": 1.1e-07, + "meadowbank": 1.1e-07, + "medicals": 1.1e-07, + "megachurch": 1.1e-07, + "meiers": 1.1e-07, + "meli": 1.1e-07, + "memon": 1.1e-07, + "ments": 1.1e-07, + "mesoscale": 1.1e-07, + "metin": 1.1e-07, + "meza": 1.1e-07, + "micheles": 1.1e-07, + "michu": 1.1e-07, + "mico": 1.1e-07, + "microbeads": 1.1e-07, + "microblogging": 1.1e-07, + "middlebrook": 1.1e-07, + "middlemarch": 1.1e-07, + "midvale": 1.1e-07, + "miletus": 1.1e-07, + "milord": 1.1e-07, + "mineshaft": 1.1e-07, + "minya": 1.1e-07, + "miquelon": 1.1e-07, + "misconstrue": 1.1e-07, + "mitzvahs": 1.1e-07, + "mizzen": 1.1e-07, + "mollify": 1.1e-07, + "monadnock": 1.1e-07, + "monohydrate": 1.1e-07, + "monophosphate": 1.1e-07, + "monteverde": 1.1e-07, + "morrowind": 1.1e-07, + "motha": 1.1e-07, + "mulaney": 1.1e-07, + "multimode": 1.1e-07, + "mutualism": 1.1e-07, + "myocarditis": 1.1e-07, + "nams": 1.1e-07, + "namespaces": 1.1e-07, + "namm": 1.1e-07, + "nardo": 1.1e-07, + "natashas": 1.1e-07, + "nationalise": 1.1e-07, + "nautica": 1.1e-07, + "needa": 1.1e-07, + "neeley": 1.1e-07, + "neuilly": 1.1e-07, + "neuroanatomy": 1.1e-07, + "neurophysiological": 1.1e-07, + "neuroprotective": 1.1e-07, + "newey": 1.1e-07, + "newfield": 1.1e-07, + "newnan": 1.1e-07, + "newports": 1.1e-07, + "newsline": 1.1e-07, + "neyland": 1.1e-07, + "ngr": 1.1e-07, + "nige": 1.1e-07, + "niggle": 1.1e-07, + "nobs": 1.1e-07, + "nobuo": 1.1e-07, + "northville": 1.1e-07, + "novotny": 1.1e-07, + "npb": 1.1e-07, + "nrsv": 1.1e-07, + "nueces": 1.1e-07, + "nuka": 1.1e-07, + "nunchucks": 1.1e-07, + "nyanza": 1.1e-07, + "obyrne": 1.1e-07, + "ocarroll": 1.1e-07, + "oblongata": 1.1e-07, + "obstinately": 1.1e-07, + "ocher": 1.1e-07, + "oit": 1.1e-07, + "ojibwe": 1.1e-07, + "okun": 1.1e-07, + "olenna": 1.1e-07, + "oll": 1.1e-07, + "olla": 1.1e-07, + "olympique": 1.1e-07, + "omans": 1.1e-07, + "oooooo": 1.1e-07, + "oos": 1.1e-07, + "optoelectronics": 1.1e-07, + "optometric": 1.1e-07, + "orientalis": 1.1e-07, + "ornately": 1.1e-07, + "oscillated": 1.1e-07, + "osteogenesis": 1.1e-07, + "ostrava": 1.1e-07, + "otw": 1.1e-07, + "oun": 1.1e-07, + "outmaneuvered": 1.1e-07, + "ouya": 1.1e-07, + "oversell": 1.1e-07, + "oxidised": 1.1e-07, + "paavo": 1.1e-07, + "pacifico": 1.1e-07, + "packwood": 1.1e-07, + "panicles": 1.1e-07, + "panjabi": 1.1e-07, + "parachutists": 1.1e-07, + "parekh": 1.1e-07, + "parmenides": 1.1e-07, + "partakes": 1.1e-07, + "pasir": 1.1e-07, + "passy": 1.1e-07, + "patinkin": 1.1e-07, + "pawning": 1.1e-07, + "pdvsa": 1.1e-07, + "peder": 1.1e-07, + "pemberley": 1.1e-07, + "perforce": 1.1e-07, + "peroxidation": 1.1e-07, + "petersham": 1.1e-07, + "pettersen": 1.1e-07, + "pfm": 1.1e-07, + "pharmacotherapy": 1.1e-07, + "phillipsburg": 1.1e-07, + "phos": 1.1e-07, + "photobooth": 1.1e-07, + "photographically": 1.1e-07, + "phyla": 1.1e-07, + "picardy": 1.1e-07, + "pierogi": 1.1e-07, + "piketty": 1.1e-07, + "pined": 1.1e-07, + "plac": 1.1e-07, + "placentia": 1.1e-07, + "plasminogen": 1.1e-07, + "pli": 1.1e-07, + "pokestops": 1.1e-07, + "polamalu": 1.1e-07, + "polyphemus": 1.1e-07, + "pomposity": 1.1e-07, + "ponyville": 1.1e-07, + "poulenc": 1.1e-07, + "powerlifter": 1.1e-07, + "poy": 1.1e-07, + "predawn": 1.1e-07, + "preordering": 1.1e-07, + "preplanned": 1.1e-07, + "prewitt": 1.1e-07, + "printemps": 1.1e-07, + "privations": 1.1e-07, + "programmatically": 1.1e-07, + "pruritus": 1.1e-07, + "psychoanalytical": 1.1e-07, + "pullers": 1.1e-07, + "pulliam": 1.1e-07, + "puter": 1.1e-07, + "putman": 1.1e-07, + "putrefaction": 1.1e-07, + "qatif": 1.1e-07, + "qazi": 1.1e-07, + "quis": 1.1e-07, + "quotients": 1.1e-07, + "rackspace": 1.1e-07, + "randomizer": 1.1e-07, + "rango": 1.1e-07, + "rasch": 1.1e-07, + "raskolnikov": 1.1e-07, + "rationalised": 1.1e-07, + "ratko": 1.1e-07, + "rausch": 1.1e-07, + "rauschenberg": 1.1e-07, + "raynes": 1.1e-07, + "rdi": 1.1e-07, + "reacquired": 1.1e-07, + "reale": 1.1e-07, + "reas": 1.1e-07, + "reciprocally": 1.1e-07, + "reconnects": 1.1e-07, + "recuperated": 1.1e-07, + "redruth": 1.1e-07, + "regularized": 1.1e-07, + "rehearses": 1.1e-07, + "reillys": 1.1e-07, + "relinquishes": 1.1e-07, + "rember": 1.1e-07, + "rensburg": 1.1e-07, + "reshoots": 1.1e-07, + "retch": 1.1e-07, + "rete": 1.1e-07, + "retellings": 1.1e-07, + "revenged": 1.1e-07, + "rheingold": 1.1e-07, + "rheinmetall": 1.1e-07, + "ridgely": 1.1e-07, + "ritesh": 1.1e-07, + "ritsu": 1.1e-07, + "roache": 1.1e-07, + "rochefoucauld": 1.1e-07, + "rockwells": 1.1e-07, + "roseman": 1.1e-07, + "rouleau": 1.1e-07, + "rubick": 1.1e-07, + "rueda": 1.1e-07, + "ruel": 1.1e-07, + "rufc": 1.1e-07, + "ruggiero": 1.1e-07, + "rumpelstiltskin": 1.1e-07, + "rutted": 1.1e-07, + "saccharin": 1.1e-07, + "sadden": 1.1e-07, + "sadducees": 1.1e-07, + "saguenay": 1.1e-07, + "saker": 1.1e-07, + "sals": 1.1e-07, + "salafis": 1.1e-07, + "sallah": 1.1e-07, + "sambora": 1.1e-07, + "sambuca": 1.1e-07, + "sanga": 1.1e-07, + "sarcomas": 1.1e-07, + "sarma": 1.1e-07, + "sasser": 1.1e-07, + "saturates": 1.1e-07, + "savoured": 1.1e-07, + "sawada": 1.1e-07, + "scalper": 1.1e-07, + "scamander": 1.1e-07, + "scapa": 1.1e-07, + "scarletts": 1.1e-07, + "scb": 1.1e-07, + "schauer": 1.1e-07, + "schering": 1.1e-07, + "schermerhorn": 1.1e-07, + "schoolhouses": 1.1e-07, + "schriften": 1.1e-07, + "sclera": 1.1e-07, + "scratchers": 1.1e-07, + "scribal": 1.1e-07, + "scuffs": 1.1e-07, + "scullion": 1.1e-07, + "seabiscuit": 1.1e-07, + "seafoods": 1.1e-07, + "secker": 1.1e-07, + "secours": 1.1e-07, + "secunderabad": 1.1e-07, + "seemly": 1.1e-07, + "seiner": 1.1e-07, + "sellafield": 1.1e-07, + "selman": 1.1e-07, + "sequestering": 1.1e-07, + "seroquel": 1.1e-07, + "serrations": 1.1e-07, + "serval": 1.1e-07, + "servlet": 1.1e-07, + "setlists": 1.1e-07, + "sexologist": 1.1e-07, + "shadowlands": 1.1e-07, + "shakir": 1.1e-07, + "shama": 1.1e-07, + "shannen": 1.1e-07, + "shapps": 1.1e-07, + "sharers": 1.1e-07, + "sharron": 1.1e-07, + "shashank": 1.1e-07, + "shays": 7.24e-08, + "sheepshead": 1.1e-07, + "shinya": 1.1e-07, + "shippensburg": 1.1e-07, + "shirai": 1.1e-07, + "shish": 1.1e-07, + "sholom": 1.1e-07, + "sidious": 1.1e-07, + "sifu": 1.1e-07, + "siggraph": 1.1e-07, + "sigmoid": 1.1e-07, + "signboard": 1.1e-07, + "sjs": 1.1e-07, + "skipjack": 1.1e-07, + "slaine": 1.1e-07, + "slaty": 1.1e-07, + "slinking": 1.1e-07, + "slouched": 1.1e-07, + "smale": 1.1e-07, + "smbs": 1.1e-07, + "smet": 1.1e-07, + "smooching": 1.1e-07, + "soane": 1.1e-07, + "sobolev": 1.1e-07, + "sotu": 1.1e-07, + "spacesuits": 1.1e-07, + "spassky": 1.1e-07, + "specters": 1.1e-07, + "spiciness": 1.1e-07, + "spiderweb": 1.1e-07, + "splanchnic": 1.1e-07, + "spoleto": 1.1e-07, + "squee": 1.1e-07, + "staar": 1.1e-07, + "stackoverflow": 1.1e-07, + "stalagmites": 1.1e-07, + "stanky": 1.1e-07, + "stanning": 1.1e-07, + "stap": 1.1e-07, + "starker": 1.1e-07, + "stata": 1.1e-07, + "stiffs": 1.1e-07, + "stoat": 1.1e-07, + "stobart": 1.1e-07, + "stockhausen": 1.1e-07, + "stonemasons": 1.1e-07, + "stoppin": 1.1e-07, + "strassburg": 1.1e-07, + "stringently": 1.1e-07, + "strother": 1.1e-07, + "stw": 1.1e-07, + "stygian": 1.1e-07, + "submergence": 1.1e-07, + "subpart": 1.1e-07, + "subpopulation": 1.1e-07, + "subregions": 1.1e-07, + "suffragists": 1.1e-07, + "summarization": 1.1e-07, + "sumptuously": 1.1e-07, + "sunoco": 1.1e-07, + "sunroom": 1.1e-07, + "supe": 1.1e-07, + "sutil": 1.1e-07, + "sutured": 1.1e-07, + "svein": 1.1e-07, + "swanage": 1.1e-07, + "swellings": 1.1e-07, + "swiftest": 1.1e-07, + "switchs": 1.1e-07, + "swtor": 1.1e-07, + "syphon": 1.1e-07, + "syro": 1.1e-07, + "sysco": 1.1e-07, + "taal": 1.1e-07, + "tabulating": 1.1e-07, + "tainan": 1.1e-07, + "takuya": 1.1e-07, + "tamina": 1.1e-07, + "tamping": 1.1e-07, + "tawhid": 1.1e-07, + "tengah": 1.1e-07, + "thaad": 1.1e-07, + "thomaston": 1.1e-07, + "throu": 1.1e-07, + "thyroxine": 1.1e-07, + "tinley": 1.1e-07, + "tisa": 1.1e-07, + "tlingit": 1.1e-07, + "tmb": 1.1e-07, + "tme": 1.1e-07, + "tolerably": 1.1e-07, + "torta": 1.1e-07, + "townsite": 1.1e-07, + "toye": 1.1e-07, + "toymaker": 1.1e-07, + "tpl": 1.1e-07, + "traineeship": 1.1e-07, + "travaux": 1.1e-07, + "trestman": 1.1e-07, + "trilobite": 1.1e-07, + "trioxide": 1.1e-07, + "tripos": 1.1e-07, + "trong": 1.1e-07, + "tropico": 1.1e-07, + "tropospheric": 1.1e-07, + "tryed": 1.1e-07, + "tsavo": 1.1e-07, + "tsim": 1.1e-07, + "tumorigenesis": 1.1e-07, + "tuppence": 1.1e-07, + "twizzlers": 1.1e-07, + "uinta": 1.1e-07, + "ulaanbaatar": 1.1e-07, + "ulises": 1.1e-07, + "uly": 1.1e-07, + "umlaut": 1.1e-07, + "unappreciative": 1.1e-07, + "unconverted": 1.1e-07, + "uncorked": 1.1e-07, + "uncorrupted": 1.1e-07, + "undecideds": 1.1e-07, + "undergarment": 1.1e-07, + "unexposed": 1.1e-07, + "ungrounded": 1.1e-07, + "unicredit": 1.1e-07, + "unready": 1.1e-07, + "unsurprised": 1.1e-07, + "unweighted": 1.1e-07, + "upliftment": 1.1e-07, + "uveitis": 1.1e-07, + "valentinian": 1.1e-07, + "vanquishing": 1.1e-07, + "vasodilation": 1.1e-07, + "vaughns": 1.1e-07, + "vermiculite": 1.1e-07, + "vian": 1.1e-07, + "viburnum": 1.1e-07, + "vidalia": 1.1e-07, + "virg": 1.1e-07, + "viridian": 1.1e-07, + "vlans": 1.1e-07, + "vnc": 1.1e-07, + "voluble": 1.1e-07, + "vta": 1.1e-07, + "wallonia": 1.1e-07, + "walser": 1.1e-07, + "warby": 1.1e-07, + "watermarking": 1.1e-07, + "watership": 1.1e-07, + "waza": 1.1e-07, + "wcvb": 1.1e-07, + "weale": 1.1e-07, + "webseries": 1.1e-07, + "webstore": 1.1e-07, + "wees": 9.55e-08, + "westons": 1.1e-07, + "whir": 1.1e-07, + "wideout": 1.1e-07, + "wilbraham": 1.1e-07, + "windowpane": 1.1e-07, + "wisner": 1.1e-07, + "wodonga": 1.1e-07, + "workfare": 1.1e-07, + "workhouses": 1.1e-07, + "worldliness": 1.1e-07, + "wud": 1.1e-07, + "xenos": 1.1e-07, + "yakovlev": 1.1e-07, + "yammer": 1.1e-07, + "yashin": 1.1e-07, + "yawl": 1.1e-07, + "yekaterina": 1.1e-07, + "yelped": 1.1e-07, + "yis": 8.32e-08, + "yiff": 1.1e-07, + "yilmaz": 1.1e-07, + "ymir": 1.1e-07, + "yooo": 1.1e-07, + "zadar": 1.1e-07, + "zarina": 1.1e-07, + "zazzle": 1.1e-07, + "zemeckis": 1.1e-07, + "zfs": 1.1e-07, + "zhuhai": 1.1e-07, + "ziggurat": 1.1e-07, + "zombieland": 1.1e-07, + "zuck": 1.1e-07, + "zvezda": 1.1e-07, + "aand": 1.07e-07, + "abbr": 1.07e-07, + "abodes": 1.07e-07, + "abolitionism": 1.07e-07, + "abruzzi": 1.07e-07, + "acacias": 1.07e-07, + "ackman": 1.07e-07, + "acma": 1.07e-07, + "acto": 1.07e-07, + "acupressure": 1.07e-07, + "admixtures": 1.07e-07, + "afra": 1.07e-07, + "agreeableness": 1.07e-07, + "ahed": 1.07e-07, + "ahmar": 1.07e-07, + "aiaa": 1.07e-07, + "aiba": 1.07e-07, + "ajanta": 1.07e-07, + "alderweireld": 1.07e-07, + "allam": 1.07e-07, + "alloying": 1.07e-07, + "almora": 1.07e-07, + "alpa": 1.07e-07, + "alphabetized": 1.07e-07, + "alsina": 1.07e-07, + "altria": 1.07e-07, + "alvord": 1.07e-07, + "ambitiously": 1.07e-07, + "amendatory": 1.07e-07, + "amyl": 1.07e-07, + "anant": 1.07e-07, + "anca": 1.07e-07, + "andujar": 1.07e-07, + "anelka": 1.07e-07, + "anglaise": 1.07e-07, + "angra": 1.07e-07, + "ankeny": 1.07e-07, + "anthropometric": 1.07e-07, + "anthropomorphism": 1.07e-07, + "antisemite": 1.07e-07, + "anto": 1.07e-07, + "antonyms": 1.07e-07, + "appetising": 1.07e-07, + "applets": 1.07e-07, + "apx": 1.07e-07, + "araby": 1.07e-07, + "aragonite": 1.07e-07, + "armbruster": 1.07e-07, + "armen": 1.07e-07, + "armisen": 1.07e-07, + "arredondo": 1.07e-07, + "artbook": 1.07e-07, + "atlantics": 1.07e-07, + "atthe": 1.07e-07, + "aucoin": 1.07e-07, + "audiologist": 1.07e-07, + "aun": 1.07e-07, + "auteurs": 1.07e-07, + "avesta": 1.07e-07, + "awaking": 1.07e-07, + "ayana": 1.07e-07, + "ayumi": 1.07e-07, + "azithromycin": 1.07e-07, + "backstab": 1.07e-07, + "badgley": 1.07e-07, + "bagnall": 1.07e-07, + "balaban": 1.07e-07, + "bancshares": 1.07e-07, + "barcroft": 1.07e-07, + "barings": 1.07e-07, + "barthel": 1.07e-07, + "basa": 1.07e-07, + "basketry": 1.07e-07, + "bassi": 1.07e-07, + "batesville": 1.07e-07, + "bathymetric": 1.07e-07, + "battens": 1.07e-07, + "battersby": 1.07e-07, + "baumgarten": 1.07e-07, + "bdg": 1.07e-07, + "bdi": 1.07e-07, + "beaman": 1.07e-07, + "beaus": 5.37e-08, + "beheads": 1.07e-07, + "belin": 1.07e-07, + "belisarius": 1.07e-07, + "bellerive": 1.07e-07, + "bencher": 1.07e-07, + "benoni": 1.07e-07, + "berms": 1.07e-07, + "beslan": 1.07e-07, + "bgr": 1.07e-07, + "bhabha": 1.07e-07, + "biggin": 1.07e-07, + "bilious": 1.07e-07, + "blackguard": 1.07e-07, + "blazin": 1.07e-07, + "bleek": 1.07e-07, + "bleeps": 1.07e-07, + "bloodier": 1.07e-07, + "blunting": 1.07e-07, + "blusher": 1.07e-07, + "boatloads": 1.07e-07, + "boies": 1.07e-07, + "boileau": 1.07e-07, + "bondo": 1.07e-07, + "bonhams": 1.07e-07, + "bonheur": 1.07e-07, + "bookbinder": 1.07e-07, + "bosse": 1.07e-07, + "bov": 1.07e-07, + "bove": 1.07e-07, + "bowmen": 1.07e-07, + "braddon": 1.07e-07, + "brillant": 1.07e-07, + "brogdon": 1.07e-07, + "buber": 1.07e-07, + "buccleuch": 1.07e-07, + "buchanans": 1.07e-07, + "buka": 1.07e-07, + "bunter": 1.07e-07, + "burkas": 1.07e-07, + "busboy": 1.07e-07, + "bushcraft": 1.07e-07, + "byfuglien": 1.07e-07, + "cadena": 1.07e-07, + "caduceus": 1.07e-07, + "caenorhabditis": 1.07e-07, + "calatrava": 1.07e-07, + "calles": 1.07e-07, + "campagna": 1.07e-07, + "camperdown": 1.07e-07, + "capstan": 1.07e-07, + "caras": 8.71e-08, + "carboxy": 1.07e-07, + "caretaking": 1.07e-07, + "carousels": 1.07e-07, + "casemiro": 1.07e-07, + "casse": 1.07e-07, + "cathodes": 1.07e-07, + "censer": 1.07e-07, + "cesspit": 1.07e-07, + "chachi": 1.07e-07, + "charpentier": 1.07e-07, + "chartwell": 1.07e-07, + "cheapened": 1.07e-07, + "cheetham": 1.07e-07, + "chers": 1.07e-07, + "chessington": 1.07e-07, + "chiro": 1.07e-07, + "chisora": 1.07e-07, + "chos": 6.61e-08, + "christin": 1.07e-07, + "chulalongkorn": 1.07e-07, + "cichlids": 1.07e-07, + "cinemark": 1.07e-07, + "ciphertext": 1.07e-07, + "classing": 1.07e-07, + "clevedon": 1.07e-07, + "clotilde": 1.07e-07, + "clubbers": 1.07e-07, + "clutterbuck": 1.07e-07, + "coagulant": 1.07e-07, + "cobblepot": 1.07e-07, + "coliform": 1.07e-07, + "collinss": 1.07e-07, + "comitatus": 1.07e-07, + "commodified": 1.07e-07, + "communitarian": 1.07e-07, + "conker": 1.07e-07, + "conolly": 1.07e-07, + "consumptive": 1.07e-07, + "contort": 1.07e-07, + "conveyer": 1.07e-07, + "cooed": 1.07e-07, + "copps": 1.07e-07, + "coquettish": 1.07e-07, + "corder": 1.07e-07, + "cordite": 1.07e-07, + "countdowns": 1.07e-07, + "cpn": 1.07e-07, + "cpv": 1.07e-07, + "crackerjack": 1.07e-07, + "crawfordsville": 1.07e-07, + "cremations": 1.07e-07, + "crewmates": 1.07e-07, + "criminalisation": 1.07e-07, + "crookston": 1.07e-07, + "crts": 1.07e-07, + "csun": 1.07e-07, + "cun": 1.07e-07, + "cyphers": 1.07e-07, + "cytogenetic": 1.07e-07, + "cytoskeletal": 1.07e-07, + "dabbles": 1.07e-07, + "darkling": 1.07e-07, + "dassey": 1.07e-07, + "dbh": 1.07e-07, + "deafened": 1.07e-07, + "decile": 1.07e-07, + "deeney": 1.07e-07, + "deforested": 1.07e-07, + "delgada": 1.07e-07, + "delmarva": 1.07e-07, + "demis": 5.01e-08, + "demogorgon": 1.07e-07, + "denaturation": 1.07e-07, + "deputys": 1.07e-07, + "derpy": 1.07e-07, + "detoured": 1.07e-07, + "devourer": 1.07e-07, + "dgp": 1.07e-07, + "dharamsala": 1.07e-07, + "dialogic": 1.07e-07, + "diarmuid": 1.07e-07, + "diese": 1.07e-07, + "disconcerted": 1.07e-07, + "diskette": 1.07e-07, + "dismounting": 1.07e-07, + "ditties": 1.07e-07, + "dncs": 1.07e-07, + "dobbie": 1.07e-07, + "doce": 1.07e-07, + "doctorow": 1.07e-07, + "dollywood": 1.07e-07, + "domhnall": 1.07e-07, + "donnies": 1.07e-07, + "doorframe": 1.07e-07, + "dotes": 1.07e-07, + "doubler": 1.07e-07, + "doujinshi": 1.07e-07, + "dowries": 1.07e-07, + "dpg": 1.07e-07, + "draupadi": 1.07e-07, + "dredger": 1.07e-07, + "drennan": 1.07e-07, + "droitwich": 1.07e-07, + "dropoff": 1.07e-07, + "drp": 1.07e-07, + "druggies": 1.07e-07, + "dse": 1.07e-07, + "dubose": 1.07e-07, + "dunkeld": 1.07e-07, + "dunkley": 1.07e-07, + "dursley": 1.07e-07, + "earthing": 1.07e-07, + "ecstatically": 1.07e-07, + "ecto": 1.07e-07, + "edgecombe": 1.07e-07, + "edgefield": 1.07e-07, + "egor": 1.07e-07, + "egyptologist": 1.07e-07, + "ehrenreich": 1.07e-07, + "elapse": 1.07e-07, + "eliade": 1.07e-07, + "elizas": 1.07e-07, + "ellipsoidal": 1.07e-07, + "emelia": 1.07e-07, + "endive": 1.07e-07, + "englishness": 1.07e-07, + "enna": 1.07e-07, + "entranceway": 1.07e-07, + "erf": 1.07e-07, + "escalations": 1.07e-07, + "espnu": 1.07e-07, + "essentialist": 1.07e-07, + "evisceration": 1.07e-07, + "extention": 1.07e-07, + "extinguishment": 1.07e-07, + "eyeless": 1.07e-07, + "eyelets": 1.07e-07, + "faery": 1.07e-07, + "faired": 1.07e-07, + "faller": 1.07e-07, + "familie": 1.07e-07, + "farro": 1.07e-07, + "feh": 1.07e-07, + "feminisms": 5.13e-08, + "fennec": 1.07e-07, + "ferrys": 1.07e-07, + "ffmpeg": 1.07e-07, + "fgo": 1.07e-07, + "fibrotic": 1.07e-07, + "fiendishly": 1.07e-07, + "filson": 1.07e-07, + "finessed": 1.07e-07, + "finials": 1.07e-07, + "fishies": 1.07e-07, + "fixations": 1.07e-07, + "flamin": 1.07e-07, + "flatlined": 1.07e-07, + "flaying": 1.07e-07, + "fleek": 1.07e-07, + "flocka": 1.07e-07, + "floorplan": 1.07e-07, + "fluence": 1.07e-07, + "fluorescein": 1.07e-07, + "flywheels": 1.07e-07, + "foer": 1.07e-07, + "fogerty": 1.07e-07, + "foltz": 1.07e-07, + "fome": 1.07e-07, + "foretelling": 1.07e-07, + "forewarning": 1.07e-07, + "fortnum": 1.07e-07, + "forwarders": 1.07e-07, + "foxwoods": 1.07e-07, + "frae": 1.07e-07, + "franchitti": 1.07e-07, + "frater": 1.07e-07, + "friedberg": 1.07e-07, + "friended": 1.07e-07, + "fring": 1.07e-07, + "frisbees": 1.07e-07, + "frisby": 1.07e-07, + "friuli": 1.07e-07, + "fruitfulness": 1.07e-07, + "fui": 1.07e-07, + "fulness": 1.07e-07, + "furukawa": 1.07e-07, + "galante": 1.07e-07, + "galba": 1.07e-07, + "galea": 1.07e-07, + "gali": 1.07e-07, + "gallas": 1.07e-07, + "gamechanger": 1.07e-07, + "gamefaqs": 1.07e-07, + "gamelan": 1.07e-07, + "gandolfini": 1.07e-07, + "gaped": 1.07e-07, + "garand": 1.07e-07, + "gargantua": 1.07e-07, + "garn": 1.07e-07, + "gars": 1.07e-07, + "garton": 1.07e-07, + "gayporn": 1.07e-07, + "gazan": 1.07e-07, + "gcf": 1.07e-07, + "gein": 1.07e-07, + "gentamicin": 1.07e-07, + "gerund": 1.07e-07, + "gest": 1.07e-07, + "gesta": 1.07e-07, + "gestion": 1.07e-07, + "ghrelin": 1.07e-07, + "gibbering": 1.07e-07, + "gillam": 1.07e-07, + "glamourous": 1.07e-07, + "glan": 1.07e-07, + "globalizing": 1.07e-07, + "gme": 1.07e-07, + "gnash": 1.07e-07, + "goauld": 1.07e-07, + "golub": 1.07e-07, + "grasmere": 1.07e-07, + "grottoes": 1.07e-07, + "guillotined": 1.07e-07, + "guinan": 1.07e-07, + "guthries": 1.07e-07, + "gwang": 1.07e-07, + "gwu": 1.07e-07, + "gyp": 1.07e-07, + "habakkuk": 1.07e-07, + "habla": 1.07e-07, + "habra": 1.07e-07, + "hajar": 1.07e-07, + "halligan": 1.07e-07, + "hallock": 1.07e-07, + "handhelds": 1.07e-07, + "hansom": 1.07e-07, + "hardscrabble": 1.07e-07, + "harter": 1.07e-07, + "haveing": 1.07e-07, + "headbutted": 1.07e-07, + "heartbreakingly": 1.07e-07, + "heigh": 1.07e-07, + "heiner": 1.07e-07, + "herstory": 1.07e-07, + "hib": 1.07e-07, + "hihi": 1.07e-07, + "hinging": 1.07e-07, + "histopathological": 1.07e-07, + "hoekstra": 1.07e-07, + "hokum": 1.07e-07, + "homomorphism": 1.07e-07, + "hooo": 1.07e-07, + "horticulturists": 1.07e-07, + "hott": 1.07e-07, + "huckster": 1.07e-07, + "hugues": 1.07e-07, + "humourous": 1.07e-07, + "hungers": 1.07e-07, + "hurleys": 1.07e-07, + "husseini": 1.07e-07, + "hyperbola": 1.07e-07, + "hypermarkets": 1.07e-07, + "icar": 1.07e-07, + "icmp": 1.07e-07, + "icw": 1.07e-07, + "ien": 1.07e-07, + "ignatieff": 1.07e-07, + "iif": 1.07e-07, + "immunologic": 1.07e-07, + "imola": 1.07e-07, + "incinerating": 1.07e-07, + "incomprehension": 1.07e-07, + "inebriation": 1.07e-07, + "inflatables": 1.07e-07, + "ingelheim": 1.07e-07, + "interferometric": 1.07e-07, + "interneurons": 1.07e-07, + "interweb": 1.07e-07, + "intimations": 1.07e-07, + "intrested": 1.07e-07, + "invision": 1.07e-07, + "iowan": 1.07e-07, + "ismay": 1.07e-07, + "itami": 1.07e-07, + "jacobo": 1.07e-07, + "jacq": 1.07e-07, + "jadeite": 1.07e-07, + "jaffray": 1.07e-07, + "janae": 1.07e-07, + "jaramillo": 1.07e-07, + "jarretts": 1.07e-07, + "jazmine": 1.07e-07, + "jel": 1.07e-07, + "jeppe": 1.07e-07, + "jmc": 1.07e-07, + "jmu": 1.07e-07, + "jollies": 1.07e-07, + "jolyon": 1.07e-07, + "jrc": 1.07e-07, + "jrpg": 1.07e-07, + "juhu": 1.07e-07, + "juliens": 1.07e-07, + "junked": 1.07e-07, + "justgiving": 1.07e-07, + "kaan": 1.07e-07, + "kadi": 1.07e-07, + "kahane": 1.07e-07, + "kaja": 1.07e-07, + "kameron": 1.07e-07, + "kamina": 1.07e-07, + "kanon": 1.07e-07, + "kanyakumari": 1.07e-07, + "kapa": 1.07e-07, + "karlin": 1.07e-07, + "kaskade": 1.07e-07, + "kathrin": 1.07e-07, + "kaycee": 1.07e-07, + "keeble": 1.07e-07, + "keemstar": 1.07e-07, + "keiichi": 1.07e-07, + "keillor": 1.07e-07, + "kempinski": 1.07e-07, + "kenedy": 1.07e-07, + "kenrick": 1.07e-07, + "kenworth": 1.07e-07, + "kepa": 1.07e-07, + "keqiang": 1.07e-07, + "khwaja": 1.07e-07, + "kic": 1.07e-07, + "kidds": 1.07e-07, + "kie": 1.07e-07, + "klansman": 1.07e-07, + "klas": 1.07e-07, + "kobi": 1.07e-07, + "koivu": 1.07e-07, + "konoha": 1.07e-07, + "koresh": 1.07e-07, + "korman": 1.07e-07, + "krane": 1.07e-07, + "kristopher": 1.07e-07, + "kudrow": 1.07e-07, + "kuroko": 1.07e-07, + "kuyt": 1.07e-07, + "kys": 1.07e-07, + "labradoodle": 1.07e-07, + "lacunae": 1.07e-07, + "laga": 1.07e-07, + "lakas": 1.07e-07, + "lambe": 1.07e-07, + "lambskin": 1.07e-07, + "lampposts": 1.07e-07, + "lancel": 1.07e-07, + "landform": 1.07e-07, + "lanna": 1.07e-07, + "lapa": 1.07e-07, + "laserjet": 1.07e-07, + "lasing": 1.07e-07, + "lavon": 1.07e-07, + "lbm": 1.07e-07, + "lbr": 1.07e-07, + "lci": 1.07e-07, + "leeroy": 1.07e-07, + "leeza": 1.07e-07, + "legates": 1.07e-07, + "lely": 1.07e-07, + "lenght": 1.07e-07, + "lethe": 1.07e-07, + "lettermans": 1.07e-07, + "levittown": 1.07e-07, + "lickers": 1.07e-07, + "ligurian": 1.07e-07, + "likert": 1.07e-07, + "limericks": 1.07e-07, + "linnea": 1.07e-07, + "linney": 1.07e-07, + "lintels": 1.07e-07, + "llyn": 1.07e-07, + "lobb": 1.07e-07, + "lobbys": 1.07e-07, + "locksley": 1.07e-07, + "looter": 1.07e-07, + "lording": 1.07e-07, + "lory": 1.07e-07, + "lsland": 1.07e-07, + "ltg": 1.07e-07, + "lucasarts": 1.07e-07, + "lucida": 1.07e-07, + "lucullus": 1.07e-07, + "lukoil": 1.07e-07, + "lumberton": 1.07e-07, + "lyke": 1.07e-07, + "maciel": 1.07e-07, + "macri": 1.07e-07, + "maddeningly": 1.07e-07, + "madlib": 1.07e-07, + "madwoman": 1.07e-07, + "makeout": 1.07e-07, + "mallaig": 1.07e-07, + "manisha": 1.07e-07, + "marano": 1.07e-07, + "margrethe": 1.07e-07, + "marketeers": 1.07e-07, + "masaryk": 1.07e-07, + "masques": 1.07e-07, + "masry": 1.07e-07, + "massenet": 1.07e-07, + "masterton": 1.07e-07, + "materializing": 1.07e-07, + "mathematic": 1.07e-07, + "mattering": 1.07e-07, + "maudsley": 1.07e-07, + "mauls": 1.07e-07, + "mayfly": 1.07e-07, + "meaux": 1.07e-07, + "meilleur": 1.07e-07, + "menton": 1.07e-07, + "mercurio": 1.07e-07, + "meriam": 1.07e-07, + "merovingian": 1.07e-07, + "mesons": 1.07e-07, + "messiahs": 1.07e-07, + "mestizos": 1.07e-07, + "metaphysically": 1.07e-07, + "methodologically": 1.07e-07, + "mexicanos": 1.07e-07, + "middleclass": 1.07e-07, + "mikeys": 1.07e-07, + "mindfully": 1.07e-07, + "mindoro": 1.07e-07, + "ministerio": 1.07e-07, + "minka": 1.07e-07, + "minutos": 1.07e-07, + "misidentification": 1.07e-07, + "misplacing": 1.07e-07, + "mithridates": 1.07e-07, + "mmorpgs": 1.07e-07, + "mng": 1.07e-07, + "modeller": 1.07e-07, + "molehill": 1.07e-07, + "moleskine": 1.07e-07, + "monads": 1.07e-07, + "mongolias": 1.07e-07, + "monikers": 1.07e-07, + "moodiness": 1.07e-07, + "moorehead": 1.07e-07, + "mortenson": 1.07e-07, + "motorboats": 1.07e-07, + "motorcars": 1.07e-07, + "mrm": 1.07e-07, + "mrr": 1.07e-07, + "mscs": 1.07e-07, + "mucin": 1.07e-07, + "mulhouse": 1.07e-07, + "mullaney": 1.07e-07, + "multiscale": 1.07e-07, + "multithreading": 1.07e-07, + "nabors": 1.07e-07, + "nage": 1.07e-07, + "nakedly": 1.07e-07, + "nakhon": 1.07e-07, + "naku": 1.07e-07, + "naser": 1.07e-07, + "nason": 1.07e-07, + "natu": 1.07e-07, + "naturalize": 1.07e-07, + "nbt": 1.07e-07, + "necklines": 1.07e-07, + "necropsy": 1.07e-07, + "neelam": 1.07e-07, + "neisseria": 1.07e-07, + "neophytes": 1.07e-07, + "nester": 1.07e-07, + "newlyn": 1.07e-07, + "newmont": 1.07e-07, + "nial": 1.07e-07, + "nicotinamide": 1.07e-07, + "nill": 1.07e-07, + "nito": 1.07e-07, + "nizar": 1.07e-07, + "nns": 1.07e-07, + "noiseless": 1.07e-07, + "noite": 1.07e-07, + "noize": 1.07e-07, + "nookie": 1.07e-07, + "noreaster": 1.07e-07, + "norvell": 1.07e-07, + "noughties": 1.07e-07, + "novae": 1.07e-07, + "nre": 1.07e-07, + "nudism": 1.07e-07, + "nullity": 1.07e-07, + "nursemaid": 1.07e-07, + "nyet": 1.07e-07, + "objet": 1.07e-07, + "obl": 1.07e-07, + "octopussy": 1.07e-07, + "officiel": 1.07e-07, + "ofr": 1.07e-07, + "omnes": 1.07e-07, + "onegin": 1.07e-07, + "onofre": 1.07e-07, + "ooi": 1.07e-07, + "orogenic": 1.07e-07, + "osment": 1.07e-07, + "ossining": 1.07e-07, + "osweiler": 1.07e-07, + "otoh": 1.07e-07, + "ousmane": 1.07e-07, + "outstripping": 1.07e-07, + "ovaltine": 1.07e-07, + "overclocked": 1.07e-07, + "overlies": 1.07e-07, + "overplaying": 1.07e-07, + "overpressure": 1.07e-07, + "overtired": 1.07e-07, + "ozaki": 1.07e-07, + "paedo": 1.07e-07, + "pangu": 1.07e-07, + "parbat": 1.07e-07, + "parcs": 1.07e-07, + "parikh": 1.07e-07, + "parklife": 1.07e-07, + "paroxysmal": 1.07e-07, + "partons": 1.07e-07, + "parvez": 1.07e-07, + "paulista": 1.07e-07, + "paya": 1.07e-07, + "pboc": 1.07e-07, + "pcgs": 1.07e-07, + "pearces": 1.07e-07, + "peerages": 1.07e-07, + "perdu": 1.07e-07, + "peripheries": 1.07e-07, + "perna": 1.07e-07, + "phonons": 1.07e-07, + "phrasal": 1.07e-07, + "pichai": 1.07e-07, + "pictographs": 1.07e-07, + "pidge": 1.07e-07, + "pku": 1.07e-07, + "plainville": 1.07e-07, + "plastique": 1.07e-07, + "pleasants": 1.07e-07, + "plotinus": 1.07e-07, + "plumas": 1.07e-07, + "podunk": 1.07e-07, + "potentiation": 1.07e-07, + "powerbook": 1.07e-07, + "prayin": 1.07e-07, + "preforming": 1.07e-07, + "premolars": 1.07e-07, + "preowned": 1.07e-07, + "pressers": 1.07e-07, + "preventer": 1.07e-07, + "primula": 1.07e-07, + "prinsloo": 1.07e-07, + "prio": 1.07e-07, + "procurements": 1.07e-07, + "profaned": 1.07e-07, + "professionalization": 1.07e-07, + "programed": 1.07e-07, + "proletarians": 1.07e-07, + "prolifically": 1.07e-07, + "promulgating": 1.07e-07, + "proposer": 1.07e-07, + "proselytize": 1.07e-07, + "proteinuria": 1.07e-07, + "proulx": 1.07e-07, + "pseudoscientific": 1.07e-07, + "pstn": 1.07e-07, + "psychotics": 1.07e-07, + "publicising": 1.07e-07, + "pulverizing": 1.07e-07, + "punctuating": 1.07e-07, + "quade": 1.07e-07, + "quadruplets": 1.07e-07, + "quatrain": 1.07e-07, + "queda": 1.07e-07, + "questionably": 1.07e-07, + "questlove": 1.07e-07, + "racemic": 1.07e-07, + "radiotelephone": 1.07e-07, + "raes": 1.07e-07, + "rafik": 1.07e-07, + "ragsdale": 1.07e-07, + "rajavi": 1.07e-07, + "rallys": 1.07e-07, + "rangi": 1.07e-07, + "rannoch": 1.07e-07, + "ranunculus": 1.07e-07, + "rapha": 1.07e-07, + "ravenscroft": 1.07e-07, + "rbcs": 1.07e-07, + "rdna": 1.07e-07, + "recueil": 1.07e-07, + "redbubble": 1.07e-07, + "redfin": 1.07e-07, + "reexamination": 1.07e-07, + "reexamined": 1.07e-07, + "refinished": 1.07e-07, + "rehm": 1.07e-07, + "reinaldo": 1.07e-07, + "removers": 1.07e-07, + "repens": 1.07e-07, + "rerelease": 1.07e-07, + "retitled": 1.07e-07, + "retractions": 1.07e-07, + "retrofits": 1.07e-07, + "rewinds": 1.07e-07, + "reworks": 1.07e-07, + "rfl": 1.07e-07, + "rhaegar": 1.07e-07, + "rhinebeck": 1.07e-07, + "rhodey": 1.07e-07, + "ribavirin": 1.07e-07, + "riccio": 1.07e-07, + "rickert": 1.07e-07, + "ringos": 1.07e-07, + "ritch": 1.07e-07, + "rmg": 1.07e-07, + "rola": 1.07e-07, + "roldan": 1.07e-07, + "romos": 1.07e-07, + "rootkit": 1.07e-07, + "rooty": 1.07e-07, + "rowen": 1.07e-07, + "rsf": 1.07e-07, + "ruleset": 1.07e-07, + "rummel": 1.07e-07, + "rustler": 1.07e-07, + "rylance": 1.07e-07, + "sabbat": 1.07e-07, + "sacramentos": 1.07e-07, + "safetys": 1.07e-07, + "sagacity": 1.07e-07, + "sagans": 1.07e-07, + "saidi": 1.07e-07, + "salcedo": 1.07e-07, + "salicylate": 1.07e-07, + "salida": 1.07e-07, + "salmo": 1.07e-07, + "salmons": 5.5e-08, + "salto": 1.07e-07, + "samphire": 1.07e-07, + "sanches": 1.07e-07, + "sandlers": 1.07e-07, + "sandpit": 1.07e-07, + "sangeet": 1.07e-07, + "sapphic": 1.07e-07, + "sare": 1.07e-07, + "sasol": 1.07e-07, + "satb": 1.07e-07, + "sauced": 1.07e-07, + "schalk": 1.07e-07, + "schoolbooks": 1.07e-07, + "schultzs": 1.07e-07, + "sconce": 1.07e-07, + "sculls": 1.07e-07, + "sderot": 1.07e-07, + "sedating": 1.07e-07, + "sedna": 1.07e-07, + "selamat": 1.07e-07, + "senseis": 1.07e-07, + "sero": 1.07e-07, + "serological": 1.07e-07, + "sese": 1.07e-07, + "severa": 1.07e-07, + "sgx": 1.07e-07, + "shaukat": 1.07e-07, + "shearwater": 1.07e-07, + "sheetrock": 1.07e-07, + "shema": 1.07e-07, + "shiksha": 1.07e-07, + "shindo": 1.07e-07, + "shoeshine": 1.07e-07, + "shooed": 1.07e-07, + "shotwell": 1.07e-07, + "showerhead": 1.07e-07, + "shtf": 1.07e-07, + "shucking": 1.07e-07, + "shug": 1.07e-07, + "shweta": 1.07e-07, + "sickeningly": 1.07e-07, + "sidemen": 1.07e-07, + "sido": 1.07e-07, + "siebel": 1.07e-07, + "signalman": 1.07e-07, + "silico": 1.07e-07, + "silting": 1.07e-07, + "silvan": 1.07e-07, + "singlets": 1.07e-07, + "sirisena": 1.07e-07, + "sixx": 1.07e-07, + "skitter": 1.07e-07, + "snb": 1.07e-07, + "snored": 1.07e-07, + "snowbound": 1.07e-07, + "snuffing": 1.07e-07, + "softeners": 1.07e-07, + "solheim": 1.07e-07, + "someting": 1.07e-07, + "somo": 1.07e-07, + "soult": 1.07e-07, + "southlake": 1.07e-07, + "spaceballs": 1.07e-07, + "spb": 1.07e-07, + "spellcheck": 1.07e-07, + "spetsnaz": 1.07e-07, + "spinosaurus": 1.07e-07, + "sprit": 1.07e-07, + "ssx": 1.07e-07, + "stamm": 1.07e-07, + "stammers": 1.07e-07, + "steinbecks": 1.07e-07, + "stevo": 1.07e-07, + "steyr": 1.07e-07, + "stinkers": 1.07e-07, + "storerooms": 1.07e-07, + "storie": 1.07e-07, + "stovepipe": 1.07e-07, + "straitened": 1.07e-07, + "stridently": 1.07e-07, + "stunners": 1.07e-07, + "submariners": 1.07e-07, + "subsidiarity": 1.07e-07, + "subsisted": 1.07e-07, + "suchlike": 1.07e-07, + "sugimoto": 1.07e-07, + "sunbeds": 1.07e-07, + "supertramp": 1.07e-07, + "surfside": 1.07e-07, + "suru": 1.07e-07, + "sushant": 1.07e-07, + "sutherlands": 1.07e-07, + "svensk": 1.07e-07, + "swallowtail": 1.07e-07, + "tache": 1.07e-07, + "taguig": 1.07e-07, + "tajiks": 1.07e-07, + "tanabe": 1.07e-07, + "tangibly": 1.07e-07, + "tcd": 1.07e-07, + "telegraphing": 1.07e-07, + "tendril": 1.07e-07, + "tepee": 1.07e-07, + "territorially": 1.07e-07, + "tessier": 1.07e-07, + "testamentary": 1.07e-07, + "tezuka": 1.07e-07, + "tfm": 1.07e-07, + "thapa": 1.07e-07, + "theodicy": 1.07e-07, + "theoretician": 1.07e-07, + "theyr": 1.07e-07, + "thinkprogress": 1.07e-07, + "thorney": 1.07e-07, + "thornley": 1.07e-07, + "thorstein": 1.07e-07, + "threepenny": 1.07e-07, + "tiaa": 1.07e-07, + "tigres": 1.07e-07, + "tilman": 1.07e-07, + "timothys": 1.07e-07, + "tinderbox": 1.07e-07, + "tippin": 1.07e-07, + "tiptoed": 1.07e-07, + "tnk": 1.07e-07, + "tobacconist": 1.07e-07, + "toblerone": 1.07e-07, + "tomislav": 1.07e-07, + "topologically": 1.07e-07, + "torben": 1.07e-07, + "tork": 1.07e-07, + "touchstones": 1.07e-07, + "townhomes": 1.07e-07, + "toxicologist": 1.07e-07, + "trainable": 1.07e-07, + "transmedia": 1.07e-07, + "traum": 1.07e-07, + "trendsetters": 1.07e-07, + "tric": 1.07e-07, + "trist": 1.07e-07, + "trunking": 1.07e-07, + "tth": 1.07e-07, + "tufnell": 1.07e-07, + "tussock": 1.07e-07, + "tweetdeck": 1.07e-07, + "uiuc": 1.07e-07, + "ultraviolence": 1.07e-07, + "umps": 1.07e-07, + "unalloyed": 1.07e-07, + "unctuous": 1.07e-07, + "undine": 1.07e-07, + "unformed": 1.07e-07, + "unicameral": 1.07e-07, + "unicom": 1.07e-07, + "universiteit": 1.07e-07, + "unmistakeable": 1.07e-07, + "unseal": 1.07e-07, + "unseasoned": 1.07e-07, + "untangled": 1.07e-07, + "uol": 1.07e-07, + "uran": 1.07e-07, + "urologic": 1.07e-07, + "uygur": 1.07e-07, + "vaginally": 1.07e-07, + "valbuena": 1.07e-07, + "valencian": 1.07e-07, + "valvular": 1.07e-07, + "varick": 1.07e-07, + "varietals": 1.07e-07, + "varroa": 1.07e-07, + "vendome": 1.07e-07, + "victimizing": 1.07e-07, + "victorinox": 1.07e-07, + "victoriously": 1.07e-07, + "vigna": 1.07e-07, + "villi": 1.07e-07, + "vintner": 1.07e-07, + "viridis": 1.07e-07, + "viterbo": 1.07e-07, + "viviana": 1.07e-07, + "volo": 1.07e-07, + "volvos": 8.71e-08, + "vq": 1.07e-07, + "vram": 1.07e-07, + "vse": 1.07e-07, + "wais": 1.07e-07, + "wakeboarding": 1.07e-07, + "walkthroughs": 1.07e-07, + "wallers": 1.07e-07, + "wallflowers": 1.07e-07, + "wallops": 1.07e-07, + "wantage": 1.07e-07, + "waqf": 1.07e-07, + "waterboarded": 1.07e-07, + "waterston": 1.07e-07, + "wayman": 1.07e-07, + "weehawken": 1.07e-07, + "wetherell": 1.07e-07, + "whirls": 1.07e-07, + "whodunnit": 1.07e-07, + "widmer": 1.07e-07, + "willetts": 1.07e-07, + "willin": 1.07e-07, + "winces": 1.07e-07, + "wingtips": 1.07e-07, + "wisecracking": 1.07e-07, + "withing": 1.07e-07, + "withthe": 1.07e-07, + "wme": 1.07e-07, + "woolfs": 1.07e-07, + "wordlessly": 1.07e-07, + "workaday": 1.07e-07, + "wormy": 1.07e-07, + "wtp": 1.07e-07, + "wurlitzer": 1.07e-07, + "wynnum": 1.07e-07, + "wyong": 1.07e-07, + "wythenshawe": 1.07e-07, + "xilinx": 1.07e-07, + "xkcd": 1.07e-07, + "xss": 1.07e-07, + "xtc": 1.07e-07, + "yasukuni": 1.07e-07, + "yazid": 1.07e-07, + "yok": 1.07e-07, + "yokosuka": 1.07e-07, + "yueh": 1.07e-07, + "yvan": 1.07e-07, + "yyyy": 1.07e-07, + "zanotti": 1.07e-07, + "zarate": 1.07e-07, + "zari": 1.07e-07, + "zatanna": 1.07e-07, + "zein": 1.07e-07, + "ablutions": 1.05e-07, + "accs": 8.51e-08, + "accreditations": 1.05e-07, + "accuseds": 1.05e-07, + "acing": 1.05e-07, + "addenda": 1.05e-07, + "adduct": 1.05e-07, + "ades": 1.05e-07, + "adlington": 1.05e-07, + "afterbirth": 1.05e-07, + "agf": 1.05e-07, + "agoraphobic": 1.05e-07, + "ahahahaha": 1.05e-07, + "ahriman": 1.05e-07, + "airedale": 1.05e-07, + "ajaccio": 1.05e-07, + "akg": 1.05e-07, + "aland": 1.05e-07, + "alarcon": 1.05e-07, + "albatrosses": 1.05e-07, + "albertus": 1.05e-07, + "albions": 1.05e-07, + "aliso": 1.05e-07, + "alita": 1.05e-07, + "alleghany": 1.05e-07, + "allelic": 1.05e-07, + "allll": 1.05e-07, + "allosteric": 1.05e-07, + "alloway": 1.05e-07, + "allusive": 1.05e-07, + "alternations": 1.05e-07, + "alvey": 1.05e-07, + "ambassadorship": 1.05e-07, + "amiably": 1.05e-07, + "amidala": 1.05e-07, + "amiodarone": 1.05e-07, + "amoco": 1.05e-07, + "anarchistic": 1.05e-07, + "angleterre": 1.05e-07, + "ansonia": 1.05e-07, + "antiterrorism": 1.05e-07, + "antman": 1.05e-07, + "apel": 1.05e-07, + "apj": 1.05e-07, + "arbogast": 1.05e-07, + "arche": 1.05e-07, + "archean": 1.05e-07, + "arks": 7.59e-08, + "arpanet": 1.05e-07, + "artaxerxes": 1.05e-07, + "articled": 1.05e-07, + "artless": 1.05e-07, + "asaf": 1.05e-07, + "asakura": 1.05e-07, + "aspartic": 1.05e-07, + "aspx": 1.05e-07, + "atterbury": 1.05e-07, + "axios": 1.05e-07, + "axolotl": 1.05e-07, + "ayaz": 1.05e-07, + "azpilicueta": 1.05e-07, + "babied": 1.05e-07, + "backlogged": 1.05e-07, + "bacteriological": 1.05e-07, + "badakhshan": 1.05e-07, + "baggers": 1.05e-07, + "bahais": 1.05e-07, + "bajrangi": 1.05e-07, + "ballista": 1.05e-07, + "banns": 1.05e-07, + "baryon": 1.05e-07, + "bator": 1.05e-07, + "battelle": 1.05e-07, + "beccas": 1.05e-07, + "bednar": 1.05e-07, + "beesley": 1.05e-07, + "belge": 1.05e-07, + "belling": 1.05e-07, + "beneficence": 1.05e-07, + "benihana": 1.05e-07, + "berlusconis": 1.05e-07, + "berrios": 1.05e-07, + "bertin": 1.05e-07, + "biblia": 1.05e-07, + "biebs": 1.05e-07, + "bif": 1.05e-07, + "biffle": 1.05e-07, + "biggies": 1.05e-07, + "birkenstocks": 1.05e-07, + "biv": 1.05e-07, + "blackley": 1.05e-07, + "blackmagic": 1.05e-07, + "blandness": 1.05e-07, + "blf": 1.05e-07, + "boal": 1.05e-07, + "bobrovsky": 1.05e-07, + "bolzano": 1.05e-07, + "bonet": 1.05e-07, + "bookworms": 1.05e-07, + "boothby": 1.05e-07, + "borah": 1.05e-07, + "boulez": 1.05e-07, + "brackley": 1.05e-07, + "branham": 1.05e-07, + "breadbasket": 1.05e-07, + "brembo": 1.05e-07, + "bricking": 1.05e-07, + "brideshead": 1.05e-07, + "bridled": 1.05e-07, + "broch": 1.05e-07, + "brotherton": 1.05e-07, + "bruck": 1.05e-07, + "brutalism": 1.05e-07, + "brz": 1.05e-07, + "bugaboo": 1.05e-07, + "bulgakov": 1.05e-07, + "burdwan": 1.05e-07, + "burnss": 1.05e-07, + "burnsville": 1.05e-07, + "bussey": 1.05e-07, + "cabochon": 1.05e-07, + "caisse": 1.05e-07, + "caissons": 1.05e-07, + "calfskin": 1.05e-07, + "campa": 1.05e-07, + "canales": 1.05e-07, + "cannibalized": 1.05e-07, + "capernaum": 1.05e-07, + "carabao": 1.05e-07, + "carioca": 1.05e-07, + "caroling": 1.05e-07, + "carondelet": 1.05e-07, + "carpi": 1.05e-07, + "carping": 1.05e-07, + "castleman": 1.05e-07, + "catchall": 1.05e-07, + "cbsa": 1.05e-07, + "centeredness": 1.05e-07, + "ceyhan": 1.05e-07, + "channa": 1.05e-07, + "charleville": 1.05e-07, + "chastises": 1.05e-07, + "cheekily": 1.05e-07, + "chegg": 1.05e-07, + "chelsey": 1.05e-07, + "cherrys": 1.05e-07, + "chicos": 5.37e-08, + "chima": 1.05e-07, + "chintz": 1.05e-07, + "chiyoda": 1.05e-07, + "chloramphenicol": 1.05e-07, + "choosen": 1.05e-07, + "chungs": 1.05e-07, + "ciencias": 1.05e-07, + "ciera": 1.05e-07, + "cinematics": 1.05e-07, + "circlet": 1.05e-07, + "circuiting": 1.05e-07, + "citgo": 1.05e-07, + "clamored": 1.05e-07, + "clarinetist": 1.05e-07, + "claudel": 1.05e-07, + "clb": 1.05e-07, + "cld": 1.05e-07, + "clovelly": 1.05e-07, + "cloverleaf": 1.05e-07, + "clyro": 1.05e-07, + "cnp": 1.05e-07, + "cochrans": 1.05e-07, + "codependency": 1.05e-07, + "cofactors": 1.05e-07, + "cohost": 1.05e-07, + "collocation": 1.05e-07, + "colloquialism": 1.05e-07, + "colmar": 1.05e-07, + "commensal": 1.05e-07, + "commu": 1.05e-07, + "conagra": 1.05e-07, + "concatenated": 1.05e-07, + "conciliar": 1.05e-07, + "conformists": 1.05e-07, + "conjectural": 1.05e-07, + "contrivances": 1.05e-07, + "coosa": 1.05e-07, + "cout": 1.05e-07, + "covetousness": 1.05e-07, + "cozier": 1.05e-07, + "cradock": 1.05e-07, + "cribbing": 1.05e-07, + "croll": 1.05e-07, + "crossbreeding": 1.05e-07, + "crys": 1.05e-07, + "csw": 1.05e-07, + "cuboid": 1.05e-07, + "cuc": 1.05e-07, + "cultish": 1.05e-07, + "curdle": 1.05e-07, + "cybersex": 1.05e-07, + "cyberwarfare": 1.05e-07, + "cyclization": 1.05e-07, + "dagbladet": 1.05e-07, + "dahi": 1.05e-07, + "dansby": 1.05e-07, + "daphnia": 1.05e-07, + "darndest": 1.05e-07, + "darwen": 1.05e-07, + "daun": 1.05e-07, + "dcd": 1.05e-07, + "ddi": 1.05e-07, + "dearden": 1.05e-07, + "decalogue": 1.05e-07, + "deckhand": 1.05e-07, + "deepsea": 1.05e-07, + "deforms": 1.05e-07, + "delimit": 1.05e-07, + "democritus": 1.05e-07, + "demotic": 1.05e-07, + "dennard": 1.05e-07, + "desegregated": 1.05e-07, + "dices": 1.05e-07, + "dickon": 1.05e-07, + "diener": 1.05e-07, + "dirham": 1.05e-07, + "disclaimed": 1.05e-07, + "distin": 1.05e-07, + "distributable": 1.05e-07, + "divestitures": 1.05e-07, + "dmo": 1.05e-07, + "dobro": 1.05e-07, + "docudrama": 1.05e-07, + "doeth": 1.05e-07, + "dolezal": 1.05e-07, + "dolman": 1.05e-07, + "dormammu": 1.05e-07, + "dott": 1.05e-07, + "drachma": 1.05e-07, + "drachmas": 1.05e-07, + "dreamboat": 1.05e-07, + "dsn": 1.05e-07, + "dtg": 1.05e-07, + "dubya": 1.05e-07, + "dugald": 1.05e-07, + "dunoon": 1.05e-07, + "dwg": 1.05e-07, + "dyskinesia": 1.05e-07, + "dzogchen": 1.05e-07, + "earpieces": 1.05e-07, + "echinoderms": 1.05e-07, + "echocardiogram": 1.05e-07, + "edb": 1.05e-07, + "ediths": 1.05e-07, + "eer": 1.05e-07, + "eisa": 1.05e-07, + "eitan": 1.05e-07, + "eliana": 1.05e-07, + "elstree": 1.05e-07, + "emigre": 1.05e-07, + "enl": 1.05e-07, + "enslaves": 1.05e-07, + "entangling": 1.05e-07, + "enzymology": 1.05e-07, + "epe": 1.05e-07, + "epitaxial": 1.05e-07, + "epitomises": 1.05e-07, + "erat": 1.05e-07, + "eron": 1.05e-07, + "esca": 1.05e-07, + "ethnographer": 1.05e-07, + "etn": 1.05e-07, + "etowah": 1.05e-07, + "etr": 1.05e-07, + "etymologies": 1.05e-07, + "evapotranspiration": 1.05e-07, + "eventbrite": 1.05e-07, + "evidencing": 1.05e-07, + "excimer": 1.05e-07, + "extrusions": 1.05e-07, + "eyez": 1.05e-07, + "fabri": 1.05e-07, + "fadeaway": 1.05e-07, + "fairleigh": 1.05e-07, + "faldo": 1.05e-07, + "fallbrook": 1.05e-07, + "familiarization": 1.05e-07, + "fatimah": 1.05e-07, + "feisal": 1.05e-07, + "ferland": 1.05e-07, + "ferme": 1.05e-07, + "fermor": 1.05e-07, + "ferrie": 1.05e-07, + "ferrigno": 1.05e-07, + "ferryboat": 1.05e-07, + "ffb": 1.05e-07, + "fiers": 1.05e-07, + "finnerty": 1.05e-07, + "flambeau": 1.05e-07, + "flavonoid": 1.05e-07, + "fledglings": 1.05e-07, + "flinty": 1.05e-07, + "flippy": 1.05e-07, + "folklife": 1.05e-07, + "forensically": 1.05e-07, + "fovea": 1.05e-07, + "franson": 1.05e-07, + "freestyles": 1.05e-07, + "freyja": 1.05e-07, + "friable": 1.05e-07, + "frn": 1.05e-07, + "frommer": 1.05e-07, + "fundus": 1.05e-07, + "fursona": 1.05e-07, + "galpin": 1.05e-07, + "galvan": 1.05e-07, + "garak": 1.05e-07, + "garin": 1.05e-07, + "garnishes": 1.05e-07, + "geeking": 1.05e-07, + "generali": 1.05e-07, + "genisys": 1.05e-07, + "genitourinary": 1.05e-07, + "genotyping": 1.05e-07, + "germanwings": 1.05e-07, + "ghassan": 1.05e-07, + "giang": 1.05e-07, + "gils": 1.05e-07, + "ginzburg": 1.05e-07, + "gipson": 1.05e-07, + "giscard": 1.05e-07, + "gladwin": 1.05e-07, + "glaucus": 1.05e-07, + "glenbrook": 1.05e-07, + "gluons": 1.05e-07, + "goble": 1.05e-07, + "godrej": 1.05e-07, + "gof": 1.05e-07, + "goldring": 1.05e-07, + "goliaths": 1.05e-07, + "golightly": 1.05e-07, + "goood": 1.05e-07, + "gorg": 1.05e-07, + "goucher": 1.05e-07, + "goyer": 1.05e-07, + "graceless": 1.05e-07, + "greeny": 1.05e-07, + "gridlocked": 1.05e-07, + "grilli": 1.05e-07, + "grindhouse": 1.05e-07, + "grotius": 1.05e-07, + "gruner": 1.05e-07, + "gsn": 1.05e-07, + "guilder": 1.05e-07, + "guildies": 1.05e-07, + "gullit": 1.05e-07, + "gyo": 1.05e-07, + "hadad": 1.05e-07, + "haematoma": 1.05e-07, + "haganah": 1.05e-07, + "harbhajan": 1.05e-07, + "harmons": 1.05e-07, + "harri": 1.05e-07, + "heartbreaks": 1.05e-07, + "helder": 1.05e-07, + "hematological": 1.05e-07, + "hemostasis": 1.05e-07, + "herdman": 1.05e-07, + "hersch": 1.05e-07, + "herzberg": 1.05e-07, + "hesh": 1.05e-07, + "hessler": 1.05e-07, + "hickox": 1.05e-07, + "hillarious": 1.05e-07, + "historie": 1.05e-07, + "hmso": 1.05e-07, + "hodgsons": 1.05e-07, + "hollings": 1.05e-07, + "holloways": 1.05e-07, + "holmess": 1.05e-07, + "holstered": 1.05e-07, + "homologs": 1.05e-07, + "hoopers": 5.62e-08, + "horrifyingly": 1.05e-07, + "hospitalist": 1.05e-07, + "hotaru": 1.05e-07, + "hubbs": 1.05e-07, + "hublot": 1.05e-07, + "hunley": 1.05e-07, + "hybridisation": 1.05e-07, + "hypothesised": 1.05e-07, + "ihor": 1.05e-07, + "ijust": 1.05e-07, + "imhotep": 1.05e-07, + "immunologist": 1.05e-07, + "imrt": 1.05e-07, + "inara": 1.05e-07, + "includ": 1.05e-07, + "indeterminacy": 1.05e-07, + "indoctrinating": 1.05e-07, + "inexpressible": 1.05e-07, + "infuser": 1.05e-07, + "ingen": 1.05e-07, + "iniquitous": 1.05e-07, + "inklings": 1.05e-07, + "inmost": 1.05e-07, + "innervate": 1.05e-07, + "innisfail": 1.05e-07, + "inoculum": 1.05e-07, + "inquisitorial": 1.05e-07, + "insignias": 1.05e-07, + "insularity": 1.05e-07, + "insurable": 1.05e-07, + "interlibrary": 1.05e-07, + "interpolations": 1.05e-07, + "iove": 1.05e-07, + "ipsc": 1.05e-07, + "ipsilateral": 1.05e-07, + "irp": 1.05e-07, + "isotonic": 1.05e-07, + "itzhak": 1.05e-07, + "jadakiss": 1.05e-07, + "jael": 1.05e-07, + "jahre": 1.05e-07, + "jarrad": 1.05e-07, + "javy": 1.05e-07, + "jeffry": 1.05e-07, + "jeni": 1.05e-07, + "jip": 1.05e-07, + "jlo": 1.05e-07, + "jogi": 1.05e-07, + "jokester": 1.05e-07, + "jolley": 1.05e-07, + "jq": 1.05e-07, + "juco": 1.05e-07, + "kadar": 1.05e-07, + "kallen": 1.05e-07, + "kamm": 1.05e-07, + "kasha": 1.05e-07, + "kattegat": 1.05e-07, + "katyn": 1.05e-07, + "kcp": 1.05e-07, + "kedar": 1.05e-07, + "keds": 1.05e-07, + "kelce": 1.05e-07, + "kelleys": 1.05e-07, + "keplers": 1.05e-07, + "kesey": 1.05e-07, + "khalili": 1.05e-07, + "khuda": 1.05e-07, + "killy": 1.05e-07, + "kingslayer": 1.05e-07, + "kinski": 1.05e-07, + "kirilenko": 1.05e-07, + "knecht": 1.05e-07, + "kneejerk": 1.05e-07, + "knighthoods": 1.05e-07, + "koestler": 1.05e-07, + "kokoda": 1.05e-07, + "konig": 1.05e-07, + "kotoko": 1.05e-07, + "kowtowing": 1.05e-07, + "kroeger": 1.05e-07, + "krogh": 1.05e-07, + "kumara": 1.05e-07, + "kurama": 1.05e-07, + "kurapika": 1.05e-07, + "kurumi": 1.05e-07, + "kyojin": 1.05e-07, + "lahr": 1.05e-07, + "lampooning": 1.05e-07, + "langlands": 1.05e-07, + "lansdown": 1.05e-07, + "lary": 1.05e-07, + "lathan": 1.05e-07, + "lavey": 1.05e-07, + "lbf": 1.05e-07, + "lecce": 1.05e-07, + "lefkowitz": 1.05e-07, + "lemire": 1.05e-07, + "leurs": 1.05e-07, + "levinas": 1.05e-07, + "levite": 1.05e-07, + "libellous": 1.05e-07, + "liii": 1.05e-07, + "lineout": 1.05e-07, + "linville": 1.05e-07, + "literalism": 1.05e-07, + "lleyton": 1.05e-07, + "localhost": 1.05e-07, + "lof": 1.05e-07, + "lohr": 1.05e-07, + "longacre": 1.05e-07, + "longform": 1.05e-07, + "looooove": 1.05e-07, + "lorac": 1.05e-07, + "louden": 1.05e-07, + "lucre": 1.05e-07, + "lugubrious": 1.05e-07, + "lumb": 1.05e-07, + "luoyang": 1.05e-07, + "lykke": 1.05e-07, + "lyndsay": 1.05e-07, + "mabey": 1.05e-07, + "macomber": 1.05e-07, + "maddest": 1.05e-07, + "madoc": 1.05e-07, + "maffei": 1.05e-07, + "maguires": 1.05e-07, + "majolica": 1.05e-07, + "majoritarian": 1.05e-07, + "maladministration": 1.05e-07, + "malraux": 1.05e-07, + "manacles": 1.05e-07, + "manami": 1.05e-07, + "mandalas": 1.05e-07, + "mandinka": 1.05e-07, + "manipal": 1.05e-07, + "manni": 1.05e-07, + "marja": 1.05e-07, + "marois": 1.05e-07, + "maryknoll": 1.05e-07, + "masia": 1.05e-07, + "matai": 1.05e-07, + "matsuo": 1.05e-07, + "maundy": 1.05e-07, + "mcbrides": 1.05e-07, + "mccaul": 1.05e-07, + "mcclanahan": 1.05e-07, + "mckinlay": 1.05e-07, + "mcrib": 1.05e-07, + "meaningfulness": 1.05e-07, + "mediumship": 1.05e-07, + "meen": 1.05e-07, + "mehmood": 1.05e-07, + "meka": 1.05e-07, + "melanchthon": 1.05e-07, + "melanies": 1.05e-07, + "melisa": 1.05e-07, + "memorising": 1.05e-07, + "menin": 1.05e-07, + "mery": 1.05e-07, + "metalworkers": 1.05e-07, + "microbiologists": 1.05e-07, + "microcredit": 1.05e-07, + "microelectronic": 1.05e-07, + "micronesian": 1.05e-07, + "microstructures": 1.05e-07, + "mifsud": 1.05e-07, + "millenial": 1.05e-07, + "millersville": 1.05e-07, + "millikin": 1.05e-07, + "millstones": 1.05e-07, + "minifigure": 1.05e-07, + "minimax": 1.05e-07, + "minutia": 1.05e-07, + "misconceived": 1.05e-07, + "misquote": 1.05e-07, + "mithra": 1.05e-07, + "mitsuki": 1.05e-07, + "miui": 1.05e-07, + "modernistic": 1.05e-07, + "moke": 1.05e-07, + "mommie": 1.05e-07, + "mononucleosis": 1.05e-07, + "moonbase": 1.05e-07, + "moorman": 1.05e-07, + "mornay": 1.05e-07, + "mortgaging": 1.05e-07, + "msdn": 1.05e-07, + "muddying": 1.05e-07, + "mudflats": 1.05e-07, + "mudgee": 1.05e-07, + "muffed": 1.05e-07, + "mukul": 1.05e-07, + "mulders": 1.05e-07, + "multifactorial": 1.05e-07, + "multilateralism": 1.05e-07, + "multiprocessor": 1.05e-07, + "mutinies": 1.05e-07, + "mwf": 1.05e-07, + "mycareer": 1.05e-07, + "mycotoxins": 1.05e-07, + "nachman": 1.05e-07, + "nadiya": 1.05e-07, + "nads": 1.05e-07, + "neera": 1.05e-07, + "neutralising": 1.05e-07, + "newsies": 1.05e-07, + "newspeak": 1.05e-07, + "nfr": 1.05e-07, + "nfv": 1.05e-07, + "ngf": 1.05e-07, + "ngoc": 1.05e-07, + "nieuwe": 1.05e-07, + "nightjar": 1.05e-07, + "nightshift": 1.05e-07, + "nijinsky": 1.05e-07, + "nikitin": 1.05e-07, + "nikolaos": 1.05e-07, + "ningxia": 1.05e-07, + "ninoy": 1.05e-07, + "niobrara": 1.05e-07, + "nlb": 1.05e-07, + "nmb": 1.05e-07, + "nmol": 1.05e-07, + "nonnegative": 1.05e-07, + "nonwhites": 1.05e-07, + "noooooooo": 1.05e-07, + "northwich": 1.05e-07, + "norval": 1.05e-07, + "notability": 1.05e-07, + "novaks": 1.05e-07, + "nozaki": 1.05e-07, + "numbingly": 1.05e-07, + "nyr": 1.05e-07, + "obsolescent": 1.05e-07, + "occassion": 1.05e-07, + "ocelli": 1.05e-07, + "oded": 1.05e-07, + "ohp": 1.05e-07, + "oohh": 1.05e-07, + "oppressions": 1.05e-07, + "orellana": 1.05e-07, + "organizationally": 1.05e-07, + "orks": 1.05e-07, + "ormerod": 1.05e-07, + "orthorhombic": 1.05e-07, + "ortons": 1.05e-07, + "ostomy": 1.05e-07, + "otay": 1.05e-07, + "otm": 1.05e-07, + "outrank": 1.05e-07, + "outshot": 1.05e-07, + "ovas": 1.05e-07, + "overbought": 1.05e-07, + "oversensitive": 1.05e-07, + "owi": 1.05e-07, + "ozs": 1.05e-07, + "paan": 1.05e-07, + "paiva": 1.05e-07, + "palenque": 1.05e-07, + "palestrina": 1.05e-07, + "palming": 1.05e-07, + "pande": 1.05e-07, + "panders": 1.05e-07, + "panmure": 1.05e-07, + "parkhead": 1.05e-07, + "parl": 1.05e-07, + "parp": 1.05e-07, + "partha": 1.05e-07, + "paunch": 1.05e-07, + "pavan": 1.05e-07, + "paxil": 1.05e-07, + "pebbled": 1.05e-07, + "peckish": 1.05e-07, + "pedagogue": 1.05e-07, + "pelagius": 1.05e-07, + "penetrator": 1.05e-07, + "penknife": 1.05e-07, + "peop": 1.05e-07, + "perfidy": 1.05e-07, + "perforate": 1.05e-07, + "perisic": 1.05e-07, + "permalink": 1.05e-07, + "perso": 1.05e-07, + "pessoa": 1.05e-07, + "pestis": 1.05e-07, + "pettine": 1.05e-07, + "phenology": 1.05e-07, + "philae": 1.05e-07, + "philosophizing": 1.05e-07, + "philpot": 1.05e-07, + "phosphine": 1.05e-07, + "photoresist": 1.05e-07, + "phrygia": 1.05e-07, + "phytochemicals": 1.05e-07, + "piccoli": 1.05e-07, + "piedmontese": 1.05e-07, + "pigalle": 1.05e-07, + "pilloried": 1.05e-07, + "pinkies": 1.05e-07, + "pizzicato": 1.05e-07, + "pking": 1.05e-07, + "plagiarised": 1.05e-07, + "plana": 1.05e-07, + "pldt": 1.05e-07, + "plops": 1.05e-07, + "pluribus": 1.05e-07, + "plutonic": 1.05e-07, + "pmg": 1.05e-07, + "pneuma": 1.05e-07, + "pocketful": 1.05e-07, + "pocky": 1.05e-07, + "poliomyelitis": 1.05e-07, + "politi": 1.05e-07, + "pono": 1.05e-07, + "pornographer": 1.05e-07, + "porterville": 1.05e-07, + "powe": 1.05e-07, + "powerbomb": 1.05e-07, + "prabhakar": 1.05e-07, + "preg": 1.05e-07, + "preminger": 1.05e-07, + "premixed": 1.05e-07, + "prescriber": 1.05e-07, + "profiteer": 1.05e-07, + "programa": 1.05e-07, + "prosodic": 1.05e-07, + "prostituting": 1.05e-07, + "prynne": 1.05e-07, + "psk": 1.05e-07, + "psvr": 1.05e-07, + "psychotherapeutic": 1.05e-07, + "pube": 1.05e-07, + "pulverised": 1.05e-07, + "punning": 1.05e-07, + "qom": 1.05e-07, + "queenslander": 1.05e-07, + "quiznos": 1.05e-07, + "qx": 1.05e-07, + "rabidly": 1.05e-07, + "rahuls": 1.05e-07, + "raki": 1.05e-07, + "rammer": 1.05e-07, + "ramy": 1.05e-07, + "raney": 1.05e-07, + "rankled": 1.05e-07, + "raus": 1.05e-07, + "rbb": 1.05e-07, + "reabsorption": 1.05e-07, + "reallly": 1.05e-07, + "rearranges": 1.05e-07, + "rectifiers": 1.05e-07, + "redact": 1.05e-07, + "reding": 1.05e-07, + "reduplication": 1.05e-07, + "reemerged": 1.05e-07, + "reformulate": 1.05e-07, + "regattas": 1.05e-07, + "relaxer": 1.05e-07, + "rema": 1.05e-07, + "reman": 1.05e-07, + "remanufactured": 1.05e-07, + "remedying": 1.05e-07, + "resa": 1.05e-07, + "retells": 1.05e-07, + "returners": 1.05e-07, + "reuses": 1.05e-07, + "rhombic": 1.05e-07, + "riau": 1.05e-07, + "rijeka": 1.05e-07, + "ristorante": 1.05e-07, + "riverdance": 1.05e-07, + "roadbed": 1.05e-07, + "rocklin": 1.05e-07, + "roco": 1.05e-07, + "rohtak": 1.05e-07, + "rollerblades": 1.05e-07, + "roro": 1.05e-07, + "roshni": 1.05e-07, + "rossiya": 1.05e-07, + "roza": 1.05e-07, + "rubino": 1.05e-07, + "rubus": 1.05e-07, + "rues": 1.05e-07, + "runoffs": 1.05e-07, + "rurik": 1.05e-07, + "ryn": 1.05e-07, + "saanich": 1.05e-07, + "sabatini": 1.05e-07, + "saburo": 1.05e-07, + "sacro": 1.05e-07, + "sadomasochism": 1.05e-07, + "sadomasochistic": 1.05e-07, + "safavid": 1.05e-07, + "salander": 1.05e-07, + "sanda": 1.05e-07, + "sandstorms": 1.05e-07, + "sarno": 1.05e-07, + "saurabh": 1.05e-07, + "savard": 1.05e-07, + "scabby": 1.05e-07, + "scalzi": 1.05e-07, + "scheldt": 1.05e-07, + "scheuer": 1.05e-07, + "schmoozing": 1.05e-07, + "schwarzeneggers": 1.05e-07, + "scolari": 1.05e-07, + "scowled": 1.05e-07, + "scuffing": 1.05e-07, + "seabass": 1.05e-07, + "seay": 1.05e-07, + "secunda": 1.05e-07, + "selous": 1.05e-07, + "senescent": 1.05e-07, + "sequelae": 1.05e-07, + "serafina": 1.05e-07, + "serp": 1.05e-07, + "setsuna": 1.05e-07, + "shaked": 1.05e-07, + "shakespearian": 1.05e-07, + "sharlene": 1.05e-07, + "shellie": 1.05e-07, + "sheppards": 1.05e-07, + "sheth": 1.05e-07, + "shinny": 1.05e-07, + "shivam": 1.05e-07, + "shortchanged": 1.05e-07, + "shorties": 1.05e-07, + "shounen": 1.05e-07, + "shud": 1.05e-07, + "sibilant": 1.05e-07, + "sidelining": 1.05e-07, + "siebold": 1.05e-07, + "sightlines": 1.05e-07, + "signoria": 1.05e-07, + "silverberg": 1.05e-07, + "simpering": 1.05e-07, + "skepta": 1.05e-07, + "skittering": 1.05e-07, + "skydome": 1.05e-07, + "slappy": 1.05e-07, + "slee": 1.05e-07, + "sloans": 1.05e-07, + "slovenes": 1.05e-07, + "smrt": 1.05e-07, + "snigger": 1.05e-07, + "sociality": 1.05e-07, + "soderberg": 1.05e-07, + "solidus": 1.05e-07, + "somedays": 1.05e-07, + "sonography": 1.05e-07, + "sophist": 1.05e-07, + "sopra": 1.05e-07, + "southbridge": 1.05e-07, + "speakership": 1.05e-07, + "speaketh": 1.05e-07, + "spillane": 1.05e-07, + "spillovers": 1.05e-07, + "spindler": 1.05e-07, + "spiritualized": 1.05e-07, + "squarespace": 1.05e-07, + "squibs": 1.05e-07, + "stabber": 1.05e-07, + "staffan": 1.05e-07, + "staton": 1.05e-07, + "staving": 1.05e-07, + "steemit": 1.05e-07, + "steerable": 1.05e-07, + "steinbach": 1.05e-07, + "stelle": 1.05e-07, + "stepfathers": 1.05e-07, + "stomatal": 1.05e-07, + "stonyhurst": 1.05e-07, + "storybooks": 1.05e-07, + "strafed": 1.05e-07, + "streaker": 1.05e-07, + "stricture": 1.05e-07, + "strums": 1.05e-07, + "stt": 1.05e-07, + "studentship": 1.05e-07, + "stussy": 1.05e-07, + "sucess": 1.05e-07, + "sunningdale": 1.05e-07, + "sunray": 1.05e-07, + "superintending": 1.05e-07, + "superstardom": 1.05e-07, + "supes": 1.05e-07, + "suwannee": 1.05e-07, + "swagbucks": 1.05e-07, + "swara": 1.05e-07, + "swats": 1.05e-07, + "swedenborg": 1.05e-07, + "syncretic": 1.05e-07, + "synonymously": 1.05e-07, + "tagg": 1.05e-07, + "talavera": 1.05e-07, + "taniguchi": 1.05e-07, + "taree": 1.05e-07, + "taussig": 1.05e-07, + "tautological": 1.05e-07, + "tavernier": 1.05e-07, + "tdsb": 1.05e-07, + "tearjerker": 1.05e-07, + "technion": 1.05e-07, + "telework": 1.05e-07, + "temporality": 1.05e-07, + "temporomandibular": 1.05e-07, + "tennent": 1.05e-07, + "tercentenary": 1.05e-07, + "thanksgivings": 1.05e-07, + "thant": 1.05e-07, + "thema": 1.05e-07, + "theoreticians": 1.05e-07, + "theorising": 1.05e-07, + "theorizes": 1.05e-07, + "thermodynamically": 1.05e-07, + "tias": 7.08e-08, + "timesheets": 1.05e-07, + "tippet": 1.05e-07, + "tli": 1.05e-07, + "tonge": 1.05e-07, + "topnotch": 1.05e-07, + "torques": 1.05e-07, + "toscana": 1.05e-07, + "towa": 1.05e-07, + "trackless": 1.05e-07, + "tradecraft": 1.05e-07, + "tral": 1.05e-07, + "transcoding": 1.05e-07, + "transmittal": 1.05e-07, + "transvaginal": 1.05e-07, + "traylor": 1.05e-07, + "trelawney": 1.05e-07, + "tremulous": 1.05e-07, + "trenchcoat": 1.05e-07, + "trentham": 1.05e-07, + "trianon": 1.05e-07, + "trivialities": 1.05e-07, + "troubleshooter": 1.05e-07, + "trounce": 1.05e-07, + "ttf": 1.05e-07, + "tubeless": 1.05e-07, + "tugboats": 1.05e-07, + "turnberry": 1.05e-07, + "turrell": 1.05e-07, + "tuukka": 1.05e-07, + "tyburn": 1.05e-07, + "ufw": 1.05e-07, + "uia": 1.05e-07, + "ullrich": 1.05e-07, + "ultramafic": 1.05e-07, + "undergrounds": 1.05e-07, + "underlain": 1.05e-07, + "underparts": 1.05e-07, + "unescorted": 1.05e-07, + "unfulfilling": 1.05e-07, + "unico": 1.05e-07, + "universalists": 1.05e-07, + "unodc": 1.05e-07, + "unos": 1.05e-07, + "unpowered": 1.05e-07, + "unsecure": 1.05e-07, + "unsubscribed": 1.05e-07, + "urbano": 1.05e-07, + "valu": 1.05e-07, + "vario": 1.05e-07, + "vass": 1.05e-07, + "vco": 1.05e-07, + "vem": 1.05e-07, + "ventriloquism": 1.05e-07, + "verdad": 1.05e-07, + "vertiginous": 1.05e-07, + "vertu": 1.05e-07, + "veruca": 1.05e-07, + "vieja": 1.05e-07, + "vira": 1.05e-07, + "vires": 1.05e-07, + "vitaliy": 1.05e-07, + "vitter": 1.05e-07, + "voo": 1.05e-07, + "vte": 1.05e-07, + "vvs": 1.05e-07, + "waaaaaay": 1.05e-07, + "wace": 1.05e-07, + "wae": 1.05e-07, + "waf": 1.05e-07, + "wagtail": 1.05e-07, + "waldeck": 1.05e-07, + "walshe": 1.05e-07, + "warfighting": 1.05e-07, + "waterskiing": 1.05e-07, + "weedon": 1.05e-07, + "weeklys": 1.05e-07, + "welshmen": 1.05e-07, + "whare": 1.05e-07, + "whatve": 1.05e-07, + "whedons": 1.05e-07, + "whincup": 1.05e-07, + "whish": 1.05e-07, + "whiston": 1.05e-07, + "whitebeard": 1.05e-07, + "whiteford": 1.05e-07, + "wiggum": 1.05e-07, + "windfalls": 1.05e-07, + "windscreens": 1.05e-07, + "wingo": 1.05e-07, + "winnowing": 1.05e-07, + "workrate": 1.05e-07, + "worldbuilding": 1.05e-07, + "wowza": 1.05e-07, + "wra": 1.05e-07, + "wrld": 1.05e-07, + "xlt": 1.05e-07, + "xxxix": 1.05e-07, + "xxxviii": 1.05e-07, + "xylene": 1.05e-07, + "yasha": 1.05e-07, + "yeldon": 1.05e-07, + "yojimbo": 1.05e-07, + "yorkshireman": 1.05e-07, + "yoshikawa": 1.05e-07, + "zedekiah": 1.05e-07, + "zegna": 1.05e-07, + "zellner": 1.05e-07, + "zeo": 1.05e-07, + "zinnia": 1.05e-07, + "zofia": 1.05e-07, + "zorba": 1.05e-07, + "zwolle": 1.05e-07, + "abdullahs": 1.02e-07, + "abrahamson": 1.02e-07, + "abseiling": 1.02e-07, + "acclimatization": 1.02e-07, + "achaemenid": 1.02e-07, + "acrylamide": 1.02e-07, + "acrylonitrile": 1.02e-07, + "acti": 1.02e-07, + "acupuncturist": 1.02e-07, + "administrated": 1.02e-07, + "admonishment": 1.02e-07, + "agis": 1.02e-07, + "agnus": 1.02e-07, + "ahp": 1.02e-07, + "aidans": 1.02e-07, + "ajman": 1.02e-07, + "albay": 1.02e-07, + "aldebaran": 1.02e-07, + "alexas": 2.14e-08, + "alie": 1.02e-07, + "alighieri": 1.02e-07, + "alkanes": 1.02e-07, + "allllll": 1.02e-07, + "allover": 1.02e-07, + "alongwith": 1.02e-07, + "alor": 1.02e-07, + "alvar": 1.02e-07, + "amagi": 1.02e-07, + "amedeo": 1.02e-07, + "americus": 1.02e-07, + "amerigo": 1.02e-07, + "ammons": 1.02e-07, + "anciently": 1.02e-07, + "andri": 1.02e-07, + "anthill": 1.02e-07, + "antivenom": 1.02e-07, + "apiary": 1.02e-07, + "apolipoprotein": 1.02e-07, + "arakawa": 1.02e-07, + "arber": 1.02e-07, + "arborist": 1.02e-07, + "arbus": 1.02e-07, + "ardern": 1.02e-07, + "arla": 1.02e-07, + "armaan": 1.02e-07, + "armonk": 1.02e-07, + "arrowverse": 1.02e-07, + "asexually": 1.02e-07, + "asthmatics": 1.02e-07, + "aubergines": 1.02e-07, + "audre": 1.02e-07, + "aveda": 1.02e-07, + "avium": 1.02e-07, + "ayaka": 1.02e-07, + "ayatollahs": 1.02e-07, + "azz": 1.02e-07, + "backhouse": 1.02e-07, + "bactericidal": 1.02e-07, + "badajoz": 1.02e-07, + "bagby": 1.02e-07, + "bahari": 1.02e-07, + "bahl": 1.02e-07, + "bainimarama": 1.02e-07, + "baldacci": 1.02e-07, + "balis": 1.02e-07, + "balle": 1.02e-07, + "balli": 1.02e-07, + "bandh": 1.02e-07, + "banksia": 1.02e-07, + "bankside": 1.02e-07, + "banky": 1.02e-07, + "bannermen": 1.02e-07, + "banquo": 1.02e-07, + "banville": 1.02e-07, + "barbells": 1.02e-07, + "bardon": 1.02e-07, + "barea": 1.02e-07, + "barebones": 1.02e-07, + "barfi": 1.02e-07, + "barkleys": 1.02e-07, + "bartomeu": 1.02e-07, + "battleborn": 1.02e-07, + "beardy": 1.02e-07, + "becaus": 1.02e-07, + "bedoya": 1.02e-07, + "bekele": 1.02e-07, + "belfasts": 1.02e-07, + "benavides": 1.02e-07, + "berenstain": 1.02e-07, + "bergs": 7.08e-08, + "beria": 1.02e-07, + "bernadotte": 1.02e-07, + "besiegers": 1.02e-07, + "bethea": 1.02e-07, + "bew": 1.02e-07, + "bewitch": 1.02e-07, + "bgn": 1.02e-07, + "bhagavan": 1.02e-07, + "bilder": 1.02e-07, + "biped": 1.02e-07, + "birchbox": 1.02e-07, + "birthrates": 1.02e-07, + "bisecting": 1.02e-07, + "bisons": 1.02e-07, + "bivariate": 1.02e-07, + "blastocyst": 1.02e-07, + "bles": 1.02e-07, + "blinn": 1.02e-07, + "bloodwork": 1.02e-07, + "bny": 1.02e-07, + "bocas": 1.02e-07, + "bodysuits": 1.02e-07, + "boffin": 1.02e-07, + "bookkeepers": 1.02e-07, + "bookselling": 1.02e-07, + "boomin": 1.02e-07, + "booo": 1.02e-07, + "borgata": 1.02e-07, + "botrytis": 1.02e-07, + "bowlby": 1.02e-07, + "braes": 1.02e-07, + "braganza": 1.02e-07, + "braise": 1.02e-07, + "brandies": 1.02e-07, + "bransons": 1.02e-07, + "brewsters": 1.02e-07, + "briarcliff": 1.02e-07, + "bricklaying": 1.02e-07, + "brissett": 1.02e-07, + "brockport": 1.02e-07, + "bronwen": 1.02e-07, + "brookland": 1.02e-07, + "bubbas": 1.02e-07, + "buchwald": 1.02e-07, + "burckhardt": 1.02e-07, + "buress": 1.02e-07, + "burgin": 1.02e-07, + "burgle": 1.02e-07, + "bussell": 1.02e-07, + "bwh": 1.02e-07, + "cairos": 1.02e-07, + "calendula": 1.02e-07, + "callouts": 1.02e-07, + "calman": 1.02e-07, + "campden": 1.02e-07, + "candidacies": 1.02e-07, + "cannabidiol": 1.02e-07, + "canyonlands": 1.02e-07, + "carbamazepine": 1.02e-07, + "carlino": 1.02e-07, + "cassowary": 1.02e-07, + "castanets": 1.02e-07, + "catonsville": 1.02e-07, + "cattell": 1.02e-07, + "caulker": 1.02e-07, + "cayetano": 1.02e-07, + "cdw": 1.02e-07, + "cerrado": 1.02e-07, + "cetus": 1.02e-07, + "cge": 1.02e-07, + "chala": 1.02e-07, + "channon": 1.02e-07, + "chanteuse": 1.02e-07, + "chaw": 1.02e-07, + "chelle": 1.02e-07, + "chemistries": 1.02e-07, + "chinchillas": 1.02e-07, + "chirag": 1.02e-07, + "chizuru": 1.02e-07, + "chlorella": 1.02e-07, + "chois": 1.02e-07, + "chrisman": 1.02e-07, + "ciabatta": 1.02e-07, + "ciampa": 1.02e-07, + "cichlid": 1.02e-07, + "cindi": 1.02e-07, + "circumvents": 1.02e-07, + "citrusy": 1.02e-07, + "cjd": 1.02e-07, + "clappers": 1.02e-07, + "clarets": 1.02e-07, + "clarins": 1.02e-07, + "clerc": 1.02e-07, + "climatological": 1.02e-07, + "clouseau": 1.02e-07, + "cnbcs": 1.02e-07, + "cods": 5.25e-08, + "coiffure": 1.02e-07, + "colorings": 1.02e-07, + "columbians": 1.02e-07, + "comdr": 1.02e-07, + "comped": 1.02e-07, + "complexs": 1.02e-07, + "compressibility": 1.02e-07, + "conflates": 1.02e-07, + "continous": 1.02e-07, + "contortion": 1.02e-07, + "corti": 1.02e-07, + "cortices": 1.02e-07, + "coshocton": 1.02e-07, + "costars": 1.02e-07, + "coste": 1.02e-07, + "cotten": 1.02e-07, + "counterpunch": 1.02e-07, + "counterstrike": 1.02e-07, + "craik": 1.02e-07, + "crating": 1.02e-07, + "cricinfo": 1.02e-07, + "criminalise": 1.02e-07, + "crispus": 1.02e-07, + "crumpling": 1.02e-07, + "cryptology": 1.02e-07, + "ctg": 1.02e-07, + "cuneo": 1.02e-07, + "cupp": 1.02e-07, + "curtice": 1.02e-07, + "cyclings": 1.02e-07, + "cyd": 1.02e-07, + "cymbeline": 1.02e-07, + "damson": 1.02e-07, + "dangit": 1.02e-07, + "dangly": 1.02e-07, + "danie": 1.02e-07, + "daryls": 1.02e-07, + "datacenters": 1.02e-07, + "dazzlingly": 1.02e-07, + "deasy": 1.02e-07, + "debye": 1.02e-07, + "deconstructs": 1.02e-07, + "decontaminate": 1.02e-07, + "dedicatory": 1.02e-07, + "deducts": 1.02e-07, + "deferens": 1.02e-07, + "demir": 1.02e-07, + "dendrite": 1.02e-07, + "dentsu": 1.02e-07, + "deoxy": 1.02e-07, + "derring": 1.02e-07, + "desarrollo": 1.02e-07, + "deshawn": 1.02e-07, + "deweys": 1.02e-07, + "diefenbaker": 1.02e-07, + "diferent": 1.02e-07, + "dinna": 1.02e-07, + "disabuse": 1.02e-07, + "discriminative": 1.02e-07, + "disgracing": 1.02e-07, + "diyarbakir": 1.02e-07, + "dli": 1.02e-07, + "dmu": 1.02e-07, + "doco": 1.02e-07, + "dolans": 1.02e-07, + "donmar": 1.02e-07, + "dooney": 1.02e-07, + "doordash": 1.02e-07, + "dorling": 1.02e-07, + "doterra": 1.02e-07, + "doto": 1.02e-07, + "downswing": 1.02e-07, + "draggin": 1.02e-07, + "drazen": 1.02e-07, + "dsk": 1.02e-07, + "duca": 1.02e-07, + "duquette": 1.02e-07, + "durkan": 1.02e-07, + "durrani": 1.02e-07, + "eastgate": 1.02e-07, + "ebbsfleet": 1.02e-07, + "ecclesiae": 1.02e-07, + "ecigs": 1.02e-07, + "effectually": 1.02e-07, + "eiu": 1.02e-07, + "ekta": 1.02e-07, + "electrophilic": 1.02e-07, + "electrophoretic": 1.02e-07, + "elian": 1.02e-07, + "eliseo": 1.02e-07, + "elles": 8.13e-08, + "embezzle": 1.02e-07, + "embroidering": 1.02e-07, + "emcees": 1.02e-07, + "emeril": 1.02e-07, + "emotionality": 1.02e-07, + "employments": 1.02e-07, + "endowing": 1.02e-07, + "engelberg": 1.02e-07, + "enthronement": 1.02e-07, + "epoxide": 1.02e-07, + "eqs": 1.02e-07, + "equatoria": 1.02e-07, + "erling": 1.02e-07, + "esn": 1.02e-07, + "estrus": 1.02e-07, + "europcar": 1.02e-07, + "everlast": 1.02e-07, + "evoque": 1.02e-07, + "excreta": 1.02e-07, + "extemporaneous": 1.02e-07, + "exuberantly": 1.02e-07, + "fado": 1.02e-07, + "faneuil": 1.02e-07, + "fano": 1.02e-07, + "fanpage": 1.02e-07, + "fantasist": 1.02e-07, + "faribault": 1.02e-07, + "faried": 1.02e-07, + "faroese": 1.02e-07, + "fastenings": 1.02e-07, + "fastens": 1.02e-07, + "fathi": 1.02e-07, + "faxon": 1.02e-07, + "fazl": 1.02e-07, + "feuded": 1.02e-07, + "fied": 1.02e-07, + "fieldstone": 1.02e-07, + "finnick": 1.02e-07, + "fitts": 1.02e-07, + "flagon": 1.02e-07, + "flamboyance": 1.02e-07, + "flashdance": 1.02e-07, + "fleisher": 1.02e-07, + "flits": 1.02e-07, + "fluorinated": 1.02e-07, + "fluxus": 1.02e-07, + "fmp": 1.02e-07, + "footholds": 1.02e-07, + "forbear": 1.02e-07, + "forefather": 1.02e-07, + "forres": 1.02e-07, + "frenemy": 1.02e-07, + "frenzel": 1.02e-07, + "fresca": 1.02e-07, + "frew": 1.02e-07, + "frontiersman": 1.02e-07, + "ftf": 1.02e-07, + "fuehrer": 1.02e-07, + "fulda": 1.02e-07, + "funkadelic": 1.02e-07, + "gabaldon": 1.02e-07, + "garofalo": 1.02e-07, + "gascony": 1.02e-07, + "gatsbys": 1.02e-07, + "gbi": 1.02e-07, + "gbu": 1.02e-07, + "geisler": 1.02e-07, + "gendering": 1.02e-07, + "gentility": 1.02e-07, + "geordi": 1.02e-07, + "gergen": 1.02e-07, + "gerstein": 1.02e-07, + "gett": 1.02e-07, + "ghali": 1.02e-07, + "ghislaine": 1.02e-07, + "giblets": 1.02e-07, + "giddiness": 1.02e-07, + "gladio": 1.02e-07, + "glenfiddich": 1.02e-07, + "globose": 1.02e-07, + "globules": 1.02e-07, + "glonass": 1.02e-07, + "glos": 1.02e-07, + "glowering": 1.02e-07, + "goda": 1.02e-07, + "godman": 1.02e-07, + "golde": 1.02e-07, + "gorbachevs": 1.02e-07, + "gorn": 1.02e-07, + "gorod": 1.02e-07, + "goten": 1.02e-07, + "graaff": 1.02e-07, + "granuloma": 1.02e-07, + "greenbank": 1.02e-07, + "greengrass": 1.02e-07, + "greenwell": 1.02e-07, + "groats": 1.02e-07, + "grotty": 1.02e-07, + "gruffalo": 1.02e-07, + "guffaw": 1.02e-07, + "gummed": 1.02e-07, + "gundersen": 1.02e-07, + "gunpla": 1.02e-07, + "guttenberg": 1.02e-07, + "guzzler": 1.02e-07, + "gyarados": 1.02e-07, + "gyeong": 1.02e-07, + "gygax": 1.02e-07, + "habilitation": 1.02e-07, + "hagler": 1.02e-07, + "hairdos": 1.02e-07, + "halloumi": 1.02e-07, + "handcraft": 1.02e-07, + "hande": 1.02e-07, + "hardik": 1.02e-07, + "harkens": 1.02e-07, + "harmonizes": 1.02e-07, + "hasson": 1.02e-07, + "headwater": 1.02e-07, + "hellblazer": 1.02e-07, + "henle": 1.02e-07, + "henman": 1.02e-07, + "hermia": 1.02e-07, + "herreras": 1.02e-07, + "himmlers": 1.02e-07, + "hmmmmmm": 1.02e-07, + "hooda": 1.02e-07, + "hooped": 1.02e-07, + "hoose": 1.02e-07, + "hopps": 1.02e-07, + "housatonic": 1.02e-07, + "housebreaking": 1.02e-07, + "houseful": 1.02e-07, + "howsoever": 1.02e-07, + "hubbles": 1.02e-07, + "huggy": 1.02e-07, + "hulkenberg": 1.02e-07, + "humankinds": 1.02e-07, + "humbucker": 1.02e-07, + "hummers": 1.02e-07, + "humphrys": 1.02e-07, + "hux": 1.02e-07, + "hwi": 1.02e-07, + "hydes": 1.02e-07, + "hyeong": 1.02e-07, + "hyogo": 1.02e-07, + "hypercube": 1.02e-07, + "hypnotherapist": 1.02e-07, + "iat": 1.02e-07, + "ibbotson": 1.02e-07, + "icb": 1.02e-07, + "idles": 1.02e-07, + "iike": 1.02e-07, + "ild": 1.02e-07, + "immediatly": 1.02e-07, + "immunoassay": 1.02e-07, + "immunogenicity": 1.02e-07, + "incarcerating": 1.02e-07, + "indents": 1.02e-07, + "indicia": 1.02e-07, + "infectivity": 1.02e-07, + "infringer": 1.02e-07, + "ingolstadt": 1.02e-07, + "intermezzo": 1.02e-07, + "intermissions": 1.02e-07, + "interprovincial": 1.02e-07, + "intex": 1.02e-07, + "ioe": 1.02e-07, + "iola": 1.02e-07, + "irian": 1.02e-07, + "irm": 1.02e-07, + "ironton": 1.02e-07, + "isg": 1.02e-07, + "iskander": 1.02e-07, + "iste": 1.02e-07, + "itchiness": 1.02e-07, + "itx": 1.02e-07, + "iweala": 1.02e-07, + "ized": 1.02e-07, + "izombie": 1.02e-07, + "jabberwocky": 1.02e-07, + "jacinda": 1.02e-07, + "jahr": 1.02e-07, + "jailbreaking": 1.02e-07, + "jala": 1.02e-07, + "jamals": 1.02e-07, + "jamarcus": 1.02e-07, + "jamin": 1.02e-07, + "jati": 1.02e-07, + "jesss": 1.02e-07, + "jiggles": 1.02e-07, + "jiraiya": 1.02e-07, + "jobson": 1.02e-07, + "josefa": 1.02e-07, + "jowell": 1.02e-07, + "jsoc": 1.02e-07, + "junji": 1.02e-07, + "jwh": 1.02e-07, + "jwt": 1.02e-07, + "kait": 1.02e-07, + "kalamata": 1.02e-07, + "katoomba": 1.02e-07, + "kdf": 1.02e-07, + "kercher": 1.02e-07, + "keystones": 1.02e-07, + "khalids": 1.02e-07, + "kilobytes": 1.02e-07, + "kingstons": 1.02e-07, + "kirche": 1.02e-07, + "kitesurfing": 1.02e-07, + "kitimat": 1.02e-07, + "kiyo": 1.02e-07, + "knysna": 1.02e-07, + "kob": 1.02e-07, + "koolhaas": 1.02e-07, + "kringle": 1.02e-07, + "kristens": 1.02e-07, + "kuda": 1.02e-07, + "kulaks": 1.02e-07, + "kutty": 1.02e-07, + "kuya": 1.02e-07, + "kzn": 1.02e-07, + "labuan": 1.02e-07, + "lachman": 1.02e-07, + "ladino": 1.02e-07, + "laevis": 1.02e-07, + "lalonde": 1.02e-07, + "lamborghinis": 6.46e-08, + "lampoons": 9.77e-08, + "landscapers": 1.02e-07, + "laplacian": 1.02e-07, + "lasered": 1.02e-07, + "lateralis": 1.02e-07, + "laundress": 1.02e-07, + "lavalle": 1.02e-07, + "lawry": 1.02e-07, + "lazenby": 1.02e-07, + "leb": 1.02e-07, + "leeuwen": 1.02e-07, + "legon": 1.02e-07, + "levodopa": 1.02e-07, + "liberalised": 1.02e-07, + "liebling": 1.02e-07, + "lindau": 1.02e-07, + "lindseys": 1.02e-07, + "linesmen": 1.02e-07, + "linford": 1.02e-07, + "lingam": 1.02e-07, + "linkup": 1.02e-07, + "lipson": 1.02e-07, + "lipsync": 1.02e-07, + "lir": 1.02e-07, + "lista": 1.02e-07, + "listenable": 1.02e-07, + "lld": 1.02e-07, + "loblaw": 1.02e-07, + "locational": 1.02e-07, + "loja": 1.02e-07, + "lokpal": 1.02e-07, + "lossiemouth": 1.02e-07, + "louisburg": 1.02e-07, + "loveth": 1.02e-07, + "lpt": 1.02e-07, + "lucey": 1.02e-07, + "luciferase": 1.02e-07, + "luddites": 1.02e-07, + "lularoe": 1.02e-07, + "luntz": 1.02e-07, + "lutes": 1.02e-07, + "lynam": 1.02e-07, + "maces": 1.02e-07, + "macgillivray": 1.02e-07, + "maduros": 1.02e-07, + "magazin": 1.02e-07, + "mahila": 1.02e-07, + "malis": 1.02e-07, + "malwa": 1.02e-07, + "mandamus": 1.02e-07, + "manteca": 1.02e-07, + "mapplethorpe": 1.02e-07, + "marcotte": 1.02e-07, + "marechal": 1.02e-07, + "marginals": 1.02e-07, + "marshaled": 1.02e-07, + "marvelling": 1.02e-07, + "masato": 1.02e-07, + "maslany": 1.02e-07, + "mataram": 1.02e-07, + "matchbook": 1.02e-07, + "maximised": 1.02e-07, + "maybury": 1.02e-07, + "mbk": 1.02e-07, + "mbo": 1.02e-07, + "mccarrick": 1.02e-07, + "mcgills": 1.02e-07, + "mcminn": 1.02e-07, + "mcmurtry": 1.02e-07, + "mcnaught": 1.02e-07, + "mcquarrie": 1.02e-07, + "mctaggart": 1.02e-07, + "meadowbrook": 1.02e-07, + "mealworms": 1.02e-07, + "meccano": 1.02e-07, + "mechanicsville": 1.02e-07, + "megamind": 1.02e-07, + "meighan": 1.02e-07, + "melfi": 1.02e-07, + "merkin": 1.02e-07, + "merlo": 1.02e-07, + "metallics": 1.02e-07, + "metastasize": 1.02e-07, + "methoxy": 1.02e-07, + "metrocard": 1.02e-07, + "mez": 1.02e-07, + "mhealth": 1.02e-07, + "micd": 1.02e-07, + "microbreweries": 1.02e-07, + "microtransactions": 1.02e-07, + "midsized": 1.02e-07, + "militantly": 1.02e-07, + "millikan": 1.02e-07, + "milltown": 1.02e-07, + "millwright": 1.02e-07, + "minogues": 1.02e-07, + "mirabel": 1.02e-07, + "misstated": 1.02e-07, + "mistreats": 1.02e-07, + "mixologist": 1.02e-07, + "moffats": 1.02e-07, + "monograms": 1.02e-07, + "moonlights": 1.02e-07, + "mousy": 1.02e-07, + "mouvement": 1.02e-07, + "mows": 1.02e-07, + "mpb": 1.02e-07, + "mpe": 1.02e-07, + "msq": 1.02e-07, + "muffet": 1.02e-07, + "multipolar": 1.02e-07, + "muro": 1.02e-07, + "museu": 1.02e-07, + "musser": 1.02e-07, + "musters": 1.02e-07, + "muthafucka": 1.02e-07, + "mux": 1.02e-07, + "myrcella": 1.02e-07, + "myriads": 1.02e-07, + "nadim": 1.02e-07, + "nandy": 1.02e-07, + "nanga": 1.02e-07, + "napo": 1.02e-07, + "nariman": 1.02e-07, + "narine": 1.02e-07, + "narrowband": 1.02e-07, + "nasally": 1.02e-07, + "nasd": 1.02e-07, + "naugatuck": 1.02e-07, + "nazaire": 1.02e-07, + "ncsu": 1.02e-07, + "nebulizer": 1.02e-07, + "necessaries": 1.02e-07, + "nedbank": 1.02e-07, + "neologism": 1.02e-07, + "neologisms": 1.02e-07, + "nesmith": 1.02e-07, + "neubauer": 1.02e-07, + "neuen": 1.02e-07, + "neuropeptide": 1.02e-07, + "nevsky": 1.02e-07, + "newlin": 1.02e-07, + "niaid": 1.02e-07, + "nickie": 1.02e-07, + "nickleback": 1.02e-07, + "nicollet": 1.02e-07, + "nissa": 1.02e-07, + "nna": 1.02e-07, + "noncommutative": 1.02e-07, + "noot": 1.02e-07, + "norges": 1.02e-07, + "norrell": 1.02e-07, + "nossa": 1.02e-07, + "nostromo": 1.02e-07, + "notepads": 1.02e-07, + "noura": 1.02e-07, + "ntb": 1.02e-07, + "nuestro": 1.02e-07, + "nulla": 1.02e-07, + "nuttin": 1.02e-07, + "nyfw": 1.02e-07, + "oaklawn": 1.02e-07, + "obdurate": 1.02e-07, + "obst": 1.02e-07, + "okd": 1.02e-07, + "okonjo": 1.02e-07, + "olio": 1.02e-07, + "ology": 1.02e-07, + "openshaw": 1.02e-07, + "oq": 1.02e-07, + "orchestrations": 1.02e-07, + "oribe": 1.02e-07, + "orpik": 1.02e-07, + "orthonormal": 1.02e-07, + "orval": 1.02e-07, + "osf": 1.02e-07, + "osmo": 1.02e-07, + "otranto": 1.02e-07, + "ouellette": 1.02e-07, + "outcroppings": 1.02e-07, + "outdoing": 1.02e-07, + "outrunning": 1.02e-07, + "overawed": 1.02e-07, + "oversimplify": 1.02e-07, + "owers": 1.02e-07, + "pagliacci": 1.02e-07, + "palestines": 1.02e-07, + "pallister": 1.02e-07, + "palmeiras": 1.02e-07, + "pandan": 1.02e-07, + "pandu": 1.02e-07, + "panhellenic": 1.02e-07, + "panjang": 1.02e-07, + "panko": 1.02e-07, + "parada": 1.02e-07, + "parisienne": 1.02e-07, + "parrotfish": 1.02e-07, + "parsers": 1.02e-07, + "patta": 1.02e-07, + "pegboard": 1.02e-07, + "pelini": 1.02e-07, + "pendejo": 1.02e-07, + "peps": 9.77e-08, + "pepi": 1.02e-07, + "perine": 1.02e-07, + "periodization": 1.02e-07, + "perseveres": 1.02e-07, + "peston": 1.02e-07, + "philanderer": 1.02e-07, + "philipps": 1.02e-07, + "pictionary": 1.02e-07, + "piercy": 1.02e-07, + "pieta": 1.02e-07, + "pillared": 1.02e-07, + "pinson": 1.02e-07, + "pjanic": 1.02e-07, + "pleasers": 1.02e-07, + "pleasured": 1.02e-07, + "ples": 1.02e-07, + "plunked": 1.02e-07, + "pluton": 1.02e-07, + "podiatric": 1.02e-07, + "poetess": 1.02e-07, + "polecat": 1.02e-07, + "polski": 1.02e-07, + "ponti": 1.02e-07, + "popa": 1.02e-07, + "porfirio": 1.02e-07, + "posies": 1.02e-07, + "pree": 1.02e-07, + "presbyterianism": 1.02e-07, + "presente": 1.02e-07, + "prest": 1.02e-07, + "presti": 1.02e-07, + "prestwich": 1.02e-07, + "pretest": 1.02e-07, + "promethazine": 1.02e-07, + "propagandistic": 1.02e-07, + "provencal": 1.02e-07, + "provera": 1.02e-07, + "ptm": 1.02e-07, + "puncheon": 1.02e-07, + "pvdf": 1.02e-07, + "pyrimidine": 1.02e-07, + "quadruped": 1.02e-07, + "quarterdeck": 1.02e-07, + "quetzal": 1.02e-07, + "quieten": 1.02e-07, + "quisling": 1.02e-07, + "qw": 1.02e-07, + "rachis": 1.02e-07, + "rahu": 1.02e-07, + "raichu": 1.02e-07, + "rajnath": 1.02e-07, + "rakish": 1.02e-07, + "ramblin": 1.02e-07, + "rameau": 1.02e-07, + "rappin": 1.02e-07, + "ratepayer": 1.02e-07, + "ravin": 1.02e-07, + "raws": 6.46e-08, + "rebook": 1.02e-07, + "reddening": 1.02e-07, + "reddys": 1.02e-07, + "redlegs": 1.02e-07, + "redressed": 1.02e-07, + "redrew": 1.02e-07, + "reductio": 1.02e-07, + "redwing": 1.02e-07, + "reframed": 1.02e-07, + "remapping": 1.02e-07, + "rencontre": 1.02e-07, + "renz": 1.02e-07, + "reorganising": 1.02e-07, + "republique": 1.02e-07, + "repurchases": 1.02e-07, + "resounded": 1.02e-07, + "retargeting": 1.02e-07, + "retinoid": 1.02e-07, + "retinoids": 1.02e-07, + "revenants": 1.02e-07, + "reversibility": 1.02e-07, + "righter": 1.02e-07, + "rigueur": 1.02e-07, + "ringlets": 1.02e-07, + "rmd": 1.02e-07, + "robux": 1.02e-07, + "rochesters": 1.02e-07, + "rolleston": 1.02e-07, + "romanticised": 1.02e-07, + "roney": 1.02e-07, + "roomier": 1.02e-07, + "rooter": 1.02e-07, + "rotenberg": 1.02e-07, + "royall": 1.02e-07, + "rul": 1.02e-07, + "rustles": 1.02e-07, + "sahin": 1.02e-07, + "saiga": 1.02e-07, + "salop": 1.02e-07, + "saman": 1.02e-07, + "samp": 1.02e-07, + "sanae": 1.02e-07, + "sanam": 1.02e-07, + "saratov": 1.02e-07, + "saric": 1.02e-07, + "satisfactions": 1.02e-07, + "saurus": 1.02e-07, + "savannahs": 9.55e-08, + "savita": 1.02e-07, + "savy": 1.02e-07, + "scapegoated": 1.02e-07, + "scarabs": 1.02e-07, + "scarlatti": 1.02e-07, + "schlemmer": 1.02e-07, + "scholasticism": 1.02e-07, + "schumers": 1.02e-07, + "schurz": 1.02e-07, + "seele": 1.02e-07, + "segmenting": 1.02e-07, + "seme": 1.02e-07, + "semiarid": 1.02e-07, + "sergent": 1.02e-07, + "serialised": 1.02e-07, + "serverless": 1.02e-07, + "settin": 1.02e-07, + "sfpd": 1.02e-07, + "sgh": 1.02e-07, + "shannan": 1.02e-07, + "sheeted": 1.02e-07, + "sheltons": 1.02e-07, + "shinohara": 1.02e-07, + "shitted": 1.02e-07, + "shoup": 1.02e-07, + "shunts": 1.02e-07, + "sidesteps": 1.02e-07, + "siglo": 1.02e-07, + "sinnott": 1.02e-07, + "sirena": 1.02e-07, + "sisco": 1.02e-07, + "situating": 1.02e-07, + "skc": 1.02e-07, + "skimping": 1.02e-07, + "slake": 1.02e-07, + "sleaford": 1.02e-07, + "sleepily": 1.02e-07, + "sluggers": 1.02e-07, + "smashbox": 1.02e-07, + "smolder": 1.02e-07, + "snowbirds": 1.02e-07, + "solveig": 1.02e-07, + "spacebar": 1.02e-07, + "spanier": 1.02e-07, + "spano": 1.02e-07, + "spatiotemporal": 1.02e-07, + "spaying": 1.02e-07, + "speedboats": 1.02e-07, + "spitter": 1.02e-07, + "spongiform": 1.02e-07, + "spriggs": 1.02e-07, + "srpska": 1.02e-07, + "stagnates": 1.02e-07, + "standpoints": 1.02e-07, + "starlin": 1.02e-07, + "stastny": 1.02e-07, + "steppers": 1.02e-07, + "stirner": 1.02e-07, + "stolid": 1.02e-07, + "streptococcal": 1.02e-07, + "studer": 1.02e-07, + "stuf": 1.02e-07, + "stupefying": 1.02e-07, + "stuy": 1.02e-07, + "subcarrier": 1.02e-07, + "subdistrict": 1.02e-07, + "subfields": 1.02e-07, + "subglacial": 1.02e-07, + "sujata": 1.02e-07, + "sulfonate": 1.02e-07, + "sulphurous": 1.02e-07, + "summerfest": 1.02e-07, + "superbug": 1.02e-07, + "supercenter": 1.02e-07, + "superdrug": 1.02e-07, + "superpowered": 1.02e-07, + "survivals": 1.02e-07, + "swampland": 1.02e-07, + "swanwick": 1.02e-07, + "swifty": 1.02e-07, + "symplectic": 1.02e-07, + "tafsir": 1.02e-07, + "tages": 1.02e-07, + "taher": 1.02e-07, + "taiyuan": 1.02e-07, + "tamera": 1.02e-07, + "tanana": 1.02e-07, + "taq": 1.02e-07, + "taqueria": 1.02e-07, + "tastemakers": 1.02e-07, + "tbn": 1.02e-07, + "teagan": 1.02e-07, + "tediously": 1.02e-07, + "teignmouth": 1.02e-07, + "temperamentally": 1.02e-07, + "terminologies": 1.02e-07, + "territoriality": 1.02e-07, + "tetrahydrocannabinol": 1.02e-07, + "tetralogy": 1.02e-07, + "tfsa": 1.02e-07, + "thakkar": 1.02e-07, + "thornburg": 1.02e-07, + "thornes": 1.02e-07, + "thymine": 1.02e-07, + "tillers": 1.02e-07, + "tintoretto": 1.02e-07, + "tiro": 1.02e-07, + "tirol": 1.02e-07, + "titillation": 1.02e-07, + "tobit": 1.02e-07, + "togashi": 1.02e-07, + "toggling": 1.02e-07, + "tomodachi": 1.02e-07, + "toogood": 1.02e-07, + "tooo": 1.02e-07, + "topline": 1.02e-07, + "topographically": 1.02e-07, + "tortola": 1.02e-07, + "townies": 1.02e-07, + "toxoplasma": 1.02e-07, + "tracheostomy": 1.02e-07, + "traffics": 1.02e-07, + "translocated": 1.02e-07, + "translocations": 1.02e-07, + "transunion": 1.02e-07, + "trendiest": 1.02e-07, + "triggs": 1.02e-07, + "truculent": 1.02e-07, + "tubed": 1.02e-07, + "tuke": 1.02e-07, + "tunein": 1.02e-07, + "turbofan": 1.02e-07, + "turnbuckle": 1.02e-07, + "turturro": 1.02e-07, + "tuvok": 1.02e-07, + "tvnz": 1.02e-07, + "tykes": 1.02e-07, + "typify": 1.02e-07, + "tyrolean": 1.02e-07, + "uco": 1.02e-07, + "ucu": 1.02e-07, + "uefas": 1.02e-07, + "uhr": 1.02e-07, + "umaga": 1.02e-07, + "unbox": 1.02e-07, + "unction": 1.02e-07, + "undeliverable": 1.02e-07, + "understudied": 1.02e-07, + "unfastened": 1.02e-07, + "unframed": 1.02e-07, + "unloving": 1.02e-07, + "unmentionable": 1.02e-07, + "unpasteurized": 1.02e-07, + "unrewarded": 1.02e-07, + "updo": 1.02e-07, + "upshaw": 1.02e-07, + "uptons": 1.02e-07, + "urbanised": 1.02e-07, + "ureter": 1.02e-07, + "usdt": 1.02e-07, + "usnm": 1.02e-07, + "uswnt": 1.02e-07, + "valeant": 1.02e-07, + "valencias": 1.02e-07, + "valise": 1.02e-07, + "vandana": 1.02e-07, + "vassily": 1.02e-07, + "veliko": 1.02e-07, + "vfd": 1.02e-07, + "vha": 1.02e-07, + "vibrantly": 1.02e-07, + "vier": 1.02e-07, + "virunga": 1.02e-07, + "visualizes": 1.02e-07, + "vivir": 1.02e-07, + "vocalized": 1.02e-07, + "vokes": 1.02e-07, + "voltmeter": 1.02e-07, + "voxels": 1.02e-07, + "vsd": 1.02e-07, + "vtc": 1.02e-07, + "waay": 1.02e-07, + "wadia": 1.02e-07, + "waldheim": 1.02e-07, + "waterton": 1.02e-07, + "wayfarers": 1.02e-07, + "webmasters": 1.02e-07, + "weddle": 1.02e-07, + "weightlifters": 1.02e-07, + "wellbore": 1.02e-07, + "wellstone": 1.02e-07, + "westmore": 1.02e-07, + "wgs": 1.02e-07, + "whately": 1.02e-07, + "whirr": 1.02e-07, + "whitsun": 1.02e-07, + "widdle": 1.02e-07, + "wigans": 1.02e-07, + "wiggs": 1.02e-07, + "wilke": 1.02e-07, + "windage": 1.02e-07, + "windlass": 1.02e-07, + "wingnut": 1.02e-07, + "wised": 1.02e-07, + "wissenschaft": 1.02e-07, + "witold": 1.02e-07, + "woakes": 1.02e-07, + "wolde": 1.02e-07, + "wools": 1.02e-07, + "wpg": 1.02e-07, + "wre": 1.02e-07, + "wrightsville": 1.02e-07, + "wyre": 1.02e-07, + "xh": 1.02e-07, + "xherdan": 1.02e-07, + "xliii": 1.02e-07, + "xylose": 1.02e-07, + "yadi": 1.02e-07, + "yager": 1.02e-07, + "yayo": 1.02e-07, + "yordan": 1.02e-07, + "youngish": 1.02e-07, + "yuans": 1.02e-07, + "yudhoyono": 1.02e-07, + "yur": 1.02e-07, + "zapatista": 1.02e-07, + "zillions": 1.02e-07, + "zipcar": 1.02e-07, + "zither": 1.02e-07, + "zj": 1.02e-07, + "zoomer": 1.02e-07, + "zy": 1.02e-07, + "abbs": 1e-07, + "abellio": 1e-07, + "absurdum": 1e-07, + "adamantine": 1e-07, + "adic": 1e-07, + "adjourns": 1e-07, + "adjuvants": 1e-07, + "adsorbent": 1e-07, + "aee": 1e-07, + "aem": 1e-07, + "aerodromes": 1e-07, + "aftab": 1e-07, + "agostini": 1e-07, + "ahc": 1e-07, + "ahly": 1e-07, + "aiff": 1e-07, + "akihito": 1e-07, + "akil": 1e-07, + "akrotiri": 1e-07, + "akward": 1e-07, + "alakazam": 1e-07, + "aleutians": 1e-07, + "alfies": 1e-07, + "alianza": 1e-07, + "allans": 1e-07, + "allegan": 1e-07, + "allgood": 1e-07, + "alloyed": 1e-07, + "amenhotep": 1e-07, + "amphibia": 1e-07, + "analogical": 1e-07, + "ance": 1e-07, + "anchorages": 1e-07, + "andere": 1e-07, + "andree": 1e-07, + "andris": 1e-07, + "animist": 1e-07, + "anirudh": 1e-07, + "anning": 1e-07, + "anticholinergic": 1e-07, + "antioquia": 1e-07, + "apf": 1e-07, + "aplastic": 1e-07, + "aqours": 1e-07, + "aramark": 1e-07, + "archaeopteryx": 1e-07, + "artha": 1e-07, + "artificiality": 1e-07, + "ascendency": 1e-07, + "ascorbate": 1e-07, + "ashbrook": 1e-07, + "ashlyn": 1e-07, + "ashman": 1e-07, + "asmodeus": 1e-07, + "assertively": 1e-07, + "asshats": 1e-07, + "atkinsons": 1e-07, + "auston": 1e-07, + "austronesian": 1e-07, + "avowedly": 1e-07, + "ayano": 1e-07, + "ayling": 1e-07, + "azizi": 1e-07, + "azmi": 1e-07, + "bacca": 1e-07, + "bacchanal": 1e-07, + "backstabber": 1e-07, + "bacteriophages": 1e-07, + "badd": 1e-07, + "baggio": 1e-07, + "baldur": 1e-07, + "balfe": 1e-07, + "ballsack": 1e-07, + "balogun": 1e-07, + "banksters": 1e-07, + "bardstown": 1e-07, + "baris": 1.15e-08, + "barkeep": 1e-07, + "basest": 1e-07, + "basheer": 1e-07, + "basilar": 1e-07, + "batang": 1e-07, + "bather": 1e-07, + "baudrillard": 1e-07, + "bayfront": 1e-07, + "beachwear": 1e-07, + "beattys": 1e-07, + "bedingfield": 1e-07, + "beemer": 1e-07, + "bekker": 1e-07, + "belfield": 1e-07, + "belmonte": 1e-07, + "belugas": 1e-07, + "bemba": 1e-07, + "bening": 1e-07, + "bera": 1e-07, + "bergers": 1e-07, + "bermudian": 1e-07, + "besmirch": 1e-07, + "bhagwati": 1e-07, + "bhavani": 1e-07, + "bhima": 1e-07, + "bhm": 1e-07, + "bickle": 1e-07, + "bigass": 1e-07, + "biggy": 1e-07, + "biloba": 1e-07, + "biotite": 1e-07, + "bismol": 1e-07, + "bivens": 1e-07, + "bjelke": 1e-07, + "blabber": 1e-07, + "blackhole": 1e-07, + "blackmails": 1e-07, + "blading": 1e-07, + "blaines": 1e-07, + "blancs": 5.75e-08, + "blazon": 1e-07, + "bleaches": 1e-07, + "bledisloe": 1e-07, + "bloodsuckers": 1e-07, + "bobbleheads": 1e-07, + "bobsledder": 1e-07, + "boff": 1e-07, + "boilermaker": 1e-07, + "borderers": 1e-07, + "borelli": 1e-07, + "borst": 1e-07, + "bostic": 1e-07, + "bown": 1e-07, + "boyars": 1e-07, + "brahimi": 1e-07, + "braising": 1e-07, + "brak": 1e-07, + "brassiere": 1e-07, + "brearley": 1e-07, + "breese": 1e-07, + "brennen": 1e-07, + "brexiters": 1e-07, + "brittanys": 1e-07, + "broadhead": 1e-07, + "bronchi": 1e-07, + "bronzing": 1e-07, + "brutalize": 1e-07, + "bth": 1e-07, + "bugti": 1e-07, + "bulgur": 1e-07, + "bullys": 1e-07, + "bumpin": 1e-07, + "buttercups": 1e-07, + "caballo": 1e-07, + "caboolture": 1e-07, + "caesarian": 1e-07, + "caetano": 1e-07, + "cahills": 1e-07, + "cajamarca": 1e-07, + "calcio": 1e-07, + "calmodulin": 1e-07, + "campagne": 1e-07, + "campesinos": 1e-07, + "camryn": 1e-07, + "caney": 1e-07, + "canisius": 1e-07, + "canner": 1e-07, + "capitulating": 1e-07, + "carder": 1e-07, + "caribbeans": 6.76e-08, + "carlas": 1e-07, + "carpathia": 1e-07, + "carrack": 1e-07, + "casagrande": 1e-07, + "castelo": 1e-07, + "cattleman": 1e-07, + "caufield": 1e-07, + "cays": 1e-07, + "ceelo": 1e-07, + "celestials": 1e-07, + "cere": 1e-07, + "ceti": 1e-07, + "chancey": 1e-07, + "chancing": 1e-07, + "chartist": 1e-07, + "chazz": 1e-07, + "chicanos": 1e-07, + "chickadees": 1e-07, + "chingford": 1e-07, + "chita": 1e-07, + "christenings": 1e-07, + "christianson": 1e-07, + "chubs": 1e-07, + "chunking": 1e-07, + "chup": 1e-07, + "citalopram": 1e-07, + "citv": 1e-07, + "clerestory": 1e-07, + "clods": 1e-07, + "cloke": 1e-07, + "cmas": 5.13e-08, + "coan": 1e-07, + "coble": 1e-07, + "cocooned": 1e-07, + "cofe": 1e-07, + "cols": 1e-07, + "combes": 1e-07, + "combiner": 1e-07, + "comi": 1e-07, + "comicbook": 1e-07, + "comox": 1e-07, + "compostable": 1e-07, + "computerization": 1e-07, + "concordant": 1e-07, + "confessionals": 1e-07, + "congenitally": 1e-07, + "connex": 1e-07, + "conviviality": 1e-07, + "cookstown": 1e-07, + "coolpix": 1e-07, + "cooma": 1e-07, + "copay": 1e-07, + "copenhagens": 1e-07, + "copulating": 1e-07, + "coras": 1e-07, + "corydon": 1e-07, + "cosign": 1e-07, + "courser": 1e-07, + "cowichan": 1e-07, + "coxe": 1e-07, + "crapo": 1e-07, + "crematoria": 1e-07, + "crewneck": 1e-07, + "crinkly": 1e-07, + "crocuses": 1e-07, + "crosscheck": 1e-07, + "crossdressers": 1e-07, + "crpf": 1e-07, + "cryogenically": 1e-07, + "cryptosporidium": 1e-07, + "ctb": 1e-07, + "cuckolded": 1e-07, + "cultivable": 1e-07, + "cupar": 1e-07, + "curiousity": 1e-07, + "cvm": 1e-07, + "cwmbran": 1e-07, + "cynthias": 1e-07, + "daal": 1e-07, + "damns": 1e-07, + "damodar": 1e-07, + "danna": 1e-07, + "dannii": 1e-07, + "darton": 1e-07, + "daubed": 1e-07, + "dazzler": 1e-07, + "dealey": 1e-07, + "deana": 1e-07, + "debasing": 1e-07, + "decelerated": 1e-07, + "decembers": 1e-07, + "decrement": 1e-07, + "definitional": 1e-07, + "dehumanising": 1e-07, + "delmas": 1e-07, + "demoting": 1e-07, + "denki": 1e-07, + "denney": 1e-07, + "denson": 1e-07, + "denting": 1e-07, + "deputed": 1e-07, + "derk": 1e-07, + "dermatologic": 1e-07, + "derr": 1e-07, + "dethroning": 1e-07, + "devens": 1e-07, + "dhanbad": 1e-07, + "dhoti": 1e-07, + "dhruv": 1e-07, + "diag": 1e-07, + "diaphragms": 1e-07, + "diffusivity": 1e-07, + "dimerization": 1e-07, + "dimmable": 1e-07, + "dinan": 1e-07, + "dionysian": 1e-07, + "disavowing": 1e-07, + "discours": 1e-07, + "disha": 1e-07, + "dispersions": 1e-07, + "dispiriting": 1e-07, + "disputable": 1e-07, + "dissociates": 1e-07, + "dng": 1e-07, + "doctrinaire": 1e-07, + "doddle": 1e-07, + "dodi": 1e-07, + "dods": 9.12e-08, + "doggos": 1e-07, + "dogmatically": 1e-07, + "doilies": 1e-07, + "donno": 1e-07, + "dors": 1e-07, + "dows": 6.03e-08, + "dreher": 1e-07, + "driveline": 1e-07, + "drona": 1e-07, + "dubnyk": 1e-07, + "dubz": 1e-07, + "dul": 1e-07, + "dulcie": 1e-07, + "dumfriesshire": 1e-07, + "duna": 1e-07, + "durex": 1e-07, + "dvc": 1e-07, + "earthsea": 1e-07, + "eban": 1e-07, + "ebates": 1e-07, + "ebbw": 1e-07, + "ecker": 1e-07, + "economize": 1e-07, + "edgartown": 1e-07, + "edr": 1e-07, + "edtech": 1e-07, + "edulis": 1e-07, + "edw": 1e-07, + "edy": 1e-07, + "eeh": 1e-07, + "efsa": 1e-07, + "eif": 1e-07, + "ejaculating": 1e-07, + "elkington": 1e-07, + "ellice": 1e-07, + "embarassment": 1e-07, + "embarrasing": 1e-07, + "emetic": 1e-07, + "emmer": 1e-07, + "empresa": 1e-07, + "emrys": 1e-07, + "enlightens": 1e-07, + "enneagram": 1e-07, + "entertainingly": 1e-07, + "ephrata": 1e-07, + "epm": 1e-07, + "equiv": 1e-07, + "erotically": 1e-07, + "etter": 1e-07, + "euv": 1e-07, + "evar": 1e-07, + "evasions": 1e-07, + "evatt": 1e-07, + "evm": 1e-07, + "excell": 1e-07, + "experi": 1e-07, + "fairburn": 1e-07, + "famu": 1e-07, + "fapping": 1e-07, + "farrel": 1e-07, + "faustino": 1e-07, + "favres": 1e-07, + "fazal": 1e-07, + "fecking": 1e-07, + "feedlot": 1e-07, + "fends": 1e-07, + "ferd": 1e-07, + "ffr": 1e-07, + "fiberboard": 1e-07, + "fiero": 1e-07, + "finks": 1e-07, + "fiorello": 1e-07, + "flavorless": 1e-07, + "flexural": 1e-07, + "flied": 1e-07, + "flitted": 1e-07, + "floatation": 1e-07, + "floodgate": 1e-07, + "fors": 1e-07, + "fowey": 1e-07, + "freeplay": 1e-07, + "fricke": 1e-07, + "fse": 1e-07, + "fumarate": 1e-07, + "funner": 1e-07, + "furr": 1e-07, + "furze": 1e-07, + "futebol": 1e-07, + "galatia": 1e-07, + "galil": 1e-07, + "gascoyne": 1e-07, + "gasper": 1e-07, + "gastropod": 1e-07, + "gazi": 1e-07, + "gdb": 1e-07, + "gdl": 1e-07, + "gearshift": 1e-07, + "geeze": 1e-07, + "gegen": 1e-07, + "gemara": 1e-07, + "gemmas": 1e-07, + "genovia": 1e-07, + "gerrys": 1e-07, + "gibbet": 1e-07, + "ginter": 1e-07, + "girish": 1e-07, + "girvan": 1e-07, + "gks": 1e-07, + "gmelin": 1e-07, + "golems": 1e-07, + "goodland": 1e-07, + "goodmorning": 1e-07, + "gooood": 1e-07, + "govs": 1e-07, + "grea": 1e-07, + "greenness": 1e-07, + "grewal": 1e-07, + "greyscale": 1e-07, + "gropes": 1e-07, + "grossness": 1e-07, + "gtn": 1e-07, + "guerreros": 7.59e-08, + "guesstimate": 1e-07, + "guesting": 1e-07, + "guillory": 1e-07, + "guiltless": 1e-07, + "guro": 1e-07, + "guzan": 1e-07, + "gymkhana": 1e-07, + "haarp": 1e-07, + "haloperidol": 1e-07, + "halsall": 1e-07, + "hamra": 1e-07, + "hamsa": 1e-07, + "hardheaded": 1e-07, + "harf": 1e-07, + "harlin": 1e-07, + "harriets": 1e-07, + "hasse": 1e-07, + "haug": 1e-07, + "hausdorff": 1e-07, + "haussmann": 1e-07, + "hautes": 1e-07, + "healthiness": 1e-07, + "heathland": 1e-07, + "heckman": 1e-07, + "heins": 1e-07, + "helman": 1e-07, + "herriman": 1e-07, + "hertel": 1e-07, + "hessen": 1e-07, + "hewitts": 1e-07, + "hila": 1e-07, + "hillyard": 1e-07, + "himiko": 1e-07, + "hinrich": 1e-07, + "hma": 1e-07, + "hoarsely": 1e-07, + "hollenbeck": 1e-07, + "holz": 1e-07, + "homestretch": 1e-07, + "homewrecker": 1e-07, + "hopson": 1e-07, + "hornchurch": 1e-07, + "housemaids": 1e-07, + "hrv": 1e-07, + "hsiu": 1e-07, + "hth": 1e-07, + "huddles": 1e-07, + "humbler": 1e-07, + "hurdy": 1e-07, + "husted": 1e-07, + "hvar": 1e-07, + "hve": 1e-07, + "hyacinths": 1e-07, + "hydrophone": 1e-07, + "hydroquinone": 1e-07, + "hyuga": 1e-07, + "ianto": 1e-07, + "icehouse": 1e-07, + "idiocracy": 1e-07, + "ifip": 1e-07, + "iftikhar": 1e-07, + "iheartmedia": 1e-07, + "ihl": 1e-07, + "ikari": 1e-07, + "ilf": 1e-07, + "illusionary": 1e-07, + "immutability": 1e-07, + "impor": 1e-07, + "impossibilities": 1e-07, + "inan": 1e-07, + "indicts": 1e-07, + "indispensible": 1e-07, + "individualists": 1e-07, + "instal": 1e-07, + "instantiation": 1e-07, + "instigates": 1e-07, + "interpolate": 1e-07, + "intimacies": 1e-07, + "invalided": 1e-07, + "ionisation": 1e-07, + "iredell": 1e-07, + "ireton": 1e-07, + "irretrievable": 1e-07, + "irsay": 1e-07, + "irvines": 1e-07, + "isenberg": 1e-07, + "islamisation": 1e-07, + "isra": 1e-07, + "ivins": 1e-07, + "izzat": 1e-07, + "jabbering": 1e-07, + "jamshedpur": 1e-07, + "jannah": 1e-07, + "janzen": 1e-07, + "japheth": 1e-07, + "jats": 1e-07, + "jbj": 1e-07, + "jeeze": 1e-07, + "jetstream": 1e-07, + "jey": 1e-07, + "joannas": 1e-07, + "jokin": 1e-07, + "jum": 1e-07, + "junot": 1e-07, + "kaiserslautern": 1e-07, + "kajol": 1e-07, + "karajan": 1e-07, + "karak": 1e-07, + "kentwood": 1e-07, + "keven": 1e-07, + "khedive": 1e-07, + "kibera": 1e-07, + "kidwell": 1e-07, + "kimpton": 1e-07, + "kinkaid": 1e-07, + "kinley": 1e-07, + "kirtan": 1e-07, + "kissel": 1e-07, + "kist": 1e-07, + "kitch": 1e-07, + "klout": 1e-07, + "kmh": 1e-07, + "kobane": 1e-07, + "kodama": 1e-07, + "kolar": 1e-07, + "kothari": 1e-07, + "krw": 1e-07, + "kua": 1e-07, + "kuldeep": 1e-07, + "kurosaki": 1e-07, + "kutta": 1e-07, + "labradorite": 1e-07, + "lammers": 1e-07, + "landowning": 1e-07, + "lanzmann": 1e-07, + "lapin": 1e-07, + "laski": 1e-07, + "lassi": 1e-07, + "latencies": 1e-07, + "laye": 1e-07, + "lcbo": 1e-07, + "leacock": 1e-07, + "leatherette": 1e-07, + "lebel": 1e-07, + "ledyard": 1e-07, + "leeann": 1e-07, + "lemont": 1e-07, + "leonov": 1e-07, + "lepidus": 1e-07, + "leptospirosis": 1e-07, + "lette": 1e-07, + "levan": 1e-07, + "libris": 1e-07, + "lifeform": 1e-07, + "ligon": 1e-07, + "lilienthal": 1e-07, + "limpets": 1e-07, + "linksys": 1e-07, + "lke": 1e-07, + "lodestar": 1e-07, + "lolololol": 1e-07, + "lomo": 1e-07, + "longhand": 1e-07, + "lorn": 1e-07, + "lothrop": 1e-07, + "ludmila": 1e-07, + "luthors": 1e-07, + "lynchpin": 1e-07, + "lysosomes": 1e-07, + "macaskill": 1e-07, + "maceo": 1e-07, + "machynlleth": 1e-07, + "macky": 1e-07, + "macphail": 1e-07, + "macrame": 1e-07, + "mady": 1e-07, + "magnifique": 1e-07, + "mahar": 1e-07, + "mahomet": 1e-07, + "makai": 1e-07, + "malatesta": 1e-07, + "malekith": 1e-07, + "malnourishment": 1e-07, + "mangers": 1e-07, + "manhandle": 1e-07, + "marilla": 1e-07, + "markiplier": 1e-07, + "mascaras": 1e-07, + "masculinities": 1e-07, + "matadors": 1e-07, + "mateus": 1e-07, + "mayumi": 1e-07, + "mbi": 1e-07, + "mcaleese": 1e-07, + "mccusker": 1e-07, + "mcsorley": 1e-07, + "medtech": 1e-07, + "meizu": 1e-07, + "melander": 1e-07, + "melling": 1e-07, + "mellows": 1e-07, + "memorandums": 1e-07, + "mendeleev": 1e-07, + "merril": 1e-07, + "merrimac": 1e-07, + "meteora": 1e-07, + "mettler": 1e-07, + "mfd": 1e-07, + "mhi": 1e-07, + "micelles": 1e-07, + "microscale": 1e-07, + "microsurgery": 1e-07, + "mihai": 1e-07, + "mihail": 1e-07, + "mikki": 1e-07, + "milion": 1e-07, + "milkmaid": 1e-07, + "milstein": 1e-07, + "minnehaha": 1e-07, + "miquel": 1e-07, + "mirena": 1e-07, + "misbehaves": 1e-07, + "mithril": 1e-07, + "mitogen": 1e-07, + "modder": 1e-07, + "molluscan": 1e-07, + "monetise": 1e-07, + "moone": 1e-07, + "moravians": 1e-07, + "moringa": 1e-07, + "mortier": 1e-07, + "mothballs": 1e-07, + "motherfuck": 1e-07, + "mottos": 1e-07, + "mouthguard": 1e-07, + "moxy": 1e-07, + "mpla": 1e-07, + "mrap": 1e-07, + "muckle": 1e-07, + "mudstones": 1e-07, + "multipath": 1e-07, + "munsey": 1e-07, + "mustaine": 1e-07, + "muzzy": 1e-07, + "mylene": 1e-07, + "namibias": 1e-07, + "nandu": 1e-07, + "narada": 1e-07, + "nasb": 1e-07, + "natan": 1e-07, + "naturale": 1e-07, + "naughtiest": 1e-07, + "navicular": 1e-07, + "nclex": 1e-07, + "neft": 1e-07, + "negredo": 1e-07, + "nestles": 1e-07, + "neurotoxins": 1e-07, + "newss": 1e-07, + "newsreaders": 1e-07, + "nexium": 1e-07, + "nexon": 1e-07, + "nicaraguas": 1e-07, + "nighy": 1e-07, + "niguel": 1e-07, + "nkosi": 1e-07, + "nlf": 1e-07, + "nole": 1e-07, + "nomar": 1e-07, + "novation": 1e-07, + "nsr": 1e-07, + "nuclease": 1e-07, + "numinous": 1e-07, + "nursultan": 1e-07, + "nuthatch": 1e-07, + "nzl": 1e-07, + "oag": 1e-07, + "obovate": 1e-07, + "odio": 1e-07, + "odium": 1e-07, + "oin": 1e-07, + "oitnb": 1e-07, + "okhotsk": 1e-07, + "olc": 1e-07, + "omeprazole": 1e-07, + "onde": 1e-07, + "onix": 1e-07, + "ooohhh": 1e-07, + "openstreetmap": 1e-07, + "operability": 1e-07, + "orchestrates": 1e-07, + "originations": 1e-07, + "ospf": 1e-07, + "otas": 1e-07, + "ottavio": 1e-07, + "otterbox": 1e-07, + "overclock": 1e-07, + "overestimation": 1e-07, + "overexpressed": 1e-07, + "owerri": 1e-07, + "oyama": 1e-07, + "pachuca": 1e-07, + "pakka": 1e-07, + "palustris": 1e-07, + "panchayati": 1e-07, + "pandered": 1e-07, + "panegyric": 1e-07, + "pannier": 1e-07, + "papuans": 1e-07, + "parachutist": 1e-07, + "parodic": 1e-07, + "paros": 1e-07, + "particulary": 1e-07, + "pashmina": 1e-07, + "passi": 1e-07, + "patsey": 1e-07, + "paulin": 1e-07, + "pavelski": 1e-07, + "paxtons": 1e-07, + "payette": 1e-07, + "pbb": 1e-07, + "peepee": 1e-07, + "pef": 1e-07, + "pendergrass": 1e-07, + "pennie": 1e-07, + "pepperidge": 1e-07, + "pequot": 1e-07, + "perceivable": 1e-07, + "perino": 1e-07, + "peris": 1e-07, + "perret": 1e-07, + "persecutor": 1e-07, + "personne": 1e-07, + "perspire": 1e-07, + "petrenko": 1e-07, + "phentermine": 1e-07, + "pheonix": 1e-07, + "phospholipase": 1e-07, + "picador": 1e-07, + "pidgey": 1e-07, + "pikeville": 1e-07, + "pini": 1e-07, + "pinsent": 1e-07, + "platen": 1e-07, + "playland": 1e-07, + "playstore": 1e-07, + "plopping": 1e-07, + "plotkin": 1e-07, + "pmu": 1e-07, + "pne": 1e-07, + "pneumatics": 1e-07, + "polestar": 1e-07, + "politiques": 1e-07, + "pollok": 1e-07, + "popova": 1e-07, + "popovic": 1e-07, + "populaire": 1e-07, + "porcini": 1e-07, + "posta": 1e-07, + "postproduction": 1e-07, + "postulating": 1e-07, + "potbelly": 1e-07, + "poulson": 1e-07, + "powerlifters": 1e-07, + "prebend": 1e-07, + "predilections": 1e-07, + "prema": 1e-07, + "preto": 1e-07, + "prizefighter": 1e-07, + "proclaimers": 1e-07, + "prohibitionist": 1e-07, + "pronghorn": 1e-07, + "prophesying": 1e-07, + "propoganda": 1e-07, + "protectively": 1e-07, + "proteolysis": 1e-07, + "protonated": 1e-07, + "provincia": 1e-07, + "prox": 1e-07, + "puducherry": 1e-07, + "pupillary": 1e-07, + "purloined": 1e-07, + "purp": 1e-07, + "puth": 1e-07, + "putted": 1e-07, + "quas": 1e-07, + "quim": 1e-07, + "qut": 1e-07, + "rahmans": 1e-07, + "raikes": 1e-07, + "rainie": 1e-07, + "ramstein": 1e-07, + "rapamycin": 1e-07, + "rapide": 1e-07, + "rati": 1e-07, + "rattata": 1e-07, + "reassigning": 1e-07, + "reaver": 1e-07, + "rebelliousness": 1e-07, + "recoiling": 1e-07, + "redi": 1e-07, + "redoubts": 1e-07, + "redressing": 1e-07, + "refi": 1e-07, + "renamo": 1e-07, + "renji": 1e-07, + "reoffending": 1e-07, + "repayable": 1e-07, + "rephrased": 1e-07, + "replicants": 1e-07, + "resolver": 1e-07, + "reubens": 6.17e-08, + "rezoned": 1e-07, + "riegel": 1e-07, + "riffles": 1e-07, + "rifting": 1e-07, + "rikishi": 1e-07, + "ripp": 1e-07, + "rituximab": 1e-07, + "roarke": 1e-07, + "rocio": 1e-07, + "roebling": 1e-07, + "rohm": 1e-07, + "rollovers": 1e-07, + "rookwood": 1e-07, + "rosebuds": 1e-07, + "rosehip": 1e-07, + "roshe": 1e-07, + "rother": 1e-07, + "rothrock": 1e-07, + "roundtables": 1e-07, + "rping": 1e-07, + "rpl": 1e-07, + "rra": 1e-07, + "rumania": 1e-07, + "rumpole": 1e-07, + "rutte": 1e-07, + "sabian": 1e-07, + "sadio": 1e-07, + "salesian": 1e-07, + "salis": 1e-07, + "saltonstall": 1e-07, + "sangiovese": 1e-07, + "santanas": 1e-07, + "santeria": 1e-07, + "saperstein": 1e-07, + "sashi": 1e-07, + "satie": 1e-07, + "satirically": 1e-07, + "saye": 1e-07, + "schefter": 1e-07, + "schizoaffective": 1e-07, + "schwarzschild": 1e-07, + "schweppes": 1e-07, + "scorns": 1e-07, + "sdd": 1e-07, + "sedum": 1e-07, + "seedorf": 1e-07, + "seleucid": 1e-07, + "selmer": 1e-07, + "sendak": 1e-07, + "sennacherib": 1e-07, + "sensenbrenner": 1e-07, + "sensually": 1e-07, + "serotonergic": 1e-07, + "sers": 1e-07, + "sesquicentennial": 1e-07, + "seventieth": 1e-07, + "shafter": 1e-07, + "shakiras": 1e-07, + "shattenkirk": 1e-07, + "sheilas": 1e-07, + "sheppey": 1e-07, + "shibboleth": 1e-07, + "shingled": 1e-07, + "shohei": 1e-07, + "shotton": 1e-07, + "sicario": 1e-07, + "sidcup": 1e-07, + "sidearms": 1e-07, + "sidle": 1e-07, + "sieving": 1e-07, + "sigler": 1e-07, + "silke": 1e-07, + "sinon": 1e-07, + "sisa": 1e-07, + "situs": 1e-07, + "sixfold": 1e-07, + "skillsets": 1e-07, + "slacken": 1e-07, + "slapdash": 1e-07, + "sluices": 1e-07, + "smethwick": 1e-07, + "smokie": 1e-07, + "snm": 1e-07, + "snowe": 1e-07, + "sobibor": 1e-07, + "softshell": 1e-07, + "soldiered": 1e-07, + "songkran": 1e-07, + "soundbar": 1e-07, + "southam": 1e-07, + "southwood": 1e-07, + "speier": 1e-07, + "spiegelman": 1e-07, + "spohr": 1e-07, + "sportswriters": 1e-07, + "sprawls": 1e-07, + "stabenow": 1e-07, + "stallard": 1e-07, + "stamen": 1e-07, + "stargazers": 1e-07, + "staved": 1e-07, + "stelter": 1e-07, + "stenhousemuir": 1e-07, + "stenting": 1e-07, + "stepsisters": 1e-07, + "stevies": 1e-07, + "stimulators": 1e-07, + "stockholms": 1e-07, + "stowmarket": 1e-07, + "stradbroke": 1e-07, + "straggling": 1e-07, + "stratfor": 1e-07, + "stripey": 1e-07, + "strobes": 1e-07, + "strongbow": 1e-07, + "strugglers": 1e-07, + "stutz": 1e-07, + "suarezs": 1e-07, + "sublimate": 1e-07, + "successfull": 1e-07, + "sudeikis": 1e-07, + "suncor": 1e-07, + "sunstein": 1e-07, + "superfluid": 1e-07, + "supergrass": 1e-07, + "superhot": 1e-07, + "superhumans": 1e-07, + "supramolecular": 1e-07, + "sussed": 1e-07, + "swabbing": 1e-07, + "swayne": 1e-07, + "synecdoche": 1e-07, + "syntactical": 1e-07, + "tablature": 1e-07, + "taconic": 1e-07, + "tailgates": 1e-07, + "takuma": 1e-07, + "tallon": 1e-07, + "tamang": 1e-07, + "tampas": 1e-07, + "tancred": 1e-07, + "tanjore": 1e-07, + "tannoy": 1e-07, + "tantalizingly": 1e-07, + "tarth": 1e-07, + "tatsumi": 1e-07, + "taxonomies": 1e-07, + "tcb": 1e-07, + "tdy": 1e-07, + "teale": 1e-07, + "teamspeak": 1e-07, + "teems": 1e-07, + "telemovie": 1e-07, + "telepaths": 1e-07, + "telesales": 1e-07, + "terai": 1e-07, + "tetrachloride": 1e-07, + "theranos": 1e-07, + "therm": 1e-07, + "thermoplastics": 1e-07, + "thespians": 1e-07, + "thomond": 1e-07, + "threateningly": 1e-07, + "thrombotic": 1e-07, + "thyroiditis": 1e-07, + "tickers": 1e-07, + "tippi": 1e-07, + "titer": 1e-07, + "tke": 1e-07, + "tnn": 1e-07, + "toccata": 1e-07, + "togs": 1e-07, + "tolley": 1e-07, + "torrez": 1e-07, + "toutes": 1e-07, + "trabzonspor": 1e-07, + "trampolining": 1e-07, + "translatable": 1e-07, + "trapani": 1e-07, + "trawls": 1e-07, + "trekkie": 1e-07, + "trem": 1e-07, + "trew": 1e-07, + "trumpian": 1e-07, + "tsutomu": 1e-07, + "tsuyoshi": 1e-07, + "tsw": 1e-07, + "tuneup": 1e-07, + "tunguska": 1e-07, + "turbochargers": 1e-07, + "typologies": 1e-07, + "tyrions": 1e-07, + "uaa": 1e-07, + "uchi": 1e-07, + "ucmj": 1e-07, + "ude": 1e-07, + "uggla": 1e-07, + "ults": 1e-07, + "unambitious": 1e-07, + "unappetizing": 1e-07, + "unas": 1e-07, + "unchristian": 1e-07, + "unconditioned": 1e-07, + "underachiever": 1e-07, + "underpayment": 1e-07, + "ungrammatical": 1e-07, + "unibrow": 1e-07, + "uninviting": 1e-07, + "unr": 1e-07, + "upcountry": 1e-07, + "usace": 1e-07, + "userid": 1e-07, + "ustad": 1e-07, + "ustinov": 1e-07, + "utama": 1e-07, + "util": 1e-07, + "utz": 1e-07, + "vacuoles": 1e-07, + "vallance": 1e-07, + "varuna": 1e-07, + "vct": 1e-07, + "vea": 1e-07, + "vend": 1e-07, + "venusaur": 1e-07, + "vfa": 1e-07, + "vickys": 1e-07, + "victuals": 1e-07, + "vilhelm": 1e-07, + "vindaloo": 1e-07, + "vinifera": 1e-07, + "vinyasa": 1e-07, + "viscoelastic": 1e-07, + "vlade": 1e-07, + "voile": 1e-07, + "voyageurs": 1e-07, + "vudu": 1e-07, + "vyas": 1e-07, + "wackos": 1e-07, + "wakayama": 1e-07, + "wallah": 1e-07, + "waseem": 1e-07, + "wasilla": 1e-07, + "wauwatosa": 1e-07, + "wcg": 1e-07, + "webhosting": 1e-07, + "webos": 1e-07, + "wernher": 1e-07, + "westman": 1e-07, + "whetted": 1e-07, + "whimsically": 1e-07, + "whitelock": 1e-07, + "whoso": 1e-07, + "wilmar": 1e-07, + "winwood": 1e-07, + "wittily": 1e-07, + "workability": 1e-07, + "wretchedness": 1e-07, + "xamarin": 1e-07, + "xylitol": 1e-07, + "xzibit": 1e-07, + "yarnell": 1e-07, + "ybarra": 1e-07, + "ybor": 1e-07, + "yeahhhh": 1e-07, + "yoan": 1e-07, + "yourre": 1e-07, + "yurts": 1e-07, + "zala": 1e-07, + "zampa": 1e-07, + "zepp": 1e-07, + "zira": 1e-07, + "zomg": 1e-07, + "aadhar": 9.77e-08, + "abbado": 9.77e-08, + "achromatic": 9.77e-08, + "acquittals": 9.77e-08, + "acte": 9.77e-08, + "actuating": 9.77e-08, + "adamo": 9.77e-08, + "adelle": 9.77e-08, + "adri": 9.77e-08, + "adventureland": 9.77e-08, + "aeronautic": 9.77e-08, + "aflac": 9.77e-08, + "afn": 9.77e-08, + "agfa": 9.77e-08, + "agios": 9.77e-08, + "agriculturalists": 9.77e-08, + "ahad": 9.77e-08, + "ahhhhhhh": 9.77e-08, + "ahri": 9.77e-08, + "aicc": 9.77e-08, + "aicpa": 9.77e-08, + "alannah": 9.77e-08, + "albrighton": 9.77e-08, + "alfonzo": 9.77e-08, + "algonquian": 9.77e-08, + "alisson": 9.77e-08, + "altmans": 9.77e-08, + "aluko": 9.77e-08, + "amature": 9.77e-08, + "amides": 9.77e-08, + "amiel": 9.77e-08, + "amita": 9.77e-08, + "amitabha": 9.77e-08, + "ancaster": 9.77e-08, + "antagonise": 9.77e-08, + "antica": 9.77e-08, + "anticline": 9.77e-08, + "anticommunist": 9.77e-08, + "antons": 9.77e-08, + "antonys": 9.77e-08, + "anzu": 9.77e-08, + "aomori": 9.77e-08, + "arianne": 9.77e-08, + "arrl": 9.77e-08, + "arry": 9.77e-08, + "artista": 9.77e-08, + "artium": 9.77e-08, + "arw": 9.77e-08, + "asclepius": 9.77e-08, + "asocial": 9.77e-08, + "aspas": 9.77e-08, + "asso": 9.77e-08, + "ateliers": 9.77e-08, + "ather": 9.77e-08, + "atomically": 9.77e-08, + "atrazine": 9.77e-08, + "atrociously": 9.77e-08, + "auggie": 9.77e-08, + "aurelian": 9.77e-08, + "automat": 9.77e-08, + "avin": 9.77e-08, + "awm": 9.77e-08, + "awolowo": 9.77e-08, + "ayacucho": 9.77e-08, + "ayden": 9.77e-08, + "azzurri": 9.77e-08, + "bacilli": 9.77e-08, + "backbeat": 9.77e-08, + "backbiting": 9.77e-08, + "backrow": 9.77e-08, + "baldi": 9.77e-08, + "barbarella": 9.77e-08, + "barilla": 9.77e-08, + "basij": 9.77e-08, + "bathrobes": 9.77e-08, + "bato": 9.77e-08, + "bbi": 9.77e-08, + "bcb": 9.77e-08, + "bcom": 9.77e-08, + "beary": 9.77e-08, + "beatlemania": 9.77e-08, + "beerus": 9.77e-08, + "behrend": 9.77e-08, + "behringer": 9.77e-08, + "bellboy": 9.77e-08, + "benedictines": 9.77e-08, + "beno": 9.77e-08, + "berube": 9.77e-08, + "bevelled": 9.77e-08, + "bhagwat": 9.77e-08, + "bharath": 9.77e-08, + "bink": 9.77e-08, + "bino": 9.77e-08, + "blatchford": 9.77e-08, + "blaylock": 9.77e-08, + "bleus": 9.77e-08, + "blobby": 9.77e-08, + "blowpipe": 9.77e-08, + "boardwalks": 9.77e-08, + "bobbies": 9.77e-08, + "bodyline": 9.77e-08, + "bolte": 9.77e-08, + "bonanno": 9.77e-08, + "borin": 9.77e-08, + "botts": 9.77e-08, + "bourges": 9.77e-08, + "bowland": 9.77e-08, + "braavos": 9.77e-08, + "braf": 9.77e-08, + "brahm": 9.77e-08, + "brasileira": 9.77e-08, + "brazillian": 9.77e-08, + "brillante": 9.77e-08, + "brinson": 9.77e-08, + "britishers": 9.77e-08, + "brookss": 9.77e-08, + "brot": 9.77e-08, + "brutalizing": 9.77e-08, + "bruyn": 9.77e-08, + "brynner": 9.77e-08, + "btg": 9.77e-08, + "bti": 9.77e-08, + "btp": 9.77e-08, + "buckfast": 9.77e-08, + "buckhorn": 9.77e-08, + "buhay": 9.77e-08, + "buisson": 9.77e-08, + "bulks": 9.77e-08, + "bulloch": 9.77e-08, + "busse": 9.77e-08, + "buttholes": 9.77e-08, + "butty": 9.77e-08, + "buuut": 9.77e-08, + "bysshe": 9.77e-08, + "caci": 9.77e-08, + "cacique": 9.77e-08, + "callister": 9.77e-08, + "camra": 9.77e-08, + "cancellara": 9.77e-08, + "cantaloupes": 9.77e-08, + "capoue": 9.77e-08, + "caracal": 9.77e-08, + "carcinoid": 9.77e-08, + "carinae": 9.77e-08, + "carinthia": 9.77e-08, + "carload": 9.77e-08, + "carlota": 9.77e-08, + "carmelita": 9.77e-08, + "carpetbagger": 9.77e-08, + "carruth": 9.77e-08, + "cason": 9.77e-08, + "castlemaine": 9.77e-08, + "catalyse": 9.77e-08, + "catapulting": 9.77e-08, + "catechetical": 9.77e-08, + "catrin": 9.77e-08, + "caudate": 9.77e-08, + "cavalrymen": 9.77e-08, + "caws": 9.77e-08, + "cex": 9.77e-08, + "challange": 9.77e-08, + "chanelle": 9.77e-08, + "changan": 9.77e-08, + "chargebacks": 9.77e-08, + "chemokines": 9.77e-08, + "chg": 9.77e-08, + "chines": 9.77e-08, + "chlo": 9.77e-08, + "chomskys": 9.77e-08, + "christiaan": 9.77e-08, + "cinematograph": 9.77e-08, + "cips": 9.77e-08, + "citic": 9.77e-08, + "cjc": 9.77e-08, + "clenbuterol": 9.77e-08, + "clinger": 9.77e-08, + "clownish": 9.77e-08, + "clozapine": 9.77e-08, + "clunker": 9.77e-08, + "coaling": 9.77e-08, + "coas": 9.77e-08, + "cobby": 9.77e-08, + "cochineal": 9.77e-08, + "cocksure": 9.77e-08, + "coconino": 9.77e-08, + "cohere": 9.77e-08, + "colebrook": 9.77e-08, + "colla": 9.77e-08, + "collegiality": 9.77e-08, + "colli": 9.77e-08, + "commitee": 9.77e-08, + "coningsby": 9.77e-08, + "continously": 9.77e-08, + "contracture": 9.77e-08, + "contrarily": 9.77e-08, + "conurbation": 9.77e-08, + "cooperman": 9.77e-08, + "corus": 9.77e-08, + "coryell": 9.77e-08, + "coterminous": 9.77e-08, + "coto": 9.77e-08, + "cottonseed": 9.77e-08, + "couper": 9.77e-08, + "cowdrey": 9.77e-08, + "cpk": 9.77e-08, + "craighead": 9.77e-08, + "crawly": 9.77e-08, + "crazes": 9.77e-08, + "creekside": 9.77e-08, + "cruden": 9.77e-08, + "ctw": 9.77e-08, + "cuckolding": 9.77e-08, + "culley": 9.77e-08, + "cvi": 9.77e-08, + "cyberman": 9.77e-08, + "dacron": 9.77e-08, + "daihatsu": 9.77e-08, + "daintree": 9.77e-08, + "dalloway": 9.77e-08, + "dalys": 9.77e-08, + "dandies": 9.77e-08, + "danmark": 9.77e-08, + "darkies": 9.77e-08, + "darul": 9.77e-08, + "dary": 9.77e-08, + "dawdling": 9.77e-08, + "deader": 9.77e-08, + "deadlocks": 9.77e-08, + "decanted": 9.77e-08, + "decodes": 9.77e-08, + "deferments": 9.77e-08, + "definetely": 9.77e-08, + "deflates": 9.77e-08, + "defrocked": 9.77e-08, + "dehaan": 9.77e-08, + "delafield": 9.77e-08, + "delillo": 9.77e-08, + "demarest": 9.77e-08, + "denarius": 9.77e-08, + "denso": 9.77e-08, + "deven": 9.77e-08, + "diaphragmatic": 9.77e-08, + "diarra": 9.77e-08, + "dickman": 9.77e-08, + "dieng": 9.77e-08, + "dilaurentis": 9.77e-08, + "dillion": 9.77e-08, + "dilshan": 9.77e-08, + "directionally": 9.77e-08, + "disallows": 9.77e-08, + "dissidence": 9.77e-08, + "dollys": 9.77e-08, + "dolo": 9.77e-08, + "domestica": 9.77e-08, + "donizetti": 9.77e-08, + "donnybrook": 9.77e-08, + "donohoe": 9.77e-08, + "doodled": 9.77e-08, + "doorbells": 9.77e-08, + "dopest": 9.77e-08, + "doubloons": 9.77e-08, + "dozy": 9.77e-08, + "dramaturgy": 9.77e-08, + "dreamz": 9.77e-08, + "driggs": 9.77e-08, + "drogue": 9.77e-08, + "duch": 9.77e-08, + "ealy": 9.77e-08, + "earthers": 9.77e-08, + "earthmoving": 9.77e-08, + "eber": 9.77e-08, + "ebo": 9.77e-08, + "efraim": 9.77e-08, + "eger": 9.77e-08, + "electrum": 9.77e-08, + "elephantine": 9.77e-08, + "emasculate": 9.77e-08, + "emasculation": 9.77e-08, + "encumbrances": 9.77e-08, + "endotoxin": 9.77e-08, + "engstrom": 9.77e-08, + "eog": 9.77e-08, + "eosinophils": 9.77e-08, + "epik": 9.77e-08, + "eprom": 9.77e-08, + "escobedo": 9.77e-08, + "esmail": 9.77e-08, + "estaing": 9.77e-08, + "ethelbert": 9.77e-08, + "eul": 9.77e-08, + "eunji": 9.77e-08, + "everbody": 9.77e-08, + "everhart": 9.77e-08, + "exactness": 9.77e-08, + "exciter": 9.77e-08, + "execrable": 9.77e-08, + "extinguishes": 9.77e-08, + "extramural": 9.77e-08, + "fabiola": 9.77e-08, + "fantasise": 9.77e-08, + "farlow": 9.77e-08, + "farnell": 9.77e-08, + "fascinatingly": 9.77e-08, + "fawaz": 9.77e-08, + "fcw": 9.77e-08, + "fdn": 9.77e-08, + "femina": 9.77e-08, + "femurs": 9.77e-08, + "fenrir": 9.77e-08, + "festoon": 9.77e-08, + "fifer": 9.77e-08, + "fillip": 9.77e-08, + "fincham": 9.77e-08, + "finnair": 9.77e-08, + "firehose": 9.77e-08, + "flailed": 9.77e-08, + "flapjacks": 9.77e-08, + "flashers": 9.77e-08, + "flatulent": 9.77e-08, + "flyaway": 9.77e-08, + "fmd": 9.77e-08, + "foetuses": 9.77e-08, + "folha": 9.77e-08, + "fontane": 9.77e-08, + "fow": 9.77e-08, + "foxholes": 9.77e-08, + "frappe": 9.77e-08, + "frazee": 9.77e-08, + "fredy": 9.77e-08, + "frits": 9.77e-08, + "fucky": 9.77e-08, + "fuckyou": 9.77e-08, + "fulcher": 9.77e-08, + "fyre": 9.77e-08, + "gabo": 9.77e-08, + "gails": 9.77e-08, + "gainey": 9.77e-08, + "galera": 9.77e-08, + "galette": 9.77e-08, + "gangrenous": 9.77e-08, + "gangstas": 5.13e-08, + "gargan": 9.77e-08, + "gastropub": 9.77e-08, + "gattaca": 9.77e-08, + "gavroche": 9.77e-08, + "gbl": 9.77e-08, + "gebhardt": 9.77e-08, + "genx": 9.77e-08, + "geol": 9.77e-08, + "ghia": 9.77e-08, + "gilf": 9.77e-08, + "ginos": 9.77e-08, + "gkn": 9.77e-08, + "glossier": 9.77e-08, + "goddards": 9.77e-08, + "golconda": 9.77e-08, + "gompers": 9.77e-08, + "gossiped": 9.77e-08, + "goulart": 9.77e-08, + "gpg": 9.77e-08, + "grana": 9.77e-08, + "grandmasters": 9.77e-08, + "gregorius": 9.77e-08, + "gropius": 9.77e-08, + "guilbert": 9.77e-08, + "guyon": 9.77e-08, + "gza": 9.77e-08, + "hackable": 9.77e-08, + "haga": 9.77e-08, + "halftone": 9.77e-08, + "halong": 9.77e-08, + "halyard": 9.77e-08, + "hamburgs": 9.77e-08, + "hamby": 9.77e-08, + "hany": 9.77e-08, + "haroun": 9.77e-08, + "hawkman": 9.77e-08, + "hayle": 9.77e-08, + "haymaker": 9.77e-08, + "hej": 9.77e-08, + "helbig": 9.77e-08, + "hellenism": 9.77e-08, + "hemant": 9.77e-08, + "henge": 9.77e-08, + "hennings": 9.77e-08, + "herbalism": 9.77e-08, + "hetman": 9.77e-08, + "heure": 9.77e-08, + "heuvel": 9.77e-08, + "heydon": 9.77e-08, + "heyes": 9.77e-08, + "hippest": 9.77e-08, + "hitoshi": 9.77e-08, + "hominy": 9.77e-08, + "homologue": 9.77e-08, + "homologues": 9.77e-08, + "horrifies": 9.77e-08, + "houseboats": 9.77e-08, + "houzz": 9.77e-08, + "huangs": 9.77e-08, + "huebner": 9.77e-08, + "huger": 9.77e-08, + "huk": 9.77e-08, + "hurler": 9.77e-08, + "hurly": 9.77e-08, + "hyd": 9.77e-08, + "hypercholesterolemia": 9.77e-08, + "iah": 9.77e-08, + "iberville": 9.77e-08, + "ibook": 9.77e-08, + "ihm": 9.77e-08, + "ilr": 9.77e-08, + "ilyushin": 9.77e-08, + "immunoglobulins": 9.77e-08, + "improvers": 9.77e-08, + "incel": 9.77e-08, + "inerrancy": 9.77e-08, + "infrasound": 9.77e-08, + "ingushetia": 9.77e-08, + "inkigayo": 9.77e-08, + "instantiate": 9.77e-08, + "intermix": 9.77e-08, + "interna": 9.77e-08, + "interpols": 9.77e-08, + "intimating": 9.77e-08, + "inundating": 9.77e-08, + "inviolability": 9.77e-08, + "irredeemably": 9.77e-08, + "isabels": 9.77e-08, + "iscsi": 9.77e-08, + "ivi": 9.77e-08, + "jailbird": 9.77e-08, + "jamel": 9.77e-08, + "janner": 9.77e-08, + "jetzt": 9.77e-08, + "jillette": 9.77e-08, + "jlr": 9.77e-08, + "jod": 9.77e-08, + "joye": 9.77e-08, + "jss": 9.77e-08, + "jts": 8.51e-08, + "juicier": 9.77e-08, + "jujutsu": 9.77e-08, + "junctures": 9.77e-08, + "kadam": 9.77e-08, + "kadima": 9.77e-08, + "kahani": 9.77e-08, + "kandel": 9.77e-08, + "kangana": 9.77e-08, + "kawada": 9.77e-08, + "kawashima": 9.77e-08, + "kef": 9.77e-08, + "kenmare": 9.77e-08, + "kerbs": 9.77e-08, + "khor": 9.77e-08, + "khumalo": 9.77e-08, + "khurram": 9.77e-08, + "kiang": 9.77e-08, + "kielbasa": 9.77e-08, + "kindof": 9.77e-08, + "kinnaird": 9.77e-08, + "kiras": 9.77e-08, + "kirstin": 9.77e-08, + "kittery": 9.77e-08, + "kleinfeld": 9.77e-08, + "klipsch": 9.77e-08, + "knaves": 9.77e-08, + "knebworth": 9.77e-08, + "knifepoint": 9.77e-08, + "kotak": 9.77e-08, + "kotter": 9.77e-08, + "kreuzberg": 9.77e-08, + "krohn": 9.77e-08, + "kuantan": 9.77e-08, + "kurnool": 9.77e-08, + "kus": 9.77e-08, + "kyon": 9.77e-08, + "lable": 9.77e-08, + "lachey": 9.77e-08, + "ladybirds": 9.77e-08, + "lalique": 9.77e-08, + "laminin": 9.77e-08, + "lamothe": 9.77e-08, + "landholdings": 9.77e-08, + "landman": 9.77e-08, + "laoghaire": 9.77e-08, + "lapsing": 9.77e-08, + "laserdisc": 9.77e-08, + "lebensraum": 9.77e-08, + "lebesgue": 9.77e-08, + "lebo": 9.77e-08, + "leese": 9.77e-08, + "lefferts": 9.77e-08, + "legitimised": 9.77e-08, + "lesseps": 9.77e-08, + "levered": 9.77e-08, + "leyen": 9.77e-08, + "liban": 9.77e-08, + "lilla": 9.77e-08, + "linolenic": 9.77e-08, + "lithia": 9.77e-08, + "liya": 9.77e-08, + "lmi": 9.77e-08, + "loka": 9.77e-08, + "longleaf": 9.77e-08, + "loulou": 9.77e-08, + "lowlifes": 9.77e-08, + "lowrider": 9.77e-08, + "loxley": 9.77e-08, + "lpd": 9.77e-08, + "luda": 9.77e-08, + "macmurray": 9.77e-08, + "macnab": 9.77e-08, + "madrassa": 9.77e-08, + "mahr": 9.77e-08, + "maken": 9.77e-08, + "maley": 9.77e-08, + "mallam": 9.77e-08, + "maloof": 9.77e-08, + "mals": 6.61e-08, + "malzahn": 9.77e-08, + "mamta": 9.77e-08, + "mankiewicz": 9.77e-08, + "manto": 9.77e-08, + "manulife": 9.77e-08, + "manumission": 9.77e-08, + "maranatha": 9.77e-08, + "marchisio": 9.77e-08, + "mariani": 9.77e-08, + "maribyrnong": 9.77e-08, + "marija": 9.77e-08, + "masefield": 9.77e-08, + "mashes": 9.77e-08, + "maslows": 9.77e-08, + "masten": 9.77e-08, + "matanzas": 9.77e-08, + "maughan": 9.77e-08, + "mauri": 9.77e-08, + "maurya": 9.77e-08, + "mazing": 9.77e-08, + "mckie": 9.77e-08, + "mckittrick": 9.77e-08, + "mcmanaman": 9.77e-08, + "mcneely": 9.77e-08, + "mcwhorter": 9.77e-08, + "medgar": 9.77e-08, + "megastore": 9.77e-08, + "menahem": 9.77e-08, + "menino": 9.77e-08, + "merchandisers": 9.77e-08, + "metacognition": 9.77e-08, + "metallo": 9.77e-08, + "methyltransferase": 9.77e-08, + "mhl": 9.77e-08, + "micaela": 9.77e-08, + "micki": 9.77e-08, + "microcode": 9.77e-08, + "mij": 9.77e-08, + "minim": 9.77e-08, + "minkoff": 9.77e-08, + "minoxidil": 9.77e-08, + "mirchi": 9.77e-08, + "misstatement": 9.77e-08, + "mitrovica": 9.77e-08, + "mobilizations": 9.77e-08, + "modders": 9.77e-08, + "mohler": 9.77e-08, + "moire": 9.77e-08, + "momoko": 9.77e-08, + "monge": 9.77e-08, + "monnet": 9.77e-08, + "montford": 9.77e-08, + "montt": 9.77e-08, + "moorgate": 9.77e-08, + "morea": 9.77e-08, + "morels": 9.77e-08, + "morpho": 9.77e-08, + "morwell": 9.77e-08, + "motilal": 9.77e-08, + "motorman": 9.77e-08, + "moulting": 9.77e-08, + "mugler": 9.77e-08, + "multispectral": 9.77e-08, + "mumsnet": 9.77e-08, + "munchs": 9.77e-08, + "myoglobin": 9.77e-08, + "naah": 9.77e-08, + "naco": 9.77e-08, + "najeeb": 9.77e-08, + "nakanishi": 9.77e-08, + "nakata": 9.77e-08, + "nannie": 9.77e-08, + "naseer": 9.77e-08, + "naturae": 9.77e-08, + "naturism": 9.77e-08, + "nayar": 9.77e-08, + "ncic": 9.77e-08, + "ncw": 9.77e-08, + "nearshore": 9.77e-08, + "neccessary": 9.77e-08, + "nelspruit": 9.77e-08, + "neurochemical": 9.77e-08, + "neurovascular": 9.77e-08, + "neuve": 9.77e-08, + "nicaraguans": 9.77e-08, + "nimes": 9.77e-08, + "nkt": 9.77e-08, + "nmi": 9.77e-08, + "noemi": 9.77e-08, + "noname": 9.77e-08, + "nondenominational": 9.77e-08, + "nonunion": 9.77e-08, + "noord": 9.77e-08, + "normanton": 9.77e-08, + "norseman": 9.77e-08, + "nouveaux": 9.77e-08, + "nowdays": 9.77e-08, + "nsb": 9.77e-08, + "nsk": 9.77e-08, + "nurmagomedov": 9.77e-08, + "nystrom": 9.77e-08, + "odoherty": 9.77e-08, + "oakton": 9.77e-08, + "oarsmen": 9.77e-08, + "obligates": 9.77e-08, + "odeh": 9.77e-08, + "ohanian": 9.77e-08, + "ohn": 9.77e-08, + "oikos": 9.77e-08, + "ojibwa": 9.77e-08, + "oku": 9.77e-08, + "olan": 9.77e-08, + "oligosaccharides": 9.77e-08, + "onam": 9.77e-08, + "opelika": 9.77e-08, + "oratorios": 9.77e-08, + "ordaining": 9.77e-08, + "orrery": 9.77e-08, + "orvis": 9.77e-08, + "osmund": 9.77e-08, + "osten": 9.77e-08, + "otani": 9.77e-08, + "outloud": 9.77e-08, + "outweighing": 9.77e-08, + "overstaying": 9.77e-08, + "overusing": 9.77e-08, + "overwinter": 9.77e-08, + "oviposition": 9.77e-08, + "paining": 9.77e-08, + "paire": 9.77e-08, + "parasailing": 9.77e-08, + "paratransit": 9.77e-08, + "parsis": 9.77e-08, + "parthenogenesis": 9.77e-08, + "parvovirus": 9.77e-08, + "patentee": 9.77e-08, + "patronymic": 9.77e-08, + "pawed": 9.77e-08, + "payola": 9.77e-08, + "paypals": 9.77e-08, + "pbi": 9.77e-08, + "pdu": 9.77e-08, + "pentecostalism": 9.77e-08, + "percolator": 9.77e-08, + "perro": 9.77e-08, + "pflp": 9.77e-08, + "pharah": 9.77e-08, + "phillipa": 9.77e-08, + "photoshops": 9.77e-08, + "piacenza": 9.77e-08, + "pictish": 9.77e-08, + "pinprick": 9.77e-08, + "piqua": 9.77e-08, + "plasterers": 9.77e-08, + "playgirl": 9.77e-08, + "plumstead": 9.77e-08, + "poesie": 9.77e-08, + "polkinghorne": 9.77e-08, + "polychlorinated": 9.77e-08, + "polyclinic": 9.77e-08, + "polygyny": 9.77e-08, + "ponyo": 9.77e-08, + "popescu": 9.77e-08, + "portioned": 9.77e-08, + "possi": 9.77e-08, + "postdocs": 9.77e-08, + "prasanna": 9.77e-08, + "pratchetts": 9.77e-08, + "predominating": 9.77e-08, + "pretentiousness": 9.77e-08, + "prieta": 9.77e-08, + "problemo": 9.77e-08, + "procrastinators": 9.77e-08, + "progeria": 9.77e-08, + "propagator": 9.77e-08, + "propyl": 9.77e-08, + "prydz": 9.77e-08, + "pten": 9.77e-08, + "pumpin": 9.77e-08, + "putatively": 9.77e-08, + "putumayo": 9.77e-08, + "qassim": 9.77e-08, + "racal": 9.77e-08, + "ragamuffin": 9.77e-08, + "ragusa": 9.77e-08, + "rahab": 9.77e-08, + "rancheria": 9.77e-08, + "rashard": 9.77e-08, + "rattigan": 9.77e-08, + "rcaf": 9.77e-08, + "rdj": 9.77e-08, + "reciprocates": 9.77e-08, + "redbone": 9.77e-08, + "reducers": 9.77e-08, + "refugio": 9.77e-08, + "regularities": 9.77e-08, + "relaxants": 9.77e-08, + "remasters": 9.77e-08, + "repast": 9.77e-08, + "repton": 9.77e-08, + "restructurings": 9.77e-08, + "retford": 9.77e-08, + "revolutionising": 9.77e-08, + "rew": 9.77e-08, + "reynosa": 9.77e-08, + "rhod": 9.77e-08, + "richthofen": 9.77e-08, + "rideout": 9.77e-08, + "rimless": 9.77e-08, + "rinos": 9.77e-08, + "rivulet": 9.77e-08, + "rmn": 9.77e-08, + "roda": 9.77e-08, + "rodriquez": 9.77e-08, + "rohn": 9.77e-08, + "romps": 9.77e-08, + "roofless": 9.77e-08, + "roseanna": 9.77e-08, + "rosenbloom": 9.77e-08, + "rossellini": 9.77e-08, + "rotax": 9.77e-08, + "rottnest": 9.77e-08, + "rpd": 9.77e-08, + "rudolphs": 9.77e-08, + "runyan": 9.77e-08, + "rusi": 9.77e-08, + "ryegrass": 9.77e-08, + "ryley": 9.77e-08, + "saarinen": 9.77e-08, + "sabor": 9.77e-08, + "sadik": 9.77e-08, + "saiki": 9.77e-08, + "saliba": 9.77e-08, + "saltillo": 9.77e-08, + "sameera": 9.77e-08, + "sandbach": 9.77e-08, + "sauter": 9.77e-08, + "sbm": 9.77e-08, + "schemers": 9.77e-08, + "schoo": 9.77e-08, + "schoolkids": 9.77e-08, + "scio": 9.77e-08, + "scow": 9.77e-08, + "scrimp": 9.77e-08, + "scrutinising": 9.77e-08, + "scuola": 9.77e-08, + "scupper": 9.77e-08, + "sdram": 9.77e-08, + "seaters": 9.77e-08, + "seba": 9.77e-08, + "sele": 9.77e-08, + "sellable": 9.77e-08, + "semtex": 9.77e-08, + "seni": 9.77e-08, + "sequoyah": 9.77e-08, + "servius": 9.77e-08, + "sewanee": 9.77e-08, + "sfl": 9.77e-08, + "shadrach": 9.77e-08, + "shafting": 9.77e-08, + "shags": 9.77e-08, + "shankill": 9.77e-08, + "shanklin": 9.77e-08, + "sharpay": 9.77e-08, + "shb": 9.77e-08, + "sheil": 9.77e-08, + "shinedown": 9.77e-08, + "shrewdness": 9.77e-08, + "sibel": 9.77e-08, + "sifter": 9.77e-08, + "silverlake": 9.77e-08, + "sinterklaas": 9.77e-08, + "siwa": 9.77e-08, + "skeen": 9.77e-08, + "skulduggery": 9.77e-08, + "skylake": 9.77e-08, + "slimeball": 9.77e-08, + "slithers": 9.77e-08, + "slovakias": 9.77e-08, + "smil": 9.77e-08, + "smithtown": 9.77e-08, + "sogo": 9.77e-08, + "solenoids": 9.77e-08, + "soliton": 9.77e-08, + "solitons": 9.77e-08, + "somerhalder": 9.77e-08, + "sooraj": 9.77e-08, + "soules": 9.77e-08, + "spacemen": 9.77e-08, + "spacewalks": 9.77e-08, + "spaciousness": 9.77e-08, + "speciale": 9.77e-08, + "spelunking": 9.77e-08, + "spinney": 9.77e-08, + "sportswoman": 9.77e-08, + "spotswood": 9.77e-08, + "spottiswoode": 9.77e-08, + "squirms": 9.77e-08, + "steelbook": 9.77e-08, + "steinman": 9.77e-08, + "stelios": 9.77e-08, + "stephenville": 9.77e-08, + "steuart": 9.77e-08, + "stier": 9.77e-08, + "stihl": 9.77e-08, + "stonehill": 9.77e-08, + "stopovers": 9.77e-08, + "stotts": 9.77e-08, + "stouts": 9.77e-08, + "streamflow": 9.77e-08, + "striper": 9.77e-08, + "strome": 9.77e-08, + "strunk": 9.77e-08, + "subdividing": 9.77e-08, + "subdomains": 9.77e-08, + "subseries": 9.77e-08, + "sundaram": 9.77e-08, + "superheros": 5.5e-08, + "supersymmetric": 9.77e-08, + "suzaku": 9.77e-08, + "swadeshi": 9.77e-08, + "swainson": 9.77e-08, + "swansons": 9.77e-08, + "swb": 9.77e-08, + "sweatin": 9.77e-08, + "swinson": 9.77e-08, + "sydow": 9.77e-08, + "symphonia": 9.77e-08, + "tableland": 9.77e-08, + "tako": 9.77e-08, + "talaq": 9.77e-08, + "tammie": 9.77e-08, + "tampines": 9.77e-08, + "tarpaulins": 9.77e-08, + "tattooist": 9.77e-08, + "tatums": 9.77e-08, + "tdma": 9.77e-08, + "tealc": 9.77e-08, + "teeters": 9.77e-08, + "tejano": 9.77e-08, + "telecommute": 9.77e-08, + "temer": 9.77e-08, + "tendo": 9.77e-08, + "tenens": 9.77e-08, + "tenga": 9.77e-08, + "terephthalate": 9.77e-08, + "teres": 9.77e-08, + "terraform": 9.77e-08, + "tessellation": 9.77e-08, + "tetons": 9.77e-08, + "theremin": 9.77e-08, + "thermistor": 9.77e-08, + "thiam": 9.77e-08, + "thuds": 9.77e-08, + "tiebreakers": 9.77e-08, + "tignes": 9.77e-08, + "tirith": 9.77e-08, + "tlm": 9.77e-08, + "toastmaster": 9.77e-08, + "tobermory": 9.77e-08, + "tole": 9.77e-08, + "topspin": 9.77e-08, + "torey": 9.77e-08, + "tosi": 9.77e-08, + "tossers": 9.77e-08, + "towcester": 9.77e-08, + "townsman": 9.77e-08, + "townsmen": 9.77e-08, + "trabecular": 9.77e-08, + "transcriptome": 9.77e-08, + "transgene": 9.77e-08, + "transgressors": 9.77e-08, + "traub": 9.77e-08, + "tremblant": 9.77e-08, + "trigonal": 9.77e-08, + "trivalent": 9.77e-08, + "truelove": 9.77e-08, + "tsuji": 9.77e-08, + "tsum": 9.77e-08, + "tul": 9.77e-08, + "turgeon": 9.77e-08, + "turnt": 9.77e-08, + "turtlenecks": 9.77e-08, + "tvb": 9.77e-08, + "twentynine": 9.77e-08, + "twitchell": 9.77e-08, + "uap": 9.77e-08, + "ubiquitously": 9.77e-08, + "unbuttoning": 9.77e-08, + "unceasingly": 9.77e-08, + "underreporting": 9.77e-08, + "undervaluing": 9.77e-08, + "unglazed": 9.77e-08, + "ungraded": 9.77e-08, + "unicron": 9.77e-08, + "unkindly": 9.77e-08, + "unn": 9.77e-08, + "unobservable": 9.77e-08, + "unselfishly": 9.77e-08, + "unsexy": 9.77e-08, + "unsheathed": 9.77e-08, + "upcycling": 9.77e-08, + "upn": 9.77e-08, + "usborne": 9.77e-08, + "usmle": 9.77e-08, + "ussrs": 9.77e-08, + "uth": 9.77e-08, + "vallon": 9.77e-08, + "vangelis": 9.77e-08, + "vanni": 9.77e-08, + "vaporeon": 9.77e-08, + "varvara": 9.77e-08, + "vasant": 9.77e-08, + "veb": 9.77e-08, + "ventnor": 9.77e-08, + "venu": 9.77e-08, + "vernor": 9.77e-08, + "veron": 9.77e-08, + "viel": 9.77e-08, + "vinaya": 9.77e-08, + "vint": 9.77e-08, + "vireo": 9.77e-08, + "vlt": 9.77e-08, + "vna": 9.77e-08, + "vnd": 9.77e-08, + "voix": 9.77e-08, + "voronoi": 9.77e-08, + "voyeurs": 9.77e-08, + "vronsky": 9.77e-08, + "vsp": 9.77e-08, + "vtech": 9.77e-08, + "waht": 9.77e-08, + "walzer": 9.77e-08, + "wambach": 9.77e-08, + "wanaka": 9.77e-08, + "warsaws": 9.77e-08, + "wasco": 9.77e-08, + "wedging": 9.77e-08, + "weinheim": 9.77e-08, + "westie": 9.77e-08, + "westlands": 9.77e-08, + "wfaa": 9.77e-08, + "whaa": 9.77e-08, + "whiffs": 9.77e-08, + "whiteface": 9.77e-08, + "whitely": 9.77e-08, + "whoopsie": 9.77e-08, + "wigley": 9.77e-08, + "wireframe": 9.77e-08, + "wisden": 9.77e-08, + "wolfhound": 9.77e-08, + "worldcup": 9.77e-08, + "wotc": 9.77e-08, + "xxxl": 9.77e-08, + "yamanaka": 9.77e-08, + "ylang": 9.77e-08, + "yoona": 9.77e-08, + "yoweri": 9.77e-08, + "yumiko": 9.77e-08, + "zapruder": 9.77e-08, + "zeebrugge": 9.77e-08, + "zeldas": 9.77e-08, + "zeph": 9.77e-08, + "zhuo": 9.77e-08, + "zigbee": 9.77e-08, + "zio": 9.77e-08, + "ziti": 9.77e-08, + "zizek": 9.77e-08, + "zohra": 9.77e-08, + "zoroastrians": 9.77e-08, + "zydeco": 9.77e-08, + "abboud": 9.55e-08, + "acceding": 9.55e-08, + "accumulative": 9.55e-08, + "acdc": 9.55e-08, + "acetylcholinesterase": 9.55e-08, + "adesanya": 9.55e-08, + "advocaat": 9.55e-08, + "adx": 9.55e-08, + "aecom": 9.55e-08, + "afdb": 9.55e-08, + "afer": 9.55e-08, + "aflatoxin": 9.55e-08, + "agama": 9.55e-08, + "agriculturist": 9.55e-08, + "akemi": 9.55e-08, + "alde": 9.55e-08, + "allport": 9.55e-08, + "allsopp": 9.55e-08, + "almonte": 9.55e-08, + "alphonsus": 9.55e-08, + "amey": 9.55e-08, + "amperes": 9.55e-08, + "anaesthetists": 9.55e-08, + "andr": 9.55e-08, + "anons": 9.55e-08, + "anquan": 9.55e-08, + "aparna": 9.55e-08, + "appletv": 9.55e-08, + "appreciations": 9.55e-08, + "archana": 9.55e-08, + "archetypical": 9.55e-08, + "arenal": 9.55e-08, + "aristo": 9.55e-08, + "armful": 9.55e-08, + "artaud": 9.55e-08, + "asci": 9.55e-08, + "asds": 9.55e-08, + "ashlar": 9.55e-08, + "asriel": 9.55e-08, + "astronautical": 9.55e-08, + "audrina": 9.55e-08, + "auricular": 9.55e-08, + "azan": 9.55e-08, + "azerbaijanis": 9.55e-08, + "bagheera": 9.55e-08, + "ballys": 9.55e-08, + "bamm": 9.55e-08, + "bandeau": 9.55e-08, + "bandpass": 9.55e-08, + "bandwidths": 9.55e-08, + "barbee": 9.55e-08, + "barbel": 9.55e-08, + "barristan": 9.55e-08, + "basecamp": 9.55e-08, + "basilio": 9.55e-08, + "batistas": 9.55e-08, + "bayous": 9.55e-08, + "beachcomber": 9.55e-08, + "bellhop": 9.55e-08, + "belov": 9.55e-08, + "bergoglio": 9.55e-08, + "bessarabia": 9.55e-08, + "bethpage": 9.55e-08, + "bhel": 9.55e-08, + "billingsgate": 9.55e-08, + "biogen": 9.55e-08, + "biomimetic": 9.55e-08, + "biot": 9.55e-08, + "birdsall": 9.55e-08, + "birdwatchers": 9.55e-08, + "bizet": 9.55e-08, + "bizzy": 9.55e-08, + "blackbox": 9.55e-08, + "blackheart": 9.55e-08, + "blahnik": 9.55e-08, + "blares": 9.55e-08, + "blunden": 9.55e-08, + "bmps": 9.55e-08, + "bnei": 9.55e-08, + "bodi": 9.55e-08, + "bolen": 9.55e-08, + "borda": 9.55e-08, + "borgias": 9.55e-08, + "boscombe": 9.55e-08, + "bpr": 9.55e-08, + "bramhall": 9.55e-08, + "brax": 9.55e-08, + "breakages": 9.55e-08, + "breakdance": 9.55e-08, + "breaky": 9.55e-08, + "brickhouse": 9.55e-08, + "brid": 9.55e-08, + "brighouse": 9.55e-08, + "bringeth": 9.55e-08, + "brooking": 9.55e-08, + "brunetti": 9.55e-08, + "bte": 9.55e-08, + "budi": 9.55e-08, + "bufo": 9.55e-08, + "bugis": 9.55e-08, + "bukharin": 9.55e-08, + "bullfights": 9.55e-08, + "bunking": 9.55e-08, + "burnette": 9.55e-08, + "butera": 9.55e-08, + "butland": 9.55e-08, + "butterfingers": 9.55e-08, + "buz": 9.55e-08, + "buzzfeeds": 9.55e-08, + "byam": 9.55e-08, + "bythe": 9.55e-08, + "caitlins": 9.55e-08, + "calculi": 9.55e-08, + "caldwells": 9.55e-08, + "camming": 9.55e-08, + "camouflaging": 9.55e-08, + "candia": 9.55e-08, + "candu": 9.55e-08, + "cardstock": 9.55e-08, + "cardy": 9.55e-08, + "careened": 9.55e-08, + "carillo": 9.55e-08, + "carra": 9.55e-08, + "caruana": 9.55e-08, + "cassy": 9.55e-08, + "castors": 9.55e-08, + "catford": 9.55e-08, + "cdk": 9.55e-08, + "celebi": 9.55e-08, + "cenas": 9.55e-08, + "centum": 9.55e-08, + "cephas": 9.55e-08, + "cerny": 9.55e-08, + "chait": 9.55e-08, + "chandrashekhar": 9.55e-08, + "charisse": 9.55e-08, + "chavis": 9.55e-08, + "chela": 9.55e-08, + "cheyney": 9.55e-08, + "chievo": 9.55e-08, + "chifley": 9.55e-08, + "chiranjeevi": 9.55e-08, + "chiricahua": 9.55e-08, + "chitral": 9.55e-08, + "cica": 9.55e-08, + "citizenships": 9.55e-08, + "clavier": 9.55e-08, + "claymation": 9.55e-08, + "clopidogrel": 9.55e-08, + "clumpy": 9.55e-08, + "coffeehouses": 9.55e-08, + "cofounded": 9.55e-08, + "cohabit": 9.55e-08, + "coincidently": 9.55e-08, + "colima": 9.55e-08, + "colorism": 9.55e-08, + "compan": 9.55e-08, + "compte": 9.55e-08, + "conceits": 9.55e-08, + "conceptualised": 9.55e-08, + "congregationalists": 9.55e-08, + "consanguinity": 9.55e-08, + "consistant": 9.55e-08, + "controllability": 9.55e-08, + "convair": 9.55e-08, + "cookeville": 9.55e-08, + "cookouts": 9.55e-08, + "cootie": 9.55e-08, + "cornball": 9.55e-08, + "corollas": 9.55e-08, + "correctable": 9.55e-08, + "corrodes": 9.55e-08, + "corunna": 9.55e-08, + "counterweights": 9.55e-08, + "cowbells": 9.55e-08, + "cowden": 9.55e-08, + "cowgill": 9.55e-08, + "cowshed": 9.55e-08, + "cozens": 9.55e-08, + "crosss": 9.55e-08, + "currey": 9.55e-08, + "curtained": 9.55e-08, + "cyrille": 9.55e-08, + "czechia": 9.55e-08, + "damar": 9.55e-08, + "dameron": 9.55e-08, + "dasani": 9.55e-08, + "dasilva": 9.55e-08, + "dater": 9.55e-08, + "daycares": 9.55e-08, + "deas": 9.33e-08, + "decorous": 9.55e-08, + "dedi": 9.55e-08, + "deej": 9.55e-08, + "defibrillation": 9.55e-08, + "defiles": 9.55e-08, + "defranco": 9.55e-08, + "defs": 9.55e-08, + "dehydrator": 9.55e-08, + "delamere": 9.55e-08, + "demographer": 9.55e-08, + "denniston": 9.55e-08, + "depreciates": 9.55e-08, + "detoxifying": 9.55e-08, + "devane": 9.55e-08, + "devilman": 9.55e-08, + "devonte": 9.55e-08, + "dews": 9.55e-08, + "dida": 9.55e-08, + "diels": 9.55e-08, + "dieser": 9.55e-08, + "digestibility": 9.55e-08, + "dimensioned": 9.55e-08, + "dimitry": 9.55e-08, + "dionysos": 9.55e-08, + "disconcertingly": 9.55e-08, + "disembarkation": 9.55e-08, + "dismutase": 9.55e-08, + "dissipative": 9.55e-08, + "dissuading": 9.55e-08, + "distressingly": 9.55e-08, + "dmn": 9.55e-08, + "doolan": 9.55e-08, + "dooming": 9.55e-08, + "dormouse": 9.55e-08, + "dpw": 9.55e-08, + "draftee": 9.55e-08, + "drat": 9.55e-08, + "dreamless": 9.55e-08, + "drina": 9.55e-08, + "dropsy": 9.55e-08, + "dugong": 9.55e-08, + "dukat": 9.55e-08, + "dulcinea": 9.55e-08, + "dumaguete": 9.55e-08, + "duplo": 9.55e-08, + "dury": 9.55e-08, + "dwane": 9.55e-08, + "dweebs": 9.55e-08, + "dysons": 9.55e-08, + "earlham": 9.55e-08, + "earwigs": 9.55e-08, + "easterbrook": 9.55e-08, + "eaux": 9.55e-08, + "ebel": 9.55e-08, + "ecologies": 9.55e-08, + "edessa": 9.55e-08, + "edmonson": 9.55e-08, + "edsall": 9.55e-08, + "eem": 9.55e-08, + "effi": 9.55e-08, + "egift": 9.55e-08, + "egil": 9.55e-08, + "egotistic": 9.55e-08, + "eisler": 9.55e-08, + "ejaculates": 9.55e-08, + "electrocuting": 9.55e-08, + "electromagnetics": 9.55e-08, + "elen": 9.55e-08, + "ellingson": 9.55e-08, + "elora": 9.55e-08, + "empyrean": 9.55e-08, + "encaustic": 9.55e-08, + "endearingly": 9.55e-08, + "endonuclease": 9.55e-08, + "endows": 9.55e-08, + "enjoyably": 9.55e-08, + "enschede": 9.55e-08, + "epd": 9.55e-08, + "ephedra": 9.55e-08, + "erd": 9.55e-08, + "estep": 9.55e-08, + "estoril": 9.55e-08, + "ethnologist": 9.55e-08, + "etsi": 9.55e-08, + "evince": 9.55e-08, + "ewers": 9.55e-08, + "excitingly": 9.55e-08, + "exfoliated": 9.55e-08, + "exorcising": 9.55e-08, + "explicable": 9.55e-08, + "extragalactic": 9.55e-08, + "extrude": 9.55e-08, + "fabs": 9.55e-08, + "faff": 9.55e-08, + "fagot": 9.55e-08, + "fahmy": 9.55e-08, + "fais": 9.55e-08, + "fanfest": 9.55e-08, + "farmworker": 9.55e-08, + "faysal": 9.55e-08, + "feints": 9.55e-08, + "feldt": 9.55e-08, + "fettle": 9.55e-08, + "fichte": 9.55e-08, + "filleted": 9.55e-08, + "firstenergy": 9.55e-08, + "fishbein": 9.55e-08, + "fishkill": 9.55e-08, + "fitfully": 9.55e-08, + "fixit": 9.55e-08, + "flannigan": 9.55e-08, + "flashier": 9.55e-08, + "fledge": 9.55e-08, + "flin": 9.55e-08, + "fll": 9.55e-08, + "flowerpot": 9.55e-08, + "fnd": 9.55e-08, + "fondazione": 9.55e-08, + "fording": 9.55e-08, + "forewings": 9.55e-08, + "fost": 9.55e-08, + "foucaults": 9.55e-08, + "fourie": 9.55e-08, + "foxtail": 9.55e-08, + "fraulein": 9.55e-08, + "freiberg": 9.55e-08, + "fretless": 9.55e-08, + "fsl": 9.55e-08, + "fullerene": 9.55e-08, + "funchal": 9.55e-08, + "gabes": 9.55e-08, + "galashiels": 9.55e-08, + "galchenyuk": 9.55e-08, + "gamecock": 9.55e-08, + "gamemaker": 9.55e-08, + "gamete": 9.55e-08, + "geh": 9.55e-08, + "generico": 9.55e-08, + "gentium": 9.55e-08, + "geon": 9.55e-08, + "gesso": 9.55e-08, + "gfw": 9.55e-08, + "ginnie": 9.55e-08, + "giorgos": 9.55e-08, + "gloated": 9.55e-08, + "glorys": 9.55e-08, + "gloryhole": 9.55e-08, + "glossaries": 9.55e-08, + "gokus": 9.55e-08, + "goldberger": 9.55e-08, + "gonne": 9.55e-08, + "goodhart": 9.55e-08, + "gooseneck": 9.55e-08, + "gosden": 9.55e-08, + "graaf": 9.55e-08, + "grebes": 9.55e-08, + "greenie": 9.55e-08, + "gridded": 9.55e-08, + "groundhogs": 9.55e-08, + "groundsman": 9.55e-08, + "guarana": 9.55e-08, + "gulfs": 6.17e-08, + "gunsmoke": 9.55e-08, + "hagley": 9.55e-08, + "hagman": 9.55e-08, + "haise": 9.55e-08, + "harmattan": 9.55e-08, + "harmonising": 9.55e-08, + "harum": 9.55e-08, + "hashemite": 9.55e-08, + "hashi": 9.55e-08, + "hauppauge": 9.55e-08, + "hax": 9.55e-08, + "hefei": 9.55e-08, + "heideggers": 9.55e-08, + "helfrich": 9.55e-08, + "heraklion": 9.55e-08, + "hermiones": 9.55e-08, + "hern": 9.55e-08, + "herpesvirus": 9.55e-08, + "hertzberg": 9.55e-08, + "heterotrophic": 9.55e-08, + "hettie": 9.55e-08, + "hiddink": 9.55e-08, + "hieroglyph": 9.55e-08, + "higdon": 9.55e-08, + "hinshaw": 9.55e-08, + "hirono": 9.55e-08, + "hirt": 9.55e-08, + "hjalmar": 9.55e-08, + "hoeven": 9.55e-08, + "hordern": 9.55e-08, + "hotheaded": 9.55e-08, + "housebuilding": 9.55e-08, + "huis": 5.01e-08, + "hul": 9.55e-08, + "hundredfold": 9.55e-08, + "huni": 9.55e-08, + "hurstville": 9.55e-08, + "huxleys": 9.55e-08, + "hydrogeology": 9.55e-08, + "hydrolase": 9.55e-08, + "hydromorphone": 9.55e-08, + "hyp": 9.55e-08, + "hyperspectral": 9.55e-08, + "hypocrisies": 9.55e-08, + "ichiban": 9.55e-08, + "icsi": 9.55e-08, + "ideo": 9.55e-08, + "ifm": 9.55e-08, + "iheart": 9.55e-08, + "improviser": 9.55e-08, + "incendiaries": 9.55e-08, + "inducting": 9.55e-08, + "ingrate": 9.55e-08, + "innkeepers": 9.55e-08, + "inova": 9.55e-08, + "insecticidal": 9.55e-08, + "insufferably": 9.55e-08, + "interbreed": 9.55e-08, + "interlocutory": 9.55e-08, + "intranasal": 9.55e-08, + "invasiveness": 9.55e-08, + "irf": 9.55e-08, + "irradiating": 9.55e-08, + "ishi": 9.55e-08, + "iskra": 9.55e-08, + "itz": 9.55e-08, + "jaafar": 9.55e-08, + "jaegers": 9.55e-08, + "jakey": 9.55e-08, + "jamesons": 9.55e-08, + "jano": 9.55e-08, + "janowski": 9.55e-08, + "japa": 9.55e-08, + "jarryd": 9.55e-08, + "jaume": 9.55e-08, + "jbc": 9.55e-08, + "jci": 9.55e-08, + "jea": 9.55e-08, + "jered": 9.55e-08, + "jeremiahs": 9.55e-08, + "jeremias": 9.55e-08, + "jessamine": 9.55e-08, + "jetpacks": 9.55e-08, + "jettisoning": 9.55e-08, + "jingo": 9.55e-08, + "joffre": 9.55e-08, + "jone": 9.55e-08, + "jubilees": 9.55e-08, + "juggernauts": 9.55e-08, + "jur": 9.55e-08, + "justicia": 9.55e-08, + "kaddish": 9.55e-08, + "kafkaesque": 9.55e-08, + "kaila": 9.55e-08, + "kalish": 9.55e-08, + "kaneohe": 9.55e-08, + "katona": 9.55e-08, + "kawamura": 9.55e-08, + "kcr": 9.55e-08, + "kds": 9.12e-08, + "kdot": 9.55e-08, + "kellaway": 9.55e-08, + "kena": 9.55e-08, + "keylogger": 9.55e-08, + "kgo": 9.55e-08, + "khalif": 9.55e-08, + "khayyam": 9.55e-08, + "kias": 9.55e-08, + "kiama": 9.55e-08, + "kiloton": 9.55e-08, + "kindergartner": 9.55e-08, + "kircher": 9.55e-08, + "kiser": 9.55e-08, + "kitagawa": 9.55e-08, + "kmph": 9.55e-08, + "kohut": 9.55e-08, + "koln": 9.55e-08, + "korsakov": 9.55e-08, + "kovach": 9.55e-08, + "kovacic": 9.55e-08, + "kuen": 9.55e-08, + "kutner": 9.55e-08, + "kuwaitis": 9.55e-08, + "kwasi": 9.55e-08, + "kyong": 9.55e-08, + "lachapelle": 9.55e-08, + "lamellae": 9.55e-08, + "lamine": 9.55e-08, + "lancey": 9.55e-08, + "langerhans": 9.55e-08, + "lanta": 9.55e-08, + "lanyon": 9.55e-08, + "lasix": 9.55e-08, + "lasorda": 9.55e-08, + "lato": 9.55e-08, + "launderers": 9.55e-08, + "laurentiis": 9.55e-08, + "lautenberg": 9.55e-08, + "lavezzi": 9.55e-08, + "lawgiver": 9.55e-08, + "lba": 9.55e-08, + "lct": 9.55e-08, + "leachate": 9.55e-08, + "leaseback": 9.55e-08, + "leaseholders": 9.55e-08, + "lepton": 9.55e-08, + "leutnant": 9.55e-08, + "liaquat": 9.55e-08, + "libidinous": 9.55e-08, + "libitum": 9.55e-08, + "licinius": 9.55e-08, + "liles": 9.55e-08, + "linderman": 9.55e-08, + "literacies": 9.55e-08, + "lith": 9.55e-08, + "litten": 9.55e-08, + "llcs": 5.5e-08, + "lodestone": 9.55e-08, + "lohse": 9.55e-08, + "lold": 9.55e-08, + "lowlights": 9.55e-08, + "lpi": 9.55e-08, + "ltt": 9.55e-08, + "ludlum": 9.55e-08, + "macaca": 9.55e-08, + "macedonias": 9.55e-08, + "maceration": 9.55e-08, + "maco": 9.55e-08, + "madisonville": 9.55e-08, + "magmatism": 9.55e-08, + "makhachkala": 9.55e-08, + "malleus": 9.55e-08, + "malmaison": 9.55e-08, + "maltreated": 9.55e-08, + "mamelodi": 9.55e-08, + "mamluks": 9.55e-08, + "manar": 9.55e-08, + "manav": 9.55e-08, + "mandys": 9.55e-08, + "manoel": 9.55e-08, + "mantled": 9.55e-08, + "marinos": 8.91e-08, + "mariya": 9.55e-08, + "markell": 9.55e-08, + "martz": 9.55e-08, + "marussia": 9.55e-08, + "marwa": 9.55e-08, + "marylanders": 9.55e-08, + "materialists": 9.55e-08, + "matildas": 9.33e-08, + "mauboy": 9.55e-08, + "mauis": 9.55e-08, + "maximillian": 9.55e-08, + "mbh": 9.55e-08, + "mcchrystal": 9.55e-08, + "mcconnel": 9.55e-08, + "mcinnis": 9.55e-08, + "mckeesport": 9.55e-08, + "mcsweeney": 9.55e-08, + "medusas": 9.55e-08, + "mees": 9.55e-08, + "megacity": 9.55e-08, + "meiko": 9.55e-08, + "meller": 9.55e-08, + "mencius": 9.55e-08, + "mercian": 9.55e-08, + "merl": 9.55e-08, + "merrills": 9.55e-08, + "metheny": 9.55e-08, + "meting": 9.55e-08, + "meus": 9.55e-08, + "meyrick": 9.55e-08, + "mfl": 9.55e-08, + "microfluidics": 9.55e-08, + "midoriya": 9.55e-08, + "mikhailov": 9.55e-08, + "millis": 9.55e-08, + "millon": 9.55e-08, + "milnes": 6.31e-08, + "milward": 9.55e-08, + "mimed": 9.55e-08, + "minehead": 9.55e-08, + "minora": 9.55e-08, + "mirin": 9.55e-08, + "miscues": 9.55e-08, + "mishkin": 9.55e-08, + "mismo": 9.55e-08, + "missi": 9.55e-08, + "mnr": 9.55e-08, + "monaro": 9.55e-08, + "moneypenny": 9.55e-08, + "moraga": 9.55e-08, + "morlock": 9.55e-08, + "mrazek": 9.55e-08, + "mubaraks": 9.55e-08, + "mulhall": 9.55e-08, + "murderess": 9.55e-08, + "murnau": 9.55e-08, + "murrah": 9.55e-08, + "musab": 9.55e-08, + "muscling": 9.55e-08, + "muscovites": 9.55e-08, + "mutterings": 9.55e-08, + "mystically": 9.55e-08, + "naji": 9.55e-08, + "nalini": 9.55e-08, + "nanos": 9.55e-08, + "nanowire": 9.55e-08, + "nanu": 9.55e-08, + "naral": 9.55e-08, + "nasarawa": 9.55e-08, + "nauka": 9.55e-08, + "neonicotinoids": 9.55e-08, + "nestorian": 9.55e-08, + "neuwirth": 9.55e-08, + "newsmakers": 9.55e-08, + "niese": 9.55e-08, + "nightdress": 9.55e-08, + "nihilists": 9.55e-08, + "nipsey": 9.55e-08, + "nisan": 9.55e-08, + "niskanen": 9.55e-08, + "nll": 9.55e-08, + "nmp": 9.55e-08, + "nobbs": 9.55e-08, + "nobile": 9.55e-08, + "noboru": 9.55e-08, + "nofx": 9.55e-08, + "noli": 9.55e-08, + "noodling": 9.55e-08, + "noradrenaline": 9.55e-08, + "noticable": 9.55e-08, + "nowa": 9.55e-08, + "nuking": 9.55e-08, + "nuru": 9.55e-08, + "nyts": 9.55e-08, + "ogara": 9.55e-08, + "obelix": 9.55e-08, + "obligingly": 9.55e-08, + "offaly": 9.55e-08, + "oficina": 9.55e-08, + "ojos": 9.55e-08, + "olesen": 9.55e-08, + "oncorhynchus": 9.55e-08, + "opalescent": 9.55e-08, + "openvpn": 9.55e-08, + "ords": 9.55e-08, + "oriya": 9.55e-08, + "ormskirk": 9.55e-08, + "orthopedist": 9.55e-08, + "orvieto": 9.55e-08, + "osteoblasts": 9.55e-08, + "ostrom": 9.55e-08, + "otello": 9.55e-08, + "othering": 9.55e-08, + "otomo": 9.55e-08, + "ouran": 9.55e-08, + "outpaces": 9.55e-08, + "outspent": 9.55e-08, + "overfed": 9.55e-08, + "oversteer": 9.55e-08, + "overtaxed": 9.55e-08, + "pacesetter": 9.55e-08, + "pagerank": 9.55e-08, + "pakis": 9.55e-08, + "palladino": 9.55e-08, + "palmitate": 9.55e-08, + "palooza": 9.55e-08, + "pamir": 9.55e-08, + "panadol": 9.55e-08, + "panicum": 9.55e-08, + "papen": 9.55e-08, + "papules": 9.55e-08, + "parmigiano": 9.55e-08, + "paroxetine": 9.55e-08, + "partakers": 9.55e-08, + "parthia": 9.55e-08, + "pascua": 9.55e-08, + "passim": 9.55e-08, + "pastis": 9.55e-08, + "patchett": 9.55e-08, + "paulos": 9.55e-08, + "pdq": 9.55e-08, + "pedes": 9.55e-08, + "penge": 9.55e-08, + "penrod": 9.55e-08, + "pense": 9.55e-08, + "perfomance": 9.55e-08, + "pernille": 9.55e-08, + "pescara": 9.55e-08, + "petard": 9.55e-08, + "petrels": 9.55e-08, + "petya": 9.55e-08, + "phaedrus": 9.55e-08, + "phonographic": 9.55e-08, + "photobucket": 9.55e-08, + "piel": 9.55e-08, + "pims": 9.55e-08, + "pinchas": 9.55e-08, + "piques": 9.55e-08, + "plur": 9.55e-08, + "pocs": 9.55e-08, + "poisoner": 9.55e-08, + "pollocks": 9.55e-08, + "polokwane": 9.55e-08, + "polyandry": 9.55e-08, + "polymerized": 9.55e-08, + "polymorph": 9.55e-08, + "pompe": 9.55e-08, + "porton": 9.55e-08, + "portside": 9.55e-08, + "potchefstroom": 9.55e-08, + "ppps": 9.55e-08, + "prerelease": 9.55e-08, + "primero": 9.55e-08, + "propensities": 9.55e-08, + "proscription": 9.55e-08, + "prothero": 9.55e-08, + "provi": 9.55e-08, + "pshh": 9.55e-08, + "pufferfish": 9.55e-08, + "purnima": 9.55e-08, + "qh": 9.55e-08, + "queenslanders": 9.55e-08, + "quercetin": 9.55e-08, + "quigg": 9.55e-08, + "quintuplets": 9.55e-08, + "rabbah": 9.55e-08, + "rabbani": 9.55e-08, + "radiograph": 9.55e-08, + "raisman": 9.55e-08, + "rapido": 9.55e-08, + "rateable": 9.55e-08, + "ravis": 9.55e-08, + "reasserting": 9.55e-08, + "reawaken": 9.55e-08, + "rechecked": 9.55e-08, + "reconsiders": 9.55e-08, + "redis": 9.55e-08, + "redraft": 9.55e-08, + "rehan": 9.55e-08, + "reise": 9.55e-08, + "relents": 9.55e-08, + "reli": 9.55e-08, + "relight": 9.55e-08, + "reoriented": 9.55e-08, + "repped": 9.55e-08, + "reproof": 9.55e-08, + "republishing": 9.55e-08, + "revile": 9.55e-08, + "rhel": 9.55e-08, + "rijn": 9.55e-08, + "riling": 9.55e-08, + "rippin": 9.55e-08, + "rizk": 9.55e-08, + "roff": 9.55e-08, + "rogge": 9.55e-08, + "rollup": 9.55e-08, + "rompers": 9.55e-08, + "ronen": 9.55e-08, + "ronni": 9.55e-08, + "rosenwald": 9.55e-08, + "rotman": 9.55e-08, + "rowans": 9.55e-08, + "roybal": 9.55e-08, + "rugbys": 9.55e-08, + "ruiner": 9.55e-08, + "runnels": 9.55e-08, + "ruppert": 9.55e-08, + "russes": 9.55e-08, + "sacroiliac": 9.55e-08, + "sakuma": 9.55e-08, + "salvator": 9.55e-08, + "salvi": 9.55e-08, + "saskatchewans": 9.55e-08, + "savarkar": 9.55e-08, + "sayeth": 9.55e-08, + "sayn": 9.55e-08, + "sbn": 9.55e-08, + "sccm": 9.55e-08, + "schiavone": 9.55e-08, + "schoenfeld": 9.55e-08, + "schorr": 9.55e-08, + "schurrle": 9.55e-08, + "scientologys": 9.55e-08, + "scotian": 9.55e-08, + "scottys": 9.55e-08, + "sdu": 9.55e-08, + "secon": 9.55e-08, + "seersucker": 9.55e-08, + "selborne": 9.55e-08, + "shantytown": 9.55e-08, + "shapley": 9.55e-08, + "sheung": 9.55e-08, + "shigella": 9.55e-08, + "shingen": 9.55e-08, + "showbox": 9.55e-08, + "showdowns": 9.55e-08, + "shucked": 9.55e-08, + "siloam": 9.55e-08, + "simvastatin": 9.55e-08, + "sinc": 9.55e-08, + "singsong": 9.55e-08, + "sisu": 9.55e-08, + "slauson": 9.55e-08, + "slideshare": 9.55e-08, + "smartcard": 9.55e-08, + "smoltz": 9.55e-08, + "snapes": 9.55e-08, + "sne": 9.55e-08, + "snickered": 9.55e-08, + "sobeys": 9.55e-08, + "somer": 9.55e-08, + "somes": 9.55e-08, + "sophos": 9.55e-08, + "sotho": 9.55e-08, + "sphynx": 9.55e-08, + "spode": 9.55e-08, + "sprat": 9.55e-08, + "springwatch": 9.55e-08, + "spurns": 9.55e-08, + "sridhar": 9.55e-08, + "stabled": 9.55e-08, + "stai": 9.55e-08, + "standoffs": 9.55e-08, + "stauskas": 9.55e-08, + "steffan": 9.55e-08, + "stefon": 9.55e-08, + "stossel": 9.55e-08, + "stoutly": 9.55e-08, + "strummed": 9.55e-08, + "studie": 9.55e-08, + "studley": 9.55e-08, + "stuntmen": 9.55e-08, + "stylesheet": 9.55e-08, + "styria": 9.55e-08, + "subframe": 9.55e-08, + "subspecialty": 9.55e-08, + "subwoofers": 9.55e-08, + "succesfully": 9.55e-08, + "sucha": 9.55e-08, + "sukkot": 9.55e-08, + "sulked": 9.55e-08, + "sulks": 9.55e-08, + "sungs": 9.55e-08, + "sunn": 9.55e-08, + "sunshade": 9.55e-08, + "superfans": 9.55e-08, + "sutro": 9.55e-08, + "swags": 9.55e-08, + "swaine": 9.55e-08, + "swayamsevak": 9.55e-08, + "sweepstake": 9.55e-08, + "swimmin": 9.55e-08, + "swiveling": 9.55e-08, + "sylph": 9.55e-08, + "taraji": 9.55e-08, + "tarim": 9.55e-08, + "tarnovo": 9.55e-08, + "taxpaying": 9.55e-08, + "tcdd": 9.55e-08, + "tehsil": 9.55e-08, + "tendentious": 9.55e-08, + "tenochtitlan": 9.55e-08, + "tephra": 9.55e-08, + "theophrastus": 9.55e-08, + "thies": 9.55e-08, + "thp": 9.55e-08, + "thymidine": 9.55e-08, + "thyssenkrupp": 9.55e-08, + "tibets": 9.55e-08, + "tiong": 9.55e-08, + "toadstool": 9.55e-08, + "tolu": 9.55e-08, + "tomlinsons": 9.55e-08, + "toothpastes": 9.55e-08, + "topi": 9.55e-08, + "tosu": 9.55e-08, + "touchingly": 9.55e-08, + "touro": 9.55e-08, + "tova": 9.55e-08, + "trachtenberg": 9.55e-08, + "tractate": 9.55e-08, + "tragus": 9.55e-08, + "tranq": 9.55e-08, + "transdisciplinary": 9.55e-08, + "transgressing": 9.55e-08, + "transwomen": 9.55e-08, + "traver": 9.55e-08, + "treasonable": 9.55e-08, + "trias": 9.55e-08, + "trickett": 9.55e-08, + "triclosan": 9.55e-08, + "trotta": 9.55e-08, + "truett": 9.55e-08, + "trully": 9.55e-08, + "ttb": 9.55e-08, + "tylor": 9.55e-08, + "uconns": 9.55e-08, + "uhmm": 9.55e-08, + "umph": 9.55e-08, + "unburden": 9.55e-08, + "underfed": 9.55e-08, + "unethically": 9.55e-08, + "univac": 9.55e-08, + "unredacted": 9.55e-08, + "unscrewing": 9.55e-08, + "untouchability": 9.55e-08, + "unworn": 9.55e-08, + "uob": 9.55e-08, + "updater": 9.55e-08, + "upgradable": 9.55e-08, + "urbain": 9.55e-08, + "usac": 9.55e-08, + "uvula": 9.55e-08, + "vaughans": 9.55e-08, + "vause": 9.55e-08, + "verbosity": 9.55e-08, + "verdon": 9.55e-08, + "verrazano": 9.55e-08, + "vexation": 9.55e-08, + "viasat": 9.55e-08, + "vilanova": 9.55e-08, + "violist": 9.55e-08, + "viru": 9.55e-08, + "visualizer": 9.55e-08, + "vitti": 9.55e-08, + "vivica": 9.55e-08, + "vls": 9.55e-08, + "vmax": 9.55e-08, + "vonda": 9.55e-08, + "vuk": 9.55e-08, + "wab": 9.55e-08, + "waddles": 9.55e-08, + "walkerville": 9.55e-08, + "wallasey": 9.55e-08, + "wandas": 9.55e-08, + "warhawk": 9.55e-08, + "warriner": 9.55e-08, + "watchos": 9.55e-08, + "waterspout": 9.55e-08, + "waynesville": 9.55e-08, + "wearisome": 9.55e-08, + "weebly": 9.55e-08, + "weezy": 9.55e-08, + "welk": 9.55e-08, + "wellsville": 9.55e-08, + "wenders": 9.55e-08, + "westerman": 9.55e-08, + "wetherill": 9.55e-08, + "wework": 9.55e-08, + "whangarei": 9.55e-08, + "whatchu": 9.55e-08, + "whitmire": 9.55e-08, + "whitty": 9.55e-08, + "wickens": 9.55e-08, + "wides": 9.55e-08, + "wimborne": 9.55e-08, + "windblown": 9.55e-08, + "wingard": 9.55e-08, + "wjc": 9.55e-08, + "wlc": 9.55e-08, + "wmt": 9.55e-08, + "wolbachia": 9.55e-08, + "woodhaven": 9.55e-08, + "wral": 9.55e-08, + "wrangled": 9.55e-08, + "xda": 9.55e-08, + "yaki": 9.55e-08, + "yantra": 9.55e-08, + "yuno": 9.55e-08, + "zadie": 9.55e-08, + "zamalek": 9.55e-08, + "zante": 9.55e-08, + "zhenya": 9.55e-08, + "ziv": 9.55e-08, + "aaaaaah": 9.33e-08, + "aacta": 9.33e-08, + "aaw": 9.33e-08, + "abbvie": 9.33e-08, + "abhinav": 9.33e-08, + "absorptive": 9.33e-08, + "aclus": 9.33e-08, + "acquits": 9.33e-08, + "actionscript": 9.33e-08, + "actus": 9.33e-08, + "adah": 9.33e-08, + "addario": 9.33e-08, + "adeyemi": 9.33e-08, + "adjoin": 9.33e-08, + "adjourning": 9.33e-08, + "adlers": 9.33e-08, + "administrating": 9.33e-08, + "aeropostale": 9.33e-08, + "afcon": 9.33e-08, + "afia": 9.33e-08, + "africanism": 9.33e-08, + "agathon": 9.33e-08, + "aigoo": 9.33e-08, + "aisne": 9.33e-08, + "alamance": 9.33e-08, + "alejo": 9.33e-08, + "alfieri": 9.33e-08, + "algerie": 9.33e-08, + "alhamdulillah": 9.33e-08, + "alipay": 9.33e-08, + "allsop": 9.33e-08, + "americanos": 9.33e-08, + "americium": 9.33e-08, + "amnon": 9.33e-08, + "anet": 9.33e-08, + "angelino": 9.33e-08, + "angioedema": 9.33e-08, + "angstrom": 9.33e-08, + "animorphs": 9.33e-08, + "annnnd": 9.33e-08, + "anor": 9.33e-08, + "ansan": 9.33e-08, + "anschutz": 9.33e-08, + "ansett": 9.33e-08, + "antipas": 9.33e-08, + "aplin": 9.33e-08, + "apollinaire": 9.33e-08, + "appx": 9.33e-08, + "ardrossan": 9.33e-08, + "arenado": 9.33e-08, + "aridity": 9.33e-08, + "aros": 9.33e-08, + "arps": 9.33e-08, + "asakusa": 9.33e-08, + "asbo": 9.33e-08, + "ascher": 9.33e-08, + "asea": 9.33e-08, + "asem": 9.33e-08, + "aspinwall": 9.33e-08, + "assemblymen": 9.33e-08, + "astralis": 9.33e-08, + "attenuates": 9.33e-08, + "attune": 9.33e-08, + "aube": 9.33e-08, + "aubyn": 9.33e-08, + "awi": 9.33e-08, + "bacc": 9.33e-08, + "backflow": 9.33e-08, + "backplate": 9.33e-08, + "backslide": 9.33e-08, + "backsplash": 9.33e-08, + "bactrian": 9.33e-08, + "badenoch": 9.33e-08, + "badham": 9.33e-08, + "baia": 9.33e-08, + "baldrick": 9.33e-08, + "balkh": 9.33e-08, + "ballack": 9.33e-08, + "balvin": 9.33e-08, + "barbora": 9.33e-08, + "barenboim": 9.33e-08, + "barraclough": 9.33e-08, + "basch": 9.33e-08, + "baumeister": 9.33e-08, + "bayle": 9.33e-08, + "bdm": 9.33e-08, + "begot": 9.33e-08, + "beignets": 9.33e-08, + "beliebers": 9.33e-08, + "belper": 9.33e-08, + "beneficiation": 9.33e-08, + "benicia": 9.33e-08, + "benzoic": 9.33e-08, + "beseeching": 9.33e-08, + "bht": 9.33e-08, + "bhu": 9.33e-08, + "bich": 9.33e-08, + "bida": 9.33e-08, + "bigsby": 9.33e-08, + "bingen": 9.33e-08, + "biochemically": 9.33e-08, + "birkdale": 9.33e-08, + "bleeped": 9.33e-08, + "blitzen": 9.33e-08, + "bloodsucking": 9.33e-08, + "blore": 9.33e-08, + "blotched": 9.33e-08, + "bloxham": 9.33e-08, + "boardinghouse": 9.33e-08, + "boatwright": 9.33e-08, + "bobtail": 9.33e-08, + "bohan": 9.33e-08, + "boli": 9.33e-08, + "bonos": 9.33e-08, + "boobed": 9.33e-08, + "bookmobile": 9.33e-08, + "borage": 9.33e-08, + "borohydride": 9.33e-08, + "botanica": 9.33e-08, + "botching": 9.33e-08, + "botti": 9.33e-08, + "bournes": 9.33e-08, + "bowstring": 9.33e-08, + "boxings": 9.33e-08, + "breakwaters": 9.33e-08, + "brede": 9.33e-08, + "breezing": 9.33e-08, + "brer": 9.33e-08, + "brewmaster": 9.33e-08, + "bridles": 9.33e-08, + "briefe": 9.33e-08, + "britian": 9.33e-08, + "bromfield": 9.33e-08, + "bronner": 9.33e-08, + "broths": 9.33e-08, + "broz": 9.33e-08, + "buckie": 9.33e-08, + "burchill": 9.33e-08, + "burson": 9.33e-08, + "busload": 9.33e-08, + "busselton": 9.33e-08, + "bustard": 9.33e-08, + "bwana": 9.33e-08, + "bwc": 9.33e-08, + "byford": 9.33e-08, + "calley": 9.33e-08, + "calo": 9.33e-08, + "calumny": 9.33e-08, + "cammie": 9.33e-08, + "campbeltown": 9.33e-08, + "carny": 9.33e-08, + "carom": 9.33e-08, + "carrer": 9.33e-08, + "casals": 9.33e-08, + "cassandras": 9.33e-08, + "castlebar": 9.33e-08, + "catabolic": 9.33e-08, + "catchiest": 9.33e-08, + "catenary": 9.33e-08, + "catfished": 9.33e-08, + "cathodic": 9.33e-08, + "cattermole": 9.33e-08, + "ceilinged": 9.33e-08, + "cellmates": 9.33e-08, + "cemal": 9.33e-08, + "chael": 9.33e-08, + "chalfont": 9.33e-08, + "chamblee": 9.33e-08, + "chancy": 9.33e-08, + "chandon": 9.33e-08, + "chariton": 9.33e-08, + "charlestons": 9.33e-08, + "charnley": 9.33e-08, + "chaturthi": 9.33e-08, + "chauvet": 9.33e-08, + "cheif": 9.33e-08, + "cherche": 9.33e-08, + "chey": 9.33e-08, + "chinensis": 9.33e-08, + "chooks": 9.33e-08, + "choroid": 9.33e-08, + "christenson": 9.33e-08, + "christer": 9.33e-08, + "christlike": 9.33e-08, + "christman": 9.33e-08, + "chus": 9.33e-08, + "chucho": 9.33e-08, + "cingular": 9.33e-08, + "classique": 9.33e-08, + "cleeve": 9.33e-08, + "clerked": 9.33e-08, + "clontarf": 9.33e-08, + "cointreau": 9.33e-08, + "colney": 9.33e-08, + "colocation": 9.33e-08, + "coloma": 9.33e-08, + "colorimetric": 9.33e-08, + "colourist": 9.33e-08, + "committment": 9.33e-08, + "comprehensiveness": 9.33e-08, + "confab": 9.33e-08, + "confortable": 9.33e-08, + "confraternity": 9.33e-08, + "conjunctive": 9.33e-08, + "connote": 9.33e-08, + "conors": 9.33e-08, + "constitutively": 9.33e-08, + "contactor": 9.33e-08, + "contrails": 9.33e-08, + "contraire": 9.33e-08, + "coolangatta": 9.33e-08, + "cornflour": 9.33e-08, + "corpuscles": 9.33e-08, + "correll": 9.33e-08, + "cotterell": 9.33e-08, + "courseware": 9.33e-08, + "cpec": 9.33e-08, + "craniotomy": 9.33e-08, + "creagh": 9.33e-08, + "cregan": 9.33e-08, + "cresson": 9.33e-08, + "crossan": 9.33e-08, + "crowdstrike": 9.33e-08, + "cryotherapy": 9.33e-08, + "cryptos": 9.33e-08, + "cunty": 9.33e-08, + "cwl": 9.33e-08, + "cyanogenmod": 9.33e-08, + "cygnet": 9.33e-08, + "dacey": 9.33e-08, + "dago": 9.33e-08, + "dair": 9.33e-08, + "damit": 9.33e-08, + "dango": 9.33e-08, + "dartboard": 9.33e-08, + "daru": 9.33e-08, + "davon": 9.33e-08, + "dawdle": 9.33e-08, + "dawid": 9.33e-08, + "dbp": 9.33e-08, + "decanters": 9.33e-08, + "decoupage": 9.33e-08, + "deighton": 9.33e-08, + "delaneys": 9.33e-08, + "delorme": 9.33e-08, + "delroy": 9.33e-08, + "dement": 9.33e-08, + "dementias": 9.33e-08, + "democratized": 9.33e-08, + "demonising": 9.33e-08, + "denker": 9.33e-08, + "denniss": 9.33e-08, + "deraa": 9.33e-08, + "dernier": 9.33e-08, + "destructions": 9.33e-08, + "deulofeu": 9.33e-08, + "deveraux": 9.33e-08, + "dextran": 9.33e-08, + "dhani": 9.33e-08, + "diable": 9.33e-08, + "diacetyl": 9.33e-08, + "diaphanous": 9.33e-08, + "diarrheal": 9.33e-08, + "diclofenac": 9.33e-08, + "difficultly": 9.33e-08, + "diggins": 9.33e-08, + "diliman": 9.33e-08, + "dingbat": 9.33e-08, + "dingers": 9.33e-08, + "discomforting": 9.33e-08, + "disjunctive": 9.33e-08, + "divo": 9.33e-08, + "dld": 9.33e-08, + "dlo": 9.33e-08, + "donnelley": 9.33e-08, + "downregulation": 9.33e-08, + "downshift": 9.33e-08, + "drdo": 9.33e-08, + "drily": 9.33e-08, + "droppers": 9.33e-08, + "drusus": 9.33e-08, + "duffie": 9.33e-08, + "dundonald": 9.33e-08, + "dupin": 9.33e-08, + "durk": 9.33e-08, + "dynamometer": 9.33e-08, + "easiness": 9.33e-08, + "eastwick": 9.33e-08, + "ebf": 9.33e-08, + "ebonics": 9.33e-08, + "ectoderm": 9.33e-08, + "efren": 9.33e-08, + "ege": 9.33e-08, + "ehrlichman": 9.33e-08, + "ejuice": 9.33e-08, + "eldoret": 9.33e-08, + "eles": 9.33e-08, + "ellensburg": 9.33e-08, + "eluting": 9.33e-08, + "emasculating": 9.33e-08, + "emerys": 9.33e-08, + "emh": 9.33e-08, + "emos": 9.33e-08, + "empiricist": 9.33e-08, + "enderby": 9.33e-08, + "endosperm": 9.33e-08, + "energon": 9.33e-08, + "enfeebled": 9.33e-08, + "enlai": 9.33e-08, + "enn": 9.33e-08, + "enterovirus": 9.33e-08, + "epf": 9.33e-08, + "ephrem": 9.33e-08, + "equi": 9.33e-08, + "erlbaum": 9.33e-08, + "escola": 9.33e-08, + "espen": 9.33e-08, + "esrc": 9.33e-08, + "esrd": 9.33e-08, + "essar": 9.33e-08, + "etp": 9.33e-08, + "etu": 9.33e-08, + "europium": 9.33e-08, + "ewr": 9.33e-08, + "excellencies": 9.33e-08, + "exciton": 9.33e-08, + "excretory": 9.33e-08, + "exiling": 9.33e-08, + "exploiter": 9.33e-08, + "extrasensory": 9.33e-08, + "eyeful": 9.33e-08, + "fabia": 9.33e-08, + "facetiously": 9.33e-08, + "fack": 9.33e-08, + "faders": 9.33e-08, + "fairlane": 9.33e-08, + "fales": 9.33e-08, + "farhadi": 9.33e-08, + "fastnet": 9.33e-08, + "faunas": 9.33e-08, + "fawzi": 9.33e-08, + "fecund": 9.33e-08, + "felicitys": 9.33e-08, + "fernandina": 9.33e-08, + "feroz": 9.33e-08, + "ferrule": 9.33e-08, + "fiddlesticks": 9.33e-08, + "filch": 9.33e-08, + "filius": 9.33e-08, + "finan": 9.33e-08, + "finny": 9.33e-08, + "flamboyantly": 9.33e-08, + "flatley": 9.33e-08, + "flautist": 9.33e-08, + "flds": 9.33e-08, + "flicka": 9.33e-08, + "floaties": 9.33e-08, + "flybe": 9.33e-08, + "forestville": 9.33e-08, + "forfeitures": 9.33e-08, + "forgings": 9.33e-08, + "fozzie": 9.33e-08, + "fraggle": 9.33e-08, + "fraley": 9.33e-08, + "fratricide": 9.33e-08, + "freethinkers": 9.33e-08, + "frias": 9.33e-08, + "fripp": 9.33e-08, + "frivolously": 9.33e-08, + "froman": 9.33e-08, + "ftas": 9.33e-08, + "fusible": 9.33e-08, + "fuuuuuck": 9.33e-08, + "gaals": 9.33e-08, + "gabaergic": 9.33e-08, + "galla": 9.33e-08, + "gaos": 9.33e-08, + "gardiners": 9.33e-08, + "garr": 9.33e-08, + "gdt": 9.33e-08, + "gedo": 9.33e-08, + "geely": 9.33e-08, + "gellhorn": 9.33e-08, + "generalship": 9.33e-08, + "genna": 9.33e-08, + "gibe": 9.33e-08, + "gildas": 9.33e-08, + "gilmartin": 9.33e-08, + "gilmores": 9.33e-08, + "gip": 9.33e-08, + "girded": 9.33e-08, + "gissing": 9.33e-08, + "gladius": 9.33e-08, + "glibly": 9.33e-08, + "gliomas": 9.33e-08, + "gloaming": 9.33e-08, + "gluconate": 9.33e-08, + "goalkicker": 9.33e-08, + "goderich": 9.33e-08, + "gola": 9.33e-08, + "golder": 9.33e-08, + "goodlatte": 9.33e-08, + "gorden": 9.33e-08, + "gowers": 9.33e-08, + "grandison": 9.33e-08, + "greyed": 9.33e-08, + "grrrl": 9.33e-08, + "gulbis": 9.33e-08, + "gundogan": 9.33e-08, + "gurls": 9.33e-08, + "gurukul": 9.33e-08, + "guss": 6.31e-08, + "gustatory": 9.33e-08, + "gylfi": 9.33e-08, + "gyrations": 9.33e-08, + "haaland": 9.33e-08, + "haasan": 9.33e-08, + "haccp": 9.33e-08, + "hackathons": 9.33e-08, + "haikyuu": 9.33e-08, + "halogenated": 9.33e-08, + "halvorsen": 9.33e-08, + "hammadi": 9.33e-08, + "hamtramck": 9.33e-08, + "handsworth": 9.33e-08, + "hanker": 9.33e-08, + "harangued": 9.33e-08, + "harddrive": 9.33e-08, + "harlems": 9.33e-08, + "harrah": 9.33e-08, + "harrap": 9.33e-08, + "hartfield": 9.33e-08, + "haslem": 9.33e-08, + "hattersley": 9.33e-08, + "hawai": 9.33e-08, + "heavyset": 9.33e-08, + "heidis": 9.33e-08, + "heifetz": 9.33e-08, + "heinze": 9.33e-08, + "heliotrope": 9.33e-08, + "hellenes": 9.33e-08, + "henrie": 9.33e-08, + "higurashi": 9.33e-08, + "hiko": 9.33e-08, + "hildesheim": 9.33e-08, + "histocompatibility": 9.33e-08, + "hiw": 9.33e-08, + "hks": 9.33e-08, + "hobbie": 9.33e-08, + "hodes": 9.33e-08, + "hoed": 9.33e-08, + "hofmeister": 9.33e-08, + "honoria": 9.33e-08, + "hopefulness": 9.33e-08, + "horseless": 9.33e-08, + "hpm": 9.33e-08, + "hukou": 9.33e-08, + "humperdinck": 9.33e-08, + "huynh": 9.33e-08, + "hypochondria": 9.33e-08, + "hypoglycaemia": 9.33e-08, + "hyssop": 9.33e-08, + "hyundais": 9.33e-08, + "iblis": 9.33e-08, + "icse": 9.33e-08, + "igarashi": 9.33e-08, + "iiib": 9.33e-08, + "ikke": 9.33e-08, + "ilaria": 9.33e-08, + "imacs": 9.33e-08, + "impedances": 9.33e-08, + "imposible": 9.33e-08, + "inas": 9.33e-08, + "incentivised": 9.33e-08, + "inconspicuously": 9.33e-08, + "incontestable": 9.33e-08, + "inda": 9.33e-08, + "industri": 9.33e-08, + "industrialize": 9.33e-08, + "ineffectively": 9.33e-08, + "infallibly": 9.33e-08, + "inflames": 9.33e-08, + "infotech": 9.33e-08, + "ingvar": 9.33e-08, + "inheritable": 9.33e-08, + "inlaws": 9.33e-08, + "inquisitions": 9.33e-08, + "insectivorous": 9.33e-08, + "intensifier": 9.33e-08, + "interlink": 9.33e-08, + "investec": 9.33e-08, + "ioannis": 9.33e-08, + "irrelevancy": 9.33e-08, + "irritatingly": 9.33e-08, + "islas": 9.33e-08, + "isoniazid": 9.33e-08, + "isotherm": 9.33e-08, + "itg": 9.33e-08, + "izumo": 9.33e-08, + "jairo": 9.33e-08, + "jaja": 9.33e-08, + "janda": 9.33e-08, + "jangly": 9.33e-08, + "jaunts": 9.33e-08, + "jayawardene": 9.33e-08, + "jeeva": 9.33e-08, + "jeggings": 9.33e-08, + "jemaine": 9.33e-08, + "jesmond": 9.33e-08, + "jewess": 9.33e-08, + "jhonny": 9.33e-08, + "jiabao": 9.33e-08, + "jimmer": 9.33e-08, + "jjj": 9.33e-08, + "jlt": 9.33e-08, + "joinville": 9.33e-08, + "jonesing": 9.33e-08, + "jorg": 9.33e-08, + "jorts": 9.33e-08, + "jpegs": 9.33e-08, + "jtf": 9.33e-08, + "jungfrau": 9.33e-08, + "kabbalistic": 9.33e-08, + "kadesh": 9.33e-08, + "kaen": 9.33e-08, + "kahler": 9.33e-08, + "karima": 9.33e-08, + "kastner": 9.33e-08, + "kawaguchi": 9.33e-08, + "kazooie": 9.33e-08, + "kazu": 9.33e-08, + "keanes": 9.33e-08, + "keiran": 9.33e-08, + "kejriwals": 9.33e-08, + "kentuckian": 9.33e-08, + "kerby": 9.33e-08, + "keter": 9.33e-08, + "ketu": 9.33e-08, + "keweenaw": 9.33e-08, + "khabarovsk": 9.33e-08, + "kharagpur": 9.33e-08, + "khi": 9.33e-08, + "khin": 9.33e-08, + "khou": 9.33e-08, + "kimmie": 9.33e-08, + "kimmo": 9.33e-08, + "kingsmill": 9.33e-08, + "kiril": 9.33e-08, + "kiska": 9.33e-08, + "kiwifruit": 9.33e-08, + "kml": 9.33e-08, + "koby": 9.33e-08, + "kohei": 9.33e-08, + "koike": 9.33e-08, + "konishi": 9.33e-08, + "koos": 9.33e-08, + "kost": 9.33e-08, + "kostya": 9.33e-08, + "krejci": 9.33e-08, + "krishnamurti": 9.33e-08, + "kristaps": 9.33e-08, + "kshatriya": 9.33e-08, + "kuchma": 9.33e-08, + "kudlow": 9.33e-08, + "kurti": 9.33e-08, + "lacto": 9.33e-08, + "lactone": 9.33e-08, + "ladin": 9.33e-08, + "laggard": 9.33e-08, + "laksa": 9.33e-08, + "lamba": 9.33e-08, + "lammy": 9.33e-08, + "lampreys": 9.33e-08, + "landor": 9.33e-08, + "langone": 9.33e-08, + "lank": 9.33e-08, + "lapid": 9.33e-08, + "larouche": 9.33e-08, + "lastpass": 9.33e-08, + "laue": 9.33e-08, + "lawrenceburg": 9.33e-08, + "layard": 9.33e-08, + "ldpe": 9.33e-08, + "leib": 9.33e-08, + "leitner": 9.33e-08, + "lemoyne": 9.33e-08, + "lexicographer": 9.33e-08, + "lge": 9.33e-08, + "liberality": 9.33e-08, + "librairie": 9.33e-08, + "lieing": 9.33e-08, + "lifton": 9.33e-08, + "lightwave": 9.33e-08, + "limavady": 9.33e-08, + "lindh": 9.33e-08, + "linkedins": 9.33e-08, + "lipper": 9.33e-08, + "listserv": 9.33e-08, + "litigators": 9.33e-08, + "livestreamed": 9.33e-08, + "livius": 9.33e-08, + "lizzies": 9.33e-08, + "lla": 9.33e-08, + "lmd": 9.33e-08, + "loewenstein": 9.33e-08, + "logansport": 9.33e-08, + "loooooong": 9.33e-08, + "lougheed": 9.33e-08, + "lounged": 9.33e-08, + "loveyou": 9.33e-08, + "lowman": 9.33e-08, + "lsr": 9.33e-08, + "lubes": 9.33e-08, + "ludvig": 9.33e-08, + "lugansk": 9.33e-08, + "lunchboxes": 9.33e-08, + "luzern": 9.33e-08, + "lwr": 9.33e-08, + "lync": 9.33e-08, + "macgowan": 9.33e-08, + "machias": 9.33e-08, + "maheshwari": 9.33e-08, + "maisy": 9.33e-08, + "malingering": 9.33e-08, + "malla": 9.33e-08, + "mallinckrodt": 9.33e-08, + "mammalia": 9.33e-08, + "mancunian": 9.33e-08, + "manically": 9.33e-08, + "manicurist": 9.33e-08, + "mannie": 9.33e-08, + "manya": 9.33e-08, + "marana": 9.33e-08, + "marriot": 9.33e-08, + "marrs": 5.37e-08, + "marsters": 9.33e-08, + "martialled": 9.33e-08, + "masonite": 9.33e-08, + "matsumura": 9.33e-08, + "mauldin": 9.33e-08, + "maunder": 9.33e-08, + "maur": 9.33e-08, + "mcduff": 9.33e-08, + "mcgavin": 9.33e-08, + "mcglinchey": 9.33e-08, + "mcmurry": 9.33e-08, + "mcnary": 9.33e-08, + "mcnish": 9.33e-08, + "mcq": 9.33e-08, + "meeee": 9.33e-08, + "menander": 9.33e-08, + "mendon": 9.33e-08, + "meninges": 9.33e-08, + "merrion": 9.33e-08, + "mesmerize": 9.33e-08, + "messa": 9.33e-08, + "messiaen": 9.33e-08, + "metall": 9.33e-08, + "meudon": 9.33e-08, + "michela": 9.33e-08, + "microflora": 9.33e-08, + "microform": 9.33e-08, + "microstructural": 9.33e-08, + "mikaelson": 9.33e-08, + "miklos": 9.33e-08, + "millipedes": 9.33e-08, + "minar": 9.33e-08, + "mirallas": 9.33e-08, + "misclassification": 9.33e-08, + "mitrovic": 9.33e-08, + "mno": 9.33e-08, + "mohalla": 9.33e-08, + "mohanty": 9.33e-08, + "mokhtar": 9.33e-08, + "mondiale": 9.33e-08, + "monosodium": 9.33e-08, + "monts": 9.33e-08, + "moorlands": 9.33e-08, + "morelia": 9.33e-08, + "morrisseys": 9.33e-08, + "motets": 9.33e-08, + "mothman": 9.33e-08, + "mountainsides": 9.33e-08, + "msas": 9.33e-08, + "muerta": 9.33e-08, + "multistate": 9.33e-08, + "munros": 6.17e-08, + "muons": 9.33e-08, + "murtaugh": 9.33e-08, + "musselman": 9.33e-08, + "mutharika": 9.33e-08, + "mutombo": 9.33e-08, + "naguib": 9.33e-08, + "naif": 9.33e-08, + "nainital": 9.33e-08, + "namu": 9.33e-08, + "nanostructured": 9.33e-08, + "nasals": 9.33e-08, + "nasopharyngeal": 9.33e-08, + "natarajan": 9.33e-08, + "navid": 9.33e-08, + "necromancers": 9.33e-08, + "neediest": 9.33e-08, + "nello": 9.33e-08, + "neonate": 9.33e-08, + "nerlens": 9.33e-08, + "neurochemistry": 9.33e-08, + "neurotransmission": 9.33e-08, + "nfi": 9.33e-08, + "nickys": 9.33e-08, + "nigro": 9.33e-08, + "niklaus": 9.33e-08, + "nitroglycerine": 9.33e-08, + "njit": 9.33e-08, + "noisey": 9.33e-08, + "northcliffe": 9.33e-08, + "novikov": 9.33e-08, + "nsm": 9.33e-08, + "ntd": 9.33e-08, + "nutsack": 9.33e-08, + "oakham": 9.33e-08, + "obeid": 9.33e-08, + "oblation": 9.33e-08, + "obscurely": 9.33e-08, + "oco": 9.33e-08, + "odbc": 9.33e-08, + "odf": 9.33e-08, + "oec": 9.33e-08, + "offish": 9.33e-08, + "ogura": 9.33e-08, + "okayed": 9.33e-08, + "olena": 9.33e-08, + "oleo": 9.33e-08, + "olivera": 9.33e-08, + "omx": 9.33e-08, + "onu": 9.33e-08, + "oosthuizen": 9.33e-08, + "oppressively": 9.33e-08, + "orangery": 9.33e-08, + "orbitz": 9.33e-08, + "ornl": 9.33e-08, + "otro": 9.33e-08, + "outmaneuver": 9.33e-08, + "overrules": 9.33e-08, + "oversharing": 9.33e-08, + "overstates": 9.33e-08, + "overvalue": 9.33e-08, + "ovules": 9.33e-08, + "palak": 9.33e-08, + "palest": 9.33e-08, + "palpi": 9.33e-08, + "palps": 9.33e-08, + "panter": 9.33e-08, + "panthera": 9.33e-08, + "paralympians": 9.33e-08, + "parkins": 9.33e-08, + "parmar": 9.33e-08, + "partes": 9.33e-08, + "partier": 9.33e-08, + "patchogue": 9.33e-08, + "pazzi": 9.33e-08, + "pcn": 9.33e-08, + "peachey": 9.33e-08, + "pedaled": 9.33e-08, + "pederasty": 9.33e-08, + "peiris": 9.33e-08, + "pelikan": 9.33e-08, + "pennetta": 9.33e-08, + "perfective": 9.33e-08, + "performa": 9.33e-08, + "perpetration": 9.33e-08, + "pervious": 9.33e-08, + "peuple": 9.33e-08, + "pgd": 9.33e-08, + "pharmacodynamics": 9.33e-08, + "pharr": 9.33e-08, + "phin": 9.33e-08, + "phonic": 9.33e-08, + "phospho": 9.33e-08, + "photochemistry": 9.33e-08, + "phylogenetically": 9.33e-08, + "piggly": 9.33e-08, + "pinochets": 9.33e-08, + "pistes": 9.33e-08, + "plasmonic": 9.33e-08, + "playsets": 9.33e-08, + "plessy": 9.33e-08, + "plouffe": 9.33e-08, + "plungers": 9.33e-08, + "poggio": 9.33e-08, + "pokedex": 9.33e-08, + "polanyi": 9.33e-08, + "polizei": 9.33e-08, + "polycarp": 9.33e-08, + "pompoms": 9.33e-08, + "poots": 9.33e-08, + "posteriori": 9.33e-08, + "pozzo": 9.33e-08, + "preah": 9.33e-08, + "preciousness": 9.33e-08, + "preheating": 9.33e-08, + "presbyteries": 9.33e-08, + "prestashop": 9.33e-08, + "pretreated": 9.33e-08, + "prickles": 9.33e-08, + "procreative": 9.33e-08, + "proctors": 6.46e-08, + "prokhorov": 9.33e-08, + "prophetically": 9.33e-08, + "proteinase": 9.33e-08, + "protoss": 9.33e-08, + "proudfoot": 9.33e-08, + "prowled": 9.33e-08, + "psychologie": 9.33e-08, + "ptah": 9.33e-08, + "ptu": 9.33e-08, + "publishable": 9.33e-08, + "puce": 9.33e-08, + "purbeck": 9.33e-08, + "purposive": 9.33e-08, + "pvcs": 9.33e-08, + "pythias": 9.33e-08, + "qasr": 9.33e-08, + "qrt": 9.33e-08, + "quahog": 9.33e-08, + "queensbury": 9.33e-08, + "quesnel": 9.33e-08, + "quist": 9.33e-08, + "radia": 9.33e-08, + "raftery": 9.33e-08, + "rajini": 9.33e-08, + "rame": 9.33e-08, + "rampton": 9.33e-08, + "ranker": 9.33e-08, + "ranson": 9.33e-08, + "rarotonga": 9.33e-08, + "ravelry": 9.33e-08, + "reacquire": 9.33e-08, + "reaming": 9.33e-08, + "reasoner": 9.33e-08, + "reauthorized": 9.33e-08, + "reburial": 9.33e-08, + "recension": 9.33e-08, + "reckitt": 9.33e-08, + "recombined": 9.33e-08, + "redwall": 9.33e-08, + "reengineering": 9.33e-08, + "regenerator": 9.33e-08, + "rehomed": 9.33e-08, + "reimbursable": 9.33e-08, + "remys": 9.33e-08, + "replenishes": 9.33e-08, + "republik": 9.33e-08, + "respon": 9.33e-08, + "retarding": 9.33e-08, + "retinoblastoma": 9.33e-08, + "reveres": 9.33e-08, + "rheological": 9.33e-08, + "rickon": 9.33e-08, + "ridgemont": 9.33e-08, + "rielly": 9.33e-08, + "rigsby": 9.33e-08, + "risperidone": 9.33e-08, + "risto": 9.33e-08, + "ritson": 9.33e-08, + "rivulets": 9.33e-08, + "robyns": 9.33e-08, + "rockall": 9.33e-08, + "rocketdyne": 9.33e-08, + "roseau": 9.33e-08, + "rosi": 9.33e-08, + "roussillon": 9.33e-08, + "rovio": 9.33e-08, + "rowes": 9.33e-08, + "rowett": 9.33e-08, + "ruched": 9.33e-08, + "rucksacks": 9.33e-08, + "rueben": 9.33e-08, + "sacc": 9.33e-08, + "sadd": 9.33e-08, + "sagal": 9.33e-08, + "sajjad": 9.33e-08, + "salameh": 9.33e-08, + "salonica": 9.33e-08, + "salwa": 9.33e-08, + "sandwhich": 9.33e-08, + "saraki": 9.33e-08, + "sarto": 9.33e-08, + "savona": 9.33e-08, + "scalpels": 9.33e-08, + "scandi": 9.33e-08, + "schock": 9.33e-08, + "schomberg": 9.33e-08, + "schumpeter": 9.33e-08, + "schwerin": 9.33e-08, + "scrapings": 9.33e-08, + "scroungers": 9.33e-08, + "seamaster": 9.33e-08, + "searchin": 9.33e-08, + "segun": 9.33e-08, + "seminarian": 9.33e-08, + "seneschal": 9.33e-08, + "senkaku": 9.33e-08, + "sennas": 9.33e-08, + "sensi": 9.33e-08, + "sensitizing": 9.33e-08, + "separateness": 9.33e-08, + "septem": 9.33e-08, + "septimius": 9.33e-08, + "sequencers": 9.33e-08, + "sexology": 9.33e-08, + "seyyed": 9.33e-08, + "shado": 9.33e-08, + "sharan": 9.33e-08, + "sherwoods": 9.33e-08, + "shii": 6.61e-08, + "shikai": 9.33e-08, + "shipwright": 9.33e-08, + "shooing": 9.33e-08, + "sideband": 9.33e-08, + "simonton": 9.33e-08, + "simpkin": 9.33e-08, + "sione": 9.33e-08, + "situates": 9.33e-08, + "sixpack": 9.33e-08, + "sizwe": 9.33e-08, + "sjsu": 9.33e-08, + "skiffs": 9.33e-08, + "skl": 9.33e-08, + "skolnick": 9.33e-08, + "skyes": 9.33e-08, + "slavoj": 9.33e-08, + "slunk": 9.33e-08, + "smallholding": 9.33e-08, + "smithies": 9.33e-08, + "smithing": 9.33e-08, + "snoke": 9.33e-08, + "soci": 9.33e-08, + "sodomites": 9.33e-08, + "sofer": 9.33e-08, + "soirees": 9.33e-08, + "soissons": 9.33e-08, + "soja": 9.33e-08, + "sokal": 9.33e-08, + "soloway": 9.33e-08, + "sonority": 9.33e-08, + "souq": 9.33e-08, + "spectating": 9.33e-08, + "spherically": 9.33e-08, + "sporangia": 9.33e-08, + "squab": 9.33e-08, + "stabby": 9.33e-08, + "standley": 9.33e-08, + "stara": 9.33e-08, + "steffy": 9.33e-08, + "steiners": 9.33e-08, + "stian": 9.33e-08, + "stilling": 9.33e-08, + "stivers": 9.33e-08, + "stora": 9.33e-08, + "storify": 9.33e-08, + "storr": 9.33e-08, + "straightedge": 9.33e-08, + "straightness": 9.33e-08, + "strawn": 9.33e-08, + "streptococci": 9.33e-08, + "stretchered": 9.33e-08, + "stubbing": 9.33e-08, + "sublimity": 9.33e-08, + "subsector": 9.33e-08, + "subsume": 9.33e-08, + "sudha": 9.33e-08, + "summerhill": 9.33e-08, + "sunnybrook": 9.33e-08, + "supercapacitors": 9.33e-08, + "superstores": 9.33e-08, + "susteren": 9.33e-08, + "sverdrup": 9.33e-08, + "swanseas": 9.33e-08, + "symmes": 9.33e-08, + "synergistically": 9.33e-08, + "takeru": 9.33e-08, + "tanisha": 9.33e-08, + "tanith": 9.33e-08, + "taquitos": 9.33e-08, + "tatu": 9.33e-08, + "tavis": 9.33e-08, + "taxied": 9.33e-08, + "tbis": 9.33e-08, + "technologie": 9.33e-08, + "teleconferencing": 9.33e-08, + "tensioner": 9.33e-08, + "terrie": 9.33e-08, + "teru": 9.33e-08, + "teterboro": 9.33e-08, + "thatve": 9.33e-08, + "theanine": 9.33e-08, + "theodosia": 9.33e-08, + "therethrough": 9.33e-08, + "thieme": 9.33e-08, + "thiopental": 9.33e-08, + "thomasson": 9.33e-08, + "thrum": 9.33e-08, + "thyristor": 9.33e-08, + "tibialis": 9.33e-08, + "tillich": 9.33e-08, + "timaru": 9.33e-08, + "titchmarsh": 9.33e-08, + "tlv": 9.33e-08, + "tobaccos": 9.33e-08, + "tomita": 9.33e-08, + "tootie": 9.33e-08, + "topknot": 9.33e-08, + "tortugas": 9.33e-08, + "totty": 9.33e-08, + "towanda": 9.33e-08, + "trackball": 9.33e-08, + "transfused": 9.33e-08, + "trappe": 9.33e-08, + "traviss": 9.33e-08, + "treloar": 9.33e-08, + "trifolium": 9.33e-08, + "trincomalee": 9.33e-08, + "trion": 9.33e-08, + "trooped": 9.33e-08, + "troppo": 9.33e-08, + "trueblood": 9.33e-08, + "trus": 9.33e-08, + "truthers": 9.33e-08, + "tsuchiya": 9.33e-08, + "tulisa": 9.33e-08, + "tumulus": 9.33e-08, + "turok": 9.33e-08, + "tvr": 9.33e-08, + "tweedle": 9.33e-08, + "twista": 9.33e-08, + "twitty": 9.33e-08, + "ugarte": 9.33e-08, + "ughhhh": 9.33e-08, + "unallocated": 9.33e-08, + "unbuilt": 9.33e-08, + "unfertilized": 9.33e-08, + "unifier": 9.33e-08, + "unionville": 9.33e-08, + "universelle": 9.33e-08, + "unrewarding": 9.33e-08, + "unshielded": 9.33e-08, + "unsubtle": 9.33e-08, + "upanishad": 9.33e-08, + "upgradeable": 9.33e-08, + "uracil": 9.33e-08, + "urb": 9.33e-08, + "urkel": 9.33e-08, + "urogenital": 9.33e-08, + "ush": 9.33e-08, + "usw": 9.33e-08, + "uttam": 9.33e-08, + "vaccinium": 9.33e-08, + "vadis": 9.33e-08, + "varietys": 9.33e-08, + "vasudeva": 9.33e-08, + "venusian": 9.33e-08, + "verdigris": 9.33e-08, + "vermette": 9.33e-08, + "videoed": 9.33e-08, + "vijays": 9.33e-08, + "villars": 9.33e-08, + "vinatieri": 9.33e-08, + "vini": 9.33e-08, + "vocoder": 9.33e-08, + "voisin": 9.33e-08, + "volitional": 9.33e-08, + "vpd": 9.33e-08, + "vre": 9.33e-08, + "vulgare": 9.33e-08, + "waifs": 9.33e-08, + "walkaway": 9.33e-08, + "wallows": 9.33e-08, + "warrensburg": 9.33e-08, + "warthogs": 9.33e-08, + "waterbed": 9.33e-08, + "webapp": 9.33e-08, + "webserver": 9.33e-08, + "westall": 9.33e-08, + "westville": 9.33e-08, + "wetherspoons": 9.33e-08, + "wexner": 9.33e-08, + "whereever": 9.33e-08, + "whinny": 9.33e-08, + "whitacre": 9.33e-08, + "whitakers": 9.33e-08, + "whitehill": 9.33e-08, + "whr": 9.33e-08, + "wiegand": 9.33e-08, + "wiffle": 9.33e-08, + "winfred": 9.33e-08, + "wlr": 9.33e-08, + "woj": 9.33e-08, + "wolk": 9.33e-08, + "workhorses": 9.33e-08, + "wriggles": 9.33e-08, + "wwd": 9.33e-08, + "wyd": 9.33e-08, + "xenophobes": 9.33e-08, + "xenoverse": 9.33e-08, + "xliv": 9.33e-08, + "yaah": 9.33e-08, + "yakult": 9.33e-08, + "yakutsk": 9.33e-08, + "yeses": 9.33e-08, + "yonsei": 9.33e-08, + "zab": 9.33e-08, + "zazen": 9.33e-08, + "zd": 9.33e-08, + "zealotry": 9.33e-08, + "zekes": 9.33e-08, + "zel": 9.33e-08, + "ziyad": 9.33e-08, + "zombified": 9.33e-08, + "zowie": 9.33e-08, + "aage": 9.12e-08, + "abdoulaye": 9.12e-08, + "abramoff": 9.12e-08, + "accost": 9.12e-08, + "adipocytes": 9.12e-08, + "adnani": 9.12e-08, + "adventitious": 9.12e-08, + "aetiology": 9.12e-08, + "agard": 9.12e-08, + "agilent": 9.12e-08, + "agusta": 9.12e-08, + "ahluwalia": 9.12e-08, + "ahmads": 9.12e-08, + "aiga": 9.12e-08, + "akademi": 9.12e-08, + "albas": 9.12e-08, + "alegria": 9.12e-08, + "alehouse": 9.12e-08, + "aleut": 9.12e-08, + "alexandras": 9.12e-08, + "alexandrias": 9.12e-08, + "alfano": 9.12e-08, + "alfons": 9.12e-08, + "alida": 9.12e-08, + "alors": 9.12e-08, + "amaz": 9.12e-08, + "amel": 9.12e-08, + "amontillado": 9.12e-08, + "amputating": 9.12e-08, + "amri": 9.12e-08, + "andalus": 9.12e-08, + "ande": 9.12e-08, + "andress": 9.12e-08, + "anonymized": 9.12e-08, + "anoxia": 9.12e-08, + "antagonisms": 9.12e-08, + "antigonish": 9.12e-08, + "antiseptics": 9.12e-08, + "anuj": 9.12e-08, + "anzhi": 9.12e-08, + "aols": 9.12e-08, + "apoe": 9.12e-08, + "arabe": 9.12e-08, + "archaeologically": 9.12e-08, + "archmage": 9.12e-08, + "arimathea": 9.12e-08, + "arnis": 9.12e-08, + "arrhenius": 9.12e-08, + "arteriosclerosis": 9.12e-08, + "asensio": 9.12e-08, + "ashmead": 9.12e-08, + "assing": 9.12e-08, + "astle": 9.12e-08, + "aswad": 9.12e-08, + "attac": 9.12e-08, + "averroes": 9.12e-08, + "ayush": 9.12e-08, + "brith": 6.61e-08, + "babur": 9.12e-08, + "badmouthing": 9.12e-08, + "bahman": 9.12e-08, + "bailar": 9.12e-08, + "bais": 3.8e-08, + "bajoran": 9.12e-08, + "balint": 9.12e-08, + "ballasts": 9.12e-08, + "baraboo": 9.12e-08, + "barclaycard": 9.12e-08, + "baskett": 9.12e-08, + "bastar": 9.12e-08, + "basted": 9.12e-08, + "bbdo": 9.12e-08, + "bcbs": 9.12e-08, + "beachbody": 9.12e-08, + "beartooth": 9.12e-08, + "beatitude": 9.12e-08, + "beith": 9.12e-08, + "bejesus": 9.12e-08, + "berar": 9.12e-08, + "bernina": 9.12e-08, + "bernthal": 9.12e-08, + "berridge": 9.12e-08, + "berserkers": 9.12e-08, + "bettany": 9.12e-08, + "bfd": 9.12e-08, + "bfv": 9.12e-08, + "bharara": 9.12e-08, + "bhatnagar": 9.12e-08, + "bik": 9.12e-08, + "bilbos": 9.12e-08, + "binoche": 9.12e-08, + "biocompatible": 9.12e-08, + "bisi": 9.12e-08, + "bitterroot": 9.12e-08, + "bkk": 9.12e-08, + "blacklivesmatter": 9.12e-08, + "blanchet": 9.12e-08, + "blaspheming": 9.12e-08, + "blazblue": 9.12e-08, + "blc": 9.12e-08, + "bleaker": 9.12e-08, + "blub": 9.12e-08, + "bnr": 9.12e-08, + "boethius": 9.12e-08, + "boffins": 9.12e-08, + "bogardus": 9.12e-08, + "borde": 9.12e-08, + "boronia": 9.12e-08, + "borromeo": 9.12e-08, + "bosniak": 9.12e-08, + "bostrom": 9.12e-08, + "bour": 9.12e-08, + "bradburys": 9.12e-08, + "bradwell": 9.12e-08, + "breathin": 9.12e-08, + "bridewell": 9.12e-08, + "brigadoon": 9.12e-08, + "brockett": 9.12e-08, + "broilers": 9.12e-08, + "bruhl": 9.12e-08, + "bryces": 9.12e-08, + "bulan": 9.12e-08, + "burren": 9.12e-08, + "burundian": 9.12e-08, + "byard": 9.12e-08, + "cailin": 9.12e-08, + "calamine": 9.12e-08, + "calderdale": 9.12e-08, + "calve": 9.12e-08, + "cani": 9.12e-08, + "caprese": 9.12e-08, + "caprio": 9.12e-08, + "capuchins": 9.12e-08, + "carhart": 9.12e-08, + "carpentaria": 9.12e-08, + "caskey": 9.12e-08, + "cassatt": 9.12e-08, + "casuarina": 9.12e-08, + "catalonias": 9.12e-08, + "catharina": 9.12e-08, + "cathedra": 9.12e-08, + "catie": 9.12e-08, + "cauterized": 9.12e-08, + "caye": 9.12e-08, + "cecils": 2.24e-08, + "cedi": 9.12e-08, + "celerity": 9.12e-08, + "cerci": 9.12e-08, + "chansons": 9.12e-08, + "chater": 9.12e-08, + "chaucers": 9.12e-08, + "cheam": 9.12e-08, + "chebyshev": 9.12e-08, + "chenin": 9.12e-08, + "chequebook": 9.12e-08, + "chilcot": 9.12e-08, + "chinstrap": 9.12e-08, + "chiptune": 9.12e-08, + "chloral": 9.12e-08, + "cholula": 9.12e-08, + "chronologies": 9.12e-08, + "chukwu": 9.12e-08, + "circularity": 9.12e-08, + "cist": 9.12e-08, + "claddagh": 9.12e-08, + "classis": 9.12e-08, + "clementina": 9.12e-08, + "clenches": 9.12e-08, + "cliffe": 9.12e-08, + "clunkers": 9.12e-08, + "codeshare": 9.12e-08, + "coeds": 9.12e-08, + "coffered": 9.12e-08, + "coggins": 9.12e-08, + "collinear": 9.12e-08, + "collingwoods": 9.12e-08, + "collisional": 9.12e-08, + "coloratura": 9.12e-08, + "congr": 9.12e-08, + "conjunctiva": 9.12e-08, + "conmen": 9.12e-08, + "constantines": 9.12e-08, + "cooly": 9.12e-08, + "coords": 9.12e-08, + "cors": 9.12e-08, + "counterargument": 9.12e-08, + "counterfeited": 9.12e-08, + "crabapple": 9.12e-08, + "crackpots": 9.12e-08, + "cragg": 9.12e-08, + "crake": 9.12e-08, + "criminalised": 9.12e-08, + "crinkles": 9.12e-08, + "cristi": 9.12e-08, + "cruciferous": 9.12e-08, + "crustacea": 9.12e-08, + "cspan": 9.12e-08, + "csrs": 9.12e-08, + "cubana": 9.12e-08, + "cultus": 9.12e-08, + "curiouser": 9.12e-08, + "curtsey": 9.12e-08, + "cutt": 9.12e-08, + "cybele": 9.12e-08, + "cyclohexane": 9.12e-08, + "cypresses": 9.12e-08, + "dabi": 9.12e-08, + "dahlin": 9.12e-08, + "daiya": 9.12e-08, + "daleys": 9.12e-08, + "dampener": 9.12e-08, + "dangal": 9.12e-08, + "dangote": 9.12e-08, + "daoism": 9.12e-08, + "darci": 9.12e-08, + "daters": 9.12e-08, + "dawud": 9.12e-08, + "debar": 9.12e-08, + "deescalate": 9.12e-08, + "degraw": 9.12e-08, + "deionized": 9.12e-08, + "demps": 9.12e-08, + "denises": 9.12e-08, + "denna": 9.12e-08, + "denticles": 9.12e-08, + "dentro": 9.12e-08, + "depauw": 9.12e-08, + "deprivations": 9.12e-08, + "destructible": 9.12e-08, + "dfi": 9.12e-08, + "dialup": 9.12e-08, + "diatomic": 9.12e-08, + "dickwad": 9.12e-08, + "dilator": 9.12e-08, + "dilli": 9.12e-08, + "diplomate": 9.12e-08, + "disapprovingly": 9.12e-08, + "disempowered": 9.12e-08, + "disrobe": 9.12e-08, + "disunited": 9.12e-08, + "diversities": 9.12e-08, + "divx": 9.12e-08, + "dobkin": 9.12e-08, + "doen": 9.12e-08, + "doggs": 9.12e-08, + "dominators": 9.12e-08, + "doob": 9.12e-08, + "doordarshan": 9.12e-08, + "doosan": 9.12e-08, + "doras": 9.12e-08, + "dorney": 9.12e-08, + "dragonstone": 9.12e-08, + "driscolls": 9.12e-08, + "droits": 9.12e-08, + "drt": 9.12e-08, + "druggy": 9.12e-08, + "ducat": 9.12e-08, + "dunbars": 9.12e-08, + "dunces": 9.12e-08, + "duncombe": 9.12e-08, + "easthampton": 9.12e-08, + "eavesdropped": 9.12e-08, + "edify": 9.12e-08, + "effexor": 9.12e-08, + "egans": 9.12e-08, + "eidetic": 9.12e-08, + "elca": 9.12e-08, + "elliman": 9.12e-08, + "elusiveness": 9.12e-08, + "emlyn": 9.12e-08, + "encodings": 9.12e-08, + "endemol": 9.12e-08, + "energi": 9.12e-08, + "engie": 9.12e-08, + "enriques": 9.12e-08, + "enshrining": 9.12e-08, + "entergy": 9.12e-08, + "eof": 9.12e-08, + "eratosthenes": 9.12e-08, + "erhardt": 9.12e-08, + "erith": 9.12e-08, + "errani": 9.12e-08, + "escudero": 9.12e-08, + "estudio": 9.12e-08, + "ethnomusicology": 9.12e-08, + "eurgh": 9.12e-08, + "evangel": 9.12e-08, + "everetts": 9.12e-08, + "everythin": 9.12e-08, + "evn": 9.12e-08, + "examinees": 9.12e-08, + "exley": 9.12e-08, + "expends": 9.12e-08, + "expl": 9.12e-08, + "externalizing": 9.12e-08, + "extrapolations": 9.12e-08, + "fada": 9.12e-08, + "faison": 9.12e-08, + "farallon": 9.12e-08, + "faroes": 9.12e-08, + "fasc": 9.12e-08, + "felting": 9.12e-08, + "fenris": 9.12e-08, + "fethullah": 9.12e-08, + "fetishizing": 9.12e-08, + "fetty": 9.12e-08, + "fiancees": 9.12e-08, + "fiel": 9.12e-08, + "figg": 9.12e-08, + "fishel": 9.12e-08, + "flashpoints": 9.12e-08, + "flavourful": 9.12e-08, + "flaxen": 9.12e-08, + "fleabag": 9.12e-08, + "fleshly": 9.12e-08, + "flunky": 9.12e-08, + "fluorides": 9.12e-08, + "flyway": 9.12e-08, + "foolery": 9.12e-08, + "footages": 9.12e-08, + "fornicate": 9.12e-08, + "fortwo": 9.12e-08, + "fostoria": 9.12e-08, + "foulest": 9.12e-08, + "foyers": 9.12e-08, + "fpp": 9.12e-08, + "francescas": 9.12e-08, + "franziska": 9.12e-08, + "freakonomics": 9.12e-08, + "freescale": 9.12e-08, + "freewheel": 9.12e-08, + "freida": 9.12e-08, + "freitag": 9.12e-08, + "frend": 9.12e-08, + "fretful": 9.12e-08, + "friary": 9.12e-08, + "friesian": 9.12e-08, + "friis": 9.12e-08, + "frontally": 9.12e-08, + "fukunaga": 9.12e-08, + "functionals": 9.12e-08, + "funda": 9.12e-08, + "gairdner": 9.12e-08, + "gand": 9.12e-08, + "garbanzo": 9.12e-08, + "gashed": 9.12e-08, + "gaskins": 9.12e-08, + "gavi": 9.12e-08, + "gazer": 9.12e-08, + "genious": 9.12e-08, + "geoffreys": 9.12e-08, + "gestating": 9.12e-08, + "gey": 9.12e-08, + "gibbins": 9.12e-08, + "gigawatt": 9.12e-08, + "giorgia": 9.12e-08, + "giovannis": 9.12e-08, + "glauca": 9.12e-08, + "glycosylated": 9.12e-08, + "gnasher": 9.12e-08, + "gnt": 9.12e-08, + "gobbledygook": 9.12e-08, + "goldsborough": 9.12e-08, + "grandsire": 9.12e-08, + "grapefruits": 9.12e-08, + "graphed": 9.12e-08, + "graphitic": 9.12e-08, + "grazier": 9.12e-08, + "graziers": 9.12e-08, + "greenslade": 9.12e-08, + "greers": 9.12e-08, + "grossmann": 9.12e-08, + "grundlagen": 9.12e-08, + "gtg": 9.12e-08, + "guanabara": 9.12e-08, + "guffaws": 9.12e-08, + "gunnarsson": 9.12e-08, + "gushy": 9.12e-08, + "haemorrhaging": 9.12e-08, + "hagedorn": 9.12e-08, + "haire": 9.12e-08, + "hallmarked": 9.12e-08, + "hallyu": 9.12e-08, + "hamil": 9.12e-08, + "handmaidens": 9.12e-08, + "haras": 9.12e-08, + "harissa": 9.12e-08, + "harrop": 9.12e-08, + "hassel": 9.12e-08, + "havant": 9.12e-08, + "hazan": 9.12e-08, + "hazem": 9.12e-08, + "heatedly": 9.12e-08, + "hecuba": 9.12e-08, + "hedi": 9.12e-08, + "heeds": 9.12e-08, + "heeler": 9.12e-08, + "heinie": 9.12e-08, + "hercegovina": 9.12e-08, + "higa": 9.12e-08, + "hillocks": 9.12e-08, + "hiscock": 9.12e-08, + "hito": 9.12e-08, + "hna": 9.12e-08, + "hobb": 9.12e-08, + "hobsons": 9.12e-08, + "hodel": 9.12e-08, + "holloman": 9.12e-08, + "homebrewing": 9.12e-08, + "homeruns": 9.12e-08, + "homoeopathic": 9.12e-08, + "homonyms": 9.12e-08, + "honig": 9.12e-08, + "hoodwink": 9.12e-08, + "hooghly": 9.12e-08, + "hookahs": 9.12e-08, + "hotpoint": 9.12e-08, + "houle": 9.12e-08, + "hoverboards": 9.12e-08, + "howth": 9.12e-08, + "hpp": 9.12e-08, + "hucksters": 9.12e-08, + "hueneme": 9.12e-08, + "huggable": 9.12e-08, + "hult": 9.12e-08, + "hunton": 9.12e-08, + "hydrides": 9.12e-08, + "hydroelectricity": 9.12e-08, + "ibushi": 9.12e-08, + "icq": 9.12e-08, + "idas": 9.12e-08, + "idec": 9.12e-08, + "idlers": 9.12e-08, + "ifit": 9.12e-08, + "ifthe": 9.12e-08, + "iid": 9.12e-08, + "ikeja": 9.12e-08, + "ileum": 9.12e-08, + "immerses": 9.12e-08, + "inactivating": 9.12e-08, + "inappropriateness": 9.12e-08, + "incongruously": 9.12e-08, + "increas": 9.12e-08, + "inh": 9.12e-08, + "inlaw": 9.12e-08, + "insomniacs": 9.12e-08, + "interchangeability": 9.12e-08, + "interrupter": 9.12e-08, + "intrepidity": 9.12e-08, + "introducer": 9.12e-08, + "ipg": 9.12e-08, + "irst": 9.12e-08, + "ischaemic": 9.12e-08, + "isils": 9.12e-08, + "iversen": 9.12e-08, + "iwf": 9.12e-08, + "jaleel": 9.12e-08, + "jayde": 9.12e-08, + "jazeeras": 9.12e-08, + "jazmin": 9.12e-08, + "jazzs": 9.12e-08, + "jdk": 9.12e-08, + "jellied": 9.12e-08, + "jeroboam": 9.12e-08, + "jhon": 9.12e-08, + "jiva": 9.12e-08, + "johnathon": 9.12e-08, + "jokinen": 9.12e-08, + "junichi": 9.12e-08, + "junipero": 9.12e-08, + "junkrat": 9.12e-08, + "kabat": 9.12e-08, + "kafirs": 9.12e-08, + "kahle": 9.12e-08, + "kaira": 9.12e-08, + "karakoram": 9.12e-08, + "karli": 9.12e-08, + "kazim": 9.12e-08, + "kelseys": 9.12e-08, + "kershaws": 9.12e-08, + "ketoconazole": 9.12e-08, + "kettlebells": 9.12e-08, + "keycard": 9.12e-08, + "khalistan": 9.12e-08, + "khana": 9.12e-08, + "killam": 9.12e-08, + "kimani": 9.12e-08, + "kimbra": 9.12e-08, + "kimo": 9.12e-08, + "kini": 9.12e-08, + "kipps": 9.12e-08, + "klaw": 9.12e-08, + "kleber": 9.12e-08, + "kluger": 9.12e-08, + "kneller": 9.12e-08, + "knickknacks": 9.12e-08, + "komm": 9.12e-08, + "konstantinos": 9.12e-08, + "kotzebue": 9.12e-08, + "kpix": 9.12e-08, + "kps": 5.13e-08, + "kryptonians": 9.12e-08, + "kuffar": 9.12e-08, + "kuipers": 9.12e-08, + "kurth": 9.12e-08, + "kusa": 9.12e-08, + "kwinana": 9.12e-08, + "kws": 9.12e-08, + "labview": 9.12e-08, + "laclede": 9.12e-08, + "lafourche": 9.12e-08, + "lahti": 9.12e-08, + "laith": 9.12e-08, + "lamond": 9.12e-08, + "landholder": 9.12e-08, + "langtry": 9.12e-08, + "larg": 9.12e-08, + "latecomers": 9.12e-08, + "latitudinal": 9.12e-08, + "laxton": 9.12e-08, + "lce": 9.12e-08, + "lch": 9.12e-08, + "lcms": 9.12e-08, + "leadenhall": 9.12e-08, + "leat": 9.12e-08, + "lebaron": 9.12e-08, + "legere": 9.12e-08, + "lehane": 9.12e-08, + "lehmans": 9.12e-08, + "leidy": 9.12e-08, + "leite": 9.12e-08, + "levering": 9.12e-08, + "leviathans": 9.12e-08, + "leytonstone": 9.12e-08, + "liesel": 9.12e-08, + "lifesize": 9.12e-08, + "liguori": 9.12e-08, + "lijiang": 9.12e-08, + "limousin": 9.12e-08, + "litigations": 9.12e-08, + "litvinov": 9.12e-08, + "llvm": 9.12e-08, + "lohman": 9.12e-08, + "lolla": 9.12e-08, + "lomonosov": 9.12e-08, + "longhair": 9.12e-08, + "longreach": 9.12e-08, + "longshoreman": 9.12e-08, + "loral": 9.12e-08, + "lovatos": 9.12e-08, + "lovestruck": 9.12e-08, + "lukey": 9.12e-08, + "lurches": 9.12e-08, + "lycanthropy": 9.12e-08, + "lyng": 9.12e-08, + "macronutrients": 9.12e-08, + "madalena": 9.12e-08, + "madama": 9.12e-08, + "mahou": 9.12e-08, + "mainspring": 9.12e-08, + "maisel": 9.12e-08, + "malouf": 9.12e-08, + "mamluk": 9.12e-08, + "manukau": 9.12e-08, + "marielle": 9.12e-08, + "marinelli": 9.12e-08, + "maritima": 9.12e-08, + "marriotts": 9.12e-08, + "masashi": 9.12e-08, + "maschine": 9.12e-08, + "masterman": 9.12e-08, + "mayawati": 9.12e-08, + "maynards": 9.12e-08, + "mayoress": 9.12e-08, + "mayuri": 9.12e-08, + "mazer": 9.12e-08, + "mazumdar": 9.12e-08, + "mcchesney": 9.12e-08, + "mccorkle": 9.12e-08, + "mcgarvey": 9.12e-08, + "mckennas": 9.12e-08, + "mckenzies": 9.12e-08, + "mckillop": 9.12e-08, + "mdb": 9.12e-08, + "meck": 9.12e-08, + "mediaset": 9.12e-08, + "medicus": 9.12e-08, + "medigap": 9.12e-08, + "megaphones": 9.12e-08, + "melvilles": 9.12e-08, + "memorie": 9.12e-08, + "menno": 9.12e-08, + "mesic": 9.12e-08, + "messinger": 9.12e-08, + "metalhead": 9.12e-08, + "metuchen": 9.12e-08, + "meydan": 9.12e-08, + "meyerson": 9.12e-08, + "mhra": 9.12e-08, + "miaa": 9.12e-08, + "michaux": 9.12e-08, + "mih": 9.12e-08, + "millage": 9.12e-08, + "millwood": 9.12e-08, + "mincer": 9.12e-08, + "minge": 9.12e-08, + "mirandola": 9.12e-08, + "miron": 9.12e-08, + "misbegotten": 9.12e-08, + "misinterprets": 9.12e-08, + "mistranslated": 9.12e-08, + "miyazawa": 9.12e-08, + "mizoguchi": 9.12e-08, + "moishe": 9.12e-08, + "moluccas": 9.12e-08, + "mondelez": 9.12e-08, + "monetisation": 9.12e-08, + "monocytogenes": 9.12e-08, + "monopolist": 9.12e-08, + "montagna": 9.12e-08, + "moonbeams": 9.12e-08, + "morgues": 9.12e-08, + "morrisey": 9.12e-08, + "mortlake": 9.12e-08, + "mosier": 9.12e-08, + "motet": 9.12e-08, + "mottling": 9.12e-08, + "mournfully": 9.12e-08, + "mrl": 9.12e-08, + "mukden": 9.12e-08, + "mullett": 9.12e-08, + "murgatroyd": 9.12e-08, + "mursi": 9.12e-08, + "mushi": 9.12e-08, + "musial": 9.12e-08, + "mycological": 9.12e-08, + "nachi": 9.12e-08, + "nadel": 9.12e-08, + "nadp": 9.12e-08, + "nakashima": 9.12e-08, + "nally": 9.12e-08, + "namjoon": 9.12e-08, + "nanchang": 9.12e-08, + "naturopathy": 9.12e-08, + "nauseum": 9.12e-08, + "negril": 9.12e-08, + "nesn": 9.12e-08, + "netease": 9.12e-08, + "networker": 9.12e-08, + "neuropsychologist": 9.12e-08, + "newsmax": 9.12e-08, + "nickolas": 9.12e-08, + "niekerk": 9.12e-08, + "nigg": 9.12e-08, + "niggaz": 9.12e-08, + "nightwatch": 9.12e-08, + "nistelrooy": 9.12e-08, + "nlr": 9.12e-08, + "nonbinding": 9.12e-08, + "noncompliant": 9.12e-08, + "nonconformists": 9.12e-08, + "nonempty": 9.12e-08, + "nonionic": 9.12e-08, + "nonsectarian": 9.12e-08, + "nonsurgical": 9.12e-08, + "norbu": 9.12e-08, + "northwesterns": 9.12e-08, + "nourse": 9.12e-08, + "novelette": 9.12e-08, + "nubs": 9.12e-08, + "nuchal": 9.12e-08, + "nucleated": 9.12e-08, + "nuzzled": 9.12e-08, + "oriordan": 9.12e-08, + "oao": 9.12e-08, + "occitane": 9.12e-08, + "odorous": 9.12e-08, + "odourless": 9.12e-08, + "ofac": 9.12e-08, + "ofthese": 9.12e-08, + "ogletree": 9.12e-08, + "oikawa": 9.12e-08, + "okami": 9.12e-08, + "oklahomans": 9.12e-08, + "olafur": 9.12e-08, + "olfaction": 9.12e-08, + "openoffice": 9.12e-08, + "opv": 9.12e-08, + "ornette": 9.12e-08, + "orochimaru": 9.12e-08, + "osram": 9.12e-08, + "osts": 9.12e-08, + "oulton": 9.12e-08, + "outranks": 9.12e-08, + "ouzo": 9.12e-08, + "overrate": 9.12e-08, + "pahrump": 9.12e-08, + "panch": 9.12e-08, + "paned": 9.12e-08, + "papelbon": 9.12e-08, + "paperclips": 9.12e-08, + "papilla": 9.12e-08, + "paramedical": 9.12e-08, + "paratha": 9.12e-08, + "parce": 9.12e-08, + "pard": 9.12e-08, + "parrying": 9.12e-08, + "parsa": 9.12e-08, + "partaken": 9.12e-08, + "parth": 9.12e-08, + "passives": 9.12e-08, + "paston": 9.12e-08, + "paulies": 9.12e-08, + "paulino": 9.12e-08, + "pavey": 9.12e-08, + "peco": 9.12e-08, + "pegi": 9.12e-08, + "penitents": 9.12e-08, + "pentatonix": 9.12e-08, + "perlin": 9.12e-08, + "personifications": 9.12e-08, + "petas": 9.12e-08, + "petrucci": 9.12e-08, + "pettus": 9.12e-08, + "pfe": 9.12e-08, + "pfr": 9.12e-08, + "pgt": 9.12e-08, + "phev": 9.12e-08, + "philharmonia": 9.12e-08, + "phlebotomy": 9.12e-08, + "phosphatidylinositol": 9.12e-08, + "pianissimo": 9.12e-08, + "picards": 9.12e-08, + "pice": 9.12e-08, + "pictet": 9.12e-08, + "pinney": 9.12e-08, + "pinsky": 9.12e-08, + "pjm": 9.12e-08, + "planche": 9.12e-08, + "playhouses": 9.12e-08, + "pockmarked": 9.12e-08, + "podestas": 9.12e-08, + "poitou": 9.12e-08, + "possibles": 9.12e-08, + "possiblity": 9.12e-08, + "postgres": 9.12e-08, + "potawatomi": 9.12e-08, + "pote": 9.12e-08, + "poudre": 9.12e-08, + "powis": 9.12e-08, + "poz": 9.12e-08, + "pratique": 9.12e-08, + "preamplifier": 9.12e-08, + "prekindergarten": 9.12e-08, + "preshow": 9.12e-08, + "previa": 9.12e-08, + "proinflammatory": 9.12e-08, + "prolegomena": 9.12e-08, + "promis": 9.12e-08, + "propolis": 9.12e-08, + "prorogation": 9.12e-08, + "prospectuses": 9.12e-08, + "prouty": 9.12e-08, + "puffiness": 9.12e-08, + "puls": 9.12e-08, + "purch": 9.12e-08, + "putih": 9.12e-08, + "pyromaniac": 9.12e-08, + "qashqai": 9.12e-08, + "quadrupeds": 9.12e-08, + "qualcomms": 9.12e-08, + "quickies": 9.12e-08, + "quijano": 9.12e-08, + "quins": 9.12e-08, + "quiroga": 9.12e-08, + "quivered": 9.12e-08, + "quonset": 9.12e-08, + "radicalizing": 9.12e-08, + "ramachandra": 9.12e-08, + "ratifications": 9.12e-08, + "raylan": 9.12e-08, + "rce": 9.12e-08, + "redbird": 9.12e-08, + "redecoration": 9.12e-08, + "reflexivity": 9.12e-08, + "reiji": 9.12e-08, + "relaxin": 9.12e-08, + "repatriating": 9.12e-08, + "revascularization": 9.12e-08, + "revitalising": 9.12e-08, + "revivalism": 9.12e-08, + "revote": 9.12e-08, + "ribes": 9.12e-08, + "ricochets": 9.12e-08, + "ridgecrest": 9.12e-08, + "riken": 9.12e-08, + "risch": 9.12e-08, + "rivaldo": 9.12e-08, + "rivka": 9.12e-08, + "roadhog": 9.12e-08, + "robinette": 9.12e-08, + "rockbridge": 9.12e-08, + "roderic": 9.12e-08, + "roget": 9.12e-08, + "rollbacks": 9.12e-08, + "romanced": 9.12e-08, + "rorty": 9.12e-08, + "rosell": 9.12e-08, + "rosicrucian": 9.12e-08, + "rossman": 9.12e-08, + "rouges": 5.37e-08, + "roughs": 9.12e-08, + "rowlett": 9.12e-08, + "rpw": 9.12e-08, + "rubel": 9.12e-08, + "runing": 9.12e-08, + "rwandans": 9.12e-08, + "smore": 2.63e-08, + "saami": 9.12e-08, + "saarland": 9.12e-08, + "sabbaths": 6.31e-08, + "sagely": 9.12e-08, + "sahir": 9.12e-08, + "sahitya": 9.12e-08, + "sahu": 9.12e-08, + "sakti": 9.12e-08, + "salone": 9.12e-08, + "saltmarsh": 9.12e-08, + "sampaio": 9.12e-08, + "sancta": 9.12e-08, + "sandip": 9.12e-08, + "sangeeta": 9.12e-08, + "sants": 9.12e-08, + "sarasvati": 9.12e-08, + "sarkisian": 9.12e-08, + "sarnoff": 9.12e-08, + "satirizes": 9.12e-08, + "satsang": 9.12e-08, + "saurashtra": 9.12e-08, + "sbk": 9.12e-08, + "sbl": 9.12e-08, + "scalars": 9.12e-08, + "scarfe": 9.12e-08, + "scarification": 9.12e-08, + "schmooze": 9.12e-08, + "schrodinger": 9.12e-08, + "scientia": 9.12e-08, + "scoresby": 9.12e-08, + "scrimshaw": 9.12e-08, + "scump": 9.12e-08, + "sealift": 9.12e-08, + "sedgewick": 9.12e-08, + "seguro": 9.12e-08, + "seko": 9.12e-08, + "selfhood": 9.12e-08, + "semicolons": 9.12e-08, + "septicemia": 9.12e-08, + "sepulcher": 9.12e-08, + "sepulchral": 9.12e-08, + "serato": 9.12e-08, + "setia": 9.12e-08, + "shackleford": 9.12e-08, + "shamanistic": 9.12e-08, + "sharking": 9.12e-08, + "shart": 9.12e-08, + "shechem": 9.12e-08, + "sheepdogs": 9.12e-08, + "shies": 9.12e-08, + "shimura": 9.12e-08, + "shoehorned": 9.12e-08, + "shogi": 9.12e-08, + "shoki": 9.12e-08, + "showplace": 9.12e-08, + "shur": 9.12e-08, + "shushing": 9.12e-08, + "shuttlecock": 9.12e-08, + "sidetrack": 9.12e-08, + "siemian": 9.12e-08, + "siew": 9.12e-08, + "signa": 9.12e-08, + "siliguri": 9.12e-08, + "sindy": 9.12e-08, + "sinter": 9.12e-08, + "sipc": 9.12e-08, + "sithole": 9.12e-08, + "sito": 9.12e-08, + "skus": 9.12e-08, + "slating": 9.12e-08, + "slatted": 9.12e-08, + "sleater": 9.12e-08, + "sleepyhead": 9.12e-08, + "snaffle": 9.12e-08, + "snooped": 9.12e-08, + "snowpiercer": 9.12e-08, + "softies": 9.12e-08, + "soke": 9.12e-08, + "solara": 9.12e-08, + "soldiery": 9.12e-08, + "somersets": 9.12e-08, + "sommerfeld": 9.12e-08, + "spanners": 9.12e-08, + "spearfish": 9.12e-08, + "specsavers": 9.12e-08, + "spellers": 9.12e-08, + "spes": 9.12e-08, + "spiker": 9.12e-08, + "spined": 9.12e-08, + "splunk": 9.12e-08, + "sponged": 9.12e-08, + "squishes": 9.12e-08, + "starkweather": 9.12e-08, + "statesmanlike": 9.12e-08, + "steadicam": 9.12e-08, + "steelseries": 9.12e-08, + "steinmeier": 9.12e-08, + "sterols": 9.12e-08, + "stirrers": 9.12e-08, + "straggler": 9.12e-08, + "stravinskys": 9.12e-08, + "stree": 9.12e-08, + "stroop": 9.12e-08, + "stylo": 9.12e-08, + "subterminal": 9.12e-08, + "sunkist": 9.12e-08, + "superdry": 9.12e-08, + "superimposing": 9.12e-08, + "supermoon": 9.12e-08, + "supportable": 9.12e-08, + "suprisingly": 9.12e-08, + "suwa": 9.12e-08, + "swamping": 9.12e-08, + "sycamores": 9.12e-08, + "szymanski": 9.12e-08, + "taglines": 9.12e-08, + "tamora": 9.12e-08, + "tamponade": 9.12e-08, + "tancredo": 9.12e-08, + "tangs": 8.51e-08, + "tappers": 9.12e-08, + "tarnishes": 9.12e-08, + "tartans": 9.12e-08, + "teambuilding": 9.12e-08, + "templating": 9.12e-08, + "tenma": 9.12e-08, + "tenterden": 9.12e-08, + "thain": 9.12e-08, + "thatcherism": 9.12e-08, + "themeforest": 9.12e-08, + "thermography": 9.12e-08, + "thole": 9.12e-08, + "throating": 9.12e-08, + "thromboembolism": 9.12e-08, + "thymic": 9.12e-08, + "tietjens": 9.12e-08, + "tilford": 9.12e-08, + "timaeus": 9.12e-08, + "timecode": 9.12e-08, + "timpson": 9.12e-08, + "tiu": 9.12e-08, + "tne": 9.12e-08, + "tomographic": 9.12e-08, + "tonino": 9.12e-08, + "toshiko": 9.12e-08, + "tossup": 9.12e-08, + "touchback": 9.12e-08, + "towle": 9.12e-08, + "townhome": 9.12e-08, + "transaxle": 9.12e-08, + "transjordan": 9.12e-08, + "transocean": 9.12e-08, + "trelawny": 9.12e-08, + "tremlett": 9.12e-08, + "trivialized": 9.12e-08, + "troglodyte": 9.12e-08, + "troves": 9.12e-08, + "trypanosoma": 9.12e-08, + "tswana": 9.12e-08, + "tuns": 9.12e-08, + "turvey": 9.12e-08, + "tutelary": 9.12e-08, + "tvm": 9.12e-08, + "twyla": 9.12e-08, + "umbro": 9.12e-08, + "unbanked": 9.12e-08, + "uncompromisingly": 9.12e-08, + "unconformity": 9.12e-08, + "unconventionally": 9.12e-08, + "underbody": 9.12e-08, + "unhampered": 9.12e-08, + "unifil": 9.12e-08, + "untucked": 9.12e-08, + "unwinds": 9.12e-08, + "usatf": 9.12e-08, + "validator": 9.12e-08, + "valiente": 9.12e-08, + "vana": 9.12e-08, + "vanzetti": 9.12e-08, + "varadkar": 9.12e-08, + "vasectomies": 9.12e-08, + "veja": 9.12e-08, + "veli": 9.12e-08, + "verkhovna": 9.12e-08, + "vernet": 9.12e-08, + "versicolor": 9.12e-08, + "verticality": 9.12e-08, + "verts": 9.12e-08, + "vhdl": 9.12e-08, + "viceroys": 9.12e-08, + "vidyalaya": 9.12e-08, + "viens": 9.12e-08, + "villon": 9.12e-08, + "vingt": 9.12e-08, + "virginiana": 9.12e-08, + "viscountess": 9.12e-08, + "vitamix": 9.12e-08, + "vlf": 9.12e-08, + "vmc": 9.12e-08, + "voces": 9.12e-08, + "vso": 9.12e-08, + "vti": 9.12e-08, + "waaah": 9.12e-08, + "waar": 9.12e-08, + "wabi": 9.12e-08, + "wachtel": 9.12e-08, + "wahhabis": 9.12e-08, + "wahrheit": 9.12e-08, + "walgreen": 9.12e-08, + "wanta": 9.12e-08, + "warangal": 9.12e-08, + "wartburg": 9.12e-08, + "webbe": 9.12e-08, + "weser": 9.12e-08, + "westborough": 9.12e-08, + "westheimer": 9.12e-08, + "whities": 9.12e-08, + "wib": 9.12e-08, + "willd": 9.12e-08, + "willl": 9.12e-08, + "windowing": 9.12e-08, + "winkie": 9.12e-08, + "wisdoms": 9.12e-08, + "wissenschaften": 9.12e-08, + "wittering": 9.12e-08, + "wnd": 9.12e-08, + "wonks": 9.12e-08, + "wordperfect": 9.12e-08, + "worser": 9.12e-08, + "wyke": 9.12e-08, + "wynwood": 9.12e-08, + "xslt": 9.12e-08, + "yamahas": 9.12e-08, + "yamasaki": 9.12e-08, + "yaron": 9.12e-08, + "yasuko": 9.12e-08, + "yeahh": 9.12e-08, + "yeboah": 9.12e-08, + "yeux": 9.12e-08, + "yob": 9.12e-08, + "younge": 9.12e-08, + "yuto": 9.12e-08, + "zcash": 9.12e-08, + "zil": 9.12e-08, + "zoar": 9.12e-08, + "zodiacs": 9.12e-08, + "zorin": 9.12e-08, + "aacsb": 8.91e-08, + "aaryn": 8.91e-08, + "abdomens": 8.91e-08, + "abridge": 8.91e-08, + "abridging": 8.91e-08, + "abus": 8.91e-08, + "accies": 8.91e-08, + "achi": 8.91e-08, + "ackles": 8.91e-08, + "acw": 8.91e-08, + "adac": 8.91e-08, + "administrate": 8.91e-08, + "adrianople": 8.91e-08, + "ael": 8.91e-08, + "aerogel": 8.91e-08, + "aesops": 8.91e-08, + "aesthete": 8.91e-08, + "afrikan": 8.91e-08, + "afsc": 8.91e-08, + "afterburners": 8.91e-08, + "agonistic": 8.91e-08, + "agustawestland": 8.91e-08, + "ahk": 8.91e-08, + "aircrews": 8.91e-08, + "aizen": 8.91e-08, + "akaka": 8.91e-08, + "aking": 8.91e-08, + "alar": 8.91e-08, + "alberni": 8.91e-08, + "alcuin": 8.91e-08, + "alireza": 8.91e-08, + "allura": 8.91e-08, + "althusser": 8.91e-08, + "altiplano": 8.91e-08, + "alvarezs": 8.91e-08, + "alyx": 8.91e-08, + "amada": 8.91e-08, + "amia": 8.91e-08, + "amini": 8.91e-08, + "amorites": 8.91e-08, + "amphipolis": 8.91e-08, + "anacortes": 8.91e-08, + "anatoli": 8.91e-08, + "angara": 8.91e-08, + "angelfish": 8.91e-08, + "angiogenic": 8.91e-08, + "anglophile": 8.91e-08, + "anglophones": 8.91e-08, + "angolas": 8.91e-08, + "anki": 8.91e-08, + "annexations": 8.91e-08, + "annu": 8.91e-08, + "anthocyanin": 8.91e-08, + "anticlockwise": 8.91e-08, + "antiepileptic": 8.91e-08, + "antonioni": 8.91e-08, + "antonym": 8.91e-08, + "anxiousness": 8.91e-08, + "aorist": 8.91e-08, + "apte": 8.91e-08, + "aqib": 8.91e-08, + "aravind": 8.91e-08, + "arba": 8.91e-08, + "archbishopric": 8.91e-08, + "arcot": 8.91e-08, + "arendelle": 8.91e-08, + "arjan": 8.91e-08, + "armorer": 8.91e-08, + "artest": 8.91e-08, + "artifical": 8.91e-08, + "ashwell": 8.91e-08, + "aspin": 8.91e-08, + "asps": 8.91e-08, + "assortments": 8.91e-08, + "asymptote": 8.91e-08, + "atomization": 8.91e-08, + "atra": 8.91e-08, + "atreides": 8.91e-08, + "attenuating": 8.91e-08, + "austenitic": 8.91e-08, + "axminster": 8.91e-08, + "aynsley": 8.91e-08, + "azaz": 8.91e-08, + "babbled": 8.91e-08, + "babushka": 8.91e-08, + "backstretch": 8.91e-08, + "badging": 8.91e-08, + "bajrang": 8.91e-08, + "balart": 8.91e-08, + "ballyhoo": 8.91e-08, + "ballymoney": 8.91e-08, + "balogh": 8.91e-08, + "bamberger": 8.91e-08, + "bandini": 8.91e-08, + "barfing": 8.91e-08, + "barmouth": 8.91e-08, + "barricading": 8.91e-08, + "barua": 8.91e-08, + "barwell": 8.91e-08, + "basanti": 8.91e-08, + "baseplate": 8.91e-08, + "bastide": 8.91e-08, + "bedwetting": 8.91e-08, + "beggining": 8.91e-08, + "behati": 8.91e-08, + "belorussian": 8.91e-08, + "bence": 8.91e-08, + "bengtsson": 8.91e-08, + "benignly": 8.91e-08, + "bennis": 8.91e-08, + "benth": 8.91e-08, + "beo": 8.91e-08, + "berita": 8.91e-08, + "berlitz": 8.91e-08, + "berna": 8.91e-08, + "berwickshire": 8.91e-08, + "beso": 8.91e-08, + "bgt": 8.91e-08, + "biederman": 8.91e-08, + "bifrost": 8.91e-08, + "biggers": 8.91e-08, + "bilby": 8.91e-08, + "bings": 8.91e-08, + "biochar": 8.91e-08, + "biosimilar": 8.91e-08, + "birdied": 8.91e-08, + "biu": 8.91e-08, + "bladen": 8.91e-08, + "bladensburg": 8.91e-08, + "blessedly": 8.91e-08, + "blomberg": 8.91e-08, + "blueish": 8.91e-08, + "blumenfeld": 8.91e-08, + "boke": 8.91e-08, + "bolingbrook": 8.91e-08, + "bonnell": 8.91e-08, + "bonomi": 8.91e-08, + "bookplate": 8.91e-08, + "bootlegged": 8.91e-08, + "boreham": 8.91e-08, + "bori": 8.91e-08, + "boxoffice": 8.91e-08, + "boyzone": 8.91e-08, + "brahe": 8.91e-08, + "brandin": 8.91e-08, + "brasses": 8.91e-08, + "brigs": 8.91e-08, + "brimley": 8.91e-08, + "brines": 8.91e-08, + "broadbeach": 8.91e-08, + "brodhead": 8.91e-08, + "brooksville": 8.91e-08, + "bruch": 8.91e-08, + "buckmaster": 8.91e-08, + "bucyrus": 8.91e-08, + "buddhahood": 8.91e-08, + "buffington": 8.91e-08, + "bukan": 8.91e-08, + "bulleted": 8.91e-08, + "burgomaster": 8.91e-08, + "burrill": 8.91e-08, + "buttoning": 8.91e-08, + "buzzsaw": 8.91e-08, + "cabby": 8.91e-08, + "cabinetmaker": 8.91e-08, + "calrissian": 8.91e-08, + "calzones": 8.91e-08, + "canterburys": 8.91e-08, + "canty": 8.91e-08, + "capgemini": 8.91e-08, + "caplin": 8.91e-08, + "carmelites": 8.91e-08, + "carnie": 8.91e-08, + "caroll": 8.91e-08, + "carolus": 8.91e-08, + "carraway": 8.91e-08, + "carseat": 8.91e-08, + "cassar": 8.91e-08, + "catatonia": 8.91e-08, + "causeways": 8.91e-08, + "caylee": 8.91e-08, + "cecilie": 8.91e-08, + "ceh": 8.91e-08, + "cela": 8.91e-08, + "celler": 8.91e-08, + "celly": 8.91e-08, + "centavos": 8.91e-08, + "centimes": 8.91e-08, + "cgp": 8.91e-08, + "chadron": 8.91e-08, + "chagrined": 8.91e-08, + "chansey": 8.91e-08, + "chaotically": 8.91e-08, + "chappel": 8.91e-08, + "charo": 8.91e-08, + "chastening": 8.91e-08, + "cheesman": 8.91e-08, + "chern": 8.91e-08, + "chilterns": 8.91e-08, + "chippewas": 8.91e-08, + "chirico": 8.91e-08, + "chocks": 8.91e-08, + "choos": 8.91e-08, + "chopard": 8.91e-08, + "choreographies": 8.91e-08, + "cide": 8.91e-08, + "civile": 8.91e-08, + "ckin": 8.91e-08, + "clarksdale": 8.91e-08, + "clevenger": 8.91e-08, + "clf": 8.91e-08, + "cmh": 8.91e-08, + "cni": 8.91e-08, + "cobourg": 8.91e-08, + "codd": 8.91e-08, + "colet": 8.91e-08, + "colledge": 8.91e-08, + "colloquialisms": 8.91e-08, + "collymore": 8.91e-08, + "colognes": 8.91e-08, + "comenius": 8.91e-08, + "commodious": 8.91e-08, + "compadre": 8.91e-08, + "conca": 8.91e-08, + "concentrators": 8.91e-08, + "conejo": 8.91e-08, + "congleton": 8.91e-08, + "conjointly": 8.91e-08, + "conoco": 8.91e-08, + "consciousnesses": 8.91e-08, + "consequentially": 8.91e-08, + "constitutionalists": 8.91e-08, + "continentals": 8.91e-08, + "contrib": 8.91e-08, + "coogler": 8.91e-08, + "cornejo": 8.91e-08, + "cornu": 8.91e-08, + "cosgrave": 8.91e-08, + "costanzo": 8.91e-08, + "cosworth": 8.91e-08, + "cotabato": 8.91e-08, + "coumadin": 8.91e-08, + "coupla": 8.91e-08, + "creb": 8.91e-08, + "crescendos": 8.91e-08, + "cressy": 8.91e-08, + "crichtons": 8.91e-08, + "cripes": 8.91e-08, + "crista": 8.91e-08, + "crosswinds": 8.91e-08, + "crushingly": 8.91e-08, + "csh": 8.91e-08, + "cucina": 8.91e-08, + "cumnock": 8.91e-08, + "cuna": 8.91e-08, + "cupe": 8.91e-08, + "curti": 8.91e-08, + "daichi": 8.91e-08, + "daines": 8.91e-08, + "dallying": 8.91e-08, + "daphnes": 8.91e-08, + "darabont": 8.91e-08, + "darkwing": 8.91e-08, + "dbx": 8.91e-08, + "decolonisation": 8.91e-08, + "deflowered": 8.91e-08, + "delisle": 8.91e-08, + "deman": 8.91e-08, + "demetrios": 8.91e-08, + "demountable": 8.91e-08, + "deregulating": 8.91e-08, + "dese": 8.91e-08, + "desegregate": 8.91e-08, + "desig": 8.91e-08, + "destabilizes": 8.91e-08, + "destino": 8.91e-08, + "diacritics": 8.91e-08, + "dickin": 8.91e-08, + "didt": 8.91e-08, + "dikshit": 8.91e-08, + "diptych": 8.91e-08, + "disgaea": 8.91e-08, + "disgraces": 8.91e-08, + "dispositional": 8.91e-08, + "disproportionally": 8.91e-08, + "dml": 8.91e-08, + "dno": 8.91e-08, + "dnv": 8.91e-08, + "docsis": 8.91e-08, + "dodecahedron": 8.91e-08, + "dogger": 8.91e-08, + "dogon": 8.91e-08, + "doink": 8.91e-08, + "dollard": 8.91e-08, + "donee": 8.91e-08, + "dorgan": 8.91e-08, + "dorsolateral": 8.91e-08, + "dotage": 8.91e-08, + "dowden": 8.91e-08, + "downpatrick": 8.91e-08, + "dpf": 8.91e-08, + "drin": 8.91e-08, + "droned": 8.91e-08, + "dror": 8.91e-08, + "dtla": 8.91e-08, + "dullard": 8.91e-08, + "dumbshit": 8.91e-08, + "dysmorphia": 8.91e-08, + "ebba": 8.91e-08, + "economia": 8.91e-08, + "edh": 8.91e-08, + "educationist": 8.91e-08, + "effusions": 8.91e-08, + "eggheads": 8.91e-08, + "eichler": 8.91e-08, + "eidos": 8.91e-08, + "eins": 8.91e-08, + "ejiofor": 8.91e-08, + "ellerbe": 8.91e-08, + "elva": 8.91e-08, + "emboldens": 8.91e-08, + "emmert": 8.91e-08, + "endotracheal": 8.91e-08, + "englert": 8.91e-08, + "epiphytic": 8.91e-08, + "eppes": 8.91e-08, + "escarpments": 8.91e-08, + "ethnographers": 8.91e-08, + "eum": 8.91e-08, + "eurodance": 8.91e-08, + "evangelos": 8.91e-08, + "evy": 8.91e-08, + "exactitude": 8.91e-08, + "exorbitantly": 8.91e-08, + "expressively": 8.91e-08, + "fabricio": 8.91e-08, + "facist": 8.91e-08, + "fames": 8.91e-08, + "fard": 8.91e-08, + "fce": 8.91e-08, + "featurettes": 8.91e-08, + "federalization": 8.91e-08, + "fermentable": 8.91e-08, + "fernandos": 8.91e-08, + "fettes": 8.91e-08, + "fidei": 8.91e-08, + "figments": 8.91e-08, + "filesystems": 8.91e-08, + "filmore": 8.91e-08, + "finning": 8.91e-08, + "fkin": 8.91e-08, + "flavoursome": 8.91e-08, + "flem": 8.91e-08, + "florentines": 8.91e-08, + "floristic": 8.91e-08, + "flowerbeds": 8.91e-08, + "flp": 8.91e-08, + "fluminense": 8.91e-08, + "fluoroscopy": 8.91e-08, + "fognini": 8.91e-08, + "folies": 8.91e-08, + "folke": 8.91e-08, + "folklorist": 8.91e-08, + "folky": 8.91e-08, + "footlong": 8.91e-08, + "forcefield": 8.91e-08, + "forschung": 8.91e-08, + "forsythia": 8.91e-08, + "freddo": 8.91e-08, + "fredi": 8.91e-08, + "frigg": 8.91e-08, + "frights": 8.91e-08, + "frise": 8.91e-08, + "frisking": 8.91e-08, + "frit": 8.91e-08, + "fronto": 8.91e-08, + "frowny": 8.91e-08, + "fsus": 8.91e-08, + "fsx": 8.91e-08, + "fuc": 8.91e-08, + "fudan": 8.91e-08, + "fufu": 8.91e-08, + "fugues": 8.91e-08, + "fulling": 8.91e-08, + "funtime": 8.91e-08, + "gaara": 8.91e-08, + "galant": 8.91e-08, + "gangbanged": 8.91e-08, + "gangbangers": 8.91e-08, + "garen": 8.91e-08, + "garissa": 8.91e-08, + "gaullist": 8.91e-08, + "gela": 8.91e-08, + "geos": 8.91e-08, + "gerold": 8.91e-08, + "gfriend": 8.91e-08, + "giftcard": 8.91e-08, + "gigahertz": 8.91e-08, + "girt": 8.91e-08, + "giulietta": 8.91e-08, + "glenna": 8.91e-08, + "gnaws": 8.91e-08, + "goofballs": 8.91e-08, + "gowon": 8.91e-08, + "grandiflora": 8.91e-08, + "grannie": 8.91e-08, + "gravid": 8.91e-08, + "grayer": 8.91e-08, + "greenham": 8.91e-08, + "gretta": 8.91e-08, + "gses": 8.91e-08, + "guenter": 8.91e-08, + "gueye": 8.91e-08, + "guillem": 8.91e-08, + "gurugram": 8.91e-08, + "haba": 8.91e-08, + "halflings": 8.91e-08, + "halwa": 8.91e-08, + "hamam": 8.91e-08, + "handwoven": 8.91e-08, + "hannam": 8.91e-08, + "harbord": 8.91e-08, + "hardrock": 8.91e-08, + "harga": 8.91e-08, + "harmonix": 8.91e-08, + "hartshorne": 8.91e-08, + "harumi": 8.91e-08, + "hasbros": 8.91e-08, + "hasidim": 8.91e-08, + "hassett": 8.91e-08, + "hatshepsut": 8.91e-08, + "hauschka": 8.91e-08, + "haveli": 8.91e-08, + "hayloft": 8.91e-08, + "hdv": 8.91e-08, + "healdsburg": 8.91e-08, + "heba": 8.91e-08, + "heere": 8.91e-08, + "heid": 8.91e-08, + "helicon": 8.91e-08, + "helier": 8.91e-08, + "hellhound": 8.91e-08, + "hematocrit": 8.91e-08, + "hendrie": 8.91e-08, + "henrich": 8.91e-08, + "herbalists": 8.91e-08, + "herlihy": 8.91e-08, + "herods": 8.91e-08, + "heteronormativity": 8.91e-08, + "heth": 8.91e-08, + "hexagram": 8.91e-08, + "hhm": 8.91e-08, + "hillery": 8.91e-08, + "hillyer": 8.91e-08, + "hmb": 8.91e-08, + "hokkien": 8.91e-08, + "hollowness": 8.91e-08, + "homura": 8.91e-08, + "honeymoons": 8.91e-08, + "hooton": 8.91e-08, + "horeb": 8.91e-08, + "hoti": 8.91e-08, + "howve": 8.91e-08, + "hubie": 8.91e-08, + "hurrell": 8.91e-08, + "hybridity": 8.91e-08, + "hydroplane": 8.91e-08, + "hyperlipidemia": 8.91e-08, + "iacocca": 8.91e-08, + "icefall": 8.91e-08, + "idiosyncrasy": 8.91e-08, + "iframe": 8.91e-08, + "igad": 8.91e-08, + "ihrer": 8.91e-08, + "iinet": 8.91e-08, + "ikhwan": 8.91e-08, + "ikki": 8.91e-08, + "ilie": 8.91e-08, + "illegitimately": 8.91e-08, + "imbuing": 8.91e-08, + "immobilizing": 8.91e-08, + "immolated": 8.91e-08, + "imperio": 8.91e-08, + "inanity": 8.91e-08, + "inanna": 8.91e-08, + "indemnities": 8.91e-08, + "independance": 8.91e-08, + "indiscernible": 8.91e-08, + "indys": 8.91e-08, + "infinitives": 8.91e-08, + "inflammations": 8.91e-08, + "informatica": 8.91e-08, + "inseparably": 8.91e-08, + "instars": 8.91e-08, + "intercut": 8.91e-08, + "interphase": 8.91e-08, + "iroh": 8.91e-08, + "ironsides": 8.91e-08, + "issey": 8.91e-08, + "isso": 8.91e-08, + "izod": 8.91e-08, + "jafari": 8.91e-08, + "jaga": 8.91e-08, + "jamiroquai": 8.91e-08, + "janissaries": 8.91e-08, + "jarmusch": 8.91e-08, + "javas": 8.91e-08, + "jenko": 8.91e-08, + "jfl": 8.91e-08, + "jitendra": 8.91e-08, + "johnsbury": 8.91e-08, + "johnsonville": 8.91e-08, + "jok": 8.91e-08, + "jonghyun": 8.91e-08, + "jorn": 8.91e-08, + "journ": 8.91e-08, + "jra": 8.91e-08, + "juin": 8.91e-08, + "kaci": 8.91e-08, + "kahlua": 8.91e-08, + "kaiba": 8.91e-08, + "kaisha": 8.91e-08, + "kamasutra": 8.91e-08, + "kamin": 8.91e-08, + "kanin": 8.91e-08, + "kansans": 8.91e-08, + "kanzaki": 8.91e-08, + "karlos": 8.91e-08, + "karri": 8.91e-08, + "kaskaskia": 8.91e-08, + "katsumi": 8.91e-08, + "kav": 8.91e-08, + "kaylas": 8.91e-08, + "keh": 8.91e-08, + "kein": 8.91e-08, + "kenora": 8.91e-08, + "khaleda": 8.91e-08, + "kien": 8.91e-08, + "kilohertz": 8.91e-08, + "knowns": 8.91e-08, + "koester": 8.91e-08, + "konkan": 8.91e-08, + "koz": 8.91e-08, + "krillin": 8.91e-08, + "kristiansen": 8.91e-08, + "kronstadt": 8.91e-08, + "krush": 8.91e-08, + "kuechly": 8.91e-08, + "kurland": 8.91e-08, + "kutuzov": 8.91e-08, + "kyal": 8.91e-08, + "lahat": 8.91e-08, + "lajos": 8.91e-08, + "laki": 8.91e-08, + "lamartine": 8.91e-08, + "lampson": 8.91e-08, + "landmasses": 8.91e-08, + "lanie": 8.91e-08, + "laplante": 8.91e-08, + "larousse": 8.91e-08, + "latics": 8.91e-08, + "laurin": 8.91e-08, + "leaches": 8.91e-08, + "leavy": 8.91e-08, + "legault": 8.91e-08, + "lessors": 8.91e-08, + "leta": 8.91e-08, + "lexicography": 8.91e-08, + "liming": 8.91e-08, + "limply": 8.91e-08, + "lome": 8.91e-08, + "longstocking": 8.91e-08, + "loosest": 8.91e-08, + "lorcan": 8.91e-08, + "louboutins": 8.91e-08, + "lovel": 8.91e-08, + "lowliest": 8.91e-08, + "lsf": 8.91e-08, + "lsl": 8.91e-08, + "luteal": 8.91e-08, + "lvs": 8.91e-08, + "lysergic": 8.91e-08, + "madrasas": 8.91e-08, + "maestri": 8.91e-08, + "mairead": 8.91e-08, + "maisonette": 8.91e-08, + "malayali": 8.91e-08, + "mallinson": 8.91e-08, + "mandaluyong": 8.91e-08, + "mangano": 8.91e-08, + "manliest": 8.91e-08, + "mantas": 8.91e-08, + "manz": 8.91e-08, + "marantz": 8.91e-08, + "marcher": 8.91e-08, + "marcuss": 8.91e-08, + "marney": 8.91e-08, + "marnier": 8.91e-08, + "massapequa": 8.91e-08, + "mastodons": 8.91e-08, + "masur": 8.91e-08, + "mattoon": 8.91e-08, + "maxes": 8.91e-08, + "mayest": 8.91e-08, + "mbm": 8.91e-08, + "mccaughey": 8.91e-08, + "mcdormand": 8.91e-08, + "mcdowells": 8.91e-08, + "mcgeorge": 8.91e-08, + "mcgloin": 8.91e-08, + "mcquillan": 8.91e-08, + "meetinghouse": 8.91e-08, + "memeing": 8.91e-08, + "menuhin": 8.91e-08, + "merrett": 8.91e-08, + "merrie": 8.91e-08, + "meteoroid": 8.91e-08, + "miga": 8.91e-08, + "mihi": 8.91e-08, + "minard": 8.91e-08, + "minored": 8.91e-08, + "mirkwood": 8.91e-08, + "misao": 8.91e-08, + "misappropriating": 8.91e-08, + "misawa": 8.91e-08, + "misjudgment": 8.91e-08, + "misprints": 8.91e-08, + "mispronouncing": 8.91e-08, + "misspelt": 8.91e-08, + "mne": 8.91e-08, + "mnemosyne": 8.91e-08, + "moas": 8.91e-08, + "mody": 8.91e-08, + "moins": 8.91e-08, + "molinaro": 8.91e-08, + "monofilament": 8.91e-08, + "montalvo": 8.91e-08, + "montreuil": 8.91e-08, + "moorcroft": 8.91e-08, + "moralists": 8.91e-08, + "moros": 8.91e-08, + "morpurgo": 8.91e-08, + "mothe": 8.91e-08, + "mozillas": 8.91e-08, + "muchas": 8.91e-08, + "mudslinging": 8.91e-08, + "mullers": 8.91e-08, + "multiforme": 8.91e-08, + "multisensory": 8.91e-08, + "multithreaded": 8.91e-08, + "mure": 8.91e-08, + "murong": 8.91e-08, + "musts": 8.91e-08, + "mvno": 8.91e-08, + "nago": 8.91e-08, + "naivasha": 8.91e-08, + "nalu": 8.91e-08, + "nanocomposites": 8.91e-08, + "naturopath": 8.91e-08, + "nausicaa": 8.91e-08, + "neddy": 8.91e-08, + "nellys": 8.91e-08, + "nessus": 8.91e-08, + "netbooks": 8.91e-08, + "newline": 8.91e-08, + "nieve": 8.91e-08, + "niggles": 8.91e-08, + "nighthawks": 8.91e-08, + "nipissing": 8.91e-08, + "niwa": 8.91e-08, + "noncompetitive": 8.91e-08, + "nonfatal": 8.91e-08, + "nonnative": 8.91e-08, + "nonresidential": 8.91e-08, + "novara": 8.91e-08, + "npe": 8.91e-08, + "npg": 8.91e-08, + "nthe": 8.91e-08, + "ntm": 8.91e-08, + "nvc": 8.91e-08, + "nwp": 8.91e-08, + "nycc": 8.91e-08, + "nyk": 8.91e-08, + "nymex": 8.91e-08, + "obiang": 8.91e-08, + "occitan": 8.91e-08, + "oceanographers": 8.91e-08, + "oddness": 8.91e-08, + "odia": 8.91e-08, + "offsprings": 6.61e-08, + "ofw": 8.91e-08, + "ohta": 8.91e-08, + "ojha": 8.91e-08, + "oldboy": 8.91e-08, + "oligosaccharide": 8.91e-08, + "olmo": 8.91e-08, + "olynyk": 8.91e-08, + "omdurman": 8.91e-08, + "onan": 8.91e-08, + "onii": 8.91e-08, + "onlines": 8.91e-08, + "opex": 8.91e-08, + "opg": 8.91e-08, + "oppurtunity": 8.91e-08, + "ordinations": 8.91e-08, + "organophosphate": 8.91e-08, + "ormiston": 8.91e-08, + "orp": 8.91e-08, + "osus": 8.91e-08, + "outpourings": 8.91e-08, + "outsmarting": 8.91e-08, + "outstation": 8.91e-08, + "overreached": 8.91e-08, + "oversimplifying": 8.91e-08, + "pacoima": 8.91e-08, + "pacu": 8.91e-08, + "pacy": 8.91e-08, + "paintbrushes": 8.91e-08, + "papists": 8.91e-08, + "parsec": 8.91e-08, + "pastoralism": 8.91e-08, + "pastureland": 8.91e-08, + "pathophysiological": 8.91e-08, + "patrizio": 8.91e-08, + "pawlenty": 8.91e-08, + "paycheque": 8.91e-08, + "paydays": 8.91e-08, + "pebbly": 8.91e-08, + "pedants": 8.91e-08, + "pennock": 8.91e-08, + "percussionists": 8.91e-08, + "peroni": 8.91e-08, + "pfl": 8.91e-08, + "pharrells": 8.91e-08, + "phebe": 8.91e-08, + "philadelphians": 8.91e-08, + "photoluminescence": 8.91e-08, + "phylloxera": 8.91e-08, + "pian": 8.91e-08, + "pickaxes": 8.91e-08, + "pigging": 8.91e-08, + "pinar": 8.91e-08, + "pinkham": 8.91e-08, + "pinos": 8.91e-08, + "piratical": 8.91e-08, + "piton": 8.91e-08, + "pitot": 8.91e-08, + "platformers": 8.91e-08, + "playstyle": 8.91e-08, + "plcs": 8.91e-08, + "plonker": 8.91e-08, + "pogues": 8.91e-08, + "policymaker": 8.91e-08, + "pollys": 8.91e-08, + "poltava": 8.91e-08, + "polyana": 8.91e-08, + "pomerantz": 8.91e-08, + "pontiffs": 8.91e-08, + "portales": 8.91e-08, + "posco": 8.91e-08, + "possessors": 8.91e-08, + "postgraduates": 8.91e-08, + "potshots": 8.91e-08, + "poulet": 8.91e-08, + "praecox": 8.91e-08, + "premio": 8.91e-08, + "pressurizing": 8.91e-08, + "priapism": 8.91e-08, + "prioritisation": 8.91e-08, + "pritam": 8.91e-08, + "procopius": 8.91e-08, + "profes": 8.91e-08, + "professionalized": 8.91e-08, + "pronation": 8.91e-08, + "proteges": 8.91e-08, + "prowlers": 8.91e-08, + "proximally": 8.91e-08, + "pslv": 8.91e-08, + "psylocke": 8.91e-08, + "ptg": 8.91e-08, + "pupation": 8.91e-08, + "putri": 8.91e-08, + "pyrrole": 8.91e-08, + "quero": 8.91e-08, + "quiksilver": 8.91e-08, + "quintiles": 8.91e-08, + "quinze": 8.91e-08, + "rafas": 8.91e-08, + "ragi": 8.91e-08, + "raiffeisen": 8.91e-08, + "railwaymen": 8.91e-08, + "rainsford": 8.91e-08, + "rajs": 8.91e-08, + "rajputana": 8.91e-08, + "ramsbottom": 8.91e-08, + "ranko": 8.91e-08, + "ratajkowski": 8.91e-08, + "ratcheted": 8.91e-08, + "realitys": 8.91e-08, + "reat": 8.91e-08, + "rebalanced": 8.91e-08, + "reconfirm": 8.91e-08, + "reconnoiter": 8.91e-08, + "rediff": 8.91e-08, + "redington": 8.91e-08, + "reignites": 8.91e-08, + "reincarnations": 8.91e-08, + "reinsurers": 8.91e-08, + "reinvigorating": 8.91e-08, + "remarries": 8.91e-08, + "rems": 8.91e-08, + "remsen": 8.91e-08, + "rereleased": 8.91e-08, + "restyled": 8.91e-08, + "retrievable": 8.91e-08, + "rhabdomyolysis": 8.91e-08, + "rhus": 8.91e-08, + "rigaud": 8.91e-08, + "riper": 8.91e-08, + "rishta": 8.91e-08, + "riverwood": 8.91e-08, + "roadmaster": 8.91e-08, + "rocketship": 8.91e-08, + "rodale": 8.91e-08, + "rohypnol": 8.91e-08, + "rollouts": 8.91e-08, + "romanus": 8.91e-08, + "romberg": 8.91e-08, + "rosaline": 8.91e-08, + "roscosmos": 8.91e-08, + "rosenfield": 8.91e-08, + "royster": 8.91e-08, + "rsx": 8.91e-08, + "rudisha": 8.91e-08, + "runup": 8.91e-08, + "russert": 8.91e-08, + "rythm": 8.91e-08, + "ryus": 8.91e-08, + "sabino": 8.91e-08, + "sadar": 8.91e-08, + "safed": 8.91e-08, + "sagaing": 8.91e-08, + "sailer": 8.91e-08, + "salado": 8.91e-08, + "saltines": 8.91e-08, + "salves": 8.91e-08, + "salzman": 8.91e-08, + "sanderss": 8.91e-08, + "sandpipers": 8.91e-08, + "sangin": 8.91e-08, + "sardonically": 8.91e-08, + "sary": 8.91e-08, + "saucier": 8.91e-08, + "sauntering": 8.91e-08, + "savill": 8.91e-08, + "savo": 8.91e-08, + "sayyed": 8.91e-08, + "scannell": 8.91e-08, + "scattershot": 8.91e-08, + "schieffer": 8.91e-08, + "schillings": 8.91e-08, + "schip": 8.91e-08, + "schlep": 8.91e-08, + "schule": 8.91e-08, + "scooper": 8.91e-08, + "scrimmages": 8.91e-08, + "scrunchie": 8.91e-08, + "sculley": 8.91e-08, + "scuttlebutt": 8.91e-08, + "segas": 8.91e-08, + "seljuk": 8.91e-08, + "sergeyev": 8.91e-08, + "serology": 8.91e-08, + "sexists": 8.91e-08, + "seymours": 8.91e-08, + "shahada": 8.91e-08, + "shamelessness": 8.91e-08, + "shannara": 8.91e-08, + "sharpless": 8.91e-08, + "shera": 8.91e-08, + "shewed": 8.91e-08, + "shiftless": 8.91e-08, + "shikhar": 8.91e-08, + "shinoda": 8.91e-08, + "shravan": 8.91e-08, + "shrm": 8.91e-08, + "shroom": 8.91e-08, + "shuji": 8.91e-08, + "sidebars": 8.91e-08, + "sidebottom": 8.91e-08, + "sideswipe": 8.91e-08, + "sidonia": 8.91e-08, + "siento": 8.91e-08, + "siliceous": 8.91e-08, + "simultaneity": 8.91e-08, + "sini": 8.91e-08, + "sinise": 8.91e-08, + "sirhan": 8.91e-08, + "sirocco": 8.91e-08, + "skrill": 8.91e-08, + "skywest": 8.91e-08, + "slapshot": 8.91e-08, + "slevin": 8.91e-08, + "slimed": 8.91e-08, + "smoove": 8.91e-08, + "smush": 8.91e-08, + "snowmaking": 8.91e-08, + "snowmass": 8.91e-08, + "soko": 8.91e-08, + "solanke": 8.91e-08, + "solvang": 8.91e-08, + "sooke": 8.91e-08, + "southard": 8.91e-08, + "sparkes": 8.91e-08, + "specialness": 8.91e-08, + "speers": 8.91e-08, + "spens": 8.91e-08, + "spezia": 8.91e-08, + "spheroidal": 8.91e-08, + "spidery": 8.91e-08, + "spikelets": 8.91e-08, + "spoelstra": 8.91e-08, + "stad": 8.91e-08, + "staind": 8.91e-08, + "staplers": 8.91e-08, + "statelessness": 8.91e-08, + "stationmaster": 8.91e-08, + "steeling": 8.91e-08, + "steelworker": 8.91e-08, + "stephanus": 8.91e-08, + "stickier": 8.91e-08, + "stipendiary": 8.91e-08, + "stomatitis": 8.91e-08, + "stompin": 8.91e-08, + "stormfront": 8.91e-08, + "stranges": 8.91e-08, + "strangford": 8.91e-08, + "striatal": 8.91e-08, + "stupas": 8.91e-08, + "stylistics": 8.91e-08, + "subducting": 8.91e-08, + "subgraph": 8.91e-08, + "submittal": 8.91e-08, + "subreddits": 8.91e-08, + "substantiating": 8.91e-08, + "subtree": 8.91e-08, + "sudarshan": 8.91e-08, + "suffield": 8.91e-08, + "suicidality": 8.91e-08, + "suka": 8.91e-08, + "sullinger": 8.91e-08, + "sultanas": 8.91e-08, + "supplicant": 8.91e-08, + "suribachi": 8.91e-08, + "swappable": 8.91e-08, + "swm": 8.91e-08, + "sylvestris": 8.91e-08, + "symbionts": 8.91e-08, + "symphysis": 8.91e-08, + "syphilitic": 8.91e-08, + "taino": 8.91e-08, + "talat": 8.91e-08, + "tallaght": 8.91e-08, + "tamers": 8.91e-08, + "tangerang": 8.91e-08, + "tansey": 8.91e-08, + "taron": 8.91e-08, + "tatton": 8.91e-08, + "tbk": 8.91e-08, + "tbqh": 8.91e-08, + "techradar": 8.91e-08, + "telefonica": 8.91e-08, + "temblor": 8.91e-08, + "terpene": 8.91e-08, + "tfi": 8.91e-08, + "thatta": 8.91e-08, + "thermoregulation": 8.91e-08, + "thrashes": 8.91e-08, + "tinkerer": 8.91e-08, + "tinplate": 8.91e-08, + "toadies": 8.91e-08, + "tofino": 8.91e-08, + "toggled": 8.91e-08, + "tokelau": 8.91e-08, + "tolly": 8.91e-08, + "tondo": 8.91e-08, + "tooele": 8.91e-08, + "torontonians": 8.91e-08, + "totw": 8.91e-08, + "trammel": 8.91e-08, + "trances": 8.91e-08, + "transcultural": 8.91e-08, + "transferrin": 8.91e-08, + "transonic": 8.91e-08, + "transpiring": 8.91e-08, + "trialed": 8.91e-08, + "trikes": 8.91e-08, + "trimesters": 8.91e-08, + "tristate": 8.91e-08, + "trn": 8.91e-08, + "truitt": 8.91e-08, + "trutv": 8.91e-08, + "tti": 8.91e-08, + "ttu": 8.91e-08, + "turnings": 8.91e-08, + "tvd": 8.91e-08, + "twayne": 8.91e-08, + "tyl": 8.91e-08, + "tyreek": 8.91e-08, + "uji": 8.91e-08, + "unbranched": 8.91e-08, + "unburnt": 8.91e-08, + "uncs": 8.91e-08, + "uncorroborated": 8.91e-08, + "underpaying": 8.91e-08, + "unfaithfulness": 8.91e-08, + "unprecedentedly": 8.91e-08, + "unrevealed": 8.91e-08, + "uop": 8.91e-08, + "upending": 8.91e-08, + "upf": 8.91e-08, + "upshur": 8.91e-08, + "urumqi": 8.91e-08, + "utopianism": 8.91e-08, + "vah": 8.91e-08, + "valent": 8.91e-08, + "valorem": 8.91e-08, + "vances": 8.91e-08, + "varda": 8.91e-08, + "varina": 8.91e-08, + "vellore": 8.91e-08, + "veneered": 8.91e-08, + "ventre": 8.91e-08, + "verapamil": 8.91e-08, + "verbeek": 8.91e-08, + "veri": 8.91e-08, + "vermonters": 8.91e-08, + "verwoerd": 8.91e-08, + "vesna": 8.91e-08, + "videocassette": 8.91e-08, + "vigilantly": 8.91e-08, + "vilsack": 8.91e-08, + "vins": 8.91e-08, + "virtua": 8.91e-08, + "visto": 8.91e-08, + "vouches": 8.91e-08, + "vsphere": 8.91e-08, + "wacked": 8.91e-08, + "waitstaff": 8.91e-08, + "wako": 8.91e-08, + "walkability": 8.91e-08, + "wallaroo": 8.91e-08, + "waluigi": 8.91e-08, + "washings": 8.91e-08, + "watto": 8.91e-08, + "watton": 8.91e-08, + "waxwork": 8.91e-08, + "waycross": 8.91e-08, + "waymo": 8.91e-08, + "wdf": 8.91e-08, + "wearhouse": 8.91e-08, + "weathertech": 8.91e-08, + "webley": 8.91e-08, + "wedgewood": 8.91e-08, + "weel": 8.91e-08, + "weightier": 8.91e-08, + "weightings": 8.91e-08, + "westlaw": 8.91e-08, + "westmount": 8.91e-08, + "wheatsheaf": 8.91e-08, + "wherry": 8.91e-08, + "whomsoever": 8.91e-08, + "whp": 8.91e-08, + "wickliffe": 8.91e-08, + "wiedemann": 8.91e-08, + "wikihow": 8.91e-08, + "wilcock": 8.91e-08, + "windfarm": 8.91e-08, + "winrar": 8.91e-08, + "wiseau": 8.91e-08, + "wnyc": 8.91e-08, + "woodfield": 8.91e-08, + "workmate": 8.91e-08, + "wpt": 8.91e-08, + "wtih": 8.91e-08, + "wub": 8.91e-08, + "wyk": 8.91e-08, + "wynd": 8.91e-08, + "xxxxxx": 8.91e-08, + "yasu": 8.91e-08, + "yippie": 8.91e-08, + "yoshimi": 8.91e-08, + "youu": 8.91e-08, + "yugoslavs": 8.91e-08, + "zammit": 8.91e-08, + "zanes": 8.91e-08, + "zech": 8.91e-08, + "zer": 8.91e-08, + "zoella": 8.91e-08, + "aamc": 8.71e-08, + "aashto": 8.71e-08, + "aban": 8.71e-08, + "abortionist": 8.71e-08, + "abridgement": 8.71e-08, + "abstains": 8.71e-08, + "acab": 8.71e-08, + "acadians": 8.71e-08, + "acquirers": 8.71e-08, + "actos": 8.71e-08, + "acworth": 8.71e-08, + "adal": 8.71e-08, + "adg": 8.71e-08, + "adventurism": 8.71e-08, + "advowson": 8.71e-08, + "affiliating": 8.71e-08, + "affinis": 8.71e-08, + "affordances": 8.71e-08, + "agglomerations": 8.71e-08, + "ahmadu": 8.71e-08, + "aider": 8.71e-08, + "airgun": 8.71e-08, + "akashic": 8.71e-08, + "akko": 8.71e-08, + "alexanderplatz": 8.71e-08, + "aliquot": 8.71e-08, + "allama": 8.71e-08, + "aloy": 8.71e-08, + "amirs": 8.71e-08, + "ampa": 8.71e-08, + "amuro": 8.71e-08, + "anam": 8.71e-08, + "anaphase": 8.71e-08, + "anbu": 8.71e-08, + "ancora": 8.71e-08, + "anette": 8.71e-08, + "anji": 8.71e-08, + "anneliese": 8.71e-08, + "anomie": 8.71e-08, + "antisubmarine": 8.71e-08, + "apollodorus": 8.71e-08, + "apraxia": 8.71e-08, + "arachne": 8.71e-08, + "arachnophobia": 8.71e-08, + "areata": 8.71e-08, + "argot": 8.71e-08, + "arianism": 8.71e-08, + "arnaldo": 8.71e-08, + "arrestees": 8.71e-08, + "arth": 8.71e-08, + "asam": 8.71e-08, + "aslo": 8.71e-08, + "assy": 8.71e-08, + "atas": 8.71e-08, + "aubusson": 8.71e-08, + "aula": 8.71e-08, + "autocorrected": 8.71e-08, + "auxerre": 8.71e-08, + "awu": 8.71e-08, + "azurite": 8.71e-08, + "backtracks": 8.71e-08, + "bahahaha": 8.71e-08, + "bailes": 8.71e-08, + "bakehouse": 8.71e-08, + "balaklava": 8.71e-08, + "balam": 8.71e-08, + "balderdash": 8.71e-08, + "ballade": 8.71e-08, + "balusters": 8.71e-08, + "bankston": 8.71e-08, + "barbershops": 8.71e-08, + "barfed": 8.71e-08, + "barish": 8.71e-08, + "bartolome": 8.71e-08, + "baseboards": 8.71e-08, + "baskervilles": 8.71e-08, + "basler": 8.71e-08, + "batchelder": 8.71e-08, + "battletech": 8.71e-08, + "bazemore": 8.71e-08, + "bbk": 8.71e-08, + "bedelia": 8.71e-08, + "bedpost": 8.71e-08, + "beeton": 8.71e-08, + "beke": 8.71e-08, + "bellwood": 8.71e-08, + "bensalem": 8.71e-08, + "benyon": 8.71e-08, + "bequeathing": 8.71e-08, + "bergevin": 8.71e-08, + "beringer": 8.71e-08, + "bernardin": 8.71e-08, + "bertuzzi": 8.71e-08, + "bge": 8.71e-08, + "bhc": 8.71e-08, + "bhola": 8.71e-08, + "bibis": 8.71e-08, + "bifocals": 8.71e-08, + "bigness": 8.71e-08, + "billowed": 8.71e-08, + "bilt": 8.71e-08, + "bindery": 8.71e-08, + "binford": 8.71e-08, + "birgitta": 8.71e-08, + "bisa": 8.71e-08, + "bitstamp": 8.71e-08, + "bjd": 8.71e-08, + "bka": 8.71e-08, + "blanka": 8.71e-08, + "blat": 8.71e-08, + "blessington": 8.71e-08, + "blewett": 8.71e-08, + "blunkett": 8.71e-08, + "bmf": 8.71e-08, + "bodycon": 8.71e-08, + "boice": 8.71e-08, + "boling": 8.71e-08, + "bonbons": 8.71e-08, + "borrelia": 8.71e-08, + "bosanquet": 8.71e-08, + "botanically": 8.71e-08, + "bowsprit": 8.71e-08, + "bracebridge": 8.71e-08, + "braggadocio": 8.71e-08, + "brangelina": 8.71e-08, + "breakbeat": 8.71e-08, + "breeland": 8.71e-08, + "bremerhaven": 8.71e-08, + "bremmer": 8.71e-08, + "brined": 8.71e-08, + "brownwood": 8.71e-08, + "brucie": 8.71e-08, + "brunnen": 8.71e-08, + "brust": 8.71e-08, + "bucci": 8.71e-08, + "builtin": 8.71e-08, + "burkitt": 8.71e-08, + "burmeister": 8.71e-08, + "bushey": 8.71e-08, + "buswell": 8.71e-08, + "byul": 8.71e-08, + "bywater": 8.71e-08, + "cacophonous": 8.71e-08, + "caftan": 8.71e-08, + "caillat": 8.71e-08, + "caldicott": 8.71e-08, + "calor": 8.71e-08, + "camborne": 8.71e-08, + "camelia": 8.71e-08, + "canadien": 8.71e-08, + "canta": 8.71e-08, + "cantabile": 8.71e-08, + "capcoms": 8.71e-08, + "capm": 8.71e-08, + "carbolic": 8.71e-08, + "cardiorespiratory": 8.71e-08, + "cardo": 8.71e-08, + "carriageways": 8.71e-08, + "carrousel": 8.71e-08, + "castella": 8.71e-08, + "cbgb": 8.71e-08, + "censorious": 8.71e-08, + "censures": 8.71e-08, + "centerpoint": 8.71e-08, + "ceremonys": 8.71e-08, + "cerseis": 8.71e-08, + "cessnock": 8.71e-08, + "cgy": 8.71e-08, + "chakotay": 8.71e-08, + "chancellorship": 8.71e-08, + "changelings": 8.71e-08, + "chani": 8.71e-08, + "charron": 8.71e-08, + "chatterley": 8.71e-08, + "cheapening": 8.71e-08, + "chels": 8.71e-08, + "chemotaxis": 8.71e-08, + "chiasson": 8.71e-08, + "chilwell": 8.71e-08, + "chlorhexidine": 8.71e-08, + "cholmondeley": 8.71e-08, + "chora": 8.71e-08, + "chordal": 8.71e-08, + "chromophore": 8.71e-08, + "cibola": 8.71e-08, + "cirillo": 8.71e-08, + "clairvaux": 8.71e-08, + "clearcut": 8.71e-08, + "clefts": 8.71e-08, + "clime": 8.71e-08, + "clipboards": 8.71e-08, + "clives": 8.71e-08, + "clube": 8.71e-08, + "cnas": 8.71e-08, + "coachmen": 8.71e-08, + "coagulate": 8.71e-08, + "coatesville": 8.71e-08, + "cocoanut": 8.71e-08, + "cognitions": 8.71e-08, + "colbie": 8.71e-08, + "collimated": 8.71e-08, + "colonie": 8.71e-08, + "coloradans": 8.71e-08, + "commentated": 8.71e-08, + "committe": 8.71e-08, + "condyle": 8.71e-08, + "connellsville": 8.71e-08, + "contractility": 8.71e-08, + "copyrightable": 8.71e-08, + "cordage": 8.71e-08, + "cose": 8.71e-08, + "cottingham": 8.71e-08, + "counterclaims": 8.71e-08, + "cowdery": 8.71e-08, + "crapshoot": 8.71e-08, + "cras": 8.71e-08, + "cratering": 8.71e-08, + "creativeness": 8.71e-08, + "cribb": 8.71e-08, + "criminological": 8.71e-08, + "cronos": 8.71e-08, + "crossbred": 8.71e-08, + "crosscut": 8.71e-08, + "crouton": 8.71e-08, + "crufts": 8.71e-08, + "cruncher": 8.71e-08, + "crystallise": 8.71e-08, + "cscs": 8.71e-08, + "curare": 8.71e-08, + "dagobah": 8.71e-08, + "dahir": 8.71e-08, + "darning": 8.71e-08, + "darrah": 8.71e-08, + "datable": 8.71e-08, + "dbase": 8.71e-08, + "dcb": 8.71e-08, + "dddd": 8.71e-08, + "deathwish": 8.71e-08, + "debriefed": 8.71e-08, + "deeks": 8.71e-08, + "deerskin": 8.71e-08, + "defecated": 8.71e-08, + "deists": 8.71e-08, + "deloittes": 8.71e-08, + "delphinium": 8.71e-08, + "demonised": 8.71e-08, + "denisov": 8.71e-08, + "deol": 8.71e-08, + "dereham": 8.71e-08, + "determiners": 8.71e-08, + "deutch": 8.71e-08, + "deventer": 8.71e-08, + "devgn": 8.71e-08, + "devotedly": 8.71e-08, + "dewberry": 8.71e-08, + "dianetics": 8.71e-08, + "dimms": 8.71e-08, + "diors": 8.71e-08, + "directeur": 8.71e-08, + "disconnections": 8.71e-08, + "disodium": 8.71e-08, + "disorient": 8.71e-08, + "dispossess": 8.71e-08, + "dissapear": 8.71e-08, + "distension": 8.71e-08, + "dlls": 8.71e-08, + "domingos": 8.71e-08, + "doni": 8.71e-08, + "dook": 8.71e-08, + "doormats": 8.71e-08, + "dorit": 8.71e-08, + "dragomir": 8.71e-08, + "dramatisation": 8.71e-08, + "drouet": 8.71e-08, + "droz": 8.71e-08, + "druce": 8.71e-08, + "drumhead": 8.71e-08, + "duas": 8.71e-08, + "duchesses": 8.71e-08, + "dueled": 8.71e-08, + "dugin": 8.71e-08, + "duguid": 8.71e-08, + "dumbness": 8.71e-08, + "duplicator": 8.71e-08, + "durance": 8.71e-08, + "durward": 8.71e-08, + "dweck": 8.71e-08, + "dysphoric": 8.71e-08, + "ebner": 8.71e-08, + "ecbs": 8.71e-08, + "eclairs": 8.71e-08, + "editorialized": 8.71e-08, + "edric": 8.71e-08, + "effrontery": 8.71e-08, + "eggert": 8.71e-08, + "egotist": 8.71e-08, + "egyptologists": 8.71e-08, + "eide": 8.71e-08, + "eigenvector": 8.71e-08, + "eightieth": 8.71e-08, + "eking": 8.71e-08, + "elastics": 8.71e-08, + "electronegativity": 8.71e-08, + "ellard": 8.71e-08, + "embouchure": 8.71e-08, + "emerita": 8.71e-08, + "emmit": 8.71e-08, + "emy": 8.71e-08, + "endnote": 8.71e-08, + "englishs": 8.71e-08, + "ensley": 8.71e-08, + "eor": 8.71e-08, + "equestrians": 8.71e-08, + "equivalences": 8.71e-08, + "ercole": 8.71e-08, + "erects": 8.71e-08, + "errington": 8.71e-08, + "espiritu": 8.71e-08, + "estabrook": 8.71e-08, + "estados": 8.71e-08, + "esthetician": 8.71e-08, + "etan": 8.71e-08, + "eucalypt": 8.71e-08, + "eveleigh": 8.71e-08, + "evenness": 8.71e-08, + "evolutionist": 8.71e-08, + "evos": 8.71e-08, + "excelent": 8.71e-08, + "exome": 8.71e-08, + "expr": 8.71e-08, + "extern": 8.71e-08, + "extracorporeal": 8.71e-08, + "fafnir": 8.71e-08, + "faggy": 8.71e-08, + "fami": 8.71e-08, + "fantine": 8.71e-08, + "farthings": 8.71e-08, + "fassbinder": 8.71e-08, + "ferdie": 8.71e-08, + "ferdy": 8.71e-08, + "fernandezs": 8.71e-08, + "festered": 8.71e-08, + "fincen": 8.71e-08, + "fingerstyle": 8.71e-08, + "finnegans": 6.46e-08, + "fiora": 8.71e-08, + "flaco": 8.71e-08, + "flanagans": 8.71e-08, + "floof": 8.71e-08, + "flounce": 8.71e-08, + "flowcharts": 8.71e-08, + "fnma": 8.71e-08, + "foreclosing": 8.71e-08, + "forestalled": 8.71e-08, + "foreveralone": 8.71e-08, + "fortissimo": 8.71e-08, + "francesa": 8.71e-08, + "frankens": 8.71e-08, + "fraserburgh": 8.71e-08, + "frears": 8.71e-08, + "freediving": 8.71e-08, + "friberg": 8.71e-08, + "frogman": 8.71e-08, + "frontbench": 8.71e-08, + "fugate": 8.71e-08, + "fujiko": 8.71e-08, + "functors": 8.71e-08, + "funnelled": 8.71e-08, + "fyffe": 8.71e-08, + "gadsby": 8.71e-08, + "galeano": 8.71e-08, + "gambetta": 8.71e-08, + "gameloft": 8.71e-08, + "gaulish": 8.71e-08, + "geils": 8.71e-08, + "gencon": 8.71e-08, + "generalizable": 8.71e-08, + "gengar": 8.71e-08, + "gensler": 8.71e-08, + "geomorphological": 8.71e-08, + "geophysicists": 8.71e-08, + "geppetto": 8.71e-08, + "gezi": 8.71e-08, + "ghostbuster": 8.71e-08, + "ghostwriting": 8.71e-08, + "giggity": 8.71e-08, + "gigis": 8.71e-08, + "giron": 8.71e-08, + "gironde": 8.71e-08, + "giverny": 8.71e-08, + "glaive": 8.71e-08, + "glenside": 8.71e-08, + "glistens": 8.71e-08, + "globemaster": 8.71e-08, + "glovebox": 8.71e-08, + "godhood": 8.71e-08, + "goliad": 8.71e-08, + "goot": 8.71e-08, + "gorgeousness": 8.71e-08, + "gost": 8.71e-08, + "goty": 8.71e-08, + "governorates": 8.71e-08, + "grabner": 8.71e-08, + "gracies": 8.71e-08, + "gravitates": 8.71e-08, + "grijalva": 8.71e-08, + "grimlock": 8.71e-08, + "groote": 8.71e-08, + "guestrooms": 8.71e-08, + "guileless": 8.71e-08, + "gund": 8.71e-08, + "gustavsson": 8.71e-08, + "gwg": 8.71e-08, + "hagerman": 8.71e-08, + "haggai": 8.71e-08, + "haggar": 8.71e-08, + "haki": 8.71e-08, + "halfhearted": 8.71e-08, + "hanbok": 8.71e-08, + "hanmer": 8.71e-08, + "hanneman": 8.71e-08, + "harappan": 8.71e-08, + "harbourside": 8.71e-08, + "hartog": 8.71e-08, + "harz": 8.71e-08, + "haskells": 8.71e-08, + "hdt": 8.71e-08, + "headrests": 8.71e-08, + "heatherton": 8.71e-08, + "heihachi": 8.71e-08, + "hellcats": 8.71e-08, + "herodias": 8.71e-08, + "herre": 8.71e-08, + "hetch": 8.71e-08, + "hinault": 8.71e-08, + "hitech": 8.71e-08, + "hkt": 8.71e-08, + "hlaing": 8.71e-08, + "hogmanay": 8.71e-08, + "hoho": 8.71e-08, + "hollaback": 8.71e-08, + "homestay": 8.71e-08, + "homesteader": 8.71e-08, + "horatius": 8.71e-08, + "horikoshi": 8.71e-08, + "hornes": 8.71e-08, + "hrothgar": 8.71e-08, + "hughton": 8.71e-08, + "humanness": 8.71e-08, + "iatrogenic": 8.71e-08, + "ibew": 8.71e-08, + "icsid": 8.71e-08, + "idolised": 8.71e-08, + "ifor": 8.71e-08, + "imbroglio": 8.71e-08, + "impatiens": 8.71e-08, + "impey": 8.71e-08, + "impiety": 8.71e-08, + "implacably": 8.71e-08, + "impotency": 8.71e-08, + "ingemar": 8.71e-08, + "ingrams": 5.62e-08, + "inp": 8.71e-08, + "inta": 8.71e-08, + "intell": 8.71e-08, + "interjects": 8.71e-08, + "interleaving": 8.71e-08, + "internationalized": 8.71e-08, + "interpretable": 8.71e-08, + "interspaces": 8.71e-08, + "intoxicate": 8.71e-08, + "intraperitoneal": 8.71e-08, + "irradiate": 8.71e-08, + "isolationists": 8.71e-08, + "izard": 8.71e-08, + "jacka": 8.71e-08, + "jacklin": 8.71e-08, + "jackrabbits": 8.71e-08, + "janssens": 8.71e-08, + "jass": 8.71e-08, + "jayhawk": 8.71e-08, + "jaynes": 8.71e-08, + "jdc": 8.71e-08, + "jehoshaphat": 8.71e-08, + "jemmy": 8.71e-08, + "jeremih": 8.71e-08, + "jerichos": 8.71e-08, + "jezreel": 8.71e-08, + "jimmi": 8.71e-08, + "jimmies": 8.71e-08, + "jinxing": 8.71e-08, + "jitney": 8.71e-08, + "jolo": 8.71e-08, + "joons": 8.71e-08, + "jovovich": 8.71e-08, + "jukeboxes": 8.71e-08, + "jz": 8.71e-08, + "kabobs": 8.71e-08, + "kamay": 8.71e-08, + "kanako": 8.71e-08, + "kander": 8.71e-08, + "kaneda": 8.71e-08, + "kannur": 8.71e-08, + "kansan": 8.71e-08, + "kapamilya": 8.71e-08, + "kassem": 8.71e-08, + "kast": 8.71e-08, + "kauri": 8.71e-08, + "kazimierz": 8.71e-08, + "keebler": 8.71e-08, + "keister": 8.71e-08, + "kela": 8.71e-08, + "kelpie": 8.71e-08, + "kelvingrove": 8.71e-08, + "kennebunkport": 8.71e-08, + "keratosis": 8.71e-08, + "kerridge": 8.71e-08, + "kersh": 8.71e-08, + "keshas": 8.71e-08, + "kewl": 8.71e-08, + "khrushchevs": 8.71e-08, + "kiana": 8.71e-08, + "kies": 8.71e-08, + "kievan": 8.71e-08, + "kilbourne": 8.71e-08, + "kinberg": 8.71e-08, + "kindler": 8.71e-08, + "kindnesses": 8.71e-08, + "kitching": 8.71e-08, + "klemm": 8.71e-08, + "korah": 8.71e-08, + "kord": 8.71e-08, + "kosciuszko": 8.71e-08, + "kosi": 8.71e-08, + "kotaro": 8.71e-08, + "kpd": 8.71e-08, + "kriti": 8.71e-08, + "ksm": 8.71e-08, + "ksr": 8.71e-08, + "ktv": 8.71e-08, + "kubler": 8.71e-08, + "kurgan": 8.71e-08, + "kurokawa": 8.71e-08, + "kyd": 8.71e-08, + "kygo": 8.71e-08, + "lacie": 8.71e-08, + "lagann": 8.71e-08, + "laggards": 8.71e-08, + "lamplight": 8.71e-08, + "lantos": 8.71e-08, + "lapwing": 8.71e-08, + "latium": 8.71e-08, + "laut": 8.71e-08, + "layovers": 8.71e-08, + "leakes": 8.71e-08, + "leav": 8.71e-08, + "legenda": 8.71e-08, + "lehtonen": 8.71e-08, + "lelo": 8.71e-08, + "lenka": 8.71e-08, + "letcher": 8.71e-08, + "lhota": 8.71e-08, + "libbed": 8.71e-08, + "libdem": 8.71e-08, + "libres": 8.71e-08, + "licit": 8.71e-08, + "liebermann": 8.71e-08, + "lifehacker": 8.71e-08, + "lightship": 8.71e-08, + "limewire": 8.71e-08, + "lindblom": 8.71e-08, + "lindeman": 8.71e-08, + "linds": 8.71e-08, + "lior": 8.71e-08, + "liwa": 8.71e-08, + "lizbeth": 8.71e-08, + "llanos": 8.71e-08, + "lockie": 8.71e-08, + "lockridge": 8.71e-08, + "locs": 8.71e-08, + "lorenzen": 8.71e-08, + "louella": 8.71e-08, + "lowermost": 8.71e-08, + "lucozade": 8.71e-08, + "lukens": 8.71e-08, + "lumpectomy": 8.71e-08, + "luol": 8.71e-08, + "lyase": 8.71e-08, + "maad": 8.71e-08, + "macqueen": 8.71e-08, + "magne": 8.71e-08, + "magnesite": 8.71e-08, + "magno": 8.71e-08, + "malawis": 8.71e-08, + "mamamoo": 8.71e-08, + "manag": 8.71e-08, + "maned": 8.71e-08, + "manhasset": 8.71e-08, + "manlius": 8.71e-08, + "manquillo": 8.71e-08, + "mantell": 8.71e-08, + "marathoners": 8.71e-08, + "mariela": 8.71e-08, + "marigny": 8.71e-08, + "marineland": 8.71e-08, + "markakis": 8.71e-08, + "marmosets": 8.71e-08, + "martello": 8.71e-08, + "marzano": 8.71e-08, + "massaro": 8.71e-08, + "masturbatory": 8.71e-08, + "matchs": 8.71e-08, + "matchmakers": 8.71e-08, + "matheus": 8.71e-08, + "matsushima": 8.71e-08, + "mauthausen": 8.71e-08, + "mazie": 8.71e-08, + "mcbean": 8.71e-08, + "mccourty": 8.71e-08, + "mcgough": 8.71e-08, + "mcgruder": 8.71e-08, + "mcguiness": 8.71e-08, + "mcguinty": 8.71e-08, + "mcguirk": 8.71e-08, + "mcmahan": 8.71e-08, + "mcwilliam": 8.71e-08, + "meakin": 8.71e-08, + "melaleuca": 8.71e-08, + "melas": 8.71e-08, + "melksham": 8.71e-08, + "mellifera": 8.71e-08, + "melodie": 8.71e-08, + "melter": 8.71e-08, + "melwood": 8.71e-08, + "mendis": 8.71e-08, + "mendozas": 8.71e-08, + "merde": 8.71e-08, + "merleau": 8.71e-08, + "metabolisms": 8.71e-08, + "metellus": 8.71e-08, + "methodius": 8.71e-08, + "microdermabrasion": 8.71e-08, + "midlevel": 8.71e-08, + "mido": 8.71e-08, + "mildenhall": 8.71e-08, + "minicamp": 8.71e-08, + "mirpur": 8.71e-08, + "misclassified": 8.71e-08, + "mollis": 8.71e-08, + "momen": 8.71e-08, + "monkton": 8.71e-08, + "monocoque": 8.71e-08, + "monopolised": 8.71e-08, + "moorabbin": 8.71e-08, + "morais": 8.71e-08, + "moroz": 8.71e-08, + "motherlode": 8.71e-08, + "movimiento": 8.71e-08, + "mpw": 8.71e-08, + "mrn": 8.71e-08, + "mudding": 8.71e-08, + "muenster": 8.71e-08, + "muirs": 8.71e-08, + "multiplications": 8.71e-08, + "multitrack": 8.71e-08, + "mulvihill": 8.71e-08, + "muralitharan": 8.71e-08, + "murda": 8.71e-08, + "murtha": 8.71e-08, + "mychal": 8.71e-08, + "myke": 8.71e-08, + "nachrichten": 8.71e-08, + "nall": 8.71e-08, + "narang": 8.71e-08, + "narcs": 8.71e-08, + "ncert": 8.71e-08, + "neelix": 8.71e-08, + "neighing": 8.71e-08, + "neopets": 8.71e-08, + "nevus": 8.71e-08, + "nibiru": 8.71e-08, + "nichiren": 8.71e-08, + "nicolay": 8.71e-08, + "nihilo": 8.71e-08, + "nitschke": 8.71e-08, + "nkandla": 8.71e-08, + "nonesuch": 8.71e-08, + "nonmembers": 8.71e-08, + "nonsmoking": 8.71e-08, + "nooses": 8.71e-08, + "nootropic": 8.71e-08, + "nort": 8.71e-08, + "noster": 8.71e-08, + "nostri": 8.71e-08, + "nottinghams": 8.71e-08, + "novelistic": 8.71e-08, + "npf": 8.71e-08, + "npower": 8.71e-08, + "nuba": 8.71e-08, + "nubians": 8.71e-08, + "nuits": 8.71e-08, + "nyeri": 8.71e-08, + "nyheter": 8.71e-08, + "ocasey": 8.71e-08, + "oconor": 8.71e-08, + "oriley": 8.71e-08, + "oaken": 8.71e-08, + "oboes": 8.71e-08, + "ocado": 8.71e-08, + "occultists": 8.71e-08, + "ockham": 8.71e-08, + "ocm": 8.71e-08, + "ohmygod": 8.71e-08, + "omahas": 8.71e-08, + "omron": 8.71e-08, + "onos": 8.71e-08, + "orientate": 8.71e-08, + "orloff": 8.71e-08, + "osgoode": 8.71e-08, + "otamendi": 8.71e-08, + "outliving": 8.71e-08, + "overfeeding": 8.71e-08, + "overheats": 8.71e-08, + "oversleep": 8.71e-08, + "paden": 8.71e-08, + "palaeontologists": 8.71e-08, + "pallone": 8.71e-08, + "papayas": 8.71e-08, + "papworth": 8.71e-08, + "parasitoid": 8.71e-08, + "patersons": 8.71e-08, + "patrimonial": 8.71e-08, + "patters": 8.71e-08, + "pavlovs": 8.71e-08, + "pawl": 8.71e-08, + "pegu": 8.71e-08, + "peni": 8.71e-08, + "percs": 8.71e-08, + "pesaro": 8.71e-08, + "petkovic": 8.71e-08, + "phantasmagoria": 8.71e-08, + "philco": 8.71e-08, + "pickguard": 8.71e-08, + "pieper": 8.71e-08, + "piggie": 8.71e-08, + "pilotage": 8.71e-08, + "pingu": 8.71e-08, + "pinyon": 8.71e-08, + "pipettes": 8.71e-08, + "pipo": 8.71e-08, + "pittsford": 8.71e-08, + "pittston": 8.71e-08, + "pizzerias": 8.71e-08, + "plasticizers": 8.71e-08, + "plateaux": 8.71e-08, + "pleather": 8.71e-08, + "polyacrylamide": 8.71e-08, + "polyakov": 8.71e-08, + "pompeius": 8.71e-08, + "pontine": 8.71e-08, + "poplin": 8.71e-08, + "popstars": 8.71e-08, + "porygon": 8.71e-08, + "pospisil": 8.71e-08, + "postie": 8.71e-08, + "postion": 8.71e-08, + "postive": 8.71e-08, + "postprandial": 8.71e-08, + "potentate": 8.71e-08, + "poussey": 8.71e-08, + "prediabetes": 8.71e-08, + "prehospital": 8.71e-08, + "presentment": 8.71e-08, + "preservers": 8.71e-08, + "preterite": 8.71e-08, + "principes": 8.71e-08, + "procures": 8.71e-08, + "productiveness": 8.71e-08, + "prokop": 8.71e-08, + "protagoras": 8.71e-08, + "pterosaur": 8.71e-08, + "purdues": 8.71e-08, + "qam": 8.71e-08, + "qbr": 8.71e-08, + "quaaludes": 8.71e-08, + "quadrate": 8.71e-08, + "quanto": 8.71e-08, + "quatermass": 8.71e-08, + "quietus": 8.71e-08, + "quilters": 8.71e-08, + "quinces": 8.71e-08, + "radiographer": 8.71e-08, + "raif": 8.71e-08, + "rajshahi": 8.71e-08, + "ramification": 8.71e-08, + "rancorous": 8.71e-08, + "rarified": 8.71e-08, + "rathod": 8.71e-08, + "ravenel": 8.71e-08, + "rdbms": 8.71e-08, + "realizable": 8.71e-08, + "rearrested": 8.71e-08, + "recaptures": 8.71e-08, + "recessionary": 8.71e-08, + "recommender": 8.71e-08, + "redback": 8.71e-08, + "redhawks": 8.71e-08, + "redwings": 8.71e-08, + "reif": 8.71e-08, + "remap": 8.71e-08, + "remarrying": 8.71e-08, + "remem": 8.71e-08, + "remissions": 8.71e-08, + "rept": 8.71e-08, + "resturant": 8.71e-08, + "rhyno": 8.71e-08, + "righthand": 8.71e-08, + "rir": 8.71e-08, + "rishis": 8.71e-08, + "risible": 8.71e-08, + "ritchey": 8.71e-08, + "rjr": 8.71e-08, + "robbs": 8.71e-08, + "robotically": 8.71e-08, + "rochambeau": 8.71e-08, + "rockettes": 8.71e-08, + "rodas": 8.71e-08, + "rodrik": 8.71e-08, + "roundworms": 8.71e-08, + "rouser": 8.71e-08, + "roxette": 8.71e-08, + "rsn": 8.71e-08, + "rtk": 8.71e-08, + "runout": 8.71e-08, + "ryall": 8.71e-08, + "spose": 6.17e-08, + "saam": 8.71e-08, + "sabella": 8.71e-08, + "salazars": 8.71e-08, + "samurais": 5.89e-08, + "sandbagging": 8.71e-08, + "sandblasting": 8.71e-08, + "sasi": 8.71e-08, + "satis": 8.71e-08, + "schaff": 8.71e-08, + "schedulers": 8.71e-08, + "scoots": 8.71e-08, + "scribbler": 8.71e-08, + "sculpin": 8.71e-08, + "scums": 8.71e-08, + "scythia": 8.71e-08, + "seenu": 8.71e-08, + "seidler": 8.71e-08, + "seing": 8.71e-08, + "seismograph": 8.71e-08, + "seismologists": 8.71e-08, + "semiramis": 8.71e-08, + "seperation": 8.71e-08, + "serre": 8.71e-08, + "sexe": 8.71e-08, + "shackelford": 8.71e-08, + "shahidi": 8.71e-08, + "shantae": 8.71e-08, + "sharecropper": 8.71e-08, + "shauns": 8.71e-08, + "shaz": 8.71e-08, + "sheas": 8.71e-08, + "shein": 8.71e-08, + "shellys": 8.71e-08, + "shemesh": 8.71e-08, + "shinra": 8.71e-08, + "shizzle": 8.71e-08, + "shuja": 8.71e-08, + "shushed": 8.71e-08, + "sidgwick": 8.71e-08, + "siegels": 8.71e-08, + "sigue": 8.71e-08, + "simic": 8.71e-08, + "sitdown": 8.71e-08, + "sitton": 8.71e-08, + "sizer": 8.71e-08, + "slipshod": 8.71e-08, + "slocombe": 8.71e-08, + "sluggishly": 8.71e-08, + "slurps": 8.71e-08, + "slushie": 8.71e-08, + "smpte": 8.71e-08, + "snoot": 8.71e-08, + "snuffy": 8.71e-08, + "sobek": 8.71e-08, + "sociologically": 8.71e-08, + "soffit": 8.71e-08, + "soit": 8.71e-08, + "solanki": 8.71e-08, + "sommeliers": 8.71e-08, + "sondheims": 8.71e-08, + "southerland": 8.71e-08, + "souvlaki": 8.71e-08, + "spacings": 8.71e-08, + "spectors": 8.71e-08, + "speicher": 8.71e-08, + "speights": 8.71e-08, + "sprach": 8.71e-08, + "sprenger": 8.71e-08, + "squeezy": 8.71e-08, + "squelching": 8.71e-08, + "stadion": 8.71e-08, + "stainer": 8.71e-08, + "stanwell": 8.71e-08, + "starless": 8.71e-08, + "stearn": 8.71e-08, + "stegner": 8.71e-08, + "steinhardt": 8.71e-08, + "stereophonic": 8.71e-08, + "stevenss": 8.71e-08, + "stieg": 8.71e-08, + "stifel": 8.71e-08, + "storyboarding": 8.71e-08, + "stranglers": 8.71e-08, + "strood": 8.71e-08, + "stubb": 8.71e-08, + "stucky": 8.71e-08, + "stuffers": 8.71e-08, + "subnets": 8.71e-08, + "suckled": 8.71e-08, + "sune": 8.71e-08, + "supercilious": 8.71e-08, + "supergiant": 8.71e-08, + "supersonics": 8.71e-08, + "supervalu": 8.71e-08, + "supriya": 8.71e-08, + "swabian": 8.71e-08, + "swatter": 8.71e-08, + "tabulate": 8.71e-08, + "taemin": 8.71e-08, + "tamely": 8.71e-08, + "tamerlan": 8.71e-08, + "tammys": 8.71e-08, + "tanakh": 8.71e-08, + "tann": 8.71e-08, + "tarkin": 8.71e-08, + "tarlac": 8.71e-08, + "telecasting": 8.71e-08, + "templeman": 8.71e-08, + "terrans": 8.71e-08, + "tersely": 8.71e-08, + "tetragonal": 8.71e-08, + "thermophilic": 8.71e-08, + "thero": 8.71e-08, + "thielen": 8.71e-08, + "thirsts": 8.71e-08, + "timbo": 8.71e-08, + "timbres": 8.71e-08, + "tinseltown": 8.71e-08, + "tomboyish": 8.71e-08, + "tomie": 8.71e-08, + "tonsure": 8.71e-08, + "toric": 8.71e-08, + "torquemada": 8.71e-08, + "transaminase": 8.71e-08, + "transect": 8.71e-08, + "transportations": 8.71e-08, + "treadway": 8.71e-08, + "trevorrow": 8.71e-08, + "tricep": 8.71e-08, + "tricksy": 8.71e-08, + "trocadero": 8.71e-08, + "trouts": 6.31e-08, + "troutman": 8.71e-08, + "tsarina": 8.71e-08, + "tsunade": 8.71e-08, + "ttv": 8.71e-08, + "tuckerman": 8.71e-08, + "tulley": 8.71e-08, + "tumbledown": 8.71e-08, + "turfed": 8.71e-08, + "turreted": 8.71e-08, + "twr": 8.71e-08, + "ufs": 8.71e-08, + "uht": 8.71e-08, + "ukelele": 8.71e-08, + "umbral": 8.71e-08, + "unaligned": 8.71e-08, + "unbothered": 8.71e-08, + "uncertified": 8.71e-08, + "uncrowned": 8.71e-08, + "underpasses": 8.71e-08, + "unitarianism": 8.71e-08, + "unpronounceable": 8.71e-08, + "unrolling": 8.71e-08, + "unsubscribing": 8.71e-08, + "upenn": 8.71e-08, + "uppercuts": 8.71e-08, + "upu": 8.71e-08, + "uto": 8.71e-08, + "uvm": 8.71e-08, + "vab": 8.71e-08, + "vachon": 8.71e-08, + "vacuole": 8.71e-08, + "vaidya": 8.71e-08, + "valeriy": 8.71e-08, + "vanilli": 8.71e-08, + "vap": 8.71e-08, + "varese": 8.71e-08, + "varg": 8.71e-08, + "vasconcelos": 8.71e-08, + "vasile": 8.71e-08, + "vaw": 8.71e-08, + "vawa": 8.71e-08, + "vectra": 8.71e-08, + "verre": 8.71e-08, + "victrola": 8.71e-08, + "vidals": 8.71e-08, + "vij": 8.71e-08, + "visco": 8.71e-08, + "vitas": 6.03e-08, + "viterbi": 8.71e-08, + "vlads": 8.71e-08, + "vldl": 8.71e-08, + "vorm": 8.71e-08, + "vpl": 8.71e-08, + "vulvar": 8.71e-08, + "vuvuzela": 8.71e-08, + "vyvyan": 8.71e-08, + "wabbit": 8.71e-08, + "wadham": 8.71e-08, + "wakeful": 8.71e-08, + "wallerstein": 8.71e-08, + "warred": 8.71e-08, + "watteau": 8.71e-08, + "waxahachie": 8.71e-08, + "weathermen": 8.71e-08, + "webmail": 8.71e-08, + "welf": 8.71e-08, + "westmead": 8.71e-08, + "whirlwinds": 8.71e-08, + "whishaw": 8.71e-08, + "whitener": 8.71e-08, + "willets": 8.71e-08, + "winkel": 8.71e-08, + "witticisms": 8.71e-08, + "wivenhoe": 8.71e-08, + "wolds": 8.71e-08, + "womaniser": 8.71e-08, + "woodcarving": 8.71e-08, + "woodgate": 8.71e-08, + "woolrich": 8.71e-08, + "xbone": 8.71e-08, + "xenomorph": 8.71e-08, + "yal": 8.71e-08, + "yalla": 8.71e-08, + "yaniv": 8.71e-08, + "yasmeen": 8.71e-08, + "yeasty": 8.71e-08, + "yukimura": 8.71e-08, + "yunis": 8.71e-08, + "zafer": 8.71e-08, + "zapatistas": 8.71e-08, + "zarb": 8.71e-08, + "zaya": 8.71e-08, + "zeolites": 8.71e-08, + "zhous": 8.71e-08, + "zuber": 8.71e-08, + "aacr": 8.51e-08, + "abdalla": 8.51e-08, + "aberdeens": 8.51e-08, + "abx": 8.51e-08, + "activisions": 8.51e-08, + "adaptively": 8.51e-08, + "addr": 8.51e-08, + "ader": 8.51e-08, + "adige": 8.51e-08, + "adrenals": 8.51e-08, + "adrs": 8.51e-08, + "aforethought": 8.51e-08, + "agronomists": 8.51e-08, + "agustina": 8.51e-08, + "ahura": 8.51e-08, + "ahwaz": 8.51e-08, + "alderley": 8.51e-08, + "alecia": 8.51e-08, + "aleem": 8.51e-08, + "alexandrine": 8.51e-08, + "alexius": 8.51e-08, + "algeciras": 8.51e-08, + "algorithmically": 8.51e-08, + "alpheus": 8.51e-08, + "althorp": 8.51e-08, + "ameliorating": 8.51e-08, + "aminobutyric": 8.51e-08, + "amravati": 8.51e-08, + "amtraks": 8.51e-08, + "angelinas": 8.51e-08, + "angewandte": 8.51e-08, + "anglicised": 8.51e-08, + "anhedonia": 8.51e-08, + "anke": 8.51e-08, + "ankur": 8.51e-08, + "anonymised": 8.51e-08, + "ansah": 8.51e-08, + "anthropic": 8.51e-08, + "antiperspirant": 8.51e-08, + "antonino": 8.51e-08, + "antwan": 8.51e-08, + "apnoea": 8.51e-08, + "appaloosa": 8.51e-08, + "appreciatively": 8.51e-08, + "apsa": 8.51e-08, + "arana": 8.51e-08, + "archdeaconry": 8.51e-08, + "architrave": 8.51e-08, + "areca": 8.51e-08, + "asbestosis": 8.51e-08, + "ashtanga": 8.51e-08, + "asla": 8.51e-08, + "asmussen": 8.51e-08, + "asparagine": 8.51e-08, + "asters": 8.51e-08, + "asynchronously": 8.51e-08, + "athleta": 8.51e-08, + "atorvastatin": 8.51e-08, + "attendings": 8.51e-08, + "attractors": 8.51e-08, + "auba": 8.51e-08, + "auchinleck": 8.51e-08, + "automorphism": 8.51e-08, + "avalos": 8.51e-08, + "aveeno": 8.51e-08, + "avianca": 8.51e-08, + "aviles": 8.51e-08, + "avion": 8.51e-08, + "axion": 8.51e-08, + "babbles": 8.51e-08, + "backlighting": 8.51e-08, + "backlot": 8.51e-08, + "backrest": 8.51e-08, + "badan": 8.51e-08, + "baig": 8.51e-08, + "bankai": 8.51e-08, + "banksys": 8.51e-08, + "bant": 8.51e-08, + "baptistery": 8.51e-08, + "barford": 8.51e-08, + "barnesville": 8.51e-08, + "barries": 8.51e-08, + "bashi": 8.51e-08, + "bathymetry": 8.51e-08, + "baughman": 8.51e-08, + "bayar": 8.51e-08, + "bdb": 8.51e-08, + "beare": 8.51e-08, + "behrman": 8.51e-08, + "beitrag": 8.51e-08, + "bekaa": 8.51e-08, + "bekir": 8.51e-08, + "belson": 8.51e-08, + "belters": 8.51e-08, + "benchley": 8.51e-08, + "benguet": 8.51e-08, + "beutler": 8.51e-08, + "bft": 8.51e-08, + "bienvenue": 8.51e-08, + "bigbang": 8.51e-08, + "bilic": 8.51e-08, + "billies": 5.37e-08, + "bioavailable": 8.51e-08, + "biocompatibility": 8.51e-08, + "biplanes": 8.51e-08, + "birdshot": 8.51e-08, + "blasphemies": 8.51e-08, + "bld": 8.51e-08, + "blighting": 8.51e-08, + "blonder": 8.51e-08, + "bloodstain": 8.51e-08, + "bluesman": 8.51e-08, + "bogard": 8.51e-08, + "bombe": 8.51e-08, + "boneheaded": 8.51e-08, + "boppers": 8.51e-08, + "boreas": 8.51e-08, + "botero": 8.51e-08, + "bracco": 8.51e-08, + "breastbone": 8.51e-08, + "brimmer": 8.51e-08, + "brooded": 8.51e-08, + "brownings": 8.51e-08, + "broxton": 8.51e-08, + "bullis": 8.51e-08, + "bulwarks": 8.51e-08, + "bunds": 8.51e-08, + "bunkering": 8.51e-08, + "bunnell": 8.51e-08, + "burda": 8.51e-08, + "burgundians": 8.51e-08, + "burress": 8.51e-08, + "burthen": 8.51e-08, + "bushmeat": 8.51e-08, + "bushmills": 8.51e-08, + "buta": 8.51e-08, + "byblos": 8.51e-08, + "byer": 8.51e-08, + "cachexia": 8.51e-08, + "caddis": 8.51e-08, + "cadel": 8.51e-08, + "cadwalader": 8.51e-08, + "caixa": 8.51e-08, + "calexico": 8.51e-08, + "calleja": 8.51e-08, + "canford": 8.51e-08, + "canvey": 8.51e-08, + "capilano": 8.51e-08, + "capriciously": 8.51e-08, + "cardew": 8.51e-08, + "carreras": 8.51e-08, + "carshalton": 8.51e-08, + "casal": 8.51e-08, + "castries": 8.51e-08, + "catarrh": 8.51e-08, + "catechesis": 8.51e-08, + "catholique": 8.51e-08, + "catron": 8.51e-08, + "cattleya": 8.51e-08, + "cauda": 8.51e-08, + "cavalieri": 8.51e-08, + "cdrom": 8.51e-08, + "certifiably": 8.51e-08, + "cerveza": 8.51e-08, + "cesspools": 8.51e-08, + "cfls": 6.61e-08, + "cfnm": 8.51e-08, + "cftr": 8.51e-08, + "cgd": 8.51e-08, + "chabert": 8.51e-08, + "chadha": 8.51e-08, + "chasen": 8.51e-08, + "chatroulette": 8.51e-08, + "cheema": 8.51e-08, + "chenault": 8.51e-08, + "chevys": 6.31e-08, + "chilcott": 8.51e-08, + "chincoteague": 8.51e-08, + "chiseling": 8.51e-08, + "chouteau": 8.51e-08, + "christological": 8.51e-08, + "chutneys": 8.51e-08, + "cics": 8.51e-08, + "cik": 8.51e-08, + "cinemascope": 8.51e-08, + "clarithromycin": 8.51e-08, + "claritin": 8.51e-08, + "clints": 8.51e-08, + "clocktower": 8.51e-08, + "clothiers": 8.51e-08, + "coarseness": 8.51e-08, + "cocina": 8.51e-08, + "codicil": 8.51e-08, + "coggeshall": 8.51e-08, + "colicky": 8.51e-08, + "colonisers": 8.51e-08, + "colyer": 8.51e-08, + "comparators": 8.51e-08, + "conans": 8.51e-08, + "concannon": 8.51e-08, + "concealers": 8.51e-08, + "concious": 8.51e-08, + "congeners": 8.51e-08, + "congregationalist": 8.51e-08, + "conjoint": 8.51e-08, + "conkling": 8.51e-08, + "contestation": 8.51e-08, + "contextualizing": 8.51e-08, + "cookman": 8.51e-08, + "cooktop": 8.51e-08, + "cooky": 8.51e-08, + "coorg": 8.51e-08, + "cordate": 8.51e-08, + "cordiality": 8.51e-08, + "cosentino": 8.51e-08, + "costain": 8.51e-08, + "coulton": 8.51e-08, + "crandon": 8.51e-08, + "craton": 8.51e-08, + "crieff": 8.51e-08, + "crimmins": 8.51e-08, + "crocks": 8.51e-08, + "crosshair": 8.51e-08, + "cruder": 8.51e-08, + "crystallizing": 8.51e-08, + "ctt": 8.51e-08, + "cuirass": 8.51e-08, + "cupolas": 8.51e-08, + "cwu": 8.51e-08, + "daario": 8.51e-08, + "daeng": 8.51e-08, + "dalgety": 8.51e-08, + "dallass": 8.51e-08, + "damaris": 8.51e-08, + "danlos": 8.51e-08, + "danubian": 8.51e-08, + "dargis": 8.51e-08, + "darron": 8.51e-08, + "daylesford": 8.51e-08, + "dcis": 8.51e-08, + "degreaser": 8.51e-08, + "dehli": 8.51e-08, + "demoing": 8.51e-08, + "depuy": 8.51e-08, + "devyn": 8.51e-08, + "dgm": 8.51e-08, + "digged": 8.51e-08, + "diii": 8.51e-08, + "dimarco": 8.51e-08, + "dimwits": 8.51e-08, + "dinkum": 8.51e-08, + "diorite": 8.51e-08, + "dirtied": 8.51e-08, + "discretization": 8.51e-08, + "disenfranchising": 8.51e-08, + "dismantlement": 8.51e-08, + "dissimilarity": 8.51e-08, + "dkt": 8.51e-08, + "documenta": 8.51e-08, + "dogan": 8.51e-08, + "dogen": 8.51e-08, + "doges": 8.51e-08, + "dolorosa": 8.51e-08, + "doshi": 8.51e-08, + "dosnt": 8.51e-08, + "doughboys": 8.51e-08, + "dragonair": 8.51e-08, + "draughty": 8.51e-08, + "drood": 8.51e-08, + "druidic": 8.51e-08, + "drumm": 8.51e-08, + "drv": 8.51e-08, + "duffin": 8.51e-08, + "dunga": 8.51e-08, + "earpods": 8.51e-08, + "earthiness": 8.51e-08, + "eberhart": 8.51e-08, + "ebp": 8.51e-08, + "ecosoc": 8.51e-08, + "ecuadorean": 8.51e-08, + "eddys": 8.51e-08, + "editio": 8.51e-08, + "egp": 8.51e-08, + "elbit": 8.51e-08, + "electroacoustic": 8.51e-08, + "eleusis": 8.51e-08, + "elucidates": 8.51e-08, + "emigres": 8.51e-08, + "emirs": 6.76e-08, + "emulsifiers": 8.51e-08, + "entrenchments": 8.51e-08, + "eot": 8.51e-08, + "epiphanius": 8.51e-08, + "eset": 8.51e-08, + "esquivel": 8.51e-08, + "eufaula": 8.51e-08, + "eugenius": 8.51e-08, + "euphemia": 8.51e-08, + "evacuee": 8.51e-08, + "eventuated": 8.51e-08, + "everypony": 8.51e-08, + "exco": 8.51e-08, + "experimentalists": 8.51e-08, + "exploitive": 8.51e-08, + "extortionist": 8.51e-08, + "exultation": 8.51e-08, + "eyepieces": 8.51e-08, + "eyestrain": 8.51e-08, + "facey": 8.51e-08, + "falsies": 8.51e-08, + "famagusta": 8.51e-08, + "fanmade": 8.51e-08, + "faraz": 8.51e-08, + "farmsteads": 8.51e-08, + "feelz": 8.51e-08, + "feinsteins": 8.51e-08, + "feldmann": 8.51e-08, + "fenster": 8.51e-08, + "fertilise": 8.51e-08, + "ffh": 8.51e-08, + "ffo": 8.51e-08, + "filey": 8.51e-08, + "finalizes": 8.51e-08, + "firebombs": 8.51e-08, + "fistfights": 8.51e-08, + "flatbreads": 8.51e-08, + "flic": 8.51e-08, + "flightaware": 8.51e-08, + "flom": 8.51e-08, + "floriana": 8.51e-08, + "florrie": 8.51e-08, + "fluconazole": 8.51e-08, + "fluidic": 8.51e-08, + "flyleaf": 8.51e-08, + "fodmap": 8.51e-08, + "fontes": 8.51e-08, + "foos": 8.51e-08, + "formalise": 8.51e-08, + "foun": 8.51e-08, + "fraga": 8.51e-08, + "frakes": 8.51e-08, + "freeboard": 8.51e-08, + "freeh": 8.51e-08, + "freestyling": 8.51e-08, + "freys": 8.51e-08, + "fricker": 8.51e-08, + "friending": 8.51e-08, + "fulvous": 8.51e-08, + "furnitures": 8.51e-08, + "gade": 8.51e-08, + "gair": 8.51e-08, + "galaxie": 8.51e-08, + "galsworthy": 8.51e-08, + "garnishing": 8.51e-08, + "gaslamp": 8.51e-08, + "gately": 8.51e-08, + "gaudens": 8.51e-08, + "gaurd": 8.51e-08, + "gavriel": 8.51e-08, + "geldings": 8.51e-08, + "gertz": 8.51e-08, + "gfci": 8.51e-08, + "gfk": 8.51e-08, + "gheorghe": 8.51e-08, + "gibraltars": 8.51e-08, + "giese": 8.51e-08, + "glencairn": 8.51e-08, + "gmu": 8.51e-08, + "godards": 8.51e-08, + "golders": 8.51e-08, + "golic": 8.51e-08, + "goofiness": 8.51e-08, + "goosey": 8.51e-08, + "gounod": 8.51e-08, + "grabowski": 8.51e-08, + "graeber": 8.51e-08, + "grammatik": 8.51e-08, + "granollers": 8.51e-08, + "grapheme": 8.51e-08, + "greenford": 8.51e-08, + "greenlandic": 8.51e-08, + "greenman": 8.51e-08, + "greenup": 8.51e-08, + "grippers": 8.51e-08, + "groen": 8.51e-08, + "groomsman": 8.51e-08, + "grou": 8.51e-08, + "grue": 8.51e-08, + "gtm": 8.51e-08, + "guideway": 8.51e-08, + "gurr": 8.51e-08, + "guyanas": 8.51e-08, + "guzzi": 8.51e-08, + "gwilym": 8.51e-08, + "habitus": 8.51e-08, + "hacketts": 8.51e-08, + "hadleys": 8.51e-08, + "haemophilus": 8.51e-08, + "hafta": 8.51e-08, + "hagi": 8.51e-08, + "halbach": 8.51e-08, + "haldimand": 8.51e-08, + "halper": 8.51e-08, + "handbills": 8.51e-08, + "hardiman": 8.51e-08, + "harrassing": 8.51e-08, + "hashimotos": 8.51e-08, + "hatay": 8.51e-08, + "hatchett": 8.51e-08, + "hausmann": 8.51e-08, + "hawala": 8.51e-08, + "haymakers": 8.51e-08, + "haymon": 8.51e-08, + "hecs": 8.51e-08, + "hehehehe": 8.51e-08, + "hematuria": 8.51e-08, + "hendley": 8.51e-08, + "herzogs": 8.51e-08, + "hesters": 8.51e-08, + "hhc": 8.51e-08, + "hierro": 8.51e-08, + "hild": 8.51e-08, + "hildegarde": 8.51e-08, + "hirayama": 8.51e-08, + "hiver": 8.51e-08, + "hizballah": 8.51e-08, + "hochschild": 8.51e-08, + "hogged": 8.51e-08, + "holdall": 8.51e-08, + "hollar": 8.51e-08, + "hollen": 8.51e-08, + "hondurans": 8.51e-08, + "honorifics": 8.51e-08, + "hopkinsville": 8.51e-08, + "hornier": 8.51e-08, + "horovitz": 8.51e-08, + "hosier": 8.51e-08, + "hotkey": 8.51e-08, + "hotting": 8.51e-08, + "hpl": 8.51e-08, + "hsiung": 8.51e-08, + "hudl": 8.51e-08, + "huguette": 8.51e-08, + "humira": 8.51e-08, + "hunstanton": 8.51e-08, + "hutter": 8.51e-08, + "hydroxyapatite": 8.51e-08, + "hymnals": 8.51e-08, + "hypebeast": 8.51e-08, + "hypermedia": 8.51e-08, + "icam": 8.51e-08, + "icymi": 8.51e-08, + "iggys": 8.51e-08, + "illyrian": 8.51e-08, + "imhoff": 8.51e-08, + "impassively": 8.51e-08, + "impoverish": 8.51e-08, + "imrie": 8.51e-08, + "inclusively": 8.51e-08, + "incomprehensibly": 8.51e-08, + "industrializing": 8.51e-08, + "ingests": 8.51e-08, + "interac": 8.51e-08, + "interdependencies": 8.51e-08, + "interdicted": 8.51e-08, + "interethnic": 8.51e-08, + "interferometers": 8.51e-08, + "interlocks": 8.51e-08, + "inviolate": 8.51e-08, + "inzaghi": 8.51e-08, + "irgun": 8.51e-08, + "ishaan": 8.51e-08, + "isoleucine": 8.51e-08, + "itched": 8.51e-08, + "iupac": 8.51e-08, + "iwork": 8.51e-08, + "jackknife": 8.51e-08, + "jacquet": 8.51e-08, + "jaes": 8.51e-08, + "jaffer": 8.51e-08, + "jambs": 8.51e-08, + "jantar": 8.51e-08, + "japon": 8.51e-08, + "jesting": 8.51e-08, + "jev": 8.51e-08, + "jlp": 8.51e-08, + "jogo": 8.51e-08, + "johanne": 8.51e-08, + "jonbenet": 8.51e-08, + "josies": 8.51e-08, + "josue": 8.51e-08, + "jub": 8.51e-08, + "juggs": 8.51e-08, + "julliard": 8.51e-08, + "junger": 8.51e-08, + "jusuf": 8.51e-08, + "jvp": 8.51e-08, + "kaepernicks": 8.51e-08, + "kake": 8.51e-08, + "kalki": 8.51e-08, + "kamath": 8.51e-08, + "kameda": 8.51e-08, + "kamila": 8.51e-08, + "kapadia": 8.51e-08, + "kariya": 8.51e-08, + "karnal": 8.51e-08, + "kavi": 8.51e-08, + "kazak": 8.51e-08, + "kca": 8.51e-08, + "kennebunk": 8.51e-08, + "kerim": 8.51e-08, + "kfor": 8.51e-08, + "khara": 8.51e-08, + "kilner": 8.51e-08, + "kimbo": 8.51e-08, + "kingdome": 8.51e-08, + "kips": 8.51e-08, + "kisco": 8.51e-08, + "kisha": 8.51e-08, + "kiso": 8.51e-08, + "kleiman": 8.51e-08, + "klim": 8.51e-08, + "knockdowns": 8.51e-08, + "knowledges": 8.51e-08, + "koerner": 8.51e-08, + "koranic": 8.51e-08, + "kraal": 8.51e-08, + "krang": 8.51e-08, + "krautrock": 8.51e-08, + "krays": 8.51e-08, + "kruk": 8.51e-08, + "kulak": 8.51e-08, + "kyou": 8.51e-08, + "laboratorys": 8.51e-08, + "labrinth": 8.51e-08, + "lais": 8.51e-08, + "lamontagne": 8.51e-08, + "lampeter": 8.51e-08, + "langan": 8.51e-08, + "lares": 8.51e-08, + "larping": 8.51e-08, + "lasher": 8.51e-08, + "lastname": 8.51e-08, + "lattimer": 8.51e-08, + "launderette": 8.51e-08, + "lbgt": 8.51e-08, + "leadeth": 8.51e-08, + "leeman": 8.51e-08, + "leffler": 8.51e-08, + "lehrman": 8.51e-08, + "lein": 8.51e-08, + "lemans": 8.51e-08, + "leme": 8.51e-08, + "lenk": 8.51e-08, + "lepanto": 8.51e-08, + "lestrange": 8.51e-08, + "levellers": 8.51e-08, + "levski": 8.51e-08, + "lih": 8.51e-08, + "lisbons": 8.51e-08, + "lodha": 8.51e-08, + "loesch": 8.51e-08, + "longmeadow": 8.51e-08, + "longshoremen": 8.51e-08, + "loping": 8.51e-08, + "lopping": 8.51e-08, + "loughran": 8.51e-08, + "lovering": 8.51e-08, + "luckett": 8.51e-08, + "ludus": 8.51e-08, + "luiza": 8.51e-08, + "lumos": 8.51e-08, + "lungi": 8.51e-08, + "lyssa": 8.51e-08, + "mabels": 8.51e-08, + "macinnes": 8.51e-08, + "madhavan": 8.51e-08, + "madrassas": 8.51e-08, + "magnifico": 8.51e-08, + "mailchimp": 8.51e-08, + "mainstreamed": 8.51e-08, + "maju": 8.51e-08, + "malamud": 8.51e-08, + "malpractices": 8.51e-08, + "maltz": 8.51e-08, + "malvina": 8.51e-08, + "mamaroneck": 8.51e-08, + "manchild": 8.51e-08, + "mandar": 8.51e-08, + "manganiello": 8.51e-08, + "manolas": 8.51e-08, + "manston": 8.51e-08, + "manzo": 8.51e-08, + "marcial": 8.51e-08, + "mardan": 8.51e-08, + "margined": 8.51e-08, + "marj": 8.51e-08, + "marmaris": 8.51e-08, + "marybeth": 8.51e-08, + "masterbate": 8.51e-08, + "matchsticks": 8.51e-08, + "matriculate": 8.51e-08, + "mattox": 8.51e-08, + "maun": 8.51e-08, + "mauresmo": 8.51e-08, + "mauretania": 8.51e-08, + "mawkish": 8.51e-08, + "mediawiki": 8.51e-08, + "medill": 8.51e-08, + "meed": 8.51e-08, + "melzer": 8.51e-08, + "mensheviks": 8.51e-08, + "mentha": 8.51e-08, + "merican": 8.51e-08, + "meridional": 8.51e-08, + "metrodome": 8.51e-08, + "microaggressions": 8.51e-08, + "middlefield": 8.51e-08, + "milagros": 8.51e-08, + "militaire": 8.51e-08, + "millets": 8.51e-08, + "minimis": 8.51e-08, + "miriams": 8.51e-08, + "missle": 8.51e-08, + "mmx": 8.51e-08, + "moder": 8.51e-08, + "mohamud": 8.51e-08, + "mohanlal": 8.51e-08, + "mohun": 8.51e-08, + "moldavian": 8.51e-08, + "moliere": 8.51e-08, + "monkeying": 8.51e-08, + "monopolization": 8.51e-08, + "moonie": 8.51e-08, + "moorfields": 8.51e-08, + "morkel": 8.51e-08, + "morphogenetic": 8.51e-08, + "mothafucka": 8.51e-08, + "mounir": 8.51e-08, + "mouthparts": 8.51e-08, + "moveon": 8.51e-08, + "moyne": 8.51e-08, + "mpf": 8.51e-08, + "mrw": 8.51e-08, + "muaythai": 8.51e-08, + "mujhe": 8.51e-08, + "mulford": 8.51e-08, + "multitudinous": 8.51e-08, + "muma": 8.51e-08, + "murai": 8.51e-08, + "murdoc": 8.51e-08, + "murty": 8.51e-08, + "mutability": 8.51e-08, + "nahr": 8.51e-08, + "napolis": 8.51e-08, + "nauk": 8.51e-08, + "ndr": 8.51e-08, + "neets": 8.51e-08, + "neng": 8.51e-08, + "neti": 8.51e-08, + "neuroma": 8.51e-08, + "newco": 8.51e-08, + "newcomen": 8.51e-08, + "newscasters": 8.51e-08, + "nicotiana": 8.51e-08, + "nightwatchman": 8.51e-08, + "nikah": 8.51e-08, + "ninny": 8.51e-08, + "njoku": 8.51e-08, + "nmos": 8.51e-08, + "nmt": 8.51e-08, + "nociceptive": 8.51e-08, + "nokes": 8.51e-08, + "nolasco": 8.51e-08, + "noncoding": 8.51e-08, + "noora": 8.51e-08, + "nopd": 8.51e-08, + "normed": 8.51e-08, + "northanger": 8.51e-08, + "northcutt": 8.51e-08, + "notarial": 8.51e-08, + "nutz": 8.51e-08, + "oboyle": 8.51e-08, + "okelly": 8.51e-08, + "oquinn": 8.51e-08, + "obliques": 8.51e-08, + "oggy": 8.51e-08, + "oher": 8.51e-08, + "ohk": 8.51e-08, + "okonkwo": 8.51e-08, + "olanzapine": 8.51e-08, + "oracular": 8.51e-08, + "oreille": 8.51e-08, + "origines": 8.51e-08, + "orignal": 8.51e-08, + "oriol": 8.51e-08, + "orkin": 8.51e-08, + "otcqb": 8.51e-08, + "otd": 8.51e-08, + "outgassing": 8.51e-08, + "outranked": 8.51e-08, + "ovale": 8.51e-08, + "overflight": 8.51e-08, + "overtimes": 8.51e-08, + "oxus": 8.51e-08, + "paarl": 8.51e-08, + "paci": 8.51e-08, + "pajero": 8.51e-08, + "pallette": 8.51e-08, + "panamanians": 8.51e-08, + "pando": 8.51e-08, + "panted": 8.51e-08, + "paraclete": 8.51e-08, + "paradises": 8.51e-08, + "parented": 8.51e-08, + "paten": 8.51e-08, + "paulinus": 8.51e-08, + "paull": 8.51e-08, + "pavlovich": 8.51e-08, + "pearling": 8.51e-08, + "peatland": 8.51e-08, + "pegula": 8.51e-08, + "pejoratively": 8.51e-08, + "pendency": 8.51e-08, + "pendennis": 8.51e-08, + "pensioned": 8.51e-08, + "pentacle": 8.51e-08, + "pepita": 8.51e-08, + "peppino": 8.51e-08, + "percenter": 8.51e-08, + "percolated": 8.51e-08, + "perls": 8.51e-08, + "permanganate": 8.51e-08, + "perrett": 8.51e-08, + "personifying": 8.51e-08, + "perturbative": 8.51e-08, + "pesce": 8.51e-08, + "petch": 8.51e-08, + "pettys": 8.51e-08, + "phen": 8.51e-08, + "phial": 8.51e-08, + "phosphide": 8.51e-08, + "photodiode": 8.51e-08, + "piccard": 8.51e-08, + "pilatus": 8.51e-08, + "pineau": 8.51e-08, + "pinholes": 8.51e-08, + "pinkston": 8.51e-08, + "pirandello": 8.51e-08, + "plaids": 8.51e-08, + "plantes": 8.51e-08, + "plowshares": 8.51e-08, + "plumer": 8.51e-08, + "pocketknife": 8.51e-08, + "podgorica": 8.51e-08, + "pointlessness": 8.51e-08, + "polloi": 8.51e-08, + "pontianak": 8.51e-08, + "ponto": 8.51e-08, + "poro": 8.51e-08, + "porsha": 8.51e-08, + "pph": 8.51e-08, + "prebiotic": 8.51e-08, + "premenopausal": 8.51e-08, + "prescribers": 8.51e-08, + "presupposed": 8.51e-08, + "printables": 8.51e-08, + "prithviraj": 8.51e-08, + "promptness": 8.51e-08, + "prowls": 8.51e-08, + "pruitts": 8.51e-08, + "prunella": 8.51e-08, + "psycholinguistics": 8.51e-08, + "puissance": 8.51e-08, + "punjabs": 8.51e-08, + "purulent": 8.51e-08, + "puso": 8.51e-08, + "pyong": 8.51e-08, + "pyrgos": 8.51e-08, + "qas": 8.51e-08, + "questioners": 8.51e-08, + "quicklime": 8.51e-08, + "raat": 8.51e-08, + "rabban": 8.51e-08, + "radke": 8.51e-08, + "rahe": 8.51e-08, + "rainham": 8.51e-08, + "raley": 8.51e-08, + "ramdev": 8.51e-08, + "rancic": 8.51e-08, + "rapinoe": 8.51e-08, + "ravichandran": 8.51e-08, + "raylene": 8.51e-08, + "rdd": 8.51e-08, + "reconquer": 8.51e-08, + "reconquista": 8.51e-08, + "redbirds": 8.51e-08, + "reformism": 8.51e-08, + "refract": 8.51e-08, + "refutations": 8.51e-08, + "rehydrated": 8.51e-08, + "relaxers": 8.51e-08, + "remodels": 8.51e-08, + "rentable": 8.51e-08, + "rentier": 8.51e-08, + "reptilia": 8.51e-08, + "resounds": 8.51e-08, + "retesting": 8.51e-08, + "retin": 8.51e-08, + "reunify": 8.51e-08, + "revelator": 8.51e-08, + "reworded": 8.51e-08, + "rgv": 8.51e-08, + "rhizosphere": 8.51e-08, + "righto": 8.51e-08, + "rigmarole": 8.51e-08, + "ripcord": 8.51e-08, + "riu": 8.51e-08, + "rme": 8.51e-08, + "rommels": 8.51e-08, + "roseate": 8.51e-08, + "rosenborg": 8.51e-08, + "rsvps": 8.51e-08, + "rubina": 8.51e-08, + "rucks": 8.51e-08, + "rudan": 8.51e-08, + "rugeley": 8.51e-08, + "runa": 8.51e-08, + "rup": 8.51e-08, + "ryosuke": 8.51e-08, + "ryuk": 8.51e-08, + "saddlebag": 8.51e-08, + "sadi": 8.51e-08, + "saez": 8.51e-08, + "sahni": 8.51e-08, + "sair": 8.51e-08, + "sakata": 8.51e-08, + "salcombe": 8.51e-08, + "sammich": 8.51e-08, + "sandeman": 8.51e-08, + "sangat": 8.51e-08, + "saphir": 8.51e-08, + "sarek": 8.51e-08, + "saunderson": 8.51e-08, + "saur": 8.51e-08, + "savills": 8.51e-08, + "saz": 8.51e-08, + "sbf": 8.51e-08, + "scaler": 8.51e-08, + "scathingly": 8.51e-08, + "schade": 8.51e-08, + "schaffhausen": 8.51e-08, + "scheck": 8.51e-08, + "schenn": 8.51e-08, + "schottky": 8.51e-08, + "scouser": 8.51e-08, + "scousers": 8.51e-08, + "scrappers": 8.51e-08, + "scriptura": 8.51e-08, + "scrounger": 8.51e-08, + "seaborn": 8.51e-08, + "sebald": 8.51e-08, + "seeman": 8.51e-08, + "segued": 8.51e-08, + "semitone": 8.51e-08, + "semmes": 8.51e-08, + "sendin": 8.51e-08, + "senhora": 8.51e-08, + "serres": 8.51e-08, + "seungri": 8.51e-08, + "seyed": 8.51e-08, + "sfb": 8.51e-08, + "sgm": 8.51e-08, + "sgml": 8.51e-08, + "shakopee": 8.51e-08, + "sheela": 8.51e-08, + "shenhua": 8.51e-08, + "sherrin": 8.51e-08, + "shhhhhh": 8.51e-08, + "shijiazhuang": 8.51e-08, + "shikamaru": 8.51e-08, + "shinagawa": 8.51e-08, + "shirakawa": 8.51e-08, + "shirked": 8.51e-08, + "shirted": 8.51e-08, + "shizuku": 8.51e-08, + "shull": 8.51e-08, + "sideboards": 8.51e-08, + "sidhe": 8.51e-08, + "siegmund": 8.51e-08, + "sievers": 8.51e-08, + "sightless": 8.51e-08, + "signalized": 8.51e-08, + "simenon": 8.51e-08, + "singha": 8.51e-08, + "sisulu": 8.51e-08, + "sitaram": 8.51e-08, + "sixths": 8.51e-08, + "skewering": 8.51e-08, + "slashers": 8.51e-08, + "slimey": 8.51e-08, + "slogged": 8.51e-08, + "smac": 8.51e-08, + "smosh": 8.51e-08, + "smuggles": 8.51e-08, + "smurfing": 8.51e-08, + "snart": 8.51e-08, + "sni": 8.51e-08, + "sobieski": 8.51e-08, + "solipsistic": 8.51e-08, + "southee": 8.51e-08, + "spargo": 8.51e-08, + "spectacled": 8.51e-08, + "spirito": 8.51e-08, + "springbrook": 8.51e-08, + "spygate": 8.51e-08, + "ssgt": 8.51e-08, + "stagehand": 8.51e-08, + "stagehands": 8.51e-08, + "stampeded": 8.51e-08, + "stanch": 8.51e-08, + "staubach": 8.51e-08, + "stayer": 8.51e-08, + "stena": 8.51e-08, + "stenger": 8.51e-08, + "stiffy": 8.51e-08, + "stockyard": 8.51e-08, + "stoffel": 8.51e-08, + "stowers": 8.51e-08, + "strainers": 8.51e-08, + "strath": 8.51e-08, + "stripers": 8.51e-08, + "stroker": 8.51e-08, + "stroppy": 8.51e-08, + "stross": 8.51e-08, + "styron": 8.51e-08, + "subfloor": 8.51e-08, + "submissiveness": 8.51e-08, + "subrogation": 8.51e-08, + "subtractions": 8.51e-08, + "sucessful": 8.51e-08, + "suffragist": 8.51e-08, + "sulfa": 8.51e-08, + "sumida": 8.51e-08, + "suni": 8.51e-08, + "sunshiny": 8.51e-08, + "superleague": 8.51e-08, + "sureties": 8.51e-08, + "survivalists": 8.51e-08, + "swarbrick": 8.51e-08, + "sward": 8.51e-08, + "syllabuses": 8.51e-08, + "symbiotes": 8.51e-08, + "sympathising": 8.51e-08, + "taji": 8.51e-08, + "tamba": 8.51e-08, + "tanager": 8.51e-08, + "tanenbaum": 8.51e-08, + "tanta": 8.51e-08, + "tappin": 8.51e-08, + "taraba": 8.51e-08, + "tatra": 8.51e-08, + "teletext": 8.51e-08, + "telles": 8.51e-08, + "tennants": 8.51e-08, + "terada": 8.51e-08, + "terengganu": 8.51e-08, + "terranes": 8.51e-08, + "tetrarch": 8.51e-08, + "texel": 8.51e-08, + "texters": 8.51e-08, + "theif": 8.51e-08, + "thg": 8.51e-08, + "thise": 8.51e-08, + "thrombolysis": 8.51e-08, + "thwaite": 8.51e-08, + "tidiness": 8.51e-08, + "tinian": 8.51e-08, + "tiresias": 8.51e-08, + "titleholder": 8.51e-08, + "tjx": 8.51e-08, + "tnts": 8.51e-08, + "toehold": 8.51e-08, + "tolentino": 8.51e-08, + "tongass": 8.51e-08, + "tongo": 8.51e-08, + "tonguing": 8.51e-08, + "torvald": 8.51e-08, + "towler": 8.51e-08, + "tqm": 8.51e-08, + "traipse": 8.51e-08, + "transferrable": 8.51e-08, + "translucency": 8.51e-08, + "trastevere": 8.51e-08, + "trastuzumab": 8.51e-08, + "triadic": 8.51e-08, + "triffids": 8.51e-08, + "trivago": 8.51e-08, + "trivializing": 8.51e-08, + "trm": 8.51e-08, + "tronic": 8.51e-08, + "trotman": 8.51e-08, + "trysts": 8.51e-08, + "tubercular": 8.51e-08, + "tulio": 8.51e-08, + "turndown": 8.51e-08, + "twinkly": 8.51e-08, + "twittersphere": 8.51e-08, + "ubu": 8.51e-08, + "uec": 8.51e-08, + "ufcw": 8.51e-08, + "ultrafine": 8.51e-08, + "ultramodern": 8.51e-08, + "unary": 8.51e-08, + "uncreated": 8.51e-08, + "underprepared": 8.51e-08, + "unflagging": 8.51e-08, + "unimpaired": 8.51e-08, + "unionizing": 8.51e-08, + "universo": 8.51e-08, + "unlinked": 8.51e-08, + "unmapped": 8.51e-08, + "unreformed": 8.51e-08, + "unseasonable": 8.51e-08, + "unsorted": 8.51e-08, + "untagged": 8.51e-08, + "untended": 8.51e-08, + "unworthiness": 8.51e-08, + "uou": 8.51e-08, + "uro": 8.51e-08, + "ussher": 8.51e-08, + "vaas": 8.51e-08, + "vaquero": 8.51e-08, + "vassili": 8.51e-08, + "venner": 8.51e-08, + "ventus": 8.51e-08, + "verbum": 8.51e-08, + "vias": 8.51e-08, + "viator": 8.51e-08, + "videoing": 8.51e-08, + "vieques": 8.51e-08, + "virtu": 8.51e-08, + "visi": 8.51e-08, + "viti": 8.51e-08, + "viviparous": 8.51e-08, + "vizcaya": 8.51e-08, + "vladimirovich": 8.51e-08, + "vpc": 8.51e-08, + "vtt": 8.51e-08, + "vult": 8.51e-08, + "wachter": 8.51e-08, + "walesa": 8.51e-08, + "wanita": 8.51e-08, + "warman": 8.51e-08, + "washcloths": 8.51e-08, + "wastefulness": 8.51e-08, + "watcha": 8.51e-08, + "waz": 8.51e-08, + "wdr": 8.51e-08, + "wellfleet": 8.51e-08, + "westernised": 8.51e-08, + "wever": 8.51e-08, + "whalebone": 8.51e-08, + "whitgift": 8.51e-08, + "wilfredo": 8.51e-08, + "willowy": 8.51e-08, + "wilms": 8.51e-08, + "wilner": 8.51e-08, + "wireimage": 8.51e-08, + "witchhunt": 8.51e-08, + "wittiest": 8.51e-08, + "wittig": 8.51e-08, + "wolffs": 8.51e-08, + "wolter": 8.51e-08, + "wonsan": 8.51e-08, + "woodberry": 8.51e-08, + "woollahra": 8.51e-08, + "worldcon": 8.51e-08, + "wortham": 8.51e-08, + "worthen": 8.51e-08, + "wpb": 8.51e-08, + "wrongdoer": 8.51e-08, + "wsf": 8.51e-08, + "wsi": 8.51e-08, + "xddd": 8.51e-08, + "xrays": 8.51e-08, + "yadier": 8.51e-08, + "yae": 8.51e-08, + "yamal": 8.51e-08, + "yeun": 8.51e-08, + "yivo": 8.51e-08, + "yogas": 5.37e-08, + "yoooo": 8.51e-08, + "youl": 5.13e-08, + "zagora": 8.51e-08, + "zbrush": 8.51e-08, + "zeitlin": 8.51e-08, + "zeon": 8.51e-08, + "zhongguo": 8.51e-08, + "zinoviev": 8.51e-08, + "zircons": 8.51e-08, + "zlotys": 8.51e-08, + "zonda": 8.51e-08, + "zuk": 8.51e-08, + "zwick": 8.51e-08, + "zyklon": 8.51e-08, + "abelson": 8.32e-08, + "abhiyan": 8.32e-08, + "abridgment": 8.32e-08, + "absently": 8.32e-08, + "accordions": 8.32e-08, + "accuracies": 8.32e-08, + "acuminate": 8.32e-08, + "adecco": 8.32e-08, + "adhoc": 8.32e-08, + "adjudicatory": 8.32e-08, + "adminstration": 8.32e-08, + "advection": 8.32e-08, + "aeds": 8.32e-08, + "aek": 8.32e-08, + "agartala": 8.32e-08, + "aila": 8.32e-08, + "airheads": 8.32e-08, + "akasha": 8.32e-08, + "alamy": 8.32e-08, + "albon": 8.32e-08, + "alea": 8.32e-08, + "aleve": 8.32e-08, + "aliyu": 8.32e-08, + "alkylating": 8.32e-08, + "allingham": 8.32e-08, + "aloneness": 8.32e-08, + "amaechi": 8.32e-08, + "amasa": 8.32e-08, + "amed": 8.32e-08, + "amniocentesis": 8.32e-08, + "amortisation": 8.32e-08, + "amphotericin": 8.32e-08, + "amping": 8.32e-08, + "anadromous": 8.32e-08, + "anatol": 8.32e-08, + "andria": 8.32e-08, + "anthropocentric": 8.32e-08, + "antipater": 8.32e-08, + "antiqua": 8.32e-08, + "anzacs": 8.32e-08, + "applewood": 8.32e-08, + "appurtenances": 8.32e-08, + "arbonne": 8.32e-08, + "archambault": 8.32e-08, + "arctica": 8.32e-08, + "arete": 8.32e-08, + "armalite": 8.32e-08, + "armfield": 8.32e-08, + "arnautovic": 8.32e-08, + "arrowroot": 8.32e-08, + "arrr": 8.32e-08, + "artnews": 8.32e-08, + "assimilates": 8.32e-08, + "atlassian": 8.32e-08, + "aton": 8.32e-08, + "attainted": 8.32e-08, + "attr": 8.32e-08, + "aughts": 8.32e-08, + "avent": 8.32e-08, + "avett": 8.32e-08, + "awt": 8.32e-08, + "axton": 8.32e-08, + "ayia": 8.32e-08, + "azn": 8.32e-08, + "azor": 8.32e-08, + "azra": 8.32e-08, + "btselem": 8.32e-08, + "baiter": 8.32e-08, + "bajirao": 8.32e-08, + "bajor": 8.32e-08, + "balaclavas": 8.32e-08, + "balt": 8.32e-08, + "bantry": 8.32e-08, + "baptise": 8.32e-08, + "barby": 8.32e-08, + "bardi": 8.32e-08, + "bariloche": 8.32e-08, + "barna": 8.32e-08, + "barnegat": 8.32e-08, + "barnette": 8.32e-08, + "barnhill": 8.32e-08, + "barrhead": 8.32e-08, + "bassa": 8.32e-08, + "bassin": 8.32e-08, + "bassy": 8.32e-08, + "baston": 8.32e-08, + "battlecruisers": 8.32e-08, + "beavercreek": 8.32e-08, + "bedard": 8.32e-08, + "bedspreads": 8.32e-08, + "bedtimes": 8.32e-08, + "beilein": 8.32e-08, + "bennell": 8.32e-08, + "berat": 8.32e-08, + "bevacizumab": 8.32e-08, + "bever": 8.32e-08, + "bhaijaan": 8.32e-08, + "bicultural": 8.32e-08, + "bidets": 8.32e-08, + "bighead": 8.32e-08, + "bine": 8.32e-08, + "birkhoff": 8.32e-08, + "bitey": 8.32e-08, + "bitpay": 8.32e-08, + "bkn": 8.32e-08, + "blackpools": 8.32e-08, + "blanching": 8.32e-08, + "bobbles": 8.32e-08, + "bogging": 8.32e-08, + "bootylicious": 8.32e-08, + "borobudur": 8.32e-08, + "botches": 8.32e-08, + "botsford": 8.32e-08, + "boules": 8.32e-08, + "bourassa": 8.32e-08, + "bowne": 8.32e-08, + "bracewell": 8.32e-08, + "bracey": 8.32e-08, + "brazoria": 8.32e-08, + "brehm": 8.32e-08, + "brendel": 8.32e-08, + "brewdog": 8.32e-08, + "briarwood": 8.32e-08, + "bridgit": 8.32e-08, + "brigg": 8.32e-08, + "brinkmann": 8.32e-08, + "briquette": 8.32e-08, + "browbeat": 8.32e-08, + "brownfields": 8.32e-08, + "bruder": 8.32e-08, + "bruisers": 8.32e-08, + "bsod": 8.32e-08, + "buharis": 8.32e-08, + "bunts": 8.32e-08, + "burrough": 8.32e-08, + "burstyn": 8.32e-08, + "busway": 8.32e-08, + "butanol": 8.32e-08, + "bws": 8.32e-08, + "cabg": 8.32e-08, + "cadwallader": 8.32e-08, + "caerleon": 8.32e-08, + "calogero": 8.32e-08, + "camron": 8.32e-08, + "canela": 8.32e-08, + "canneries": 8.32e-08, + "cannibalizing": 8.32e-08, + "canonisation": 8.32e-08, + "canopied": 8.32e-08, + "canticles": 8.32e-08, + "capitoline": 8.32e-08, + "cardone": 8.32e-08, + "carlaw": 8.32e-08, + "carlins": 8.32e-08, + "carlucci": 8.32e-08, + "carnegies": 8.32e-08, + "castigate": 8.32e-08, + "catanzaro": 8.32e-08, + "cdd": 8.32e-08, + "cedaw": 8.32e-08, + "cerys": 8.32e-08, + "chalupa": 8.32e-08, + "chanakya": 8.32e-08, + "chandan": 8.32e-08, + "chapultepec": 8.32e-08, + "charlo": 8.32e-08, + "charu": 8.32e-08, + "chch": 8.32e-08, + "cheesesteaks": 8.32e-08, + "chehalis": 8.32e-08, + "chertoff": 8.32e-08, + "cheuk": 8.32e-08, + "chillest": 8.32e-08, + "cimb": 8.32e-08, + "citronella": 8.32e-08, + "clarisonic": 8.32e-08, + "classen": 8.32e-08, + "clodius": 8.32e-08, + "clunking": 8.32e-08, + "cnut": 8.32e-08, + "collum": 8.32e-08, + "comed": 8.32e-08, + "comixology": 8.32e-08, + "complementation": 8.32e-08, + "consejo": 8.32e-08, + "conshohocken": 8.32e-08, + "conspecific": 8.32e-08, + "constricts": 8.32e-08, + "constructional": 8.32e-08, + "contextualization": 8.32e-08, + "contini": 8.32e-08, + "convertibility": 8.32e-08, + "conveyances": 8.32e-08, + "copperheads": 8.32e-08, + "cording": 8.32e-08, + "cordis": 8.32e-08, + "corpsmen": 8.32e-08, + "corto": 8.32e-08, + "couleur": 8.32e-08, + "coxon": 8.32e-08, + "craned": 8.32e-08, + "craning": 8.32e-08, + "creaminess": 8.32e-08, + "cresta": 8.32e-08, + "cricut": 8.32e-08, + "crinoids": 8.32e-08, + "crinoline": 8.32e-08, + "critica": 8.32e-08, + "crooke": 8.32e-08, + "crossbench": 8.32e-08, + "crossfield": 8.32e-08, + "ctn": 8.32e-08, + "cubase": 8.32e-08, + "cukor": 8.32e-08, + "currying": 8.32e-08, + "curvatures": 8.32e-08, + "cusick": 8.32e-08, + "dacosta": 8.32e-08, + "dadar": 8.32e-08, + "dagen": 8.32e-08, + "daka": 8.32e-08, + "dalle": 8.32e-08, + "daveys": 8.32e-08, + "daydreamer": 8.32e-08, + "dbi": 8.32e-08, + "dcms": 8.32e-08, + "deathwatch": 8.32e-08, + "debbi": 8.32e-08, + "decoherence": 8.32e-08, + "decorah": 8.32e-08, + "deepdale": 8.32e-08, + "definatly": 8.32e-08, + "dellarte": 8.32e-08, + "demodulation": 8.32e-08, + "denk": 8.32e-08, + "dentine": 8.32e-08, + "depressurization": 8.32e-08, + "derg": 8.32e-08, + "devika": 8.32e-08, + "dhol": 8.32e-08, + "dhr": 8.32e-08, + "diagnosable": 8.32e-08, + "diao": 8.32e-08, + "diffusive": 8.32e-08, + "dihydrogen": 8.32e-08, + "dilfer": 8.32e-08, + "dingdong": 8.32e-08, + "diplodocus": 8.32e-08, + "disbursing": 8.32e-08, + "disdains": 8.32e-08, + "disinherit": 8.32e-08, + "dispensations": 8.32e-08, + "displeases": 8.32e-08, + "disproportion": 8.32e-08, + "diviners": 8.32e-08, + "dlcs": 8.32e-08, + "dlm": 8.32e-08, + "dne": 8.32e-08, + "dogtown": 8.32e-08, + "dola": 8.32e-08, + "donot": 8.32e-08, + "dormers": 8.32e-08, + "downhearted": 8.32e-08, + "downslope": 8.32e-08, + "drainer": 8.32e-08, + "drewry": 8.32e-08, + "drys": 8.32e-08, + "duckduckgo": 8.32e-08, + "dulux": 8.32e-08, + "dunster": 8.32e-08, + "duthie": 8.32e-08, + "echuca": 8.32e-08, + "educa": 8.32e-08, + "eeee": 8.32e-08, + "eeprom": 8.32e-08, + "efm": 8.32e-08, + "eilean": 8.32e-08, + "eisenman": 8.32e-08, + "ekko": 8.32e-08, + "electrotechnical": 8.32e-08, + "elicitation": 8.32e-08, + "elision": 8.32e-08, + "elman": 8.32e-08, + "emissivity": 8.32e-08, + "encephalomyelitis": 8.32e-08, + "endian": 8.32e-08, + "enews": 8.32e-08, + "enkidu": 8.32e-08, + "enlarger": 8.32e-08, + "enlivening": 8.32e-08, + "entablature": 8.32e-08, + "enthuse": 8.32e-08, + "entreated": 8.32e-08, + "envisaging": 8.32e-08, + "equalizes": 8.32e-08, + "equilibration": 8.32e-08, + "escanaba": 8.32e-08, + "espressos": 8.32e-08, + "esses": 8.32e-08, + "esty": 8.32e-08, + "ettinger": 8.32e-08, + "eulalia": 8.32e-08, + "eurobond": 8.32e-08, + "eurogroup": 8.32e-08, + "evocations": 8.32e-08, + "ewer": 8.32e-08, + "ewert": 8.32e-08, + "ewg": 8.32e-08, + "exercisable": 8.32e-08, + "existant": 8.32e-08, + "exomars": 8.32e-08, + "expressionistic": 8.32e-08, + "extravaganzas": 8.32e-08, + "extroversion": 8.32e-08, + "eyedrops": 8.32e-08, + "ezzor": 8.32e-08, + "fabricates": 8.32e-08, + "falke": 8.32e-08, + "familar": 8.32e-08, + "farrago": 8.32e-08, + "farrand": 8.32e-08, + "fatf": 8.32e-08, + "fazer": 8.32e-08, + "federalized": 8.32e-08, + "ferrar": 8.32e-08, + "fetishistic": 8.32e-08, + "fingerling": 8.32e-08, + "finno": 8.32e-08, + "fizzling": 8.32e-08, + "flamborough": 8.32e-08, + "flattop": 8.32e-08, + "flintridge": 8.32e-08, + "floppies": 8.32e-08, + "foix": 8.32e-08, + "foner": 8.32e-08, + "fonterra": 8.32e-08, + "forseeable": 8.32e-08, + "fourcade": 8.32e-08, + "foz": 8.32e-08, + "frags": 8.32e-08, + "fraternization": 8.32e-08, + "fraziers": 8.32e-08, + "frb": 8.32e-08, + "frcp": 8.32e-08, + "frittered": 8.32e-08, + "frl": 8.32e-08, + "frostbitten": 8.32e-08, + "frr": 8.32e-08, + "fucktards": 8.32e-08, + "fugu": 8.32e-08, + "fuking": 8.32e-08, + "fussell": 8.32e-08, + "gameofthrones": 8.32e-08, + "gapping": 8.32e-08, + "garrote": 8.32e-08, + "gcl": 8.32e-08, + "gdynia": 8.32e-08, + "geeked": 8.32e-08, + "geen": 8.32e-08, + "gelsenkirchen": 8.32e-08, + "generalising": 8.32e-08, + "geochronology": 8.32e-08, + "gephardt": 8.32e-08, + "ghidorah": 8.32e-08, + "giambi": 8.32e-08, + "gijon": 8.32e-08, + "gilley": 8.32e-08, + "glentoran": 8.32e-08, + "globetrotting": 8.32e-08, + "glycolytic": 8.32e-08, + "glycoside": 8.32e-08, + "gobshite": 8.32e-08, + "godown": 8.32e-08, + "goffman": 8.32e-08, + "goldrush": 8.32e-08, + "gome": 8.32e-08, + "gompertz": 8.32e-08, + "goooood": 8.32e-08, + "gopinath": 8.32e-08, + "gorki": 8.32e-08, + "granulomatous": 8.32e-08, + "greate": 8.32e-08, + "greensand": 8.32e-08, + "greif": 8.32e-08, + "grolier": 8.32e-08, + "gsma": 8.32e-08, + "guarino": 8.32e-08, + "gubbins": 8.32e-08, + "guccis": 8.32e-08, + "gudgeon": 8.32e-08, + "guestlist": 8.32e-08, + "gula": 8.32e-08, + "gunga": 8.32e-08, + "gwin": 8.32e-08, + "gyoza": 8.32e-08, + "hadrons": 8.32e-08, + "halberstam": 8.32e-08, + "halder": 8.32e-08, + "halesowen": 8.32e-08, + "halfbacks": 8.32e-08, + "halles": 8.32e-08, + "halseys": 8.32e-08, + "hambro": 8.32e-08, + "hammill": 8.32e-08, + "handicappers": 8.32e-08, + "haranguing": 8.32e-08, + "hartington": 8.32e-08, + "hartree": 8.32e-08, + "hasa": 8.32e-08, + "havard": 8.32e-08, + "hbd": 8.32e-08, + "healthday": 8.32e-08, + "hearties": 8.32e-08, + "heathfield": 8.32e-08, + "heiko": 8.32e-08, + "hemolymph": 8.32e-08, + "hermeneutical": 8.32e-08, + "herpetological": 8.32e-08, + "herter": 8.32e-08, + "hertzog": 8.32e-08, + "heute": 8.32e-08, + "hexafluoride": 8.32e-08, + "heyyy": 8.32e-08, + "hibberd": 8.32e-08, + "hien": 8.32e-08, + "highgarden": 8.32e-08, + "highspeed": 8.32e-08, + "hijikata": 8.32e-08, + "hildas": 8.32e-08, + "himanshu": 8.32e-08, + "hisd": 8.32e-08, + "hnc": 8.32e-08, + "hoiberg": 8.32e-08, + "homebuilder": 8.32e-08, + "homonym": 8.32e-08, + "hongs": 8.32e-08, + "hoovered": 8.32e-08, + "hoplites": 8.32e-08, + "hornbeam": 8.32e-08, + "hornbill": 8.32e-08, + "hovis": 8.32e-08, + "howey": 8.32e-08, + "hoxha": 8.32e-08, + "hurons": 8.32e-08, + "hussle": 8.32e-08, + "hutchence": 8.32e-08, + "hws": 8.32e-08, + "hydrochlorothiazide": 8.32e-08, + "hyperplane": 8.32e-08, + "hyphenate": 8.32e-08, + "hyrum": 8.32e-08, + "hyuna": 8.32e-08, + "iconoclasts": 8.32e-08, + "iip": 8.32e-08, + "illusionists": 8.32e-08, + "imb": 8.32e-08, + "immanence": 8.32e-08, + "impaction": 8.32e-08, + "imperfecta": 8.32e-08, + "impute": 8.32e-08, + "inbreds": 8.32e-08, + "indelicate": 8.32e-08, + "inflammatories": 8.32e-08, + "inflator": 8.32e-08, + "ingenuous": 8.32e-08, + "ingrosso": 8.32e-08, + "inhumanly": 8.32e-08, + "insee": 8.32e-08, + "insite": 8.32e-08, + "insultingly": 8.32e-08, + "interconnectivity": 8.32e-08, + "interpolating": 8.32e-08, + "interprofessional": 8.32e-08, + "interspace": 8.32e-08, + "intolerably": 8.32e-08, + "intolerances": 8.32e-08, + "iodized": 8.32e-08, + "ionize": 8.32e-08, + "ipn": 8.32e-08, + "isin": 8.32e-08, + "itk": 8.32e-08, + "ivano": 8.32e-08, + "iyo": 8.32e-08, + "izzys": 8.32e-08, + "jank": 8.32e-08, + "jaybird": 8.32e-08, + "jeremie": 8.32e-08, + "jesup": 8.32e-08, + "jeunes": 8.32e-08, + "jina": 8.32e-08, + "jinder": 8.32e-08, + "johore": 8.32e-08, + "jorginho": 8.32e-08, + "joshing": 8.32e-08, + "josi": 8.32e-08, + "judds": 8.32e-08, + "judiths": 8.32e-08, + "juha": 8.32e-08, + "juninho": 8.32e-08, + "kaal": 8.32e-08, + "kady": 8.32e-08, + "kaesong": 8.32e-08, + "kaidan": 8.32e-08, + "kalpa": 8.32e-08, + "kamu": 8.32e-08, + "kaname": 8.32e-08, + "kanti": 8.32e-08, + "karly": 8.32e-08, + "karsh": 8.32e-08, + "kasab": 8.32e-08, + "katamari": 8.32e-08, + "kazmir": 8.32e-08, + "kcbs": 8.32e-08, + "kdka": 8.32e-08, + "keening": 8.32e-08, + "kefalonia": 8.32e-08, + "kelmscott": 8.32e-08, + "kepner": 8.32e-08, + "keppler": 8.32e-08, + "keratitis": 8.32e-08, + "kerslake": 8.32e-08, + "kesslers": 8.32e-08, + "keun": 8.32e-08, + "kgaa": 8.32e-08, + "khasi": 8.32e-08, + "khattak": 8.32e-08, + "khumbu": 8.32e-08, + "kima": 8.32e-08, + "kinch": 8.32e-08, + "kingussie": 8.32e-08, + "kirch": 8.32e-08, + "kirkcudbright": 8.32e-08, + "kiruna": 8.32e-08, + "kissable": 8.32e-08, + "kissers": 8.32e-08, + "klausner": 8.32e-08, + "kliff": 8.32e-08, + "knowlege": 8.32e-08, + "knud": 8.32e-08, + "kolya": 8.32e-08, + "kongers": 8.32e-08, + "kongsberg": 8.32e-08, + "kote": 8.32e-08, + "kotov": 8.32e-08, + "koyama": 8.32e-08, + "krafft": 8.32e-08, + "krai": 8.32e-08, + "krakauer": 8.32e-08, + "krewe": 8.32e-08, + "kroeber": 8.32e-08, + "kronk": 8.32e-08, + "kurukshetra": 8.32e-08, + "kushal": 8.32e-08, + "laborde": 8.32e-08, + "laceys": 8.32e-08, + "ladbroke": 8.32e-08, + "lakatos": 8.32e-08, + "lalas": 8.32e-08, + "lamanites": 8.32e-08, + "lami": 8.32e-08, + "lamo": 8.32e-08, + "languor": 8.32e-08, + "laodicea": 8.32e-08, + "lawyered": 8.32e-08, + "leandra": 8.32e-08, + "lecrae": 8.32e-08, + "leftfield": 8.32e-08, + "leishmania": 8.32e-08, + "lengua": 8.32e-08, + "leniently": 8.32e-08, + "lenos": 8.32e-08, + "leroi": 8.32e-08, + "letterheads": 8.32e-08, + "lexs": 8.32e-08, + "liason": 8.32e-08, + "libbey": 8.32e-08, + "lightheadedness": 8.32e-08, + "lilium": 8.32e-08, + "limbaughs": 8.32e-08, + "lipp": 8.32e-08, + "lisieux": 8.32e-08, + "lochner": 8.32e-08, + "longsword": 8.32e-08, + "loreen": 8.32e-08, + "lote": 8.32e-08, + "luana": 8.32e-08, + "luanne": 8.32e-08, + "luchador": 8.32e-08, + "lucidly": 8.32e-08, + "lucis": 8.32e-08, + "lucroy": 8.32e-08, + "ludwigs": 8.32e-08, + "lukasz": 8.32e-08, + "lully": 8.32e-08, + "lumbini": 8.32e-08, + "luminaires": 8.32e-08, + "lumo": 8.32e-08, + "lutein": 8.32e-08, + "mackays": 8.32e-08, + "maddens": 5.75e-08, + "madoffs": 8.32e-08, + "mafiosi": 8.32e-08, + "magadha": 8.32e-08, + "magdala": 8.32e-08, + "magid": 8.32e-08, + "mahir": 8.32e-08, + "malamute": 8.32e-08, + "maldi": 8.32e-08, + "malinda": 8.32e-08, + "mallu": 8.32e-08, + "maly": 8.32e-08, + "manalo": 8.32e-08, + "manoeuvrable": 8.32e-08, + "manpads": 8.32e-08, + "mantels": 8.32e-08, + "mantises": 8.32e-08, + "maranello": 8.32e-08, + "maret": 8.32e-08, + "maric": 8.32e-08, + "marischal": 8.32e-08, + "markdowns": 8.32e-08, + "martelli": 8.32e-08, + "marva": 8.32e-08, + "masoretic": 8.32e-08, + "mastership": 8.32e-08, + "masti": 8.32e-08, + "mastroianni": 8.32e-08, + "maternally": 8.32e-08, + "maters": 8.32e-08, + "matthey": 8.32e-08, + "maximilien": 8.32e-08, + "maximises": 8.32e-08, + "maxton": 8.32e-08, + "mayen": 8.32e-08, + "mayflies": 8.32e-08, + "mayim": 8.32e-08, + "mazdas": 8.32e-08, + "mcbryde": 8.32e-08, + "mccabes": 8.32e-08, + "mccomas": 8.32e-08, + "mcfaul": 8.32e-08, + "mcgary": 8.32e-08, + "mcgraths": 8.32e-08, + "mcivor": 8.32e-08, + "mckendrick": 8.32e-08, + "mclintock": 8.32e-08, + "mcmann": 8.32e-08, + "mcmullan": 8.32e-08, + "meatier": 8.32e-08, + "mede": 8.32e-08, + "medel": 8.32e-08, + "mediations": 8.32e-08, + "meditators": 8.32e-08, + "megacities": 8.32e-08, + "megamix": 8.32e-08, + "meggie": 8.32e-08, + "melos": 5.5e-08, + "mendip": 8.32e-08, + "merckx": 8.32e-08, + "mescal": 8.32e-08, + "metabolizes": 8.32e-08, + "metathesis": 8.32e-08, + "mewing": 8.32e-08, + "microsite": 8.32e-08, + "middelburg": 8.32e-08, + "mihir": 8.32e-08, + "millhouse": 8.32e-08, + "milliband": 8.32e-08, + "minamoto": 8.32e-08, + "minicomputer": 8.32e-08, + "ministrations": 8.32e-08, + "minnesotan": 8.32e-08, + "misandry": 8.32e-08, + "misnamed": 8.32e-08, + "misoprostol": 8.32e-08, + "misreporting": 8.32e-08, + "missis": 8.32e-08, + "misted": 8.32e-08, + "misters": 8.32e-08, + "mistimed": 8.32e-08, + "mitochondrion": 8.32e-08, + "mitsu": 8.32e-08, + "molino": 8.32e-08, + "moroder": 8.32e-08, + "mosel": 8.32e-08, + "moshpit": 8.32e-08, + "mosleys": 8.32e-08, + "mountable": 8.32e-08, + "muckraking": 8.32e-08, + "mulayam": 8.32e-08, + "mulkey": 8.32e-08, + "musculus": 8.32e-08, + "mushu": 8.32e-08, + "myler": 8.32e-08, + "myositis": 8.32e-08, + "mystify": 8.32e-08, + "naja": 8.32e-08, + "nardi": 8.32e-08, + "nastya": 8.32e-08, + "nattie": 8.32e-08, + "navan": 8.32e-08, + "nbp": 8.32e-08, + "ncf": 8.32e-08, + "neoliberals": 8.32e-08, + "neuraminidase": 8.32e-08, + "newsy": 8.32e-08, + "ngn": 8.32e-08, + "nitwits": 8.32e-08, + "nobilis": 8.32e-08, + "noctua": 8.32e-08, + "nonnegotiable": 8.32e-08, + "norwest": 8.32e-08, + "nosotros": 8.32e-08, + "notifiable": 8.32e-08, + "noumea": 8.32e-08, + "novia": 8.32e-08, + "nowruz": 8.32e-08, + "nucleons": 8.32e-08, + "nuffin": 8.32e-08, + "numpty": 8.32e-08, + "nutjobs": 8.32e-08, + "nyla": 8.32e-08, + "oconnells": 8.32e-08, + "oatley": 8.32e-08, + "observatorys": 8.32e-08, + "ohtani": 8.32e-08, + "oilsands": 8.32e-08, + "oir": 8.32e-08, + "olap": 8.32e-08, + "oleds": 8.32e-08, + "olefins": 8.32e-08, + "olwen": 8.32e-08, + "olyphant": 8.32e-08, + "ontogeny": 8.32e-08, + "ootd": 8.32e-08, + "opere": 8.32e-08, + "ornithine": 8.32e-08, + "orthoptera": 8.32e-08, + "osbournes": 8.32e-08, + "osrs": 8.32e-08, + "otte": 8.32e-08, + "otv": 8.32e-08, + "outram": 8.32e-08, + "overachieving": 8.32e-08, + "overages": 8.32e-08, + "overprint": 8.32e-08, + "owatonna": 8.32e-08, + "pannell": 8.32e-08, + "panth": 8.32e-08, + "pany": 8.32e-08, + "papeete": 8.32e-08, + "parabens": 8.32e-08, + "parganas": 8.32e-08, + "parrett": 8.32e-08, + "passthrough": 8.32e-08, + "patan": 8.32e-08, + "patentability": 8.32e-08, + "patris": 8.32e-08, + "pbj": 8.32e-08, + "pcu": 8.32e-08, + "pdms": 8.32e-08, + "pedestrianised": 8.32e-08, + "peeples": 8.32e-08, + "pela": 8.32e-08, + "peleliu": 8.32e-08, + "penndot": 8.32e-08, + "pensionable": 8.32e-08, + "pericarditis": 8.32e-08, + "perignon": 8.32e-08, + "permethrin": 8.32e-08, + "personel": 8.32e-08, + "pertinently": 8.32e-08, + "pey": 8.32e-08, + "phasor": 8.32e-08, + "philologists": 8.32e-08, + "picketts": 8.32e-08, + "pierrepont": 8.32e-08, + "pieterse": 8.32e-08, + "pigsty": 8.32e-08, + "pilon": 8.32e-08, + "pinelands": 8.32e-08, + "pipi": 8.32e-08, + "piru": 8.32e-08, + "piscine": 8.32e-08, + "pissin": 8.32e-08, + "pities": 8.32e-08, + "pitzer": 8.32e-08, + "pizzo": 8.32e-08, + "plaisir": 8.32e-08, + "plasterwork": 8.32e-08, + "plasti": 8.32e-08, + "plenitude": 8.32e-08, + "pleura": 8.32e-08, + "plzen": 8.32e-08, + "polanskis": 8.32e-08, + "polymerases": 8.32e-08, + "pomme": 8.32e-08, + "popkin": 8.32e-08, + "porkchop": 8.32e-08, + "porthcawl": 8.32e-08, + "potently": 8.32e-08, + "potrero": 8.32e-08, + "povetkin": 8.32e-08, + "powertrains": 8.32e-08, + "pozo": 8.32e-08, + "ppu": 8.32e-08, + "pragues": 8.32e-08, + "prattling": 8.32e-08, + "prefigured": 8.32e-08, + "prentis": 8.32e-08, + "presages": 8.32e-08, + "preuss": 8.32e-08, + "prickle": 8.32e-08, + "prine": 8.32e-08, + "prithee": 8.32e-08, + "proba": 8.32e-08, + "probleme": 8.32e-08, + "progreso": 8.32e-08, + "progressiveness": 8.32e-08, + "prostatitis": 8.32e-08, + "protea": 8.32e-08, + "pubertal": 8.32e-08, + "puneet": 8.32e-08, + "purslane": 8.32e-08, + "puting": 8.32e-08, + "puttering": 8.32e-08, + "pyatt": 8.32e-08, + "pyr": 8.32e-08, + "pyroxene": 8.32e-08, + "qibla": 8.32e-08, + "quackenbush": 8.32e-08, + "quartier": 8.32e-08, + "quaternions": 8.32e-08, + "qube": 8.32e-08, + "queretaro": 8.32e-08, + "quraysh": 8.32e-08, + "racecars": 8.32e-08, + "racialist": 8.32e-08, + "raita": 8.32e-08, + "ramjet": 8.32e-08, + "rancheros": 8.32e-08, + "ranji": 8.32e-08, + "rashomon": 8.32e-08, + "ravels": 8.32e-08, + "rawal": 8.32e-08, + "rdo": 8.32e-08, + "reavis": 8.32e-08, + "rebadged": 8.32e-08, + "recliners": 8.32e-08, + "reconstituting": 8.32e-08, + "redditors": 8.32e-08, + "redistributes": 8.32e-08, + "referents": 8.32e-08, + "reformatting": 8.32e-08, + "reger": 8.32e-08, + "regnault": 8.32e-08, + "regnum": 8.32e-08, + "rek": 8.32e-08, + "relatedly": 8.32e-08, + "relenting": 8.32e-08, + "renfield": 8.32e-08, + "renomination": 8.32e-08, + "renouf": 8.32e-08, + "renteria": 8.32e-08, + "renumbering": 8.32e-08, + "reponse": 8.32e-08, + "reposed": 8.32e-08, + "resnais": 8.32e-08, + "restructures": 8.32e-08, + "retcon": 8.32e-08, + "retconned": 8.32e-08, + "revivalists": 8.32e-08, + "ribas": 8.32e-08, + "ricco": 8.32e-08, + "rieger": 8.32e-08, + "riss": 8.32e-08, + "rizzuto": 8.32e-08, + "rockhill": 8.32e-08, + "roderigo": 8.32e-08, + "roes": 8.32e-08, + "romanovs": 8.32e-08, + "ropey": 8.32e-08, + "rossdale": 8.32e-08, + "rountree": 8.32e-08, + "rrt": 8.32e-08, + "rurouni": 8.32e-08, + "rushville": 8.32e-08, + "ruthin": 8.32e-08, + "rydal": 8.32e-08, + "ryno": 8.32e-08, + "sabmiller": 8.32e-08, + "safaricom": 8.32e-08, + "safdar": 8.32e-08, + "salonen": 8.32e-08, + "samarium": 8.32e-08, + "sammamish": 8.32e-08, + "sandell": 8.32e-08, + "sankt": 8.32e-08, + "santis": 8.32e-08, + "saragossa": 8.32e-08, + "sarath": 8.32e-08, + "sarfaraz": 8.32e-08, + "sarr": 8.32e-08, + "satara": 8.32e-08, + "scca": 8.32e-08, + "schnee": 8.32e-08, + "scho": 8.32e-08, + "schuette": 8.32e-08, + "scirocco": 8.32e-08, + "scoble": 8.32e-08, + "scornfully": 8.32e-08, + "scotches": 8.32e-08, + "scotties": 8.32e-08, + "scra": 8.32e-08, + "scuppered": 8.32e-08, + "seaming": 8.32e-08, + "seamount": 8.32e-08, + "secu": 8.32e-08, + "secundus": 8.32e-08, + "sedgefield": 8.32e-08, + "seethed": 8.32e-08, + "seether": 8.32e-08, + "segarra": 8.32e-08, + "seismologist": 8.32e-08, + "selenite": 8.32e-08, + "semenov": 8.32e-08, + "sensorial": 8.32e-08, + "sequoias": 8.32e-08, + "seuil": 8.32e-08, + "severson": 8.32e-08, + "sfe": 8.32e-08, + "shadowhunter": 8.32e-08, + "shanice": 8.32e-08, + "sharealike": 8.32e-08, + "shariff": 8.32e-08, + "shekau": 8.32e-08, + "shepton": 8.32e-08, + "shippen": 8.32e-08, + "shoplifted": 8.32e-08, + "shtetl": 8.32e-08, + "shuga": 8.32e-08, + "siciliano": 8.32e-08, + "siddha": 8.32e-08, + "sidelight": 8.32e-08, + "sidneys": 8.32e-08, + "silvanus": 8.32e-08, + "simd": 8.32e-08, + "simony": 8.32e-08, + "simulacra": 8.32e-08, + "singhania": 8.32e-08, + "sitio": 8.32e-08, + "sizzled": 8.32e-08, + "skrulls": 8.32e-08, + "slackened": 8.32e-08, + "slanging": 8.32e-08, + "sledgehammers": 8.32e-08, + "slrs": 8.32e-08, + "smulders": 8.32e-08, + "smx": 8.32e-08, + "snedeker": 8.32e-08, + "sociobiology": 8.32e-08, + "sohrab": 8.32e-08, + "sojourns": 8.32e-08, + "sonder": 8.32e-08, + "sones": 8.32e-08, + "sooooooooo": 8.32e-08, + "sophists": 8.32e-08, + "sopot": 8.32e-08, + "sopwith": 8.32e-08, + "souks": 8.32e-08, + "soundproofed": 8.32e-08, + "specifier": 8.32e-08, + "spick": 8.32e-08, + "spong": 8.32e-08, + "stallworth": 8.32e-08, + "stane": 8.32e-08, + "staveley": 8.32e-08, + "stavropol": 8.32e-08, + "steakhouses": 8.32e-08, + "sterilizer": 8.32e-08, + "stettin": 8.32e-08, + "stickley": 8.32e-08, + "stiffens": 8.32e-08, + "stilicho": 8.32e-08, + "stille": 8.32e-08, + "stith": 8.32e-08, + "stokke": 8.32e-08, + "stong": 8.32e-08, + "storeyed": 8.32e-08, + "stradivari": 8.32e-08, + "stri": 8.32e-08, + "strick": 8.32e-08, + "subj": 8.32e-08, + "subsequence": 8.32e-08, + "suger": 8.32e-08, + "suid": 8.32e-08, + "sukhumvit": 8.32e-08, + "sundarbans": 8.32e-08, + "superintendence": 8.32e-08, + "superstructures": 8.32e-08, + "suppleness": 8.32e-08, + "suprising": 8.32e-08, + "surendra": 8.32e-08, + "surigao": 8.32e-08, + "susies": 8.32e-08, + "svcs": 8.32e-08, + "svea": 8.32e-08, + "swachh": 8.32e-08, + "sweetbreads": 8.32e-08, + "swg": 8.32e-08, + "swoons": 8.32e-08, + "tadic": 8.32e-08, + "taiba": 8.32e-08, + "taibbi": 8.32e-08, + "talen": 8.32e-08, + "tamari": 8.32e-08, + "tangshan": 8.32e-08, + "taproot": 8.32e-08, + "tapscott": 8.32e-08, + "tartt": 8.32e-08, + "taschen": 8.32e-08, + "tatham": 8.32e-08, + "tatt": 8.32e-08, + "tazed": 8.32e-08, + "tehama": 8.32e-08, + "tektronix": 8.32e-08, + "telmo": 8.32e-08, + "temping": 8.32e-08, + "tempora": 8.32e-08, + "temur": 8.32e-08, + "tenting": 8.32e-08, + "tetrapods": 8.32e-08, + "tevye": 8.32e-08, + "thanjavur": 8.32e-08, + "thel": 8.32e-08, + "thermidor": 8.32e-08, + "thimphu": 8.32e-08, + "thn": 8.32e-08, + "threeway": 8.32e-08, + "thunberg": 8.32e-08, + "thundercat": 8.32e-08, + "tidier": 8.32e-08, + "tilings": 8.32e-08, + "timmerman": 8.32e-08, + "tindal": 8.32e-08, + "tiree": 8.32e-08, + "tissier": 8.32e-08, + "tkachuk": 8.32e-08, + "tlb": 8.32e-08, + "tohru": 8.32e-08, + "topol": 8.32e-08, + "torin": 8.32e-08, + "torrenting": 8.32e-08, + "torrie": 8.32e-08, + "tracee": 8.32e-08, + "tragicomedy": 8.32e-08, + "transcendentalism": 8.32e-08, + "transgenderism": 8.32e-08, + "transposable": 8.32e-08, + "trazodone": 8.32e-08, + "treed": 8.32e-08, + "tribbles": 8.32e-08, + "tros": 8.32e-08, + "trossachs": 8.32e-08, + "trouper": 8.32e-08, + "truk": 8.32e-08, + "tsering": 8.32e-08, + "tsingtao": 8.32e-08, + "tulowitzki": 8.32e-08, + "turlington": 8.32e-08, + "tushar": 8.32e-08, + "tve": 8.32e-08, + "twt": 8.32e-08, + "tyrannies": 8.32e-08, + "tyrannosaur": 8.32e-08, + "tzatziki": 8.32e-08, + "uaf": 8.32e-08, + "uhlmann": 8.32e-08, + "uim": 8.32e-08, + "ulis": 8.32e-08, + "umbrian": 8.32e-08, + "underpriced": 8.32e-08, + "underrepresentation": 8.32e-08, + "univer": 8.32e-08, + "unprovable": 8.32e-08, + "unseaworthy": 8.32e-08, + "unsere": 8.32e-08, + "upl": 8.32e-08, + "uzbekistans": 8.32e-08, + "vacca": 8.32e-08, + "vainglorious": 8.32e-08, + "vargo": 8.32e-08, + "venango": 8.32e-08, + "vfc": 8.32e-08, + "vgs": 8.32e-08, + "viale": 8.32e-08, + "videoclip": 8.32e-08, + "videoconference": 8.32e-08, + "vidor": 8.32e-08, + "villainess": 8.32e-08, + "vinca": 8.32e-08, + "viren": 8.32e-08, + "vishwa": 8.32e-08, + "viu": 8.32e-08, + "voluntarism": 8.32e-08, + "vpr": 8.32e-08, + "waca": 8.32e-08, + "wacken": 8.32e-08, + "waddy": 8.32e-08, + "wadley": 8.32e-08, + "waris": 8.32e-08, + "watermill": 8.32e-08, + "webisode": 8.32e-08, + "weer": 8.32e-08, + "welll": 8.32e-08, + "wess": 8.32e-08, + "westcliff": 8.32e-08, + "westminsters": 8.32e-08, + "wfan": 8.32e-08, + "whartons": 8.32e-08, + "whorf": 8.32e-08, + "widdecombe": 8.32e-08, + "wiggy": 8.32e-08, + "wilkens": 8.32e-08, + "willmar": 8.32e-08, + "wolman": 8.32e-08, + "wreckless": 8.32e-08, + "wrestlings": 8.32e-08, + "wristlet": 8.32e-08, + "wuh": 8.32e-08, + "wussy": 8.32e-08, + "xanthan": 8.32e-08, + "xdd": 8.32e-08, + "xnxx": 8.32e-08, + "yabu": 8.32e-08, + "yac": 8.32e-08, + "yago": 8.32e-08, + "yammering": 8.32e-08, + "yanis": 8.32e-08, + "yardbirds": 8.32e-08, + "yaroslav": 8.32e-08, + "yaroslavl": 8.32e-08, + "yellowcard": 8.32e-08, + "yerself": 8.32e-08, + "yoram": 8.32e-08, + "yoshihiro": 8.32e-08, + "yount": 8.32e-08, + "yukino": 8.32e-08, + "zambians": 8.32e-08, + "zaras": 8.32e-08, + "zeena": 8.32e-08, + "zepeda": 8.32e-08, + "zha": 8.32e-08, + "zhirinovsky": 8.32e-08, + "zielinski": 8.32e-08, + "aakash": 8.13e-08, + "abjectly": 8.13e-08, + "absolutley": 8.13e-08, + "acetonitrile": 8.13e-08, + "actinide": 8.13e-08, + "adena": 8.13e-08, + "aftonbladet": 8.13e-08, + "agbonlahor": 8.13e-08, + "agrochemicals": 8.13e-08, + "airworthy": 8.13e-08, + "alembert": 8.13e-08, + "alenia": 8.13e-08, + "alh": 8.13e-08, + "alibabas": 8.13e-08, + "alkene": 8.13e-08, + "allons": 8.13e-08, + "almaz": 8.13e-08, + "altavista": 8.13e-08, + "amann": 8.13e-08, + "amboise": 8.13e-08, + "amol": 8.13e-08, + "ampoules": 8.13e-08, + "anabelle": 8.13e-08, + "anaplastic": 8.13e-08, + "andaz": 8.13e-08, + "anik": 8.13e-08, + "anl": 8.13e-08, + "annalisa": 8.13e-08, + "anteroom": 8.13e-08, + "antiserum": 8.13e-08, + "antwoord": 8.13e-08, + "aow": 8.13e-08, + "apophis": 8.13e-08, + "appin": 8.13e-08, + "apportioning": 8.13e-08, + "aprile": 8.13e-08, + "apta": 8.13e-08, + "aquatint": 8.13e-08, + "arago": 8.13e-08, + "arbeloa": 8.13e-08, + "arced": 8.13e-08, + "argentino": 8.13e-08, + "arh": 8.13e-08, + "arley": 8.13e-08, + "arme": 8.13e-08, + "ashers": 8.13e-08, + "athleisure": 8.13e-08, + "atmel": 8.13e-08, + "aulus": 8.13e-08, + "ausa": 8.13e-08, + "avantgarde": 8.13e-08, + "aversions": 8.13e-08, + "aviemore": 8.13e-08, + "avocation": 8.13e-08, + "axford": 8.13e-08, + "axwell": 8.13e-08, + "bachao": 8.13e-08, + "bahamut": 8.13e-08, + "baji": 8.13e-08, + "bakhtin": 8.13e-08, + "balb": 8.13e-08, + "baranski": 8.13e-08, + "barri": 8.13e-08, + "bartra": 8.13e-08, + "baryons": 8.13e-08, + "baseload": 8.13e-08, + "batali": 8.13e-08, + "battuta": 8.13e-08, + "bava": 8.13e-08, + "bawden": 8.13e-08, + "baxley": 8.13e-08, + "bayon": 8.13e-08, + "bdt": 8.13e-08, + "beaching": 8.13e-08, + "beaumarchais": 8.13e-08, + "beaumaris": 8.13e-08, + "becuz": 8.13e-08, + "bedsit": 8.13e-08, + "begrudging": 8.13e-08, + "beirne": 8.13e-08, + "belgrano": 8.13e-08, + "belhaven": 8.13e-08, + "bellary": 8.13e-08, + "benfield": 8.13e-08, + "bensonhurst": 8.13e-08, + "bentz": 8.13e-08, + "beps": 8.13e-08, + "bernheim": 8.13e-08, + "berni": 8.13e-08, + "berthelot": 8.13e-08, + "bertone": 8.13e-08, + "besmirched": 8.13e-08, + "betrayers": 8.13e-08, + "bharuch": 8.13e-08, + "bhau": 8.13e-08, + "bheem": 8.13e-08, + "biber": 8.13e-08, + "bibl": 8.13e-08, + "bibliothek": 8.13e-08, + "bighit": 8.13e-08, + "bijapur": 8.13e-08, + "bili": 8.13e-08, + "billowy": 8.13e-08, + "binay": 8.13e-08, + "biographic": 8.13e-08, + "bion": 8.13e-08, + "bionicle": 8.13e-08, + "biosimilars": 8.13e-08, + "biphasic": 8.13e-08, + "biphenyls": 8.13e-08, + "birkenstock": 8.13e-08, + "bisect": 8.13e-08, + "bkb": 8.13e-08, + "blackhat": 8.13e-08, + "blairgowrie": 8.13e-08, + "blakeslee": 8.13e-08, + "blasphemed": 8.13e-08, + "blaxland": 8.13e-08, + "bluebonnet": 8.13e-08, + "boch": 8.13e-08, + "bogdanovich": 8.13e-08, + "bollywoods": 8.13e-08, + "bols": 8.13e-08, + "bondurant": 8.13e-08, + "bont": 8.13e-08, + "boodle": 8.13e-08, + "boops": 8.13e-08, + "bootcamps": 8.13e-08, + "boringly": 8.13e-08, + "boscawen": 8.13e-08, + "botswanas": 8.13e-08, + "boveri": 8.13e-08, + "boyar": 8.13e-08, + "braidwood": 8.13e-08, + "brandys": 8.13e-08, + "brannen": 8.13e-08, + "branstad": 8.13e-08, + "breeden": 8.13e-08, + "breguet": 8.13e-08, + "brf": 8.13e-08, + "briere": 8.13e-08, + "brisco": 8.13e-08, + "brittleness": 8.13e-08, + "brogden": 8.13e-08, + "btob": 8.13e-08, + "bucco": 8.13e-08, + "buehrle": 8.13e-08, + "bulbul": 8.13e-08, + "bullfighters": 8.13e-08, + "bunche": 8.13e-08, + "bundchen": 8.13e-08, + "bungay": 8.13e-08, + "bunnymen": 8.13e-08, + "bursted": 8.13e-08, + "bushra": 8.13e-08, + "bustos": 8.13e-08, + "butina": 8.13e-08, + "butterfinger": 8.13e-08, + "bwr": 8.13e-08, + "byeong": 8.13e-08, + "caber": 8.13e-08, + "caco": 8.13e-08, + "calarts": 8.13e-08, + "calcined": 8.13e-08, + "calfs": 8.13e-08, + "calibur": 8.13e-08, + "californica": 8.13e-08, + "calzaghe": 8.13e-08, + "cambium": 8.13e-08, + "canara": 8.13e-08, + "canting": 8.13e-08, + "cardoza": 8.13e-08, + "careen": 8.13e-08, + "caret": 8.13e-08, + "caricaturist": 8.13e-08, + "carnac": 8.13e-08, + "carpetbaggers": 8.13e-08, + "carys": 5.25e-08, + "catecholamines": 8.13e-08, + "cathepsin": 8.13e-08, + "cauca": 8.13e-08, + "cayden": 8.13e-08, + "cemex": 8.13e-08, + "chaffey": 8.13e-08, + "chalke": 8.13e-08, + "chalo": 8.13e-08, + "chanute": 8.13e-08, + "chapati": 8.13e-08, + "chapbooks": 8.13e-08, + "charr": 8.13e-08, + "chelios": 8.13e-08, + "chengs": 8.13e-08, + "chervil": 8.13e-08, + "chh": 8.13e-08, + "chiangmai": 8.13e-08, + "chipperfield": 8.13e-08, + "chmerkovskiy": 8.13e-08, + "chole": 8.13e-08, + "ciliated": 8.13e-08, + "cinderblock": 8.13e-08, + "cira": 8.13e-08, + "circumnavigated": 8.13e-08, + "ciri": 8.13e-08, + "civvies": 8.13e-08, + "clayey": 8.13e-08, + "clockmaker": 8.13e-08, + "cluelessness": 8.13e-08, + "cmbs": 8.13e-08, + "cnh": 8.13e-08, + "codifies": 8.13e-08, + "collegeville": 8.13e-08, + "colloquy": 8.13e-08, + "coltons": 8.13e-08, + "comminuted": 8.13e-08, + "communions": 8.13e-08, + "comput": 8.13e-08, + "concourses": 8.13e-08, + "confiscates": 8.13e-08, + "conkers": 2.63e-08, + "conquistadores": 8.13e-08, + "consequentialist": 8.13e-08, + "conservatorium": 8.13e-08, + "conveyancer": 8.13e-08, + "copperas": 8.13e-08, + "coralie": 8.13e-08, + "corbels": 8.13e-08, + "corbetts": 8.13e-08, + "corfe": 8.13e-08, + "correggio": 8.13e-08, + "correspondance": 8.13e-08, + "corsicana": 8.13e-08, + "coton": 8.13e-08, + "cotonou": 8.13e-08, + "couching": 8.13e-08, + "cowells": 8.13e-08, + "cowlitz": 8.13e-08, + "cowra": 8.13e-08, + "coys": 8.13e-08, + "coziness": 8.13e-08, + "cppcc": 8.13e-08, + "credenza": 8.13e-08, + "crj": 8.13e-08, + "crooned": 8.13e-08, + "cuckolds": 8.13e-08, + "cueva": 8.13e-08, + "culo": 8.13e-08, + "cuyler": 8.13e-08, + "cwg": 8.13e-08, + "cyanosis": 8.13e-08, + "cytogenetics": 8.13e-08, + "dailymail": 8.13e-08, + "damir": 8.13e-08, + "dapp": 8.13e-08, + "dataflow": 8.13e-08, + "datagram": 8.13e-08, + "daytons": 8.13e-08, + "decanting": 8.13e-08, + "decedents": 8.13e-08, + "decius": 8.13e-08, + "decongestant": 8.13e-08, + "deflategate": 8.13e-08, + "dega": 8.13e-08, + "degassing": 8.13e-08, + "delors": 8.13e-08, + "demonetized": 8.13e-08, + "demoralization": 8.13e-08, + "demotivated": 8.13e-08, + "demy": 8.13e-08, + "deploring": 8.13e-08, + "deri": 8.13e-08, + "desir": 8.13e-08, + "devere": 8.13e-08, + "deviancy": 8.13e-08, + "dextromethorphan": 8.13e-08, + "diachronic": 8.13e-08, + "dieticians": 8.13e-08, + "dioecious": 8.13e-08, + "diomedes": 8.13e-08, + "distills": 8.13e-08, + "distributorship": 8.13e-08, + "dmitriy": 8.13e-08, + "domenech": 8.13e-08, + "domiciliary": 8.13e-08, + "dontcha": 8.13e-08, + "dorion": 8.13e-08, + "downham": 8.13e-08, + "downhole": 8.13e-08, + "downstage": 8.13e-08, + "dragonforce": 8.13e-08, + "dribbler": 8.13e-08, + "drooped": 8.13e-08, + "duffey": 8.13e-08, + "dulaney": 8.13e-08, + "duniya": 8.13e-08, + "duplessis": 8.13e-08, + "dupri": 8.13e-08, + "dwelleth": 8.13e-08, + "dwm": 8.13e-08, + "dyan": 8.13e-08, + "ebonyi": 8.13e-08, + "ebury": 8.13e-08, + "eddi": 8.13e-08, + "edger": 8.13e-08, + "educationalists": 8.13e-08, + "effaced": 8.13e-08, + "efrain": 8.13e-08, + "egomaniacal": 8.13e-08, + "eichner": 8.13e-08, + "eip": 8.13e-08, + "eisenstadt": 8.13e-08, + "elongating": 8.13e-08, + "emancipatory": 8.13e-08, + "emarketer": 8.13e-08, + "emet": 8.13e-08, + "encroaches": 8.13e-08, + "endocrinologists": 8.13e-08, + "endoderm": 8.13e-08, + "enlistments": 8.13e-08, + "enmities": 8.13e-08, + "entreprise": 8.13e-08, + "entwine": 8.13e-08, + "enu": 8.13e-08, + "epaulettes": 8.13e-08, + "epigraphic": 8.13e-08, + "ericka": 8.13e-08, + "ernies": 8.13e-08, + "esol": 8.13e-08, + "esop": 8.13e-08, + "ethelred": 8.13e-08, + "etten": 8.13e-08, + "etty": 8.13e-08, + "etzion": 8.13e-08, + "eucalypts": 8.13e-08, + "europ": 8.13e-08, + "evarts": 8.13e-08, + "ewood": 8.13e-08, + "examen": 8.13e-08, + "exi": 8.13e-08, + "exide": 8.13e-08, + "exonerates": 8.13e-08, + "extralegal": 8.13e-08, + "extrasolar": 8.13e-08, + "extrication": 8.13e-08, + "ezell": 8.13e-08, + "facelifts": 8.13e-08, + "fappening": 8.13e-08, + "faslane": 8.13e-08, + "federative": 8.13e-08, + "fefe": 8.13e-08, + "ferre": 8.13e-08, + "fetishists": 8.13e-08, + "ffestiniog": 8.13e-08, + "fhs": 8.13e-08, + "fiduciaries": 8.13e-08, + "filibustered": 8.13e-08, + "fineman": 8.13e-08, + "fireproofing": 8.13e-08, + "fitt": 8.13e-08, + "flagbearer": 8.13e-08, + "flagstones": 8.13e-08, + "fli": 8.13e-08, + "florescent": 8.13e-08, + "flubbed": 8.13e-08, + "fmi": 8.13e-08, + "fontenot": 8.13e-08, + "foreleg": 8.13e-08, + "fpo": 8.13e-08, + "frats": 8.13e-08, + "freundlich": 8.13e-08, + "frontiersmen": 8.13e-08, + "fsis": 8.13e-08, + "furey": 8.13e-08, + "fuuuck": 8.13e-08, + "fux": 8.13e-08, + "gabrielles": 8.13e-08, + "gagosian": 8.13e-08, + "gakkai": 8.13e-08, + "galactosidase": 8.13e-08, + "ganj": 8.13e-08, + "garhwal": 8.13e-08, + "gaucher": 8.13e-08, + "gauld": 8.13e-08, + "gawky": 8.13e-08, + "gelber": 8.13e-08, + "genbank": 8.13e-08, + "geocities": 8.13e-08, + "ghalib": 8.13e-08, + "giardino": 8.13e-08, + "gillespies": 8.13e-08, + "ginga": 8.13e-08, + "gintoki": 8.13e-08, + "ginuwine": 8.13e-08, + "glabra": 8.13e-08, + "glantz": 8.13e-08, + "glarus": 8.13e-08, + "glasshouses": 8.13e-08, + "glavine": 8.13e-08, + "gledhill": 8.13e-08, + "glendenning": 8.13e-08, + "glenfield": 8.13e-08, + "globs": 8.13e-08, + "glockenspiel": 8.13e-08, + "gloop": 8.13e-08, + "goads": 8.13e-08, + "goanna": 8.13e-08, + "godawful": 8.13e-08, + "godefroy": 8.13e-08, + "gossage": 8.13e-08, + "gowrie": 8.13e-08, + "gpe": 8.13e-08, + "grandads": 8.13e-08, + "grandbaby": 8.13e-08, + "grandmama": 8.13e-08, + "grassroot": 8.13e-08, + "grayed": 8.13e-08, + "greyer": 8.13e-08, + "grosset": 8.13e-08, + "grossmans": 8.13e-08, + "groveland": 8.13e-08, + "gruffydd": 8.13e-08, + "guarda": 8.13e-08, + "guice": 8.13e-08, + "guldan": 8.13e-08, + "gulshan": 8.13e-08, + "guptas": 7.41e-08, + "gurgles": 8.13e-08, + "gutmann": 8.13e-08, + "gwaii": 8.13e-08, + "gwas": 8.13e-08, + "gyi": 8.13e-08, + "habilis": 8.13e-08, + "hacktivist": 8.13e-08, + "haff": 8.13e-08, + "hakata": 8.13e-08, + "hakluyt": 8.13e-08, + "haleakala": 8.13e-08, + "hally": 8.13e-08, + "halon": 8.13e-08, + "hanabi": 8.13e-08, + "happyness": 8.13e-08, + "harmonie": 8.13e-08, + "hawarden": 8.13e-08, + "haydns": 8.13e-08, + "hcn": 8.13e-08, + "headbangers": 8.13e-08, + "healys": 8.13e-08, + "hearns": 8.13e-08, + "heartrending": 8.13e-08, + "hecla": 8.13e-08, + "heda": 8.13e-08, + "helvetia": 8.13e-08, + "hemline": 8.13e-08, + "henty": 8.13e-08, + "heon": 8.13e-08, + "hepburns": 8.13e-08, + "herzen": 8.13e-08, + "hesitance": 8.13e-08, + "heures": 8.13e-08, + "hewer": 8.13e-08, + "hextall": 8.13e-08, + "hhi": 8.13e-08, + "hidin": 8.13e-08, + "highborn": 8.13e-08, + "highmore": 8.13e-08, + "hilar": 8.13e-08, + "hims": 8.13e-08, + "hisashi": 8.13e-08, + "hixson": 8.13e-08, + "holford": 8.13e-08, + "holzman": 8.13e-08, + "homeopaths": 8.13e-08, + "homeschoolers": 8.13e-08, + "hooah": 8.13e-08, + "hopp": 8.13e-08, + "horchata": 8.13e-08, + "horie": 8.13e-08, + "horley": 8.13e-08, + "horo": 8.13e-08, + "horsfall": 8.13e-08, + "horthy": 8.13e-08, + "horwath": 8.13e-08, + "hotty": 8.13e-08, + "howick": 8.13e-08, + "hoxie": 8.13e-08, + "hpt": 8.13e-08, + "hsun": 8.13e-08, + "hughson": 8.13e-08, + "humint": 8.13e-08, + "humourless": 8.13e-08, + "huna": 8.13e-08, + "hussains": 8.13e-08, + "hvdc": 8.13e-08, + "hypertonic": 8.13e-08, + "hypostasis": 8.13e-08, + "hypothesizes": 8.13e-08, + "ibero": 8.13e-08, + "idealizing": 8.13e-08, + "idrc": 8.13e-08, + "ieuan": 8.13e-08, + "ignaz": 8.13e-08, + "ikat": 8.13e-08, + "illum": 8.13e-08, + "immunogenic": 8.13e-08, + "immunosuppressant": 8.13e-08, + "imprecision": 8.13e-08, + "incurably": 8.13e-08, + "infringers": 8.13e-08, + "insensibly": 8.13e-08, + "insets": 8.13e-08, + "intan": 8.13e-08, + "integrins": 8.13e-08, + "internat": 8.13e-08, + "interstices": 8.13e-08, + "intervarsity": 8.13e-08, + "intime": 8.13e-08, + "intonations": 8.13e-08, + "intramedullary": 8.13e-08, + "irreproachable": 8.13e-08, + "ismaili": 8.13e-08, + "italie": 8.13e-08, + "iwasaki": 8.13e-08, + "iyad": 8.13e-08, + "jaggi": 8.13e-08, + "jamon": 8.13e-08, + "jardines": 8.13e-08, + "jarome": 8.13e-08, + "jasa": 8.13e-08, + "jawing": 8.13e-08, + "jaxa": 8.13e-08, + "jelinek": 8.13e-08, + "jemez": 8.13e-08, + "jeopardising": 8.13e-08, + "jeters": 8.13e-08, + "jex": 8.13e-08, + "jobbik": 8.13e-08, + "jodorowsky": 8.13e-08, + "jornada": 8.13e-08, + "joshy": 8.13e-08, + "jovanovic": 8.13e-08, + "juanes": 8.13e-08, + "jumpman": 8.13e-08, + "jumpshot": 8.13e-08, + "junpei": 8.13e-08, + "kabel": 8.13e-08, + "kaiden": 8.13e-08, + "kalia": 8.13e-08, + "kangra": 8.13e-08, + "karachis": 8.13e-08, + "kardon": 8.13e-08, + "karmapa": 8.13e-08, + "kassam": 8.13e-08, + "kassian": 8.13e-08, + "katheryn": 8.13e-08, + "kci": 8.13e-08, + "keem": 8.13e-08, + "kefauver": 8.13e-08, + "keli": 8.13e-08, + "kempf": 8.13e-08, + "keshav": 8.13e-08, + "kett": 8.13e-08, + "khatri": 8.13e-08, + "khazar": 8.13e-08, + "khazars": 8.13e-08, + "khulna": 8.13e-08, + "killie": 8.13e-08, + "kistler": 8.13e-08, + "kiu": 8.13e-08, + "klepto": 8.13e-08, + "knopfler": 8.13e-08, + "kollywood": 8.13e-08, + "kommersant": 8.13e-08, + "komorowski": 8.13e-08, + "konta": 8.13e-08, + "korma": 8.13e-08, + "kosinski": 8.13e-08, + "kottayam": 8.13e-08, + "koy": 8.13e-08, + "krew": 8.13e-08, + "krol": 8.13e-08, + "kucherov": 8.13e-08, + "kuehn": 8.13e-08, + "kuki": 8.13e-08, + "kummer": 8.13e-08, + "kurdi": 8.13e-08, + "kutztown": 8.13e-08, + "kuvira": 8.13e-08, + "kyanite": 8.13e-08, + "labonte": 8.13e-08, + "lach": 8.13e-08, + "lactamase": 8.13e-08, + "laferrari": 8.13e-08, + "lagunitas": 8.13e-08, + "lamoureux": 8.13e-08, + "languishes": 8.13e-08, + "largess": 8.13e-08, + "laur": 8.13e-08, + "lavalin": 8.13e-08, + "leboeuf": 8.13e-08, + "ledley": 8.13e-08, + "lefthand": 8.13e-08, + "legitimization": 8.13e-08, + "leiber": 8.13e-08, + "lelia": 8.13e-08, + "leonardi": 8.13e-08, + "leonhardt": 8.13e-08, + "levu": 8.13e-08, + "licentiousness": 8.13e-08, + "limonene": 8.13e-08, + "lindros": 8.13e-08, + "linearized": 8.13e-08, + "linkers": 8.13e-08, + "linthicum": 8.13e-08, + "liskeard": 8.13e-08, + "litem": 8.13e-08, + "livered": 8.13e-08, + "livestrong": 8.13e-08, + "lnr": 8.13e-08, + "lnt": 8.13e-08, + "lnternational": 8.13e-08, + "lockley": 8.13e-08, + "locsin": 8.13e-08, + "logi": 8.13e-08, + "lorrain": 8.13e-08, + "losey": 8.13e-08, + "lozada": 8.13e-08, + "luangwa": 8.13e-08, + "luciani": 8.13e-08, + "lucienne": 8.13e-08, + "lupone": 8.13e-08, + "luscombe": 8.13e-08, + "luth": 8.13e-08, + "luu": 8.13e-08, + "lwin": 8.13e-08, + "lyanna": 8.13e-08, + "lycett": 8.13e-08, + "lycia": 8.13e-08, + "lycurgus": 8.13e-08, + "lyf": 8.13e-08, + "lysosome": 8.13e-08, + "mabuse": 8.13e-08, + "macfarland": 8.13e-08, + "macguffin": 8.13e-08, + "maciej": 8.13e-08, + "macleay": 8.13e-08, + "madagascars": 8.13e-08, + "maddi": 8.13e-08, + "maestra": 8.13e-08, + "maharani": 8.13e-08, + "maile": 8.13e-08, + "maite": 8.13e-08, + "malli": 8.13e-08, + "manch": 8.13e-08, + "manche": 8.13e-08, + "mant": 8.13e-08, + "manzoor": 8.13e-08, + "marinades": 8.13e-08, + "markland": 8.13e-08, + "marlboros": 8.13e-08, + "marmots": 8.13e-08, + "marylin": 8.13e-08, + "marzo": 8.13e-08, + "maseru": 8.13e-08, + "masud": 8.13e-08, + "matei": 8.13e-08, + "maudie": 8.13e-08, + "mauritz": 8.13e-08, + "mayakovsky": 8.13e-08, + "mck": 8.13e-08, + "mckinstry": 8.13e-08, + "mcmartin": 8.13e-08, + "mcnerney": 8.13e-08, + "mcpartland": 8.13e-08, + "meaney": 8.13e-08, + "mebane": 8.13e-08, + "meee": 8.13e-08, + "melek": 8.13e-08, + "memetic": 8.13e-08, + "meningeal": 8.13e-08, + "menke": 8.13e-08, + "mersin": 8.13e-08, + "metallicity": 8.13e-08, + "metamaterial": 8.13e-08, + "metamorphose": 8.13e-08, + "methamphetamines": 8.13e-08, + "methode": 8.13e-08, + "metrobus": 8.13e-08, + "michelet": 8.13e-08, + "microlight": 8.13e-08, + "midmorning": 8.13e-08, + "midnights": 5.25e-08, + "mielke": 8.13e-08, + "miike": 8.13e-08, + "millenniums": 8.13e-08, + "milquetoast": 8.13e-08, + "mineo": 8.13e-08, + "minesweepers": 8.13e-08, + "minette": 8.13e-08, + "minnick": 8.13e-08, + "minstrelsy": 8.13e-08, + "miran": 8.13e-08, + "misano": 8.13e-08, + "misapplication": 8.13e-08, + "misdeed": 8.13e-08, + "misgendering": 8.13e-08, + "misjudging": 8.13e-08, + "mississippians": 8.13e-08, + "mll": 8.13e-08, + "mlse": 8.13e-08, + "mmk": 8.13e-08, + "mogherini": 8.13e-08, + "mogo": 8.13e-08, + "mohmand": 8.13e-08, + "molo": 8.13e-08, + "mondial": 8.13e-08, + "monkhouse": 8.13e-08, + "monod": 8.13e-08, + "monroy": 8.13e-08, + "montgomeryshire": 8.13e-08, + "moosa": 8.13e-08, + "moralism": 8.13e-08, + "morganton": 8.13e-08, + "motoko": 8.13e-08, + "mousey": 8.13e-08, + "msx": 8.13e-08, + "mup": 8.13e-08, + "murasaki": 8.13e-08, + "muscly": 8.13e-08, + "muswell": 8.13e-08, + "muybridge": 8.13e-08, + "mvm": 8.13e-08, + "myocytes": 8.13e-08, + "naep": 8.13e-08, + "nahal": 8.13e-08, + "naic": 8.13e-08, + "naing": 8.13e-08, + "najafi": 8.13e-08, + "nakama": 8.13e-08, + "nako": 8.13e-08, + "napoca": 8.13e-08, + "narutos": 8.13e-08, + "natali": 8.13e-08, + "navratri": 8.13e-08, + "neilsen": 8.13e-08, + "neith": 8.13e-08, + "nera": 8.13e-08, + "nerissa": 8.13e-08, + "nervo": 8.13e-08, + "neuropathology": 8.13e-08, + "neutralizer": 8.13e-08, + "newall": 8.13e-08, + "newburg": 8.13e-08, + "newnes": 8.13e-08, + "ngk": 8.13e-08, + "ngugi": 8.13e-08, + "nickell": 8.13e-08, + "nickles": 8.13e-08, + "nincompoop": 8.13e-08, + "nira": 8.13e-08, + "nogi": 8.13e-08, + "nogueira": 8.13e-08, + "noncitizens": 8.13e-08, + "nonexclusive": 8.13e-08, + "norc": 8.13e-08, + "norrington": 8.13e-08, + "noway": 8.13e-08, + "numpy": 8.13e-08, + "nutraceutical": 8.13e-08, + "nutso": 8.13e-08, + "nxivm": 8.13e-08, + "okeefes": 8.13e-08, + "obfuscating": 8.13e-08, + "oblak": 8.13e-08, + "obsessional": 8.13e-08, + "ocon": 8.13e-08, + "ocracoke": 8.13e-08, + "octopi": 8.13e-08, + "oef": 8.13e-08, + "offic": 8.13e-08, + "ofm": 8.13e-08, + "ofori": 8.13e-08, + "ogallala": 8.13e-08, + "ohmic": 8.13e-08, + "oktober": 8.13e-08, + "omegas": 6.92e-08, + "oob": 8.13e-08, + "oogie": 8.13e-08, + "openwork": 8.13e-08, + "opuntia": 8.13e-08, + "orderliness": 8.13e-08, + "orients": 8.13e-08, + "osteogenic": 8.13e-08, + "osteotomy": 8.13e-08, + "otsu": 8.13e-08, + "outre": 8.13e-08, + "outriders": 8.13e-08, + "outwork": 8.13e-08, + "oversaturated": 8.13e-08, + "overspent": 8.13e-08, + "overstocked": 8.13e-08, + "overtraining": 8.13e-08, + "owcp": 8.13e-08, + "owusu": 8.13e-08, + "ozils": 8.13e-08, + "palabras": 8.13e-08, + "palaeozoic": 8.13e-08, + "paleogene": 8.13e-08, + "panathinaikos": 8.13e-08, + "panmunjom": 8.13e-08, + "pannonia": 8.13e-08, + "papering": 8.13e-08, + "parchments": 8.13e-08, + "parishs": 8.13e-08, + "passau": 8.13e-08, + "passo": 8.13e-08, + "pdes": 8.13e-08, + "peabodys": 8.13e-08, + "peau": 8.13e-08, + "peevish": 8.13e-08, + "peh": 8.13e-08, + "pelayo": 8.13e-08, + "pene": 8.13e-08, + "perfused": 8.13e-08, + "perjure": 8.13e-08, + "permissiveness": 8.13e-08, + "pernell": 8.13e-08, + "persuader": 8.13e-08, + "peshwa": 8.13e-08, + "peterkin": 8.13e-08, + "petruchio": 8.13e-08, + "pgce": 8.13e-08, + "phillimore": 8.13e-08, + "phlebotomist": 8.13e-08, + "phosgene": 8.13e-08, + "phryne": 8.13e-08, + "physicalism": 8.13e-08, + "piaa": 8.13e-08, + "pictograms": 8.13e-08, + "piebald": 8.13e-08, + "piffle": 8.13e-08, + "piggery": 8.13e-08, + "pinecrest": 8.13e-08, + "pinters": 8.13e-08, + "pipkin": 8.13e-08, + "pirouettes": 8.13e-08, + "pista": 8.13e-08, + "pistil": 8.13e-08, + "pkd": 8.13e-08, + "planetoid": 8.13e-08, + "planked": 8.13e-08, + "pliskova": 8.13e-08, + "plutocratic": 8.13e-08, + "podiatrists": 8.13e-08, + "pogbas": 8.13e-08, + "pollards": 8.13e-08, + "polonaise": 8.13e-08, + "pontotoc": 8.13e-08, + "pook": 8.13e-08, + "poppycock": 8.13e-08, + "potatos": 8.13e-08, + "powerpoints": 8.13e-08, + "pranayama": 8.13e-08, + "prata": 8.13e-08, + "precooked": 8.13e-08, + "precum": 8.13e-08, + "preez": 8.13e-08, + "preis": 8.13e-08, + "premodern": 8.13e-08, + "premolar": 8.13e-08, + "pressly": 8.13e-08, + "priddy": 8.13e-08, + "primum": 8.13e-08, + "privateering": 8.13e-08, + "proficiencies": 8.13e-08, + "prokofievs": 8.13e-08, + "prope": 8.13e-08, + "pseudocode": 8.13e-08, + "psoas": 8.13e-08, + "psyllium": 8.13e-08, + "puddy": 8.13e-08, + "pukka": 8.13e-08, + "pumpers": 8.13e-08, + "pwned": 8.13e-08, + "pythian": 8.13e-08, + "qg": 8.13e-08, + "qso": 8.13e-08, + "quenneville": 8.13e-08, + "quiescence": 8.13e-08, + "radcliffes": 8.13e-08, + "radiantly": 8.13e-08, + "radiosurgery": 8.13e-08, + "rahal": 8.13e-08, + "railcard": 8.13e-08, + "raintree": 8.13e-08, + "rajaratnam": 8.13e-08, + "rambouillet": 8.13e-08, + "ranchero": 8.13e-08, + "rangy": 8.13e-08, + "ranulph": 8.13e-08, + "raos": 8.13e-08, + "rasha": 8.13e-08, + "rbr": 8.13e-08, + "realclearpolitics": 8.13e-08, + "reamer": 8.13e-08, + "rearming": 8.13e-08, + "rebelo": 8.13e-08, + "rechristened": 8.13e-08, + "recomended": 8.13e-08, + "recrystallization": 8.13e-08, + "reelect": 8.13e-08, + "reflow": 8.13e-08, + "regni": 8.13e-08, + "rehabs": 8.13e-08, + "reines": 8.13e-08, + "relevent": 8.13e-08, + "relinquishment": 8.13e-08, + "rephrasing": 8.13e-08, + "resister": 8.13e-08, + "ressources": 8.13e-08, + "reta": 8.13e-08, + "retiro": 8.13e-08, + "retrenched": 8.13e-08, + "revolutionist": 8.13e-08, + "rexall": 8.13e-08, + "rexha": 8.13e-08, + "rhetorician": 8.13e-08, + "rhinoceroses": 8.13e-08, + "rhomboid": 8.13e-08, + "rigoberto": 8.13e-08, + "risings": 8.13e-08, + "ritsuko": 8.13e-08, + "riverstone": 8.13e-08, + "rizzos": 8.13e-08, + "roadless": 8.13e-08, + "roccos": 8.13e-08, + "romped": 8.13e-08, + "ronchi": 8.13e-08, + "rondeau": 8.13e-08, + "ropa": 8.13e-08, + "rosalee": 8.13e-08, + "rosati": 8.13e-08, + "rosenbergs": 6.31e-08, + "rotherhithe": 8.13e-08, + "rott": 8.13e-08, + "roughage": 8.13e-08, + "rtgs": 8.13e-08, + "ruhl": 8.13e-08, + "ruka": 8.13e-08, + "rumanian": 8.13e-08, + "rwb": 8.13e-08, + "ryden": 8.13e-08, + "saath": 8.13e-08, + "sabatino": 8.13e-08, + "saeng": 8.13e-08, + "safire": 8.13e-08, + "saia": 8.13e-08, + "salivation": 8.13e-08, + "salm": 8.13e-08, + "saluda": 8.13e-08, + "samcro": 8.13e-08, + "samra": 8.13e-08, + "sandgate": 8.13e-08, + "sandpoint": 8.13e-08, + "sandwiching": 8.13e-08, + "sapo": 8.13e-08, + "sarc": 8.13e-08, + "sargsyan": 8.13e-08, + "sarl": 8.13e-08, + "sastri": 8.13e-08, + "saucepans": 8.13e-08, + "sauropod": 8.13e-08, + "sberbank": 8.13e-08, + "sbg": 8.13e-08, + "sbw": 8.13e-08, + "scabrous": 8.13e-08, + "scal": 8.13e-08, + "scaramucci": 8.13e-08, + "scatological": 8.13e-08, + "schwarzman": 8.13e-08, + "scowcroft": 8.13e-08, + "scriptwriting": 8.13e-08, + "scyther": 8.13e-08, + "sekolah": 8.13e-08, + "selfsame": 8.13e-08, + "sephardi": 8.13e-08, + "serapis": 8.13e-08, + "shaan": 8.13e-08, + "shamil": 8.13e-08, + "sharpsburg": 8.13e-08, + "sharyn": 8.13e-08, + "sheaffer": 8.13e-08, + "sheetal": 8.13e-08, + "shermer": 8.13e-08, + "shibe": 8.13e-08, + "showmen": 8.13e-08, + "shrouding": 8.13e-08, + "shulgin": 8.13e-08, + "sibert": 8.13e-08, + "sibiu": 8.13e-08, + "siddiqi": 8.13e-08, + "sideswiped": 8.13e-08, + "sile": 8.13e-08, + "siltation": 8.13e-08, + "simca": 8.13e-08, + "simplicius": 8.13e-08, + "simsbury": 8.13e-08, + "sirah": 8.13e-08, + "sixt": 8.13e-08, + "slane": 8.13e-08, + "sll": 8.13e-08, + "slothful": 8.13e-08, + "slott": 8.13e-08, + "sloughs": 8.13e-08, + "smashers": 8.13e-08, + "soekarno": 8.13e-08, + "solan": 8.13e-08, + "solicitude": 8.13e-08, + "soliloquies": 8.13e-08, + "sorento": 8.13e-08, + "souci": 8.13e-08, + "sourav": 8.13e-08, + "soxs": 8.13e-08, + "spearfishing": 8.13e-08, + "speedwell": 8.13e-08, + "spero": 8.13e-08, + "spikers": 8.13e-08, + "spurning": 8.13e-08, + "staden": 8.13e-08, + "starlit": 8.13e-08, + "stearic": 8.13e-08, + "steger": 8.13e-08, + "sterilise": 8.13e-08, + "stipules": 8.13e-08, + "stirlings": 8.13e-08, + "streetfighter": 8.13e-08, + "streisands": 8.13e-08, + "strongarm": 8.13e-08, + "stultifying": 8.13e-08, + "subducted": 8.13e-08, + "subheading": 8.13e-08, + "sucht": 8.13e-08, + "suen": 8.13e-08, + "suerte": 8.13e-08, + "summat": 8.13e-08, + "supercontinent": 8.13e-08, + "superspeed": 8.13e-08, + "surreys": 8.13e-08, + "sverdlovsk": 8.13e-08, + "swaminathan": 8.13e-08, + "synthesiser": 8.13e-08, + "systema": 8.13e-08, + "taeyang": 8.13e-08, + "tahan": 8.13e-08, + "taipan": 8.13e-08, + "taira": 8.13e-08, + "talisker": 8.13e-08, + "tambourines": 8.13e-08, + "tanqueray": 8.13e-08, + "tartuffe": 8.13e-08, + "tashas": 8.13e-08, + "tasmanians": 8.13e-08, + "tatchell": 8.13e-08, + "tattersalls": 8.13e-08, + "tecate": 8.13e-08, + "tecno": 8.13e-08, + "teles": 8.13e-08, + "tempel": 8.13e-08, + "tempi": 8.13e-08, + "tenderfoot": 8.13e-08, + "teneriffe": 8.13e-08, + "tennison": 8.13e-08, + "tenno": 8.13e-08, + "texter": 8.13e-08, + "tfg": 8.13e-08, + "thali": 8.13e-08, + "thermionic": 8.13e-08, + "thir": 8.13e-08, + "thirlwall": 8.13e-08, + "thorogood": 8.13e-08, + "thracians": 8.13e-08, + "thrifted": 8.13e-08, + "thrissur": 8.13e-08, + "throbbed": 8.13e-08, + "throug": 8.13e-08, + "tiler": 8.13e-08, + "timbs": 8.13e-08, + "tinubu": 8.13e-08, + "tmx": 8.13e-08, + "tnx": 8.13e-08, + "toffs": 8.13e-08, + "tomer": 8.13e-08, + "tommies": 8.13e-08, + "torchbearer": 8.13e-08, + "torfaen": 8.13e-08, + "tradeshow": 8.13e-08, + "transferees": 8.13e-08, + "trimethoprim": 8.13e-08, + "tripple": 8.13e-08, + "tromso": 8.13e-08, + "tsien": 8.13e-08, + "tuas": 8.13e-08, + "turandot": 8.13e-08, + "turi": 8.13e-08, + "tusker": 8.13e-08, + "tutting": 8.13e-08, + "tweener": 8.13e-08, + "twinkles": 8.13e-08, + "twyford": 8.13e-08, + "tyc": 8.13e-08, + "tytler": 8.13e-08, + "ubm": 8.13e-08, + "uce": 8.13e-08, + "unami": 8.13e-08, + "unattributed": 8.13e-08, + "uncaged": 8.13e-08, + "uncas": 8.13e-08, + "uncleanness": 8.13e-08, + "undersold": 8.13e-08, + "undesignated": 8.13e-08, + "unnerve": 8.13e-08, + "unpolluted": 8.13e-08, + "unsocial": 8.13e-08, + "untarnished": 8.13e-08, + "uplay": 8.13e-08, + "upmanship": 8.13e-08, + "uruguayans": 8.13e-08, + "valgus": 8.13e-08, + "vant": 8.13e-08, + "vanillin": 8.13e-08, + "vectored": 8.13e-08, + "vege": 8.13e-08, + "veldt": 8.13e-08, + "vendee": 8.13e-08, + "vente": 8.13e-08, + "ventimiglia": 8.13e-08, + "verga": 8.13e-08, + "vergennes": 8.13e-08, + "verrill": 8.13e-08, + "vesalius": 8.13e-08, + "vestas": 1.66e-08, + "viana": 8.13e-08, + "vikander": 8.13e-08, + "vishwanath": 8.13e-08, + "visioning": 8.13e-08, + "vlasic": 8.13e-08, + "vogels": 8.13e-08, + "vojvodina": 8.13e-08, + "volcanology": 8.13e-08, + "volstead": 8.13e-08, + "vygotsky": 8.13e-08, + "vyvanse": 8.13e-08, + "wacc": 8.13e-08, + "wanstead": 8.13e-08, + "wardour": 8.13e-08, + "warhawks": 8.13e-08, + "warshaw": 8.13e-08, + "warwicks": 8.13e-08, + "wassily": 8.13e-08, + "waterproofs": 8.13e-08, + "wearying": 8.13e-08, + "weatherill": 8.13e-08, + "weatherization": 8.13e-08, + "wedgies": 8.13e-08, + "weidmann": 8.13e-08, + "wels": 8.13e-08, + "westerlies": 8.13e-08, + "westmont": 8.13e-08, + "whata": 8.13e-08, + "whith": 8.13e-08, + "wicomico": 8.13e-08, + "windproof": 8.13e-08, + "witsel": 8.13e-08, + "womble": 8.13e-08, + "woodshop": 8.13e-08, + "woodyard": 8.13e-08, + "wordly": 8.13e-08, + "workpieces": 8.13e-08, + "worldstar": 8.13e-08, + "wst": 8.13e-08, + "wyverns": 8.13e-08, + "xenophobe": 8.13e-08, + "xw": 8.13e-08, + "yacoub": 8.13e-08, + "yameen": 8.13e-08, + "yangzhou": 8.13e-08, + "yelawolf": 8.13e-08, + "yoenis": 8.13e-08, + "yokel": 8.13e-08, + "yol": 8.13e-08, + "youzhny": 8.13e-08, + "zadeh": 8.13e-08, + "zamir": 8.13e-08, + "zatoichi": 8.13e-08, + "zazu": 8.13e-08, + "zeds": 5.75e-08, + "zentrum": 8.13e-08, + "zidanes": 8.13e-08, + "ziyang": 8.13e-08, + "zookeepers": 8.13e-08, + "zosia": 8.13e-08, + "zpass": 8.13e-08, + "zw": 8.13e-08, + "aae": 7.94e-08, + "aaps": 7.94e-08, + "abaco": 7.94e-08, + "abin": 7.94e-08, + "accreted": 7.94e-08, + "achmed": 7.94e-08, + "acos": 7.94e-08, + "acquiescing": 7.94e-08, + "adcc": 7.94e-08, + "adenoids": 7.94e-08, + "adham": 7.94e-08, + "admi": 7.94e-08, + "aerate": 7.94e-08, + "aetius": 7.94e-08, + "affectations": 7.94e-08, + "africaine": 7.94e-08, + "afte": 7.94e-08, + "aie": 7.94e-08, + "airbnbs": 7.94e-08, + "airings": 7.94e-08, + "aitkin": 7.94e-08, + "aitor": 7.94e-08, + "aje": 7.94e-08, + "aken": 7.94e-08, + "akure": 7.94e-08, + "alber": 7.94e-08, + "algy": 7.94e-08, + "alltime": 7.94e-08, + "aloes": 7.94e-08, + "alternet": 7.94e-08, + "amblyopia": 7.94e-08, + "ambos": 7.94e-08, + "amerindians": 7.94e-08, + "analects": 7.94e-08, + "anansi": 7.94e-08, + "anaphora": 7.94e-08, + "andolan": 7.94e-08, + "angas": 7.94e-08, + "animistic": 7.94e-08, + "anjo": 7.94e-08, + "annam": 7.94e-08, + "antagonizes": 7.94e-08, + "antarcticas": 7.94e-08, + "anticonvulsants": 7.94e-08, + "antigovernment": 7.94e-08, + "antigravity": 7.94e-08, + "antipoverty": 7.94e-08, + "antonina": 7.94e-08, + "aof": 7.94e-08, + "aphrodisiacs": 7.94e-08, + "apoel": 7.94e-08, + "apparantly": 7.94e-08, + "apprise": 7.94e-08, + "arbitrated": 7.94e-08, + "aroha": 7.94e-08, + "arrester": 7.94e-08, + "arsenault": 7.94e-08, + "asas": 7.59e-08, + "asaba": 7.94e-08, + "asuras": 7.94e-08, + "atchafalaya": 7.94e-08, + "atlanteans": 7.94e-08, + "atlantica": 7.94e-08, + "atsu": 7.94e-08, + "attachable": 7.94e-08, + "aua": 7.94e-08, + "audiencia": 7.94e-08, + "audioslave": 7.94e-08, + "augury": 7.94e-08, + "autocross": 7.94e-08, + "awesomest": 7.94e-08, + "azeris": 7.94e-08, + "backround": 7.94e-08, + "baffert": 7.94e-08, + "bagehot": 7.94e-08, + "baghdads": 7.94e-08, + "bagus": 7.94e-08, + "baiji": 7.94e-08, + "bajillion": 7.94e-08, + "bakula": 7.94e-08, + "ballycastle": 7.94e-08, + "baluchi": 7.94e-08, + "banisters": 7.94e-08, + "banka": 7.94e-08, + "banneker": 7.94e-08, + "barao": 7.94e-08, + "barberini": 7.94e-08, + "bardolph": 7.94e-08, + "bardwell": 7.94e-08, + "barkly": 7.94e-08, + "barmen": 7.94e-08, + "basit": 7.94e-08, + "batholith": 7.94e-08, + "beanbags": 7.94e-08, + "beav": 7.94e-08, + "bech": 7.94e-08, + "bedclothes": 7.94e-08, + "beem": 7.94e-08, + "belgaum": 7.94e-08, + "belgorod": 7.94e-08, + "bellefonte": 7.94e-08, + "belligerently": 7.94e-08, + "bellville": 7.94e-08, + "beograd": 7.94e-08, + "beom": 7.94e-08, + "berggren": 7.94e-08, + "bersih": 7.94e-08, + "bestia": 7.94e-08, + "bethell": 7.94e-08, + "beuys": 7.94e-08, + "bhar": 7.94e-08, + "bhb": 7.94e-08, + "bigamist": 7.94e-08, + "billon": 7.94e-08, + "bingbing": 7.94e-08, + "biocontrol": 7.94e-08, + "birefringence": 7.94e-08, + "birthers": 7.94e-08, + "blackbeards": 7.94e-08, + "blacklock": 7.94e-08, + "blackwoods": 7.94e-08, + "blanding": 7.94e-08, + "blaxploitation": 7.94e-08, + "bloodsport": 7.94e-08, + "boac": 7.94e-08, + "bodnar": 7.94e-08, + "boehners": 7.94e-08, + "boggled": 7.94e-08, + "boii": 7.94e-08, + "bonaventura": 7.94e-08, + "boschs": 7.94e-08, + "bottomline": 7.94e-08, + "bovada": 7.94e-08, + "bowhead": 7.94e-08, + "bradshaws": 7.94e-08, + "braley": 7.94e-08, + "brande": 7.94e-08, + "branwell": 7.94e-08, + "brattle": 7.94e-08, + "bravia": 7.94e-08, + "brij": 7.94e-08, + "brinley": 7.94e-08, + "bromides": 7.94e-08, + "bruhn": 7.94e-08, + "brunelleschi": 7.94e-08, + "brushwood": 7.94e-08, + "bsh": 7.94e-08, + "buhler": 7.94e-08, + "bullough": 7.94e-08, + "bullpens": 7.94e-08, + "bulstrode": 7.94e-08, + "burnleys": 7.94e-08, + "buschs": 7.94e-08, + "busybodies": 7.94e-08, + "buttonholes": 7.94e-08, + "caio": 7.94e-08, + "cajal": 7.94e-08, + "calamus": 7.94e-08, + "callies": 7.94e-08, + "cameroonians": 7.94e-08, + "camillas": 7.94e-08, + "campestris": 7.94e-08, + "campout": 7.94e-08, + "camshafts": 7.94e-08, + "canas": 7.94e-08, + "cannavaro": 7.94e-08, + "capell": 7.94e-08, + "cardale": 7.94e-08, + "carnevale": 7.94e-08, + "carneys": 7.94e-08, + "carnivora": 7.94e-08, + "carothers": 7.94e-08, + "cartmans": 7.94e-08, + "carus": 7.94e-08, + "cassoulet": 7.94e-08, + "catdog": 7.94e-08, + "catrina": 7.94e-08, + "cawood": 7.94e-08, + "caymans": 7.94e-08, + "celcius": 7.94e-08, + "cemeterys": 7.94e-08, + "centerfield": 7.94e-08, + "ceqa": 7.94e-08, + "cernan": 7.94e-08, + "cernovich": 7.94e-08, + "chadwicks": 7.94e-08, + "chaplet": 7.94e-08, + "charnock": 7.94e-08, + "chaska": 7.94e-08, + "chatwin": 7.94e-08, + "chaumont": 7.94e-08, + "chelate": 7.94e-08, + "chesnut": 7.94e-08, + "chlorite": 7.94e-08, + "chooser": 7.94e-08, + "chopras": 7.94e-08, + "chouinard": 7.94e-08, + "chronometers": 7.94e-08, + "chut": 7.94e-08, + "cjs": 7.94e-08, + "clastic": 7.94e-08, + "claudian": 7.94e-08, + "clijsters": 7.94e-08, + "clonmel": 7.94e-08, + "clute": 7.94e-08, + "clutha": 7.94e-08, + "cnes": 7.94e-08, + "cockatiel": 7.94e-08, + "coffeyville": 7.94e-08, + "colenso": 7.94e-08, + "collarbones": 7.94e-08, + "colonoscopies": 7.94e-08, + "columned": 7.94e-08, + "comal": 7.94e-08, + "comique": 7.94e-08, + "commerces": 7.94e-08, + "complexation": 7.94e-08, + "complexed": 7.94e-08, + "composited": 7.94e-08, + "concensus": 7.94e-08, + "concreting": 7.94e-08, + "conformable": 7.94e-08, + "connaughton": 7.94e-08, + "consonantal": 7.94e-08, + "constanza": 7.94e-08, + "controled": 7.94e-08, + "convulse": 7.94e-08, + "conwell": 7.94e-08, + "copan": 7.94e-08, + "copepod": 7.94e-08, + "coplanar": 7.94e-08, + "copywriters": 7.94e-08, + "corbins": 7.94e-08, + "corda": 7.94e-08, + "cordier": 7.94e-08, + "cordray": 7.94e-08, + "corporately": 7.94e-08, + "corrales": 7.94e-08, + "cortona": 7.94e-08, + "corundum": 7.94e-08, + "cosmically": 7.94e-08, + "cosmologist": 7.94e-08, + "costings": 7.94e-08, + "couto": 7.94e-08, + "coveney": 7.94e-08, + "crac": 7.94e-08, + "creamier": 7.94e-08, + "crewing": 7.94e-08, + "cribbs": 7.94e-08, + "crossways": 7.94e-08, + "croupier": 7.94e-08, + "cuccinelli": 7.94e-08, + "cuernavaca": 7.94e-08, + "curacy": 7.94e-08, + "curiam": 7.94e-08, + "custers": 7.94e-08, + "cuv": 7.94e-08, + "cuvee": 7.94e-08, + "cyberwar": 7.94e-08, + "cyrils": 7.94e-08, + "dach": 7.94e-08, + "dags": 7.94e-08, + "darbys": 7.94e-08, + "dauber": 7.94e-08, + "daylighting": 7.94e-08, + "ddo": 7.94e-08, + "deaden": 7.94e-08, + "debrecen": 7.94e-08, + "decarboxylation": 7.94e-08, + "decreeing": 7.94e-08, + "deejays": 7.94e-08, + "deek": 7.94e-08, + "deira": 7.94e-08, + "dejong": 7.94e-08, + "delacorte": 7.94e-08, + "delimiter": 7.94e-08, + "demetriou": 7.94e-08, + "denaturing": 7.94e-08, + "dengan": 7.94e-08, + "denitrification": 7.94e-08, + "denotation": 7.94e-08, + "densification": 7.94e-08, + "derechos": 7.94e-08, + "derides": 7.94e-08, + "deselected": 7.94e-08, + "dessa": 7.94e-08, + "deta": 7.94e-08, + "detainer": 7.94e-08, + "dickins": 7.94e-08, + "dickless": 7.94e-08, + "dipietro": 7.94e-08, + "dipolar": 7.94e-08, + "disaggregation": 7.94e-08, + "disavows": 7.94e-08, + "disemboweled": 7.94e-08, + "disentangling": 7.94e-08, + "disowns": 7.94e-08, + "dissapointing": 7.94e-08, + "divisibility": 7.94e-08, + "dnepropetrovsk": 7.94e-08, + "docuseries": 7.94e-08, + "doleful": 7.94e-08, + "dolley": 7.94e-08, + "dorsetshire": 7.94e-08, + "dovizioso": 7.94e-08, + "doz": 7.94e-08, + "dramamine": 7.94e-08, + "dreck": 7.94e-08, + "dualist": 7.94e-08, + "dugard": 7.94e-08, + "dunc": 7.94e-08, + "duncanville": 7.94e-08, + "dustpan": 7.94e-08, + "dvp": 7.94e-08, + "dyslexics": 7.94e-08, + "earthed": 7.94e-08, + "eberts": 7.94e-08, + "edam": 7.94e-08, + "eftpos": 7.94e-08, + "egham": 7.94e-08, + "ehi": 7.94e-08, + "eichhorn": 7.94e-08, + "eith": 7.94e-08, + "ejb": 7.94e-08, + "ekaterinburg": 7.94e-08, + "eldora": 7.94e-08, + "electropop": 7.94e-08, + "elizondo": 7.94e-08, + "ellingham": 7.94e-08, + "elliston": 7.94e-08, + "empanada": 7.94e-08, + "enantiomers": 7.94e-08, + "engagingly": 7.94e-08, + "engen": 7.94e-08, + "englisch": 7.94e-08, + "enim": 7.94e-08, + "envelopment": 7.94e-08, + "enviously": 7.94e-08, + "epb": 7.94e-08, + "episiotomy": 7.94e-08, + "equalizers": 7.94e-08, + "erasable": 7.94e-08, + "espoo": 7.94e-08, + "essaouira": 7.94e-08, + "essenes": 7.94e-08, + "eure": 7.94e-08, + "eurobarometer": 7.94e-08, + "eustachian": 7.94e-08, + "ewtn": 7.94e-08, + "ewwww": 7.94e-08, + "exasperate": 7.94e-08, + "exerciser": 7.94e-08, + "exocrine": 7.94e-08, + "expanders": 7.94e-08, + "expectedly": 7.94e-08, + "expiratory": 7.94e-08, + "externalized": 7.94e-08, + "extruding": 7.94e-08, + "fabiana": 7.94e-08, + "fabiano": 7.94e-08, + "faizal": 7.94e-08, + "falloff": 7.94e-08, + "fasano": 7.94e-08, + "fass": 7.94e-08, + "fastbreak": 7.94e-08, + "fatou": 7.94e-08, + "faul": 7.94e-08, + "fbg": 7.94e-08, + "fcu": 7.94e-08, + "feedwater": 7.94e-08, + "felsic": 7.94e-08, + "fenland": 7.94e-08, + "ferrin": 7.94e-08, + "ferrum": 7.94e-08, + "fets": 7.94e-08, + "fibbing": 7.94e-08, + "fieldings": 7.94e-08, + "fifita": 7.94e-08, + "figura": 7.94e-08, + "filets": 7.94e-08, + "finessing": 7.94e-08, + "fior": 7.94e-08, + "fishguard": 7.94e-08, + "fixative": 7.94e-08, + "flashover": 7.94e-08, + "flavian": 7.94e-08, + "fleer": 7.94e-08, + "flinches": 7.94e-08, + "floras": 6.46e-08, + "flowerbed": 7.94e-08, + "flutie": 7.94e-08, + "fnm": 7.94e-08, + "forsworn": 7.94e-08, + "foxcroft": 7.94e-08, + "francke": 7.94e-08, + "fredette": 7.94e-08, + "freel": 7.94e-08, + "fremen": 7.94e-08, + "freyberg": 7.94e-08, + "friendster": 7.94e-08, + "frizzle": 7.94e-08, + "frontwoman": 7.94e-08, + "fuerte": 7.94e-08, + "fulk": 7.94e-08, + "fundament": 7.94e-08, + "funday": 7.94e-08, + "fuselages": 7.94e-08, + "gaeilge": 7.94e-08, + "gaitskell": 7.94e-08, + "galax": 7.94e-08, + "gamblin": 7.94e-08, + "gamera": 7.94e-08, + "gank": 7.94e-08, + "garlanded": 7.94e-08, + "garni": 7.94e-08, + "garon": 7.94e-08, + "geis": 7.94e-08, + "genaro": 7.94e-08, + "gendry": 7.94e-08, + "geog": 7.94e-08, + "gerome": 7.94e-08, + "gessner": 7.94e-08, + "ghomeshi": 7.94e-08, + "ghosn": 7.94e-08, + "giclee": 7.94e-08, + "giff": 7.94e-08, + "gii": 7.94e-08, + "gilet": 7.94e-08, + "girlz": 7.94e-08, + "glasss": 7.94e-08, + "glasson": 7.94e-08, + "glenny": 7.94e-08, + "gluttons": 7.94e-08, + "goobers": 7.94e-08, + "granda": 7.94e-08, + "grd": 7.94e-08, + "greenside": 7.94e-08, + "greylock": 7.94e-08, + "gringotts": 7.94e-08, + "groundlings": 7.94e-08, + "groundnuts": 7.94e-08, + "grubber": 7.94e-08, + "grzegorz": 7.94e-08, + "guiltily": 7.94e-08, + "gujarats": 7.94e-08, + "gulick": 7.94e-08, + "gunnell": 7.94e-08, + "hackenberg": 7.94e-08, + "hafnium": 7.94e-08, + "hahahahahahahaha": 7.94e-08, + "hais": 7.94e-08, + "hallet": 7.94e-08, + "haltingly": 7.94e-08, + "handsfree": 7.94e-08, + "handspring": 7.94e-08, + "hardbound": 7.94e-08, + "harnack": 7.94e-08, + "hartline": 7.94e-08, + "hasakah": 7.94e-08, + "hasbrouck": 7.94e-08, + "hasek": 7.94e-08, + "hashimi": 7.94e-08, + "headington": 7.94e-08, + "hegels": 7.94e-08, + "heiresses": 7.94e-08, + "hellscape": 7.94e-08, + "helming": 7.94e-08, + "heloc": 7.94e-08, + "helston": 7.94e-08, + "hemagglutinin": 7.94e-08, + "heman": 7.94e-08, + "hemiplegia": 7.94e-08, + "hereward": 7.94e-08, + "hermaphroditic": 7.94e-08, + "heschel": 7.94e-08, + "hewed": 7.94e-08, + "hexavalent": 7.94e-08, + "heynckes": 7.94e-08, + "hiei": 7.94e-08, + "hija": 7.94e-08, + "hindwing": 7.94e-08, + "hinrichs": 7.94e-08, + "hirer": 7.94e-08, + "hirshhorn": 7.94e-08, + "hoberman": 7.94e-08, + "hobgoblins": 7.94e-08, + "hochberg": 7.94e-08, + "hollyhock": 7.94e-08, + "holmwood": 7.94e-08, + "homoeopathy": 7.94e-08, + "honeyman": 7.94e-08, + "hormonally": 7.94e-08, + "hornung": 7.94e-08, + "hoskin": 7.94e-08, + "hostgator": 7.94e-08, + "hova": 7.94e-08, + "hristo": 7.94e-08, + "hsinchu": 7.94e-08, + "humoring": 7.94e-08, + "hungering": 7.94e-08, + "hunnicutt": 7.94e-08, + "huq": 7.94e-08, + "hydras": 7.94e-08, + "hydrologist": 7.94e-08, + "hydrometer": 7.94e-08, + "hyksos": 7.94e-08, + "hypergeometric": 7.94e-08, + "ibsens": 7.94e-08, + "iccs": 7.94e-08, + "idubbbz": 7.94e-08, + "ify": 7.94e-08, + "ijebu": 7.94e-08, + "ilha": 7.94e-08, + "ilmenite": 7.94e-08, + "ilu": 7.94e-08, + "impassible": 7.94e-08, + "imperturbable": 7.94e-08, + "implementers": 7.94e-08, + "importante": 7.94e-08, + "impregnates": 7.94e-08, + "improvisers": 7.94e-08, + "imprudence": 7.94e-08, + "inclining": 7.94e-08, + "indicus": 7.94e-08, + "indomethacin": 7.94e-08, + "ineptness": 7.94e-08, + "infp": 7.94e-08, + "inglot": 7.94e-08, + "ingold": 7.94e-08, + "inkscape": 7.94e-08, + "insuperable": 7.94e-08, + "insureds": 7.94e-08, + "intercalation": 7.94e-08, + "interleague": 7.94e-08, + "interventionists": 7.94e-08, + "interweave": 7.94e-08, + "intraspecific": 7.94e-08, + "inure": 7.94e-08, + "invesco": 7.94e-08, + "ionising": 7.94e-08, + "irom": 7.94e-08, + "irri": 7.94e-08, + "ishita": 7.94e-08, + "ismailia": 7.94e-08, + "isocyanate": 7.94e-08, + "isom": 7.94e-08, + "isostatic": 7.94e-08, + "ivers": 7.94e-08, + "jamuna": 7.94e-08, + "jatin": 7.94e-08, + "jdbc": 7.94e-08, + "jeannes": 7.94e-08, + "jehangir": 7.94e-08, + "jemhadar": 7.94e-08, + "jeonbuk": 7.94e-08, + "jeph": 7.94e-08, + "jette": 7.94e-08, + "jhb": 7.94e-08, + "jma": 7.94e-08, + "joannes": 6.92e-08, + "joba": 7.94e-08, + "jodrell": 7.94e-08, + "jollibee": 7.94e-08, + "juss": 7.94e-08, + "jussie": 7.94e-08, + "justi": 7.94e-08, + "justise": 7.94e-08, + "kaali": 7.94e-08, + "kalat": 7.94e-08, + "kaldor": 7.94e-08, + "kangas": 7.94e-08, + "karcher": 7.94e-08, + "karger": 7.94e-08, + "kasama": 7.94e-08, + "kazuko": 7.94e-08, + "kear": 7.94e-08, + "kebbi": 7.94e-08, + "keegans": 7.94e-08, + "keloid": 7.94e-08, + "kera": 7.94e-08, + "keralas": 7.94e-08, + "khanh": 7.94e-08, + "kinghorn": 7.94e-08, + "kirton": 7.94e-08, + "kodo": 7.94e-08, + "koine": 7.94e-08, + "konnichiwa": 7.94e-08, + "krrish": 7.94e-08, + "krugers": 7.94e-08, + "kuper": 7.94e-08, + "labatt": 7.94e-08, + "lakenheath": 7.94e-08, + "lall": 7.94e-08, + "languorous": 7.94e-08, + "lapds": 7.94e-08, + "larges": 7.94e-08, + "latimore": 7.94e-08, + "launderer": 7.94e-08, + "lauzon": 7.94e-08, + "lavazza": 7.94e-08, + "leeming": 7.94e-08, + "leopardstown": 7.94e-08, + "leprous": 7.94e-08, + "lerma": 7.94e-08, + "leth": 7.94e-08, + "leveler": 7.94e-08, + "lexicographers": 7.94e-08, + "lexx": 7.94e-08, + "lifshitz": 7.94e-08, + "lillies": 7.94e-08, + "limiteds": 7.94e-08, + "lippo": 7.94e-08, + "littell": 7.94e-08, + "livs": 7.94e-08, + "liveblog": 7.94e-08, + "livio": 7.94e-08, + "loker": 7.94e-08, + "lokomotiv": 7.94e-08, + "longlisted": 7.94e-08, + "lothians": 7.94e-08, + "loto": 7.94e-08, + "lovechild": 7.94e-08, + "lucena": 7.94e-08, + "luks": 7.94e-08, + "luminaire": 7.94e-08, + "lupi": 7.94e-08, + "luteinizing": 7.94e-08, + "maaan": 7.94e-08, + "maat": 7.94e-08, + "mabs": 7.94e-08, + "macchio": 7.94e-08, + "maciver": 7.94e-08, + "macrocosm": 7.94e-08, + "madelaine": 7.94e-08, + "magen": 7.94e-08, + "magpul": 7.94e-08, + "mahmut": 7.94e-08, + "mandalore": 7.94e-08, + "manikin": 7.94e-08, + "manitobas": 7.94e-08, + "manowar": 7.94e-08, + "mansel": 7.94e-08, + "manzanillo": 7.94e-08, + "margarete": 7.94e-08, + "marketshare": 7.94e-08, + "maroubra": 7.94e-08, + "mashallah": 7.94e-08, + "mastiffs": 7.94e-08, + "mastoid": 7.94e-08, + "mastro": 7.94e-08, + "matagorda": 7.94e-08, + "matronly": 7.94e-08, + "matzah": 7.94e-08, + "maurices": 7.94e-08, + "mayaguez": 7.94e-08, + "mayock": 7.94e-08, + "mcgarrigle": 7.94e-08, + "mcgillivray": 7.94e-08, + "mcguires": 7.94e-08, + "mcleods": 7.94e-08, + "mcmath": 7.94e-08, + "meghans": 7.94e-08, + "melita": 7.94e-08, + "melvins": 5.13e-08, + "memoires": 7.94e-08, + "metahuman": 7.94e-08, + "metalheads": 7.94e-08, + "methylmercury": 7.94e-08, + "mgd": 7.94e-08, + "miff": 7.94e-08, + "mikhailovich": 7.94e-08, + "mildmay": 7.94e-08, + "milka": 7.94e-08, + "mineralisation": 7.94e-08, + "minicomputers": 7.94e-08, + "minne": 7.94e-08, + "minorca": 7.94e-08, + "mirabelle": 7.94e-08, + "miscellanea": 7.94e-08, + "miseducation": 7.94e-08, + "mishka": 7.94e-08, + "misophonia": 7.94e-08, + "mistery": 7.94e-08, + "mitsuo": 7.94e-08, + "mkultra": 7.94e-08, + "mogens": 7.94e-08, + "moher": 7.94e-08, + "mohn": 7.94e-08, + "mollified": 7.94e-08, + "monolayers": 7.94e-08, + "monongalia": 7.94e-08, + "montell": 7.94e-08, + "morgoth": 7.94e-08, + "morphisms": 7.94e-08, + "moshing": 7.94e-08, + "mugu": 7.94e-08, + "muhsin": 7.94e-08, + "mujahedin": 7.94e-08, + "mummers": 7.94e-08, + "muri": 7.94e-08, + "musicares": 7.94e-08, + "mustachioed": 7.94e-08, + "mutua": 7.94e-08, + "mutv": 7.94e-08, + "mvt": 7.94e-08, + "mysterium": 7.94e-08, + "nabokovs": 7.94e-08, + "nadines": 7.94e-08, + "nais": 7.94e-08, + "nanofibers": 7.94e-08, + "nanotechnologies": 7.94e-08, + "narcosis": 7.94e-08, + "narvaez": 7.94e-08, + "naturalis": 7.94e-08, + "neosporin": 7.94e-08, + "nephrotic": 7.94e-08, + "neuropeptides": 7.94e-08, + "ngong": 7.94e-08, + "ngt": 7.94e-08, + "nhu": 7.94e-08, + "nichola": 7.94e-08, + "nickis": 7.94e-08, + "nightgowns": 7.94e-08, + "ninos": 5.25e-08, + "nipa": 7.94e-08, + "noles": 7.94e-08, + "nomina": 7.94e-08, + "nonjudgmental": 7.94e-08, + "norville": 7.94e-08, + "notecards": 7.94e-08, + "novocaine": 7.94e-08, + "nuclide": 7.94e-08, + "nuj": 7.94e-08, + "nux": 7.94e-08, + "nuzzles": 7.94e-08, + "nygma": 7.94e-08, + "nyj": 7.94e-08, + "oakey": 7.94e-08, + "oberg": 7.94e-08, + "obturator": 7.94e-08, + "odorant": 7.94e-08, + "offensiveness": 7.94e-08, + "ofgem": 7.94e-08, + "ofit": 7.94e-08, + "ohc": 7.94e-08, + "oireachtas": 7.94e-08, + "oney": 7.94e-08, + "onoda": 7.94e-08, + "ontologically": 7.94e-08, + "oohs": 7.94e-08, + "ooohh": 7.94e-08, + "opperman": 7.94e-08, + "orientale": 7.94e-08, + "ossuary": 7.94e-08, + "ostwald": 7.94e-08, + "ough": 7.94e-08, + "overweening": 7.94e-08, + "packable": 7.94e-08, + "paines": 7.94e-08, + "pallidus": 7.94e-08, + "pamlico": 7.94e-08, + "parel": 7.94e-08, + "paresh": 7.94e-08, + "passa": 7.94e-08, + "pastrana": 7.94e-08, + "pawnbrokers": 7.94e-08, + "pedagogies": 7.94e-08, + "peoplesoft": 7.94e-08, + "peopling": 7.94e-08, + "perea": 7.94e-08, + "perlis": 7.94e-08, + "peroxides": 7.94e-08, + "perturb": 7.94e-08, + "petersfield": 7.94e-08, + "petrifying": 7.94e-08, + "petrillo": 7.94e-08, + "pgh": 7.94e-08, + "pharmacologist": 7.94e-08, + "photolithography": 7.94e-08, + "phototherapy": 7.94e-08, + "physica": 7.94e-08, + "piercer": 7.94e-08, + "pih": 7.94e-08, + "pinscher": 7.94e-08, + "pipestone": 7.94e-08, + "pire": 7.94e-08, + "plaistow": 7.94e-08, + "platten": 7.94e-08, + "playtest": 7.94e-08, + "plinths": 7.94e-08, + "pohang": 7.94e-08, + "poitras": 7.94e-08, + "politicisation": 7.94e-08, + "pollens": 7.94e-08, + "polyesters": 7.94e-08, + "polyether": 7.94e-08, + "polyimide": 7.94e-08, + "polytheists": 7.94e-08, + "pompom": 7.94e-08, + "porphyrin": 7.94e-08, + "postbox": 7.94e-08, + "potgieter": 7.94e-08, + "pottering": 7.94e-08, + "poyet": 7.94e-08, + "prefacing": 7.94e-08, + "prevarication": 7.94e-08, + "prig": 7.94e-08, + "primroses": 7.94e-08, + "prioritises": 7.94e-08, + "proclus": 7.94e-08, + "prognoses": 7.94e-08, + "progr": 7.94e-08, + "proliant": 7.94e-08, + "prologues": 7.94e-08, + "proprioceptive": 7.94e-08, + "protectiveness": 7.94e-08, + "protuberance": 7.94e-08, + "provid": 7.94e-08, + "puedo": 7.94e-08, + "pulido": 7.94e-08, + "pullovers": 7.94e-08, + "pulped": 7.94e-08, + "pulping": 7.94e-08, + "purcells": 7.94e-08, + "purposing": 7.94e-08, + "putback": 7.94e-08, + "putti": 7.94e-08, + "pyrenean": 7.94e-08, + "qca": 7.94e-08, + "qhd": 7.94e-08, + "qualls": 7.94e-08, + "queensboro": 7.94e-08, + "quinone": 7.94e-08, + "quneitra": 7.94e-08, + "racecourses": 7.94e-08, + "rael": 7.94e-08, + "ralls": 7.94e-08, + "ramaswamy": 7.94e-08, + "ramya": 7.94e-08, + "ranaut": 7.94e-08, + "randomize": 7.94e-08, + "rashed": 7.94e-08, + "raum": 7.94e-08, + "ravitch": 7.94e-08, + "rawa": 7.94e-08, + "rawle": 7.94e-08, + "rax": 7.94e-08, + "razi": 7.94e-08, + "rdio": 7.94e-08, + "reachability": 7.94e-08, + "realisations": 7.94e-08, + "reallllly": 7.94e-08, + "recasts": 7.94e-08, + "relativist": 7.94e-08, + "relegates": 7.94e-08, + "remortgage": 7.94e-08, + "researchgate": 7.94e-08, + "responsiblity": 7.94e-08, + "revalued": 7.94e-08, + "revues": 7.94e-08, + "rewa": 7.94e-08, + "rhenium": 7.94e-08, + "rhetorics": 7.94e-08, + "riefenstahl": 7.94e-08, + "riess": 7.94e-08, + "righties": 7.94e-08, + "rins": 6.46e-08, + "risperdal": 7.94e-08, + "riverland": 7.94e-08, + "roadmaps": 7.94e-08, + "roberti": 7.94e-08, + "robitaille": 7.94e-08, + "robotech": 7.94e-08, + "rond": 7.94e-08, + "rosalinda": 7.94e-08, + "rosse": 7.94e-08, + "roundel": 7.94e-08, + "rozen": 7.94e-08, + "rtos": 7.94e-08, + "ruo": 7.94e-08, + "rutabaga": 7.94e-08, + "rymer": 7.94e-08, + "sabarimala": 7.94e-08, + "sabatier": 7.94e-08, + "sabir": 7.94e-08, + "sachsenhausen": 7.94e-08, + "saddleworth": 7.94e-08, + "saima": 7.94e-08, + "sajak": 7.94e-08, + "sakic": 7.94e-08, + "sakina": 7.94e-08, + "sakuras": 7.94e-08, + "sakuya": 7.94e-08, + "salamat": 7.94e-08, + "saltine": 7.94e-08, + "salus": 7.94e-08, + "samer": 7.94e-08, + "sammons": 7.94e-08, + "samwise": 7.94e-08, + "sandbars": 7.94e-08, + "sankaran": 7.94e-08, + "sansone": 7.94e-08, + "satoshis": 7.94e-08, + "savan": 7.94e-08, + "saverio": 7.94e-08, + "sbss": 7.94e-08, + "sby": 7.94e-08, + "scargill": 7.94e-08, + "schellenberg": 7.94e-08, + "schemata": 7.94e-08, + "schouler": 7.94e-08, + "screwup": 7.94e-08, + "seabee": 7.94e-08, + "secondo": 7.94e-08, + "seductions": 7.94e-08, + "selecta": 7.94e-08, + "seleucus": 7.94e-08, + "selke": 7.94e-08, + "selo": 7.94e-08, + "sentimentally": 7.94e-08, + "sequent": 7.94e-08, + "serotypes": 7.94e-08, + "sgu": 7.94e-08, + "shallowest": 7.94e-08, + "shatterproof": 7.94e-08, + "sherbert": 7.94e-08, + "shiina": 7.94e-08, + "shirdi": 7.94e-08, + "showbusiness": 7.94e-08, + "sibal": 7.94e-08, + "silted": 7.94e-08, + "silveira": 7.94e-08, + "silvertone": 7.94e-08, + "simplistically": 7.94e-08, + "sinfully": 7.94e-08, + "singleplayer": 7.94e-08, + "sinh": 7.94e-08, + "sist": 7.94e-08, + "skeeters": 7.94e-08, + "sketchers": 7.94e-08, + "skil": 7.94e-08, + "skillets": 7.94e-08, + "skywalkers": 7.94e-08, + "slughorn": 7.94e-08, + "smalltown": 7.94e-08, + "smeg": 7.94e-08, + "smfh": 7.94e-08, + "smoosh": 7.94e-08, + "snowbank": 7.94e-08, + "snowdrift": 7.94e-08, + "sofar": 7.94e-08, + "soka": 7.94e-08, + "soloed": 7.94e-08, + "solstices": 7.94e-08, + "sombreros": 7.94e-08, + "southie": 7.94e-08, + "spag": 7.94e-08, + "spamalot": 7.94e-08, + "spattering": 7.94e-08, + "spatulas": 7.94e-08, + "specht": 7.94e-08, + "spiracles": 7.94e-08, + "spk": 7.94e-08, + "splicer": 7.94e-08, + "sportsmanlike": 7.94e-08, + "spreadable": 7.94e-08, + "squawks": 7.94e-08, + "staat": 7.94e-08, + "stac": 7.94e-08, + "stager": 7.94e-08, + "stalinists": 7.94e-08, + "stanchion": 7.94e-08, + "stanchions": 7.94e-08, + "starboy": 7.94e-08, + "starfield": 7.94e-08, + "starfighters": 7.94e-08, + "starliner": 7.94e-08, + "steamroll": 7.94e-08, + "steelwork": 7.94e-08, + "steere": 7.94e-08, + "stitchers": 7.94e-08, + "stoute": 7.94e-08, + "streeps": 7.94e-08, + "streetview": 7.94e-08, + "subarus": 7.94e-08, + "subd": 7.94e-08, + "subdues": 7.94e-08, + "subsists": 7.94e-08, + "succinic": 7.94e-08, + "suche": 7.94e-08, + "sugaring": 7.94e-08, + "sundered": 7.94e-08, + "sundin": 7.94e-08, + "superannuated": 7.94e-08, + "superclass": 7.94e-08, + "susilo": 7.94e-08, + "susskind": 7.94e-08, + "suzannes": 7.94e-08, + "swanns": 7.94e-08, + "swansong": 7.94e-08, + "swissair": 7.94e-08, + "swizzle": 7.94e-08, + "sympatric": 7.94e-08, + "tabak": 7.94e-08, + "taconite": 7.94e-08, + "tailpiece": 7.94e-08, + "takanashi": 7.94e-08, + "talha": 7.94e-08, + "tallent": 7.94e-08, + "tamiami": 7.94e-08, + "tamiflu": 7.94e-08, + "tamm": 7.94e-08, + "taplin": 7.94e-08, + "tares": 7.94e-08, + "tauriel": 7.94e-08, + "tauro": 7.94e-08, + "taze": 7.94e-08, + "tdcs": 7.94e-08, + "tedd": 7.94e-08, + "teetered": 7.94e-08, + "tefillin": 7.94e-08, + "teilhard": 7.94e-08, + "tekno": 7.94e-08, + "teleology": 7.94e-08, + "tener": 7.94e-08, + "tgc": 7.94e-08, + "theropod": 7.94e-08, + "thimerosal": 7.94e-08, + "thorndyke": 7.94e-08, + "thorold": 7.94e-08, + "thralls": 7.94e-08, + "threadneedle": 7.94e-08, + "thunderer": 7.94e-08, + "tianhe": 7.94e-08, + "tidally": 7.94e-08, + "timeslots": 7.94e-08, + "titanate": 7.94e-08, + "titillate": 7.94e-08, + "titre": 7.94e-08, + "tmm": 7.94e-08, + "tncs": 7.94e-08, + "tnd": 7.94e-08, + "tomba": 7.94e-08, + "tomball": 7.94e-08, + "tonneau": 7.94e-08, + "toooo": 7.94e-08, + "toowong": 7.94e-08, + "topoisomerase": 7.94e-08, + "topsham": 7.94e-08, + "touareg": 7.94e-08, + "trabzon": 7.94e-08, + "trach": 7.94e-08, + "transcribes": 7.94e-08, + "transitivity": 7.94e-08, + "transpositions": 7.94e-08, + "trh": 7.94e-08, + "tristans": 7.94e-08, + "tritons": 5.5e-08, + "trivet": 7.94e-08, + "trocar": 7.94e-08, + "trochanter": 7.94e-08, + "trotskys": 7.94e-08, + "trumpy": 7.94e-08, + "tuks": 7.94e-08, + "tulo": 7.94e-08, + "uar": 7.94e-08, + "uberx": 7.94e-08, + "ugl": 7.94e-08, + "umb": 7.94e-08, + "umunna": 7.94e-08, + "umw": 7.94e-08, + "unaired": 7.94e-08, + "unawareness": 7.94e-08, + "unbowed": 7.94e-08, + "unbuckled": 7.94e-08, + "uncouple": 7.94e-08, + "underachievement": 7.94e-08, + "undersell": 7.94e-08, + "understudies": 7.94e-08, + "undeservedly": 7.94e-08, + "undresses": 7.94e-08, + "undrinkable": 7.94e-08, + "unendurable": 7.94e-08, + "unforseen": 7.94e-08, + "universitaires": 7.94e-08, + "unpleasing": 7.94e-08, + "unselfishness": 7.94e-08, + "upcycle": 7.94e-08, + "upscaling": 7.94e-08, + "urania": 7.94e-08, + "userbase": 7.94e-08, + "uttoxeter": 7.94e-08, + "vacillated": 7.94e-08, + "vajrayana": 7.94e-08, + "valmiki": 7.94e-08, + "valproate": 7.94e-08, + "vandalising": 7.94e-08, + "vanguardia": 7.94e-08, + "vanitas": 7.94e-08, + "variola": 7.94e-08, + "vasey": 7.94e-08, + "vasodilator": 7.94e-08, + "vato": 7.94e-08, + "venation": 7.94e-08, + "vence": 7.94e-08, + "venial": 7.94e-08, + "verbalized": 7.94e-08, + "verilog": 7.94e-08, + "viceroyalty": 7.94e-08, + "victualling": 7.94e-08, + "vihara": 7.94e-08, + "viognier": 7.94e-08, + "volante": 7.94e-08, + "volney": 7.94e-08, + "vortigern": 7.94e-08, + "vought": 7.94e-08, + "vrm": 7.94e-08, + "vybz": 7.94e-08, + "wach": 7.94e-08, + "wahabi": 7.94e-08, + "waites": 7.94e-08, + "wakened": 7.94e-08, + "walcotts": 7.94e-08, + "waldau": 7.94e-08, + "walkoff": 7.94e-08, + "wanless": 7.94e-08, + "wardroom": 7.94e-08, + "waterfield": 7.94e-08, + "waterproofed": 7.94e-08, + "waterwheel": 7.94e-08, + "wath": 7.94e-08, + "waxworks": 7.94e-08, + "wcb": 7.94e-08, + "webpack": 7.94e-08, + "weebs": 7.94e-08, + "weisse": 7.94e-08, + "wella": 7.94e-08, + "wem": 7.94e-08, + "wensley": 7.94e-08, + "wertz": 7.94e-08, + "westcoast": 7.94e-08, + "wheelset": 7.94e-08, + "whelk": 7.94e-08, + "whiskered": 7.94e-08, + "whitewood": 7.94e-08, + "whitlow": 7.94e-08, + "wiens": 7.94e-08, + "wifely": 7.94e-08, + "wiling": 7.94e-08, + "wimpey": 7.94e-08, + "wishin": 7.94e-08, + "wmi": 7.94e-08, + "wnc": 7.94e-08, + "woolfe": 7.94e-08, + "woooooo": 7.94e-08, + "wordings": 7.94e-08, + "worthier": 7.94e-08, + "wrangell": 7.94e-08, + "wso": 7.94e-08, + "wwfs": 7.94e-08, + "xfce": 7.94e-08, + "xiaomis": 7.94e-08, + "yachtsmen": 7.94e-08, + "yadkin": 7.94e-08, + "yakub": 7.94e-08, + "yamhill": 7.94e-08, + "yarmulke": 7.94e-08, + "yglesias": 7.94e-08, + "yixing": 7.94e-08, + "ynet": 7.94e-08, + "yogananda": 7.94e-08, + "youm": 7.94e-08, + "youngins": 7.94e-08, + "younglings": 7.94e-08, + "ypf": 7.94e-08, + "zagging": 7.94e-08, + "zambales": 7.94e-08, + "zamindars": 7.94e-08, + "zelman": 7.94e-08, + "zoll": 7.94e-08, + "aahhh": 7.76e-08, + "ablest": 7.76e-08, + "abominably": 7.76e-08, + "abseil": 7.76e-08, + "accentuation": 7.76e-08, + "accessorized": 7.76e-08, + "accruals": 7.76e-08, + "ackland": 7.76e-08, + "aconcagua": 7.76e-08, + "actio": 7.76e-08, + "acuteness": 7.76e-08, + "adiposity": 7.76e-08, + "adriaan": 7.76e-08, + "aeb": 7.76e-08, + "aerator": 7.76e-08, + "aerys": 7.76e-08, + "affraid": 7.76e-08, + "afv": 7.76e-08, + "agglutination": 7.76e-08, + "agitates": 7.76e-08, + "agression": 7.76e-08, + "aguiar": 7.76e-08, + "aherne": 7.76e-08, + "akal": 7.76e-08, + "alamosa": 7.76e-08, + "albertan": 7.76e-08, + "alders": 7.76e-08, + "aldred": 7.76e-08, + "aletta": 7.76e-08, + "alexie": 7.76e-08, + "alfredsson": 7.76e-08, + "allon": 7.76e-08, + "allopurinol": 7.76e-08, + "allt": 7.76e-08, + "altan": 7.76e-08, + "alterman": 7.76e-08, + "alterna": 7.76e-08, + "altro": 7.76e-08, + "amalekites": 7.76e-08, + "ambroise": 7.76e-08, + "ancienne": 7.76e-08, + "andreotti": 7.76e-08, + "animatedly": 7.76e-08, + "ank": 7.76e-08, + "ankita": 7.76e-08, + "antiplatelet": 7.76e-08, + "antipodean": 7.76e-08, + "antiquarians": 7.76e-08, + "anup": 7.76e-08, + "aquinos": 7.76e-08, + "archdiocesan": 7.76e-08, + "aretz": 7.76e-08, + "arghh": 7.76e-08, + "arizonans": 7.76e-08, + "arkell": 7.76e-08, + "arrant": 7.76e-08, + "arsons": 7.76e-08, + "artemisinin": 7.76e-08, + "artyom": 7.76e-08, + "ascospores": 7.76e-08, + "ashburnham": 7.76e-08, + "ashly": 7.76e-08, + "asprey": 7.76e-08, + "assessable": 7.76e-08, + "assistantship": 7.76e-08, + "assur": 7.76e-08, + "ates": 7.76e-08, + "atreyu": 7.76e-08, + "attu": 7.76e-08, + "atypically": 7.76e-08, + "aurelie": 7.76e-08, + "auriemma": 7.76e-08, + "ausmus": 7.76e-08, + "azariah": 7.76e-08, + "babying": 7.76e-08, + "backspin": 7.76e-08, + "baclofen": 7.76e-08, + "bacteremia": 7.76e-08, + "badia": 7.76e-08, + "baggs": 7.76e-08, + "bagshot": 7.76e-08, + "bahay": 7.76e-08, + "balalaika": 7.76e-08, + "baltazar": 7.76e-08, + "bambara": 7.76e-08, + "bamenda": 7.76e-08, + "bandito": 7.76e-08, + "barda": 7.76e-08, + "bardet": 7.76e-08, + "barramundi": 7.76e-08, + "bassanio": 7.76e-08, + "bassem": 7.76e-08, + "basten": 7.76e-08, + "batak": 7.76e-08, + "batemans": 7.76e-08, + "bayram": 7.76e-08, + "bazookas": 7.76e-08, + "beaner": 7.76e-08, + "beefeater": 7.76e-08, + "beis": 7.76e-08, + "bekasi": 7.76e-08, + "belches": 7.76e-08, + "believably": 7.76e-08, + "benelli": 7.76e-08, + "bennets": 7.76e-08, + "berit": 7.76e-08, + "besetting": 7.76e-08, + "bewley": 7.76e-08, + "bhattacharjee": 7.76e-08, + "biathlete": 7.76e-08, + "bibliographer": 7.76e-08, + "bilawal": 7.76e-08, + "billi": 7.76e-08, + "bimetallic": 7.76e-08, + "bindu": 7.76e-08, + "bini": 7.76e-08, + "biola": 7.76e-08, + "biologicals": 7.76e-08, + "bioreactors": 7.76e-08, + "birdseed": 7.76e-08, + "birthweight": 7.76e-08, + "bistros": 7.76e-08, + "bitchiness": 7.76e-08, + "bithynia": 7.76e-08, + "bittrex": 7.76e-08, + "blackball": 7.76e-08, + "blackshear": 7.76e-08, + "blessedness": 7.76e-08, + "blix": 7.76e-08, + "blondel": 7.76e-08, + "blondies": 5.89e-08, + "bloo": 7.76e-08, + "bluestar": 7.76e-08, + "bobber": 7.76e-08, + "bolshoy": 7.76e-08, + "booga": 7.76e-08, + "boooo": 7.76e-08, + "borch": 7.76e-08, + "bosun": 7.76e-08, + "bouillabaisse": 7.76e-08, + "bourguiba": 7.76e-08, + "boxall": 7.76e-08, + "boxtrolls": 7.76e-08, + "brahmi": 7.76e-08, + "braine": 7.76e-08, + "brar": 7.76e-08, + "breezeway": 7.76e-08, + "broadmeadows": 7.76e-08, + "broncs": 7.76e-08, + "bronislaw": 7.76e-08, + "bruk": 7.76e-08, + "brumfield": 7.76e-08, + "bulkeley": 7.76e-08, + "bullfrogs": 7.76e-08, + "burbidge": 7.76e-08, + "buthelezi": 7.76e-08, + "buzzin": 7.76e-08, + "byelorussian": 7.76e-08, + "cack": 7.76e-08, + "calistoga": 7.76e-08, + "callahans": 7.76e-08, + "camm": 7.76e-08, + "cantilevers": 7.76e-08, + "capaldis": 7.76e-08, + "carlitos": 7.76e-08, + "carrizo": 7.76e-08, + "carro": 7.76e-08, + "cassin": 7.76e-08, + "castells": 7.76e-08, + "catfishes": 7.76e-08, + "catlett": 7.76e-08, + "catv": 7.76e-08, + "causalities": 7.76e-08, + "ccaa": 7.76e-08, + "cdh": 7.76e-08, + "ceftriaxone": 7.76e-08, + "certo": 7.76e-08, + "chadd": 7.76e-08, + "chaffing": 7.76e-08, + "chandrika": 7.76e-08, + "chanticleer": 7.76e-08, + "chb": 7.76e-08, + "cheops": 7.76e-08, + "cherwell": 7.76e-08, + "chian": 7.76e-08, + "childrearing": 7.76e-08, + "chinatowns": 7.76e-08, + "choirboy": 7.76e-08, + "christianization": 7.76e-08, + "cht": 7.76e-08, + "churchyards": 7.76e-08, + "circo": 7.76e-08, + "cja": 7.76e-08, + "claremore": 7.76e-08, + "clarinda": 7.76e-08, + "clavell": 7.76e-08, + "clemenza": 7.76e-08, + "clerking": 7.76e-08, + "cley": 7.76e-08, + "clm": 7.76e-08, + "clonic": 7.76e-08, + "cluff": 7.76e-08, + "clydesdales": 7.76e-08, + "cobie": 7.76e-08, + "cockeyed": 7.76e-08, + "codenames": 7.76e-08, + "cognisant": 7.76e-08, + "coindesk": 7.76e-08, + "coltan": 7.76e-08, + "commiserations": 7.76e-08, + "complacently": 7.76e-08, + "comus": 7.76e-08, + "concreted": 7.76e-08, + "concretions": 7.76e-08, + "congres": 7.76e-08, + "coni": 7.76e-08, + "conk": 7.76e-08, + "conneaut": 7.76e-08, + "contemplations": 7.76e-08, + "contigo": 7.76e-08, + "contrail": 7.76e-08, + "contraindication": 7.76e-08, + "conventual": 7.76e-08, + "conversationally": 7.76e-08, + "cornett": 7.76e-08, + "corney": 7.76e-08, + "corvinus": 7.76e-08, + "cosme": 7.76e-08, + "cosmetologist": 7.76e-08, + "coud": 7.76e-08, + "courchevel": 7.76e-08, + "cozart": 7.76e-08, + "cpcs": 7.76e-08, + "crabmeat": 7.76e-08, + "crail": 7.76e-08, + "cranwell": 7.76e-08, + "crisped": 7.76e-08, + "croods": 7.76e-08, + "cryptographer": 7.76e-08, + "ctia": 7.76e-08, + "cursors": 7.76e-08, + "cvo": 7.76e-08, + "cwp": 7.76e-08, + "dabba": 7.76e-08, + "dalgleish": 7.76e-08, + "dammam": 7.76e-08, + "danika": 7.76e-08, + "danon": 7.76e-08, + "darlow": 7.76e-08, + "davit": 7.76e-08, + "dbr": 7.76e-08, + "dco": 7.76e-08, + "debord": 7.76e-08, + "decentralizing": 7.76e-08, + "declamation": 7.76e-08, + "deeping": 7.76e-08, + "definiteness": 7.76e-08, + "delavan": 7.76e-08, + "deleo": 7.76e-08, + "delonge": 7.76e-08, + "demobilisation": 7.76e-08, + "departamento": 7.76e-08, + "departement": 7.76e-08, + "deren": 7.76e-08, + "derivational": 7.76e-08, + "derosa": 7.76e-08, + "desy": 7.76e-08, + "diddling": 7.76e-08, + "diffusely": 7.76e-08, + "digitalized": 7.76e-08, + "digraph": 7.76e-08, + "dilithium": 7.76e-08, + "dionisio": 7.76e-08, + "disablement": 7.76e-08, + "dishwater": 7.76e-08, + "disparages": 7.76e-08, + "dissapoint": 7.76e-08, + "ditton": 7.76e-08, + "divino": 7.76e-08, + "divison": 7.76e-08, + "dniester": 7.76e-08, + "dobermans": 7.76e-08, + "dolts": 7.76e-08, + "donahoe": 7.76e-08, + "donnys": 7.76e-08, + "doos": 7.76e-08, + "dorie": 7.76e-08, + "dornier": 7.76e-08, + "dosbox": 7.76e-08, + "douay": 7.76e-08, + "doughs": 7.76e-08, + "doux": 7.76e-08, + "doxing": 7.76e-08, + "dreidel": 7.76e-08, + "drewe": 7.76e-08, + "ducker": 7.76e-08, + "duggars": 7.76e-08, + "dummer": 7.76e-08, + "dustbins": 7.76e-08, + "dwa": 7.76e-08, + "dyncorp": 7.76e-08, + "eardley": 7.76e-08, + "ebbets": 7.76e-08, + "ebeling": 7.76e-08, + "eckart": 7.76e-08, + "edinboro": 7.76e-08, + "edis": 7.76e-08, + "effectuate": 7.76e-08, + "efter": 7.76e-08, + "egl": 7.76e-08, + "eilidh": 7.76e-08, + "eirik": 7.76e-08, + "elaborations": 7.76e-08, + "elas": 7.76e-08, + "eleague": 7.76e-08, + "electromyography": 7.76e-08, + "elevens": 5.25e-08, + "elling": 7.76e-08, + "elmar": 7.76e-08, + "elviss": 7.76e-08, + "embarrased": 7.76e-08, + "emesis": 7.76e-08, + "endodontic": 7.76e-08, + "enduringly": 7.76e-08, + "engelhard": 7.76e-08, + "engrams": 7.76e-08, + "ensor": 7.76e-08, + "environnement": 7.76e-08, + "epiglottis": 7.76e-08, + "epperson": 7.76e-08, + "erosional": 7.76e-08, + "esdras": 7.76e-08, + "espadrilles": 7.76e-08, + "essam": 7.76e-08, + "essentia": 7.76e-08, + "etb": 7.76e-08, + "eutectic": 7.76e-08, + "exergy": 7.76e-08, + "expecially": 7.76e-08, + "expedience": 7.76e-08, + "expressionists": 7.76e-08, + "expungement": 7.76e-08, + "extirpation": 7.76e-08, + "extremadura": 7.76e-08, + "fabi": 7.76e-08, + "fabiani": 7.76e-08, + "fairford": 7.76e-08, + "fana": 7.76e-08, + "fancher": 7.76e-08, + "fannys": 7.76e-08, + "farleys": 7.76e-08, + "faron": 7.76e-08, + "fastpass": 7.76e-08, + "fastpitch": 7.76e-08, + "fatto": 7.76e-08, + "feedly": 7.76e-08, + "fenestration": 7.76e-08, + "figueiredo": 7.76e-08, + "fingerings": 7.76e-08, + "fireeye": 7.76e-08, + "firepit": 7.76e-08, + "firey": 7.76e-08, + "fixie": 7.76e-08, + "flashiest": 7.76e-08, + "flatfish": 7.76e-08, + "flexure": 7.76e-08, + "flocculation": 7.76e-08, + "flockhart": 7.76e-08, + "flodden": 7.76e-08, + "flopper": 7.76e-08, + "fluffier": 7.76e-08, + "flunkies": 7.76e-08, + "flycatchers": 7.76e-08, + "fmn": 7.76e-08, + "foggiest": 7.76e-08, + "folau": 7.76e-08, + "forel": 7.76e-08, + "forints": 7.76e-08, + "formes": 7.76e-08, + "fornicating": 7.76e-08, + "forshaw": 7.76e-08, + "fortner": 7.76e-08, + "fossey": 7.76e-08, + "foye": 7.76e-08, + "fpu": 7.76e-08, + "frie": 7.76e-08, + "froggatt": 7.76e-08, + "frontages": 7.76e-08, + "froude": 7.76e-08, + "furniss": 7.76e-08, + "furrier": 7.76e-08, + "fushimi": 7.76e-08, + "futurology": 7.76e-08, + "gabbro": 7.76e-08, + "gabbys": 7.76e-08, + "gaeltacht": 7.76e-08, + "gagliano": 7.76e-08, + "gallivanting": 7.76e-08, + "galston": 7.76e-08, + "gammas": 7.76e-08, + "gandalfs": 7.76e-08, + "gangetic": 7.76e-08, + "garvan": 7.76e-08, + "gauhati": 7.76e-08, + "gema": 7.76e-08, + "geoffs": 7.76e-08, + "geom": 7.76e-08, + "gesserit": 7.76e-08, + "gfy": 7.76e-08, + "gherkins": 7.76e-08, + "gigantism": 7.76e-08, + "gildan": 7.76e-08, + "giller": 7.76e-08, + "gimpy": 7.76e-08, + "glabella": 7.76e-08, + "glatt": 7.76e-08, + "glistened": 7.76e-08, + "godmothers": 7.76e-08, + "godsmack": 7.76e-08, + "goemon": 7.76e-08, + "goldfrapp": 7.76e-08, + "goldstar": 7.76e-08, + "golfo": 7.76e-08, + "goncourt": 7.76e-08, + "goodby": 7.76e-08, + "goooo": 7.76e-08, + "gorbals": 7.76e-08, + "grandfathering": 7.76e-08, + "granholm": 7.76e-08, + "granulosa": 7.76e-08, + "greedo": 7.76e-08, + "greenbergs": 7.76e-08, + "greenspace": 7.76e-08, + "groh": 7.76e-08, + "grot": 7.76e-08, + "grrrrr": 7.76e-08, + "gtpase": 7.76e-08, + "guanacaste": 7.76e-08, + "guillemots": 7.76e-08, + "guillotines": 7.76e-08, + "guinn": 7.76e-08, + "gusev": 7.76e-08, + "gyeongju": 7.76e-08, + "haart": 7.76e-08, + "haciendas": 7.76e-08, + "hackberry": 7.76e-08, + "hackle": 7.76e-08, + "haileys": 7.76e-08, + "halifaxs": 7.76e-08, + "hallman": 7.76e-08, + "hallstatt": 7.76e-08, + "halvorson": 7.76e-08, + "hamrick": 7.76e-08, + "handbill": 7.76e-08, + "handcart": 7.76e-08, + "handcrafts": 7.76e-08, + "hane": 7.76e-08, + "hange": 7.76e-08, + "hape": 7.76e-08, + "hapgood": 7.76e-08, + "harling": 7.76e-08, + "harrisville": 7.76e-08, + "hartson": 7.76e-08, + "haslett": 7.76e-08, + "hassall": 7.76e-08, + "hatty": 7.76e-08, + "headbutts": 7.76e-08, + "heckles": 7.76e-08, + "hees": 6.03e-08, + "heeling": 7.76e-08, + "heiden": 7.76e-08, + "helianthus": 7.76e-08, + "hellions": 7.76e-08, + "hepatotoxicity": 7.76e-08, + "hermosillo": 7.76e-08, + "herridge": 7.76e-08, + "herro": 7.76e-08, + "hidey": 7.76e-08, + "higley": 7.76e-08, + "hijrah": 7.76e-08, + "hille": 7.76e-08, + "hippa": 7.76e-08, + "hippolyta": 7.76e-08, + "hirota": 7.76e-08, + "hisao": 7.76e-08, + "hisense": 7.76e-08, + "hmcs": 7.76e-08, + "hoarseness": 7.76e-08, + "hobbiton": 7.76e-08, + "hoechst": 7.76e-08, + "hogshead": 7.76e-08, + "holism": 7.76e-08, + "holness": 7.76e-08, + "hominins": 7.76e-08, + "hongbin": 7.76e-08, + "hoplite": 7.76e-08, + "horsetail": 7.76e-08, + "hotpants": 7.76e-08, + "hotwife": 7.76e-08, + "houlton": 7.76e-08, + "huard": 7.76e-08, + "humanizes": 7.76e-08, + "humorists": 7.76e-08, + "huntingdonshire": 7.76e-08, + "hurghada": 7.76e-08, + "hustlin": 7.76e-08, + "huu": 7.76e-08, + "hyams": 7.76e-08, + "hydroxylation": 7.76e-08, + "hypericum": 7.76e-08, + "icecube": 7.76e-08, + "idiotically": 7.76e-08, + "idylls": 7.76e-08, + "ignominiously": 7.76e-08, + "ikebukuro": 7.76e-08, + "immunoprecipitation": 7.76e-08, + "impositions": 7.76e-08, + "inclusionary": 7.76e-08, + "incr": 7.76e-08, + "indigenes": 7.76e-08, + "indigenously": 7.76e-08, + "inducers": 7.76e-08, + "infests": 7.76e-08, + "infj": 7.76e-08, + "ingleside": 7.76e-08, + "initialed": 7.76e-08, + "inm": 7.76e-08, + "insel": 7.76e-08, + "institutet": 7.76e-08, + "institutionalizing": 7.76e-08, + "interamerican": 7.76e-08, + "intercessor": 7.76e-08, + "interjecting": 7.76e-08, + "interrelation": 7.76e-08, + "intersting": 7.76e-08, + "invalides": 7.76e-08, + "inverurie": 7.76e-08, + "iosco": 7.76e-08, + "ipx": 7.76e-08, + "irna": 7.76e-08, + "ironclads": 7.76e-08, + "ironmen": 7.76e-08, + "isambard": 7.76e-08, + "isomerization": 7.76e-08, + "isthe": 7.76e-08, + "isto": 7.76e-08, + "itoh": 7.76e-08, + "iwb": 7.76e-08, + "iwgp": 7.76e-08, + "jabbas": 7.76e-08, + "jalopy": 7.76e-08, + "jarre": 7.76e-08, + "javon": 7.76e-08, + "jawan": 7.76e-08, + "jetliners": 7.76e-08, + "jgr": 7.76e-08, + "johnnies": 7.76e-08, + "jointing": 7.76e-08, + "joop": 7.76e-08, + "joos": 5.5e-08, + "jotham": 7.76e-08, + "jumbos": 7.76e-08, + "jurek": 7.76e-08, + "kalen": 7.76e-08, + "karelian": 7.76e-08, + "karun": 7.76e-08, + "katina": 7.76e-08, + "katmai": 7.76e-08, + "katmandu": 7.76e-08, + "katty": 7.76e-08, + "kayes": 7.76e-08, + "kbb": 7.76e-08, + "kcrw": 7.76e-08, + "keach": 7.76e-08, + "keifer": 7.76e-08, + "kevon": 7.76e-08, + "khaldun": 7.76e-08, + "khufu": 7.76e-08, + "kika": 7.76e-08, + "kinesis": 7.76e-08, + "kingery": 7.76e-08, + "kirksville": 7.76e-08, + "kittanning": 7.76e-08, + "klick": 7.76e-08, + "knc": 7.76e-08, + "kobani": 7.76e-08, + "kohlis": 7.76e-08, + "korb": 7.76e-08, + "kosygin": 7.76e-08, + "krafts": 7.76e-08, + "kravchuk": 7.76e-08, + "kreutzer": 7.76e-08, + "kreuzer": 7.76e-08, + "kroes": 7.76e-08, + "krylov": 7.76e-08, + "kse": 7.76e-08, + "kss": 7.76e-08, + "kub": 7.76e-08, + "kumite": 7.76e-08, + "kumo": 7.76e-08, + "kundera": 7.76e-08, + "kuri": 7.76e-08, + "kuroki": 7.76e-08, + "kuster": 7.76e-08, + "kvitova": 7.76e-08, + "kwabena": 7.76e-08, + "lacanian": 7.76e-08, + "lachine": 7.76e-08, + "laemmle": 7.76e-08, + "lakhan": 7.76e-08, + "lamely": 7.76e-08, + "landauer": 7.76e-08, + "landen": 7.76e-08, + "landholding": 7.76e-08, + "lanigan": 7.76e-08, + "laning": 7.76e-08, + "lanthanide": 7.76e-08, + "lanz": 7.76e-08, + "lapras": 7.76e-08, + "latifolia": 7.76e-08, + "lauriston": 7.76e-08, + "lavishing": 7.76e-08, + "lavoro": 7.76e-08, + "lawl": 7.76e-08, + "leadbeater": 7.76e-08, + "lebowitz": 7.76e-08, + "leder": 7.76e-08, + "leftwich": 7.76e-08, + "lekki": 7.76e-08, + "lemberg": 7.76e-08, + "lese": 7.76e-08, + "lettice": 7.76e-08, + "libbing": 7.76e-08, + "libertyville": 7.76e-08, + "liebowitz": 7.76e-08, + "lightwood": 7.76e-08, + "likeability": 7.76e-08, + "limnology": 7.76e-08, + "lindahl": 7.76e-08, + "lindsley": 7.76e-08, + "liniment": 7.76e-08, + "linnell": 7.76e-08, + "lisk": 7.76e-08, + "literatura": 7.76e-08, + "loblolly": 7.76e-08, + "lochhead": 7.76e-08, + "logit": 7.76e-08, + "lolli": 7.76e-08, + "lomachenko": 7.76e-08, + "looool": 7.76e-08, + "ludmilla": 7.76e-08, + "luray": 7.76e-08, + "lustily": 7.76e-08, + "maazel": 7.76e-08, + "macarthurs": 7.76e-08, + "macgill": 7.76e-08, + "machakos": 7.76e-08, + "mackenna": 7.76e-08, + "macmanus": 7.76e-08, + "macrons": 7.76e-08, + "madams": 7.76e-08, + "maddened": 7.76e-08, + "maddocks": 7.76e-08, + "madeon": 7.76e-08, + "magali": 7.76e-08, + "magnetizing": 7.76e-08, + "mahabad": 7.76e-08, + "mainers": 7.76e-08, + "maistre": 7.76e-08, + "malas": 7.76e-08, + "malet": 7.76e-08, + "malicks": 7.76e-08, + "malloch": 7.76e-08, + "manawatu": 7.76e-08, + "manky": 7.76e-08, + "manresa": 7.76e-08, + "marchal": 7.76e-08, + "mareeba": 7.76e-08, + "markin": 7.76e-08, + "marquinhos": 7.76e-08, + "marzio": 7.76e-08, + "massi": 7.76e-08, + "matan": 7.76e-08, + "materialization": 7.76e-08, + "mattocks": 7.76e-08, + "mazen": 7.76e-08, + "mazzy": 7.76e-08, + "mcclary": 7.76e-08, + "mcclurg": 7.76e-08, + "mcdermid": 7.76e-08, + "mcintyres": 7.76e-08, + "mcstuffins": 7.76e-08, + "meddler": 7.76e-08, + "medius": 7.76e-08, + "meireles": 7.76e-08, + "melamed": 7.76e-08, + "memb": 7.76e-08, + "mementoes": 7.76e-08, + "memoire": 7.76e-08, + "mentalism": 7.76e-08, + "mente": 7.76e-08, + "menz": 7.76e-08, + "methylamine": 7.76e-08, + "metropolitans": 7.76e-08, + "michaelangelo": 7.76e-08, + "microcrystalline": 7.76e-08, + "microwaveable": 7.76e-08, + "militiaman": 7.76e-08, + "milverton": 7.76e-08, + "minestrone": 7.76e-08, + "miramichi": 7.76e-08, + "miserere": 7.76e-08, + "mispronounce": 7.76e-08, + "mispronunciation": 7.76e-08, + "missandei": 7.76e-08, + "miti": 7.76e-08, + "mnp": 7.76e-08, + "modellers": 7.76e-08, + "mogi": 7.76e-08, + "moho": 7.76e-08, + "moisturise": 7.76e-08, + "molla": 7.76e-08, + "momsen": 7.76e-08, + "monographic": 7.76e-08, + "montalcino": 7.76e-08, + "moondance": 7.76e-08, + "morphism": 7.76e-08, + "morrice": 7.76e-08, + "mortuaries": 7.76e-08, + "mossadegh": 7.76e-08, + "mowatt": 7.76e-08, + "mulberries": 7.76e-08, + "mullally": 7.76e-08, + "muncher": 7.76e-08, + "murti": 7.76e-08, + "mutuel": 7.76e-08, + "nahhh": 7.76e-08, + "najee": 7.76e-08, + "nakazawa": 7.76e-08, + "namen": 7.76e-08, + "nanterre": 7.76e-08, + "navarone": 7.76e-08, + "ndb": 7.76e-08, + "neena": 7.76e-08, + "negligee": 7.76e-08, + "nephites": 7.76e-08, + "nescafe": 7.76e-08, + "netta": 7.76e-08, + "neuhaus": 7.76e-08, + "neuritis": 7.76e-08, + "neuschwanstein": 7.76e-08, + "newells": 7.76e-08, + "newspapermen": 7.76e-08, + "newstart": 7.76e-08, + "nexis": 7.76e-08, + "nfo": 7.76e-08, + "ngu": 7.76e-08, + "nikolaev": 7.76e-08, + "nikolaevich": 7.76e-08, + "nonpolar": 7.76e-08, + "nonsexual": 7.76e-08, + "nordstroms": 7.76e-08, + "novelli": 7.76e-08, + "novembre": 7.76e-08, + "nucleolar": 7.76e-08, + "nullarbor": 7.76e-08, + "nuttiness": 7.76e-08, + "nuzlocke": 7.76e-08, + "obito": 7.76e-08, + "ochi": 7.76e-08, + "odebrecht": 7.76e-08, + "offeror": 7.76e-08, + "offertory": 7.76e-08, + "oldbury": 7.76e-08, + "olufsen": 7.76e-08, + "olver": 7.76e-08, + "ombudsmen": 7.76e-08, + "omori": 7.76e-08, + "omr": 7.76e-08, + "orbigny": 7.76e-08, + "orci": 7.76e-08, + "orcutt": 7.76e-08, + "ordonez": 7.76e-08, + "orenburg": 7.76e-08, + "oromia": 7.76e-08, + "oros": 7.76e-08, + "orry": 7.76e-08, + "ossa": 7.76e-08, + "otu": 7.76e-08, + "outclass": 7.76e-08, + "outriggers": 7.76e-08, + "overindulgence": 7.76e-08, + "ovipositor": 7.76e-08, + "oyl": 7.76e-08, + "paintballing": 7.76e-08, + "pakatan": 7.76e-08, + "panasonics": 7.76e-08, + "panipat": 7.76e-08, + "paolini": 7.76e-08, + "parenti": 7.76e-08, + "parkinsonism": 7.76e-08, + "parvin": 7.76e-08, + "pastoralist": 7.76e-08, + "pawson": 7.76e-08, + "payphones": 7.76e-08, + "pealing": 7.76e-08, + "pedlar": 7.76e-08, + "peets": 7.76e-08, + "perham": 7.76e-08, + "peristome": 7.76e-08, + "perrysburg": 7.76e-08, + "pershore": 7.76e-08, + "peskov": 7.76e-08, + "pestilent": 7.76e-08, + "pfalz": 7.76e-08, + "philippes": 7.76e-08, + "photodynamic": 7.76e-08, + "pichu": 7.76e-08, + "piemonte": 7.76e-08, + "pikemen": 7.76e-08, + "pilipino": 7.76e-08, + "pilton": 7.76e-08, + "pimco": 7.76e-08, + "pimm": 7.76e-08, + "pimply": 7.76e-08, + "pinatubo": 7.76e-08, + "piously": 7.76e-08, + "piro": 7.76e-08, + "plasticizer": 7.76e-08, + "platers": 7.76e-08, + "pneumonitis": 7.76e-08, + "podrick": 7.76e-08, + "poky": 7.76e-08, + "polonia": 7.76e-08, + "ponyboy": 7.76e-08, + "poofs": 7.76e-08, + "pouvoir": 7.76e-08, + "poyser": 7.76e-08, + "prabowo": 7.76e-08, + "praetorius": 7.76e-08, + "precariousness": 7.76e-08, + "predicative": 7.76e-08, + "preller": 7.76e-08, + "presario": 7.76e-08, + "priciest": 7.76e-08, + "printmakers": 7.76e-08, + "prinze": 7.76e-08, + "prodi": 7.76e-08, + "profilers": 7.76e-08, + "proles": 7.76e-08, + "propitiation": 7.76e-08, + "proprio": 7.76e-08, + "prorogued": 7.76e-08, + "provan": 7.76e-08, + "publishings": 7.76e-08, + "pumpernickel": 7.76e-08, + "pupate": 7.76e-08, + "purohit": 7.76e-08, + "pushbutton": 7.76e-08, + "puskas": 7.76e-08, + "pussys": 7.76e-08, + "qaradawi": 7.76e-08, + "qatada": 7.76e-08, + "qualm": 7.76e-08, + "quaresma": 7.76e-08, + "quested": 7.76e-08, + "quiches": 7.76e-08, + "racketeers": 7.76e-08, + "radner": 7.76e-08, + "radwan": 7.76e-08, + "rafaels": 7.76e-08, + "raimondi": 7.76e-08, + "rajapakse": 7.76e-08, + "rajni": 7.76e-08, + "ramas": 7.76e-08, + "rass": 7.76e-08, + "raut": 7.76e-08, + "rava": 7.76e-08, + "ravager": 7.76e-08, + "rawest": 7.76e-08, + "rbt": 7.76e-08, + "rdg": 7.76e-08, + "reali": 7.76e-08, + "reber": 7.76e-08, + "reblog": 7.76e-08, + "recirculated": 7.76e-08, + "reclines": 7.76e-08, + "recoded": 7.76e-08, + "recommitted": 7.76e-08, + "redbrick": 7.76e-08, + "redfearn": 7.76e-08, + "rediscovers": 7.76e-08, + "redrafted": 7.76e-08, + "reemerge": 7.76e-08, + "refinish": 7.76e-08, + "regaling": 7.76e-08, + "regans": 7.76e-08, + "reintroduces": 7.76e-08, + "reisner": 7.76e-08, + "reissuing": 7.76e-08, + "relaid": 7.76e-08, + "relegations": 7.76e-08, + "remonstrated": 7.76e-08, + "reniform": 7.76e-08, + "repacking": 7.76e-08, + "repetitiveness": 7.76e-08, + "repopulation": 7.76e-08, + "repurchasing": 7.76e-08, + "reqs": 7.76e-08, + "resampling": 7.76e-08, + "reseal": 7.76e-08, + "resit": 7.76e-08, + "restates": 7.76e-08, + "rewilding": 7.76e-08, + "rgd": 7.76e-08, + "richters": 7.76e-08, + "ridgeville": 7.76e-08, + "ridic": 7.76e-08, + "rids": 7.76e-08, + "rill": 7.76e-08, + "rimpac": 7.76e-08, + "rimshot": 7.76e-08, + "roadsters": 7.76e-08, + "robertss": 7.76e-08, + "rodes": 7.76e-08, + "rodrigue": 7.76e-08, + "rolston": 7.76e-08, + "romanes": 7.76e-08, + "romulo": 7.76e-08, + "rooibos": 7.76e-08, + "rootin": 7.76e-08, + "roundworm": 7.76e-08, + "rousseaus": 7.76e-08, + "rtn": 7.76e-08, + "ruess": 7.76e-08, + "rugg": 7.76e-08, + "rundschau": 7.76e-08, + "sachsen": 7.76e-08, + "saeki": 7.76e-08, + "saff": 7.76e-08, + "safia": 7.76e-08, + "salonga": 7.76e-08, + "samini": 7.76e-08, + "sandvik": 7.76e-08, + "sanfrecce": 7.76e-08, + "sarsour": 7.76e-08, + "satrap": 7.76e-08, + "satriani": 7.76e-08, + "scarry": 7.76e-08, + "scheffler": 7.76e-08, + "schley": 7.76e-08, + "schoop": 7.76e-08, + "schram": 7.76e-08, + "scowls": 7.76e-08, + "scriven": 7.76e-08, + "scruple": 7.76e-08, + "seafoam": 7.76e-08, + "seanad": 7.76e-08, + "seavey": 7.76e-08, + "secor": 7.76e-08, + "secur": 7.76e-08, + "sede": 7.76e-08, + "seite": 7.76e-08, + "sejong": 7.76e-08, + "sellar": 7.76e-08, + "semiclassical": 7.76e-08, + "semigroups": 7.76e-08, + "septon": 7.76e-08, + "seraphina": 7.76e-08, + "shabbily": 7.76e-08, + "shadowban": 7.76e-08, + "shaik": 7.76e-08, + "shaqs": 7.76e-08, + "shimmered": 7.76e-08, + "shipwrights": 7.76e-08, + "shiraishi": 7.76e-08, + "shojo": 7.76e-08, + "shotted": 7.76e-08, + "showjumping": 7.76e-08, + "sibu": 7.76e-08, + "siddiq": 7.76e-08, + "sieber": 7.76e-08, + "silang": 7.76e-08, + "silverdale": 7.76e-08, + "silverwood": 7.76e-08, + "simard": 7.76e-08, + "sirsa": 7.76e-08, + "skulk": 7.76e-08, + "sleepwalkers": 7.76e-08, + "sloat": 7.76e-08, + "smashbros": 7.76e-08, + "smillie": 7.76e-08, + "snorkels": 7.76e-08, + "snorri": 7.76e-08, + "solars": 7.76e-08, + "someth": 7.76e-08, + "sorley": 7.76e-08, + "sorters": 7.76e-08, + "souleymane": 7.76e-08, + "soumya": 7.76e-08, + "sourcebooks": 7.76e-08, + "southdown": 7.76e-08, + "sowers": 7.76e-08, + "spacek": 7.76e-08, + "spada": 7.76e-08, + "specialisms": 7.76e-08, + "spedding": 7.76e-08, + "sputters": 7.76e-08, + "srna": 7.76e-08, + "srx": 7.76e-08, + "standart": 7.76e-08, + "standpipe": 7.76e-08, + "stel": 7.76e-08, + "stelae": 7.76e-08, + "stellan": 7.76e-08, + "stevedore": 7.76e-08, + "stiffest": 7.76e-08, + "stigler": 7.76e-08, + "stimulations": 7.76e-08, + "stipple": 7.76e-08, + "strangeways": 7.76e-08, + "strangways": 7.76e-08, + "strasberg": 7.76e-08, + "strathspey": 7.76e-08, + "stretchable": 7.76e-08, + "striate": 7.76e-08, + "studium": 7.76e-08, + "stuka": 7.76e-08, + "stull": 7.76e-08, + "sturgill": 7.76e-08, + "stylin": 7.76e-08, + "subordinating": 7.76e-08, + "subscale": 7.76e-08, + "subsidization": 7.76e-08, + "sugawara": 7.76e-08, + "suikoden": 7.76e-08, + "suisun": 7.76e-08, + "sukumaran": 7.76e-08, + "sulfoxide": 7.76e-08, + "summitt": 7.76e-08, + "sundowner": 7.76e-08, + "sunfire": 7.76e-08, + "sunpower": 7.76e-08, + "superba": 7.76e-08, + "supermicro": 7.76e-08, + "susman": 7.76e-08, + "suzu": 7.76e-08, + "swiftkey": 7.76e-08, + "swished": 7.76e-08, + "synthwave": 7.76e-08, + "tacklers": 7.76e-08, + "tagliatelle": 7.76e-08, + "tahlequah": 7.76e-08, + "tajima": 7.76e-08, + "tamako": 7.76e-08, + "taner": 7.76e-08, + "tanzanite": 7.76e-08, + "tapirs": 7.76e-08, + "taranis": 7.76e-08, + "tarter": 7.76e-08, + "tato": 7.76e-08, + "tattletale": 7.76e-08, + "taverner": 7.76e-08, + "teac": 7.76e-08, + "teachout": 7.76e-08, + "tearaway": 7.76e-08, + "technol": 7.76e-08, + "teddie": 7.76e-08, + "teetotal": 7.76e-08, + "tenuously": 7.76e-08, + "terf": 7.76e-08, + "terris": 5.01e-08, + "testino": 7.76e-08, + "thalamic": 7.76e-08, + "thas": 7.76e-08, + "theirselves": 7.76e-08, + "theorise": 7.76e-08, + "thermosetting": 7.76e-08, + "thorpes": 7.76e-08, + "thorsen": 7.76e-08, + "tigard": 7.76e-08, + "tihar": 7.76e-08, + "tillinghast": 7.76e-08, + "tillys": 7.76e-08, + "timoshenko": 7.76e-08, + "tiptop": 7.76e-08, + "tirunelveli": 7.76e-08, + "toddle": 7.76e-08, + "tokay": 7.76e-08, + "toliver": 7.76e-08, + "tommorrow": 7.76e-08, + "tonis": 7.76e-08, + "torstein": 7.76e-08, + "touchwiz": 7.76e-08, + "tourny": 7.76e-08, + "trachoma": 7.76e-08, + "trackable": 7.76e-08, + "transcatheter": 7.76e-08, + "transepts": 7.76e-08, + "transferability": 7.76e-08, + "transfering": 7.76e-08, + "trapezius": 7.76e-08, + "treadle": 7.76e-08, + "treanor": 7.76e-08, + "trinamool": 7.76e-08, + "truces": 7.76e-08, + "trud": 7.76e-08, + "trudie": 7.76e-08, + "trundled": 7.76e-08, + "tsd": 7.76e-08, + "tsukamoto": 7.76e-08, + "tualatin": 7.76e-08, + "tuckahoe": 7.76e-08, + "turnpikes": 7.76e-08, + "tweep": 7.76e-08, + "twere": 7.76e-08, + "typesetter": 7.76e-08, + "tyrells": 7.76e-08, + "tyvm": 7.76e-08, + "udacity": 7.76e-08, + "uds": 1.95e-08, + "ugs": 7.76e-08, + "uhtred": 7.76e-08, + "ullswater": 7.76e-08, + "umtiti": 7.76e-08, + "unbind": 7.76e-08, + "unceremonious": 7.76e-08, + "unchartered": 7.76e-08, + "uncreative": 7.76e-08, + "undecorated": 7.76e-08, + "underboss": 7.76e-08, + "understates": 7.76e-08, + "underwrote": 7.76e-08, + "unerringly": 7.76e-08, + "unfruitful": 7.76e-08, + "ungenerous": 7.76e-08, + "unglamorous": 7.76e-08, + "unhesitatingly": 7.76e-08, + "unicast": 7.76e-08, + "uninformative": 7.76e-08, + "unkindness": 7.76e-08, + "unladylike": 7.76e-08, + "unmaking": 7.76e-08, + "unmerited": 7.76e-08, + "unmounted": 7.76e-08, + "unshaken": 7.76e-08, + "unsteadily": 7.76e-08, + "unthinkingly": 7.76e-08, + "upholsterer": 7.76e-08, + "uprated": 7.76e-08, + "uprightness": 7.76e-08, + "urbina": 7.76e-08, + "urich": 7.76e-08, + "ushi": 7.76e-08, + "vaishali": 7.76e-08, + "valeries": 7.76e-08, + "vardhan": 7.76e-08, + "varlamov": 7.76e-08, + "vasyl": 7.76e-08, + "vegalta": 7.76e-08, + "vestnik": 7.76e-08, + "vfb": 7.76e-08, + "vibraphone": 7.76e-08, + "victorys": 7.76e-08, + "vishwas": 7.76e-08, + "vlado": 7.76e-08, + "vld": 7.76e-08, + "volz": 7.76e-08, + "voyageur": 7.76e-08, + "waas": 7.76e-08, + "wagah": 7.76e-08, + "walkup": 7.76e-08, + "waziri": 7.76e-08, + "webshop": 7.76e-08, + "wgm": 7.76e-08, + "whay": 7.76e-08, + "whelmed": 7.76e-08, + "whereon": 7.76e-08, + "whippy": 7.76e-08, + "whitwell": 7.76e-08, + "wiis": 7.76e-08, + "willock": 7.76e-08, + "wilsonville": 7.76e-08, + "withings": 7.76e-08, + "wny": 7.76e-08, + "wolfsbane": 7.76e-08, + "wons": 7.76e-08, + "woofers": 7.76e-08, + "wouter": 7.76e-08, + "wowee": 7.76e-08, + "wrenn": 7.76e-08, + "writhes": 7.76e-08, + "xiomara": 7.76e-08, + "yanez": 7.76e-08, + "yei": 7.76e-08, + "yellowcake": 7.76e-08, + "yessssss": 7.76e-08, + "yogendra": 7.76e-08, + "yoma": 7.76e-08, + "yuengling": 7.76e-08, + "zabriskie": 7.76e-08, + "zaphod": 7.76e-08, + "zayd": 7.76e-08, + "zolas": 7.76e-08, + "zunino": 7.76e-08, + "aadi": 7.59e-08, + "absorbency": 7.59e-08, + "acclimatized": 7.59e-08, + "accomodations": 7.59e-08, + "accosting": 7.59e-08, + "actinic": 7.59e-08, + "actresss": 7.59e-08, + "aeolus": 7.59e-08, + "aeris": 7.59e-08, + "afghanis": 7.59e-08, + "africanist": 7.59e-08, + "africanized": 7.59e-08, + "afterwords": 7.59e-08, + "agit": 7.59e-08, + "agouti": 7.59e-08, + "aguila": 7.59e-08, + "aht": 7.59e-08, + "aikens": 7.59e-08, + "aino": 7.59e-08, + "airdropped": 7.59e-08, + "airside": 7.59e-08, + "akasaka": 7.59e-08, + "akihiko": 7.59e-08, + "aktiengesellschaft": 7.59e-08, + "alara": 7.59e-08, + "albani": 7.59e-08, + "albina": 7.59e-08, + "albini": 7.59e-08, + "alcaraz": 7.59e-08, + "aleichem": 7.59e-08, + "alexandru": 7.59e-08, + "alin": 7.59e-08, + "aliza": 7.59e-08, + "allegorically": 7.59e-08, + "altec": 7.59e-08, + "altieri": 7.59e-08, + "alya": 7.59e-08, + "amazingness": 7.59e-08, + "amoroso": 7.59e-08, + "amphipods": 7.59e-08, + "anakins": 7.59e-08, + "ancap": 7.59e-08, + "andal": 7.59e-08, + "anglesea": 7.59e-08, + "angleton": 7.59e-08, + "anodizing": 7.59e-08, + "anomalously": 7.59e-08, + "anri": 7.59e-08, + "anterograde": 7.59e-08, + "anth": 7.59e-08, + "antonine": 7.59e-08, + "antwerpen": 7.59e-08, + "arabesques": 7.59e-08, + "araw": 7.59e-08, + "arcanine": 7.59e-08, + "arceus": 7.59e-08, + "arigato": 7.59e-08, + "aristarchus": 7.59e-08, + "arlie": 7.59e-08, + "arminianism": 7.59e-08, + "arrian": 7.59e-08, + "arterioles": 7.59e-08, + "asai": 7.59e-08, + "asar": 7.59e-08, + "ashfaq": 7.59e-08, + "ashwood": 7.59e-08, + "asper": 7.59e-08, + "astronomic": 7.59e-08, + "atid": 7.59e-08, + "ating": 7.59e-08, + "atrophic": 7.59e-08, + "attenboroughs": 7.59e-08, + "attleborough": 7.59e-08, + "avails": 7.59e-08, + "awang": 7.59e-08, + "ayyub": 7.59e-08, + "azimuthal": 7.59e-08, + "babita": 7.59e-08, + "backpedaling": 7.59e-08, + "bactria": 7.59e-08, + "bahubali": 7.59e-08, + "balazs": 7.59e-08, + "ballo": 7.59e-08, + "balo": 7.59e-08, + "bamf": 7.59e-08, + "bamiyan": 7.59e-08, + "bams": 5.25e-08, + "banat": 7.59e-08, + "bandwagons": 7.59e-08, + "banjul": 7.59e-08, + "bankss": 7.59e-08, + "bannan": 7.59e-08, + "barbering": 7.59e-08, + "barner": 7.59e-08, + "barrichello": 7.59e-08, + "baserunner": 7.59e-08, + "baserunning": 7.59e-08, + "basks": 7.59e-08, + "basutoland": 7.59e-08, + "battenberg": 7.59e-08, + "battleaxe": 7.59e-08, + "bayda": 7.59e-08, + "bayers": 7.59e-08, + "bdl": 7.59e-08, + "beanpole": 7.59e-08, + "beatson": 7.59e-08, + "beenie": 7.59e-08, + "bekah": 7.59e-08, + "belconnen": 7.59e-08, + "belleau": 7.59e-08, + "bendel": 7.59e-08, + "benevento": 7.59e-08, + "bentons": 7.59e-08, + "bentsen": 7.59e-08, + "bhagya": 7.59e-08, + "bhutans": 7.59e-08, + "biaggi": 7.59e-08, + "biblio": 7.59e-08, + "bibliographie": 7.59e-08, + "bickerton": 7.59e-08, + "biddulph": 7.59e-08, + "bierman": 7.59e-08, + "bifold": 7.59e-08, + "bilston": 7.59e-08, + "biograph": 7.59e-08, + "biopharmaceuticals": 7.59e-08, + "biopics": 7.59e-08, + "birtwistle": 7.59e-08, + "bitwise": 7.59e-08, + "blak": 7.59e-08, + "blankfein": 7.59e-08, + "blasco": 7.59e-08, + "blenkinsop": 7.59e-08, + "blr": 7.59e-08, + "bnw": 7.59e-08, + "bobb": 7.59e-08, + "bobbs": 7.59e-08, + "boeotia": 7.59e-08, + "bondarenko": 7.59e-08, + "bondy": 7.59e-08, + "bopped": 7.59e-08, + "bothe": 7.59e-08, + "bounteous": 7.59e-08, + "bowley": 7.59e-08, + "braehead": 7.59e-08, + "brahim": 7.59e-08, + "brandts": 7.59e-08, + "brault": 7.59e-08, + "bravehearts": 7.59e-08, + "brazed": 7.59e-08, + "brisson": 7.59e-08, + "broadsheets": 7.59e-08, + "brookvale": 7.59e-08, + "brummie": 7.59e-08, + "bsw": 7.59e-08, + "budo": 7.59e-08, + "buli": 7.59e-08, + "bullwhip": 7.59e-08, + "burrata": 7.59e-08, + "buttle": 7.59e-08, + "cadastre": 7.59e-08, + "cais": 7.59e-08, + "calcitonin": 7.59e-08, + "camargue": 7.59e-08, + "campi": 7.59e-08, + "camrose": 7.59e-08, + "canadienne": 7.59e-08, + "canaletto": 7.59e-08, + "cannell": 7.59e-08, + "canoeists": 7.59e-08, + "canonised": 7.59e-08, + "cantering": 7.59e-08, + "capitols": 6.92e-08, + "carbonization": 7.59e-08, + "carcinogenicity": 7.59e-08, + "carlisles": 7.59e-08, + "caruthers": 7.59e-08, + "carvery": 7.59e-08, + "cascada": 7.59e-08, + "cascais": 7.59e-08, + "cassels": 7.59e-08, + "catalpa": 7.59e-08, + "catbird": 7.59e-08, + "causey": 7.59e-08, + "cbg": 7.59e-08, + "ccss": 7.59e-08, + "cdot": 7.59e-08, + "ceiba": 7.59e-08, + "celestron": 7.59e-08, + "cels": 7.59e-08, + "centaurus": 7.59e-08, + "centralist": 7.59e-08, + "cephalosporins": 7.59e-08, + "cerner": 7.59e-08, + "cff": 7.59e-08, + "cgpa": 7.59e-08, + "chaldea": 7.59e-08, + "charnwood": 7.59e-08, + "chauncy": 7.59e-08, + "cheapens": 7.59e-08, + "cheikh": 7.59e-08, + "chicky": 7.59e-08, + "chillier": 7.59e-08, + "chisolm": 7.59e-08, + "chk": 7.59e-08, + "chlorpromazine": 7.59e-08, + "chlorpyrifos": 7.59e-08, + "choiseul": 7.59e-08, + "chondrites": 7.59e-08, + "chud": 7.59e-08, + "chunder": 7.59e-08, + "ciaa": 7.59e-08, + "citylink": 7.59e-08, + "clansman": 7.59e-08, + "claydon": 7.59e-08, + "cleanness": 7.59e-08, + "cleggs": 7.59e-08, + "cleghorn": 7.59e-08, + "clementines": 7.59e-08, + "clicky": 7.59e-08, + "clitic": 7.59e-08, + "clobbering": 7.59e-08, + "cloutier": 7.59e-08, + "clubber": 7.59e-08, + "clune": 7.59e-08, + "cnnmoney": 7.59e-08, + "coalinga": 7.59e-08, + "coba": 7.59e-08, + "cobbling": 7.59e-08, + "cockermouth": 7.59e-08, + "codman": 7.59e-08, + "coens": 7.59e-08, + "colbys": 7.59e-08, + "colden": 7.59e-08, + "coleus": 7.59e-08, + "collodion": 7.59e-08, + "colores": 7.59e-08, + "colossally": 7.59e-08, + "comfrey": 7.59e-08, + "commissaries": 7.59e-08, + "comyn": 7.59e-08, + "conforto": 7.59e-08, + "consensually": 7.59e-08, + "consequentialism": 7.59e-08, + "constrictive": 7.59e-08, + "cooksey": 7.59e-08, + "copic": 7.59e-08, + "coppinger": 7.59e-08, + "corrientes": 7.59e-08, + "corrs": 7.59e-08, + "corvair": 7.59e-08, + "coulters": 7.59e-08, + "counteroffer": 7.59e-08, + "covens": 7.59e-08, + "crabgrass": 7.59e-08, + "crary": 7.59e-08, + "creedmoor": 7.59e-08, + "crees": 7.59e-08, + "crg": 7.59e-08, + "cribbed": 7.59e-08, + "crossbars": 7.59e-08, + "crosslinked": 7.59e-08, + "crowbars": 7.59e-08, + "cumber": 7.59e-08, + "cuore": 7.59e-08, + "cutaways": 7.59e-08, + "cwe": 7.59e-08, + "cwi": 7.59e-08, + "dagny": 7.59e-08, + "daher": 7.59e-08, + "dailys": 7.59e-08, + "daphnis": 7.59e-08, + "darbar": 7.59e-08, + "datatype": 7.59e-08, + "deceits": 7.59e-08, + "decemberists": 7.59e-08, + "decriminalised": 7.59e-08, + "deller": 7.59e-08, + "demonizes": 7.59e-08, + "demyelination": 7.59e-08, + "deontay": 7.59e-08, + "deontological": 7.59e-08, + "deprecate": 7.59e-08, + "descriptively": 7.59e-08, + "dete": 7.59e-08, + "determinable": 7.59e-08, + "detweiler": 7.59e-08, + "devastator": 7.59e-08, + "devonta": 7.59e-08, + "dfd": 7.59e-08, + "dhb": 7.59e-08, + "dibiase": 7.59e-08, + "diddys": 7.59e-08, + "didymus": 7.59e-08, + "dielectrics": 7.59e-08, + "diggory": 7.59e-08, + "digitals": 6.03e-08, + "dilaudid": 7.59e-08, + "diphenyl": 7.59e-08, + "directo": 7.59e-08, + "disarmingly": 7.59e-08, + "discriminations": 7.59e-08, + "dishonoring": 7.59e-08, + "disingenuously": 7.59e-08, + "dispersants": 7.59e-08, + "disrupter": 7.59e-08, + "distillates": 7.59e-08, + "divots": 7.59e-08, + "docter": 7.59e-08, + "docteur": 7.59e-08, + "dogo": 7.59e-08, + "dokey": 7.59e-08, + "doona": 7.59e-08, + "doonesbury": 7.59e-08, + "dosimeter": 7.59e-08, + "dotd": 7.59e-08, + "doune": 7.59e-08, + "downeys": 7.59e-08, + "downline": 7.59e-08, + "dowse": 7.59e-08, + "doxy": 7.59e-08, + "dozers": 7.59e-08, + "dreiser": 7.59e-08, + "dryas": 7.59e-08, + "dtl": 7.59e-08, + "dumbfuck": 7.59e-08, + "dunkel": 7.59e-08, + "dutchmans": 7.59e-08, + "dvdrip": 7.59e-08, + "dwc": 7.59e-08, + "eades": 7.59e-08, + "eales": 7.59e-08, + "eatons": 7.59e-08, + "edexcel": 7.59e-08, + "ednas": 7.59e-08, + "edwardss": 7.59e-08, + "edwyn": 7.59e-08, + "efx": 7.59e-08, + "eig": 7.59e-08, + "eigg": 7.59e-08, + "electroencephalogram": 7.59e-08, + "elided": 7.59e-08, + "eloisa": 7.59e-08, + "eluted": 7.59e-08, + "embalmer": 7.59e-08, + "emine": 7.59e-08, + "enca": 7.59e-08, + "engelbrecht": 7.59e-08, + "engrish": 7.59e-08, + "equiped": 7.59e-08, + "eretria": 7.59e-08, + "erno": 7.59e-08, + "erroll": 7.59e-08, + "ertl": 7.59e-08, + "espagne": 7.59e-08, + "estrin": 7.59e-08, + "etcher": 7.59e-08, + "eurodollar": 7.59e-08, + "evora": 7.59e-08, + "ewings": 6.31e-08, + "excreting": 7.59e-08, + "exos": 6.61e-08, + "expansively": 7.59e-08, + "expensed": 7.59e-08, + "exudate": 7.59e-08, + "facundo": 7.59e-08, + "fadl": 7.59e-08, + "fakenham": 7.59e-08, + "falaise": 7.59e-08, + "famiglia": 7.59e-08, + "famitsu": 7.59e-08, + "fantasising": 7.59e-08, + "fantastico": 7.59e-08, + "fascial": 7.59e-08, + "fastfood": 7.59e-08, + "fatehpur": 7.59e-08, + "fawned": 7.59e-08, + "fcra": 7.59e-08, + "fdl": 7.59e-08, + "feburary": 7.59e-08, + "fep": 7.59e-08, + "fergies": 7.59e-08, + "festers": 7.59e-08, + "festiva": 7.59e-08, + "fibber": 7.59e-08, + "filtrate": 7.59e-08, + "financings": 7.59e-08, + "firefall": 7.59e-08, + "fistulas": 7.59e-08, + "flagellate": 7.59e-08, + "flattest": 7.59e-08, + "flues": 7.59e-08, + "folgers": 7.59e-08, + "foodbanks": 7.59e-08, + "foremast": 7.59e-08, + "forti": 7.59e-08, + "fourche": 7.59e-08, + "fpd": 7.59e-08, + "fragilis": 7.59e-08, + "fraid": 7.59e-08, + "frangipani": 7.59e-08, + "freesia": 7.59e-08, + "freetime": 7.59e-08, + "fruitcakes": 7.59e-08, + "fruitfully": 7.59e-08, + "frusciante": 7.59e-08, + "fsk": 7.59e-08, + "fucka": 7.59e-08, + "fumiko": 7.59e-08, + "fuschia": 7.59e-08, + "futilely": 7.59e-08, + "gadkari": 7.59e-08, + "gaits": 7.59e-08, + "gallaher": 7.59e-08, + "gallants": 7.59e-08, + "gallerist": 7.59e-08, + "galloways": 7.59e-08, + "galvatron": 7.59e-08, + "gameiro": 7.59e-08, + "gastroparesis": 7.59e-08, + "gateau": 7.59e-08, + "gaven": 7.59e-08, + "gaveston": 7.59e-08, + "gcpd": 7.59e-08, + "geht": 7.59e-08, + "geiss": 7.59e-08, + "gentil": 7.59e-08, + "geopolitically": 7.59e-08, + "geostrategic": 7.59e-08, + "gerasimov": 7.59e-08, + "geth": 7.59e-08, + "ghi": 7.59e-08, + "giffen": 7.59e-08, + "ginning": 7.59e-08, + "glacially": 7.59e-08, + "glauber": 7.59e-08, + "glm": 7.59e-08, + "gloversville": 7.59e-08, + "glumly": 7.59e-08, + "gobain": 7.59e-08, + "godspell": 7.59e-08, + "gohar": 7.59e-08, + "goldsteins": 7.59e-08, + "gonad": 7.59e-08, + "gondar": 7.59e-08, + "goodjob": 7.59e-08, + "goopy": 7.59e-08, + "goosen": 7.59e-08, + "grandaddy": 7.59e-08, + "grapeshot": 7.59e-08, + "gratian": 7.59e-08, + "greasers": 7.59e-08, + "greediness": 7.59e-08, + "greenbriar": 7.59e-08, + "grell": 7.59e-08, + "gries": 7.59e-08, + "grok": 7.59e-08, + "grommets": 7.59e-08, + "groper": 7.59e-08, + "gry": 7.59e-08, + "gunge": 7.59e-08, + "gup": 7.59e-08, + "guttmacher": 7.59e-08, + "gwt": 7.59e-08, + "gyr": 7.59e-08, + "haberdasher": 7.59e-08, + "habersham": 7.59e-08, + "haemorrhoids": 7.59e-08, + "haidt": 7.59e-08, + "halfwit": 7.59e-08, + "hallandale": 7.59e-08, + "hamline": 7.59e-08, + "hanas": 7.59e-08, + "hansi": 7.59e-08, + "hardboard": 7.59e-08, + "hardeman": 7.59e-08, + "hardliner": 7.59e-08, + "harebrained": 7.59e-08, + "harrenhal": 7.59e-08, + "haruo": 7.59e-08, + "hauge": 7.59e-08, + "havemeyer": 7.59e-08, + "hawthornes": 7.59e-08, + "headmen": 7.59e-08, + "hemochromatosis": 7.59e-08, + "hendriks": 7.59e-08, + "heraclius": 7.59e-08, + "herp": 7.59e-08, + "hessians": 7.59e-08, + "hetchy": 7.59e-08, + "heterochromatin": 7.59e-08, + "heterocycles": 7.59e-08, + "heysham": 7.59e-08, + "hilario": 7.59e-08, + "historica": 7.59e-08, + "hitam": 7.59e-08, + "hobi": 7.59e-08, + "hohenlohe": 7.59e-08, + "hollerin": 7.59e-08, + "hollowell": 7.59e-08, + "homem": 7.59e-08, + "homepod": 7.59e-08, + "homerton": 7.59e-08, + "honeymooning": 7.59e-08, + "hoos": 7.59e-08, + "hopton": 7.59e-08, + "horncastle": 7.59e-08, + "hottentot": 7.59e-08, + "hotz": 7.59e-08, + "hsh": 7.59e-08, + "humaine": 7.59e-08, + "hunkering": 7.59e-08, + "hybridize": 7.59e-08, + "hymie": 7.59e-08, + "hyperhidrosis": 7.59e-08, + "hyperparathyroidism": 7.59e-08, + "hypothesizing": 7.59e-08, + "ibeacon": 7.59e-08, + "icer": 7.59e-08, + "ified": 7.59e-08, + "igd": 7.59e-08, + "ihnen": 7.59e-08, + "illuminators": 7.59e-08, + "imes": 7.59e-08, + "inculcating": 7.59e-08, + "indaba": 7.59e-08, + "inglenook": 7.59e-08, + "inglese": 7.59e-08, + "inhalant": 7.59e-08, + "inl": 7.59e-08, + "inoculating": 7.59e-08, + "inputted": 7.59e-08, + "insa": 7.59e-08, + "insecta": 7.59e-08, + "interbedded": 7.59e-08, + "intercompany": 7.59e-08, + "interposition": 7.59e-08, + "inverses": 7.59e-08, + "ironmonger": 7.59e-08, + "ironworkers": 7.59e-08, + "isai": 7.59e-08, + "italien": 7.59e-08, + "iterates": 7.59e-08, + "ivp": 7.59e-08, + "jaar": 7.59e-08, + "jakartas": 7.59e-08, + "jaro": 7.59e-08, + "jasna": 7.59e-08, + "jedis": 5.75e-08, + "jedinak": 7.59e-08, + "jennette": 7.59e-08, + "jerod": 7.59e-08, + "jese": 7.59e-08, + "jihan": 7.59e-08, + "jinpings": 7.59e-08, + "johnsson": 7.59e-08, + "jord": 7.59e-08, + "jordaan": 7.59e-08, + "jumla": 7.59e-08, + "junco": 7.59e-08, + "junichiro": 7.59e-08, + "junipers": 7.59e-08, + "junto": 7.59e-08, + "jurgens": 7.59e-08, + "jutta": 7.59e-08, + "jux": 7.59e-08, + "kabob": 7.59e-08, + "kachina": 7.59e-08, + "kaf": 7.59e-08, + "kaiji": 7.59e-08, + "kaikoura": 7.59e-08, + "kamino": 7.59e-08, + "kampen": 7.59e-08, + "karlstad": 7.59e-08, + "kasa": 7.59e-08, + "katahdin": 7.59e-08, + "katan": 7.59e-08, + "kathryns": 7.59e-08, + "kaylie": 7.59e-08, + "keizer": 7.59e-08, + "keygen": 7.59e-08, + "khaimah": 7.59e-08, + "khodorkovsky": 7.59e-08, + "khomeinis": 7.59e-08, + "kilmartin": 7.59e-08, + "kinki": 7.59e-08, + "kinzie": 7.59e-08, + "kirra": 7.59e-08, + "kittie": 7.59e-08, + "klebold": 7.59e-08, + "klia": 7.59e-08, + "klinghoffer": 7.59e-08, + "knaresborough": 7.59e-08, + "knaus": 7.59e-08, + "knobbly": 7.59e-08, + "knt": 7.59e-08, + "knuckleball": 7.59e-08, + "koharu": 7.59e-08, + "koki": 7.59e-08, + "kombi": 7.59e-08, + "kommen": 7.59e-08, + "korolev": 7.59e-08, + "kournikova": 7.59e-08, + "kowalczyk": 7.59e-08, + "krim": 7.59e-08, + "krit": 7.59e-08, + "kriya": 7.59e-08, + "kroq": 7.59e-08, + "ktvu": 7.59e-08, + "kufr": 7.59e-08, + "kugler": 7.59e-08, + "kuka": 7.59e-08, + "kumaon": 7.59e-08, + "kumble": 7.59e-08, + "kyries": 7.59e-08, + "laat": 7.59e-08, + "lachance": 7.59e-08, + "lafd": 7.59e-08, + "lalala": 7.59e-08, + "landgraf": 7.59e-08, + "laner": 7.59e-08, + "latrell": 7.59e-08, + "laub": 7.59e-08, + "leatherneck": 7.59e-08, + "leesville": 7.59e-08, + "legibly": 7.59e-08, + "lengthways": 7.59e-08, + "lensed": 7.59e-08, + "leontes": 7.59e-08, + "leptons": 7.59e-08, + "lesage": 7.59e-08, + "lescott": 7.59e-08, + "letras": 7.59e-08, + "lexikon": 7.59e-08, + "lgbtqi": 7.59e-08, + "lgr": 7.59e-08, + "libreville": 7.59e-08, + "lifehouse": 7.59e-08, + "lilliputian": 7.59e-08, + "lizette": 7.59e-08, + "ljungberg": 7.59e-08, + "lmaooooo": 7.59e-08, + "lobotomized": 7.59e-08, + "localizations": 7.59e-08, + "localizes": 7.59e-08, + "longarm": 7.59e-08, + "lorenzi": 7.59e-08, + "lotuses": 7.59e-08, + "lubitsch": 7.59e-08, + "lugger": 7.59e-08, + "lumbago": 7.59e-08, + "lume": 7.59e-08, + "lvi": 7.59e-08, + "lynas": 7.59e-08, + "lynley": 7.59e-08, + "lynskey": 7.59e-08, + "lyophilized": 7.59e-08, + "maaaan": 7.59e-08, + "maadi": 7.59e-08, + "madeleines": 7.59e-08, + "mahalia": 7.59e-08, + "mahavira": 7.59e-08, + "mahut": 7.59e-08, + "maintenant": 7.59e-08, + "maji": 7.59e-08, + "malefic": 7.59e-08, + "malinois": 7.59e-08, + "malte": 7.59e-08, + "maluku": 7.59e-08, + "mande": 7.59e-08, + "mangaka": 7.59e-08, + "mantar": 7.59e-08, + "maqbool": 7.59e-08, + "maqsood": 7.59e-08, + "marea": 7.59e-08, + "marstons": 7.59e-08, + "martijn": 7.59e-08, + "masami": 7.59e-08, + "matchplay": 7.59e-08, + "matryoshka": 7.59e-08, + "maurie": 7.59e-08, + "mcbee": 7.59e-08, + "mccawley": 7.59e-08, + "mccullagh": 7.59e-08, + "mcgivern": 7.59e-08, + "mcphersons": 7.59e-08, + "mcwhirter": 7.59e-08, + "meconium": 7.59e-08, + "mediastinal": 7.59e-08, + "mehran": 7.59e-08, + "merchantman": 7.59e-08, + "mesdames": 7.59e-08, + "meshuggah": 7.59e-08, + "mest": 7.59e-08, + "metaphase": 7.59e-08, + "metropcs": 7.59e-08, + "meursault": 7.59e-08, + "meyerbeer": 7.59e-08, + "mgc": 7.59e-08, + "michelob": 7.59e-08, + "microfilms": 7.59e-08, + "militarised": 7.59e-08, + "millipede": 7.59e-08, + "milners": 7.59e-08, + "mindshare": 7.59e-08, + "minifig": 7.59e-08, + "miru": 7.59e-08, + "mismanaging": 7.59e-08, + "moji": 7.59e-08, + "monck": 7.59e-08, + "monotonically": 7.59e-08, + "montalbano": 7.59e-08, + "mooks": 7.59e-08, + "moonstruck": 7.59e-08, + "moroney": 7.59e-08, + "morry": 7.59e-08, + "mortalities": 7.59e-08, + "mothercare": 7.59e-08, + "moussaoui": 7.59e-08, + "mpu": 7.59e-08, + "muddles": 7.59e-08, + "muffy": 7.59e-08, + "mullion": 7.59e-08, + "multinomial": 7.59e-08, + "multiuser": 7.59e-08, + "mummery": 7.59e-08, + "munford": 7.59e-08, + "municipalitys": 7.59e-08, + "murayama": 7.59e-08, + "murex": 7.59e-08, + "murmurings": 7.59e-08, + "murnaghan": 7.59e-08, + "mutism": 7.59e-08, + "nahan": 7.59e-08, + "nambour": 7.59e-08, + "namin": 7.59e-08, + "naphtali": 7.59e-08, + "nashe": 7.59e-08, + "nbome": 7.59e-08, + "nch": 7.59e-08, + "ndu": 7.59e-08, + "nederlandse": 7.59e-08, + "neice": 7.59e-08, + "nejm": 7.59e-08, + "nenad": 7.59e-08, + "neptunia": 7.59e-08, + "nerang": 7.59e-08, + "nevi": 7.59e-08, + "newel": 7.59e-08, + "newstalk": 7.59e-08, + "newtownabbey": 7.59e-08, + "nextera": 7.59e-08, + "ngurah": 7.59e-08, + "nixie": 7.59e-08, + "nle": 7.59e-08, + "nly": 7.59e-08, + "nml": 7.59e-08, + "nocturnes": 7.59e-08, + "nonimmigrant": 7.59e-08, + "noro": 7.59e-08, + "nosocomial": 7.59e-08, + "nostro": 7.59e-08, + "nozick": 7.59e-08, + "nutcases": 7.59e-08, + "nutrisystem": 7.59e-08, + "obryan": 7.59e-08, + "oauth": 7.59e-08, + "oberman": 7.59e-08, + "oboro": 7.59e-08, + "obras": 7.59e-08, + "obregon": 7.59e-08, + "ochsner": 7.59e-08, + "ocn": 7.59e-08, + "odot": 7.59e-08, + "offen": 7.59e-08, + "ogled": 7.59e-08, + "okamura": 7.59e-08, + "oken": 7.59e-08, + "okuda": 7.59e-08, + "oleracea": 7.59e-08, + "olimpico": 7.59e-08, + "onder": 7.59e-08, + "onizuka": 7.59e-08, + "ooof": 7.59e-08, + "orbicular": 7.59e-08, + "orbitofrontal": 7.59e-08, + "orientalists": 7.59e-08, + "ornamentals": 7.59e-08, + "orthodontists": 7.59e-08, + "oryzae": 7.59e-08, + "osseous": 7.59e-08, + "ossetian": 7.59e-08, + "osteria": 7.59e-08, + "oum": 7.59e-08, + "outlasting": 7.59e-08, + "outraging": 7.59e-08, + "outwitting": 7.59e-08, + "outworld": 7.59e-08, + "overal": 7.59e-08, + "overbroad": 7.59e-08, + "overdeveloped": 7.59e-08, + "overeager": 7.59e-08, + "overspill": 7.59e-08, + "overtop": 7.59e-08, + "oxygenate": 7.59e-08, + "padmavati": 7.59e-08, + "padraic": 7.59e-08, + "paka": 7.59e-08, + "palat": 7.59e-08, + "pallavi": 7.59e-08, + "panicle": 7.59e-08, + "panisse": 7.59e-08, + "panofsky": 7.59e-08, + "papercut": 7.59e-08, + "papo": 7.59e-08, + "paramaribo": 7.59e-08, + "parcc": 7.59e-08, + "pardi": 7.59e-08, + "parochialism": 7.59e-08, + "parrikar": 7.59e-08, + "patootie": 7.59e-08, + "pattering": 7.59e-08, + "paulist": 7.59e-08, + "payg": 7.59e-08, + "pectoris": 7.59e-08, + "peden": 7.59e-08, + "peeper": 7.59e-08, + "penghu": 7.59e-08, + "penryn": 7.59e-08, + "pepperell": 7.59e-08, + "peristalsis": 7.59e-08, + "permed": 7.59e-08, + "peronist": 7.59e-08, + "perplex": 7.59e-08, + "petras": 6.61e-08, + "phaidon": 7.59e-08, + "philibert": 7.59e-08, + "phosphorescence": 7.59e-08, + "photobooks": 7.59e-08, + "physiol": 7.59e-08, + "picasa": 7.59e-08, + "piddling": 7.59e-08, + "pilchard": 7.59e-08, + "pingpong": 7.59e-08, + "pinon": 7.59e-08, + "pipedream": 7.59e-08, + "pippo": 7.59e-08, + "placentas": 7.59e-08, + "placers": 7.59e-08, + "plannin": 7.59e-08, + "playdates": 7.59e-08, + "plebe": 7.59e-08, + "plf": 7.59e-08, + "plights": 7.59e-08, + "plodded": 7.59e-08, + "ploughshares": 7.59e-08, + "poca": 7.59e-08, + "policewomen": 7.59e-08, + "pollies": 7.59e-08, + "pommes": 7.59e-08, + "postoperatively": 7.59e-08, + "potentiate": 7.59e-08, + "pouf": 7.59e-08, + "prabhas": 7.59e-08, + "preclearance": 7.59e-08, + "preity": 7.59e-08, + "premia": 7.59e-08, + "prescot": 7.59e-08, + "prive": 7.59e-08, + "prothrombin": 7.59e-08, + "prudes": 7.59e-08, + "pruett": 7.59e-08, + "psychoses": 7.59e-08, + "ptas": 7.59e-08, + "publi": 7.59e-08, + "pugliese": 7.59e-08, + "pulldown": 7.59e-08, + "pumphrey": 7.59e-08, + "punchers": 7.59e-08, + "purines": 7.59e-08, + "pvi": 7.59e-08, + "pycelle": 7.59e-08, + "qala": 7.59e-08, + "qqq": 7.59e-08, + "quadri": 7.59e-08, + "quagga": 7.59e-08, + "quakerism": 7.59e-08, + "quandaries": 7.59e-08, + "queenston": 7.59e-08, + "quen": 7.59e-08, + "quent": 7.59e-08, + "quer": 7.59e-08, + "quijote": 7.59e-08, + "quoque": 7.59e-08, + "raanta": 7.59e-08, + "rabbinate": 7.59e-08, + "radiographers": 7.59e-08, + "ragga": 7.59e-08, + "raker": 7.59e-08, + "rallycross": 7.59e-08, + "rationalising": 7.59e-08, + "razgrad": 7.59e-08, + "rcl": 7.59e-08, + "reaganomics": 7.59e-08, + "realllly": 7.59e-08, + "reapplying": 7.59e-08, + "recapitulate": 7.59e-08, + "rece": 7.59e-08, + "recoding": 7.59e-08, + "recog": 7.59e-08, + "recollecting": 7.59e-08, + "reddest": 7.59e-08, + "redmen": 7.59e-08, + "refactor": 7.59e-08, + "refn": 7.59e-08, + "refuelled": 7.59e-08, + "reggiano": 7.59e-08, + "reimann": 7.59e-08, + "rekindles": 7.59e-08, + "remunerative": 7.59e-08, + "reoccur": 7.59e-08, + "requesters": 7.59e-08, + "requisitioning": 7.59e-08, + "resupplied": 7.59e-08, + "retype": 7.59e-08, + "revan": 7.59e-08, + "rexford": 7.59e-08, + "richy": 7.59e-08, + "rietveld": 7.59e-08, + "rifampicin": 7.59e-08, + "riffraff": 7.59e-08, + "riskin": 7.59e-08, + "rivard": 7.59e-08, + "rmm": 7.59e-08, + "rnp": 7.59e-08, + "rober": 7.59e-08, + "roentgen": 7.59e-08, + "romina": 7.59e-08, + "rosetti": 7.59e-08, + "rossignol": 7.59e-08, + "rossy": 7.59e-08, + "rubberband": 7.59e-08, + "ruch": 7.59e-08, + "rufino": 7.59e-08, + "rustys": 7.59e-08, + "rutherfords": 7.59e-08, + "sabertooth": 7.59e-08, + "sabonis": 7.59e-08, + "sabretooth": 7.59e-08, + "sacristan": 7.59e-08, + "saigo": 7.59e-08, + "saini": 7.59e-08, + "salvages": 7.59e-08, + "samhsa": 7.59e-08, + "samovar": 7.59e-08, + "samoyed": 7.59e-08, + "sanatan": 7.59e-08, + "sandbagged": 7.59e-08, + "sanitised": 7.59e-08, + "sanur": 7.59e-08, + "sanyal": 7.59e-08, + "saucony": 7.59e-08, + "scads": 7.59e-08, + "scharnhorst": 7.59e-08, + "scherrer": 7.59e-08, + "schoonmaker": 7.59e-08, + "schuh": 7.59e-08, + "schwabe": 7.59e-08, + "scintillator": 7.59e-08, + "scissoring": 7.59e-08, + "scmp": 7.59e-08, + "scoob": 7.59e-08, + "scourged": 7.59e-08, + "scrying": 7.59e-08, + "seabees": 7.59e-08, + "sead": 7.59e-08, + "sealey": 7.59e-08, + "securitized": 7.59e-08, + "seebohm": 7.59e-08, + "segregationists": 7.59e-08, + "seiyuu": 7.59e-08, + "selatan": 7.59e-08, + "senex": 7.59e-08, + "sensationalistic": 7.59e-08, + "sentral": 7.59e-08, + "serj": 7.59e-08, + "serpentinite": 7.59e-08, + "servian": 7.59e-08, + "servitor": 7.59e-08, + "seyi": 7.59e-08, + "sft": 7.59e-08, + "sgl": 7.59e-08, + "shahar": 7.59e-08, + "shaitan": 7.59e-08, + "shakespear": 7.59e-08, + "sharecropping": 7.59e-08, + "sharingan": 7.59e-08, + "sheens": 7.59e-08, + "sheers": 7.59e-08, + "sholto": 7.59e-08, + "shortland": 7.59e-08, + "shulk": 7.59e-08, + "sial": 7.59e-08, + "sideshows": 7.59e-08, + "sigils": 7.59e-08, + "sikandar": 7.59e-08, + "sikka": 7.59e-08, + "silane": 7.59e-08, + "simbas": 7.59e-08, + "sinden": 7.59e-08, + "sinecure": 7.59e-08, + "sixsmith": 7.59e-08, + "slackware": 7.59e-08, + "slaveholding": 7.59e-08, + "sloughing": 7.59e-08, + "smap": 7.59e-08, + "snowblower": 7.59e-08, + "sociopathy": 7.59e-08, + "softail": 7.59e-08, + "sojourners": 7.59e-08, + "soliders": 7.59e-08, + "solovyov": 7.59e-08, + "soltan": 7.59e-08, + "somi": 7.59e-08, + "sonakshi": 7.59e-08, + "sorbo": 7.59e-08, + "sorn": 7.59e-08, + "soroka": 7.59e-08, + "soudan": 7.59e-08, + "sparknotes": 7.59e-08, + "speakman": 7.59e-08, + "spofford": 7.59e-08, + "spooling": 7.59e-08, + "sprott": 7.59e-08, + "squalene": 7.59e-08, + "squeezer": 7.59e-08, + "squelched": 7.59e-08, + "srinivasa": 7.59e-08, + "stav": 7.59e-08, + "stayers": 7.59e-08, + "steadies": 7.59e-08, + "stellaris": 7.59e-08, + "sterilizations": 7.59e-08, + "streicher": 7.59e-08, + "struan": 7.59e-08, + "stumptown": 7.59e-08, + "substantiates": 7.59e-08, + "suf": 7.59e-08, + "suffragan": 7.59e-08, + "sugita": 7.59e-08, + "suliman": 7.59e-08, + "sulpice": 7.59e-08, + "summerside": 7.59e-08, + "sunde": 7.59e-08, + "supercooled": 7.59e-08, + "superstate": 7.59e-08, + "sups": 7.59e-08, + "surgerys": 7.59e-08, + "sutlej": 7.59e-08, + "syngas": 7.59e-08, + "syracuses": 7.59e-08, + "systematize": 7.59e-08, + "tablo": 7.59e-08, + "taddeo": 7.59e-08, + "taipans": 7.59e-08, + "takayuki": 7.59e-08, + "talmage": 7.59e-08, + "tamasha": 7.59e-08, + "tanyas": 7.59e-08, + "tanzanians": 7.59e-08, + "taoists": 7.59e-08, + "tapout": 7.59e-08, + "tarak": 7.59e-08, + "tarski": 7.59e-08, + "tatas": 5.01e-08, + "tazer": 7.59e-08, + "telenovelas": 7.59e-08, + "telstar": 7.59e-08, + "tennille": 7.59e-08, + "tenterhooks": 7.59e-08, + "tetrahedra": 7.59e-08, + "thala": 7.59e-08, + "thalberg": 7.59e-08, + "theil": 7.59e-08, + "theologie": 7.59e-08, + "thigpen": 7.59e-08, + "thisbe": 7.59e-08, + "thrillingly": 7.59e-08, + "thrumming": 7.59e-08, + "thumbtack": 7.59e-08, + "tiering": 7.59e-08, + "tiffs": 7.59e-08, + "timofey": 7.59e-08, + "tintagel": 7.59e-08, + "tipsters": 7.59e-08, + "titanics": 7.59e-08, + "tity": 7.59e-08, + "tlou": 7.59e-08, + "tobie": 7.59e-08, + "tolhurst": 7.59e-08, + "tomkinson": 7.59e-08, + "toreador": 7.59e-08, + "torx": 7.59e-08, + "tourbillon": 7.59e-08, + "tourneur": 7.59e-08, + "transistorized": 7.59e-08, + "transoceanic": 7.59e-08, + "trawled": 7.59e-08, + "tsukiji": 7.59e-08, + "tsukishima": 7.59e-08, + "tuilagi": 7.59e-08, + "tukey": 7.59e-08, + "tunisie": 7.59e-08, + "turbodiesel": 7.59e-08, + "tuxes": 7.59e-08, + "tweakers": 7.59e-08, + "tyers": 7.59e-08, + "tym": 7.59e-08, + "ubereats": 7.59e-08, + "uka": 7.59e-08, + "ulam": 7.59e-08, + "ulmus": 7.59e-08, + "ultrahigh": 7.59e-08, + "ultranationalist": 7.59e-08, + "unaccountably": 7.59e-08, + "unconstitutionality": 7.59e-08, + "underdressed": 7.59e-08, + "unexcused": 7.59e-08, + "unfeminine": 7.59e-08, + "uniaxial": 7.59e-08, + "unpatched": 7.59e-08, + "unprivileged": 7.59e-08, + "unrealised": 7.59e-08, + "unshackled": 7.59e-08, + "untraditional": 7.59e-08, + "untranslatable": 7.59e-08, + "upnp": 7.59e-08, + "upperclassman": 7.59e-08, + "urbans": 7.59e-08, + "uridine": 7.59e-08, + "usis": 7.59e-08, + "utilitys": 7.59e-08, + "utorrent": 7.59e-08, + "vacates": 7.59e-08, + "vaginosis": 7.59e-08, + "vandoorne": 7.59e-08, + "vassalage": 7.59e-08, + "vayu": 7.59e-08, + "vdot": 7.59e-08, + "vedran": 7.59e-08, + "veit": 7.59e-08, + "venturebeat": 7.59e-08, + "verdana": 7.59e-08, + "verite": 7.59e-08, + "versteeg": 7.59e-08, + "verus": 7.59e-08, + "virchow": 7.59e-08, + "visegrad": 7.59e-08, + "vizsla": 7.59e-08, + "vocative": 7.59e-08, + "vrai": 7.59e-08, + "wackiest": 7.59e-08, + "wainwrights": 7.59e-08, + "wakefields": 7.59e-08, + "walston": 7.59e-08, + "warbird": 7.59e-08, + "wardak": 7.59e-08, + "warez": 7.59e-08, + "washingtonians": 7.59e-08, + "waterlogging": 7.59e-08, + "watfords": 7.59e-08, + "waughs": 7.59e-08, + "wavey": 7.59e-08, + "wayang": 7.59e-08, + "wazowski": 7.59e-08, + "weaponizing": 7.59e-08, + "webchat": 7.59e-08, + "weidner": 7.59e-08, + "weightman": 7.59e-08, + "whippings": 7.59e-08, + "wholegrain": 7.59e-08, + "wibbly": 7.59e-08, + "wielders": 7.59e-08, + "wimpole": 7.59e-08, + "windsors": 5.75e-08, + "wingmen": 7.59e-08, + "winne": 7.59e-08, + "winnemucca": 7.59e-08, + "winnow": 7.59e-08, + "wireshark": 7.59e-08, + "wises": 7.59e-08, + "wister": 7.59e-08, + "withholdings": 7.59e-08, + "wiwa": 7.59e-08, + "wolfy": 7.59e-08, + "wonkas": 7.59e-08, + "worths": 7.24e-08, + "wrekin": 7.59e-08, + "wrightson": 7.59e-08, + "wuv": 7.59e-08, + "wycherley": 7.59e-08, + "ximena": 7.59e-08, + "yans": 7.59e-08, + "yanukovich": 7.59e-08, + "yari": 7.59e-08, + "yasuhiro": 7.59e-08, + "yesallwomen": 7.59e-08, + "yezidi": 7.59e-08, + "yishun": 7.59e-08, + "yogesh": 7.59e-08, + "youku": 7.59e-08, + "yousif": 7.59e-08, + "yug": 7.59e-08, + "yukata": 7.59e-08, + "yukos": 7.59e-08, + "yuwen": 7.59e-08, + "zakharova": 7.59e-08, + "zeki": 7.59e-08, + "zephyrs": 7.59e-08, + "zeroth": 7.59e-08, + "zions": 6.92e-08, + "zubin": 7.59e-08, + "zumiez": 7.59e-08, + "acclimatisation": 7.41e-08, + "acostas": 7.41e-08, + "adw": 7.41e-08, + "aereo": 7.41e-08, + "agenesis": 7.41e-08, + "aiguille": 7.41e-08, + "akl": 7.41e-08, + "alavi": 7.41e-08, + "albanys": 7.41e-08, + "alesia": 7.41e-08, + "alfreton": 7.41e-08, + "alick": 7.41e-08, + "allain": 7.41e-08, + "allocator": 7.41e-08, + "altitudinal": 7.41e-08, + "alyssas": 7.41e-08, + "amazigh": 7.41e-08, + "amoebas": 7.41e-08, + "amphorae": 7.41e-08, + "ampk": 7.41e-08, + "amul": 7.41e-08, + "andrewes": 7.41e-08, + "andromache": 7.41e-08, + "anemometer": 7.41e-08, + "angelenos": 7.41e-08, + "angharad": 7.41e-08, + "annexure": 7.41e-08, + "antikythera": 7.41e-08, + "antm": 7.41e-08, + "apapa": 7.41e-08, + "apne": 7.41e-08, + "appealingly": 7.41e-08, + "apposed": 7.41e-08, + "aprox": 7.41e-08, + "aquatica": 7.41e-08, + "aquire": 7.41e-08, + "arcee": 7.41e-08, + "arcus": 7.41e-08, + "arens": 7.41e-08, + "arleigh": 7.41e-08, + "arlong": 7.41e-08, + "arnim": 7.41e-08, + "arteriovenous": 7.41e-08, + "asahina": 7.41e-08, + "aspens": 7.41e-08, + "aspley": 7.41e-08, + "asra": 7.41e-08, + "athletico": 7.41e-08, + "atilla": 7.41e-08, + "attires": 7.41e-08, + "audaciously": 7.41e-08, + "aue": 7.41e-08, + "auv": 7.41e-08, + "avco": 7.41e-08, + "avers": 7.41e-08, + "averts": 7.41e-08, + "badcock": 7.41e-08, + "baedeker": 7.41e-08, + "baj": 7.41e-08, + "bako": 7.41e-08, + "balayage": 7.41e-08, + "baldly": 7.41e-08, + "balme": 7.41e-08, + "bandaids": 7.41e-08, + "bandi": 7.41e-08, + "bango": 7.41e-08, + "barbacoa": 7.41e-08, + "bargnani": 7.41e-08, + "barthelemy": 7.41e-08, + "basicly": 7.41e-08, + "batsuit": 7.41e-08, + "battened": 7.41e-08, + "baumbach": 7.41e-08, + "baumer": 7.41e-08, + "beamline": 7.41e-08, + "bedeviled": 7.41e-08, + "beed": 7.41e-08, + "belarusians": 7.41e-08, + "belsize": 7.41e-08, + "benguela": 7.41e-08, + "berchtold": 7.41e-08, + "berenger": 7.41e-08, + "bergmans": 7.41e-08, + "berkey": 7.41e-08, + "berkhamsted": 7.41e-08, + "bernadino": 7.41e-08, + "bertil": 7.41e-08, + "bertolucci": 7.41e-08, + "berzerk": 7.41e-08, + "bethanys": 7.41e-08, + "bettendorf": 7.41e-08, + "bextor": 7.41e-08, + "beynon": 7.41e-08, + "bgsu": 7.41e-08, + "bhagalpur": 7.41e-08, + "bhikkhu": 7.41e-08, + "bhishma": 7.41e-08, + "bickell": 7.41e-08, + "bickerstaff": 7.41e-08, + "biddies": 7.41e-08, + "bielema": 7.41e-08, + "bienville": 7.41e-08, + "bilberry": 7.41e-08, + "bildungsroman": 7.41e-08, + "bilzerian": 7.41e-08, + "biogeochemistry": 7.41e-08, + "biogeographic": 7.41e-08, + "birdwood": 7.41e-08, + "bissonnette": 7.41e-08, + "bixler": 7.41e-08, + "blackboards": 7.41e-08, + "blackshirts": 7.41e-08, + "blg": 7.41e-08, + "blin": 7.41e-08, + "blomfield": 7.41e-08, + "bloodworth": 7.41e-08, + "bogdanovic": 7.41e-08, + "bohlen": 7.41e-08, + "bonnyrigg": 7.41e-08, + "boogey": 7.41e-08, + "bookended": 7.41e-08, + "boosie": 7.41e-08, + "borers": 7.41e-08, + "borge": 7.41e-08, + "bornholm": 7.41e-08, + "bota": 7.41e-08, + "botafogo": 7.41e-08, + "bottomland": 7.41e-08, + "boubacar": 7.41e-08, + "boulet": 7.41e-08, + "bouma": 7.41e-08, + "boutta": 7.41e-08, + "bouvet": 7.41e-08, + "bowties": 7.41e-08, + "boze": 7.41e-08, + "brackenridge": 7.41e-08, + "braggs": 7.41e-08, + "brainstormed": 7.41e-08, + "brasiliensis": 7.41e-08, + "braswell": 7.41e-08, + "brexiteer": 7.41e-08, + "briars": 7.41e-08, + "bridezilla": 7.41e-08, + "brigitta": 7.41e-08, + "broadus": 7.41e-08, + "brockhampton": 7.41e-08, + "bronxville": 7.41e-08, + "brookman": 7.41e-08, + "brownstones": 7.41e-08, + "bruneau": 7.41e-08, + "brus": 7.41e-08, + "budgies": 7.41e-08, + "bulgogi": 7.41e-08, + "bulkley": 7.41e-08, + "bungies": 7.41e-08, + "bunning": 7.41e-08, + "buntings": 7.41e-08, + "burna": 7.41e-08, + "burrowes": 7.41e-08, + "businessmans": 7.41e-08, + "bustles": 7.41e-08, + "butlin": 7.41e-08, + "bwf": 7.41e-08, + "byus": 7.41e-08, + "cabi": 7.41e-08, + "calandra": 7.41e-08, + "camaros": 7.41e-08, + "campanian": 7.41e-08, + "campbellsville": 7.41e-08, + "canale": 7.41e-08, + "cantus": 1.07e-08, + "capensis": 7.41e-08, + "capos": 7.41e-08, + "capron": 7.41e-08, + "careerist": 7.41e-08, + "carloss": 7.41e-08, + "carrageenan": 7.41e-08, + "catechist": 7.41e-08, + "cathar": 7.41e-08, + "caversham": 7.41e-08, + "cayla": 7.41e-08, + "cazenovia": 7.41e-08, + "cbu": 7.41e-08, + "ccps": 6.31e-08, + "celestina": 7.41e-08, + "cephalosporin": 7.41e-08, + "chaat": 7.41e-08, + "chakravarty": 7.41e-08, + "chamba": 7.41e-08, + "chato": 7.41e-08, + "chava": 7.41e-08, + "checkboxes": 7.41e-08, + "chenab": 7.41e-08, + "cherno": 7.41e-08, + "chevrolets": 7.41e-08, + "chickasha": 7.41e-08, + "chickering": 7.41e-08, + "chiefdom": 7.41e-08, + "childlessness": 7.41e-08, + "chocolaty": 7.41e-08, + "christensens": 7.41e-08, + "christys": 7.41e-08, + "cinci": 7.41e-08, + "cinematically": 7.41e-08, + "circum": 7.41e-08, + "cisa": 7.41e-08, + "clamorous": 7.41e-08, + "clifftop": 7.41e-08, + "clingfilm": 7.41e-08, + "clipse": 7.41e-08, + "clowned": 7.41e-08, + "cmn": 7.41e-08, + "coase": 7.41e-08, + "codebook": 7.41e-08, + "codebreaker": 7.41e-08, + "codemasters": 7.41e-08, + "coiffed": 7.41e-08, + "colab": 7.41e-08, + "coldfusion": 7.41e-08, + "coligny": 7.41e-08, + "collazo": 7.41e-08, + "commandants": 5.75e-08, + "concessionaires": 7.41e-08, + "conda": 7.41e-08, + "consistencies": 7.41e-08, + "consuela": 7.41e-08, + "contorting": 7.41e-08, + "coolants": 7.41e-08, + "copperplate": 7.41e-08, + "corba": 7.41e-08, + "cornus": 7.41e-08, + "correlational": 7.41e-08, + "counterfeiter": 7.41e-08, + "crafton": 7.41e-08, + "crassa": 7.41e-08, + "crepuscular": 7.41e-08, + "cretans": 7.41e-08, + "criminalising": 7.41e-08, + "criollo": 7.41e-08, + "cristinas": 7.41e-08, + "cristy": 7.41e-08, + "crossin": 7.41e-08, + "crotchless": 7.41e-08, + "crr": 7.41e-08, + "cryptanalysis": 7.41e-08, + "curle": 7.41e-08, + "curmudgeonly": 7.41e-08, + "cwb": 7.41e-08, + "cyanotic": 7.41e-08, + "cyclopaedia": 7.41e-08, + "czerny": 7.41e-08, + "daddario": 7.41e-08, + "damiens": 7.41e-08, + "dapple": 7.41e-08, + "daps": 7.41e-08, + "dargah": 7.41e-08, + "dcfs": 7.41e-08, + "deangelis": 7.41e-08, + "decs": 5.01e-08, + "decompositions": 7.41e-08, + "defacement": 7.41e-08, + "deine": 7.41e-08, + "deka": 7.41e-08, + "delias": 7.41e-08, + "delist": 7.41e-08, + "deliveryman": 7.41e-08, + "dema": 7.41e-08, + "demersal": 7.41e-08, + "demme": 7.41e-08, + "demodulator": 7.41e-08, + "demystified": 7.41e-08, + "denims": 7.41e-08, + "densmore": 7.41e-08, + "detailer": 7.41e-08, + "detractor": 7.41e-08, + "detuned": 7.41e-08, + "dfes": 7.41e-08, + "dfp": 7.41e-08, + "dharmendra": 7.41e-08, + "diagrammatic": 7.41e-08, + "diapause": 7.41e-08, + "dicken": 7.41e-08, + "dihydroxy": 7.41e-08, + "dilates": 7.41e-08, + "diminishment": 7.41e-08, + "dinahs": 7.41e-08, + "dinny": 7.41e-08, + "dinucleotide": 7.41e-08, + "dipa": 7.41e-08, + "disapointed": 7.41e-08, + "discerns": 7.41e-08, + "discounters": 7.41e-08, + "disinterred": 7.41e-08, + "dispersant": 7.41e-08, + "ditko": 7.41e-08, + "dks": 5.13e-08, + "doby": 7.41e-08, + "docetaxel": 7.41e-08, + "dockworkers": 7.41e-08, + "dokie": 7.41e-08, + "doku": 7.41e-08, + "doman": 7.41e-08, + "domiciles": 7.41e-08, + "dopants": 7.41e-08, + "dorrance": 7.41e-08, + "douai": 7.41e-08, + "dovish": 7.41e-08, + "dpj": 7.41e-08, + "drakensberg": 7.41e-08, + "dugger": 7.41e-08, + "dully": 7.41e-08, + "dungey": 7.41e-08, + "dustys": 7.41e-08, + "dymond": 7.41e-08, + "dyspraxia": 7.41e-08, + "eachothers": 7.41e-08, + "earmarking": 7.41e-08, + "easels": 7.41e-08, + "ectodermal": 7.41e-08, + "edgington": 7.41e-08, + "eichelberger": 7.41e-08, + "eifel": 7.41e-08, + "elderberries": 7.41e-08, + "eldin": 7.41e-08, + "electroweak": 7.41e-08, + "ellum": 7.41e-08, + "emis": 5.89e-08, + "emmott": 7.41e-08, + "empathizing": 7.41e-08, + "empedocles": 7.41e-08, + "empoli": 7.41e-08, + "enf": 7.41e-08, + "enfold": 7.41e-08, + "enga": 7.41e-08, + "enki": 7.41e-08, + "enrollee": 7.41e-08, + "enshrinement": 7.41e-08, + "ensnaring": 7.41e-08, + "entrada": 7.41e-08, + "entreaty": 7.41e-08, + "envi": 7.41e-08, + "erbium": 7.41e-08, + "erster": 7.41e-08, + "espejo": 7.41e-08, + "ethiopic": 7.41e-08, + "ethnical": 7.41e-08, + "eurasians": 7.41e-08, + "eurobeat": 7.41e-08, + "eurotunnel": 7.41e-08, + "euthanised": 7.41e-08, + "excitements": 7.41e-08, + "exploder": 7.41e-08, + "expositor": 7.41e-08, + "ezek": 7.41e-08, + "fabrik": 7.41e-08, + "fadel": 7.41e-08, + "faffing": 7.41e-08, + "fairys": 7.41e-08, + "fanzines": 7.41e-08, + "farias": 7.41e-08, + "farmhands": 7.41e-08, + "faulks": 7.41e-08, + "feedforward": 7.41e-08, + "feelsbadman": 7.41e-08, + "feit": 7.41e-08, + "felicitations": 7.41e-08, + "ferny": 7.41e-08, + "ferrel": 7.41e-08, + "fice": 7.41e-08, + "fifpro": 7.41e-08, + "finchers": 7.41e-08, + "fiord": 7.41e-08, + "fiorentino": 7.41e-08, + "fireteam": 7.41e-08, + "firmest": 7.41e-08, + "firstname": 7.41e-08, + "firstpost": 7.41e-08, + "fishhook": 7.41e-08, + "fissured": 7.41e-08, + "fitzs": 7.41e-08, + "fitzgibbons": 7.41e-08, + "fixedly": 7.41e-08, + "flagpoles": 7.41e-08, + "flavus": 7.41e-08, + "flexner": 7.41e-08, + "fluffs": 7.41e-08, + "folksongs": 7.41e-08, + "foramina": 7.41e-08, + "forebear": 7.41e-08, + "forestier": 7.41e-08, + "forgoes": 7.41e-08, + "formentera": 7.41e-08, + "forsure": 7.41e-08, + "forsyte": 7.41e-08, + "francophile": 7.41e-08, + "frascati": 7.41e-08, + "fratricidal": 7.41e-08, + "freebird": 7.41e-08, + "frens": 7.41e-08, + "fretwork": 7.41e-08, + "frontotemporal": 7.41e-08, + "fsw": 7.41e-08, + "fultons": 7.41e-08, + "fumi": 7.41e-08, + "fumigate": 7.41e-08, + "futuna": 7.41e-08, + "gabonese": 7.41e-08, + "gahan": 7.41e-08, + "gamekeepers": 7.41e-08, + "gangtok": 7.41e-08, + "garneau": 7.41e-08, + "gastown": 7.41e-08, + "gbit": 7.41e-08, + "gct": 7.41e-08, + "geier": 7.41e-08, + "gelded": 7.41e-08, + "gemmill": 7.41e-08, + "geni": 7.41e-08, + "gerontological": 7.41e-08, + "gerty": 7.41e-08, + "gervinho": 7.41e-08, + "gerwig": 7.41e-08, + "gesell": 7.41e-08, + "gga": 7.41e-08, + "gibbous": 7.41e-08, + "gigantea": 7.41e-08, + "gigli": 7.41e-08, + "giovinco": 7.41e-08, + "glassworks": 7.41e-08, + "glowingly": 7.41e-08, + "glucosidase": 7.41e-08, + "glynis": 7.41e-08, + "gode": 7.41e-08, + "godhra": 7.41e-08, + "goenka": 7.41e-08, + "gorgias": 7.41e-08, + "gormless": 7.41e-08, + "gostkowski": 7.41e-08, + "grammes": 7.41e-08, + "greitens": 7.41e-08, + "grovers": 7.41e-08, + "grube": 7.41e-08, + "guattari": 7.41e-08, + "gues": 7.41e-08, + "gulu": 7.41e-08, + "gumming": 7.41e-08, + "gunmans": 7.41e-08, + "gwinn": 7.41e-08, + "hadids": 7.41e-08, + "hadj": 7.41e-08, + "haftar": 7.41e-08, + "haikus": 7.41e-08, + "haken": 7.41e-08, + "halfa": 7.41e-08, + "hamass": 7.41e-08, + "hammerschmidt": 7.41e-08, + "hanns": 7.41e-08, + "hardiest": 7.41e-08, + "harrer": 7.41e-08, + "hartsville": 7.41e-08, + "hause": 7.41e-08, + "hawked": 7.41e-08, + "haylie": 7.41e-08, + "hdcp": 7.41e-08, + "heera": 7.41e-08, + "helicarrier": 7.41e-08, + "hellebore": 7.41e-08, + "hellespont": 7.41e-08, + "hellyer": 7.41e-08, + "heterodyne": 7.41e-08, + "hexed": 7.41e-08, + "hha": 7.41e-08, + "hieratic": 7.41e-08, + "higbee": 7.41e-08, + "higson": 7.41e-08, + "hima": 7.41e-08, + "hindemith": 7.41e-08, + "hippity": 7.41e-08, + "hns": 7.41e-08, + "hobs": 7.41e-08, + "hodkinson": 7.41e-08, + "hogsmeade": 7.41e-08, + "homophone": 7.41e-08, + "honeycombs": 7.41e-08, + "horkheimer": 7.41e-08, + "horsewoman": 7.41e-08, + "hostelry": 7.41e-08, + "hotplate": 7.41e-08, + "hrcs": 7.41e-08, + "huelva": 7.41e-08, + "huertas": 7.41e-08, + "hurn": 7.41e-08, + "husson": 7.41e-08, + "hva": 7.41e-08, + "hydrolyze": 7.41e-08, + "hygrometer": 7.41e-08, + "hynix": 7.41e-08, + "hypermobility": 7.41e-08, + "hyperx": 7.41e-08, + "hypothyroid": 7.41e-08, + "iannone": 7.41e-08, + "iaw": 7.41e-08, + "ibig": 7.41e-08, + "ibps": 7.41e-08, + "idu": 7.41e-08, + "ifas": 7.41e-08, + "ifixit": 7.41e-08, + "ihi": 7.41e-08, + "ikey": 7.41e-08, + "imidazole": 7.41e-08, + "immunosuppressants": 7.41e-08, + "impa": 7.41e-08, + "inconceivably": 7.41e-08, + "indentures": 7.41e-08, + "indirection": 7.41e-08, + "individualization": 7.41e-08, + "individualize": 7.41e-08, + "indulgently": 7.41e-08, + "injective": 7.41e-08, + "inscribing": 7.41e-08, + "inten": 7.41e-08, + "interlayer": 7.41e-08, + "interscience": 7.41e-08, + "intj": 7.41e-08, + "introspect": 7.41e-08, + "investigaciones": 7.41e-08, + "iommi": 7.41e-08, + "irwindale": 7.41e-08, + "isakson": 7.41e-08, + "iseult": 7.41e-08, + "ishak": 7.41e-08, + "iskcon": 7.41e-08, + "isolators": 7.41e-08, + "isotype": 7.41e-08, + "iup": 7.41e-08, + "jacksonvilles": 7.41e-08, + "jais": 7.41e-08, + "jamnagar": 7.41e-08, + "jankovic": 7.41e-08, + "jaycees": 7.41e-08, + "jcw": 7.41e-08, + "jebs": 7.41e-08, + "jephthah": 7.41e-08, + "jests": 7.41e-08, + "jezza": 7.41e-08, + "jiff": 7.41e-08, + "jih": 7.41e-08, + "jnk": 7.41e-08, + "joli": 7.41e-08, + "jonker": 7.41e-08, + "jorden": 7.41e-08, + "jovis": 7.41e-08, + "jpa": 7.41e-08, + "jsr": 7.41e-08, + "jumia": 7.41e-08, + "juniperus": 7.41e-08, + "juwan": 7.41e-08, + "kaby": 7.41e-08, + "kadena": 7.41e-08, + "kaela": 7.41e-08, + "kahului": 7.41e-08, + "kalama": 7.41e-08, + "kalas": 7.41e-08, + "kanai": 7.41e-08, + "kapo": 7.41e-08, + "kariba": 7.41e-08, + "karte": 7.41e-08, + "kelsi": 7.41e-08, + "keohane": 7.41e-08, + "kestrels": 7.41e-08, + "khaleds": 7.41e-08, + "khanate": 7.41e-08, + "khilafat": 7.41e-08, + "kickflip": 7.41e-08, + "killary": 7.41e-08, + "killcam": 7.41e-08, + "kindergarden": 7.41e-08, + "kindersley": 7.41e-08, + "kipping": 7.41e-08, + "klingberg": 7.41e-08, + "kobra": 7.41e-08, + "koepka": 7.41e-08, + "kogarah": 7.41e-08, + "konstantinov": 7.41e-08, + "konstanz": 7.41e-08, + "kontakt": 7.41e-08, + "kopf": 7.41e-08, + "koth": 7.41e-08, + "kraig": 7.41e-08, + "kreps": 7.41e-08, + "kreutz": 7.41e-08, + "krumm": 7.41e-08, + "krystyna": 7.41e-08, + "kupfer": 7.41e-08, + "kyoshi": 7.41e-08, + "laba": 7.41e-08, + "lacerating": 7.41e-08, + "ladue": 7.41e-08, + "lajoie": 7.41e-08, + "lakoff": 7.41e-08, + "lamotrigine": 7.41e-08, + "lanced": 7.41e-08, + "landeskog": 7.41e-08, + "landslip": 7.41e-08, + "langes": 7.41e-08, + "lappin": 7.41e-08, + "larc": 7.41e-08, + "larned": 7.41e-08, + "latifa": 7.41e-08, + "latine": 7.41e-08, + "latkes": 7.41e-08, + "laverton": 7.41e-08, + "lavi": 7.41e-08, + "lazada": 7.41e-08, + "leeper": 7.41e-08, + "leggo": 7.41e-08, + "lehrbuch": 7.41e-08, + "leitz": 7.41e-08, + "lemnos": 7.41e-08, + "lennys": 7.41e-08, + "leukotriene": 7.41e-08, + "lft": 7.41e-08, + "lgd": 7.41e-08, + "lichtman": 7.41e-08, + "lightyears": 7.41e-08, + "lims": 7.24e-08, + "linguini": 7.41e-08, + "liquidations": 7.41e-08, + "llnl": 7.41e-08, + "llr": 7.41e-08, + "llywelyn": 7.41e-08, + "lobel": 7.41e-08, + "lokesh": 7.41e-08, + "lomu": 7.41e-08, + "longhurst": 7.41e-08, + "lsv": 7.41e-08, + "lucado": 7.41e-08, + "lupul": 7.41e-08, + "lxii": 7.41e-08, + "lynbrook": 7.41e-08, + "lyubov": 7.41e-08, + "mlord": 7.41e-08, + "mabe": 7.41e-08, + "macapagal": 7.41e-08, + "macfadyen": 7.41e-08, + "maclagan": 7.41e-08, + "maclaurin": 7.41e-08, + "macrobiotic": 7.41e-08, + "madewell": 7.41e-08, + "magners": 7.41e-08, + "magnetos": 7.41e-08, + "magnetometers": 7.41e-08, + "majka": 7.41e-08, + "maligning": 7.41e-08, + "manabu": 7.41e-08, + "manc": 7.41e-08, + "margareta": 7.41e-08, + "markelle": 7.41e-08, + "marls": 7.41e-08, + "martti": 7.41e-08, + "masham": 7.41e-08, + "maso": 7.41e-08, + "matija": 7.41e-08, + "matsubara": 7.41e-08, + "mayfields": 7.41e-08, + "mayon": 7.41e-08, + "mccay": 7.41e-08, + "mcchord": 7.41e-08, + "mcgrory": 7.41e-08, + "mclarty": 7.41e-08, + "megawati": 7.41e-08, + "melodys": 7.41e-08, + "menger": 7.41e-08, + "menomonee": 7.41e-08, + "menstruate": 7.41e-08, + "mentees": 7.41e-08, + "mif": 7.41e-08, + "mikheil": 7.41e-08, + "milik": 7.41e-08, + "minera": 7.41e-08, + "mizushima": 7.41e-08, + "mladenovic": 7.41e-08, + "mogollon": 7.41e-08, + "moja": 7.41e-08, + "mokpo": 7.41e-08, + "molecularly": 7.41e-08, + "momos": 7.41e-08, + "mondavi": 7.41e-08, + "monona": 7.41e-08, + "monsoonal": 7.41e-08, + "moola": 7.41e-08, + "moonchild": 7.41e-08, + "moorestown": 7.41e-08, + "morbidities": 7.41e-08, + "moriartys": 7.41e-08, + "mossop": 7.41e-08, + "mothered": 7.41e-08, + "moule": 7.41e-08, + "moussaka": 7.41e-08, + "muah": 7.41e-08, + "muerto": 7.41e-08, + "muga": 7.41e-08, + "mugello": 7.41e-08, + "multicam": 7.41e-08, + "munches": 7.41e-08, + "mundine": 7.41e-08, + "murkier": 7.41e-08, + "murli": 7.41e-08, + "musketry": 7.41e-08, + "mustards": 7.41e-08, + "mustique": 7.41e-08, + "mutans": 7.41e-08, + "mutti": 7.41e-08, + "muzaffarpur": 7.41e-08, + "mwp": 7.41e-08, + "myelodysplastic": 7.41e-08, + "mzansi": 7.41e-08, + "nacc": 7.41e-08, + "nahb": 7.41e-08, + "namby": 7.41e-08, + "namesakes": 7.41e-08, + "naniwa": 7.41e-08, + "nanocomposite": 7.41e-08, + "nanomedicine": 7.41e-08, + "naplan": 7.41e-08, + "narva": 7.41e-08, + "narwhals": 7.41e-08, + "nataly": 7.41e-08, + "natanz": 7.41e-08, + "nayyar": 7.41e-08, + "ncds": 7.41e-08, + "ncm": 7.41e-08, + "ncua": 7.41e-08, + "nehrus": 7.41e-08, + "neots": 7.41e-08, + "nepalis": 7.41e-08, + "neuropsychiatry": 7.41e-08, + "ngata": 7.41e-08, + "nichts": 7.41e-08, + "nicoletta": 7.41e-08, + "nightshirt": 7.41e-08, + "nigiri": 7.41e-08, + "nissim": 7.41e-08, + "nitze": 7.41e-08, + "njcaa": 7.41e-08, + "nonis": 7.41e-08, + "noranda": 7.41e-08, + "norberg": 7.41e-08, + "normativity": 7.41e-08, + "notas": 7.41e-08, + "npas": 7.41e-08, + "nrcs": 7.41e-08, + "nrel": 7.41e-08, + "nrj": 7.41e-08, + "nua": 7.41e-08, + "nulls": 7.41e-08, + "nurnberg": 7.41e-08, + "oad": 7.41e-08, + "odham": 7.41e-08, + "ogasawara": 7.41e-08, + "ohlsson": 7.41e-08, + "ohrid": 7.41e-08, + "olympias": 7.41e-08, + "omt": 7.41e-08, + "opentable": 7.41e-08, + "orangeville": 7.41e-08, + "orbach": 7.41e-08, + "orchestre": 7.41e-08, + "orcus": 7.41e-08, + "ordinariness": 7.41e-08, + "orihime": 7.41e-08, + "oriskany": 7.41e-08, + "orrs": 7.41e-08, + "orthotic": 7.41e-08, + "ortizs": 7.41e-08, + "oscilloscopes": 7.41e-08, + "osher": 7.41e-08, + "otoko": 7.41e-08, + "otus": 7.41e-08, + "oul": 7.41e-08, + "outcries": 7.41e-08, + "outlands": 7.41e-08, + "outspokenness": 7.41e-08, + "overachievers": 7.41e-08, + "owie": 7.41e-08, + "oyelowo": 7.41e-08, + "ozma": 7.41e-08, + "pacem": 7.41e-08, + "pacquiaos": 7.41e-08, + "paglia": 7.41e-08, + "palaeontological": 7.41e-08, + "pallbearer": 7.41e-08, + "pallida": 7.41e-08, + "pamelas": 7.41e-08, + "pandanus": 7.41e-08, + "paracel": 7.41e-08, + "parameterization": 7.41e-08, + "paraplegics": 7.41e-08, + "parasitoids": 7.41e-08, + "parenthoods": 7.41e-08, + "parivar": 7.41e-08, + "parkhill": 7.41e-08, + "parrilla": 7.41e-08, + "parvo": 7.41e-08, + "passel": 7.41e-08, + "patapsco": 7.41e-08, + "patriotically": 7.41e-08, + "peals": 7.41e-08, + "pedalboard": 7.41e-08, + "peniel": 7.41e-08, + "penitentiaries": 7.41e-08, + "pennzoil": 7.41e-08, + "penrhyn": 7.41e-08, + "perceptually": 7.41e-08, + "perley": 7.41e-08, + "perseid": 7.41e-08, + "petrovsky": 7.41e-08, + "phalaenopsis": 7.41e-08, + "phillipps": 7.41e-08, + "photocall": 7.41e-08, + "photocatalytic": 7.41e-08, + "photosensitivity": 7.41e-08, + "picosecond": 7.41e-08, + "picu": 7.41e-08, + "piguet": 7.41e-08, + "pillboxes": 7.41e-08, + "pince": 7.41e-08, + "pinfall": 7.41e-08, + "pinilla": 7.41e-08, + "pinkberry": 7.41e-08, + "pinnae": 7.41e-08, + "pipit": 7.41e-08, + "pitchy": 7.41e-08, + "pitlane": 7.41e-08, + "pitlochry": 7.41e-08, + "pittodrie": 7.41e-08, + "plagiarist": 7.41e-08, + "plantinga": 7.41e-08, + "plastid": 7.41e-08, + "playtech": 7.41e-08, + "pleasantness": 7.41e-08, + "plectrum": 7.41e-08, + "pledis": 7.41e-08, + "plena": 7.41e-08, + "plumpton": 7.41e-08, + "polygamists": 7.41e-08, + "polyolefin": 7.41e-08, + "ponys": 7.41e-08, + "popery": 7.41e-08, + "porkys": 7.41e-08, + "portmans": 7.41e-08, + "pota": 7.41e-08, + "potentiometers": 7.41e-08, + "prayerfully": 7.41e-08, + "preindustrial": 7.41e-08, + "pricetag": 7.41e-08, + "probationers": 7.41e-08, + "pronger": 7.41e-08, + "prostrated": 7.41e-08, + "puer": 7.41e-08, + "pusa": 7.41e-08, + "pushovers": 7.41e-08, + "puttnam": 7.41e-08, + "pyrene": 7.41e-08, + "qais": 7.41e-08, + "quaintly": 7.41e-08, + "quantile": 7.41e-08, + "quantitation": 7.41e-08, + "quanzhou": 7.41e-08, + "quapaw": 7.41e-08, + "quatrains": 7.41e-08, + "quietude": 7.41e-08, + "quiting": 7.41e-08, + "quizzically": 7.41e-08, + "radioman": 7.41e-08, + "railhead": 7.41e-08, + "rainbird": 7.41e-08, + "raleighs": 7.41e-08, + "ramdas": 7.41e-08, + "ratt": 7.41e-08, + "ravello": 7.41e-08, + "rcv": 7.41e-08, + "realignments": 7.41e-08, + "reallocating": 7.41e-08, + "rebuts": 7.41e-08, + "recalibrating": 7.41e-08, + "redrum": 7.41e-08, + "redshifts": 7.41e-08, + "reelin": 7.41e-08, + "refashioned": 7.41e-08, + "reichardt": 7.41e-08, + "reification": 7.41e-08, + "reimagines": 7.41e-08, + "reinserted": 7.41e-08, + "reisen": 7.41e-08, + "relaxations": 7.41e-08, + "relevantly": 7.41e-08, + "remsburg": 7.41e-08, + "renfroe": 7.41e-08, + "renko": 7.41e-08, + "repin": 7.41e-08, + "repugnance": 7.41e-08, + "responsibilty": 7.41e-08, + "rethinks": 7.41e-08, + "reticulata": 7.41e-08, + "reticulate": 7.41e-08, + "retour": 7.41e-08, + "rff": 7.41e-08, + "rhodopsin": 7.41e-08, + "rieu": 7.41e-08, + "rifat": 7.41e-08, + "rini": 7.41e-08, + "rinko": 7.41e-08, + "rivista": 7.41e-08, + "rjd": 7.41e-08, + "rne": 7.41e-08, + "roadworthy": 7.41e-08, + "rockfall": 7.41e-08, + "rogans": 7.41e-08, + "rohmer": 7.41e-08, + "romario": 7.41e-08, + "rony": 7.41e-08, + "roofies": 7.41e-08, + "rosalba": 7.41e-08, + "rouhanis": 7.41e-08, + "rowles": 7.41e-08, + "rpp": 7.41e-08, + "rsync": 7.41e-08, + "rubrum": 7.41e-08, + "ruhollah": 7.41e-08, + "rumney": 7.41e-08, + "rumplestiltskin": 7.41e-08, + "rupe": 7.41e-08, + "rusal": 7.41e-08, + "rustica": 7.41e-08, + "ryokan": 7.41e-08, + "saan": 7.41e-08, + "sabbaticals": 7.41e-08, + "sadhus": 7.41e-08, + "saket": 7.41e-08, + "salutatorian": 7.41e-08, + "sampan": 7.41e-08, + "sarat": 7.41e-08, + "sasanian": 7.41e-08, + "satou": 7.41e-08, + "satterthwaite": 7.41e-08, + "savana": 7.41e-08, + "sawai": 7.41e-08, + "sayreville": 7.41e-08, + "sazerac": 7.41e-08, + "scahill": 7.41e-08, + "scheff": 7.41e-08, + "schleck": 7.41e-08, + "scholtz": 7.41e-08, + "schwalbe": 7.41e-08, + "scindia": 7.41e-08, + "scratchings": 7.41e-08, + "scrope": 7.41e-08, + "seamounts": 7.41e-08, + "secr": 7.41e-08, + "sedar": 7.41e-08, + "seid": 7.41e-08, + "seles": 7.41e-08, + "selvedge": 7.41e-08, + "senderos": 7.41e-08, + "senegals": 7.41e-08, + "serratus": 7.41e-08, + "setpoint": 7.41e-08, + "shabba": 7.41e-08, + "shacking": 7.41e-08, + "shanthi": 7.41e-08, + "sharpeners": 7.41e-08, + "shas": 7.41e-08, + "shaye": 7.41e-08, + "shiho": 7.41e-08, + "shikari": 7.41e-08, + "shiners": 7.41e-08, + "shinkai": 7.41e-08, + "shockproof": 7.41e-08, + "shortridge": 7.41e-08, + "shotty": 7.41e-08, + "showstoppers": 7.41e-08, + "shuang": 7.41e-08, + "shunsuke": 7.41e-08, + "shurtleff": 7.41e-08, + "siachen": 7.41e-08, + "sickbed": 7.41e-08, + "sidibe": 7.41e-08, + "sigal": 7.41e-08, + "silex": 7.41e-08, + "sitrep": 7.41e-08, + "sket": 7.41e-08, + "skiba": 7.41e-08, + "skydrive": 7.41e-08, + "skyped": 7.41e-08, + "skyview": 7.41e-08, + "slapp": 7.41e-08, + "slaton": 7.41e-08, + "slf": 7.41e-08, + "slickest": 7.41e-08, + "slipcase": 7.41e-08, + "slk": 7.41e-08, + "sloper": 7.41e-08, + "slouches": 7.41e-08, + "slovo": 7.41e-08, + "sniffers": 7.41e-08, + "snowdrifts": 7.41e-08, + "sodo": 7.41e-08, + "sofya": 7.41e-08, + "sorte": 7.41e-08, + "spac": 7.41e-08, + "spaceplane": 7.41e-08, + "spambots": 7.41e-08, + "sparty": 7.41e-08, + "spearmen": 7.41e-08, + "speedmaster": 7.41e-08, + "speranza": 7.41e-08, + "spinosa": 7.41e-08, + "sportswomen": 7.41e-08, + "spu": 7.41e-08, + "spyros": 1.74e-08, + "squanders": 7.41e-08, + "squarish": 7.41e-08, + "squirter": 7.41e-08, + "srgb": 7.41e-08, + "stabile": 7.41e-08, + "stackers": 7.41e-08, + "starchild": 7.41e-08, + "starvin": 7.41e-08, + "stary": 7.41e-08, + "statistik": 7.41e-08, + "statistique": 7.41e-08, + "stickies": 7.41e-08, + "sticklers": 7.41e-08, + "stimulative": 7.41e-08, + "stip": 7.41e-08, + "stormzy": 7.41e-08, + "straightforwardness": 7.41e-08, + "sturdiness": 7.41e-08, + "subnormal": 7.41e-08, + "substring": 7.41e-08, + "suburbanization": 7.41e-08, + "sueur": 7.41e-08, + "sugarplum": 7.41e-08, + "suggestible": 7.41e-08, + "sugi": 7.41e-08, + "sumitra": 7.41e-08, + "sununu": 7.41e-08, + "superdelegates": 7.41e-08, + "superheavy": 7.41e-08, + "superposed": 7.41e-08, + "surman": 7.41e-08, + "surplice": 7.41e-08, + "surtax": 7.41e-08, + "suwanee": 7.41e-08, + "suzerain": 7.41e-08, + "suzys": 7.41e-08, + "swearingen": 7.41e-08, + "swiffer": 7.41e-08, + "swv": 7.41e-08, + "taga": 7.41e-08, + "tais": 6.61e-08, + "takahiro": 7.41e-08, + "tamarisk": 7.41e-08, + "tamblyn": 7.41e-08, + "tamped": 7.41e-08, + "tanda": 7.41e-08, + "tandems": 7.41e-08, + "tangi": 7.41e-08, + "tanjong": 7.41e-08, + "taoyuan": 7.41e-08, + "tapley": 7.41e-08, + "tareq": 7.41e-08, + "tarka": 7.41e-08, + "tartaric": 7.41e-08, + "taveras": 7.41e-08, + "taylorsville": 7.41e-08, + "temujin": 7.41e-08, + "tennesseans": 7.41e-08, + "tentacled": 7.41e-08, + "tequilas": 7.41e-08, + "terranova": 7.41e-08, + "textbox": 7.41e-08, + "tfeu": 7.41e-08, + "themba": 7.41e-08, + "theworld": 7.41e-08, + "thoms": 7.41e-08, + "thorton": 7.41e-08, + "thumbelina": 7.41e-08, + "tianshan": 7.41e-08, + "tifton": 7.41e-08, + "tiguan": 7.41e-08, + "timmermans": 7.41e-08, + "tiss": 7.41e-08, + "titmouse": 7.41e-08, + "tml": 7.41e-08, + "tobogganing": 7.41e-08, + "toledano": 7.41e-08, + "toltec": 7.41e-08, + "tomos": 7.41e-08, + "tonner": 7.41e-08, + "tormund": 7.41e-08, + "torpedoing": 7.41e-08, + "torricelli": 7.41e-08, + "toulmin": 7.41e-08, + "tourniquets": 7.41e-08, + "townland": 7.41e-08, + "toyotomi": 7.41e-08, + "tracklisting": 7.41e-08, + "trafic": 7.41e-08, + "transgressor": 7.41e-08, + "transposon": 7.41e-08, + "traumatising": 7.41e-08, + "trimer": 7.41e-08, + "tsuda": 7.41e-08, + "turcotte": 7.41e-08, + "turenne": 7.41e-08, + "turfgrass": 7.41e-08, + "twangy": 7.41e-08, + "tweezer": 7.41e-08, + "tyrannus": 7.41e-08, + "uhuh": 7.41e-08, + "ukuleles": 7.41e-08, + "ulcerated": 7.41e-08, + "uls": 7.41e-08, + "ultramarathon": 7.41e-08, + "ultrashort": 7.41e-08, + "unani": 7.41e-08, + "unarguably": 7.41e-08, + "unbanned": 7.41e-08, + "unbundled": 7.41e-08, + "uncommunicative": 7.41e-08, + "underdone": 7.41e-08, + "ungracious": 7.41e-08, + "ungulate": 7.41e-08, + "univeristy": 7.41e-08, + "unlivable": 7.41e-08, + "unmake": 7.41e-08, + "unmediated": 7.41e-08, + "unmonitored": 7.41e-08, + "unpacks": 7.41e-08, + "unselected": 7.41e-08, + "untuk": 7.41e-08, + "unvoiced": 7.41e-08, + "unworldly": 7.41e-08, + "urias": 7.41e-08, + "urinates": 7.41e-08, + "ury": 7.41e-08, + "utt": 7.41e-08, + "valse": 7.41e-08, + "vanguards": 7.24e-08, + "varoufakis": 7.41e-08, + "vasc": 7.41e-08, + "vasiliev": 7.41e-08, + "vaxxers": 7.41e-08, + "vecchia": 7.41e-08, + "verba": 7.41e-08, + "verisign": 7.41e-08, + "vernes": 7.41e-08, + "veux": 7.41e-08, + "vidar": 7.41e-08, + "vigneault": 7.41e-08, + "viktors": 7.41e-08, + "vimal": 7.41e-08, + "vinita": 7.41e-08, + "vitellius": 7.41e-08, + "vitra": 7.41e-08, + "vitrification": 7.41e-08, + "vlasov": 7.41e-08, + "vsat": 7.41e-08, + "vucevic": 7.41e-08, + "wallboard": 7.41e-08, + "wallowa": 7.41e-08, + "wanks": 7.41e-08, + "washbasin": 7.41e-08, + "washita": 7.41e-08, + "waterholes": 7.41e-08, + "watusi": 7.41e-08, + "wcco": 7.41e-08, + "wehner": 7.41e-08, + "westend": 7.41e-08, + "westfalen": 7.41e-08, + "wfm": 7.41e-08, + "whaaa": 7.41e-08, + "whaaaaat": 7.41e-08, + "whacker": 7.41e-08, + "wheatbelt": 7.41e-08, + "whoi": 7.41e-08, + "whomp": 7.41e-08, + "whoooo": 7.41e-08, + "wickford": 7.41e-08, + "wildstar": 7.41e-08, + "willan": 7.41e-08, + "williamsville": 7.41e-08, + "windbag": 7.41e-08, + "windle": 7.41e-08, + "wiseguy": 7.41e-08, + "woad": 7.41e-08, + "wolof": 7.41e-08, + "wolstenholme": 7.41e-08, + "womad": 7.41e-08, + "woodchucks": 7.41e-08, + "woodham": 7.41e-08, + "woodinville": 7.41e-08, + "woodroffe": 7.41e-08, + "wrentham": 7.41e-08, + "wrongheaded": 7.41e-08, + "wynns": 7.41e-08, + "xiaobo": 7.41e-08, + "xinhai": 7.41e-08, + "xna": 7.41e-08, + "xpath": 7.41e-08, + "yamashiro": 7.41e-08, + "yate": 7.41e-08, + "yellowjacket": 7.41e-08, + "yem": 7.41e-08, + "yetis": 7.41e-08, + "yiwu": 7.41e-08, + "ymmv": 7.41e-08, + "yoshizawa": 7.41e-08, + "yuo": 7.41e-08, + "zacs": 7.41e-08, + "zagat": 7.41e-08, + "zantac": 7.41e-08, + "zebre": 7.41e-08, + "zeeman": 7.41e-08, + "zocalo": 7.41e-08, + "zomato": 7.41e-08, + "zomba": 7.41e-08, + "zul": 7.41e-08, + "zwarte": 7.41e-08, + "aaya": 7.24e-08, + "abdicates": 7.24e-08, + "abla": 7.24e-08, + "abortionists": 7.24e-08, + "accom": 7.24e-08, + "accredits": 7.24e-08, + "acetylated": 7.24e-08, + "acoma": 7.24e-08, + "actavis": 7.24e-08, + "actuall": 7.24e-08, + "acx": 7.24e-08, + "adivasis": 7.24e-08, + "adorbs": 7.24e-08, + "ados": 7.24e-08, + "adsorb": 7.24e-08, + "aerosolized": 7.24e-08, + "afflalo": 7.24e-08, + "aflutter": 7.24e-08, + "agnese": 7.24e-08, + "agonised": 7.24e-08, + "ahli": 7.24e-08, + "ahve": 7.24e-08, + "aira": 7.24e-08, + "airbases": 7.24e-08, + "airfix": 7.24e-08, + "airi": 7.24e-08, + "aise": 7.24e-08, + "ajr": 7.24e-08, + "akela": 7.24e-08, + "alamut": 7.24e-08, + "alarmism": 7.24e-08, + "albian": 7.24e-08, + "aleman": 7.24e-08, + "alesso": 7.24e-08, + "aliona": 7.24e-08, + "allegretto": 7.24e-08, + "allotting": 7.24e-08, + "alph": 7.24e-08, + "altra": 7.24e-08, + "alwar": 7.24e-08, + "ambon": 7.24e-08, + "amenorrhea": 7.24e-08, + "amoebae": 7.24e-08, + "amphoteric": 7.24e-08, + "amram": 7.24e-08, + "anastasio": 7.24e-08, + "anastasius": 7.24e-08, + "anisimov": 7.24e-08, + "anthropomorphized": 7.24e-08, + "antico": 7.24e-08, + "antineoplastic": 7.24e-08, + "antisemites": 7.24e-08, + "appearence": 7.24e-08, + "appro": 7.24e-08, + "aquired": 7.24e-08, + "arabist": 7.24e-08, + "aramid": 7.24e-08, + "archimedean": 7.24e-08, + "archipelagos": 7.24e-08, + "arcola": 7.24e-08, + "arinc": 7.24e-08, + "arpad": 7.24e-08, + "arterton": 7.24e-08, + "articulatory": 7.24e-08, + "asado": 7.24e-08, + "asal": 7.24e-08, + "asansol": 7.24e-08, + "asheboro": 7.24e-08, + "atgm": 7.24e-08, + "attilio": 7.24e-08, + "authorisations": 7.24e-08, + "autogenous": 7.24e-08, + "aventine": 7.24e-08, + "avons": 7.24e-08, + "avt": 7.24e-08, + "axeman": 7.24e-08, + "ayyyy": 7.24e-08, + "aziza": 7.24e-08, + "backheel": 7.24e-08, + "badar": 7.24e-08, + "bagi": 7.24e-08, + "bagshaw": 7.24e-08, + "bakari": 7.24e-08, + "bakugo": 7.24e-08, + "balking": 7.24e-08, + "bananarama": 7.24e-08, + "bangsamoro": 7.24e-08, + "bantz": 7.24e-08, + "banyak": 7.24e-08, + "barad": 7.24e-08, + "barcoding": 7.24e-08, + "barghouti": 7.24e-08, + "basia": 7.24e-08, + "basilan": 7.24e-08, + "bassoons": 7.24e-08, + "bastardized": 7.24e-08, + "batey": 7.24e-08, + "bcaa": 7.24e-08, + "beacham": 7.24e-08, + "beantown": 7.24e-08, + "beastiality": 7.24e-08, + "beatniks": 7.24e-08, + "becki": 7.24e-08, + "beddoes": 7.24e-08, + "bedeutung": 7.24e-08, + "beenleigh": 7.24e-08, + "befo": 7.24e-08, + "beinn": 7.24e-08, + "belmond": 7.24e-08, + "bemusement": 7.24e-08, + "benalla": 7.24e-08, + "benard": 7.24e-08, + "benficas": 7.24e-08, + "bently": 7.24e-08, + "beren": 7.24e-08, + "berenberg": 7.24e-08, + "bermans": 7.24e-08, + "berryessa": 7.24e-08, + "besh": 7.24e-08, + "betsys": 7.24e-08, + "bfl": 7.24e-08, + "bhattacharyya": 7.24e-08, + "biggio": 7.24e-08, + "bilayers": 7.24e-08, + "billfold": 7.24e-08, + "bioengineered": 7.24e-08, + "birthplaces": 7.24e-08, + "bishan": 7.24e-08, + "bitstream": 7.24e-08, + "blackjacks": 7.24e-08, + "blackmailers": 7.24e-08, + "blacky": 7.24e-08, + "blasios": 7.24e-08, + "blasphemers": 7.24e-08, + "bobi": 7.24e-08, + "boker": 7.24e-08, + "bolding": 7.24e-08, + "boldon": 7.24e-08, + "bomp": 7.24e-08, + "bonefish": 7.24e-08, + "boole": 7.24e-08, + "bordentown": 7.24e-08, + "boruc": 7.24e-08, + "bovey": 7.24e-08, + "bowral": 7.24e-08, + "brahmans": 7.24e-08, + "bralette": 7.24e-08, + "brandos": 7.24e-08, + "branston": 7.24e-08, + "breh": 7.24e-08, + "broady": 7.24e-08, + "brookstone": 7.24e-08, + "broski": 7.24e-08, + "brucker": 7.24e-08, + "bruun": 7.24e-08, + "btech": 7.24e-08, + "bubb": 7.24e-08, + "bubo": 7.24e-08, + "bucuresti": 7.24e-08, + "budde": 7.24e-08, + "budokan": 7.24e-08, + "buil": 7.24e-08, + "bujumbura": 7.24e-08, + "bulgar": 7.24e-08, + "bulling": 7.24e-08, + "buongiorno": 7.24e-08, + "burin": 7.24e-08, + "burkhard": 7.24e-08, + "buru": 7.24e-08, + "busboys": 7.24e-08, + "bushveld": 7.24e-08, + "bya": 7.24e-08, + "byars": 7.24e-08, + "byles": 7.24e-08, + "byz": 7.24e-08, + "cmere": 7.24e-08, + "cactuses": 7.24e-08, + "cadd": 7.24e-08, + "caecum": 7.24e-08, + "caff": 7.24e-08, + "camgirl": 7.24e-08, + "camogie": 7.24e-08, + "campsie": 7.24e-08, + "candlemas": 7.24e-08, + "carneiro": 7.24e-08, + "carolers": 7.24e-08, + "carpel": 7.24e-08, + "carpinteria": 7.24e-08, + "caserta": 7.24e-08, + "cassi": 7.24e-08, + "casta": 7.24e-08, + "castigating": 7.24e-08, + "catchpole": 7.24e-08, + "categorising": 7.24e-08, + "categorizations": 7.24e-08, + "catsup": 7.24e-08, + "catto": 7.24e-08, + "caudill": 7.24e-08, + "ceil": 7.24e-08, + "centralise": 7.24e-08, + "cepa": 7.24e-08, + "cephalon": 7.24e-08, + "cercle": 7.24e-08, + "cev": 7.24e-08, + "ceylan": 7.24e-08, + "cgn": 7.24e-08, + "chandran": 7.24e-08, + "chante": 7.24e-08, + "chaput": 7.24e-08, + "characterless": 7.24e-08, + "charest": 7.24e-08, + "charleton": 7.24e-08, + "chenery": 7.24e-08, + "childfree": 7.24e-08, + "chillis": 7.24e-08, + "chinna": 7.24e-08, + "chinon": 7.24e-08, + "chinooks": 7.24e-08, + "chipboard": 7.24e-08, + "chits": 7.24e-08, + "christopherson": 7.24e-08, + "chromate": 7.24e-08, + "chromatograph": 7.24e-08, + "cibber": 7.24e-08, + "cinchona": 7.24e-08, + "cini": 7.24e-08, + "circumcisions": 7.24e-08, + "cism": 7.24e-08, + "cleanroom": 7.24e-08, + "cliffy": 7.24e-08, + "clits": 7.24e-08, + "cloquet": 7.24e-08, + "cnv": 7.24e-08, + "cobar": 7.24e-08, + "codrington": 7.24e-08, + "collusive": 7.24e-08, + "colossi": 7.24e-08, + "comedys": 7.24e-08, + "commiseration": 7.24e-08, + "commo": 7.24e-08, + "commonweal": 7.24e-08, + "compas": 7.24e-08, + "comple": 7.24e-08, + "complutense": 7.24e-08, + "concords": 7.24e-08, + "condescended": 7.24e-08, + "congreso": 7.24e-08, + "conmebol": 7.24e-08, + "conrado": 7.24e-08, + "contestable": 7.24e-08, + "continu": 7.24e-08, + "convoked": 7.24e-08, + "convolutions": 7.24e-08, + "coolmore": 7.24e-08, + "cooperage": 7.24e-08, + "couloir": 7.24e-08, + "courcy": 7.24e-08, + "cpanel": 7.24e-08, + "cranbury": 7.24e-08, + "craster": 7.24e-08, + "crider": 7.24e-08, + "crps": 7.24e-08, + "cumulonimbus": 7.24e-08, + "cutely": 7.24e-08, + "cvv": 7.24e-08, + "dadaab": 7.24e-08, + "dadaist": 7.24e-08, + "dadu": 7.24e-08, + "dafne": 7.24e-08, + "dalyell": 7.24e-08, + "damietta": 7.24e-08, + "dashs": 7.24e-08, + "davidians": 7.24e-08, + "ddf": 7.24e-08, + "decarlo": 7.24e-08, + "decimus": 7.24e-08, + "deeb": 7.24e-08, + "defazio": 7.24e-08, + "deitch": 7.24e-08, + "demerol": 7.24e-08, + "demetrio": 7.24e-08, + "demint": 7.24e-08, + "deneen": 7.24e-08, + "deniable": 7.24e-08, + "denigrates": 7.24e-08, + "desna": 7.24e-08, + "despawn": 7.24e-08, + "deth": 7.24e-08, + "dethklok": 7.24e-08, + "detroiters": 7.24e-08, + "dhi": 7.24e-08, + "dhonis": 7.24e-08, + "diamant": 7.24e-08, + "diame": 7.24e-08, + "diktat": 7.24e-08, + "dinas": 7.24e-08, + "dippin": 7.24e-08, + "disjunct": 7.24e-08, + "dissapointment": 7.24e-08, + "dissemble": 7.24e-08, + "divis": 7.24e-08, + "dohertys": 7.24e-08, + "doina": 7.24e-08, + "dokdo": 7.24e-08, + "dominants": 7.24e-08, + "dominum": 7.24e-08, + "doone": 7.24e-08, + "dornish": 7.24e-08, + "doxxing": 7.24e-08, + "draenor": 7.24e-08, + "draughtsmen": 7.24e-08, + "dring": 7.24e-08, + "drr": 7.24e-08, + "dsh": 7.24e-08, + "dtn": 7.24e-08, + "dukkha": 7.24e-08, + "dumdum": 7.24e-08, + "duplass": 7.24e-08, + "duri": 7.24e-08, + "durocher": 7.24e-08, + "dutchy": 7.24e-08, + "dwd": 7.24e-08, + "dyar": 7.24e-08, + "dynamited": 7.24e-08, + "dyscalculia": 7.24e-08, + "earther": 7.24e-08, + "easterling": 7.24e-08, + "ebor": 7.24e-08, + "eccentrically": 7.24e-08, + "edgehill": 7.24e-08, + "ediciones": 7.24e-08, + "edmiston": 7.24e-08, + "ehrhardt": 7.24e-08, + "elaina": 7.24e-08, + "electroplated": 7.24e-08, + "elek": 7.24e-08, + "eliyahu": 7.24e-08, + "elst": 7.24e-08, + "elsworth": 7.24e-08, + "eltons": 7.24e-08, + "elysee": 7.24e-08, + "emeline": 7.24e-08, + "eml": 7.24e-08, + "emoting": 7.24e-08, + "endura": 7.24e-08, + "enforcements": 7.08e-08, + "englishmans": 7.24e-08, + "enka": 7.24e-08, + "enlil": 7.24e-08, + "enochian": 7.24e-08, + "enr": 7.24e-08, + "entombment": 7.24e-08, + "entorhinal": 7.24e-08, + "enzymatically": 7.24e-08, + "eoghan": 7.24e-08, + "eosin": 7.24e-08, + "epaulets": 7.24e-08, + "epitaxy": 7.24e-08, + "equerry": 7.24e-08, + "equitation": 7.24e-08, + "erso": 7.24e-08, + "escoffier": 7.24e-08, + "estamos": 7.24e-08, + "esti": 7.24e-08, + "estill": 7.24e-08, + "eterna": 7.24e-08, + "ettrick": 7.24e-08, + "euchre": 7.24e-08, + "euromonitor": 7.24e-08, + "euron": 7.24e-08, + "evah": 7.24e-08, + "evinces": 7.24e-08, + "eviscerating": 7.24e-08, + "ewca": 7.24e-08, + "exarch": 7.24e-08, + "exfoliator": 7.24e-08, + "exocytosis": 7.24e-08, + "extravagances": 7.24e-08, + "extrema": 7.24e-08, + "faceoffs": 7.24e-08, + "factotum": 7.24e-08, + "fagg": 7.24e-08, + "faiza": 7.24e-08, + "fale": 7.24e-08, + "faradays": 7.24e-08, + "fark": 7.24e-08, + "fascicle": 7.24e-08, + "favell": 7.24e-08, + "fechner": 7.24e-08, + "felicitous": 7.24e-08, + "fetishization": 7.24e-08, + "fetishize": 7.24e-08, + "fetzer": 7.24e-08, + "ffv": 7.24e-08, + "fga": 7.24e-08, + "filleting": 7.24e-08, + "fingleton": 7.24e-08, + "firas": 7.24e-08, + "fivb": 7.24e-08, + "flashbulb": 7.24e-08, + "flunking": 7.24e-08, + "flybys": 7.24e-08, + "flypast": 7.24e-08, + "fobbed": 7.24e-08, + "folia": 7.24e-08, + "folklorists": 7.24e-08, + "follo": 7.24e-08, + "fookin": 7.24e-08, + "forestland": 7.24e-08, + "forlornly": 7.24e-08, + "fosdick": 7.24e-08, + "foulness": 7.24e-08, + "franchi": 7.24e-08, + "franta": 7.24e-08, + "fratelli": 7.24e-08, + "frd": 7.24e-08, + "freek": 7.24e-08, + "freesat": 7.24e-08, + "freethinker": 7.24e-08, + "freiheit": 7.24e-08, + "frescoed": 7.24e-08, + "frimley": 7.24e-08, + "fujairah": 7.24e-08, + "fujioka": 7.24e-08, + "furball": 7.24e-08, + "furia": 7.24e-08, + "furioso": 7.24e-08, + "gadhafi": 7.24e-08, + "gaea": 7.24e-08, + "gakuin": 7.24e-08, + "galata": 7.24e-08, + "gallstone": 7.24e-08, + "gambits": 7.24e-08, + "gamez": 7.24e-08, + "gansevoort": 7.24e-08, + "garbed": 7.24e-08, + "garey": 7.24e-08, + "gauloises": 7.24e-08, + "gearhart": 7.24e-08, + "gether": 7.24e-08, + "ghan": 7.24e-08, + "ghostwritten": 7.24e-08, + "giorgione": 7.24e-08, + "gipsies": 7.24e-08, + "gitlab": 7.24e-08, + "glendinning": 7.24e-08, + "globin": 7.24e-08, + "gml": 7.24e-08, + "gnar": 7.24e-08, + "goatskin": 7.24e-08, + "gobo": 7.24e-08, + "goed": 7.24e-08, + "goetze": 7.24e-08, + "goldmann": 7.24e-08, + "goldson": 7.24e-08, + "gonorrhoeae": 7.24e-08, + "goodridge": 7.24e-08, + "gosforth": 7.24e-08, + "gosha": 7.24e-08, + "gpx": 7.24e-08, + "gravatt": 7.24e-08, + "grealish": 7.24e-08, + "greensleeves": 7.24e-08, + "greenways": 7.24e-08, + "greeters": 7.24e-08, + "gringa": 7.24e-08, + "grise": 7.24e-08, + "grk": 7.24e-08, + "grosseto": 7.24e-08, + "grotesques": 7.24e-08, + "gruesomely": 7.24e-08, + "gsg": 7.24e-08, + "guanosine": 7.24e-08, + "guber": 7.24e-08, + "guedes": 7.24e-08, + "guestbook": 7.24e-08, + "haddam": 7.24e-08, + "haggadah": 7.24e-08, + "hahahha": 7.24e-08, + "hainault": 7.24e-08, + "hamar": 7.24e-08, + "handguard": 7.24e-08, + "handhold": 7.24e-08, + "handsomeness": 7.24e-08, + "hansbrough": 7.24e-08, + "haplogroups": 7.24e-08, + "hardcovers": 7.24e-08, + "harpe": 7.24e-08, + "harrass": 7.24e-08, + "haslemere": 7.24e-08, + "hathitrust": 7.24e-08, + "hatley": 7.24e-08, + "hausman": 7.24e-08, + "havanas": 7.24e-08, + "havelange": 7.24e-08, + "hawksley": 7.24e-08, + "hbf": 7.24e-08, + "heathy": 7.24e-08, + "heikki": 7.24e-08, + "heise": 7.24e-08, + "heiss": 7.24e-08, + "heligoland": 7.24e-08, + "hemenway": 7.24e-08, + "herbivory": 7.24e-08, + "heterogenous": 7.24e-08, + "hiba": 7.24e-08, + "hildy": 7.24e-08, + "hillenbrand": 7.24e-08, + "hisar": 7.24e-08, + "historicist": 7.24e-08, + "hme": 7.24e-08, + "hmx": 7.24e-08, + "hoeness": 7.24e-08, + "hokuto": 7.24e-08, + "homestyle": 7.24e-08, + "hommage": 7.24e-08, + "honoris": 7.24e-08, + "hrg": 7.24e-08, + "huac": 7.24e-08, + "huangpu": 7.24e-08, + "huarache": 7.24e-08, + "huell": 7.24e-08, + "huez": 7.24e-08, + "humidifiers": 7.24e-08, + "hundredweight": 7.24e-08, + "huseyin": 7.24e-08, + "hyperkalemia": 7.24e-08, + "hyperlocal": 7.24e-08, + "iasb": 7.24e-08, + "ibogaine": 7.24e-08, + "icosahedron": 7.24e-08, + "idek": 7.24e-08, + "idfs": 7.24e-08, + "iee": 7.24e-08, + "ifhe": 7.24e-08, + "igns": 7.24e-08, + "iguazu": 7.24e-08, + "ijaz": 7.24e-08, + "ikebana": 7.24e-08, + "ilias": 7.24e-08, + "ilitch": 7.24e-08, + "ilkeston": 7.24e-08, + "impales": 7.24e-08, + "impinges": 7.24e-08, + "impl": 7.24e-08, + "incompletion": 7.24e-08, + "incorrectness": 7.24e-08, + "indenting": 7.24e-08, + "inet": 7.24e-08, + "intermarry": 7.24e-08, + "interne": 7.24e-08, + "interop": 7.24e-08, + "interrelations": 7.24e-08, + "interruptus": 7.24e-08, + "intracerebral": 7.24e-08, + "intrathecal": 7.24e-08, + "invitingly": 7.24e-08, + "ipu": 7.24e-08, + "irin": 7.24e-08, + "ironborn": 7.24e-08, + "isda": 7.24e-08, + "islah": 7.24e-08, + "isoelectric": 7.24e-08, + "issuances": 7.24e-08, + "ists": 7.24e-08, + "iveco": 7.24e-08, + "ivies": 7.24e-08, + "ivig": 7.24e-08, + "iwate": 7.24e-08, + "iwd": 7.24e-08, + "jacen": 7.24e-08, + "jagielka": 7.24e-08, + "jakku": 7.24e-08, + "jalgaon": 7.24e-08, + "jamz": 7.24e-08, + "janeane": 7.24e-08, + "jannie": 7.24e-08, + "jarecki": 7.24e-08, + "jaren": 7.24e-08, + "jaxs": 7.24e-08, + "jcr": 7.24e-08, + "jeou": 7.24e-08, + "jevons": 7.24e-08, + "jic": 7.24e-08, + "jiving": 7.24e-08, + "jiya": 7.24e-08, + "jollity": 7.24e-08, + "jom": 7.24e-08, + "josuke": 7.24e-08, + "judkins": 7.24e-08, + "junctional": 7.24e-08, + "justyna": 7.24e-08, + "kanhaiya": 7.24e-08, + "karisma": 7.24e-08, + "kcb": 7.24e-08, + "kehlani": 7.24e-08, + "kempsey": 7.24e-08, + "kenshi": 7.24e-08, + "keuchel": 7.24e-08, + "keynesianism": 7.24e-08, + "keyshia": 7.24e-08, + "khar": 7.24e-08, + "kib": 7.24e-08, + "kibbutzim": 7.24e-08, + "kibo": 7.24e-08, + "kidron": 7.24e-08, + "kimora": 7.24e-08, + "kinderhook": 7.24e-08, + "kinkade": 7.24e-08, + "kiper": 7.24e-08, + "kiryat": 7.24e-08, + "klavan": 7.24e-08, + "klemmer": 7.24e-08, + "koffi": 7.24e-08, + "kogyo": 7.24e-08, + "kolkhoz": 7.24e-08, + "koni": 7.24e-08, + "konkani": 7.24e-08, + "kosovar": 7.24e-08, + "krishnamurthy": 7.24e-08, + "kumquat": 7.24e-08, + "kuns": 7.24e-08, + "kwajalein": 7.24e-08, + "kyosuke": 7.24e-08, + "laflamme": 7.24e-08, + "lale": 7.24e-08, + "lamarque": 7.24e-08, + "laming": 7.24e-08, + "laminitis": 7.24e-08, + "laon": 7.24e-08, + "laputa": 7.24e-08, + "larboard": 7.24e-08, + "larsens": 7.24e-08, + "latecomer": 7.24e-08, + "lbi": 7.24e-08, + "leadsom": 7.24e-08, + "lecompte": 7.24e-08, + "lectins": 7.24e-08, + "leffingwell": 7.24e-08, + "legaspi": 7.24e-08, + "legis": 7.24e-08, + "lemoore": 7.24e-08, + "lenna": 7.24e-08, + "lente": 7.24e-08, + "leonel": 7.24e-08, + "leorio": 7.24e-08, + "lesa": 7.24e-08, + "lesher": 7.24e-08, + "lete": 7.24e-08, + "levonorgestrel": 7.24e-08, + "lewisohn": 7.24e-08, + "lfe": 7.24e-08, + "lfw": 7.24e-08, + "libertas": 7.24e-08, + "lifejacket": 7.24e-08, + "ligated": 7.24e-08, + "lilydale": 7.24e-08, + "lisicki": 7.24e-08, + "litera": 7.24e-08, + "literaly": 7.24e-08, + "litteraly": 7.24e-08, + "littlebigplanet": 7.24e-08, + "livni": 7.24e-08, + "lofting": 7.24e-08, + "logbooks": 7.24e-08, + "longstaff": 7.24e-08, + "lpp": 7.24e-08, + "lrr": 7.24e-08, + "ltalian": 7.24e-08, + "lumberman": 7.24e-08, + "luts": 7.24e-08, + "lwa": 7.24e-08, + "lwb": 7.24e-08, + "lysistrata": 7.24e-08, + "lysozyme": 7.24e-08, + "maathai": 7.24e-08, + "macaus": 7.24e-08, + "maced": 7.24e-08, + "machan": 7.24e-08, + "machineries": 7.24e-08, + "mactavish": 7.24e-08, + "madhubala": 7.24e-08, + "mael": 7.24e-08, + "mager": 7.24e-08, + "magnetize": 7.24e-08, + "mahavir": 7.24e-08, + "mainboard": 7.24e-08, + "mainmast": 7.24e-08, + "maio": 7.24e-08, + "mairi": 7.24e-08, + "maisonneuve": 7.24e-08, + "malad": 7.24e-08, + "manhwa": 7.24e-08, + "maoris": 7.24e-08, + "mapo": 7.24e-08, + "mard": 7.24e-08, + "marder": 7.24e-08, + "mariahs": 7.24e-08, + "markley": 7.24e-08, + "marlowes": 7.24e-08, + "marshak": 7.24e-08, + "masvidal": 7.24e-08, + "matej": 7.24e-08, + "mateusz": 7.24e-08, + "maty": 7.24e-08, + "mayhap": 7.24e-08, + "mcateer": 7.24e-08, + "mccoist": 7.24e-08, + "mcguinn": 7.24e-08, + "mchales": 7.24e-08, + "mclovin": 7.24e-08, + "mcmillian": 7.24e-08, + "mcnamaras": 7.24e-08, + "mdna": 7.24e-08, + "mellowing": 7.24e-08, + "menarche": 7.24e-08, + "menelik": 7.24e-08, + "mercantilist": 7.24e-08, + "merlino": 7.24e-08, + "mesoporous": 7.24e-08, + "messick": 7.24e-08, + "mester": 7.24e-08, + "metrically": 7.24e-08, + "mewling": 7.24e-08, + "mexica": 7.24e-08, + "mezzotint": 7.24e-08, + "mgms": 7.24e-08, + "microstrategy": 7.24e-08, + "middens": 7.24e-08, + "migo": 7.24e-08, + "militaria": 7.24e-08, + "millilitres": 7.24e-08, + "minims": 7.24e-08, + "mirka": 7.24e-08, + "mishna": 7.24e-08, + "misquoting": 7.24e-08, + "misreported": 7.24e-08, + "missional": 7.24e-08, + "mixin": 7.24e-08, + "mlf": 7.24e-08, + "mmb": 7.24e-08, + "mml": 7.24e-08, + "mmmmmmm": 7.24e-08, + "mnlf": 7.24e-08, + "moghul": 7.24e-08, + "moister": 7.24e-08, + "molex": 7.24e-08, + "monazite": 7.24e-08, + "monocultures": 7.24e-08, + "monophonic": 7.24e-08, + "monopod": 7.24e-08, + "moonsault": 7.24e-08, + "moralising": 7.24e-08, + "morphologic": 7.24e-08, + "mosa": 7.24e-08, + "moveset": 7.24e-08, + "moviemaking": 7.24e-08, + "movil": 7.24e-08, + "mukhopadhyay": 7.24e-08, + "mulsanne": 7.24e-08, + "muqtada": 7.24e-08, + "murakamis": 7.24e-08, + "murree": 7.24e-08, + "muskrats": 7.24e-08, + "musset": 7.24e-08, + "mustached": 7.24e-08, + "mutu": 7.24e-08, + "myki": 7.24e-08, + "mystification": 7.24e-08, + "myteam": 7.24e-08, + "nahar": 7.24e-08, + "nanning": 7.24e-08, + "naturedly": 7.24e-08, + "nauman": 7.24e-08, + "navigations": 7.24e-08, + "neco": 7.24e-08, + "negrito": 7.24e-08, + "negroid": 7.24e-08, + "negroponte": 7.24e-08, + "nemos": 7.24e-08, + "nese": 7.24e-08, + "netbeans": 7.24e-08, + "neurotypical": 7.24e-08, + "neuse": 7.24e-08, + "ngayon": 7.24e-08, + "nhlpa": 7.24e-08, + "niedermayer": 7.24e-08, + "nijhoff": 7.24e-08, + "nikka": 7.24e-08, + "nishikawa": 7.24e-08, + "nith": 7.24e-08, + "nitti": 7.24e-08, + "nooooooooo": 7.24e-08, + "norberto": 7.24e-08, + "noten": 7.24e-08, + "noughts": 7.24e-08, + "novalis": 7.24e-08, + "nuketown": 7.24e-08, + "nutmegs": 7.24e-08, + "nwe": 7.24e-08, + "nyon": 7.24e-08, + "ocaml": 7.24e-08, + "ocbc": 7.24e-08, + "occassionally": 7.24e-08, + "offutt": 7.24e-08, + "oisin": 7.24e-08, + "ojt": 7.24e-08, + "ojukwu": 7.24e-08, + "okw": 7.24e-08, + "olgas": 7.24e-08, + "olsons": 7.24e-08, + "ondine": 7.24e-08, + "onigiri": 7.24e-08, + "onyango": 7.24e-08, + "ool": 7.24e-08, + "opcode": 7.24e-08, + "ordinators": 7.24e-08, + "orenstein": 7.24e-08, + "orphic": 7.24e-08, + "orsi": 7.24e-08, + "orthodoxies": 7.24e-08, + "orthogonally": 7.24e-08, + "osbourn": 7.24e-08, + "osric": 7.24e-08, + "otic": 7.24e-08, + "oughtnt": 7.24e-08, + "outros": 7.24e-08, + "overflights": 7.24e-08, + "overstimulation": 7.24e-08, + "overwater": 7.24e-08, + "ovis": 7.24e-08, + "ovs": 7.24e-08, + "ownerships": 7.24e-08, + "pagi": 7.24e-08, + "pakeha": 7.24e-08, + "panaji": 7.24e-08, + "paperweights": 7.24e-08, + "papilio": 7.24e-08, + "paquita": 7.24e-08, + "parag": 7.24e-08, + "parallelization": 7.24e-08, + "paratroops": 7.24e-08, + "partita": 7.24e-08, + "pasi": 7.24e-08, + "patsys": 7.24e-08, + "patz": 7.24e-08, + "pavlik": 7.24e-08, + "pegram": 7.24e-08, + "peja": 7.24e-08, + "pekingese": 7.24e-08, + "peleg": 7.24e-08, + "pellerin": 7.24e-08, + "penistone": 7.24e-08, + "pennebaker": 7.24e-08, + "penneys": 7.24e-08, + "performant": 7.24e-08, + "perfumers": 7.24e-08, + "periscopes": 7.24e-08, + "perking": 7.24e-08, + "peroxisome": 7.24e-08, + "petabytes": 7.24e-08, + "pgl": 7.24e-08, + "phang": 7.24e-08, + "phet": 7.24e-08, + "philia": 7.24e-08, + "philipsburg": 7.24e-08, + "physios": 7.24e-08, + "piana": 7.24e-08, + "piao": 7.24e-08, + "piazzas": 7.24e-08, + "pigpen": 7.24e-08, + "pinstriped": 7.24e-08, + "pintail": 7.24e-08, + "pixi": 7.24e-08, + "pixiv": 7.24e-08, + "plastids": 7.24e-08, + "playbooks": 7.24e-08, + "pletcher": 7.24e-08, + "pmcs": 7.24e-08, + "pneumatically": 7.24e-08, + "pobre": 7.24e-08, + "pogs": 7.24e-08, + "polack": 7.24e-08, + "poleward": 7.24e-08, + "polychromatic": 7.24e-08, + "polydor": 7.24e-08, + "polygraphs": 7.24e-08, + "pompei": 7.24e-08, + "pontic": 7.24e-08, + "pooler": 7.24e-08, + "popsugar": 7.24e-08, + "poseidons": 7.24e-08, + "possesion": 7.24e-08, + "potencies": 7.24e-08, + "powel": 7.24e-08, + "poxy": 7.24e-08, + "preconditioning": 7.24e-08, + "prefatory": 7.24e-08, + "preforms": 7.24e-08, + "prejean": 7.24e-08, + "premi": 7.24e-08, + "prepa": 7.24e-08, + "prepon": 7.24e-08, + "presales": 7.24e-08, + "preworkout": 7.24e-08, + "priviledge": 7.24e-08, + "problematical": 7.24e-08, + "prophethood": 7.24e-08, + "proposers": 7.24e-08, + "protonation": 7.24e-08, + "pryors": 7.24e-08, + "ptosis": 7.24e-08, + "ptx": 7.24e-08, + "puch": 7.24e-08, + "pugilistic": 7.24e-08, + "puka": 7.24e-08, + "pyres": 7.24e-08, + "qat": 7.24e-08, + "qaumi": 7.24e-08, + "qds": 7.24e-08, + "quarrymen": 7.24e-08, + "quavers": 7.24e-08, + "quia": 7.24e-08, + "quids": 7.24e-08, + "quieres": 7.24e-08, + "quinceanera": 7.24e-08, + "rachmaninov": 7.24e-08, + "raddatz": 7.24e-08, + "raffaello": 7.24e-08, + "rafique": 7.24e-08, + "ragas": 7.24e-08, + "ragout": 7.24e-08, + "raimundo": 7.24e-08, + "raindance": 7.24e-08, + "rainin": 7.24e-08, + "ramanathan": 7.24e-08, + "ramekins": 7.24e-08, + "ranganathan": 7.24e-08, + "ranvir": 7.24e-08, + "raybould": 7.24e-08, + "raziel": 7.24e-08, + "rebreather": 7.24e-08, + "reconstructionist": 7.24e-08, + "redownload": 7.24e-08, + "reffing": 7.24e-08, + "refile": 7.24e-08, + "reflektor": 7.24e-08, + "registrable": 7.24e-08, + "regnal": 7.24e-08, + "rehabbed": 7.24e-08, + "reiff": 7.24e-08, + "reigniting": 7.24e-08, + "reindeers": 7.24e-08, + "releasable": 7.24e-08, + "remer": 7.24e-08, + "remora": 7.24e-08, + "renda": 7.24e-08, + "renees": 7.24e-08, + "renos": 6.03e-08, + "reoccupied": 7.24e-08, + "repacked": 7.24e-08, + "resistence": 7.24e-08, + "revelle": 7.24e-08, + "rhapsodic": 7.24e-08, + "ribena": 7.24e-08, + "richelle": 7.24e-08, + "ridgeback": 7.24e-08, + "ridout": 7.24e-08, + "rigatoni": 7.24e-08, + "riina": 7.24e-08, + "rishabh": 7.24e-08, + "rnn": 7.24e-08, + "rodi": 7.24e-08, + "roenick": 7.24e-08, + "roig": 7.24e-08, + "rojos": 7.24e-08, + "romesh": 7.24e-08, + "roofied": 7.24e-08, + "rosendale": 7.24e-08, + "roughened": 7.24e-08, + "rowson": 7.24e-08, + "rucka": 7.24e-08, + "rudo": 7.24e-08, + "rufo": 7.24e-08, + "ruscha": 7.24e-08, + "ryuko": 7.24e-08, + "saddlers": 7.24e-08, + "saddlery": 7.24e-08, + "sadistically": 7.24e-08, + "safet": 7.24e-08, + "saharanpur": 7.24e-08, + "salvadorian": 7.24e-08, + "samardzija": 7.24e-08, + "samrat": 7.24e-08, + "sanctuarys": 7.24e-08, + "santangelo": 7.24e-08, + "sartori": 7.24e-08, + "sasson": 7.24e-08, + "satyajit": 7.24e-08, + "savva": 7.24e-08, + "scandium": 7.24e-08, + "scarfing": 7.24e-08, + "schama": 7.24e-08, + "scheifele": 7.24e-08, + "schliemann": 7.24e-08, + "schnitzler": 7.24e-08, + "schwa": 7.24e-08, + "scioscia": 7.24e-08, + "scoria": 7.24e-08, + "screengrab": 7.24e-08, + "scruton": 7.24e-08, + "scuderi": 7.24e-08, + "seagrave": 7.24e-08, + "sealion": 7.24e-08, + "secant": 7.24e-08, + "seconde": 7.24e-08, + "selin": 7.24e-08, + "senecio": 7.24e-08, + "senghor": 7.24e-08, + "sensorineural": 7.24e-08, + "sensus": 7.24e-08, + "sephardim": 7.24e-08, + "serendipitously": 7.24e-08, + "servic": 7.24e-08, + "servicio": 7.24e-08, + "severable": 7.24e-08, + "sexily": 7.24e-08, + "sexta": 7.24e-08, + "shaar": 7.24e-08, + "shakeel": 7.24e-08, + "shamim": 7.24e-08, + "shampooed": 7.24e-08, + "shanghainese": 7.24e-08, + "shifu": 7.24e-08, + "shimomura": 7.24e-08, + "shinola": 7.24e-08, + "shively": 7.24e-08, + "shortlists": 7.24e-08, + "shrimpton": 7.24e-08, + "shyster": 7.24e-08, + "siddeley": 7.24e-08, + "sienkiewicz": 7.24e-08, + "sikeston": 7.24e-08, + "simps": 7.24e-08, + "sinopec": 7.24e-08, + "sipe": 7.24e-08, + "siz": 7.24e-08, + "slaney": 7.24e-08, + "slathering": 7.24e-08, + "slaveholder": 7.24e-08, + "sleeman": 7.24e-08, + "slieve": 7.24e-08, + "slops": 7.24e-08, + "smartthings": 7.24e-08, + "smetana": 7.24e-08, + "snakehead": 7.24e-08, + "snellen": 7.24e-08, + "sodomite": 7.24e-08, + "sollecito": 7.24e-08, + "solvation": 7.24e-08, + "sorvino": 7.24e-08, + "sparsity": 7.24e-08, + "spawners": 7.24e-08, + "spazio": 7.24e-08, + "spicejet": 7.24e-08, + "spluttered": 7.24e-08, + "spritzer": 7.24e-08, + "ssk": 7.24e-08, + "stange": 7.24e-08, + "statius": 7.24e-08, + "steinar": 7.24e-08, + "stelvio": 7.24e-08, + "stencilled": 7.24e-08, + "stevedores": 7.24e-08, + "stok": 7.24e-08, + "stonestreet": 7.24e-08, + "stupendously": 7.24e-08, + "stylization": 7.24e-08, + "subheadings": 7.24e-08, + "submillimeter": 7.24e-08, + "suhr": 7.24e-08, + "summe": 7.24e-08, + "surficial": 7.24e-08, + "surinder": 7.24e-08, + "susanville": 7.24e-08, + "swindles": 7.24e-08, + "swiper": 7.24e-08, + "swl": 7.24e-08, + "synchronic": 7.24e-08, + "syndicalists": 7.24e-08, + "szczecin": 7.24e-08, + "talaga": 7.24e-08, + "talismanic": 7.24e-08, + "tameka": 7.24e-08, + "tamia": 7.24e-08, + "tartness": 7.24e-08, + "tayla": 7.24e-08, + "tbb": 7.24e-08, + "tbo": 7.24e-08, + "teamer": 7.24e-08, + "teb": 7.24e-08, + "teet": 7.24e-08, + "teetotaler": 7.24e-08, + "tehuantepec": 7.24e-08, + "tempter": 7.24e-08, + "tenge": 7.24e-08, + "terras": 7.24e-08, + "teste": 7.24e-08, + "tgr": 7.24e-08, + "thermochemical": 7.24e-08, + "thermogenesis": 7.24e-08, + "thika": 7.24e-08, + "tibco": 7.24e-08, + "tiggy": 7.24e-08, + "tikhonov": 7.24e-08, + "tikki": 7.24e-08, + "tingley": 7.24e-08, + "tinh": 7.24e-08, + "tinney": 7.24e-08, + "titter": 7.24e-08, + "toile": 7.24e-08, + "toman": 7.24e-08, + "tommo": 7.24e-08, + "torun": 7.24e-08, + "townend": 7.24e-08, + "tozzi": 7.24e-08, + "transat": 7.24e-08, + "transhumanist": 7.24e-08, + "trautman": 7.24e-08, + "travelogues": 7.24e-08, + "travesties": 7.24e-08, + "trekkies": 7.24e-08, + "trel": 7.24e-08, + "trexler": 7.24e-08, + "trippier": 7.24e-08, + "tristen": 7.24e-08, + "trotskyists": 7.24e-08, + "troutdale": 7.24e-08, + "truecrypt": 7.24e-08, + "truncating": 7.24e-08, + "tshabalala": 7.24e-08, + "tsv": 7.24e-08, + "tunny": 7.24e-08, + "tureen": 7.24e-08, + "turtledove": 7.24e-08, + "tuva": 7.24e-08, + "twiss": 7.24e-08, + "txdot": 7.24e-08, + "tympani": 7.24e-08, + "tyrrhenian": 7.24e-08, + "uart": 7.24e-08, + "ucm": 7.24e-08, + "uhp": 7.24e-08, + "uintah": 7.24e-08, + "ujiri": 7.24e-08, + "unaccredited": 7.24e-08, + "unbaptized": 7.24e-08, + "unco": 7.24e-08, + "underexposed": 7.24e-08, + "unfathomably": 7.24e-08, + "unfurls": 7.24e-08, + "unifi": 7.24e-08, + "uninsurable": 7.24e-08, + "uninterruptible": 7.24e-08, + "uniter": 7.24e-08, + "universitaire": 7.24e-08, + "unmeasured": 7.24e-08, + "unna": 7.24e-08, + "unpick": 7.24e-08, + "unrelentingly": 7.24e-08, + "unsmiling": 7.24e-08, + "untv": 7.24e-08, + "upperclass": 7.24e-08, + "uproariously": 7.24e-08, + "uranyl": 7.24e-08, + "urus": 7.24e-08, + "ushakov": 7.24e-08, + "ustr": 7.24e-08, + "usurps": 7.24e-08, + "uvalde": 7.24e-08, + "vado": 7.24e-08, + "vanstone": 7.24e-08, + "vardon": 7.24e-08, + "vcf": 7.24e-08, + "vender": 7.24e-08, + "venlafaxine": 7.24e-08, + "ventress": 7.24e-08, + "venturers": 7.24e-08, + "vermeers": 7.24e-08, + "vermes": 7.24e-08, + "verum": 7.24e-08, + "vibram": 7.24e-08, + "vijayan": 7.24e-08, + "villaraigosa": 7.24e-08, + "virtuosos": 7.24e-08, + "viruss": 7.24e-08, + "vitalis": 7.24e-08, + "vizzini": 7.24e-08, + "volleyed": 7.24e-08, + "vons": 7.24e-08, + "vpi": 7.24e-08, + "vrij": 7.24e-08, + "vrindavan": 7.24e-08, + "vrt": 7.24e-08, + "wabasha": 7.24e-08, + "waistlines": 7.24e-08, + "wakeboard": 7.24e-08, + "walle": 7.24e-08, + "walloped": 7.24e-08, + "wamu": 7.24e-08, + "wara": 7.24e-08, + "warehoused": 7.24e-08, + "wari": 7.24e-08, + "warley": 7.24e-08, + "waterlow": 7.24e-08, + "weatherboard": 7.24e-08, + "weider": 7.24e-08, + "weimer": 7.24e-08, + "weisss": 7.24e-08, + "wens": 7.24e-08, + "wends": 7.24e-08, + "westminister": 7.24e-08, + "wfa": 7.24e-08, + "whizzes": 7.24e-08, + "whorish": 7.24e-08, + "whoville": 7.24e-08, + "wieser": 7.24e-08, + "wigram": 7.24e-08, + "windbreak": 7.24e-08, + "wipp": 7.24e-08, + "wips": 7.24e-08, + "wolpe": 7.24e-08, + "woosh": 7.24e-08, + "wooton": 7.24e-08, + "wowie": 7.24e-08, + "wtop": 7.24e-08, + "xboxone": 7.24e-08, + "ximenes": 7.24e-08, + "xmr": 7.24e-08, + "yahaya": 7.24e-08, + "yanina": 7.24e-08, + "yappy": 7.24e-08, + "yarde": 7.24e-08, + "yees": 3.47e-08, + "yinka": 7.24e-08, + "yoast": 7.24e-08, + "yokels": 7.24e-08, + "yowza": 7.24e-08, + "zakharov": 7.24e-08, + "zeev": 7.24e-08, + "zoller": 7.24e-08, + "zun": 7.24e-08, + "aare": 7.08e-08, + "abelardo": 7.08e-08, + "abidal": 7.08e-08, + "abitibi": 7.08e-08, + "abnett": 7.08e-08, + "abwehr": 7.08e-08, + "acclimating": 7.08e-08, + "achaeans": 7.08e-08, + "acidified": 7.08e-08, + "actuals": 7.08e-08, + "acy": 7.08e-08, + "adami": 7.08e-08, + "adey": 7.08e-08, + "advair": 7.08e-08, + "aef": 7.08e-08, + "aemon": 7.08e-08, + "aeo": 7.08e-08, + "aeromedical": 7.08e-08, + "afge": 7.08e-08, + "afri": 7.08e-08, + "afrocentric": 7.08e-08, + "afu": 7.08e-08, + "agai": 7.08e-08, + "agueros": 7.08e-08, + "ahok": 7.08e-08, + "aika": 7.08e-08, + "aikawa": 7.08e-08, + "aircel": 7.08e-08, + "airdate": 7.08e-08, + "airwolf": 7.08e-08, + "ajami": 7.08e-08, + "alderton": 7.08e-08, + "alexandrovich": 7.08e-08, + "alexandrovna": 7.08e-08, + "alik": 7.08e-08, + "allosaurus": 7.08e-08, + "almaden": 7.08e-08, + "alsa": 7.08e-08, + "alwin": 7.08e-08, + "amarnath": 7.08e-08, + "amata": 7.08e-08, + "ambar": 7.08e-08, + "amboseli": 7.08e-08, + "anacondas": 7.08e-08, + "anche": 7.08e-08, + "anderen": 7.08e-08, + "anderssen": 7.08e-08, + "angad": 7.08e-08, + "annnd": 7.08e-08, + "answerphone": 7.08e-08, + "ansys": 7.08e-08, + "antonoff": 7.08e-08, + "anuradha": 7.08e-08, + "anx": 7.08e-08, + "apostolos": 7.08e-08, + "apud": 7.08e-08, + "apush": 7.08e-08, + "arango": 7.08e-08, + "archivo": 7.08e-08, + "ardis": 7.08e-08, + "arnault": 7.08e-08, + "arosa": 7.08e-08, + "arter": 7.08e-08, + "artnet": 7.08e-08, + "ashgrove": 7.08e-08, + "ashwini": 7.08e-08, + "askar": 7.08e-08, + "asq": 7.08e-08, + "assailing": 7.08e-08, + "atomistic": 7.08e-08, + "atomizers": 7.08e-08, + "atrioventricular": 7.08e-08, + "atw": 7.08e-08, + "aurel": 7.08e-08, + "aurier": 7.08e-08, + "auro": 7.08e-08, + "austerities": 7.08e-08, + "autopsied": 7.08e-08, + "avan": 7.08e-08, + "avulsion": 7.08e-08, + "axi": 7.08e-08, + "ayoade": 7.08e-08, + "azathioprine": 7.08e-08, + "baathist": 7.08e-08, + "bagua": 7.08e-08, + "bailable": 7.08e-08, + "bandsaw": 7.08e-08, + "banja": 7.08e-08, + "bankes": 7.08e-08, + "banstead": 7.08e-08, + "barberry": 7.08e-08, + "barfly": 7.08e-08, + "barisan": 7.08e-08, + "barling": 7.08e-08, + "bartosz": 7.08e-08, + "barun": 7.08e-08, + "bati": 7.08e-08, + "battleford": 7.08e-08, + "baudouin": 7.08e-08, + "beacause": 7.08e-08, + "beachgoers": 7.08e-08, + "beaudry": 7.08e-08, + "beccles": 7.08e-08, + "bechamel": 7.08e-08, + "begich": 7.08e-08, + "belem": 7.08e-08, + "bena": 7.08e-08, + "benatia": 7.08e-08, + "berahino": 7.08e-08, + "berryville": 7.08e-08, + "bertinelli": 7.08e-08, + "bessey": 7.08e-08, + "betw": 7.08e-08, + "bhaiya": 7.08e-08, + "bhaji": 7.08e-08, + "bibimbap": 7.08e-08, + "bieksa": 7.08e-08, + "biennials": 7.08e-08, + "bii": 7.08e-08, + "bindra": 7.08e-08, + "bioaccumulation": 7.08e-08, + "biopolymers": 7.08e-08, + "biotechnologies": 7.08e-08, + "blaikie": 7.08e-08, + "blouin": 7.08e-08, + "blp": 7.08e-08, + "bluffed": 7.08e-08, + "boche": 7.08e-08, + "boeheim": 7.08e-08, + "bolly": 7.08e-08, + "boman": 7.08e-08, + "bood": 4.07e-08, + "boosey": 7.08e-08, + "boru": 7.08e-08, + "bosc": 7.08e-08, + "bowline": 7.08e-08, + "bpf": 7.08e-08, + "brabazon": 7.08e-08, + "bracy": 7.08e-08, + "bradt": 7.08e-08, + "brasov": 7.08e-08, + "brays": 6.17e-08, + "brenham": 7.08e-08, + "bretherton": 7.08e-08, + "brey": 7.08e-08, + "britax": 7.08e-08, + "brize": 7.08e-08, + "broc": 7.08e-08, + "brockie": 7.08e-08, + "brownson": 7.08e-08, + "browses": 7.08e-08, + "bruxism": 7.08e-08, + "btt": 7.08e-08, + "buckethead": 7.08e-08, + "buddah": 7.08e-08, + "buddhi": 7.08e-08, + "bullpup": 7.08e-08, + "butyric": 7.08e-08, + "buuuuut": 7.08e-08, + "cabals": 7.08e-08, + "cadi": 7.08e-08, + "calders": 7.08e-08, + "calderone": 7.08e-08, + "caldo": 7.08e-08, + "camero": 7.08e-08, + "campesino": 7.08e-08, + "canonize": 7.08e-08, + "cantab": 7.08e-08, + "capehart": 7.08e-08, + "capiz": 7.08e-08, + "capshaw": 7.08e-08, + "cardle": 7.08e-08, + "carjacker": 7.08e-08, + "carless": 7.08e-08, + "carps": 7.08e-08, + "carryall": 7.08e-08, + "carstens": 7.08e-08, + "catahoula": 7.08e-08, + "catcalled": 7.08e-08, + "cattery": 7.08e-08, + "celie": 7.08e-08, + "cellulase": 7.08e-08, + "cenote": 7.08e-08, + "centenario": 7.08e-08, + "cfds": 7.08e-08, + "champing": 7.08e-08, + "chander": 7.08e-08, + "chandragupta": 7.08e-08, + "chano": 7.08e-08, + "chantix": 7.08e-08, + "charltons": 7.08e-08, + "chartists": 7.08e-08, + "chauvin": 7.08e-08, + "cheboygan": 7.08e-08, + "cheesiest": 7.08e-08, + "cheh": 7.08e-08, + "cheick": 7.08e-08, + "cheka": 7.08e-08, + "cheo": 7.08e-08, + "chere": 7.08e-08, + "chinoiserie": 7.08e-08, + "chitwan": 7.08e-08, + "chokeslam": 7.08e-08, + "chomped": 7.08e-08, + "chompers": 7.08e-08, + "chri": 7.08e-08, + "chromeo": 7.08e-08, + "churchgoing": 7.08e-08, + "churchy": 7.08e-08, + "cidade": 7.08e-08, + "ciencia": 7.08e-08, + "cimino": 7.08e-08, + "cipro": 7.08e-08, + "cjeu": 7.08e-08, + "claptons": 7.08e-08, + "clar": 7.08e-08, + "clarus": 7.08e-08, + "clery": 7.08e-08, + "clew": 7.08e-08, + "cmll": 7.08e-08, + "coexists": 7.08e-08, + "collards": 7.08e-08, + "colletti": 7.08e-08, + "coloreds": 7.08e-08, + "comfiest": 7.08e-08, + "comhairle": 7.08e-08, + "commingled": 7.08e-08, + "concavity": 7.08e-08, + "congas": 7.08e-08, + "conjugating": 7.08e-08, + "conjuration": 7.08e-08, + "connexions": 7.08e-08, + "consecrating": 7.08e-08, + "consortiums": 6.92e-08, + "constrictions": 7.08e-08, + "constrictors": 7.08e-08, + "construing": 7.08e-08, + "cooh": 7.08e-08, + "copia": 7.08e-08, + "copperbelt": 7.08e-08, + "copulatory": 7.08e-08, + "corking": 7.08e-08, + "corlett": 7.08e-08, + "corncob": 7.08e-08, + "corum": 7.08e-08, + "cosell": 7.08e-08, + "cottam": 7.08e-08, + "coulsdon": 7.08e-08, + "coumarin": 7.08e-08, + "counterrevolution": 7.08e-08, + "coutinhos": 7.08e-08, + "cova": 7.08e-08, + "cowans": 7.08e-08, + "cramond": 7.08e-08, + "crayford": 7.08e-08, + "crinkling": 7.08e-08, + "cronut": 7.08e-08, + "crostini": 7.08e-08, + "croy": 7.08e-08, + "crudest": 7.08e-08, + "crx": 7.08e-08, + "culty": 7.08e-08, + "cundiff": 7.08e-08, + "curiel": 7.08e-08, + "currituck": 7.08e-08, + "curva": 7.08e-08, + "cutthroats": 7.08e-08, + "cycleway": 7.08e-08, + "cydney": 7.08e-08, + "daad": 7.08e-08, + "dack": 7.08e-08, + "daintily": 7.08e-08, + "damansara": 7.08e-08, + "darion": 7.08e-08, + "darrington": 7.08e-08, + "darwinist": 7.08e-08, + "datu": 7.08e-08, + "daugther": 7.08e-08, + "daxter": 7.08e-08, + "deak": 7.08e-08, + "dealbreaker": 7.08e-08, + "deceitfully": 7.08e-08, + "decompressed": 7.08e-08, + "decon": 7.08e-08, + "deepness": 7.08e-08, + "defenestration": 7.08e-08, + "delectation": 7.08e-08, + "dementor": 7.08e-08, + "demilitarised": 7.08e-08, + "demyelinating": 7.08e-08, + "dephosphorylation": 7.08e-08, + "dering": 7.08e-08, + "desolated": 7.08e-08, + "detrital": 7.08e-08, + "dharamshala": 7.08e-08, + "dharavi": 7.08e-08, + "diagramming": 7.08e-08, + "dibley": 7.08e-08, + "dietmar": 7.08e-08, + "dihydrate": 7.08e-08, + "dimi": 7.08e-08, + "dimmers": 7.08e-08, + "dinging": 7.08e-08, + "dinoflagellates": 7.08e-08, + "dipbrow": 7.08e-08, + "disavowal": 7.08e-08, + "dispositive": 7.08e-08, + "disrupters": 7.08e-08, + "disunion": 7.08e-08, + "divulges": 7.08e-08, + "djokovics": 7.08e-08, + "dka": 7.08e-08, + "doctrinally": 7.08e-08, + "dogra": 7.08e-08, + "dolmen": 7.08e-08, + "donavan": 7.08e-08, + "donnellan": 7.08e-08, + "donnellys": 7.08e-08, + "doodoo": 7.08e-08, + "doomfist": 7.08e-08, + "doper": 7.08e-08, + "dorrell": 7.08e-08, + "dotard": 7.08e-08, + "doubleclick": 7.08e-08, + "dragonslayer": 7.08e-08, + "driss": 7.08e-08, + "dropshipping": 7.08e-08, + "drose": 7.08e-08, + "dtu": 7.08e-08, + "dualities": 7.08e-08, + "duckface": 7.08e-08, + "ductus": 7.08e-08, + "dugas": 7.08e-08, + "duking": 7.08e-08, + "dundees": 7.08e-08, + "dunny": 7.08e-08, + "durarara": 7.08e-08, + "duren": 7.08e-08, + "duttons": 7.08e-08, + "dyas": 7.08e-08, + "earing": 7.08e-08, + "eart": 7.08e-08, + "ebsco": 7.08e-08, + "ecom": 7.08e-08, + "ecuadorians": 7.08e-08, + "edlund": 7.08e-08, + "edmundson": 7.08e-08, + "efendi": 7.08e-08, + "eguchi": 7.08e-08, + "eht": 7.08e-08, + "eicher": 7.08e-08, + "eireann": 7.08e-08, + "ejaculations": 7.08e-08, + "ejaculatory": 7.08e-08, + "elastically": 7.08e-08, + "electrospray": 7.08e-08, + "eliane": 7.08e-08, + "ellingtons": 7.08e-08, + "ellroy": 7.08e-08, + "emanuels": 7.08e-08, + "emboldening": 7.08e-08, + "embrittlement": 7.08e-08, + "emiko": 7.08e-08, + "emotionalism": 7.08e-08, + "empiric": 7.08e-08, + "emulsifying": 7.08e-08, + "enactors": 7.08e-08, + "engadine": 7.08e-08, + "enjoining": 7.08e-08, + "enterococcus": 7.08e-08, + "epithelia": 7.08e-08, + "epsrc": 7.08e-08, + "equines": 7.08e-08, + "erde": 7.08e-08, + "ergonomically": 7.08e-08, + "erland": 7.08e-08, + "ersan": 7.08e-08, + "esky": 7.08e-08, + "esquimalt": 7.08e-08, + "estevan": 7.08e-08, + "estrone": 7.08e-08, + "etonians": 7.08e-08, + "euromoney": 7.08e-08, + "eurusd": 7.08e-08, + "everday": 7.08e-08, + "exfoliant": 7.08e-08, + "exosomes": 7.08e-08, + "experiance": 7.08e-08, + "explaination": 7.08e-08, + "exudates": 7.08e-08, + "fabbri": 7.08e-08, + "fallowfield": 7.08e-08, + "falsifiable": 7.08e-08, + "falta": 7.08e-08, + "fantail": 7.08e-08, + "fati": 7.08e-08, + "faulconer": 7.08e-08, + "fcd": 7.08e-08, + "fedde": 7.08e-08, + "feigenbaum": 7.08e-08, + "feldmans": 7.08e-08, + "feminazi": 7.08e-08, + "fengs": 7.08e-08, + "fermenter": 7.08e-08, + "ferreting": 7.08e-08, + "fiddy": 7.08e-08, + "fih": 7.08e-08, + "filoni": 7.08e-08, + "finster": 7.08e-08, + "firtash": 7.08e-08, + "fizzes": 7.08e-08, + "flashman": 7.08e-08, + "flatterer": 7.08e-08, + "florham": 7.08e-08, + "fluorosis": 7.08e-08, + "fnp": 7.08e-08, + "foor": 7.08e-08, + "foord": 7.08e-08, + "fotheringham": 7.08e-08, + "foxworthy": 7.08e-08, + "fozzy": 7.08e-08, + "fres": 7.08e-08, + "fricatives": 7.08e-08, + "frobenius": 7.08e-08, + "frode": 7.08e-08, + "frodos": 7.08e-08, + "froid": 7.08e-08, + "fulkerson": 7.08e-08, + "fulminating": 7.08e-08, + "fupa": 7.08e-08, + "furio": 7.08e-08, + "fusillade": 7.08e-08, + "gadaffi": 7.08e-08, + "galia": 7.08e-08, + "galliani": 7.08e-08, + "galliard": 7.08e-08, + "gamasutra": 7.08e-08, + "ganger": 7.08e-08, + "ganpati": 7.08e-08, + "garamond": 7.08e-08, + "gaud": 7.08e-08, + "gcms": 7.08e-08, + "geauga": 7.08e-08, + "geelongs": 7.08e-08, + "gellman": 7.08e-08, + "genesys": 7.08e-08, + "gery": 7.08e-08, + "ghoshal": 7.08e-08, + "gillet": 7.08e-08, + "gilliams": 7.08e-08, + "glaciology": 7.08e-08, + "glaziers": 7.08e-08, + "glenys": 7.08e-08, + "gloats": 7.08e-08, + "gmtv": 7.08e-08, + "gnb": 7.08e-08, + "gobierno": 7.08e-08, + "goch": 7.08e-08, + "godunov": 7.08e-08, + "goethals": 7.08e-08, + "goethes": 7.08e-08, + "golani": 7.08e-08, + "goncalves": 7.08e-08, + "gordimer": 7.08e-08, + "gottesman": 7.08e-08, + "gpcr": 7.08e-08, + "granblue": 7.08e-08, + "grandville": 7.08e-08, + "gravediggers": 7.08e-08, + "greektown": 7.08e-08, + "greenacre": 7.08e-08, + "greenburg": 7.08e-08, + "greenbush": 7.08e-08, + "grimble": 7.08e-08, + "grimley": 7.08e-08, + "grund": 7.08e-08, + "grunewald": 7.08e-08, + "gsb": 7.08e-08, + "gtv": 7.08e-08, + "guanxi": 7.08e-08, + "guideposts": 7.08e-08, + "haditha": 7.08e-08, + "halevi": 7.08e-08, + "hallux": 7.08e-08, + "hampi": 7.08e-08, + "hanni": 7.08e-08, + "harbaughs": 7.08e-08, + "harve": 7.08e-08, + "hasans": 7.08e-08, + "hashbrowns": 7.08e-08, + "hbm": 7.08e-08, + "heartsick": 7.08e-08, + "heffner": 7.08e-08, + "hegde": 7.08e-08, + "heiberg": 7.08e-08, + "heilman": 7.08e-08, + "heisler": 7.08e-08, + "helicase": 7.08e-08, + "hellmuth": 7.08e-08, + "helplines": 7.08e-08, + "hemings": 7.08e-08, + "hessel": 7.08e-08, + "heterologous": 7.08e-08, + "hever": 7.08e-08, + "hfe": 7.08e-08, + "hfr": 7.08e-08, + "hgc": 7.08e-08, + "hideaki": 7.08e-08, + "highwood": 7.08e-08, + "hinze": 7.08e-08, + "hippel": 7.08e-08, + "hisako": 7.08e-08, + "histo": 7.08e-08, + "hobbles": 7.08e-08, + "hoggs": 7.08e-08, + "holli": 7.08e-08, + "homeworks": 7.08e-08, + "honchos": 7.08e-08, + "hopalong": 7.08e-08, + "hotbox": 7.08e-08, + "houk": 7.08e-08, + "housemaster": 7.08e-08, + "hsas": 7.08e-08, + "hubcap": 7.08e-08, + "hubertus": 7.08e-08, + "hudgins": 7.08e-08, + "humanae": 7.08e-08, + "hunching": 7.08e-08, + "hungered": 7.08e-08, + "huong": 7.08e-08, + "hurlers": 7.08e-08, + "husein": 7.08e-08, + "huuuge": 7.08e-08, + "hydroid": 7.08e-08, + "hydrolytic": 7.08e-08, + "hydroxides": 7.08e-08, + "hygge": 7.08e-08, + "icebound": 7.08e-08, + "icey": 7.08e-08, + "ictr": 7.08e-08, + "idyllwild": 7.08e-08, + "ifans": 7.08e-08, + "iframes": 7.08e-08, + "ikan": 7.08e-08, + "illogically": 7.08e-08, + "imaginarium": 7.08e-08, + "iml": 7.08e-08, + "impinged": 7.08e-08, + "implausibly": 7.08e-08, + "inarguably": 7.08e-08, + "incapability": 7.08e-08, + "indiewire": 7.08e-08, + "influenzae": 7.08e-08, + "insolvencies": 7.08e-08, + "instax": 7.08e-08, + "instillation": 7.08e-08, + "intension": 7.08e-08, + "inters": 5.13e-08, + "intercolonial": 7.08e-08, + "interdigital": 7.08e-08, + "internation": 7.08e-08, + "intesa": 7.08e-08, + "intouch": 7.08e-08, + "intrest": 7.08e-08, + "ionised": 7.08e-08, + "ippo": 7.08e-08, + "irrefutably": 7.08e-08, + "itanium": 7.08e-08, + "itraconazole": 7.08e-08, + "jabir": 7.08e-08, + "jackin": 7.08e-08, + "jaggers": 6.76e-08, + "jahrhundert": 7.08e-08, + "janek": 7.08e-08, + "jangs": 7.08e-08, + "janjaweed": 7.08e-08, + "jape": 7.08e-08, + "jardins": 7.08e-08, + "jarndyce": 7.08e-08, + "jassim": 7.08e-08, + "jasta": 7.08e-08, + "jeana": 7.08e-08, + "jfs": 7.08e-08, + "johannsen": 7.08e-08, + "johanssons": 7.08e-08, + "jonnys": 7.08e-08, + "jow": 7.08e-08, + "judaeo": 7.08e-08, + "jujube": 7.08e-08, + "junagadh": 7.08e-08, + "junebug": 7.08e-08, + "junio": 7.08e-08, + "kacy": 7.08e-08, + "kafe": 7.08e-08, + "kahu": 7.08e-08, + "kaibab": 7.08e-08, + "kakaotalk": 7.08e-08, + "kako": 7.08e-08, + "kalinin": 7.08e-08, + "kanner": 7.08e-08, + "kantha": 7.08e-08, + "kapitan": 7.08e-08, + "karena": 7.08e-08, + "karmel": 7.08e-08, + "kasam": 7.08e-08, + "katayama": 7.08e-08, + "katsuragi": 7.08e-08, + "katzman": 7.08e-08, + "kautsky": 7.08e-08, + "kayal": 7.08e-08, + "kehl": 7.08e-08, + "keilor": 7.08e-08, + "kelby": 7.08e-08, + "kellam": 7.08e-08, + "kentaro": 7.08e-08, + "kering": 7.08e-08, + "kexp": 7.08e-08, + "keyrings": 7.08e-08, + "kgf": 7.08e-08, + "khouri": 7.08e-08, + "khs": 7.08e-08, + "kiehls": 7.08e-08, + "kihei": 7.08e-08, + "kila": 7.08e-08, + "kile": 7.08e-08, + "kilgour": 7.08e-08, + "kilgrave": 7.08e-08, + "kirkyard": 7.08e-08, + "kisaragi": 7.08e-08, + "kjetil": 7.08e-08, + "klimov": 7.08e-08, + "kma": 7.08e-08, + "kodaks": 7.08e-08, + "kodansha": 7.08e-08, + "koei": 7.08e-08, + "kohinoor": 7.08e-08, + "kouyate": 7.08e-08, + "krait": 7.08e-08, + "krefeld": 7.08e-08, + "kristo": 7.08e-08, + "kryten": 7.08e-08, + "kujo": 7.08e-08, + "kune": 7.08e-08, + "kustom": 7.08e-08, + "kyte": 7.08e-08, + "lafite": 7.08e-08, + "laka": 7.08e-08, + "lamaze": 7.08e-08, + "lambic": 7.08e-08, + "lamentably": 7.08e-08, + "lamido": 7.08e-08, + "lamington": 7.08e-08, + "lamon": 7.08e-08, + "lamour": 7.08e-08, + "langleys": 7.08e-08, + "lantau": 7.08e-08, + "larbi": 7.08e-08, + "latticework": 7.08e-08, + "laus": 6.61e-08, + "leapfrogging": 7.08e-08, + "leclaire": 7.08e-08, + "leeuwin": 7.08e-08, + "legatus": 7.08e-08, + "lenton": 7.08e-08, + "leszek": 7.08e-08, + "levett": 7.08e-08, + "lexically": 7.08e-08, + "lfb": 7.08e-08, + "libi": 7.08e-08, + "ligeti": 7.08e-08, + "lightner": 7.08e-08, + "ligonier": 7.08e-08, + "lillis": 7.08e-08, + "limoncello": 7.08e-08, + "linearization": 7.08e-08, + "lisping": 7.08e-08, + "listowel": 7.08e-08, + "lly": 7.08e-08, + "lodgement": 7.08e-08, + "loewy": 7.08e-08, + "lollar": 7.08e-08, + "longueville": 7.08e-08, + "loopers": 7.08e-08, + "lovitz": 7.08e-08, + "lubricates": 7.08e-08, + "lucrecia": 7.08e-08, + "luverne": 7.08e-08, + "lvad": 7.08e-08, + "lycee": 7.08e-08, + "lygon": 7.08e-08, + "lyr": 7.08e-08, + "lyttle": 7.08e-08, + "macdonell": 7.08e-08, + "macerated": 7.08e-08, + "mackaye": 7.08e-08, + "macleods": 7.08e-08, + "magnavox": 7.08e-08, + "mahfouz": 7.08e-08, + "mahira": 7.08e-08, + "maicon": 7.08e-08, + "mallorys": 7.08e-08, + "manang": 7.08e-08, + "manby": 7.08e-08, + "manchego": 7.08e-08, + "manders": 7.08e-08, + "mankiw": 7.08e-08, + "maois": 7.08e-08, + "marae": 7.08e-08, + "margaretta": 7.08e-08, + "margi": 7.08e-08, + "marlton": 7.08e-08, + "maronites": 7.08e-08, + "marq": 7.08e-08, + "marson": 7.08e-08, + "marz": 7.08e-08, + "massasoit": 7.08e-08, + "mastication": 7.08e-08, + "mauler": 7.08e-08, + "mayank": 7.08e-08, + "maymay": 7.08e-08, + "mazy": 7.08e-08, + "mbf": 7.08e-08, + "mcaleer": 7.08e-08, + "mediacom": 7.08e-08, + "medibank": 7.08e-08, + "medicares": 7.08e-08, + "medivh": 7.08e-08, + "mehrotra": 7.08e-08, + "melky": 7.08e-08, + "melman": 7.08e-08, + "memel": 7.08e-08, + "menninger": 7.08e-08, + "meq": 7.08e-08, + "merchantability": 7.08e-08, + "meristem": 7.08e-08, + "mesmerism": 7.08e-08, + "messily": 7.08e-08, + "meynell": 7.08e-08, + "microparticles": 7.08e-08, + "middlesborough": 7.08e-08, + "midship": 7.08e-08, + "milagro": 7.08e-08, + "milkmen": 7.08e-08, + "millenarian": 7.08e-08, + "milman": 7.08e-08, + "milorad": 7.08e-08, + "milwaukie": 7.08e-08, + "minky": 7.08e-08, + "misfolded": 7.08e-08, + "misgender": 7.08e-08, + "mixs": 7.08e-08, + "miyoshi": 7.08e-08, + "mnl": 7.08e-08, + "mnm": 7.08e-08, + "moff": 7.08e-08, + "moldovas": 7.08e-08, + "monoid": 7.08e-08, + "monovalent": 7.08e-08, + "montecristo": 7.08e-08, + "monteleone": 7.08e-08, + "moocher": 7.08e-08, + "moriyama": 7.08e-08, + "morphett": 7.08e-08, + "mosss": 7.08e-08, + "mozzie": 7.08e-08, + "muezzin": 7.08e-08, + "mukerji": 7.08e-08, + "muli": 7.08e-08, + "multicomponent": 7.08e-08, + "multimillionaires": 7.08e-08, + "multistory": 7.08e-08, + "munchie": 7.08e-08, + "mund": 7.08e-08, + "munis": 7.08e-08, + "munsell": 7.08e-08, + "muralist": 7.08e-08, + "musil": 7.08e-08, + "mussa": 7.08e-08, + "muthu": 7.08e-08, + "muzaffar": 7.08e-08, + "mws": 7.08e-08, + "mycobacteria": 7.08e-08, + "myofascial": 7.08e-08, + "myotis": 7.08e-08, + "nabu": 7.08e-08, + "nacer": 7.08e-08, + "nadias": 7.08e-08, + "nagara": 7.08e-08, + "naima": 7.08e-08, + "nairne": 7.08e-08, + "najam": 7.08e-08, + "nalanda": 7.08e-08, + "nanako": 7.08e-08, + "nandan": 7.08e-08, + "nanoha": 7.08e-08, + "nanticoke": 7.08e-08, + "naranjo": 7.08e-08, + "nasreen": 7.08e-08, + "nasrin": 7.08e-08, + "nationalisms": 7.08e-08, + "natus": 7.08e-08, + "naves": 7.08e-08, + "nayan": 7.08e-08, + "nazarian": 7.08e-08, + "nazario": 7.08e-08, + "ncap": 7.08e-08, + "ncar": 7.08e-08, + "ncte": 7.08e-08, + "neapolitans": 7.08e-08, + "neches": 7.08e-08, + "neckerchief": 7.08e-08, + "nedra": 7.08e-08, + "neoadjuvant": 7.08e-08, + "neuromancer": 7.08e-08, + "newb": 7.08e-08, + "newgrounds": 7.08e-08, + "nflx": 7.08e-08, + "niente": 7.08e-08, + "nigrum": 7.08e-08, + "nitto": 7.08e-08, + "nmsu": 7.08e-08, + "nocera": 7.08e-08, + "nonferrous": 7.08e-08, + "nonwoven": 7.08e-08, + "noori": 7.08e-08, + "norfolks": 7.08e-08, + "normanby": 7.08e-08, + "northen": 7.08e-08, + "nullah": 7.08e-08, + "numbnuts": 7.08e-08, + "nuremburg": 7.08e-08, + "nutini": 7.08e-08, + "nutr": 7.08e-08, + "olearys": 7.08e-08, + "oarfish": 7.08e-08, + "occluding": 7.08e-08, + "oceanus": 7.08e-08, + "ocoee": 7.08e-08, + "odc": 7.08e-08, + "officemax": 7.08e-08, + "ogaden": 7.08e-08, + "ogee": 7.08e-08, + "ohhhhhhh": 7.08e-08, + "okapi": 7.08e-08, + "okuma": 7.08e-08, + "okura": 7.08e-08, + "olduvai": 7.08e-08, + "olf": 7.08e-08, + "olha": 7.08e-08, + "olim": 7.08e-08, + "olinda": 7.08e-08, + "omarion": 7.08e-08, + "oneshot": 7.08e-08, + "ormoc": 7.08e-08, + "ortegas": 7.08e-08, + "osso": 7.08e-08, + "otros": 7.08e-08, + "outnumbers": 7.08e-08, + "owosso": 7.08e-08, + "owyhee": 7.08e-08, + "padron": 7.08e-08, + "painesville": 7.08e-08, + "palla": 7.08e-08, + "pama": 7.08e-08, + "panis": 7.08e-08, + "pannu": 7.08e-08, + "panola": 7.08e-08, + "paraguays": 7.08e-08, + "paran": 7.08e-08, + "parco": 7.08e-08, + "pardner": 7.08e-08, + "paria": 7.08e-08, + "partic": 7.08e-08, + "pascha": 7.08e-08, + "passeth": 7.08e-08, + "passionless": 7.08e-08, + "patcher": 7.08e-08, + "peacocke": 7.08e-08, + "pede": 7.08e-08, + "pedigreed": 7.08e-08, + "pediments": 7.08e-08, + "peelers": 7.08e-08, + "pelinka": 7.08e-08, + "pellagra": 7.08e-08, + "pelling": 7.08e-08, + "pensiero": 7.08e-08, + "perceptibly": 7.08e-08, + "persaud": 7.08e-08, + "perturbing": 7.08e-08, + "peterbilt": 7.08e-08, + "petersens": 7.08e-08, + "pevsner": 7.08e-08, + "phaseout": 7.08e-08, + "phillipss": 7.08e-08, + "philos": 7.08e-08, + "phosphatases": 7.08e-08, + "photodetector": 7.08e-08, + "photoplay": 7.08e-08, + "pietra": 7.08e-08, + "pinecones": 7.08e-08, + "pinwheels": 7.08e-08, + "pistoia": 7.08e-08, + "pizazz": 7.08e-08, + "placemats": 7.08e-08, + "plaquemines": 7.08e-08, + "playmobil": 7.08e-08, + "polder": 7.08e-08, + "polgar": 7.08e-08, + "policia": 7.08e-08, + "polyphenol": 7.08e-08, + "pooing": 7.08e-08, + "popliteal": 7.08e-08, + "poseur": 7.08e-08, + "postfix": 7.08e-08, + "posto": 7.08e-08, + "poundage": 7.08e-08, + "pownall": 7.08e-08, + "prader": 7.08e-08, + "prebble": 7.08e-08, + "premix": 7.08e-08, + "preposterously": 7.08e-08, + "preservationist": 7.08e-08, + "presumptively": 7.08e-08, + "pries": 7.08e-08, + "proce": 7.08e-08, + "prognostication": 7.08e-08, + "prohibitionists": 7.08e-08, + "protectant": 7.08e-08, + "proteomic": 7.08e-08, + "protestation": 7.08e-08, + "protoplasm": 7.08e-08, + "providencia": 7.08e-08, + "psyching": 7.08e-08, + "psychometrics": 7.08e-08, + "pubescens": 7.08e-08, + "puran": 7.08e-08, + "purchas": 7.08e-08, + "pureblood": 7.08e-08, + "pvm": 7.08e-08, + "pyp": 7.08e-08, + "pythia": 7.08e-08, + "quavering": 7.08e-08, + "querida": 7.08e-08, + "qun": 7.08e-08, + "radicchio": 7.08e-08, + "rahmat": 7.08e-08, + "rampaged": 7.08e-08, + "ranchos": 7.08e-08, + "rapides": 7.08e-08, + "ravn": 7.08e-08, + "rbp": 7.08e-08, + "rdt": 7.08e-08, + "reac": 7.08e-08, + "recalculation": 7.08e-08, + "redcoat": 7.08e-08, + "regin": 7.08e-08, + "regionalization": 7.08e-08, + "regno": 7.08e-08, + "reinsurer": 7.08e-08, + "reintegrating": 7.08e-08, + "remounted": 7.08e-08, + "repudiates": 7.08e-08, + "repulses": 7.08e-08, + "rescinds": 7.08e-08, + "reste": 7.08e-08, + "resurrections": 7.08e-08, + "resuscitating": 7.08e-08, + "retraces": 7.08e-08, + "reviver": 7.08e-08, + "rezone": 7.08e-08, + "rhinehart": 7.08e-08, + "ridgeland": 7.08e-08, + "ridsdale": 7.08e-08, + "rike": 7.08e-08, + "risd": 7.08e-08, + "roader": 7.08e-08, + "rockne": 7.08e-08, + "roofie": 7.08e-08, + "rosatom": 7.08e-08, + "rosemead": 7.08e-08, + "rosenkavalier": 7.08e-08, + "rotimi": 7.08e-08, + "roxanna": 7.08e-08, + "roxys": 7.08e-08, + "rufe": 7.08e-08, + "ruggero": 7.08e-08, + "rusch": 7.08e-08, + "rybolovlev": 7.08e-08, + "sacagawea": 7.08e-08, + "sachse": 7.08e-08, + "salsas": 7.08e-08, + "saltash": 7.08e-08, + "samedi": 7.08e-08, + "samhita": 7.08e-08, + "samit": 7.08e-08, + "samoas": 7.08e-08, + "sampsons": 7.08e-08, + "sanwa": 7.08e-08, + "satine": 7.08e-08, + "satoko": 7.08e-08, + "saurian": 7.08e-08, + "savors": 7.08e-08, + "sawamura": 7.08e-08, + "sbir": 7.08e-08, + "schillinger": 7.08e-08, + "schnitzer": 7.08e-08, + "schoolmasters": 7.08e-08, + "schwan": 7.08e-08, + "schwarber": 7.08e-08, + "sciencedaily": 7.08e-08, + "screeds": 7.08e-08, + "scudetto": 7.08e-08, + "sdny": 7.08e-08, + "seabreeze": 7.08e-08, + "seau": 7.08e-08, + "secdef": 7.08e-08, + "securitisation": 7.08e-08, + "seest": 7.08e-08, + "seir": 7.08e-08, + "sejm": 7.08e-08, + "sekulow": 7.08e-08, + "selanne": 7.08e-08, + "selbst": 7.08e-08, + "selfesteem": 7.08e-08, + "sellotape": 7.08e-08, + "selway": 7.08e-08, + "serg": 7.08e-08, + "serina": 7.08e-08, + "sevierville": 7.08e-08, + "sewickley": 7.08e-08, + "sftp": 7.08e-08, + "shada": 7.08e-08, + "shalala": 7.08e-08, + "shalwar": 7.08e-08, + "shapira": 7.08e-08, + "shayk": 7.08e-08, + "shearwaters": 7.08e-08, + "shetlands": 7.08e-08, + "shillelagh": 7.08e-08, + "shipshape": 7.08e-08, + "shiros": 7.08e-08, + "shortsightedness": 7.08e-08, + "shriner": 7.08e-08, + "shumaker": 7.08e-08, + "sibbald": 7.08e-08, + "sieved": 7.08e-08, + "sifts": 7.08e-08, + "signboards": 7.08e-08, + "signum": 7.08e-08, + "silicosis": 7.08e-08, + "simcha": 7.08e-08, + "singham": 7.08e-08, + "skadden": 7.08e-08, + "skagen": 7.08e-08, + "skeena": 7.08e-08, + "skerries": 7.08e-08, + "skiffle": 7.08e-08, + "slammers": 7.08e-08, + "sloman": 7.08e-08, + "slurped": 7.08e-08, + "slv": 7.08e-08, + "smushed": 7.08e-08, + "snaring": 7.08e-08, + "sohr": 7.08e-08, + "sokratis": 7.08e-08, + "sortable": 7.08e-08, + "soymilk": 7.08e-08, + "spahn": 7.08e-08, + "sparling": 7.08e-08, + "spdr": 7.08e-08, + "speakeasies": 7.08e-08, + "spicey": 7.08e-08, + "spier": 7.08e-08, + "spiff": 7.08e-08, + "spitballing": 7.08e-08, + "spiteri": 7.08e-08, + "spithead": 7.08e-08, + "spittoon": 7.08e-08, + "spleens": 7.08e-08, + "sportscars": 7.08e-08, + "springbank": 7.08e-08, + "spurge": 7.08e-08, + "ssss": 7.08e-08, + "ssv": 7.08e-08, + "stagings": 7.08e-08, + "stallones": 7.08e-08, + "stapes": 7.08e-08, + "stearate": 7.08e-08, + "steichen": 7.08e-08, + "stelling": 7.08e-08, + "stenographers": 7.08e-08, + "stepp": 7.08e-08, + "stina": 7.08e-08, + "stokowski": 7.08e-08, + "strathearn": 7.08e-08, + "stroheim": 7.08e-08, + "submitters": 7.08e-08, + "suchitra": 7.08e-08, + "sundresses": 7.08e-08, + "supervolcano": 7.08e-08, + "swac": 7.08e-08, + "sweetland": 7.08e-08, + "switchfoot": 7.08e-08, + "symptomatology": 7.08e-08, + "systematization": 7.08e-08, + "tabatha": 7.08e-08, + "takako": 7.08e-08, + "takamine": 7.08e-08, + "talaat": 7.08e-08, + "tampax": 7.08e-08, + "tanguy": 7.08e-08, + "tanny": 7.08e-08, + "tardive": 7.08e-08, + "tarsi": 7.08e-08, + "taxonomically": 7.08e-08, + "teese": 7.08e-08, + "teff": 7.08e-08, + "tehrik": 7.08e-08, + "teitelbaum": 7.08e-08, + "templated": 7.08e-08, + "tems": 7.08e-08, + "tenebrae": 7.08e-08, + "tenofovir": 7.08e-08, + "tenten": 7.08e-08, + "teodor": 7.08e-08, + "teratogenic": 7.08e-08, + "textually": 7.08e-08, + "tharpe": 7.08e-08, + "theda": 7.08e-08, + "theodores": 7.08e-08, + "thermoset": 7.08e-08, + "thibodaux": 7.08e-08, + "thomasina": 7.08e-08, + "thoros": 7.08e-08, + "thronging": 7.08e-08, + "throop": 7.08e-08, + "thunderhead": 7.08e-08, + "thundery": 7.08e-08, + "thys": 7.08e-08, + "tienes": 7.08e-08, + "tima": 7.08e-08, + "titleholders": 7.08e-08, + "tiwi": 7.08e-08, + "tmf": 7.08e-08, + "tmw": 7.08e-08, + "toastie": 7.08e-08, + "tongans": 7.08e-08, + "toom": 7.08e-08, + "topicality": 7.08e-08, + "touchin": 7.08e-08, + "toughs": 7.08e-08, + "traceys": 7.08e-08, + "traxxas": 7.08e-08, + "tremens": 7.08e-08, + "tridents": 7.08e-08, + "trigon": 7.08e-08, + "trillian": 7.08e-08, + "trolly": 7.08e-08, + "trumble": 7.08e-08, + "tuberculous": 7.08e-08, + "tuckered": 7.08e-08, + "tullamarine": 7.08e-08, + "tunku": 7.08e-08, + "tupolev": 7.08e-08, + "turne": 7.08e-08, + "tuscarawas": 7.08e-08, + "tweedie": 7.08e-08, + "tzar": 7.08e-08, + "uhaul": 7.08e-08, + "umeda": 7.08e-08, + "ummmmm": 7.08e-08, + "unarmored": 7.08e-08, + "uncrowded": 7.08e-08, + "unequipped": 7.08e-08, + "unindicted": 7.08e-08, + "universite": 7.08e-08, + "unplayed": 7.08e-08, + "unprejudiced": 7.08e-08, + "unsporting": 7.08e-08, + "urbanity": 7.08e-08, + "urd": 7.08e-08, + "usul": 7.08e-08, + "uwc": 7.08e-08, + "uzo": 7.08e-08, + "vaishnava": 7.08e-08, + "vakil": 7.08e-08, + "valentinos": 7.08e-08, + "vampyre": 7.08e-08, + "vanderbilts": 5.37e-08, + "vascularity": 7.08e-08, + "vasiliy": 7.08e-08, + "vaudevillian": 7.08e-08, + "vbucks": 7.08e-08, + "verdean": 7.08e-08, + "verhofstadt": 7.08e-08, + "vestment": 7.08e-08, + "vibrance": 7.08e-08, + "vili": 7.08e-08, + "viljoen": 7.08e-08, + "viticultural": 7.08e-08, + "viviani": 7.08e-08, + "voll": 7.08e-08, + "vora": 7.08e-08, + "vro": 7.08e-08, + "vsv": 7.08e-08, + "vuittons": 7.08e-08, + "vvt": 7.08e-08, + "wadded": 7.08e-08, + "wagener": 7.08e-08, + "waren": 7.08e-08, + "warlow": 7.08e-08, + "warrier": 7.08e-08, + "wason": 7.08e-08, + "waterboard": 7.08e-08, + "waupaca": 7.08e-08, + "waveland": 7.08e-08, + "wbu": 7.08e-08, + "wealden": 7.08e-08, + "weirding": 7.08e-08, + "weissmann": 7.08e-08, + "wendall": 7.08e-08, + "wernicke": 7.08e-08, + "whampoa": 7.08e-08, + "wheatfield": 7.08e-08, + "whoopin": 7.08e-08, + "wiesner": 7.08e-08, + "wieters": 7.08e-08, + "wiht": 7.08e-08, + "wincanton": 7.08e-08, + "winfreys": 7.08e-08, + "winny": 7.08e-08, + "witton": 7.08e-08, + "witts": 7.08e-08, + "woi": 7.08e-08, + "wollen": 7.08e-08, + "wolpert": 7.08e-08, + "wonderous": 7.08e-08, + "woodpile": 7.08e-08, + "wormald": 7.08e-08, + "xmpp": 7.08e-08, + "xul": 7.08e-08, + "yakutia": 7.08e-08, + "yandle": 7.08e-08, + "yardsticks": 7.08e-08, + "yel": 7.08e-08, + "yha": 7.08e-08, + "ysr": 7.08e-08, + "yucaipa": 7.08e-08, + "zakynthos": 7.08e-08, + "zanna": 7.08e-08, + "zehnder": 7.08e-08, + "zetland": 7.08e-08, + "zimmern": 7.08e-08, + "zofran": 7.08e-08, + "abdou": 6.92e-08, + "abkhaz": 6.92e-08, + "abot": 6.92e-08, + "acara": 6.92e-08, + "acetyltransferase": 6.92e-08, + "achill": 6.92e-08, + "acidophilus": 6.92e-08, + "acis": 6.92e-08, + "ackbar": 6.92e-08, + "adib": 6.92e-08, + "adventuresome": 6.92e-08, + "againt": 6.92e-08, + "agius": 6.92e-08, + "aguileras": 6.92e-08, + "agut": 6.92e-08, + "akim": 6.92e-08, + "albatros": 6.92e-08, + "albertina": 6.92e-08, + "alexios": 6.92e-08, + "alkalis": 6.92e-08, + "alkane": 6.92e-08, + "allrounder": 6.92e-08, + "almira": 6.92e-08, + "alou": 6.92e-08, + "altis": 6.92e-08, + "amane": 6.92e-08, + "amant": 6.92e-08, + "amanuensis": 6.92e-08, + "amatuer": 6.92e-08, + "amaury": 6.92e-08, + "ambiente": 6.92e-08, + "amet": 6.92e-08, + "amethysts": 6.92e-08, + "amnesties": 6.92e-08, + "andesitic": 6.92e-08, + "anechoic": 6.92e-08, + "antiquing": 6.92e-08, + "anzeiger": 6.92e-08, + "aog": 6.92e-08, + "aoty": 6.92e-08, + "archaeal": 6.92e-08, + "architectonic": 6.92e-08, + "arkadia": 6.92e-08, + "arkle": 6.92e-08, + "arrakis": 6.92e-08, + "arsenate": 6.92e-08, + "arteaga": 6.92e-08, + "aryas": 6.92e-08, + "ascalon": 6.92e-08, + "asgardians": 6.92e-08, + "ashbery": 6.92e-08, + "ashgabat": 6.92e-08, + "asmar": 6.92e-08, + "aspergillosis": 6.92e-08, + "asphyxiating": 6.92e-08, + "assails": 6.92e-08, + "attributive": 6.92e-08, + "attwell": 6.92e-08, + "augen": 6.92e-08, + "auscultation": 6.92e-08, + "averred": 6.92e-08, + "awas": 6.92e-08, + "azikiwe": 6.92e-08, + "azoff": 6.92e-08, + "bagg": 6.92e-08, + "bagga": 6.92e-08, + "baiano": 6.92e-08, + "baillieu": 6.92e-08, + "bakayoko": 6.92e-08, + "balanchines": 6.92e-08, + "balochi": 6.92e-08, + "banham": 6.92e-08, + "barbi": 6.92e-08, + "barkan": 6.92e-08, + "barotseland": 6.92e-08, + "barres": 6.92e-08, + "barzun": 6.92e-08, + "basally": 6.92e-08, + "baty": 6.92e-08, + "bbd": 6.92e-08, + "bbp": 6.92e-08, + "bearsden": 6.92e-08, + "bedhead": 6.92e-08, + "bedok": 6.92e-08, + "beena": 6.92e-08, + "belched": 6.92e-08, + "belgrades": 6.92e-08, + "belleza": 6.92e-08, + "bellisario": 6.92e-08, + "bellsouth": 6.92e-08, + "benzoin": 6.92e-08, + "besler": 6.92e-08, + "besse": 6.92e-08, + "betwen": 6.92e-08, + "bexleyheath": 6.92e-08, + "beza": 6.92e-08, + "bhandara": 6.92e-08, + "bhojpuri": 6.92e-08, + "bicuspid": 6.92e-08, + "bidden": 6.92e-08, + "biju": 6.92e-08, + "bingle": 6.92e-08, + "binkley": 6.92e-08, + "biodiverse": 6.92e-08, + "biomaterial": 6.92e-08, + "bioweapon": 6.92e-08, + "birb": 6.92e-08, + "bisphosphonates": 6.92e-08, + "bisson": 6.92e-08, + "bitdefender": 6.92e-08, + "bitting": 6.92e-08, + "blackstones": 6.92e-08, + "blanda": 6.92e-08, + "blaser": 6.92e-08, + "blatch": 6.92e-08, + "bleakest": 6.92e-08, + "bleakly": 6.92e-08, + "blizz": 6.92e-08, + "bloatware": 6.92e-08, + "bluebook": 6.92e-08, + "boadicea": 6.92e-08, + "bocca": 6.92e-08, + "boettcher": 6.92e-08, + "boggart": 6.92e-08, + "bolsover": 6.92e-08, + "bondholder": 6.92e-08, + "bonga": 6.92e-08, + "bonhomie": 6.92e-08, + "bouteflika": 6.92e-08, + "bpg": 6.92e-08, + "brandreth": 6.92e-08, + "bransford": 6.92e-08, + "braze": 6.92e-08, + "breadstick": 6.92e-08, + "breakroom": 6.92e-08, + "bresnan": 6.92e-08, + "brinckerhoff": 6.92e-08, + "brinjal": 6.92e-08, + "brinkmanship": 6.92e-08, + "brk": 6.92e-08, + "broca": 6.92e-08, + "brora": 6.92e-08, + "brownlie": 6.92e-08, + "brownstown": 6.92e-08, + "brummer": 6.92e-08, + "brw": 6.92e-08, + "brydges": 6.92e-08, + "bryophytes": 6.92e-08, + "buendia": 6.92e-08, + "bujold": 6.92e-08, + "burberrys": 6.92e-08, + "burnes": 6.92e-08, + "bushi": 6.92e-08, + "busywork": 6.92e-08, + "cads": 6.92e-08, + "caid": 6.92e-08, + "calculable": 6.92e-08, + "caldas": 6.92e-08, + "callable": 6.92e-08, + "callendar": 6.92e-08, + "calverton": 6.92e-08, + "cambuslang": 6.92e-08, + "candie": 6.92e-08, + "canopus": 6.92e-08, + "canso": 6.92e-08, + "cantonments": 6.92e-08, + "carballo": 6.92e-08, + "carboxylase": 6.92e-08, + "carel": 6.92e-08, + "caribs": 6.92e-08, + "carpels": 6.92e-08, + "casitas": 6.92e-08, + "cassirer": 6.92e-08, + "cassville": 6.92e-08, + "catcall": 6.92e-08, + "catchin": 6.92e-08, + "catedral": 6.92e-08, + "cathars": 6.92e-08, + "cccp": 6.92e-08, + "ccv": 6.92e-08, + "cermak": 6.92e-08, + "cerrito": 6.92e-08, + "chadwell": 6.92e-08, + "chamakh": 6.92e-08, + "chambord": 6.92e-08, + "chandras": 6.92e-08, + "charente": 6.92e-08, + "charsadda": 6.92e-08, + "chasuble": 6.92e-08, + "chatelaine": 6.92e-08, + "cheektowaga": 6.92e-08, + "cheongsam": 6.92e-08, + "cherenkov": 6.92e-08, + "chevaliers": 6.92e-08, + "chhatrapati": 6.92e-08, + "chidori": 6.92e-08, + "chislehurst": 6.92e-08, + "chitauri": 6.92e-08, + "chitose": 6.92e-08, + "chitti": 6.92e-08, + "choctaws": 6.92e-08, + "choise": 6.92e-08, + "chondrocytes": 6.92e-08, + "choppa": 6.92e-08, + "chortling": 6.92e-08, + "ciccio": 6.92e-08, + "cien": 6.92e-08, + "circleville": 6.92e-08, + "classicists": 6.92e-08, + "clavering": 6.92e-08, + "clayface": 6.92e-08, + "clercq": 6.92e-08, + "clerkships": 6.92e-08, + "cloe": 6.92e-08, + "cloudburst": 6.92e-08, + "coachable": 6.92e-08, + "coaxes": 6.92e-08, + "coevolution": 6.92e-08, + "colcord": 6.92e-08, + "colebrooke": 6.92e-08, + "collaterals": 6.92e-08, + "collegian": 6.92e-08, + "combusting": 6.92e-08, + "combustor": 6.92e-08, + "commendably": 6.92e-08, + "commis": 6.92e-08, + "commutations": 6.92e-08, + "companionable": 6.92e-08, + "comparatives": 6.92e-08, + "comptons": 6.92e-08, + "concertgoers": 6.92e-08, + "concetta": 6.92e-08, + "conder": 6.92e-08, + "connectives": 6.92e-08, + "consett": 6.92e-08, + "consorted": 6.92e-08, + "conurbations": 6.92e-08, + "coonan": 6.92e-08, + "coppens": 6.92e-08, + "copters": 6.92e-08, + "corax": 6.92e-08, + "corben": 6.92e-08, + "corralling": 6.92e-08, + "cosford": 6.92e-08, + "cosmogony": 6.92e-08, + "costcos": 6.92e-08, + "counterbalancing": 6.92e-08, + "courvoisier": 6.92e-08, + "coverall": 6.92e-08, + "coweta": 6.92e-08, + "crams": 6.92e-08, + "crims": 6.92e-08, + "criswell": 6.92e-08, + "croaks": 6.92e-08, + "cronje": 6.92e-08, + "crucis": 6.92e-08, + "crudup": 6.92e-08, + "crueler": 6.92e-08, + "cucked": 6.92e-08, + "cuddler": 6.92e-08, + "culhane": 6.92e-08, + "curs": 6.92e-08, + "cytokinesis": 6.92e-08, + "daas": 6.92e-08, + "daba": 6.92e-08, + "dadt": 6.92e-08, + "damndest": 6.92e-08, + "dandong": 6.92e-08, + "dangerousness": 6.92e-08, + "danu": 6.92e-08, + "darkie": 6.92e-08, + "darksiders": 6.92e-08, + "dastyari": 6.92e-08, + "datejust": 6.92e-08, + "daymond": 6.92e-08, + "deadheads": 6.92e-08, + "deba": 6.92e-08, + "deblasio": 6.92e-08, + "delvin": 6.92e-08, + "demagogic": 6.92e-08, + "deme": 6.92e-08, + "demelza": 6.92e-08, + "demuth": 6.92e-08, + "deregistered": 6.92e-08, + "despres": 6.92e-08, + "destructs": 6.92e-08, + "detlef": 6.92e-08, + "devoto": 6.92e-08, + "dfds": 6.92e-08, + "dgr": 6.92e-08, + "dialogical": 6.92e-08, + "diapason": 6.92e-08, + "dibrugarh": 6.92e-08, + "dickeys": 6.92e-08, + "dilapidation": 6.92e-08, + "dillman": 6.92e-08, + "dimmock": 6.92e-08, + "discourtesy": 6.92e-08, + "disdainfully": 6.92e-08, + "disfavored": 6.92e-08, + "disher": 6.92e-08, + "disinclination": 6.92e-08, + "dissidia": 6.92e-08, + "distr": 6.92e-08, + "diversely": 6.92e-08, + "djoko": 6.92e-08, + "dollie": 6.92e-08, + "dollops": 6.92e-08, + "doneness": 6.92e-08, + "dones": 6.92e-08, + "dongles": 6.92e-08, + "doofenshmirtz": 6.92e-08, + "doubtfully": 6.92e-08, + "dowding": 6.92e-08, + "doxology": 6.92e-08, + "dpe": 6.92e-08, + "dpl": 6.92e-08, + "drd": 6.92e-08, + "driveclub": 6.92e-08, + "dumpers": 6.92e-08, + "dunnigan": 6.92e-08, + "dunvegan": 6.92e-08, + "durgapur": 6.92e-08, + "dustins": 6.92e-08, + "dyckman": 6.92e-08, + "dystopic": 6.92e-08, + "eade": 6.92e-08, + "ebersole": 6.92e-08, + "eccc": 6.92e-08, + "echt": 6.92e-08, + "edelson": 6.92e-08, + "edisto": 6.92e-08, + "eduction": 6.92e-08, + "eery": 6.92e-08, + "ekblad": 6.92e-08, + "eladio": 6.92e-08, + "elance": 6.92e-08, + "elfs": 6.31e-08, + "elza": 6.92e-08, + "embarass": 6.92e-08, + "embolic": 6.92e-08, + "embolus": 6.92e-08, + "emmi": 6.92e-08, + "ener": 6.92e-08, + "enterobacteriaceae": 6.92e-08, + "enz": 6.92e-08, + "epifanio": 6.92e-08, + "erebor": 6.92e-08, + "erman": 6.92e-08, + "erry": 6.92e-08, + "erythritol": 6.92e-08, + "esophagitis": 6.92e-08, + "esterhazy": 6.92e-08, + "etim": 6.92e-08, + "eurobasket": 6.92e-08, + "eurobonds": 6.92e-08, + "euroscepticism": 6.92e-08, + "eutaw": 6.92e-08, + "evd": 6.92e-08, + "excelsis": 6.92e-08, + "excising": 6.92e-08, + "exhibitionists": 6.92e-08, + "explicate": 6.92e-08, + "exportable": 6.92e-08, + "extremal": 6.92e-08, + "extricating": 6.92e-08, + "facemasks": 6.92e-08, + "faircloth": 6.92e-08, + "farish": 6.92e-08, + "farpoint": 6.92e-08, + "farriers": 6.92e-08, + "fasd": 6.92e-08, + "febreze": 6.92e-08, + "feedlots": 6.92e-08, + "felicitated": 6.92e-08, + "felina": 6.92e-08, + "fenians": 6.92e-08, + "fenlon": 6.92e-08, + "fetishized": 6.92e-08, + "feys": 6.92e-08, + "ffx": 6.92e-08, + "fgd": 6.92e-08, + "fibril": 6.92e-08, + "findin": 6.92e-08, + "finleys": 6.92e-08, + "finnis": 6.92e-08, + "fitzpatricks": 6.92e-08, + "fiumicino": 6.92e-08, + "flamingoes": 6.92e-08, + "fld": 6.92e-08, + "fleener": 6.92e-08, + "floorspace": 6.92e-08, + "flos": 5.5e-08, + "fluffer": 6.92e-08, + "fluoresce": 6.92e-08, + "fluorouracil": 6.92e-08, + "fluttery": 6.92e-08, + "fofana": 6.92e-08, + "fogh": 6.92e-08, + "foliate": 6.92e-08, + "forelimbs": 6.92e-08, + "foret": 6.92e-08, + "fortifies": 6.92e-08, + "fous": 6.92e-08, + "foxhound": 6.92e-08, + "fracked": 6.92e-08, + "fras": 6.92e-08, + "freakiest": 6.92e-08, + "frenulum": 6.92e-08, + "friede": 6.92e-08, + "frimpong": 6.92e-08, + "frt": 6.92e-08, + "ftn": 6.92e-08, + "fulvio": 6.92e-08, + "fusca": 6.92e-08, + "fyn": 6.92e-08, + "gaborik": 6.92e-08, + "gagliardi": 6.92e-08, + "gaias": 6.92e-08, + "galasso": 6.92e-08, + "gallican": 6.92e-08, + "galvani": 6.92e-08, + "gangbanger": 6.92e-08, + "gardenias": 6.92e-08, + "garmisch": 6.92e-08, + "garretson": 6.92e-08, + "gartners": 6.92e-08, + "garveys": 6.92e-08, + "gaudio": 6.92e-08, + "gazettes": 6.92e-08, + "geissler": 6.92e-08, + "geminis": 6.92e-08, + "genotypic": 6.92e-08, + "geonosis": 6.92e-08, + "gignac": 6.92e-08, + "gildersleeve": 6.92e-08, + "gile": 6.92e-08, + "gimbel": 6.92e-08, + "giolito": 6.92e-08, + "gira": 6.92e-08, + "girouds": 6.92e-08, + "girton": 6.92e-08, + "glamorized": 6.92e-08, + "glf": 6.92e-08, + "gloomily": 6.92e-08, + "godamn": 6.92e-08, + "goforth": 6.92e-08, + "goldens": 6.03e-08, + "gondolier": 6.92e-08, + "gonzalezs": 6.92e-08, + "goochland": 6.92e-08, + "goodlooking": 6.92e-08, + "gorkha": 6.92e-08, + "gouvernement": 6.92e-08, + "grangers": 6.92e-08, + "grantley": 6.92e-08, + "granulocyte": 6.92e-08, + "graziella": 6.92e-08, + "grifting": 6.92e-08, + "grignard": 6.92e-08, + "grimaud": 6.92e-08, + "grito": 6.92e-08, + "grob": 6.92e-08, + "gsoc": 6.92e-08, + "guion": 6.92e-08, + "gurnee": 6.92e-08, + "gynt": 6.92e-08, + "gyrate": 6.92e-08, + "haah": 6.92e-08, + "haat": 6.92e-08, + "hadst": 6.92e-08, + "hailstorms": 6.92e-08, + "halakhic": 6.92e-08, + "halevy": 6.92e-08, + "halina": 6.92e-08, + "hamman": 6.92e-08, + "handshaking": 6.92e-08, + "handymen": 6.92e-08, + "hansberry": 6.92e-08, + "haole": 6.92e-08, + "haply": 6.92e-08, + "hardon": 6.92e-08, + "harting": 6.92e-08, + "hasselbaink": 6.92e-08, + "hathi": 6.92e-08, + "hauliers": 6.92e-08, + "hayeks": 6.92e-08, + "hayess": 6.92e-08, + "hce": 6.92e-08, + "headpieces": 6.92e-08, + "heartbleed": 6.92e-08, + "heen": 6.92e-08, + "heinleins": 6.92e-08, + "heisei": 6.92e-08, + "heisenbergs": 6.92e-08, + "helminth": 6.92e-08, + "helsingborg": 6.92e-08, + "henwood": 6.92e-08, + "herbals": 6.92e-08, + "heroku": 6.92e-08, + "heslop": 6.92e-08, + "hesperus": 6.92e-08, + "heyo": 6.92e-08, + "hickeys": 6.92e-08, + "hirschman": 6.92e-08, + "hitori": 6.92e-08, + "hobarts": 6.92e-08, + "hobnobbing": 6.92e-08, + "hogar": 6.92e-08, + "hogtied": 6.92e-08, + "hohmann": 6.92e-08, + "homeport": 6.92e-08, + "homogeneously": 6.92e-08, + "homologation": 6.92e-08, + "hony": 6.92e-08, + "horder": 6.92e-08, + "horniest": 6.92e-08, + "hotchner": 6.92e-08, + "hotheads": 6.92e-08, + "hotrod": 6.92e-08, + "hovels": 6.92e-08, + "huachuca": 6.92e-08, + "hubbert": 6.92e-08, + "hulett": 6.92e-08, + "humanlike": 6.92e-08, + "humbuckers": 6.92e-08, + "hunsaker": 6.92e-08, + "hustons": 6.92e-08, + "hyacinthe": 6.92e-08, + "iccpr": 6.92e-08, + "icterus": 6.92e-08, + "icus": 6.92e-08, + "ided": 6.92e-08, + "ifad": 6.92e-08, + "ifla": 6.92e-08, + "ignatz": 6.92e-08, + "ihh": 6.92e-08, + "imagers": 6.92e-08, + "imagin": 6.92e-08, + "imatinib": 6.92e-08, + "imbecilic": 6.92e-08, + "immigrations": 6.92e-08, + "immunosorbent": 6.92e-08, + "imodium": 6.92e-08, + "impasto": 6.92e-08, + "imperforate": 6.92e-08, + "inclu": 6.92e-08, + "indios": 6.92e-08, + "infiltrations": 6.92e-08, + "inkatha": 6.92e-08, + "insurrectionary": 6.92e-08, + "interdental": 6.92e-08, + "interlagos": 6.92e-08, + "interments": 6.92e-08, + "interminably": 6.92e-08, + "intertextuality": 6.92e-08, + "ioane": 6.92e-08, + "ioffe": 6.92e-08, + "iroha": 6.92e-08, + "ironbridge": 6.92e-08, + "isaiahs": 6.92e-08, + "iselle": 6.92e-08, + "isidor": 6.92e-08, + "izakaya": 6.92e-08, + "jabra": 6.92e-08, + "jackdaws": 6.92e-08, + "jamshed": 6.92e-08, + "jayco": 6.92e-08, + "jebediah": 6.92e-08, + "jik": 6.92e-08, + "jiujitsu": 6.92e-08, + "jmt": 6.92e-08, + "joely": 6.92e-08, + "johannis": 6.92e-08, + "jointer": 6.92e-08, + "jornal": 6.92e-08, + "judice": 6.92e-08, + "jue": 6.92e-08, + "juelz": 6.92e-08, + "kaew": 6.92e-08, + "kakkar": 6.92e-08, + "kalash": 6.92e-08, + "karu": 6.92e-08, + "kashif": 6.92e-08, + "kassie": 6.92e-08, + "kathleens": 6.92e-08, + "kauffmann": 6.92e-08, + "kbit": 6.92e-08, + "kelechi": 6.92e-08, + "kenpo": 6.92e-08, + "kensal": 6.92e-08, + "kerf": 6.92e-08, + "keynesians": 6.92e-08, + "keyshawn": 6.92e-08, + "khabar": 6.92e-08, + "khadijah": 6.92e-08, + "khayelitsha": 6.92e-08, + "khoi": 6.92e-08, + "kiawah": 6.92e-08, + "kibby": 6.92e-08, + "kiedis": 6.92e-08, + "kilsyth": 6.92e-08, + "kimye": 6.92e-08, + "kincheloe": 6.92e-08, + "kindy": 6.92e-08, + "kinh": 6.92e-08, + "kion": 6.92e-08, + "kitna": 6.92e-08, + "kleptomaniac": 6.92e-08, + "kobalt": 6.92e-08, + "kobayashis": 6.92e-08, + "kodai": 6.92e-08, + "kohaku": 6.92e-08, + "kohan": 6.92e-08, + "kolin": 6.92e-08, + "konigsberg": 6.92e-08, + "konno": 6.92e-08, + "korte": 6.92e-08, + "kosova": 6.92e-08, + "kosuke": 6.92e-08, + "kpm": 6.92e-08, + "kritik": 6.92e-08, + "kroon": 6.92e-08, + "kubla": 6.92e-08, + "kumail": 6.92e-08, + "kunene": 6.92e-08, + "kunze": 6.92e-08, + "kup": 6.92e-08, + "kuyper": 6.92e-08, + "kwacha": 6.92e-08, + "lacerda": 6.92e-08, + "lacus": 6.92e-08, + "lafave": 6.92e-08, + "landons": 6.92e-08, + "lardy": 6.92e-08, + "laron": 6.92e-08, + "latchkey": 6.92e-08, + "lateline": 6.92e-08, + "lathers": 6.92e-08, + "laugharne": 6.92e-08, + "laureus": 6.92e-08, + "lavaca": 6.92e-08, + "lavie": 6.92e-08, + "lawa": 6.92e-08, + "lawrenson": 6.92e-08, + "ldv": 6.92e-08, + "leapfrogged": 6.92e-08, + "ledford": 6.92e-08, + "leipsic": 6.92e-08, + "lemuria": 6.92e-08, + "leukemias": 6.92e-08, + "leupold": 6.92e-08, + "lieth": 6.92e-08, + "lij": 6.92e-08, + "lillee": 6.92e-08, + "linemates": 6.92e-08, + "lingonberry": 6.92e-08, + "lipari": 6.92e-08, + "litanies": 6.92e-08, + "litchi": 6.92e-08, + "littman": 6.92e-08, + "liveried": 6.92e-08, + "llanberis": 6.92e-08, + "lle": 6.92e-08, + "lmb": 6.92e-08, + "lnk": 6.92e-08, + "lobdell": 6.92e-08, + "locka": 6.92e-08, + "lockets": 6.92e-08, + "lodhi": 6.92e-08, + "logia": 6.92e-08, + "loosey": 6.92e-08, + "lorene": 6.92e-08, + "louisbourg": 6.92e-08, + "louvered": 6.92e-08, + "lova": 6.92e-08, + "loveseat": 6.92e-08, + "lsg": 6.92e-08, + "luas": 6.92e-08, + "lubeck": 6.92e-08, + "luhan": 6.92e-08, + "lukacs": 6.92e-08, + "lumpen": 6.92e-08, + "lums": 6.92e-08, + "lunchables": 6.92e-08, + "lunden": 6.92e-08, + "lwt": 6.92e-08, + "lymphadenopathy": 6.92e-08, + "lysate": 6.92e-08, + "lyttleton": 6.92e-08, + "mabus": 6.92e-08, + "macalister": 6.92e-08, + "macronutrient": 6.92e-08, + "madson": 6.92e-08, + "magia": 6.92e-08, + "magny": 6.92e-08, + "mahadevan": 6.92e-08, + "mahaffey": 6.92e-08, + "mahlon": 6.92e-08, + "maika": 6.92e-08, + "maisons": 6.92e-08, + "majima": 6.92e-08, + "majo": 6.92e-08, + "majordomo": 6.92e-08, + "maku": 6.92e-08, + "malai": 6.92e-08, + "maluma": 6.92e-08, + "manayunk": 6.92e-08, + "mandolins": 6.92e-08, + "maneater": 6.92e-08, + "mangosteen": 6.92e-08, + "manolis": 6.92e-08, + "mansard": 6.92e-08, + "mapquest": 6.92e-08, + "marica": 6.92e-08, + "marjan": 6.92e-08, + "markieff": 6.92e-08, + "marmon": 6.92e-08, + "marris": 6.92e-08, + "marsa": 6.92e-08, + "martie": 6.92e-08, + "marzia": 6.92e-08, + "mashonaland": 6.92e-08, + "maspero": 6.92e-08, + "massad": 6.92e-08, + "masterbating": 6.92e-08, + "matriarchs": 6.92e-08, + "matsuura": 6.92e-08, + "mattels": 6.92e-08, + "maximin": 6.92e-08, + "mazurka": 6.92e-08, + "mcchicken": 6.92e-08, + "mccullen": 6.92e-08, + "mcfee": 6.92e-08, + "mcgonigle": 6.92e-08, + "mcgreevy": 6.92e-08, + "mclaughlins": 6.92e-08, + "mcmc": 6.92e-08, + "mcps": 6.92e-08, + "mcvicar": 6.92e-08, + "medstar": 6.92e-08, + "megalomaniacal": 6.92e-08, + "melford": 6.92e-08, + "menasha": 6.92e-08, + "mercurius": 6.92e-08, + "merrit": 6.92e-08, + "meshach": 6.92e-08, + "metatarsals": 6.92e-08, + "methylprednisolone": 6.92e-08, + "metoprolol": 6.92e-08, + "metroidvania": 6.92e-08, + "microfossils": 6.92e-08, + "microwavable": 6.92e-08, + "midafternoon": 6.92e-08, + "militarize": 6.92e-08, + "minch": 6.92e-08, + "miniaturist": 6.92e-08, + "mitigations": 6.92e-08, + "mitnick": 6.92e-08, + "mixcloud": 6.92e-08, + "moissanite": 6.92e-08, + "moldovans": 6.92e-08, + "monopolise": 6.92e-08, + "morano": 6.92e-08, + "morar": 6.92e-08, + "mordo": 6.92e-08, + "morven": 6.92e-08, + "moseby": 6.92e-08, + "mosin": 6.92e-08, + "mothball": 6.92e-08, + "motorhomes": 6.92e-08, + "moun": 6.92e-08, + "mras": 6.92e-08, + "mte": 6.92e-08, + "muddies": 6.92e-08, + "mulched": 6.92e-08, + "mullions": 6.92e-08, + "mulu": 6.92e-08, + "munnar": 6.92e-08, + "munt": 6.92e-08, + "murtala": 6.92e-08, + "musher": 6.92e-08, + "musicological": 6.92e-08, + "muv": 6.92e-08, + "mwm": 6.92e-08, + "myatt": 6.92e-08, + "myelitis": 6.92e-08, + "naal": 6.92e-08, + "nado": 6.92e-08, + "nafld": 6.92e-08, + "najma": 6.92e-08, + "nakia": 6.92e-08, + "namaz": 6.92e-08, + "nanded": 6.92e-08, + "nanostructure": 6.92e-08, + "nasturtium": 6.92e-08, + "nathanial": 6.92e-08, + "natto": 6.92e-08, + "naturists": 6.92e-08, + "naut": 6.92e-08, + "navistar": 6.92e-08, + "navona": 6.92e-08, + "nbk": 6.92e-08, + "ndas": 6.92e-08, + "neagh": 6.92e-08, + "neame": 6.92e-08, + "neonatology": 6.92e-08, + "nereus": 6.92e-08, + "nergal": 6.92e-08, + "newarks": 6.92e-08, + "newmar": 6.92e-08, + "nft": 6.92e-08, + "ngi": 6.92e-08, + "nhanes": 6.92e-08, + "niazi": 6.92e-08, + "nieminen": 6.92e-08, + "ningen": 6.92e-08, + "nobuko": 6.92e-08, + "noman": 6.92e-08, + "nonentity": 6.92e-08, + "nonmetallic": 6.92e-08, + "nonpoint": 6.92e-08, + "nonthreatening": 6.92e-08, + "norodom": 6.92e-08, + "northallerton": 6.92e-08, + "northway": 6.92e-08, + "nowy": 6.92e-08, + "ntia": 6.92e-08, + "nucleosome": 6.92e-08, + "nuland": 6.92e-08, + "nunnally": 6.92e-08, + "nusantara": 6.92e-08, + "nvq": 6.92e-08, + "oah": 6.92e-08, + "oakleys": 6.17e-08, + "obligor": 6.92e-08, + "obliviousness": 6.92e-08, + "obummer": 6.92e-08, + "ocb": 6.92e-08, + "oculomotor": 6.92e-08, + "oddworld": 6.92e-08, + "odt": 6.92e-08, + "officiates": 6.92e-08, + "oggi": 6.92e-08, + "olx": 6.92e-08, + "omf": 6.92e-08, + "oost": 6.92e-08, + "ordine": 6.92e-08, + "organophosphates": 6.92e-08, + "orgiastic": 6.92e-08, + "orris": 6.92e-08, + "orsino": 6.92e-08, + "orthogonality": 6.92e-08, + "oshi": 6.92e-08, + "ottaway": 6.92e-08, + "outdoes": 6.92e-08, + "outen": 6.92e-08, + "outie": 6.92e-08, + "overdubs": 6.92e-08, + "overemphasis": 6.92e-08, + "overemphasized": 6.92e-08, + "overfilled": 6.92e-08, + "overstimulated": 6.92e-08, + "overvaluation": 6.92e-08, + "paddleboard": 6.92e-08, + "palle": 6.92e-08, + "panas": 6.92e-08, + "panga": 6.92e-08, + "pangborn": 6.92e-08, + "panhandlers": 6.92e-08, + "pantheistic": 6.92e-08, + "pantsuits": 6.92e-08, + "parceled": 6.92e-08, + "pardy": 6.92e-08, + "parian": 6.92e-08, + "parries": 6.92e-08, + "parterre": 6.92e-08, + "parx": 6.92e-08, + "pathet": 6.92e-08, + "payees": 6.92e-08, + "peduncles": 6.92e-08, + "penelopes": 6.92e-08, + "penniman": 6.92e-08, + "perin": 6.92e-08, + "peristaltic": 6.92e-08, + "periyar": 6.92e-08, + "petersburgs": 6.92e-08, + "pett": 6.92e-08, + "pfizers": 6.92e-08, + "phoenixville": 6.92e-08, + "phonecalls": 6.92e-08, + "photocopiers": 6.92e-08, + "photomultiplier": 6.92e-08, + "photoperiod": 6.92e-08, + "photosystem": 6.92e-08, + "phuc": 6.92e-08, + "pichon": 6.92e-08, + "pikey": 6.92e-08, + "pingree": 6.92e-08, + "pitas": 6.92e-08, + "pkm": 6.92e-08, + "plantin": 6.92e-08, + "plast": 6.92e-08, + "pleven": 6.92e-08, + "ploughman": 6.92e-08, + "pointwise": 6.92e-08, + "poirots": 6.92e-08, + "pongal": 6.92e-08, + "ponomarev": 6.92e-08, + "pooles": 6.92e-08, + "popplewell": 6.92e-08, + "porthmadog": 6.92e-08, + "potvin": 6.92e-08, + "pourri": 6.92e-08, + "prabhupada": 6.92e-08, + "prats": 6.92e-08, + "prattville": 6.92e-08, + "prised": 6.92e-08, + "probl": 6.92e-08, + "proficiently": 6.92e-08, + "prompto": 6.92e-08, + "protools": 6.92e-08, + "protuberances": 6.92e-08, + "psw": 6.92e-08, + "pterygoid": 6.92e-08, + "puccinia": 6.92e-08, + "pummelled": 6.92e-08, + "punkin": 6.92e-08, + "pythagoreans": 6.92e-08, + "qaboos": 6.92e-08, + "qari": 6.92e-08, + "qtc": 6.92e-08, + "quadriplegia": 6.92e-08, + "quarterbacking": 6.92e-08, + "queene": 6.92e-08, + "quentins": 6.92e-08, + "quillen": 6.92e-08, + "raceme": 6.92e-08, + "rachman": 6.92e-08, + "racialism": 6.92e-08, + "rady": 6.92e-08, + "rahimi": 6.92e-08, + "raimund": 6.92e-08, + "rajai": 6.92e-08, + "raka": 6.92e-08, + "rambam": 6.92e-08, + "ramirezs": 6.92e-08, + "rampur": 6.92e-08, + "randleman": 6.92e-08, + "raptured": 6.92e-08, + "rashtrapati": 6.92e-08, + "rationalizes": 6.92e-08, + "razzmatazz": 6.92e-08, + "rebuy": 6.92e-08, + "recd": 6.92e-08, + "recalculating": 6.92e-08, + "recapped": 6.92e-08, + "recaro": 6.92e-08, + "recidivist": 6.92e-08, + "reclassifying": 6.92e-08, + "reconnoitre": 6.92e-08, + "rededicated": 6.92e-08, + "rehiring": 6.92e-08, + "reichel": 6.92e-08, + "reidel": 6.92e-08, + "reinfection": 6.92e-08, + "reinhardts": 6.92e-08, + "remediated": 6.92e-08, + "remorselessly": 6.92e-08, + "rendu": 6.92e-08, + "repaving": 6.92e-08, + "reproductively": 6.92e-08, + "responsability": 6.92e-08, + "retreading": 6.92e-08, + "rgm": 6.92e-08, + "rheinland": 6.92e-08, + "rightnow": 6.92e-08, + "rii": 6.92e-08, + "rishon": 6.92e-08, + "rivett": 6.92e-08, + "rizzle": 6.92e-08, + "rockman": 6.92e-08, + "roiled": 6.92e-08, + "rokeby": 6.92e-08, + "roomates": 6.92e-08, + "rosarito": 6.92e-08, + "rotarian": 6.92e-08, + "rothe": 6.92e-08, + "roughneck": 6.92e-08, + "roundtree": 6.92e-08, + "rowboats": 6.92e-08, + "ruses": 6.92e-08, + "rusticated": 6.92e-08, + "rutan": 6.92e-08, + "ryuichi": 6.92e-08, + "safin": 6.92e-08, + "sagen": 6.92e-08, + "sagi": 6.92e-08, + "saintsbury": 6.92e-08, + "sakaguchi": 6.92e-08, + "saleen": 6.92e-08, + "sampath": 6.92e-08, + "samper": 6.92e-08, + "samplings": 6.92e-08, + "samsun": 6.92e-08, + "sandel": 6.92e-08, + "sankar": 6.92e-08, + "santacruz": 6.92e-08, + "santon": 6.92e-08, + "sarkis": 6.92e-08, + "sarpanch": 6.92e-08, + "sateen": 6.92e-08, + "satiny": 6.92e-08, + "sauder": 6.92e-08, + "sayeeda": 6.92e-08, + "scatterbrained": 6.92e-08, + "scholastics": 6.92e-08, + "schreier": 6.92e-08, + "sclater": 6.92e-08, + "scrounged": 6.92e-08, + "sdt": 6.92e-08, + "secc": 6.92e-08, + "secretariats": 6.92e-08, + "seeya": 6.92e-08, + "selkie": 6.92e-08, + "sembilan": 6.92e-08, + "septuagenarian": 6.92e-08, + "sergiy": 6.92e-08, + "servite": 6.92e-08, + "shaban": 1.82e-08, + "shanta": 6.92e-08, + "shantung": 6.92e-08, + "sharda": 6.92e-08, + "sharrock": 6.92e-08, + "shelford": 6.92e-08, + "shellshock": 6.92e-08, + "shenfield": 6.92e-08, + "shida": 6.92e-08, + "shity": 6.92e-08, + "shivaratri": 6.92e-08, + "shivraj": 6.92e-08, + "shootdown": 6.92e-08, + "shoppes": 6.92e-08, + "shoshanna": 6.92e-08, + "shostakovichs": 6.92e-08, + "shotting": 6.92e-08, + "shotts": 6.92e-08, + "showreel": 6.92e-08, + "siao": 6.92e-08, + "sicilies": 6.92e-08, + "signori": 6.92e-08, + "sih": 6.92e-08, + "silat": 6.92e-08, + "siltstones": 6.92e-08, + "simkins": 6.92e-08, + "simul": 6.92e-08, + "sinkers": 6.92e-08, + "sinkings": 6.92e-08, + "skarsgard": 6.92e-08, + "skewness": 6.92e-08, + "skiles": 6.92e-08, + "skinks": 6.92e-08, + "skowhegan": 6.92e-08, + "skua": 6.92e-08, + "sloanes": 6.92e-08, + "smbc": 6.92e-08, + "smocks": 6.92e-08, + "snit": 6.92e-08, + "snoopers": 6.92e-08, + "sodhi": 6.92e-08, + "soha": 6.92e-08, + "soman": 6.92e-08, + "somatostatin": 6.92e-08, + "sonnenschein": 6.92e-08, + "soothingly": 6.92e-08, + "soyou": 6.92e-08, + "spad": 6.92e-08, + "spang": 6.92e-08, + "sparser": 6.92e-08, + "speediest": 6.92e-08, + "spel": 6.92e-08, + "sphincters": 6.92e-08, + "spicers": 6.92e-08, + "spicules": 6.92e-08, + "spinny": 6.92e-08, + "spirt": 6.92e-08, + "spookiest": 6.92e-08, + "sprecher": 6.92e-08, + "squirrelly": 6.92e-08, + "sspx": 6.92e-08, + "stampedes": 6.92e-08, + "starlink": 6.92e-08, + "stassen": 6.92e-08, + "stateful": 6.92e-08, + "stee": 6.92e-08, + "stemi": 6.92e-08, + "stila": 6.92e-08, + "stockard": 6.92e-08, + "stoplights": 6.92e-08, + "straightway": 6.92e-08, + "strats": 6.92e-08, + "stringency": 6.92e-08, + "stromatolites": 6.92e-08, + "strumpet": 6.92e-08, + "sturbridge": 6.92e-08, + "stye": 6.92e-08, + "suas": 6.92e-08, + "subba": 6.92e-08, + "subscripts": 6.92e-08, + "subtidal": 6.92e-08, + "subtlest": 6.92e-08, + "sudeten": 6.92e-08, + "sufferance": 6.92e-08, + "sugarless": 6.92e-08, + "sukkah": 6.92e-08, + "sunanda": 6.92e-08, + "sundberg": 6.92e-08, + "suppressants": 6.92e-08, + "svitolina": 6.92e-08, + "swallower": 6.92e-08, + "swatched": 6.92e-08, + "swd": 6.92e-08, + "swivelling": 6.92e-08, + "sycophancy": 6.92e-08, + "symbolical": 6.92e-08, + "synchronizer": 6.92e-08, + "synology": 6.92e-08, + "syntagma": 6.92e-08, + "tpol": 6.92e-08, + "taggers": 6.92e-08, + "taronga": 6.92e-08, + "taurasi": 6.92e-08, + "tauros": 6.92e-08, + "tavener": 6.92e-08, + "taxiways": 6.92e-08, + "taymor": 6.92e-08, + "tck": 6.92e-08, + "tectonically": 6.92e-08, + "telemark": 6.92e-08, + "teleprinter": 6.92e-08, + "tempranillo": 6.92e-08, + "tenshi": 6.92e-08, + "teoria": 6.92e-08, + "terminological": 6.92e-08, + "ternate": 6.92e-08, + "themyscira": 6.92e-08, + "theophylline": 6.92e-08, + "therebetween": 6.92e-08, + "thickes": 6.92e-08, + "thirtysomething": 6.92e-08, + "thoughtlessness": 6.92e-08, + "thous": 6.92e-08, + "thugger": 6.92e-08, + "thum": 6.92e-08, + "tich": 6.92e-08, + "tickell": 6.92e-08, + "timekeepers": 6.92e-08, + "timp": 6.92e-08, + "titrate": 6.92e-08, + "titrated": 6.92e-08, + "tittie": 6.92e-08, + "tje": 6.92e-08, + "tlo": 6.92e-08, + "tlt": 6.92e-08, + "toffler": 6.92e-08, + "togas": 6.92e-08, + "toileting": 6.92e-08, + "tomek": 6.92e-08, + "tonton": 6.92e-08, + "toolchain": 6.92e-08, + "topsfield": 6.92e-08, + "toti": 6.92e-08, + "touchid": 6.92e-08, + "transcendentalist": 6.92e-08, + "transuranic": 6.92e-08, + "trebizond": 6.92e-08, + "trendline": 6.92e-08, + "tressel": 6.92e-08, + "trimet": 6.92e-08, + "trinians": 6.92e-08, + "trivializes": 6.92e-08, + "trps": 6.92e-08, + "trunnion": 6.92e-08, + "tubas": 6.92e-08, + "tucumcari": 6.92e-08, + "tullamore": 6.92e-08, + "turkle": 6.92e-08, + "tuscon": 6.92e-08, + "tvi": 6.92e-08, + "twinges": 6.92e-08, + "uee": 6.92e-08, + "ugarit": 6.92e-08, + "uhn": 6.92e-08, + "ulti": 6.92e-08, + "umf": 6.92e-08, + "unban": 6.92e-08, + "unda": 6.92e-08, + "undimmed": 6.92e-08, + "unhealthily": 6.92e-08, + "unicefs": 6.92e-08, + "unimagined": 6.92e-08, + "unionised": 6.92e-08, + "unlikeliest": 6.92e-08, + "unproduced": 6.92e-08, + "unquantifiable": 6.92e-08, + "unsupportable": 6.92e-08, + "untrimmed": 6.92e-08, + "upsala": 6.92e-08, + "urbanist": 6.92e-08, + "urgings": 6.92e-08, + "usmanov": 6.92e-08, + "uwb": 6.92e-08, + "uwf": 6.92e-08, + "vae": 6.92e-08, + "valeo": 6.92e-08, + "valkyria": 6.92e-08, + "vall": 6.92e-08, + "vampy": 6.92e-08, + "varejao": 6.92e-08, + "vasconcellos": 6.92e-08, + "vcm": 6.92e-08, + "veeam": 6.92e-08, + "vei": 6.92e-08, + "vidin": 6.92e-08, + "vinegars": 6.92e-08, + "vinz": 6.92e-08, + "vist": 6.92e-08, + "vith": 6.92e-08, + "vivace": 6.92e-08, + "voda": 6.92e-08, + "vodou": 6.92e-08, + "voicings": 6.92e-08, + "volare": 6.92e-08, + "volks": 6.92e-08, + "voracek": 6.92e-08, + "vose": 6.92e-08, + "vsco": 6.92e-08, + "wagenen": 6.92e-08, + "wairarapa": 6.92e-08, + "wakka": 6.92e-08, + "waldegrave": 6.92e-08, + "walkinshaw": 6.92e-08, + "wallowed": 6.92e-08, + "wampanoag": 6.92e-08, + "wanked": 6.92e-08, + "warband": 6.92e-08, + "wassail": 6.92e-08, + "wayfair": 6.92e-08, + "wayfinding": 6.92e-08, + "waynesburg": 6.92e-08, + "wedd": 6.92e-08, + "weddin": 6.92e-08, + "wednesbury": 6.92e-08, + "weeaboo": 6.92e-08, + "wende": 6.92e-08, + "weyburn": 6.92e-08, + "wheeldon": 6.92e-08, + "whisperings": 6.92e-08, + "whitsundays": 6.92e-08, + "wilcoxon": 6.92e-08, + "wileys": 6.92e-08, + "willimantic": 6.92e-08, + "wimmera": 6.92e-08, + "winched": 6.92e-08, + "winkelmann": 6.92e-08, + "winkleman": 6.92e-08, + "winterfest": 6.92e-08, + "wite": 6.92e-08, + "withnail": 6.92e-08, + "witmer": 6.92e-08, + "wittingly": 6.92e-08, + "wojtek": 6.92e-08, + "wolffe": 6.92e-08, + "wondrously": 6.92e-08, + "woodhall": 6.92e-08, + "woodworks": 6.92e-08, + "wsr": 6.92e-08, + "wurttemberg": 6.92e-08, + "wyle": 6.92e-08, + "xbla": 6.92e-08, + "xterra": 6.92e-08, + "yata": 6.92e-08, + "yato": 6.92e-08, + "yean": 6.92e-08, + "yelchin": 6.92e-08, + "yeng": 6.92e-08, + "ypc": 6.92e-08, + "yvr": 6.92e-08, + "zamindar": 6.92e-08, + "zelle": 6.92e-08, + "zerubbabel": 6.92e-08, + "zingy": 6.92e-08, + "ziyi": 6.92e-08, + "zyrtec": 6.92e-08, + "aaliyahs": 6.76e-08, + "aargh": 6.76e-08, + "abagnale": 6.76e-08, + "abdominals": 6.76e-08, + "abir": 6.76e-08, + "abour": 6.76e-08, + "abramovic": 6.76e-08, + "abuelita": 6.76e-08, + "acadiana": 6.76e-08, + "acce": 6.76e-08, + "accouterments": 6.76e-08, + "acheive": 6.76e-08, + "acinetobacter": 6.76e-08, + "acquitting": 6.76e-08, + "acromegaly": 6.76e-08, + "acsi": 6.76e-08, + "acuminata": 6.76e-08, + "adelbert": 6.76e-08, + "adewale": 6.76e-08, + "adhikari": 6.76e-08, + "adityanath": 6.76e-08, + "adom": 6.76e-08, + "adon": 6.76e-08, + "adoree": 6.76e-08, + "advisedly": 6.76e-08, + "afterthoughts": 6.76e-08, + "agos": 6.76e-08, + "agulhas": 6.76e-08, + "aidy": 6.76e-08, + "alani": 6.76e-08, + "albacete": 6.76e-08, + "alemany": 6.76e-08, + "alexandrite": 6.76e-08, + "allora": 6.76e-08, + "alouette": 6.76e-08, + "amalek": 6.76e-08, + "amazin": 6.76e-08, + "amite": 6.76e-08, + "anastacia": 6.76e-08, + "anb": 6.76e-08, + "androscoggin": 6.76e-08, + "angerer": 6.76e-08, + "angustifolia": 6.76e-08, + "anonyme": 6.76e-08, + "antakya": 6.76e-08, + "antartica": 6.76e-08, + "aphra": 6.76e-08, + "apices": 6.76e-08, + "appia": 6.76e-08, + "appts": 6.76e-08, + "arafats": 6.76e-08, + "aragonese": 6.76e-08, + "archos": 6.76e-08, + "arey": 6.76e-08, + "arianespace": 6.76e-08, + "arijit": 6.76e-08, + "armer": 6.76e-08, + "arshavin": 6.76e-08, + "artillerymen": 6.76e-08, + "ashita": 6.76e-08, + "aslong": 6.76e-08, + "asy": 6.76e-08, + "atac": 6.76e-08, + "atala": 6.76e-08, + "aubreys": 6.76e-08, + "auriol": 6.76e-08, + "autarky": 6.76e-08, + "autodidact": 6.76e-08, + "avez": 6.76e-08, + "avocet": 6.76e-08, + "avy": 6.76e-08, + "aysha": 6.76e-08, + "baalbek": 6.76e-08, + "babysits": 6.76e-08, + "backpedal": 6.76e-08, + "baggett": 6.76e-08, + "bahram": 6.76e-08, + "baine": 6.76e-08, + "baize": 6.76e-08, + "bakufu": 6.76e-08, + "balaton": 6.76e-08, + "balian": 6.76e-08, + "balik": 6.76e-08, + "bamburgh": 6.76e-08, + "barbizon": 6.76e-08, + "barkat": 6.76e-08, + "baronies": 6.76e-08, + "bascombe": 6.76e-08, + "baserunners": 6.76e-08, + "bastet": 6.76e-08, + "baya": 6.76e-08, + "bayerische": 6.76e-08, + "beales": 5.75e-08, + "beason": 6.76e-08, + "beaudoin": 6.76e-08, + "beauly": 6.76e-08, + "beauts": 6.76e-08, + "becquerel": 6.76e-08, + "begetting": 6.76e-08, + "belabor": 6.76e-08, + "bellefontaine": 6.76e-08, + "bembridge": 6.76e-08, + "bentleigh": 6.76e-08, + "beppo": 6.76e-08, + "bestowal": 6.76e-08, + "bevans": 6.76e-08, + "bevo": 6.76e-08, + "bhasin": 6.76e-08, + "bhava": 6.76e-08, + "bildung": 6.76e-08, + "bipin": 6.76e-08, + "biwa": 6.76e-08, + "blakeman": 6.76e-08, + "blancmange": 6.76e-08, + "blay": 6.76e-08, + "bleasdale": 6.76e-08, + "blease": 6.76e-08, + "bloglovin": 6.76e-08, + "bluesfest": 6.76e-08, + "bnha": 6.76e-08, + "bobbled": 6.76e-08, + "boerne": 6.76e-08, + "boite": 6.76e-08, + "bojo": 6.76e-08, + "bonde": 6.76e-08, + "bonking": 6.76e-08, + "boothbay": 6.76e-08, + "bootstrapped": 6.76e-08, + "bordo": 6.76e-08, + "bourses": 6.76e-08, + "bourton": 6.76e-08, + "bovril": 6.76e-08, + "boychuk": 6.76e-08, + "bract": 6.76e-08, + "brandishes": 6.76e-08, + "bredesen": 6.76e-08, + "breit": 6.76e-08, + "brewton": 6.76e-08, + "brn": 6.76e-08, + "brocklehurst": 6.76e-08, + "brodrick": 6.76e-08, + "bronchoscopy": 6.76e-08, + "brundtland": 6.76e-08, + "buckys": 6.76e-08, + "buggs": 6.76e-08, + "buju": 6.76e-08, + "buku": 6.76e-08, + "bulba": 6.76e-08, + "bullshitted": 6.76e-08, + "buonarroti": 6.76e-08, + "bup": 6.76e-08, + "busia": 6.76e-08, + "bustled": 6.76e-08, + "bva": 6.76e-08, + "bvr": 6.76e-08, + "cabramatta": 6.76e-08, + "cadwell": 6.76e-08, + "caines": 5.62e-08, + "caity": 6.76e-08, + "calcasieu": 6.76e-08, + "callis": 6.76e-08, + "calpurnia": 6.76e-08, + "cambs": 6.76e-08, + "camelbak": 6.76e-08, + "camilles": 6.76e-08, + "canarsie": 6.76e-08, + "canasta": 6.76e-08, + "cannington": 6.76e-08, + "cantabria": 6.76e-08, + "carbides": 6.76e-08, + "cardinale": 6.76e-08, + "carlyles": 6.76e-08, + "carnap": 6.76e-08, + "carnet": 6.76e-08, + "carnies": 6.76e-08, + "carolin": 6.76e-08, + "carsen": 6.76e-08, + "carthusian": 6.76e-08, + "casements": 6.76e-08, + "casualness": 6.76e-08, + "catalytically": 6.76e-08, + "catia": 6.76e-08, + "cavallari": 6.76e-08, + "ccleaner": 6.76e-08, + "cecilias": 6.76e-08, + "celexa": 6.76e-08, + "cerca": 6.76e-08, + "ceren": 6.76e-08, + "chafes": 6.76e-08, + "chaffin": 6.76e-08, + "chaffinch": 6.76e-08, + "chainlink": 6.76e-08, + "chalcolithic": 6.76e-08, + "chane": 6.76e-08, + "chanyeol": 6.76e-08, + "charas": 2.09e-08, + "charla": 6.76e-08, + "charle": 6.76e-08, + "chaud": 6.76e-08, + "cheshunt": 6.76e-08, + "chio": 6.76e-08, + "chiton": 6.76e-08, + "chomps": 6.76e-08, + "chortled": 6.76e-08, + "chosing": 6.76e-08, + "christoffer": 6.76e-08, + "churchwarden": 6.76e-08, + "churchwardens": 6.76e-08, + "ciano": 6.76e-08, + "cipd": 6.76e-08, + "claris": 6.76e-08, + "clathrin": 6.76e-08, + "clep": 6.76e-08, + "climatically": 6.76e-08, + "clothespin": 6.76e-08, + "clunes": 6.76e-08, + "cnb": 6.76e-08, + "cogburn": 6.76e-08, + "cohoes": 6.76e-08, + "cokie": 6.76e-08, + "colbeck": 6.76e-08, + "colchis": 6.76e-08, + "coldhearted": 6.76e-08, + "coleg": 6.76e-08, + "colliders": 6.76e-08, + "colorants": 6.76e-08, + "comelec": 6.76e-08, + "commissaire": 6.76e-08, + "completo": 6.76e-08, + "compositionally": 6.76e-08, + "conciliator": 6.76e-08, + "congeal": 6.76e-08, + "connived": 6.76e-08, + "consistence": 6.76e-08, + "consummating": 6.76e-08, + "controll": 6.76e-08, + "copyists": 6.76e-08, + "coquille": 6.76e-08, + "corcovado": 6.76e-08, + "corms": 6.76e-08, + "corneum": 6.76e-08, + "corrina": 6.76e-08, + "corsicans": 6.76e-08, + "cosmopolitans": 6.76e-08, + "coso": 6.76e-08, + "coulis": 6.76e-08, + "cowabunga": 6.76e-08, + "cowart": 6.76e-08, + "cowpens": 6.76e-08, + "craftily": 6.76e-08, + "craggs": 6.76e-08, + "craigieburn": 6.76e-08, + "crape": 6.76e-08, + "crilly": 6.76e-08, + "crispian": 6.76e-08, + "croghan": 6.76e-08, + "cronan": 6.76e-08, + "croucher": 6.76e-08, + "crowfoot": 6.76e-08, + "crozet": 6.76e-08, + "crucibles": 6.76e-08, + "cruellest": 6.76e-08, + "cruzeiro": 6.76e-08, + "cryonics": 6.76e-08, + "csic": 6.76e-08, + "culm": 6.76e-08, + "curtails": 6.76e-08, + "custodianship": 6.76e-08, + "cymbalta": 6.76e-08, + "daar": 6.76e-08, + "dahlen": 6.76e-08, + "datetime": 6.76e-08, + "daystar": 6.76e-08, + "dcps": 6.76e-08, + "ddm": 6.76e-08, + "deacetylase": 6.76e-08, + "deansgate": 6.76e-08, + "debarred": 6.76e-08, + "deebo": 6.76e-08, + "deindustrialization": 6.76e-08, + "delacour": 6.76e-08, + "delauro": 6.76e-08, + "delfina": 6.76e-08, + "deliveroo": 6.76e-08, + "dellums": 6.76e-08, + "dendrobium": 6.76e-08, + "denethor": 6.76e-08, + "denialist": 6.76e-08, + "deoxygenated": 6.76e-08, + "deoxyribonucleic": 6.76e-08, + "desborough": 6.76e-08, + "desensitize": 6.76e-08, + "desperados": 6.76e-08, + "devaluations": 6.76e-08, + "dextrous": 6.76e-08, + "dhikr": 6.76e-08, + "diabolically": 6.76e-08, + "dibaba": 6.76e-08, + "diffidence": 6.76e-08, + "digges": 6.76e-08, + "dikembe": 6.76e-08, + "dilatory": 6.76e-08, + "dinette": 6.76e-08, + "disbands": 6.76e-08, + "discontinues": 6.76e-08, + "disinhibition": 6.76e-08, + "disneylands": 6.76e-08, + "divac": 6.76e-08, + "dlg": 6.76e-08, + "dmh": 6.76e-08, + "doctrina": 6.76e-08, + "domesticating": 6.76e-08, + "donghae": 6.76e-08, + "doolin": 6.76e-08, + "doublets": 6.76e-08, + "downsview": 6.76e-08, + "druse": 6.76e-08, + "duchesss": 6.76e-08, + "duckies": 6.76e-08, + "dumba": 6.76e-08, + "dupatta": 6.76e-08, + "duponts": 6.76e-08, + "durer": 6.76e-08, + "duryodhana": 6.76e-08, + "dystrophin": 6.76e-08, + "eaf": 6.76e-08, + "eai": 6.76e-08, + "eav": 6.76e-08, + "ebd": 6.76e-08, + "ebe": 6.76e-08, + "ebron": 6.76e-08, + "ecobank": 6.76e-08, + "edad": 6.76e-08, + "edman": 6.76e-08, + "edutainment": 6.76e-08, + "eelgrass": 6.76e-08, + "ehf": 6.76e-08, + "elbaradei": 6.76e-08, + "eldercare": 6.76e-08, + "electroporation": 6.76e-08, + "eliz": 6.76e-08, + "elka": 6.76e-08, + "embalm": 6.76e-08, + "emmen": 6.76e-08, + "enantiomer": 6.76e-08, + "endureth": 6.76e-08, + "enjolras": 6.76e-08, + "enol": 6.76e-08, + "enseignement": 6.76e-08, + "enticements": 6.76e-08, + "epicure": 6.76e-08, + "epileptics": 6.76e-08, + "epiphytes": 6.76e-08, + "epix": 6.76e-08, + "equ": 6.76e-08, + "equipoise": 6.76e-08, + "eraserhead": 6.76e-08, + "ergative": 6.76e-08, + "eschenbach": 6.76e-08, + "essais": 6.76e-08, + "etches": 6.76e-08, + "etiological": 6.76e-08, + "eulerian": 6.76e-08, + "eurosceptics": 6.76e-08, + "eustache": 6.76e-08, + "everingham": 6.76e-08, + "exigency": 6.76e-08, + "exilic": 6.76e-08, + "existe": 6.76e-08, + "eyeliners": 6.76e-08, + "fabianski": 6.76e-08, + "fage": 6.76e-08, + "faile": 6.76e-08, + "fairman": 6.76e-08, + "fanfan": 6.76e-08, + "fantabulous": 6.76e-08, + "farkle": 6.76e-08, + "farra": 6.76e-08, + "farran": 6.76e-08, + "farty": 6.76e-08, + "fassett": 6.76e-08, + "fatimid": 6.76e-08, + "fatted": 6.76e-08, + "feloniously": 6.76e-08, + "femicide": 6.76e-08, + "ferne": 6.76e-08, + "fernet": 6.76e-08, + "ferpa": 6.76e-08, + "festuca": 6.76e-08, + "fgcu": 6.76e-08, + "fiala": 6.76e-08, + "figgy": 6.76e-08, + "filemaker": 6.76e-08, + "filosofia": 6.76e-08, + "filton": 6.76e-08, + "findhorn": 6.76e-08, + "fintan": 6.76e-08, + "fishmeal": 6.76e-08, + "fleishman": 6.76e-08, + "flite": 6.76e-08, + "floo": 6.76e-08, + "flowerpots": 6.76e-08, + "folksong": 6.76e-08, + "fonteyn": 6.76e-08, + "forsett": 6.76e-08, + "foxfire": 6.76e-08, + "frankfurts": 6.76e-08, + "freedomworks": 6.76e-08, + "freephone": 6.76e-08, + "frehley": 6.76e-08, + "frijoles": 6.76e-08, + "frogmen": 6.76e-08, + "frst": 6.76e-08, + "ftcs": 6.76e-08, + "funkier": 6.76e-08, + "funnyman": 6.76e-08, + "futari": 6.76e-08, + "galaga": 6.76e-08, + "galligan": 6.76e-08, + "gamgee": 6.76e-08, + "garis": 6.76e-08, + "garlin": 6.76e-08, + "garrod": 6.76e-08, + "gayles": 6.76e-08, + "gazers": 6.76e-08, + "gcb": 6.76e-08, + "gearhead": 6.76e-08, + "geel": 6.76e-08, + "gei": 6.76e-08, + "gelli": 6.76e-08, + "genos": 3.39e-08, + "genotoxic": 6.76e-08, + "gentes": 6.76e-08, + "genzyme": 6.76e-08, + "georgetowns": 6.76e-08, + "gergiev": 6.76e-08, + "gerwen": 6.76e-08, + "ghgs": 6.76e-08, + "ghillie": 6.76e-08, + "gibt": 6.76e-08, + "gilboa": 6.76e-08, + "gillick": 6.76e-08, + "gists": 6.76e-08, + "glaber": 6.76e-08, + "glammed": 6.76e-08, + "glazebrook": 6.76e-08, + "glissando": 6.76e-08, + "gmi": 6.76e-08, + "gobblers": 6.76e-08, + "godric": 6.76e-08, + "golubev": 6.76e-08, + "gonda": 6.76e-08, + "gorsky": 6.76e-08, + "gradualism": 6.76e-08, + "graha": 6.76e-08, + "grandchildrens": 6.76e-08, + "gratton": 6.76e-08, + "greaseproof": 6.76e-08, + "greenscreen": 6.76e-08, + "greentree": 6.76e-08, + "greiss": 6.76e-08, + "gretzkys": 6.76e-08, + "gril": 6.76e-08, + "grothendieck": 6.76e-08, + "gruppe": 6.76e-08, + "gruppo": 6.76e-08, + "guarenteed": 6.76e-08, + "guccione": 6.76e-08, + "guignol": 6.76e-08, + "gullah": 6.76e-08, + "gunma": 6.76e-08, + "gura": 6.76e-08, + "gurdon": 6.76e-08, + "gurudwara": 6.76e-08, + "gyrocopter": 6.76e-08, + "hadda": 6.76e-08, + "haggled": 6.76e-08, + "haiphong": 6.76e-08, + "hairier": 6.76e-08, + "halacha": 6.76e-08, + "haldol": 6.76e-08, + "hamamatsu": 6.76e-08, + "hanalei": 6.76e-08, + "handsomer": 6.76e-08, + "hankies": 6.76e-08, + "hanzi": 6.76e-08, + "hardtail": 6.76e-08, + "harel": 6.76e-08, + "harmsworth": 6.76e-08, + "harrying": 6.76e-08, + "hartshorn": 6.76e-08, + "hatful": 6.76e-08, + "haunch": 6.76e-08, + "haunter": 6.76e-08, + "hawkwind": 6.76e-08, + "hcf": 6.76e-08, + "hecho": 6.76e-08, + "hecking": 6.76e-08, + "heeney": 6.76e-08, + "hellmouth": 6.76e-08, + "hematomas": 6.76e-08, + "hemlines": 6.76e-08, + "herbage": 6.76e-08, + "hermite": 6.76e-08, + "herpetology": 6.76e-08, + "herta": 6.76e-08, + "heyden": 6.76e-08, + "hida": 6.76e-08, + "hml": 6.76e-08, + "hochman": 6.76e-08, + "hoga": 6.76e-08, + "hoity": 6.76e-08, + "hokie": 6.76e-08, + "holkar": 6.76e-08, + "holling": 6.76e-08, + "hollingshead": 6.76e-08, + "holmdel": 6.76e-08, + "holos": 6.76e-08, + "hopkin": 6.76e-08, + "hornbeck": 6.76e-08, + "hornell": 6.76e-08, + "horniness": 6.76e-08, + "horsemeat": 6.76e-08, + "hougang": 6.76e-08, + "housebroken": 6.76e-08, + "hpb": 6.76e-08, + "hrant": 6.76e-08, + "hri": 6.76e-08, + "humanization": 6.76e-08, + "hunza": 6.76e-08, + "hurlbut": 6.76e-08, + "husbando": 6.76e-08, + "hussaini": 6.76e-08, + "hydrophobicity": 6.76e-08, + "hyperemesis": 6.76e-08, + "hysterectomies": 6.76e-08, + "hyuns": 6.76e-08, + "icap": 6.76e-08, + "idolise": 6.76e-08, + "ignitions": 6.76e-08, + "iho": 6.76e-08, + "ijaw": 6.76e-08, + "iloveyou": 6.76e-08, + "ilves": 6.76e-08, + "imag": 6.76e-08, + "imagen": 6.76e-08, + "immoderate": 6.76e-08, + "immunol": 6.76e-08, + "imperilled": 6.76e-08, + "imprisonments": 6.76e-08, + "indooroopilly": 6.76e-08, + "industrialism": 6.76e-08, + "influent": 6.76e-08, + "ingleby": 6.76e-08, + "inrush": 6.76e-08, + "interbred": 6.76e-08, + "interdependency": 6.76e-08, + "internalise": 6.76e-08, + "intramurals": 6.76e-08, + "inulin": 6.76e-08, + "iolo": 6.76e-08, + "ionians": 6.76e-08, + "iqbals": 6.76e-08, + "irreligion": 6.76e-08, + "irresistable": 6.76e-08, + "isabell": 6.76e-08, + "isight": 6.76e-08, + "isopropanol": 6.76e-08, + "itsm": 6.76e-08, + "ivie": 6.76e-08, + "iwao": 6.76e-08, + "jacuzzis": 6.76e-08, + "jahlil": 6.76e-08, + "jalopnik": 6.76e-08, + "japonicum": 6.76e-08, + "jarreau": 6.76e-08, + "jaruzelski": 6.76e-08, + "jastrow": 6.76e-08, + "javadi": 6.76e-08, + "jawahar": 6.76e-08, + "jayalalitha": 6.76e-08, + "jcm": 6.76e-08, + "jda": 6.76e-08, + "johto": 6.76e-08, + "joice": 6.76e-08, + "judg": 6.76e-08, + "juhi": 6.76e-08, + "julios": 6.76e-08, + "junkets": 6.76e-08, + "juristic": 6.76e-08, + "kable": 6.76e-08, + "kad": 6.76e-08, + "kaha": 6.76e-08, + "kalevala": 6.76e-08, + "kalisto": 6.76e-08, + "kamenev": 6.76e-08, + "kanak": 6.76e-08, + "kanno": 6.76e-08, + "kans": 2.09e-08, + "kanwar": 6.76e-08, + "kappas": 6.76e-08, + "kavli": 6.76e-08, + "kedarnath": 6.76e-08, + "kennen": 6.76e-08, + "kensei": 6.76e-08, + "kenshiro": 6.76e-08, + "kerning": 6.76e-08, + "kesselring": 6.76e-08, + "kevyn": 6.76e-08, + "khalidi": 6.76e-08, + "kibler": 6.76e-08, + "kickstarting": 6.76e-08, + "kindergartener": 6.76e-08, + "kingsgate": 6.76e-08, + "kissingers": 6.76e-08, + "kiyosaki": 6.76e-08, + "klin": 6.76e-08, + "klong": 6.76e-08, + "knightmare": 6.76e-08, + "kog": 6.76e-08, + "kohlrabi": 6.76e-08, + "koning": 6.76e-08, + "konoplyanka": 6.76e-08, + "krispie": 6.76e-08, + "kroft": 6.76e-08, + "kuga": 6.76e-08, + "kunlun": 6.76e-08, + "kvd": 6.76e-08, + "kwaito": 6.76e-08, + "labe": 6.76e-08, + "lagasse": 6.76e-08, + "laikipia": 6.76e-08, + "lajpat": 6.76e-08, + "lampards": 6.76e-08, + "landstuhl": 6.76e-08, + "lanius": 6.76e-08, + "lankester": 6.76e-08, + "latinized": 6.76e-08, + "laurents": 6.76e-08, + "lauryl": 6.76e-08, + "lazaretto": 6.76e-08, + "lazzaro": 6.76e-08, + "ldcs": 6.76e-08, + "leavings": 6.76e-08, + "lecomte": 6.76e-08, + "ledo": 6.76e-08, + "leelanau": 6.76e-08, + "legazpi": 6.76e-08, + "leinart": 6.76e-08, + "lenexa": 6.76e-08, + "lennar": 6.76e-08, + "leukemic": 6.76e-08, + "levelheaded": 6.76e-08, + "levitical": 6.76e-08, + "lewitt": 6.76e-08, + "liggins": 6.76e-08, + "likin": 6.76e-08, + "lilburn": 6.76e-08, + "linac": 6.76e-08, + "lindenwood": 6.76e-08, + "lipolysis": 6.76e-08, + "liras": 6.76e-08, + "literalist": 6.76e-08, + "litovsk": 6.76e-08, + "litvak": 6.76e-08, + "liverpudlian": 6.76e-08, + "lizzo": 6.76e-08, + "locky": 6.76e-08, + "lodovico": 6.76e-08, + "logica": 6.76e-08, + "longboards": 6.76e-08, + "longbridge": 6.76e-08, + "longridge": 6.76e-08, + "loompas": 6.76e-08, + "lorch": 6.76e-08, + "loti": 6.76e-08, + "lotterys": 6.76e-08, + "lovebird": 6.76e-08, + "lovegood": 6.76e-08, + "lulas": 6.76e-08, + "lumet": 6.76e-08, + "luong": 6.76e-08, + "lurcher": 6.76e-08, + "maac": 6.76e-08, + "macondo": 6.76e-08, + "maculata": 6.76e-08, + "madu": 6.76e-08, + "magsafe": 6.76e-08, + "majd": 6.76e-08, + "majorana": 6.76e-08, + "malodorous": 6.76e-08, + "maness": 6.76e-08, + "manford": 6.76e-08, + "mangles": 6.76e-08, + "mansfields": 6.76e-08, + "marabou": 6.76e-08, + "marella": 6.76e-08, + "marijuanas": 6.76e-08, + "massas": 6.76e-08, + "masseys": 6.76e-08, + "matings": 6.76e-08, + "maws": 6.76e-08, + "mayhaps": 6.76e-08, + "mayos": 6.76e-08, + "mazhar": 6.76e-08, + "mcdaid": 6.76e-08, + "mcglashan": 6.76e-08, + "medhurst": 6.76e-08, + "medien": 6.76e-08, + "meditator": 6.76e-08, + "medivac": 6.76e-08, + "mellark": 6.76e-08, + "melle": 6.76e-08, + "mellower": 6.76e-08, + "mendelssohns": 6.76e-08, + "mendham": 6.76e-08, + "merrillville": 6.76e-08, + "mersenne": 6.76e-08, + "miaow": 6.76e-08, + "microscopical": 6.76e-08, + "mifepristone": 6.76e-08, + "mily": 6.76e-08, + "mimas": 6.76e-08, + "minotaurs": 6.76e-08, + "minyan": 6.76e-08, + "miocic": 6.76e-08, + "mirjana": 6.76e-08, + "miscommunications": 6.76e-08, + "misgendered": 6.76e-08, + "mistys": 6.76e-08, + "mith": 6.76e-08, + "mitteilungen": 6.76e-08, + "mnla": 6.76e-08, + "moch": 6.76e-08, + "mollison": 6.76e-08, + "monopoles": 6.76e-08, + "montee": 6.76e-08, + "mooing": 6.76e-08, + "morriston": 6.76e-08, + "morsis": 6.76e-08, + "motormouth": 6.76e-08, + "movimento": 6.76e-08, + "mullane": 6.76e-08, + "mulligans": 6.76e-08, + "multipart": 6.76e-08, + "multistep": 6.76e-08, + "mundelein": 6.76e-08, + "munsters": 5.13e-08, + "murnane": 6.76e-08, + "muzzin": 6.76e-08, + "muzzling": 6.76e-08, + "mwangi": 6.76e-08, + "myb": 6.76e-08, + "mygod": 6.76e-08, + "myong": 6.76e-08, + "naba": 6.76e-08, + "nabe": 6.76e-08, + "nagase": 6.76e-08, + "nagra": 6.76e-08, + "nahas": 6.76e-08, + "namba": 6.76e-08, + "nane": 6.76e-08, + "nanni": 6.76e-08, + "nanorods": 6.76e-08, + "narcoleptic": 6.76e-08, + "narra": 6.76e-08, + "nebraskan": 6.76e-08, + "necc": 6.76e-08, + "needleman": 6.76e-08, + "nego": 6.76e-08, + "neji": 6.76e-08, + "neurotics": 6.76e-08, + "neven": 6.76e-08, + "nevile": 6.76e-08, + "ngati": 6.76e-08, + "nhe": 6.76e-08, + "nhis": 6.76e-08, + "nichelle": 6.76e-08, + "nicko": 6.76e-08, + "nique": 6.76e-08, + "niranjan": 6.76e-08, + "nks": 6.76e-08, + "nneka": 6.76e-08, + "nobita": 6.76e-08, + "nones": 6.76e-08, + "nonprescription": 6.76e-08, + "nonvolatile": 6.76e-08, + "nordin": 6.76e-08, + "norgay": 6.76e-08, + "noronha": 6.76e-08, + "northolt": 6.76e-08, + "northview": 6.76e-08, + "notational": 6.76e-08, + "notis": 6.76e-08, + "nouakchott": 6.76e-08, + "novoselic": 6.76e-08, + "nucleosynthesis": 6.76e-08, + "nupe": 6.76e-08, + "nuttier": 6.76e-08, + "odaniel": 6.76e-08, + "oregan": 6.76e-08, + "obergefell": 6.76e-08, + "occassions": 6.76e-08, + "oettinger": 6.76e-08, + "ofqual": 6.76e-08, + "ofyour": 6.76e-08, + "oii": 6.76e-08, + "okumura": 6.76e-08, + "olo": 6.76e-08, + "omp": 6.76e-08, + "ooga": 6.76e-08, + "organi": 6.76e-08, + "orgone": 6.76e-08, + "orrick": 6.76e-08, + "oryza": 6.76e-08, + "oskaloosa": 6.76e-08, + "osn": 6.76e-08, + "osteoclasts": 6.76e-08, + "outlasts": 6.76e-08, + "overbrook": 6.76e-08, + "overmars": 6.76e-08, + "overshare": 6.76e-08, + "owlet": 6.76e-08, + "oximetry": 6.76e-08, + "paddler": 6.76e-08, + "paediatricians": 6.76e-08, + "paez": 6.76e-08, + "pagasa": 6.76e-08, + "paice": 6.76e-08, + "panavision": 6.76e-08, + "pandy": 6.76e-08, + "pantograph": 6.76e-08, + "paok": 6.76e-08, + "papercraft": 6.76e-08, + "parlous": 6.76e-08, + "patrika": 6.76e-08, + "paulines": 6.76e-08, + "paus": 6.76e-08, + "payor": 6.76e-08, + "paytons": 6.76e-08, + "pbss": 6.76e-08, + "peacoat": 6.76e-08, + "peopl": 6.76e-08, + "percha": 6.76e-08, + "perplexes": 6.76e-08, + "pfoa": 6.76e-08, + "pharmacovigilance": 6.76e-08, + "phillipson": 6.76e-08, + "philosophize": 6.76e-08, + "phiri": 6.76e-08, + "photogs": 6.76e-08, + "pht": 6.76e-08, + "picken": 6.76e-08, + "pietrangelo": 6.76e-08, + "pilled": 6.76e-08, + "pindi": 6.76e-08, + "pittwater": 6.76e-08, + "plaintively": 6.76e-08, + "plamen": 6.76e-08, + "planus": 6.76e-08, + "platonically": 6.76e-08, + "playstations": 6.76e-08, + "plink": 6.76e-08, + "plowden": 6.76e-08, + "pny": 6.76e-08, + "pocked": 6.76e-08, + "poetica": 6.76e-08, + "politicans": 6.76e-08, + "poochie": 6.76e-08, + "portraitist": 6.76e-08, + "posadas": 6.76e-08, + "posession": 6.76e-08, + "posthuman": 6.76e-08, + "postmedia": 6.76e-08, + "potenza": 6.76e-08, + "pottawatomie": 6.76e-08, + "povich": 6.76e-08, + "pozzi": 6.76e-08, + "ppis": 6.76e-08, + "prabha": 6.76e-08, + "prabhat": 6.76e-08, + "praetorians": 6.76e-08, + "precolonial": 6.76e-08, + "predication": 6.76e-08, + "preoccupy": 6.76e-08, + "preponderant": 6.76e-08, + "preternaturally": 6.76e-08, + "produ": 6.76e-08, + "psychophysical": 6.76e-08, + "psyops": 6.76e-08, + "pulverizer": 6.76e-08, + "purell": 6.76e-08, + "purgative": 6.76e-08, + "purism": 6.76e-08, + "pusat": 6.76e-08, + "pyongyangs": 6.76e-08, + "qnx": 6.76e-08, + "quaternion": 6.76e-08, + "quatuor": 6.76e-08, + "quenches": 6.76e-08, + "raba": 6.76e-08, + "rabo": 6.76e-08, + "radziwill": 6.76e-08, + "rafal": 6.76e-08, + "rafflecopter": 6.76e-08, + "rakoff": 6.76e-08, + "rakugo": 6.76e-08, + "rampling": 6.76e-08, + "ranney": 6.76e-08, + "raphe": 6.76e-08, + "ratti": 6.76e-08, + "rayford": 6.76e-08, + "razan": 6.76e-08, + "rbe": 6.76e-08, + "rdu": 6.76e-08, + "recoilless": 6.76e-08, + "redesignation": 6.76e-08, + "regionalist": 6.76e-08, + "regionalized": 6.76e-08, + "regnier": 6.76e-08, + "reimposed": 6.76e-08, + "reinach": 6.76e-08, + "remedios": 6.76e-08, + "replacer": 6.76e-08, + "replicative": 6.76e-08, + "reposes": 6.76e-08, + "representable": 6.76e-08, + "reprieves": 6.76e-08, + "requestor": 6.76e-08, + "resealed": 6.76e-08, + "resells": 6.76e-08, + "respecter": 6.76e-08, + "ress": 6.76e-08, + "reticulation": 6.76e-08, + "reynoldss": 6.76e-08, + "ribbit": 6.76e-08, + "rifampin": 6.76e-08, + "rigveda": 6.76e-08, + "rinker": 6.76e-08, + "ritonavir": 6.76e-08, + "rla": 6.76e-08, + "roachs": 6.76e-08, + "robertos": 6.76e-08, + "roboto": 6.76e-08, + "rochas": 6.76e-08, + "rockery": 6.76e-08, + "rockhopper": 6.76e-08, + "roil": 6.76e-08, + "roorkee": 6.76e-08, + "rosaria": 6.76e-08, + "roselli": 6.76e-08, + "rossville": 6.76e-08, + "rowhouses": 6.76e-08, + "rumson": 6.76e-08, + "rundstedt": 6.76e-08, + "russi": 6.76e-08, + "ruthenian": 6.76e-08, + "ruz": 6.76e-08, + "ryazan": 6.76e-08, + "rycroft": 6.76e-08, + "ryse": 6.76e-08, + "sabiha": 6.76e-08, + "sads": 6.76e-08, + "sagat": 6.76e-08, + "sahai": 6.76e-08, + "saja": 6.76e-08, + "salafists": 6.76e-08, + "salbutamol": 6.76e-08, + "salento": 6.76e-08, + "salingers": 6.76e-08, + "salley": 6.76e-08, + "saltpetre": 6.76e-08, + "samet": 6.76e-08, + "sammon": 6.76e-08, + "sanest": 6.76e-08, + "sapwood": 6.76e-08, + "saqib": 6.76e-08, + "sartaj": 6.76e-08, + "satiating": 6.76e-08, + "satirised": 6.76e-08, + "saugerties": 6.76e-08, + "sauropods": 6.76e-08, + "savary": 6.76e-08, + "scenting": 6.76e-08, + "scheibe": 6.76e-08, + "schmeling": 6.76e-08, + "schocken": 6.76e-08, + "schola": 6.76e-08, + "scholem": 6.76e-08, + "schomburg": 6.76e-08, + "schouten": 6.76e-08, + "schutte": 6.76e-08, + "scleral": 6.76e-08, + "scrapie": 6.76e-08, + "scriabin": 6.76e-08, + "scribed": 6.76e-08, + "scrips": 6.76e-08, + "scroller": 6.76e-08, + "scrunching": 6.76e-08, + "scurries": 6.76e-08, + "scw": 6.76e-08, + "seaham": 6.76e-08, + "seances": 6.76e-08, + "seaways": 6.76e-08, + "seeders": 6.76e-08, + "seidenberg": 6.76e-08, + "seinfelds": 6.76e-08, + "semenya": 6.76e-08, + "senki": 6.76e-08, + "senta": 6.76e-08, + "sepultura": 6.76e-08, + "serafin": 6.76e-08, + "sertoli": 6.76e-08, + "servicenow": 6.76e-08, + "servin": 6.76e-08, + "severna": 6.76e-08, + "shakeout": 6.76e-08, + "shaler": 6.76e-08, + "shankara": 6.76e-08, + "shankaracharya": 6.76e-08, + "sharona": 6.76e-08, + "sharpish": 6.76e-08, + "shastra": 6.76e-08, + "shatila": 6.76e-08, + "sherbourne": 6.76e-08, + "shihab": 6.76e-08, + "shimoda": 6.76e-08, + "shinty": 6.76e-08, + "shorewood": 6.76e-08, + "shortie": 6.76e-08, + "shortt": 6.76e-08, + "shukri": 6.76e-08, + "shutt": 6.76e-08, + "shutterfly": 6.76e-08, + "silvermans": 6.76e-08, + "singler": 6.76e-08, + "sipa": 6.76e-08, + "sipho": 6.76e-08, + "siracusa": 6.76e-08, + "siver": 6.76e-08, + "sixs": 6.76e-08, + "skat": 6.76e-08, + "skillman": 6.76e-08, + "skinniest": 6.76e-08, + "slas": 6.76e-08, + "slipcover": 6.76e-08, + "slumlord": 6.76e-08, + "slutsky": 6.76e-08, + "smithwick": 6.76e-08, + "snaith": 6.76e-08, + "snidely": 6.76e-08, + "snt": 6.76e-08, + "socha": 6.76e-08, + "soloman": 6.76e-08, + "somnolence": 6.76e-08, + "sonet": 6.76e-08, + "songhai": 6.76e-08, + "sonship": 6.76e-08, + "soonish": 6.76e-08, + "soth": 6.76e-08, + "spaceys": 6.76e-08, + "spectate": 6.76e-08, + "spectrally": 6.76e-08, + "spir": 6.76e-08, + "splenectomy": 6.76e-08, + "splutter": 6.76e-08, + "spongebobs": 6.76e-08, + "springers": 6.76e-08, + "squally": 6.76e-08, + "squirmy": 6.76e-08, + "stanislavsky": 6.76e-08, + "steck": 6.76e-08, + "steelman": 6.76e-08, + "steganography": 6.76e-08, + "stereographic": 6.76e-08, + "stet": 6.76e-08, + "sticked": 6.76e-08, + "stompers": 6.76e-08, + "striata": 6.76e-08, + "striders": 6.76e-08, + "stryder": 6.76e-08, + "stumbleupon": 6.76e-08, + "subgenera": 6.76e-08, + "subhumans": 6.76e-08, + "suhail": 6.76e-08, + "summoners": 6.76e-08, + "suoi": 6.76e-08, + "superfight": 6.76e-08, + "surin": 6.76e-08, + "susanoo": 6.76e-08, + "svi": 6.76e-08, + "sware": 6.76e-08, + "swarup": 6.76e-08, + "sweetens": 6.76e-08, + "symmetra": 6.76e-08, + "syncytial": 6.76e-08, + "synuclein": 6.76e-08, + "syrinx": 6.76e-08, + "szeged": 6.76e-08, + "tadao": 6.76e-08, + "tagaytay": 6.76e-08, + "tagine": 6.76e-08, + "tailer": 6.76e-08, + "taisho": 6.76e-08, + "tarasov": 6.76e-08, + "tarentum": 6.76e-08, + "tattling": 6.76e-08, + "tauris": 6.76e-08, + "taystee": 6.76e-08, + "techn": 6.76e-08, + "teesta": 6.76e-08, + "telfair": 6.76e-08, + "tembo": 6.76e-08, + "temi": 6.76e-08, + "terminalia": 6.76e-08, + "tertius": 6.76e-08, + "tesh": 6.76e-08, + "tetrodotoxin": 6.76e-08, + "tfo": 6.76e-08, + "thackery": 6.76e-08, + "thatcherite": 6.76e-08, + "thebans": 6.76e-08, + "theia": 6.76e-08, + "theisen": 6.76e-08, + "theropods": 6.76e-08, + "thers": 6.76e-08, + "thiamin": 6.76e-08, + "thinkstock": 6.76e-08, + "thisis": 6.76e-08, + "thranduil": 6.76e-08, + "threshers": 6.76e-08, + "thumbtacks": 6.76e-08, + "thye": 6.76e-08, + "tica": 6.76e-08, + "tiflis": 6.76e-08, + "tifo": 6.76e-08, + "tikhon": 6.76e-08, + "tikkun": 6.76e-08, + "timbering": 6.76e-08, + "toku": 6.76e-08, + "tombo": 6.76e-08, + "tomson": 6.76e-08, + "tooke": 6.76e-08, + "toomer": 6.76e-08, + "tootin": 6.76e-08, + "torqued": 6.76e-08, + "transexuals": 6.76e-08, + "transferwise": 6.76e-08, + "transsexualism": 6.76e-08, + "trego": 6.76e-08, + "trippie": 6.76e-08, + "triwizard": 6.76e-08, + "truisms": 6.76e-08, + "tsongas": 6.76e-08, + "tuatha": 6.76e-08, + "tuggeranong": 6.76e-08, + "turbocharging": 6.76e-08, + "turkistan": 6.76e-08, + "tuscola": 6.76e-08, + "tvo": 6.76e-08, + "twentysomething": 6.76e-08, + "twerps": 6.76e-08, + "ubl": 6.76e-08, + "udd": 6.76e-08, + "uhhhhhh": 6.76e-08, + "uki": 6.76e-08, + "ulman": 6.76e-08, + "unchain": 6.76e-08, + "unclench": 6.76e-08, + "uncompromised": 6.76e-08, + "uncork": 6.76e-08, + "underwrites": 6.76e-08, + "undulate": 6.76e-08, + "unfired": 6.76e-08, + "unforgivably": 6.76e-08, + "unley": 6.76e-08, + "unmasks": 6.76e-08, + "unrehearsed": 6.76e-08, + "unrepeatable": 6.76e-08, + "unrestored": 6.76e-08, + "unsuitability": 6.76e-08, + "upchurch": 6.76e-08, + "uremic": 6.76e-08, + "usj": 6.76e-08, + "uyo": 6.76e-08, + "vacances": 6.76e-08, + "valency": 6.76e-08, + "valladares": 6.76e-08, + "vanbrugh": 6.76e-08, + "vanzant": 6.76e-08, + "vatanen": 6.76e-08, + "veining": 6.76e-08, + "verrier": 6.76e-08, + "vesely": 6.76e-08, + "veta": 6.76e-08, + "vete": 6.76e-08, + "vigne": 6.76e-08, + "virally": 6.76e-08, + "visages": 6.76e-08, + "vlive": 6.76e-08, + "vohra": 6.76e-08, + "voidable": 6.76e-08, + "volkan": 6.76e-08, + "voorhis": 6.76e-08, + "vulcanization": 6.76e-08, + "vulpix": 6.76e-08, + "vuong": 6.76e-08, + "vve": 6.76e-08, + "waga": 6.76e-08, + "wampler": 6.76e-08, + "wata": 6.76e-08, + "watari": 6.76e-08, + "wbt": 6.76e-08, + "weaponization": 6.76e-08, + "wearside": 6.76e-08, + "weathervane": 6.76e-08, + "weekley": 6.76e-08, + "wenk": 6.76e-08, + "wente": 6.76e-08, + "werfel": 6.76e-08, + "whang": 6.76e-08, + "whelks": 6.76e-08, + "whiffed": 6.76e-08, + "whingeing": 6.76e-08, + "whippets": 6.76e-08, + "whirligig": 6.76e-08, + "whited": 6.76e-08, + "willes": 6.76e-08, + "willman": 6.76e-08, + "winders": 6.76e-08, + "windless": 6.76e-08, + "wineglass": 6.76e-08, + "winson": 6.76e-08, + "winther": 6.76e-08, + "wmr": 6.76e-08, + "worksites": 6.76e-08, + "worktops": 6.76e-08, + "wotherspoon": 6.76e-08, + "wowow": 6.76e-08, + "xmp": 6.76e-08, + "xq": 6.76e-08, + "xvid": 6.76e-08, + "yack": 6.76e-08, + "yamcha": 6.76e-08, + "yapp": 6.76e-08, + "yaradua": 6.76e-08, + "yaxley": 6.76e-08, + "yeltsins": 6.76e-08, + "yezidis": 6.76e-08, + "yokozuna": 6.76e-08, + "yongsan": 6.76e-08, + "yoons": 6.76e-08, + "yoshihide": 6.76e-08, + "yuva": 6.76e-08, + "yx": 6.76e-08, + "yyz": 6.76e-08, + "zacarias": 6.76e-08, + "zamfara": 6.76e-08, + "zapotec": 6.76e-08, + "zayas": 6.76e-08, + "zeinab": 6.76e-08, + "zenimax": 6.76e-08, + "zinda": 6.76e-08, + "ziplining": 6.76e-08, + "zizou": 6.76e-08, + "zordon": 6.76e-08, + "zuzu": 6.76e-08, + "aaai": 6.61e-08, + "abhidhamma": 6.61e-08, + "abimelech": 6.61e-08, + "abjure": 6.61e-08, + "accessorizing": 6.61e-08, + "acela": 6.61e-08, + "acount": 6.61e-08, + "acra": 6.61e-08, + "actium": 6.61e-08, + "adventuress": 6.61e-08, + "aegina": 6.61e-08, + "affability": 6.61e-08, + "affluenza": 6.61e-08, + "agathas": 6.61e-08, + "aggresive": 6.61e-08, + "ahmadinejads": 6.61e-08, + "airboat": 6.61e-08, + "akademik": 6.61e-08, + "alawi": 6.61e-08, + "aldos": 6.61e-08, + "alem": 6.61e-08, + "aliquippa": 6.61e-08, + "alleyn": 6.61e-08, + "almoner": 6.61e-08, + "amalric": 6.61e-08, + "amati": 6.61e-08, + "americain": 6.61e-08, + "amphibole": 6.61e-08, + "anatomie": 6.61e-08, + "andar": 6.61e-08, + "andry": 6.61e-08, + "angele": 6.61e-08, + "anit": 6.61e-08, + "antal": 6.61e-08, + "antennal": 6.61e-08, + "antisymmetric": 6.61e-08, + "anuradhapura": 6.61e-08, + "anyas": 6.61e-08, + "aok": 6.61e-08, + "aopa": 6.61e-08, + "aprs": 6.61e-08, + "arap": 6.61e-08, + "arawak": 6.61e-08, + "arend": 6.61e-08, + "arethusa": 6.61e-08, + "arevalo": 6.61e-08, + "ariella": 6.61e-08, + "ariston": 6.61e-08, + "artemus": 6.61e-08, + "arties": 6.61e-08, + "asca": 6.61e-08, + "aska": 6.61e-08, + "assasin": 6.61e-08, + "astron": 6.61e-08, + "athar": 6.61e-08, + "athe": 6.61e-08, + "athletica": 6.61e-08, + "atocha": 6.61e-08, + "auri": 6.61e-08, + "auris": 6.61e-08, + "aveo": 6.61e-08, + "avuncular": 6.61e-08, + "ayad": 6.61e-08, + "ayi": 6.61e-08, + "baad": 6.61e-08, + "babo": 6.61e-08, + "bahamians": 6.61e-08, + "bakerloo": 6.61e-08, + "bakugan": 6.61e-08, + "baldev": 6.61e-08, + "balkanization": 6.61e-08, + "ballymore": 6.61e-08, + "balut": 6.61e-08, + "bambis": 6.61e-08, + "banalities": 6.61e-08, + "bankrupts": 6.61e-08, + "bapt": 6.61e-08, + "barbossa": 6.61e-08, + "basrah": 6.61e-08, + "bastos": 6.61e-08, + "bating": 6.61e-08, + "batsford": 6.61e-08, + "bbr": 6.61e-08, + "bdubs": 6.61e-08, + "beathard": 6.61e-08, + "beauticians": 6.61e-08, + "bedpan": 6.61e-08, + "belotti": 6.61e-08, + "beltane": 6.61e-08, + "benevolently": 6.61e-08, + "berton": 6.61e-08, + "besa": 6.61e-08, + "bevington": 6.61e-08, + "bialystok": 6.61e-08, + "biannually": 6.61e-08, + "biggleswade": 6.61e-08, + "bijoux": 6.61e-08, + "bilodeau": 6.61e-08, + "biobank": 6.61e-08, + "bioethanol": 6.61e-08, + "biphobia": 6.61e-08, + "birley": 6.61e-08, + "birling": 6.61e-08, + "bisley": 6.61e-08, + "blackcomb": 6.61e-08, + "blancpain": 6.61e-08, + "bleakley": 6.61e-08, + "bluing": 6.61e-08, + "bluto": 6.61e-08, + "bogeymen": 6.61e-08, + "bohdan": 6.61e-08, + "bonnett": 6.61e-08, + "bookchin": 6.61e-08, + "borlaug": 6.61e-08, + "botan": 6.61e-08, + "bouchet": 6.61e-08, + "bouffant": 6.61e-08, + "bramante": 6.61e-08, + "brasenose": 6.61e-08, + "brassey": 6.61e-08, + "breslow": 6.61e-08, + "bresnahan": 6.61e-08, + "bricolage": 6.61e-08, + "bridgett": 6.61e-08, + "brigette": 6.61e-08, + "briley": 6.61e-08, + "bronchiolitis": 6.61e-08, + "broodmare": 6.61e-08, + "brucei": 6.61e-08, + "bruja": 6.61e-08, + "bruneis": 6.61e-08, + "brutalised": 6.61e-08, + "budda": 6.61e-08, + "buffay": 6.61e-08, + "buildups": 6.61e-08, + "bulgars": 6.61e-08, + "bunghole": 6.61e-08, + "bunked": 6.61e-08, + "burgo": 6.61e-08, + "bushranger": 6.61e-08, + "buttload": 6.61e-08, + "buttner": 6.61e-08, + "byakuya": 6.61e-08, + "byfield": 6.61e-08, + "bylines": 6.61e-08, + "cabildo": 6.61e-08, + "cabrio": 6.61e-08, + "caddell": 6.61e-08, + "cafepress": 6.61e-08, + "cairney": 6.61e-08, + "callison": 6.61e-08, + "callista": 6.61e-08, + "cameltoe": 6.61e-08, + "camhs": 6.61e-08, + "campese": 6.61e-08, + "canards": 6.61e-08, + "canaris": 6.61e-08, + "canoodling": 6.61e-08, + "caravanning": 6.61e-08, + "cardiomyocytes": 6.61e-08, + "carreys": 6.61e-08, + "carri": 6.61e-08, + "castletown": 6.61e-08, + "catechol": 6.61e-08, + "categorys": 6.61e-08, + "catman": 6.61e-08, + "cattail": 6.61e-08, + "cattrall": 6.61e-08, + "cawthorne": 6.61e-08, + "ccj": 6.61e-08, + "ceda": 6.61e-08, + "cedarwood": 6.61e-08, + "centralising": 6.61e-08, + "cepeda": 6.61e-08, + "cephalothorax": 6.61e-08, + "chalabi": 6.61e-08, + "chandrababu": 6.61e-08, + "chaperoning": 6.61e-08, + "chauvinists": 6.61e-08, + "chernin": 6.61e-08, + "chiefdoms": 6.61e-08, + "chieko": 6.61e-08, + "chinned": 6.61e-08, + "chiwetel": 6.61e-08, + "chobe": 6.61e-08, + "choro": 6.61e-08, + "chro": 6.61e-08, + "chubbs": 6.61e-08, + "chunkier": 6.61e-08, + "churchgoer": 6.61e-08, + "cincinnatus": 6.61e-08, + "cissp": 6.61e-08, + "citicorp": 6.61e-08, + "cito": 6.61e-08, + "clambake": 6.61e-08, + "clarences": 6.61e-08, + "claussen": 6.61e-08, + "clericalism": 6.61e-08, + "clews": 6.61e-08, + "clinica": 6.61e-08, + "clinicals": 6.61e-08, + "clodagh": 6.61e-08, + "clubfoot": 6.61e-08, + "cnf": 6.61e-08, + "coad": 6.61e-08, + "cobe": 6.61e-08, + "cobh": 6.61e-08, + "coch": 6.61e-08, + "cockcroft": 6.61e-08, + "coes": 6.61e-08, + "coeval": 6.61e-08, + "coextensive": 6.61e-08, + "coire": 6.61e-08, + "colditz": 6.61e-08, + "collec": 6.61e-08, + "comerford": 6.61e-08, + "comiskey": 6.61e-08, + "comparables": 6.61e-08, + "comping": 6.61e-08, + "conciseness": 6.61e-08, + "configures": 6.61e-08, + "congressperson": 6.61e-08, + "consulta": 6.61e-08, + "contractures": 6.61e-08, + "conver": 6.61e-08, + "cooder": 6.61e-08, + "cookhouse": 6.61e-08, + "copelands": 6.61e-08, + "corfield": 6.61e-08, + "cornes": 6.61e-08, + "corroborative": 6.61e-08, + "corstorphine": 6.61e-08, + "cosmopolis": 6.61e-08, + "cought": 6.61e-08, + "councilmembers": 6.61e-08, + "coverlet": 6.61e-08, + "cowls": 6.61e-08, + "crandell": 6.61e-08, + "crataegus": 6.61e-08, + "cref": 6.61e-08, + "crise": 6.61e-08, + "croque": 6.61e-08, + "cryptid": 6.61e-08, + "cryptographers": 6.61e-08, + "crystallinity": 6.61e-08, + "crystallisation": 6.61e-08, + "cuh": 6.61e-08, + "curvier": 6.61e-08, + "cuvette": 6.61e-08, + "cystine": 6.61e-08, + "dabbs": 6.61e-08, + "dagg": 6.61e-08, + "daiquiris": 6.61e-08, + "damone": 6.61e-08, + "darkish": 6.61e-08, + "darrelle": 6.61e-08, + "daumier": 6.61e-08, + "davidic": 6.61e-08, + "deben": 6.61e-08, + "debenham": 6.61e-08, + "decimates": 6.61e-08, + "deconvolution": 6.61e-08, + "defendable": 6.61e-08, + "deify": 6.61e-08, + "delightedly": 6.61e-08, + "delimiting": 6.61e-08, + "dengs": 6.61e-08, + "denr": 6.61e-08, + "despoiled": 6.61e-08, + "deucalion": 6.61e-08, + "dhahran": 6.61e-08, + "dhal": 6.61e-08, + "dharmas": 6.61e-08, + "dhimmi": 6.61e-08, + "dhp": 6.61e-08, + "diaconate": 6.61e-08, + "dichloride": 6.61e-08, + "dichter": 6.61e-08, + "dickstein": 6.61e-08, + "dico": 6.61e-08, + "dicom": 6.61e-08, + "dienes": 6.61e-08, + "dihydro": 6.61e-08, + "dingman": 6.61e-08, + "discordance": 6.61e-08, + "disposer": 6.61e-08, + "disproportional": 6.61e-08, + "districting": 6.61e-08, + "domenica": 6.61e-08, + "donley": 6.61e-08, + "doorn": 6.61e-08, + "dougall": 6.61e-08, + "dracos": 6.61e-08, + "drawbar": 6.61e-08, + "dredgers": 6.61e-08, + "drey": 6.61e-08, + "driffield": 6.61e-08, + "drue": 6.61e-08, + "dto": 6.61e-08, + "duer": 6.61e-08, + "dumbfucks": 6.61e-08, + "dummys": 6.61e-08, + "dundon": 6.61e-08, + "dunhuang": 6.61e-08, + "durables": 6.61e-08, + "durack": 6.61e-08, + "eatable": 6.61e-08, + "eax": 6.61e-08, + "ecos": 6.61e-08, + "edenton": 6.61e-08, + "edgemont": 6.61e-08, + "edmundo": 6.61e-08, + "eew": 6.61e-08, + "egyptair": 6.61e-08, + "einaudi": 6.61e-08, + "eira": 6.61e-08, + "elad": 6.61e-08, + "eleanore": 6.61e-08, + "elektron": 6.61e-08, + "elife": 6.61e-08, + "embeddings": 6.61e-08, + "emboli": 6.61e-08, + "emolument": 6.61e-08, + "encomium": 6.61e-08, + "endears": 6.61e-08, + "enea": 6.61e-08, + "enuf": 6.61e-08, + "eobard": 6.61e-08, + "epigraphy": 6.61e-08, + "epis": 6.61e-08, + "equiano": 6.61e-08, + "escudos": 6.61e-08, + "essayed": 6.61e-08, + "eternities": 6.61e-08, + "exacta": 6.61e-08, + "excedrin": 6.61e-08, + "exeters": 6.61e-08, + "fabrica": 6.61e-08, + "fabulousness": 6.61e-08, + "fadnavis": 6.61e-08, + "fagen": 6.61e-08, + "fairhope": 6.61e-08, + "fala": 6.61e-08, + "falseness": 6.61e-08, + "famil": 6.61e-08, + "fangirling": 6.61e-08, + "farquaad": 6.61e-08, + "fascicles": 6.61e-08, + "fatu": 6.61e-08, + "fawkner": 6.61e-08, + "fayes": 6.61e-08, + "fdj": 6.61e-08, + "feeing": 6.61e-08, + "feith": 6.61e-08, + "fekete": 6.61e-08, + "feltz": 6.61e-08, + "fentons": 6.61e-08, + "ference": 6.61e-08, + "fessed": 6.61e-08, + "fier": 6.61e-08, + "filkins": 6.61e-08, + "filomena": 6.61e-08, + "firewater": 6.61e-08, + "flagrante": 6.61e-08, + "flesch": 6.61e-08, + "flori": 6.61e-08, + "foliation": 6.61e-08, + "foppish": 6.61e-08, + "forelimb": 6.61e-08, + "forsee": 6.61e-08, + "foxed": 6.61e-08, + "foxton": 6.61e-08, + "fraiser": 6.61e-08, + "francoeur": 6.61e-08, + "freethinking": 6.61e-08, + "fromthe": 6.61e-08, + "frsc": 6.61e-08, + "fuga": 6.61e-08, + "fujisawa": 6.61e-08, + "fulhams": 6.61e-08, + "funyuns": 6.61e-08, + "furiosa": 6.61e-08, + "furuya": 6.61e-08, + "gabardine": 6.61e-08, + "gakuen": 6.61e-08, + "garris": 6.61e-08, + "garston": 6.61e-08, + "gaumont": 6.61e-08, + "gawande": 6.61e-08, + "gayi": 6.61e-08, + "gazzaniga": 6.61e-08, + "gellert": 6.61e-08, + "gematria": 6.61e-08, + "genia": 6.61e-08, + "geof": 6.61e-08, + "geoscientists": 6.61e-08, + "gesundheit": 6.61e-08, + "gfl": 6.61e-08, + "gfm": 6.61e-08, + "giallo": 6.61e-08, + "gics": 6.61e-08, + "ginevra": 6.61e-08, + "ginkel": 6.61e-08, + "ginko": 6.61e-08, + "glucuronide": 6.61e-08, + "gnarls": 6.61e-08, + "goldthorpe": 6.61e-08, + "gomi": 6.61e-08, + "goodlife": 6.61e-08, + "gottman": 6.61e-08, + "gotto": 6.61e-08, + "graal": 6.61e-08, + "granbury": 6.61e-08, + "greenlaw": 6.61e-08, + "greninja": 6.61e-08, + "groins": 6.61e-08, + "groupers": 6.61e-08, + "gtf": 6.61e-08, + "guadalquivir": 6.61e-08, + "guffawing": 6.61e-08, + "gumballs": 6.61e-08, + "gumdrop": 6.61e-08, + "gurdjieff": 6.61e-08, + "gyeonggi": 6.61e-08, + "gymnosperms": 6.61e-08, + "gyorgy": 6.61e-08, + "habiba": 6.61e-08, + "haddin": 6.61e-08, + "hailes": 6.61e-08, + "hamms": 6.61e-08, + "hannitys": 6.61e-08, + "hanratty": 6.61e-08, + "hansell": 6.61e-08, + "hapi": 6.61e-08, + "haralson": 6.61e-08, + "harapan": 6.61e-08, + "harber": 6.61e-08, + "harpur": 6.61e-08, + "harriot": 6.61e-08, + "harriott": 6.61e-08, + "hartmans": 6.61e-08, + "hasil": 6.61e-08, + "hauk": 6.61e-08, + "hawksworth": 6.61e-08, + "haymitch": 6.61e-08, + "hazar": 6.61e-08, + "headstand": 6.61e-08, + "hearses": 6.61e-08, + "hedin": 6.61e-08, + "heilmann": 6.61e-08, + "hellmann": 6.61e-08, + "hellwig": 6.61e-08, + "helpfull": 6.61e-08, + "hematologist": 6.61e-08, + "henriquez": 6.61e-08, + "hetalia": 6.61e-08, + "hideaways": 6.61e-08, + "hierarch": 6.61e-08, + "hierophant": 6.61e-08, + "hile": 6.61e-08, + "hinkie": 6.61e-08, + "hireling": 6.61e-08, + "hobnob": 6.61e-08, + "holliston": 6.61e-08, + "honeymooned": 6.61e-08, + "honi": 6.61e-08, + "hooey": 6.61e-08, + "hoopa": 6.61e-08, + "hoopes": 6.61e-08, + "hoosick": 6.61e-08, + "hooted": 6.61e-08, + "hoppity": 6.61e-08, + "horlicks": 6.61e-08, + "hornacek": 6.61e-08, + "hosa": 6.61e-08, + "hotkeys": 6.61e-08, + "houseboy": 6.61e-08, + "huberts": 6.61e-08, + "hudspeth": 6.61e-08, + "hulda": 6.61e-08, + "humani": 6.61e-08, + "humsafar": 6.61e-08, + "humungous": 6.61e-08, + "huntersville": 6.61e-08, + "huttons": 6.61e-08, + "hya": 6.61e-08, + "hyaluronidase": 6.61e-08, + "hydrogens": 6.61e-08, + "hyer": 6.61e-08, + "hyperfine": 6.61e-08, + "hyphenation": 6.61e-08, + "idowu": 6.61e-08, + "iiot": 6.61e-08, + "ilcs": 6.61e-08, + "ileostomy": 6.61e-08, + "illogic": 6.61e-08, + "imber": 6.61e-08, + "impetigo": 6.61e-08, + "implementable": 6.61e-08, + "imposts": 6.61e-08, + "indexers": 6.61e-08, + "ingleton": 6.61e-08, + "ingrain": 6.61e-08, + "initiatory": 6.61e-08, + "instagramming": 6.61e-08, + "intercedes": 6.61e-08, + "internists": 6.61e-08, + "intertribal": 6.61e-08, + "intones": 6.61e-08, + "inverell": 6.61e-08, + "inves": 6.61e-08, + "iob": 6.61e-08, + "iohannis": 6.61e-08, + "irrfan": 6.61e-08, + "isar": 6.61e-08, + "ishwar": 6.61e-08, + "isit": 6.61e-08, + "islamia": 6.61e-08, + "isler": 6.61e-08, + "isomerase": 6.61e-08, + "isomeric": 6.61e-08, + "ista": 6.61e-08, + "ithaka": 6.61e-08, + "itin": 6.61e-08, + "ivd": 6.61e-08, + "iws": 6.61e-08, + "izzi": 6.61e-08, + "jambi": 6.61e-08, + "janaki": 6.61e-08, + "jannik": 6.61e-08, + "jayaram": 6.61e-08, + "jcpoa": 6.61e-08, + "jenison": 6.61e-08, + "jhu": 6.61e-08, + "jica": 6.61e-08, + "jmb": 6.61e-08, + "joerg": 6.61e-08, + "johanan": 6.61e-08, + "johannine": 6.61e-08, + "jta": 6.61e-08, + "juego": 6.61e-08, + "jugo": 6.61e-08, + "juicers": 6.61e-08, + "juillet": 6.61e-08, + "jumpscare": 6.61e-08, + "junos": 6.61e-08, + "justiciary": 6.61e-08, + "jwst": 6.61e-08, + "kalakaua": 6.61e-08, + "kalan": 6.61e-08, + "kanae": 6.61e-08, + "kapalua": 6.61e-08, + "kashin": 6.61e-08, + "kearsarge": 6.61e-08, + "kearsley": 6.61e-08, + "keat": 6.61e-08, + "kedavra": 6.61e-08, + "keddie": 6.61e-08, + "keepeth": 6.61e-08, + "kegels": 6.61e-08, + "keiki": 6.61e-08, + "kerk": 6.61e-08, + "kerouacs": 6.61e-08, + "kershner": 6.61e-08, + "ketel": 6.61e-08, + "keyframe": 6.61e-08, + "keypads": 6.61e-08, + "khiva": 6.61e-08, + "khong": 6.61e-08, + "kiddush": 6.61e-08, + "kierans": 6.61e-08, + "kilim": 6.61e-08, + "kimmich": 6.61e-08, + "kinglake": 6.61e-08, + "kingsleys": 6.61e-08, + "kington": 6.61e-08, + "kinked": 6.61e-08, + "kiplinger": 6.61e-08, + "kirn": 6.61e-08, + "kirshner": 6.61e-08, + "kizzy": 6.61e-08, + "klar": 6.61e-08, + "klik": 6.61e-08, + "klinik": 6.61e-08, + "kluivert": 6.61e-08, + "kops": 6.61e-08, + "kozma": 6.61e-08, + "kreuger": 6.61e-08, + "kri": 6.61e-08, + "krishi": 6.61e-08, + "kristinas": 6.61e-08, + "kruskal": 6.61e-08, + "kuhlmann": 6.61e-08, + "kukui": 6.61e-08, + "kurata": 6.61e-08, + "kuril": 6.61e-08, + "kushan": 6.61e-08, + "kylian": 6.61e-08, + "laan": 6.61e-08, + "ladoga": 6.61e-08, + "lafont": 6.61e-08, + "lafrance": 6.61e-08, + "lagares": 6.61e-08, + "lams": 6.61e-08, + "lambada": 6.61e-08, + "lampley": 6.61e-08, + "lanez": 6.61e-08, + "lanre": 6.61e-08, + "larssons": 6.61e-08, + "lathi": 6.61e-08, + "latinum": 6.61e-08, + "launders": 6.61e-08, + "laundromats": 6.61e-08, + "lawan": 6.61e-08, + "laya": 6.61e-08, + "laypersons": 6.61e-08, + "lcb": 6.61e-08, + "leadbetter": 6.61e-08, + "leflore": 6.61e-08, + "legitimated": 6.61e-08, + "leibnitz": 6.61e-08, + "leninists": 6.61e-08, + "leopolds": 6.61e-08, + "leti": 6.61e-08, + "levasseur": 6.61e-08, + "leverhulme": 6.61e-08, + "limbless": 6.61e-08, + "linsley": 6.61e-08, + "lionels": 6.61e-08, + "lisse": 6.61e-08, + "livingstons": 6.61e-08, + "lockman": 6.61e-08, + "lofthouse": 6.61e-08, + "longboarding": 6.61e-08, + "lorem": 6.61e-08, + "lorentzian": 6.61e-08, + "lothal": 6.61e-08, + "lrg": 6.61e-08, + "lsh": 6.61e-08, + "lsk": 6.61e-08, + "luch": 6.61e-08, + "lummis": 6.61e-08, + "lushly": 6.61e-08, + "luteum": 6.61e-08, + "lysed": 6.61e-08, + "macalester": 6.61e-08, + "macfie": 6.61e-08, + "macken": 6.61e-08, + "madhur": 6.61e-08, + "maecenas": 6.61e-08, + "maen": 6.61e-08, + "magallanes": 6.61e-08, + "magickal": 6.61e-08, + "magie": 6.61e-08, + "magnetised": 6.61e-08, + "magneton": 6.61e-08, + "maharshi": 6.61e-08, + "mahela": 6.61e-08, + "malahide": 6.61e-08, + "mallette": 6.61e-08, + "mallick": 6.61e-08, + "malvolio": 6.61e-08, + "mangalam": 6.61e-08, + "manias": 6.61e-08, + "mannes": 6.61e-08, + "markman": 6.61e-08, + "markoff": 6.61e-08, + "masaaki": 6.61e-08, + "mashiro": 6.61e-08, + "masochists": 6.61e-08, + "masseria": 6.61e-08, + "mastin": 6.61e-08, + "matri": 6.61e-08, + "maturin": 6.61e-08, + "mavens": 6.61e-08, + "mazzone": 6.61e-08, + "mccaleb": 6.61e-08, + "mccarver": 6.61e-08, + "mcferrin": 6.61e-08, + "mckibbin": 6.61e-08, + "mcmillin": 6.61e-08, + "mcmurphy": 6.61e-08, + "meanderings": 6.61e-08, + "meeeee": 6.61e-08, + "mehl": 6.61e-08, + "mehsud": 6.61e-08, + "meighen": 6.61e-08, + "melchett": 6.61e-08, + "memri": 6.61e-08, + "menta": 6.61e-08, + "mentis": 6.61e-08, + "mento": 6.61e-08, + "meon": 6.61e-08, + "meriting": 6.61e-08, + "meritless": 6.61e-08, + "merrow": 6.61e-08, + "mersch": 6.61e-08, + "metabolised": 6.61e-08, + "metallurgists": 6.61e-08, + "meti": 6.61e-08, + "mettenberger": 6.61e-08, + "mexi": 6.61e-08, + "miamisburg": 6.61e-08, + "michalski": 6.61e-08, + "microclimates": 6.61e-08, + "midwesterners": 6.61e-08, + "midwood": 6.61e-08, + "mier": 6.61e-08, + "milad": 6.61e-08, + "mileena": 6.61e-08, + "minuit": 6.61e-08, + "mischaracterized": 6.61e-08, + "miscue": 6.61e-08, + "mislabeling": 6.61e-08, + "missense": 6.61e-08, + "miyata": 6.61e-08, + "mni": 6.61e-08, + "moberg": 6.61e-08, + "mobilities": 6.61e-08, + "moderato": 6.61e-08, + "mome": 6.61e-08, + "monadic": 6.61e-08, + "monophyletic": 6.61e-08, + "monumenta": 6.61e-08, + "mooneys": 6.61e-08, + "moorer": 6.61e-08, + "moradabad": 6.61e-08, + "morcha": 6.61e-08, + "morpork": 6.61e-08, + "mortlock": 6.61e-08, + "mossi": 6.61e-08, + "mountainview": 6.61e-08, + "msy": 6.61e-08, + "mubi": 6.61e-08, + "muchos": 6.61e-08, + "mudie": 6.61e-08, + "muffling": 6.61e-08, + "muggeridge": 6.61e-08, + "muito": 6.61e-08, + "multidirectional": 6.61e-08, + "multisport": 6.61e-08, + "mutineer": 6.61e-08, + "mxr": 6.61e-08, + "mycelia": 6.61e-08, + "myelogenous": 6.61e-08, + "myitkyina": 6.61e-08, + "myrdal": 6.61e-08, + "ndjamena": 6.61e-08, + "naci": 6.61e-08, + "nahda": 6.61e-08, + "naledi": 6.61e-08, + "naomie": 6.61e-08, + "narrabri": 6.61e-08, + "narula": 6.61e-08, + "nashi": 6.61e-08, + "natalee": 6.61e-08, + "navarrete": 6.61e-08, + "nawaf": 6.61e-08, + "needled": 6.61e-08, + "nehisi": 6.61e-08, + "nela": 6.61e-08, + "nemec": 6.61e-08, + "nemerov": 6.61e-08, + "neons": 6.61e-08, + "neoplatonism": 6.61e-08, + "netherton": 6.61e-08, + "netminder": 6.61e-08, + "newtype": 6.61e-08, + "ngorongoro": 6.61e-08, + "nhp": 6.61e-08, + "niland": 6.61e-08, + "nilpotent": 6.61e-08, + "niros": 6.61e-08, + "nisbett": 6.61e-08, + "nmu": 6.61e-08, + "nonequilibrium": 6.61e-08, + "nonmember": 6.61e-08, + "nonresidents": 6.61e-08, + "nordea": 6.61e-08, + "nordland": 6.61e-08, + "nucleolus": 6.61e-08, + "nurseryman": 6.61e-08, + "oakfield": 6.61e-08, + "oaktree": 6.61e-08, + "obviating": 6.61e-08, + "offloads": 6.61e-08, + "ofl": 6.61e-08, + "okonomiyaki": 6.61e-08, + "olamide": 6.61e-08, + "onur": 6.61e-08, + "operationalize": 6.61e-08, + "operettas": 6.61e-08, + "opl": 6.61e-08, + "opta": 6.61e-08, + "orac": 6.61e-08, + "orica": 6.61e-08, + "orto": 6.61e-08, + "ostrov": 6.61e-08, + "otcqx": 6.61e-08, + "ottery": 6.61e-08, + "outsources": 6.61e-08, + "overcooking": 6.61e-08, + "overproduced": 6.61e-08, + "pab": 6.61e-08, + "palatability": 6.61e-08, + "paleness": 6.61e-08, + "pallidum": 6.61e-08, + "palmitic": 6.61e-08, + "palpitation": 6.61e-08, + "paracrine": 6.61e-08, + "parasitical": 6.61e-08, + "parcell": 6.61e-08, + "parfums": 6.61e-08, + "parnas": 6.61e-08, + "parnes": 6.61e-08, + "partir": 6.61e-08, + "pase": 6.61e-08, + "passably": 6.61e-08, + "patrie": 6.61e-08, + "pbg": 6.61e-08, + "pdgf": 6.61e-08, + "pearlescent": 6.61e-08, + "peckinpah": 6.61e-08, + "peices": 6.61e-08, + "perfecta": 6.61e-08, + "peyser": 6.61e-08, + "pfw": 6.61e-08, + "phagocytes": 6.61e-08, + "phantasms": 6.61e-08, + "pharmas": 6.61e-08, + "pharmaceutics": 6.61e-08, + "pharmd": 6.61e-08, + "pheochromocytoma": 6.61e-08, + "philbrick": 6.61e-08, + "photius": 6.61e-08, + "pietism": 6.61e-08, + "piotrowski": 6.61e-08, + "pixley": 6.61e-08, + "plantronics": 6.61e-08, + "playboi": 6.61e-08, + "playtex": 6.61e-08, + "plexi": 6.61e-08, + "pluperfect": 6.61e-08, + "pluripotency": 6.61e-08, + "polonsky": 6.61e-08, + "polygenic": 6.61e-08, + "polygonum": 6.61e-08, + "polyneuropathy": 6.61e-08, + "pompeys": 6.61e-08, + "porlock": 6.61e-08, + "portmeirion": 6.61e-08, + "positio": 6.61e-08, + "potentia": 6.61e-08, + "poulos": 6.61e-08, + "prabhakaran": 6.61e-08, + "practicals": 6.61e-08, + "pragya": 6.61e-08, + "pralines": 6.61e-08, + "precheck": 6.61e-08, + "prodrug": 6.61e-08, + "proscribe": 6.61e-08, + "proselytism": 6.61e-08, + "prousts": 6.61e-08, + "proyecto": 6.61e-08, + "publico": 6.61e-08, + "puella": 6.61e-08, + "pullups": 6.61e-08, + "punchestown": 6.61e-08, + "purdie": 6.61e-08, + "purrfect": 6.61e-08, + "putnams": 6.61e-08, + "pyros": 6.61e-08, + "qadi": 6.61e-08, + "qtip": 6.61e-08, + "quadruples": 6.61e-08, + "quaff": 6.61e-08, + "quango": 6.61e-08, + "quevedo": 6.61e-08, + "quickdraw": 6.61e-08, + "quimper": 6.61e-08, + "quinte": 6.61e-08, + "qy": 6.61e-08, + "raben": 6.61e-08, + "ranelagh": 6.61e-08, + "raphaelites": 6.61e-08, + "rasen": 6.61e-08, + "rashness": 6.61e-08, + "ravening": 6.61e-08, + "ravenwood": 6.61e-08, + "razia": 6.61e-08, + "rcf": 6.61e-08, + "recognisably": 6.61e-08, + "redlich": 6.61e-08, + "regu": 6.61e-08, + "regulative": 6.61e-08, + "reincorporated": 6.61e-08, + "reinsert": 6.61e-08, + "repot": 6.61e-08, + "repotting": 6.61e-08, + "representativeness": 6.61e-08, + "reproved": 6.61e-08, + "resealable": 6.61e-08, + "resh": 6.61e-08, + "retransmit": 6.61e-08, + "retrench": 6.61e-08, + "revenges": 6.61e-08, + "revilla": 6.61e-08, + "ribonuclease": 6.61e-08, + "rictus": 6.61e-08, + "riemer": 6.61e-08, + "risin": 6.61e-08, + "ritt": 6.61e-08, + "rld": 6.61e-08, + "roel": 6.61e-08, + "rollerblade": 6.61e-08, + "rops": 6.61e-08, + "roskam": 6.61e-08, + "rossoneri": 6.61e-08, + "rostow": 6.61e-08, + "rpers": 6.61e-08, + "ruane": 6.61e-08, + "rugosa": 6.61e-08, + "rundell": 6.61e-08, + "runkeeper": 6.61e-08, + "rvr": 6.61e-08, + "ryne": 6.61e-08, + "ryszard": 6.61e-08, + "sadowski": 6.61e-08, + "saina": 6.61e-08, + "sallies": 6.61e-08, + "salmans": 6.61e-08, + "samora": 6.61e-08, + "sancerre": 6.61e-08, + "sandboxes": 6.61e-08, + "sandon": 6.61e-08, + "sanremo": 6.61e-08, + "santal": 6.61e-08, + "saphenous": 6.61e-08, + "saron": 6.61e-08, + "sartain": 6.61e-08, + "savigny": 6.61e-08, + "sayan": 6.61e-08, + "sayest": 6.61e-08, + "sbarro": 6.61e-08, + "scag": 6.61e-08, + "scally": 6.61e-08, + "scaphoid": 6.61e-08, + "scarfed": 6.61e-08, + "scarps": 6.61e-08, + "scheele": 6.61e-08, + "schlepping": 6.61e-08, + "scholia": 6.61e-08, + "schumanns": 6.61e-08, + "schutt": 6.61e-08, + "scorpios": 6.61e-08, + "scribing": 6.61e-08, + "scrooges": 6.61e-08, + "sdv": 6.61e-08, + "seamy": 6.61e-08, + "seeder": 6.61e-08, + "seeth": 6.61e-08, + "segways": 6.61e-08, + "seismometer": 6.61e-08, + "seismometers": 6.61e-08, + "seit": 6.61e-08, + "sej": 6.61e-08, + "sems": 6.61e-08, + "senshi": 6.61e-08, + "seperating": 6.61e-08, + "sequiturs": 6.61e-08, + "serrata": 6.61e-08, + "serrate": 6.61e-08, + "servia": 6.61e-08, + "servicios": 6.61e-08, + "setanta": 6.61e-08, + "setts": 6.61e-08, + "shab": 6.61e-08, + "shabnam": 6.61e-08, + "shadab": 6.61e-08, + "shakurs": 6.61e-08, + "shala": 6.61e-08, + "shambala": 6.61e-08, + "shanda": 6.61e-08, + "sharpes": 6.61e-08, + "sheathe": 6.61e-08, + "sheikha": 6.61e-08, + "shiet": 6.61e-08, + "shiffrin": 6.61e-08, + "shoeboxes": 6.61e-08, + "shoemaking": 6.61e-08, + "sholl": 6.61e-08, + "shoppin": 6.61e-08, + "shuttlesworth": 6.61e-08, + "sialic": 6.61e-08, + "sibylla": 6.61e-08, + "sidley": 6.61e-08, + "siegal": 6.61e-08, + "siegler": 6.61e-08, + "sien": 6.61e-08, + "similitude": 6.61e-08, + "simonetta": 6.61e-08, + "sistem": 6.61e-08, + "sitges": 6.61e-08, + "skaneateles": 6.61e-08, + "skellington": 6.61e-08, + "skidoo": 6.61e-08, + "skoal": 6.61e-08, + "skyhawk": 6.61e-08, + "slackness": 6.61e-08, + "sleighs": 6.61e-08, + "slurries": 6.61e-08, + "smeagol": 6.61e-08, + "smita": 6.61e-08, + "smoothes": 6.61e-08, + "socking": 6.61e-08, + "sokolow": 6.61e-08, + "soldat": 6.61e-08, + "sommes": 6.61e-08, + "songbooks": 6.61e-08, + "sorcha": 6.61e-08, + "sorr": 6.61e-08, + "sout": 6.61e-08, + "spalling": 6.61e-08, + "spazzing": 6.61e-08, + "spectrometric": 6.61e-08, + "spermicide": 6.61e-08, + "spitball": 6.61e-08, + "spitefully": 6.61e-08, + "splendors": 6.61e-08, + "spruance": 6.61e-08, + "squirreled": 6.61e-08, + "stalemated": 6.61e-08, + "standen": 6.61e-08, + "stati": 6.61e-08, + "steenkamp": 6.61e-08, + "stefansson": 6.61e-08, + "steff": 6.61e-08, + "stepsons": 6.61e-08, + "stopford": 6.61e-08, + "stouffer": 6.61e-08, + "straggly": 6.61e-08, + "strategys": 6.61e-08, + "strobing": 6.61e-08, + "subcontracts": 6.61e-08, + "subscales": 6.61e-08, + "subst": 6.61e-08, + "sulfurous": 6.61e-08, + "sumire": 6.61e-08, + "superintendant": 6.61e-08, + "superiore": 6.61e-08, + "surveymonkey": 6.61e-08, + "suspensory": 6.61e-08, + "syosset": 6.61e-08, + "syrus": 6.61e-08, + "tacrolimus": 6.61e-08, + "takamatsu": 6.61e-08, + "takoradi": 6.61e-08, + "takoyaki": 6.61e-08, + "tallgrass": 6.61e-08, + "tamborine": 6.61e-08, + "tapenade": 6.61e-08, + "tarifa": 6.61e-08, + "taru": 6.61e-08, + "tatanka": 6.61e-08, + "tatin": 6.61e-08, + "tatjana": 6.61e-08, + "taxco": 6.61e-08, + "taxol": 6.61e-08, + "tdap": 6.61e-08, + "teaspoonful": 6.61e-08, + "technicolour": 6.61e-08, + "technorati": 6.61e-08, + "tecnologia": 6.61e-08, + "telmex": 6.61e-08, + "teratoma": 6.61e-08, + "terkel": 6.61e-08, + "tero": 6.61e-08, + "terp": 6.61e-08, + "testo": 6.61e-08, + "tetchy": 6.61e-08, + "tetragrammaton": 6.61e-08, + "tetraploid": 6.61e-08, + "texoma": 6.61e-08, + "thandi": 6.61e-08, + "thandie": 6.61e-08, + "theobromine": 6.61e-08, + "thinspiration": 6.61e-08, + "thit": 6.61e-08, + "thorazine": 6.61e-08, + "thoroughgoing": 6.61e-08, + "tiepolo": 6.61e-08, + "timea": 6.61e-08, + "timesheet": 6.61e-08, + "tisza": 6.61e-08, + "tldr": 6.61e-08, + "toan": 6.61e-08, + "tocantins": 6.61e-08, + "toddling": 6.61e-08, + "todmorden": 6.61e-08, + "toge": 6.61e-08, + "toity": 6.61e-08, + "toledos": 6.61e-08, + "tomaso": 6.61e-08, + "tombola": 6.61e-08, + "tonnages": 6.61e-08, + "toray": 6.61e-08, + "toretto": 6.61e-08, + "toris": 6.61e-08, + "tosin": 6.61e-08, + "toucans": 6.61e-08, + "tournai": 6.61e-08, + "tpms": 6.61e-08, + "tracings": 6.61e-08, + "traineeships": 6.61e-08, + "transited": 6.61e-08, + "transmuting": 6.61e-08, + "transwoman": 6.61e-08, + "travelocity": 6.61e-08, + "trellises": 6.61e-08, + "trews": 6.61e-08, + "treys": 5.25e-08, + "trialing": 6.61e-08, + "tribology": 6.61e-08, + "trico": 6.61e-08, + "trillanes": 6.61e-08, + "tritone": 6.61e-08, + "troma": 6.61e-08, + "truncheons": 6.61e-08, + "tullahoma": 6.61e-08, + "tumuli": 6.61e-08, + "turia": 6.61e-08, + "tuthill": 6.61e-08, + "twila": 6.61e-08, + "twofer": 6.61e-08, + "uat": 6.61e-08, + "udupi": 6.61e-08, + "uesugi": 6.61e-08, + "umana": 6.61e-08, + "unaccepted": 6.61e-08, + "unacquainted": 6.61e-08, + "uncared": 6.61e-08, + "undefiled": 6.61e-08, + "undersheriff": 6.61e-08, + "unflavored": 6.61e-08, + "unfortunatly": 6.61e-08, + "unhappiest": 6.61e-08, + "unica": 6.61e-08, + "unilateralism": 6.61e-08, + "unmeasurable": 6.61e-08, + "unpeeled": 6.61e-08, + "unproved": 6.61e-08, + "unreason": 6.61e-08, + "unseasonal": 6.61e-08, + "unserviceable": 6.61e-08, + "unset": 6.61e-08, + "untimed": 6.61e-08, + "upbraided": 6.61e-08, + "urbervilles": 6.61e-08, + "urien": 6.61e-08, + "urry": 6.61e-08, + "usaaf": 6.61e-08, + "uttara": 6.61e-08, + "uvic": 6.61e-08, + "uyuni": 6.61e-08, + "vaccum": 6.61e-08, + "vade": 6.61e-08, + "vahid": 6.61e-08, + "valspar": 6.61e-08, + "valved": 6.61e-08, + "valvoline": 6.61e-08, + "vartan": 6.61e-08, + "vattenfall": 6.61e-08, + "vaudreuil": 6.61e-08, + "vcp": 6.61e-08, + "velu": 6.61e-08, + "venegas": 6.61e-08, + "verden": 6.61e-08, + "verrett": 6.61e-08, + "vidarbha": 6.61e-08, + "viis": 6.61e-08, + "villians": 6.61e-08, + "vivaldis": 6.61e-08, + "vlr": 6.61e-08, + "voges": 6.61e-08, + "volcom": 6.61e-08, + "vonneguts": 6.61e-08, + "voya": 6.61e-08, + "vpa": 6.61e-08, + "vrbata": 6.61e-08, + "wachowski": 6.61e-08, + "wader": 6.61e-08, + "walberg": 6.61e-08, + "wallenda": 6.61e-08, + "wanneroo": 6.61e-08, + "washerwoman": 6.61e-08, + "waterspouts": 6.61e-08, + "wayfaring": 6.61e-08, + "wcm": 6.61e-08, + "webcasting": 6.61e-08, + "wedel": 6.61e-08, + "weekenders": 6.61e-08, + "weirds": 6.61e-08, + "wellss": 6.61e-08, + "westermann": 6.61e-08, + "whacko": 6.61e-08, + "whaddaya": 6.61e-08, + "whiteheads": 6.03e-08, + "wiel": 6.61e-08, + "wildernesses": 6.61e-08, + "wolfing": 6.61e-08, + "womersley": 6.61e-08, + "wondercon": 6.61e-08, + "wontons": 6.61e-08, + "woodend": 6.61e-08, + "woolford": 6.61e-08, + "worke": 6.61e-08, + "wrangel": 6.61e-08, + "writable": 6.61e-08, + "writen": 6.61e-08, + "wtd": 6.61e-08, + "wurtz": 6.61e-08, + "xdrive": 6.61e-08, + "xsl": 6.61e-08, + "xus": 6.61e-08, + "yabba": 6.61e-08, + "yakupov": 6.61e-08, + "yeatman": 6.61e-08, + "yelverton": 6.61e-08, + "yohei": 6.61e-08, + "yoshitsune": 6.61e-08, + "youcan": 6.61e-08, + "youkai": 6.61e-08, + "ytl": 6.61e-08, + "zakk": 6.61e-08, + "zarco": 6.61e-08, + "zella": 6.61e-08, + "zem": 6.61e-08, + "zipcode": 6.61e-08, + "abbaye": 6.46e-08, + "abidin": 6.46e-08, + "abie": 6.46e-08, + "abiy": 6.46e-08, + "abjuration": 6.46e-08, + "aboud": 6.46e-08, + "acci": 6.46e-08, + "accordionist": 6.46e-08, + "acdelco": 6.46e-08, + "activa": 6.46e-08, + "adis": 6.46e-08, + "adly": 6.46e-08, + "adorableness": 6.46e-08, + "adoringly": 6.46e-08, + "afshar": 6.46e-08, + "ahf": 6.46e-08, + "aihl": 6.46e-08, + "aimes": 6.46e-08, + "airbending": 6.46e-08, + "akb": 6.46e-08, + "akh": 6.46e-08, + "akpom": 6.46e-08, + "albufeira": 6.46e-08, + "alewife": 6.46e-08, + "alfre": 6.46e-08, + "alise": 6.46e-08, + "allaying": 6.46e-08, + "alloted": 6.46e-08, + "almon": 6.46e-08, + "alnus": 6.46e-08, + "alrite": 6.46e-08, + "altaic": 6.46e-08, + "alycia": 6.46e-08, + "alysia": 6.46e-08, + "amna": 6.46e-08, + "amortize": 6.46e-08, + "amran": 6.46e-08, + "amyas": 6.46e-08, + "ancho": 6.46e-08, + "anchorwoman": 6.46e-08, + "anges": 6.46e-08, + "angevin": 6.46e-08, + "anitta": 6.46e-08, + "annalen": 6.46e-08, + "annnnnd": 6.46e-08, + "anpr": 6.46e-08, + "antiparallel": 6.46e-08, + "antipasto": 6.46e-08, + "apink": 6.46e-08, + "appius": 6.46e-08, + "appledore": 6.46e-08, + "applicative": 6.46e-08, + "arachnoid": 6.46e-08, + "arenberg": 6.46e-08, + "armco": 6.46e-08, + "armytage": 6.46e-08, + "arrigo": 6.46e-08, + "assesment": 6.46e-08, + "audiologists": 6.46e-08, + "autofill": 6.46e-08, + "automatism": 6.46e-08, + "aveiro": 6.46e-08, + "avena": 6.46e-08, + "avera": 6.46e-08, + "aweful": 6.46e-08, + "axtell": 6.46e-08, + "ayanna": 6.46e-08, + "aycock": 6.46e-08, + "ays": 6.46e-08, + "azumi": 6.46e-08, + "babbit": 6.46e-08, + "badwater": 6.46e-08, + "baik": 6.46e-08, + "baila": 6.46e-08, + "baillargeon": 6.46e-08, + "baldry": 6.46e-08, + "bambini": 6.46e-08, + "barletta": 6.46e-08, + "barta": 6.46e-08, + "bartman": 6.46e-08, + "bashirs": 6.46e-08, + "batumi": 6.46e-08, + "baxendale": 6.46e-08, + "bayi": 6.46e-08, + "bdu": 6.46e-08, + "beamforming": 6.46e-08, + "beardmore": 6.46e-08, + "beato": 6.46e-08, + "bebb": 6.46e-08, + "beerbohm": 6.46e-08, + "behaviourist": 6.46e-08, + "behm": 6.46e-08, + "belka": 6.46e-08, + "benintendi": 6.46e-08, + "bercy": 6.46e-08, + "berryhill": 6.46e-08, + "berthoud": 6.46e-08, + "bessette": 6.46e-08, + "beton": 6.46e-08, + "bgb": 6.46e-08, + "bhavnagar": 6.46e-08, + "bhe": 6.46e-08, + "bhf": 6.46e-08, + "bigby": 6.46e-08, + "bikeshare": 6.46e-08, + "biltong": 6.46e-08, + "biologie": 6.46e-08, + "biondi": 6.46e-08, + "biopsied": 6.46e-08, + "biotics": 6.46e-08, + "birdhouses": 6.46e-08, + "bischof": 6.46e-08, + "bistable": 6.46e-08, + "bitton": 6.46e-08, + "bizzle": 6.46e-08, + "bjt": 6.46e-08, + "blackwells": 6.46e-08, + "bladerunner": 6.46e-08, + "blainville": 6.46e-08, + "blasi": 6.46e-08, + "bloodsucker": 6.46e-08, + "bluenose": 6.46e-08, + "bluestacks": 6.46e-08, + "blv": 6.46e-08, + "bnn": 6.46e-08, + "bogen": 6.46e-08, + "bombproof": 6.46e-08, + "bonamassa": 6.46e-08, + "bondsmen": 6.46e-08, + "bonnier": 6.46e-08, + "boonton": 6.46e-08, + "bootlicker": 6.46e-08, + "borderlines": 6.46e-08, + "borodino": 6.46e-08, + "botetourt": 6.46e-08, + "bouygues": 6.46e-08, + "braxtons": 6.46e-08, + "brel": 6.46e-08, + "brockley": 6.46e-08, + "broncho": 6.46e-08, + "brookie": 6.46e-08, + "buchner": 6.46e-08, + "builded": 6.46e-08, + "bumstead": 6.46e-08, + "bundelkhand": 6.46e-08, + "buro": 6.46e-08, + "buyeo": 6.46e-08, + "byre": 6.46e-08, + "byres": 6.46e-08, + "caba": 6.46e-08, + "cabinda": 6.46e-08, + "cacciatore": 6.46e-08, + "cafta": 6.46e-08, + "cairncross": 6.46e-08, + "caitriona": 6.46e-08, + "cankles": 6.46e-08, + "canva": 6.46e-08, + "caracol": 6.46e-08, + "careering": 6.46e-08, + "carlyon": 6.46e-08, + "carolan": 6.46e-08, + "carthy": 6.46e-08, + "carvey": 6.46e-08, + "casemate": 6.46e-08, + "cashout": 6.46e-08, + "casteel": 6.46e-08, + "castmates": 6.46e-08, + "cataldo": 6.46e-08, + "catechists": 6.46e-08, + "cathrine": 6.46e-08, + "cattails": 6.46e-08, + "cavuto": 6.46e-08, + "cccc": 6.46e-08, + "ceasefires": 6.46e-08, + "cecum": 6.46e-08, + "celebre": 6.46e-08, + "cenomanian": 6.46e-08, + "chalkboards": 6.46e-08, + "chall": 6.46e-08, + "chamfer": 6.46e-08, + "champollion": 6.46e-08, + "chango": 6.46e-08, + "charlottenburg": 6.46e-08, + "cheesemakers": 6.46e-08, + "chella": 6.46e-08, + "chems": 6.46e-08, + "chessie": 6.46e-08, + "chirk": 6.46e-08, + "chocking": 6.46e-08, + "chome": 6.46e-08, + "chorea": 6.46e-08, + "choti": 6.46e-08, + "chown": 6.46e-08, + "chronica": 6.46e-08, + "cida": 6.46e-08, + "cierra": 6.46e-08, + "ciliate": 6.46e-08, + "ciso": 6.46e-08, + "civilising": 6.46e-08, + "clubb": 6.46e-08, + "coalmine": 6.46e-08, + "cogsworth": 6.46e-08, + "coie": 6.46e-08, + "cokehead": 6.46e-08, + "colombiana": 6.46e-08, + "comecon": 6.46e-08, + "commingling": 6.46e-08, + "comminution": 6.46e-08, + "compensable": 6.46e-08, + "concentrically": 6.46e-08, + "confed": 6.46e-08, + "conjunctival": 6.46e-08, + "constanta": 6.46e-08, + "constructionist": 6.46e-08, + "contraventions": 6.46e-08, + "cony": 6.46e-08, + "copypasta": 6.46e-08, + "coracoid": 6.46e-08, + "corbel": 6.46e-08, + "cordials": 6.46e-08, + "cordyceps": 6.46e-08, + "corinthia": 6.46e-08, + "corkscrews": 6.46e-08, + "corm": 6.46e-08, + "coron": 6.46e-08, + "corticosterone": 6.46e-08, + "cosigner": 6.46e-08, + "couchsurfing": 6.46e-08, + "counterarguments": 6.46e-08, + "counterattacked": 6.46e-08, + "counterattacking": 6.46e-08, + "courtin": 6.46e-08, + "cowers": 6.46e-08, + "crankshafts": 6.46e-08, + "crimps": 6.46e-08, + "cringiest": 6.46e-08, + "cristiana": 6.46e-08, + "crites": 6.46e-08, + "crits": 6.46e-08, + "croons": 6.46e-08, + "crumples": 6.46e-08, + "crunchers": 6.46e-08, + "csec": 6.46e-08, + "csps": 6.46e-08, + "cubesat": 6.46e-08, + "cudworth": 6.46e-08, + "culturalism": 6.46e-08, + "custome": 6.46e-08, + "cynwyd": 6.46e-08, + "dahlonega": 6.46e-08, + "daksha": 6.46e-08, + "dalman": 6.46e-08, + "dareus": 6.46e-08, + "davenant": 6.46e-08, + "dayak": 6.46e-08, + "dazn": 6.46e-08, + "debility": 6.46e-08, + "deciders": 6.46e-08, + "decisis": 6.46e-08, + "deepavali": 6.46e-08, + "defoliation": 6.46e-08, + "dehumanizes": 6.46e-08, + "dekha": 6.46e-08, + "deleveraging": 6.46e-08, + "delo": 6.46e-08, + "demarre": 6.46e-08, + "dendy": 6.46e-08, + "dennie": 6.46e-08, + "depositories": 6.46e-08, + "depredation": 6.46e-08, + "derelicts": 6.46e-08, + "desensitizing": 6.46e-08, + "desiigner": 6.46e-08, + "dessin": 6.46e-08, + "destefano": 6.46e-08, + "detrimentally": 6.46e-08, + "dhingra": 6.46e-08, + "diacritical": 6.46e-08, + "diamagnetic": 6.46e-08, + "dianthus": 6.46e-08, + "didonato": 6.46e-08, + "differnt": 6.46e-08, + "diffracted": 6.46e-08, + "digestives": 6.46e-08, + "dihydrotestosterone": 6.46e-08, + "dimeric": 6.46e-08, + "dipak": 6.46e-08, + "direwolf": 6.46e-08, + "disko": 6.46e-08, + "disrobed": 6.46e-08, + "dissimulation": 6.46e-08, + "distrito": 6.46e-08, + "ditsy": 6.46e-08, + "diverter": 6.46e-08, + "divined": 6.46e-08, + "doddridge": 6.46e-08, + "dogleg": 6.46e-08, + "donga": 6.46e-08, + "dores": 6.46e-08, + "dorey": 6.46e-08, + "dorseys": 6.46e-08, + "dressier": 6.46e-08, + "drivetime": 6.46e-08, + "duathlon": 6.46e-08, + "dubia": 6.46e-08, + "duntroon": 6.46e-08, + "dusen": 6.46e-08, + "duy": 6.46e-08, + "dwan": 6.46e-08, + "dwivedi": 6.46e-08, + "earthporn": 6.46e-08, + "eastwest": 6.46e-08, + "ebike": 6.46e-08, + "ecclesiastics": 6.46e-08, + "echostar": 6.46e-08, + "editorializing": 6.46e-08, + "edythe": 6.46e-08, + "eecs": 6.46e-08, + "efd": 6.46e-08, + "efflorescence": 6.46e-08, + "eglantine": 6.46e-08, + "eileens": 6.46e-08, + "elida": 6.46e-08, + "eliquid": 6.46e-08, + "emanu": 6.46e-08, + "empereur": 6.46e-08, + "empson": 6.46e-08, + "empting": 6.46e-08, + "endl": 6.46e-08, + "endosomes": 6.46e-08, + "enigmatically": 6.46e-08, + "enteritis": 6.46e-08, + "epn": 6.46e-08, + "ergon": 6.46e-08, + "erikas": 6.46e-08, + "erst": 6.46e-08, + "eskdale": 6.46e-08, + "euratom": 6.46e-08, + "evaporators": 6.46e-08, + "evaristo": 6.46e-08, + "everone": 6.46e-08, + "exner": 6.46e-08, + "explorative": 6.46e-08, + "expunging": 6.46e-08, + "eyring": 6.46e-08, + "eysenck": 6.46e-08, + "facultys": 6.46e-08, + "fagus": 6.46e-08, + "fals": 6.46e-08, + "fantastique": 6.46e-08, + "fante": 6.46e-08, + "farnworth": 6.46e-08, + "fase": 6.46e-08, + "fauzi": 6.46e-08, + "favorita": 6.46e-08, + "fawr": 6.46e-08, + "fayose": 6.46e-08, + "fcl": 6.46e-08, + "februar": 6.46e-08, + "ferals": 6.46e-08, + "ferentz": 6.46e-08, + "fertitta": 6.46e-08, + "fischbach": 6.46e-08, + "fishpond": 6.46e-08, + "fitchs": 6.46e-08, + "floodway": 6.46e-08, + "floozy": 6.46e-08, + "floury": 6.46e-08, + "flubs": 6.46e-08, + "flumes": 6.46e-08, + "fluorocarbon": 6.46e-08, + "flyable": 6.46e-08, + "foco": 6.46e-08, + "folkes": 6.46e-08, + "footjob": 6.46e-08, + "forcefulness": 6.46e-08, + "formosan": 6.46e-08, + "forthrightly": 6.46e-08, + "franche": 6.46e-08, + "freelanced": 6.46e-08, + "freethought": 6.46e-08, + "ftg": 6.46e-08, + "fttp": 6.46e-08, + "fued": 6.46e-08, + "fullerenes": 6.46e-08, + "fulls": 6.46e-08, + "fulminate": 6.46e-08, + "fuoco": 6.46e-08, + "furnas": 6.46e-08, + "fxcm": 6.46e-08, + "gadi": 6.46e-08, + "gaitan": 6.46e-08, + "galoshes": 6.46e-08, + "gambrel": 6.46e-08, + "gammell": 6.46e-08, + "ganondorf": 6.46e-08, + "gargamel": 6.46e-08, + "gaudium": 6.46e-08, + "gautham": 6.46e-08, + "gawa": 6.46e-08, + "gebhard": 6.46e-08, + "gemayel": 6.46e-08, + "genderfluid": 6.46e-08, + "genn": 6.46e-08, + "georgiev": 6.46e-08, + "germinates": 6.46e-08, + "gerstner": 6.46e-08, + "gettleman": 6.46e-08, + "geva": 6.46e-08, + "giblin": 6.46e-08, + "girding": 6.46e-08, + "glamorize": 6.46e-08, + "glancy": 6.46e-08, + "glenmorangie": 6.46e-08, + "glitterati": 6.46e-08, + "goatherd": 6.46e-08, + "godchild": 6.46e-08, + "goldies": 6.46e-08, + "googie": 6.46e-08, + "goong": 6.46e-08, + "gooo": 6.46e-08, + "gooooo": 6.46e-08, + "gorgons": 6.46e-08, + "gorrie": 6.46e-08, + "goteborg": 6.46e-08, + "gottwald": 6.46e-08, + "goughs": 6.46e-08, + "gourmets": 6.46e-08, + "gowans": 6.46e-08, + "gpio": 6.46e-08, + "granodiorite": 6.46e-08, + "greenwoods": 6.46e-08, + "gromyko": 6.46e-08, + "growed": 6.46e-08, + "gsf": 6.46e-08, + "guardado": 6.46e-08, + "guestroom": 6.46e-08, + "guidi": 6.46e-08, + "guineans": 6.46e-08, + "guiyang": 6.46e-08, + "gundry": 6.46e-08, + "gunilla": 6.46e-08, + "gunton": 6.46e-08, + "guster": 6.46e-08, + "guzzlers": 6.46e-08, + "gwi": 6.46e-08, + "gyatso": 6.46e-08, + "gyratory": 6.46e-08, + "haffner": 6.46e-08, + "hakam": 6.46e-08, + "hammons": 6.46e-08, + "hanau": 6.46e-08, + "hankin": 6.46e-08, + "hantavirus": 6.46e-08, + "hardcourt": 6.46e-08, + "harriette": 6.46e-08, + "harrower": 6.46e-08, + "hartmut": 6.46e-08, + "hartzell": 6.46e-08, + "hayford": 6.46e-08, + "heatmap": 6.46e-08, + "heider": 6.46e-08, + "heliosphere": 6.46e-08, + "helles": 6.46e-08, + "hennigan": 6.46e-08, + "herbed": 6.46e-08, + "herford": 6.46e-08, + "herzliya": 6.46e-08, + "hese": 6.46e-08, + "heureux": 6.46e-08, + "hewing": 6.46e-08, + "hhr": 6.46e-08, + "hillaryclinton": 6.46e-08, + "himss": 6.46e-08, + "hindle": 6.46e-08, + "hiroaki": 6.46e-08, + "hirschberg": 6.46e-08, + "hitbox": 6.46e-08, + "hlb": 6.46e-08, + "hmr": 6.46e-08, + "hoisin": 6.46e-08, + "holcroft": 6.46e-08, + "holdups": 6.46e-08, + "holic": 6.46e-08, + "hookworms": 6.46e-08, + "horman": 6.46e-08, + "horrigan": 6.46e-08, + "horwich": 6.46e-08, + "hospitallers": 6.46e-08, + "hossam": 6.46e-08, + "hotseat": 6.46e-08, + "howies": 6.46e-08, + "hoyts": 6.46e-08, + "hpg": 6.46e-08, + "hris": 6.46e-08, + "hsueh": 6.46e-08, + "htlv": 6.46e-08, + "hulot": 6.46e-08, + "hulus": 6.46e-08, + "humpy": 6.46e-08, + "hvt": 6.46e-08, + "hyon": 6.46e-08, + "hypercalcemia": 6.46e-08, + "hypotonia": 6.46e-08, + "ichthyosis": 6.46e-08, + "icis": 6.46e-08, + "ihsan": 6.46e-08, + "immokalee": 6.46e-08, + "improvises": 6.46e-08, + "inactions": 6.46e-08, + "inazuma": 6.46e-08, + "incels": 6.46e-08, + "incentivizes": 6.46e-08, + "indissoluble": 6.46e-08, + "inerrant": 6.46e-08, + "inhumanely": 6.46e-08, + "inners": 6.46e-08, + "innovates": 6.46e-08, + "inquisitiveness": 6.46e-08, + "inra": 6.46e-08, + "inseminate": 6.46e-08, + "integument": 6.46e-08, + "intemperance": 6.46e-08, + "interceding": 6.46e-08, + "interconnector": 6.46e-08, + "interferons": 6.46e-08, + "interrupters": 6.46e-08, + "intima": 6.46e-08, + "intramuscularly": 6.46e-08, + "inverdale": 6.46e-08, + "investi": 6.46e-08, + "involute": 6.46e-08, + "ionesco": 6.46e-08, + "ippolito": 6.46e-08, + "iredale": 6.46e-08, + "irizarry": 6.46e-08, + "irss": 6.46e-08, + "isabeau": 6.46e-08, + "islamophobe": 6.46e-08, + "issachar": 6.46e-08, + "itamar": 6.46e-08, + "ivb": 6.46e-08, + "jabar": 6.46e-08, + "jacobsons": 6.46e-08, + "jadzia": 6.46e-08, + "jakobson": 6.46e-08, + "jalaluddin": 6.46e-08, + "jannat": 6.46e-08, + "jassi": 6.46e-08, + "jaswant": 6.46e-08, + "jaunpur": 6.46e-08, + "jei": 6.46e-08, + "jemaah": 6.46e-08, + "jencks": 6.46e-08, + "jigen": 6.46e-08, + "jihyo": 6.46e-08, + "jism": 6.46e-08, + "jnana": 6.46e-08, + "jonatan": 6.46e-08, + "jonna": 6.46e-08, + "joram": 6.46e-08, + "jorges": 6.46e-08, + "joyriding": 6.46e-08, + "jtag": 6.46e-08, + "juntos": 6.46e-08, + "kada": 6.46e-08, + "kado": 6.46e-08, + "kaelin": 6.46e-08, + "kahit": 6.46e-08, + "kalinda": 6.46e-08, + "kalmbach": 6.46e-08, + "kanchipuram": 6.46e-08, + "karazhan": 6.46e-08, + "karlovy": 6.46e-08, + "karrie": 6.46e-08, + "katipunan": 6.46e-08, + "kawano": 6.46e-08, + "kebede": 6.46e-08, + "kemet": 6.46e-08, + "kerin": 6.46e-08, + "kerrey": 6.46e-08, + "ketan": 6.46e-08, + "keyboarding": 6.46e-08, + "khader": 6.46e-08, + "khobar": 6.46e-08, + "kilwinning": 6.46e-08, + "kimberlys": 6.46e-08, + "kindertransport": 6.46e-08, + "kisii": 6.46e-08, + "klk": 6.46e-08, + "kloof": 6.46e-08, + "kluwe": 6.46e-08, + "kneeing": 6.46e-08, + "kohima": 6.46e-08, + "kohlschreiber": 6.46e-08, + "kollam": 6.46e-08, + "kontrol": 6.46e-08, + "kriegsmarine": 6.46e-08, + "krog": 6.46e-08, + "krypto": 6.46e-08, + "krysten": 6.46e-08, + "kubik": 6.46e-08, + "kufa": 6.46e-08, + "kunda": 6.46e-08, + "kurian": 6.46e-08, + "kurosawas": 6.46e-08, + "kwanza": 6.46e-08, + "kyne": 6.46e-08, + "laburnum": 6.46e-08, + "lachie": 6.46e-08, + "lakey": 6.46e-08, + "lamborn": 6.46e-08, + "laminae": 6.46e-08, + "landgrave": 6.46e-08, + "landseer": 6.46e-08, + "langen": 6.46e-08, + "langues": 6.46e-08, + "lapdogs": 6.46e-08, + "larking": 6.46e-08, + "larter": 6.46e-08, + "larus": 6.46e-08, + "larvitar": 6.46e-08, + "lassalle": 6.46e-08, + "lauter": 6.46e-08, + "lcf": 6.46e-08, + "lcn": 6.46e-08, + "leaseholder": 6.46e-08, + "lefort": 6.46e-08, + "legations": 6.46e-08, + "lerners": 6.46e-08, + "leuchars": 6.46e-08, + "lewton": 6.46e-08, + "liberum": 6.46e-08, + "lifesciences": 6.46e-08, + "liouville": 6.46e-08, + "listeriosis": 6.46e-08, + "literates": 6.46e-08, + "livens": 6.46e-08, + "liveright": 6.46e-08, + "lli": 6.46e-08, + "lofi": 6.46e-08, + "longlegs": 6.46e-08, + "longwall": 6.46e-08, + "lorenza": 6.46e-08, + "lors": 6.46e-08, + "lort": 6.46e-08, + "lovingkindness": 6.46e-08, + "lsn": 6.46e-08, + "ltf": 6.46e-08, + "lucchese": 6.46e-08, + "lucchesi": 6.46e-08, + "luckman": 6.46e-08, + "luer": 6.46e-08, + "mabo": 6.46e-08, + "mabon": 6.46e-08, + "maccarthy": 6.46e-08, + "macdermott": 6.46e-08, + "macfarlanes": 6.46e-08, + "mainstem": 6.46e-08, + "makarios": 6.46e-08, + "mallows": 6.46e-08, + "mandeep": 6.46e-08, + "manderson": 6.46e-08, + "mandira": 6.46e-08, + "manichaean": 6.46e-08, + "manics": 6.46e-08, + "manigault": 6.46e-08, + "mannan": 6.46e-08, + "manrique": 6.46e-08, + "manziels": 6.46e-08, + "mapmakers": 6.46e-08, + "marcano": 6.46e-08, + "marinetti": 6.46e-08, + "marketeer": 6.46e-08, + "marot": 6.46e-08, + "marss": 6.46e-08, + "martos": 6.46e-08, + "masahiko": 6.46e-08, + "masdar": 6.46e-08, + "matabeleland": 6.46e-08, + "matsudaira": 6.46e-08, + "mattock": 6.46e-08, + "mauk": 6.46e-08, + "mbatha": 6.46e-08, + "mcclory": 6.46e-08, + "mceachern": 6.46e-08, + "mcentee": 6.46e-08, + "mckinnons": 6.46e-08, + "mcnugget": 6.46e-08, + "meador": 6.46e-08, + "mechelen": 6.46e-08, + "medinah": 6.46e-08, + "melhor": 6.46e-08, + "memed": 6.46e-08, + "menem": 6.46e-08, + "meningioma": 6.46e-08, + "mephedrone": 6.46e-08, + "merapi": 6.46e-08, + "meridien": 6.46e-08, + "metabolomics": 6.46e-08, + "metacognitive": 6.46e-08, + "mgtow": 6.46e-08, + "michalak": 6.46e-08, + "michalek": 6.46e-08, + "micheline": 6.46e-08, + "micrograph": 6.46e-08, + "midhurst": 6.46e-08, + "midol": 6.46e-08, + "midsummers": 6.46e-08, + "miel": 6.46e-08, + "milb": 6.46e-08, + "milers": 6.46e-08, + "militarisation": 6.46e-08, + "milkha": 6.46e-08, + "minbar": 6.46e-08, + "mindstorms": 6.46e-08, + "minigun": 6.46e-08, + "minu": 6.46e-08, + "mirsky": 6.46e-08, + "miscible": 6.46e-08, + "mitanni": 6.46e-08, + "mmkay": 6.46e-08, + "modu": 6.46e-08, + "monie": 6.46e-08, + "monosaccharides": 6.46e-08, + "montalban": 6.46e-08, + "montepulciano": 6.46e-08, + "moony": 6.46e-08, + "moosehead": 6.46e-08, + "morella": 6.46e-08, + "morr": 6.46e-08, + "morrows": 6.46e-08, + "mortify": 6.46e-08, + "mortimers": 6.46e-08, + "morts": 6.46e-08, + "mouret": 6.46e-08, + "moviefone": 6.46e-08, + "msha": 6.46e-08, + "mujib": 6.46e-08, + "mukasey": 6.46e-08, + "mulhern": 6.46e-08, + "murphey": 6.46e-08, + "musc": 6.46e-08, + "mushed": 6.46e-08, + "mussed": 6.46e-08, + "musto": 6.46e-08, + "mwai": 6.46e-08, + "myla": 6.46e-08, + "mystifies": 6.46e-08, + "mythologized": 6.46e-08, + "naaman": 6.46e-08, + "nadar": 6.46e-08, + "nadie": 6.46e-08, + "nakasone": 6.46e-08, + "nambla": 6.46e-08, + "namek": 6.46e-08, + "ndm": 6.46e-08, + "neapolis": 6.46e-08, + "neckar": 6.46e-08, + "neeta": 6.46e-08, + "negron": 6.46e-08, + "neoconservatism": 6.46e-08, + "nephrite": 6.46e-08, + "nephrologist": 6.46e-08, + "neugebauer": 6.46e-08, + "neutra": 6.46e-08, + "neveu": 6.46e-08, + "newsmaker": 6.46e-08, + "nicci": 6.46e-08, + "nidus": 6.46e-08, + "niggardly": 6.46e-08, + "nikolayevich": 6.46e-08, + "nikons": 6.46e-08, + "nirbhaya": 6.46e-08, + "njoy": 6.46e-08, + "nkomo": 6.46e-08, + "nlra": 6.46e-08, + "nobuyuki": 6.46e-08, + "noct": 6.46e-08, + "nokomis": 6.46e-08, + "nonacademic": 6.46e-08, + "nonlocal": 6.46e-08, + "nonpolitical": 6.46e-08, + "nowicki": 6.46e-08, + "nozawa": 6.46e-08, + "nugents": 6.46e-08, + "nuo": 6.46e-08, + "oakbrook": 6.46e-08, + "obeah": 6.46e-08, + "obliquity": 6.46e-08, + "oceangoing": 6.46e-08, + "ocf": 6.46e-08, + "oecs": 6.46e-08, + "ogl": 6.46e-08, + "ohashi": 6.46e-08, + "okehampton": 6.46e-08, + "okinawans": 6.46e-08, + "olafs": 6.46e-08, + "olbia": 6.46e-08, + "olea": 6.46e-08, + "oliviers": 6.46e-08, + "olongapo": 6.46e-08, + "olvera": 6.46e-08, + "omics": 6.46e-08, + "onkyo": 6.46e-08, + "oohhh": 6.46e-08, + "oooooooh": 6.46e-08, + "opelousas": 6.46e-08, + "ophiolite": 6.46e-08, + "ophthalmological": 6.46e-08, + "orlova": 6.46e-08, + "oscorp": 6.46e-08, + "outof": 6.46e-08, + "outplacement": 6.46e-08, + "ovata": 6.46e-08, + "overcharges": 6.46e-08, + "overindulge": 6.46e-08, + "overwrites": 6.46e-08, + "ovie": 6.46e-08, + "ower": 6.46e-08, + "oxblood": 6.46e-08, + "packards": 6.46e-08, + "paderewski": 6.46e-08, + "palance": 6.46e-08, + "palencia": 6.46e-08, + "pamby": 6.46e-08, + "pantages": 6.46e-08, + "paralyses": 6.46e-08, + "paraprofessional": 6.46e-08, + "parroted": 6.46e-08, + "pasqua": 6.46e-08, + "pastebin": 6.46e-08, + "pasteurised": 6.46e-08, + "pathfinding": 6.46e-08, + "patridge": 6.46e-08, + "pbf": 6.46e-08, + "pbn": 6.46e-08, + "peko": 6.46e-08, + "penpal": 6.46e-08, + "pepsin": 6.46e-08, + "perpendiculars": 6.46e-08, + "perrone": 6.46e-08, + "persecutes": 6.46e-08, + "peseta": 6.46e-08, + "pestalozzi": 6.46e-08, + "petkov": 6.46e-08, + "petropavlovsk": 6.46e-08, + "petrosian": 6.46e-08, + "petterson": 6.46e-08, + "phenotypically": 6.46e-08, + "phonesex": 6.46e-08, + "photic": 6.46e-08, + "phyto": 6.46e-08, + "phytosanitary": 6.46e-08, + "pieds": 6.46e-08, + "pietsch": 6.46e-08, + "pigot": 6.46e-08, + "pilaster": 6.46e-08, + "pimms": 6.46e-08, + "pinault": 6.46e-08, + "pinkertons": 6.46e-08, + "pipelining": 6.46e-08, + "piteous": 6.46e-08, + "plekhanov": 6.46e-08, + "poblano": 6.46e-08, + "poche": 6.46e-08, + "poki": 6.46e-08, + "polizzi": 6.46e-08, + "pomace": 6.46e-08, + "ponts": 6.46e-08, + "poonch": 6.46e-08, + "populates": 6.46e-08, + "potsdamer": 6.46e-08, + "powdering": 6.46e-08, + "poweredge": 6.46e-08, + "prakashan": 6.46e-08, + "prakrit": 6.46e-08, + "precognitive": 6.46e-08, + "presbyters": 6.46e-08, + "pria": 6.46e-08, + "priyas": 6.46e-08, + "probationer": 6.46e-08, + "procurer": 6.46e-08, + "proffitt": 6.46e-08, + "propecia": 6.46e-08, + "propria": 6.46e-08, + "prototyped": 6.46e-08, + "puissant": 6.46e-08, + "pulsate": 6.46e-08, + "pulsatile": 6.46e-08, + "pwllheli": 6.46e-08, + "pyrus": 6.46e-08, + "qiagen": 6.46e-08, + "qianlong": 6.46e-08, + "qmjhl": 6.46e-08, + "quangos": 6.46e-08, + "quantrill": 6.46e-08, + "questi": 6.46e-08, + "raceday": 6.46e-08, + "rahma": 6.46e-08, + "railton": 6.46e-08, + "rambla": 6.46e-08, + "ramji": 6.46e-08, + "randhir": 6.46e-08, + "rangelands": 6.46e-08, + "rantoul": 6.46e-08, + "rasps": 6.46e-08, + "rationals": 6.46e-08, + "rawnsley": 6.46e-08, + "raynham": 6.46e-08, + "razzie": 6.46e-08, + "rebase": 6.46e-08, + "recompile": 6.46e-08, + "recordist": 6.46e-08, + "redbacks": 6.46e-08, + "redbreast": 6.46e-08, + "rededication": 6.46e-08, + "reflexion": 6.46e-08, + "regarde": 6.46e-08, + "regresses": 6.46e-08, + "regularize": 6.46e-08, + "regum": 6.46e-08, + "rehovot": 6.46e-08, + "reiche": 6.46e-08, + "reimers": 6.46e-08, + "remnick": 6.46e-08, + "remonstrance": 6.46e-08, + "remonstrate": 6.46e-08, + "renai": 6.46e-08, + "rendall": 6.46e-08, + "renge": 6.46e-08, + "renick": 6.46e-08, + "renuka": 6.46e-08, + "reoffend": 6.46e-08, + "reppin": 6.46e-08, + "reprobates": 6.46e-08, + "reredos": 6.46e-08, + "rescript": 6.46e-08, + "reshapes": 6.46e-08, + "restaurante": 6.46e-08, + "retief": 6.46e-08, + "rewording": 6.46e-08, + "rhodia": 6.46e-08, + "rhyne": 6.46e-08, + "ribe": 6.46e-08, + "ribot": 6.46e-08, + "richemont": 6.46e-08, + "riddling": 6.46e-08, + "ridgeview": 6.46e-08, + "rieder": 6.46e-08, + "riksdag": 6.46e-08, + "rish": 6.46e-08, + "riso": 6.46e-08, + "rizz": 6.46e-08, + "robsons": 6.46e-08, + "rochon": 6.46e-08, + "rohani": 6.46e-08, + "ronk": 6.46e-08, + "rorke": 6.46e-08, + "rosaura": 6.46e-08, + "rosenberger": 6.46e-08, + "rosenheim": 6.46e-08, + "rossby": 6.46e-08, + "rotatably": 6.46e-08, + "rovaniemi": 6.46e-08, + "rowlandson": 6.46e-08, + "roxburghe": 6.46e-08, + "ruffner": 6.46e-08, + "rummenigge": 6.46e-08, + "russiagate": 6.46e-08, + "ruyter": 6.46e-08, + "rvn": 6.46e-08, + "saale": 6.46e-08, + "sacd": 6.46e-08, + "saclay": 6.46e-08, + "sagara": 6.46e-08, + "sakhi": 6.46e-08, + "salvy": 6.46e-08, + "samizdat": 6.46e-08, + "sandblasted": 6.46e-08, + "sandridge": 6.46e-08, + "sandstrom": 6.46e-08, + "sangyo": 6.46e-08, + "saponins": 6.46e-08, + "saros": 6.46e-08, + "sarsfield": 6.46e-08, + "saviano": 6.46e-08, + "savoia": 6.46e-08, + "scandalised": 6.46e-08, + "scap": 6.46e-08, + "schenley": 6.46e-08, + "schlager": 6.46e-08, + "schleiermacher": 6.46e-08, + "schlick": 6.46e-08, + "scotias": 6.46e-08, + "scottsbluff": 6.46e-08, + "scottsville": 6.46e-08, + "scribblings": 6.46e-08, + "sealife": 6.46e-08, + "seamans": 6.46e-08, + "seamens": 6.46e-08, + "seaquest": 6.46e-08, + "seawalls": 6.46e-08, + "sebago": 6.46e-08, + "sedimentology": 6.46e-08, + "segar": 6.46e-08, + "seiki": 6.46e-08, + "seitan": 6.46e-08, + "sejanus": 6.46e-08, + "sektor": 6.46e-08, + "selle": 6.46e-08, + "sempai": 6.46e-08, + "senatus": 6.46e-08, + "senter": 6.46e-08, + "sentimentalist": 6.46e-08, + "senussi": 6.46e-08, + "sepal": 6.46e-08, + "serifs": 6.46e-08, + "serjeants": 6.46e-08, + "seus": 6.46e-08, + "sexts": 6.46e-08, + "seydoux": 6.46e-08, + "shackling": 6.46e-08, + "shahr": 6.46e-08, + "shamokin": 6.46e-08, + "shantanu": 6.46e-08, + "sharna": 6.46e-08, + "shavuot": 6.46e-08, + "shekinah": 6.46e-08, + "shenk": 6.46e-08, + "shepperd": 6.46e-08, + "sherilyn": 6.46e-08, + "shey": 6.46e-08, + "shinbone": 6.46e-08, + "shiniest": 6.46e-08, + "shoalhaven": 6.46e-08, + "shortchange": 6.46e-08, + "shortstops": 6.46e-08, + "shovelled": 6.46e-08, + "shuld": 6.46e-08, + "sickert": 6.46e-08, + "sienese": 6.46e-08, + "silene": 6.46e-08, + "silverchair": 6.46e-08, + "simonides": 6.46e-08, + "sitt": 6.46e-08, + "skullduggery": 6.46e-08, + "skyhook": 6.46e-08, + "skyla": 6.46e-08, + "skyy": 6.46e-08, + "slackening": 6.46e-08, + "slaveowners": 6.46e-08, + "slickly": 6.46e-08, + "slickness": 6.46e-08, + "slinks": 6.46e-08, + "slopping": 6.46e-08, + "slovenians": 6.46e-08, + "sluicing": 6.46e-08, + "slx": 6.46e-08, + "smathers": 6.46e-08, + "smucker": 6.46e-08, + "sneakin": 6.46e-08, + "sneek": 6.46e-08, + "sniffy": 6.46e-08, + "soberano": 6.46e-08, + "softballs": 6.46e-08, + "sonn": 6.46e-08, + "specialisations": 6.46e-08, + "speciosa": 6.46e-08, + "sperber": 6.46e-08, + "sphenoid": 6.46e-08, + "spiritu": 6.46e-08, + "ssangyong": 6.46e-08, + "ssj": 6.46e-08, + "stachel": 6.46e-08, + "stalactite": 6.46e-08, + "stalybridge": 6.46e-08, + "standbys": 6.46e-08, + "standford": 6.46e-08, + "staphylococcal": 6.46e-08, + "starbursts": 6.46e-08, + "steamrolling": 6.46e-08, + "stidham": 6.46e-08, + "stockland": 6.46e-08, + "stocktons": 6.46e-08, + "stoical": 6.46e-08, + "stollen": 6.46e-08, + "straightjacket": 6.46e-08, + "sturrock": 6.46e-08, + "sublette": 6.46e-08, + "suff": 6.46e-08, + "sumbitch": 6.46e-08, + "sunan": 6.46e-08, + "suno": 6.46e-08, + "supercoach": 6.46e-08, + "supercool": 6.46e-08, + "supersaturated": 6.46e-08, + "swabia": 6.46e-08, + "swanee": 6.46e-08, + "sye": 6.46e-08, + "sytem": 6.46e-08, + "tabletops": 6.46e-08, + "tander": 6.46e-08, + "tanev": 6.46e-08, + "tanveer": 6.46e-08, + "targaryens": 6.46e-08, + "tastemaker": 6.46e-08, + "tattler": 6.46e-08, + "tawi": 6.46e-08, + "taxonomists": 6.46e-08, + "tcn": 6.46e-08, + "teached": 6.46e-08, + "teemo": 6.46e-08, + "tego": 6.46e-08, + "televisual": 6.46e-08, + "telson": 6.46e-08, + "teman": 6.46e-08, + "tengri": 6.46e-08, + "terek": 6.46e-08, + "terezin": 6.46e-08, + "terfs": 6.46e-08, + "tessas": 6.46e-08, + "tetbury": 6.46e-08, + "thata": 6.46e-08, + "thesame": 6.46e-08, + "thijs": 6.46e-08, + "thumpers": 6.46e-08, + "thylacine": 6.46e-08, + "tikes": 6.46e-08, + "tilbrook": 6.46e-08, + "timess": 6.46e-08, + "timmer": 6.46e-08, + "timorous": 6.46e-08, + "tirmidhi": 6.46e-08, + "tlf": 6.46e-08, + "toccoa": 6.46e-08, + "todman": 6.46e-08, + "toffoli": 6.46e-08, + "toget": 6.46e-08, + "tolleson": 6.46e-08, + "toral": 6.46e-08, + "totodile": 6.46e-08, + "touchable": 6.46e-08, + "towles": 6.46e-08, + "toxicants": 6.46e-08, + "toyland": 6.46e-08, + "tradies": 6.46e-08, + "traugott": 6.46e-08, + "triangulating": 6.46e-08, + "tridentine": 6.46e-08, + "trovatore": 6.46e-08, + "trumpington": 6.46e-08, + "trunkline": 6.46e-08, + "truvada": 6.46e-08, + "tullio": 6.46e-08, + "turnitin": 6.46e-08, + "turo": 6.46e-08, + "tvos": 6.46e-08, + "twiggs": 6.46e-08, + "twinkled": 6.46e-08, + "typecasting": 6.46e-08, + "ugaritic": 6.46e-08, + "ukiyo": 6.46e-08, + "ulc": 6.46e-08, + "ule": 6.46e-08, + "ulverston": 6.46e-08, + "umn": 6.46e-08, + "umr": 6.46e-08, + "umra": 6.46e-08, + "unagi": 6.46e-08, + "unamused": 6.46e-08, + "undefinable": 6.46e-08, + "undocking": 6.46e-08, + "unfollowing": 6.46e-08, + "unidad": 6.46e-08, + "uninterruptedly": 6.46e-08, + "unkown": 6.46e-08, + "unmatchable": 6.46e-08, + "unmoored": 6.46e-08, + "unmovable": 6.46e-08, + "unserious": 6.46e-08, + "upbringings": 6.46e-08, + "upgradation": 6.46e-08, + "ursulas": 6.46e-08, + "usnr": 6.46e-08, + "usvi": 6.46e-08, + "utara": 6.46e-08, + "uuh": 6.46e-08, + "vaccinia": 6.46e-08, + "vajda": 6.46e-08, + "validators": 6.46e-08, + "vansittart": 6.46e-08, + "vaporised": 6.46e-08, + "vaporous": 6.46e-08, + "vasilis": 6.46e-08, + "vata": 6.46e-08, + "venera": 6.46e-08, + "versification": 6.46e-08, + "vertue": 6.46e-08, + "vexes": 6.46e-08, + "vianney": 6.46e-08, + "vicia": 6.46e-08, + "vidhan": 6.46e-08, + "vidmar": 6.46e-08, + "viene": 6.46e-08, + "vincristine": 6.46e-08, + "visby": 6.46e-08, + "visnu": 6.46e-08, + "vitebsk": 6.46e-08, + "vivint": 6.46e-08, + "voiture": 6.46e-08, + "volantis": 6.46e-08, + "volbeat": 6.46e-08, + "vsl": 6.46e-08, + "vvip": 6.46e-08, + "wachowskis": 6.46e-08, + "wargs": 6.46e-08, + "warmhearted": 6.46e-08, + "warrego": 6.46e-08, + "waybill": 6.46e-08, + "wayyyyyy": 6.46e-08, + "weigl": 6.46e-08, + "wetback": 6.46e-08, + "weyman": 6.46e-08, + "wheely": 6.46e-08, + "whop": 6.46e-08, + "whu": 6.46e-08, + "wickedest": 6.46e-08, + "wiest": 6.46e-08, + "willo": 6.46e-08, + "windiest": 6.46e-08, + "wingnuts": 6.46e-08, + "wistfulness": 6.46e-08, + "withy": 6.46e-08, + "witz": 6.46e-08, + "wiv": 6.46e-08, + "wladyslaw": 6.46e-08, + "wlll": 6.46e-08, + "woodroof": 6.46e-08, + "woodsmen": 6.46e-08, + "woolton": 6.46e-08, + "worland": 6.46e-08, + "writerly": 6.46e-08, + "wundt": 6.46e-08, + "wwt": 6.46e-08, + "wykeham": 6.46e-08, + "xaml": 6.46e-08, + "xanders": 6.46e-08, + "xdr": 6.46e-08, + "xilai": 6.46e-08, + "xox": 6.46e-08, + "yanga": 6.46e-08, + "yanno": 6.46e-08, + "yeaaah": 6.46e-08, + "yers": 6.46e-08, + "yews": 6.46e-08, + "yodelling": 6.46e-08, + "yoou": 6.46e-08, + "youi": 6.46e-08, + "yts": 6.46e-08, + "yunho": 6.46e-08, + "yusof": 6.46e-08, + "zealandia": 6.46e-08, + "zellers": 6.46e-08, + "zindabad": 6.46e-08, + "ziya": 6.46e-08, + "zns": 6.46e-08, + "zord": 6.46e-08, + "zygotes": 6.46e-08, + "abaft": 6.31e-08, + "abcc": 6.31e-08, + "abenomics": 6.31e-08, + "abercromby": 6.31e-08, + "abetz": 6.31e-08, + "abha": 6.31e-08, + "abilify": 6.31e-08, + "absol": 6.31e-08, + "accidentals": 6.31e-08, + "accretionary": 6.31e-08, + "acho": 6.31e-08, + "acquainting": 6.31e-08, + "adalbert": 6.31e-08, + "adara": 6.31e-08, + "adelie": 6.31e-08, + "adenoid": 6.31e-08, + "adivasi": 6.31e-08, + "adreno": 6.31e-08, + "aerating": 6.31e-08, + "aftenposten": 6.31e-08, + "agian": 6.31e-08, + "agnetha": 6.31e-08, + "ahan": 6.31e-08, + "ahrc": 6.31e-08, + "aicha": 6.31e-08, + "aiman": 6.31e-08, + "aimbot": 6.31e-08, + "airfreight": 6.31e-08, + "airpark": 6.31e-08, + "ajinkya": 6.31e-08, + "aksu": 6.31e-08, + "alienist": 6.31e-08, + "allemand": 6.31e-08, + "allott": 6.31e-08, + "alltel": 6.31e-08, + "alondra": 6.31e-08, + "alturas": 6.31e-08, + "amantadine": 6.31e-08, + "amigas": 6.31e-08, + "ammianus": 6.31e-08, + "ampang": 6.31e-08, + "anatoliy": 6.31e-08, + "anga": 6.31e-08, + "anglosphere": 6.31e-08, + "annelids": 6.31e-08, + "annulling": 6.31e-08, + "anodic": 6.31e-08, + "antiphons": 6.31e-08, + "antologia": 6.31e-08, + "apocalypses": 6.31e-08, + "apon": 6.31e-08, + "appendixes": 6.31e-08, + "appropriators": 6.31e-08, + "arabism": 6.31e-08, + "arboriculture": 6.31e-08, + "arita": 6.31e-08, + "armours": 5.25e-08, + "armouries": 6.31e-08, + "arnaz": 6.31e-08, + "aroldis": 6.31e-08, + "arona": 6.31e-08, + "aroun": 6.31e-08, + "arre": 6.31e-08, + "arrhythmic": 6.31e-08, + "arta": 6.31e-08, + "arz": 6.31e-08, + "asafa": 6.31e-08, + "ashville": 6.31e-08, + "aspasia": 6.31e-08, + "aspera": 6.31e-08, + "assia": 6.31e-08, + "assignees": 6.31e-08, + "asteraceae": 6.31e-08, + "atenolol": 6.31e-08, + "attaboy": 6.31e-08, + "attalus": 6.31e-08, + "atto": 6.31e-08, + "atum": 6.31e-08, + "auge": 6.31e-08, + "aurat": 6.31e-08, + "autotrader": 6.31e-08, + "avey": 6.31e-08, + "aviations": 6.31e-08, + "avnet": 6.31e-08, + "aybar": 6.31e-08, + "azari": 6.31e-08, + "azzopardi": 6.31e-08, + "bacchae": 6.31e-08, + "bachelorettes": 6.31e-08, + "bacher": 6.31e-08, + "backbenches": 6.31e-08, + "bafflement": 6.31e-08, + "bagasse": 6.31e-08, + "bairnsdale": 6.31e-08, + "balikpapan": 6.31e-08, + "ballentine": 6.31e-08, + "balloted": 6.31e-08, + "balraj": 6.31e-08, + "balwant": 6.31e-08, + "balwyn": 6.31e-08, + "banega": 6.31e-08, + "bangura": 6.31e-08, + "banquette": 6.31e-08, + "bantered": 6.31e-08, + "barkov": 6.31e-08, + "bashan": 6.31e-08, + "bathtime": 6.31e-08, + "bazinga": 6.31e-08, + "bebek": 6.31e-08, + "bechet": 6.31e-08, + "beckie": 6.31e-08, + "beefheart": 6.31e-08, + "behav": 6.31e-08, + "behaviorists": 6.31e-08, + "beiruts": 6.31e-08, + "beko": 6.31e-08, + "bennies": 6.31e-08, + "beric": 6.31e-08, + "berl": 6.31e-08, + "bernama": 6.31e-08, + "betti": 6.31e-08, + "bharatpur": 6.31e-08, + "bhoomi": 6.31e-08, + "bhullar": 6.31e-08, + "birder": 6.31e-08, + "birdwell": 6.31e-08, + "birkhead": 6.31e-08, + "birnie": 6.31e-08, + "blackbody": 6.31e-08, + "blackthorne": 6.31e-08, + "blairites": 6.31e-08, + "blakelock": 6.31e-08, + "blaziken": 6.31e-08, + "blissed": 6.31e-08, + "blms": 6.31e-08, + "bloodcurdling": 6.31e-08, + "bluejackets": 6.31e-08, + "bluejay": 6.31e-08, + "boness": 6.31e-08, + "bobos": 6.31e-08, + "bodmer": 6.31e-08, + "bogner": 6.31e-08, + "bolam": 6.31e-08, + "boogies": 5.37e-08, + "boonie": 6.31e-08, + "boozed": 6.31e-08, + "boriss": 6.31e-08, + "borrowdale": 6.31e-08, + "bouverie": 6.31e-08, + "braman": 6.31e-08, + "brammer": 6.31e-08, + "branes": 6.31e-08, + "brayshaw": 6.31e-08, + "brenneman": 6.31e-08, + "bressler": 6.31e-08, + "brierly": 6.31e-08, + "bringers": 6.31e-08, + "brinkerhoff": 6.31e-08, + "brownsburg": 6.31e-08, + "brudenell": 6.31e-08, + "brummell": 6.31e-08, + "bruning": 6.31e-08, + "bryanston": 6.31e-08, + "bsk": 6.31e-08, + "bsv": 6.31e-08, + "buescher": 6.31e-08, + "bumbershoot": 6.31e-08, + "bundesrat": 6.31e-08, + "burnhams": 6.31e-08, + "burrus": 6.31e-08, + "butterbeer": 6.31e-08, + "byatt": 6.31e-08, + "cabella": 6.31e-08, + "cades": 6.31e-08, + "cahoon": 6.31e-08, + "cairngorm": 6.31e-08, + "callanan": 6.31e-08, + "callimachus": 6.31e-08, + "camdens": 6.31e-08, + "camerlengo": 6.31e-08, + "caner": 6.31e-08, + "cannonade": 6.31e-08, + "cantar": 6.31e-08, + "capitano": 6.31e-08, + "captchas": 6.31e-08, + "carma": 6.31e-08, + "carniola": 6.31e-08, + "carowinds": 6.31e-08, + "carrboro": 6.31e-08, + "cartilages": 6.31e-08, + "cartwrights": 6.31e-08, + "carven": 6.31e-08, + "casc": 6.31e-08, + "casita": 6.31e-08, + "cauliflowers": 6.31e-08, + "ccds": 6.31e-08, + "cdx": 6.31e-08, + "cellblock": 6.31e-08, + "centerfire": 6.31e-08, + "cepheid": 6.31e-08, + "cesars": 6.31e-08, + "ceux": 6.31e-08, + "chabon": 6.31e-08, + "chah": 6.31e-08, + "chancer": 6.31e-08, + "chaoyang": 6.31e-08, + "charlee": 6.31e-08, + "charme": 6.31e-08, + "charro": 6.31e-08, + "chata": 6.31e-08, + "chenopodium": 6.31e-08, + "cherrie": 6.31e-08, + "chipotles": 6.31e-08, + "chisnall": 6.31e-08, + "chloramine": 6.31e-08, + "cholangitis": 6.31e-08, + "cholecystectomy": 6.31e-08, + "cholerae": 6.31e-08, + "cholinesterase": 6.31e-08, + "chonburi": 6.31e-08, + "chromic": 6.31e-08, + "chupa": 6.31e-08, + "cilician": 6.31e-08, + "cimmerian": 6.31e-08, + "cinc": 6.31e-08, + "cintas": 6.31e-08, + "clady": 6.31e-08, + "cloncurry": 6.31e-08, + "clubland": 6.31e-08, + "cocain": 6.31e-08, + "coerces": 6.31e-08, + "coff": 6.31e-08, + "cognomen": 6.31e-08, + "cognoscenti": 6.31e-08, + "cohesively": 6.31e-08, + "colac": 6.31e-08, + "coleshill": 6.31e-08, + "colobus": 6.31e-08, + "colomb": 6.31e-08, + "colonnaded": 6.31e-08, + "compadres": 6.31e-08, + "compe": 6.31e-08, + "compos": 6.31e-08, + "comsat": 6.31e-08, + "conceptualizations": 6.31e-08, + "conchas": 6.31e-08, + "conformism": 6.31e-08, + "contactors": 6.31e-08, + "contaminations": 6.31e-08, + "coopted": 6.31e-08, + "coproduction": 6.31e-08, + "cornets": 6.31e-08, + "corporis": 6.31e-08, + "cortney": 6.31e-08, + "cosigned": 6.31e-08, + "countably": 6.31e-08, + "countermand": 6.31e-08, + "countermanded": 6.31e-08, + "countertenor": 6.31e-08, + "cowdray": 6.31e-08, + "crackly": 6.31e-08, + "creampies": 6.31e-08, + "crerar": 6.31e-08, + "cressey": 6.31e-08, + "creuset": 6.31e-08, + "cronenbergs": 6.31e-08, + "crossfade": 6.31e-08, + "crudeness": 6.31e-08, + "crudes": 6.31e-08, + "crutchlow": 6.31e-08, + "cryptographically": 6.31e-08, + "cryptologic": 6.31e-08, + "cumulated": 6.31e-08, + "cunnington": 6.31e-08, + "cureton": 6.31e-08, + "customising": 6.31e-08, + "cycloaddition": 6.31e-08, + "czarina": 6.31e-08, + "dagupan": 6.31e-08, + "dalley": 6.31e-08, + "dalliances": 6.31e-08, + "danai": 6.31e-08, + "darna": 6.31e-08, + "darry": 6.31e-08, + "darters": 6.31e-08, + "dartington": 6.31e-08, + "dasein": 6.31e-08, + "dateless": 6.31e-08, + "dayo": 6.31e-08, + "deadeye": 6.31e-08, + "debretts": 6.31e-08, + "declawing": 6.31e-08, + "decompressing": 6.31e-08, + "defrag": 6.31e-08, + "dellavedova": 6.31e-08, + "delts": 6.31e-08, + "denouncement": 6.31e-08, + "deq": 6.31e-08, + "desharnais": 6.31e-08, + "desiderata": 6.31e-08, + "desparate": 6.31e-08, + "devlins": 6.31e-08, + "dhammakaya": 6.31e-08, + "dicer": 6.31e-08, + "dicko": 6.31e-08, + "dicksons": 6.31e-08, + "diedrich": 6.31e-08, + "digesters": 6.31e-08, + "dillashaw": 6.31e-08, + "disassociating": 6.31e-08, + "discriminator": 6.31e-08, + "disentangled": 6.31e-08, + "disgorgement": 6.31e-08, + "dismaying": 6.31e-08, + "dissimilarities": 6.31e-08, + "dissonances": 6.31e-08, + "disulfiram": 6.31e-08, + "djamel": 6.31e-08, + "djembe": 6.31e-08, + "dlb": 6.31e-08, + "dlna": 6.31e-08, + "dman": 6.31e-08, + "doar": 6.31e-08, + "docents": 6.31e-08, + "docility": 6.31e-08, + "dodos": 6.31e-08, + "dodwell": 6.31e-08, + "doja": 6.31e-08, + "dolerite": 6.31e-08, + "dombey": 6.31e-08, + "domenici": 6.31e-08, + "domesticus": 6.31e-08, + "dorma": 6.31e-08, + "dorp": 6.31e-08, + "dostum": 6.31e-08, + "dotnet": 6.31e-08, + "dovecote": 6.31e-08, + "doyou": 6.31e-08, + "drawling": 6.31e-08, + "driskel": 6.31e-08, + "drummonds": 6.31e-08, + "drumset": 6.31e-08, + "dubh": 6.31e-08, + "dutcher": 6.31e-08, + "dyads": 6.31e-08, + "ecac": 6.31e-08, + "eccl": 6.31e-08, + "ecologic": 6.31e-08, + "ecru": 6.31e-08, + "ecus": 6.31e-08, + "eeek": 6.31e-08, + "eeva": 6.31e-08, + "effusively": 6.31e-08, + "eggo": 6.31e-08, + "eigenstates": 6.31e-08, + "eikon": 6.31e-08, + "elayne": 6.31e-08, + "electroluminescent": 6.31e-08, + "electromotive": 6.31e-08, + "elgars": 6.31e-08, + "elit": 6.31e-08, + "elphaba": 6.31e-08, + "emaar": 6.31e-08, + "emelin": 6.31e-08, + "enalapril": 6.31e-08, + "engineerings": 6.31e-08, + "engross": 6.31e-08, + "enmore": 6.31e-08, + "enunciating": 6.31e-08, + "eop": 6.31e-08, + "eosinophilia": 6.31e-08, + "eovaldi": 6.31e-08, + "eoy": 6.31e-08, + "epee": 6.31e-08, + "epididymis": 6.31e-08, + "epigastric": 6.31e-08, + "eprdf": 6.31e-08, + "equivalencies": 6.31e-08, + "escs": 6.31e-08, + "essendons": 6.31e-08, + "essere": 6.31e-08, + "esterase": 6.31e-08, + "esterification": 6.31e-08, + "eukaryote": 6.31e-08, + "evenhanded": 6.31e-08, + "evinrude": 6.31e-08, + "exclusiveness": 6.31e-08, + "excretions": 6.31e-08, + "exeggutor": 6.31e-08, + "exercisers": 6.31e-08, + "exid": 6.31e-08, + "extractable": 6.31e-08, + "exult": 6.31e-08, + "eyeballed": 6.31e-08, + "eyeroll": 6.31e-08, + "fabricant": 6.31e-08, + "faenza": 6.31e-08, + "faizabad": 6.31e-08, + "falconers": 6.31e-08, + "fanconi": 6.31e-08, + "farne": 6.31e-08, + "fasciculus": 6.31e-08, + "fatales": 6.31e-08, + "fatalist": 6.31e-08, + "featherston": 6.31e-08, + "fenella": 6.31e-08, + "fernwood": 6.31e-08, + "fida": 6.31e-08, + "filii": 6.31e-08, + "filmgoers": 6.31e-08, + "finck": 6.31e-08, + "finnie": 6.31e-08, + "fiordland": 6.31e-08, + "firdaus": 6.31e-08, + "flattish": 6.31e-08, + "flatwoods": 6.31e-08, + "fleecy": 6.31e-08, + "floggings": 6.31e-08, + "floriculture": 6.31e-08, + "fontanelle": 6.31e-08, + "fontenelle": 6.31e-08, + "forno": 6.31e-08, + "fortenberry": 6.31e-08, + "francesc": 6.31e-08, + "franch": 6.31e-08, + "fraternizing": 6.31e-08, + "freakazoid": 6.31e-08, + "fredricks": 6.31e-08, + "freelander": 6.31e-08, + "freres": 6.31e-08, + "freyas": 6.31e-08, + "frommers": 6.31e-08, + "fter": 6.31e-08, + "ftz": 6.31e-08, + "fugit": 6.31e-08, + "fulla": 6.31e-08, + "funston": 6.31e-08, + "furler": 6.31e-08, + "furnival": 6.31e-08, + "furuta": 6.31e-08, + "fuu": 6.31e-08, + "fwy": 6.31e-08, + "gabs": 6.31e-08, + "galang": 6.31e-08, + "galland": 6.31e-08, + "galo": 6.31e-08, + "ganapati": 6.31e-08, + "garrincha": 6.31e-08, + "gause": 6.31e-08, + "gawked": 6.31e-08, + "gazebos": 6.31e-08, + "gemcitabine": 6.31e-08, + "geographics": 2.69e-08, + "gertler": 6.31e-08, + "ghanem": 6.31e-08, + "gilfillan": 6.31e-08, + "gillmor": 6.31e-08, + "gillmore": 6.31e-08, + "gimpo": 6.31e-08, + "gingrichs": 6.31e-08, + "ginnifer": 6.31e-08, + "gitano": 6.31e-08, + "gittins": 6.31e-08, + "giwa": 6.31e-08, + "gizzards": 6.31e-08, + "glendening": 6.31e-08, + "gliese": 6.31e-08, + "glycans": 6.31e-08, + "gobby": 6.31e-08, + "gochujang": 6.31e-08, + "godse": 6.31e-08, + "goldoni": 6.31e-08, + "goodin": 6.31e-08, + "goondiwindi": 6.31e-08, + "gopros": 6.31e-08, + "goree": 6.31e-08, + "gorgas": 6.31e-08, + "gorin": 6.31e-08, + "gorm": 6.31e-08, + "grandal": 6.31e-08, + "grandmom": 6.31e-08, + "grapeseed": 6.31e-08, + "grech": 6.31e-08, + "gresley": 6.31e-08, + "gress": 6.31e-08, + "grittiness": 6.31e-08, + "grodno": 6.31e-08, + "grundriss": 6.31e-08, + "guderian": 6.31e-08, + "guia": 6.31e-08, + "gulzar": 6.31e-08, + "gvhd": 6.31e-08, + "habitants": 6.31e-08, + "hadas": 6.31e-08, + "hahha": 6.31e-08, + "hahns": 6.31e-08, + "hallberg": 6.31e-08, + "hallinan": 6.31e-08, + "halloweentown": 6.31e-08, + "hamo": 6.31e-08, + "hanauer": 6.31e-08, + "handl": 6.31e-08, + "hanji": 6.31e-08, + "harappa": 6.31e-08, + "hardpoint": 6.31e-08, + "hargis": 6.31e-08, + "harlans": 6.31e-08, + "harran": 6.31e-08, + "heckscher": 6.31e-08, + "hectoring": 6.31e-08, + "hedren": 6.31e-08, + "heidecker": 6.31e-08, + "hermanus": 6.31e-08, + "herzfeld": 6.31e-08, + "heterojunction": 6.31e-08, + "hijazi": 6.31e-08, + "hillhouse": 6.31e-08, + "hillview": 6.31e-08, + "himal": 6.31e-08, + "hinchliffe": 6.31e-08, + "hirth": 6.31e-08, + "hise": 6.31e-08, + "hoagies": 6.31e-08, + "hofstede": 6.31e-08, + "hoggard": 6.31e-08, + "hoka": 6.31e-08, + "holte": 6.31e-08, + "holyoake": 6.31e-08, + "hongo": 6.31e-08, + "honnold": 6.31e-08, + "hopkirk": 6.31e-08, + "hord": 6.31e-08, + "horological": 6.31e-08, + "houdinis": 6.31e-08, + "housefly": 6.31e-08, + "hrsg": 6.31e-08, + "hsct": 6.31e-08, + "huddy": 6.31e-08, + "huit": 6.31e-08, + "humaneness": 6.31e-08, + "hurlingham": 6.31e-08, + "hurtles": 6.31e-08, + "hutcheon": 6.31e-08, + "hydrolyzes": 6.31e-08, + "hydrous": 6.31e-08, + "hydroxychloroquine": 6.31e-08, + "hydroxyethyl": 6.31e-08, + "hypercar": 6.31e-08, + "hypnotically": 6.31e-08, + "iao": 6.31e-08, + "iasi": 6.31e-08, + "ibrd": 6.31e-08, + "ichthyology": 6.31e-08, + "idli": 6.31e-08, + "ifill": 6.31e-08, + "ikram": 6.31e-08, + "immunizing": 6.31e-08, + "impracticality": 6.31e-08, + "incrementing": 6.31e-08, + "incunabula": 6.31e-08, + "independencia": 6.31e-08, + "inexcusably": 6.31e-08, + "influxes": 6.31e-08, + "injectables": 6.31e-08, + "inly": 6.31e-08, + "inox": 6.31e-08, + "inserm": 6.31e-08, + "instr": 6.31e-08, + "intellij": 6.31e-08, + "intercessory": 6.31e-08, + "interestin": 6.31e-08, + "interline": 6.31e-08, + "interlinking": 6.31e-08, + "interrogatories": 6.31e-08, + "intoxicant": 6.31e-08, + "intu": 6.31e-08, + "ipscs": 6.31e-08, + "ires": 6.31e-08, + "iriss": 6.31e-08, + "isam": 6.31e-08, + "ismet": 6.31e-08, + "issus": 6.31e-08, + "itemization": 6.31e-08, + "iuris": 6.31e-08, + "iview": 6.31e-08, + "izo": 6.31e-08, + "izzet": 6.31e-08, + "jackett": 6.31e-08, + "jackhammers": 6.31e-08, + "jadis": 6.31e-08, + "jagran": 6.31e-08, + "jahrhunderts": 6.31e-08, + "jako": 6.31e-08, + "janam": 6.31e-08, + "jaqueline": 6.31e-08, + "jarhead": 6.31e-08, + "jarmila": 6.31e-08, + "jasmina": 6.31e-08, + "jaysus": 6.31e-08, + "jboss": 6.31e-08, + "jellal": 6.31e-08, + "jerrie": 6.31e-08, + "jezus": 6.31e-08, + "jinns": 6.31e-08, + "johari": 6.31e-08, + "joran": 6.31e-08, + "jorja": 6.31e-08, + "jovanovich": 6.31e-08, + "jovetic": 6.31e-08, + "jovially": 6.31e-08, + "junkyards": 6.31e-08, + "jutted": 6.31e-08, + "kaboul": 6.31e-08, + "kadabra": 6.31e-08, + "kahana": 6.31e-08, + "kaleo": 6.31e-08, + "kallie": 6.31e-08, + "kamelot": 6.31e-08, + "kamma": 6.31e-08, + "kaolinite": 6.31e-08, + "kary": 6.31e-08, + "kataoka": 6.31e-08, + "kathrine": 6.31e-08, + "katsuya": 6.31e-08, + "kayano": 6.31e-08, + "kazuhiko": 6.31e-08, + "kbo": 6.31e-08, + "kedron": 6.31e-08, + "keelan": 6.31e-08, + "keewatin": 6.31e-08, + "kelsall": 6.31e-08, + "kelson": 6.31e-08, + "kendell": 6.31e-08, + "kenneths": 6.31e-08, + "kerma": 6.31e-08, + "kidlington": 6.31e-08, + "kilogrammes": 6.31e-08, + "kingsmen": 6.31e-08, + "kito": 6.31e-08, + "klima": 6.31e-08, + "knauer": 6.31e-08, + "knauss": 6.31e-08, + "kneepads": 6.31e-08, + "knighting": 6.31e-08, + "knobhead": 6.31e-08, + "knuckling": 6.31e-08, + "knx": 6.31e-08, + "kobolds": 6.31e-08, + "kome": 6.31e-08, + "komeito": 6.31e-08, + "kouji": 6.31e-08, + "koulibaly": 6.31e-08, + "kovu": 6.31e-08, + "kozinski": 6.31e-08, + "kpl": 6.31e-08, + "krys": 6.31e-08, + "kshs": 6.31e-08, + "kumbh": 6.31e-08, + "kunai": 6.31e-08, + "kunt": 6.31e-08, + "kunti": 6.31e-08, + "kurri": 6.31e-08, + "kyeong": 6.31e-08, + "lacour": 6.31e-08, + "lactoferrin": 6.31e-08, + "ladonna": 6.31e-08, + "lakehead": 6.31e-08, + "lapsley": 6.31e-08, + "largish": 6.31e-08, + "larijani": 6.31e-08, + "laufer": 6.31e-08, + "lcpl": 6.31e-08, + "leavis": 6.31e-08, + "lechery": 6.31e-08, + "lect": 6.31e-08, + "legarrette": 6.31e-08, + "legendaries": 6.31e-08, + "leguizamo": 6.31e-08, + "lemak": 6.31e-08, + "leoben": 6.31e-08, + "leofric": 6.31e-08, + "leonine": 6.31e-08, + "levada": 6.31e-08, + "levitin": 6.31e-08, + "lfr": 6.31e-08, + "liebert": 6.31e-08, + "lifeforce": 6.31e-08, + "limite": 6.31e-08, + "lionized": 6.31e-08, + "lithospheric": 6.31e-08, + "livened": 6.31e-08, + "localise": 6.31e-08, + "locatelli": 6.31e-08, + "lockharts": 6.31e-08, + "lolicon": 6.31e-08, + "lomi": 6.31e-08, + "longfield": 6.31e-08, + "longyear": 6.31e-08, + "lookahead": 6.31e-08, + "lorber": 6.31e-08, + "louche": 6.31e-08, + "lubbers": 6.31e-08, + "lugard": 6.31e-08, + "lugia": 6.31e-08, + "lunga": 6.31e-08, + "lup": 6.31e-08, + "luque": 6.31e-08, + "luss": 6.31e-08, + "macer": 6.31e-08, + "madejski": 6.31e-08, + "magalhaes": 6.31e-08, + "magath": 6.31e-08, + "majus": 6.31e-08, + "malakal": 6.31e-08, + "malindi": 6.31e-08, + "malocclusion": 6.31e-08, + "mandu": 6.31e-08, + "manette": 6.31e-08, + "mannerist": 6.31e-08, + "manoir": 6.31e-08, + "mantissa": 6.31e-08, + "marcasite": 6.31e-08, + "margaretha": 6.31e-08, + "margulis": 6.31e-08, + "marmora": 6.31e-08, + "marven": 6.31e-08, + "marwin": 6.31e-08, + "mastani": 6.31e-08, + "mattys": 6.31e-08, + "mauss": 6.31e-08, + "maximoff": 6.31e-08, + "mbna": 6.31e-08, + "mccants": 6.31e-08, + "mccormicks": 6.31e-08, + "mcelhinney": 6.31e-08, + "mcmansion": 6.31e-08, + "mcmasters": 6.31e-08, + "meades": 6.31e-08, + "meatheads": 6.31e-08, + "mechwarrior": 6.31e-08, + "mediastinum": 6.31e-08, + "medo": 6.31e-08, + "medora": 6.31e-08, + "medulloblastoma": 6.31e-08, + "medved": 6.31e-08, + "meem": 6.31e-08, + "meili": 6.31e-08, + "mella": 6.31e-08, + "memoirist": 6.31e-08, + "meninas": 6.31e-08, + "menn": 6.31e-08, + "meralco": 6.31e-08, + "merville": 6.31e-08, + "metallization": 6.31e-08, + "metropol": 6.31e-08, + "mett": 6.31e-08, + "mhairi": 6.31e-08, + "mhr": 6.31e-08, + "micallef": 6.31e-08, + "middlebrooks": 6.31e-08, + "mieke": 6.31e-08, + "migra": 6.31e-08, + "mihaly": 6.31e-08, + "mikio": 6.31e-08, + "milia": 6.31e-08, + "mimeograph": 6.31e-08, + "mimeographed": 6.31e-08, + "minifigs": 6.31e-08, + "minimalists": 6.31e-08, + "minoans": 6.31e-08, + "mires": 6.31e-08, + "miroir": 6.31e-08, + "misallocation": 6.31e-08, + "misinform": 6.31e-08, + "mitya": 6.31e-08, + "mitzvot": 6.31e-08, + "mmda": 6.31e-08, + "moated": 6.31e-08, + "moderno": 6.31e-08, + "mollies": 6.31e-08, + "monaural": 6.31e-08, + "monstro": 6.31e-08, + "montlake": 6.31e-08, + "mooi": 6.31e-08, + "mooned": 6.31e-08, + "moorcock": 6.31e-08, + "moring": 6.31e-08, + "morlocks": 6.31e-08, + "motiv": 6.31e-08, + "motus": 6.31e-08, + "mouna": 6.31e-08, + "moutinho": 6.31e-08, + "mozambiques": 6.31e-08, + "muhamed": 6.31e-08, + "multirole": 6.31e-08, + "mune": 6.31e-08, + "muscularity": 6.31e-08, + "musiq": 6.31e-08, + "muso": 6.31e-08, + "mussoorie": 6.31e-08, + "muthafuckin": 6.31e-08, + "mutsu": 6.31e-08, + "myob": 6.31e-08, + "nagumo": 6.31e-08, + "naj": 6.31e-08, + "naki": 6.31e-08, + "namma": 6.31e-08, + "nanci": 6.31e-08, + "nannying": 6.31e-08, + "nappi": 6.31e-08, + "naseby": 6.31e-08, + "navami": 6.31e-08, + "navarros": 6.31e-08, + "naxalites": 6.31e-08, + "neetu": 6.31e-08, + "neistat": 6.31e-08, + "nemean": 6.31e-08, + "nendoroid": 6.31e-08, + "neroli": 6.31e-08, + "netley": 6.31e-08, + "neurofeedback": 6.31e-08, + "neuropathies": 6.31e-08, + "neuroscientific": 6.31e-08, + "newley": 6.31e-08, + "newsdesk": 6.31e-08, + "nicklin": 6.31e-08, + "nikolov": 6.31e-08, + "nilo": 6.31e-08, + "nise": 6.31e-08, + "nisus": 6.31e-08, + "nmap": 6.31e-08, + "noisemakers": 6.31e-08, + "nonconsensual": 6.31e-08, + "nonmedical": 6.31e-08, + "nonmilitary": 6.31e-08, + "norwichs": 6.31e-08, + "notaro": 6.31e-08, + "noti": 6.31e-08, + "nrls": 6.31e-08, + "nrr": 6.31e-08, + "nucleosomes": 6.31e-08, + "numbskull": 6.31e-08, + "nute": 6.31e-08, + "oneals": 6.31e-08, + "occlude": 6.31e-08, + "odda": 6.31e-08, + "ogo": 6.31e-08, + "ohchr": 6.31e-08, + "oja": 6.31e-08, + "okawa": 6.31e-08, + "okies": 6.31e-08, + "oligo": 6.31e-08, + "olp": 6.31e-08, + "omnic": 6.31e-08, + "optout": 6.31e-08, + "ordos": 6.31e-08, + "orgeron": 6.31e-08, + "osen": 6.31e-08, + "oshin": 6.31e-08, + "ostler": 6.31e-08, + "ostrow": 6.31e-08, + "ousts": 6.31e-08, + "outbox": 6.31e-08, + "outperformance": 6.31e-08, + "outshined": 6.31e-08, + "ouverture": 6.31e-08, + "overbuilt": 6.31e-08, + "overwatchs": 6.31e-08, + "oxymoronic": 6.31e-08, + "oyer": 6.31e-08, + "pachyderm": 6.31e-08, + "pagel": 6.31e-08, + "pagina": 6.31e-08, + "paisleys": 6.31e-08, + "palabra": 6.31e-08, + "palmistry": 6.31e-08, + "paly": 6.31e-08, + "pamphleteer": 6.31e-08, + "parador": 6.31e-08, + "params": 6.31e-08, + "parens": 6.31e-08, + "paribus": 6.31e-08, + "parmenter": 6.31e-08, + "passamaquoddy": 6.31e-08, + "passcodes": 6.31e-08, + "pavlos": 6.31e-08, + "pawley": 6.31e-08, + "pawnshops": 6.31e-08, + "paywalls": 6.31e-08, + "pengelly": 6.31e-08, + "peptidase": 6.31e-08, + "percheron": 6.31e-08, + "percussions": 6.31e-08, + "pereyra": 6.31e-08, + "perquisite": 6.31e-08, + "perugino": 6.31e-08, + "petroglyph": 6.31e-08, + "petrolia": 6.31e-08, + "petron": 6.31e-08, + "petronella": 6.31e-08, + "phalange": 6.31e-08, + "philadelphian": 6.31e-08, + "phonation": 6.31e-08, + "pickoff": 6.31e-08, + "pictogram": 6.31e-08, + "piecework": 6.31e-08, + "pierrette": 6.31e-08, + "piku": 6.31e-08, + "pincode": 6.31e-08, + "pinkeye": 6.31e-08, + "pintle": 6.31e-08, + "pitchman": 6.31e-08, + "pitons": 6.31e-08, + "placidly": 6.31e-08, + "plaisance": 6.31e-08, + "planchet": 6.31e-08, + "playdough": 6.31e-08, + "playsuit": 6.31e-08, + "plimsoll": 6.31e-08, + "polarizations": 6.31e-08, + "pompeian": 6.31e-08, + "pompton": 6.31e-08, + "pondok": 6.31e-08, + "porcelains": 6.31e-08, + "portree": 6.31e-08, + "prag": 6.31e-08, + "prec": 6.31e-08, + "preempting": 6.31e-08, + "preloading": 6.31e-08, + "premo": 6.31e-08, + "prenatally": 6.31e-08, + "presa": 6.31e-08, + "pressurise": 6.31e-08, + "prickett": 6.31e-08, + "printz": 6.31e-08, + "prizewinning": 6.31e-08, + "prizm": 6.31e-08, + "profi": 6.31e-08, + "progresso": 6.31e-08, + "propper": 6.31e-08, + "proprietorships": 6.31e-08, + "prospected": 6.31e-08, + "prospekt": 6.31e-08, + "protists": 6.31e-08, + "prover": 6.31e-08, + "prust": 6.31e-08, + "psps": 6.31e-08, + "puerperal": 6.31e-08, + "pues": 6.31e-08, + "puf": 6.31e-08, + "puft": 6.31e-08, + "pugachev": 6.31e-08, + "pummels": 6.31e-08, + "puppers": 6.31e-08, + "puram": 6.31e-08, + "pushrod": 6.31e-08, + "pylos": 6.31e-08, + "pyridoxine": 6.31e-08, + "qaim": 6.31e-08, + "qassem": 6.31e-08, + "qinetiq": 6.31e-08, + "qms": 6.31e-08, + "qsl": 6.31e-08, + "quadrangles": 6.31e-08, + "quants": 6.31e-08, + "quartic": 6.31e-08, + "quattroporte": 6.31e-08, + "quencher": 6.31e-08, + "quinney": 6.31e-08, + "quinten": 6.31e-08, + "qur": 6.31e-08, + "raje": 6.31e-08, + "rajouri": 6.31e-08, + "ramzy": 6.31e-08, + "rascally": 6.31e-08, + "rashtra": 6.31e-08, + "rauls": 6.31e-08, + "reacquaint": 6.31e-08, + "recessional": 6.31e-08, + "recieves": 6.31e-08, + "reckoner": 6.31e-08, + "recondition": 6.31e-08, + "redeploying": 6.31e-08, + "redoubling": 6.31e-08, + "reduc": 6.31e-08, + "refloated": 6.31e-08, + "rege": 6.31e-08, + "reinterpretations": 6.31e-08, + "relais": 6.31e-08, + "relaunches": 6.31e-08, + "religiousness": 6.31e-08, + "remarketing": 6.31e-08, + "rematches": 6.31e-08, + "reoccurrence": 6.31e-08, + "reorganizes": 6.31e-08, + "repaved": 6.31e-08, + "repechage": 6.31e-08, + "repossessions": 6.31e-08, + "responsable": 6.31e-08, + "responsi": 6.31e-08, + "retrospection": 6.31e-08, + "revengeful": 6.31e-08, + "rfr": 6.31e-08, + "rhc": 6.31e-08, + "rhin": 6.31e-08, + "rhoden": 6.31e-08, + "ricardos": 6.31e-08, + "ricer": 6.31e-08, + "rickover": 6.31e-08, + "rickson": 6.31e-08, + "ridha": 6.31e-08, + "rigdon": 6.31e-08, + "ripest": 6.31e-08, + "risdon": 6.31e-08, + "roadshows": 6.31e-08, + "roba": 6.31e-08, + "rockier": 6.31e-08, + "rocksmith": 6.31e-08, + "roleplayers": 6.31e-08, + "ronna": 6.31e-08, + "rossii": 6.31e-08, + "rotem": 6.31e-08, + "rothamsted": 6.31e-08, + "rothes": 6.31e-08, + "roubini": 6.31e-08, + "rourkela": 6.31e-08, + "rowsell": 6.31e-08, + "rubbings": 6.31e-08, + "rufio": 6.31e-08, + "ruizs": 6.31e-08, + "rukmini": 6.31e-08, + "rwy": 6.31e-08, + "sablon": 6.31e-08, + "sagacious": 6.31e-08, + "salaryman": 6.31e-08, + "salic": 6.31e-08, + "sammlung": 6.31e-08, + "sandakan": 6.31e-08, + "sandino": 6.31e-08, + "sanguinis": 6.31e-08, + "sanjiv": 6.31e-08, + "sargassum": 6.31e-08, + "sarna": 6.31e-08, + "sartres": 6.31e-08, + "sarver": 6.31e-08, + "satelite": 6.31e-08, + "sauternes": 6.31e-08, + "scattergun": 6.31e-08, + "scentsy": 6.31e-08, + "schmo": 6.31e-08, + "scien": 6.31e-08, + "sclerosing": 6.31e-08, + "scrutinizes": 6.31e-08, + "sculling": 6.31e-08, + "scutari": 6.31e-08, + "scuzzy": 6.31e-08, + "seashores": 6.31e-08, + "segregates": 6.31e-08, + "semel": 6.31e-08, + "semler": 6.31e-08, + "sentimentalism": 6.31e-08, + "seraphic": 6.31e-08, + "setauket": 6.31e-08, + "sethu": 6.31e-08, + "sge": 6.31e-08, + "shadings": 6.31e-08, + "shahabuddin": 6.31e-08, + "shankland": 6.31e-08, + "shaoxing": 6.31e-08, + "sharaf": 6.31e-08, + "sherburn": 6.31e-08, + "shigure": 6.31e-08, + "shina": 6.31e-08, + "shiney": 6.31e-08, + "shiu": 6.31e-08, + "shizuo": 6.31e-08, + "shld": 6.31e-08, + "sholay": 6.31e-08, + "sholem": 6.31e-08, + "shopfront": 6.31e-08, + "shoten": 6.31e-08, + "shotokan": 6.31e-08, + "silkwood": 6.31e-08, + "sillitoe": 6.31e-08, + "sipri": 6.31e-08, + "sitara": 6.31e-08, + "siue": 6.31e-08, + "skell": 6.31e-08, + "skellig": 6.31e-08, + "slagged": 6.31e-08, + "slb": 6.31e-08, + "slighter": 6.31e-08, + "sln": 6.31e-08, + "slone": 6.31e-08, + "snood": 6.31e-08, + "sobchak": 6.31e-08, + "sociodemographic": 6.31e-08, + "socioeconomically": 6.31e-08, + "socon": 6.31e-08, + "sohu": 6.31e-08, + "solu": 6.31e-08, + "solyndra": 6.31e-08, + "somma": 6.31e-08, + "soothsayers": 6.31e-08, + "speedtest": 6.31e-08, + "spektor": 6.31e-08, + "spellcaster": 6.31e-08, + "spiralis": 6.31e-08, + "sportsmens": 6.31e-08, + "ssis": 6.31e-08, + "ssns": 6.31e-08, + "stana": 6.31e-08, + "stargirl": 6.31e-08, + "stateline": 6.31e-08, + "stecher": 6.31e-08, + "stefanos": 6.31e-08, + "sternest": 6.31e-08, + "stewarding": 6.31e-08, + "stickleback": 6.31e-08, + "stoa": 6.31e-08, + "stoats": 6.31e-08, + "stockfish": 6.31e-08, + "stockist": 6.31e-08, + "stoxx": 6.31e-08, + "strack": 6.31e-08, + "stranahan": 6.31e-08, + "strate": 6.31e-08, + "strato": 6.31e-08, + "strongbox": 6.31e-08, + "stubbins": 6.31e-08, + "stupidities": 6.31e-08, + "subcultural": 6.31e-08, + "subdirectory": 6.31e-08, + "subito": 6.31e-08, + "suhartos": 6.31e-08, + "sullenberger": 6.31e-08, + "summerson": 6.31e-08, + "summited": 6.31e-08, + "sundials": 6.31e-08, + "supercut": 6.31e-08, + "supergirls": 6.31e-08, + "superstring": 6.31e-08, + "surp": 6.31e-08, + "suskind": 6.31e-08, + "sustrans": 6.31e-08, + "sutler": 6.31e-08, + "svante": 6.31e-08, + "sve": 6.31e-08, + "svenson": 6.31e-08, + "swaminarayan": 6.31e-08, + "swed": 6.31e-08, + "sweetman": 6.31e-08, + "swen": 6.31e-08, + "swishy": 6.31e-08, + "syms": 6.31e-08, + "synchronizes": 6.31e-08, + "systeme": 6.31e-08, + "tadd": 6.31e-08, + "taes": 6.31e-08, + "takenaka": 6.31e-08, + "takizawa": 6.31e-08, + "tarantella": 6.31e-08, + "tarkington": 6.31e-08, + "tartaglia": 6.31e-08, + "tasc": 6.31e-08, + "taubes": 6.31e-08, + "tbg": 6.31e-08, + "telesur": 6.31e-08, + "tellier": 6.31e-08, + "tenenbaums": 6.31e-08, + "tenuis": 6.31e-08, + "teso": 6.31e-08, + "thangs": 6.31e-08, + "thatching": 6.31e-08, + "thelema": 6.31e-08, + "thelen": 6.31e-08, + "theriault": 6.31e-08, + "thermosphere": 6.31e-08, + "thimbles": 6.31e-08, + "thisd": 6.31e-08, + "thl": 6.31e-08, + "thomastown": 6.31e-08, + "thoreaus": 6.31e-08, + "thorvald": 6.31e-08, + "thracia": 6.31e-08, + "thrus": 6.31e-08, + "tibby": 6.31e-08, + "tienen": 6.31e-08, + "tintern": 6.31e-08, + "tirzah": 6.31e-08, + "tiz": 6.31e-08, + "tmac": 6.31e-08, + "togoland": 6.31e-08, + "tolan": 6.31e-08, + "toprak": 6.31e-08, + "toughie": 6.31e-08, + "tpab": 6.31e-08, + "traian": 6.31e-08, + "transcutaneous": 6.31e-08, + "transracial": 6.31e-08, + "trapezium": 6.31e-08, + "trave": 6.31e-08, + "trelleborg": 6.31e-08, + "trialist": 6.31e-08, + "tricorder": 6.31e-08, + "triers": 6.31e-08, + "trillo": 6.31e-08, + "trom": 6.31e-08, + "troost": 6.31e-08, + "trotskyism": 6.31e-08, + "trouba": 6.31e-08, + "trousdale": 6.31e-08, + "truc": 6.31e-08, + "trundling": 6.31e-08, + "trypanosomiasis": 6.31e-08, + "tsurugi": 6.31e-08, + "tucuman": 6.31e-08, + "tudou": 6.31e-08, + "tuffs": 6.31e-08, + "tuli": 6.31e-08, + "tullow": 6.31e-08, + "tullys": 6.31e-08, + "tupacs": 6.31e-08, + "turbin": 6.31e-08, + "turek": 6.31e-08, + "tutankhamuns": 6.31e-08, + "tute": 6.31e-08, + "twtr": 6.31e-08, + "tydings": 6.31e-08, + "tynes": 6.31e-08, + "tyvek": 6.31e-08, + "uchicago": 6.31e-08, + "uckfield": 6.31e-08, + "uft": 6.31e-08, + "ullapool": 6.31e-08, + "ultraconservative": 6.31e-08, + "umkc": 6.31e-08, + "umu": 6.31e-08, + "unclouded": 6.31e-08, + "unconfined": 6.31e-08, + "undefeatable": 6.31e-08, + "underoath": 6.31e-08, + "understrength": 6.31e-08, + "undocked": 6.31e-08, + "unfitting": 6.31e-08, + "unforgiveable": 6.31e-08, + "ungentlemanly": 6.31e-08, + "unifor": 6.31e-08, + "unkillable": 6.31e-08, + "unlabelled": 6.31e-08, + "unladen": 6.31e-08, + "unmemorable": 6.31e-08, + "unremittingly": 6.31e-08, + "unshackle": 6.31e-08, + "unstinting": 6.31e-08, + "unstudied": 6.31e-08, + "upraised": 6.31e-08, + "urate": 6.31e-08, + "urey": 6.31e-08, + "urk": 6.31e-08, + "urr": 6.31e-08, + "usfl": 6.31e-08, + "ushio": 6.31e-08, + "usns": 6.31e-08, + "usum": 6.31e-08, + "uwm": 6.31e-08, + "vais": 6.31e-08, + "validations": 6.31e-08, + "varas": 6.31e-08, + "varmints": 6.31e-08, + "varvatos": 6.31e-08, + "vasek": 6.31e-08, + "vayne": 6.31e-08, + "veeck": 6.31e-08, + "velociraptors": 6.31e-08, + "venality": 6.31e-08, + "veno": 6.31e-08, + "ventoux": 6.31e-08, + "venturer": 6.31e-08, + "verandahs": 6.31e-08, + "vif": 6.31e-08, + "vinayak": 6.31e-08, + "visigothic": 6.31e-08, + "vivians": 6.31e-08, + "vog": 6.31e-08, + "volant": 6.31e-08, + "vortexes": 6.31e-08, + "vrabel": 6.31e-08, + "wahi": 6.31e-08, + "waldens": 6.31e-08, + "walia": 6.31e-08, + "walmer": 6.31e-08, + "walvis": 6.31e-08, + "wareing": 6.31e-08, + "warkworth": 6.31e-08, + "warnie": 6.31e-08, + "washouts": 6.31e-08, + "wastefully": 6.31e-08, + "watchespn": 6.31e-08, + "watermen": 6.31e-08, + "waterparks": 6.31e-08, + "watervliet": 6.31e-08, + "webex": 6.31e-08, + "westies": 6.31e-08, + "westway": 6.31e-08, + "wex": 6.31e-08, + "whas": 6.31e-08, + "whiley": 6.31e-08, + "whippersnapper": 6.31e-08, + "wholefoods": 6.31e-08, + "wiedersehen": 6.31e-08, + "winnin": 6.31e-08, + "winnowed": 6.31e-08, + "winooski": 6.31e-08, + "winterson": 6.31e-08, + "wirh": 6.31e-08, + "witkin": 6.31e-08, + "witwer": 6.31e-08, + "wizzy": 6.31e-08, + "wolfed": 6.31e-08, + "woodmen": 6.31e-08, + "wormer": 6.31e-08, + "wowzers": 6.31e-08, + "wpl": 6.31e-08, + "wran": 6.31e-08, + "wrd": 6.31e-08, + "wristed": 6.31e-08, + "wsdl": 6.31e-08, + "wuji": 6.31e-08, + "wxyz": 6.31e-08, + "wyant": 6.31e-08, + "xfm": 6.31e-08, + "yaaay": 6.31e-08, + "yadin": 6.31e-08, + "yakitori": 6.31e-08, + "yanmar": 6.31e-08, + "yassir": 6.31e-08, + "yasushi": 6.31e-08, + "yavin": 6.31e-08, + "yens": 6.31e-08, + "yle": 6.31e-08, + "yoakam": 6.31e-08, + "yuvan": 6.31e-08, + "yzf": 6.31e-08, + "zagros": 6.31e-08, + "zandra": 6.31e-08, + "zardes": 6.31e-08, + "zawiya": 6.31e-08, + "zedongs": 6.31e-08, + "zelensky": 6.31e-08, + "zevon": 6.31e-08, + "ziggo": 6.31e-08, + "zimbalist": 6.31e-08, + "zinaida": 6.31e-08, + "zuccotti": 6.31e-08, + "zzzz": 6.31e-08, + "aamer": 6.17e-08, + "aardman": 6.17e-08, + "abashed": 6.17e-08, + "abbasids": 6.17e-08, + "abideth": 6.17e-08, + "abri": 6.17e-08, + "acari": 6.17e-08, + "accenting": 6.17e-08, + "acclimatize": 6.17e-08, + "acholi": 6.17e-08, + "aconite": 6.17e-08, + "acsm": 6.17e-08, + "actualizing": 6.17e-08, + "adab": 6.17e-08, + "adalat": 6.17e-08, + "additively": 6.17e-08, + "adekunle": 6.17e-08, + "adelia": 6.17e-08, + "adenocarcinomas": 6.17e-08, + "adk": 6.17e-08, + "afros": 6.17e-08, + "agip": 6.17e-08, + "ague": 6.17e-08, + "ahaz": 6.17e-08, + "ahjussi": 6.17e-08, + "aini": 6.17e-08, + "aiyar": 6.17e-08, + "aju": 6.17e-08, + "akihiro": 6.17e-08, + "alang": 6.17e-08, + "alay": 6.17e-08, + "albertos": 6.17e-08, + "albom": 6.17e-08, + "alethea": 6.17e-08, + "alize": 6.17e-08, + "allmendinger": 6.17e-08, + "allmusic": 6.17e-08, + "allum": 6.17e-08, + "almo": 6.17e-08, + "alwa": 6.17e-08, + "amarth": 6.17e-08, + "ament": 6.17e-08, + "amethi": 6.17e-08, + "amil": 6.17e-08, + "amlodipine": 6.17e-08, + "amoebic": 6.17e-08, + "ananta": 6.17e-08, + "andreev": 6.17e-08, + "aneuploidy": 6.17e-08, + "anj": 6.17e-08, + "anthropos": 6.17e-08, + "antiproton": 6.17e-08, + "antiqued": 6.17e-08, + "antonovich": 6.17e-08, + "anw": 6.17e-08, + "anwars": 6.17e-08, + "aperiodic": 6.17e-08, + "aphelion": 6.17e-08, + "apollonian": 6.17e-08, + "apparels": 6.17e-08, + "apprehends": 6.17e-08, + "appu": 6.17e-08, + "apsley": 6.17e-08, + "apter": 6.17e-08, + "archelaus": 6.17e-08, + "arina": 6.17e-08, + "arkansans": 6.17e-08, + "arline": 6.17e-08, + "armitstead": 6.17e-08, + "arwa": 6.17e-08, + "asexuals": 6.17e-08, + "asrock": 6.17e-08, + "assateague": 6.17e-08, + "atem": 6.17e-08, + "attestations": 6.17e-08, + "attractant": 6.17e-08, + "aurochs": 6.17e-08, + "automorphisms": 6.17e-08, + "aveline": 6.17e-08, + "aventure": 6.17e-08, + "azza": 6.17e-08, + "backdraft": 6.17e-08, + "backgrounder": 6.17e-08, + "bacup": 6.17e-08, + "badassery": 6.17e-08, + "baddiel": 6.17e-08, + "balancers": 6.17e-08, + "balbo": 6.17e-08, + "baled": 6.17e-08, + "bandaranaike": 6.17e-08, + "bandersnatch": 6.17e-08, + "banke": 6.17e-08, + "barcelo": 6.17e-08, + "barceloneta": 6.17e-08, + "bareboat": 6.17e-08, + "baretta": 6.17e-08, + "barnardos": 6.17e-08, + "barrenness": 6.17e-08, + "basels": 6.17e-08, + "basilicas": 6.17e-08, + "basri": 6.17e-08, + "battambang": 6.17e-08, + "baybay": 6.17e-08, + "bazan": 6.17e-08, + "bbls": 6.17e-08, + "bcu": 6.17e-08, + "beaky": 6.17e-08, + "bedfords": 6.17e-08, + "beetham": 6.17e-08, + "beetroots": 6.17e-08, + "beinecke": 6.17e-08, + "bensley": 6.17e-08, + "bentaleb": 6.17e-08, + "benzie": 6.17e-08, + "benzos": 6.17e-08, + "bery": 6.17e-08, + "bfe": 6.17e-08, + "bhuvneshwar": 6.17e-08, + "binger": 6.17e-08, + "bipeds": 6.17e-08, + "biriyani": 6.17e-08, + "birtherism": 6.17e-08, + "biti": 6.17e-08, + "bittman": 6.17e-08, + "blayne": 6.17e-08, + "blayney": 6.17e-08, + "blewitt": 6.17e-08, + "bne": 6.17e-08, + "boatbuilding": 6.17e-08, + "bocanegra": 6.17e-08, + "boitano": 6.17e-08, + "boivin": 6.17e-08, + "bollock": 6.17e-08, + "bolters": 6.17e-08, + "bonython": 6.17e-08, + "bopara": 6.17e-08, + "borehamwood": 6.17e-08, + "borek": 6.17e-08, + "boricua": 6.17e-08, + "bournemouths": 6.17e-08, + "boydell": 6.17e-08, + "bracks": 6.17e-08, + "braw": 6.17e-08, + "brazeau": 6.17e-08, + "brillouin": 6.17e-08, + "broaches": 6.17e-08, + "bross": 6.17e-08, + "brou": 6.17e-08, + "brummel": 6.17e-08, + "brusquely": 6.17e-08, + "bucketful": 6.17e-08, + "bue": 6.17e-08, + "builth": 6.17e-08, + "bulimba": 6.17e-08, + "bulow": 6.17e-08, + "bura": 6.17e-08, + "bures": 6.17e-08, + "burkholder": 6.17e-08, + "burritt": 6.17e-08, + "buse": 6.17e-08, + "bushrod": 6.17e-08, + "buskirk": 6.17e-08, + "butner": 6.17e-08, + "buttonwood": 6.17e-08, + "bvlgari": 6.17e-08, + "bwl": 6.17e-08, + "bwp": 6.17e-08, + "bybee": 6.17e-08, + "cadaveric": 6.17e-08, + "cahuenga": 6.17e-08, + "califano": 6.17e-08, + "calne": 6.17e-08, + "cancan": 6.17e-08, + "cance": 6.17e-08, + "cantered": 6.17e-08, + "carano": 6.17e-08, + "carboplatin": 6.17e-08, + "carnivale": 6.17e-08, + "carriere": 6.17e-08, + "caselli": 6.17e-08, + "cataclysms": 6.17e-08, + "catchier": 6.17e-08, + "ccpa": 6.17e-08, + "cebit": 6.17e-08, + "cementation": 6.17e-08, + "centrica": 6.17e-08, + "cers": 6.17e-08, + "ceylonese": 6.17e-08, + "cfrp": 6.17e-08, + "cgiar": 6.17e-08, + "chapa": 6.17e-08, + "cherubic": 6.17e-08, + "chessmen": 6.17e-08, + "chevening": 6.17e-08, + "chicco": 6.17e-08, + "chickweed": 6.17e-08, + "chigi": 6.17e-08, + "chihaya": 6.17e-08, + "chihuly": 6.17e-08, + "childproof": 6.17e-08, + "choleric": 6.17e-08, + "chrism": 6.17e-08, + "christel": 6.17e-08, + "cicerone": 6.17e-08, + "cimetidine": 6.17e-08, + "cinephile": 6.17e-08, + "cintra": 6.17e-08, + "cipa": 6.17e-08, + "cistercians": 6.17e-08, + "citrulline": 6.17e-08, + "clarin": 6.17e-08, + "clasts": 6.17e-08, + "claudie": 6.17e-08, + "clomiphene": 6.17e-08, + "cloudier": 6.17e-08, + "cluedo": 6.17e-08, + "clydeside": 6.17e-08, + "cmj": 6.17e-08, + "cnets": 6.17e-08, + "coderre": 6.17e-08, + "codger": 6.17e-08, + "codpiece": 6.17e-08, + "cognizable": 6.17e-08, + "collates": 6.17e-08, + "collen": 6.17e-08, + "colly": 6.17e-08, + "colombe": 6.17e-08, + "comida": 6.17e-08, + "commendatore": 6.17e-08, + "companhia": 6.17e-08, + "comparision": 6.17e-08, + "compatibles": 6.17e-08, + "compu": 6.17e-08, + "coned": 6.17e-08, + "conon": 6.17e-08, + "contrarians": 6.17e-08, + "coola": 6.17e-08, + "copyleft": 6.17e-08, + "coran": 6.17e-08, + "coronets": 6.17e-08, + "coulibaly": 6.17e-08, + "countach": 6.17e-08, + "countersuit": 6.17e-08, + "cowbridge": 6.17e-08, + "cozies": 6.17e-08, + "craftiness": 6.17e-08, + "cremorne": 6.17e-08, + "crestor": 6.17e-08, + "cricklewood": 6.17e-08, + "cristin": 6.17e-08, + "cruzi": 6.17e-08, + "culvers": 6.17e-08, + "cuo": 6.17e-08, + "cyclooxygenase": 6.17e-08, + "cyclopean": 6.17e-08, + "cydonia": 6.17e-08, + "czk": 6.17e-08, + "daguerre": 6.17e-08, + "dahn": 6.17e-08, + "danda": 6.17e-08, + "dange": 6.17e-08, + "debarge": 6.17e-08, + "debe": 6.17e-08, + "decidable": 6.17e-08, + "declans": 6.17e-08, + "decora": 6.17e-08, + "decrepitude": 6.17e-08, + "deel": 6.17e-08, + "defoes": 6.17e-08, + "deftness": 6.17e-08, + "degroot": 6.17e-08, + "dehiscence": 6.17e-08, + "deicing": 6.17e-08, + "demethylation": 6.17e-08, + "demurely": 6.17e-08, + "denature": 6.17e-08, + "dentata": 6.17e-08, + "deped": 6.17e-08, + "dessen": 6.17e-08, + "destabilisation": 6.17e-08, + "detriments": 6.17e-08, + "detwiler": 6.17e-08, + "devanagari": 6.17e-08, + "devotionals": 6.17e-08, + "diabolo": 6.17e-08, + "dieted": 6.17e-08, + "differents": 6.17e-08, + "diffie": 6.17e-08, + "digga": 6.17e-08, + "dilawar": 6.17e-08, + "diopter": 6.17e-08, + "disembowel": 6.17e-08, + "disinvited": 6.17e-08, + "disrobing": 6.17e-08, + "distention": 6.17e-08, + "dobsons": 6.17e-08, + "doffing": 6.17e-08, + "doggerel": 6.17e-08, + "dojos": 6.17e-08, + "doonan": 6.17e-08, + "dorval": 6.17e-08, + "douglasville": 6.17e-08, + "dowland": 6.17e-08, + "downloaders": 6.17e-08, + "dowsett": 6.17e-08, + "drizzt": 6.17e-08, + "dsf": 6.17e-08, + "dsps": 6.17e-08, + "dtw": 6.17e-08, + "duckweed": 6.17e-08, + "dukan": 6.17e-08, + "dumbs": 6.17e-08, + "dunkerque": 6.17e-08, + "dunlin": 6.17e-08, + "duramax": 6.17e-08, + "dwade": 6.17e-08, + "eag": 6.17e-08, + "easington": 6.17e-08, + "eather": 6.17e-08, + "eaw": 6.17e-08, + "econoline": 6.17e-08, + "ecthr": 6.17e-08, + "eesti": 6.17e-08, + "effet": 6.17e-08, + "egot": 6.17e-08, + "egy": 6.17e-08, + "eike": 6.17e-08, + "eks": 6.17e-08, + "elapses": 6.17e-08, + "elasticsearch": 6.17e-08, + "electability": 6.17e-08, + "electrocardiography": 6.17e-08, + "electrostatics": 6.17e-08, + "elfie": 6.17e-08, + "elsbeth": 6.17e-08, + "embeddable": 6.17e-08, + "emend": 6.17e-08, + "employe": 6.17e-08, + "employes": 6.17e-08, + "emsworth": 6.17e-08, + "emulsification": 6.17e-08, + "endodontics": 6.17e-08, + "enloe": 6.17e-08, + "eow": 6.17e-08, + "epicness": 6.17e-08, + "eroica": 6.17e-08, + "escorial": 6.17e-08, + "etonian": 6.17e-08, + "evader": 6.17e-08, + "everytown": 6.17e-08, + "everywoman": 6.17e-08, + "evoo": 6.17e-08, + "excoriating": 6.17e-08, + "excretes": 6.17e-08, + "exordium": 6.17e-08, + "exoteric": 6.17e-08, + "expectorant": 6.17e-08, + "extortionists": 6.17e-08, + "eyedropper": 6.17e-08, + "faites": 6.17e-08, + "fakhri": 6.17e-08, + "familes": 6.17e-08, + "farmar": 6.17e-08, + "farrows": 6.17e-08, + "fascinations": 6.17e-08, + "fastidiously": 6.17e-08, + "federline": 6.17e-08, + "fedotov": 6.17e-08, + "feg": 6.17e-08, + "feminazis": 6.17e-08, + "fenestra": 6.17e-08, + "feodor": 6.17e-08, + "ferlinghetti": 6.17e-08, + "fermenters": 6.17e-08, + "ferrells": 6.17e-08, + "ferruccio": 6.17e-08, + "fertilizes": 6.17e-08, + "fettered": 6.17e-08, + "fidgets": 6.17e-08, + "fika": 6.17e-08, + "filariasis": 6.17e-08, + "finalisation": 6.17e-08, + "firebrands": 6.17e-08, + "firelands": 6.17e-08, + "fishponds": 6.17e-08, + "flashbulbs": 6.17e-08, + "flatworms": 6.17e-08, + "flavell": 6.17e-08, + "fle": 6.17e-08, + "florsheim": 6.17e-08, + "flossy": 6.17e-08, + "fluorophore": 6.17e-08, + "fluster": 6.17e-08, + "fmcsa": 6.17e-08, + "fokus": 6.17e-08, + "foliated": 6.17e-08, + "footrest": 6.17e-08, + "forelock": 6.17e-08, + "foreskins": 6.17e-08, + "forint": 6.17e-08, + "formidably": 6.17e-08, + "forsakes": 6.17e-08, + "fosco": 6.17e-08, + "fossae": 6.17e-08, + "fragonard": 6.17e-08, + "francorchamps": 6.17e-08, + "frankfurters": 6.17e-08, + "fratellis": 6.17e-08, + "freemantle": 6.17e-08, + "frigo": 6.17e-08, + "frodsham": 6.17e-08, + "frohman": 6.17e-08, + "frons": 6.17e-08, + "ftes": 6.17e-08, + "fuckwits": 6.17e-08, + "fuera": 6.17e-08, + "funai": 6.17e-08, + "fundacion": 6.17e-08, + "galati": 6.17e-08, + "galion": 6.17e-08, + "gallipolis": 6.17e-08, + "galvanise": 6.17e-08, + "gambol": 6.17e-08, + "gangwon": 6.17e-08, + "garu": 6.17e-08, + "gaskill": 6.17e-08, + "gbv": 6.17e-08, + "gede": 6.17e-08, + "gentrify": 6.17e-08, + "gernot": 6.17e-08, + "gervaise": 6.17e-08, + "ghaffar": 6.17e-08, + "ghazala": 6.17e-08, + "gilas": 6.17e-08, + "giurgiu": 6.17e-08, + "glacis": 6.17e-08, + "glassboro": 6.17e-08, + "glasscock": 6.17e-08, + "glassing": 6.17e-08, + "glg": 6.17e-08, + "glhf": 6.17e-08, + "gloire": 6.17e-08, + "glomerulonephritis": 6.17e-08, + "glottis": 6.17e-08, + "godo": 6.17e-08, + "goines": 6.17e-08, + "golfed": 6.17e-08, + "gondry": 6.17e-08, + "goodtime": 6.17e-08, + "goslin": 6.17e-08, + "gothel": 6.17e-08, + "goudy": 6.17e-08, + "grabe": 6.17e-08, + "grandkid": 6.17e-08, + "granges": 6.17e-08, + "granulomas": 6.17e-08, + "greeneville": 6.17e-08, + "gregori": 6.17e-08, + "greymouth": 6.17e-08, + "grf": 6.17e-08, + "grichuk": 6.17e-08, + "groupware": 6.17e-08, + "grumblings": 6.17e-08, + "guen": 6.17e-08, + "guillemot": 6.17e-08, + "guiseppe": 6.17e-08, + "gurnard": 6.17e-08, + "gymboree": 6.17e-08, + "gyula": 6.17e-08, + "hadd": 6.17e-08, + "hairlines": 6.17e-08, + "haitham": 6.17e-08, + "hakon": 6.17e-08, + "halfheartedly": 6.17e-08, + "haneke": 6.17e-08, + "hania": 6.17e-08, + "hapkido": 6.17e-08, + "happys": 6.17e-08, + "harian": 6.17e-08, + "harleen": 6.17e-08, + "harped": 6.17e-08, + "hartwick": 6.17e-08, + "haughtily": 6.17e-08, + "hayami": 6.17e-08, + "hcb": 6.17e-08, + "healthwatch": 6.17e-08, + "hearsts": 6.17e-08, + "heelers": 6.17e-08, + "hejaz": 6.17e-08, + "hemo": 6.17e-08, + "henpecked": 6.17e-08, + "herero": 6.17e-08, + "heriots": 6.17e-08, + "hermiston": 6.17e-08, + "herrero": 6.17e-08, + "herries": 6.17e-08, + "hest": 6.17e-08, + "heterodimer": 6.17e-08, + "heterozygosity": 6.17e-08, + "hews": 6.17e-08, + "heyburn": 6.17e-08, + "hilfe": 6.17e-08, + "hinchingbrooke": 6.17e-08, + "hindbrain": 6.17e-08, + "hohen": 6.17e-08, + "holtzmann": 6.17e-08, + "honkers": 6.17e-08, + "honma": 6.17e-08, + "hoola": 6.17e-08, + "hopetoun": 6.17e-08, + "horlick": 6.17e-08, + "hortensia": 6.17e-08, + "hortus": 6.17e-08, + "hoser": 6.17e-08, + "hscs": 6.17e-08, + "hunterian": 6.17e-08, + "huyton": 6.17e-08, + "hydrophones": 6.17e-08, + "hyeok": 6.17e-08, + "hypnos": 6.17e-08, + "hypnotics": 6.17e-08, + "iams": 6.17e-08, + "iannucci": 6.17e-08, + "icecaps": 6.17e-08, + "icelandair": 6.17e-08, + "icosahedral": 6.17e-08, + "idot": 6.17e-08, + "igbt": 6.17e-08, + "iguchi": 6.17e-08, + "ihren": 6.17e-08, + "iiss": 6.17e-08, + "imari": 6.17e-08, + "imba": 6.17e-08, + "imessages": 6.17e-08, + "imminence": 6.17e-08, + "immunised": 6.17e-08, + "impellers": 6.17e-08, + "inaudibly": 6.17e-08, + "ingrates": 6.17e-08, + "insectoid": 6.17e-08, + "inspiratory": 6.17e-08, + "insurrectionists": 6.17e-08, + "intelli": 6.17e-08, + "intercessors": 6.17e-08, + "interlinear": 6.17e-08, + "interweaves": 6.17e-08, + "invergordon": 6.17e-08, + "investable": 6.17e-08, + "iptables": 6.17e-08, + "isabelles": 6.17e-08, + "isotretinoin": 6.17e-08, + "itchen": 6.17e-08, + "itemised": 6.17e-08, + "itemizing": 6.17e-08, + "iwai": 6.17e-08, + "izanami": 6.17e-08, + "jadi": 6.17e-08, + "jamiat": 6.17e-08, + "jarratt": 6.17e-08, + "jatropha": 6.17e-08, + "jaylon": 6.17e-08, + "jerkins": 6.17e-08, + "jevon": 6.17e-08, + "jigawa": 6.17e-08, + "jme": 6.17e-08, + "jmo": 6.17e-08, + "jnj": 6.17e-08, + "joa": 6.17e-08, + "jocelyne": 6.17e-08, + "jodl": 6.17e-08, + "joestar": 6.17e-08, + "johnno": 6.17e-08, + "jolteon": 6.17e-08, + "jopling": 6.17e-08, + "josephines": 6.17e-08, + "jpp": 6.17e-08, + "jrf": 6.17e-08, + "juat": 6.17e-08, + "judgeships": 6.17e-08, + "jungler": 6.17e-08, + "juzo": 6.17e-08, + "kadokawa": 6.17e-08, + "kaho": 6.17e-08, + "kalra": 6.17e-08, + "karama": 6.17e-08, + "kard": 6.17e-08, + "karlo": 6.17e-08, + "karya": 6.17e-08, + "katarzyna": 6.17e-08, + "katyusha": 6.17e-08, + "katze": 6.17e-08, + "kcon": 6.17e-08, + "keary": 6.17e-08, + "keays": 6.17e-08, + "kellermann": 6.17e-08, + "kellog": 6.17e-08, + "kemo": 6.17e-08, + "kenia": 6.17e-08, + "kento": 6.17e-08, + "keyframes": 6.17e-08, + "kft": 6.17e-08, + "khaleej": 6.17e-08, + "khilafah": 6.17e-08, + "kidmans": 6.17e-08, + "kieth": 6.17e-08, + "kinetically": 6.17e-08, + "kittiwakes": 6.17e-08, + "klcc": 6.17e-08, + "kleen": 6.17e-08, + "kleptomania": 6.17e-08, + "kohen": 6.17e-08, + "kold": 6.17e-08, + "koli": 6.17e-08, + "konga": 6.17e-08, + "koninklijke": 6.17e-08, + "korban": 6.17e-08, + "kosar": 6.17e-08, + "krabbe": 6.17e-08, + "krag": 6.17e-08, + "krikorian": 6.17e-08, + "kristeva": 6.17e-08, + "kronecker": 6.17e-08, + "kta": 6.17e-08, + "ktp": 6.17e-08, + "kunde": 6.17e-08, + "kundu": 6.17e-08, + "kunio": 6.17e-08, + "kurihara": 6.17e-08, + "kwaku": 6.17e-08, + "laal": 6.17e-08, + "lacon": 6.17e-08, + "lacys": 6.17e-08, + "lainie": 6.17e-08, + "lairds": 5.01e-08, + "lakhani": 6.17e-08, + "lalande": 6.17e-08, + "lalanne": 6.17e-08, + "laliga": 6.17e-08, + "lambast": 6.17e-08, + "lamotta": 6.17e-08, + "landale": 6.17e-08, + "landcruiser": 6.17e-08, + "landwehr": 6.17e-08, + "langridge": 6.17e-08, + "langur": 6.17e-08, + "larin": 6.17e-08, + "larocca": 6.17e-08, + "lati": 6.17e-08, + "lattin": 6.17e-08, + "lauretta": 6.17e-08, + "laurette": 6.17e-08, + "lawfare": 6.17e-08, + "ldb": 6.17e-08, + "leask": 6.17e-08, + "lechner": 6.17e-08, + "legitimising": 6.17e-08, + "leias": 6.17e-08, + "lentulus": 6.17e-08, + "leviton": 6.17e-08, + "lexicons": 6.17e-08, + "lgbtiq": 6.17e-08, + "libels": 6.17e-08, + "lickety": 6.17e-08, + "liefeld": 6.17e-08, + "lifejackets": 6.17e-08, + "lifestream": 6.17e-08, + "linnaean": 6.17e-08, + "lipkin": 6.17e-08, + "lithographed": 6.17e-08, + "livemint": 6.17e-08, + "lndia": 6.17e-08, + "loblaws": 6.17e-08, + "logotype": 6.17e-08, + "lolis": 6.17e-08, + "longton": 6.17e-08, + "loopback": 6.17e-08, + "loper": 6.17e-08, + "lorien": 6.17e-08, + "lovage": 6.17e-08, + "lowlight": 6.17e-08, + "lusignan": 6.17e-08, + "lutterworth": 6.17e-08, + "maari": 6.17e-08, + "maass": 6.17e-08, + "machados": 6.17e-08, + "mafi": 6.17e-08, + "magarey": 6.17e-08, + "magoffin": 6.17e-08, + "mahasabha": 6.17e-08, + "mahn": 6.17e-08, + "maister": 6.17e-08, + "mams": 6.17e-08, + "mammas": 6.17e-08, + "mamu": 6.17e-08, + "manal": 6.17e-08, + "mansoura": 6.17e-08, + "manwaring": 6.17e-08, + "mapmaker": 6.17e-08, + "mapreduce": 6.17e-08, + "marcius": 6.17e-08, + "mariusz": 6.17e-08, + "maroochydore": 6.17e-08, + "matchroom": 6.17e-08, + "maulvi": 6.17e-08, + "mayang": 6.17e-08, + "mbda": 6.17e-08, + "mbia": 6.17e-08, + "mccammon": 6.17e-08, + "mccardle": 6.17e-08, + "mccorquodale": 6.17e-08, + "mccovey": 6.17e-08, + "mcdonell": 6.17e-08, + "mcdonnells": 6.17e-08, + "mcgoverns": 6.17e-08, + "mcgowans": 6.17e-08, + "mckayla": 6.17e-08, + "mcsweeneys": 6.17e-08, + "meaden": 6.17e-08, + "medicago": 6.17e-08, + "mehboob": 6.17e-08, + "meineke": 6.17e-08, + "menifee": 6.17e-08, + "merrymaking": 6.17e-08, + "mesilla": 6.17e-08, + "mesos": 6.17e-08, + "metallized": 6.17e-08, + "mikmaq": 6.17e-08, + "miche": 6.17e-08, + "michy": 6.17e-08, + "middlebrow": 6.17e-08, + "mieux": 6.17e-08, + "mighta": 6.17e-08, + "mijo": 6.17e-08, + "mikas": 6.17e-08, + "militarists": 6.17e-08, + "minish": 6.17e-08, + "miniver": 6.17e-08, + "mismatching": 6.17e-08, + "missourian": 6.17e-08, + "mistyped": 6.17e-08, + "miters": 6.17e-08, + "mitm": 6.17e-08, + "mitton": 6.17e-08, + "mizpah": 6.17e-08, + "mjd": 6.17e-08, + "mladen": 6.17e-08, + "mmbtu": 6.17e-08, + "moctezuma": 6.17e-08, + "moiras": 6.17e-08, + "monastics": 6.17e-08, + "mondes": 6.17e-08, + "monnier": 6.17e-08, + "monthlies": 6.17e-08, + "moobs": 6.17e-08, + "moorea": 6.17e-08, + "moreish": 6.17e-08, + "motorcoach": 6.17e-08, + "mottola": 6.17e-08, + "moviegoer": 6.17e-08, + "moyse": 6.17e-08, + "mukha": 6.17e-08, + "mulches": 6.17e-08, + "multipole": 6.17e-08, + "mumu": 6.17e-08, + "muscogee": 6.17e-08, + "mutai": 6.17e-08, + "myka": 6.17e-08, + "nagant": 6.17e-08, + "nakshatra": 6.17e-08, + "nalbandian": 6.17e-08, + "namie": 6.17e-08, + "napiers": 6.17e-08, + "napolean": 6.17e-08, + "nassers": 6.17e-08, + "nataliya": 6.17e-08, + "nauruan": 6.17e-08, + "naypyidaw": 6.17e-08, + "ncdc": 6.17e-08, + "nealy": 6.17e-08, + "needin": 6.17e-08, + "negombo": 6.17e-08, + "nellies": 6.17e-08, + "nembutal": 6.17e-08, + "nenshi": 6.17e-08, + "neoplatonic": 6.17e-08, + "nephrectomy": 6.17e-08, + "nerium": 6.17e-08, + "neuchatel": 6.17e-08, + "neurath": 6.17e-08, + "neyman": 6.17e-08, + "nibelungen": 6.17e-08, + "nicea": 6.17e-08, + "nieuw": 6.17e-08, + "nishino": 6.17e-08, + "nnt": 6.17e-08, + "nonsmoker": 6.17e-08, + "nonuniform": 6.17e-08, + "nordhaus": 6.17e-08, + "noren": 6.17e-08, + "northlands": 6.17e-08, + "norv": 6.17e-08, + "noss": 6.17e-08, + "notepaper": 6.17e-08, + "nrb": 6.17e-08, + "nucleophile": 6.17e-08, + "nueve": 6.17e-08, + "nurmi": 6.17e-08, + "nuss": 6.17e-08, + "nyasa": 6.17e-08, + "nyaya": 6.17e-08, + "nycha": 6.17e-08, + "nysc": 6.17e-08, + "oaa": 6.17e-08, + "oakman": 6.17e-08, + "oatlands": 6.17e-08, + "oblasts": 6.17e-08, + "obu": 6.17e-08, + "obviated": 6.17e-08, + "oecds": 6.17e-08, + "oflife": 6.17e-08, + "ofo": 6.17e-08, + "okaloosa": 6.17e-08, + "oligodendrocytes": 6.17e-08, + "omidyar": 6.17e-08, + "omnibuses": 6.17e-08, + "omura": 6.17e-08, + "ontogenetic": 6.17e-08, + "opis": 6.17e-08, + "oportunity": 6.17e-08, + "orchis": 6.17e-08, + "organismal": 6.17e-08, + "orgo": 6.17e-08, + "ortigas": 6.17e-08, + "oruro": 6.17e-08, + "osan": 6.17e-08, + "osinbajo": 6.17e-08, + "ospreay": 6.17e-08, + "ossory": 6.17e-08, + "ostracize": 6.17e-08, + "otaki": 6.17e-08, + "otterbein": 6.17e-08, + "otunga": 6.17e-08, + "ouro": 6.17e-08, + "outcompete": 6.17e-08, + "overfished": 6.17e-08, + "overpricing": 6.17e-08, + "oversteps": 6.17e-08, + "owego": 6.17e-08, + "paddleboarding": 6.17e-08, + "paga": 6.17e-08, + "pallett": 6.17e-08, + "palling": 6.17e-08, + "palpitating": 6.17e-08, + "panerai": 6.17e-08, + "paquito": 6.17e-08, + "paraguayans": 6.17e-08, + "parametrization": 6.17e-08, + "parol": 6.17e-08, + "pasek": 6.17e-08, + "pasqual": 6.17e-08, + "patino": 6.17e-08, + "pavlyuchenkova": 6.17e-08, + "pealed": 6.17e-08, + "peated": 6.17e-08, + "pedicab": 6.17e-08, + "peelings": 6.17e-08, + "pennyroyal": 6.17e-08, + "penshurst": 6.17e-08, + "pensively": 6.17e-08, + "pepsis": 2.4e-08, + "persis": 6.17e-08, + "persistency": 6.17e-08, + "pfennig": 6.17e-08, + "pharmacopeia": 6.17e-08, + "phonologically": 6.17e-08, + "phosphorylase": 6.17e-08, + "photobombing": 6.17e-08, + "photobombs": 6.17e-08, + "photomontage": 6.17e-08, + "phraya": 6.17e-08, + "piccolomini": 6.17e-08, + "pickersgill": 6.17e-08, + "picoult": 6.17e-08, + "pierzynski": 6.17e-08, + "pininfarina": 6.17e-08, + "pixy": 6.17e-08, + "plasmapheresis": 6.17e-08, + "playthroughs": 6.17e-08, + "plunderers": 6.17e-08, + "plutocrat": 6.17e-08, + "pmos": 6.17e-08, + "podhoretz": 6.17e-08, + "politecnico": 6.17e-08, + "polyvalent": 6.17e-08, + "pomelo": 6.17e-08, + "popularising": 6.17e-08, + "postcolonialism": 6.17e-08, + "postern": 6.17e-08, + "posthumus": 6.17e-08, + "pottage": 6.17e-08, + "ppvs": 6.17e-08, + "pract": 6.17e-08, + "pranced": 6.17e-08, + "preachings": 6.17e-08, + "preceptors": 6.17e-08, + "prefixing": 6.17e-08, + "pregnenolone": 6.17e-08, + "prelaunch": 6.17e-08, + "prereq": 6.17e-08, + "primatologist": 6.17e-08, + "prising": 6.17e-08, + "proactiv": 6.17e-08, + "probaly": 6.17e-08, + "problematically": 6.17e-08, + "procedurals": 6.17e-08, + "proffering": 6.17e-08, + "prole": 6.17e-08, + "prufrock": 6.17e-08, + "pseudorandom": 6.17e-08, + "pshaw": 6.17e-08, + "psychophysics": 6.17e-08, + "punctata": 6.17e-08, + "pung": 6.17e-08, + "pwp": 6.17e-08, + "pyra": 6.17e-08, + "qara": 6.17e-08, + "quebecor": 6.17e-08, + "quicks": 6.17e-08, + "quicky": 6.17e-08, + "quillan": 6.17e-08, + "quintillion": 6.17e-08, + "quiros": 6.17e-08, + "rabah": 6.17e-08, + "rabbids": 6.17e-08, + "raconteurs": 6.17e-08, + "radhe": 6.17e-08, + "rahmani": 6.17e-08, + "rambert": 6.17e-08, + "ramm": 6.17e-08, + "randeep": 6.17e-08, + "randolphs": 6.17e-08, + "rangoli": 6.17e-08, + "raq": 6.17e-08, + "rashids": 6.17e-08, + "rastogi": 6.17e-08, + "rationalistic": 6.17e-08, + "rawi": 6.17e-08, + "rayudu": 6.17e-08, + "rdas": 6.17e-08, + "rdb": 6.17e-08, + "realtek": 6.17e-08, + "realz": 6.17e-08, + "rebelde": 6.17e-08, + "redbank": 6.17e-08, + "reddi": 6.17e-08, + "rededicate": 6.17e-08, + "redmonds": 6.17e-08, + "referrer": 6.17e-08, + "regier": 6.17e-08, + "reinsdorf": 6.17e-08, + "relisted": 6.17e-08, + "remainer": 6.17e-08, + "remick": 6.17e-08, + "renne": 6.17e-08, + "reorienting": 6.17e-08, + "reprocess": 6.17e-08, + "reprove": 6.17e-08, + "resolvable": 6.17e-08, + "resupplying": 6.17e-08, + "reti": 6.17e-08, + "retz": 6.17e-08, + "reverser": 6.17e-08, + "revolutionists": 6.17e-08, + "rhb": 6.17e-08, + "rheum": 6.17e-08, + "rhymer": 6.17e-08, + "ribonucleic": 6.17e-08, + "rickmansworth": 6.17e-08, + "rideable": 6.17e-08, + "riehl": 6.17e-08, + "rissa": 6.17e-08, + "rml": 6.17e-08, + "robarts": 6.17e-08, + "robocall": 6.17e-08, + "rodarte": 6.17e-08, + "rodion": 6.17e-08, + "rogerss": 6.17e-08, + "roraima": 6.17e-08, + "rotationally": 6.17e-08, + "roughy": 6.17e-08, + "roundheads": 6.17e-08, + "rousers": 6.17e-08, + "rsvpd": 6.17e-08, + "rund": 6.17e-08, + "runts": 6.17e-08, + "saara": 6.17e-08, + "sabes": 6.17e-08, + "saca": 6.17e-08, + "sacp": 6.17e-08, + "sadeghi": 6.17e-08, + "saids": 6.17e-08, + "saiva": 6.17e-08, + "salil": 6.17e-08, + "salima": 6.17e-08, + "salleh": 6.17e-08, + "samut": 6.17e-08, + "sanctis": 6.17e-08, + "saquon": 6.17e-08, + "sarepta": 6.17e-08, + "satins": 6.17e-08, + "scats": 6.17e-08, + "schakowsky": 6.17e-08, + "schill": 6.17e-08, + "schneller": 6.17e-08, + "schoch": 6.17e-08, + "scholastica": 6.17e-08, + "scholten": 6.17e-08, + "scorches": 6.17e-08, + "screensavers": 6.17e-08, + "scrivens": 6.17e-08, + "scroggins": 6.17e-08, + "scrunchies": 6.17e-08, + "sdxc": 6.17e-08, + "seatpost": 6.17e-08, + "secularisation": 6.17e-08, + "sedins": 6.17e-08, + "seibel": 6.17e-08, + "selenide": 6.17e-08, + "semedo": 6.17e-08, + "semitones": 6.17e-08, + "senat": 6.17e-08, + "senti": 6.17e-08, + "seppi": 6.17e-08, + "sericulture": 6.17e-08, + "severnaya": 6.17e-08, + "sgb": 6.17e-08, + "sgf": 6.17e-08, + "shacked": 6.17e-08, + "shackletons": 6.17e-08, + "shaddai": 6.17e-08, + "shakil": 6.17e-08, + "shakiness": 6.17e-08, + "shakthi": 6.17e-08, + "shaku": 6.17e-08, + "sharat": 6.17e-08, + "shazier": 6.17e-08, + "shearson": 6.17e-08, + "shenzhou": 6.17e-08, + "sherrys": 6.17e-08, + "shipka": 6.17e-08, + "shitloads": 6.17e-08, + "shootaround": 6.17e-08, + "shorthorn": 6.17e-08, + "shushan": 6.17e-08, + "shyla": 6.17e-08, + "sickbay": 6.17e-08, + "sicut": 6.17e-08, + "siddle": 6.17e-08, + "sidewinders": 6.17e-08, + "sies": 6.17e-08, + "sightly": 6.17e-08, + "sigman": 6.17e-08, + "signees": 6.17e-08, + "silsbee": 6.17e-08, + "silvestro": 6.17e-08, + "simpatico": 6.17e-08, + "simper": 6.17e-08, + "sinton": 6.17e-08, + "sistani": 6.17e-08, + "sked": 6.17e-08, + "skivvies": 6.17e-08, + "skoll": 6.17e-08, + "skullgirls": 6.17e-08, + "skywards": 6.17e-08, + "sloganeering": 6.17e-08, + "smokiness": 6.17e-08, + "smudgy": 6.17e-08, + "snls": 6.17e-08, + "snuggie": 6.17e-08, + "soden": 6.17e-08, + "sodus": 6.17e-08, + "soga": 6.17e-08, + "solingen": 6.17e-08, + "solnit": 6.17e-08, + "sonyas": 6.17e-08, + "sorbent": 6.17e-08, + "sorge": 6.17e-08, + "soro": 6.17e-08, + "sots": 6.17e-08, + "soulcalibur": 6.17e-08, + "sowie": 6.17e-08, + "spacelab": 6.17e-08, + "spackle": 6.17e-08, + "spandrels": 6.17e-08, + "spankin": 6.17e-08, + "specifiers": 6.17e-08, + "spinola": 6.17e-08, + "splats": 6.17e-08, + "spokesmodel": 6.17e-08, + "spoliation": 6.17e-08, + "sportback": 6.17e-08, + "spruces": 6.17e-08, + "sqq": 6.17e-08, + "squidgy": 6.17e-08, + "srr": 6.17e-08, + "stach": 6.17e-08, + "staf": 6.17e-08, + "stainton": 6.17e-08, + "stalagmite": 6.17e-08, + "standardising": 6.17e-08, + "stanek": 6.17e-08, + "starlite": 6.17e-08, + "steinert": 6.17e-08, + "stenton": 6.17e-08, + "sterna": 6.17e-08, + "stethoscopes": 6.17e-08, + "stiches": 6.17e-08, + "stilinski": 6.17e-08, + "stockmen": 6.17e-08, + "stonegate": 6.17e-08, + "storico": 6.17e-08, + "strathallan": 6.17e-08, + "streator": 6.17e-08, + "streetscapes": 6.17e-08, + "stro": 6.17e-08, + "sturge": 6.17e-08, + "suan": 6.17e-08, + "subtropics": 6.17e-08, + "successional": 6.17e-08, + "sugababes": 6.17e-08, + "suggestibility": 6.17e-08, + "sumthin": 6.17e-08, + "sundried": 6.17e-08, + "superga": 6.17e-08, + "superimposition": 6.17e-08, + "supernatants": 6.17e-08, + "surprize": 6.17e-08, + "sweetmeats": 6.17e-08, + "swingarm": 6.17e-08, + "swingle": 6.17e-08, + "swoboda": 6.17e-08, + "sya": 6.17e-08, + "symfony": 6.17e-08, + "symphonie": 6.17e-08, + "symphonys": 6.17e-08, + "tacticians": 6.17e-08, + "taille": 6.17e-08, + "takeshita": 6.17e-08, + "talman": 6.17e-08, + "tampers": 6.17e-08, + "tandoor": 6.17e-08, + "tankless": 6.17e-08, + "tarah": 6.17e-08, + "tast": 6.17e-08, + "tearin": 6.17e-08, + "tehrani": 6.17e-08, + "testarossa": 6.17e-08, + "tevis": 6.17e-08, + "thalers": 6.17e-08, + "thermomix": 6.17e-08, + "thiols": 6.17e-08, + "thomases": 6.17e-08, + "threadlike": 6.17e-08, + "timotheus": 6.17e-08, + "tingled": 6.17e-08, + "tism": 6.17e-08, + "titov": 6.17e-08, + "tkr": 6.17e-08, + "tmn": 6.17e-08, + "toal": 6.17e-08, + "todor": 6.17e-08, + "tomcats": 6.17e-08, + "tooooo": 6.17e-08, + "topkapi": 6.17e-08, + "tord": 6.17e-08, + "torna": 6.17e-08, + "toyin": 6.17e-08, + "trabant": 6.17e-08, + "tranquilized": 6.17e-08, + "traralgon": 6.17e-08, + "trendsetting": 6.17e-08, + "treo": 6.17e-08, + "tresor": 6.17e-08, + "trichloride": 6.17e-08, + "triply": 6.17e-08, + "trippe": 6.17e-08, + "triumphalism": 6.17e-08, + "trk": 6.17e-08, + "trombley": 6.17e-08, + "tsas": 6.17e-08, + "tularemia": 6.17e-08, + "ucg": 6.17e-08, + "uden": 6.17e-08, + "umbreon": 6.17e-08, + "unbelieveable": 6.17e-08, + "uncured": 6.17e-08, + "undecidable": 6.17e-08, + "undernutrition": 6.17e-08, + "undershirts": 6.17e-08, + "uneventfully": 6.17e-08, + "unexploited": 6.17e-08, + "unfenced": 6.17e-08, + "unfriending": 6.17e-08, + "ungoverned": 6.17e-08, + "unlatched": 6.17e-08, + "unprofessionally": 6.17e-08, + "unsettles": 6.17e-08, + "unstained": 6.17e-08, + "untypical": 6.17e-08, + "updrafts": 6.17e-08, + "urc": 6.17e-08, + "urca": 6.17e-08, + "uren": 6.17e-08, + "urvashi": 6.17e-08, + "vally": 6.17e-08, + "valproic": 6.17e-08, + "vamping": 6.17e-08, + "varices": 6.17e-08, + "vasudev": 6.17e-08, + "vaught": 6.17e-08, + "vci": 6.17e-08, + "vcl": 6.17e-08, + "vdp": 6.17e-08, + "veale": 6.17e-08, + "venkaiah": 6.17e-08, + "ventolin": 6.17e-08, + "verbalizing": 6.17e-08, + "vervain": 6.17e-08, + "vestibules": 6.17e-08, + "vibro": 6.17e-08, + "victimology": 6.17e-08, + "vidcon": 6.17e-08, + "viele": 6.17e-08, + "vimes": 6.17e-08, + "vinogradov": 6.17e-08, + "vinter": 6.17e-08, + "vitruvian": 6.17e-08, + "voe": 6.17e-08, + "vogelsong": 6.17e-08, + "volute": 6.17e-08, + "vulgarities": 6.17e-08, + "wadebridge": 6.17e-08, + "waggling": 6.17e-08, + "walbridge": 6.17e-08, + "walke": 6.17e-08, + "wallner": 6.17e-08, + "wamp": 6.17e-08, + "wanchai": 6.17e-08, + "wankhede": 6.17e-08, + "warre": 6.17e-08, + "washin": 6.17e-08, + "watrous": 6.17e-08, + "wdym": 6.17e-08, + "weasleys": 5.75e-08, + "welkin": 6.17e-08, + "wellens": 6.17e-08, + "westmacott": 6.17e-08, + "whelming": 6.17e-08, + "whitecross": 6.17e-08, + "whitefriars": 6.17e-08, + "whitmarsh": 6.17e-08, + "whittakers": 6.17e-08, + "wiaa": 6.17e-08, + "wickmayer": 6.17e-08, + "wier": 6.17e-08, + "wigand": 6.17e-08, + "wigg": 6.17e-08, + "wigged": 6.17e-08, + "wilken": 6.17e-08, + "willbe": 6.17e-08, + "willens": 6.17e-08, + "winco": 6.17e-08, + "windsurfers": 6.17e-08, + "winglets": 6.17e-08, + "winkles": 6.17e-08, + "wisecrack": 6.17e-08, + "wiss": 6.17e-08, + "withdrawl": 6.17e-08, + "wnet": 6.17e-08, + "wob": 6.17e-08, + "wojtyla": 6.17e-08, + "woodchips": 6.17e-08, + "woomera": 6.17e-08, + "worldtour": 6.17e-08, + "wpd": 6.17e-08, + "wsjs": 6.17e-08, + "xiaoyu": 6.17e-08, + "xingu": 6.17e-08, + "xlm": 6.17e-08, + "xts": 6.17e-08, + "yaad": 6.17e-08, + "yakety": 6.17e-08, + "yamamura": 6.17e-08, + "yaml": 6.17e-08, + "yanomami": 6.17e-08, + "yazd": 6.17e-08, + "yifan": 6.17e-08, + "yildirim": 6.17e-08, + "youmans": 6.17e-08, + "ytterbium": 6.17e-08, + "yuasa": 6.17e-08, + "yupp": 6.17e-08, + "zamani": 6.17e-08, + "zeitz": 6.17e-08, + "ziering": 6.17e-08, + "zildjian": 6.17e-08, + "zinchenko": 6.17e-08, + "zoomable": 6.17e-08, + "zork": 6.17e-08, + "aaaaaaand": 6.03e-08, + "abadie": 6.03e-08, + "abercorn": 6.03e-08, + "abraded": 6.03e-08, + "acar": 6.03e-08, + "accomodating": 6.03e-08, + "acculturated": 6.03e-08, + "acetabulum": 6.03e-08, + "acidifying": 6.03e-08, + "adeleke": 6.03e-08, + "ademola": 6.03e-08, + "adhemar": 6.03e-08, + "advan": 6.03e-08, + "advertisment": 6.03e-08, + "advocare": 6.03e-08, + "adyar": 6.03e-08, + "adze": 6.03e-08, + "afganistan": 6.03e-08, + "afterimage": 6.03e-08, + "agan": 6.03e-08, + "agawam": 6.03e-08, + "agender": 6.03e-08, + "agriculturists": 6.03e-08, + "agrochemical": 6.03e-08, + "ahvaz": 6.03e-08, + "aicte": 6.03e-08, + "aiib": 6.03e-08, + "airily": 6.03e-08, + "airtran": 6.03e-08, + "aishah": 6.03e-08, + "aiu": 6.03e-08, + "aizu": 6.03e-08, + "alack": 6.03e-08, + "aldersgate": 6.03e-08, + "alecto": 6.03e-08, + "algren": 6.03e-08, + "allaire": 6.03e-08, + "allawi": 6.03e-08, + "allemande": 6.03e-08, + "allylic": 6.03e-08, + "altice": 6.03e-08, + "amand": 6.03e-08, + "amandine": 6.03e-08, + "amaranthus": 6.03e-08, + "ameobi": 6.03e-08, + "amigurumi": 6.03e-08, + "amnesic": 6.03e-08, + "amorality": 6.03e-08, + "amoris": 6.03e-08, + "anabasis": 6.03e-08, + "andina": 6.03e-08, + "angstroms": 6.03e-08, + "annelise": 6.03e-08, + "annett": 6.03e-08, + "anser": 6.03e-08, + "antipolo": 6.03e-08, + "appen": 6.03e-08, + "appliques": 6.03e-08, + "apposition": 6.03e-08, + "apprenticing": 6.03e-08, + "araucaria": 6.03e-08, + "archivio": 6.03e-08, + "ardsley": 6.03e-08, + "argumentum": 6.03e-08, + "arlanda": 6.03e-08, + "arlovski": 6.03e-08, + "arriaga": 6.03e-08, + "arseny": 6.03e-08, + "arteritis": 6.03e-08, + "ases": 6.03e-08, + "asherah": 6.03e-08, + "asphyxiate": 6.03e-08, + "assasination": 6.03e-08, + "astringency": 6.03e-08, + "atau": 6.03e-08, + "atque": 6.03e-08, + "atsuko": 6.03e-08, + "attard": 6.03e-08, + "auda": 6.03e-08, + "audemars": 6.03e-08, + "augmentative": 6.03e-08, + "aup": 6.03e-08, + "authenticates": 6.03e-08, + "avivs": 6.03e-08, + "avonmouth": 6.03e-08, + "axum": 6.03e-08, + "aylin": 6.03e-08, + "ayumu": 6.03e-08, + "aznar": 6.03e-08, + "babyish": 6.03e-08, + "bachrach": 6.03e-08, + "backfilled": 6.03e-08, + "backstabbed": 6.03e-08, + "bacs": 6.03e-08, + "baiters": 6.03e-08, + "baju": 6.03e-08, + "bansko": 6.03e-08, + "banya": 6.03e-08, + "baringo": 6.03e-08, + "barracudas": 6.03e-08, + "barragan": 6.03e-08, + "bastin": 6.03e-08, + "batallion": 6.03e-08, + "bayles": 6.03e-08, + "bazi": 6.03e-08, + "beadles": 6.03e-08, + "bearly": 6.03e-08, + "beco": 6.03e-08, + "beddoe": 6.03e-08, + "bedrest": 6.03e-08, + "beechey": 6.03e-08, + "befalling": 6.03e-08, + "behari": 6.03e-08, + "belur": 6.03e-08, + "bennelong": 6.03e-08, + "beriberi": 6.03e-08, + "bericht": 6.03e-08, + "bernadine": 6.03e-08, + "bgl": 6.03e-08, + "bhansali": 6.03e-08, + "bharu": 6.03e-08, + "bhumi": 6.03e-08, + "bided": 6.03e-08, + "billeting": 6.03e-08, + "biodefense": 6.03e-08, + "biosolids": 6.03e-08, + "birdsville": 6.03e-08, + "blamey": 6.03e-08, + "blancas": 6.03e-08, + "blueness": 6.03e-08, + "bluestem": 6.03e-08, + "blytheville": 6.03e-08, + "bmv": 6.03e-08, + "boeck": 6.03e-08, + "boga": 6.03e-08, + "bogarts": 6.03e-08, + "boger": 6.03e-08, + "bogglingly": 6.03e-08, + "boley": 6.03e-08, + "boneheads": 6.03e-08, + "boondock": 6.03e-08, + "booneville": 6.03e-08, + "borchardt": 6.03e-08, + "borna": 6.03e-08, + "botev": 6.03e-08, + "bould": 6.03e-08, + "boyardee": 6.03e-08, + "brachiopod": 6.03e-08, + "brahmanical": 6.03e-08, + "braincells": 6.03e-08, + "brancato": 6.03e-08, + "brawled": 6.03e-08, + "braziers": 6.03e-08, + "bregenz": 6.03e-08, + "brera": 6.03e-08, + "bridgehampton": 6.03e-08, + "brietbart": 6.03e-08, + "brigadiers": 6.03e-08, + "brigit": 6.03e-08, + "brokenshire": 6.03e-08, + "bronchiectasis": 6.03e-08, + "brookshire": 6.03e-08, + "brose": 6.03e-08, + "brownshirts": 6.03e-08, + "brujo": 6.03e-08, + "brysons": 6.03e-08, + "btus": 6.03e-08, + "bullosa": 6.03e-08, + "bumpkins": 6.03e-08, + "burchett": 6.03e-08, + "burslem": 6.03e-08, + "bushed": 6.03e-08, + "buttressing": 6.03e-08, + "byker": 6.03e-08, + "caer": 6.03e-08, + "caloocan": 6.03e-08, + "calthorpe": 6.03e-08, + "camarines": 6.03e-08, + "cambie": 6.03e-08, + "cambyses": 6.03e-08, + "campagnolo": 6.03e-08, + "canda": 6.03e-08, + "carjack": 6.03e-08, + "carmichaels": 6.03e-08, + "cartan": 6.03e-08, + "casares": 6.03e-08, + "cassander": 6.03e-08, + "cassim": 6.03e-08, + "casteism": 6.03e-08, + "castellated": 6.03e-08, + "catchable": 6.03e-08, + "catecholamine": 6.03e-08, + "catnap": 6.03e-08, + "ceaser": 6.03e-08, + "celaya": 6.03e-08, + "celias": 6.03e-08, + "celis": 6.03e-08, + "cementitious": 6.03e-08, + "cenci": 6.03e-08, + "centricity": 6.03e-08, + "ceph": 6.03e-08, + "ceremonious": 6.03e-08, + "chainring": 6.03e-08, + "chairlifts": 6.03e-08, + "chamoun": 6.03e-08, + "chanterelle": 6.03e-08, + "characterisations": 6.03e-08, + "charenton": 6.03e-08, + "charism": 6.03e-08, + "cheapskates": 6.03e-08, + "checkbooks": 6.03e-08, + "chedi": 6.03e-08, + "chenier": 6.03e-08, + "cheveley": 6.03e-08, + "chimaera": 6.03e-08, + "chimichurri": 6.03e-08, + "chintzy": 6.03e-08, + "chippers": 6.03e-08, + "chittering": 6.03e-08, + "chlorofluorocarbons": 6.03e-08, + "chom": 6.03e-08, + "christodoulou": 6.03e-08, + "cinzia": 6.03e-08, + "circumnavigating": 6.03e-08, + "citywalk": 6.03e-08, + "cix": 6.03e-08, + "clamoured": 6.03e-08, + "clatsop": 6.03e-08, + "clauson": 6.03e-08, + "cleanout": 6.03e-08, + "clockmakers": 6.03e-08, + "clore": 6.03e-08, + "coalville": 6.03e-08, + "cobbold": 6.03e-08, + "cobre": 6.03e-08, + "cochon": 6.03e-08, + "cockblock": 6.03e-08, + "cockerels": 6.03e-08, + "codewords": 6.03e-08, + "coentrao": 6.03e-08, + "cofounders": 6.03e-08, + "cok": 6.03e-08, + "coldblooded": 6.03e-08, + "colinas": 6.03e-08, + "collegians": 6.03e-08, + "colleton": 6.03e-08, + "colourings": 6.03e-08, + "commi": 6.03e-08, + "commiserating": 6.03e-08, + "comunity": 6.03e-08, + "confi": 6.03e-08, + "confort": 6.03e-08, + "cono": 6.03e-08, + "consiglio": 6.03e-08, + "contiguity": 6.03e-08, + "convocations": 6.03e-08, + "cooperators": 6.03e-08, + "copays": 6.03e-08, + "coralline": 6.03e-08, + "cordeiro": 6.03e-08, + "cordner": 6.03e-08, + "corran": 6.03e-08, + "coruna": 6.03e-08, + "cotyledons": 6.03e-08, + "countenanced": 6.03e-08, + "covarrubias": 6.03e-08, + "coventrys": 6.03e-08, + "cramers": 6.03e-08, + "creamsicle": 6.03e-08, + "crenellated": 6.03e-08, + "crocked": 6.03e-08, + "crossville": 6.03e-08, + "crytek": 6.03e-08, + "csat": 6.03e-08, + "cudgels": 6.03e-08, + "cuenta": 6.03e-08, + "curettage": 6.03e-08, + "currencys": 6.03e-08, + "currumbin": 6.03e-08, + "custards": 6.03e-08, + "custos": 6.03e-08, + "cxc": 6.03e-08, + "dactyl": 6.03e-08, + "dahiya": 6.03e-08, + "dallara": 6.03e-08, + "damians": 6.03e-08, + "dandan": 6.03e-08, + "danila": 6.03e-08, + "dannon": 6.03e-08, + "darnedest": 6.03e-08, + "datamining": 6.03e-08, + "datang": 6.03e-08, + "davitt": 6.03e-08, + "deafen": 6.03e-08, + "debacles": 6.03e-08, + "deborahs": 6.03e-08, + "decongestants": 6.03e-08, + "decoratively": 6.03e-08, + "dedalus": 6.03e-08, + "deepthroating": 6.03e-08, + "deerhunter": 6.03e-08, + "dels": 6.03e-08, + "demur": 6.03e-08, + "dentons": 6.03e-08, + "dereck": 6.03e-08, + "derwentwater": 6.03e-08, + "desperadoes": 6.03e-08, + "deutz": 6.03e-08, + "deverell": 6.03e-08, + "devoir": 6.03e-08, + "dgd": 6.03e-08, + "dhruva": 6.03e-08, + "dhyana": 6.03e-08, + "dicarboxylic": 6.03e-08, + "diccionario": 6.03e-08, + "digraphs": 6.03e-08, + "dipl": 6.03e-08, + "disarticulated": 6.03e-08, + "discographies": 6.03e-08, + "discontentment": 6.03e-08, + "disgorge": 6.03e-08, + "dishy": 6.03e-08, + "dithered": 6.03e-08, + "dkr": 6.03e-08, + "dlsu": 6.03e-08, + "dolf": 6.03e-08, + "doniger": 6.03e-08, + "donkin": 6.03e-08, + "doomsayers": 6.03e-08, + "downingtown": 6.03e-08, + "dpoy": 6.03e-08, + "dragonlance": 6.03e-08, + "dreamcoat": 6.03e-08, + "dressmakers": 6.03e-08, + "dumbwaiter": 6.03e-08, + "duminy": 6.03e-08, + "dungan": 6.03e-08, + "durans": 6.03e-08, + "durov": 6.03e-08, + "dxy": 6.03e-08, + "eastin": 6.03e-08, + "eastmans": 6.03e-08, + "eavesdropper": 6.03e-08, + "ebdon": 6.03e-08, + "ebru": 6.03e-08, + "economica": 6.03e-08, + "ecotone": 6.03e-08, + "eddystone": 6.03e-08, + "edinger": 6.03e-08, + "effortful": 6.03e-08, + "ehhhhh": 6.03e-08, + "eiland": 6.03e-08, + "einsatzgruppen": 6.03e-08, + "eisai": 6.03e-08, + "eisenach": 6.03e-08, + "eius": 6.03e-08, + "ekberg": 6.03e-08, + "elanna": 6.03e-08, + "elastase": 6.03e-08, + "eleanora": 6.03e-08, + "ellos": 6.03e-08, + "elneny": 6.03e-08, + "elsey": 6.03e-08, + "embayment": 6.03e-08, + "emps": 6.03e-08, + "endocannabinoid": 6.03e-08, + "enervating": 6.03e-08, + "eniac": 6.03e-08, + "enlivens": 6.03e-08, + "enner": 6.03e-08, + "erdington": 6.03e-08, + "ergenekon": 6.03e-08, + "ericksons": 6.03e-08, + "eroge": 6.03e-08, + "eshel": 6.03e-08, + "eshkol": 6.03e-08, + "esiason": 6.03e-08, + "espncricinfo": 6.03e-08, + "esra": 6.03e-08, + "essexs": 6.03e-08, + "etomidate": 6.03e-08, + "etx": 6.03e-08, + "everynight": 6.03e-08, + "everyting": 6.03e-08, + "evid": 6.03e-08, + "evms": 6.03e-08, + "exaggeratedly": 6.03e-08, + "exclave": 6.03e-08, + "exhib": 6.03e-08, + "exhuming": 6.03e-08, + "existentialists": 6.03e-08, + "expatriation": 6.03e-08, + "expres": 6.03e-08, + "externalize": 6.03e-08, + "faia": 6.03e-08, + "fairlight": 6.03e-08, + "falck": 6.03e-08, + "fanboying": 6.03e-08, + "fansites": 6.03e-08, + "farahs": 6.03e-08, + "fattie": 6.03e-08, + "faunus": 6.03e-08, + "fbn": 6.03e-08, + "feaster": 6.03e-08, + "federate": 6.03e-08, + "fef": 6.03e-08, + "fellinis": 6.03e-08, + "femen": 6.03e-08, + "feminizing": 6.03e-08, + "fent": 6.03e-08, + "ferm": 6.03e-08, + "ferox": 6.03e-08, + "feroze": 6.03e-08, + "feste": 6.03e-08, + "fethiye": 6.03e-08, + "fike": 6.03e-08, + "filme": 6.03e-08, + "finbar": 6.03e-08, + "finnmark": 6.03e-08, + "firestick": 6.03e-08, + "fiti": 6.03e-08, + "fitna": 6.03e-08, + "fitty": 6.03e-08, + "fitzrovia": 6.03e-08, + "flamer": 6.03e-08, + "flannagan": 6.03e-08, + "flatfoot": 6.03e-08, + "floatin": 6.03e-08, + "flubber": 6.03e-08, + "fluting": 6.03e-08, + "flyte": 6.03e-08, + "fmj": 6.03e-08, + "fokin": 6.03e-08, + "foodland": 6.03e-08, + "foreshortening": 6.03e-08, + "forli": 6.03e-08, + "fortinet": 6.03e-08, + "foxcatcher": 6.03e-08, + "foxing": 6.03e-08, + "frage": 6.03e-08, + "frahm": 6.03e-08, + "frcs": 6.03e-08, + "frederique": 6.03e-08, + "freja": 6.03e-08, + "fria": 6.03e-08, + "frisbie": 6.03e-08, + "fritzi": 6.03e-08, + "froese": 6.03e-08, + "furter": 6.03e-08, + "gallman": 6.03e-08, + "gameover": 6.03e-08, + "gametophyte": 6.03e-08, + "gameweek": 6.03e-08, + "gamp": 6.03e-08, + "ganoderma": 6.03e-08, + "garching": 6.03e-08, + "gaudet": 6.03e-08, + "gbenga": 6.03e-08, + "gbx": 6.03e-08, + "geesh": 6.03e-08, + "geisinger": 6.03e-08, + "geoid": 6.03e-08, + "geomorphic": 6.03e-08, + "geral": 6.03e-08, + "gering": 6.03e-08, + "gersh": 6.03e-08, + "geto": 6.03e-08, + "ggc": 6.03e-08, + "ghe": 6.03e-08, + "ghor": 6.03e-08, + "gibs": 6.03e-08, + "gilkey": 6.03e-08, + "gimignano": 6.03e-08, + "gingiva": 6.03e-08, + "gingko": 6.03e-08, + "ginnys": 6.03e-08, + "giornale": 6.03e-08, + "glassblowing": 6.03e-08, + "glenavon": 6.03e-08, + "glimpsing": 6.03e-08, + "glints": 6.03e-08, + "glowsticks": 6.03e-08, + "glycosidic": 6.03e-08, + "gnn": 6.03e-08, + "gnomic": 6.03e-08, + "gnomon": 6.03e-08, + "godber": 6.03e-08, + "godwit": 6.03e-08, + "goggin": 6.03e-08, + "goldmember": 6.03e-08, + "goleman": 6.03e-08, + "goltz": 6.03e-08, + "gooooood": 6.03e-08, + "gopichand": 6.03e-08, + "gorgo": 6.03e-08, + "gotthard": 6.03e-08, + "goyder": 6.03e-08, + "grandjean": 6.03e-08, + "grapplers": 6.03e-08, + "greenly": 6.03e-08, + "greipel": 6.03e-08, + "gremio": 6.03e-08, + "gres": 6.03e-08, + "grif": 6.03e-08, + "griscom": 6.03e-08, + "grizzle": 6.03e-08, + "groggily": 6.03e-08, + "grottos": 6.03e-08, + "grup": 6.03e-08, + "gubler": 6.03e-08, + "gudas": 6.03e-08, + "guider": 6.03e-08, + "guingamp": 6.03e-08, + "gurudev": 6.03e-08, + "gusti": 6.03e-08, + "gymnasia": 6.03e-08, + "hairdryers": 6.03e-08, + "hairstylists": 6.03e-08, + "halfcourt": 6.03e-08, + "hamachi": 6.03e-08, + "hammersteins": 6.03e-08, + "hanka": 6.03e-08, + "hankie": 6.03e-08, + "hanya": 6.03e-08, + "harlock": 6.03e-08, + "harmans": 6.03e-08, + "harvill": 6.03e-08, + "hatten": 6.03e-08, + "haun": 6.03e-08, + "havea": 6.03e-08, + "hawass": 6.03e-08, + "hawksbill": 6.03e-08, + "hayton": 6.03e-08, + "heforshe": 6.03e-08, + "helden": 6.03e-08, + "helos": 6.03e-08, + "hemangioma": 6.03e-08, + "henceforward": 6.03e-08, + "hend": 6.03e-08, + "henery": 6.03e-08, + "henney": 6.03e-08, + "henningsen": 6.03e-08, + "henrikh": 6.03e-08, + "herbaria": 6.03e-08, + "hereon": 6.03e-08, + "hermie": 6.03e-08, + "heyerdahl": 6.03e-08, + "hhe": 6.03e-08, + "highquality": 6.03e-08, + "hinky": 6.03e-08, + "hirokazu": 6.03e-08, + "hirsutism": 6.03e-08, + "histor": 6.03e-08, + "hlc": 6.03e-08, + "hockaday": 6.03e-08, + "hoffmeister": 6.03e-08, + "holguin": 6.03e-08, + "holofernes": 6.03e-08, + "homogenize": 6.03e-08, + "honeoye": 6.03e-08, + "honora": 6.03e-08, + "honus": 6.03e-08, + "hoofing": 6.03e-08, + "hoor": 6.03e-08, + "horak": 6.03e-08, + "horsman": 6.03e-08, + "hoven": 6.03e-08, + "howa": 6.03e-08, + "hudler": 6.03e-08, + "huds": 5.62e-08, + "huli": 6.03e-08, + "humblebrag": 6.03e-08, + "humidification": 6.03e-08, + "hunchbacked": 6.03e-08, + "hungaroring": 6.03e-08, + "hurted": 6.03e-08, + "hybridizing": 6.03e-08, + "hyphal": 6.03e-08, + "hypomania": 6.03e-08, + "iberians": 6.03e-08, + "icee": 6.03e-08, + "icelander": 6.03e-08, + "ideapad": 6.03e-08, + "identifiably": 6.03e-08, + "idn": 6.03e-08, + "idrissa": 6.03e-08, + "ikoyi": 6.03e-08, + "ildefonso": 6.03e-08, + "immelt": 6.03e-08, + "immo": 6.03e-08, + "imperils": 6.03e-08, + "impoverishing": 6.03e-08, + "independency": 6.03e-08, + "independiente": 6.03e-08, + "infocom": 6.03e-08, + "inos": 6.03e-08, + "insouciance": 6.03e-08, + "integrase": 6.03e-08, + "intoning": 6.03e-08, + "intranets": 6.03e-08, + "investopedia": 6.03e-08, + "iops": 6.03e-08, + "irae": 6.03e-08, + "isidoro": 6.03e-08, + "islamaphobia": 6.03e-08, + "isopod": 6.03e-08, + "ithe": 6.03e-08, + "ittle": 6.03e-08, + "iveta": 6.03e-08, + "ixion": 6.03e-08, + "jabara": 6.03e-08, + "jacey": 6.03e-08, + "jackalope": 6.03e-08, + "jagat": 6.03e-08, + "jagex": 6.03e-08, + "jany": 6.03e-08, + "jaq": 6.03e-08, + "jaso": 6.03e-08, + "jcrew": 6.03e-08, + "jeffy": 6.03e-08, + "jergens": 6.03e-08, + "jodeci": 6.03e-08, + "jousts": 6.03e-08, + "judit": 6.03e-08, + "juliane": 6.03e-08, + "julissa": 6.03e-08, + "juneteenth": 6.03e-08, + "jurisprudential": 6.03e-08, + "jyrki": 6.03e-08, + "kaala": 6.03e-08, + "kaczmarek": 6.03e-08, + "kahlan": 6.03e-08, + "kaido": 6.03e-08, + "kakapo": 6.03e-08, + "kakar": 6.03e-08, + "kalashnikovs": 6.03e-08, + "kamera": 6.03e-08, + "kamikazes": 6.03e-08, + "karren": 6.03e-08, + "katu": 6.03e-08, + "katzenbach": 6.03e-08, + "kazaa": 6.03e-08, + "kazantzakis": 6.03e-08, + "kcmo": 6.03e-08, + "keratoconus": 6.03e-08, + "keshia": 6.03e-08, + "keston": 6.03e-08, + "kewaunee": 6.03e-08, + "kewell": 6.03e-08, + "kfi": 6.03e-08, + "khalq": 6.03e-08, + "khang": 6.03e-08, + "khojaly": 6.03e-08, + "kiner": 6.03e-08, + "kinga": 6.03e-08, + "kinnaman": 6.03e-08, + "klaipeda": 6.03e-08, + "klemperer": 6.03e-08, + "knicker": 6.03e-08, + "knickerbockers": 6.03e-08, + "knowshon": 6.03e-08, + "kodaikanal": 6.03e-08, + "kolk": 6.03e-08, + "kookie": 6.03e-08, + "koopman": 6.03e-08, + "kosovan": 6.03e-08, + "kotex": 6.03e-08, + "krom": 6.03e-08, + "kropp": 6.03e-08, + "kuehl": 6.03e-08, + "kumkum": 6.03e-08, + "kunj": 6.03e-08, + "kuzco": 6.03e-08, + "kwei": 6.03e-08, + "kyphosis": 6.03e-08, + "lachesis": 6.03e-08, + "laforge": 6.03e-08, + "laminectomy": 6.03e-08, + "lammas": 6.03e-08, + "lamplighter": 6.03e-08, + "landrover": 6.03e-08, + "lant": 6.03e-08, + "lanthanides": 6.03e-08, + "larkhall": 6.03e-08, + "laskar": 6.03e-08, + "lathering": 6.03e-08, + "latticed": 6.03e-08, + "launcelot": 6.03e-08, + "lawdy": 6.03e-08, + "layden": 6.03e-08, + "lcg": 6.03e-08, + "leadup": 6.03e-08, + "leaper": 6.03e-08, + "lears": 6.03e-08, + "leawood": 6.03e-08, + "lebreton": 6.03e-08, + "legco": 6.03e-08, + "leges": 6.03e-08, + "lema": 6.03e-08, + "leopardi": 6.03e-08, + "lesueur": 6.03e-08, + "lewicki": 6.03e-08, + "lewington": 6.03e-08, + "lff": 6.03e-08, + "lgpl": 6.03e-08, + "lho": 6.03e-08, + "libidos": 6.03e-08, + "lillo": 6.03e-08, + "lindberghs": 6.03e-08, + "liposomal": 6.03e-08, + "lithographers": 6.03e-08, + "lizzys": 6.03e-08, + "llwyd": 6.03e-08, + "lodwick": 6.03e-08, + "logarithmically": 6.03e-08, + "lostprophets": 6.03e-08, + "lotti": 6.03e-08, + "loungewear": 6.03e-08, + "louver": 6.03e-08, + "louvres": 6.03e-08, + "lowells": 6.03e-08, + "lulzsec": 6.03e-08, + "lupino": 6.03e-08, + "lur": 6.03e-08, + "luzhniki": 6.03e-08, + "lybia": 6.03e-08, + "maby": 6.03e-08, + "macewan": 6.03e-08, + "maeterlinck": 6.03e-08, + "magas": 1.15e-08, + "magsaysay": 6.03e-08, + "majed": 6.03e-08, + "majic": 6.03e-08, + "makeba": 6.03e-08, + "malmstrom": 6.03e-08, + "maltin": 6.03e-08, + "manabe": 6.03e-08, + "manasquan": 6.03e-08, + "mandie": 6.03e-08, + "mandoline": 6.03e-08, + "mangini": 6.03e-08, + "manji": 6.03e-08, + "mansouri": 6.03e-08, + "mantha": 6.03e-08, + "marcellinus": 6.03e-08, + "margots": 6.03e-08, + "margy": 6.03e-08, + "marshalsea": 6.03e-08, + "martellus": 6.03e-08, + "marylou": 6.03e-08, + "mashima": 6.03e-08, + "masterbation": 6.03e-08, + "mathematik": 6.03e-08, + "matra": 6.03e-08, + "mauryan": 6.03e-08, + "mbah": 6.03e-08, + "mbcs": 6.03e-08, + "mcindoe": 6.03e-08, + "mckoy": 6.03e-08, + "mcmenamin": 6.03e-08, + "mcnicol": 6.03e-08, + "mcsa": 6.03e-08, + "mdh": 6.03e-08, + "mdn": 6.03e-08, + "meanin": 6.03e-08, + "medievalism": 6.03e-08, + "melis": 6.03e-08, + "melli": 6.03e-08, + "mender": 6.03e-08, + "meninga": 6.03e-08, + "menkes": 6.03e-08, + "menor": 6.03e-08, + "meraki": 6.03e-08, + "merr": 6.03e-08, + "mescalero": 6.03e-08, + "mesosphere": 6.03e-08, + "messiest": 6.03e-08, + "mgl": 6.03e-08, + "micawber": 6.03e-08, + "microbrew": 6.03e-08, + "microgram": 6.03e-08, + "miguelito": 6.03e-08, + "millbury": 6.03e-08, + "milngavie": 6.03e-08, + "milsap": 6.03e-08, + "minelli": 6.03e-08, + "minigolf": 6.03e-08, + "minocycline": 6.03e-08, + "mistah": 6.03e-08, + "mitb": 6.03e-08, + "mitchy": 6.03e-08, + "mizen": 6.03e-08, + "mjm": 6.03e-08, + "molins": 6.03e-08, + "monarchism": 6.03e-08, + "moneta": 6.03e-08, + "monotonicity": 6.03e-08, + "montanus": 6.03e-08, + "montauban": 6.03e-08, + "mooy": 6.03e-08, + "moscovici": 6.03e-08, + "mout": 6.03e-08, + "moye": 6.03e-08, + "mozo": 6.03e-08, + "mtbf": 6.03e-08, + "mugwort": 6.03e-08, + "multiband": 6.03e-08, + "multigrain": 6.03e-08, + "murderously": 6.03e-08, + "murrumbidgee": 6.03e-08, + "mushing": 6.03e-08, + "muskies": 6.03e-08, + "mwt": 6.03e-08, + "mxyzptlk": 6.03e-08, + "mysuru": 6.03e-08, + "nabila": 6.03e-08, + "nabucco": 6.03e-08, + "najibullah": 6.03e-08, + "nanook": 6.03e-08, + "nastia": 6.03e-08, + "nathalia": 6.03e-08, + "natin": 6.03e-08, + "natron": 6.03e-08, + "nauta": 6.03e-08, + "ncri": 6.03e-08, + "nctc": 6.03e-08, + "ndlovu": 6.03e-08, + "ndrc": 6.03e-08, + "nearside": 6.03e-08, + "neckwear": 6.03e-08, + "negations": 6.03e-08, + "negras": 6.03e-08, + "nekkid": 6.03e-08, + "nells": 6.03e-08, + "neomycin": 6.03e-08, + "nepeta": 6.03e-08, + "neptunian": 6.03e-08, + "nevaeh": 6.03e-08, + "nightstick": 6.03e-08, + "nij": 6.03e-08, + "nikolic": 6.03e-08, + "nnd": 6.03e-08, + "nomo": 6.03e-08, + "nonaka": 6.03e-08, + "nonbeliever": 6.03e-08, + "nonconference": 6.03e-08, + "nonstarter": 6.03e-08, + "nonstate": 6.03e-08, + "nordschleife": 6.03e-08, + "norwoods": 6.03e-08, + "noticeboard": 6.03e-08, + "novelas": 6.03e-08, + "nowlan": 6.03e-08, + "npk": 6.03e-08, + "ntds": 6.03e-08, + "numba": 6.03e-08, + "nydia": 6.03e-08, + "nyy": 6.03e-08, + "orourkes": 6.03e-08, + "objectifies": 6.03e-08, + "obote": 6.03e-08, + "obscurus": 6.03e-08, + "occurance": 6.03e-08, + "ochraceous": 6.03e-08, + "octahedra": 6.03e-08, + "ody": 6.03e-08, + "ofall": 6.03e-08, + "ohlin": 6.03e-08, + "okposo": 6.03e-08, + "olas": 6.03e-08, + "olave": 6.03e-08, + "oligarchical": 6.03e-08, + "olivos": 6.03e-08, + "ontonagon": 6.03e-08, + "ooooooo": 6.03e-08, + "oozy": 6.03e-08, + "openminded": 6.03e-08, + "operationalized": 6.03e-08, + "oquendo": 6.03e-08, + "ordains": 6.03e-08, + "orderings": 6.03e-08, + "oreste": 6.03e-08, + "orff": 6.03e-08, + "orgel": 6.03e-08, + "orlin": 6.03e-08, + "ormeau": 6.03e-08, + "orthologs": 6.03e-08, + "osip": 6.03e-08, + "ossoff": 6.03e-08, + "ostinato": 6.03e-08, + "ottmar": 6.03e-08, + "ouf": 6.03e-08, + "ouma": 6.03e-08, + "outgained": 6.03e-08, + "outplaying": 6.03e-08, + "ouvert": 6.03e-08, + "oved": 6.03e-08, + "overlayed": 6.03e-08, + "ovw": 6.03e-08, + "owc": 6.03e-08, + "oximeter": 6.03e-08, + "paba": 6.03e-08, + "pacis": 6.03e-08, + "paju": 6.03e-08, + "paladino": 6.03e-08, + "palio": 6.03e-08, + "papago": 6.03e-08, + "papineau": 6.03e-08, + "paramecium": 6.03e-08, + "parturition": 6.03e-08, + "pask": 6.03e-08, + "pathans": 6.03e-08, + "paulsons": 6.03e-08, + "pavelec": 6.03e-08, + "payors": 6.03e-08, + "pedophilic": 6.03e-08, + "pega": 6.03e-08, + "pegasi": 6.03e-08, + "pelargonium": 6.03e-08, + "peniston": 6.03e-08, + "pepfar": 6.03e-08, + "percept": 6.03e-08, + "perouse": 6.03e-08, + "perseids": 6.03e-08, + "peti": 6.03e-08, + "petrelli": 6.03e-08, + "phileas": 6.03e-08, + "phn": 6.03e-08, + "phoenixes": 6.03e-08, + "photophobia": 6.03e-08, + "piatti": 6.03e-08, + "picketers": 6.03e-08, + "piddle": 6.03e-08, + "pillock": 6.03e-08, + "pipsqueak": 6.03e-08, + "piran": 6.03e-08, + "pisan": 6.03e-08, + "plantagenets": 6.03e-08, + "playgroups": 6.03e-08, + "pleasent": 6.03e-08, + "pledger": 6.03e-08, + "plushy": 6.03e-08, + "pointillism": 6.03e-08, + "polen": 6.03e-08, + "polian": 6.03e-08, + "polishers": 6.03e-08, + "poloniex": 6.03e-08, + "polyols": 6.03e-08, + "polysyllabic": 6.03e-08, + "polytechnical": 6.03e-08, + "pompously": 6.03e-08, + "portages": 6.03e-08, + "portsea": 6.03e-08, + "portsmouths": 6.03e-08, + "postmans": 6.03e-08, + "postmarks": 6.03e-08, + "postulation": 6.03e-08, + "poteet": 6.03e-08, + "potok": 6.03e-08, + "potw": 6.03e-08, + "povey": 6.03e-08, + "powerups": 6.03e-08, + "prebuilt": 6.03e-08, + "preciosa": 6.03e-08, + "prepayments": 6.03e-08, + "presiden": 6.03e-08, + "pressroom": 6.03e-08, + "primm": 6.03e-08, + "principate": 6.03e-08, + "prizewinner": 6.03e-08, + "problemas": 6.03e-08, + "probus": 6.03e-08, + "procs": 6.03e-08, + "proenza": 6.03e-08, + "prognostications": 6.03e-08, + "progs": 6.03e-08, + "promisingly": 6.03e-08, + "pronounciation": 6.03e-08, + "proprietress": 6.03e-08, + "prv": 6.03e-08, + "psychobabble": 6.03e-08, + "puddling": 6.03e-08, + "puisne": 6.03e-08, + "punctuates": 6.03e-08, + "pungency": 6.03e-08, + "punya": 6.03e-08, + "purdon": 6.03e-08, + "purex": 6.03e-08, + "pusillanimous": 6.03e-08, + "pwe": 6.03e-08, + "pyloric": 6.03e-08, + "quatrefoil": 6.03e-08, + "quetiapine": 6.03e-08, + "quezada": 6.03e-08, + "racerback": 6.03e-08, + "racoons": 6.03e-08, + "ragna": 6.03e-08, + "raimis": 6.03e-08, + "rakers": 6.03e-08, + "ranier": 6.03e-08, + "ranitidine": 6.03e-08, + "ranke": 6.03e-08, + "rapin": 6.03e-08, + "rapturously": 6.03e-08, + "raro": 6.03e-08, + "rasulullah": 6.03e-08, + "ratha": 6.03e-08, + "rathaus": 6.03e-08, + "ravenloft": 6.03e-08, + "rcti": 6.03e-08, + "rebrands": 6.03e-08, + "rebuttable": 6.03e-08, + "redacting": 6.03e-08, + "redbud": 6.03e-08, + "reenactors": 6.03e-08, + "regev": 6.03e-08, + "regnery": 6.03e-08, + "rehoused": 6.03e-08, + "rendang": 6.03e-08, + "renesas": 6.03e-08, + "reposing": 6.03e-08, + "residuary": 6.03e-08, + "respire": 6.03e-08, + "retroperitoneal": 6.03e-08, + "retuned": 6.03e-08, + "reynoso": 6.03e-08, + "rhabdomyosarcoma": 6.03e-08, + "rhames": 6.03e-08, + "riera": 6.03e-08, + "riggle": 6.03e-08, + "rigney": 6.03e-08, + "riksbank": 6.03e-08, + "risp": 6.03e-08, + "riverlands": 6.03e-08, + "riyals": 6.03e-08, + "rle": 6.03e-08, + "roamer": 6.03e-08, + "roath": 6.03e-08, + "robichaud": 6.03e-08, + "rockledge": 6.03e-08, + "rockos": 6.03e-08, + "rogo": 6.03e-08, + "rohans": 6.03e-08, + "rool": 6.03e-08, + "roseberry": 6.03e-08, + "rothbart": 6.03e-08, + "rothbury": 6.03e-08, + "rothchild": 6.03e-08, + "roundhead": 6.03e-08, + "rpk": 6.03e-08, + "rtu": 6.03e-08, + "rugger": 6.03e-08, + "rula": 6.03e-08, + "runcie": 6.03e-08, + "ruxton": 6.03e-08, + "rys": 6.03e-08, + "sailcloth": 6.03e-08, + "sakya": 6.03e-08, + "salamon": 6.03e-08, + "sallam": 6.03e-08, + "salles": 6.03e-08, + "salmonids": 6.03e-08, + "sandlin": 6.03e-08, + "sandshrew": 6.03e-08, + "sansas": 6.03e-08, + "saqqara": 6.03e-08, + "saraya": 6.03e-08, + "sarit": 6.03e-08, + "sarkodie": 6.03e-08, + "saroja": 6.03e-08, + "saso": 6.03e-08, + "sassi": 6.03e-08, + "sastry": 6.03e-08, + "saunters": 6.03e-08, + "savic": 6.03e-08, + "sawan": 6.03e-08, + "sawfly": 6.03e-08, + "saxophonists": 6.03e-08, + "sbux": 6.03e-08, + "schrier": 6.03e-08, + "sciver": 6.03e-08, + "scop": 6.03e-08, + "scottrade": 6.03e-08, + "scouter": 6.03e-08, + "screenshotting": 6.03e-08, + "scuttles": 6.03e-08, + "sdlc": 6.03e-08, + "seaworthiness": 6.03e-08, + "secre": 6.03e-08, + "seefeld": 6.03e-08, + "selectin": 6.03e-08, + "sematary": 6.03e-08, + "senso": 6.03e-08, + "septet": 6.03e-08, + "serangoon": 6.03e-08, + "serialize": 6.03e-08, + "servais": 6.03e-08, + "servir": 6.03e-08, + "servitors": 6.03e-08, + "sessegnon": 6.03e-08, + "sesterces": 6.03e-08, + "setsuko": 6.03e-08, + "seun": 6.03e-08, + "severo": 6.03e-08, + "shadyside": 6.03e-08, + "shamsi": 6.03e-08, + "shanksville": 6.03e-08, + "sharpeville": 6.03e-08, + "sharpshooting": 6.03e-08, + "shavit": 6.03e-08, + "shawano": 6.03e-08, + "shean": 6.03e-08, + "sheffer": 6.03e-08, + "shefford": 6.03e-08, + "shelli": 6.03e-08, + "shens": 6.03e-08, + "shepley": 6.03e-08, + "shigeo": 6.03e-08, + "shokugeki": 6.03e-08, + "shorey": 6.03e-08, + "shortish": 6.03e-08, + "shoto": 6.03e-08, + "shotover": 6.03e-08, + "showerthoughts": 6.03e-08, + "shrivels": 6.03e-08, + "shuey": 6.03e-08, + "shuhei": 6.03e-08, + "shuo": 6.03e-08, + "sidelong": 6.03e-08, + "silverthorne": 6.03e-08, + "sindel": 6.03e-08, + "sircar": 6.03e-08, + "sistah": 6.03e-08, + "sistan": 6.03e-08, + "sivaji": 6.03e-08, + "skeets": 6.03e-08, + "skimped": 6.03e-08, + "skr": 6.03e-08, + "slaked": 6.03e-08, + "slappers": 6.03e-08, + "slavering": 6.03e-08, + "sleepaway": 6.03e-08, + "slobbery": 6.03e-08, + "slowmo": 6.03e-08, + "smad": 6.03e-08, + "smegma": 6.03e-08, + "smoggy": 6.03e-08, + "sneezy": 6.03e-08, + "snivelling": 6.03e-08, + "snowiest": 6.03e-08, + "sobe": 6.03e-08, + "socketed": 6.03e-08, + "softs": 6.03e-08, + "somtimes": 6.03e-08, + "songster": 6.03e-08, + "sotos": 6.03e-08, + "southbury": 6.03e-08, + "sova": 6.03e-08, + "spangles": 6.03e-08, + "sparkplug": 6.03e-08, + "speciesism": 6.03e-08, + "spigots": 6.03e-08, + "sportif": 6.03e-08, + "spurted": 6.03e-08, + "squatty": 6.03e-08, + "srw": 6.03e-08, + "sssr": 6.03e-08, + "stabilises": 6.03e-08, + "staffy": 6.03e-08, + "stative": 6.03e-08, + "stenciling": 6.03e-08, + "steny": 6.03e-08, + "stepanek": 6.03e-08, + "stephany": 6.03e-08, + "stichting": 6.03e-08, + "stik": 6.03e-08, + "stoch": 6.03e-08, + "stockley": 6.03e-08, + "stodden": 6.03e-08, + "stoyanov": 6.03e-08, + "strader": 6.03e-08, + "stratify": 6.03e-08, + "stroup": 6.03e-08, + "stutzman": 6.03e-08, + "subcritical": 6.03e-08, + "subnautica": 6.03e-08, + "subodh": 6.03e-08, + "subrata": 6.03e-08, + "suffern": 6.03e-08, + "sugo": 6.03e-08, + "sukiyaki": 6.03e-08, + "sulphite": 6.03e-08, + "sumba": 6.03e-08, + "sunbird": 6.03e-08, + "sunseeker": 6.03e-08, + "sunup": 6.03e-08, + "superintelligence": 6.03e-08, + "supernormal": 6.03e-08, + "supping": 6.03e-08, + "suprema": 6.03e-08, + "swakopmund": 6.03e-08, + "swick": 6.03e-08, + "switchboards": 6.03e-08, + "swop": 6.03e-08, + "sylvestre": 6.03e-08, + "syren": 6.03e-08, + "syslog": 6.03e-08, + "szell": 6.03e-08, + "tafel": 6.03e-08, + "taif": 6.03e-08, + "tailless": 6.03e-08, + "taiyo": 6.03e-08, + "takahata": 6.03e-08, + "talis": 1.35e-08, + "tamanna": 6.03e-08, + "tanagra": 6.03e-08, + "targe": 6.03e-08, + "tdl": 6.03e-08, + "technet": 6.03e-08, + "tejon": 6.03e-08, + "tenggara": 6.03e-08, + "tensely": 6.03e-08, + "terabithia": 6.03e-08, + "teresita": 6.03e-08, + "terrestris": 6.03e-08, + "ters": 6.03e-08, + "teubner": 6.03e-08, + "tewari": 6.03e-08, + "textes": 6.03e-08, + "thaxter": 6.03e-08, + "thermocouples": 6.03e-08, + "thibodeaux": 6.03e-08, + "thiosulfate": 6.03e-08, + "thore": 6.03e-08, + "thoresen": 6.03e-08, + "thrusted": 6.03e-08, + "tidily": 6.03e-08, + "tidus": 6.03e-08, + "timlin": 6.03e-08, + "tinga": 6.03e-08, + "titch": 6.03e-08, + "titres": 6.03e-08, + "tlds": 6.03e-08, + "toasties": 6.03e-08, + "tobagos": 6.03e-08, + "tober": 6.03e-08, + "tobins": 6.03e-08, + "toch": 6.03e-08, + "toji": 6.03e-08, + "tomah": 6.03e-08, + "tomorow": 6.03e-08, + "toolboxes": 6.03e-08, + "tootoo": 6.03e-08, + "torney": 6.03e-08, + "torrente": 6.03e-08, + "totenkopf": 6.03e-08, + "toxteth": 6.03e-08, + "toybox": 6.03e-08, + "trailheads": 6.03e-08, + "treasuring": 6.03e-08, + "treatys": 6.03e-08, + "tredwell": 6.03e-08, + "tretiak": 6.03e-08, + "tribalistic": 6.03e-08, + "triborough": 6.03e-08, + "trilled": 6.03e-08, + "trude": 6.03e-08, + "tsuru": 6.03e-08, + "tubb": 6.03e-08, + "tukwila": 6.03e-08, + "tulalip": 6.03e-08, + "tump": 6.03e-08, + "tushy": 6.03e-08, + "tutankhamen": 6.03e-08, + "tver": 6.03e-08, + "twigged": 6.03e-08, + "tyrie": 6.03e-08, + "uggh": 6.03e-08, + "ultrafiltration": 6.03e-08, + "unbuckle": 6.03e-08, + "uncleared": 6.03e-08, + "understaffing": 6.03e-08, + "unlikelihood": 6.03e-08, + "unocal": 6.03e-08, + "unprepossessing": 6.03e-08, + "unshaved": 6.03e-08, + "untersuchung": 6.03e-08, + "unus": 6.03e-08, + "unwatched": 6.03e-08, + "upt": 6.03e-08, + "upvoted": 6.03e-08, + "urim": 6.03e-08, + "ursinus": 6.03e-08, + "uspstf": 6.03e-08, + "ustedes": 6.03e-08, + "usufruct": 6.03e-08, + "utsav": 6.03e-08, + "valorization": 6.03e-08, + "vandermeer": 6.03e-08, + "varnishing": 6.03e-08, + "velho": 6.03e-08, + "venturas": 6.03e-08, + "vereinigung": 6.03e-08, + "viacoms": 6.03e-08, + "vignetting": 6.03e-08, + "vileness": 6.03e-08, + "villeroy": 6.03e-08, + "virendra": 6.03e-08, + "vmm": 6.03e-08, + "vnukovo": 6.03e-08, + "volar": 6.03e-08, + "volcan": 6.03e-08, + "vour": 6.03e-08, + "vrije": 6.03e-08, + "waifus": 6.03e-08, + "wangari": 6.03e-08, + "warbucks": 6.03e-08, + "wardship": 6.03e-08, + "washburne": 6.03e-08, + "wassermann": 6.03e-08, + "watercooler": 6.03e-08, + "waterslides": 6.03e-08, + "watty": 6.03e-08, + "weatherhead": 6.03e-08, + "wek": 6.03e-08, + "westwick": 6.03e-08, + "whar": 6.03e-08, + "whateley": 6.03e-08, + "whsmith": 6.03e-08, + "widmark": 6.03e-08, + "wik": 6.03e-08, + "wiktionary": 6.03e-08, + "williamston": 6.03e-08, + "williss": 6.03e-08, + "windowsills": 6.03e-08, + "windspeed": 6.03e-08, + "winnick": 6.03e-08, + "wjz": 6.03e-08, + "wnbc": 6.03e-08, + "workgroups": 6.03e-08, + "worksafe": 6.03e-08, + "worthily": 6.03e-08, + "wretchedly": 6.03e-08, + "wro": 6.03e-08, + "wuchang": 6.03e-08, + "wurde": 6.03e-08, + "xanthine": 6.03e-08, + "xindi": 6.03e-08, + "xrf": 6.03e-08, + "xxs": 6.03e-08, + "yamanashi": 6.03e-08, + "yildiz": 6.03e-08, + "yngwie": 6.03e-08, + "ynwa": 6.03e-08, + "yoav": 6.03e-08, + "yorkist": 6.03e-08, + "yoshinori": 6.03e-08, + "yossarian": 6.03e-08, + "youngin": 6.03e-08, + "zafira": 6.03e-08, + "zand": 6.03e-08, + "zarah": 6.03e-08, + "zdenek": 6.03e-08, + "zebu": 6.03e-08, + "zeek": 6.03e-08, + "zelenka": 6.03e-08, + "zens": 6.03e-08, + "zenica": 6.03e-08, + "zhai": 6.03e-08, + "zigzagged": 6.03e-08, + "zihuatanejo": 6.03e-08, + "zillah": 6.03e-08, + "zinnias": 6.03e-08, + "zinta": 6.03e-08, + "zissou": 6.03e-08, + "zobel": 6.03e-08, + "zonked": 6.03e-08, + "zubaydah": 6.03e-08, + "zuhair": 6.03e-08, + "aacc": 5.89e-08, + "aapi": 5.89e-08, + "abaca": 5.89e-08, + "abas": 3.72e-08, + "abbreviating": 5.89e-08, + "abele": 5.89e-08, + "abhijit": 5.89e-08, + "abis": 5.89e-08, + "abruption": 5.89e-08, + "abusively": 5.89e-08, + "abyan": 5.89e-08, + "accio": 5.89e-08, + "achaean": 5.89e-08, + "achenbach": 5.89e-08, + "adad": 5.89e-08, + "aday": 5.89e-08, + "adeel": 5.89e-08, + "adesina": 5.89e-08, + "adorkable": 5.89e-08, + "aerobically": 5.89e-08, + "aerofoil": 5.89e-08, + "aesir": 5.89e-08, + "afric": 5.89e-08, + "aggy": 5.89e-08, + "ahlers": 5.89e-08, + "ahmadabad": 5.89e-08, + "aiders": 5.89e-08, + "aiki": 5.89e-08, + "ajj": 5.89e-08, + "akame": 5.89e-08, + "akina": 5.89e-08, + "akizuki": 5.89e-08, + "alappuzha": 5.89e-08, + "alassane": 5.89e-08, + "alembic": 5.89e-08, + "alevi": 5.89e-08, + "algar": 5.89e-08, + "alkyd": 5.89e-08, + "allround": 5.89e-08, + "almirola": 5.89e-08, + "althought": 5.89e-08, + "alz": 5.89e-08, + "amazo": 5.89e-08, + "ambu": 5.89e-08, + "amido": 5.89e-08, + "anantapur": 5.89e-08, + "andreasen": 5.89e-08, + "anencephaly": 5.89e-08, + "angulated": 5.89e-08, + "anistons": 5.89e-08, + "anjana": 5.89e-08, + "anneke": 5.89e-08, + "annoucement": 5.89e-08, + "annua": 5.89e-08, + "anthologized": 5.89e-08, + "antigay": 5.89e-08, + "antiochian": 5.89e-08, + "antwon": 5.89e-08, + "anunnaki": 5.89e-08, + "anuses": 5.89e-08, + "apennine": 5.89e-08, + "apni": 5.89e-08, + "appart": 5.89e-08, + "apperception": 5.89e-08, + "araz": 5.89e-08, + "arbs": 5.89e-08, + "aref": 5.89e-08, + "arends": 5.89e-08, + "arklow": 5.89e-08, + "arnstein": 5.89e-08, + "arraign": 5.89e-08, + "arsal": 5.89e-08, + "artforum": 5.89e-08, + "articulately": 5.89e-08, + "artstyle": 5.89e-08, + "ascertainment": 5.89e-08, + "ascoli": 5.89e-08, + "ashkenazim": 5.89e-08, + "asner": 5.89e-08, + "assayas": 5.89e-08, + "assim": 5.89e-08, + "assistantships": 5.89e-08, + "asteras": 5.89e-08, + "asystole": 5.89e-08, + "atco": 5.89e-08, + "atha": 5.89e-08, + "atharva": 5.89e-08, + "atsc": 5.89e-08, + "auburndale": 5.89e-08, + "augers": 5.89e-08, + "aumf": 5.89e-08, + "autoerotic": 5.89e-08, + "availabilities": 5.89e-08, + "avascular": 5.89e-08, + "avidity": 5.89e-08, + "ayckbourn": 5.89e-08, + "ayodele": 5.89e-08, + "babaji": 5.89e-08, + "babycakes": 5.89e-08, + "backdating": 5.89e-08, + "baekhyun": 5.89e-08, + "baghlan": 5.89e-08, + "bahawalpur": 5.89e-08, + "bailando": 5.89e-08, + "baitfish": 5.89e-08, + "baldrige": 5.89e-08, + "balvenie": 5.89e-08, + "bamas": 5.89e-08, + "bankrate": 5.89e-08, + "bardin": 5.89e-08, + "barrettes": 5.89e-08, + "basant": 5.89e-08, + "bashford": 5.89e-08, + "batshuayi": 5.89e-08, + "battlement": 5.89e-08, + "baynard": 5.89e-08, + "bayu": 5.89e-08, + "bazalgette": 5.89e-08, + "beatrices": 5.89e-08, + "bedsores": 5.89e-08, + "belieber": 5.89e-08, + "beltrami": 5.89e-08, + "belying": 5.89e-08, + "bembo": 5.89e-08, + "benavidez": 5.89e-08, + "bencic": 5.89e-08, + "benni": 5.89e-08, + "bennu": 5.89e-08, + "berberis": 5.89e-08, + "beres": 5.89e-08, + "beringia": 5.89e-08, + "bethmann": 5.89e-08, + "bettelheim": 5.89e-08, + "bhang": 5.89e-08, + "bhuttos": 5.89e-08, + "bicarb": 5.89e-08, + "bigler": 5.89e-08, + "bilas": 5.89e-08, + "bilstein": 5.89e-08, + "bioassay": 5.89e-08, + "bioprinting": 5.89e-08, + "bioweapons": 5.89e-08, + "birdwatcher": 5.89e-08, + "birju": 5.89e-08, + "bitmaps": 5.89e-08, + "blanches": 5.89e-08, + "blinged": 5.89e-08, + "blomkvist": 5.89e-08, + "bloodily": 5.89e-08, + "blowfly": 5.89e-08, + "blowhards": 5.89e-08, + "bluhm": 5.89e-08, + "bmm": 5.89e-08, + "boces": 5.89e-08, + "boiz": 5.89e-08, + "bonum": 5.89e-08, + "borenstein": 5.89e-08, + "botkin": 5.89e-08, + "boudicca": 5.89e-08, + "boulding": 5.89e-08, + "bourgeoise": 5.89e-08, + "brega": 5.89e-08, + "bretz": 5.89e-08, + "brg": 5.89e-08, + "brilliancy": 5.89e-08, + "broda": 5.89e-08, + "brooder": 5.89e-08, + "brownout": 5.89e-08, + "brue": 5.89e-08, + "bruneian": 5.89e-08, + "brushstroke": 5.89e-08, + "btrfs": 5.89e-08, + "buca": 5.89e-08, + "buea": 5.89e-08, + "buie": 5.89e-08, + "bullfinch": 5.89e-08, + "bungles": 5.89e-08, + "burchfield": 5.89e-08, + "busa": 5.89e-08, + "butterfat": 5.89e-08, + "bww": 5.89e-08, + "caligari": 5.89e-08, + "calligraphers": 5.89e-08, + "campanula": 5.89e-08, + "candido": 5.89e-08, + "candids": 5.89e-08, + "cantillon": 5.89e-08, + "capriccio": 5.89e-08, + "carbonell": 5.89e-08, + "carrum": 5.89e-08, + "cashmore": 5.89e-08, + "castellani": 5.89e-08, + "catechisms": 5.89e-08, + "catlike": 5.89e-08, + "catoctin": 5.89e-08, + "catterall": 5.89e-08, + "cattlemens": 5.89e-08, + "cavalcanti": 5.89e-08, + "cavalrys": 5.89e-08, + "caver": 5.89e-08, + "cemil": 5.89e-08, + "cesena": 5.89e-08, + "cfx": 5.89e-08, + "charac": 5.89e-08, + "charlemont": 5.89e-08, + "chattered": 5.89e-08, + "cheapie": 5.89e-08, + "chesil": 5.89e-08, + "chipewyan": 5.89e-08, + "chocolatiers": 5.89e-08, + "chowan": 5.89e-08, + "chucker": 5.89e-08, + "chutiya": 5.89e-08, + "ciccone": 5.89e-08, + "ciceros": 5.89e-08, + "cilento": 5.89e-08, + "cinematheque": 5.89e-08, + "circumspection": 5.89e-08, + "clawback": 5.89e-08, + "cleos": 5.89e-08, + "clitics": 5.89e-08, + "cliveden": 5.89e-08, + "cliven": 5.89e-08, + "cloisonne": 5.89e-08, + "clv": 5.89e-08, + "coalbed": 5.89e-08, + "cocci": 5.89e-08, + "cockfight": 5.89e-08, + "codie": 5.89e-08, + "coffeepot": 5.89e-08, + "comitted": 5.89e-08, + "compatability": 5.89e-08, + "compline": 5.89e-08, + "comt": 5.89e-08, + "conard": 5.89e-08, + "conceptualisation": 5.89e-08, + "concertgebouw": 5.89e-08, + "concision": 5.89e-08, + "connersville": 5.89e-08, + "consignee": 5.89e-08, + "contriving": 5.89e-08, + "controling": 5.89e-08, + "coover": 5.89e-08, + "cordiale": 5.89e-08, + "cordilleran": 5.89e-08, + "cordovan": 5.89e-08, + "corsini": 5.89e-08, + "cottonwoods": 5.89e-08, + "cougs": 5.89e-08, + "couldt": 5.89e-08, + "courrier": 5.89e-08, + "crappiest": 5.89e-08, + "creameries": 5.89e-08, + "crediton": 5.89e-08, + "creditworthy": 5.89e-08, + "crestline": 5.89e-08, + "croome": 5.89e-08, + "crooners": 5.89e-08, + "cseries": 5.89e-08, + "ctcs": 5.89e-08, + "cuco": 5.89e-08, + "curtesy": 5.89e-08, + "cyano": 5.89e-08, + "cyanoacrylate": 5.89e-08, + "cyberstalking": 5.89e-08, + "cycads": 5.89e-08, + "cygwin": 5.89e-08, + "cze": 5.89e-08, + "czw": 5.89e-08, + "dacoits": 5.89e-08, + "dagwood": 5.89e-08, + "dahm": 5.89e-08, + "daigaku": 5.89e-08, + "dalma": 5.89e-08, + "damasus": 5.89e-08, + "dandi": 5.89e-08, + "danial": 5.89e-08, + "dars": 5.89e-08, + "dathan": 5.89e-08, + "davante": 5.89e-08, + "davion": 5.89e-08, + "davisons": 5.89e-08, + "davits": 5.89e-08, + "daybed": 5.89e-08, + "dcg": 5.89e-08, + "deadened": 5.89e-08, + "debakey": 5.89e-08, + "decc": 5.89e-08, + "decipherment": 5.89e-08, + "deckchair": 5.89e-08, + "decolonizing": 5.89e-08, + "decrypts": 5.89e-08, + "dect": 5.89e-08, + "defen": 5.89e-08, + "deglaze": 5.89e-08, + "degreasing": 5.89e-08, + "dehart": 5.89e-08, + "delaine": 5.89e-08, + "demarcating": 5.89e-08, + "demotions": 5.89e-08, + "depalma": 5.89e-08, + "derham": 5.89e-08, + "derisory": 5.89e-08, + "desensitised": 5.89e-08, + "designees": 5.89e-08, + "destabilised": 5.89e-08, + "destress": 5.89e-08, + "desulfurization": 5.89e-08, + "develo": 5.89e-08, + "developable": 5.89e-08, + "dewdrop": 5.89e-08, + "deworming": 5.89e-08, + "dharmic": 5.89e-08, + "diamantina": 5.89e-08, + "dichromate": 5.89e-08, + "differen": 5.89e-08, + "dificult": 5.89e-08, + "dighton": 5.89e-08, + "digo": 5.89e-08, + "dilantin": 5.89e-08, + "dimensioning": 5.89e-08, + "directtv": 5.89e-08, + "direst": 5.89e-08, + "disabused": 5.89e-08, + "disch": 5.89e-08, + "discomfited": 5.89e-08, + "dissensions": 5.89e-08, + "distractor": 5.89e-08, + "ditz": 5.89e-08, + "dlx": 5.89e-08, + "dnase": 5.89e-08, + "doab": 5.89e-08, + "doakes": 5.89e-08, + "documentations": 5.89e-08, + "dominicana": 5.89e-08, + "donatus": 5.89e-08, + "donc": 5.89e-08, + "donjon": 5.89e-08, + "donlon": 5.89e-08, + "dormice": 5.89e-08, + "dorrie": 5.89e-08, + "doucette": 5.89e-08, + "douching": 5.89e-08, + "downhills": 5.89e-08, + "dphil": 5.89e-08, + "dree": 5.89e-08, + "driehaus": 5.89e-08, + "drome": 5.89e-08, + "drugmaker": 5.89e-08, + "dryads": 5.89e-08, + "duces": 5.89e-08, + "duclos": 5.89e-08, + "duelists": 5.89e-08, + "duggal": 5.89e-08, + "dumbly": 5.89e-08, + "dure": 5.89e-08, + "dutchs": 5.89e-08, + "eagled": 5.89e-08, + "easterner": 5.89e-08, + "eastlink": 5.89e-08, + "ecstasies": 5.89e-08, + "edwins": 5.89e-08, + "eejit": 5.89e-08, + "effacement": 5.89e-08, + "egi": 5.89e-08, + "egidio": 5.89e-08, + "ehome": 5.89e-08, + "eifert": 5.89e-08, + "ellin": 5.89e-08, + "elongates": 5.89e-08, + "embellishes": 5.89e-08, + "encouragements": 5.89e-08, + "endoskeleton": 5.89e-08, + "enzos": 5.89e-08, + "eoi": 5.89e-08, + "epidermolysis": 5.89e-08, + "epidurals": 5.89e-08, + "epoxies": 5.89e-08, + "equinix": 5.89e-08, + "eradicates": 5.89e-08, + "erkki": 5.89e-08, + "ersten": 5.89e-08, + "esculenta": 5.89e-08, + "eskridge": 5.89e-08, + "essos": 5.89e-08, + "esterified": 5.89e-08, + "estudiantes": 5.89e-08, + "ethnographical": 5.89e-08, + "ethridge": 5.89e-08, + "eung": 5.89e-08, + "europea": 5.89e-08, + "everts": 5.89e-08, + "excises": 5.89e-08, + "experimentalist": 5.89e-08, + "expirations": 5.89e-08, + "factum": 5.89e-08, + "fahmi": 5.89e-08, + "fairlawn": 5.89e-08, + "fakenews": 5.89e-08, + "fakest": 5.89e-08, + "fanelli": 5.89e-08, + "fanti": 5.89e-08, + "farrant": 5.89e-08, + "fathomed": 5.89e-08, + "fbla": 5.89e-08, + "fbt": 5.89e-08, + "fearn": 5.89e-08, + "febuary": 5.89e-08, + "fentress": 5.89e-08, + "fermats": 5.89e-08, + "fernley": 5.89e-08, + "fervid": 5.89e-08, + "fetterman": 5.89e-08, + "fickleness": 5.89e-08, + "fiesole": 5.89e-08, + "filiform": 5.89e-08, + "finlandia": 5.89e-08, + "firat": 5.89e-08, + "firkin": 5.89e-08, + "firme": 5.89e-08, + "firstgroup": 5.89e-08, + "fisks": 5.89e-08, + "fissionable": 5.89e-08, + "fitc": 5.89e-08, + "flexibilities": 5.89e-08, + "flighted": 5.89e-08, + "flitter": 5.89e-08, + "flogger": 5.89e-08, + "florine": 5.89e-08, + "folin": 5.89e-08, + "fontenoy": 5.89e-08, + "fooking": 5.89e-08, + "forbs": 5.89e-08, + "foryou": 5.89e-08, + "fosun": 5.89e-08, + "fpg": 5.89e-08, + "framlingham": 5.89e-08, + "fraps": 5.89e-08, + "fraternize": 5.89e-08, + "freights": 5.89e-08, + "frenzies": 5.89e-08, + "freunde": 5.89e-08, + "friedrichshafen": 5.89e-08, + "frien": 5.89e-08, + "frollo": 5.89e-08, + "fromme": 5.89e-08, + "frontmen": 5.89e-08, + "fruitiness": 5.89e-08, + "functionalization": 5.89e-08, + "fwhm": 5.89e-08, + "gnight": 5.89e-08, + "gabbi": 5.89e-08, + "gado": 5.89e-08, + "gainax": 5.89e-08, + "galanter": 5.89e-08, + "galavant": 5.89e-08, + "gamay": 5.89e-08, + "gambias": 5.89e-08, + "gammons": 5.89e-08, + "gaspare": 5.89e-08, + "gastrulation": 5.89e-08, + "gatecrash": 5.89e-08, + "gatess": 5.89e-08, + "gayo": 5.89e-08, + "gazidis": 5.89e-08, + "gelderland": 5.89e-08, + "gelt": 5.89e-08, + "geordies": 5.89e-08, + "georgio": 5.89e-08, + "germains": 5.89e-08, + "gerrie": 5.89e-08, + "gerrish": 5.89e-08, + "gex": 5.89e-08, + "ghirardelli": 5.89e-08, + "giftcards": 5.89e-08, + "gilbreth": 5.89e-08, + "gimps": 5.89e-08, + "ginni": 5.89e-08, + "givingtuesday": 5.89e-08, + "glamorizing": 5.89e-08, + "glycation": 5.89e-08, + "godparent": 5.89e-08, + "goob": 5.89e-08, + "goodells": 5.89e-08, + "gool": 5.89e-08, + "gormans": 5.89e-08, + "gothamist": 5.89e-08, + "gourock": 5.89e-08, + "gouty": 5.89e-08, + "goyas": 5.89e-08, + "grainne": 5.89e-08, + "grans": 5.89e-08, + "grantchester": 5.89e-08, + "greenfields": 5.89e-08, + "greenlanders": 5.89e-08, + "grenadian": 5.89e-08, + "griechische": 5.89e-08, + "grimey": 5.89e-08, + "grosgrain": 5.89e-08, + "guillot": 5.89e-08, + "gwenda": 5.89e-08, + "gyres": 5.89e-08, + "hacktivists": 5.89e-08, + "hadamard": 5.89e-08, + "haemorrhages": 5.89e-08, + "hainsworth": 5.89e-08, + "hakodate": 5.89e-08, + "halabi": 5.89e-08, + "halicarnassus": 5.89e-08, + "handpiece": 5.89e-08, + "hankook": 5.89e-08, + "haraam": 5.89e-08, + "harambee": 5.89e-08, + "hardaker": 5.89e-08, + "hardcoded": 5.89e-08, + "hardener": 5.89e-08, + "hargraves": 5.89e-08, + "harini": 5.89e-08, + "harten": 5.89e-08, + "hartl": 5.89e-08, + "haruhiko": 5.89e-08, + "haruto": 5.89e-08, + "hasp": 5.89e-08, + "hasted": 5.89e-08, + "haughtiness": 5.89e-08, + "hawksmoor": 5.89e-08, + "haynesville": 5.89e-08, + "hcmc": 5.89e-08, + "healthcares": 5.89e-08, + "heareth": 5.89e-08, + "heaviside": 5.89e-08, + "hebraic": 5.89e-08, + "hedger": 5.89e-08, + "heizer": 5.89e-08, + "hellacious": 5.89e-08, + "hellinger": 5.89e-08, + "helminths": 5.89e-08, + "hendershot": 5.89e-08, + "herbology": 5.89e-08, + "heri": 5.89e-08, + "hermoso": 5.89e-08, + "herpetologist": 5.89e-08, + "heusen": 5.89e-08, + "hidebound": 5.89e-08, + "highclere": 5.89e-08, + "hij": 5.89e-08, + "hijaz": 5.89e-08, + "hikikomori": 5.89e-08, + "hindostan": 5.89e-08, + "hinduja": 5.89e-08, + "hirise": 5.89e-08, + "hiros": 5.89e-08, + "hmds": 5.89e-08, + "hoenig": 5.89e-08, + "hohokam": 5.89e-08, + "hongkongers": 5.89e-08, + "hool": 5.89e-08, + "hornady": 5.89e-08, + "horology": 5.89e-08, + "horvitz": 5.89e-08, + "hosepipe": 5.89e-08, + "hosie": 5.89e-08, + "hospitalize": 5.89e-08, + "hotep": 5.89e-08, + "hsf": 5.89e-08, + "htb": 5.89e-08, + "huizenga": 5.89e-08, + "humdinger": 5.89e-08, + "hunty": 5.89e-08, + "hydrogenase": 5.89e-08, + "hyip": 5.89e-08, + "hyperlinked": 5.89e-08, + "hypnagogic": 5.89e-08, + "hypnotists": 5.89e-08, + "icas": 5.89e-08, + "identikit": 5.89e-08, + "igr": 5.89e-08, + "illenium": 5.89e-08, + "imn": 5.89e-08, + "imperfective": 5.89e-08, + "imperia": 5.89e-08, + "impolitic": 5.89e-08, + "improvisatory": 5.89e-08, + "impugning": 5.89e-08, + "incom": 5.89e-08, + "incompetently": 5.89e-08, + "incongruence": 5.89e-08, + "indisposition": 5.89e-08, + "ingush": 5.89e-08, + "inkblot": 5.89e-08, + "inktober": 5.89e-08, + "inorder": 5.89e-08, + "instagrammers": 5.89e-08, + "intermixing": 5.89e-08, + "intertwines": 5.89e-08, + "intp": 5.89e-08, + "irakli": 5.89e-08, + "iram": 5.89e-08, + "irritably": 5.89e-08, + "isentropic": 5.89e-08, + "isic": 5.89e-08, + "isoprene": 5.89e-08, + "issuable": 5.89e-08, + "istana": 5.89e-08, + "istomin": 5.89e-08, + "itai": 5.89e-08, + "iut": 5.89e-08, + "iwant": 5.89e-08, + "jaffee": 5.89e-08, + "jagermeister": 5.89e-08, + "jamma": 5.89e-08, + "jangled": 5.89e-08, + "janikowski": 5.89e-08, + "japonicus": 5.89e-08, + "japp": 5.89e-08, + "jaque": 5.89e-08, + "jbr": 5.89e-08, + "jedd": 5.89e-08, + "jeongyeon": 5.89e-08, + "jerold": 5.89e-08, + "jespersen": 5.89e-08, + "jetset": 5.89e-08, + "jide": 5.89e-08, + "jiggled": 5.89e-08, + "jks": 5.89e-08, + "jlc": 5.89e-08, + "jmac": 5.89e-08, + "jodha": 5.89e-08, + "jodhpurs": 5.89e-08, + "jojen": 5.89e-08, + "jpop": 5.89e-08, + "jrpgs": 5.89e-08, + "judenrat": 5.89e-08, + "juna": 5.89e-08, + "juz": 5.89e-08, + "kaas": 5.89e-08, + "kabaka": 5.89e-08, + "kahr": 5.89e-08, + "kamali": 5.89e-08, + "kaner": 5.89e-08, + "kanha": 5.89e-08, + "kannon": 5.89e-08, + "kanojo": 5.89e-08, + "katagiri": 5.89e-08, + "kaupthing": 5.89e-08, + "keb": 5.89e-08, + "kele": 5.89e-08, + "kelvins": 5.89e-08, + "kemalist": 5.89e-08, + "kennerley": 5.89e-08, + "kente": 5.89e-08, + "kenzi": 5.89e-08, + "kerguelen": 5.89e-08, + "kesa": 5.89e-08, + "kess": 5.89e-08, + "keyblade": 5.89e-08, + "kfcs": 5.89e-08, + "kiessling": 5.89e-08, + "kikes": 5.89e-08, + "kinahan": 5.89e-08, + "kindl": 5.89e-08, + "kinesin": 5.89e-08, + "kirghiz": 5.89e-08, + "kirkintilloch": 5.89e-08, + "kisi": 5.89e-08, + "kitting": 5.89e-08, + "kjartan": 5.89e-08, + "klf": 5.89e-08, + "klos": 5.89e-08, + "knockabout": 5.89e-08, + "knurled": 5.89e-08, + "kohala": 5.89e-08, + "komar": 5.89e-08, + "kookaburras": 5.89e-08, + "korematsu": 5.89e-08, + "korwin": 5.89e-08, + "kostroma": 5.89e-08, + "kotal": 5.89e-08, + "kovar": 5.89e-08, + "koyo": 5.89e-08, + "kpu": 5.89e-08, + "kristel": 5.89e-08, + "kristins": 5.89e-08, + "ksg": 5.89e-08, + "kukri": 5.89e-08, + "kunstler": 5.89e-08, + "kurita": 5.89e-08, + "kurtosis": 5.89e-08, + "kurupt": 5.89e-08, + "kuwabara": 5.89e-08, + "kwp": 5.89e-08, + "kylee": 5.89e-08, + "lachaise": 5.89e-08, + "laconically": 5.89e-08, + "ladi": 5.89e-08, + "ladie": 5.89e-08, + "lael": 5.89e-08, + "lamberto": 5.89e-08, + "lamella": 5.89e-08, + "lamictal": 5.89e-08, + "lampkin": 5.89e-08, + "landrace": 5.89e-08, + "laporta": 5.89e-08, + "lardo": 5.89e-08, + "larga": 5.89e-08, + "lashawn": 5.89e-08, + "laster": 5.89e-08, + "lateritic": 5.89e-08, + "lawbreaking": 5.89e-08, + "lawrance": 5.89e-08, + "lazers": 5.89e-08, + "leadin": 5.89e-08, + "ledesma": 5.89e-08, + "leeuwenhoek": 5.89e-08, + "legendarily": 5.89e-08, + "lethem": 5.89e-08, + "licky": 5.89e-08, + "liebermans": 5.89e-08, + "liker": 5.89e-08, + "linas": 5.89e-08, + "liquify": 5.89e-08, + "lirik": 5.89e-08, + "lissy": 5.89e-08, + "listlessly": 5.89e-08, + "lithonia": 5.89e-08, + "livescore": 5.89e-08, + "lizas": 5.89e-08, + "llo": 5.89e-08, + "lloydminster": 5.89e-08, + "lobsang": 5.89e-08, + "lodo": 5.89e-08, + "loebs": 5.89e-08, + "logy": 5.89e-08, + "lollypop": 5.89e-08, + "lorded": 5.89e-08, + "loxton": 5.89e-08, + "lron": 5.89e-08, + "lubber": 5.89e-08, + "lude": 5.89e-08, + "luminol": 5.89e-08, + "lusophone": 5.89e-08, + "lvm": 5.89e-08, + "lysates": 5.89e-08, + "macculloch": 5.89e-08, + "macie": 5.89e-08, + "maclure": 5.89e-08, + "macra": 5.89e-08, + "macrolide": 5.89e-08, + "madelines": 5.89e-08, + "maguindanao": 5.89e-08, + "makayla": 5.89e-08, + "makenzie": 5.89e-08, + "malabo": 5.89e-08, + "maling": 5.89e-08, + "mallrats": 5.89e-08, + "mamy": 5.89e-08, + "manageress": 5.89e-08, + "manco": 5.89e-08, + "maney": 5.89e-08, + "mangia": 5.89e-08, + "mangin": 5.89e-08, + "mangina": 5.89e-08, + "manisa": 5.89e-08, + "manja": 5.89e-08, + "mankey": 5.89e-08, + "marawi": 5.89e-08, + "marcantonio": 5.89e-08, + "mardin": 5.89e-08, + "marnix": 5.89e-08, + "marschall": 5.89e-08, + "maryvale": 5.89e-08, + "mattek": 5.89e-08, + "matto": 5.89e-08, + "maurits": 5.89e-08, + "mcalpin": 5.89e-08, + "mcclay": 5.89e-08, + "mccolgan": 5.89e-08, + "mcflurry": 5.89e-08, + "mcgeady": 5.89e-08, + "mcraven": 5.89e-08, + "mcsherry": 5.89e-08, + "mdu": 5.89e-08, + "mecum": 5.89e-08, + "medinas": 5.89e-08, + "meego": 5.89e-08, + "megantic": 5.89e-08, + "meggs": 5.89e-08, + "meguro": 5.89e-08, + "mema": 5.89e-08, + "mendiola": 5.89e-08, + "meniscal": 5.89e-08, + "mercola": 5.89e-08, + "meres": 5.89e-08, + "merganser": 5.89e-08, + "mesabi": 5.89e-08, + "metamucil": 5.89e-08, + "methot": 5.89e-08, + "michalis": 5.89e-08, + "michiru": 5.89e-08, + "miesha": 5.89e-08, + "migh": 5.89e-08, + "miked": 5.89e-08, + "milbury": 5.89e-08, + "millot": 5.89e-08, + "minako": 5.89e-08, + "minidress": 5.89e-08, + "minns": 5.89e-08, + "minuto": 5.89e-08, + "mlks": 5.89e-08, + "mlw": 5.89e-08, + "mnu": 5.89e-08, + "mofa": 5.89e-08, + "mols": 5.89e-08, + "momofuku": 5.89e-08, + "monarchic": 5.89e-08, + "moneda": 5.89e-08, + "mongkok": 5.89e-08, + "monotonously": 5.89e-08, + "montrachet": 5.89e-08, + "moonwalking": 5.89e-08, + "morahan": 5.89e-08, + "mosi": 5.89e-08, + "mpps": 5.89e-08, + "mrcp": 5.89e-08, + "mthatha": 5.89e-08, + "mtpa": 5.89e-08, + "mucilage": 5.89e-08, + "mucks": 5.89e-08, + "mufc": 5.89e-08, + "muhammadan": 5.89e-08, + "murari": 5.89e-08, + "muriels": 5.89e-08, + "musonda": 5.89e-08, + "mutex": 5.89e-08, + "mutilates": 5.89e-08, + "mwi": 5.89e-08, + "mxn": 5.89e-08, + "myfanwy": 5.89e-08, + "naiad": 5.89e-08, + "najwa": 5.89e-08, + "nanase": 5.89e-08, + "napoles": 5.89e-08, + "narberth": 5.89e-08, + "nasm": 5.89e-08, + "natgeo": 5.89e-08, + "navs": 5.89e-08, + "navsari": 5.89e-08, + "nayef": 5.89e-08, + "ncg": 5.89e-08, + "negans": 5.89e-08, + "neptunium": 5.89e-08, + "nerfs": 5.89e-08, + "networkers": 5.89e-08, + "newscorp": 5.89e-08, + "newsradio": 5.89e-08, + "nezha": 5.89e-08, + "nfhs": 5.89e-08, + "nibbler": 5.89e-08, + "nicanor": 5.89e-08, + "nikiforov": 5.89e-08, + "nilgiri": 5.89e-08, + "nixing": 5.89e-08, + "nizami": 5.89e-08, + "noid": 5.89e-08, + "norbit": 5.89e-08, + "norf": 5.89e-08, + "norilsk": 5.89e-08, + "norriss": 5.89e-08, + "notam": 5.89e-08, + "novichok": 5.89e-08, + "numidia": 5.89e-08, + "nust": 5.89e-08, + "nutcrackers": 5.89e-08, + "nwi": 5.89e-08, + "nyp": 5.89e-08, + "oana": 5.89e-08, + "obert": 5.89e-08, + "obes": 5.89e-08, + "observatoire": 5.89e-08, + "ochiai": 5.89e-08, + "oconomowoc": 5.89e-08, + "octobre": 5.89e-08, + "oddo": 5.89e-08, + "odegaard": 5.89e-08, + "oduya": 5.89e-08, + "officeholder": 5.89e-08, + "ohsu": 5.89e-08, + "okeh": 5.89e-08, + "okmulgee": 5.89e-08, + "oland": 5.89e-08, + "oldcastle": 5.89e-08, + "oles": 5.89e-08, + "oligopolies": 5.89e-08, + "olm": 5.89e-08, + "ombudsmans": 5.89e-08, + "omkar": 5.89e-08, + "omnicom": 5.89e-08, + "ondaatje": 5.89e-08, + "oophorectomy": 5.89e-08, + "opecs": 5.89e-08, + "oratio": 5.89e-08, + "orbi": 5.89e-08, + "orbicularis": 5.89e-08, + "organum": 5.89e-08, + "orinda": 5.89e-08, + "orogen": 5.89e-08, + "orzo": 5.89e-08, + "ostrowski": 5.89e-08, + "oswin": 5.89e-08, + "otcbb": 5.89e-08, + "oua": 5.89e-08, + "ouimet": 5.89e-08, + "outshining": 5.89e-08, + "outwash": 5.89e-08, + "overfill": 5.89e-08, + "overinflated": 5.89e-08, + "overreacts": 5.89e-08, + "oversexed": 5.89e-08, + "overstressed": 5.89e-08, + "palatka": 5.89e-08, + "pallium": 5.89e-08, + "pamyu": 5.89e-08, + "pantani": 5.89e-08, + "pantheons": 5.89e-08, + "papillion": 5.89e-08, + "parasitized": 5.89e-08, + "parentis": 5.89e-08, + "parly": 5.89e-08, + "parmentier": 5.89e-08, + "parthasarathy": 5.89e-08, + "particularized": 5.89e-08, + "pawlak": 5.89e-08, + "pawling": 5.89e-08, + "pcmcia": 5.89e-08, + "pechora": 5.89e-08, + "pegida": 5.89e-08, + "pemmican": 5.89e-08, + "penalising": 5.89e-08, + "pepco": 5.89e-08, + "perrins": 5.89e-08, + "perros": 5.89e-08, + "pervaiz": 5.89e-08, + "peterhouse": 5.89e-08, + "pharyngitis": 5.89e-08, + "phenolics": 5.89e-08, + "philando": 5.89e-08, + "philoctetes": 5.89e-08, + "philosophia": 5.89e-08, + "phinehas": 5.89e-08, + "phonographs": 5.89e-08, + "photobombed": 5.89e-08, + "photogallery": 5.89e-08, + "pieris": 5.89e-08, + "piff": 5.89e-08, + "pinang": 5.89e-08, + "piracetam": 5.89e-08, + "piter": 5.89e-08, + "plainness": 5.89e-08, + "planeta": 5.89e-08, + "plantago": 5.89e-08, + "plateful": 5.89e-08, + "pocklington": 5.89e-08, + "poinsett": 5.89e-08, + "pokemongo": 5.89e-08, + "pokers": 5.89e-08, + "poley": 5.89e-08, + "polkas": 5.89e-08, + "poptarts": 5.89e-08, + "pora": 5.89e-08, + "porker": 5.89e-08, + "poros": 5.89e-08, + "postma": 5.89e-08, + "postmistress": 5.89e-08, + "poteau": 5.89e-08, + "potentates": 5.89e-08, + "potsherds": 5.89e-08, + "prakriti": 5.89e-08, + "prayut": 5.89e-08, + "proceso": 5.89e-08, + "procreating": 5.89e-08, + "professionalize": 5.89e-08, + "proforma": 5.89e-08, + "progres": 5.89e-08, + "proliferates": 5.89e-08, + "prominences": 5.89e-08, + "prote": 5.89e-08, + "proverbially": 5.89e-08, + "psia": 5.89e-08, + "psion": 5.89e-08, + "psionics": 5.89e-08, + "psychophysiology": 5.89e-08, + "psytrance": 5.89e-08, + "ptcl": 5.89e-08, + "pucca": 5.89e-08, + "puffball": 5.89e-08, + "pukki": 5.89e-08, + "pumila": 5.89e-08, + "puti": 5.89e-08, + "putte": 5.89e-08, + "pyare": 5.89e-08, + "pyxis": 5.89e-08, + "qdoba": 5.89e-08, + "qsr": 5.89e-08, + "quakertown": 5.89e-08, + "quantic": 5.89e-08, + "queenscliff": 5.89e-08, + "quiere": 5.89e-08, + "quints": 5.89e-08, + "quitclaim": 5.89e-08, + "radulov": 5.89e-08, + "raffled": 5.89e-08, + "ragazzi": 5.89e-08, + "rago": 5.89e-08, + "ragrets": 5.89e-08, + "rahmon": 5.89e-08, + "rainman": 5.89e-08, + "rajagopalan": 5.89e-08, + "rajahmundry": 5.89e-08, + "rajdhani": 5.89e-08, + "rambutan": 5.89e-08, + "ramsar": 5.89e-08, + "ranbaxy": 5.89e-08, + "randhawa": 5.89e-08, + "rankins": 5.25e-08, + "rankles": 5.89e-08, + "rasht": 5.89e-08, + "raval": 5.89e-08, + "rayder": 5.89e-08, + "razzaq": 5.89e-08, + "realer": 5.89e-08, + "realplayer": 5.89e-08, + "rebooked": 5.89e-08, + "recanting": 5.89e-08, + "recluses": 5.89e-08, + "recombining": 5.89e-08, + "reconquered": 5.89e-08, + "redcap": 5.89e-08, + "reenlist": 5.89e-08, + "rehana": 5.89e-08, + "renova": 5.89e-08, + "reticule": 5.89e-08, + "retune": 5.89e-08, + "rgc": 5.89e-08, + "richwood": 5.89e-08, + "ricordi": 5.89e-08, + "riggan": 5.89e-08, + "rizin": 5.89e-08, + "rkc": 5.89e-08, + "roaders": 5.89e-08, + "roastery": 5.89e-08, + "robbe": 5.89e-08, + "rolexes": 5.89e-08, + "romeu": 5.89e-08, + "ronn": 5.89e-08, + "roodepoort": 5.89e-08, + "ropers": 5.89e-08, + "rorkes": 5.89e-08, + "rosebush": 5.89e-08, + "rosenstock": 5.89e-08, + "rotators": 5.89e-08, + "roty": 5.89e-08, + "rsquo": 5.89e-08, + "ruairi": 5.89e-08, + "rubato": 5.89e-08, + "rubix": 5.89e-08, + "ruidoso": 5.89e-08, + "rumped": 5.89e-08, + "rundgren": 5.89e-08, + "rutkowski": 5.89e-08, + "sabourin": 5.89e-08, + "sadam": 5.89e-08, + "sahl": 5.89e-08, + "salehi": 5.89e-08, + "saltaire": 5.89e-08, + "saltcoats": 5.89e-08, + "sandee": 5.89e-08, + "sanfords": 5.89e-08, + "sanja": 5.89e-08, + "sanka": 5.89e-08, + "sanpete": 5.89e-08, + "sart": 5.89e-08, + "sassa": 5.89e-08, + "saugatuck": 5.89e-08, + "savery": 5.89e-08, + "savidge": 5.89e-08, + "scaggs": 5.89e-08, + "scantron": 5.89e-08, + "scba": 5.89e-08, + "schrock": 5.89e-08, + "schrodingers": 5.89e-08, + "schumaker": 5.89e-08, + "schwerner": 5.89e-08, + "schwitters": 5.89e-08, + "scif": 5.89e-08, + "scooty": 5.89e-08, + "scotstoun": 5.89e-08, + "scrapheap": 5.89e-08, + "scrummy": 5.89e-08, + "sdss": 5.89e-08, + "sechin": 5.89e-08, + "sectorial": 5.89e-08, + "seedsman": 5.89e-08, + "seguros": 5.89e-08, + "segwit": 5.89e-08, + "seph": 5.89e-08, + "serai": 5.89e-08, + "serc": 5.89e-08, + "servility": 5.89e-08, + "severability": 5.89e-08, + "shaba": 5.89e-08, + "shadowless": 5.89e-08, + "shakuntala": 5.89e-08, + "shau": 5.89e-08, + "shead": 5.89e-08, + "sheremetyevo": 5.89e-08, + "shika": 5.89e-08, + "shitbox": 5.89e-08, + "shurmur": 5.89e-08, + "siddhi": 5.89e-08, + "sidled": 5.89e-08, + "sieben": 5.89e-08, + "simplon": 5.89e-08, + "skanska": 5.89e-08, + "skelos": 5.89e-08, + "slaking": 5.89e-08, + "slidably": 5.89e-08, + "sloughed": 5.89e-08, + "smail": 5.89e-08, + "snacked": 5.89e-08, + "snooks": 5.89e-08, + "solt": 5.89e-08, + "solti": 5.89e-08, + "somberly": 5.89e-08, + "somervell": 5.89e-08, + "sonars": 5.89e-08, + "sonorities": 5.89e-08, + "sophisticate": 5.89e-08, + "soross": 5.89e-08, + "sors": 5.89e-08, + "spaeth": 5.89e-08, + "spazz": 5.89e-08, + "specif": 5.89e-08, + "spheroids": 5.89e-08, + "spiciest": 5.89e-08, + "spiderwebs": 5.89e-08, + "spinous": 5.89e-08, + "splendours": 5.89e-08, + "spliffs": 5.89e-08, + "srg": 5.89e-08, + "ssy": 5.89e-08, + "starhub": 5.89e-08, + "stearman": 5.89e-08, + "stenography": 5.89e-08, + "sterilising": 5.89e-08, + "stiffing": 5.89e-08, + "stonecutters": 5.89e-08, + "stratasys": 5.89e-08, + "strecker": 5.89e-08, + "stribling": 5.89e-08, + "strucker": 5.89e-08, + "strudwick": 5.89e-08, + "strymon": 5.89e-08, + "studly": 5.89e-08, + "stutterer": 5.89e-08, + "suba": 5.89e-08, + "submenu": 5.89e-08, + "sugarhill": 5.89e-08, + "sugoi": 5.89e-08, + "sujet": 5.89e-08, + "sukkur": 5.89e-08, + "sulfonic": 5.89e-08, + "sulli": 5.89e-08, + "superbikes": 5.89e-08, + "supercuts": 5.89e-08, + "superhit": 5.89e-08, + "supermini": 5.89e-08, + "superordinate": 5.89e-08, + "suport": 5.89e-08, + "suz": 5.89e-08, + "svod": 5.89e-08, + "swanny": 5.89e-08, + "switchgrass": 5.89e-08, + "swiveled": 5.89e-08, + "sylvanas": 5.89e-08, + "symone": 5.89e-08, + "synodic": 5.89e-08, + "synthroid": 5.89e-08, + "systole": 5.89e-08, + "tabulations": 5.89e-08, + "tacna": 5.89e-08, + "tael": 5.89e-08, + "taimur": 5.89e-08, + "takakura": 5.89e-08, + "takamura": 5.89e-08, + "tantalize": 5.89e-08, + "tashiro": 5.89e-08, + "taube": 5.89e-08, + "tdb": 5.89e-08, + "teesdale": 5.89e-08, + "terese": 5.89e-08, + "terman": 5.89e-08, + "terrio": 5.89e-08, + "tetsuro": 5.89e-08, + "thatcham": 5.89e-08, + "thati": 5.89e-08, + "theodorus": 5.89e-08, + "thermic": 5.89e-08, + "thermogenic": 5.89e-08, + "thie": 5.89e-08, + "thinkable": 5.89e-08, + "thorens": 5.89e-08, + "thow": 5.89e-08, + "thursby": 5.89e-08, + "thurstan": 5.89e-08, + "thymocytes": 5.89e-08, + "tibbits": 5.89e-08, + "ticknor": 5.89e-08, + "tii": 5.89e-08, + "tillmans": 5.89e-08, + "tinggi": 5.89e-08, + "toadstools": 5.89e-08, + "toilers": 5.89e-08, + "tongas": 1.12e-08, + "tostada": 5.89e-08, + "tradewinds": 5.89e-08, + "tramped": 5.89e-08, + "trank": 5.89e-08, + "treasons": 5.89e-08, + "treen": 5.89e-08, + "treg": 5.89e-08, + "tripadvisors": 5.89e-08, + "troian": 5.89e-08, + "trona": 5.89e-08, + "trotskyite": 5.89e-08, + "trull": 5.89e-08, + "trv": 5.89e-08, + "trypophobia": 5.89e-08, + "tsf": 5.89e-08, + "tsimshian": 5.89e-08, + "tunnelled": 5.89e-08, + "turkmens": 5.89e-08, + "tusa": 5.89e-08, + "twitterati": 5.89e-08, + "twoo": 5.89e-08, + "tyldesley": 5.89e-08, + "ufp": 5.89e-08, + "ugric": 5.89e-08, + "ulysse": 5.89e-08, + "umayyads": 5.89e-08, + "unbridgeable": 5.89e-08, + "underplay": 5.89e-08, + "underselling": 5.89e-08, + "unfitness": 5.89e-08, + "unforgotten": 5.89e-08, + "unhinge": 5.89e-08, + "uniondale": 5.89e-08, + "uniques": 5.89e-08, + "unitedkingdom": 5.89e-08, + "univisions": 5.89e-08, + "unschooled": 5.89e-08, + "unsent": 5.89e-08, + "unserer": 5.89e-08, + "upadhyay": 5.89e-08, + "uplinks": 5.89e-08, + "urmia": 5.89e-08, + "usec": 5.89e-08, + "uspa": 5.89e-08, + "utils": 5.89e-08, + "utopians": 5.89e-08, + "vacillate": 5.89e-08, + "valentini": 5.89e-08, + "vallis": 2.04e-08, + "vamped": 5.89e-08, + "vanvleet": 5.89e-08, + "varnum": 5.89e-08, + "veet": 5.89e-08, + "veneno": 5.89e-08, + "venlo": 5.89e-08, + "verged": 5.89e-08, + "verneuil": 5.89e-08, + "vesti": 5.89e-08, + "vien": 5.89e-08, + "viewtiful": 5.89e-08, + "vikrant": 5.89e-08, + "vinous": 5.89e-08, + "vitos": 5.89e-08, + "vivarium": 5.89e-08, + "volpone": 5.89e-08, + "voth": 5.89e-08, + "vyasa": 5.89e-08, + "vyse": 5.89e-08, + "waec": 5.89e-08, + "wailuku": 5.89e-08, + "wainscot": 5.89e-08, + "wakil": 5.89e-08, + "waldrop": 5.89e-08, + "wallas": 5.89e-08, + "wallkill": 5.89e-08, + "walthall": 5.89e-08, + "wankel": 5.89e-08, + "wanky": 5.89e-08, + "warrenpoint": 5.89e-08, + "warum": 5.89e-08, + "wastepaper": 5.89e-08, + "watchfulness": 5.89e-08, + "wayzata": 5.89e-08, + "wcd": 5.89e-08, + "weaponised": 5.89e-08, + "weatherall": 5.89e-08, + "webm": 5.89e-08, + "weiter": 5.89e-08, + "wheedle": 5.89e-08, + "whereto": 5.89e-08, + "whitburn": 5.89e-08, + "wiff": 5.89e-08, + "wigton": 5.89e-08, + "wigtown": 5.89e-08, + "wij": 5.89e-08, + "wimbush": 5.89e-08, + "winchelsea": 5.89e-08, + "winehouses": 5.89e-08, + "wissen": 5.89e-08, + "wittier": 5.89e-08, + "wjla": 5.89e-08, + "wns": 5.89e-08, + "wokeness": 5.89e-08, + "woodgrain": 5.89e-08, + "wooding": 5.89e-08, + "woolloongabba": 5.89e-08, + "worli": 5.89e-08, + "wrotham": 5.89e-08, + "wroughton": 5.89e-08, + "wrp": 5.89e-08, + "wullie": 5.89e-08, + "wynette": 5.89e-08, + "wynnes": 5.89e-08, + "xans": 5.89e-08, + "xbrl": 5.89e-08, + "xiaoming": 5.89e-08, + "xxy": 5.89e-08, + "yaeger": 5.89e-08, + "yahia": 5.89e-08, + "yamane": 5.89e-08, + "yamen": 5.89e-08, + "yaroslavsky": 5.89e-08, + "yavuz": 5.89e-08, + "yec": 5.89e-08, + "yehoshua": 5.89e-08, + "yeouido": 5.89e-08, + "yeow": 5.89e-08, + "yoakum": 5.89e-08, + "yohji": 5.89e-08, + "yoplait": 5.89e-08, + "youngers": 5.89e-08, + "ystad": 5.89e-08, + "yuichiro": 5.89e-08, + "zapatero": 5.89e-08, + "zard": 5.89e-08, + "zelazny": 5.89e-08, + "zenger": 5.89e-08, + "zhaos": 5.89e-08, + "zila": 5.89e-08, + "zubov": 5.89e-08, + "aaaaaaah": 5.75e-08, + "aaaahhh": 5.75e-08, + "aauw": 5.75e-08, + "abdus": 5.75e-08, + "aberfoyle": 5.75e-08, + "abteilung": 5.75e-08, + "acclimatise": 5.75e-08, + "acellular": 5.75e-08, + "achin": 5.75e-08, + "actioned": 5.75e-08, + "adelphia": 5.75e-08, + "adeptly": 5.75e-08, + "adin": 5.75e-08, + "adlib": 5.75e-08, + "affronts": 5.75e-08, + "afta": 5.75e-08, + "agaricus": 5.75e-08, + "agia": 5.75e-08, + "agrobacterium": 5.75e-08, + "agroecology": 5.75e-08, + "aham": 5.75e-08, + "ahasuerus": 5.75e-08, + "airfoils": 5.75e-08, + "airlocks": 5.75e-08, + "ajaxs": 5.75e-08, + "alaya": 5.75e-08, + "alaykum": 5.75e-08, + "albuquerques": 5.75e-08, + "alentejo": 5.75e-08, + "aleppos": 5.75e-08, + "alexandrov": 5.75e-08, + "alhassan": 5.75e-08, + "aling": 5.75e-08, + "alisher": 5.75e-08, + "alleppey": 5.75e-08, + "alomar": 5.75e-08, + "alv": 5.75e-08, + "amai": 5.75e-08, + "amaravati": 5.75e-08, + "ambre": 5.75e-08, + "amcham": 5.75e-08, + "americo": 5.75e-08, + "amica": 5.75e-08, + "amins": 5.75e-08, + "aminah": 5.75e-08, + "ammy": 5.75e-08, + "amstrad": 5.75e-08, + "anastasias": 5.75e-08, + "anciens": 5.75e-08, + "anduin": 5.75e-08, + "angello": 5.75e-08, + "angiosperm": 5.75e-08, + "anjos": 5.75e-08, + "anjum": 5.75e-08, + "annick": 5.75e-08, + "anorexics": 5.75e-08, + "anthon": 5.75e-08, + "anthraquinone": 5.75e-08, + "antinous": 5.75e-08, + "apap": 5.75e-08, + "apfel": 5.75e-08, + "apollinaris": 5.75e-08, + "appar": 5.75e-08, + "appli": 5.75e-08, + "apuleius": 5.75e-08, + "aquamans": 5.75e-08, + "arat": 5.75e-08, + "archduchess": 5.75e-08, + "arika": 5.75e-08, + "ariosto": 5.75e-08, + "aristocats": 5.75e-08, + "arnheim": 5.75e-08, + "arquitectura": 5.75e-08, + "artificers": 5.75e-08, + "artsakh": 5.75e-08, + "arundell": 5.75e-08, + "arvs": 5.75e-08, + "asaro": 5.75e-08, + "ascari": 5.75e-08, + "ashcraft": 5.75e-08, + "ashikaga": 5.75e-08, + "asiata": 5.75e-08, + "assuaging": 5.75e-08, + "assunta": 5.75e-08, + "atomism": 5.75e-08, + "aubree": 5.75e-08, + "aviaries": 5.75e-08, + "avma": 5.75e-08, + "aylesford": 5.75e-08, + "azpi": 5.75e-08, + "bachelard": 5.75e-08, + "badboy": 5.75e-08, + "badiou": 5.75e-08, + "bael": 5.75e-08, + "bagless": 5.75e-08, + "bahati": 5.75e-08, + "bailon": 5.75e-08, + "bakeware": 5.75e-08, + "balai": 5.75e-08, + "balbi": 5.75e-08, + "banjara": 5.75e-08, + "bankrolls": 5.75e-08, + "banku": 5.75e-08, + "baoding": 5.75e-08, + "barackobama": 5.75e-08, + "barataria": 5.75e-08, + "barch": 5.75e-08, + "baritones": 5.75e-08, + "barness": 5.75e-08, + "baronetcy": 5.75e-08, + "basileus": 5.75e-08, + "bassel": 5.75e-08, + "bastardo": 5.75e-08, + "battletoads": 5.75e-08, + "beany": 5.75e-08, + "beauchemin": 5.75e-08, + "beause": 5.75e-08, + "becareful": 5.75e-08, + "becuse": 5.75e-08, + "bedevil": 5.75e-08, + "belarussian": 5.75e-08, + "belfer": 5.75e-08, + "bellingcat": 5.75e-08, + "belorussia": 5.75e-08, + "benedicta": 5.75e-08, + "bente": 5.75e-08, + "benvolio": 5.75e-08, + "berghof": 5.75e-08, + "berlanti": 5.75e-08, + "bers": 5.75e-08, + "bertolini": 5.75e-08, + "beru": 5.75e-08, + "besi": 5.75e-08, + "betterton": 5.75e-08, + "betul": 5.75e-08, + "bgg": 5.75e-08, + "bgo": 5.75e-08, + "biagini": 5.75e-08, + "bianchis": 5.75e-08, + "biaxial": 5.75e-08, + "bioelectric": 5.75e-08, + "biog": 5.75e-08, + "biomimicry": 5.75e-08, + "bira": 5.75e-08, + "bisco": 5.75e-08, + "blackcurrants": 5.75e-08, + "blackledge": 5.75e-08, + "blairsville": 5.75e-08, + "blankety": 5.75e-08, + "blankness": 5.75e-08, + "blisteringly": 5.75e-08, + "bng": 5.75e-08, + "boesch": 5.75e-08, + "bogert": 5.75e-08, + "bonelli": 5.75e-08, + "bonhomme": 5.75e-08, + "bonsall": 5.75e-08, + "botto": 5.75e-08, + "boucle": 5.75e-08, + "boutin": 5.75e-08, + "bowflex": 5.75e-08, + "bowmore": 5.75e-08, + "branchial": 5.75e-08, + "brandan": 5.75e-08, + "brau": 5.75e-08, + "breadline": 5.75e-08, + "bready": 5.75e-08, + "breastplates": 5.75e-08, + "brocket": 5.75e-08, + "brodies": 5.75e-08, + "bromeliads": 5.75e-08, + "bronski": 5.75e-08, + "brrrr": 5.75e-08, + "buckhurst": 5.75e-08, + "budapests": 5.75e-08, + "bunco": 5.75e-08, + "bunda": 5.75e-08, + "bunko": 5.75e-08, + "bunky": 5.75e-08, + "burbling": 5.75e-08, + "bushwalking": 5.75e-08, + "bushwhackers": 5.75e-08, + "buttplug": 5.75e-08, + "cafferty": 5.75e-08, + "cafu": 5.75e-08, + "caldeira": 5.75e-08, + "caldron": 5.75e-08, + "calero": 5.75e-08, + "cambell": 5.75e-08, + "cang": 5.75e-08, + "cantera": 5.75e-08, + "canterlot": 5.75e-08, + "caol": 5.75e-08, + "capriles": 5.75e-08, + "carbamate": 5.75e-08, + "cardia": 5.75e-08, + "caricaturing": 5.75e-08, + "caroli": 5.75e-08, + "carryin": 5.75e-08, + "cartledge": 5.75e-08, + "caspers": 5.75e-08, + "casspi": 5.75e-08, + "catiline": 5.75e-08, + "cazenove": 5.75e-08, + "cees": 5.75e-08, + "censuring": 5.75e-08, + "centeno": 5.75e-08, + "centrepoint": 5.75e-08, + "cepr": 5.75e-08, + "ceps": 5.75e-08, + "cesario": 5.75e-08, + "chalamet": 5.75e-08, + "chalfant": 5.75e-08, + "chaman": 5.75e-08, + "chambering": 5.75e-08, + "chandy": 5.75e-08, + "changeless": 5.75e-08, + "changzhou": 5.75e-08, + "chanler": 5.75e-08, + "chanterelles": 5.75e-08, + "charlot": 5.75e-08, + "charmless": 5.75e-08, + "charta": 5.75e-08, + "chasseur": 5.75e-08, + "chatterleys": 5.75e-08, + "chauffer": 5.75e-08, + "cheerier": 5.75e-08, + "cheerless": 5.75e-08, + "chelly": 5.75e-08, + "chemotactic": 5.75e-08, + "chetniks": 5.75e-08, + "chickasaws": 5.75e-08, + "chigwell": 5.75e-08, + "chiharu": 5.75e-08, + "chimichanga": 5.75e-08, + "chinky": 5.75e-08, + "chinois": 5.75e-08, + "chir": 5.75e-08, + "chisum": 5.75e-08, + "choroidal": 5.75e-08, + "choudhry": 5.75e-08, + "chrisley": 5.75e-08, + "chromaticity": 5.75e-08, + "chromatids": 5.75e-08, + "cinereous": 5.75e-08, + "circassia": 5.75e-08, + "civitavecchia": 5.75e-08, + "clia": 5.75e-08, + "clippy": 5.75e-08, + "clothespins": 5.75e-08, + "cnm": 5.75e-08, + "cnpc": 5.75e-08, + "coastguards": 5.75e-08, + "cobi": 5.75e-08, + "cockade": 5.75e-08, + "cofer": 5.75e-08, + "collegehumor": 5.75e-08, + "colles": 5.75e-08, + "collierville": 5.75e-08, + "colmes": 5.75e-08, + "columb": 5.75e-08, + "commisioner": 5.75e-08, + "complexly": 5.75e-08, + "comune": 5.75e-08, + "concretes": 5.75e-08, + "concubinage": 5.75e-08, + "condell": 5.75e-08, + "configurator": 5.75e-08, + "confusedly": 5.75e-08, + "containerization": 5.75e-08, + "conyngham": 5.75e-08, + "coomera": 5.75e-08, + "cooperator": 5.75e-08, + "copal": 5.75e-08, + "copybook": 5.75e-08, + "cordwood": 5.75e-08, + "corelogic": 5.75e-08, + "corndog": 5.75e-08, + "cotopaxi": 5.75e-08, + "couche": 5.75e-08, + "countersunk": 5.75e-08, + "couzens": 5.75e-08, + "cowin": 5.75e-08, + "cowrie": 5.75e-08, + "cpw": 5.75e-08, + "cratchit": 5.75e-08, + "cravath": 5.75e-08, + "credito": 5.75e-08, + "critchlow": 5.75e-08, + "crome": 5.75e-08, + "crossway": 5.75e-08, + "crushs": 5.75e-08, + "csas": 5.75e-08, + "cubesats": 5.75e-08, + "cubone": 5.75e-08, + "cucaracha": 5.75e-08, + "cummin": 5.75e-08, + "cunny": 5.75e-08, + "curlin": 5.75e-08, + "cyanobacterial": 5.75e-08, + "cycler": 5.75e-08, + "dacus": 5.75e-08, + "daimlerchrysler": 5.75e-08, + "daj": 5.75e-08, + "danity": 5.75e-08, + "dapat": 5.75e-08, + "darkstar": 5.75e-08, + "darpas": 5.75e-08, + "datapoint": 5.75e-08, + "daydreamed": 5.75e-08, + "dazai": 5.75e-08, + "deathlok": 5.75e-08, + "deigns": 5.75e-08, + "delmonico": 5.75e-08, + "deloris": 5.75e-08, + "deltaic": 5.75e-08, + "dematha": 5.75e-08, + "demobilised": 5.75e-08, + "demonstratives": 5.75e-08, + "deobandi": 5.75e-08, + "dermalogica": 5.75e-08, + "desalvo": 5.75e-08, + "descanso": 5.75e-08, + "descant": 5.75e-08, + "determinist": 5.75e-08, + "devery": 5.75e-08, + "dewpoint": 5.75e-08, + "dge": 5.75e-08, + "diba": 5.75e-08, + "digitise": 5.75e-08, + "dignam": 5.75e-08, + "dinardo": 5.75e-08, + "directivity": 5.75e-08, + "disfunction": 5.75e-08, + "distinctness": 5.75e-08, + "disturber": 5.75e-08, + "diversifies": 5.75e-08, + "djerba": 5.75e-08, + "docx": 5.75e-08, + "doniphan": 5.75e-08, + "doodads": 5.75e-08, + "dosimeters": 5.75e-08, + "doublethink": 5.75e-08, + "drabs": 5.75e-08, + "draftsmen": 5.75e-08, + "dragoncon": 5.75e-08, + "dragonglass": 5.75e-08, + "dragunov": 5.75e-08, + "drakkar": 5.75e-08, + "dramatis": 5.75e-08, + "drongo": 5.75e-08, + "droppingly": 5.75e-08, + "drumheller": 5.75e-08, + "dubna": 5.75e-08, + "duesenberg": 5.75e-08, + "duesseldorf": 5.75e-08, + "dumitru": 5.75e-08, + "duroc": 5.75e-08, + "duron": 5.75e-08, + "dustproof": 5.75e-08, + "duxford": 5.75e-08, + "dysautonomia": 5.75e-08, + "dystopias": 5.75e-08, + "ecmascript": 5.75e-08, + "effectivity": 5.75e-08, + "egypte": 5.75e-08, + "ehren": 5.75e-08, + "ehrs": 5.75e-08, + "elastigirl": 5.75e-08, + "elazar": 5.75e-08, + "electrochemically": 5.75e-08, + "electronegative": 5.75e-08, + "eleison": 5.75e-08, + "encourager": 5.75e-08, + "entrepreneurialism": 5.75e-08, + "ericssons": 5.75e-08, + "erlend": 5.75e-08, + "erra": 5.75e-08, + "esquires": 5.75e-08, + "estragon": 5.75e-08, + "ests": 5.75e-08, + "ethio": 5.75e-08, + "etiologies": 5.75e-08, + "etoh": 5.75e-08, + "etoposide": 5.75e-08, + "europas": 5.75e-08, + "eutelsat": 5.75e-08, + "evasiveness": 5.75e-08, + "evenson": 5.75e-08, + "everyway": 5.75e-08, + "excitons": 5.75e-08, + "exemplification": 5.75e-08, + "exept": 5.75e-08, + "extravasation": 5.75e-08, + "exxons": 5.75e-08, + "ezekiels": 5.75e-08, + "fabrique": 5.75e-08, + "factitious": 5.75e-08, + "fairhurst": 5.75e-08, + "fairtax": 5.75e-08, + "fakeness": 5.75e-08, + "fallers": 5.75e-08, + "fascinator": 5.75e-08, + "fawley": 5.75e-08, + "feeley": 5.75e-08, + "fellner": 5.75e-08, + "femail": 5.75e-08, + "femora": 5.75e-08, + "ferrars": 5.75e-08, + "ffvii": 5.75e-08, + "finagle": 5.75e-08, + "firemens": 5.75e-08, + "fiskars": 5.75e-08, + "flaccus": 5.75e-08, + "flagellated": 5.75e-08, + "flanger": 5.75e-08, + "fleiss": 5.75e-08, + "flensburg": 5.75e-08, + "floret": 5.75e-08, + "flowin": 5.75e-08, + "floy": 5.75e-08, + "fockers": 5.75e-08, + "foisting": 5.75e-08, + "folles": 5.75e-08, + "fonsi": 5.75e-08, + "foredeck": 5.75e-08, + "forenoon": 5.75e-08, + "foriegn": 5.75e-08, + "formalisms": 5.75e-08, + "formals": 5.75e-08, + "forwardly": 5.75e-08, + "frandsen": 5.75e-08, + "frangible": 5.75e-08, + "frangipane": 5.75e-08, + "freier": 5.75e-08, + "freighting": 5.75e-08, + "fric": 5.75e-08, + "friendlys": 5.75e-08, + "frier": 5.75e-08, + "frontex": 5.75e-08, + "frosties": 5.75e-08, + "fruitland": 5.75e-08, + "fuckups": 5.75e-08, + "fuer": 5.75e-08, + "fuerza": 5.75e-08, + "fuggin": 5.75e-08, + "furan": 5.75e-08, + "furi": 5.75e-08, + "futanari": 5.75e-08, + "fyr": 5.75e-08, + "gabaa": 5.75e-08, + "gaige": 5.75e-08, + "gamel": 5.75e-08, + "gandhara": 5.75e-08, + "gandini": 5.75e-08, + "garett": 5.75e-08, + "gauci": 5.75e-08, + "gausman": 5.75e-08, + "gawn": 5.75e-08, + "gazoo": 5.75e-08, + "gerbera": 5.75e-08, + "giguere": 5.75e-08, + "gimbals": 5.75e-08, + "ginetta": 5.75e-08, + "girdled": 5.75e-08, + "girlguiding": 5.75e-08, + "glasper": 5.75e-08, + "glendower": 5.75e-08, + "gloucesters": 5.75e-08, + "glycan": 5.75e-08, + "glyndwr": 5.75e-08, + "goas": 5.75e-08, + "gobbi": 5.75e-08, + "godel": 5.75e-08, + "golmaal": 5.75e-08, + "goomba": 5.75e-08, + "gothard": 5.75e-08, + "goudie": 5.75e-08, + "governement": 5.75e-08, + "graetz": 5.75e-08, + "grandbabies": 5.75e-08, + "granton": 5.75e-08, + "graving": 5.75e-08, + "greenberger": 5.75e-08, + "greenport": 5.75e-08, + "griffis": 5.75e-08, + "grimness": 5.75e-08, + "gromov": 5.75e-08, + "grosbeak": 5.75e-08, + "grousing": 5.75e-08, + "guaran": 5.75e-08, + "guavas": 5.75e-08, + "guidewire": 5.75e-08, + "gyration": 5.75e-08, + "gyun": 5.75e-08, + "habbit": 5.75e-08, + "hajek": 5.75e-08, + "halestorm": 5.75e-08, + "hami": 5.75e-08, + "hampel": 5.75e-08, + "hanabusa": 5.75e-08, + "hanami": 5.75e-08, + "hangup": 5.75e-08, + "hanning": 5.75e-08, + "haqq": 5.75e-08, + "harbottle": 5.75e-08, + "harbourfront": 5.75e-08, + "hardtack": 5.75e-08, + "harmonicas": 5.75e-08, + "hashomer": 5.75e-08, + "haskel": 5.75e-08, + "hato": 5.75e-08, + "hauraki": 5.75e-08, + "hausner": 5.75e-08, + "hazlett": 5.75e-08, + "hazm": 5.75e-08, + "hbsag": 5.75e-08, + "hco": 5.75e-08, + "headlam": 5.75e-08, + "hedden": 5.75e-08, + "hedvig": 5.75e-08, + "heerenveen": 5.75e-08, + "hefe": 5.75e-08, + "heimann": 5.75e-08, + "heinkel": 5.75e-08, + "helsingfors": 5.75e-08, + "helt": 5.75e-08, + "hemmer": 5.75e-08, + "hennes": 5.75e-08, + "hermana": 5.75e-08, + "herrn": 5.75e-08, + "hershberger": 5.75e-08, + "hexameter": 5.75e-08, + "heys": 5.75e-08, + "higby": 5.75e-08, + "hilli": 5.75e-08, + "hinchey": 5.75e-08, + "hinderance": 5.75e-08, + "hio": 5.75e-08, + "hirelings": 5.75e-08, + "historico": 5.75e-08, + "hoadley": 5.75e-08, + "hogben": 5.75e-08, + "hoje": 5.75e-08, + "holsworthy": 5.75e-08, + "honourary": 5.75e-08, + "hoppus": 5.75e-08, + "hornberger": 5.75e-08, + "hornblende": 5.75e-08, + "horsford": 5.75e-08, + "housecat": 5.75e-08, + "hpr": 5.75e-08, + "hsk": 5.75e-08, + "hubley": 5.75e-08, + "hukum": 5.75e-08, + "hutten": 5.75e-08, + "hwarang": 5.75e-08, + "hypercritical": 5.75e-08, + "hypokalemia": 5.75e-08, + "hypoplastic": 5.75e-08, + "hyrcanus": 5.75e-08, + "iding": 5.75e-08, + "igwe": 5.75e-08, + "imaan": 5.75e-08, + "imidacloprid": 5.75e-08, + "imipramine": 5.75e-08, + "impalas": 5.75e-08, + "impalement": 5.75e-08, + "imperiale": 5.75e-08, + "imperiously": 5.75e-08, + "implausibility": 5.75e-08, + "impressment": 5.75e-08, + "imsi": 5.75e-08, + "imvu": 5.75e-08, + "includin": 5.75e-08, + "inconel": 5.75e-08, + "incorporations": 5.75e-08, + "industrielle": 5.75e-08, + "ineptly": 5.75e-08, + "infectiously": 5.75e-08, + "infix": 5.75e-08, + "ingenieur": 5.75e-08, + "inquisitively": 5.75e-08, + "insignificantly": 5.75e-08, + "instagrammed": 5.75e-08, + "institutionalism": 5.75e-08, + "insupportable": 5.75e-08, + "interactionism": 5.75e-08, + "interoffice": 5.75e-08, + "interzone": 5.75e-08, + "intial": 5.75e-08, + "intr": 5.75e-08, + "intune": 5.75e-08, + "isay": 5.75e-08, + "ishigami": 5.75e-08, + "isildur": 5.75e-08, + "isopods": 5.75e-08, + "issas": 5.75e-08, + "italiane": 5.75e-08, + "iterators": 5.75e-08, + "itto": 5.75e-08, + "itwas": 5.75e-08, + "iulia": 5.75e-08, + "iuniverse": 5.75e-08, + "jadavpur": 5.75e-08, + "jadeveon": 5.75e-08, + "jamahiriya": 5.75e-08, + "jamat": 5.75e-08, + "jamm": 5.75e-08, + "janani": 5.75e-08, + "janices": 5.75e-08, + "jeannot": 5.75e-08, + "jelani": 5.75e-08, + "jibs": 5.75e-08, + "jind": 5.75e-08, + "jovani": 5.75e-08, + "jubei": 5.75e-08, + "judt": 5.75e-08, + "jugend": 5.75e-08, + "jumma": 5.75e-08, + "juvia": 5.75e-08, + "kadeem": 5.75e-08, + "kagero": 5.75e-08, + "kaise": 5.75e-08, + "kalli": 5.75e-08, + "kammerer": 5.75e-08, + "kanchanaburi": 5.75e-08, + "kapow": 5.75e-08, + "kapu": 5.75e-08, + "karaka": 5.75e-08, + "karanka": 5.75e-08, + "kasserine": 5.75e-08, + "kavin": 5.75e-08, + "kawahara": 5.75e-08, + "kbd": 5.75e-08, + "kdrama": 5.75e-08, + "keens": 5.75e-08, + "kerbal": 5.75e-08, + "kettler": 5.75e-08, + "kettlewell": 5.75e-08, + "keya": 5.75e-08, + "keyway": 5.75e-08, + "khairul": 5.75e-08, + "khatam": 5.75e-08, + "khatun": 5.75e-08, + "khimki": 5.75e-08, + "kilkeel": 5.75e-08, + "killebrew": 5.75e-08, + "kingaroy": 5.75e-08, + "kingham": 5.75e-08, + "kinnick": 5.75e-08, + "kisa": 5.75e-08, + "kise": 5.75e-08, + "kiseki": 5.75e-08, + "kiselev": 5.75e-08, + "kisuke": 5.75e-08, + "klaassen": 5.75e-08, + "klagenfurt": 5.75e-08, + "klaxons": 5.75e-08, + "kleinberg": 5.75e-08, + "kmg": 5.75e-08, + "knk": 5.75e-08, + "knowland": 5.75e-08, + "kojiro": 5.75e-08, + "komsomolskaya": 5.75e-08, + "konamis": 5.75e-08, + "koshi": 5.75e-08, + "koski": 5.75e-08, + "kowal": 5.75e-08, + "kozo": 5.75e-08, + "kretschmer": 5.75e-08, + "ktb": 5.75e-08, + "kto": 5.75e-08, + "kuli": 5.75e-08, + "kulik": 5.75e-08, + "kunshan": 5.75e-08, + "kunsthalle": 5.75e-08, + "kurwa": 5.75e-08, + "kusum": 5.75e-08, + "kuykendall": 5.75e-08, + "kuzu": 5.75e-08, + "lagoa": 5.75e-08, + "laguerre": 5.75e-08, + "lahn": 5.75e-08, + "lamda": 5.75e-08, + "laminations": 5.75e-08, + "lancashires": 5.75e-08, + "laozi": 5.75e-08, + "lapaglia": 5.75e-08, + "lascaux": 5.75e-08, + "latos": 5.75e-08, + "laundrette": 5.75e-08, + "laursen": 5.75e-08, + "lavington": 5.75e-08, + "lbjs": 5.75e-08, + "lccn": 5.75e-08, + "lcv": 5.75e-08, + "leafhoppers": 5.75e-08, + "leath": 5.75e-08, + "leguminous": 5.75e-08, + "lehre": 5.75e-08, + "lemonades": 5.75e-08, + "lenawee": 5.75e-08, + "lescaut": 5.75e-08, + "letwin": 5.75e-08, + "levo": 5.75e-08, + "levothyroxine": 5.75e-08, + "lgi": 5.75e-08, + "lichter": 5.75e-08, + "ligeia": 5.75e-08, + "linewidth": 5.75e-08, + "linge": 5.75e-08, + "lipoma": 5.75e-08, + "lipps": 5.75e-08, + "listicle": 5.75e-08, + "lits": 5.75e-08, + "littermates": 5.75e-08, + "littlewoods": 5.75e-08, + "livvy": 5.75e-08, + "lizabeth": 5.75e-08, + "llandovery": 5.75e-08, + "lmf": 5.75e-08, + "lojack": 5.75e-08, + "lomborg": 5.75e-08, + "londinium": 5.75e-08, + "longsuffering": 5.75e-08, + "lopetegui": 5.75e-08, + "loseit": 5.75e-08, + "loucks": 5.75e-08, + "lovatt": 5.75e-08, + "lubavitch": 5.75e-08, + "luciferian": 5.75e-08, + "lugh": 5.75e-08, + "luxottica": 5.75e-08, + "lyford": 5.75e-08, + "lynnette": 5.75e-08, + "macdill": 5.75e-08, + "macheda": 5.75e-08, + "mackinlay": 5.75e-08, + "macnaughton": 5.75e-08, + "macquarrie": 5.75e-08, + "mactaggart": 5.75e-08, + "madagascan": 5.75e-08, + "maeng": 5.75e-08, + "mafeking": 5.75e-08, + "magan": 5.75e-08, + "magennis": 5.75e-08, + "magmar": 5.75e-08, + "magnes": 5.75e-08, + "magness": 5.75e-08, + "mahala": 5.75e-08, + "mahaprabhu": 5.75e-08, + "maharajas": 5.75e-08, + "maintainance": 5.75e-08, + "maje": 5.75e-08, + "malawians": 5.75e-08, + "mangel": 5.75e-08, + "mangu": 5.75e-08, + "mansbridge": 5.75e-08, + "manzanilla": 5.75e-08, + "maoi": 5.75e-08, + "marad": 5.75e-08, + "marathoning": 5.75e-08, + "marchmont": 5.75e-08, + "marroquin": 5.75e-08, + "masaccio": 5.75e-08, + "mascarenhas": 5.75e-08, + "masqueraded": 5.75e-08, + "matarazzo": 5.75e-08, + "matsuzaka": 5.75e-08, + "maximiliano": 5.75e-08, + "mayi": 5.75e-08, + "mccaslin": 5.75e-08, + "mcdreamy": 5.75e-08, + "mcfeely": 5.75e-08, + "mcswain": 5.75e-08, + "mdk": 5.75e-08, + "meac": 5.75e-08, + "meara": 5.75e-08, + "meatus": 5.75e-08, + "mechagodzilla": 5.75e-08, + "medicalization": 5.75e-08, + "mefloquine": 5.75e-08, + "megabit": 5.75e-08, + "megaliths": 5.75e-08, + "mehrdad": 5.75e-08, + "menara": 5.75e-08, + "merricks": 5.75e-08, + "meryn": 5.75e-08, + "messianism": 5.75e-08, + "mesure": 5.75e-08, + "mesurier": 5.75e-08, + "meteoroids": 5.75e-08, + "methven": 5.75e-08, + "mewar": 5.75e-08, + "micahs": 5.75e-08, + "michiganders": 5.75e-08, + "mickiewicz": 5.75e-08, + "midcap": 5.75e-08, + "midleton": 5.75e-08, + "mignola": 5.75e-08, + "miis": 5.75e-08, + "mildness": 5.75e-08, + "millbrae": 5.75e-08, + "millia": 5.75e-08, + "minamata": 5.75e-08, + "minda": 5.75e-08, + "mineiro": 5.75e-08, + "minutest": 5.75e-08, + "miras": 5.75e-08, + "mirco": 5.75e-08, + "misch": 5.75e-08, + "misi": 5.75e-08, + "mitel": 5.75e-08, + "mitter": 5.75e-08, + "moanin": 5.75e-08, + "mobilier": 5.75e-08, + "modernes": 5.75e-08, + "moholy": 5.75e-08, + "molyneaux": 5.75e-08, + "monel": 5.75e-08, + "monis": 5.75e-08, + "monozygotic": 5.75e-08, + "montanans": 5.75e-08, + "mooncakes": 5.75e-08, + "mopac": 5.75e-08, + "moranis": 5.75e-08, + "morial": 5.75e-08, + "morna": 5.75e-08, + "morta": 5.75e-08, + "mortgagor": 5.75e-08, + "moustached": 5.75e-08, + "moustapha": 5.75e-08, + "moze": 5.75e-08, + "mrk": 5.75e-08, + "msec": 5.75e-08, + "mtk": 5.75e-08, + "muhamad": 5.75e-08, + "mukai": 5.75e-08, + "multitalented": 5.75e-08, + "munificent": 5.75e-08, + "musca": 5.75e-08, + "musha": 5.75e-08, + "mushers": 5.75e-08, + "musicologists": 5.75e-08, + "naby": 5.75e-08, + "nafs": 5.75e-08, + "nailer": 5.75e-08, + "naish": 5.75e-08, + "nakahara": 5.75e-08, + "nanomachines": 5.75e-08, + "nare": 5.75e-08, + "naren": 5.75e-08, + "narthex": 5.75e-08, + "nasha": 5.75e-08, + "nassir": 5.75e-08, + "nazari": 5.75e-08, + "ncsa": 5.75e-08, + "ncsoft": 5.75e-08, + "ncube": 5.75e-08, + "nearctic": 5.75e-08, + "neoclassicism": 5.75e-08, + "netanya": 5.75e-08, + "netherfield": 5.75e-08, + "newsgathering": 5.75e-08, + "niacinamide": 5.75e-08, + "niagra": 5.75e-08, + "nicey": 5.75e-08, + "nigricans": 5.75e-08, + "nlg": 5.75e-08, + "noarlunga": 5.75e-08, + "nocs": 5.75e-08, + "nsukka": 5.75e-08, + "nsv": 5.75e-08, + "nutria": 5.75e-08, + "odonohue": 5.75e-08, + "obliviously": 5.75e-08, + "obstructionists": 5.75e-08, + "obt": 5.75e-08, + "obtusely": 5.75e-08, + "obviates": 5.75e-08, + "ocker": 5.75e-08, + "oconto": 5.75e-08, + "odonata": 5.75e-08, + "oel": 5.75e-08, + "oen": 5.75e-08, + "offe": 5.75e-08, + "ogni": 5.75e-08, + "ogunquit": 5.75e-08, + "oiseau": 5.75e-08, + "oldroyd": 5.75e-08, + "olimpia": 5.75e-08, + "oliv": 5.75e-08, + "olleh": 5.75e-08, + "onf": 5.75e-08, + "onlive": 5.75e-08, + "onrushing": 5.75e-08, + "openreach": 5.75e-08, + "opsec": 5.75e-08, + "orat": 5.75e-08, + "organogenesis": 5.75e-08, + "originalism": 5.75e-08, + "ormandy": 5.75e-08, + "ossicles": 5.75e-08, + "osteo": 5.75e-08, + "osteology": 5.75e-08, + "outers": 5.75e-08, + "outlives": 5.75e-08, + "outrider": 5.75e-08, + "outspend": 5.75e-08, + "outwear": 5.75e-08, + "ovenproof": 5.75e-08, + "ovule": 5.75e-08, + "owncloud": 5.75e-08, + "oxidising": 5.75e-08, + "packager": 5.75e-08, + "padalecki": 5.75e-08, + "padmore": 5.75e-08, + "padrino": 5.75e-08, + "pagar": 5.75e-08, + "palaearctic": 5.75e-08, + "palakkad": 5.75e-08, + "palapa": 5.75e-08, + "palaszczuk": 5.75e-08, + "palindromic": 5.75e-08, + "panchkula": 5.75e-08, + "paranoiac": 5.75e-08, + "paratroop": 5.75e-08, + "paresis": 5.75e-08, + "parlays": 5.75e-08, + "parmigiana": 5.75e-08, + "pasado": 5.75e-08, + "pattinsons": 5.75e-08, + "pauvre": 5.75e-08, + "pavlich": 5.75e-08, + "pccs": 5.75e-08, + "pdh": 5.75e-08, + "pedagogues": 5.75e-08, + "pegler": 5.75e-08, + "pelee": 5.75e-08, + "pellucida": 5.75e-08, + "penetrance": 5.75e-08, + "pentode": 5.75e-08, + "peptidoglycan": 5.75e-08, + "perdana": 5.75e-08, + "peregrines": 5.75e-08, + "peroneal": 5.75e-08, + "perrigo": 5.75e-08, + "persky": 5.75e-08, + "personnes": 5.75e-08, + "peruzzi": 5.75e-08, + "pesh": 5.75e-08, + "petain": 5.75e-08, + "pethidine": 5.75e-08, + "pfffft": 5.75e-08, + "pflag": 5.75e-08, + "phagocytic": 5.75e-08, + "phaseolus": 5.75e-08, + "phenylephrine": 5.75e-08, + "philipson": 5.75e-08, + "photoset": 5.75e-08, + "phthalocyanine": 5.75e-08, + "phyllida": 5.75e-08, + "physiologie": 5.75e-08, + "phytoestrogens": 5.75e-08, + "picos": 5.75e-08, + "piggybacked": 5.75e-08, + "pilchards": 5.75e-08, + "pinel": 5.75e-08, + "pinero": 5.75e-08, + "pinocchios": 5.13e-08, + "pintos": 5.37e-08, + "piriformis": 5.75e-08, + "pisser": 5.75e-08, + "pixma": 5.75e-08, + "pkb": 5.75e-08, + "plainest": 5.75e-08, + "plainsboro": 5.75e-08, + "playtesting": 5.75e-08, + "plebes": 5.75e-08, + "plessey": 5.75e-08, + "plonked": 5.75e-08, + "plott": 5.75e-08, + "pmm": 5.75e-08, + "poema": 5.75e-08, + "poinsettias": 5.75e-08, + "pokie": 5.75e-08, + "poko": 5.75e-08, + "polan": 5.75e-08, + "polhemus": 5.75e-08, + "pombo": 5.75e-08, + "poohs": 5.75e-08, + "popu": 5.75e-08, + "porro": 5.75e-08, + "portus": 5.75e-08, + "postel": 5.75e-08, + "posten": 5.75e-08, + "postgate": 5.75e-08, + "postmodernists": 5.75e-08, + "poultney": 5.75e-08, + "ppaca": 5.75e-08, + "prebiotics": 5.75e-08, + "preciously": 5.75e-08, + "precut": 5.75e-08, + "prefabs": 5.75e-08, + "preiss": 5.75e-08, + "prejudging": 5.75e-08, + "preprints": 5.75e-08, + "presaging": 5.75e-08, + "presumable": 5.75e-08, + "prie": 5.75e-08, + "prilosec": 5.75e-08, + "primi": 5.75e-08, + "primitively": 5.75e-08, + "principio": 5.75e-08, + "procurators": 5.75e-08, + "procyon": 5.75e-08, + "proffers": 5.75e-08, + "promulgates": 5.75e-08, + "propionic": 5.75e-08, + "proteoglycans": 5.75e-08, + "ptolemies": 5.75e-08, + "pugwash": 5.75e-08, + "puis": 5.75e-08, + "pulwama": 5.75e-08, + "punctilious": 5.75e-08, + "pureness": 5.75e-08, + "purusha": 5.75e-08, + "qataris": 5.75e-08, + "qbe": 5.75e-08, + "qps": 5.75e-08, + "quadrophenia": 5.75e-08, + "quale": 5.75e-08, + "quilliam": 5.75e-08, + "quon": 5.75e-08, + "raaz": 5.75e-08, + "radic": 5.75e-08, + "radim": 5.75e-08, + "raho": 5.75e-08, + "rallye": 5.75e-08, + "ramayan": 5.75e-08, + "ranil": 5.75e-08, + "ranken": 5.75e-08, + "rapporteurs": 5.75e-08, + "rathe": 5.75e-08, + "ravagers": 5.75e-08, + "raymund": 5.75e-08, + "rbk": 5.75e-08, + "recents": 5.75e-08, + "recolored": 5.75e-08, + "reconverted": 5.75e-08, + "redon": 5.75e-08, + "reengage": 5.75e-08, + "refractories": 5.75e-08, + "refreeze": 5.75e-08, + "rehousing": 5.75e-08, + "reika": 5.75e-08, + "religous": 5.75e-08, + "relly": 5.75e-08, + "remapped": 5.75e-08, + "resuspended": 5.75e-08, + "retransmitted": 5.75e-08, + "rfq": 5.75e-08, + "rhapsodies": 5.75e-08, + "rhumba": 5.75e-08, + "ribeira": 5.75e-08, + "riese": 5.75e-08, + "riskiness": 5.75e-08, + "riversdale": 5.75e-08, + "rjs": 5.75e-08, + "rocketman": 5.75e-08, + "rockie": 5.75e-08, + "romola": 5.75e-08, + "roncalli": 5.75e-08, + "ropeway": 5.75e-08, + "rosaleen": 5.75e-08, + "rosalynn": 5.75e-08, + "rosengren": 5.75e-08, + "rosewall": 5.75e-08, + "rotella": 5.75e-08, + "rothenburg": 5.75e-08, + "rothery": 5.75e-08, + "rothmans": 5.75e-08, + "routt": 5.75e-08, + "roxb": 5.75e-08, + "roxborough": 5.75e-08, + "rre": 5.75e-08, + "rsk": 5.75e-08, + "rur": 5.75e-08, + "ruri": 5.75e-08, + "rushden": 5.75e-08, + "russification": 5.75e-08, + "sabarmati": 5.75e-08, + "sacchi": 5.75e-08, + "sacri": 5.75e-08, + "saed": 5.75e-08, + "safiya": 5.75e-08, + "sahelian": 5.75e-08, + "sahn": 5.75e-08, + "saj": 5.75e-08, + "sakaki": 5.75e-08, + "sakari": 5.75e-08, + "sakha": 5.75e-08, + "salin": 5.75e-08, + "sallust": 5.75e-08, + "salmonid": 5.75e-08, + "samey": 5.75e-08, + "samm": 5.75e-08, + "sanfilippo": 5.75e-08, + "sanitization": 5.75e-08, + "sankyo": 5.75e-08, + "sanpaolo": 5.75e-08, + "santelli": 5.75e-08, + "saphire": 5.75e-08, + "sardesai": 5.75e-08, + "sargodha": 5.75e-08, + "sarojini": 5.75e-08, + "satc": 5.75e-08, + "satraps": 5.75e-08, + "saturnian": 5.75e-08, + "savours": 5.75e-08, + "scalextric": 5.75e-08, + "scarbrough": 5.75e-08, + "scart": 5.75e-08, + "sceneries": 5.75e-08, + "schaal": 5.75e-08, + "scheel": 5.75e-08, + "schiffman": 5.75e-08, + "schipper": 5.75e-08, + "schippers": 5.75e-08, + "schmancy": 5.75e-08, + "schmelzer": 5.75e-08, + "scienza": 5.75e-08, + "scienze": 5.75e-08, + "scorning": 5.75e-08, + "scrapple": 5.75e-08, + "scullin": 5.75e-08, + "seaworlds": 5.75e-08, + "seiten": 5.75e-08, + "semiprecious": 5.75e-08, + "senselessness": 5.75e-08, + "sentance": 5.75e-08, + "seraphs": 5.75e-08, + "seremban": 5.75e-08, + "serkan": 5.75e-08, + "serras": 5.75e-08, + "severly": 5.75e-08, + "sexualisation": 5.75e-08, + "sezer": 5.75e-08, + "sfh": 5.75e-08, + "shadier": 5.75e-08, + "shadowland": 5.75e-08, + "sheck": 5.75e-08, + "sheetmetal": 5.75e-08, + "shenstone": 5.75e-08, + "shet": 5.75e-08, + "shilla": 5.75e-08, + "shinnecock": 5.75e-08, + "shinwell": 5.75e-08, + "shonan": 5.75e-08, + "showmance": 5.75e-08, + "showstopping": 5.75e-08, + "shrimping": 5.75e-08, + "shubin": 5.75e-08, + "shuswap": 5.75e-08, + "siegen": 5.75e-08, + "sikora": 5.75e-08, + "simmel": 5.75e-08, + "simulant": 5.75e-08, + "sinfonietta": 5.75e-08, + "sinti": 5.75e-08, + "sisodia": 5.75e-08, + "sistar": 5.75e-08, + "skully": 5.75e-08, + "skyactiv": 5.75e-08, + "slavia": 5.75e-08, + "slicers": 5.75e-08, + "slingsby": 5.75e-08, + "sludgy": 5.75e-08, + "snapp": 5.75e-08, + "sobol": 5.75e-08, + "soddy": 5.75e-08, + "solarte": 5.75e-08, + "soochow": 5.75e-08, + "sophmore": 5.75e-08, + "soulcycle": 5.75e-08, + "souma": 5.75e-08, + "sousas": 5.75e-08, + "spences": 5.75e-08, + "spiele": 5.75e-08, + "splinting": 5.75e-08, + "spratlys": 5.75e-08, + "stagecoaches": 5.75e-08, + "steedman": 5.75e-08, + "steelmakers": 5.75e-08, + "steeps": 5.75e-08, + "stefanis": 5.75e-08, + "stereophonics": 5.75e-08, + "sterno": 5.75e-08, + "stic": 5.75e-08, + "stinginess": 5.75e-08, + "storable": 5.75e-08, + "stormwind": 5.75e-08, + "stothard": 5.75e-08, + "strad": 5.75e-08, + "stratis": 5.75e-08, + "streambed": 5.75e-08, + "stricklands": 5.75e-08, + "stronach": 5.75e-08, + "stupids": 5.75e-08, + "subregional": 5.75e-08, + "suctioning": 5.75e-08, + "sugata": 5.75e-08, + "sulci": 5.75e-08, + "sullys": 5.75e-08, + "sundari": 5.75e-08, + "superconductive": 5.75e-08, + "superintend": 5.75e-08, + "superkick": 5.75e-08, + "supertanker": 5.75e-08, + "superyachts": 5.75e-08, + "surinamese": 5.75e-08, + "sverker": 5.75e-08, + "sweetpea": 5.75e-08, + "swoopes": 5.75e-08, + "sydnor": 5.75e-08, + "syfys": 5.75e-08, + "sylvesters": 5.75e-08, + "syon": 5.75e-08, + "talabani": 5.75e-08, + "tantum": 5.75e-08, + "tarbert": 5.75e-08, + "tarif": 5.75e-08, + "tatoos": 5.75e-08, + "taxila": 5.75e-08, + "taza": 5.75e-08, + "teachin": 5.75e-08, + "teakettle": 5.75e-08, + "temeraire": 5.75e-08, + "templer": 5.75e-08, + "tempur": 5.75e-08, + "termina": 5.75e-08, + "terrazas": 5.75e-08, + "terrelle": 5.75e-08, + "terrestrials": 5.75e-08, + "tetracyclines": 5.75e-08, + "tetramer": 5.75e-08, + "tgirls": 5.75e-08, + "thau": 5.75e-08, + "theni": 5.75e-08, + "theologica": 5.75e-08, + "thickeners": 5.75e-08, + "thorley": 5.75e-08, + "threadless": 5.75e-08, + "threlfall": 5.75e-08, + "tibiae": 5.75e-08, + "tidak": 5.75e-08, + "tiel": 5.75e-08, + "timeshares": 5.75e-08, + "tinky": 5.75e-08, + "tisdall": 5.75e-08, + "tishomingo": 5.75e-08, + "tkm": 5.75e-08, + "tmrw": 5.75e-08, + "tobler": 5.75e-08, + "toles": 5.75e-08, + "tolga": 5.75e-08, + "tontine": 5.75e-08, + "tooltips": 5.75e-08, + "toor": 5.75e-08, + "tooths": 5.75e-08, + "topiramate": 5.75e-08, + "toppy": 5.75e-08, + "torremolinos": 5.75e-08, + "tost": 5.75e-08, + "tostitos": 5.75e-08, + "totp": 5.75e-08, + "tragicomic": 5.75e-08, + "tramlines": 5.75e-08, + "transposons": 5.75e-08, + "traxler": 5.75e-08, + "treacher": 5.75e-08, + "trehalose": 5.75e-08, + "trencher": 5.75e-08, + "trevon": 5.75e-08, + "triamcinolone": 5.75e-08, + "tribally": 5.75e-08, + "trichotillomania": 5.75e-08, + "trista": 5.75e-08, + "triticum": 5.75e-08, + "troels": 5.75e-08, + "tsuga": 5.75e-08, + "tsumugi": 5.75e-08, + "tuaregs": 5.75e-08, + "turkoman": 5.75e-08, + "tvet": 5.75e-08, + "tvl": 5.75e-08, + "twelves": 5.75e-08, + "twyman": 5.75e-08, + "uematsu": 5.75e-08, + "ufj": 5.75e-08, + "umwa": 5.75e-08, + "uncg": 5.75e-08, + "undelete": 5.75e-08, + "underclothes": 5.75e-08, + "undoubtably": 5.75e-08, + "unenforced": 5.75e-08, + "unlink": 5.75e-08, + "unreconstructed": 5.75e-08, + "unredeemed": 5.75e-08, + "unrounded": 5.75e-08, + "uofl": 5.75e-08, + "upfronts": 5.75e-08, + "upperparts": 5.75e-08, + "urmston": 5.75e-08, + "uvc": 5.75e-08, + "vago": 5.75e-08, + "vare": 5.75e-08, + "variorum": 5.75e-08, + "vashon": 5.75e-08, + "vasilev": 5.75e-08, + "vasomotor": 5.75e-08, + "vcenter": 5.75e-08, + "veach": 5.75e-08, + "veatch": 5.75e-08, + "vechten": 5.75e-08, + "veiga": 5.75e-08, + "vesnina": 5.75e-08, + "viceland": 5.75e-08, + "vickerman": 5.75e-08, + "vickis": 5.75e-08, + "virgos": 5.75e-08, + "visioned": 5.75e-08, + "visualisations": 5.75e-08, + "visuospatial": 5.75e-08, + "vitalism": 5.75e-08, + "vitiate": 5.75e-08, + "vladimirs": 5.75e-08, + "vle": 5.75e-08, + "vocalise": 5.75e-08, + "vova": 5.75e-08, + "vsm": 5.75e-08, + "vuh": 5.75e-08, + "vusi": 5.75e-08, + "wachusett": 5.75e-08, + "waggons": 5.75e-08, + "waghorn": 5.75e-08, + "wahh": 5.75e-08, + "wakabayashi": 5.75e-08, + "walkden": 5.75e-08, + "wardrop": 5.75e-08, + "warspite": 5.75e-08, + "wastrel": 5.75e-08, + "waterpolo": 5.75e-08, + "wcdma": 5.75e-08, + "wci": 5.75e-08, + "webdesign": 5.75e-08, + "webdev": 5.75e-08, + "weegee": 5.75e-08, + "weeknds": 5.75e-08, + "weibull": 5.75e-08, + "weighbridge": 5.75e-08, + "weirton": 5.75e-08, + "welborn": 5.75e-08, + "westbank": 5.75e-08, + "westerfield": 5.75e-08, + "westhampton": 5.75e-08, + "westy": 5.75e-08, + "wget": 5.75e-08, + "whap": 5.75e-08, + "wharfs": 5.75e-08, + "whatev": 5.75e-08, + "whicher": 5.75e-08, + "whitebait": 5.75e-08, + "whiteys": 5.37e-08, + "wigger": 5.75e-08, + "willington": 5.75e-08, + "wimsey": 5.75e-08, + "windstream": 5.75e-08, + "windsurfer": 5.75e-08, + "wixom": 5.75e-08, + "wlm": 5.75e-08, + "wolfeboro": 5.75e-08, + "wolfmother": 5.75e-08, + "wombles": 5.75e-08, + "woodchip": 5.75e-08, + "woodforde": 5.75e-08, + "worcs": 5.75e-08, + "wrangles": 5.75e-08, + "wsof": 5.75e-08, + "wtg": 5.75e-08, + "wuxia": 5.75e-08, + "xth": 5.75e-08, + "xtr": 5.75e-08, + "yacine": 5.75e-08, + "yadavs": 5.75e-08, + "yamin": 5.75e-08, + "yaps": 5.75e-08, + "yasss": 5.75e-08, + "yepp": 5.75e-08, + "yesenia": 5.75e-08, + "yiannis": 5.75e-08, + "yobo": 5.75e-08, + "yonah": 5.75e-08, + "yooka": 5.75e-08, + "yordano": 5.75e-08, + "yosh": 5.75e-08, + "yota": 5.75e-08, + "youghal": 5.75e-08, + "youuuu": 5.75e-08, + "yuria": 5.75e-08, + "yv": 5.75e-08, + "zaf": 5.75e-08, + "zias": 5.75e-08, + "aaahhhh": 5.62e-08, + "aata": 5.62e-08, + "abajo": 5.62e-08, + "abates": 5.62e-08, + "abdl": 5.62e-08, + "abeam": 5.62e-08, + "abrar": 5.62e-08, + "abre": 5.62e-08, + "accusingly": 5.62e-08, + "actionaid": 5.62e-08, + "adduction": 5.62e-08, + "advertorial": 5.62e-08, + "aeroplan": 5.62e-08, + "aeryn": 5.62e-08, + "agam": 5.62e-08, + "agd": 5.62e-08, + "agnihotri": 5.62e-08, + "agre": 5.62e-08, + "airpod": 5.62e-08, + "airwave": 5.62e-08, + "aiya": 5.62e-08, + "ajp": 5.62e-08, + "akhter": 5.62e-08, + "akong": 5.62e-08, + "alamodome": 5.62e-08, + "aldea": 5.62e-08, + "alki": 5.62e-08, + "allemagne": 5.62e-08, + "alyona": 5.62e-08, + "amandla": 5.62e-08, + "ambrogio": 5.62e-08, + "amies": 5.62e-08, + "anana": 5.62e-08, + "andis": 5.62e-08, + "andriod": 5.62e-08, + "anesthetize": 5.62e-08, + "angolans": 5.62e-08, + "anhydrase": 5.62e-08, + "animaux": 5.62e-08, + "antrobus": 5.62e-08, + "apas": 5.13e-08, + "apco": 5.62e-08, + "apodaca": 5.62e-08, + "aporia": 5.62e-08, + "apostol": 5.62e-08, + "appell": 5.62e-08, + "appenzell": 5.62e-08, + "appressed": 5.62e-08, + "aptos": 5.62e-08, + "aqim": 5.62e-08, + "arborists": 5.62e-08, + "architektur": 5.62e-08, + "ardoyne": 5.62e-08, + "argu": 5.62e-08, + "arkhangelsk": 5.62e-08, + "arlingtons": 5.62e-08, + "arrestee": 5.62e-08, + "arruda": 5.62e-08, + "artin": 5.62e-08, + "arzu": 5.62e-08, + "ascensions": 5.62e-08, + "ashlynn": 5.62e-08, + "assalam": 5.62e-08, + "associational": 5.62e-08, + "assonance": 5.62e-08, + "atack": 5.62e-08, + "atahualpa": 5.62e-08, + "atherstone": 5.62e-08, + "atia": 5.62e-08, + "atmo": 5.62e-08, + "atoka": 5.62e-08, + "attenuators": 5.62e-08, + "autocannon": 5.62e-08, + "autolycus": 5.62e-08, + "avani": 5.62e-08, + "avante": 5.62e-08, + "avenges": 5.62e-08, + "averagely": 5.62e-08, + "averil": 5.62e-08, + "avios": 5.62e-08, + "avonlea": 5.62e-08, + "awesom": 5.62e-08, + "ayanami": 5.62e-08, + "azi": 5.62e-08, + "azizs": 5.62e-08, + "baap": 5.62e-08, + "babis": 5.62e-08, + "backchannel": 5.62e-08, + "baen": 5.62e-08, + "balog": 5.62e-08, + "bandolier": 5.62e-08, + "banki": 5.62e-08, + "bants": 5.62e-08, + "barada": 5.62e-08, + "barbeau": 5.62e-08, + "barkha": 5.62e-08, + "barmaids": 5.62e-08, + "barraged": 5.62e-08, + "barrientos": 5.62e-08, + "barsoom": 5.62e-08, + "basco": 5.62e-08, + "bascule": 5.62e-08, + "baso": 5.62e-08, + "basolateral": 5.62e-08, + "bassetlaw": 5.62e-08, + "battlebots": 5.62e-08, + "bayleys": 5.62e-08, + "beaven": 5.62e-08, + "bebel": 5.62e-08, + "bedevilled": 5.62e-08, + "bedfellow": 5.62e-08, + "bedroll": 5.62e-08, + "bedstead": 5.62e-08, + "beez": 5.62e-08, + "behance": 5.62e-08, + "beholds": 5.62e-08, + "beidou": 5.62e-08, + "bejarano": 5.62e-08, + "benassi": 5.62e-08, + "beneke": 5.62e-08, + "benzaldehyde": 5.62e-08, + "berbice": 5.62e-08, + "bespeak": 5.62e-08, + "betham": 5.62e-08, + "bewdley": 5.62e-08, + "bhadra": 5.62e-08, + "bhati": 5.62e-08, + "biagio": 5.62e-08, + "biblica": 5.62e-08, + "bibliophiles": 5.62e-08, + "biennium": 5.62e-08, + "bigmouth": 5.62e-08, + "bijection": 5.62e-08, + "bille": 5.62e-08, + "billig": 5.62e-08, + "biochemicals": 5.62e-08, + "biopolymer": 5.62e-08, + "bismarcks": 5.62e-08, + "bizness": 5.62e-08, + "blad": 5.62e-08, + "blazoned": 5.62e-08, + "blondin": 5.62e-08, + "bloons": 5.62e-08, + "blotto": 5.62e-08, + "blowingly": 5.62e-08, + "bodhidharma": 5.62e-08, + "bodices": 5.62e-08, + "bohai": 5.62e-08, + "bordertown": 5.62e-08, + "botolph": 5.62e-08, + "boudica": 5.62e-08, + "boulle": 5.62e-08, + "bounceback": 5.62e-08, + "bousquet": 5.62e-08, + "bovines": 5.62e-08, + "boya": 5.62e-08, + "braulio": 5.62e-08, + "brecher": 5.62e-08, + "brek": 5.62e-08, + "bril": 5.62e-08, + "broadwood": 5.62e-08, + "browny": 5.62e-08, + "brueghel": 5.62e-08, + "brunn": 5.62e-08, + "brunswicks": 5.62e-08, + "buicks": 5.62e-08, + "bule": 5.62e-08, + "bullinger": 5.62e-08, + "bulu": 5.62e-08, + "burbridge": 5.62e-08, + "burrage": 5.62e-08, + "burri": 5.62e-08, + "burruss": 5.62e-08, + "burtt": 5.62e-08, + "busca": 5.62e-08, + "busoni": 5.62e-08, + "byomkesh": 5.62e-08, + "cabarrus": 5.62e-08, + "caernarvon": 5.62e-08, + "cafc": 5.62e-08, + "cahier": 5.62e-08, + "calcaneus": 5.62e-08, + "caldara": 5.62e-08, + "calera": 5.62e-08, + "calhouns": 5.62e-08, + "calibrator": 5.62e-08, + "canady": 5.62e-08, + "candyfloss": 5.62e-08, + "cannan": 5.62e-08, + "cantley": 5.62e-08, + "caperton": 5.62e-08, + "capitulations": 5.62e-08, + "carabiners": 5.62e-08, + "carcase": 5.62e-08, + "cardioid": 5.62e-08, + "caremark": 5.62e-08, + "carignan": 5.62e-08, + "carino": 5.62e-08, + "carme": 5.62e-08, + "casado": 5.62e-08, + "cashner": 5.62e-08, + "castlewood": 5.62e-08, + "cataplexy": 5.62e-08, + "cati": 5.62e-08, + "cawnpore": 5.62e-08, + "caza": 5.62e-08, + "cbot": 5.62e-08, + "cdns": 5.62e-08, + "cellists": 5.62e-08, + "cengiz": 5.62e-08, + "ceni": 5.62e-08, + "centromere": 5.62e-08, + "cervelli": 5.62e-08, + "chalker": 5.62e-08, + "challoner": 5.62e-08, + "champers": 5.62e-08, + "chandimal": 5.62e-08, + "charissa": 5.62e-08, + "chasseurs": 5.62e-08, + "chattopadhyay": 5.62e-08, + "chesnutt": 5.62e-08, + "chesterman": 5.62e-08, + "chestertown": 5.62e-08, + "chhota": 5.62e-08, + "chilla": 5.62e-08, + "christe": 5.62e-08, + "chudleigh": 5.62e-08, + "cigarillos": 5.62e-08, + "ciliates": 5.62e-08, + "cintiq": 5.62e-08, + "circumscribe": 5.62e-08, + "civita": 5.62e-08, + "clee": 5.62e-08, + "clete": 5.62e-08, + "cliburn": 5.62e-08, + "clipless": 5.62e-08, + "clopton": 5.62e-08, + "cmes": 5.62e-08, + "cockayne": 5.62e-08, + "coelacanth": 5.62e-08, + "cohabitating": 5.62e-08, + "cohasset": 5.62e-08, + "cohiba": 5.62e-08, + "colback": 5.62e-08, + "collocated": 5.62e-08, + "colloquia": 5.62e-08, + "colom": 5.62e-08, + "colorists": 5.62e-08, + "coltman": 5.62e-08, + "comfortability": 5.62e-08, + "comiccon": 5.62e-08, + "commercialise": 5.62e-08, + "communicants": 5.62e-08, + "communiques": 5.62e-08, + "compartmentalizing": 5.62e-08, + "compressional": 5.62e-08, + "comptrollers": 5.62e-08, + "compuware": 5.62e-08, + "conceptualise": 5.62e-08, + "conciliate": 5.62e-08, + "confabulation": 5.62e-08, + "conked": 5.62e-08, + "connerys": 5.62e-08, + "contemp": 5.62e-08, + "contretemps": 5.62e-08, + "cooee": 5.62e-08, + "coole": 5.62e-08, + "cooperations": 5.62e-08, + "cootes": 5.62e-08, + "copco": 5.62e-08, + "corbijn": 5.62e-08, + "corde": 5.62e-08, + "cosmas": 5.62e-08, + "coucher": 5.62e-08, + "courte": 5.62e-08, + "coverups": 5.62e-08, + "cowman": 5.62e-08, + "cpuc": 5.62e-08, + "cqb": 5.62e-08, + "cranach": 5.62e-08, + "crasters": 5.62e-08, + "craver": 5.62e-08, + "creampied": 5.62e-08, + "criers": 5.62e-08, + "crimeans": 5.62e-08, + "crocodilians": 5.62e-08, + "crosslink": 5.62e-08, + "crowhurst": 5.62e-08, + "cruger": 5.62e-08, + "cryptids": 5.62e-08, + "cuarto": 5.62e-08, + "culbert": 5.62e-08, + "culiacan": 5.62e-08, + "culross": 5.62e-08, + "cupbearer": 5.62e-08, + "curtilage": 5.62e-08, + "cuthberts": 5.62e-08, + "cxl": 5.62e-08, + "dahab": 5.62e-08, + "daiso": 5.62e-08, + "dalila": 5.62e-08, + "dalio": 5.62e-08, + "dallaire": 5.62e-08, + "dancey": 5.62e-08, + "dankest": 5.62e-08, + "darbhanga": 5.62e-08, + "dariusz": 5.62e-08, + "darnay": 5.62e-08, + "daryll": 5.62e-08, + "daryn": 5.62e-08, + "dashiki": 5.62e-08, + "datalink": 5.62e-08, + "daudet": 5.62e-08, + "dch": 5.62e-08, + "debugged": 5.62e-08, + "deceitfulness": 5.62e-08, + "dedede": 5.62e-08, + "deductibility": 5.62e-08, + "dehydrates": 5.62e-08, + "delaval": 5.62e-08, + "delpo": 5.62e-08, + "demas": 5.62e-08, + "demetrious": 5.62e-08, + "demichelis": 5.62e-08, + "denervation": 5.62e-08, + "denville": 5.62e-08, + "deports": 5.62e-08, + "desimone": 5.62e-08, + "deuel": 5.62e-08, + "deviously": 5.62e-08, + "dewdney": 5.62e-08, + "dexa": 5.62e-08, + "dextroamphetamine": 5.62e-08, + "diagnostician": 5.62e-08, + "dichroism": 5.62e-08, + "didache": 5.62e-08, + "digitech": 5.62e-08, + "dih": 5.62e-08, + "dimmest": 5.62e-08, + "dingbats": 5.62e-08, + "dirtbike": 5.62e-08, + "disempowering": 5.62e-08, + "disfavour": 5.62e-08, + "disorientating": 5.62e-08, + "disturbia": 5.62e-08, + "dnas": 5.5e-08, + "dobrich": 5.62e-08, + "doddering": 5.62e-08, + "dofe": 5.62e-08, + "dogmeat": 5.62e-08, + "donegall": 5.62e-08, + "donnarumma": 5.62e-08, + "dooo": 5.62e-08, + "dopo": 5.62e-08, + "doremus": 5.62e-08, + "dorians": 5.62e-08, + "dorries": 5.62e-08, + "doumbia": 5.62e-08, + "douwe": 5.62e-08, + "doxa": 5.62e-08, + "doxxed": 5.62e-08, + "draconis": 5.62e-08, + "dresdner": 5.62e-08, + "drumlin": 5.62e-08, + "drunkest": 5.62e-08, + "duckula": 5.62e-08, + "duende": 5.62e-08, + "dunnett": 5.62e-08, + "dutys": 5.62e-08, + "dwb": 5.62e-08, + "dwyers": 5.62e-08, + "dyl": 5.62e-08, + "dysmenorrhea": 5.62e-08, + "eberly": 5.62e-08, + "ebrahimi": 5.62e-08, + "ecija": 5.62e-08, + "eckel": 5.62e-08, + "edirne": 5.62e-08, + "efp": 5.62e-08, + "ehrmann": 5.62e-08, + "eldo": 5.62e-08, + "electromagnetically": 5.62e-08, + "elektro": 5.62e-08, + "elektronik": 5.62e-08, + "elide": 5.62e-08, + "elises": 5.62e-08, + "elizalde": 5.62e-08, + "elkanah": 5.62e-08, + "ellenberger": 5.62e-08, + "emancipator": 5.62e-08, + "emmental": 5.62e-08, + "emorys": 5.62e-08, + "empathized": 5.62e-08, + "encamp": 5.62e-08, + "enchiridion": 5.62e-08, + "endesa": 5.62e-08, + "endgames": 5.62e-08, + "enjoyments": 5.62e-08, + "enrile": 5.62e-08, + "entryways": 5.62e-08, + "enviromental": 5.62e-08, + "eosinophil": 5.62e-08, + "epicureans": 5.62e-08, + "eponine": 5.62e-08, + "erasmo": 5.62e-08, + "erbe": 5.62e-08, + "erinn": 5.62e-08, + "errrr": 5.62e-08, + "esos": 5.62e-08, + "estepona": 5.62e-08, + "eston": 5.62e-08, + "europaea": 5.62e-08, + "eurotrash": 5.62e-08, + "eustatius": 5.62e-08, + "evals": 5.62e-08, + "evgenia": 5.62e-08, + "evr": 5.62e-08, + "exfiltration": 5.62e-08, + "expansiveness": 5.62e-08, + "exponentials": 5.62e-08, + "extempore": 5.62e-08, + "ezer": 5.62e-08, + "faan": 5.62e-08, + "fabulist": 5.62e-08, + "facebooking": 5.62e-08, + "facetune": 5.62e-08, + "fadeout": 5.62e-08, + "faintness": 5.62e-08, + "fairfaxs": 5.62e-08, + "falcos": 5.62e-08, + "familly": 5.62e-08, + "fanfares": 5.62e-08, + "fangraphs": 5.62e-08, + "farang": 5.62e-08, + "farouq": 5.62e-08, + "faught": 5.62e-08, + "faulds": 5.62e-08, + "fedexcup": 5.62e-08, + "ferrata": 5.62e-08, + "festo": 5.62e-08, + "fgt": 5.62e-08, + "fiats": 5.13e-08, + "fielden": 5.62e-08, + "fingerlings": 5.62e-08, + "fleshes": 5.62e-08, + "fleurieu": 5.62e-08, + "flexo": 5.62e-08, + "flipflops": 5.62e-08, + "floc": 5.62e-08, + "florez": 5.62e-08, + "fmb": 5.62e-08, + "fmo": 5.62e-08, + "folliculitis": 5.62e-08, + "fontaines": 5.62e-08, + "fontenay": 5.62e-08, + "foochow": 5.62e-08, + "foraker": 5.62e-08, + "foregrounds": 5.62e-08, + "forestalling": 5.62e-08, + "formalizes": 5.62e-08, + "formans": 5.62e-08, + "formant": 5.62e-08, + "forresters": 5.62e-08, + "foulds": 5.62e-08, + "fpt": 5.62e-08, + "franceschini": 5.62e-08, + "franchisors": 5.62e-08, + "franciscus": 5.62e-08, + "francophonie": 5.62e-08, + "frantisek": 5.62e-08, + "frass": 5.62e-08, + "fratton": 5.62e-08, + "friedrichs": 5.62e-08, + "fritillary": 5.62e-08, + "frontals": 5.62e-08, + "frozone": 5.62e-08, + "frydenberg": 5.62e-08, + "ftk": 5.62e-08, + "fuckboi": 5.62e-08, + "fujin": 5.62e-08, + "fulgencio": 5.62e-08, + "funnell": 5.62e-08, + "futterman": 5.62e-08, + "fuzes": 5.62e-08, + "gabb": 5.62e-08, + "gahhh": 5.62e-08, + "galecki": 5.62e-08, + "gallinger": 5.62e-08, + "galvanising": 5.62e-08, + "gamla": 5.62e-08, + "garroway": 5.62e-08, + "gaudin": 5.62e-08, + "gavilan": 5.62e-08, + "gedi": 5.62e-08, + "geertz": 5.62e-08, + "gehring": 5.62e-08, + "geodes": 5.62e-08, + "geodynamics": 5.62e-08, + "gep": 5.62e-08, + "gerona": 5.62e-08, + "gessler": 5.62e-08, + "gff": 5.62e-08, + "gibber": 5.62e-08, + "giffin": 5.62e-08, + "gilgal": 5.62e-08, + "gillham": 5.62e-08, + "ginge": 5.62e-08, + "gioconda": 5.62e-08, + "girdwood": 5.62e-08, + "glb": 5.62e-08, + "glyceraldehyde": 5.62e-08, + "gmas": 5.62e-08, + "goest": 5.62e-08, + "goll": 5.62e-08, + "gomera": 5.62e-08, + "gorst": 5.62e-08, + "gph": 5.62e-08, + "granpa": 5.62e-08, + "granulocytes": 5.62e-08, + "greenacres": 5.62e-08, + "greger": 5.62e-08, + "grenell": 5.62e-08, + "griesbach": 5.62e-08, + "griot": 5.62e-08, + "grum": 5.62e-08, + "guarini": 5.62e-08, + "guiliani": 5.62e-08, + "gunawan": 5.62e-08, + "guzzled": 5.62e-08, + "gxp": 5.62e-08, + "gya": 5.62e-08, + "gyri": 5.62e-08, + "gzip": 5.62e-08, + "haid": 5.62e-08, + "halberds": 5.62e-08, + "halse": 5.62e-08, + "hamhuis": 5.62e-08, + "hamley": 5.62e-08, + "handbasket": 5.62e-08, + "hankinson": 5.62e-08, + "hanlan": 5.62e-08, + "hanois": 5.62e-08, + "harams": 5.62e-08, + "harar": 5.62e-08, + "harbert": 5.62e-08, + "hardeep": 5.62e-08, + "harron": 5.62e-08, + "harward": 5.62e-08, + "hatrick": 5.62e-08, + "haynie": 5.62e-08, + "hbl": 5.62e-08, + "hdac": 5.62e-08, + "headcase": 5.62e-08, + "hearkened": 5.62e-08, + "heartrate": 5.62e-08, + "heavenward": 5.62e-08, + "heilbronn": 5.62e-08, + "heinrichs": 5.62e-08, + "heiser": 5.62e-08, + "helicity": 5.62e-08, + "helloworld": 5.62e-08, + "helpmate": 5.62e-08, + "hennie": 5.62e-08, + "henslowe": 5.62e-08, + "hepatica": 5.62e-08, + "herbes": 5.62e-08, + "herodian": 5.62e-08, + "herschell": 5.62e-08, + "hete": 5.62e-08, + "heyl": 5.62e-08, + "highchair": 5.62e-08, + "highers": 5.62e-08, + "highschoolers": 5.62e-08, + "hightail": 5.62e-08, + "hikmet": 5.62e-08, + "hilburn": 5.62e-08, + "hillclimb": 5.62e-08, + "hindwings": 5.62e-08, + "hintz": 5.62e-08, + "hintze": 5.62e-08, + "hipparchus": 5.62e-08, + "histadrut": 5.62e-08, + "historiques": 5.62e-08, + "hlm": 5.62e-08, + "hlp": 5.62e-08, + "hoan": 5.62e-08, + "hofmeyr": 5.62e-08, + "holmfirth": 5.62e-08, + "holmstrom": 5.62e-08, + "homans": 5.62e-08, + "hoorn": 5.62e-08, + "hooten": 5.62e-08, + "houllier": 5.62e-08, + "hoyos": 5.62e-08, + "hrsa": 5.62e-08, + "humidified": 5.62e-08, + "hunte": 5.62e-08, + "huskisson": 5.62e-08, + "hutchens": 5.62e-08, + "huysmans": 5.62e-08, + "hyden": 5.62e-08, + "hydrolases": 5.62e-08, + "hydroxybutyrate": 5.62e-08, + "ibbetson": 5.62e-08, + "icare": 5.62e-08, + "icds": 5.62e-08, + "icpc": 5.62e-08, + "idempotent": 5.62e-08, + "idevice": 5.62e-08, + "idex": 5.62e-08, + "ifan": 5.62e-08, + "igoe": 5.62e-08, + "iiic": 5.62e-08, + "ilka": 5.62e-08, + "imamura": 5.62e-08, + "immunotherapies": 5.62e-08, + "impermissibly": 5.62e-08, + "importa": 5.62e-08, + "impotently": 5.62e-08, + "inayat": 5.62e-08, + "incarnates": 5.62e-08, + "inclosure": 5.62e-08, + "indexs": 5.62e-08, + "ineluctable": 5.62e-08, + "inessential": 5.62e-08, + "infocus": 5.62e-08, + "injera": 5.62e-08, + "innuendoes": 5.62e-08, + "inq": 5.62e-08, + "intellivision": 5.62e-08, + "interactional": 5.62e-08, + "interdisciplinarity": 5.62e-08, + "intertextual": 5.62e-08, + "intramuros": 5.62e-08, + "intuited": 5.62e-08, + "ipac": 5.62e-08, + "iracing": 5.62e-08, + "ischium": 5.62e-08, + "isoflavones": 5.62e-08, + "ister": 5.62e-08, + "ituri": 5.62e-08, + "itw": 5.62e-08, + "ixodes": 5.62e-08, + "jaces": 5.62e-08, + "jali": 5.62e-08, + "janeiros": 5.62e-08, + "januar": 5.62e-08, + "jarek": 5.62e-08, + "jawn": 5.62e-08, + "jaxson": 5.62e-08, + "jaysh": 5.62e-08, + "jazzmaster": 5.62e-08, + "jdrf": 5.62e-08, + "ject": 5.62e-08, + "jeng": 5.62e-08, + "jhana": 5.62e-08, + "jigme": 5.62e-08, + "jtg": 5.62e-08, + "judgey": 5.62e-08, + "juga": 5.62e-08, + "juncea": 5.62e-08, + "jvs": 5.62e-08, + "kabab": 5.62e-08, + "kakeru": 5.62e-08, + "kalou": 5.62e-08, + "kaluga": 5.62e-08, + "kalvin": 5.62e-08, + "kamata": 5.62e-08, + "kamer": 5.62e-08, + "kanab": 5.62e-08, + "kantai": 5.62e-08, + "kaon": 5.62e-08, + "kappler": 5.62e-08, + "karadzic": 5.62e-08, + "karni": 5.62e-08, + "karns": 5.62e-08, + "karpeles": 5.62e-08, + "kashiwagi": 5.62e-08, + "katee": 5.62e-08, + "kathe": 5.62e-08, + "katic": 5.62e-08, + "kaveh": 5.62e-08, + "kaworu": 5.62e-08, + "kelle": 5.62e-08, + "kempner": 5.62e-08, + "kennecott": 5.62e-08, + "kgbs": 5.62e-08, + "khajuraho": 5.62e-08, + "khem": 5.62e-08, + "khiladi": 5.62e-08, + "khuzestan": 5.62e-08, + "kiambu": 5.62e-08, + "kidded": 5.62e-08, + "kihara": 5.62e-08, + "kilborn": 5.62e-08, + "kindaichi": 5.62e-08, + "kirschbaum": 5.62e-08, + "kitzinger": 5.62e-08, + "klasse": 5.62e-08, + "kode": 5.62e-08, + "koehn": 5.62e-08, + "kohat": 5.62e-08, + "koin": 5.62e-08, + "kommt": 5.62e-08, + "korin": 5.62e-08, + "kose": 5.62e-08, + "kqed": 5.62e-08, + "kre": 5.62e-08, + "krita": 5.62e-08, + "kulikov": 5.62e-08, + "kumano": 5.62e-08, + "kurniawan": 5.62e-08, + "kyros": 5.62e-08, + "lacaze": 5.62e-08, + "lafc": 5.62e-08, + "laius": 5.62e-08, + "lakehurst": 5.62e-08, + "lakeport": 5.62e-08, + "lamberton": 5.62e-08, + "lammermoor": 5.62e-08, + "langland": 5.62e-08, + "langport": 5.62e-08, + "largent": 5.62e-08, + "lasch": 5.62e-08, + "laskey": 5.62e-08, + "latu": 5.62e-08, + "lawbreaker": 5.62e-08, + "leatherwood": 5.62e-08, + "lecavalier": 5.62e-08, + "leftys": 5.62e-08, + "lemahieu": 5.62e-08, + "lenglen": 5.62e-08, + "lesabre": 5.62e-08, + "lettere": 5.62e-08, + "levein": 5.62e-08, + "licensors": 5.62e-08, + "ligma": 5.62e-08, + "lindblad": 5.62e-08, + "linework": 5.62e-08, + "litherland": 5.62e-08, + "livesay": 5.62e-08, + "lmfaooo": 5.62e-08, + "lmm": 5.62e-08, + "loftiest": 5.62e-08, + "loftily": 5.62e-08, + "logsdon": 5.62e-08, + "longueuil": 5.62e-08, + "longwave": 5.62e-08, + "lovegrove": 5.62e-08, + "lowa": 5.62e-08, + "lubumbashi": 5.62e-08, + "luego": 5.62e-08, + "lunchtimes": 5.62e-08, + "lundell": 5.62e-08, + "lundi": 5.62e-08, + "lycos": 5.62e-08, + "lyk": 5.62e-08, + "lyneham": 5.62e-08, + "lyoto": 5.62e-08, + "lyuba": 5.62e-08, + "maag": 5.62e-08, + "maccabee": 5.62e-08, + "mahout": 5.62e-08, + "mahratta": 5.62e-08, + "maisey": 5.62e-08, + "majdanek": 5.62e-08, + "malaka": 5.62e-08, + "malathion": 5.62e-08, + "malene": 5.62e-08, + "malfi": 5.62e-08, + "mancinis": 5.62e-08, + "mangaluru": 5.62e-08, + "mangler": 5.62e-08, + "manichean": 5.62e-08, + "mannarino": 5.62e-08, + "mannerheim": 5.62e-08, + "manship": 5.62e-08, + "manzanar": 5.62e-08, + "mappers": 5.62e-08, + "maravich": 5.62e-08, + "marges": 5.62e-08, + "markovian": 5.62e-08, + "marn": 5.62e-08, + "marquesa": 5.62e-08, + "martes": 1.05e-08, + "martinsen": 5.62e-08, + "martoma": 5.62e-08, + "martyrology": 5.62e-08, + "masker": 5.62e-08, + "massinger": 5.62e-08, + "materazzi": 5.62e-08, + "mazi": 5.62e-08, + "mcbroom": 5.62e-08, + "mcgillis": 5.62e-08, + "mcguffin": 5.62e-08, + "mckelvie": 5.62e-08, + "mcmansions": 5.62e-08, + "mcmoran": 5.62e-08, + "mcnallys": 5.62e-08, + "mcternan": 5.62e-08, + "mdw": 5.62e-08, + "medicaments": 5.62e-08, + "medleys": 5.62e-08, + "megachurches": 5.62e-08, + "mehar": 5.62e-08, + "meher": 5.62e-08, + "meimei": 5.62e-08, + "meistersinger": 5.62e-08, + "meleager": 5.62e-08, + "meloy": 5.62e-08, + "melpomene": 5.62e-08, + "memantine": 5.62e-08, + "meneses": 5.62e-08, + "menthe": 5.62e-08, + "merchandises": 5.62e-08, + "merryman": 5.62e-08, + "meserve": 5.62e-08, + "metacarpals": 5.62e-08, + "metaphysicians": 5.62e-08, + "mhe": 5.62e-08, + "micelle": 5.62e-08, + "micrographs": 5.62e-08, + "microtus": 5.62e-08, + "microusb": 5.62e-08, + "midd": 5.62e-08, + "middleborough": 5.62e-08, + "middlesboro": 5.62e-08, + "midsole": 5.62e-08, + "millibars": 5.62e-08, + "millys": 5.62e-08, + "minoritys": 5.62e-08, + "minow": 5.62e-08, + "mirra": 5.62e-08, + "mirrorball": 5.62e-08, + "mirv": 5.62e-08, + "mischel": 5.62e-08, + "misers": 5.62e-08, + "misprinted": 5.62e-08, + "mizner": 5.62e-08, + "mizu": 5.62e-08, + "mizutani": 5.62e-08, + "mkc": 5.62e-08, + "moistening": 5.62e-08, + "moisturisers": 5.62e-08, + "molehills": 5.62e-08, + "moleskin": 5.62e-08, + "monda": 5.62e-08, + "monette": 5.62e-08, + "monon": 5.62e-08, + "monopsony": 5.62e-08, + "montesinos": 5.62e-08, + "moomins": 5.62e-08, + "mooncake": 5.62e-08, + "moondog": 5.62e-08, + "moonshiners": 5.62e-08, + "moorefield": 5.62e-08, + "moots": 5.62e-08, + "morice": 5.62e-08, + "morwenna": 5.62e-08, + "morzine": 5.62e-08, + "mottle": 5.62e-08, + "mrg": 5.62e-08, + "mucker": 5.62e-08, + "mudiay": 5.62e-08, + "mugsy": 5.62e-08, + "muley": 5.62e-08, + "mumba": 5.62e-08, + "munificence": 5.62e-08, + "munter": 5.62e-08, + "muskeg": 5.62e-08, + "musnt": 5.62e-08, + "mussina": 5.62e-08, + "mutagens": 5.62e-08, + "muz": 5.62e-08, + "mvr": 5.62e-08, + "mwanza": 5.62e-08, + "myat": 5.62e-08, + "mycorrhizae": 5.62e-08, + "myleene": 5.62e-08, + "myogenic": 5.62e-08, + "nacs": 5.62e-08, + "nadeshot": 5.62e-08, + "nagaoka": 5.62e-08, + "naib": 5.62e-08, + "nairobis": 5.62e-08, + "namrata": 5.62e-08, + "nanocrystalline": 5.62e-08, + "nanopore": 5.62e-08, + "narin": 5.62e-08, + "nationalising": 5.62e-08, + "natta": 5.62e-08, + "naturales": 5.62e-08, + "naxal": 5.62e-08, + "naye": 5.62e-08, + "nazem": 5.62e-08, + "ndamukong": 5.62e-08, + "neate": 5.62e-08, + "negritos": 5.62e-08, + "nemeses": 5.62e-08, + "nerveless": 5.62e-08, + "nette": 5.62e-08, + "neuroleptic": 5.62e-08, + "neuromodulation": 5.62e-08, + "neuters": 5.62e-08, + "newbern": 5.62e-08, + "nhm": 5.62e-08, + "nhpolitics": 5.62e-08, + "nich": 5.62e-08, + "nicholass": 5.62e-08, + "nili": 5.62e-08, + "ninon": 5.62e-08, + "nishioka": 5.62e-08, + "nithya": 5.62e-08, + "nitrification": 5.62e-08, + "nodosa": 5.62e-08, + "noetic": 5.62e-08, + "nominals": 5.62e-08, + "noncombatant": 5.62e-08, + "nonliving": 5.62e-08, + "nonperforming": 5.62e-08, + "noooooooooo": 5.62e-08, + "nordhoff": 5.62e-08, + "nordmann": 5.62e-08, + "normas": 5.62e-08, + "normani": 5.62e-08, + "northlake": 5.62e-08, + "northman": 5.62e-08, + "nost": 5.62e-08, + "nough": 5.62e-08, + "nrcc": 5.62e-08, + "nyes": 5.62e-08, + "nygren": 5.62e-08, + "ojays": 5.62e-08, + "oal": 5.62e-08, + "oaxacan": 5.62e-08, + "obaid": 5.62e-08, + "obara": 5.62e-08, + "obrist": 5.62e-08, + "odesk": 5.62e-08, + "odesza": 5.62e-08, + "odoi": 5.62e-08, + "offhandedly": 5.62e-08, + "officeworks": 5.62e-08, + "offred": 5.62e-08, + "ogp": 5.62e-08, + "ojibway": 5.62e-08, + "okeke": 5.62e-08, + "okon": 5.62e-08, + "olen": 5.62e-08, + "oleum": 5.62e-08, + "olg": 5.62e-08, + "oligarchies": 5.62e-08, + "oncological": 5.62e-08, + "opentype": 5.62e-08, + "opin": 5.62e-08, + "organoids": 5.62e-08, + "orgreave": 5.62e-08, + "orie": 5.62e-08, + "orkneys": 5.62e-08, + "orlandi": 5.62e-08, + "ortner": 5.62e-08, + "oslos": 5.62e-08, + "osmania": 5.62e-08, + "ostracods": 5.62e-08, + "ostrogoths": 5.62e-08, + "ouseley": 5.62e-08, + "overfitting": 5.62e-08, + "overlordship": 5.62e-08, + "overrepresentation": 5.62e-08, + "oversleeping": 5.62e-08, + "overthe": 5.62e-08, + "ovulated": 5.62e-08, + "padillas": 5.62e-08, + "painfull": 5.62e-08, + "palmira": 5.62e-08, + "paltrows": 5.62e-08, + "pamp": 5.62e-08, + "panam": 5.62e-08, + "panigale": 5.62e-08, + "pantheist": 5.62e-08, + "paquet": 5.62e-08, + "parabellum": 5.62e-08, + "parametrized": 5.62e-08, + "parastatal": 5.62e-08, + "parenchymal": 5.62e-08, + "paresthesia": 5.62e-08, + "paroxysm": 5.62e-08, + "paroxysms": 5.62e-08, + "parrys": 5.62e-08, + "parzival": 5.62e-08, + "passio": 5.62e-08, + "pastilles": 5.62e-08, + "pasturage": 5.62e-08, + "patman": 5.62e-08, + "patricide": 5.62e-08, + "payam": 5.62e-08, + "payot": 5.62e-08, + "pcps": 5.62e-08, + "pdg": 5.62e-08, + "pech": 5.62e-08, + "peddie": 5.62e-08, + "pelage": 5.62e-08, + "pellicle": 5.62e-08, + "pengs": 5.62e-08, + "peranakan": 5.62e-08, + "perdomo": 5.62e-08, + "periosteum": 5.62e-08, + "peromyscus": 5.62e-08, + "persuasiveness": 5.62e-08, + "petn": 5.62e-08, + "peur": 5.62e-08, + "pflugerville": 5.62e-08, + "phare": 5.62e-08, + "phooey": 5.62e-08, + "photographie": 5.62e-08, + "photographys": 5.62e-08, + "photoionization": 5.62e-08, + "photometer": 5.62e-08, + "photorealism": 5.62e-08, + "photostream": 5.62e-08, + "picnickers": 5.62e-08, + "picon": 5.62e-08, + "pictorials": 5.62e-08, + "pileated": 5.62e-08, + "pilla": 5.62e-08, + "pinchbeck": 5.62e-08, + "pinions": 5.62e-08, + "pinkus": 5.62e-08, + "plagiarising": 5.62e-08, + "plainsong": 5.62e-08, + "planescape": 5.62e-08, + "plasmons": 5.62e-08, + "platina": 5.62e-08, + "platting": 5.62e-08, + "pllc": 5.62e-08, + "plumptre": 5.62e-08, + "pmn": 5.62e-08, + "polansky": 5.62e-08, + "politika": 5.62e-08, + "polycythemia": 5.62e-08, + "portuguesa": 5.62e-08, + "potlucks": 5.62e-08, + "povs": 5.62e-08, + "pple": 5.62e-08, + "prachanda": 5.62e-08, + "pragma": 5.62e-08, + "pratibha": 5.62e-08, + "preciado": 5.62e-08, + "precip": 5.62e-08, + "presbyopia": 5.62e-08, + "privatizations": 5.62e-08, + "probit": 5.62e-08, + "probyn": 5.62e-08, + "proffesional": 5.62e-08, + "promotor": 5.62e-08, + "provenzano": 5.62e-08, + "psaki": 5.62e-08, + "pue": 5.62e-08, + "puffery": 5.62e-08, + "pukekohe": 5.62e-08, + "pussyfoot": 5.62e-08, + "pussyfooting": 5.62e-08, + "qajar": 5.62e-08, + "qft": 5.62e-08, + "quiller": 5.62e-08, + "quintilian": 5.62e-08, + "quintupled": 5.62e-08, + "quirino": 5.62e-08, + "radboud": 5.62e-08, + "radioactively": 5.62e-08, + "radtke": 5.62e-08, + "radula": 5.62e-08, + "ragman": 5.62e-08, + "ragwort": 5.62e-08, + "railroaders": 5.62e-08, + "railtrack": 5.62e-08, + "ranald": 5.62e-08, + "randos": 5.62e-08, + "ransoming": 5.62e-08, + "ranulf": 5.62e-08, + "rapidan": 5.62e-08, + "rayet": 5.62e-08, + "raygun": 5.62e-08, + "raymer": 5.62e-08, + "reappoint": 5.62e-08, + "rearmed": 5.62e-08, + "reasserts": 5.62e-08, + "rebekka": 5.62e-08, + "reblogged": 5.62e-08, + "recantation": 5.62e-08, + "recapitulates": 5.62e-08, + "recco": 5.62e-08, + "redbeard": 5.62e-08, + "redken": 5.62e-08, + "redstart": 5.62e-08, + "refiled": 5.62e-08, + "regally": 5.62e-08, + "regd": 5.62e-08, + "regimentation": 5.62e-08, + "reichman": 5.62e-08, + "rendezvoused": 5.62e-08, + "repatriates": 5.62e-08, + "respirations": 5.62e-08, + "retarder": 5.62e-08, + "retarted": 5.62e-08, + "rfcs": 5.62e-08, + "rgt": 5.62e-08, + "rhinovirus": 5.62e-08, + "rhos": 5.62e-08, + "riccardi": 5.62e-08, + "ricerche": 5.62e-08, + "rimouski": 5.62e-08, + "rincewind": 5.62e-08, + "rishton": 5.62e-08, + "risorgimento": 5.62e-08, + "riverbeds": 5.62e-08, + "riverboats": 5.62e-08, + "rlx": 5.62e-08, + "robertas": 5.62e-08, + "roka": 5.62e-08, + "roli": 5.62e-08, + "ronit": 5.62e-08, + "ronsard": 5.62e-08, + "rosato": 5.62e-08, + "roscoes": 5.62e-08, + "rossinis": 5.62e-08, + "rossland": 5.62e-08, + "rovinj": 5.62e-08, + "rowlatt": 5.62e-08, + "rph": 5.62e-08, + "ruda": 5.62e-08, + "runkle": 5.62e-08, + "saag": 5.62e-08, + "sabal": 5.62e-08, + "saccade": 5.62e-08, + "saccharum": 5.62e-08, + "sagarika": 5.62e-08, + "sahiba": 5.62e-08, + "saintes": 5.62e-08, + "sakuragi": 5.62e-08, + "sallis": 5.62e-08, + "salters": 5.62e-08, + "salzberg": 5.62e-08, + "samael": 5.62e-08, + "sanctifies": 5.62e-08, + "sangram": 5.62e-08, + "sanjaya": 5.62e-08, + "sansar": 5.62e-08, + "santer": 5.62e-08, + "sarabande": 5.62e-08, + "sarra": 5.62e-08, + "sauda": 5.62e-08, + "saumur": 5.62e-08, + "saundra": 5.62e-08, + "sayang": 5.62e-08, + "sbisa": 5.62e-08, + "scarpe": 5.62e-08, + "schistosoma": 5.62e-08, + "schists": 5.62e-08, + "schoolbag": 5.62e-08, + "schwarzenberg": 5.62e-08, + "scobee": 5.62e-08, + "scut": 5.62e-08, + "sehen": 5.62e-08, + "seidl": 5.62e-08, + "selon": 5.62e-08, + "sels": 5.62e-08, + "semillon": 5.62e-08, + "sensa": 5.62e-08, + "serialisation": 5.62e-08, + "sertorius": 5.62e-08, + "shafik": 5.62e-08, + "shankars": 5.62e-08, + "shankman": 5.62e-08, + "shil": 5.62e-08, + "shimmied": 5.62e-08, + "shinichiro": 5.62e-08, + "shiri": 5.62e-08, + "shittest": 5.62e-08, + "shortys": 5.62e-08, + "shrilly": 5.62e-08, + "shriveling": 5.62e-08, + "shugo": 5.62e-08, + "shuu": 5.62e-08, + "siculus": 5.62e-08, + "sidonie": 5.62e-08, + "siecle": 5.62e-08, + "siga": 5.62e-08, + "sigfrid": 5.62e-08, + "silents": 5.62e-08, + "silkroad": 5.62e-08, + "silversun": 5.62e-08, + "silvertown": 5.62e-08, + "silviculture": 5.62e-08, + "simha": 5.62e-08, + "simoni": 5.62e-08, + "sinnoh": 5.62e-08, + "sirach": 5.62e-08, + "siring": 5.62e-08, + "sisyphean": 5.62e-08, + "sitteth": 5.62e-08, + "sitz": 5.62e-08, + "sizeof": 5.62e-08, + "sjr": 5.62e-08, + "sju": 5.62e-08, + "skam": 5.62e-08, + "skd": 5.62e-08, + "skerritt": 5.62e-08, + "skg": 5.62e-08, + "skunked": 5.62e-08, + "slurpees": 5.62e-08, + "slushies": 5.62e-08, + "snowplows": 5.62e-08, + "socia": 5.62e-08, + "soffer": 5.62e-08, + "sohc": 5.62e-08, + "sokoloff": 5.62e-08, + "solum": 5.62e-08, + "sotelo": 5.62e-08, + "sothern": 5.62e-08, + "speedrunning": 5.62e-08, + "spendin": 5.62e-08, + "spillways": 5.62e-08, + "srilanka": 5.62e-08, + "sros": 5.62e-08, + "stanstead": 5.62e-08, + "starbound": 5.62e-08, + "statists": 5.62e-08, + "stebbing": 5.62e-08, + "stedelijk": 5.62e-08, + "steelcase": 5.62e-08, + "stegman": 5.62e-08, + "stepanov": 5.62e-08, + "stepparent": 5.62e-08, + "stiffeners": 5.62e-08, + "stonecutter": 5.62e-08, + "strake": 5.62e-08, + "struma": 5.62e-08, + "sturdily": 5.62e-08, + "subdominant": 5.62e-08, + "subha": 5.62e-08, + "subhan": 5.62e-08, + "subir": 5.62e-08, + "subspecialties": 5.62e-08, + "sudafed": 5.62e-08, + "suffixed": 5.62e-08, + "suhana": 5.62e-08, + "suji": 5.62e-08, + "sulayman": 5.62e-08, + "sullenly": 5.62e-08, + "sunshines": 5.62e-08, + "superheater": 5.62e-08, + "supplicants": 5.62e-08, + "supplicating": 5.62e-08, + "suran": 5.62e-08, + "sutphin": 5.62e-08, + "sverre": 5.62e-08, + "swaim": 5.62e-08, + "swathi": 5.62e-08, + "swofford": 5.62e-08, + "synaesthesia": 5.62e-08, + "synchronising": 5.62e-08, + "szasz": 5.62e-08, + "szilard": 5.62e-08, + "tabe": 5.62e-08, + "taeko": 5.62e-08, + "takaki": 5.62e-08, + "takht": 5.62e-08, + "tallapoosa": 5.62e-08, + "tambour": 5.62e-08, + "tantalisingly": 5.62e-08, + "tanti": 5.62e-08, + "tanvi": 5.62e-08, + "tanvir": 5.62e-08, + "taqiyya": 5.62e-08, + "tarja": 5.62e-08, + "tarlton": 5.62e-08, + "tarzans": 5.62e-08, + "tasia": 5.62e-08, + "tava": 5.62e-08, + "tawang": 5.62e-08, + "tcus": 5.62e-08, + "tdt": 5.62e-08, + "tebbutt": 5.62e-08, + "tedi": 5.62e-08, + "telangiectasia": 5.62e-08, + "tella": 5.62e-08, + "telltales": 5.62e-08, + "temu": 5.62e-08, + "tentpole": 5.62e-08, + "terminalis": 5.62e-08, + "testudo": 5.62e-08, + "tetras": 5.62e-08, + "thaxton": 5.62e-08, + "theodolite": 5.62e-08, + "thev": 5.62e-08, + "thiels": 5.62e-08, + "thio": 5.62e-08, + "thiru": 5.62e-08, + "tiba": 5.62e-08, + "tibbets": 5.62e-08, + "tikva": 5.62e-08, + "timah": 5.62e-08, + "tinta": 5.62e-08, + "tipis": 5.62e-08, + "tirado": 5.62e-08, + "tisbury": 5.62e-08, + "tnp": 5.62e-08, + "tokes": 5.62e-08, + "tolbooth": 5.62e-08, + "tollgate": 5.62e-08, + "toobin": 5.62e-08, + "toomas": 5.62e-08, + "tooru": 5.62e-08, + "toted": 5.62e-08, + "toul": 5.62e-08, + "trapattoni": 5.62e-08, + "trapdoors": 5.62e-08, + "traversable": 5.62e-08, + "treas": 5.62e-08, + "treatin": 5.62e-08, + "trichloroethylene": 5.62e-08, + "trimethyl": 5.62e-08, + "tripel": 5.62e-08, + "tripolitania": 5.62e-08, + "trog": 5.62e-08, + "truetype": 5.62e-08, + "truthiness": 5.62e-08, + "trynna": 5.62e-08, + "ttk": 5.62e-08, + "tumeric": 5.62e-08, + "tunnell": 5.62e-08, + "twilio": 5.62e-08, + "twinings": 5.62e-08, + "tzuyu": 5.62e-08, + "uchiyama": 5.62e-08, + "udell": 5.62e-08, + "uld": 5.62e-08, + "ulick": 5.62e-08, + "ultrasonics": 5.62e-08, + "ultrastructure": 5.62e-08, + "umbels": 5.62e-08, + "unamuno": 5.62e-08, + "undateable": 5.62e-08, + "unfaltering": 5.62e-08, + "unfuck": 5.62e-08, + "unhealed": 5.62e-08, + "unitech": 5.62e-08, + "unknow": 5.62e-08, + "unlovely": 5.62e-08, + "unmute": 5.62e-08, + "unnervingly": 5.62e-08, + "unpopularopinion": 5.62e-08, + "unrepaired": 5.62e-08, + "unthreatening": 5.62e-08, + "unti": 5.62e-08, + "upadhyaya": 5.62e-08, + "upends": 5.62e-08, + "uralic": 5.62e-08, + "urena": 5.62e-08, + "ureteral": 5.62e-08, + "ureters": 5.62e-08, + "usbc": 5.62e-08, + "usca": 5.62e-08, + "usna": 5.62e-08, + "usurious": 5.62e-08, + "vacuolar": 5.62e-08, + "vaginismus": 5.62e-08, + "valarie": 5.62e-08, + "valinor": 5.62e-08, + "varsha": 5.62e-08, + "vascularization": 5.62e-08, + "vaster": 5.62e-08, + "vastu": 5.62e-08, + "vatos": 5.62e-08, + "vdd": 5.62e-08, + "venerating": 5.62e-08, + "venga": 5.62e-08, + "verdier": 5.62e-08, + "verifiably": 5.62e-08, + "verities": 5.62e-08, + "versaces": 5.62e-08, + "vevey": 5.62e-08, + "vfs": 5.62e-08, + "victoriana": 5.62e-08, + "villefranche": 5.62e-08, + "vinegary": 5.62e-08, + "violative": 5.62e-08, + "viole": 5.62e-08, + "virality": 5.62e-08, + "virologists": 5.62e-08, + "virtuality": 5.62e-08, + "viserys": 5.62e-08, + "visita": 5.62e-08, + "visscher": 5.62e-08, + "vitiated": 5.62e-08, + "vivas": 5.62e-08, + "vkontakte": 5.62e-08, + "vorderman": 5.62e-08, + "vpp": 5.62e-08, + "vsg": 5.62e-08, + "vung": 5.62e-08, + "waaa": 5.62e-08, + "waiheke": 5.62e-08, + "walhalla": 5.62e-08, + "warf": 5.62e-08, + "waseca": 5.62e-08, + "wavenumber": 5.62e-08, + "wayde": 5.62e-08, + "wcl": 5.62e-08, + "wct": 5.62e-08, + "webern": 5.62e-08, + "weedkiller": 5.62e-08, + "wege": 5.62e-08, + "weierstrass": 5.62e-08, + "weimaraner": 5.62e-08, + "weinman": 5.62e-08, + "werners": 5.62e-08, + "weslaco": 5.62e-08, + "wfs": 5.62e-08, + "wft": 5.62e-08, + "whitefly": 5.62e-08, + "whitelisting": 5.62e-08, + "whyy": 5.62e-08, + "wied": 5.62e-08, + "wights": 5.62e-08, + "wilander": 5.62e-08, + "wilbanks": 5.62e-08, + "wilfork": 5.62e-08, + "wimberley": 5.62e-08, + "wimberly": 5.62e-08, + "wingham": 5.62e-08, + "winstar": 5.62e-08, + "winterstein": 5.62e-08, + "wiscasset": 5.62e-08, + "witticism": 5.62e-08, + "wittmann": 5.62e-08, + "wive": 5.62e-08, + "wobbler": 5.62e-08, + "wojcicki": 5.62e-08, + "wojciechowski": 5.62e-08, + "wooow": 5.62e-08, + "workmens": 5.62e-08, + "worriedly": 5.62e-08, + "worsham": 5.62e-08, + "wragg": 5.62e-08, + "wrings": 5.62e-08, + "wsd": 5.62e-08, + "wtr": 5.62e-08, + "xboxs": 5.62e-08, + "xxxxxxx": 5.62e-08, + "yabe": 5.62e-08, + "yamana": 5.62e-08, + "yatsenyuk": 5.62e-08, + "yatta": 5.62e-08, + "yisroel": 5.62e-08, + "yoann": 5.62e-08, + "yone": 5.62e-08, + "yongs": 5.62e-08, + "yoohoo": 5.62e-08, + "yoshiaki": 5.62e-08, + "yotam": 5.62e-08, + "youngling": 5.62e-08, + "youssouf": 5.62e-08, + "yuca": 5.62e-08, + "yukie": 5.62e-08, + "zabul": 5.62e-08, + "zaira": 5.62e-08, + "zakia": 5.62e-08, + "zaku": 5.62e-08, + "zaydi": 5.62e-08, + "zeaxanthin": 5.62e-08, + "zizi": 5.62e-08, + "zogby": 5.62e-08, + "zolciak": 5.62e-08, + "zoon": 5.62e-08, + "zoonoses": 5.62e-08, + "zotto": 5.62e-08, + "aaaaaa": 5.5e-08, + "abbate": 5.5e-08, + "aberavon": 5.5e-08, + "abhisit": 5.5e-08, + "abijah": 5.5e-08, + "abil": 5.5e-08, + "abstemious": 5.5e-08, + "abuelo": 5.5e-08, + "acac": 5.5e-08, + "accesories": 5.5e-08, + "acclimatised": 5.5e-08, + "acess": 5.5e-08, + "acms": 5.5e-08, + "acreages": 5.5e-08, + "acuff": 5.5e-08, + "adalah": 5.5e-08, + "adamic": 5.5e-08, + "adeola": 5.5e-08, + "adia": 5.5e-08, + "adlon": 5.5e-08, + "aen": 5.5e-08, + "aerith": 5.5e-08, + "aestheticism": 5.5e-08, + "affiant": 5.5e-08, + "aguascalientes": 5.5e-08, + "ahhhhhhhh": 5.5e-08, + "ahmednagar": 5.5e-08, + "akiras": 5.5e-08, + "akito": 5.5e-08, + "akutagawa": 5.5e-08, + "aladeen": 5.5e-08, + "alanya": 5.5e-08, + "albendazole": 5.5e-08, + "aleix": 5.5e-08, + "alessa": 5.5e-08, + "aliena": 5.5e-08, + "aliquots": 5.5e-08, + "allendes": 5.5e-08, + "allington": 5.5e-08, + "almere": 5.5e-08, + "alos": 5.5e-08, + "alotta": 5.5e-08, + "alphago": 5.5e-08, + "altamonte": 5.5e-08, + "altruist": 5.5e-08, + "amad": 5.5e-08, + "amanullah": 5.5e-08, + "amelio": 5.5e-08, + "amenta": 5.5e-08, + "amoung": 5.5e-08, + "ampex": 5.5e-08, + "ancestries": 5.5e-08, + "andel": 5.5e-08, + "andreea": 5.5e-08, + "anes": 5.5e-08, + "angulation": 5.5e-08, + "anisa": 5.5e-08, + "anshuman": 5.5e-08, + "antinomian": 5.5e-08, + "antunes": 5.5e-08, + "apocrine": 5.5e-08, + "appends": 5.5e-08, + "aratus": 5.5e-08, + "arceneaux": 5.5e-08, + "archiepiscopal": 5.5e-08, + "ardiles": 5.5e-08, + "argenteuil": 5.5e-08, + "arkadelphia": 5.5e-08, + "armadas": 5.5e-08, + "armoring": 5.5e-08, + "articulable": 5.5e-08, + "asat": 5.5e-08, + "ascription": 5.5e-08, + "ashtead": 5.5e-08, + "aspherical": 5.5e-08, + "aspie": 5.5e-08, + "assassinates": 5.5e-08, + "assaying": 5.5e-08, + "astuteness": 5.5e-08, + "asymptotics": 5.5e-08, + "atcha": 5.5e-08, + "atlan": 5.5e-08, + "audubons": 5.5e-08, + "aval": 5.5e-08, + "avtar": 5.5e-08, + "awsat": 5.5e-08, + "awwwwww": 5.5e-08, + "axilla": 5.5e-08, + "ayalon": 5.5e-08, + "ayase": 5.5e-08, + "aylett": 5.5e-08, + "babalu": 5.5e-08, + "babka": 5.5e-08, + "backfilling": 5.5e-08, + "backhands": 5.5e-08, + "baelor": 5.5e-08, + "bakerys": 5.5e-08, + "balladeer": 5.5e-08, + "ballan": 5.5e-08, + "ballynahinch": 5.5e-08, + "ballz": 5.5e-08, + "balzer": 5.5e-08, + "bandara": 5.5e-08, + "bardeen": 5.5e-08, + "barrasso": 5.5e-08, + "bartell": 5.5e-08, + "bashkortostan": 5.5e-08, + "bayoneted": 5.5e-08, + "bcoz": 5.5e-08, + "becs": 5.5e-08, + "beefier": 5.5e-08, + "bellissima": 5.5e-08, + "belzoni": 5.5e-08, + "bergere": 5.5e-08, + "berghain": 5.5e-08, + "berrington": 5.5e-08, + "beuve": 5.5e-08, + "beverlys": 5.5e-08, + "bewilder": 5.5e-08, + "bgi": 5.5e-08, + "bhag": 5.5e-08, + "biagi": 5.5e-08, + "bickered": 5.5e-08, + "bikeways": 5.5e-08, + "bilis": 5.5e-08, + "bilked": 5.5e-08, + "billard": 5.5e-08, + "biowares": 5.5e-08, + "birdbath": 5.5e-08, + "bita": 5.5e-08, + "bitmain": 5.5e-08, + "blabbed": 5.5e-08, + "blaha": 5.5e-08, + "blaustein": 5.5e-08, + "bloodmoon": 5.5e-08, + "bludger": 5.5e-08, + "bluecoat": 5.5e-08, + "blumer": 5.5e-08, + "boakye": 5.5e-08, + "boddington": 5.5e-08, + "bokura": 5.5e-08, + "bolg": 5.5e-08, + "bolle": 5.5e-08, + "bollocking": 5.5e-08, + "bombardiers": 5.5e-08, + "bonked": 5.5e-08, + "boonen": 5.5e-08, + "booooo": 5.5e-08, + "borkowski": 5.5e-08, + "bossi": 5.5e-08, + "botta": 5.5e-08, + "boulter": 5.5e-08, + "boutwell": 5.5e-08, + "boycie": 5.5e-08, + "brachiosaurus": 5.5e-08, + "bradberry": 5.5e-08, + "braeden": 5.5e-08, + "brainwashes": 5.5e-08, + "brantly": 5.5e-08, + "brasco": 5.5e-08, + "braunstein": 5.5e-08, + "bridgford": 5.5e-08, + "brimfield": 5.5e-08, + "brioni": 5.5e-08, + "brisker": 5.5e-08, + "bronchospasm": 5.5e-08, + "brucella": 5.5e-08, + "bruit": 5.5e-08, + "bryer": 5.5e-08, + "bryozoans": 5.5e-08, + "buba": 5.5e-08, + "buckaroos": 5.5e-08, + "buckram": 5.5e-08, + "budaj": 5.5e-08, + "burgdorferi": 5.5e-08, + "burgeoned": 5.5e-08, + "burien": 5.5e-08, + "bwin": 5.5e-08, + "byt": 5.5e-08, + "cabra": 5.5e-08, + "callums": 5.5e-08, + "cambered": 5.5e-08, + "cambon": 5.5e-08, + "camerata": 5.5e-08, + "canid": 5.5e-08, + "canzone": 5.5e-08, + "capslock": 5.5e-08, + "caramelize": 5.5e-08, + "carentan": 5.5e-08, + "carolyns": 5.5e-08, + "carto": 5.5e-08, + "castillos": 5.5e-08, + "catechumens": 5.5e-08, + "catherwood": 5.5e-08, + "caucasoid": 5.5e-08, + "cavalierly": 5.5e-08, + "cawing": 5.5e-08, + "ccie": 5.5e-08, + "ccnp": 5.5e-08, + "ceed": 5.5e-08, + "celes": 5.5e-08, + "celgene": 5.5e-08, + "celli": 5.5e-08, + "cgf": 5.5e-08, + "chadbourne": 5.5e-08, + "chakram": 5.5e-08, + "chalcopyrite": 5.5e-08, + "chalobah": 5.5e-08, + "chandrayaan": 5.5e-08, + "charvet": 5.5e-08, + "chaudhury": 5.5e-08, + "chiko": 5.5e-08, + "chillum": 5.5e-08, + "chippendales": 5.5e-08, + "chondrite": 5.5e-08, + "chrissakes": 5.5e-08, + "chugach": 5.5e-08, + "chy": 5.5e-08, + "circulators": 5.5e-08, + "clairvoyants": 5.5e-08, + "claridges": 5.5e-08, + "clase": 5.5e-08, + "clearys": 5.5e-08, + "clelia": 5.5e-08, + "cloudera": 5.5e-08, + "cnw": 5.5e-08, + "coagulates": 5.5e-08, + "codling": 5.5e-08, + "cogently": 5.5e-08, + "coilovers": 5.5e-08, + "collegues": 5.5e-08, + "collimator": 5.5e-08, + "collinwood": 5.5e-08, + "colorant": 5.5e-08, + "coltranes": 5.5e-08, + "comfier": 5.5e-08, + "commentates": 5.5e-08, + "commoditized": 5.5e-08, + "comportment": 5.5e-08, + "conacher": 5.5e-08, + "conciousness": 5.5e-08, + "coning": 5.5e-08, + "conodonts": 5.5e-08, + "conroys": 5.5e-08, + "constans": 5.5e-08, + "constructionism": 5.5e-08, + "contemporaine": 5.5e-08, + "convergences": 5.5e-08, + "cornflake": 5.5e-08, + "coronations": 5.5e-08, + "cottoned": 5.5e-08, + "cottony": 5.5e-08, + "counterfactuals": 5.5e-08, + "countersigned": 5.5e-08, + "counterterrorist": 5.5e-08, + "covell": 5.5e-08, + "crecy": 5.5e-08, + "cretinous": 5.5e-08, + "cromwellian": 5.5e-08, + "croplands": 5.5e-08, + "croquette": 5.5e-08, + "cual": 5.5e-08, + "cubao": 5.5e-08, + "cuero": 5.5e-08, + "cuerpo": 5.5e-08, + "cutlasses": 5.5e-08, + "cwr": 5.5e-08, + "cycladic": 5.5e-08, + "cyprien": 5.5e-08, + "daaaamn": 5.5e-08, + "dacian": 5.5e-08, + "dacite": 5.5e-08, + "daha": 5.5e-08, + "dahal": 5.5e-08, + "damu": 5.5e-08, + "dardenne": 5.5e-08, + "daresbury": 5.5e-08, + "daubert": 5.5e-08, + "davenports": 5.5e-08, + "debussys": 5.5e-08, + "deloach": 5.5e-08, + "delpy": 5.5e-08, + "delux": 5.5e-08, + "demerger": 5.5e-08, + "demining": 5.5e-08, + "demoss": 5.5e-08, + "denice": 5.5e-08, + "denyer": 5.5e-08, + "depok": 5.5e-08, + "deray": 5.5e-08, + "derrickson": 5.5e-08, + "descriptio": 5.5e-08, + "deskjet": 5.5e-08, + "dfn": 5.5e-08, + "dhabis": 5.5e-08, + "diamandis": 5.5e-08, + "diamorphine": 5.5e-08, + "diapering": 5.5e-08, + "dibdin": 5.5e-08, + "diga": 5.5e-08, + "dilwale": 5.5e-08, + "dirtiness": 5.5e-08, + "dirtying": 5.5e-08, + "disbeliever": 5.5e-08, + "dise": 5.5e-08, + "dishs": 5.5e-08, + "dishonors": 5.5e-08, + "disinfo": 5.5e-08, + "disputations": 5.5e-08, + "distributer": 5.5e-08, + "divvied": 5.5e-08, + "docosahexaenoic": 5.5e-08, + "documentos": 5.5e-08, + "doering": 5.5e-08, + "domodedovo": 5.5e-08, + "donda": 5.5e-08, + "dorans": 5.5e-08, + "dorsi": 5.5e-08, + "doub": 5.5e-08, + "dpn": 5.5e-08, + "draconic": 5.5e-08, + "dragonborn": 5.5e-08, + "dravida": 5.5e-08, + "drie": 5.5e-08, + "dubrow": 5.5e-08, + "duggans": 5.5e-08, + "dugongs": 5.5e-08, + "dulin": 5.5e-08, + "duology": 5.5e-08, + "durkee": 5.5e-08, + "dylann": 5.5e-08, + "dynein": 5.5e-08, + "dyspeptic": 5.5e-08, + "ebden": 5.5e-08, + "echa": 5.5e-08, + "ecma": 5.5e-08, + "ecofriendly": 5.5e-08, + "eddings": 5.5e-08, + "edem": 5.5e-08, + "egal": 5.5e-08, + "eku": 5.5e-08, + "elasto": 5.5e-08, + "eleuthera": 5.5e-08, + "elisabet": 5.5e-08, + "eliya": 5.5e-08, + "elmslie": 5.5e-08, + "elphick": 5.5e-08, + "emancipating": 5.5e-08, + "empaths": 5.5e-08, + "emrick": 5.5e-08, + "ench": 5.5e-08, + "encyclopaedias": 5.5e-08, + "enger": 5.5e-08, + "enh": 5.5e-08, + "ennobling": 5.5e-08, + "enthrall": 5.5e-08, + "envyus": 5.5e-08, + "enzi": 5.5e-08, + "eowyn": 5.5e-08, + "ephram": 5.5e-08, + "epilepticus": 5.5e-08, + "eppendorf": 5.5e-08, + "erw": 5.5e-08, + "erzurum": 5.5e-08, + "escada": 5.5e-08, + "especialy": 5.5e-08, + "eterno": 5.5e-08, + "ethnologists": 5.5e-08, + "etosha": 5.5e-08, + "euboea": 5.5e-08, + "evershed": 5.5e-08, + "examinee": 5.5e-08, + "exce": 5.5e-08, + "excludable": 5.5e-08, + "exel": 5.5e-08, + "exocet": 5.5e-08, + "expressible": 5.5e-08, + "expressivity": 5.5e-08, + "fabers": 5.5e-08, + "facesitting": 5.5e-08, + "facia": 5.5e-08, + "fakin": 5.5e-08, + "falkenberg": 5.5e-08, + "falzon": 5.5e-08, + "fatcat": 5.5e-08, + "febreeze": 5.5e-08, + "feiglin": 5.5e-08, + "felda": 5.5e-08, + "fellainis": 5.5e-08, + "femaleness": 5.5e-08, + "fero": 5.5e-08, + "fhp": 5.5e-08, + "filiation": 5.5e-08, + "finneran": 5.5e-08, + "firetrucks": 5.5e-08, + "fittipaldi": 5.5e-08, + "flamel": 5.5e-08, + "flaxman": 5.5e-08, + "fledermaus": 5.5e-08, + "flegg": 5.5e-08, + "flimsiest": 5.5e-08, + "florencio": 5.5e-08, + "florrick": 5.5e-08, + "flotillas": 5.5e-08, + "fluorophores": 5.5e-08, + "fluoroquinolones": 5.5e-08, + "flushable": 5.5e-08, + "fmm": 5.5e-08, + "foodporn": 5.5e-08, + "forbush": 5.5e-08, + "forsey": 5.5e-08, + "fossilization": 5.5e-08, + "foxxs": 5.5e-08, + "fragen": 5.5e-08, + "fraternitys": 5.5e-08, + "frayn": 5.5e-08, + "freudenberg": 5.5e-08, + "freycinet": 5.5e-08, + "freytag": 5.5e-08, + "fridley": 5.5e-08, + "fridman": 5.5e-08, + "frontin": 5.5e-08, + "fuckit": 5.5e-08, + "funs": 5.37e-08, + "funi": 5.5e-08, + "furled": 5.5e-08, + "furqan": 5.5e-08, + "gabrielli": 5.5e-08, + "gaim": 5.5e-08, + "gallinari": 5.5e-08, + "ganas": 5.5e-08, + "gangbangs": 5.5e-08, + "gantries": 5.5e-08, + "gardez": 5.5e-08, + "gargles": 5.5e-08, + "garzas": 5.5e-08, + "gasb": 5.5e-08, + "gasly": 5.5e-08, + "gavotte": 5.5e-08, + "gaylor": 5.5e-08, + "gebel": 5.5e-08, + "geddit": 5.5e-08, + "geishas": 5.5e-08, + "genco": 5.5e-08, + "gendron": 5.5e-08, + "genevas": 5.5e-08, + "genevan": 5.5e-08, + "genscher": 5.5e-08, + "geomatics": 5.5e-08, + "gerdes": 5.5e-08, + "geron": 5.5e-08, + "ghad": 5.5e-08, + "ghettoes": 5.5e-08, + "gibbard": 5.5e-08, + "giddily": 5.5e-08, + "gilbey": 5.5e-08, + "gilmours": 5.5e-08, + "ginia": 5.5e-08, + "ginsbergs": 5.5e-08, + "giordani": 5.5e-08, + "glamorganshire": 5.5e-08, + "glassmaking": 5.5e-08, + "glcnac": 5.5e-08, + "glenoid": 5.5e-08, + "glenorchy": 5.5e-08, + "glower": 5.5e-08, + "godfreys": 5.5e-08, + "gokul": 5.5e-08, + "golang": 5.5e-08, + "golos": 5.5e-08, + "gond": 5.5e-08, + "gonski": 5.5e-08, + "goofys": 5.5e-08, + "gooses": 5.5e-08, + "goyang": 5.5e-08, + "goyo": 5.5e-08, + "grafter": 5.5e-08, + "gregers": 5.5e-08, + "gretas": 5.5e-08, + "gtld": 5.5e-08, + "gualtieri": 5.5e-08, + "guardi": 5.5e-08, + "guiseley": 5.5e-08, + "gulak": 5.5e-08, + "gunda": 5.5e-08, + "gunsmiths": 5.5e-08, + "guos": 5.5e-08, + "guto": 5.5e-08, + "gyasi": 5.5e-08, + "hach": 5.5e-08, + "haglund": 5.5e-08, + "hagstrom": 5.5e-08, + "haikou": 5.5e-08, + "haileybury": 5.5e-08, + "haining": 5.5e-08, + "halachic": 5.5e-08, + "halfmoon": 5.5e-08, + "halite": 5.5e-08, + "hallen": 5.5e-08, + "hamadan": 5.5e-08, + "hamble": 5.5e-08, + "hanz": 5.5e-08, + "harkonnen": 5.5e-08, + "harlesden": 5.5e-08, + "harrie": 5.5e-08, + "harro": 5.5e-08, + "hary": 5.5e-08, + "hatfields": 5.5e-08, + "hawing": 5.5e-08, + "hbt": 5.5e-08, + "hcd": 5.5e-08, + "heddle": 5.5e-08, + "heem": 5.5e-08, + "heffley": 5.5e-08, + "heiman": 5.5e-08, + "heitman": 5.5e-08, + "hellhounds": 5.5e-08, + "helliwell": 5.5e-08, + "hemmingway": 5.5e-08, + "hemsworths": 5.5e-08, + "henshall": 5.5e-08, + "henze": 5.5e-08, + "heru": 5.5e-08, + "heughan": 5.5e-08, + "heydar": 5.5e-08, + "hhv": 5.5e-08, + "hierarchal": 5.5e-08, + "hierarchs": 5.5e-08, + "hiero": 5.5e-08, + "highfalutin": 5.5e-08, + "hincks": 5.5e-08, + "hirings": 5.5e-08, + "hoenn": 5.5e-08, + "hoggart": 5.5e-08, + "holograph": 5.5e-08, + "holon": 5.5e-08, + "honeycombed": 5.5e-08, + "honfleur": 5.5e-08, + "hopley": 5.5e-08, + "horners": 5.5e-08, + "hosta": 5.5e-08, + "hoster": 5.5e-08, + "houstonians": 5.5e-08, + "hoye": 5.5e-08, + "hoyland": 5.5e-08, + "htf": 5.5e-08, + "huntelaar": 5.5e-08, + "hutchinsons": 5.5e-08, + "hydrosphere": 5.5e-08, + "hypovolemic": 5.5e-08, + "iaquinta": 5.5e-08, + "icecap": 5.5e-08, + "idbi": 5.5e-08, + "ignoramuses": 5.5e-08, + "ilion": 5.5e-08, + "illegalities": 5.5e-08, + "ilt": 5.5e-08, + "imagineering": 5.5e-08, + "imine": 5.5e-08, + "immaculata": 5.5e-08, + "immunologically": 5.5e-08, + "immunoreactivity": 5.5e-08, + "impro": 5.5e-08, + "inactivates": 5.5e-08, + "inaugurations": 5.5e-08, + "incher": 5.5e-08, + "indeedy": 5.5e-08, + "indiv": 5.5e-08, + "industriousness": 5.5e-08, + "infliximab": 5.5e-08, + "initialism": 5.5e-08, + "innovativeness": 5.5e-08, + "institutionalisation": 5.5e-08, + "instrumentalities": 5.5e-08, + "intercessions": 5.5e-08, + "interiority": 5.5e-08, + "internationa": 5.5e-08, + "intradermal": 5.5e-08, + "investee": 5.5e-08, + "iorio": 5.5e-08, + "ipb": 5.5e-08, + "irrigable": 5.5e-08, + "islamiyah": 5.5e-08, + "islamophobes": 5.5e-08, + "isoflurane": 5.5e-08, + "istrian": 5.5e-08, + "izanagi": 5.5e-08, + "izquierdo": 5.5e-08, + "jadu": 5.5e-08, + "janz": 5.5e-08, + "jarringly": 5.5e-08, + "jarvie": 5.5e-08, + "jazzman": 5.5e-08, + "jdf": 5.5e-08, + "jeds": 5.5e-08, + "jejunum": 5.5e-08, + "jek": 5.5e-08, + "jisoo": 5.5e-08, + "johannson": 5.5e-08, + "johnstones": 5.5e-08, + "joselito": 5.5e-08, + "joven": 5.5e-08, + "joyeux": 5.5e-08, + "jrm": 5.5e-08, + "judahs": 5.5e-08, + "judie": 5.5e-08, + "juglans": 5.5e-08, + "jukka": 5.5e-08, + "jyllands": 5.5e-08, + "kailyn": 5.5e-08, + "kalenjin": 5.5e-08, + "kalm": 5.5e-08, + "kames": 5.5e-08, + "kanchi": 5.5e-08, + "kanger": 5.5e-08, + "kanika": 5.5e-08, + "karami": 5.5e-08, + "karno": 5.5e-08, + "kathak": 5.5e-08, + "kattan": 5.5e-08, + "kawabata": 5.5e-08, + "kbm": 5.5e-08, + "keatley": 5.5e-08, + "kedzie": 5.5e-08, + "kempt": 5.5e-08, + "kenneys": 5.5e-08, + "kennon": 5.5e-08, + "kephart": 5.5e-08, + "kerbside": 5.5e-08, + "kewpie": 5.5e-08, + "khj": 5.5e-08, + "kirst": 5.5e-08, + "kirstein": 5.5e-08, + "kislev": 5.5e-08, + "kitcheners": 5.5e-08, + "kleinschmidt": 5.5e-08, + "kmf": 5.5e-08, + "knust": 5.5e-08, + "koil": 5.5e-08, + "kokoschka": 5.5e-08, + "kommer": 5.5e-08, + "kopa": 5.5e-08, + "krogers": 5.5e-08, + "krokodil": 5.5e-08, + "kuhlman": 5.5e-08, + "kullu": 5.5e-08, + "kunle": 5.5e-08, + "kunwar": 5.5e-08, + "kupper": 5.5e-08, + "kutz": 5.5e-08, + "kwe": 5.5e-08, + "kyneton": 5.5e-08, + "labbe": 5.5e-08, + "lactones": 5.5e-08, + "lagertha": 5.5e-08, + "lakshmana": 5.5e-08, + "lampton": 5.5e-08, + "lampung": 5.5e-08, + "lanc": 5.5e-08, + "lanceolata": 5.5e-08, + "lancets": 5.5e-08, + "landcare": 5.5e-08, + "langman": 5.5e-08, + "lanl": 5.5e-08, + "lannon": 5.5e-08, + "laren": 5.5e-08, + "latissimus": 5.5e-08, + "latorre": 5.5e-08, + "lavishes": 5.5e-08, + "lbg": 5.5e-08, + "leafhopper": 5.5e-08, + "leakin": 5.5e-08, + "learys": 5.5e-08, + "lectio": 5.5e-08, + "lembit": 5.5e-08, + "lemmas": 5.5e-08, + "lenta": 5.5e-08, + "leonhart": 5.5e-08, + "letra": 5.5e-08, + "levallois": 5.5e-08, + "leveque": 5.5e-08, + "levick": 5.5e-08, + "lexan": 5.5e-08, + "leyburn": 5.5e-08, + "lhe": 5.5e-08, + "lhuillier": 5.5e-08, + "liangs": 5.5e-08, + "liberatore": 5.5e-08, + "lifeguarding": 5.5e-08, + "lifo": 5.5e-08, + "lige": 5.5e-08, + "lilburne": 5.5e-08, + "lingle": 5.5e-08, + "lippard": 5.5e-08, + "lithographer": 5.5e-08, + "livechat": 5.5e-08, + "lka": 5.5e-08, + "loafs": 5.5e-08, + "lobi": 5.5e-08, + "lobular": 5.5e-08, + "lockups": 5.5e-08, + "logik": 5.5e-08, + "loled": 5.5e-08, + "loling": 5.5e-08, + "lolled": 5.5e-08, + "lornas": 5.5e-08, + "louisas": 5.5e-08, + "lovells": 5.5e-08, + "lowder": 5.5e-08, + "lth": 5.5e-08, + "ltrs": 5.5e-08, + "ludi": 5.5e-08, + "ludwigshafen": 5.5e-08, + "lungfish": 5.5e-08, + "luxs": 5.5e-08, + "lviii": 5.5e-08, + "macphersons": 5.5e-08, + "macrumors": 5.5e-08, + "madtv": 5.5e-08, + "maginnis": 5.5e-08, + "magis": 5.5e-08, + "magnani": 5.5e-08, + "magway": 5.5e-08, + "mainlander": 5.5e-08, + "maino": 5.5e-08, + "majnu": 5.5e-08, + "makeing": 5.5e-08, + "malherbe": 5.5e-08, + "malki": 5.5e-08, + "maltings": 5.5e-08, + "manageability": 5.5e-08, + "mandelstam": 5.5e-08, + "manipuri": 5.5e-08, + "mannar": 5.5e-08, + "maplin": 5.5e-08, + "mariane": 5.5e-08, + "marik": 5.5e-08, + "marilu": 5.5e-08, + "martas": 5.5e-08, + "maryjane": 5.5e-08, + "mashburn": 5.5e-08, + "massifs": 5.5e-08, + "matabele": 5.5e-08, + "matanuska": 5.5e-08, + "matara": 5.5e-08, + "mateys": 5.5e-08, + "matha": 5.5e-08, + "matriculating": 5.5e-08, + "matthau": 5.5e-08, + "maynor": 5.5e-08, + "mccollough": 5.5e-08, + "mcconkey": 5.5e-08, + "mcglone": 5.5e-08, + "mcnairy": 5.5e-08, + "meckler": 5.5e-08, + "meddles": 5.5e-08, + "medusae": 5.5e-08, + "melk": 5.5e-08, + "mellors": 5.5e-08, + "menounos": 5.5e-08, + "merlini": 5.5e-08, + "mesial": 5.5e-08, + "messalina": 5.5e-08, + "messias": 5.5e-08, + "mesta": 5.5e-08, + "metrication": 5.5e-08, + "meurice": 5.5e-08, + "mfk": 5.5e-08, + "microchipping": 5.5e-08, + "microplate": 5.5e-08, + "microstrip": 5.5e-08, + "midships": 5.5e-08, + "miiverse": 5.5e-08, + "milenio": 5.5e-08, + "millercoors": 5.5e-08, + "milliners": 5.5e-08, + "millionths": 5.5e-08, + "milone": 5.5e-08, + "milsom": 5.5e-08, + "mimmo": 5.5e-08, + "minghella": 5.5e-08, + "ministre": 5.5e-08, + "missie": 5.5e-08, + "mistresss": 5.5e-08, + "mitu": 5.5e-08, + "mkz": 5.5e-08, + "mmn": 5.5e-08, + "mnets": 5.5e-08, + "mockingbirds": 5.5e-08, + "modbury": 5.5e-08, + "modise": 5.5e-08, + "mogami": 5.5e-08, + "monetarist": 5.5e-08, + "mongooses": 5.5e-08, + "monist": 5.5e-08, + "monotypic": 5.5e-08, + "montenegros": 5.5e-08, + "moralize": 5.5e-08, + "moris": 5.37e-08, + "morongo": 5.5e-08, + "morphic": 5.5e-08, + "morses": 5.5e-08, + "mortems": 5.5e-08, + "morteza": 5.5e-08, + "mossel": 5.5e-08, + "mottoes": 5.5e-08, + "moulins": 5.5e-08, + "msme": 5.5e-08, + "mugi": 5.5e-08, + "muldrow": 5.5e-08, + "mundaring": 5.5e-08, + "mungos": 5.5e-08, + "murmelstein": 5.5e-08, + "musharrafs": 5.5e-08, + "myalgia": 5.5e-08, + "myelofibrosis": 5.5e-08, + "myshkin": 5.5e-08, + "nadav": 5.5e-08, + "nagler": 5.5e-08, + "nametags": 5.5e-08, + "narasimhan": 5.5e-08, + "nasmyth": 5.5e-08, + "nazo": 5.5e-08, + "ndes": 5.5e-08, + "ndiaye": 5.5e-08, + "nebel": 5.5e-08, + "nebulas": 5.5e-08, + "necrophiliac": 5.5e-08, + "nelli": 5.5e-08, + "neovascularization": 5.5e-08, + "nessun": 5.5e-08, + "neuvirth": 5.5e-08, + "neverforget": 5.5e-08, + "newjersey": 5.5e-08, + "newsbeat": 5.5e-08, + "newseum": 5.5e-08, + "newsround": 5.5e-08, + "ngv": 5.5e-08, + "nicolau": 5.5e-08, + "nilla": 5.5e-08, + "nimrud": 5.5e-08, + "ninetieth": 5.5e-08, + "nmfs": 5.5e-08, + "noailles": 5.5e-08, + "noakhali": 5.5e-08, + "nondeterministic": 5.5e-08, + "nondiscriminatory": 5.5e-08, + "nonfinancial": 5.5e-08, + "nonresponsive": 5.5e-08, + "northey": 5.5e-08, + "notochord": 5.5e-08, + "novack": 5.5e-08, + "nunawading": 5.5e-08, + "nurofen": 5.5e-08, + "nurturer": 5.5e-08, + "oatman": 5.5e-08, + "oberland": 5.5e-08, + "oboist": 5.5e-08, + "obrigado": 5.5e-08, + "ochocinco": 5.5e-08, + "odgers": 5.5e-08, + "offworld": 5.5e-08, + "ogdens": 5.5e-08, + "oji": 5.5e-08, + "okeanos": 5.5e-08, + "ollivier": 5.5e-08, + "olmedo": 5.5e-08, + "olpc": 5.5e-08, + "omerta": 5.5e-08, + "optik": 5.5e-08, + "oric": 5.5e-08, + "origo": 5.5e-08, + "ormolu": 5.5e-08, + "osawa": 5.5e-08, + "osburn": 5.5e-08, + "oseltamivir": 5.5e-08, + "osteopaths": 5.5e-08, + "osteoporotic": 5.5e-08, + "osw": 5.5e-08, + "otta": 5.5e-08, + "ouchy": 5.5e-08, + "oumar": 5.5e-08, + "overdevelopment": 5.5e-08, + "oversampling": 5.5e-08, + "overshoots": 5.5e-08, + "oviparous": 5.5e-08, + "oxted": 5.5e-08, + "oxygenase": 5.5e-08, + "ozcan": 5.5e-08, + "ozy": 5.5e-08, + "pacinos": 5.5e-08, + "packhorse": 5.5e-08, + "padmasambhava": 5.5e-08, + "pahl": 5.5e-08, + "paleoecology": 5.5e-08, + "panday": 5.5e-08, + "panesar": 5.5e-08, + "pango": 5.5e-08, + "pantothenic": 5.5e-08, + "papias": 5.5e-08, + "paraneoplastic": 5.5e-08, + "paraphilia": 5.5e-08, + "paratype": 5.5e-08, + "parece": 5.5e-08, + "parshall": 5.5e-08, + "passband": 5.5e-08, + "patani": 5.5e-08, + "patin": 5.5e-08, + "patong": 5.5e-08, + "pavillon": 5.5e-08, + "pdn": 5.5e-08, + "penicillins": 5.5e-08, + "peope": 5.5e-08, + "peppermints": 5.5e-08, + "perales": 5.5e-08, + "perceiver": 5.5e-08, + "perceptively": 5.5e-08, + "perd": 5.5e-08, + "pergamum": 5.5e-08, + "pericope": 5.5e-08, + "peristyle": 5.5e-08, + "permissibility": 5.5e-08, + "persil": 5.5e-08, + "pertinence": 5.5e-08, + "perty": 5.5e-08, + "perving": 5.5e-08, + "pescatarian": 5.5e-08, + "pettitt": 5.5e-08, + "pewdiepies": 5.5e-08, + "pgn": 5.5e-08, + "pharmacia": 5.5e-08, + "pharmacodynamic": 5.5e-08, + "phas": 5.5e-08, + "phasma": 5.5e-08, + "phenomenons": 5.5e-08, + "philharmonics": 5.5e-08, + "philodendron": 5.5e-08, + "phosphatidylcholine": 5.5e-08, + "photoacoustic": 5.5e-08, + "photodetectors": 5.5e-08, + "photolysis": 5.5e-08, + "piaggio": 5.5e-08, + "piddly": 5.5e-08, + "pigtailed": 5.5e-08, + "pilotless": 5.5e-08, + "pipelined": 5.5e-08, + "piron": 5.5e-08, + "pistils": 5.5e-08, + "pitre": 5.5e-08, + "pizzi": 5.5e-08, + "pkp": 5.5e-08, + "placa": 5.5e-08, + "placemat": 5.5e-08, + "plaiting": 5.5e-08, + "platonist": 5.5e-08, + "pleating": 5.5e-08, + "plentifully": 5.5e-08, + "plugger": 5.5e-08, + "pmdd": 5.5e-08, + "pmh": 5.5e-08, + "pode": 5.5e-08, + "pogchamp": 5.5e-08, + "pointes": 5.5e-08, + "pokal": 5.5e-08, + "polemicist": 5.5e-08, + "poom": 5.5e-08, + "popcap": 5.5e-08, + "potg": 5.5e-08, + "poti": 5.5e-08, + "potti": 5.5e-08, + "pratensis": 5.5e-08, + "prefilled": 5.5e-08, + "prejudicing": 5.5e-08, + "presenta": 5.5e-08, + "priestland": 5.5e-08, + "prizing": 5.5e-08, + "promptings": 5.5e-08, + "prostates": 5.5e-08, + "prosumer": 5.5e-08, + "protag": 5.5e-08, + "proximo": 5.5e-08, + "psychonauts": 5.5e-08, + "psyduck": 5.5e-08, + "puas": 5.5e-08, + "pufa": 5.5e-08, + "puigs": 5.5e-08, + "purebreds": 5.5e-08, + "pwcs": 5.5e-08, + "pxe": 5.5e-08, + "qalandar": 5.5e-08, + "qeii": 5.5e-08, + "qemu": 5.5e-08, + "quartiles": 5.5e-08, + "quaver": 5.5e-08, + "quina": 5.5e-08, + "quy": 5.5e-08, + "rabinovitch": 5.5e-08, + "rabs": 5.5e-08, + "rademacher": 5.5e-08, + "radiopharmaceuticals": 5.5e-08, + "raeder": 5.5e-08, + "raffaella": 5.5e-08, + "rahall": 5.5e-08, + "rakshasa": 5.5e-08, + "rangpur": 5.5e-08, + "rankle": 5.5e-08, + "rapala": 5.5e-08, + "rappler": 5.5e-08, + "rashers": 5.5e-08, + "ravinia": 5.5e-08, + "raynal": 5.5e-08, + "rcia": 5.5e-08, + "reaney": 5.5e-08, + "recalcitrance": 5.5e-08, + "rech": 5.5e-08, + "recommendable": 5.5e-08, + "recommissioned": 5.5e-08, + "recta": 5.5e-08, + "redial": 5.5e-08, + "redl": 5.5e-08, + "redlight": 5.5e-08, + "reefing": 5.5e-08, + "reenlisted": 5.5e-08, + "refashion": 5.5e-08, + "reformulating": 5.5e-08, + "refreshers": 5.5e-08, + "reinterred": 5.5e-08, + "relator": 5.5e-08, + "remax": 5.5e-08, + "reoccupation": 5.5e-08, + "reoccupy": 5.5e-08, + "replayability": 5.5e-08, + "resch": 5.5e-08, + "resnik": 5.5e-08, + "respek": 5.5e-08, + "rhetoricians": 5.5e-08, + "rhotic": 5.5e-08, + "rhun": 5.5e-08, + "rilla": 5.5e-08, + "rimjob": 5.5e-08, + "rivonia": 5.5e-08, + "rockslide": 5.5e-08, + "rogerio": 5.5e-08, + "rogier": 5.5e-08, + "ronans": 5.5e-08, + "ronco": 5.5e-08, + "rpn": 5.5e-08, + "rsu": 5.5e-08, + "runtimes": 5.5e-08, + "rupali": 5.5e-08, + "russett": 5.5e-08, + "sabel": 5.5e-08, + "sabermetrics": 5.5e-08, + "saddledome": 5.5e-08, + "sakthi": 5.5e-08, + "salespersons": 5.5e-08, + "saltz": 5.5e-08, + "samis": 5.5e-08, + "saramago": 5.5e-08, + "sassanid": 5.5e-08, + "satta": 5.5e-08, + "saturnine": 5.5e-08, + "savoyard": 5.5e-08, + "sawako": 5.5e-08, + "scallywag": 5.5e-08, + "scattergood": 5.5e-08, + "scaup": 5.5e-08, + "schl": 5.5e-08, + "schmaltzy": 5.5e-08, + "schoeman": 5.5e-08, + "schs": 5.5e-08, + "schulzs": 5.5e-08, + "schwarze": 5.5e-08, + "scraggy": 5.5e-08, + "scramjet": 5.5e-08, + "scriptum": 5.5e-08, + "scutum": 5.5e-08, + "seabourn": 5.5e-08, + "seagrams": 5.5e-08, + "seawolves": 5.5e-08, + "secreta": 5.5e-08, + "seedbed": 5.5e-08, + "seekonk": 5.5e-08, + "selfmade": 5.5e-08, + "seliger": 5.5e-08, + "senran": 5.5e-08, + "sente": 5.5e-08, + "sento": 5.5e-08, + "seos": 5.5e-08, + "sepik": 5.5e-08, + "seppo": 5.5e-08, + "serah": 5.5e-08, + "sergeyevich": 5.5e-08, + "sergios": 5.5e-08, + "serizawa": 5.5e-08, + "seru": 5.5e-08, + "sesay": 5.5e-08, + "shamsher": 5.5e-08, + "shango": 5.5e-08, + "shantytowns": 5.5e-08, + "sharyl": 5.5e-08, + "shefali": 5.5e-08, + "sheldrick": 5.5e-08, + "shellacking": 5.5e-08, + "shellfire": 5.5e-08, + "shennan": 5.5e-08, + "shereen": 5.5e-08, + "shikha": 5.5e-08, + "shimmying": 5.5e-08, + "shirtsleeves": 5.5e-08, + "shodan": 5.5e-08, + "shoddily": 5.5e-08, + "shoma": 5.5e-08, + "shrivastava": 5.5e-08, + "shuli": 5.5e-08, + "shuter": 5.5e-08, + "shuvalov": 5.5e-08, + "shyne": 5.5e-08, + "siddall": 5.5e-08, + "sidorov": 5.5e-08, + "sifton": 5.5e-08, + "signior": 5.5e-08, + "signorina": 5.5e-08, + "sikri": 5.5e-08, + "simcox": 5.5e-08, + "simplot": 5.5e-08, + "sirrah": 5.5e-08, + "siward": 5.5e-08, + "skala": 5.5e-08, + "skb": 5.5e-08, + "skullcandy": 5.5e-08, + "skycity": 5.5e-08, + "skylarks": 5.5e-08, + "sladen": 5.5e-08, + "slfp": 5.5e-08, + "sligh": 5.5e-08, + "smectic": 5.5e-08, + "smilingly": 5.5e-08, + "smites": 5.5e-08, + "smyly": 5.5e-08, + "snuffles": 5.5e-08, + "snuffling": 5.5e-08, + "soaping": 5.5e-08, + "soave": 5.5e-08, + "socar": 5.5e-08, + "soeur": 5.5e-08, + "softworks": 5.5e-08, + "solanges": 5.5e-08, + "soldi": 5.5e-08, + "solemnized": 5.5e-08, + "solubilization": 5.5e-08, + "sonicwall": 5.5e-08, + "soras": 5.5e-08, + "soteriology": 5.5e-08, + "soubry": 5.5e-08, + "sousuke": 5.5e-08, + "spectro": 5.5e-08, + "spellbook": 5.5e-08, + "sphalerite": 5.5e-08, + "sphero": 5.5e-08, + "spillman": 5.5e-08, + "spirometry": 5.5e-08, + "spiti": 5.5e-08, + "splendored": 5.5e-08, + "sportage": 5.5e-08, + "sportingbet": 5.5e-08, + "squirrely": 5.5e-08, + "sruthi": 5.5e-08, + "stablemates": 5.5e-08, + "stacia": 5.5e-08, + "staghorn": 5.5e-08, + "stallholders": 5.5e-08, + "stanbury": 5.5e-08, + "stann": 5.5e-08, + "stanthorpe": 5.5e-08, + "stanwix": 5.5e-08, + "statess": 5.5e-08, + "stationer": 5.5e-08, + "stemless": 5.5e-08, + "stiefel": 5.5e-08, + "stipes": 1.91e-08, + "strandings": 5.5e-08, + "stresemann": 5.5e-08, + "studding": 5.5e-08, + "stukas": 5.5e-08, + "subcontinental": 5.5e-08, + "subjectivism": 5.5e-08, + "substructures": 5.5e-08, + "sudhakar": 5.5e-08, + "sugarcoating": 5.5e-08, + "sumatera": 5.5e-08, + "summations": 5.5e-08, + "sundering": 5.5e-08, + "sundowners": 5.5e-08, + "sungkyunkwan": 5.5e-08, + "supergiants": 5.5e-08, + "supress": 5.5e-08, + "suren": 5.5e-08, + "suvorov": 5.5e-08, + "syke": 5.5e-08, + "syllabary": 5.5e-08, + "sylvian": 5.5e-08, + "synthesising": 5.5e-08, + "szechwan": 5.5e-08, + "taas": 5.5e-08, + "taiki": 5.5e-08, + "tamarin": 5.5e-08, + "tamo": 5.5e-08, + "tange": 5.5e-08, + "tankards": 5.5e-08, + "taplow": 5.5e-08, + "tappy": 5.5e-08, + "tartary": 5.5e-08, + "tauren": 5.5e-08, + "tavish": 5.5e-08, + "tdo": 5.5e-08, + "tearooms": 5.5e-08, + "teavana": 5.5e-08, + "technologic": 5.5e-08, + "teetotaller": 5.5e-08, + "tenorio": 5.5e-08, + "tenser": 5.5e-08, + "teppei": 5.5e-08, + "terhune": 5.5e-08, + "terpstra": 5.5e-08, + "terwilliger": 5.5e-08, + "tessellated": 5.5e-08, + "teter": 5.5e-08, + "teufel": 5.5e-08, + "theophanes": 5.5e-08, + "theophile": 5.5e-08, + "theosophist": 5.5e-08, + "therfore": 5.5e-08, + "thermaltake": 5.5e-08, + "theu": 5.5e-08, + "thewrap": 5.5e-08, + "thiophene": 5.5e-08, + "thiry": 5.5e-08, + "thoresby": 5.5e-08, + "thorfinn": 5.5e-08, + "thornburgh": 5.5e-08, + "thromboembolic": 5.5e-08, + "thuan": 5.5e-08, + "thuja": 5.5e-08, + "tigran": 5.5e-08, + "tinchy": 5.5e-08, + "tiptree": 5.5e-08, + "tiso": 5.5e-08, + "tiwanaku": 5.5e-08, + "todrick": 5.5e-08, + "tokarev": 5.5e-08, + "tombigbee": 5.5e-08, + "tomoyo": 5.5e-08, + "toone": 5.5e-08, + "tootsies": 5.5e-08, + "toronado": 5.5e-08, + "toucher": 5.5e-08, + "touchless": 5.5e-08, + "touchwood": 5.5e-08, + "toxicologists": 5.5e-08, + "toyboy": 5.5e-08, + "tozawa": 5.5e-08, + "tragical": 5.5e-08, + "trainload": 5.5e-08, + "trainors": 5.5e-08, + "transects": 5.5e-08, + "transgresses": 5.5e-08, + "transnationalism": 5.5e-08, + "trat": 5.5e-08, + "trec": 5.5e-08, + "treu": 5.5e-08, + "tribus": 5.5e-08, + "trichoderma": 5.5e-08, + "trifluoride": 5.5e-08, + "troller": 5.5e-08, + "trollin": 5.5e-08, + "trotwood": 5.5e-08, + "troublemaking": 5.5e-08, + "trr": 5.5e-08, + "trungpa": 5.5e-08, + "truxton": 5.5e-08, + "tskhinvali": 5.5e-08, + "tsos": 5.5e-08, + "tuberculin": 5.5e-08, + "turncoats": 5.5e-08, + "tusculum": 5.5e-08, + "typhimurium": 5.5e-08, + "tyrann": 5.5e-08, + "tyrannosaurs": 5.5e-08, + "tyrones": 5.5e-08, + "uitm": 5.5e-08, + "umer": 5.5e-08, + "unaccomplished": 5.5e-08, + "unalaq": 5.5e-08, + "uncasville": 5.5e-08, + "unclassifiable": 5.5e-08, + "unconference": 5.5e-08, + "uncontained": 5.5e-08, + "undercroft": 5.5e-08, + "uninsulated": 5.5e-08, + "unpersuasive": 5.5e-08, + "unreinforced": 5.5e-08, + "unreturned": 5.5e-08, + "unsprung": 5.5e-08, + "unsystematic": 5.5e-08, + "unties": 5.5e-08, + "upholder": 5.5e-08, + "upsidedown": 5.5e-08, + "upslope": 5.5e-08, + "urbanus": 5.5e-08, + "urbis": 5.5e-08, + "urfa": 5.5e-08, + "usccb": 5.5e-08, + "utg": 5.5e-08, + "utsunomiya": 5.5e-08, + "valanciunas": 5.5e-08, + "valdis": 5.5e-08, + "vallabhbhai": 5.5e-08, + "vandegrift": 5.5e-08, + "varadarajan": 5.5e-08, + "vegard": 5.5e-08, + "veloster": 5.5e-08, + "verrall": 5.5e-08, + "vetus": 5.5e-08, + "vieille": 5.5e-08, + "virgie": 5.5e-08, + "virginica": 5.5e-08, + "visu": 5.5e-08, + "voici": 5.5e-08, + "volkmann": 5.5e-08, + "voltaires": 5.5e-08, + "vorpal": 5.5e-08, + "vosper": 5.5e-08, + "vsu": 5.5e-08, + "vulcano": 5.5e-08, + "vzw": 5.5e-08, + "wahhh": 5.5e-08, + "wahlbergs": 5.5e-08, + "waitt": 5.5e-08, + "wakeham": 5.5e-08, + "warragul": 5.5e-08, + "wasserstein": 5.5e-08, + "watchlists": 5.5e-08, + "wayan": 5.5e-08, + "wbal": 5.5e-08, + "webtoons": 5.5e-08, + "welche": 5.5e-08, + "wellings": 5.5e-08, + "wenig": 5.5e-08, + "werd": 5.5e-08, + "wewe": 5.5e-08, + "wheaten": 5.5e-08, + "wheatons": 5.5e-08, + "whicker": 5.5e-08, + "whippoorwill": 5.5e-08, + "whirly": 5.5e-08, + "whorled": 5.5e-08, + "whyyyy": 5.5e-08, + "willunga": 5.5e-08, + "windstorms": 5.5e-08, + "winslows": 5.5e-08, + "withey": 5.5e-08, + "wolfhounds": 5.5e-08, + "wollman": 5.5e-08, + "wombwell": 5.5e-08, + "woodhill": 5.5e-08, + "woodies": 5.5e-08, + "woodring": 5.5e-08, + "workingman": 5.5e-08, + "woukd": 5.5e-08, + "wrf": 5.5e-08, + "wuhu": 5.5e-08, + "wwl": 5.5e-08, + "wyrd": 5.5e-08, + "xiangyang": 5.5e-08, + "yanda": 5.5e-08, + "yantai": 5.5e-08, + "yarr": 5.5e-08, + "yehudah": 5.5e-08, + "yemenite": 5.5e-08, + "yepes": 5.5e-08, + "yimou": 5.5e-08, + "ylvis": 5.5e-08, + "yorkies": 5.5e-08, + "yoshiyuki": 5.5e-08, + "zacharie": 5.5e-08, + "zada": 5.5e-08, + "zagged": 5.5e-08, + "zales": 5.5e-08, + "zamindari": 5.5e-08, + "zapf": 5.5e-08, + "zeeshan": 5.5e-08, + "zerk": 5.5e-08, + "zimbardo": 5.5e-08, + "zoho": 5.5e-08, + "aadvantage": 5.37e-08, + "abatements": 5.37e-08, + "abdulmutallab": 5.37e-08, + "abenaki": 5.37e-08, + "aberfeldy": 5.37e-08, + "ables": 5.37e-08, + "abrogating": 5.37e-08, + "abyad": 5.37e-08, + "abyei": 5.37e-08, + "accretive": 5.37e-08, + "acetal": 5.37e-08, + "achaia": 5.37e-08, + "acpi": 5.37e-08, + "adak": 5.37e-08, + "adalind": 5.37e-08, + "addends": 5.37e-08, + "adelante": 5.37e-08, + "adjutants": 5.37e-08, + "adonijah": 5.37e-08, + "adversus": 5.37e-08, + "aegons": 5.37e-08, + "aeroporto": 5.37e-08, + "afca": 5.37e-08, + "afrobeats": 5.37e-08, + "afterhours": 5.37e-08, + "aftershow": 5.37e-08, + "againts": 5.37e-08, + "agates": 5.37e-08, + "agenor": 5.37e-08, + "agito": 5.37e-08, + "agnosia": 5.37e-08, + "ahadith": 5.37e-08, + "ahlberg": 5.37e-08, + "aidens": 5.37e-08, + "ainsi": 5.37e-08, + "aislinn": 5.37e-08, + "ajahn": 5.37e-08, + "akureyri": 5.37e-08, + "alceste": 5.37e-08, + "alcester": 5.37e-08, + "aledo": 5.37e-08, + "aliased": 5.37e-08, + "alllllll": 5.37e-08, + "altimeters": 5.37e-08, + "alvins": 5.37e-08, + "amarok": 5.37e-08, + "amasses": 5.37e-08, + "amherstburg": 5.37e-08, + "amundson": 5.37e-08, + "anaerobes": 5.37e-08, + "anastrozole": 5.37e-08, + "ancillaries": 5.37e-08, + "aniplex": 5.37e-08, + "anm": 5.37e-08, + "anthracis": 5.37e-08, + "antistatic": 5.37e-08, + "antonello": 5.37e-08, + "apically": 5.37e-08, + "apollyon": 5.37e-08, + "applecross": 5.37e-08, + "apw": 5.37e-08, + "aql": 5.37e-08, + "aqualad": 5.37e-08, + "aquileia": 5.37e-08, + "arcadius": 5.37e-08, + "arcangel": 5.37e-08, + "ardens": 5.37e-08, + "areopagus": 5.37e-08, + "arnd": 5.37e-08, + "arnies": 5.37e-08, + "arrivederci": 5.37e-08, + "arteriosus": 5.37e-08, + "arvensis": 5.37e-08, + "ashbys": 5.37e-08, + "ashmole": 5.37e-08, + "ashour": 5.37e-08, + "assaulter": 5.37e-08, + "astrocyte": 5.37e-08, + "ated": 5.37e-08, + "athist": 5.37e-08, + "atis": 2.29e-08, + "ator": 5.37e-08, + "audax": 5.37e-08, + "audiotapes": 5.37e-08, + "augusti": 5.37e-08, + "avic": 5.37e-08, + "avifauna": 5.37e-08, + "aycliffe": 5.37e-08, + "ayelet": 5.37e-08, + "azarov": 5.37e-08, + "azu": 5.37e-08, + "babbler": 5.37e-08, + "bachan": 5.37e-08, + "bacteriostatic": 5.37e-08, + "bagno": 5.37e-08, + "bajpai": 5.37e-08, + "baldridge": 5.37e-08, + "banchory": 5.37e-08, + "bandannas": 5.37e-08, + "bandmaster": 5.37e-08, + "baraga": 5.37e-08, + "baram": 5.37e-08, + "barbels": 5.37e-08, + "bartend": 5.37e-08, + "bartolini": 5.37e-08, + "bartonella": 5.37e-08, + "bartos": 5.37e-08, + "baye": 5.37e-08, + "bdk": 5.37e-08, + "beaudesert": 5.37e-08, + "beaupre": 5.37e-08, + "bejewelled": 5.37e-08, + "bellyache": 5.37e-08, + "belshazzar": 5.37e-08, + "benayoun": 5.37e-08, + "benkei": 5.37e-08, + "berlinetta": 5.37e-08, + "berney": 5.37e-08, + "bethanie": 5.37e-08, + "bevels": 5.37e-08, + "bhaag": 5.37e-08, + "bhatta": 5.37e-08, + "bickers": 5.37e-08, + "bifurcations": 5.37e-08, + "bilking": 5.37e-08, + "billfish": 5.37e-08, + "binti": 5.37e-08, + "bipasha": 5.37e-08, + "birdlike": 5.37e-08, + "bith": 5.37e-08, + "blabbermouth": 5.37e-08, + "blackall": 5.37e-08, + "blackhearts": 5.37e-08, + "blanchette": 5.37e-08, + "blb": 5.37e-08, + "bloggs": 5.37e-08, + "bloodgood": 5.37e-08, + "blowdown": 5.37e-08, + "blox": 5.37e-08, + "bluetongue": 5.37e-08, + "boisterously": 5.37e-08, + "boisvert": 5.37e-08, + "bokhari": 5.37e-08, + "bollen": 5.37e-08, + "bonapartes": 5.37e-08, + "bope": 5.37e-08, + "boral": 5.37e-08, + "boreanaz": 5.37e-08, + "bornu": 5.37e-08, + "borth": 5.37e-08, + "bosu": 5.37e-08, + "boum": 5.37e-08, + "bowdler": 5.37e-08, + "boysenberry": 5.37e-08, + "brahmanas": 5.37e-08, + "brainier": 5.37e-08, + "brashness": 5.37e-08, + "brenan": 5.37e-08, + "bribie": 5.37e-08, + "broeck": 5.37e-08, + "bronsons": 5.37e-08, + "bronzy": 5.37e-08, + "bruschi": 5.37e-08, + "btd": 5.37e-08, + "btts": 5.37e-08, + "bugfix": 5.37e-08, + "bullous": 5.37e-08, + "bullshitters": 5.37e-08, + "burble": 5.37e-08, + "burmah": 5.37e-08, + "burzynski": 5.37e-08, + "bushby": 5.37e-08, + "bwb": 5.37e-08, + "cabdriver": 5.37e-08, + "cacho": 5.37e-08, + "cahaba": 5.37e-08, + "cak": 5.37e-08, + "calenders": 5.37e-08, + "callinan": 5.37e-08, + "calver": 5.37e-08, + "camh": 5.37e-08, + "canham": 5.37e-08, + "canids": 5.37e-08, + "canin": 5.37e-08, + "cannings": 5.37e-08, + "canoeist": 5.37e-08, + "cantone": 5.37e-08, + "capet": 5.37e-08, + "caradoc": 5.37e-08, + "caravel": 5.37e-08, + "caravelle": 5.37e-08, + "carburettors": 5.37e-08, + "carcetti": 5.37e-08, + "caria": 5.37e-08, + "caridad": 5.37e-08, + "carnally": 5.37e-08, + "carnivalesque": 5.37e-08, + "carpools": 5.37e-08, + "carricks": 5.37e-08, + "cartmel": 5.37e-08, + "cascio": 5.37e-08, + "caslon": 5.37e-08, + "cassegrain": 5.37e-08, + "catgirl": 5.37e-08, + "catherina": 5.37e-08, + "cathey": 5.37e-08, + "catoosa": 5.37e-08, + "cbfc": 5.37e-08, + "cchs": 5.37e-08, + "ccrc": 5.37e-08, + "cctvs": 5.37e-08, + "ceca": 5.37e-08, + "celestino": 5.37e-08, + "centrosome": 5.37e-08, + "certa": 5.37e-08, + "cezar": 5.37e-08, + "chaloner": 5.37e-08, + "chapala": 5.37e-08, + "charette": 5.37e-08, + "charlamagne": 5.37e-08, + "cheesemaking": 5.37e-08, + "cheezy": 5.37e-08, + "chemiluminescence": 5.37e-08, + "chernoff": 5.37e-08, + "cherubini": 5.37e-08, + "chesson": 5.37e-08, + "chieftaincy": 5.37e-08, + "chiklis": 5.37e-08, + "childminder": 5.37e-08, + "choirboys": 5.37e-08, + "choppin": 5.37e-08, + "chuns": 5.37e-08, + "cifuentes": 5.37e-08, + "cinephiles": 5.37e-08, + "cinerama": 5.37e-08, + "clanger": 5.37e-08, + "clausius": 5.37e-08, + "clerke": 5.37e-08, + "clutters": 5.37e-08, + "cmte": 5.37e-08, + "cnooc": 5.37e-08, + "cnu": 5.37e-08, + "codecademy": 5.37e-08, + "cogeco": 5.37e-08, + "colerain": 5.37e-08, + "colleens": 5.37e-08, + "collines": 5.37e-08, + "colling": 5.37e-08, + "collocations": 5.37e-08, + "colourfully": 5.37e-08, + "columbas": 5.37e-08, + "comilla": 5.37e-08, + "compendious": 5.37e-08, + "completa": 5.37e-08, + "computability": 5.37e-08, + "comunidad": 5.37e-08, + "conal": 5.37e-08, + "condemnable": 5.37e-08, + "configurational": 5.37e-08, + "conodont": 5.37e-08, + "consi": 5.37e-08, + "consolidator": 5.37e-08, + "copacetic": 5.37e-08, + "copayments": 5.37e-08, + "coracle": 5.37e-08, + "corio": 5.37e-08, + "corridos": 5.37e-08, + "cosines": 5.37e-08, + "cosmologies": 5.37e-08, + "couillard": 5.37e-08, + "covenanted": 5.37e-08, + "cowpea": 5.37e-08, + "cozied": 5.37e-08, + "cpusa": 5.37e-08, + "creamers": 5.37e-08, + "credi": 5.37e-08, + "creedon": 5.37e-08, + "cregg": 5.37e-08, + "crinoid": 5.37e-08, + "crockford": 5.37e-08, + "crofter": 5.37e-08, + "cruachan": 5.37e-08, + "cryptolocker": 5.37e-08, + "cudis": 5.37e-08, + "culham": 5.37e-08, + "cundy": 5.37e-08, + "cuphead": 5.37e-08, + "curcio": 5.37e-08, + "curlews": 5.37e-08, + "custodes": 5.37e-08, + "cyanate": 5.37e-08, + "cyo": 5.37e-08, + "dabiq": 5.37e-08, + "dainik": 5.37e-08, + "dalli": 5.37e-08, + "damer": 5.37e-08, + "danilov": 5.37e-08, + "danker": 5.37e-08, + "dantzig": 5.37e-08, + "dapa": 5.37e-08, + "dargan": 5.37e-08, + "darky": 5.37e-08, + "darlan": 5.37e-08, + "daura": 5.37e-08, + "dayer": 5.37e-08, + "debuff": 5.37e-08, + "declensions": 5.37e-08, + "deepti": 5.37e-08, + "deflator": 5.37e-08, + "deliberates": 5.37e-08, + "demetria": 5.37e-08, + "denialists": 5.37e-08, + "deniliquin": 5.37e-08, + "deontology": 5.37e-08, + "dependably": 5.37e-08, + "depolarizing": 5.37e-08, + "deponent": 5.37e-08, + "destructoid": 5.37e-08, + "dettol": 5.37e-08, + "dewing": 5.37e-08, + "dexedrine": 5.37e-08, + "dialectically": 5.37e-08, + "dicke": 5.37e-08, + "diegetic": 5.37e-08, + "diffs": 5.37e-08, + "digvijay": 5.37e-08, + "dillane": 5.37e-08, + "dilutive": 5.37e-08, + "dinesen": 5.37e-08, + "dingleberry": 5.37e-08, + "dinoflagellate": 5.37e-08, + "disallowance": 5.37e-08, + "disempowerment": 5.37e-08, + "diyas": 5.37e-08, + "djr": 5.37e-08, + "dodoma": 5.37e-08, + "dogsled": 5.37e-08, + "dolgopolov": 5.37e-08, + "doli": 5.37e-08, + "dolphy": 5.37e-08, + "doodlebug": 5.37e-08, + "dounreay": 5.37e-08, + "dramatizations": 5.37e-08, + "drell": 5.37e-08, + "drf": 5.37e-08, + "driers": 5.37e-08, + "drk": 5.37e-08, + "droped": 5.37e-08, + "drummoyne": 5.37e-08, + "drw": 5.37e-08, + "dullards": 5.37e-08, + "dundrum": 5.37e-08, + "dunnes": 5.37e-08, + "dushku": 5.37e-08, + "duta": 5.37e-08, + "dutchie": 5.37e-08, + "dyslipidemia": 5.37e-08, + "dysthymia": 5.37e-08, + "echeverria": 5.37e-08, + "eckman": 5.37e-08, + "edhi": 5.37e-08, + "ehv": 5.37e-08, + "electrostatically": 5.37e-08, + "eleusinian": 5.37e-08, + "elex": 5.37e-08, + "elop": 5.37e-08, + "elv": 5.37e-08, + "emoto": 5.37e-08, + "emulsify": 5.37e-08, + "endemics": 5.37e-08, + "engorgement": 5.37e-08, + "enns": 5.37e-08, + "enticingly": 5.37e-08, + "epiphanes": 5.37e-08, + "epirb": 5.37e-08, + "ergs": 5.37e-08, + "escott": 5.37e-08, + "esker": 5.37e-08, + "espanto": 5.37e-08, + "estilo": 5.37e-08, + "ethnos": 5.37e-08, + "eulers": 5.37e-08, + "euthanizing": 5.37e-08, + "eversley": 5.37e-08, + "excipients": 5.37e-08, + "expensing": 5.37e-08, + "experimentations": 5.37e-08, + "experince": 5.37e-08, + "explants": 5.37e-08, + "explo": 5.37e-08, + "expropriating": 5.37e-08, + "extrapolates": 5.37e-08, + "extratropical": 5.37e-08, + "eyewash": 5.37e-08, + "ezzat": 5.37e-08, + "factset": 5.37e-08, + "falsifies": 5.37e-08, + "farhi": 5.37e-08, + "fasces": 5.37e-08, + "fastly": 5.37e-08, + "fcv": 5.37e-08, + "featherbed": 5.37e-08, + "feen": 5.37e-08, + "felicitas": 5.37e-08, + "femoris": 5.37e-08, + "fenelon": 5.37e-08, + "fenny": 5.37e-08, + "fertilising": 5.37e-08, + "feuerstein": 5.37e-08, + "feuille": 5.37e-08, + "fgr": 5.37e-08, + "fiamma": 5.37e-08, + "fiberoptic": 5.37e-08, + "ficci": 5.37e-08, + "ficken": 5.37e-08, + "fierstein": 5.37e-08, + "filppula": 5.37e-08, + "finepix": 5.37e-08, + "finito": 5.37e-08, + "firstfruits": 5.37e-08, + "fishtown": 5.37e-08, + "flameless": 5.37e-08, + "flammarion": 5.37e-08, + "flatout": 5.37e-08, + "fluker": 5.37e-08, + "flyback": 5.37e-08, + "fodors": 5.37e-08, + "footboard": 5.37e-08, + "footrace": 5.37e-08, + "footwell": 5.37e-08, + "forsooth": 5.37e-08, + "forswear": 5.37e-08, + "forsyths": 5.37e-08, + "foti": 5.37e-08, + "foxley": 5.37e-08, + "foxsports": 5.37e-08, + "fpso": 5.37e-08, + "framebuffer": 5.37e-08, + "fraxinus": 5.37e-08, + "frierson": 5.37e-08, + "fronde": 5.37e-08, + "fudgy": 5.37e-08, + "fujimura": 5.37e-08, + "fuku": 5.37e-08, + "fullarton": 5.37e-08, + "fullfill": 5.37e-08, + "funtastic": 5.37e-08, + "furrowing": 5.37e-08, + "fuser": 5.37e-08, + "fuster": 5.37e-08, + "fuwa": 5.37e-08, + "fuzzed": 5.37e-08, + "fuzzier": 5.37e-08, + "fyf": 5.37e-08, + "gads": 5.37e-08, + "gallina": 5.37e-08, + "galvanometer": 5.37e-08, + "gangsterism": 5.37e-08, + "gawping": 5.37e-08, + "gdd": 5.37e-08, + "gegenwart": 5.37e-08, + "generales": 5.37e-08, + "generalizability": 5.37e-08, + "gentles": 5.37e-08, + "genuity": 5.37e-08, + "genz": 5.37e-08, + "geodude": 5.37e-08, + "gertrudis": 5.37e-08, + "getem": 5.37e-08, + "gidi": 5.37e-08, + "ginna": 5.37e-08, + "givi": 5.37e-08, + "gladioli": 5.37e-08, + "glaeser": 5.37e-08, + "glargine": 5.37e-08, + "gloomier": 5.37e-08, + "gloopy": 5.37e-08, + "glt": 5.37e-08, + "gluckman": 5.37e-08, + "goldmark": 5.37e-08, + "gorget": 5.37e-08, + "gour": 5.37e-08, + "governo": 5.37e-08, + "gpb": 5.37e-08, + "gpcrs": 5.37e-08, + "grackles": 5.37e-08, + "gradings": 5.37e-08, + "graffitied": 5.37e-08, + "groupme": 5.37e-08, + "grumpiness": 5.37e-08, + "guaymas": 5.37e-08, + "gular": 5.37e-08, + "guntersville": 5.37e-08, + "gutt": 5.37e-08, + "haack": 5.37e-08, + "hadlee": 5.37e-08, + "hageman": 5.37e-08, + "hagg": 5.37e-08, + "halkett": 5.37e-08, + "hallahan": 5.37e-08, + "hamburglar": 5.37e-08, + "hammed": 5.37e-08, + "handpick": 5.37e-08, + "hangu": 5.37e-08, + "hanly": 5.37e-08, + "hanzal": 5.37e-08, + "haptics": 5.37e-08, + "hardshell": 5.37e-08, + "hatice": 5.37e-08, + "hawkey": 5.37e-08, + "haynesworth": 5.37e-08, + "hazlehurst": 5.37e-08, + "hdtvs": 5.37e-08, + "headhunted": 5.37e-08, + "hearkens": 5.37e-08, + "heimat": 5.37e-08, + "helion": 5.37e-08, + "hematopoiesis": 5.37e-08, + "hematoxylin": 5.37e-08, + "hemicellulose": 5.37e-08, + "hemostatic": 5.37e-08, + "henschel": 5.37e-08, + "heterosexism": 5.37e-08, + "heysel": 5.37e-08, + "heyy": 5.37e-08, + "hideko": 5.37e-08, + "hieu": 5.37e-08, + "highbridge": 5.37e-08, + "highwater": 5.37e-08, + "hih": 5.37e-08, + "hillhead": 5.37e-08, + "himeji": 5.37e-08, + "hink": 5.37e-08, + "hiranandani": 5.37e-08, + "hirschhorn": 5.37e-08, + "hkg": 5.37e-08, + "hoaxer": 5.37e-08, + "hobe": 5.37e-08, + "hocker": 5.37e-08, + "hodl": 5.37e-08, + "holmquist": 5.37e-08, + "holyshit": 5.37e-08, + "homeopath": 5.37e-08, + "homepages": 5.37e-08, + "hominis": 5.37e-08, + "hoopoe": 5.37e-08, + "hopedale": 5.37e-08, + "hornpipe": 5.37e-08, + "horr": 5.37e-08, + "hotta": 5.37e-08, + "howze": 5.37e-08, + "huckabees": 5.37e-08, + "huggin": 5.37e-08, + "huisman": 5.37e-08, + "humala": 5.37e-08, + "hundo": 5.37e-08, + "hunn": 5.37e-08, + "hurlburt": 5.37e-08, + "hydrologists": 5.37e-08, + "hypervelocity": 5.37e-08, + "ibrahimovics": 5.37e-08, + "icca": 5.37e-08, + "igy": 5.37e-08, + "iiit": 5.37e-08, + "illumined": 5.37e-08, + "ilyasova": 5.37e-08, + "imbruglia": 5.37e-08, + "immolate": 5.37e-08, + "immorally": 5.37e-08, + "impecunious": 5.37e-08, + "impoundments": 5.37e-08, + "inarguable": 5.37e-08, + "incandescence": 5.37e-08, + "incentivising": 5.37e-08, + "infinix": 5.37e-08, + "infocomm": 5.37e-08, + "ingratiated": 5.37e-08, + "inhalants": 5.37e-08, + "innsmouth": 5.37e-08, + "insted": 5.37e-08, + "internode": 5.37e-08, + "intraoral": 5.37e-08, + "inver": 5.37e-08, + "iocs": 5.37e-08, + "irrecoverable": 5.37e-08, + "isen": 5.37e-08, + "isma": 5.37e-08, + "ispr": 5.37e-08, + "italiani": 5.37e-08, + "itouch": 5.37e-08, + "iwould": 5.37e-08, + "izak": 5.37e-08, + "jaci": 5.37e-08, + "jacquelin": 5.37e-08, + "jakobsen": 5.37e-08, + "jamali": 5.37e-08, + "jameer": 5.37e-08, + "janez": 5.37e-08, + "janny": 5.37e-08, + "javafx": 5.37e-08, + "jdl": 5.37e-08, + "jec": 5.37e-08, + "jeezus": 5.37e-08, + "jelle": 5.37e-08, + "jellico": 5.37e-08, + "jerwood": 5.37e-08, + "jetlagged": 5.37e-08, + "jewitt": 5.37e-08, + "jiggers": 5.37e-08, + "jij": 5.37e-08, + "jika": 5.37e-08, + "jimena": 5.37e-08, + "jobin": 5.37e-08, + "jonesville": 5.37e-08, + "jonglei": 5.37e-08, + "jorma": 5.37e-08, + "jth": 5.37e-08, + "jubilantly": 5.37e-08, + "julii": 5.37e-08, + "juta": 5.37e-08, + "kaaya": 5.37e-08, + "kabi": 5.37e-08, + "kahoot": 5.37e-08, + "kaid": 5.37e-08, + "kaio": 5.37e-08, + "kalidasa": 5.37e-08, + "kalorama": 5.37e-08, + "kamba": 5.37e-08, + "kansa": 5.37e-08, + "kapila": 5.37e-08, + "karaite": 5.37e-08, + "kathir": 5.37e-08, + "katter": 5.37e-08, + "kayseri": 5.37e-08, + "kck": 5.37e-08, + "keay": 5.37e-08, + "kehinde": 5.37e-08, + "kellar": 5.37e-08, + "kendras": 5.37e-08, + "kenelm": 5.37e-08, + "kerrick": 5.37e-08, + "keytar": 5.37e-08, + "keziah": 5.37e-08, + "khameneis": 5.37e-08, + "kheer": 5.37e-08, + "kievs": 5.37e-08, + "kildas": 5.37e-08, + "kilis": 5.37e-08, + "kilted": 5.37e-08, + "kingsolver": 5.37e-08, + "kinne": 5.37e-08, + "kinzer": 5.37e-08, + "kirribilli": 5.37e-08, + "kishen": 5.37e-08, + "kizuna": 5.37e-08, + "klosterman": 5.37e-08, + "klute": 5.37e-08, + "knw": 5.37e-08, + "koetter": 5.37e-08, + "kombu": 5.37e-08, + "konys": 5.37e-08, + "kovner": 5.37e-08, + "kpcc": 5.37e-08, + "kramatorsk": 5.37e-08, + "krister": 5.37e-08, + "krutch": 5.37e-08, + "kuczynski": 5.37e-08, + "kulu": 5.37e-08, + "kurenai": 5.37e-08, + "kvp": 5.37e-08, + "ladislav": 5.37e-08, + "lafond": 5.37e-08, + "lahaye": 5.37e-08, + "lahoud": 5.37e-08, + "lamma": 5.37e-08, + "landside": 5.37e-08, + "langage": 5.37e-08, + "laphroaig": 5.37e-08, + "lasley": 5.37e-08, + "lasswell": 5.37e-08, + "laureen": 5.37e-08, + "lavina": 5.37e-08, + "laxalt": 5.37e-08, + "layabouts": 5.37e-08, + "laylee": 5.37e-08, + "lcu": 5.37e-08, + "learnable": 5.37e-08, + "leauge": 5.37e-08, + "lecher": 5.37e-08, + "leep": 5.37e-08, + "leight": 5.37e-08, + "leora": 5.37e-08, + "lepus": 5.37e-08, + "letrozole": 5.37e-08, + "lgbts": 5.37e-08, + "lgv": 5.37e-08, + "liaised": 5.37e-08, + "liberalise": 5.37e-08, + "liebknecht": 5.37e-08, + "ligh": 5.37e-08, + "liliths": 5.37e-08, + "lindi": 5.37e-08, + "lindqvist": 5.37e-08, + "lipe": 5.37e-08, + "lippie": 5.37e-08, + "lititz": 5.37e-08, + "lks": 5.37e-08, + "loctite": 5.37e-08, + "loganville": 5.37e-08, + "longships": 5.37e-08, + "longyearbyen": 5.37e-08, + "loredana": 5.37e-08, + "lousiana": 5.37e-08, + "lowey": 5.37e-08, + "lro": 5.37e-08, + "ltu": 5.37e-08, + "lubov": 5.37e-08, + "lulworth": 5.37e-08, + "lunette": 5.37e-08, + "lustration": 5.37e-08, + "lutetia": 5.37e-08, + "lutfi": 5.37e-08, + "lutsenko": 5.37e-08, + "luxton": 5.37e-08, + "lya": 5.37e-08, + "lycian": 5.37e-08, + "lyonne": 5.37e-08, + "lyotard": 5.37e-08, + "lysaght": 5.37e-08, + "lyth": 5.37e-08, + "machiko": 5.37e-08, + "mactan": 5.37e-08, + "madalyn": 5.37e-08, + "maff": 5.37e-08, + "magnanimously": 5.37e-08, + "magnier": 5.37e-08, + "magrath": 5.37e-08, + "maguey": 5.37e-08, + "mahlangu": 5.37e-08, + "maira": 5.37e-08, + "maiya": 5.37e-08, + "majewski": 5.37e-08, + "majorette": 5.37e-08, + "maknae": 5.37e-08, + "makris": 5.37e-08, + "maksym": 5.37e-08, + "mammalogy": 5.37e-08, + "manahan": 5.37e-08, + "mandera": 5.37e-08, + "mandragora": 5.37e-08, + "mantilla": 5.37e-08, + "manute": 5.37e-08, + "marcato": 5.37e-08, + "marchionne": 5.37e-08, + "mardon": 5.37e-08, + "maresca": 5.37e-08, + "marginata": 5.37e-08, + "marham": 5.37e-08, + "mariannes": 5.37e-08, + "marienbad": 5.37e-08, + "masseuses": 5.37e-08, + "mavor": 5.37e-08, + "maxpreps": 5.37e-08, + "mayve": 5.37e-08, + "mcbeth": 5.37e-08, + "mcclusky": 5.37e-08, + "mcewans": 5.37e-08, + "mcfc": 5.37e-08, + "mcgowen": 5.37e-08, + "mcparland": 5.37e-08, + "meadowhall": 5.37e-08, + "meam": 5.37e-08, + "megadrive": 5.37e-08, + "megaforce": 5.37e-08, + "megaprojects": 5.37e-08, + "meiklejohn": 5.37e-08, + "meitner": 5.37e-08, + "melanson": 5.37e-08, + "melena": 5.37e-08, + "melitta": 5.37e-08, + "mellons": 5.37e-08, + "meloni": 5.37e-08, + "mendler": 5.37e-08, + "mercaptan": 5.37e-08, + "meriweather": 5.37e-08, + "merri": 5.37e-08, + "metalloproteinase": 5.37e-08, + "metaverse": 5.37e-08, + "metaxas": 5.37e-08, + "meteo": 5.37e-08, + "metes": 5.37e-08, + "metoclopramide": 5.37e-08, + "mickael": 5.37e-08, + "mignonette": 5.37e-08, + "milage": 5.37e-08, + "millipore": 5.37e-08, + "minoring": 5.37e-08, + "minox": 5.37e-08, + "mirfield": 5.37e-08, + "misattributed": 5.37e-08, + "mischka": 5.37e-08, + "missys": 5.37e-08, + "mithun": 5.37e-08, + "mitro": 5.37e-08, + "miyabi": 5.37e-08, + "mkhi": 5.37e-08, + "mmw": 5.37e-08, + "molder": 5.37e-08, + "monat": 5.37e-08, + "monopolists": 5.37e-08, + "montecarlo": 5.37e-08, + "montella": 5.37e-08, + "montiel": 5.37e-08, + "mooloolaba": 5.37e-08, + "moret": 5.37e-08, + "morganite": 5.37e-08, + "morphometric": 5.37e-08, + "mortes": 5.37e-08, + "morus": 5.37e-08, + "moston": 5.37e-08, + "mucci": 5.37e-08, + "mundos": 5.37e-08, + "muswellbrook": 5.37e-08, + "myelinated": 5.37e-08, + "myeloproliferative": 5.37e-08, + "naaah": 5.37e-08, + "nabarro": 5.37e-08, + "nait": 5.37e-08, + "nakao": 5.37e-08, + "nakatomi": 5.37e-08, + "nake": 5.37e-08, + "namida": 5.37e-08, + "nandrolone": 5.37e-08, + "nanograms": 5.37e-08, + "narr": 5.37e-08, + "narrabeen": 5.37e-08, + "nasw": 5.37e-08, + "nathi": 5.37e-08, + "natividad": 5.37e-08, + "nattering": 5.37e-08, + "navvies": 5.37e-08, + "nayanthara": 5.37e-08, + "nces": 5.37e-08, + "neafl": 5.37e-08, + "nelms": 5.37e-08, + "nepos": 5.37e-08, + "netty": 5.37e-08, + "neurones": 5.37e-08, + "newswires": 5.37e-08, + "nhrc": 5.37e-08, + "nicasio": 5.37e-08, + "nightspot": 5.37e-08, + "nightspots": 5.37e-08, + "nihr": 5.37e-08, + "nimbys": 5.37e-08, + "nishiyama": 5.37e-08, + "nmf": 5.37e-08, + "nmw": 5.37e-08, + "nno": 5.37e-08, + "nois": 5.37e-08, + "noninterest": 5.37e-08, + "nontechnical": 5.37e-08, + "ntnu": 5.37e-08, + "nubuck": 5.37e-08, + "nucleases": 5.37e-08, + "nud": 5.37e-08, + "nulled": 5.37e-08, + "nullius": 5.37e-08, + "nuwara": 5.37e-08, + "nwfp": 5.37e-08, + "nyanga": 5.37e-08, + "nyrb": 5.37e-08, + "ogroats": 5.37e-08, + "oai": 5.37e-08, + "obb": 5.37e-08, + "obiter": 5.37e-08, + "oby": 5.37e-08, + "oculi": 5.37e-08, + "odaiba": 5.37e-08, + "oddsmakers": 5.37e-08, + "officinale": 5.37e-08, + "oht": 5.37e-08, + "okk": 5.37e-08, + "okoro": 5.37e-08, + "olding": 5.37e-08, + "oleaginous": 5.37e-08, + "oleson": 5.37e-08, + "oligomeric": 5.37e-08, + "olympe": 5.37e-08, + "olympiads": 5.37e-08, + "omigod": 5.37e-08, + "omiya": 5.37e-08, + "omkara": 5.37e-08, + "ondes": 5.37e-08, + "onishi": 5.37e-08, + "onslaughts": 5.37e-08, + "oopsy": 5.37e-08, + "opitz": 5.37e-08, + "oppenheimers": 5.37e-08, + "organoleptic": 5.37e-08, + "organon": 5.37e-08, + "orison": 5.37e-08, + "orlowski": 5.37e-08, + "orren": 5.37e-08, + "osos": 5.37e-08, + "ouellet": 5.37e-08, + "ound": 5.37e-08, + "oundle": 5.37e-08, + "outgrows": 5.37e-08, + "outlanders": 5.37e-08, + "overbeck": 5.37e-08, + "overby": 5.37e-08, + "overemphasize": 5.37e-08, + "ovulatory": 5.37e-08, + "owu": 5.37e-08, + "oxidizers": 5.37e-08, + "pablum": 5.37e-08, + "pachelbel": 5.37e-08, + "pandaria": 5.37e-08, + "panhandler": 5.37e-08, + "panne": 5.37e-08, + "panta": 5.37e-08, + "pantoja": 5.37e-08, + "papaw": 5.37e-08, + "paracas": 5.37e-08, + "parlophone": 5.37e-08, + "parmer": 5.37e-08, + "parviz": 5.37e-08, + "pasang": 5.37e-08, + "paschall": 5.37e-08, + "pasquier": 5.37e-08, + "patency": 5.37e-08, + "patr": 5.37e-08, + "patrollers": 5.37e-08, + "payscale": 5.37e-08, + "pazuzu": 5.37e-08, + "pectorals": 5.37e-08, + "pelagia": 5.37e-08, + "peluso": 5.37e-08, + "peole": 5.37e-08, + "peper": 5.37e-08, + "perio": 5.37e-08, + "personalty": 5.37e-08, + "perspicacity": 5.37e-08, + "pesca": 5.37e-08, + "petermann": 5.37e-08, + "petrine": 5.37e-08, + "pgf": 5.37e-08, + "phair": 5.37e-08, + "phm": 5.37e-08, + "physick": 5.37e-08, + "piastres": 5.37e-08, + "pickier": 5.37e-08, + "pide": 5.37e-08, + "pinboard": 5.37e-08, + "pinn": 5.37e-08, + "pinnately": 5.37e-08, + "pinole": 5.37e-08, + "pipping": 5.37e-08, + "pivotally": 5.37e-08, + "platypuses": 5.37e-08, + "plaut": 5.37e-08, + "pleader": 5.37e-08, + "plumeria": 5.37e-08, + "plunders": 5.37e-08, + "poeta": 5.37e-08, + "polignac": 5.37e-08, + "polin": 5.37e-08, + "politische": 5.37e-08, + "poltergeists": 5.37e-08, + "polymerisation": 5.37e-08, + "polyploidy": 5.37e-08, + "polytech": 5.37e-08, + "polyurethanes": 5.37e-08, + "pooka": 5.37e-08, + "poorna": 5.37e-08, + "poppi": 5.37e-08, + "porras": 5.37e-08, + "portmore": 5.37e-08, + "positivists": 5.37e-08, + "potala": 5.37e-08, + "poupon": 5.37e-08, + "practica": 5.37e-08, + "prandtl": 5.37e-08, + "precentor": 5.37e-08, + "predicable": 5.37e-08, + "preempts": 5.37e-08, + "pregabalin": 5.37e-08, + "prester": 5.37e-08, + "prety": 5.37e-08, + "primadonna": 5.37e-08, + "primeknit": 5.37e-08, + "princ": 5.37e-08, + "pritchards": 5.37e-08, + "probated": 5.37e-08, + "propagandizing": 5.37e-08, + "pshe": 5.37e-08, + "puchong": 5.37e-08, + "pudendal": 5.37e-08, + "puigdemont": 5.37e-08, + "pule": 5.37e-08, + "pullmans": 5.37e-08, + "pumpkinhead": 5.37e-08, + "purcellville": 5.37e-08, + "purefoods": 5.37e-08, + "pwease": 5.37e-08, + "pyridoxal": 5.37e-08, + "quadratus": 5.37e-08, + "quandt": 5.37e-08, + "quickstart": 5.37e-08, + "quietened": 5.37e-08, + "quique": 5.37e-08, + "rache": 5.37e-08, + "raffy": 5.37e-08, + "rafinesque": 5.37e-08, + "raghunath": 5.37e-08, + "rahel": 5.37e-08, + "rahl": 5.37e-08, + "rainha": 5.37e-08, + "ramiz": 5.37e-08, + "randazzo": 5.37e-08, + "randolf": 5.37e-08, + "ranjeet": 5.37e-08, + "ransdell": 5.37e-08, + "rarebit": 5.37e-08, + "rashidi": 5.37e-08, + "ravenously": 5.37e-08, + "rayong": 5.37e-08, + "reactively": 5.37e-08, + "reapplication": 5.37e-08, + "reca": 5.37e-08, + "recaptcha": 5.37e-08, + "reciter": 5.37e-08, + "recondite": 5.37e-08, + "recurrently": 5.37e-08, + "redfords": 5.37e-08, + "reefers": 5.37e-08, + "reforged": 5.37e-08, + "regrown": 5.37e-08, + "regus": 5.37e-08, + "reichmann": 5.37e-08, + "reigen": 5.37e-08, + "reinecke": 5.37e-08, + "reino": 5.37e-08, + "reka": 5.37e-08, + "remanding": 5.37e-08, + "remarque": 5.37e-08, + "remigio": 5.37e-08, + "remoter": 5.37e-08, + "removably": 5.37e-08, + "rendus": 5.37e-08, + "renegotiations": 5.37e-08, + "renovators": 5.37e-08, + "repopulating": 5.37e-08, + "requite": 5.37e-08, + "respons": 5.37e-08, + "responsa": 5.37e-08, + "reverbnation": 5.37e-08, + "revi": 5.37e-08, + "rewari": 5.37e-08, + "rexburg": 5.37e-08, + "rgn": 5.37e-08, + "rhema": 5.37e-08, + "rhodamine": 5.37e-08, + "riccarton": 5.37e-08, + "rickettsia": 5.37e-08, + "riewoldt": 5.37e-08, + "rinder": 5.37e-08, + "roatan": 5.37e-08, + "robertshaw": 5.37e-08, + "rodda": 5.37e-08, + "rodrigos": 5.37e-08, + "roleplayer": 5.37e-08, + "romanum": 5.37e-08, + "romita": 5.37e-08, + "rompuy": 5.37e-08, + "roser": 5.37e-08, + "roskill": 5.37e-08, + "rostropovich": 5.37e-08, + "rotarians": 5.37e-08, + "rothfuss": 5.37e-08, + "roun": 5.37e-08, + "roundels": 5.37e-08, + "routemaster": 5.37e-08, + "rowden": 5.37e-08, + "rowhouse": 5.37e-08, + "rth": 5.37e-08, + "rubbished": 5.37e-08, + "rucking": 5.37e-08, + "rugose": 5.37e-08, + "ruki": 5.37e-08, + "sabbagh": 5.37e-08, + "sabbah": 5.37e-08, + "sachar": 5.37e-08, + "sadak": 5.37e-08, + "sadia": 5.37e-08, + "safir": 5.37e-08, + "saft": 5.37e-08, + "sains": 5.37e-08, + "salahs": 5.37e-08, + "salehs": 5.37e-08, + "salmonds": 5.37e-08, + "saluki": 5.37e-08, + "samin": 5.37e-08, + "sanad": 5.37e-08, + "sandin": 5.37e-08, + "sangar": 5.37e-08, + "santurce": 5.37e-08, + "sard": 5.37e-08, + "sardo": 5.37e-08, + "sarg": 5.37e-08, + "sartor": 5.37e-08, + "satchmo": 5.37e-08, + "satur": 5.37e-08, + "savini": 5.37e-08, + "scavo": 5.37e-08, + "scheveningen": 5.37e-08, + "schober": 5.37e-08, + "schol": 5.37e-08, + "schone": 5.37e-08, + "schreber": 5.37e-08, + "schuck": 5.37e-08, + "schulich": 5.37e-08, + "scintigraphy": 5.37e-08, + "scitech": 5.37e-08, + "scrawling": 5.37e-08, + "scriptorium": 5.37e-08, + "scrollwork": 5.37e-08, + "sdks": 5.37e-08, + "sdrs": 5.37e-08, + "seaborg": 5.37e-08, + "seafield": 5.37e-08, + "seales": 5.37e-08, + "seatback": 5.37e-08, + "sebs": 5.37e-08, + "sebas": 5.37e-08, + "seborrheic": 5.37e-08, + "secchi": 5.37e-08, + "secco": 5.37e-08, + "seigniorage": 5.37e-08, + "seimei": 5.37e-08, + "seines": 5.37e-08, + "seismographs": 5.37e-08, + "sekhar": 5.37e-08, + "selam": 5.37e-08, + "semaine": 5.37e-08, + "sendo": 5.37e-08, + "sensationalize": 5.37e-08, + "seraphin": 5.37e-08, + "seres": 5.37e-08, + "servus": 5.37e-08, + "seshadri": 5.37e-08, + "sesi": 5.37e-08, + "sethe": 5.37e-08, + "sextons": 5.37e-08, + "shadowplay": 5.37e-08, + "shaeffer": 5.37e-08, + "shanahans": 5.37e-08, + "shawinigan": 5.37e-08, + "shenoy": 5.37e-08, + "sherrard": 5.37e-08, + "shiela": 5.37e-08, + "shillington": 5.37e-08, + "shirl": 5.37e-08, + "shitbird": 5.37e-08, + "shivery": 5.37e-08, + "shoebridge": 5.37e-08, + "shorebird": 5.37e-08, + "shotgunning": 5.37e-08, + "shoyu": 5.37e-08, + "shumlin": 5.37e-08, + "sieger": 5.37e-08, + "silbert": 5.37e-08, + "silchar": 5.37e-08, + "silts": 5.37e-08, + "simulink": 5.37e-08, + "singapura": 5.37e-08, + "singlish": 5.37e-08, + "siris": 3.98e-08, + "sissons": 5.37e-08, + "sisto": 5.37e-08, + "sivananda": 5.37e-08, + "sivas": 5.37e-08, + "sixto": 5.37e-08, + "sja": 5.37e-08, + "skedaddle": 5.37e-08, + "skeezy": 5.37e-08, + "sketchpad": 5.37e-08, + "skinwalker": 5.37e-08, + "skipp": 5.37e-08, + "slighting": 5.37e-08, + "slingerland": 5.37e-08, + "smallholdings": 5.37e-08, + "smitha": 5.37e-08, + "smoothbore": 5.37e-08, + "smoulder": 5.37e-08, + "snax": 5.37e-08, + "snellville": 5.37e-08, + "snowcapped": 5.37e-08, + "snowfields": 5.37e-08, + "soarin": 5.37e-08, + "socioeconomics": 5.37e-08, + "socotra": 5.37e-08, + "soest": 5.37e-08, + "sokolowski": 5.37e-08, + "somchai": 5.37e-08, + "sorkins": 5.37e-08, + "sorna": 5.37e-08, + "souse": 5.37e-08, + "soused": 5.37e-08, + "sousse": 5.37e-08, + "southerns": 5.37e-08, + "soyeon": 5.37e-08, + "spaghettios": 5.37e-08, + "spea": 5.37e-08, + "spectaculars": 5.37e-08, + "spectrogram": 5.37e-08, + "speedskating": 5.37e-08, + "speidel": 5.37e-08, + "spellcasting": 5.37e-08, + "spiess": 5.37e-08, + "spiner": 5.37e-08, + "spinifex": 5.37e-08, + "spj": 5.37e-08, + "spoilsport": 5.37e-08, + "spoked": 5.37e-08, + "sportbike": 5.37e-08, + "sprewell": 5.37e-08, + "sprigg": 5.37e-08, + "staffroom": 5.37e-08, + "stanozolol": 5.37e-08, + "stanway": 5.37e-08, + "statens": 5.37e-08, + "statment": 5.37e-08, + "steeves": 5.37e-08, + "stepbrothers": 5.37e-08, + "stephani": 5.37e-08, + "stob": 5.37e-08, + "stockades": 5.37e-08, + "stre": 5.37e-08, + "stromae": 5.37e-08, + "stronge": 5.37e-08, + "strout": 5.37e-08, + "suara": 5.37e-08, + "subantarctic": 5.37e-08, + "submerges": 5.37e-08, + "submissives": 5.37e-08, + "subsec": 5.37e-08, + "subtended": 5.37e-08, + "sudeep": 5.37e-08, + "sukhothai": 5.37e-08, + "sulfites": 5.37e-08, + "sumbawa": 5.37e-08, + "summerset": 5.37e-08, + "sunbathers": 5.37e-08, + "suncream": 5.37e-08, + "supercluster": 5.37e-08, + "superintendency": 5.37e-08, + "sussexs": 5.37e-08, + "suthep": 5.37e-08, + "suttas": 5.37e-08, + "swafford": 5.37e-08, + "swanning": 5.37e-08, + "sweary": 5.37e-08, + "swihart": 5.37e-08, + "swishes": 5.37e-08, + "syariah": 5.37e-08, + "sybian": 5.37e-08, + "tabari": 5.37e-08, + "tahun": 5.37e-08, + "tallboy": 5.37e-08, + "tarbuck": 5.37e-08, + "tasca": 5.37e-08, + "taslima": 5.37e-08, + "tcpa": 5.37e-08, + "teche": 5.37e-08, + "techo": 5.37e-08, + "teer": 5.37e-08, + "telenet": 5.37e-08, + "tengen": 5.37e-08, + "tenny": 5.37e-08, + "terceira": 5.37e-08, + "tereshkova": 5.37e-08, + "teutons": 5.37e-08, + "theese": 5.37e-08, + "thewlis": 5.37e-08, + "thibaud": 5.37e-08, + "thinkgeek": 5.37e-08, + "thiocyanate": 5.37e-08, + "thula": 5.37e-08, + "thutmose": 5.37e-08, + "thynne": 5.37e-08, + "tift": 5.37e-08, + "tilsit": 5.37e-08, + "tiredly": 5.37e-08, + "tisci": 5.37e-08, + "tishman": 5.37e-08, + "tkd": 5.37e-08, + "tlatelolco": 5.37e-08, + "todhunter": 5.37e-08, + "tokaido": 5.37e-08, + "tommi": 5.37e-08, + "tomori": 5.37e-08, + "toop": 5.37e-08, + "topsails": 5.37e-08, + "torito": 5.37e-08, + "tornadic": 5.37e-08, + "torpid": 5.37e-08, + "torrijos": 5.37e-08, + "torro": 5.37e-08, + "torvill": 5.37e-08, + "toryism": 5.37e-08, + "tosun": 5.37e-08, + "totos": 5.37e-08, + "toyah": 5.37e-08, + "tragi": 5.37e-08, + "transurethral": 5.37e-08, + "trashcans": 5.37e-08, + "treece": 5.37e-08, + "trendier": 5.37e-08, + "tricot": 5.37e-08, + "trnas": 5.37e-08, + "trol": 5.37e-08, + "trollop": 5.37e-08, + "trustable": 5.37e-08, + "tujunga": 5.37e-08, + "tulsas": 5.37e-08, + "tuma": 5.37e-08, + "tuticorin": 5.37e-08, + "tversky": 5.37e-08, + "twatter": 5.37e-08, + "twined": 5.37e-08, + "twitchs": 5.37e-08, + "tyrosinase": 5.37e-08, + "ubiquitination": 5.37e-08, + "ukm": 5.37e-08, + "unassembled": 5.37e-08, + "underboob": 5.37e-08, + "undulation": 5.37e-08, + "unfussy": 5.37e-08, + "unia": 5.37e-08, + "universitet": 5.37e-08, + "unmaintained": 5.37e-08, + "unplaced": 5.37e-08, + "unpredicted": 5.37e-08, + "unrecovered": 5.37e-08, + "upolu": 5.37e-08, + "urbandale": 5.37e-08, + "urbanizing": 5.37e-08, + "urizen": 5.37e-08, + "usyk": 5.37e-08, + "uteri": 5.37e-08, + "uteruses": 5.37e-08, + "vaart": 5.37e-08, + "valda": 5.37e-08, + "valeur": 5.37e-08, + "varadero": 5.37e-08, + "varrick": 5.37e-08, + "vascularized": 5.37e-08, + "vashi": 5.37e-08, + "vbscript": 5.37e-08, + "verbo": 5.37e-08, + "videl": 5.37e-08, + "vincentian": 5.37e-08, + "vinge": 5.37e-08, + "virals": 5.37e-08, + "virtuosi": 5.37e-08, + "vitelli": 5.37e-08, + "vitry": 5.37e-08, + "vittles": 5.37e-08, + "vituperative": 5.37e-08, + "vods": 5.37e-08, + "volmer": 5.37e-08, + "vota": 5.37e-08, + "vouchsafe": 5.37e-08, + "voulez": 5.37e-08, + "vsevolod": 5.37e-08, + "wagen": 5.37e-08, + "wahaha": 5.37e-08, + "wailea": 5.37e-08, + "wakelin": 5.37e-08, + "wapos": 5.37e-08, + "warbles": 5.37e-08, + "wardwell": 5.37e-08, + "warfighters": 5.37e-08, + "waterbirds": 5.37e-08, + "waveney": 5.37e-08, + "wazzup": 5.37e-08, + "weans": 5.37e-08, + "webzine": 5.37e-08, + "weka": 5.37e-08, + "welkom": 5.37e-08, + "wernick": 5.37e-08, + "wery": 5.37e-08, + "whataboutism": 5.37e-08, + "whitehorn": 5.37e-08, + "whitelisted": 5.37e-08, + "whitfields": 5.37e-08, + "whovian": 5.37e-08, + "whynot": 5.37e-08, + "wigeon": 5.37e-08, + "wili": 5.37e-08, + "willebrand": 5.37e-08, + "willison": 5.37e-08, + "windhorst": 5.37e-08, + "wishlists": 5.37e-08, + "wmp": 5.37e-08, + "wolin": 5.37e-08, + "womyn": 5.37e-08, + "wookey": 5.37e-08, + "wooler": 5.37e-08, + "worx": 5.37e-08, + "wtcc": 5.37e-08, + "wunderbar": 5.37e-08, + "wunna": 5.37e-08, + "wyche": 5.37e-08, + "xaver": 5.37e-08, + "xperience": 5.37e-08, + "yacob": 5.37e-08, + "yaka": 5.37e-08, + "yakutat": 5.37e-08, + "yaobang": 5.37e-08, + "yarm": 5.37e-08, + "yaser": 5.37e-08, + "yazdi": 5.37e-08, + "yere": 2.88e-08, + "yii": 5.37e-08, + "yingluck": 5.37e-08, + "yoghurts": 5.37e-08, + "yongkang": 5.37e-08, + "yoshie": 5.37e-08, + "yot": 5.37e-08, + "yukis": 5.37e-08, + "yusufs": 5.37e-08, + "yvonnes": 5.37e-08, + "yyy": 5.37e-08, + "zacharia": 5.37e-08, + "zah": 5.37e-08, + "zaleski": 5.37e-08, + "zeldin": 5.37e-08, + "zerohedge": 5.37e-08, + "zfc": 5.37e-08, + "zij": 5.37e-08, + "zords": 5.37e-08, + "zwart": 5.37e-08, + "aaup": 5.25e-08, + "abela": 5.25e-08, + "abta": 5.25e-08, + "academi": 5.25e-08, + "acquis": 5.25e-08, + "actully": 5.25e-08, + "adare": 5.25e-08, + "addthis": 5.25e-08, + "adeeb": 5.25e-08, + "adeno": 5.25e-08, + "adenylate": 5.25e-08, + "adz": 5.25e-08, + "aeronaut": 5.25e-08, + "aflw": 5.25e-08, + "africom": 5.25e-08, + "agdal": 5.25e-08, + "aggrandisement": 5.25e-08, + "ahaa": 5.25e-08, + "ahas": 5.25e-08, + "ahmanson": 5.25e-08, + "aigs": 5.25e-08, + "aigle": 5.25e-08, + "airbourne": 5.25e-08, + "airconditioned": 5.25e-08, + "aisc": 5.25e-08, + "akr": 5.25e-08, + "alak": 5.25e-08, + "albinus": 5.25e-08, + "aldens": 5.25e-08, + "aldergrove": 5.25e-08, + "alee": 5.25e-08, + "alexandrina": 5.25e-08, + "aliment": 5.25e-08, + "alimentation": 5.25e-08, + "alinea": 5.25e-08, + "allday": 5.25e-08, + "allier": 5.25e-08, + "allsorts": 5.25e-08, + "alpines": 5.25e-08, + "alvan": 5.25e-08, + "amalgams": 5.25e-08, + "amanat": 5.25e-08, + "amca": 5.25e-08, + "amidon": 5.25e-08, + "ammeter": 5.25e-08, + "amphipod": 5.25e-08, + "analy": 5.25e-08, + "ananas": 5.25e-08, + "ancon": 5.25e-08, + "andouille": 5.25e-08, + "andromedas": 5.25e-08, + "anesthetists": 5.25e-08, + "annamalai": 5.25e-08, + "annd": 5.25e-08, + "anoop": 5.25e-08, + "anthropologically": 5.25e-08, + "antiaging": 5.25e-08, + "antifungals": 5.25e-08, + "antoines": 5.25e-08, + "anyang": 5.25e-08, + "aob": 5.25e-08, + "aonuma": 5.25e-08, + "apax": 5.25e-08, + "apeldoorn": 5.25e-08, + "aponte": 5.25e-08, + "appe": 5.25e-08, + "araba": 5.25e-08, + "arah": 5.25e-08, + "ardell": 5.25e-08, + "arenaria": 5.25e-08, + "arguello": 5.25e-08, + "armata": 5.25e-08, + "armourer": 5.25e-08, + "arnoldo": 5.25e-08, + "artikel": 5.25e-08, + "ashrams": 5.25e-08, + "asil": 5.25e-08, + "astrocytoma": 5.25e-08, + "aune": 5.25e-08, + "aurally": 5.25e-08, + "auron": 5.25e-08, + "austra": 5.25e-08, + "autistics": 5.25e-08, + "autoregressive": 5.25e-08, + "avakian": 5.25e-08, + "avenel": 5.25e-08, + "aversa": 5.25e-08, + "aviciis": 5.25e-08, + "awo": 5.25e-08, + "axels": 5.25e-08, + "backstabbers": 5.25e-08, + "baco": 5.25e-08, + "baddy": 5.25e-08, + "bagpiper": 5.25e-08, + "balletic": 5.25e-08, + "ballgown": 5.25e-08, + "bansi": 5.25e-08, + "baqir": 5.25e-08, + "barehanded": 5.25e-08, + "barranca": 5.25e-08, + "barths": 5.25e-08, + "basford": 5.25e-08, + "bashkir": 5.25e-08, + "bassman": 5.25e-08, + "bazzi": 5.25e-08, + "bbws": 5.25e-08, + "bcaas": 5.25e-08, + "beber": 5.25e-08, + "becka": 5.25e-08, + "beckton": 5.25e-08, + "bedlington": 5.25e-08, + "beedle": 5.25e-08, + "beevor": 5.25e-08, + "belike": 5.25e-08, + "benaras": 5.25e-08, + "bergonzi": 5.25e-08, + "berzelius": 5.25e-08, + "besoin": 5.25e-08, + "bethesdas": 5.25e-08, + "bfn": 5.25e-08, + "bhartiya": 5.25e-08, + "bhavana": 5.25e-08, + "bibbs": 5.25e-08, + "bics": 5.25e-08, + "bifurcate": 5.25e-08, + "bigham": 5.25e-08, + "biopsychosocial": 5.25e-08, + "bircher": 5.25e-08, + "birtles": 5.25e-08, + "bisaya": 5.25e-08, + "bisou": 5.25e-08, + "bisulfite": 5.25e-08, + "bivouacked": 5.25e-08, + "blakiston": 5.25e-08, + "blameworthy": 5.25e-08, + "blanchot": 5.25e-08, + "bliley": 5.25e-08, + "blixen": 5.25e-08, + "bluecoats": 5.25e-08, + "boak": 5.25e-08, + "bocconi": 5.25e-08, + "bodom": 5.25e-08, + "bogosian": 5.25e-08, + "bohra": 5.25e-08, + "bontemps": 5.25e-08, + "bookbinders": 5.25e-08, + "bookplates": 5.25e-08, + "bosnias": 5.25e-08, + "bounder": 5.25e-08, + "bourdin": 5.25e-08, + "bouwmeester": 5.25e-08, + "bowhunting": 5.25e-08, + "bowlen": 5.25e-08, + "bowlin": 5.25e-08, + "bradburn": 5.25e-08, + "brans": 5.25e-08, + "bresse": 5.25e-08, + "brightwood": 5.25e-08, + "brinsley": 5.25e-08, + "briseis": 5.25e-08, + "brockmann": 5.25e-08, + "brode": 5.25e-08, + "brohm": 5.25e-08, + "bronk": 5.25e-08, + "broyhill": 5.25e-08, + "brushfire": 5.25e-08, + "bryansk": 5.25e-08, + "buckboard": 5.25e-08, + "bugfixes": 5.25e-08, + "bullae": 5.25e-08, + "bunkered": 5.25e-08, + "burkle": 5.25e-08, + "burs": 5.25e-08, + "burston": 5.25e-08, + "buttstock": 5.25e-08, + "byronic": 5.25e-08, + "cabreras": 5.25e-08, + "caffery": 5.25e-08, + "callouses": 5.25e-08, + "campe": 5.25e-08, + "campton": 5.25e-08, + "capades": 5.25e-08, + "capobianco": 5.25e-08, + "capotes": 5.25e-08, + "capras": 5.25e-08, + "capulets": 5.25e-08, + "caq": 5.25e-08, + "cardcaptor": 5.25e-08, + "cardiogenic": 5.25e-08, + "carducci": 5.25e-08, + "carnality": 5.25e-08, + "carnifex": 5.25e-08, + "carryon": 5.25e-08, + "cartage": 5.25e-08, + "cartas": 5.25e-08, + "cartland": 5.25e-08, + "cartouches": 5.25e-08, + "castamere": 5.25e-08, + "catagory": 5.25e-08, + "catechin": 5.25e-08, + "cavort": 5.25e-08, + "cbz": 5.25e-08, + "ccsd": 5.25e-08, + "cdj": 5.25e-08, + "cdv": 5.25e-08, + "cedis": 5.25e-08, + "cefn": 5.25e-08, + "ceva": 5.25e-08, + "chakma": 5.25e-08, + "chamillionaire": 5.25e-08, + "champneys": 5.25e-08, + "changemakers": 5.25e-08, + "chardy": 5.25e-08, + "chasten": 5.25e-08, + "cheeta": 5.25e-08, + "chemtrail": 5.25e-08, + "cheras": 5.25e-08, + "chetwynd": 5.25e-08, + "chicoutimi": 5.25e-08, + "choli": 5.25e-08, + "cholos": 5.25e-08, + "chorales": 5.25e-08, + "christakis": 5.25e-08, + "ciaras": 5.25e-08, + "cinquecento": 5.25e-08, + "circumstellar": 5.25e-08, + "cisc": 5.25e-08, + "cissie": 5.25e-08, + "cissokho": 5.25e-08, + "civilis": 5.25e-08, + "cky": 5.25e-08, + "clague": 5.25e-08, + "classifiable": 5.25e-08, + "claybourne": 5.25e-08, + "cloyd": 5.25e-08, + "cmake": 5.25e-08, + "coalmining": 5.25e-08, + "cocco": 5.25e-08, + "cockatrice": 5.25e-08, + "collectivized": 5.25e-08, + "colloque": 5.25e-08, + "colten": 5.25e-08, + "compartmented": 5.25e-08, + "competion": 5.25e-08, + "conair": 5.25e-08, + "congresswomen": 5.25e-08, + "conjuncture": 5.25e-08, + "conservancys": 5.25e-08, + "conspiratorially": 5.25e-08, + "contax": 5.25e-08, + "contempo": 5.25e-08, + "convolvulus": 5.25e-08, + "coomer": 5.25e-08, + "copayment": 5.25e-08, + "corbitt": 5.25e-08, + "cordelias": 5.25e-08, + "corine": 5.25e-08, + "corinnes": 5.25e-08, + "corsages": 5.25e-08, + "costi": 5.25e-08, + "cowpox": 5.25e-08, + "cowries": 5.25e-08, + "coxsackie": 5.25e-08, + "cpy": 5.25e-08, + "craftmanship": 5.25e-08, + "crescenta": 5.25e-08, + "creve": 5.25e-08, + "critias": 5.25e-08, + "cruiserweights": 5.25e-08, + "crumpton": 5.25e-08, + "crystalized": 5.25e-08, + "csaba": 5.25e-08, + "cspi": 5.25e-08, + "cubo": 5.25e-08, + "cummerbund": 5.25e-08, + "cuppy": 5.25e-08, + "curso": 5.25e-08, + "cvl": 5.25e-08, + "cybill": 5.25e-08, + "cygni": 5.25e-08, + "cymbidium": 5.25e-08, + "cytological": 5.25e-08, + "dabangg": 5.25e-08, + "dahlan": 5.25e-08, + "damini": 5.25e-08, + "dapps": 5.25e-08, + "darkhorse": 5.25e-08, + "dava": 5.25e-08, + "dawit": 5.25e-08, + "dayspring": 5.25e-08, + "deadmans": 5.25e-08, + "deafblind": 5.25e-08, + "dease": 5.25e-08, + "decapitates": 5.25e-08, + "dedekind": 5.25e-08, + "defintely": 5.25e-08, + "defuses": 5.25e-08, + "degale": 5.25e-08, + "dehra": 5.25e-08, + "dehumidifiers": 5.25e-08, + "dejavu": 5.25e-08, + "delanie": 5.25e-08, + "delfin": 5.25e-08, + "deliverability": 5.25e-08, + "deltona": 5.25e-08, + "demarchelier": 5.25e-08, + "demario": 5.25e-08, + "demoiselle": 5.25e-08, + "demonically": 5.25e-08, + "denner": 5.25e-08, + "dependance": 5.25e-08, + "depolarized": 5.25e-08, + "depopulate": 5.25e-08, + "desales": 5.25e-08, + "desrosiers": 5.25e-08, + "destine": 5.25e-08, + "detangling": 5.25e-08, + "deuk": 5.25e-08, + "developped": 5.25e-08, + "devis": 5.25e-08, + "deyo": 5.25e-08, + "dfat": 5.25e-08, + "dhara": 5.25e-08, + "diacylglycerol": 5.25e-08, + "diapered": 5.25e-08, + "dicarlo": 5.25e-08, + "dichloromethane": 5.25e-08, + "didactics": 5.25e-08, + "diffractive": 5.25e-08, + "digressing": 5.25e-08, + "dimona": 5.25e-08, + "dirndl": 5.25e-08, + "discoidal": 5.25e-08, + "disfranchised": 5.25e-08, + "dissapeared": 5.25e-08, + "distractedly": 5.25e-08, + "dite": 5.25e-08, + "dkp": 5.25e-08, + "dnssec": 5.25e-08, + "dobyns": 5.25e-08, + "documentarys": 5.25e-08, + "dodecanese": 5.25e-08, + "dodig": 5.25e-08, + "donnington": 5.25e-08, + "doohickey": 5.25e-08, + "doorjamb": 5.25e-08, + "doull": 5.25e-08, + "douses": 5.25e-08, + "dovetailing": 5.25e-08, + "downland": 5.25e-08, + "downregulated": 5.25e-08, + "draken": 5.25e-08, + "drano": 5.25e-08, + "drawdowns": 5.25e-08, + "dressel": 5.25e-08, + "dril": 5.25e-08, + "driv": 5.25e-08, + "drugmakers": 5.25e-08, + "drumbeats": 5.25e-08, + "dubliner": 5.25e-08, + "duchamps": 5.25e-08, + "ductless": 5.25e-08, + "dulac": 5.25e-08, + "duno": 5.25e-08, + "durell": 5.25e-08, + "dussehra": 5.25e-08, + "dutra": 5.25e-08, + "dyle": 5.25e-08, + "earles": 5.25e-08, + "edelmann": 5.25e-08, + "edgard": 5.25e-08, + "educationalist": 5.25e-08, + "educationists": 5.25e-08, + "eeeh": 5.25e-08, + "eggsy": 5.25e-08, + "egli": 5.25e-08, + "ehc": 5.25e-08, + "eim": 5.25e-08, + "ejido": 5.25e-08, + "ekholm": 5.25e-08, + "elah": 5.25e-08, + "elamite": 5.25e-08, + "eleonore": 5.25e-08, + "embl": 5.25e-08, + "embree": 5.25e-08, + "embroil": 5.25e-08, + "emmis": 5.25e-08, + "encasement": 5.25e-08, + "encases": 5.25e-08, + "enjoins": 5.25e-08, + "enp": 5.25e-08, + "enthalpies": 5.25e-08, + "entrez": 5.25e-08, + "enumerable": 5.25e-08, + "epica": 5.25e-08, + "epona": 5.25e-08, + "equivocate": 5.25e-08, + "erdos": 5.25e-08, + "erectors": 5.25e-08, + "erosions": 5.25e-08, + "esmerelda": 5.25e-08, + "esotericism": 5.25e-08, + "etd": 5.25e-08, + "etive": 5.25e-08, + "etm": 5.25e-08, + "etsuko": 5.25e-08, + "eugenicist": 5.25e-08, + "eugenol": 5.25e-08, + "euless": 5.25e-08, + "euw": 5.25e-08, + "evangelized": 5.25e-08, + "everette": 5.25e-08, + "evolutionism": 5.25e-08, + "experimentalism": 5.25e-08, + "expressen": 5.25e-08, + "eya": 5.25e-08, + "eyesores": 5.25e-08, + "eyo": 5.25e-08, + "fabula": 5.25e-08, + "facultad": 5.25e-08, + "fairless": 5.25e-08, + "fanu": 5.25e-08, + "farleigh": 5.25e-08, + "fatiha": 5.25e-08, + "federale": 5.25e-08, + "felicitate": 5.25e-08, + "festoons": 5.25e-08, + "fidelia": 5.25e-08, + "fidgeted": 5.25e-08, + "figma": 5.25e-08, + "filatov": 5.25e-08, + "filner": 5.25e-08, + "finegan": 5.25e-08, + "firebaugh": 5.25e-08, + "firebrick": 5.25e-08, + "firewatch": 5.25e-08, + "flipbook": 5.25e-08, + "flossed": 5.25e-08, + "flounces": 5.25e-08, + "flowage": 5.25e-08, + "flowmeter": 5.25e-08, + "fnac": 5.25e-08, + "foldout": 5.25e-08, + "foodstamps": 5.25e-08, + "forded": 5.25e-08, + "forearmed": 5.25e-08, + "foxman": 5.25e-08, + "foxworth": 5.25e-08, + "foyt": 5.25e-08, + "frappuccinos": 5.25e-08, + "freeney": 5.25e-08, + "freeroll": 5.25e-08, + "freestyler": 5.25e-08, + "fremantlemedia": 5.25e-08, + "freyr": 5.25e-08, + "frigga": 5.25e-08, + "frivolities": 5.25e-08, + "frizzell": 5.25e-08, + "frizzled": 5.25e-08, + "frogging": 5.25e-08, + "froissart": 5.25e-08, + "frontalis": 5.25e-08, + "frontieres": 5.25e-08, + "frump": 5.25e-08, + "fuckheads": 5.25e-08, + "fuckload": 5.25e-08, + "funaki": 5.25e-08, + "funnelling": 5.25e-08, + "fwp": 5.25e-08, + "gada": 5.25e-08, + "galeotti": 5.25e-08, + "gallerie": 5.25e-08, + "garths": 5.25e-08, + "gastly": 5.25e-08, + "gastons": 5.25e-08, + "gastropoda": 5.25e-08, + "geminate": 5.25e-08, + "geocache": 5.25e-08, + "germiston": 5.25e-08, + "gern": 5.25e-08, + "gesner": 5.25e-08, + "gettys": 5.25e-08, + "ggo": 5.25e-08, + "giancana": 5.25e-08, + "giap": 5.25e-08, + "giardini": 5.25e-08, + "ginned": 5.25e-08, + "giunta": 5.25e-08, + "giusti": 5.25e-08, + "glaciations": 5.25e-08, + "gleaners": 5.25e-08, + "gleanings": 5.25e-08, + "gleick": 5.25e-08, + "glendalough": 5.25e-08, + "glenmont": 5.25e-08, + "glinka": 5.25e-08, + "glueing": 5.25e-08, + "glutamatergic": 5.25e-08, + "godammit": 5.25e-08, + "goldings": 5.25e-08, + "goneril": 5.25e-08, + "gonewild": 5.25e-08, + "gonzagas": 5.25e-08, + "goodbody": 5.25e-08, + "goodest": 5.25e-08, + "gooner": 5.25e-08, + "gooners": 5.25e-08, + "gopala": 5.25e-08, + "gopers": 5.25e-08, + "gottes": 5.25e-08, + "gourmands": 5.25e-08, + "gracile": 5.25e-08, + "grackle": 5.25e-08, + "gradle": 5.25e-08, + "grae": 5.25e-08, + "grannis": 5.25e-08, + "greenhills": 5.25e-08, + "grg": 5.25e-08, + "grinberg": 5.25e-08, + "grindle": 5.25e-08, + "grody": 5.25e-08, + "groome": 5.25e-08, + "grothe": 5.25e-08, + "groundskeepers": 5.25e-08, + "gruffly": 5.25e-08, + "gtt": 5.25e-08, + "gulbenkian": 5.25e-08, + "gussy": 5.25e-08, + "hahahahahah": 5.25e-08, + "hailstone": 5.25e-08, + "hainaut": 5.25e-08, + "hairiest": 5.25e-08, + "halawa": 5.25e-08, + "hamblen": 5.25e-08, + "hamidi": 5.25e-08, + "hanwha": 5.25e-08, + "haraway": 5.25e-08, + "hardass": 5.25e-08, + "hardtalk": 5.25e-08, + "haredim": 5.25e-08, + "harkening": 5.25e-08, + "hartig": 5.25e-08, + "hasidism": 5.25e-08, + "haversack": 5.25e-08, + "hawtrey": 5.25e-08, + "hayseed": 5.25e-08, + "hazuki": 5.25e-08, + "hcps": 5.25e-08, + "healesville": 5.25e-08, + "healthfully": 5.25e-08, + "heartlessly": 5.25e-08, + "heartlessness": 5.25e-08, + "heatproof": 5.25e-08, + "heckel": 5.25e-08, + "heehee": 5.25e-08, + "hefners": 5.25e-08, + "heftier": 5.25e-08, + "hellspawn": 5.25e-08, + "helots": 5.25e-08, + "helu": 5.25e-08, + "henleys": 5.25e-08, + "herk": 5.25e-08, + "herry": 5.25e-08, + "hewitson": 5.25e-08, + "heyne": 5.25e-08, + "hhd": 5.25e-08, + "hidaka": 5.25e-08, + "hightech": 5.25e-08, + "hilaria": 5.25e-08, + "historische": 5.25e-08, + "hmf": 5.25e-08, + "hohn": 5.25e-08, + "holkham": 5.25e-08, + "homeomorphic": 5.25e-08, + "homesteaded": 5.25e-08, + "hongdae": 5.25e-08, + "horsfield": 5.25e-08, + "horticulturalist": 5.25e-08, + "hosers": 5.25e-08, + "hospitaller": 5.25e-08, + "hotwheels": 5.25e-08, + "hryvnia": 5.25e-08, + "htpc": 5.25e-08, + "htr": 5.25e-08, + "huggett": 5.25e-08, + "hurriyat": 5.25e-08, + "hyam": 5.25e-08, + "hydroxyzine": 5.25e-08, + "hym": 5.25e-08, + "hyperextension": 5.25e-08, + "hys": 5.25e-08, + "icai": 5.25e-08, + "icv": 5.25e-08, + "ifeanyi": 5.25e-08, + "ifpi": 5.25e-08, + "ihub": 5.25e-08, + "iio": 5.25e-08, + "iisc": 5.25e-08, + "ijs": 5.25e-08, + "illo": 5.25e-08, + "illust": 5.25e-08, + "imaginal": 5.25e-08, + "immiscible": 5.25e-08, + "impe": 5.25e-08, + "inci": 5.25e-08, + "incrementalism": 5.25e-08, + "inds": 5.25e-08, + "ineffectually": 5.25e-08, + "inshaallah": 5.25e-08, + "intercalary": 5.25e-08, + "interpose": 5.25e-08, + "intimidator": 5.25e-08, + "intuitionistic": 5.25e-08, + "investiga": 5.25e-08, + "ipsen": 5.25e-08, + "irctc": 5.25e-08, + "irfu": 5.25e-08, + "irq": 5.25e-08, + "iska": 5.25e-08, + "issam": 5.25e-08, + "istat": 5.25e-08, + "itaewon": 5.25e-08, + "itay": 5.25e-08, + "itfc": 5.25e-08, + "ivaylo": 5.25e-08, + "jaana": 5.25e-08, + "jabotinsky": 5.25e-08, + "jackboots": 5.25e-08, + "jahren": 5.25e-08, + "jakov": 5.25e-08, + "janatha": 5.25e-08, + "janowitz": 5.25e-08, + "jansport": 5.25e-08, + "jantzen": 5.25e-08, + "japhet": 5.25e-08, + "jayasuriya": 5.25e-08, + "jaywalk": 5.25e-08, + "jedda": 5.25e-08, + "jedidiah": 5.25e-08, + "jennet": 5.25e-08, + "jerico": 5.25e-08, + "jid": 5.25e-08, + "jigga": 5.25e-08, + "jml": 5.25e-08, + "jongs": 5.25e-08, + "jonno": 5.25e-08, + "journalisms": 5.25e-08, + "jubail": 5.25e-08, + "jwoww": 5.25e-08, + "jyothi": 5.25e-08, + "kahi": 5.25e-08, + "kaifeng": 5.25e-08, + "kakinada": 5.25e-08, + "kaluza": 5.25e-08, + "kamlesh": 5.25e-08, + "kannapolis": 5.25e-08, + "kapok": 5.25e-08, + "karai": 5.25e-08, + "karthi": 5.25e-08, + "karvan": 5.25e-08, + "kasih": 5.25e-08, + "kautz": 5.25e-08, + "kaziranga": 5.25e-08, + "kazuhiro": 5.25e-08, + "keech": 5.25e-08, + "kelo": 5.25e-08, + "kenda": 5.25e-08, + "keras": 5.25e-08, + "kerfoot": 5.25e-08, + "kewanee": 5.25e-08, + "keybank": 5.25e-08, + "khalifas": 5.25e-08, + "khursheed": 5.25e-08, + "kiai": 5.25e-08, + "kilbourn": 5.25e-08, + "killians": 5.25e-08, + "killingworth": 5.25e-08, + "kilty": 5.25e-08, + "kirara": 5.25e-08, + "kirkenes": 5.25e-08, + "kitchenettes": 5.25e-08, + "kitzmiller": 5.25e-08, + "kiwanuka": 5.25e-08, + "kiyomi": 5.25e-08, + "klayman": 5.25e-08, + "kmd": 5.25e-08, + "knabe": 5.25e-08, + "knauf": 5.25e-08, + "knbc": 5.25e-08, + "kolam": 5.25e-08, + "kommandant": 5.25e-08, + "komori": 5.25e-08, + "kompas": 5.25e-08, + "korba": 5.25e-08, + "kornilov": 5.25e-08, + "koru": 5.25e-08, + "kostka": 5.25e-08, + "kove": 5.25e-08, + "krak": 5.25e-08, + "kreisler": 5.25e-08, + "kube": 5.25e-08, + "kucha": 5.25e-08, + "kulp": 5.25e-08, + "kuruma": 5.25e-08, + "kuznets": 5.25e-08, + "kwantung": 5.25e-08, + "kyoya": 5.25e-08, + "kyrgyzstans": 5.25e-08, + "laca": 5.25e-08, + "lachrymose": 5.25e-08, + "lactobacilli": 5.25e-08, + "lagaan": 5.25e-08, + "lakebed": 5.25e-08, + "lakeman": 5.25e-08, + "laman": 5.25e-08, + "largeness": 5.25e-08, + "larocque": 5.25e-08, + "laryngoscope": 5.25e-08, + "lasser": 5.25e-08, + "latt": 5.25e-08, + "lbt": 5.25e-08, + "ldd": 5.25e-08, + "leannes": 5.25e-08, + "lebow": 5.25e-08, + "leeanne": 5.25e-08, + "lehn": 5.25e-08, + "lems": 5.25e-08, + "lenhart": 5.25e-08, + "lessard": 5.25e-08, + "letham": 5.25e-08, + "levator": 5.25e-08, + "lewan": 5.25e-08, + "libeled": 5.25e-08, + "libidinal": 5.25e-08, + "libras": 5.25e-08, + "lidcombe": 5.25e-08, + "liest": 5.25e-08, + "lightbody": 5.25e-08, + "likings": 5.25e-08, + "lilas": 5.25e-08, + "limonite": 5.25e-08, + "lindos": 5.25e-08, + "linette": 5.25e-08, + "linocut": 5.25e-08, + "lipoxygenase": 5.25e-08, + "liqui": 5.25e-08, + "lithotripsy": 5.25e-08, + "littlemore": 5.25e-08, + "lmn": 5.25e-08, + "lnd": 5.25e-08, + "lods": 5.25e-08, + "loitered": 5.25e-08, + "lombardia": 5.25e-08, + "longhaired": 5.25e-08, + "loog": 5.25e-08, + "looke": 5.25e-08, + "lossing": 5.25e-08, + "ltaly": 5.25e-08, + "lucians": 5.25e-08, + "lukakus": 5.25e-08, + "luling": 5.25e-08, + "lumpia": 5.25e-08, + "lupins": 5.25e-08, + "lushington": 5.25e-08, + "luuk": 5.25e-08, + "luxembourgish": 5.25e-08, + "lymphoedema": 5.25e-08, + "lysias": 5.25e-08, + "lythgoe": 5.25e-08, + "mamun": 5.25e-08, + "maajid": 5.25e-08, + "mabuhay": 5.25e-08, + "maddys": 5.25e-08, + "madhava": 5.25e-08, + "madrasah": 5.25e-08, + "magico": 5.25e-08, + "magnifications": 5.25e-08, + "mained": 5.25e-08, + "mainnet": 5.25e-08, + "malefactors": 5.25e-08, + "mallik": 5.25e-08, + "malloys": 5.25e-08, + "maltodextrin": 5.25e-08, + "manetti": 5.25e-08, + "mangione": 5.25e-08, + "manlier": 5.25e-08, + "manorama": 5.25e-08, + "manso": 5.25e-08, + "mantling": 5.25e-08, + "maquette": 5.25e-08, + "margarito": 5.25e-08, + "markaz": 5.25e-08, + "martynov": 5.25e-08, + "massac": 5.25e-08, + "matcher": 5.25e-08, + "mathes": 5.25e-08, + "matress": 5.25e-08, + "mattos": 5.25e-08, + "mawer": 5.25e-08, + "maxines": 5.25e-08, + "maxy": 5.25e-08, + "mcallisters": 5.25e-08, + "mccraw": 5.25e-08, + "mcfadyen": 5.25e-08, + "mcfarlanes": 5.25e-08, + "mcilwain": 5.25e-08, + "mcmorrow": 5.25e-08, + "mctiernan": 5.25e-08, + "meanly": 5.25e-08, + "mechanistically": 5.25e-08, + "medscape": 5.25e-08, + "meers": 5.25e-08, + "meiner": 5.25e-08, + "mengistu": 5.25e-08, + "menhaden": 5.25e-08, + "menomonie": 5.25e-08, + "mercari": 5.25e-08, + "mercks": 5.25e-08, + "mercuric": 5.25e-08, + "mesenchyme": 5.25e-08, + "mesha": 5.25e-08, + "messines": 5.25e-08, + "mestalla": 5.25e-08, + "metastasizing": 5.25e-08, + "methanogens": 5.25e-08, + "metonymy": 5.25e-08, + "meze": 5.25e-08, + "microcirculation": 5.25e-08, + "microdata": 5.25e-08, + "microelectrode": 5.25e-08, + "mierda": 5.25e-08, + "mifid": 5.25e-08, + "mijn": 5.25e-08, + "milah": 5.25e-08, + "milby": 5.25e-08, + "miless": 5.25e-08, + "millars": 5.25e-08, + "millfield": 5.25e-08, + "mion": 5.25e-08, + "mirae": 5.25e-08, + "mirella": 5.25e-08, + "miscellanies": 5.25e-08, + "mistura": 5.25e-08, + "miyajima": 5.25e-08, + "mjf": 5.25e-08, + "mladic": 5.25e-08, + "molests": 5.25e-08, + "molinas": 5.25e-08, + "moltmann": 5.25e-08, + "monaca": 5.25e-08, + "monna": 5.25e-08, + "monoprice": 5.25e-08, + "monteagle": 5.25e-08, + "montini": 5.25e-08, + "moonta": 5.25e-08, + "morang": 5.25e-08, + "mortared": 5.25e-08, + "mozz": 5.25e-08, + "mpk": 5.25e-08, + "msgs": 5.25e-08, + "mucinous": 5.25e-08, + "mujahedeen": 5.25e-08, + "mulattoes": 5.25e-08, + "multibeam": 5.25e-08, + "multichoice": 5.25e-08, + "multivalent": 5.25e-08, + "munden": 5.25e-08, + "muriatic": 5.25e-08, + "murshidabad": 5.25e-08, + "musou": 5.25e-08, + "musubi": 5.25e-08, + "mutualistic": 5.25e-08, + "mxm": 5.25e-08, + "mycobacterial": 5.25e-08, + "myelination": 5.25e-08, + "mykhailo": 5.25e-08, + "myoclonic": 5.25e-08, + "mzee": 5.25e-08, + "nadin": 5.25e-08, + "naegi": 5.25e-08, + "nainggolan": 5.25e-08, + "naracoorte": 5.25e-08, + "nasogastric": 5.25e-08, + "nassr": 5.25e-08, + "natha": 5.25e-08, + "nathaniels": 5.25e-08, + "natriuretic": 5.25e-08, + "natrona": 5.25e-08, + "navaho": 5.25e-08, + "naysayer": 5.25e-08, + "nbe": 5.25e-08, + "ndo": 5.25e-08, + "nebbiolo": 5.25e-08, + "nebraskans": 5.25e-08, + "negligibly": 5.25e-08, + "nekrasov": 5.25e-08, + "neocolonialism": 5.25e-08, + "nernst": 5.25e-08, + "nerys": 5.25e-08, + "neth": 5.25e-08, + "neurite": 5.25e-08, + "newsham": 5.25e-08, + "newsweeks": 5.25e-08, + "nhan": 5.25e-08, + "nids": 5.25e-08, + "nifedipine": 5.25e-08, + "nimue": 5.25e-08, + "niqabs": 5.25e-08, + "nishiki": 5.25e-08, + "nitriles": 5.25e-08, + "nln": 5.25e-08, + "nmds": 5.25e-08, + "noelia": 5.25e-08, + "nofollow": 5.25e-08, + "nonprofessional": 5.25e-08, + "nordvpn": 5.25e-08, + "norio": 5.25e-08, + "northwests": 5.25e-08, + "nserc": 5.25e-08, + "nudgee": 5.25e-08, + "nunberg": 5.25e-08, + "nurs": 5.25e-08, + "oblanceolate": 5.25e-08, + "occam": 5.25e-08, + "occoquan": 5.25e-08, + "ochem": 5.25e-08, + "octets": 5.25e-08, + "oddy": 5.25e-08, + "odon": 5.25e-08, + "ofe": 5.25e-08, + "ofthem": 5.25e-08, + "ohsaa": 5.25e-08, + "oita": 5.25e-08, + "ongar": 5.25e-08, + "onramp": 5.25e-08, + "onsets": 5.25e-08, + "ooey": 5.25e-08, + "openid": 5.25e-08, + "operat": 5.25e-08, + "optogenetics": 5.25e-08, + "orginally": 5.25e-08, + "originalist": 5.25e-08, + "orlovsky": 5.25e-08, + "orna": 5.25e-08, + "orontes": 5.25e-08, + "orv": 5.25e-08, + "osteonecrosis": 5.25e-08, + "osteopenia": 5.25e-08, + "outboards": 5.25e-08, + "outfoxed": 5.25e-08, + "outruns": 5.25e-08, + "outsole": 5.25e-08, + "overdriven": 5.25e-08, + "overexploitation": 5.25e-08, + "owasso": 5.25e-08, + "owne": 5.25e-08, + "ozo": 5.25e-08, + "paho": 5.25e-08, + "paleface": 5.25e-08, + "palomares": 5.25e-08, + "palpate": 5.25e-08, + "panchen": 5.25e-08, + "panchromatic": 5.25e-08, + "pandi": 5.25e-08, + "panin": 5.25e-08, + "paranaense": 5.25e-08, + "paranasal": 5.25e-08, + "pareja": 5.25e-08, + "parnells": 5.25e-08, + "parodi": 5.25e-08, + "particleboard": 5.25e-08, + "passerine": 5.25e-08, + "pauw": 5.25e-08, + "payen": 5.25e-08, + "pdsa": 5.25e-08, + "peafowl": 5.25e-08, + "pectus": 5.25e-08, + "pedra": 5.25e-08, + "peine": 5.25e-08, + "pelion": 5.25e-08, + "penda": 5.25e-08, + "pendry": 5.25e-08, + "penry": 5.25e-08, + "pequod": 5.25e-08, + "perini": 5.25e-08, + "petechial": 5.25e-08, + "pevensey": 5.25e-08, + "phangan": 5.25e-08, + "phimosis": 5.25e-08, + "phobe": 5.25e-08, + "phylogenies": 5.25e-08, + "pieck": 5.25e-08, + "pigmy": 5.25e-08, + "plaint": 5.25e-08, + "plebiscites": 5.25e-08, + "plekanec": 5.25e-08, + "plx": 5.25e-08, + "polarizers": 5.25e-08, + "polnareff": 5.25e-08, + "pontes": 5.25e-08, + "poopie": 5.25e-08, + "poopoo": 5.25e-08, + "popolare": 5.25e-08, + "porticos": 5.25e-08, + "poto": 5.25e-08, + "praed": 5.25e-08, + "pras": 5.25e-08, + "preamps": 5.25e-08, + "precociously": 5.25e-08, + "preemies": 5.25e-08, + "prefigures": 5.25e-08, + "prepuce": 5.25e-08, + "prestbury": 5.25e-08, + "privies": 5.25e-08, + "proctologist": 5.25e-08, + "propanol": 5.25e-08, + "propellor": 5.25e-08, + "prophase": 5.25e-08, + "prosaically": 5.25e-08, + "providentially": 5.25e-08, + "prunty": 5.25e-08, + "psac": 5.25e-08, + "psychokinesis": 5.25e-08, + "ptw": 5.25e-08, + "puel": 5.25e-08, + "puerco": 5.25e-08, + "puffers": 5.25e-08, + "purefoy": 5.25e-08, + "purgatorio": 5.25e-08, + "purna": 5.25e-08, + "puryear": 5.25e-08, + "putain": 5.25e-08, + "putu": 5.25e-08, + "pwo": 5.25e-08, + "pyogenes": 5.25e-08, + "qahtani": 5.25e-08, + "qamishli": 5.25e-08, + "qcs": 5.25e-08, + "qid": 5.25e-08, + "qnd": 5.25e-08, + "qtl": 5.25e-08, + "quadcopters": 5.25e-08, + "quaritch": 5.25e-08, + "quartermasters": 5.25e-08, + "quraishi": 5.25e-08, + "radiogram": 5.25e-08, + "radiolab": 5.25e-08, + "raffling": 5.25e-08, + "rajinder": 5.25e-08, + "rajpal": 5.25e-08, + "ramanuja": 5.25e-08, + "randburg": 5.25e-08, + "rapace": 5.25e-08, + "rapallo": 5.25e-08, + "ratnam": 5.25e-08, + "recapitulated": 5.25e-08, + "rechecking": 5.25e-08, + "recolor": 5.25e-08, + "recuperative": 5.25e-08, + "regeneron": 5.25e-08, + "reichsmarks": 5.25e-08, + "reik": 5.25e-08, + "reinfeldt": 5.25e-08, + "reinterprets": 5.25e-08, + "rememberance": 5.25e-08, + "remembrancer": 5.25e-08, + "renominated": 5.25e-08, + "repopulated": 5.25e-08, + "reptar": 5.25e-08, + "repulsing": 5.25e-08, + "reroll": 5.25e-08, + "reshot": 5.25e-08, + "retractors": 5.25e-08, + "retrogressive": 5.25e-08, + "revalidation": 5.25e-08, + "revering": 5.25e-08, + "revolucion": 5.25e-08, + "reznik": 5.25e-08, + "rfm": 5.25e-08, + "ridgeley": 5.25e-08, + "rijkaard": 5.25e-08, + "rikke": 5.25e-08, + "rila": 5.25e-08, + "rimer": 5.25e-08, + "rimrock": 5.25e-08, + "rinat": 5.25e-08, + "rinky": 5.25e-08, + "rioli": 5.25e-08, + "riquelme": 5.25e-08, + "risborough": 5.25e-08, + "roble": 5.25e-08, + "roce": 5.25e-08, + "rodins": 5.25e-08, + "romane": 5.25e-08, + "romualdez": 5.25e-08, + "roosh": 5.25e-08, + "rosenman": 5.25e-08, + "rosine": 5.25e-08, + "rossen": 5.25e-08, + "rossmore": 5.25e-08, + "rossouw": 5.25e-08, + "rotas": 5.25e-08, + "roulade": 5.25e-08, + "rouseys": 5.25e-08, + "rowbotham": 5.25e-08, + "roxboro": 5.25e-08, + "royaume": 5.25e-08, + "roze": 5.25e-08, + "rri": 5.25e-08, + "rubia": 5.25e-08, + "ruffs": 5.25e-08, + "rufinus": 5.25e-08, + "rulebooks": 5.25e-08, + "rym": 5.25e-08, + "rypien": 5.25e-08, + "ryutaro": 5.25e-08, + "saabs": 5.25e-08, + "sacajawea": 5.25e-08, + "sacerdotal": 5.25e-08, + "saftey": 5.25e-08, + "sahrawi": 5.25e-08, + "salvadorean": 5.25e-08, + "salver": 5.25e-08, + "samman": 5.25e-08, + "sanctimony": 5.25e-08, + "sanguinary": 5.25e-08, + "sankei": 5.25e-08, + "santillana": 5.25e-08, + "sarmatian": 5.25e-08, + "sase": 5.25e-08, + "sasebo": 5.25e-08, + "satch": 5.25e-08, + "satirising": 5.25e-08, + "sbo": 5.25e-08, + "scampton": 5.25e-08, + "schlatter": 5.25e-08, + "schlub": 5.25e-08, + "schoolmistress": 5.25e-08, + "schoolwide": 5.25e-08, + "schor": 5.25e-08, + "schreyer": 5.25e-08, + "schroders": 5.25e-08, + "schwing": 5.25e-08, + "scotians": 5.25e-08, + "sculpturing": 5.25e-08, + "seasonable": 5.25e-08, + "seculars": 5.25e-08, + "securitate": 5.25e-08, + "sefolosha": 5.25e-08, + "selinger": 5.25e-08, + "sellwood": 5.25e-08, + "semaphores": 5.25e-08, + "semitrailer": 5.25e-08, + "senju": 5.25e-08, + "sensationalizing": 5.25e-08, + "seongnam": 5.25e-08, + "separability": 5.25e-08, + "septembre": 5.25e-08, + "seropositive": 5.25e-08, + "serry": 5.25e-08, + "serta": 5.25e-08, + "serzh": 5.25e-08, + "sesto": 5.25e-08, + "setswana": 5.25e-08, + "seusss": 5.25e-08, + "sextuple": 5.25e-08, + "shahab": 5.25e-08, + "shahnaz": 5.25e-08, + "shakyamuni": 5.25e-08, + "sharq": 5.25e-08, + "shawmut": 5.25e-08, + "shinies": 5.25e-08, + "shouldst": 5.25e-08, + "shrader": 5.25e-08, + "shreks": 5.25e-08, + "shrigley": 5.25e-08, + "shubham": 5.25e-08, + "shyer": 5.25e-08, + "sigmas": 5.25e-08, + "sihanoukville": 5.25e-08, + "siloed": 5.25e-08, + "silvie": 5.25e-08, + "simpleminded": 5.25e-08, + "simplicial": 5.25e-08, + "singa": 5.25e-08, + "siss": 3.31e-08, + "situationally": 5.25e-08, + "skaife": 5.25e-08, + "slazenger": 5.25e-08, + "sleepytime": 5.25e-08, + "sleeving": 5.25e-08, + "sleman": 5.25e-08, + "slidin": 5.25e-08, + "slipperiness": 5.25e-08, + "slivered": 5.25e-08, + "slopped": 5.25e-08, + "smitherman": 5.25e-08, + "snaky": 5.25e-08, + "snappier": 5.25e-08, + "snn": 5.25e-08, + "soderberghs": 5.25e-08, + "sodor": 5.25e-08, + "soin": 5.25e-08, + "solani": 5.25e-08, + "solidago": 5.25e-08, + "solna": 5.25e-08, + "somnolent": 5.25e-08, + "soooooooooo": 5.25e-08, + "soran": 5.25e-08, + "soulfully": 5.25e-08, + "southlands": 5.25e-08, + "sowa": 5.25e-08, + "soyabean": 5.25e-08, + "spagna": 5.25e-08, + "spalletti": 5.25e-08, + "spangle": 5.25e-08, + "speechwriters": 5.25e-08, + "spinor": 5.25e-08, + "spiritism": 5.25e-08, + "squeamishness": 5.25e-08, + "ssbbw": 5.25e-08, + "standers": 5.25e-08, + "starkiller": 5.25e-08, + "starla": 5.25e-08, + "startrek": 5.25e-08, + "statu": 5.25e-08, + "staudinger": 5.25e-08, + "steg": 5.25e-08, + "stites": 5.25e-08, + "stockbroking": 5.25e-08, + "stolons": 5.25e-08, + "stowes": 5.25e-08, + "strawbridge": 5.25e-08, + "stupak": 5.25e-08, + "sturdiest": 5.25e-08, + "stynes": 5.25e-08, + "subconsciousness": 5.25e-08, + "subcostal": 5.25e-08, + "subdirectories": 5.25e-08, + "subi": 5.25e-08, + "substrata": 5.25e-08, + "subsuming": 5.25e-08, + "subvention": 5.25e-08, + "suha": 5.25e-08, + "suicided": 5.25e-08, + "sukumar": 5.25e-08, + "sulfonamides": 5.25e-08, + "sunwoo": 5.25e-08, + "supercede": 5.25e-08, + "supergravity": 5.25e-08, + "superspeedway": 5.25e-08, + "supps": 5.25e-08, + "supraorbital": 5.25e-08, + "suzannah": 5.25e-08, + "svedberg": 5.25e-08, + "swae": 5.25e-08, + "swampscott": 5.25e-08, + "sweezy": 5.25e-08, + "swigs": 5.25e-08, + "syaoran": 5.25e-08, + "syros": 5.25e-08, + "tackett": 5.25e-08, + "taehyung": 5.25e-08, + "taenia": 5.25e-08, + "taishan": 5.25e-08, + "takfiri": 5.25e-08, + "talas": 5.25e-08, + "taleban": 5.25e-08, + "tannadice": 5.25e-08, + "tarboro": 5.25e-08, + "tascam": 5.25e-08, + "tawfiq": 5.25e-08, + "techstars": 5.25e-08, + "teej": 5.25e-08, + "telegraaf": 5.25e-08, + "tellez": 5.25e-08, + "tellings": 5.25e-08, + "temkin": 5.25e-08, + "teoh": 5.25e-08, + "terrasse": 5.25e-08, + "tetrahydrofuran": 5.25e-08, + "tevita": 5.25e-08, + "tgm": 5.25e-08, + "theor": 5.25e-08, + "theosophists": 5.25e-08, + "therion": 5.25e-08, + "thermopolis": 5.25e-08, + "thestreet": 5.25e-08, + "thhe": 5.25e-08, + "thieu": 5.25e-08, + "thoughout": 5.25e-08, + "thundercloud": 5.25e-08, + "thurles": 5.25e-08, + "tinbergen": 5.25e-08, + "tirreno": 5.25e-08, + "tlaxcala": 5.25e-08, + "tlg": 5.25e-08, + "tlop": 5.25e-08, + "tmall": 5.25e-08, + "toco": 5.25e-08, + "tohu": 5.25e-08, + "toker": 5.25e-08, + "tonny": 5.25e-08, + "tookie": 5.25e-08, + "toren": 5.25e-08, + "toughens": 5.25e-08, + "trainin": 5.25e-08, + "transduced": 5.25e-08, + "transgenerational": 5.25e-08, + "transvestism": 5.25e-08, + "trashiest": 5.25e-08, + "treaded": 5.25e-08, + "trenta": 5.25e-08, + "tressa": 5.25e-08, + "trigo": 5.25e-08, + "triploid": 5.25e-08, + "tritt": 5.25e-08, + "trofeo": 5.25e-08, + "trufant": 5.25e-08, + "trunked": 5.25e-08, + "tryhard": 5.25e-08, + "tshering": 5.25e-08, + "tuberosity": 5.25e-08, + "tumblrs": 5.25e-08, + "tupi": 5.25e-08, + "turbaned": 5.25e-08, + "tuum": 5.25e-08, + "typographer": 5.25e-08, + "uhg": 5.25e-08, + "uhi": 5.25e-08, + "uhu": 5.25e-08, + "ukraina": 5.25e-08, + "ulp": 5.25e-08, + "ultramar": 5.25e-08, + "umair": 5.25e-08, + "umbel": 5.25e-08, + "umoja": 5.25e-08, + "uncolored": 5.25e-08, + "uncontacted": 5.25e-08, + "uncrewed": 5.25e-08, + "underglaze": 5.25e-08, + "underpay": 5.25e-08, + "underwears": 5.25e-08, + "undulated": 5.25e-08, + "undyed": 5.25e-08, + "unfixable": 5.25e-08, + "unitedhealthcare": 5.25e-08, + "unkept": 5.25e-08, + "unmentionables": 5.25e-08, + "unmerciful": 5.25e-08, + "unno": 5.25e-08, + "unsheltered": 5.25e-08, + "unvarying": 5.25e-08, + "unwaveringly": 5.25e-08, + "upg": 5.25e-08, + "uppingham": 5.25e-08, + "uprise": 5.25e-08, + "uptodate": 5.25e-08, + "urg": 5.25e-08, + "utu": 5.25e-08, + "uvas": 5.25e-08, + "valetta": 5.25e-08, + "valo": 5.25e-08, + "valores": 5.25e-08, + "vandiver": 5.25e-08, + "vaporware": 5.25e-08, + "varennes": 5.25e-08, + "vda": 5.25e-08, + "vedomosti": 5.25e-08, + "veloce": 5.25e-08, + "vemma": 5.25e-08, + "vep": 5.25e-08, + "verghese": 5.25e-08, + "victorine": 5.25e-08, + "viernes": 5.25e-08, + "viets": 5.25e-08, + "vigan": 5.25e-08, + "vincere": 5.25e-08, + "vineet": 5.25e-08, + "virar": 5.25e-08, + "visine": 5.25e-08, + "vison": 5.25e-08, + "vistaprint": 5.25e-08, + "vitalik": 5.25e-08, + "vizard": 5.25e-08, + "vologda": 5.25e-08, + "voltammetry": 5.25e-08, + "volvulus": 5.25e-08, + "vrba": 5.25e-08, + "vukovar": 5.25e-08, + "vul": 5.25e-08, + "wackiness": 5.25e-08, + "wadhwa": 5.25e-08, + "waffled": 5.25e-08, + "wagle": 5.25e-08, + "waitlisted": 5.25e-08, + "wakamatsu": 5.25e-08, + "walczak": 5.25e-08, + "wallack": 5.25e-08, + "walsham": 5.25e-08, + "wamba": 5.25e-08, + "wapiti": 5.25e-08, + "wapner": 5.25e-08, + "warbeck": 5.25e-08, + "warbirds": 5.25e-08, + "warioware": 5.25e-08, + "watter": 5.25e-08, + "wavin": 5.25e-08, + "waxwings": 5.25e-08, + "weap": 5.25e-08, + "weaverville": 5.25e-08, + "webisodes": 5.25e-08, + "weho": 5.25e-08, + "weigand": 5.25e-08, + "weismann": 5.25e-08, + "wellpoint": 5.25e-08, + "wending": 5.25e-08, + "westby": 5.25e-08, + "westpoint": 5.25e-08, + "wfh": 5.25e-08, + "wharfedale": 5.25e-08, + "wheee": 5.25e-08, + "whelps": 5.25e-08, + "whewell": 5.25e-08, + "whisenhunt": 5.25e-08, + "whn": 5.25e-08, + "wickhams": 5.25e-08, + "widdicombe": 5.25e-08, + "wiggler": 5.25e-08, + "wilczek": 5.25e-08, + "wilmott": 5.25e-08, + "windfarms": 5.25e-08, + "winfried": 5.25e-08, + "winnies": 5.25e-08, + "winograd": 5.25e-08, + "winsford": 5.25e-08, + "winsted": 5.25e-08, + "wirtschaft": 5.25e-08, + "witting": 5.25e-08, + "wml": 5.25e-08, + "woodcutters": 5.25e-08, + "wookiees": 5.25e-08, + "woolfolk": 5.25e-08, + "woolloomooloo": 5.25e-08, + "woolston": 5.25e-08, + "worklife": 5.25e-08, + "wsg": 5.25e-08, + "wsoc": 5.25e-08, + "wusa": 5.25e-08, + "wysocki": 5.25e-08, + "xion": 5.25e-08, + "xmm": 5.25e-08, + "xstrata": 5.25e-08, + "yanan": 3.63e-08, + "yarkand": 5.25e-08, + "yarraville": 5.25e-08, + "yeaaaah": 5.25e-08, + "yelland": 5.25e-08, + "yelnats": 5.25e-08, + "yero": 5.25e-08, + "yobs": 5.25e-08, + "yonex": 5.25e-08, + "yorgos": 5.25e-08, + "yoshimitsu": 5.25e-08, + "yoshimoto": 5.25e-08, + "yoshiro": 5.25e-08, + "youare": 5.25e-08, + "younguns": 5.25e-08, + "younghusband": 5.25e-08, + "youri": 5.25e-08, + "youuu": 5.25e-08, + "yowling": 5.25e-08, + "zad": 5.25e-08, + "zahar": 5.25e-08, + "zaher": 5.25e-08, + "zaka": 5.25e-08, + "zanussi": 5.25e-08, + "zeenat": 5.25e-08, + "zeuss": 5.25e-08, + "zhdanov": 5.25e-08, + "zik": 5.25e-08, + "zionsville": 5.25e-08, + "zipp": 5.25e-08, + "zoids": 5.25e-08, + "zombi": 5.25e-08, + "zulfikar": 5.25e-08, + "zygon": 5.25e-08, + "abap": 5.13e-08, + "abasement": 5.13e-08, + "abcde": 5.13e-08, + "abductee": 5.13e-08, + "abergele": 5.13e-08, + "abidine": 5.13e-08, + "ablated": 5.13e-08, + "abruptness": 5.13e-08, + "absense": 5.13e-08, + "acetates": 5.13e-08, + "advisability": 5.13e-08, + "aesthetical": 5.13e-08, + "afcs": 5.13e-08, + "agadez": 5.13e-08, + "ahle": 5.13e-08, + "ahq": 5.13e-08, + "ahsa": 5.13e-08, + "aksa": 5.13e-08, + "alade": 5.13e-08, + "alanson": 5.13e-08, + "alberich": 5.13e-08, + "alcacer": 5.13e-08, + "alexiss": 5.13e-08, + "algie": 5.13e-08, + "algos": 5.13e-08, + "alleghenies": 5.13e-08, + "allografts": 5.13e-08, + "almsgiving": 5.13e-08, + "aloisi": 5.13e-08, + "alpo": 5.13e-08, + "alread": 5.13e-08, + "altshuler": 5.13e-08, + "aluminized": 5.13e-08, + "alysha": 5.13e-08, + "amagansett": 5.13e-08, + "amakusa": 5.13e-08, + "ambanis": 5.13e-08, + "amberg": 5.13e-08, + "ambros": 5.13e-08, + "amersfoort": 5.13e-08, + "amiability": 5.13e-08, + "amoruso": 5.13e-08, + "ampthill": 5.13e-08, + "anantnag": 5.13e-08, + "anar": 5.13e-08, + "andoni": 5.13e-08, + "angeleno": 5.13e-08, + "animalia": 5.13e-08, + "anniv": 5.13e-08, + "annualised": 5.13e-08, + "annulments": 5.13e-08, + "annunziata": 5.13e-08, + "antaeus": 5.13e-08, + "antec": 5.13e-08, + "anthelmintic": 5.13e-08, + "antiarrhythmic": 5.13e-08, + "anticapitalist": 5.13e-08, + "anticlerical": 5.13e-08, + "antiguan": 5.13e-08, + "antipasti": 5.13e-08, + "antipersonnel": 5.13e-08, + "antipodal": 5.13e-08, + "aoyagi": 5.13e-08, + "aped": 5.13e-08, + "aperol": 5.13e-08, + "apic": 5.13e-08, + "apol": 5.13e-08, + "appartement": 5.13e-08, + "apperance": 5.13e-08, + "apprehensively": 5.13e-08, + "aqha": 5.13e-08, + "aquavit": 5.13e-08, + "aquiline": 5.13e-08, + "arema": 5.13e-08, + "ariba": 5.13e-08, + "aril": 5.13e-08, + "arison": 5.13e-08, + "arminians": 5.13e-08, + "arrestor": 5.13e-08, + "artspace": 5.13e-08, + "ascs": 5.13e-08, + "aspa": 5.13e-08, + "assr": 5.13e-08, + "astell": 5.13e-08, + "ataman": 5.13e-08, + "atascadero": 5.13e-08, + "athey": 5.13e-08, + "atol": 5.13e-08, + "audu": 5.13e-08, + "augustas": 5.13e-08, + "auratus": 5.13e-08, + "aureole": 5.13e-08, + "autoclaves": 5.13e-08, + "autocracies": 5.13e-08, + "automator": 5.13e-08, + "autour": 5.13e-08, + "avogadro": 5.13e-08, + "awr": 5.13e-08, + "azharuddin": 5.13e-08, + "baboo": 5.13e-08, + "babywearing": 5.13e-08, + "bachar": 5.13e-08, + "backoff": 5.13e-08, + "backorder": 5.13e-08, + "bahri": 5.13e-08, + "bahujan": 5.13e-08, + "baijiu": 5.13e-08, + "balladry": 5.13e-08, + "ballew": 5.13e-08, + "banas": 5.13e-08, + "barbeques": 5.13e-08, + "barrelling": 5.13e-08, + "barritt": 5.13e-08, + "bashevis": 5.13e-08, + "basilicata": 5.13e-08, + "basketballer": 5.13e-08, + "bassmaster": 5.13e-08, + "bastiat": 5.13e-08, + "bathos": 5.13e-08, + "batz": 5.13e-08, + "bayberry": 5.13e-08, + "beasting": 5.13e-08, + "bebes": 5.13e-08, + "behnke": 5.13e-08, + "beholders": 5.13e-08, + "bellegarde": 5.13e-08, + "beloveds": 5.01e-08, + "belsky": 5.13e-08, + "benneteau": 5.13e-08, + "benthos": 5.13e-08, + "bents": 5.13e-08, + "benzocaine": 5.13e-08, + "berlinger": 5.13e-08, + "bernardini": 5.13e-08, + "beseeched": 5.13e-08, + "beshara": 5.13e-08, + "bidness": 5.13e-08, + "bifocal": 5.13e-08, + "binga": 5.13e-08, + "binnacle": 5.13e-08, + "biophilia": 5.13e-08, + "biru": 5.13e-08, + "bitbucket": 5.13e-08, + "bitlocker": 5.13e-08, + "biwi": 5.13e-08, + "blackhorse": 5.13e-08, + "blackmoor": 5.13e-08, + "blaize": 5.13e-08, + "blanchards": 5.13e-08, + "bleue": 5.13e-08, + "bloks": 5.13e-08, + "blotters": 5.13e-08, + "bluesky": 5.13e-08, + "blumhouse": 5.13e-08, + "blut": 5.13e-08, + "bmb": 5.13e-08, + "bobolink": 5.13e-08, + "bodger": 5.13e-08, + "bohl": 5.13e-08, + "boinc": 5.13e-08, + "boink": 5.13e-08, + "bojana": 5.13e-08, + "boksburg": 5.13e-08, + "bolitho": 5.13e-08, + "boller": 5.13e-08, + "bombus": 5.13e-08, + "bookstagram": 5.13e-08, + "boppy": 5.13e-08, + "borba": 5.13e-08, + "bordens": 5.13e-08, + "borrell": 5.13e-08, + "bouncin": 5.13e-08, + "bournville": 5.13e-08, + "bowdon": 5.13e-08, + "bradmans": 5.13e-08, + "brancusi": 5.13e-08, + "brandie": 5.13e-08, + "brassieres": 5.13e-08, + "brean": 5.13e-08, + "brevoort": 5.13e-08, + "bridgeview": 5.13e-08, + "brimful": 5.13e-08, + "briones": 5.13e-08, + "brocades": 5.13e-08, + "brockwell": 5.13e-08, + "brodin": 5.13e-08, + "bromhead": 5.13e-08, + "brominated": 5.13e-08, + "bronchodilators": 5.13e-08, + "bruker": 5.13e-08, + "budokai": 5.13e-08, + "buggering": 5.13e-08, + "burntisland": 5.13e-08, + "busying": 5.13e-08, + "cabinetmakers": 5.13e-08, + "caipirinha": 5.13e-08, + "calcination": 5.13e-08, + "calcineurin": 5.13e-08, + "calibres": 5.13e-08, + "calientes": 5.13e-08, + "camby": 5.13e-08, + "caminos": 5.13e-08, + "canad": 5.13e-08, + "canali": 5.13e-08, + "candlewick": 5.13e-08, + "canetti": 5.13e-08, + "cannavale": 5.13e-08, + "capac": 5.13e-08, + "capek": 5.13e-08, + "capitation": 5.13e-08, + "carabobo": 5.13e-08, + "carceral": 5.13e-08, + "cardell": 5.13e-08, + "cardioversion": 5.13e-08, + "carnforth": 5.13e-08, + "carstensen": 5.13e-08, + "carvell": 5.13e-08, + "cashiered": 5.13e-08, + "casl": 5.13e-08, + "cassa": 5.13e-08, + "castleberry": 5.13e-08, + "catalogo": 5.13e-08, + "catmull": 5.13e-08, + "caulked": 5.13e-08, + "caviezel": 5.13e-08, + "cbms": 5.13e-08, + "cbx": 5.13e-08, + "celebrex": 5.13e-08, + "cervera": 5.13e-08, + "cervus": 5.13e-08, + "cetaphil": 5.13e-08, + "ceteris": 5.13e-08, + "cgh": 5.13e-08, + "challen": 5.13e-08, + "channelized": 5.13e-08, + "charman": 5.13e-08, + "charmy": 5.13e-08, + "chatelet": 5.13e-08, + "checksums": 5.13e-08, + "chelated": 5.13e-08, + "chelsie": 5.13e-08, + "cherif": 5.13e-08, + "chesky": 5.13e-08, + "chignon": 5.13e-08, + "chimerical": 5.13e-08, + "chippie": 5.13e-08, + "chiswell": 5.13e-08, + "chittoor": 5.13e-08, + "choosed": 5.13e-08, + "christianize": 5.13e-08, + "christofer": 5.13e-08, + "chromo": 5.13e-08, + "chronicon": 5.13e-08, + "chuff": 5.13e-08, + "chunked": 5.13e-08, + "cih": 5.13e-08, + "cilium": 5.13e-08, + "cirebon": 5.13e-08, + "claas": 5.13e-08, + "classica": 5.13e-08, + "clefairy": 5.13e-08, + "clemmie": 5.13e-08, + "clifden": 5.13e-08, + "clintonville": 5.13e-08, + "clipperton": 5.13e-08, + "clix": 5.13e-08, + "coagulants": 5.13e-08, + "cokey": 5.13e-08, + "collarless": 5.13e-08, + "collimation": 5.13e-08, + "combin": 5.13e-08, + "comedia": 5.13e-08, + "commack": 5.13e-08, + "commendatory": 5.13e-08, + "comodo": 5.13e-08, + "condie": 5.13e-08, + "conferees": 5.13e-08, + "conferral": 5.13e-08, + "configs": 5.13e-08, + "confounders": 5.13e-08, + "conserv": 5.13e-08, + "convalesce": 5.13e-08, + "convento": 5.13e-08, + "coppi": 5.13e-08, + "cosplayed": 5.13e-08, + "costless": 5.13e-08, + "countrywoman": 5.13e-08, + "couperin": 5.13e-08, + "courland": 5.13e-08, + "crawleys": 5.13e-08, + "crighton": 5.13e-08, + "crimper": 5.13e-08, + "crones": 5.13e-08, + "crosier": 5.13e-08, + "cruet": 5.13e-08, + "cryptococcus": 5.13e-08, + "curiositys": 5.13e-08, + "cycloid": 5.13e-08, + "dacoit": 5.13e-08, + "daito": 5.13e-08, + "dalgliesh": 5.13e-08, + "dalis": 5.13e-08, + "dallied": 5.13e-08, + "dalry": 5.13e-08, + "damiani": 5.13e-08, + "damier": 5.13e-08, + "damps": 5.13e-08, + "darhk": 5.13e-08, + "darryls": 5.13e-08, + "dawla": 5.13e-08, + "dcn": 5.13e-08, + "ddh": 5.13e-08, + "ddj": 5.13e-08, + "deadfall": 5.13e-08, + "debray": 5.13e-08, + "decl": 5.13e-08, + "decomp": 5.13e-08, + "deconstructive": 5.13e-08, + "defocus": 5.13e-08, + "dehors": 5.13e-08, + "deicide": 5.13e-08, + "deila": 5.13e-08, + "deji": 5.13e-08, + "delet": 5.13e-08, + "dellacqua": 5.13e-08, + "dengler": 5.13e-08, + "dependently": 5.13e-08, + "depop": 5.13e-08, + "deputising": 5.13e-08, + "desaturated": 5.13e-08, + "desireable": 5.13e-08, + "dhd": 5.13e-08, + "dho": 5.13e-08, + "dhyan": 5.13e-08, + "diacritic": 5.13e-08, + "diagnostically": 5.13e-08, + "diazo": 5.13e-08, + "diederik": 5.13e-08, + "diel": 5.13e-08, + "dieses": 5.13e-08, + "difranco": 5.13e-08, + "digipak": 5.13e-08, + "dioscorides": 5.13e-08, + "dishcloth": 5.13e-08, + "diskin": 5.13e-08, + "disproportionality": 5.13e-08, + "dittmar": 5.13e-08, + "dolomitic": 5.13e-08, + "donau": 5.13e-08, + "donnel": 5.13e-08, + "doomy": 5.13e-08, + "drancy": 5.13e-08, + "droste": 5.13e-08, + "dubas": 5.13e-08, + "dudamel": 5.13e-08, + "dungarvan": 5.13e-08, + "duplin": 5.13e-08, + "duralumin": 5.13e-08, + "duse": 5.13e-08, + "dustman": 5.13e-08, + "duveen": 5.13e-08, + "dvf": 5.13e-08, + "dybbuk": 5.13e-08, + "eab": 5.13e-08, + "ecsc": 5.13e-08, + "eddowes": 5.13e-08, + "edney": 5.13e-08, + "effeminacy": 5.13e-08, + "egad": 5.13e-08, + "egeland": 5.13e-08, + "ekka": 5.13e-08, + "elasticated": 5.13e-08, + "elb": 5.13e-08, + "elbaz": 5.13e-08, + "elda": 5.13e-08, + "electrodynamic": 5.13e-08, + "elfrid": 5.13e-08, + "eliminators": 5.13e-08, + "elitebook": 5.13e-08, + "ellaria": 5.13e-08, + "ellisville": 5.13e-08, + "ellon": 5.13e-08, + "elmes": 5.13e-08, + "embase": 5.13e-08, + "embrasures": 5.13e-08, + "embryological": 5.13e-08, + "emes": 5.13e-08, + "emilias": 5.13e-08, + "emmetts": 5.13e-08, + "emon": 5.13e-08, + "emraan": 5.13e-08, + "enfin": 5.13e-08, + "engdahl": 5.13e-08, + "enghien": 5.13e-08, + "enti": 5.13e-08, + "enty": 5.13e-08, + "epdm": 5.13e-08, + "ephemerides": 5.13e-08, + "episodically": 5.13e-08, + "eqn": 5.13e-08, + "erda": 5.13e-08, + "ernsts": 5.13e-08, + "erratum": 5.13e-08, + "errico": 5.13e-08, + "espacio": 5.13e-08, + "espe": 5.13e-08, + "etzioni": 5.13e-08, + "euclids": 5.13e-08, + "eurocentrism": 5.13e-08, + "evap": 5.13e-08, + "evicts": 5.13e-08, + "evies": 5.13e-08, + "evolv": 5.13e-08, + "ewc": 5.13e-08, + "exotically": 5.13e-08, + "experientially": 5.13e-08, + "exulted": 5.13e-08, + "eyecare": 5.13e-08, + "eyles": 5.13e-08, + "faba": 5.13e-08, + "fager": 5.13e-08, + "fainthearted": 5.13e-08, + "falsifications": 5.13e-08, + "fantasie": 5.13e-08, + "farooqi": 5.13e-08, + "faseb": 5.13e-08, + "faultlessly": 5.13e-08, + "favourited": 5.13e-08, + "fayyad": 5.13e-08, + "fcas": 5.13e-08, + "fedayeen": 5.13e-08, + "feffer": 5.13e-08, + "feliciana": 5.13e-08, + "feliks": 5.13e-08, + "fellah": 5.13e-08, + "fermentations": 5.13e-08, + "ferntree": 5.13e-08, + "festively": 5.13e-08, + "fiche": 5.13e-08, + "fiera": 5.13e-08, + "filmon": 5.13e-08, + "filthiness": 5.13e-08, + "findlater": 5.13e-08, + "fiorini": 5.13e-08, + "firelord": 5.13e-08, + "firered": 5.13e-08, + "firoz": 5.13e-08, + "fistfuls": 5.13e-08, + "flacks": 5.13e-08, + "flareon": 5.13e-08, + "flatworm": 5.13e-08, + "flett": 5.13e-08, + "flg": 5.13e-08, + "florencia": 5.13e-08, + "fludd": 5.13e-08, + "flyball": 5.13e-08, + "foca": 5.13e-08, + "fola": 5.13e-08, + "fondas": 5.13e-08, + "fonseka": 5.13e-08, + "footsies": 5.13e-08, + "foreignness": 5.13e-08, + "foreshortened": 5.13e-08, + "forschungen": 5.13e-08, + "fotografia": 5.13e-08, + "foulis": 5.13e-08, + "freebase": 5.13e-08, + "freemont": 5.13e-08, + "frf": 5.13e-08, + "frow": 5.13e-08, + "fuckn": 5.13e-08, + "fucko": 5.13e-08, + "fujiyama": 5.13e-08, + "fumigating": 5.13e-08, + "furber": 5.13e-08, + "gadamer": 5.13e-08, + "gaffs": 5.13e-08, + "garifuna": 5.13e-08, + "garstang": 5.13e-08, + "gaulles": 5.13e-08, + "gbt": 5.13e-08, + "geil": 5.13e-08, + "gellius": 5.13e-08, + "genest": 5.13e-08, + "genuflect": 5.13e-08, + "gerb": 5.13e-08, + "gger": 5.13e-08, + "ggp": 5.13e-08, + "ghr": 5.13e-08, + "gilli": 5.13e-08, + "gimple": 5.13e-08, + "gine": 5.13e-08, + "ginsburgs": 5.13e-08, + "giordanos": 5.13e-08, + "gipps": 5.13e-08, + "gisbergen": 5.13e-08, + "glencross": 5.13e-08, + "gmv": 5.13e-08, + "goldston": 5.13e-08, + "gonn": 5.13e-08, + "goves": 5.13e-08, + "governer": 5.13e-08, + "goyard": 5.13e-08, + "gracy": 5.13e-08, + "grammophon": 5.13e-08, + "greenmount": 5.13e-08, + "greenvale": 5.13e-08, + "greyhawk": 5.13e-08, + "greywater": 5.13e-08, + "gristmill": 5.13e-08, + "grl": 5.13e-08, + "grobe": 5.13e-08, + "grossen": 5.13e-08, + "groundcover": 5.13e-08, + "gtpases": 5.13e-08, + "guddu": 5.13e-08, + "gushers": 5.13e-08, + "gussied": 5.13e-08, + "gvsu": 5.13e-08, + "gwc": 5.13e-08, + "gypsys": 5.13e-08, + "haaaa": 5.13e-08, + "hagfish": 5.13e-08, + "hailie": 5.13e-08, + "hairnet": 5.13e-08, + "hakuba": 5.13e-08, + "hallucinates": 5.13e-08, + "hamari": 5.13e-08, + "hambantota": 5.13e-08, + "handier": 5.13e-08, + "handoffs": 5.13e-08, + "hanjin": 5.13e-08, + "hanleys": 5.13e-08, + "hanlons": 5.13e-08, + "hanshin": 5.13e-08, + "harborne": 5.13e-08, + "harpooned": 5.13e-08, + "hartt": 5.13e-08, + "hasbara": 5.13e-08, + "hashrate": 5.13e-08, + "hatchs": 5.13e-08, + "headon": 5.13e-08, + "heartwrenching": 5.13e-08, + "hebb": 5.13e-08, + "heidelberger": 5.13e-08, + "heini": 5.13e-08, + "hekmatyar": 5.13e-08, + "hektor": 5.13e-08, + "henricus": 5.13e-08, + "hesi": 5.13e-08, + "hibernates": 5.13e-08, + "hice": 5.13e-08, + "highscore": 5.13e-08, + "hightown": 5.13e-08, + "hitchings": 5.13e-08, + "hku": 5.13e-08, + "holberg": 5.13e-08, + "holcim": 5.13e-08, + "homomorphic": 5.13e-08, + "hoople": 5.13e-08, + "hornbills": 5.13e-08, + "horowitzs": 5.13e-08, + "hottentots": 5.13e-08, + "hourani": 5.13e-08, + "housefull": 5.13e-08, + "hulst": 5.13e-08, + "hutts": 5.13e-08, + "hybris": 5.13e-08, + "hyneman": 5.13e-08, + "hypnotizes": 5.13e-08, + "idve": 5.13e-08, + "ial": 5.13e-08, + "iaps": 5.13e-08, + "iberdrola": 5.13e-08, + "ibotta": 5.13e-08, + "ichthyosaurs": 5.13e-08, + "icma": 5.13e-08, + "ideograms": 5.13e-08, + "ideographic": 5.13e-08, + "idont": 5.13e-08, + "ieps": 5.13e-08, + "iest": 5.13e-08, + "iestyn": 5.13e-08, + "igbos": 5.13e-08, + "iheanacho": 5.13e-08, + "ilic": 5.13e-08, + "illest": 5.13e-08, + "immunomodulatory": 5.13e-08, + "immunosuppressed": 5.13e-08, + "imposture": 5.13e-08, + "incarcerations": 5.13e-08, + "indrajit": 5.13e-08, + "ined": 5.13e-08, + "infilling": 5.13e-08, + "infomation": 5.13e-08, + "inhalations": 5.13e-08, + "inoki": 5.13e-08, + "inquirys": 5.13e-08, + "insanitary": 5.13e-08, + "insu": 5.13e-08, + "insur": 5.13e-08, + "insurgence": 5.13e-08, + "intarsia": 5.13e-08, + "intercommunal": 5.13e-08, + "intermittency": 5.13e-08, + "interstitials": 5.13e-08, + "introd": 5.13e-08, + "intubate": 5.13e-08, + "invasively": 5.13e-08, + "invigorates": 5.13e-08, + "inzamam": 5.13e-08, + "iria": 5.13e-08, + "ironmongery": 5.13e-08, + "irrigators": 5.13e-08, + "ishigaki": 5.13e-08, + "isolations": 5.13e-08, + "isotherms": 5.13e-08, + "ivankas": 5.13e-08, + "iwaki": 5.13e-08, + "izabella": 5.13e-08, + "jabroni": 5.13e-08, + "jackoff": 5.13e-08, + "jacs": 5.13e-08, + "jadwiga": 5.13e-08, + "janay": 5.13e-08, + "jarkko": 5.13e-08, + "jarmo": 5.13e-08, + "jaspar": 5.13e-08, + "jataka": 5.13e-08, + "jcl": 5.13e-08, + "jehoiakim": 5.13e-08, + "jellinek": 5.13e-08, + "jiminez": 5.13e-08, + "jjb": 5.13e-08, + "joep": 5.13e-08, + "jolliffe": 5.13e-08, + "jongg": 5.13e-08, + "josepha": 5.13e-08, + "juegos": 5.13e-08, + "juiciness": 5.13e-08, + "jurado": 5.13e-08, + "justiciar": 5.13e-08, + "jvr": 5.13e-08, + "jws": 5.13e-08, + "kakyoin": 5.13e-08, + "kalis": 5.13e-08, + "kanawa": 5.13e-08, + "kancolle": 5.13e-08, + "kantrowitz": 5.13e-08, + "kanwal": 5.13e-08, + "kapellmeister": 5.13e-08, + "karie": 5.13e-08, + "karter": 5.13e-08, + "katonah": 5.13e-08, + "kavitha": 5.13e-08, + "kawasakis": 5.13e-08, + "kayley": 5.13e-08, + "kazunori": 5.13e-08, + "keelung": 5.13e-08, + "keiretsu": 5.13e-08, + "kelsie": 5.13e-08, + "kenwright": 5.13e-08, + "kerrigans": 5.13e-08, + "kestner": 5.13e-08, + "kets": 5.13e-08, + "khari": 5.13e-08, + "khaya": 5.13e-08, + "kiani": 5.13e-08, + "kibbles": 5.13e-08, + "kielder": 5.13e-08, + "kilifi": 5.13e-08, + "kimbell": 5.13e-08, + "kincade": 5.13e-08, + "kindreds": 5.13e-08, + "kiowas": 5.13e-08, + "kippah": 5.13e-08, + "kittitas": 5.13e-08, + "kliment": 5.13e-08, + "klock": 5.13e-08, + "kochhar": 5.13e-08, + "koechlin": 5.13e-08, + "kolyma": 5.13e-08, + "kourou": 5.13e-08, + "krugmans": 5.13e-08, + "ktn": 5.13e-08, + "kuchi": 5.13e-08, + "kule": 5.13e-08, + "kult": 5.13e-08, + "kumba": 5.13e-08, + "kuroshio": 5.13e-08, + "kushida": 5.13e-08, + "laberge": 5.13e-08, + "labrie": 5.13e-08, + "lacerate": 5.13e-08, + "laich": 5.13e-08, + "laidler": 5.13e-08, + "lambourn": 5.13e-08, + "lamivudine": 5.13e-08, + "lapdance": 5.13e-08, + "lapine": 5.13e-08, + "larrikin": 5.13e-08, + "lasa": 5.13e-08, + "lasco": 5.13e-08, + "lassitude": 5.13e-08, + "latini": 5.13e-08, + "latur": 5.13e-08, + "laury": 5.13e-08, + "laviolette": 5.13e-08, + "lcdr": 5.13e-08, + "leanest": 5.13e-08, + "learmonth": 5.13e-08, + "leasable": 5.13e-08, + "legh": 5.13e-08, + "legros": 5.13e-08, + "lenski": 5.13e-08, + "leroys": 5.13e-08, + "lesnars": 5.13e-08, + "levent": 5.13e-08, + "lews": 5.13e-08, + "liberte": 5.13e-08, + "lieven": 5.13e-08, + "likeliness": 5.13e-08, + "lincolnton": 5.13e-08, + "linzi": 5.13e-08, + "lochalsh": 5.13e-08, + "locher": 5.13e-08, + "loftis": 5.13e-08, + "lorraines": 5.13e-08, + "lothair": 5.13e-08, + "lotos": 5.13e-08, + "loudmouthed": 5.13e-08, + "lpf": 5.13e-08, + "lumbers": 5.13e-08, + "lvp": 5.13e-08, + "lybrand": 5.13e-08, + "lydda": 5.13e-08, + "lyster": 5.13e-08, + "macari": 5.13e-08, + "macbeths": 5.13e-08, + "maccormac": 5.13e-08, + "maccormack": 5.13e-08, + "mackellar": 5.13e-08, + "macklemores": 5.13e-08, + "macquaries": 5.13e-08, + "macroscopically": 5.13e-08, + "madres": 5.13e-08, + "magalona": 5.13e-08, + "mahadeva": 5.13e-08, + "maintenon": 5.13e-08, + "maisha": 5.13e-08, + "maithripala": 5.13e-08, + "maladroit": 5.13e-08, + "malolos": 5.13e-08, + "malva": 5.13e-08, + "mancos": 5.13e-08, + "mandl": 5.13e-08, + "manitoulin": 5.13e-08, + "manzanares": 5.13e-08, + "mappa": 5.13e-08, + "maquoketa": 5.13e-08, + "margera": 5.13e-08, + "marginality": 5.13e-08, + "marginalizes": 5.13e-08, + "mariachis": 5.13e-08, + "mariadb": 5.13e-08, + "marians": 5.13e-08, + "marieke": 5.13e-08, + "marins": 5.13e-08, + "marinko": 5.13e-08, + "marketings": 5.13e-08, + "marketo": 5.13e-08, + "markova": 5.13e-08, + "masbate": 5.13e-08, + "mashpee": 5.13e-08, + "masseurs": 5.13e-08, + "mauchline": 5.13e-08, + "mauras": 5.13e-08, + "maximizer": 5.13e-08, + "mayak": 5.13e-08, + "mayol": 5.13e-08, + "mazin": 5.13e-08, + "mazzoni": 5.13e-08, + "mcandrews": 5.13e-08, + "mccaskey": 5.13e-08, + "mccone": 5.13e-08, + "mcelwee": 5.13e-08, + "mcgahee": 5.13e-08, + "mcgarrett": 5.13e-08, + "mcgaw": 5.13e-08, + "medecine": 5.13e-08, + "medela": 5.13e-08, + "megatrends": 5.13e-08, + "melanesians": 5.13e-08, + "mendels": 5.13e-08, + "menil": 5.13e-08, + "meowed": 5.13e-08, + "meramec": 5.13e-08, + "mercatus": 5.13e-08, + "meshwork": 5.13e-08, + "mesi": 5.13e-08, + "messala": 5.13e-08, + "metalic": 5.13e-08, + "methow": 5.13e-08, + "metrolinx": 5.13e-08, + "metzner": 5.13e-08, + "mgu": 5.13e-08, + "michaelia": 5.13e-08, + "microchannel": 5.13e-08, + "microgrid": 5.13e-08, + "mida": 5.13e-08, + "midnapore": 5.13e-08, + "milhaud": 5.13e-08, + "milind": 5.13e-08, + "milito": 5.13e-08, + "milles": 5.13e-08, + "milliman": 5.13e-08, + "millin": 5.13e-08, + "minal": 5.13e-08, + "mindscape": 5.13e-08, + "minervas": 5.13e-08, + "ministration": 5.13e-08, + "mirtazapine": 5.13e-08, + "mishandle": 5.13e-08, + "misplayed": 5.13e-08, + "mithila": 5.13e-08, + "mixologists": 5.13e-08, + "mlps": 5.13e-08, + "modcloth": 5.13e-08, + "modulatory": 5.13e-08, + "moel": 5.13e-08, + "monalisa": 5.13e-08, + "monfort": 5.13e-08, + "monier": 5.13e-08, + "morand": 5.13e-08, + "morarji": 5.13e-08, + "morillo": 5.13e-08, + "mortadella": 5.13e-08, + "motos": 5.13e-08, + "mrad": 5.13e-08, + "mtech": 5.13e-08, + "muf": 5.13e-08, + "muffles": 5.13e-08, + "mujuru": 5.13e-08, + "multiphoton": 5.13e-08, + "multitouch": 5.13e-08, + "munakata": 5.13e-08, + "muntari": 5.13e-08, + "musashino": 5.13e-08, + "mutare": 5.13e-08, + "mycelial": 5.13e-08, + "mycotoxin": 5.13e-08, + "myrtles": 5.13e-08, + "mystikal": 5.13e-08, + "nacion": 5.13e-08, + "nahid": 5.13e-08, + "nakamuras": 5.13e-08, + "narelle": 5.13e-08, + "naresuan": 5.13e-08, + "nationales": 5.13e-08, + "navara": 5.13e-08, + "nayeon": 5.13e-08, + "ncea": 5.13e-08, + "neagle": 5.13e-08, + "neema": 5.13e-08, + "neen": 5.13e-08, + "neonicotinoid": 5.13e-08, + "nere": 5.13e-08, + "netz": 5.13e-08, + "nexo": 5.13e-08, + "nguyens": 5.13e-08, + "niarchos": 5.13e-08, + "nicco": 5.13e-08, + "niehaus": 5.13e-08, + "nigers": 5.13e-08, + "nihongo": 5.13e-08, + "ninds": 5.13e-08, + "ninetales": 5.13e-08, + "nivolumab": 5.13e-08, + "nku": 5.13e-08, + "nkurunziza": 5.13e-08, + "nolde": 5.13e-08, + "nomex": 5.13e-08, + "noomi": 5.13e-08, + "noons": 5.13e-08, + "noordwijk": 5.13e-08, + "northcentral": 5.13e-08, + "npsl": 5.13e-08, + "nrma": 5.13e-08, + "nrx": 5.13e-08, + "nty": 5.13e-08, + "numeration": 5.13e-08, + "numismatist": 5.13e-08, + "nunchaku": 5.13e-08, + "nwosu": 5.13e-08, + "nyang": 5.13e-08, + "nysa": 5.13e-08, + "oakenfold": 5.13e-08, + "ofher": 5.13e-08, + "ogie": 5.13e-08, + "ogoni": 5.13e-08, + "ohe": 5.13e-08, + "oing": 5.13e-08, + "oligomer": 5.13e-08, + "opryland": 5.13e-08, + "optica": 5.13e-08, + "ordinals": 5.13e-08, + "orexin": 5.13e-08, + "orgasmed": 5.13e-08, + "orrell": 5.13e-08, + "orso": 5.13e-08, + "osg": 5.13e-08, + "osmolality": 5.13e-08, + "osservatore": 5.13e-08, + "otk": 5.13e-08, + "outgrowths": 5.13e-08, + "outsells": 5.13e-08, + "ovenden": 5.13e-08, + "overextend": 5.13e-08, + "overmuch": 5.13e-08, + "owais": 5.13e-08, + "oxana": 5.13e-08, + "oxman": 5.13e-08, + "ozai": 5.13e-08, + "paceman": 5.13e-08, + "pagenaud": 5.13e-08, + "paintjob": 5.13e-08, + "paktika": 5.13e-08, + "palast": 5.13e-08, + "paleoclimate": 5.13e-08, + "pallotta": 5.13e-08, + "panamax": 5.13e-08, + "pancaked": 5.13e-08, + "paos": 5.13e-08, + "parenteau": 5.13e-08, + "parineeti": 5.13e-08, + "parksville": 5.13e-08, + "pashas": 5.13e-08, + "pasto": 5.13e-08, + "pavlovna": 5.13e-08, + "paxos": 5.13e-08, + "pcgaming": 5.13e-08, + "pdw": 5.13e-08, + "pearle": 5.13e-08, + "pecora": 5.13e-08, + "pederast": 5.13e-08, + "pedraza": 5.13e-08, + "peierls": 5.13e-08, + "pekoe": 5.13e-08, + "peleus": 5.13e-08, + "pentacles": 5.13e-08, + "pepo": 5.13e-08, + "percolates": 5.13e-08, + "peridotite": 5.13e-08, + "periodontology": 5.13e-08, + "peroxisomes": 5.13e-08, + "perriman": 5.13e-08, + "persistant": 5.13e-08, + "pertamina": 5.13e-08, + "perthes": 5.13e-08, + "pervasively": 5.13e-08, + "petrodollar": 5.13e-08, + "petrovitch": 5.13e-08, + "petteri": 5.13e-08, + "pettiest": 5.13e-08, + "pfg": 5.13e-08, + "phifer": 5.13e-08, + "philadelphus": 5.13e-08, + "phillie": 5.13e-08, + "phlogiston": 5.13e-08, + "photodiodes": 5.13e-08, + "photostat": 5.13e-08, + "phrenic": 5.13e-08, + "phytochemical": 5.13e-08, + "pierogies": 5.13e-08, + "piggledy": 5.13e-08, + "pigman": 5.13e-08, + "pikesville": 5.13e-08, + "pinchers": 5.13e-08, + "pinedale": 5.13e-08, + "pinpricks": 5.13e-08, + "pinups": 5.13e-08, + "pinzon": 5.13e-08, + "pkt": 5.13e-08, + "plattner": 5.13e-08, + "platy": 5.13e-08, + "pleyel": 5.13e-08, + "pluggable": 5.13e-08, + "plummy": 5.13e-08, + "pnh": 5.13e-08, + "poesia": 5.13e-08, + "poin": 5.13e-08, + "politkovskaya": 5.13e-08, + "polymorpha": 5.13e-08, + "polymorphs": 5.13e-08, + "polys": 5.13e-08, + "porns": 5.13e-08, + "portstewart": 5.13e-08, + "portwood": 5.13e-08, + "postmodernity": 5.13e-08, + "poty": 5.13e-08, + "powles": 5.13e-08, + "ppy": 5.13e-08, + "prachi": 5.13e-08, + "pradeshs": 5.13e-08, + "prageru": 5.13e-08, + "prca": 5.13e-08, + "prefontaine": 5.13e-08, + "preloved": 5.13e-08, + "preme": 5.13e-08, + "presnell": 5.13e-08, + "prezzo": 5.13e-08, + "prisca": 5.13e-08, + "priscillas": 5.13e-08, + "profiteroles": 5.13e-08, + "progestogen": 5.13e-08, + "prograde": 5.13e-08, + "proofreaders": 5.13e-08, + "propagandize": 5.13e-08, + "prostrating": 5.13e-08, + "prothonotary": 5.13e-08, + "protozoans": 5.13e-08, + "provincialism": 5.13e-08, + "provosts": 5.01e-08, + "psuedo": 5.13e-08, + "pubescence": 5.13e-08, + "puckers": 5.13e-08, + "puds": 5.13e-08, + "punctatus": 5.13e-08, + "putamen": 5.13e-08, + "pyrrha": 5.13e-08, + "qaly": 5.13e-08, + "qna": 5.13e-08, + "quare": 5.13e-08, + "querido": 5.13e-08, + "quil": 5.13e-08, + "raam": 5.13e-08, + "raas": 5.13e-08, + "racin": 5.13e-08, + "rafaela": 5.13e-08, + "rakan": 5.13e-08, + "raloxifene": 5.13e-08, + "ramgarh": 5.13e-08, + "ramsdell": 5.13e-08, + "rastafarians": 5.13e-08, + "ratnagiri": 5.13e-08, + "raynaud": 5.13e-08, + "razon": 5.13e-08, + "reassertion": 5.13e-08, + "reciever": 5.13e-08, + "reconcilable": 5.13e-08, + "recruitments": 5.13e-08, + "reduplicated": 5.13e-08, + "redwine": 5.13e-08, + "regnant": 5.13e-08, + "regrowing": 5.13e-08, + "reily": 5.13e-08, + "reinforcer": 5.13e-08, + "reinke": 5.13e-08, + "rej": 5.13e-08, + "relaciones": 5.13e-08, + "relentlessness": 5.13e-08, + "remixer": 5.13e-08, + "remmy": 5.13e-08, + "renmark": 5.13e-08, + "restyling": 5.13e-08, + "retros": 5.13e-08, + "retta": 5.13e-08, + "revenger": 5.13e-08, + "reverbs": 5.13e-08, + "rexy": 5.13e-08, + "reymond": 5.13e-08, + "rft": 5.13e-08, + "rhodian": 5.13e-08, + "riesen": 5.13e-08, + "rigi": 5.13e-08, + "rigidities": 5.13e-08, + "rigth": 5.13e-08, + "riiiight": 5.13e-08, + "ringworld": 5.13e-08, + "riotously": 5.13e-08, + "riveters": 5.13e-08, + "rks": 5.13e-08, + "rocs": 5.13e-08, + "rockit": 5.13e-08, + "rodina": 5.13e-08, + "roessler": 5.13e-08, + "roloff": 5.13e-08, + "romagnoli": 5.13e-08, + "romanos": 5.13e-08, + "romcoms": 5.13e-08, + "ronkonkoma": 5.13e-08, + "rosenbach": 5.13e-08, + "rothermere": 5.13e-08, + "roundwood": 5.13e-08, + "routings": 5.13e-08, + "rrl": 5.13e-08, + "rumps": 5.13e-08, + "russie": 5.13e-08, + "ryung": 5.13e-08, + "salcido": 5.13e-08, + "saltbush": 5.13e-08, + "samana": 5.13e-08, + "samuele": 5.13e-08, + "sancto": 5.13e-08, + "sandesh": 5.13e-08, + "sandf": 5.13e-08, + "sandover": 5.13e-08, + "sange": 5.13e-08, + "sanon": 5.13e-08, + "sapi": 5.13e-08, + "sarasin": 5.13e-08, + "sargento": 5.13e-08, + "sarker": 5.13e-08, + "sarkozys": 5.13e-08, + "satnam": 5.13e-08, + "saulnier": 5.13e-08, + "sauveur": 5.13e-08, + "savea": 5.13e-08, + "scaf": 5.13e-08, + "scandrick": 5.13e-08, + "scaramanga": 5.13e-08, + "scarpetta": 5.13e-08, + "schantz": 5.13e-08, + "scheisse": 5.13e-08, + "schoonover": 5.13e-08, + "schweiger": 5.13e-08, + "scoggins": 5.13e-08, + "screechy": 5.13e-08, + "seann": 5.13e-08, + "seck": 5.13e-08, + "secolo": 5.13e-08, + "seethes": 5.13e-08, + "selex": 5.13e-08, + "selfdefense": 5.13e-08, + "sendero": 5.13e-08, + "sendmail": 5.13e-08, + "sequeira": 5.13e-08, + "seraglio": 5.13e-08, + "seriess": 5.13e-08, + "sextape": 5.13e-08, + "seydou": 5.13e-08, + "sfd": 5.13e-08, + "shailesh": 5.13e-08, + "shakeology": 5.13e-08, + "shatners": 5.13e-08, + "sheema": 5.13e-08, + "shehbaz": 5.13e-08, + "sheller": 5.13e-08, + "sheperd": 5.13e-08, + "shettima": 5.13e-08, + "shirer": 5.13e-08, + "shirting": 5.13e-08, + "shirtwaist": 5.13e-08, + "shitholes": 5.13e-08, + "shitters": 5.13e-08, + "shogo": 5.13e-08, + "shoguns": 5.13e-08, + "shriram": 5.13e-08, + "signposting": 5.13e-08, + "silwan": 5.13e-08, + "simula": 5.13e-08, + "sirk": 5.13e-08, + "skeevy": 5.13e-08, + "skelmersdale": 5.13e-08, + "skilton": 5.13e-08, + "skiving": 5.13e-08, + "slavonia": 5.13e-08, + "slomo": 5.13e-08, + "slowdive": 5.13e-08, + "snapdragons": 5.13e-08, + "snick": 5.13e-08, + "snifter": 5.13e-08, + "snowglobe": 5.13e-08, + "sociologie": 5.13e-08, + "soever": 5.13e-08, + "sorbets": 5.13e-08, + "soror": 5.13e-08, + "sotheby": 5.13e-08, + "soundest": 5.13e-08, + "soundman": 5.13e-08, + "soundwaves": 5.13e-08, + "southcentral": 5.13e-08, + "southwind": 5.13e-08, + "speake": 5.13e-08, + "spektrum": 5.13e-08, + "spex": 5.13e-08, + "splurges": 5.13e-08, + "sporophyte": 5.13e-08, + "sprog": 5.13e-08, + "spurling": 5.13e-08, + "squaws": 5.13e-08, + "sremmurd": 5.13e-08, + "ssas": 5.13e-08, + "stanislavski": 5.13e-08, + "stassi": 5.13e-08, + "steem": 5.13e-08, + "stefanik": 5.13e-08, + "stentorian": 5.13e-08, + "stepmothers": 5.13e-08, + "stereoscope": 5.13e-08, + "sticklebacks": 5.13e-08, + "stockmann": 5.13e-08, + "stoles": 5.13e-08, + "stoneleigh": 5.13e-08, + "strangulated": 5.13e-08, + "stransky": 5.13e-08, + "strigoi": 5.13e-08, + "strikebreakers": 5.13e-08, + "stus": 5.13e-08, + "subbu": 5.13e-08, + "submissively": 5.13e-08, + "sugihara": 5.13e-08, + "sugimura": 5.13e-08, + "sulle": 5.13e-08, + "sundquist": 5.13e-08, + "sunnybank": 5.13e-08, + "supercollider": 5.13e-08, + "surfrider": 5.13e-08, + "surve": 5.13e-08, + "survivin": 5.13e-08, + "suttle": 5.13e-08, + "swigging": 5.13e-08, + "syncline": 5.13e-08, + "tabac": 5.13e-08, + "tabl": 5.13e-08, + "tahari": 5.13e-08, + "taio": 5.13e-08, + "tamalpais": 5.13e-08, + "tantras": 5.13e-08, + "teamers": 5.13e-08, + "tebows": 5.13e-08, + "teched": 5.13e-08, + "teco": 5.13e-08, + "tedy": 5.13e-08, + "teemed": 5.13e-08, + "teepees": 5.13e-08, + "tegmental": 5.13e-08, + "tejpal": 5.13e-08, + "teleost": 5.13e-08, + "teleplay": 5.13e-08, + "teli": 5.13e-08, + "telia": 5.13e-08, + "tellme": 5.13e-08, + "tempelhof": 5.13e-08, + "templetons": 5.13e-08, + "teq": 5.13e-08, + "tequesta": 5.13e-08, + "terni": 5.13e-08, + "terrae": 5.13e-08, + "terrel": 5.13e-08, + "terres": 5.13e-08, + "tesfaye": 5.13e-08, + "testings": 5.13e-08, + "tetroxide": 5.13e-08, + "tgirl": 5.13e-08, + "thanes": 5.13e-08, + "thermocline": 5.13e-08, + "thesiger": 5.13e-08, + "thinketh": 5.13e-08, + "thnk": 5.13e-08, + "thomistic": 5.13e-08, + "thoug": 5.13e-08, + "tichy": 5.13e-08, + "ticktock": 5.13e-08, + "tindale": 5.13e-08, + "tlj": 5.13e-08, + "tmax": 5.13e-08, + "tokushima": 5.13e-08, + "tomblin": 5.13e-08, + "tomentosa": 5.13e-08, + "tona": 5.13e-08, + "tongariro": 5.13e-08, + "tonioli": 5.13e-08, + "toolmaker": 5.13e-08, + "toothsome": 5.13e-08, + "torbjorn": 5.13e-08, + "toriko": 5.13e-08, + "torreon": 5.13e-08, + "torri": 5.13e-08, + "tostring": 5.13e-08, + "totowa": 5.13e-08, + "towelling": 5.13e-08, + "tracfone": 5.13e-08, + "trackway": 5.13e-08, + "trademarking": 5.13e-08, + "transfinite": 5.13e-08, + "transhuman": 5.13e-08, + "transmittable": 5.13e-08, + "traverso": 5.13e-08, + "travoltas": 5.13e-08, + "treehouses": 5.13e-08, + "triaxial": 5.13e-08, + "tripwires": 5.13e-08, + "tsou": 5.13e-08, + "tucky": 5.13e-08, + "tufte": 5.13e-08, + "tupe": 5.13e-08, + "turriff": 5.13e-08, + "tuta": 5.13e-08, + "tweeddale": 5.13e-08, + "twelvetrees": 5.13e-08, + "twirly": 5.13e-08, + "tyrael": 5.13e-08, + "tzus": 5.13e-08, + "ugi": 5.13e-08, + "ugk": 5.13e-08, + "ultrastructural": 5.13e-08, + "ulva": 5.13e-08, + "unalaska": 5.13e-08, + "unbalancing": 5.13e-08, + "unconvincingly": 5.13e-08, + "underbite": 5.13e-08, + "underutilization": 5.13e-08, + "undistorted": 5.13e-08, + "undistributed": 5.13e-08, + "unhooking": 5.13e-08, + "unintuitive": 5.13e-08, + "unmetered": 5.13e-08, + "unreached": 5.13e-08, + "untutored": 5.13e-08, + "unwto": 5.13e-08, + "upv": 5.13e-08, + "urease": 5.13e-08, + "uruzgan": 5.13e-08, + "usia": 5.13e-08, + "usma": 5.13e-08, + "uuid": 5.13e-08, + "uuu": 5.13e-08, + "vacillation": 5.13e-08, + "vacuity": 5.13e-08, + "valerii": 5.13e-08, + "vandalise": 5.13e-08, + "vanderburgh": 5.13e-08, + "variegata": 5.13e-08, + "vbr": 5.13e-08, + "veeder": 5.13e-08, + "venez": 5.13e-08, + "venkateswara": 5.13e-08, + "vercingetorix": 5.13e-08, + "versi": 5.13e-08, + "viall": 5.13e-08, + "vibeke": 5.13e-08, + "viceregal": 5.13e-08, + "vich": 5.13e-08, + "vides": 5.13e-08, + "vijayanagar": 5.13e-08, + "vikramaditya": 5.13e-08, + "villanelle": 5.13e-08, + "villefort": 5.13e-08, + "vinnys": 5.13e-08, + "violante": 5.13e-08, + "virtuously": 5.13e-08, + "viscosities": 5.13e-08, + "volleying": 5.13e-08, + "vorarlberg": 5.13e-08, + "vornado": 5.13e-08, + "waaaah": 5.13e-08, + "wahroonga": 5.13e-08, + "wakin": 5.13e-08, + "waldon": 5.13e-08, + "walketh": 5.13e-08, + "walloping": 5.13e-08, + "warnes": 5.13e-08, + "watchwords": 5.13e-08, + "watsky": 5.13e-08, + "waya": 5.13e-08, + "wbbm": 5.13e-08, + "weei": 5.13e-08, + "wellborn": 5.13e-08, + "wemo": 5.13e-08, + "wentzel": 5.13e-08, + "westerberg": 5.13e-08, + "wgu": 5.13e-08, + "wheatcroft": 5.13e-08, + "wheezed": 5.13e-08, + "whelans": 5.13e-08, + "whil": 5.13e-08, + "wicketless": 5.13e-08, + "wildin": 5.13e-08, + "wilkesboro": 5.13e-08, + "willen": 5.13e-08, + "willer": 5.13e-08, + "windpower": 5.13e-08, + "windrunner": 5.13e-08, + "wist": 5.13e-08, + "wla": 5.13e-08, + "wojcik": 5.13e-08, + "wolfenden": 5.13e-08, + "woolens": 5.13e-08, + "woollard": 5.13e-08, + "worryin": 5.13e-08, + "wroe": 5.13e-08, + "wtvr": 5.13e-08, + "wwp": 5.13e-08, + "xolo": 5.13e-08, + "yaaa": 5.13e-08, + "yaacov": 5.13e-08, + "yakin": 5.13e-08, + "yawing": 5.13e-08, + "yeardley": 5.13e-08, + "yeeeah": 5.13e-08, + "yellowjackets": 5.13e-08, + "yeppoon": 5.13e-08, + "yocum": 5.13e-08, + "yolngu": 5.13e-08, + "yorck": 5.13e-08, + "yorubas": 5.13e-08, + "yoshitaka": 5.13e-08, + "yoyogi": 5.13e-08, + "ysabel": 5.13e-08, + "yunas": 5.13e-08, + "yushin": 5.13e-08, + "yuuko": 5.13e-08, + "zedds": 5.13e-08, + "zef": 5.13e-08, + "zeleny": 5.13e-08, + "zenda": 5.13e-08, + "zera": 5.13e-08, + "zings": 5.13e-08, + "zongo": 5.13e-08, + "zorya": 5.13e-08, + "zuccarello": 5.13e-08, + "zuzana": 5.13e-08, + "zvonareva": 5.13e-08, + "aay": 5.01e-08, + "accreting": 5.01e-08, + "achan": 5.01e-08, + "achoo": 5.01e-08, + "acquirement": 5.01e-08, + "actaeon": 5.01e-08, + "adafruit": 5.01e-08, + "adamas": 2.63e-08, + "adde": 5.01e-08, + "adell": 5.01e-08, + "adiponectin": 5.01e-08, + "adumim": 5.01e-08, + "aerators": 5.01e-08, + "aerosmiths": 5.01e-08, + "afferents": 5.01e-08, + "africanamerican": 5.01e-08, + "afshin": 5.01e-08, + "agag": 5.01e-08, + "agbaje": 5.01e-08, + "agco": 5.01e-08, + "agrigento": 5.01e-08, + "akimoto": 5.01e-08, + "akshaya": 5.01e-08, + "akula": 5.01e-08, + "aldol": 5.01e-08, + "aleta": 5.01e-08, + "alief": 5.01e-08, + "aliev": 5.01e-08, + "alit": 5.01e-08, + "alizadeh": 5.01e-08, + "alkan": 5.01e-08, + "almunia": 5.01e-08, + "alona": 5.01e-08, + "alstyne": 5.01e-08, + "alternaria": 5.01e-08, + "altoids": 5.01e-08, + "altri": 5.01e-08, + "altura": 5.01e-08, + "alwan": 5.01e-08, + "amando": 5.01e-08, + "ambulant": 5.01e-08, + "americanist": 5.01e-08, + "amfar": 5.01e-08, + "ammendment": 5.01e-08, + "ammonius": 5.01e-08, + "amnh": 5.01e-08, + "amphitryon": 5.01e-08, + "ancel": 5.01e-08, + "andamans": 5.01e-08, + "angelia": 5.01e-08, + "angelini": 5.01e-08, + "anisha": 5.01e-08, + "annabels": 5.01e-08, + "annatto": 5.01e-08, + "anneal": 5.01e-08, + "anniversaire": 5.01e-08, + "annuls": 5.01e-08, + "ansaldo": 5.01e-08, + "antabuse": 5.01e-08, + "antagonising": 5.01e-08, + "antidiabetic": 5.01e-08, + "antillean": 5.01e-08, + "antinuclear": 5.01e-08, + "antiracist": 5.01e-08, + "anyth": 5.01e-08, + "anyting": 5.01e-08, + "aout": 5.01e-08, + "aparicio": 5.01e-08, + "aplysia": 5.01e-08, + "applebee": 5.01e-08, + "applescript": 5.01e-08, + "archrivals": 5.01e-08, + "ardea": 5.01e-08, + "ardi": 5.01e-08, + "areolas": 5.01e-08, + "arikara": 5.01e-08, + "aristobulus": 5.01e-08, + "arjuns": 5.01e-08, + "armi": 5.01e-08, + "arreola": 5.01e-08, + "arrgh": 5.01e-08, + "arriola": 5.01e-08, + "arterials": 5.01e-08, + "articuno": 5.01e-08, + "arvidsson": 5.01e-08, + "asako": 5.01e-08, + "asie": 5.01e-08, + "asphodel": 5.01e-08, + "asscher": 5.01e-08, + "assise": 5.01e-08, + "asuma": 5.01e-08, + "atef": 5.01e-08, + "atlantique": 5.01e-08, + "atley": 5.01e-08, + "audibles": 5.01e-08, + "augusten": 5.01e-08, + "auricle": 5.01e-08, + "auriga": 5.01e-08, + "auteuil": 5.01e-08, + "autocephalous": 5.01e-08, + "autocrine": 5.01e-08, + "avex": 5.01e-08, + "avie": 5.01e-08, + "awana": 5.01e-08, + "awar": 5.01e-08, + "awwa": 5.01e-08, + "ayda": 5.01e-08, + "aydan": 5.01e-08, + "azamat": 5.01e-08, + "azlan": 5.01e-08, + "bacary": 5.01e-08, + "backe": 5.01e-08, + "backends": 5.01e-08, + "backhoes": 5.01e-08, + "backlist": 5.01e-08, + "backpay": 5.01e-08, + "backstairs": 5.01e-08, + "badda": 5.01e-08, + "bafflingly": 5.01e-08, + "bakit": 5.01e-08, + "balloch": 5.01e-08, + "ballons": 5.01e-08, + "baofeng": 5.01e-08, + "barin": 5.01e-08, + "barisal": 5.01e-08, + "barsky": 5.01e-08, + "basecoat": 5.01e-08, + "bataclan": 5.01e-08, + "batok": 5.01e-08, + "batta": 5.01e-08, + "bcz": 5.01e-08, + "bdrm": 5.01e-08, + "bearman": 5.01e-08, + "beatmania": 5.01e-08, + "beaumonts": 5.01e-08, + "beauti": 5.01e-08, + "beel": 5.01e-08, + "beier": 5.01e-08, + "bellay": 5.01e-08, + "bellion": 5.01e-08, + "belousov": 5.01e-08, + "benga": 5.01e-08, + "benjen": 5.01e-08, + "benzs": 5.01e-08, + "benzedrine": 5.01e-08, + "benzino": 5.01e-08, + "berek": 5.01e-08, + "berengar": 5.01e-08, + "berio": 5.01e-08, + "bermudagrass": 5.01e-08, + "bernardine": 5.01e-08, + "berseria": 5.01e-08, + "berwind": 5.01e-08, + "besancon": 5.01e-08, + "betamethasone": 5.01e-08, + "bgh": 5.01e-08, + "bhagavata": 5.01e-08, + "bickmore": 5.01e-08, + "biderman": 5.01e-08, + "bidvest": 5.01e-08, + "bifunctional": 5.01e-08, + "biji": 5.01e-08, + "biletnikoff": 5.01e-08, + "biocides": 5.01e-08, + "bioethical": 5.01e-08, + "bionomics": 5.01e-08, + "birman": 5.01e-08, + "birnam": 5.01e-08, + "bitmex": 5.01e-08, + "bivalent": 5.01e-08, + "blackcap": 5.01e-08, + "blandy": 5.01e-08, + "blauvelt": 5.01e-08, + "blingy": 5.01e-08, + "blough": 5.01e-08, + "bobwhite": 5.01e-08, + "boehmer": 5.01e-08, + "bogside": 5.01e-08, + "bombadil": 5.01e-08, + "bonzi": 5.01e-08, + "booky": 5.01e-08, + "borchers": 5.01e-08, + "borivali": 5.01e-08, + "borris": 5.01e-08, + "borsa": 5.01e-08, + "bouchon": 5.01e-08, + "bourbonnais": 5.01e-08, + "boxford": 5.01e-08, + "boxscore": 5.01e-08, + "boykins": 5.01e-08, + "brahmos": 5.01e-08, + "branaghs": 5.01e-08, + "brandnew": 5.01e-08, + "breitbarts": 5.01e-08, + "brekky": 5.01e-08, + "bremsstrahlung": 5.01e-08, + "bridgers": 5.01e-08, + "bromus": 5.01e-08, + "bronchus": 5.01e-08, + "bronzers": 5.01e-08, + "bror": 5.01e-08, + "btf": 5.01e-08, + "btx": 5.01e-08, + "bucktown": 5.01e-08, + "buckwild": 5.01e-08, + "buddie": 5.01e-08, + "buffa": 5.01e-08, + "bundoora": 5.01e-08, + "burana": 5.01e-08, + "burfict": 5.01e-08, + "burglarizing": 5.01e-08, + "busloads": 5.01e-08, + "butterick": 5.01e-08, + "byl": 5.01e-08, + "cableway": 5.01e-08, + "caddied": 5.01e-08, + "caddying": 5.01e-08, + "cadeau": 5.01e-08, + "cadwaladr": 5.01e-08, + "caelum": 5.01e-08, + "caesura": 5.01e-08, + "calavera": 5.01e-08, + "calin": 5.01e-08, + "caliphates": 5.01e-08, + "calvillo": 5.01e-08, + "camarena": 5.01e-08, + "camos": 5.01e-08, + "camuto": 5.01e-08, + "canaccord": 5.01e-08, + "canalside": 5.01e-08, + "candolle": 5.01e-08, + "canonbury": 5.01e-08, + "capercaillie": 5.01e-08, + "capitis": 5.01e-08, + "capricorns": 5.01e-08, + "caracara": 5.01e-08, + "carby": 5.01e-08, + "careerism": 5.01e-08, + "carita": 5.01e-08, + "carmo": 5.01e-08, + "carmon": 5.01e-08, + "carse": 5.01e-08, + "carsick": 5.01e-08, + "cascara": 5.01e-08, + "casp": 5.01e-08, + "castanea": 5.01e-08, + "castine": 5.01e-08, + "caterwauling": 5.01e-08, + "cauterization": 5.01e-08, + "cavin": 5.01e-08, + "cayton": 5.01e-08, + "cbk": 5.01e-08, + "cdq": 5.01e-08, + "cdrs": 5.01e-08, + "celan": 5.01e-08, + "celek": 5.01e-08, + "centr": 5.01e-08, + "ceramicist": 5.01e-08, + "cerda": 5.01e-08, + "cevallos": 5.01e-08, + "chaika": 5.01e-08, + "chamisa": 5.01e-08, + "champloo": 5.01e-08, + "chandramukhi": 5.01e-08, + "chapos": 5.01e-08, + "charolais": 5.01e-08, + "chemi": 5.01e-08, + "chennault": 5.01e-08, + "cheonan": 5.01e-08, + "cherise": 5.01e-08, + "chiffre": 5.01e-08, + "chii": 5.01e-08, + "chinoy": 5.01e-08, + "chippings": 5.01e-08, + "chirurgie": 5.01e-08, + "chongs": 5.01e-08, + "chope": 5.01e-08, + "chori": 5.01e-08, + "choshu": 5.01e-08, + "christiansburg": 5.01e-08, + "chromogenic": 5.01e-08, + "chronique": 5.01e-08, + "chrys": 5.01e-08, + "chthonic": 5.01e-08, + "chubbier": 5.01e-08, + "chubbuck": 5.01e-08, + "chugga": 5.01e-08, + "chuma": 5.01e-08, + "cicis": 5.01e-08, + "civi": 5.01e-08, + "ciw": 5.01e-08, + "clairol": 5.01e-08, + "clarifier": 5.01e-08, + "clashs": 5.01e-08, + "classi": 5.01e-08, + "clavicles": 5.01e-08, + "clavis": 5.01e-08, + "climat": 5.01e-08, + "closs": 5.01e-08, + "clubby": 5.01e-08, + "cmmi": 5.01e-08, + "coagulopathy": 5.01e-08, + "cobbe": 5.01e-08, + "cockamamie": 5.01e-08, + "coeducation": 5.01e-08, + "coffea": 5.01e-08, + "coinflip": 5.01e-08, + "colina": 5.01e-08, + "coller": 5.01e-08, + "colliculus": 5.01e-08, + "colmans": 5.01e-08, + "colorblindness": 5.01e-08, + "colosimo": 5.01e-08, + "commen": 5.01e-08, + "commensurately": 5.01e-08, + "composts": 5.01e-08, + "comradery": 5.01e-08, + "conboy": 5.01e-08, + "concealable": 5.01e-08, + "concierges": 5.01e-08, + "concocts": 5.01e-08, + "concolor": 5.01e-08, + "concupiscence": 5.01e-08, + "condemnatory": 5.01e-08, + "conemaugh": 5.01e-08, + "conics": 5.01e-08, + "conleys": 5.01e-08, + "conmigo": 5.01e-08, + "constand": 5.01e-08, + "constantinos": 5.01e-08, + "contextualise": 5.01e-08, + "contradistinction": 5.01e-08, + "controle": 5.01e-08, + "cookham": 5.01e-08, + "coppel": 5.01e-08, + "copt": 5.01e-08, + "coralville": 5.01e-08, + "corbridge": 5.01e-08, + "correctors": 5.01e-08, + "cortezs": 5.01e-08, + "costantino": 5.01e-08, + "cotyledon": 5.01e-08, + "cotys": 1.1e-08, + "countr": 5.01e-08, + "covariate": 5.01e-08, + "cowher": 5.01e-08, + "cranborne": 5.01e-08, + "crankset": 5.01e-08, + "crazing": 5.01e-08, + "creer": 5.01e-08, + "crosscutting": 5.01e-08, + "crudity": 5.01e-08, + "crudo": 5.01e-08, + "cryosphere": 5.01e-08, + "cucu": 5.01e-08, + "cusses": 5.01e-08, + "cvb": 5.01e-08, + "dabbler": 5.01e-08, + "daga": 5.01e-08, + "dagestani": 5.01e-08, + "daiki": 5.01e-08, + "dailly": 5.01e-08, + "dajjal": 5.01e-08, + "dalarna": 5.01e-08, + "dampeners": 5.01e-08, + "damselflies": 5.01e-08, + "danged": 5.01e-08, + "dannel": 5.01e-08, + "darek": 5.01e-08, + "datt": 5.01e-08, + "davidian": 5.01e-08, + "davita": 5.01e-08, + "davuluri": 5.01e-08, + "dayana": 5.01e-08, + "daypack": 5.01e-08, + "deaconesses": 5.01e-08, + "deadpools": 5.01e-08, + "dealmaker": 5.01e-08, + "deaminase": 5.01e-08, + "debauch": 5.01e-08, + "debilitate": 5.01e-08, + "decapod": 5.01e-08, + "deciles": 5.01e-08, + "decontaminating": 5.01e-08, + "dehp": 5.01e-08, + "dejectedly": 5.01e-08, + "delica": 5.01e-08, + "democracia": 5.01e-08, + "demonstratively": 5.01e-08, + "dengar": 5.01e-08, + "depakote": 5.01e-08, + "deportee": 5.01e-08, + "deprogramming": 5.01e-08, + "desiderius": 5.01e-08, + "designators": 5.01e-08, + "detainers": 5.01e-08, + "detlev": 5.01e-08, + "devins": 5.01e-08, + "dewolf": 5.01e-08, + "dgc": 5.01e-08, + "dhaba": 5.01e-08, + "dhows": 5.01e-08, + "diesen": 5.01e-08, + "digbeth": 5.01e-08, + "digweed": 5.01e-08, + "dilators": 5.01e-08, + "dile": 5.01e-08, + "diltiazem": 5.01e-08, + "dimed": 5.01e-08, + "dimock": 5.01e-08, + "dinitrogen": 5.01e-08, + "diomede": 5.01e-08, + "diosa": 5.01e-08, + "disgorged": 5.01e-08, + "disse": 5.01e-08, + "diw": 5.01e-08, + "diyer": 5.01e-08, + "djm": 5.01e-08, + "doel": 5.01e-08, + "dogwoods": 5.01e-08, + "doko": 5.01e-08, + "dolling": 5.01e-08, + "dolorous": 5.01e-08, + "dolton": 5.01e-08, + "dongdaemun": 5.01e-08, + "doomben": 5.01e-08, + "douthat": 5.01e-08, + "downunder": 5.01e-08, + "dragger": 5.01e-08, + "dramatise": 5.01e-08, + "drawed": 5.01e-08, + "drawled": 5.01e-08, + "dreadlock": 5.01e-08, + "dreadnaught": 5.01e-08, + "druck": 5.01e-08, + "dsrna": 5.01e-08, + "duby": 5.01e-08, + "duffers": 5.01e-08, + "eaglets": 5.01e-08, + "eah": 5.01e-08, + "ealdorman": 5.01e-08, + "eastmond": 5.01e-08, + "econom": 5.01e-08, + "ediscovery": 5.01e-08, + "editora": 5.01e-08, + "eil": 5.01e-08, + "ekins": 5.01e-08, + "elco": 5.01e-08, + "eldad": 5.01e-08, + "eliason": 5.01e-08, + "elkie": 5.01e-08, + "elsner": 5.01e-08, + "elvina": 5.01e-08, + "embezzler": 5.01e-08, + "emms": 5.01e-08, + "empresses": 5.01e-08, + "enceinte": 5.01e-08, + "encryptions": 5.01e-08, + "endothelin": 5.01e-08, + "engvall": 5.01e-08, + "enlistees": 5.01e-08, + "enoshima": 5.01e-08, + "enshrouded": 5.01e-08, + "entei": 5.01e-08, + "enterobacter": 5.01e-08, + "epicenters": 5.01e-08, + "epicyclic": 5.01e-08, + "equipage": 5.01e-08, + "erdf": 5.01e-08, + "ered": 5.01e-08, + "esopus": 5.01e-08, + "espa": 5.01e-08, + "espers": 5.01e-08, + "esteve": 5.01e-08, + "esteves": 5.01e-08, + "etro": 5.01e-08, + "eutrophic": 5.01e-08, + "evf": 5.01e-08, + "excitment": 5.01e-08, + "excommunicating": 5.01e-08, + "exertional": 5.01e-08, + "expiate": 5.01e-08, + "expropriations": 5.01e-08, + "extravehicular": 5.01e-08, + "extruders": 5.01e-08, + "eyy": 5.01e-08, + "ezri": 5.01e-08, + "fach": 5.01e-08, + "faget": 5.01e-08, + "fairborn": 5.01e-08, + "falcaos": 5.01e-08, + "fanarts": 5.01e-08, + "fand": 5.01e-08, + "fann": 5.01e-08, + "fanni": 5.01e-08, + "farad": 5.01e-08, + "farel": 5.01e-08, + "farinelli": 5.01e-08, + "faringdon": 5.01e-08, + "farzad": 5.01e-08, + "fasa": 5.01e-08, + "fayez": 5.01e-08, + "fbl": 5.01e-08, + "fbm": 5.01e-08, + "federales": 5.01e-08, + "felv": 5.01e-08, + "fenno": 5.01e-08, + "feynmans": 5.01e-08, + "fhl": 5.01e-08, + "fias": 5.01e-08, + "fiascos": 5.01e-08, + "fighterz": 5.01e-08, + "finiteness": 5.01e-08, + "firaxis": 5.01e-08, + "fireclay": 5.01e-08, + "fitout": 5.01e-08, + "flahertys": 5.01e-08, + "fleta": 5.01e-08, + "flippancy": 5.01e-08, + "florentin": 5.01e-08, + "focke": 5.01e-08, + "foresman": 5.01e-08, + "foreward": 5.01e-08, + "formas": 5.01e-08, + "fortas": 5.01e-08, + "forthrightness": 5.01e-08, + "frackers": 5.01e-08, + "frak": 5.01e-08, + "frays": 5.01e-08, + "frederiksen": 5.01e-08, + "freiherr": 5.01e-08, + "frem": 5.01e-08, + "friese": 5.01e-08, + "fscs": 5.01e-08, + "fuckwad": 5.01e-08, + "fulminant": 5.01e-08, + "fulop": 5.01e-08, + "fuzzing": 5.01e-08, + "gabber": 5.01e-08, + "gahanna": 5.01e-08, + "gaja": 5.01e-08, + "galangal": 5.01e-08, + "gamemode": 5.01e-08, + "gamin": 5.01e-08, + "gange": 5.01e-08, + "ganley": 5.01e-08, + "garnetts": 5.01e-08, + "gastrin": 5.01e-08, + "gatta": 5.01e-08, + "gbbo": 5.01e-08, + "gdn": 5.01e-08, + "geas": 5.01e-08, + "gek": 5.01e-08, + "gelinas": 5.01e-08, + "gennifer": 5.01e-08, + "genu": 5.01e-08, + "geodesics": 5.01e-08, + "gestate": 5.01e-08, + "getto": 5.01e-08, + "ggt": 5.01e-08, + "gigged": 5.01e-08, + "gilberte": 5.01e-08, + "gilliard": 5.01e-08, + "gingerich": 5.01e-08, + "gionta": 5.01e-08, + "giusto": 5.01e-08, + "glasnevin": 5.01e-08, + "glasto": 5.01e-08, + "glomeruli": 5.01e-08, + "godess": 5.01e-08, + "godlessness": 5.01e-08, + "goehring": 5.01e-08, + "golitsyn": 5.01e-08, + "googlers": 5.01e-08, + "gowing": 5.01e-08, + "gradualist": 5.01e-08, + "grano": 5.01e-08, + "graumans": 5.01e-08, + "gravesites": 5.01e-08, + "gravities": 5.01e-08, + "grbs": 5.01e-08, + "grecia": 5.01e-08, + "greensborough": 5.01e-08, + "greenstreet": 5.01e-08, + "gregors": 5.01e-08, + "greil": 5.01e-08, + "grendels": 5.01e-08, + "gret": 5.01e-08, + "grimsley": 5.01e-08, + "griped": 5.01e-08, + "grodin": 5.01e-08, + "groll": 5.01e-08, + "groza": 5.01e-08, + "grubers": 5.01e-08, + "guessin": 5.01e-08, + "guested": 5.01e-08, + "guffawed": 5.01e-08, + "guibert": 5.01e-08, + "guimaraes": 5.01e-08, + "gullwing": 5.01e-08, + "gunnedah": 5.01e-08, + "gurgled": 5.01e-08, + "guri": 5.01e-08, + "gurira": 5.01e-08, + "gwe": 5.01e-08, + "hapenny": 5.01e-08, + "habyarimana": 5.01e-08, + "hadlow": 5.01e-08, + "hadronic": 5.01e-08, + "halloway": 5.01e-08, + "harakat": 5.01e-08, + "hardwire": 5.01e-08, + "hargeisa": 5.01e-08, + "harkey": 5.01e-08, + "harmison": 5.01e-08, + "harn": 5.01e-08, + "harshman": 5.01e-08, + "haruno": 5.01e-08, + "hassam": 5.01e-08, + "hassani": 5.01e-08, + "haught": 5.01e-08, + "hauteur": 5.01e-08, + "hawtin": 5.01e-08, + "haycock": 5.01e-08, + "heckin": 5.01e-08, + "hectolitres": 5.01e-08, + "heechul": 5.01e-08, + "heeey": 5.01e-08, + "hefeweizen": 5.01e-08, + "heimer": 5.01e-08, + "heming": 5.01e-08, + "henie": 5.01e-08, + "henkin": 5.01e-08, + "hereditarily": 5.01e-08, + "hertl": 5.01e-08, + "hesperides": 5.01e-08, + "heterochromia": 5.01e-08, + "heterodoxy": 5.01e-08, + "hian": 5.01e-08, + "hickie": 5.01e-08, + "hiebert": 5.01e-08, + "hijos": 5.01e-08, + "hilder": 5.01e-08, + "hilty": 5.01e-08, + "hindoo": 5.01e-08, + "hinn": 5.01e-08, + "hiromu": 5.01e-08, + "hissar": 5.01e-08, + "hjort": 5.01e-08, + "hlg": 5.01e-08, + "hlt": 5.01e-08, + "hlw": 5.01e-08, + "hmh": 5.01e-08, + "hmmmmmmm": 5.01e-08, + "hoad": 5.01e-08, + "hoas": 5.01e-08, + "hobbesian": 5.01e-08, + "holbert": 5.01e-08, + "hollo": 5.01e-08, + "homebrewers": 5.01e-08, + "homesite": 5.01e-08, + "homogenizing": 5.01e-08, + "hornswoggle": 5.01e-08, + "horserace": 5.01e-08, + "hotan": 5.01e-08, + "hourlong": 5.01e-08, + "hovland": 5.01e-08, + "howerton": 5.01e-08, + "hpf": 5.01e-08, + "hro": 5.01e-08, + "hsb": 5.01e-08, + "hudud": 5.01e-08, + "huish": 5.01e-08, + "humilis": 5.01e-08, + "hunh": 5.01e-08, + "hussite": 5.01e-08, + "hust": 5.01e-08, + "hutches": 5.01e-08, + "hwangs": 5.01e-08, + "hydrographer": 5.01e-08, + "hydroplaning": 5.01e-08, + "hylas": 5.01e-08, + "hyperextended": 5.01e-08, + "hyperkinetic": 5.01e-08, + "hypomanic": 5.01e-08, + "iae": 5.01e-08, + "ibjjf": 5.01e-08, + "ichor": 5.01e-08, + "icsc": 5.01e-08, + "ifg": 5.01e-08, + "ifk": 5.01e-08, + "ignatian": 5.01e-08, + "imagina": 5.01e-08, + "immunologists": 5.01e-08, + "impeachments": 5.01e-08, + "implementer": 5.01e-08, + "imprimerie": 5.01e-08, + "inal": 5.01e-08, + "inbar": 5.01e-08, + "incipit": 5.01e-08, + "indemnifying": 5.01e-08, + "indien": 5.01e-08, + "informe": 5.01e-08, + "infoworld": 5.01e-08, + "ingall": 5.01e-08, + "ingels": 5.01e-08, + "ingenio": 5.01e-08, + "initializes": 5.01e-08, + "inker": 5.01e-08, + "inosine": 5.01e-08, + "inservice": 5.01e-08, + "integrationist": 5.01e-08, + "internationalen": 5.01e-08, + "interoperate": 5.01e-08, + "ioannou": 5.01e-08, + "irreducibly": 5.01e-08, + "isbns": 5.01e-08, + "ishibashi": 5.01e-08, + "ishimaru": 5.01e-08, + "jaen": 5.01e-08, + "jairam": 5.01e-08, + "jaki": 5.01e-08, + "jalpaiguri": 5.01e-08, + "janmashtami": 5.01e-08, + "janowicz": 5.01e-08, + "jaqen": 5.01e-08, + "jareth": 5.01e-08, + "jassy": 5.01e-08, + "jca": 5.01e-08, + "jebus": 5.01e-08, + "jehova": 5.01e-08, + "jgb": 5.01e-08, + "jias": 5.01e-08, + "jobim": 5.01e-08, + "jonass": 5.01e-08, + "josias": 5.01e-08, + "journaled": 5.01e-08, + "judaisms": 5.01e-08, + "jup": 5.01e-08, + "justiciable": 5.01e-08, + "kaffirs": 5.01e-08, + "kakuma": 5.01e-08, + "kaler": 5.01e-08, + "kalma": 5.01e-08, + "kanada": 5.01e-08, + "kanchana": 5.01e-08, + "kanos": 5.01e-08, + "karaites": 5.01e-08, + "kartika": 5.01e-08, + "karve": 5.01e-08, + "kater": 5.01e-08, + "kaymer": 5.01e-08, + "kazin": 5.01e-08, + "kbp": 5.01e-08, + "kdr": 5.01e-08, + "keigo": 5.01e-08, + "kennicott": 5.01e-08, + "kenway": 5.01e-08, + "kgi": 5.01e-08, + "khare": 5.01e-08, + "khoisan": 5.01e-08, + "killdeer": 5.01e-08, + "killigrew": 5.01e-08, + "kintner": 5.01e-08, + "kirino": 5.01e-08, + "kirkstall": 5.01e-08, + "kitsilano": 5.01e-08, + "kjellberg": 5.01e-08, + "koinonia": 5.01e-08, + "koll": 5.01e-08, + "kopecks": 5.01e-08, + "kornberg": 5.01e-08, + "kotobuki": 5.01e-08, + "kram": 5.01e-08, + "kring": 5.01e-08, + "kristiansand": 5.01e-08, + "kronen": 5.01e-08, + "kroy": 5.01e-08, + "krysta": 5.01e-08, + "kuopio": 5.01e-08, + "kupp": 5.01e-08, + "kydd": 5.01e-08, + "kyuss": 5.01e-08, + "laaa": 5.01e-08, + "lachish": 5.01e-08, + "lactis": 5.01e-08, + "ladee": 5.01e-08, + "ladera": 5.01e-08, + "lakemba": 5.01e-08, + "lakha": 5.01e-08, + "lakhdar": 5.01e-08, + "lakme": 5.01e-08, + "lamed": 5.01e-08, + "lamonica": 5.01e-08, + "landreth": 5.01e-08, + "langauge": 5.01e-08, + "langworthy": 5.01e-08, + "lantus": 5.01e-08, + "ldk": 5.01e-08, + "leafleting": 5.01e-08, + "lecoq": 5.01e-08, + "leers": 5.01e-08, + "lella": 5.01e-08, + "lemi": 5.01e-08, + "lemmens": 5.01e-08, + "lepine": 5.01e-08, + "lexicographic": 5.01e-08, + "lgas": 5.01e-08, + "lifebuoy": 5.01e-08, + "lifehack": 5.01e-08, + "lindale": 5.01e-08, + "lindys": 5.01e-08, + "lineaments": 5.01e-08, + "lionhead": 5.01e-08, + "lipoic": 5.01e-08, + "liquefies": 5.01e-08, + "lisson": 5.01e-08, + "liverworts": 5.01e-08, + "livest": 5.01e-08, + "llandrindod": 5.01e-08, + "llorona": 5.01e-08, + "loddon": 5.01e-08, + "lombardis": 5.01e-08, + "longtail": 5.01e-08, + "loomer": 5.01e-08, + "loooooove": 5.01e-08, + "lotan": 5.01e-08, + "lour": 5.01e-08, + "lovins": 5.01e-08, + "lowood": 5.01e-08, + "luhrmanns": 5.01e-08, + "luker": 5.01e-08, + "lukman": 5.01e-08, + "lusi": 5.01e-08, + "luskin": 5.01e-08, + "luvvie": 5.01e-08, + "lycans": 5.01e-08, + "lymphatics": 5.01e-08, + "maal": 5.01e-08, + "macromolecule": 5.01e-08, + "madra": 5.01e-08, + "maleic": 5.01e-08, + "mandrill": 5.01e-08, + "manera": 5.01e-08, + "manin": 5.01e-08, + "manser": 5.01e-08, + "mapi": 5.01e-08, + "maremma": 5.01e-08, + "margerie": 5.01e-08, + "margos": 5.01e-08, + "maritz": 5.01e-08, + "marleen": 5.01e-08, + "marquet": 5.01e-08, + "marula": 5.01e-08, + "masekela": 5.01e-08, + "mashal": 5.01e-08, + "masn": 5.01e-08, + "matthes": 5.01e-08, + "matu": 5.01e-08, + "mcbusted": 5.01e-08, + "mccaig": 5.01e-08, + "mcconaugheys": 5.01e-08, + "mccrone": 5.01e-08, + "mcgahan": 5.01e-08, + "mckell": 5.01e-08, + "mckinleys": 5.01e-08, + "mcnichol": 5.01e-08, + "mcree": 5.01e-08, + "mcstay": 5.01e-08, + "mcteague": 5.01e-08, + "mcteer": 5.01e-08, + "meche": 5.01e-08, + "melanocyte": 5.01e-08, + "melin": 5.01e-08, + "melius": 5.01e-08, + "melkor": 5.01e-08, + "menes": 5.01e-08, + "mengs": 5.01e-08, + "metahumans": 5.01e-08, + "methil": 5.01e-08, + "methought": 5.01e-08, + "meto": 5.01e-08, + "metron": 5.01e-08, + "meuron": 5.01e-08, + "mfe": 5.01e-08, + "mickens": 5.01e-08, + "microelectrodes": 5.01e-08, + "microglial": 5.01e-08, + "microprobe": 5.01e-08, + "midianites": 5.01e-08, + "midpoints": 5.01e-08, + "midrand": 5.01e-08, + "mieko": 5.01e-08, + "migne": 5.01e-08, + "mikoyan": 5.01e-08, + "milana": 5.01e-08, + "militarizing": 5.01e-08, + "milkers": 5.01e-08, + "millcreek": 5.01e-08, + "millersburg": 5.01e-08, + "milley": 5.01e-08, + "millner": 5.01e-08, + "minhaj": 5.01e-08, + "minhas": 5.01e-08, + "minnis": 5.01e-08, + "minturn": 5.01e-08, + "miroku": 5.01e-08, + "mirzapur": 5.01e-08, + "misbehavin": 5.01e-08, + "miscanthus": 5.01e-08, + "misinforming": 5.01e-08, + "missio": 5.01e-08, + "mistrusting": 5.01e-08, + "mlbpa": 5.01e-08, + "mnek": 5.01e-08, + "modernizations": 5.01e-08, + "modibo": 5.01e-08, + "modifieds": 5.01e-08, + "moggy": 5.01e-08, + "mogs": 5.01e-08, + "molen": 5.01e-08, + "molts": 5.01e-08, + "momas": 5.01e-08, + "monell": 5.01e-08, + "monetarism": 5.01e-08, + "monistic": 5.01e-08, + "monocacy": 5.01e-08, + "monumentality": 5.01e-08, + "moochers": 5.01e-08, + "mopp": 5.01e-08, + "moq": 5.01e-08, + "moralities": 5.01e-08, + "morgaine": 5.01e-08, + "morticians": 5.01e-08, + "mosconi": 5.01e-08, + "mouche": 5.01e-08, + "moynahan": 5.01e-08, + "mtns": 5.01e-08, + "muangthong": 5.01e-08, + "mucositis": 5.01e-08, + "mueang": 5.01e-08, + "muhajir": 5.01e-08, + "munni": 5.01e-08, + "munsch": 5.01e-08, + "muntinlupa": 5.01e-08, + "myntra": 5.01e-08, + "nagios": 5.01e-08, + "nakatani": 5.01e-08, + "narrowboat": 5.01e-08, + "natsuko": 5.01e-08, + "navis": 5.01e-08, + "naze": 5.01e-08, + "ncaaf": 5.01e-08, + "nearsightedness": 5.01e-08, + "neerja": 5.01e-08, + "neese": 5.01e-08, + "nerdiest": 5.01e-08, + "netherlandish": 5.01e-08, + "netsuke": 5.01e-08, + "neut": 5.01e-08, + "newaygo": 5.01e-08, + "newspoll": 5.01e-08, + "newzealand": 5.01e-08, + "nexen": 5.01e-08, + "nguema": 5.01e-08, + "nicety": 5.01e-08, + "nicholasville": 5.01e-08, + "nickson": 5.01e-08, + "niecy": 5.01e-08, + "nilgiris": 5.01e-08, + "nimbleness": 5.01e-08, + "nisqually": 5.01e-08, + "nisshin": 5.01e-08, + "nitromethane": 5.01e-08, + "nitta": 5.01e-08, + "niva": 5.01e-08, + "nli": 5.01e-08, + "nonbank": 5.01e-08, + "nonrenewable": 5.01e-08, + "nordiques": 5.01e-08, + "noticia": 5.01e-08, + "novorossiya": 5.01e-08, + "nowi": 5.01e-08, + "nowotny": 5.01e-08, + "nprm": 5.01e-08, + "nte": 5.01e-08, + "nucleophiles": 5.01e-08, + "nums": 5.01e-08, + "nuon": 5.01e-08, + "nyland": 5.01e-08, + "omahoney": 5.01e-08, + "oab": 5.01e-08, + "oarsman": 5.01e-08, + "oast": 5.01e-08, + "obdii": 5.01e-08, + "oborne": 5.01e-08, + "odl": 5.01e-08, + "oerlikon": 5.01e-08, + "offically": 5.01e-08, + "offit": 5.01e-08, + "offtake": 5.01e-08, + "ofra": 5.01e-08, + "okays": 5.01e-08, + "oleoresin": 5.01e-08, + "olie": 5.01e-08, + "oligomerization": 5.01e-08, + "olszewski": 5.01e-08, + "oncolytic": 5.01e-08, + "oppai": 5.01e-08, + "optifine": 5.01e-08, + "orchiectomy": 5.01e-08, + "ordonnance": 5.01e-08, + "orser": 5.01e-08, + "osk": 5.01e-08, + "ostara": 5.01e-08, + "otras": 5.01e-08, + "ottley": 5.01e-08, + "overhung": 5.01e-08, + "overleaf": 5.01e-08, + "overprinted": 5.01e-08, + "overreliance": 5.01e-08, + "oxi": 5.01e-08, + "padrone": 5.01e-08, + "paizo": 5.01e-08, + "pajaro": 5.01e-08, + "paktia": 5.01e-08, + "pakula": 5.01e-08, + "pallete": 5.01e-08, + "panarin": 5.01e-08, + "paninis": 5.01e-08, + "papert": 5.01e-08, + "parcelled": 5.01e-08, + "parisa": 5.01e-08, + "pasch": 5.01e-08, + "paty": 5.01e-08, + "pavone": 5.01e-08, + "paydirt": 5.01e-08, + "peano": 5.01e-08, + "pegylated": 5.01e-08, + "pells": 5.01e-08, + "peller": 5.01e-08, + "pemphigus": 5.01e-08, + "penances": 5.01e-08, + "penetrable": 5.01e-08, + "penetrant": 5.01e-08, + "penicuik": 5.01e-08, + "peppe": 5.01e-08, + "peremptorily": 5.01e-08, + "performativity": 5.01e-08, + "periphrastic": 5.01e-08, + "perivascular": 5.01e-08, + "perspicacious": 5.01e-08, + "persuaders": 5.01e-08, + "persue": 5.01e-08, + "petechiae": 5.01e-08, + "petrescu": 5.01e-08, + "petulantly": 5.01e-08, + "petz": 5.01e-08, + "phanerozoic": 5.01e-08, + "phenotyping": 5.01e-08, + "philatelist": 5.01e-08, + "photocell": 5.01e-08, + "phuoc": 5.01e-08, + "phylicia": 5.01e-08, + "picardo": 5.01e-08, + "pictograph": 5.01e-08, + "pikachus": 5.01e-08, + "piker": 5.01e-08, + "pillowy": 5.01e-08, + "pinsir": 5.01e-08, + "pions": 5.01e-08, + "pittenger": 5.01e-08, + "plasticized": 5.01e-08, + "plete": 5.01e-08, + "plitvice": 5.01e-08, + "plods": 5.01e-08, + "plumtree": 5.01e-08, + "plyometrics": 5.01e-08, + "pmv": 5.01e-08, + "pnf": 5.01e-08, + "poiret": 5.01e-08, + "pokot": 5.01e-08, + "politis": 5.01e-08, + "pollio": 5.01e-08, + "polycentric": 5.01e-08, + "polycom": 5.01e-08, + "polygram": 5.01e-08, + "polyvore": 5.01e-08, + "pominville": 5.01e-08, + "pommy": 5.01e-08, + "ponding": 5.01e-08, + "poptart": 5.01e-08, + "porche": 5.01e-08, + "posher": 5.01e-08, + "positioner": 5.01e-08, + "posso": 5.01e-08, + "potbellied": 5.01e-08, + "povo": 5.01e-08, + "ppn": 5.01e-08, + "praag": 5.01e-08, + "preapproved": 5.01e-08, + "preceeding": 5.01e-08, + "preimplantation": 5.01e-08, + "premarin": 5.01e-08, + "preparative": 5.01e-08, + "preta": 5.01e-08, + "prickling": 5.01e-08, + "primeira": 5.01e-08, + "priscus": 5.01e-08, + "produits": 5.01e-08, + "progestins": 5.01e-08, + "promiscuously": 5.01e-08, + "propagandized": 5.01e-08, + "prophylactics": 5.01e-08, + "przez": 5.01e-08, + "psvita": 5.01e-08, + "psychologies": 5.01e-08, + "ptn": 5.01e-08, + "ptolemys": 5.01e-08, + "puggy": 5.01e-08, + "pulmonology": 5.01e-08, + "punggol": 5.01e-08, + "purees": 5.01e-08, + "purolator": 5.01e-08, + "putlocker": 5.01e-08, + "qal": 5.01e-08, + "qarth": 5.01e-08, + "qgis": 5.01e-08, + "qprs": 5.01e-08, + "qst": 5.01e-08, + "quebrada": 5.01e-08, + "queensbridge": 5.01e-08, + "quraish": 5.01e-08, + "qz": 5.01e-08, + "rabanne": 5.01e-08, + "rabbitte": 5.01e-08, + "rackmount": 5.01e-08, + "radice": 5.01e-08, + "radom": 5.01e-08, + "rafted": 5.01e-08, + "railroader": 5.01e-08, + "ramonas": 5.01e-08, + "randomizing": 5.01e-08, + "rapiers": 5.01e-08, + "rayan": 5.01e-08, + "rcra": 5.01e-08, + "reactivates": 5.01e-08, + "rechts": 5.01e-08, + "recor": 5.01e-08, + "recusant": 5.01e-08, + "recusing": 5.01e-08, + "reddin": 5.01e-08, + "redesdale": 5.01e-08, + "redfoo": 5.01e-08, + "redressal": 5.01e-08, + "redshank": 5.01e-08, + "reexamining": 5.01e-08, + "reflexed": 5.01e-08, + "regalo": 5.01e-08, + "reiners": 5.01e-08, + "relabeled": 5.01e-08, + "remanufacturing": 5.01e-08, + "renville": 5.01e-08, + "repeller": 5.01e-08, + "repricing": 5.01e-08, + "restocks": 5.01e-08, + "restyle": 5.01e-08, + "retaliations": 5.01e-08, + "retentions": 5.01e-08, + "retroactivity": 5.01e-08, + "reverberant": 5.01e-08, + "rheem": 5.01e-08, + "rht": 5.01e-08, + "rhu": 5.01e-08, + "rickett": 5.01e-08, + "riddoch": 5.01e-08, + "ringa": 5.01e-08, + "roberge": 5.01e-08, + "rocque": 5.01e-08, + "rodge": 5.01e-08, + "rogic": 5.01e-08, + "rootstocks": 5.01e-08, + "rosbergs": 5.01e-08, + "rosling": 5.01e-08, + "rostam": 5.01e-08, + "rostand": 5.01e-08, + "rostering": 5.01e-08, + "rotenone": 5.01e-08, + "rougier": 5.01e-08, + "royales": 5.01e-08, + "rsb": 5.01e-08, + "rtas": 5.01e-08, + "rudolfo": 5.01e-08, + "rued": 5.01e-08, + "rufai": 5.01e-08, + "rumbold": 5.01e-08, + "rushdies": 5.01e-08, + "rutles": 5.01e-08, + "rvm": 5.01e-08, + "ryce": 5.01e-08, + "ryun": 5.01e-08, + "saari": 5.01e-08, + "sabado": 5.01e-08, + "sabata": 5.01e-08, + "sabaton": 5.01e-08, + "sabena": 5.01e-08, + "sagami": 5.01e-08, + "saiful": 5.01e-08, + "salalah": 5.01e-08, + "salesgirl": 5.01e-08, + "salvesen": 5.01e-08, + "sanitaire": 5.01e-08, + "sanskar": 5.01e-08, + "saputo": 5.01e-08, + "sarvodaya": 5.01e-08, + "satguru": 5.01e-08, + "sauve": 5.01e-08, + "sayi": 5.01e-08, + "schickel": 5.01e-08, + "schillers": 5.01e-08, + "schismatics": 5.01e-08, + "schonberg": 5.01e-08, + "schooley": 5.01e-08, + "schrag": 5.01e-08, + "schroeders": 5.01e-08, + "scimitars": 5.01e-08, + "scran": 5.01e-08, + "screenprint": 5.01e-08, + "scrimping": 5.01e-08, + "scripter": 5.01e-08, + "scuds": 5.01e-08, + "seagrasses": 5.01e-08, + "seamers": 5.01e-08, + "seclude": 5.01e-08, + "sedaka": 5.01e-08, + "sedgemoor": 5.01e-08, + "seegers": 5.01e-08, + "segre": 5.01e-08, + "seguridad": 5.01e-08, + "seldes": 5.01e-08, + "selsey": 5.01e-08, + "sensitised": 5.01e-08, + "sensodyne": 5.01e-08, + "sessa": 5.01e-08, + "settees": 5.01e-08, + "sexpot": 5.01e-08, + "sexted": 5.01e-08, + "seyfert": 5.01e-08, + "sgn": 5.01e-08, + "shadid": 5.01e-08, + "shahjahan": 5.01e-08, + "shandon": 5.01e-08, + "sharin": 5.01e-08, + "sharla": 5.01e-08, + "shbg": 5.01e-08, + "shepherdstown": 5.01e-08, + "sherwani": 5.01e-08, + "shihan": 5.01e-08, + "shoveler": 5.01e-08, + "shrewdest": 5.01e-08, + "shreyas": 5.01e-08, + "shrimpers": 5.01e-08, + "shv": 5.01e-08, + "sidedness": 5.01e-08, + "siegfrieds": 5.01e-08, + "siku": 5.01e-08, + "silenus": 5.01e-08, + "similis": 5.01e-08, + "sinar": 5.01e-08, + "sindhis": 5.01e-08, + "singam": 5.01e-08, + "skaar": 5.01e-08, + "skanda": 5.01e-08, + "skara": 5.01e-08, + "skn": 5.01e-08, + "skyhawks": 5.01e-08, + "skyland": 5.01e-08, + "smas": 5.01e-08, + "smethurst": 5.01e-08, + "snickerdoodle": 5.01e-08, + "sniggers": 5.01e-08, + "socalled": 5.01e-08, + "sodomizing": 5.01e-08, + "solera": 5.01e-08, + "sontaran": 5.01e-08, + "soter": 5.01e-08, + "sourpuss": 5.01e-08, + "southborough": 5.01e-08, + "spallation": 5.01e-08, + "spastics": 5.01e-08, + "spatters": 5.01e-08, + "spdc": 5.01e-08, + "speroni": 5.01e-08, + "spillers": 5.01e-08, + "sportspersons": 5.01e-08, + "sporulation": 5.01e-08, + "squawked": 5.01e-08, + "sreesanth": 5.01e-08, + "ssci": 5.01e-08, + "stairmaster": 5.01e-08, + "staleness": 5.01e-08, + "stambaugh": 5.01e-08, + "staniforth": 5.01e-08, + "statik": 5.01e-08, + "stefanovic": 5.01e-08, + "steinbergs": 5.01e-08, + "stoinis": 5.01e-08, + "stonking": 5.01e-08, + "strattera": 5.01e-08, + "stron": 5.01e-08, + "strug": 5.01e-08, + "sture": 5.01e-08, + "styl": 5.01e-08, + "suasion": 5.01e-08, + "subsumes": 5.01e-08, + "suburbanite": 5.01e-08, + "succotash": 5.01e-08, + "succubi": 5.01e-08, + "sucessfully": 5.01e-08, + "sudirman": 5.01e-08, + "sugarbush": 5.01e-08, + "sugiura": 5.01e-08, + "sukanya": 5.01e-08, + "summerhall": 5.01e-08, + "summum": 5.01e-08, + "sumptuary": 5.01e-08, + "sunaina": 5.01e-08, + "sundara": 5.01e-08, + "sunrays": 5.01e-08, + "supercapacitor": 5.01e-08, + "supercard": 5.01e-08, + "supercells": 5.01e-08, + "superintended": 5.01e-08, + "supermoto": 5.01e-08, + "supped": 5.01e-08, + "supr": 5.01e-08, + "suras": 5.01e-08, + "surmising": 5.01e-08, + "suuuuper": 5.01e-08, + "sweatband": 5.01e-08, + "sybille": 5.01e-08, + "synergize": 5.01e-08, + "syrie": 5.01e-08, + "taekwon": 5.01e-08, + "tailhook": 5.01e-08, + "taipeis": 5.01e-08, + "taito": 5.01e-08, + "tajiri": 5.01e-08, + "takai": 5.01e-08, + "takeshima": 5.01e-08, + "talan": 5.01e-08, + "talisa": 5.01e-08, + "talke": 5.01e-08, + "talo": 5.01e-08, + "tamarindo": 5.01e-08, + "tanguay": 5.01e-08, + "tarra": 5.01e-08, + "taufiq": 5.01e-08, + "tawil": 5.01e-08, + "taxus": 5.01e-08, + "teamo": 5.01e-08, + "tehelka": 5.01e-08, + "teletubby": 5.01e-08, + "tenderest": 5.01e-08, + "tenison": 5.01e-08, + "terete": 5.01e-08, + "terex": 5.01e-08, + "terfel": 5.01e-08, + "terrariums": 5.01e-08, + "teruel": 5.01e-08, + "tfsi": 5.01e-08, + "thatis": 5.01e-08, + "thls": 5.01e-08, + "thornycroft": 5.01e-08, + "threepence": 5.01e-08, + "threescore": 5.01e-08, + "thrombolytic": 5.01e-08, + "tiao": 5.01e-08, + "tiebreaking": 5.01e-08, + "tike": 5.01e-08, + "timberwolf": 5.01e-08, + "timonium": 5.01e-08, + "tinders": 5.01e-08, + "tinges": 5.01e-08, + "tinpot": 5.01e-08, + "tional": 5.01e-08, + "tiran": 5.01e-08, + "titanite": 5.01e-08, + "tmk": 5.01e-08, + "toksvig": 5.01e-08, + "toothaches": 5.01e-08, + "torchbearers": 5.01e-08, + "tortas": 5.01e-08, + "touya": 5.01e-08, + "townscape": 5.01e-08, + "townsley": 5.01e-08, + "tpk": 5.01e-08, + "traf": 5.01e-08, + "transphobes": 5.01e-08, + "transposes": 5.01e-08, + "traven": 5.01e-08, + "trinder": 5.01e-08, + "tripolis": 5.01e-08, + "triskelion": 5.01e-08, + "trogir": 5.01e-08, + "troicki": 5.01e-08, + "trond": 5.01e-08, + "truecar": 5.01e-08, + "trum": 5.01e-08, + "trumpsters": 5.01e-08, + "tryptamine": 5.01e-08, + "tuch": 5.01e-08, + "tuomas": 5.01e-08, + "turfing": 5.01e-08, + "turfs": 5.01e-08, + "turun": 5.01e-08, + "tweedledee": 5.01e-08, + "typer": 5.01e-08, + "typewriting": 5.01e-08, + "ubiquinone": 5.01e-08, + "uidai": 5.01e-08, + "umpired": 5.01e-08, + "unadvertised": 5.01e-08, + "uncaused": 5.01e-08, + "uncial": 5.01e-08, + "uncw": 5.01e-08, + "undependable": 5.01e-08, + "underated": 5.01e-08, + "undereducated": 5.01e-08, + "underflow": 5.01e-08, + "underinvestment": 5.01e-08, + "undershot": 5.01e-08, + "unengaged": 5.01e-08, + "unfreezing": 5.01e-08, + "unio": 5.01e-08, + "unitys": 5.01e-08, + "universi": 5.01e-08, + "unnerves": 5.01e-08, + "unphased": 5.01e-08, + "unprinted": 5.01e-08, + "unreasoning": 5.01e-08, + "unremarked": 5.01e-08, + "unshared": 5.01e-08, + "untracked": 5.01e-08, + "untrammelled": 5.01e-08, + "uofm": 5.01e-08, + "upstaging": 5.01e-08, + "urt": 5.01e-08, + "usurer": 5.01e-08, + "vaa": 5.01e-08, + "vaginalis": 5.01e-08, + "vaginitis": 5.01e-08, + "vaguer": 5.01e-08, + "valkenburg": 5.01e-08, + "variabilis": 5.01e-08, + "variate": 5.01e-08, + "varius": 5.01e-08, + "vdl": 5.01e-08, + "veasey": 5.01e-08, + "veggietales": 5.01e-08, + "venkata": 5.01e-08, + "venkataraman": 5.01e-08, + "ventilatory": 5.01e-08, + "vernaculars": 5.01e-08, + "verulam": 5.01e-08, + "videodrome": 5.01e-08, + "videorecording": 5.01e-08, + "vidyut": 5.01e-08, + "vijayanagara": 5.01e-08, + "vios": 5.01e-08, + "vish": 5.01e-08, + "vlaams": 5.01e-08, + "vmro": 5.01e-08, + "vorbis": 5.01e-08, + "vostro": 5.01e-08, + "walbrook": 5.01e-08, + "walcot": 5.01e-08, + "walloons": 5.01e-08, + "wantagh": 5.01e-08, + "waqt": 5.01e-08, + "washtub": 5.01e-08, + "waukee": 5.01e-08, + "waverider": 5.01e-08, + "wbtv": 5.01e-08, + "wesco": 5.01e-08, + "westervelt": 5.01e-08, + "westhoff": 5.01e-08, + "westridge": 5.01e-08, + "wetumpka": 5.01e-08, + "wftv": 5.01e-08, + "wgi": 5.01e-08, + "whatsapps": 5.01e-08, + "whibley": 5.01e-08, + "whichll": 5.01e-08, + "whizzer": 5.01e-08, + "widdowson": 5.01e-08, + "widgeon": 5.01e-08, + "wiil": 5.01e-08, + "wiktor": 5.01e-08, + "wilkinsburg": 5.01e-08, + "willkommen": 5.01e-08, + "willoughbys": 5.01e-08, + "willowdale": 5.01e-08, + "wimple": 5.01e-08, + "windbreaks": 5.01e-08, + "windowpanes": 5.01e-08, + "windstar": 5.01e-08, + "winerys": 5.01e-08, + "winnicott": 5.01e-08, + "wirkung": 5.01e-08, + "wissam": 5.01e-08, + "wobblies": 5.01e-08, + "womanist": 5.01e-08, + "wonderbra": 5.01e-08, + "wonderlic": 5.01e-08, + "woolard": 5.01e-08, + "worketh": 5.01e-08, + "worldclass": 5.01e-08, + "wormser": 5.01e-08, + "wortman": 5.01e-08, + "wowsers": 5.01e-08, + "wsbk": 5.01e-08, + "wudang": 5.01e-08, + "wudu": 5.01e-08, + "wyandot": 5.01e-08, + "wykes": 5.01e-08, + "wyndhams": 5.01e-08, + "wyrm": 5.01e-08, + "xur": 5.01e-08, + "yab": 5.01e-08, + "yakut": 5.01e-08, + "yalls": 5.01e-08, + "yamamotos": 5.01e-08, + "yaquina": 5.01e-08, + "yashar": 5.01e-08, + "yashoda": 5.01e-08, + "yeahhhhh": 5.01e-08, + "yeojin": 5.01e-08, + "yings": 5.01e-08, + "yogini": 5.01e-08, + "yoong": 5.01e-08, + "yorkton": 5.01e-08, + "yoshihiko": 5.01e-08, + "yoshikazu": 5.01e-08, + "yoshiwara": 5.01e-08, + "yotsuba": 5.01e-08, + "yountville": 5.01e-08, + "ypj": 5.01e-08, + "yreka": 5.01e-08, + "zamperini": 5.01e-08, + "zarin": 5.01e-08, + "zemlya": 5.01e-08, + "zephyrhills": 5.01e-08, + "ziglar": 5.01e-08, + "zinner": 5.01e-08, + "zlatko": 5.01e-08, + "zoeys": 5.01e-08, + "zoid": 5.01e-08, + "zom": 5.01e-08, + "abrade": 4.9e-08, + "acrolein": 4.9e-08, + "addle": 4.9e-08, + "aerialist": 4.9e-08, + "aile": 4.9e-08, + "alnico": 4.9e-08, + "alpen": 4.9e-08, + "anterolateral": 4.9e-08, + "anthropometry": 4.9e-08, + "anticyclone": 4.9e-08, + "antiope": 4.9e-08, + "arar": 4.9e-08, + "ared": 4.9e-08, + "armiger": 4.9e-08, + "arna": 4.9e-08, + "arrogate": 4.9e-08, + "arrowed": 4.9e-08, + "assayer": 4.9e-08, + "bachelorhood": 4.9e-08, + "bagful": 4.9e-08, + "balsamo": 4.9e-08, + "barny": 4.9e-08, + "baseness": 4.9e-08, + "belgic": 4.9e-08, + "bergy": 4.9e-08, + "bitingly": 4.9e-08, + "blackleg": 4.9e-08, + "blee": 4.9e-08, + "botella": 4.9e-08, + "bunkie": 4.9e-08, + "caboodle": 4.9e-08, + "canape": 4.9e-08, + "candelabrum": 4.9e-08, + "cannibalization": 4.9e-08, + "canonicity": 4.9e-08, + "carline": 4.9e-08, + "caryatid": 4.9e-08, + "castalia": 4.9e-08, + "cautiousness": 4.9e-08, + "ceanothus": 4.9e-08, + "ceria": 4.9e-08, + "chalon": 4.9e-08, + "cheesiness": 4.9e-08, + "chicot": 4.9e-08, + "circumstantially": 4.9e-08, + "clathrate": 4.9e-08, + "claver": 4.9e-08, + "clubroom": 4.9e-08, + "coeditor": 4.9e-08, + "concatenate": 4.9e-08, + "consanguineous": 4.9e-08, + "contrariwise": 4.9e-08, + "conventionality": 4.9e-08, + "coquina": 4.9e-08, + "coronoid": 4.9e-08, + "countercurrent": 4.9e-08, + "coved": 4.9e-08, + "cowbird": 4.9e-08, + "cowslip": 4.9e-08, + "crumpler": 4.9e-08, + "dadaism": 4.9e-08, + "decidua": 4.9e-08, + "declamatory": 4.9e-08, + "deduplication": 4.9e-08, + "defroster": 4.9e-08, + "demoness": 4.9e-08, + "descender": 4.9e-08, + "devilry": 4.9e-08, + "dextral": 4.9e-08, + "diabase": 4.9e-08, + "dimity": 4.9e-08, + "dioxane": 4.9e-08, + "diplopia": 4.9e-08, + "discreditable": 4.9e-08, + "dragline": 4.9e-08, + "drosera": 4.9e-08, + "drupe": 4.9e-08, + "duckbill": 4.9e-08, + "duple": 4.9e-08, + "ebonite": 4.9e-08, + "ekron": 4.9e-08, + "endogamy": 4.9e-08, + "endogenously": 4.9e-08, + "erian": 4.9e-08, + "eyeline": 4.9e-08, + "fibular": 4.9e-08, + "finitude": 4.9e-08, + "floatplane": 4.9e-08, + "footnoted": 4.9e-08, + "footplate": 4.9e-08, + "forewarn": 4.9e-08, + "fringilla": 4.9e-08, + "galler": 4.9e-08, + "gauleiter": 4.9e-08, + "geniculate": 4.9e-08, + "genin": 4.9e-08, + "glor": 4.9e-08, + "goschen": 4.9e-08, + "greenroom": 4.9e-08, + "hairband": 4.9e-08, + "harborside": 4.9e-08, + "harridan": 4.9e-08, + "hejazi": 4.9e-08, + "horseflesh": 4.9e-08, + "hsuan": 4.9e-08, + "huckle": 4.9e-08, + "hurty": 4.9e-08, + "hydrophobia": 4.9e-08, + "incontrovertibly": 4.9e-08, + "intermetallic": 4.9e-08, + "interposing": 4.9e-08, + "introit": 4.9e-08, + "ipomoea": 4.9e-08, + "irredentist": 4.9e-08, + "irremediable": 4.9e-08, + "irreversibility": 4.9e-08, + "isinglass": 4.9e-08, + "juncus": 4.9e-08, + "katinka": 4.9e-08, + "khanum": 4.9e-08, + "khu": 4.9e-08, + "killifish": 4.9e-08, + "lamarckian": 4.9e-08, + "lieutenancy": 4.9e-08, + "limburger": 4.9e-08, + "limbus": 4.9e-08, + "liposome": 4.9e-08, + "localizer": 4.9e-08, + "lordosis": 4.9e-08, + "madrona": 4.9e-08, + "maharana": 4.9e-08, + "mandatorily": 4.9e-08, + "masculinization": 4.9e-08, + "medaled": 4.9e-08, + "meerschaum": 4.9e-08, + "menshevik": 4.9e-08, + "merfolk": 4.9e-08, + "microcosmic": 4.9e-08, + "midwesterner": 4.9e-08, + "minimizer": 4.9e-08, + "mirepoix": 4.9e-08, + "mixolydian": 4.9e-08, + "moha": 4.9e-08, + "monoecious": 4.9e-08, + "mousehole": 4.9e-08, + "mousterian": 4.9e-08, + "mulga": 4.9e-08, + "natt": 4.9e-08, + "nephron": 4.9e-08, + "nickey": 4.9e-08, + "nilotic": 4.9e-08, + "nonviable": 4.9e-08, + "novem": 4.9e-08, + "numidian": 4.9e-08, + "oafish": 4.9e-08, + "ohioan": 4.9e-08, + "oiliness": 4.9e-08, + "otolaryngologist": 4.9e-08, + "overcurrent": 4.9e-08, + "overexertion": 4.9e-08, + "oxalis": 4.9e-08, + "pallial": 4.9e-08, + "papaver": 4.9e-08, + "pappi": 4.9e-08, + "paramo": 4.9e-08, + "patroller": 4.9e-08, + "pentose": 4.9e-08, + "phragmites": 4.9e-08, + "phytic": 4.9e-08, + "pictographic": 4.9e-08, + "pilothouse": 4.9e-08, + "pinking": 4.9e-08, + "pisang": 4.9e-08, + "placemaking": 4.9e-08, + "polychaete": 4.9e-08, + "porus": 4.9e-08, + "prancer": 4.9e-08, + "prendre": 4.9e-08, + "proselyte": 4.9e-08, + "pross": 4.9e-08, + "protegee": 4.9e-08, + "puan": 4.9e-08, + "pulmonic": 4.9e-08, + "pustular": 4.9e-08, + "pustule": 4.9e-08, + "quadriga": 4.9e-08, + "quat": 4.9e-08, + "queenly": 4.9e-08, + "radiogenic": 4.9e-08, + "rearmost": 4.9e-08, + "reattachment": 4.9e-08, + "refloat": 4.9e-08, + "rehear": 4.9e-08, + "reki": 4.9e-08, + "retracement": 4.9e-08, + "ritualistically": 4.9e-08, + "riyal": 4.9e-08, + "rockabye": 4.9e-08, + "rodolph": 4.9e-08, + "rosaceae": 4.9e-08, + "rottenness": 4.9e-08, + "saut": 4.9e-08, + "scilla": 4.9e-08, + "seebeck": 4.9e-08, + "sesamoid": 4.9e-08, + "shako": 4.9e-08, + "shamal": 4.9e-08, + "shimonoseki": 4.9e-08, + "sibylline": 4.9e-08, + "siwan": 4.9e-08, + "slimer": 4.9e-08, + "solanaceae": 4.9e-08, + "soldo": 4.9e-08, + "sorrowfully": 4.9e-08, + "sorrowing": 4.9e-08, + "spacy": 4.9e-08, + "spartina": 4.9e-08, + "spasmodically": 4.9e-08, + "spindrift": 4.9e-08, + "spoonbill": 4.9e-08, + "stippled": 4.9e-08, + "streng": 4.9e-08, + "stroboscopic": 4.9e-08, + "strophe": 4.9e-08, + "stuber": 4.9e-08, + "syzygy": 4.9e-08, + "tecoma": 4.9e-08, + "tecum": 4.9e-08, + "teevee": 4.9e-08, + "termen": 4.9e-08, + "thecla": 4.9e-08, + "thring": 4.9e-08, + "thyroidectomy": 4.9e-08, + "tilia": 4.9e-08, + "tintype": 4.9e-08, + "tities": 4.9e-08, + "transcriptionally": 4.9e-08, + "translocate": 4.9e-08, + "tripitaka": 4.9e-08, + "tropopause": 4.9e-08, + "tuneless": 4.9e-08, + "undreamed": 4.9e-08, + "ungodliness": 4.9e-08, + "unimodal": 4.9e-08, + "uninfluenced": 4.9e-08, + "unreflective": 4.9e-08, + "unremembered": 4.9e-08, + "unsearchable": 4.9e-08, + "unsurpassable": 4.9e-08, + "untrusting": 4.9e-08, + "vegetatively": 4.9e-08, + "ventrolateral": 4.9e-08, + "vicariate": 4.9e-08, + "vocalic": 4.9e-08, + "wahpeton": 4.9e-08, + "waxen": 4.9e-08, + "winkelman": 4.9e-08, + "yashiro": 4.9e-08, + "yoe": 4.9e-08, + "acetabular": 4.79e-08, + "achalasia": 4.79e-08, + "achondroplasia": 4.79e-08, + "aconitum": 4.79e-08, + "acrophobia": 4.79e-08, + "adduce": 4.79e-08, + "adnate": 4.79e-08, + "adrenocortical": 4.79e-08, + "affably": 4.79e-08, + "agapanthus": 4.79e-08, + "akala": 4.79e-08, + "alef": 4.79e-08, + "aluminate": 4.79e-08, + "alvah": 4.79e-08, + "americanize": 4.79e-08, + "amorite": 4.79e-08, + "anachronistically": 4.79e-08, + "anosmia": 4.79e-08, + "antidemocratic": 4.79e-08, + "approachability": 4.79e-08, + "arbuscular": 4.79e-08, + "aspirator": 4.79e-08, + "auspiciously": 4.79e-08, + "avital": 4.79e-08, + "aweigh": 4.79e-08, + "baff": 4.79e-08, + "balas": 2.24e-08, + "begay": 4.79e-08, + "berried": 4.79e-08, + "bindweed": 4.79e-08, + "bootmaker": 4.79e-08, + "boutonniere": 4.79e-08, + "bucephalus": 4.79e-08, + "buddle": 4.79e-08, + "bunkum": 4.79e-08, + "burnable": 4.79e-08, + "carbene": 4.79e-08, + "carborundum": 4.79e-08, + "carnauba": 4.79e-08, + "cashbox": 4.79e-08, + "catalyses": 4.79e-08, + "catholicity": 4.79e-08, + "checkoff": 4.79e-08, + "chiasm": 4.79e-08, + "chickahominy": 4.79e-08, + "clammed": 4.79e-08, + "collaborationist": 4.79e-08, + "colorization": 4.79e-08, + "comfortingly": 4.79e-08, + "conjuror": 4.79e-08, + "contrastingly": 4.79e-08, + "counterespionage": 4.79e-08, + "counterforce": 4.79e-08, + "covetable": 4.79e-08, + "creta": 4.79e-08, + "cryptogram": 4.79e-08, + "culotte": 4.79e-08, + "cynosure": 4.79e-08, + "debilitation": 4.79e-08, + "dehydrogenation": 4.79e-08, + "depa": 4.79e-08, + "deviousness": 4.79e-08, + "diastole": 4.79e-08, + "diophantine": 4.79e-08, + "disbar": 4.79e-08, + "discoid": 4.79e-08, + "discoverability": 4.79e-08, + "diverticulum": 4.79e-08, + "dodder": 4.79e-08, + "dorsiflexion": 4.79e-08, + "doubloon": 4.79e-08, + "eaglet": 4.79e-08, + "elastica": 4.79e-08, + "elvan": 4.79e-08, + "emissive": 4.79e-08, + "enameling": 4.79e-08, + "encumber": 4.79e-08, + "ennoble": 4.79e-08, + "entailment": 4.79e-08, + "ethnobotany": 4.79e-08, + "eulogize": 4.79e-08, + "eumenes": 4.79e-08, + "eurus": 4.79e-08, + "exponentiation": 4.79e-08, + "faden": 4.79e-08, + "feal": 4.79e-08, + "fiducial": 4.79e-08, + "finfish": 4.79e-08, + "frigidity": 4.79e-08, + "furl": 4.79e-08, + "genetical": 4.79e-08, + "geomancy": 4.79e-08, + "germicidal": 4.79e-08, + "gluey": 4.79e-08, + "gotra": 4.79e-08, + "gyges": 4.79e-08, + "haine": 4.79e-08, + "hippogriff": 4.79e-08, + "homophonic": 4.79e-08, + "hyla": 4.79e-08, + "hyperalgesia": 4.79e-08, + "hypersurface": 4.79e-08, + "iceni": 4.79e-08, + "illiquidity": 4.79e-08, + "indri": 4.79e-08, + "integrand": 4.79e-08, + "intermedius": 4.79e-08, + "intraepithelial": 4.79e-08, + "ironworker": 4.79e-08, + "jabiru": 4.79e-08, + "jacker": 4.79e-08, + "jaman": 4.79e-08, + "jauntily": 4.79e-08, + "kalon": 4.79e-08, + "kittiwake": 4.79e-08, + "klip": 4.79e-08, + "knowe": 4.79e-08, + "lahontan": 4.79e-08, + "larix": 4.79e-08, + "latus": 4.79e-08, + "leam": 4.79e-08, + "leanness": 4.79e-08, + "lexicographical": 4.79e-08, + "libration": 4.79e-08, + "lunate": 4.79e-08, + "lunes": 4.79e-08, + "lura": 4.79e-08, + "manipulable": 4.79e-08, + "masu": 4.79e-08, + "matricide": 4.79e-08, + "medievalist": 4.79e-08, + "megalith": 4.79e-08, + "metazoan": 4.79e-08, + "mide": 4.79e-08, + "miny": 4.79e-08, + "miscalculate": 4.79e-08, + "moonman": 4.79e-08, + "mountebank": 4.79e-08, + "mustela": 4.79e-08, + "myoclonus": 4.79e-08, + "nabob": 4.79e-08, + "nacre": 4.79e-08, + "naissance": 4.79e-08, + "namer": 4.79e-08, + "nerval": 4.79e-08, + "nibbana": 4.79e-08, + "noisome": 4.79e-08, + "notate": 4.79e-08, + "orlean": 4.79e-08, + "orographic": 4.79e-08, + "overenthusiastic": 4.79e-08, + "ovine": 4.79e-08, + "ozan": 4.79e-08, + "pantagruel": 4.79e-08, + "paraboloid": 4.79e-08, + "parky": 4.79e-08, + "paternally": 4.79e-08, + "pelleted": 4.79e-08, + "penology": 4.79e-08, + "persnickety": 4.79e-08, + "peste": 4.79e-08, + "phaedo": 4.79e-08, + "phantasia": 4.79e-08, + "phenological": 4.79e-08, + "pictorially": 4.79e-08, + "pinene": 4.79e-08, + "pistole": 4.79e-08, + "plasm": 4.79e-08, + "poaceae": 4.79e-08, + "polyposis": 4.79e-08, + "potch": 4.79e-08, + "pouched": 4.79e-08, + "practicability": 4.79e-08, + "predetermine": 4.79e-08, + "preoperatively": 4.79e-08, + "priggish": 4.79e-08, + "prohibitory": 4.79e-08, + "promethium": 4.79e-08, + "proneness": 4.79e-08, + "punctum": 4.79e-08, + "radome": 4.79e-08, + "reabsorb": 4.79e-08, + "relatability": 4.79e-08, + "rever": 4.79e-08, + "robur": 4.79e-08, + "romaji": 4.79e-08, + "roosa": 4.79e-08, + "roustabout": 4.79e-08, + "ruru": 4.79e-08, + "sabia": 4.79e-08, + "sabzi": 4.79e-08, + "saleslady": 4.79e-08, + "salsify": 4.79e-08, + "samian": 4.79e-08, + "sanely": 4.79e-08, + "saponification": 4.79e-08, + "sawfish": 4.79e-08, + "schoolbook": 4.79e-08, + "scoter": 4.79e-08, + "scrappage": 4.79e-08, + "sculptress": 4.79e-08, + "sensate": 4.79e-08, + "shirty": 4.79e-08, + "sice": 4.79e-08, + "siddhanta": 4.79e-08, + "sitta": 4.79e-08, + "skulled": 4.79e-08, + "slewing": 4.79e-08, + "slithery": 4.79e-08, + "snooper": 4.79e-08, + "sodality": 4.79e-08, + "solemnize": 4.79e-08, + "spandrel": 4.79e-08, + "staphylococci": 4.79e-08, + "starshine": 4.79e-08, + "steading": 4.79e-08, + "stevedoring": 4.79e-08, + "stifler": 4.79e-08, + "stogie": 4.79e-08, + "sulfonamide": 4.79e-08, + "tabes": 4.79e-08, + "tackiness": 4.79e-08, + "talitha": 4.79e-08, + "tartly": 4.79e-08, + "tenderhearted": 4.79e-08, + "tetrapod": 4.79e-08, + "theophany": 4.79e-08, + "tomentose": 4.79e-08, + "torc": 4.79e-08, + "transfuse": 4.79e-08, + "treater": 4.79e-08, + "tribespeople": 4.79e-08, + "tweedledum": 4.79e-08, + "tyramine": 4.79e-08, + "uncharacterized": 4.79e-08, + "undergird": 4.79e-08, + "unfasten": 4.79e-08, + "unisexual": 4.79e-08, + "unmindful": 4.79e-08, + "unpractical": 4.79e-08, + "unprofessionalism": 4.79e-08, + "uveal": 4.79e-08, + "vacantly": 4.79e-08, + "vache": 4.79e-08, + "vasoconstrictor": 4.79e-08, + "vasundhara": 4.79e-08, + "vau": 4.79e-08, + "ventromedial": 4.79e-08, + "vester": 4.79e-08, + "volcanically": 4.79e-08, + "wailer": 4.79e-08, + "wangle": 4.79e-08, + "winker": 4.79e-08, + "womanish": 4.79e-08, + "woodcutting": 4.79e-08, + "woolman": 4.79e-08, + "zarzuela": 4.79e-08, + "zoetrope": 4.79e-08, + "additivity": 4.68e-08, + "adenomatous": 4.68e-08, + "aftereffect": 4.68e-08, + "agena": 4.68e-08, + "aliveness": 4.68e-08, + "altruistically": 4.68e-08, + "ambulation": 4.68e-08, + "amra": 4.68e-08, + "anacreon": 4.68e-08, + "anaerobically": 4.68e-08, + "anthracene": 4.68e-08, + "antipode": 4.68e-08, + "antipyretic": 4.68e-08, + "antispasmodic": 4.68e-08, + "appellee": 4.68e-08, + "approver": 4.68e-08, + "assimilationist": 4.68e-08, + "asturian": 4.68e-08, + "austenite": 4.68e-08, + "avidya": 4.68e-08, + "avow": 4.68e-08, + "axisymmetric": 4.68e-08, + "bacchanalia": 4.68e-08, + "bahan": 4.68e-08, + "betted": 4.68e-08, + "bhakta": 4.68e-08, + "bicyclic": 4.68e-08, + "bidentate": 4.68e-08, + "bisection": 4.68e-08, + "boding": 4.68e-08, + "bornean": 4.68e-08, + "bulbar": 4.68e-08, + "bunder": 4.68e-08, + "cadaverous": 4.68e-08, + "calendrical": 4.68e-08, + "camarilla": 4.68e-08, + "carlist": 4.68e-08, + "castling": 4.68e-08, + "catgut": 4.68e-08, + "charwoman": 4.68e-08, + "chewer": 4.68e-08, + "chieftainship": 4.68e-08, + "chinny": 4.68e-08, + "chlorosis": 4.68e-08, + "chrysippus": 4.68e-08, + "circumscription": 4.68e-08, + "clima": 4.68e-08, + "colectomy": 4.68e-08, + "complexioned": 4.68e-08, + "conceptualism": 4.68e-08, + "concilium": 4.68e-08, + "congener": 4.68e-08, + "controversialist": 4.68e-08, + "corella": 4.68e-08, + "cornhusker": 4.68e-08, + "corpuscular": 4.68e-08, + "countersign": 4.68e-08, + "creditably": 4.68e-08, + "crocket": 4.68e-08, + "curcuma": 4.68e-08, + "cyperus": 4.68e-08, + "dagga": 4.68e-08, + "deathblow": 4.68e-08, + "defaulter": 4.68e-08, + "dhobi": 4.68e-08, + "dionysia": 4.68e-08, + "dogmatics": 4.68e-08, + "doored": 4.68e-08, + "dragoman": 4.68e-08, + "dunghill": 4.68e-08, + "dynamiting": 4.68e-08, + "earthlike": 4.68e-08, + "eclat": 4.68e-08, + "electrotherapy": 4.68e-08, + "elephantiasis": 4.68e-08, + "elliptically": 4.68e-08, + "emboss": 4.68e-08, + "enuresis": 4.68e-08, + "escudo": 4.68e-08, + "euphonious": 4.68e-08, + "euphony": 4.68e-08, + "extraterritoriality": 4.68e-08, + "fazenda": 4.68e-08, + "felicitation": 4.68e-08, + "fezzan": 4.68e-08, + "flugelhorn": 4.68e-08, + "foundress": 4.68e-08, + "gastronomical": 4.68e-08, + "gilo": 4.68e-08, + "glaciologist": 4.68e-08, + "grandiloquent": 4.68e-08, + "graphology": 4.68e-08, + "groover": 4.68e-08, + "guti": 4.68e-08, + "hagiographic": 4.68e-08, + "homelike": 4.68e-08, + "hotfoot": 4.68e-08, + "hushing": 4.68e-08, + "hypersomnia": 4.68e-08, + "hypostatic": 4.68e-08, + "hypotonic": 4.68e-08, + "ichthyosaur": 4.68e-08, + "imamate": 4.68e-08, + "imbecility": 4.68e-08, + "immi": 4.68e-08, + "impetuously": 4.68e-08, + "inadmissibility": 4.68e-08, + "incus": 4.68e-08, + "insurrectionist": 4.68e-08, + "interparliamentary": 4.68e-08, + "interrelate": 4.68e-08, + "intone": 4.68e-08, + "intraparty": 4.68e-08, + "intrusiveness": 4.68e-08, + "intussusception": 4.68e-08, + "irishness": 4.68e-08, + "iroquoian": 4.68e-08, + "jicama": 4.68e-08, + "jubilate": 4.68e-08, + "julietta": 4.68e-08, + "kelt": 4.68e-08, + "knowledgeably": 4.68e-08, + "koel": 4.68e-08, + "lascar": 4.68e-08, + "latinate": 4.68e-08, + "laun": 4.68e-08, + "leck": 4.68e-08, + "liberatory": 4.68e-08, + "limeade": 4.68e-08, + "listlessness": 4.68e-08, + "lonicera": 4.68e-08, + "looby": 4.68e-08, + "lupinus": 4.68e-08, + "matawan": 4.68e-08, + "meccan": 4.68e-08, + "medoc": 4.68e-08, + "metaphysician": 4.68e-08, + "metrological": 4.68e-08, + "microporous": 4.68e-08, + "mru": 4.68e-08, + "musette": 4.68e-08, + "muzz": 4.68e-08, + "nasopharynx": 4.68e-08, + "nasus": 4.68e-08, + "negress": 4.68e-08, + "nevo": 4.68e-08, + "noisette": 4.68e-08, + "nominalism": 4.68e-08, + "nopal": 4.68e-08, + "normatively": 4.68e-08, + "notifier": 4.68e-08, + "novocain": 4.68e-08, + "occiput": 4.68e-08, + "oligotrophic": 4.68e-08, + "onomatopoeic": 4.68e-08, + "opaline": 4.68e-08, + "optative": 4.68e-08, + "orality": 4.68e-08, + "osteoblast": 4.68e-08, + "ottinger": 4.68e-08, + "outlandishly": 4.68e-08, + "overcompensation": 4.68e-08, + "overspeed": 4.68e-08, + "paal": 4.68e-08, + "panfish": 4.68e-08, + "pannel": 4.68e-08, + "pedagogically": 4.68e-08, + "pegmatite": 4.68e-08, + "penumbral": 4.68e-08, + "petrify": 4.68e-08, + "petrographic": 4.68e-08, + "petrolatum": 4.68e-08, + "photoemission": 4.68e-08, + "phreatic": 4.68e-08, + "pinochle": 4.68e-08, + "pleomorphic": 4.68e-08, + "plosive": 4.68e-08, + "pneumoconiosis": 4.68e-08, + "polyatomic": 4.68e-08, + "polymerize": 4.68e-08, + "polyploid": 4.68e-08, + "ponga": 4.68e-08, + "popple": 4.68e-08, + "postorbital": 4.68e-08, + "prodromal": 4.68e-08, + "proslavery": 4.68e-08, + "quirinal": 4.68e-08, + "rampantly": 4.68e-08, + "rasher": 4.68e-08, + "receptiveness": 4.68e-08, + "rectally": 4.68e-08, + "referable": 4.68e-08, + "rehoboam": 4.68e-08, + "reimpose": 4.68e-08, + "reuel": 4.68e-08, + "revealingly": 4.68e-08, + "revegetation": 4.68e-08, + "ringtail": 4.68e-08, + "ritualist": 4.68e-08, + "rollerskating": 4.68e-08, + "romanticist": 4.68e-08, + "rumex": 4.68e-08, + "samal": 4.68e-08, + "sclerotinia": 4.68e-08, + "selvage": 4.68e-08, + "seminiferous": 4.68e-08, + "sheepfold": 4.68e-08, + "shortener": 4.68e-08, + "shuffler": 4.68e-08, + "silicic": 4.68e-08, + "simkin": 4.68e-08, + "snively": 4.68e-08, + "sodalite": 4.68e-08, + "soleus": 4.68e-08, + "soother": 4.68e-08, + "souper": 4.68e-08, + "spectrophotometry": 4.68e-08, + "splenomegaly": 4.68e-08, + "spondylolisthesis": 4.68e-08, + "spoony": 4.68e-08, + "spotlessly": 4.68e-08, + "steatosis": 4.68e-08, + "steerer": 4.68e-08, + "stubbly": 4.68e-08, + "stuffiness": 4.68e-08, + "stupefy": 4.68e-08, + "subdermal": 4.68e-08, + "sudd": 4.68e-08, + "sudsy": 4.68e-08, + "sumption": 4.68e-08, + "superlatively": 4.68e-08, + "supermarine": 4.68e-08, + "swang": 4.68e-08, + "sweetmeat": 4.68e-08, + "syndic": 4.68e-08, + "synergetic": 4.68e-08, + "synodal": 4.68e-08, + "synodical": 4.68e-08, + "teju": 4.68e-08, + "tenderer": 4.68e-08, + "teresina": 4.68e-08, + "termes": 4.68e-08, + "theogony": 4.68e-08, + "thomism": 4.68e-08, + "thousandfold": 4.68e-08, + "tiberian": 4.68e-08, + "tody": 4.68e-08, + "trackwork": 4.68e-08, + "trama": 4.68e-08, + "transborder": 4.68e-08, + "transformable": 4.68e-08, + "triazole": 4.68e-08, + "trireme": 4.68e-08, + "turlough": 4.68e-08, + "turp": 4.68e-08, + "turps": 4.68e-08, + "uncomprehending": 4.68e-08, + "unconfident": 4.68e-08, + "unforgettably": 4.68e-08, + "unforgiveness": 4.68e-08, + "unmercifully": 4.68e-08, + "unobjectionable": 4.68e-08, + "unpermitted": 4.68e-08, + "unreceptive": 4.68e-08, + "unrelieved": 4.68e-08, + "unserved": 4.68e-08, + "unstick": 4.68e-08, + "urbanite": 4.68e-08, + "uremia": 4.68e-08, + "vasospasm": 4.68e-08, + "vulgarly": 4.68e-08, + "wakening": 4.68e-08, + "warth": 4.68e-08, + "waxwing": 4.68e-08, + "weaselly": 4.68e-08, + "wettability": 4.68e-08, + "windjammer": 4.68e-08, + "wops": 4.68e-08, + "aboveboard": 4.57e-08, + "absaroka": 4.57e-08, + "acinar": 4.57e-08, + "aesthetician": 4.57e-08, + "agnatic": 4.57e-08, + "albe": 4.57e-08, + "alpinist": 4.57e-08, + "ambrosian": 4.57e-08, + "amphibolite": 4.57e-08, + "analecta": 4.57e-08, + "anhydrite": 4.57e-08, + "apostleship": 4.57e-08, + "arcady": 4.57e-08, + "archly": 4.57e-08, + "ascham": 4.57e-08, + "bacteroides": 4.57e-08, + "barbet": 4.57e-08, + "barong": 4.57e-08, + "benefaction": 4.57e-08, + "besought": 4.57e-08, + "bigeye": 4.57e-08, + "biostratigraphy": 4.57e-08, + "bizz": 4.57e-08, + "bluebottle": 4.57e-08, + "blunter": 4.57e-08, + "boeotian": 4.57e-08, + "bolshevist": 4.57e-08, + "borzoi": 4.57e-08, + "broadcloth": 4.57e-08, + "bucca": 4.57e-08, + "bundler": 4.57e-08, + "bureaucratically": 4.57e-08, + "buyable": 4.57e-08, + "calved": 4.57e-08, + "canarian": 4.57e-08, + "canonic": 4.57e-08, + "canopic": 4.57e-08, + "cantabrian": 4.57e-08, + "caramba": 4.57e-08, + "careworn": 4.57e-08, + "causer": 4.57e-08, + "celesta": 4.57e-08, + "cementum": 4.57e-08, + "changa": 4.57e-08, + "chapelry": 4.57e-08, + "chatwood": 4.57e-08, + "chena": 4.57e-08, + "cisalpine": 4.57e-08, + "cobleskill": 4.57e-08, + "colchicum": 4.57e-08, + "colibri": 4.57e-08, + "colorable": 4.57e-08, + "colposcopy": 4.57e-08, + "companionway": 4.57e-08, + "conniption": 4.57e-08, + "considerately": 4.57e-08, + "coppersmith": 4.57e-08, + "corban": 4.57e-08, + "coreopsis": 4.57e-08, + "cosiness": 4.57e-08, + "covenantal": 4.57e-08, + "creem": 4.57e-08, + "crotchet": 4.57e-08, + "culler": 4.57e-08, + "culverhouse": 4.57e-08, + "cyclopes": 4.57e-08, + "cystoscopy": 4.57e-08, + "dairyman": 4.57e-08, + "damara": 4.57e-08, + "dayman": 4.57e-08, + "deadliness": 4.57e-08, + "dedo": 4.57e-08, + "demobilize": 4.57e-08, + "diminuendo": 4.57e-08, + "dischargeable": 4.57e-08, + "durn": 4.57e-08, + "dysplastic": 4.57e-08, + "dysprosium": 4.57e-08, + "egeria": 4.57e-08, + "endemism": 4.57e-08, + "entomb": 4.57e-08, + "entrain": 4.57e-08, + "entreating": 4.57e-08, + "erysipelas": 4.57e-08, + "everlastingly": 4.57e-08, + "exegete": 4.57e-08, + "externalization": 4.57e-08, + "fabaceae": 4.57e-08, + "facer": 4.57e-08, + "ferulic": 4.57e-08, + "finnic": 4.57e-08, + "firebreak": 4.57e-08, + "fogey": 4.57e-08, + "forestation": 4.57e-08, + "frase": 4.57e-08, + "fugal": 4.57e-08, + "fusty": 4.57e-08, + "gallate": 4.57e-08, + "ganta": 4.57e-08, + "gasometer": 4.57e-08, + "giftware": 4.57e-08, + "gimble": 4.57e-08, + "gingery": 4.57e-08, + "girdler": 4.57e-08, + "gossard": 4.57e-08, + "gracefulness": 4.57e-08, + "graining": 4.57e-08, + "growly": 4.57e-08, + "guardroom": 4.57e-08, + "guidepost": 4.57e-08, + "harl": 4.57e-08, + "hellishly": 4.57e-08, + "hemodynamics": 4.57e-08, + "heptane": 4.57e-08, + "highroad": 4.57e-08, + "hilum": 4.57e-08, + "historiographic": 4.57e-08, + "homiletics": 4.57e-08, + "horsehead": 4.57e-08, + "ijo": 4.57e-08, + "immodesty": 4.57e-08, + "imponderable": 4.57e-08, + "inattentiveness": 4.57e-08, + "inconclusively": 4.57e-08, + "industriously": 4.57e-08, + "inflect": 4.57e-08, + "injudicious": 4.57e-08, + "inspirer": 4.57e-08, + "intercounty": 4.57e-08, + "jinni": 4.57e-08, + "joyfulness": 4.57e-08, + "junkman": 4.57e-08, + "kedgeree": 4.57e-08, + "keta": 4.57e-08, + "labral": 4.57e-08, + "lambaste": 4.57e-08, + "laminaria": 4.57e-08, + "legalist": 4.57e-08, + "legerdemain": 4.57e-08, + "lenience": 4.57e-08, + "lesbia": 4.57e-08, + "lignum": 4.57e-08, + "linalool": 4.57e-08, + "lineament": 4.57e-08, + "linum": 4.57e-08, + "lividity": 4.57e-08, + "lobectomy": 4.57e-08, + "lown": 4.57e-08, + "lowville": 4.57e-08, + "malchus": 4.57e-08, + "maliciousness": 4.57e-08, + "manito": 4.57e-08, + "matalan": 4.57e-08, + "medicament": 4.57e-08, + "midrashic": 4.57e-08, + "misguide": 4.57e-08, + "moonflower": 4.57e-08, + "mosaicism": 4.57e-08, + "mousing": 4.57e-08, + "myna": 4.57e-08, + "mytilus": 4.57e-08, + "nable": 4.57e-08, + "neuroanatomical": 4.57e-08, + "noiselessly": 4.57e-08, + "nonphysical": 4.57e-08, + "nudibranch": 4.57e-08, + "obscurantism": 4.57e-08, + "observability": 4.57e-08, + "olivaceous": 4.57e-08, + "ortolan": 4.57e-08, + "oxime": 4.57e-08, + "paha": 4.57e-08, + "papain": 4.57e-08, + "patera": 4.57e-08, + "patwari": 4.57e-08, + "paunchy": 4.57e-08, + "pearled": 4.57e-08, + "peashooter": 4.57e-08, + "pelops": 4.57e-08, + "penciling": 4.57e-08, + "periapical": 4.57e-08, + "perjurer": 4.57e-08, + "pestilential": 4.57e-08, + "petalled": 4.57e-08, + "peterloo": 4.57e-08, + "pissant": 4.57e-08, + "pist": 4.57e-08, + "plier": 4.57e-08, + "plumps": 4.57e-08, + "podded": 4.57e-08, + "poesy": 4.57e-08, + "prequalification": 4.57e-08, + "pretentiously": 4.57e-08, + "priapus": 4.57e-08, + "printworks": 4.57e-08, + "privity": 4.57e-08, + "prosopis": 4.57e-08, + "psalmody": 4.57e-08, + "punchable": 4.57e-08, + "pythium": 4.57e-08, + "quadrupedal": 4.57e-08, + "quinault": 4.57e-08, + "ramal": 4.57e-08, + "recapitalize": 4.57e-08, + "recirculate": 4.57e-08, + "redan": 4.57e-08, + "redundantly": 4.57e-08, + "reinvestigation": 4.57e-08, + "revealer": 4.57e-08, + "rinderpest": 4.57e-08, + "rodentia": 4.57e-08, + "salthouse": 4.57e-08, + "sapin": 4.57e-08, + "sarcoplasmic": 4.57e-08, + "scourging": 4.57e-08, + "scrat": 4.57e-08, + "septate": 4.57e-08, + "serviette": 4.57e-08, + "shiism": 4.27e-08, + "shintoism": 4.57e-08, + "siskin": 4.57e-08, + "skywriting": 4.57e-08, + "snoozer": 4.57e-08, + "solander": 4.57e-08, + "solen": 4.57e-08, + "solomonic": 4.57e-08, + "sool": 4.57e-08, + "sorcerous": 4.57e-08, + "spiritedness": 4.57e-08, + "splotchy": 4.57e-08, + "squealer": 4.57e-08, + "staker": 4.57e-08, + "steinberger": 4.57e-08, + "stemware": 4.57e-08, + "sterk": 4.57e-08, + "stickle": 4.57e-08, + "streamliner": 4.57e-08, + "strutter": 4.57e-08, + "submicron": 4.57e-08, + "supersaturation": 4.57e-08, + "surma": 4.57e-08, + "surmountable": 4.57e-08, + "tewa": 4.57e-08, + "thalli": 4.57e-08, + "thessalian": 4.57e-08, + "thieve": 4.57e-08, + "thomist": 4.57e-08, + "tomatillo": 4.57e-08, + "transection": 4.57e-08, + "treader": 4.57e-08, + "trematodes": 4.57e-08, + "trichinosis": 4.57e-08, + "tyee": 4.57e-08, + "unconformably": 4.57e-08, + "underbid": 4.57e-08, + "unexperienced": 4.57e-08, + "unmedicated": 4.57e-08, + "unresponsiveness": 4.57e-08, + "utile": 4.57e-08, + "valediction": 4.57e-08, + "velum": 4.57e-08, + "volcanologist": 4.57e-08, + "wafd": 4.57e-08, + "wahine": 4.57e-08, + "weening": 4.57e-08, + "weeper": 4.57e-08, + "whiteboy": 4.57e-08, + "wilhelmine": 4.57e-08, + "wintle": 4.57e-08, + "witan": 4.57e-08, + "zonation": 4.57e-08, + "acquiescent": 4.47e-08, + "adulterate": 4.47e-08, + "alkalosis": 4.47e-08, + "allene": 4.47e-08, + "amah": 4.47e-08, + "amoeboid": 4.47e-08, + "anamnesis": 4.47e-08, + "anchorite": 4.47e-08, + "ango": 4.47e-08, + "anjan": 4.47e-08, + "antitrypsin": 4.47e-08, + "apiculture": 4.47e-08, + "archpriest": 4.47e-08, + "asclepias": 4.47e-08, + "assortative": 4.47e-08, + "atelectasis": 4.47e-08, + "athwart": 4.47e-08, + "atter": 4.47e-08, + "autem": 4.47e-08, + "autobus": 4.47e-08, + "automorphic": 4.47e-08, + "avar": 4.47e-08, + "aventurine": 4.47e-08, + "azolla": 4.47e-08, + "baksheesh": 4.47e-08, + "barbwire": 4.47e-08, + "bargh": 4.47e-08, + "bauhinia": 4.47e-08, + "beath": 4.47e-08, + "benami": 4.47e-08, + "bezoar": 4.47e-08, + "blowy": 4.47e-08, + "boran": 4.47e-08, + "broo": 4.47e-08, + "bulrush": 4.47e-08, + "bumbo": 4.47e-08, + "buran": 4.47e-08, + "burgeon": 4.47e-08, + "busser": 4.47e-08, + "cany": 4.47e-08, + "casque": 4.47e-08, + "catamount": 4.47e-08, + "caustically": 4.47e-08, + "cetacea": 4.47e-08, + "chitinous": 4.47e-08, + "cirrhotic": 4.47e-08, + "clamming": 4.47e-08, + "clat": 4.47e-08, + "clavichord": 4.47e-08, + "columbarium": 4.47e-08, + "communicant": 4.47e-08, + "condole": 4.47e-08, + "connoisseurship": 4.47e-08, + "coriaceous": 4.47e-08, + "corium": 4.47e-08, + "corton": 4.47e-08, + "courter": 4.47e-08, + "coyness": 4.47e-08, + "curium": 4.47e-08, + "cutis": 4.47e-08, + "daff": 4.47e-08, + "decisional": 4.47e-08, + "decurrent": 4.47e-08, + "deductively": 4.47e-08, + "deportable": 4.47e-08, + "disaccharide": 4.47e-08, + "discrepant": 4.47e-08, + "disempower": 4.47e-08, + "disfranchisement": 4.47e-08, + "disinflation": 4.47e-08, + "distributary": 4.47e-08, + "diuresis": 4.47e-08, + "divinatory": 4.47e-08, + "dodecyl": 4.47e-08, + "donator": 4.47e-08, + "dracaena": 4.47e-08, + "durational": 4.47e-08, + "dystocia": 4.47e-08, + "ecclesiological": 4.47e-08, + "enamelware": 4.47e-08, + "epicureanism": 4.47e-08, + "equisetum": 4.47e-08, + "espinal": 4.47e-08, + "estrous": 4.47e-08, + "eudaimonia": 4.47e-08, + "exculpate": 4.47e-08, + "falange": 4.47e-08, + "fearfulness": 4.47e-08, + "feebleness": 4.47e-08, + "felty": 4.47e-08, + "filioque": 4.47e-08, + "flatcar": 4.47e-08, + "flophouse": 4.47e-08, + "gaited": 4.47e-08, + "gaiter": 4.47e-08, + "gaoler": 4.47e-08, + "garance": 4.47e-08, + "garble": 4.47e-08, + "gardy": 4.47e-08, + "gasifier": 4.47e-08, + "geat": 4.47e-08, + "geochemist": 4.47e-08, + "geodynamic": 4.47e-08, + "gilling": 4.47e-08, + "gnaeus": 4.47e-08, + "granduncle": 4.47e-08, + "greyness": 4.47e-08, + "gunwale": 4.47e-08, + "habu": 4.47e-08, + "hangnail": 4.47e-08, + "hausen": 4.47e-08, + "histopathologic": 4.47e-08, + "historiographer": 4.47e-08, + "hogback": 4.47e-08, + "holidaymaker": 4.47e-08, + "hollin": 4.47e-08, + "homeomorphism": 4.47e-08, + "housecoat": 4.47e-08, + "hydrogeological": 4.47e-08, + "illuminance": 4.47e-08, + "imprudently": 4.47e-08, + "incalculably": 4.47e-08, + "indubitable": 4.47e-08, + "interborough": 4.47e-08, + "interlake": 4.47e-08, + "internationalize": 4.47e-08, + "intrahepatic": 4.47e-08, + "isobaric": 4.47e-08, + "isochronous": 4.47e-08, + "jugal": 4.47e-08, + "jupe": 4.47e-08, + "killingly": 4.47e-08, + "klystron": 4.47e-08, + "kyat": 4.47e-08, + "laches": 4.47e-08, + "latigo": 4.47e-08, + "laxness": 4.47e-08, + "lectotype": 4.47e-08, + "lepas": 4.47e-08, + "ligamentous": 4.47e-08, + "luxus": 4.47e-08, + "lycanthrope": 4.47e-08, + "mahalla": 4.47e-08, + "maimon": 4.47e-08, + "maraca": 4.47e-08, + "maral": 4.47e-08, + "mateship": 4.47e-08, + "measurer": 4.47e-08, + "meio": 4.47e-08, + "merula": 4.47e-08, + "micmac": 4.47e-08, + "molarity": 4.47e-08, + "monodrama": 4.47e-08, + "monosaccharide": 4.47e-08, + "multimodality": 4.47e-08, + "muntjac": 4.47e-08, + "murid": 4.47e-08, + "nark": 4.47e-08, + "neckband": 4.47e-08, + "neurasthenia": 4.47e-08, + "noisemaker": 4.47e-08, + "nomadism": 4.47e-08, + "noncombat": 4.47e-08, + "nubby": 4.47e-08, + "okee": 4.47e-08, + "oresteia": 4.47e-08, + "oropharynx": 4.47e-08, + "osteitis": 4.47e-08, + "outgun": 4.47e-08, + "overfeed": 4.47e-08, + "oxidization": 4.47e-08, + "palazzi": 4.47e-08, + "palearctic": 4.47e-08, + "pargana": 4.47e-08, + "partitive": 4.47e-08, + "pastorale": 4.47e-08, + "paterfamilias": 4.47e-08, + "peggle": 4.47e-08, + "penstock": 4.47e-08, + "pericarp": 4.47e-08, + "phaethon": 4.47e-08, + "pharisaic": 4.47e-08, + "photochromic": 4.47e-08, + "pistillate": 4.47e-08, + "plastron": 4.47e-08, + "pliability": 4.47e-08, + "podgy": 4.47e-08, + "poinciana": 4.47e-08, + "polyphase": 4.47e-08, + "pombe": 4.47e-08, + "porphyritic": 4.47e-08, + "poundstone": 4.47e-08, + "prolix": 4.47e-08, + "psychophysiological": 4.47e-08, + "pulpwood": 4.47e-08, + "purgation": 4.47e-08, + "pyromania": 4.47e-08, + "quadric": 4.47e-08, + "quatorze": 4.47e-08, + "questor": 4.47e-08, + "quinoline": 4.47e-08, + "ramekin": 4.47e-08, + "raucously": 4.47e-08, + "redactor": 4.47e-08, + "reen": 4.47e-08, + "refractometer": 4.47e-08, + "restrictively": 4.47e-08, + "revalue": 4.47e-08, + "rivage": 4.47e-08, + "rodding": 4.47e-08, + "rodenticide": 4.47e-08, + "roke": 4.47e-08, + "ruach": 4.47e-08, + "savarin": 4.47e-08, + "scandalize": 4.47e-08, + "sciara": 4.47e-08, + "sealable": 4.47e-08, + "secreto": 4.47e-08, + "semisimple": 4.47e-08, + "seps": 4.47e-08, + "shive": 4.47e-08, + "sigmoidoscopy": 4.47e-08, + "sipper": 4.47e-08, + "skuse": 4.47e-08, + "smoochy": 4.47e-08, + "snookered": 4.47e-08, + "somnambulist": 4.47e-08, + "sourly": 4.47e-08, + "spiffing": 4.47e-08, + "stug": 4.47e-08, + "submersed": 4.47e-08, + "subsample": 4.47e-08, + "subzone": 4.47e-08, + "suffusion": 4.47e-08, + "superabundance": 4.47e-08, + "supplicate": 4.47e-08, + "syringa": 4.47e-08, + "talion": 4.47e-08, + "tarahumara": 4.47e-08, + "terbium": 4.47e-08, + "tercel": 4.47e-08, + "terminer": 4.47e-08, + "thereunto": 4.47e-08, + "thrax": 4.47e-08, + "tideway": 4.47e-08, + "tinman": 4.47e-08, + "tinning": 4.47e-08, + "tittering": 4.47e-08, + "tombe": 4.47e-08, + "toran": 4.47e-08, + "tragedian": 4.47e-08, + "tranquilizing": 4.47e-08, + "transferor": 4.47e-08, + "transmissibility": 4.47e-08, + "treebeard": 4.47e-08, + "trommel": 4.47e-08, + "tubingen": 4.47e-08, + "underclassman": 4.47e-08, + "undershoot": 4.47e-08, + "underwing": 4.47e-08, + "undescended": 4.47e-08, + "unowned": 4.47e-08, + "unpreparedness": 4.47e-08, + "unprintable": 4.47e-08, + "unresolvable": 4.47e-08, + "untrammeled": 4.47e-08, + "ursine": 4.47e-08, + "vaudois": 4.47e-08, + "venator": 4.47e-08, + "vermonter": 4.47e-08, + "vervet": 4.47e-08, + "vilely": 4.47e-08, + "waff": 4.47e-08, + "wheatear": 4.47e-08, + "whispery": 4.47e-08, + "winnipesaukee": 4.47e-08, + "worldy": 4.47e-08, + "wriggly": 4.47e-08, + "xeric": 4.47e-08, + "yajna": 4.47e-08, + "yellowhead": 4.47e-08, + "yellowy": 4.47e-08, + "yurok": 4.47e-08, + "zoophilia": 4.47e-08, + "abac": 4.37e-08, + "abiogenesis": 4.37e-08, + "abortifacient": 4.37e-08, + "achene": 4.37e-08, + "acidify": 4.37e-08, + "actinium": 4.37e-08, + "addu": 4.37e-08, + "adipocyte": 4.37e-08, + "agglomerate": 4.37e-08, + "aitch": 4.37e-08, + "alfreda": 4.37e-08, + "alkoxy": 4.37e-08, + "allocable": 4.37e-08, + "alphabetize": 4.37e-08, + "ammu": 4.37e-08, + "amphion": 4.37e-08, + "annal": 4.37e-08, + "antiemetic": 4.37e-08, + "antimonopoly": 4.37e-08, + "antiphonal": 4.37e-08, + "apheresis": 4.37e-08, + "aphoristic": 4.37e-08, + "aptian": 4.37e-08, + "aristotelianism": 4.37e-08, + "armida": 4.37e-08, + "assai": 4.37e-08, + "avars": 4.37e-08, + "babine": 4.37e-08, + "bacchanalian": 4.37e-08, + "bakhtiari": 4.37e-08, + "baluster": 4.37e-08, + "bander": 4.37e-08, + "baria": 4.37e-08, + "batavian": 4.37e-08, + "bedwell": 4.37e-08, + "beguine": 4.37e-08, + "beja": 4.37e-08, + "benefactress": 4.37e-08, + "blowoff": 4.37e-08, + "boun": 4.37e-08, + "brachycephalic": 4.37e-08, + "bridgework": 4.37e-08, + "bronchodilator": 4.37e-08, + "cancellous": 4.37e-08, + "capriciousness": 4.37e-08, + "carabidae": 4.37e-08, + "caravanserai": 4.37e-08, + "caudle": 4.37e-08, + "cautery": 4.37e-08, + "celanese": 4.37e-08, + "chahar": 4.37e-08, + "chary": 4.37e-08, + "cholecystitis": 4.37e-08, + "chromatically": 4.37e-08, + "chromatics": 4.37e-08, + "cirri": 4.37e-08, + "coalescent": 4.37e-08, + "cobia": 4.37e-08, + "conferment": 4.37e-08, + "connive": 4.37e-08, + "convertor": 4.37e-08, + "convulsively": 4.37e-08, + "cordwainer": 4.37e-08, + "cornstalk": 4.37e-08, + "corporator": 4.37e-08, + "corynebacterium": 4.37e-08, + "cowlick": 4.37e-08, + "deciliter": 4.37e-08, + "deistic": 4.37e-08, + "deric": 4.37e-08, + "derivable": 4.37e-08, + "dharna": 4.37e-08, + "dilo": 4.37e-08, + "dogtooth": 4.37e-08, + "donia": 4.37e-08, + "dovecot": 4.37e-08, + "dramaturgical": 4.37e-08, + "durably": 4.37e-08, + "eimeria": 4.37e-08, + "elysia": 4.37e-08, + "endosome": 4.37e-08, + "enharmonic": 4.37e-08, + "ephesian": 4.37e-08, + "epiphyseal": 4.37e-08, + "erythematous": 4.37e-08, + "evocatively": 4.37e-08, + "excoriate": 4.37e-08, + "extemporaneously": 4.37e-08, + "extirpate": 4.37e-08, + "extrait": 4.37e-08, + "fluffiness": 4.37e-08, + "foody": 4.37e-08, + "fortuneteller": 4.37e-08, + "forwardness": 4.37e-08, + "frustum": 4.37e-08, + "fussiness": 4.37e-08, + "fust": 4.37e-08, + "galways": 4.37e-08, + "gangrel": 4.37e-08, + "gasconade": 4.37e-08, + "gipper": 4.37e-08, + "gramme": 4.37e-08, + "grampus": 4.37e-08, + "grumpily": 4.37e-08, + "guardedly": 4.37e-08, + "guesser": 4.37e-08, + "hakea": 4.37e-08, + "handsaw": 4.37e-08, + "healthfulness": 4.37e-08, + "heliothis": 4.37e-08, + "hermaphroditism": 4.37e-08, + "hobnail": 4.37e-08, + "homiletic": 4.37e-08, + "horsefly": 4.37e-08, + "hubristic": 4.37e-08, + "husbandman": 4.37e-08, + "hygienically": 4.37e-08, + "ichneumon": 4.37e-08, + "icily": 4.37e-08, + "iguanodon": 4.37e-08, + "impetuosity": 4.37e-08, + "inconsolably": 4.37e-08, + "incurious": 4.37e-08, + "inferiorly": 4.37e-08, + "interosseous": 4.37e-08, + "intersubjective": 4.37e-08, + "intestacy": 4.37e-08, + "introgression": 4.37e-08, + "irreverently": 4.37e-08, + "jalapa": 4.37e-08, + "jejune": 4.37e-08, + "jonquil": 4.37e-08, + "kalanchoe": 4.37e-08, + "kashan": 4.37e-08, + "katydid": 4.37e-08, + "kauravas": 4.37e-08, + "knobbed": 4.37e-08, + "kobus": 4.37e-08, + "labellum": 4.37e-08, + "lawyerly": 4.37e-08, + "leachman": 4.37e-08, + "lifework": 4.37e-08, + "ligas": 1.86e-08, + "lightheartedly": 4.37e-08, + "livelong": 4.37e-08, + "lorica": 4.37e-08, + "luncheonette": 4.37e-08, + "lushness": 4.37e-08, + "lycopodium": 4.37e-08, + "lysimachus": 4.37e-08, + "machination": 4.37e-08, + "marka": 4.37e-08, + "maund": 4.37e-08, + "metier": 4.37e-08, + "militate": 4.37e-08, + "misappropriate": 4.37e-08, + "misjudgement": 4.37e-08, + "moabite": 4.37e-08, + "mocker": 4.37e-08, + "moonglow": 4.37e-08, + "motorization": 4.37e-08, + "multipotent": 4.37e-08, + "mycologist": 4.37e-08, + "nastily": 4.37e-08, + "nepenthes": 4.37e-08, + "nominator": 4.37e-08, + "obligee": 4.37e-08, + "obstreperous": 4.37e-08, + "ocotillo": 4.37e-08, + "ophiuchus": 4.37e-08, + "opposer": 4.37e-08, + "oubliette": 4.37e-08, + "outfront": 4.37e-08, + "overeducated": 4.37e-08, + "overlie": 4.37e-08, + "owd": 4.37e-08, + "oxidoreductase": 4.37e-08, + "panax": 4.37e-08, + "pastorally": 4.37e-08, + "pavo": 4.37e-08, + "pedder": 4.37e-08, + "pelias": 4.37e-08, + "persico": 4.37e-08, + "pewee": 4.37e-08, + "piquancy": 4.37e-08, + "placket": 4.37e-08, + "pleasurably": 4.37e-08, + "pleiotropic": 4.37e-08, + "plunderer": 4.37e-08, + "polygynous": 4.37e-08, + "pompon": 4.37e-08, + "potentilla": 4.37e-08, + "predaceous": 4.37e-08, + "prorogue": 4.37e-08, + "provender": 4.37e-08, + "prussic": 4.37e-08, + "psychoanalyze": 4.37e-08, + "pteranodon": 4.37e-08, + "punctate": 4.37e-08, + "puranic": 4.37e-08, + "quar": 4.37e-08, + "queasiness": 4.37e-08, + "quoin": 4.37e-08, + "rehouse": 4.37e-08, + "reim": 4.37e-08, + "relationally": 4.37e-08, + "resaca": 4.37e-08, + "resect": 4.37e-08, + "ricardian": 4.37e-08, + "riderless": 4.37e-08, + "riskless": 4.37e-08, + "ritualism": 4.37e-08, + "roadstead": 4.37e-08, + "romanic": 4.37e-08, + "ruing": 4.37e-08, + "runnable": 4.37e-08, + "salmonellosis": 4.37e-08, + "sassanian": 4.37e-08, + "scaliger": 4.37e-08, + "sekar": 4.37e-08, + "sensical": 4.37e-08, + "signally": 4.37e-08, + "singeing": 4.37e-08, + "sinistral": 4.37e-08, + "sisseton": 4.37e-08, + "skive": 4.37e-08, + "skookum": 4.37e-08, + "smither": 4.37e-08, + "societally": 4.37e-08, + "soldierly": 4.37e-08, + "songy": 4.37e-08, + "splotch": 4.37e-08, + "staminate": 4.37e-08, + "steelmaker": 4.37e-08, + "stipa": 4.37e-08, + "stirk": 4.37e-08, + "stria": 4.37e-08, + "subalgebra": 4.37e-08, + "suicidally": 4.37e-08, + "superheat": 4.37e-08, + "swink": 4.37e-08, + "syenite": 4.37e-08, + "syndromic": 4.37e-08, + "synovitis": 4.37e-08, + "tahsil": 4.37e-08, + "talma": 4.37e-08, + "tardigrade": 4.37e-08, + "tatting": 4.37e-08, + "taurean": 4.37e-08, + "thermae": 4.37e-08, + "thermoluminescence": 4.37e-08, + "thill": 4.37e-08, + "timeworn": 4.37e-08, + "tootle": 4.37e-08, + "topflight": 4.37e-08, + "transfrontier": 4.37e-08, + "trevally": 4.37e-08, + "triable": 4.37e-08, + "triggerfish": 4.37e-08, + "troopship": 4.37e-08, + "tuberose": 4.37e-08, + "tugger": 4.37e-08, + "unalterably": 4.37e-08, + "uncatchable": 4.37e-08, + "uncrossed": 4.37e-08, + "undisputable": 4.37e-08, + "unexpurgated": 4.37e-08, + "unmastered": 4.37e-08, + "unreasonableness": 4.37e-08, + "unregenerate": 4.37e-08, + "unscreened": 4.37e-08, + "unspotted": 4.37e-08, + "unstrung": 4.37e-08, + "unswervingly": 4.37e-08, + "unvisited": 4.37e-08, + "unwelcomed": 4.37e-08, + "upline": 4.37e-08, + "vaginoplasty": 4.37e-08, + "varlet": 4.37e-08, + "verdure": 4.37e-08, + "visigoth": 4.37e-08, + "wanner": 4.37e-08, + "warmness": 4.37e-08, + "woodworm": 4.37e-08, + "zoa": 4.37e-08, + "activeness": 4.27e-08, + "affa": 4.27e-08, + "affectivity": 4.27e-08, + "agglomerated": 4.27e-08, + "albite": 4.27e-08, + "alow": 4.27e-08, + "amadi": 4.27e-08, + "amazulu": 4.27e-08, + "antlered": 4.27e-08, + "apar": 4.27e-08, + "arrack": 4.27e-08, + "artilleryman": 4.27e-08, + "ashkenazic": 4.27e-08, + "astraea": 4.27e-08, + "authoress": 4.27e-08, + "avoirdupois": 4.27e-08, + "bahaullah": 4.27e-08, + "balata": 4.27e-08, + "balloonist": 4.27e-08, + "barer": 4.27e-08, + "barm": 4.27e-08, + "bawd": 4.27e-08, + "berean": 4.27e-08, + "bidar": 4.27e-08, + "bitt": 4.27e-08, + "bonang": 4.27e-08, + "bromeliad": 4.27e-08, + "bullheaded": 4.27e-08, + "bullit": 4.27e-08, + "bunted": 4.27e-08, + "bunyoro": 4.27e-08, + "burse": 4.27e-08, + "buteo": 4.27e-08, + "cardon": 4.27e-08, + "cassiterite": 4.27e-08, + "ceramist": 4.27e-08, + "chid": 4.27e-08, + "chiropodist": 4.27e-08, + "chlor": 4.27e-08, + "cofferdam": 4.27e-08, + "confederal": 4.27e-08, + "congresso": 4.27e-08, + "contango": 4.27e-08, + "corke": 4.27e-08, + "coxcomb": 4.27e-08, + "cueball": 4.27e-08, + "cummer": 4.27e-08, + "cusped": 4.27e-08, + "cuttle": 4.27e-08, + "dand": 4.27e-08, + "dearness": 4.27e-08, + "decumbent": 4.27e-08, + "dentary": 4.27e-08, + "describable": 4.27e-08, + "despairingly": 4.27e-08, + "detectability": 4.27e-08, + "dewlap": 4.27e-08, + "digressive": 4.27e-08, + "dinge": 4.27e-08, + "discomfiture": 4.27e-08, + "dishearten": 4.27e-08, + "disquisition": 4.27e-08, + "dode": 4.27e-08, + "dollface": 4.27e-08, + "druidism": 4.27e-08, + "duppy": 4.27e-08, + "eirene": 4.27e-08, + "emaciation": 4.27e-08, + "embroiderer": 4.27e-08, + "endogamous": 4.27e-08, + "enfilade": 4.27e-08, + "enfranchise": 4.27e-08, + "enlight": 4.27e-08, + "enow": 4.27e-08, + "epiphyte": 4.27e-08, + "equable": 4.27e-08, + "erythroid": 4.27e-08, + "estriol": 4.27e-08, + "executrix": 4.27e-08, + "experiencer": 4.27e-08, + "fathomless": 4.27e-08, + "fireweed": 4.27e-08, + "fixity": 4.27e-08, + "floristry": 4.27e-08, + "franconian": 4.27e-08, + "frequenter": 4.27e-08, + "galleried": 4.27e-08, + "gammer": 4.27e-08, + "gardened": 4.27e-08, + "gastrocnemius": 4.27e-08, + "gelignite": 4.27e-08, + "genially": 4.27e-08, + "geometer": 4.27e-08, + "germy": 4.27e-08, + "globule": 4.27e-08, + "glom": 4.27e-08, + "glop": 4.27e-08, + "gonococcal": 4.27e-08, + "goyle": 4.27e-08, + "grandnephew": 4.27e-08, + "gurt": 4.27e-08, + "haddo": 4.27e-08, + "harleian": 4.27e-08, + "hatbox": 4.27e-08, + "hatchway": 4.27e-08, + "henbane": 4.27e-08, + "heteroptera": 4.27e-08, + "hieron": 4.27e-08, + "histoplasmosis": 4.27e-08, + "honker": 4.27e-08, + "houseless": 4.27e-08, + "humpbacked": 4.27e-08, + "hymnody": 4.27e-08, + "hyperopia": 4.27e-08, + "hypospadias": 4.27e-08, + "ideality": 4.27e-08, + "imprecisely": 4.27e-08, + "inebriate": 4.27e-08, + "ineffably": 4.27e-08, + "infrequency": 4.27e-08, + "inkerman": 4.27e-08, + "inness": 4.27e-08, + "inroad": 4.27e-08, + "insecurely": 4.27e-08, + "insolently": 4.27e-08, + "insouciant": 4.27e-08, + "interoceanic": 4.27e-08, + "intersperse": 4.27e-08, + "isobutyl": 4.27e-08, + "jibber": 4.27e-08, + "knacker": 4.27e-08, + "lauric": 4.27e-08, + "leister": 4.27e-08, + "letch": 4.27e-08, + "levana": 4.27e-08, + "liard": 4.27e-08, + "lide": 4.27e-08, + "limbal": 4.27e-08, + "livonian": 4.27e-08, + "machiavellianism": 4.27e-08, + "makah": 4.27e-08, + "malleolus": 4.27e-08, + "mannerly": 4.27e-08, + "martensite": 4.27e-08, + "meader": 4.27e-08, + "meadowland": 4.27e-08, + "meggy": 4.27e-08, + "mezuzah": 4.27e-08, + "middy": 4.27e-08, + "milesian": 4.27e-08, + "milker": 4.27e-08, + "misfeasance": 4.27e-08, + "mohel": 4.27e-08, + "moki": 4.27e-08, + "moldable": 4.27e-08, + "monogenic": 4.27e-08, + "monotheist": 4.27e-08, + "nahua": 4.27e-08, + "nicomachean": 4.27e-08, + "nitration": 4.27e-08, + "nucleate": 4.27e-08, + "nuda": 4.27e-08, + "nymphomania": 4.27e-08, + "obbligato": 4.27e-08, + "occupationally": 4.27e-08, + "oddish": 4.27e-08, + "oolitic": 4.27e-08, + "osteoclast": 4.27e-08, + "outspokenly": 4.27e-08, + "overdubbed": 4.27e-08, + "packman": 4.27e-08, + "pank": 4.27e-08, + "paren": 4.27e-08, + "parmelia": 4.27e-08, + "passiflora": 4.27e-08, + "paster": 4.27e-08, + "patas": 4.27e-08, + "pentane": 4.27e-08, + "pentoxide": 4.27e-08, + "pepino": 4.27e-08, + "perilla": 4.27e-08, + "pessimistically": 4.27e-08, + "pharmacognosy": 4.27e-08, + "phlebitis": 4.27e-08, + "photosynthesize": 4.27e-08, + "picturesquely": 4.27e-08, + "planchette": 4.27e-08, + "polytheist": 4.27e-08, + "potboiler": 4.27e-08, + "premaxillary": 4.27e-08, + "presidentially": 4.27e-08, + "pyrophoric": 4.27e-08, + "quaestor": 4.27e-08, + "reclaimer": 4.27e-08, + "reconversion": 4.27e-08, + "reforest": 4.27e-08, + "rheostat": 4.27e-08, + "roughhousing": 4.27e-08, + "ruinously": 4.27e-08, + "sacker": 4.27e-08, + "sakyamuni": 4.27e-08, + "sandblast": 4.27e-08, + "sawbones": 4.27e-08, + "scena": 4.27e-08, + "sclerotia": 4.27e-08, + "scopa": 4.27e-08, + "scutellum": 4.27e-08, + "sensitiveness": 4.27e-08, + "sensorium": 4.27e-08, + "shrubland": 4.27e-08, + "silkie": 4.27e-08, + "singlehanded": 4.27e-08, + "sketcher": 4.27e-08, + "spatulate": 4.27e-08, + "spectroscope": 4.27e-08, + "spendable": 4.27e-08, + "squamosal": 4.27e-08, + "steppingstone": 4.27e-08, + "stoff": 4.27e-08, + "strew": 4.27e-08, + "stylet": 4.27e-08, + "subadult": 4.27e-08, + "subah": 4.27e-08, + "subapical": 4.27e-08, + "sublevel": 4.27e-08, + "summering": 4.27e-08, + "tappet": 4.27e-08, + "telegrapher": 4.27e-08, + "telluric": 4.27e-08, + "toroid": 4.27e-08, + "totting": 4.27e-08, + "towline": 4.27e-08, + "tramline": 4.27e-08, + "tret": 4.27e-08, + "trichoptera": 4.27e-08, + "trillionth": 4.27e-08, + "tropism": 4.27e-08, + "truffled": 4.27e-08, + "tweeze": 4.27e-08, + "unbaked": 4.27e-08, + "unbilled": 4.27e-08, + "unbinding": 4.27e-08, + "unclip": 4.27e-08, + "unconsidered": 4.27e-08, + "unfed": 4.27e-08, + "unliked": 4.27e-08, + "variegation": 4.27e-08, + "visayan": 4.27e-08, + "wandle": 4.27e-08, + "wheelman": 4.27e-08, + "whitewall": 4.27e-08, + "wonderfulness": 4.27e-08, + "xerostomia": 4.27e-08, + "yali": 4.27e-08, + "yaws": 4.27e-08, + "yohimbine": 4.27e-08, + "yquem": 4.27e-08, + "acher": 4.17e-08, + "acrimoniously": 4.17e-08, + "actuarially": 4.17e-08, + "afterworld": 4.17e-08, + "aldermanic": 4.17e-08, + "alyssum": 4.17e-08, + "ambuscade": 4.17e-08, + "appealable": 4.17e-08, + "arabinose": 4.17e-08, + "argive": 4.17e-08, + "arithmetically": 4.17e-08, + "arthralgia": 4.17e-08, + "arthropoda": 4.17e-08, + "ashrafi": 4.17e-08, + "asthenosphere": 4.17e-08, + "atmospherically": 4.17e-08, + "autograft": 4.17e-08, + "avestan": 4.17e-08, + "baganda": 4.17e-08, + "barbas": 1.78e-08, + "bason": 4.17e-08, + "beest": 4.17e-08, + "belleek": 4.17e-08, + "benefic": 4.17e-08, + "bespin": 4.17e-08, + "biogeographical": 4.17e-08, + "biphenyl": 4.17e-08, + "bittering": 4.17e-08, + "blepharitis": 4.17e-08, + "blowgun": 4.17e-08, + "boyishly": 4.17e-08, + "bracer": 4.17e-08, + "bracero": 4.17e-08, + "breezily": 4.17e-08, + "bristlecone": 4.17e-08, + "bungy": 4.17e-08, + "calk": 4.17e-08, + "chaga": 4.17e-08, + "chalybeate": 4.17e-08, + "cheekiness": 4.17e-08, + "chous": 4.17e-08, + "chrysotile": 4.17e-08, + "circumlocution": 4.17e-08, + "coater": 4.17e-08, + "coercively": 4.17e-08, + "conformably": 4.17e-08, + "congruous": 4.17e-08, + "connubial": 4.17e-08, + "convoke": 4.17e-08, + "corruptive": 4.17e-08, + "counterproposal": 4.17e-08, + "counterterror": 4.17e-08, + "cowgate": 4.17e-08, + "crankiness": 4.17e-08, + "crassula": 4.17e-08, + "cricoid": 4.17e-08, + "cubbyhole": 4.17e-08, + "cuir": 4.17e-08, + "cupidity": 4.17e-08, + "cusk": 4.17e-08, + "cutworm": 4.17e-08, + "deadness": 4.17e-08, + "deemer": 4.17e-08, + "defiler": 4.17e-08, + "deglaciation": 4.17e-08, + "delf": 4.17e-08, + "demoniac": 4.17e-08, + "depressor": 4.17e-08, + "deputize": 4.17e-08, + "derogate": 4.17e-08, + "desaturation": 4.17e-08, + "detestation": 4.17e-08, + "detraction": 4.17e-08, + "dextro": 4.17e-08, + "diacetate": 4.17e-08, + "diagenesis": 4.17e-08, + "diaphoretic": 4.17e-08, + "diathesis": 4.17e-08, + "disconcert": 4.17e-08, + "displacer": 4.17e-08, + "dissolvable": 4.17e-08, + "dreariness": 4.17e-08, + "dubonnet": 4.17e-08, + "dysarthria": 4.17e-08, + "echinoderm": 4.17e-08, + "eldership": 4.17e-08, + "embrasure": 4.17e-08, + "enucleation": 4.17e-08, + "ethmoid": 4.17e-08, + "evildoer": 4.17e-08, + "extraocular": 4.17e-08, + "fetlock": 4.17e-08, + "feudatory": 4.17e-08, + "findable": 4.17e-08, + "flypaper": 4.17e-08, + "followership": 4.17e-08, + "footway": 4.17e-08, + "formamide": 4.17e-08, + "formyl": 4.17e-08, + "furphy": 4.17e-08, + "galloper": 4.17e-08, + "gangue": 4.17e-08, + "gappy": 4.17e-08, + "geck": 4.17e-08, + "generall": 4.17e-08, + "genic": 4.17e-08, + "gimcrack": 4.17e-08, + "glady": 4.17e-08, + "glassine": 4.17e-08, + "gloving": 4.17e-08, + "grassing": 4.17e-08, + "hailer": 4.17e-08, + "hartal": 4.17e-08, + "hatless": 4.17e-08, + "hatti": 4.17e-08, + "headwaiter": 4.17e-08, + "herpetic": 4.17e-08, + "hohe": 4.17e-08, + "hotchpotch": 4.17e-08, + "howbeit": 4.17e-08, + "hyaena": 4.17e-08, + "ideogram": 4.17e-08, + "idolater": 4.17e-08, + "illuminatus": 4.17e-08, + "incontestably": 4.17e-08, + "insufflation": 4.17e-08, + "intelligibly": 4.17e-08, + "interatomic": 4.17e-08, + "ironbark": 4.17e-08, + "irrigator": 4.17e-08, + "isobar": 4.17e-08, + "italicize": 4.17e-08, + "jacare": 4.17e-08, + "jato": 4.17e-08, + "jotter": 4.17e-08, + "joviality": 4.17e-08, + "keek": 4.17e-08, + "kermanshah": 4.17e-08, + "kvass": 4.17e-08, + "lated": 4.17e-08, + "latently": 4.17e-08, + "lateralization": 4.17e-08, + "lavishness": 4.17e-08, + "lightless": 4.17e-08, + "lithological": 4.17e-08, + "loanword": 4.17e-08, + "lotter": 4.17e-08, + "lowborn": 4.17e-08, + "lumbosacral": 4.17e-08, + "lusher": 4.17e-08, + "mank": 4.17e-08, + "meadowsweet": 4.17e-08, + "metalworker": 4.17e-08, + "metaplasia": 4.17e-08, + "metronomic": 4.17e-08, + "mikie": 4.17e-08, + "misplacement": 4.17e-08, + "mixe": 4.17e-08, + "mixtec": 4.17e-08, + "monomania": 4.17e-08, + "morphia": 4.17e-08, + "myall": 4.17e-08, + "nonmagnetic": 4.17e-08, + "obligatorily": 4.17e-08, + "ogive": 4.17e-08, + "oncologic": 4.17e-08, + "organismic": 4.17e-08, + "outflanking": 4.17e-08, + "outshoot": 4.17e-08, + "overanalyze": 4.17e-08, + "overdosage": 4.17e-08, + "overdraw": 4.17e-08, + "pacifistic": 4.17e-08, + "pamunkey": 4.17e-08, + "parison": 4.17e-08, + "pastern": 4.17e-08, + "peccary": 4.17e-08, + "pedantically": 4.17e-08, + "peonage": 4.17e-08, + "peradventure": 4.17e-08, + "petiolate": 4.17e-08, + "phasic": 4.17e-08, + "physostigmine": 4.17e-08, + "picus": 4.17e-08, + "pietist": 4.17e-08, + "pinnace": 4.17e-08, + "pixilated": 4.17e-08, + "prajna": 4.17e-08, + "precocity": 4.17e-08, + "prefabrication": 4.17e-08, + "prepossessing": 4.17e-08, + "proa": 4.17e-08, + "prosecutable": 4.17e-08, + "pseudepigrapha": 4.17e-08, + "psychopathological": 4.17e-08, + "pulque": 4.17e-08, + "puru": 4.17e-08, + "pyrolytic": 4.17e-08, + "quaintness": 4.17e-08, + "questioningly": 4.17e-08, + "ramie": 4.17e-08, + "ramified": 4.17e-08, + "readmit": 4.17e-08, + "reappraise": 4.17e-08, + "repave": 4.17e-08, + "reskin": 4.17e-08, + "riprap": 4.17e-08, + "rusa": 4.17e-08, + "saccadic": 4.17e-08, + "sacheverell": 4.17e-08, + "salvelinus": 4.17e-08, + "scalene": 4.17e-08, + "secretaryship": 4.17e-08, + "serdar": 4.17e-08, + "serin": 4.17e-08, + "serration": 4.17e-08, + "shamble": 4.17e-08, + "shipload": 4.17e-08, + "slavonian": 4.17e-08, + "slub": 4.17e-08, + "snobbishness": 4.17e-08, + "sophronia": 4.17e-08, + "sousaphone": 4.17e-08, + "spathe": 4.17e-08, + "spean": 4.17e-08, + "spermatic": 4.17e-08, + "spinet": 4.17e-08, + "spital": 4.17e-08, + "sporran": 4.17e-08, + "starkness": 4.17e-08, + "stephanos": 4.17e-08, + "steri": 4.17e-08, + "sterically": 4.17e-08, + "stiffener": 4.17e-08, + "stilly": 4.17e-08, + "straka": 4.17e-08, + "struth": 4.17e-08, + "suber": 4.17e-08, + "superiorly": 4.17e-08, + "sureness": 4.17e-08, + "swelter": 4.17e-08, + "sympathomimetic": 4.17e-08, + "taraf": 4.17e-08, + "teakwood": 4.17e-08, + "teda": 4.17e-08, + "tenderize": 4.17e-08, + "tenpin": 4.17e-08, + "testamentum": 4.17e-08, + "thighbone": 4.17e-08, + "topographer": 4.17e-08, + "toraja": 4.17e-08, + "toxoid": 4.17e-08, + "trachyte": 4.17e-08, + "tribulus": 4.17e-08, + "tricker": 4.17e-08, + "trophoblast": 4.17e-08, + "tumescent": 4.17e-08, + "turonian": 4.17e-08, + "typha": 4.17e-08, + "unadventurous": 4.17e-08, + "unarguable": 4.17e-08, + "unclipped": 4.17e-08, + "unconscionably": 4.17e-08, + "underframe": 4.17e-08, + "underqualified": 4.17e-08, + "undervaluation": 4.17e-08, + "undramatic": 4.17e-08, + "unfermented": 4.17e-08, + "unloader": 4.17e-08, + "unown": 4.17e-08, + "unpretty": 4.17e-08, + "unreactive": 4.17e-08, + "untamable": 4.17e-08, + "vanquisher": 4.17e-08, + "vergence": 4.17e-08, + "virial": 4.17e-08, + "vocationally": 4.17e-08, + "westaway": 4.17e-08, + "willfulness": 4.17e-08, + "woebegone": 4.17e-08, + "wote": 4.17e-08, + "xanthomonas": 4.17e-08, + "abscessed": 4.07e-08, + "acetoacetate": 4.07e-08, + "acromion": 4.07e-08, + "adays": 4.07e-08, + "akaroa": 4.07e-08, + "alienable": 4.07e-08, + "alkyne": 4.07e-08, + "ambrosial": 4.07e-08, + "anteroposterior": 4.07e-08, + "apsidal": 4.07e-08, + "archimandrite": 4.07e-08, + "armlet": 4.07e-08, + "arsenite": 4.07e-08, + "asahel": 4.07e-08, + "aspectual": 4.07e-08, + "assuredness": 4.07e-08, + "autotrophic": 4.07e-08, + "avowal": 4.07e-08, + "babesia": 4.07e-08, + "backbreaker": 4.07e-08, + "barleycorn": 4.07e-08, + "beatus": 4.07e-08, + "bedazzle": 4.07e-08, + "beggarly": 4.07e-08, + "bigamous": 4.07e-08, + "biggish": 4.07e-08, + "bilabial": 4.07e-08, + "blanky": 4.07e-08, + "blubbery": 4.07e-08, + "bombyx": 4.07e-08, + "borsch": 4.07e-08, + "buist": 4.07e-08, + "burglarize": 4.07e-08, + "calcaneal": 4.07e-08, + "canonry": 4.07e-08, + "carefulness": 4.07e-08, + "caretta": 4.07e-08, + "carful": 4.07e-08, + "catholicos": 4.07e-08, + "centerboard": 4.07e-08, + "cetin": 4.07e-08, + "chafer": 4.07e-08, + "chazy": 4.07e-08, + "chesser": 4.07e-08, + "chiefest": 4.07e-08, + "chiquito": 4.07e-08, + "cisterna": 4.07e-08, + "cloacal": 4.07e-08, + "coiner": 4.07e-08, + "concretion": 4.07e-08, + "conto": 4.07e-08, + "conure": 4.07e-08, + "corrigendum": 4.07e-08, + "cosmogenic": 4.07e-08, + "craftwork": 4.07e-08, + "crocodilian": 4.07e-08, + "crookedness": 4.07e-08, + "damnably": 4.07e-08, + "daven": 4.07e-08, + "daza": 4.07e-08, + "decipherable": 4.07e-08, + "deictic": 4.07e-08, + "deplane": 4.07e-08, + "deplorably": 4.07e-08, + "despicably": 4.07e-08, + "discontinuously": 4.07e-08, + "disulphide": 4.07e-08, + "dormition": 4.07e-08, + "draftsmanship": 4.07e-08, + "dysphonia": 4.07e-08, + "echeveria": 4.07e-08, + "enclitic": 4.07e-08, + "epigrammatic": 4.07e-08, + "epithelioid": 4.07e-08, + "espousal": 4.07e-08, + "evaluable": 4.07e-08, + "extrapyramidal": 4.07e-08, + "facilitative": 4.07e-08, + "ferromagnetism": 4.07e-08, + "fisherfolk": 4.07e-08, + "flagellar": 4.07e-08, + "florinda": 4.07e-08, + "footless": 4.07e-08, + "forb": 4.07e-08, + "fornix": 4.07e-08, + "foveal": 4.07e-08, + "frim": 4.07e-08, + "fulmar": 4.07e-08, + "furner": 4.07e-08, + "gamy": 4.07e-08, + "garfish": 4.07e-08, + "gliadin": 4.07e-08, + "glomerulus": 4.07e-08, + "glyceryl": 4.07e-08, + "golo": 4.07e-08, + "gouger": 4.07e-08, + "greatcoat": 4.07e-08, + "griller": 4.07e-08, + "guidon": 4.07e-08, + "gunrunning": 4.07e-08, + "haec": 4.07e-08, + "halation": 4.07e-08, + "halling": 4.07e-08, + "halloo": 4.07e-08, + "handgrip": 4.07e-08, + "hatting": 4.07e-08, + "helvetic": 4.07e-08, + "hemoptysis": 4.07e-08, + "hemothorax": 4.07e-08, + "heterotopic": 4.07e-08, + "heuristically": 4.07e-08, + "hummock": 4.07e-08, + "hyperbolically": 4.07e-08, + "ideologist": 4.07e-08, + "illumine": 4.07e-08, + "indeterminable": 4.07e-08, + "interlanguage": 4.07e-08, + "intermodulation": 4.07e-08, + "inventively": 4.07e-08, + "invigilator": 4.07e-08, + "keld": 4.07e-08, + "knap": 4.07e-08, + "kral": 4.07e-08, + "kurus": 4.07e-08, + "laet": 4.07e-08, + "lagna": 4.07e-08, + "lambent": 4.07e-08, + "lanao": 4.07e-08, + "laryngoscopy": 4.07e-08, + "lask": 4.07e-08, + "leuk": 4.07e-08, + "lightheartedness": 4.07e-08, + "litz": 4.07e-08, + "lochan": 4.07e-08, + "longan": 4.07e-08, + "lubricity": 4.07e-08, + "lucania": 4.07e-08, + "maccabean": 4.07e-08, + "majorcan": 4.07e-08, + "martensitic": 4.07e-08, + "masseter": 4.07e-08, + "matchlock": 4.07e-08, + "mechanist": 4.07e-08, + "memorialization": 4.07e-08, + "merope": 4.07e-08, + "mesophilic": 4.07e-08, + "millpond": 4.07e-08, + "mindlessness": 4.07e-08, + "mismanage": 4.07e-08, + "monochromator": 4.07e-08, + "moppet": 4.07e-08, + "muggins": 4.07e-08, + "muscovado": 4.07e-08, + "myotonic": 4.07e-08, + "myxomatosis": 4.07e-08, + "nauseatingly": 4.07e-08, + "navvy": 4.07e-08, + "negativism": 4.07e-08, + "neorealism": 4.07e-08, + "nici": 4.07e-08, + "nonselective": 4.07e-08, + "nymphal": 4.07e-08, + "odalisque": 4.07e-08, + "odontogenic": 4.07e-08, + "oilcloth": 4.07e-08, + "oner": 4.07e-08, + "ontarian": 4.07e-08, + "osmanthus": 4.07e-08, + "outskirt": 4.07e-08, + "overcrowd": 4.07e-08, + "overvoltage": 4.07e-08, + "paintbox": 4.07e-08, + "palay": 4.07e-08, + "paleobiology": 4.07e-08, + "papio": 4.07e-08, + "paspalum": 4.07e-08, + "passiveness": 4.07e-08, + "pelagian": 4.07e-08, + "perfector": 4.07e-08, + "periosteal": 4.07e-08, + "phalaris": 4.07e-08, + "photogravure": 4.07e-08, + "pickman": 4.07e-08, + "pilferage": 4.07e-08, + "pilocarpine": 4.07e-08, + "pinny": 4.07e-08, + "piperidine": 4.07e-08, + "plucker": 4.07e-08, + "pome": 4.07e-08, + "posthaste": 4.07e-08, + "potamogeton": 4.07e-08, + "preconstruction": 4.07e-08, + "preoptic": 4.07e-08, + "preregistration": 4.07e-08, + "presentiment": 4.07e-08, + "pruner": 4.07e-08, + "psychographic": 4.07e-08, + "puppetmaster": 4.07e-08, + "purvey": 4.07e-08, + "queendom": 4.07e-08, + "querulous": 4.07e-08, + "raia": 4.07e-08, + "ranter": 4.07e-08, + "ranty": 4.07e-08, + "rapscallion": 4.07e-08, + "rase": 4.07e-08, + "recompression": 4.07e-08, + "reflectively": 4.07e-08, + "remonstrating": 4.07e-08, + "repp": 4.07e-08, + "rhodope": 4.07e-08, + "ringlet": 4.07e-08, + "robing": 4.07e-08, + "roquette": 4.07e-08, + "rowdiness": 4.07e-08, + "ruga": 4.07e-08, + "salesroom": 4.07e-08, + "sallee": 4.07e-08, + "salvor": 4.07e-08, + "sclerotized": 4.07e-08, + "scrabbled": 4.07e-08, + "scratchcard": 4.07e-08, + "seah": 4.07e-08, + "sealskin": 4.07e-08, + "semitransparent": 4.07e-08, + "serologic": 4.07e-08, + "sheave": 4.07e-08, + "sideway": 4.07e-08, + "silyl": 4.07e-08, + "sinuate": 4.07e-08, + "sirdar": 4.07e-08, + "snaggletooth": 4.07e-08, + "snouted": 4.07e-08, + "somewheres": 4.07e-08, + "sorbate": 4.07e-08, + "spanker": 4.07e-08, + "spookily": 4.07e-08, + "stalky": 4.07e-08, + "streetside": 4.07e-08, + "stylebook": 4.07e-08, + "sundew": 4.07e-08, + "tapis": 4.07e-08, + "taur": 4.07e-08, + "telic": 4.07e-08, + "temenos": 4.07e-08, + "toiler": 4.07e-08, + "toxicant": 4.07e-08, + "trackman": 4.07e-08, + "trag": 4.07e-08, + "unconsummated": 4.07e-08, + "unfortified": 4.07e-08, + "unobservant": 4.07e-08, + "unpicked": 4.07e-08, + "unquoted": 4.07e-08, + "unskillful": 4.07e-08, + "upo": 4.07e-08, + "vesture": 4.07e-08, + "villous": 4.07e-08, + "voet": 4.07e-08, + "vuln": 4.07e-08, + "whooper": 4.07e-08, + "whup": 4.07e-08, + "wust": 4.07e-08, + "zounds": 4.07e-08, + "zygotic": 4.07e-08, + "aaronic": 3.98e-08, + "acceptation": 3.98e-08, + "achillea": 3.98e-08, + "acylation": 3.98e-08, + "adiabatically": 3.98e-08, + "advocation": 3.98e-08, + "aerially": 3.98e-08, + "agaric": 3.98e-08, + "agrostis": 3.98e-08, + "akamatsu": 3.98e-08, + "ampulla": 3.98e-08, + "anointment": 3.98e-08, + "antifouling": 3.98e-08, + "aranea": 3.98e-08, + "archipelagic": 3.98e-08, + "artemia": 3.98e-08, + "assignor": 3.98e-08, + "astir": 3.98e-08, + "athanasian": 3.98e-08, + "atriplex": 3.98e-08, + "audibility": 3.98e-08, + "aurorae": 3.98e-08, + "austerely": 3.98e-08, + "ayin": 3.98e-08, + "babyhood": 3.98e-08, + "bastardy": 3.98e-08, + "bayed": 3.98e-08, + "beachcombing": 3.98e-08, + "bentwood": 3.98e-08, + "betimes": 3.98e-08, + "biddable": 3.98e-08, + "biedermeier": 3.98e-08, + "birefringent": 3.98e-08, + "blackstrap": 3.98e-08, + "bodge": 3.98e-08, + "bonapartist": 3.98e-08, + "brigandage": 3.98e-08, + "brills": 1.17e-08, + "brokenly": 3.98e-08, + "bryozoan": 3.98e-08, + "calix": 3.98e-08, + "canidae": 3.98e-08, + "cappie": 3.98e-08, + "carlina": 3.98e-08, + "chartism": 3.98e-08, + "chauth": 3.98e-08, + "chorion": 3.98e-08, + "cingulum": 3.98e-08, + "cly": 3.98e-08, + "coastwise": 3.98e-08, + "combativeness": 3.98e-08, + "combinational": 3.98e-08, + "comitia": 3.98e-08, + "compendia": 3.98e-08, + "conehead": 3.98e-08, + "congregant": 3.98e-08, + "contravariant": 3.98e-08, + "corporative": 3.98e-08, + "corrupter": 3.98e-08, + "corticospinal": 3.98e-08, + "countrified": 3.98e-08, + "crawdad": 3.98e-08, + "crotalus": 3.98e-08, + "cryostat": 3.98e-08, + "cucurbita": 3.98e-08, + "cuneate": 3.98e-08, + "cylindrically": 3.98e-08, + "dabber": 3.98e-08, + "damiana": 3.98e-08, + "debarment": 3.98e-08, + "decreasingly": 3.98e-08, + "definer": 3.98e-08, + "dendrochronology": 3.98e-08, + "deneb": 3.98e-08, + "deuteron": 3.98e-08, + "diadema": 3.98e-08, + "diametric": 3.98e-08, + "discursively": 3.98e-08, + "disintegrator": 3.98e-08, + "dunt": 3.98e-08, + "dystrophic": 3.98e-08, + "eclogue": 3.98e-08, + "enterocolitis": 3.98e-08, + "enthral": 3.98e-08, + "enumerative": 3.98e-08, + "epicondyle": 3.98e-08, + "epistaxis": 3.98e-08, + "equites": 3.98e-08, + "euryale": 3.98e-08, + "eurystheus": 3.98e-08, + "explicitness": 3.98e-08, + "explorable": 3.98e-08, + "faddish": 3.98e-08, + "faithlessness": 3.98e-08, + "falcones": 3.98e-08, + "farsightedness": 3.98e-08, + "fatefully": 3.98e-08, + "featherless": 3.98e-08, + "feudalistic": 3.98e-08, + "fictionally": 3.98e-08, + "fionnuala": 3.98e-08, + "flakiness": 3.98e-08, + "floria": 3.98e-08, + "flouncing": 3.98e-08, + "fluky": 3.98e-08, + "forbearing": 3.98e-08, + "fundi": 3.98e-08, + "funt": 3.98e-08, + "gourami": 3.98e-08, + "gradus": 3.98e-08, + "graffito": 3.98e-08, + "grig": 3.98e-08, + "guanaco": 3.98e-08, + "hainanese": 3.98e-08, + "hawser": 3.98e-08, + "hepatoma": 3.98e-08, + "hidatsa": 3.98e-08, + "hogweed": 3.98e-08, + "holyday": 3.98e-08, + "hornish": 3.98e-08, + "hymenium": 3.98e-08, + "ileus": 3.98e-08, + "importunate": 3.98e-08, + "irishwoman": 3.98e-08, + "isleta": 3.98e-08, + "isobutane": 3.98e-08, + "isomerism": 3.98e-08, + "isometry": 3.98e-08, + "jabberwock": 3.98e-08, + "jackbox": 3.98e-08, + "journalistically": 3.98e-08, + "jurat": 3.98e-08, + "khitan": 3.98e-08, + "kildee": 3.98e-08, + "koff": 3.98e-08, + "lango": 3.98e-08, + "latah": 3.98e-08, + "latona": 3.98e-08, + "laurus": 3.98e-08, + "leptospira": 3.98e-08, + "linne": 3.98e-08, + "loverly": 3.98e-08, + "lubricator": 3.98e-08, + "luganda": 3.98e-08, + "malvasia": 3.98e-08, + "marabout": 3.98e-08, + "melodica": 3.98e-08, + "mesentery": 3.98e-08, + "miffy": 3.98e-08, + "mischaracterization": 3.98e-08, + "mitis": 3.98e-08, + "monkshood": 3.98e-08, + "moonlighted": 3.98e-08, + "muscadine": 3.98e-08, + "myelopathy": 3.98e-08, + "narcissi": 3.98e-08, + "noncitizen": 3.98e-08, + "nonfamily": 3.98e-08, + "nymphaea": 3.98e-08, + "oloroso": 3.98e-08, + "otorhinolaryngology": 3.98e-08, + "palmy": 3.98e-08, + "palynology": 3.98e-08, + "paraformaldehyde": 3.98e-08, + "parthenogenetic": 3.98e-08, + "particularism": 3.98e-08, + "passkey": 3.98e-08, + "pelagianism": 3.98e-08, + "pellucid": 3.98e-08, + "pharmaceutically": 3.98e-08, + "phylon": 3.98e-08, + "piercingly": 3.98e-08, + "pietistic": 3.98e-08, + "posset": 3.98e-08, + "pothos": 3.98e-08, + "premedical": 3.98e-08, + "primitivist": 3.98e-08, + "primly": 3.98e-08, + "pseudotsuga": 3.98e-08, + "pyelonephritis": 3.98e-08, + "pygidium": 3.98e-08, + "queller": 3.98e-08, + "rammy": 3.98e-08, + "reinstallation": 3.98e-08, + "reinstitute": 3.98e-08, + "reseed": 3.98e-08, + "restauration": 3.98e-08, + "rhyolitic": 3.98e-08, + "rotch": 3.98e-08, + "sambucus": 3.98e-08, + "sanderling": 3.98e-08, + "sardonyx": 3.98e-08, + "sattva": 3.98e-08, + "scatterbrain": 3.98e-08, + "schlieren": 3.98e-08, + "scient": 3.98e-08, + "sciurus": 3.98e-08, + "scry": 3.98e-08, + "secularity": 3.98e-08, + "seraphine": 3.98e-08, + "sharable": 3.98e-08, + "shebeen": 3.98e-08, + "shool": 3.98e-08, + "shopworn": 3.98e-08, + "sidewise": 3.98e-08, + "silicide": 3.98e-08, + "sorbus": 3.98e-08, + "sostenuto": 3.98e-08, + "spawner": 3.98e-08, + "spectrographic": 3.98e-08, + "sporter": 3.98e-08, + "standardbred": 3.98e-08, + "stereotypic": 3.98e-08, + "stingless": 3.98e-08, + "stochastically": 3.98e-08, + "stocktaking": 3.98e-08, + "straightly": 3.98e-08, + "substitutionary": 3.98e-08, + "subtenant": 3.98e-08, + "suppertime": 3.98e-08, + "survivalism": 3.98e-08, + "swapper": 3.98e-08, + "syllogistic": 3.98e-08, + "symptomatically": 3.98e-08, + "syndicator": 3.98e-08, + "sypher": 3.98e-08, + "telegenic": 3.98e-08, + "temptingly": 3.98e-08, + "thereat": 3.98e-08, + "thermostatically": 3.98e-08, + "tinsmith": 3.98e-08, + "toolroom": 3.98e-08, + "torero": 3.98e-08, + "toyman": 3.98e-08, + "tramcar": 3.98e-08, + "transmogrification": 3.98e-08, + "traumatology": 3.98e-08, + "trematode": 3.98e-08, + "trepanation": 3.98e-08, + "trousered": 3.98e-08, + "unaccented": 3.98e-08, + "uncommercial": 3.98e-08, + "unconstructive": 3.98e-08, + "unhallowed": 3.98e-08, + "untestable": 3.98e-08, + "varan": 3.98e-08, + "vectorial": 3.98e-08, + "villus": 3.98e-08, + "vindictively": 3.98e-08, + "virological": 3.98e-08, + "voracity": 3.98e-08, + "wakan": 3.98e-08, + "wantonness": 3.98e-08, + "wheedling": 3.98e-08, + "whiffle": 3.98e-08, + "whin": 3.98e-08, + "whitecap": 3.98e-08, + "wicken": 3.98e-08, + "windigo": 3.98e-08, + "wolfish": 3.98e-08, + "zenaida": 3.98e-08, + "abjection": 3.89e-08, + "adown": 3.89e-08, + "affectively": 3.89e-08, + "agust": 3.89e-08, + "albuminuria": 3.89e-08, + "alcyone": 3.89e-08, + "altimetry": 3.89e-08, + "animality": 3.89e-08, + "annet": 3.89e-08, + "annuitant": 3.89e-08, + "apocryphon": 3.89e-08, + "appositive": 3.89e-08, + "ataraxia": 3.89e-08, + "auxilium": 3.89e-08, + "babul": 3.89e-08, + "bacitracin": 3.89e-08, + "barky": 3.89e-08, + "berberine": 3.89e-08, + "biri": 3.89e-08, + "blench": 3.89e-08, + "bluestocking": 3.89e-08, + "bodiless": 3.89e-08, + "brazenness": 3.89e-08, + "breacher": 3.89e-08, + "bukidnon": 3.89e-08, + "bunchy": 3.89e-08, + "capitulum": 3.89e-08, + "caractacus": 3.89e-08, + "carboy": 3.89e-08, + "casula": 3.89e-08, + "catkin": 3.89e-08, + "cistus": 3.89e-08, + "clayman": 3.89e-08, + "collagenous": 3.89e-08, + "comprehensibility": 3.89e-08, + "confiscatory": 3.89e-08, + "congruency": 3.89e-08, + "connotative": 3.89e-08, + "croisette": 3.89e-08, + "cruce": 3.89e-08, + "customhouse": 3.89e-08, + "cyma": 3.89e-08, + "cynodon": 3.89e-08, + "cyprinus": 3.89e-08, + "deamination": 3.89e-08, + "deferent": 3.89e-08, + "delian": 3.89e-08, + "delict": 3.89e-08, + "demineralization": 3.89e-08, + "deodorizer": 3.89e-08, + "diethylstilbestrol": 3.89e-08, + "disposability": 3.89e-08, + "distain": 3.89e-08, + "dongola": 3.89e-08, + "dooly": 3.89e-08, + "downstroke": 3.89e-08, + "driftless": 3.89e-08, + "dripper": 3.89e-08, + "duiker": 3.89e-08, + "dunnage": 3.89e-08, + "ecclesiasticus": 3.89e-08, + "ecuadoran": 3.89e-08, + "embryologist": 3.89e-08, + "engineman": 3.89e-08, + "enteropathy": 3.89e-08, + "enumerator": 3.89e-08, + "ephod": 3.89e-08, + "epizootic": 3.89e-08, + "eral": 3.89e-08, + "escolar": 3.89e-08, + "essene": 3.89e-08, + "evangelium": 3.89e-08, + "execration": 3.89e-08, + "fally": 3.89e-08, + "fancifully": 3.89e-08, + "feil": 3.89e-08, + "felly": 3.89e-08, + "firecrest": 3.89e-08, + "fishhooks": 3.89e-08, + "floodlighting": 3.89e-08, + "fluoroscopic": 3.89e-08, + "forkful": 3.89e-08, + "frogged": 3.89e-08, + "frother": 3.89e-08, + "glowworm": 3.89e-08, + "goggled": 3.89e-08, + "governmentally": 3.89e-08, + "handwrite": 3.89e-08, + "hangdog": 3.89e-08, + "harmonizer": 3.89e-08, + "harpsichordist": 3.89e-08, + "hatefully": 3.89e-08, + "hatefulness": 3.89e-08, + "heder": 3.89e-08, + "hiatal": 3.89e-08, + "hierarchic": 3.89e-08, + "hindmost": 3.89e-08, + "honoraria": 3.89e-08, + "hordeum": 3.89e-08, + "hydronephrosis": 3.89e-08, + "imbricate": 3.89e-08, + "imperatively": 3.89e-08, + "impersonally": 3.89e-08, + "incise": 3.89e-08, + "inflexibly": 3.89e-08, + "irrepressibly": 3.89e-08, + "irresolvable": 3.89e-08, + "ither": 3.89e-08, + "janissary": 3.89e-08, + "jointure": 3.89e-08, + "kanara": 3.89e-08, + "katun": 3.89e-08, + "khoja": 3.89e-08, + "kinescope": 3.89e-08, + "kwakiutl": 3.89e-08, + "lagopus": 3.89e-08, + "lathyrus": 3.89e-08, + "leguminosae": 3.89e-08, + "linkable": 3.89e-08, + "lipogenesis": 3.89e-08, + "liposarcoma": 3.89e-08, + "llandeilo": 3.89e-08, + "lobar": 3.89e-08, + "loukas": 3.89e-08, + "lyonnaise": 3.89e-08, + "macroevolution": 3.89e-08, + "madelon": 3.89e-08, + "madia": 3.89e-08, + "maladjustment": 3.89e-08, + "mauger": 3.89e-08, + "mechanize": 3.89e-08, + "mesodermal": 3.89e-08, + "meticulousness": 3.89e-08, + "micropenis": 3.89e-08, + "moistness": 3.89e-08, + "momus": 3.89e-08, + "monkish": 3.89e-08, + "monocultural": 3.89e-08, + "monomial": 3.89e-08, + "monstrance": 3.89e-08, + "moonscape": 3.89e-08, + "mullein": 3.89e-08, + "multiform": 3.89e-08, + "mycosis": 3.89e-08, + "myocyte": 3.89e-08, + "nataraja": 3.89e-08, + "necromantic": 3.89e-08, + "neighborliness": 3.89e-08, + "nepheline": 3.89e-08, + "nerine": 3.89e-08, + "nevel": 3.89e-08, + "noctuidae": 3.89e-08, + "noser": 3.89e-08, + "nottoway": 3.89e-08, + "oared": 3.89e-08, + "oestrus": 3.89e-08, + "omentum": 3.89e-08, + "onchocerciasis": 3.89e-08, + "outvote": 3.89e-08, + "overambitious": 3.89e-08, + "oversoul": 3.89e-08, + "pahari": 3.89e-08, + "palliation": 3.89e-08, + "palmate": 3.89e-08, + "pandal": 3.89e-08, + "panspermia": 3.89e-08, + "partaker": 3.89e-08, + "pavane": 3.89e-08, + "personalism": 3.89e-08, + "phonogram": 3.89e-08, + "pickaway": 3.89e-08, + "picric": 3.89e-08, + "pien": 3.89e-08, + "pileus": 3.89e-08, + "pippy": 3.89e-08, + "pizzle": 3.89e-08, + "pleasantry": 3.89e-08, + "pottle": 3.89e-08, + "practic": 3.89e-08, + "prandial": 3.89e-08, + "precedential": 3.89e-08, + "preconditioned": 3.89e-08, + "priding": 3.89e-08, + "principalship": 3.89e-08, + "propertied": 3.89e-08, + "psychokinetic": 3.89e-08, + "punitively": 3.89e-08, + "purposefulness": 3.89e-08, + "quartette": 3.89e-08, + "quern": 3.89e-08, + "reinvigoration": 3.89e-08, + "renovator": 3.89e-08, + "replevin": 3.89e-08, + "resistible": 3.89e-08, + "ricinus": 3.89e-08, + "roust": 3.89e-08, + "russophobia": 3.89e-08, + "salal": 3.89e-08, + "salvific": 3.89e-08, + "sandhi": 3.89e-08, + "sassenach": 3.89e-08, + "scabbed": 3.89e-08, + "scandia": 3.89e-08, + "scrofula": 3.89e-08, + "scrunchy": 3.89e-08, + "scute": 3.89e-08, + "sederunt": 3.89e-08, + "sinisterly": 3.89e-08, + "skirmisher": 3.89e-08, + "slighty": 3.89e-08, + "snowsuit": 3.89e-08, + "sonatina": 3.89e-08, + "sough": 3.89e-08, + "spellbinder": 3.89e-08, + "sproat": 3.89e-08, + "squashy": 3.89e-08, + "staab": 3.89e-08, + "striga": 3.89e-08, + "submucosal": 3.89e-08, + "sull": 3.89e-08, + "supervisorial": 3.89e-08, + "tabler": 3.89e-08, + "tactility": 3.89e-08, + "tallit": 3.89e-08, + "tallness": 3.89e-08, + "tean": 3.89e-08, + "tediousness": 3.89e-08, + "tertia": 3.89e-08, + "thickset": 3.89e-08, + "tiddler": 3.89e-08, + "tige": 3.89e-08, + "tillandsia": 3.89e-08, + "towboat": 3.89e-08, + "trichomoniasis": 3.89e-08, + "triclinic": 3.89e-08, + "trihydrate": 3.89e-08, + "trimethylamine": 3.89e-08, + "turbopump": 3.89e-08, + "twirler": 3.89e-08, + "unchaste": 3.89e-08, + "unchurched": 3.89e-08, + "undecipherable": 3.89e-08, + "undiplomatic": 3.89e-08, + "unhatched": 3.89e-08, + "unmarketable": 3.89e-08, + "unphysical": 3.89e-08, + "unsafely": 3.89e-08, + "unsubstantial": 3.89e-08, + "unthought": 3.89e-08, + "untwist": 3.89e-08, + "upstroke": 3.89e-08, + "vacationer": 3.89e-08, + "vanir": 3.89e-08, + "verd": 3.89e-08, + "verifiability": 3.89e-08, + "verruca": 3.89e-08, + "wandy": 3.89e-08, + "waspish": 3.89e-08, + "waterer": 3.89e-08, + "wattled": 3.89e-08, + "waylay": 3.89e-08, + "workless": 3.89e-08, + "wrister": 3.89e-08, + "yardarm": 3.89e-08, + "yook": 3.89e-08, + "zeist": 3.89e-08, + "zoomorphic": 3.89e-08, + "abey": 3.8e-08, + "agglutinative": 3.8e-08, + "akeley": 3.8e-08, + "alizarin": 3.8e-08, + "allocution": 3.8e-08, + "alvina": 3.8e-08, + "amphitrite": 3.8e-08, + "annelid": 3.8e-08, + "anomia": 3.8e-08, + "anthroposophy": 3.8e-08, + "antipope": 3.8e-08, + "antrum": 3.8e-08, + "argillite": 3.8e-08, + "arizonan": 3.8e-08, + "ascender": 3.8e-08, + "atka": 3.8e-08, + "aurignacian": 3.8e-08, + "autoantibody": 3.8e-08, + "babish": 3.8e-08, + "barkeeper": 3.8e-08, + "bawn": 3.8e-08, + "bedel": 3.8e-08, + "bilo": 3.8e-08, + "biogenetic": 3.8e-08, + "bisector": 3.8e-08, + "blazingly": 3.8e-08, + "bluejacket": 3.8e-08, + "buhr": 3.8e-08, + "bunyip": 3.8e-08, + "burny": 3.8e-08, + "capitular": 3.8e-08, + "castoff": 3.8e-08, + "catchiness": 3.8e-08, + "certifier": 3.8e-08, + "chab": 3.8e-08, + "chessman": 3.8e-08, + "chypre": 3.8e-08, + "cinnamic": 3.8e-08, + "cise": 3.8e-08, + "coachwork": 3.8e-08, + "coati": 3.8e-08, + "commissure": 3.8e-08, + "conchology": 3.8e-08, + "concreteness": 3.8e-08, + "contrabass": 3.8e-08, + "coonskin": 3.8e-08, + "corbeil": 3.8e-08, + "corer": 3.8e-08, + "corkboard": 3.8e-08, + "covenanter": 3.8e-08, + "crampy": 3.8e-08, + "cumulate": 3.8e-08, + "cuticular": 3.8e-08, + "daube": 3.8e-08, + "daubing": 3.8e-08, + "decompensation": 3.8e-08, + "decomposable": 3.8e-08, + "deerstalker": 3.8e-08, + "dehumidification": 3.8e-08, + "demilitarize": 3.8e-08, + "despoil": 3.8e-08, + "dhole": 3.8e-08, + "disproof": 3.8e-08, + "distractingly": 3.8e-08, + "dottore": 3.8e-08, + "dungaree": 3.8e-08, + "edibility": 3.8e-08, + "ephialtes": 3.8e-08, + "euterpe": 3.8e-08, + "evolvement": 3.8e-08, + "exogamy": 3.8e-08, + "faille": 3.8e-08, + "fauve": 3.8e-08, + "festal": 3.8e-08, + "filmstrip": 3.8e-08, + "flatteringly": 3.8e-08, + "fluellen": 3.8e-08, + "fluorspar": 3.8e-08, + "flyboy": 3.8e-08, + "frazzle": 3.8e-08, + "fricassee": 3.8e-08, + "fuzzball": 3.8e-08, + "garishly": 3.8e-08, + "gelada": 3.8e-08, + "gesticulate": 3.8e-08, + "goalmouth": 3.8e-08, + "graininess": 3.8e-08, + "gratifyingly": 3.8e-08, + "gunsmithing": 3.8e-08, + "gutterman": 3.8e-08, + "hache": 3.8e-08, + "handclap": 3.8e-08, + "haslet": 3.8e-08, + "heaver": 3.8e-08, + "holdback": 3.8e-08, + "huse": 3.8e-08, + "iapetus": 3.8e-08, + "ignitor": 3.8e-08, + "impalpable": 3.8e-08, + "inapt": 3.8e-08, + "inauthenticity": 3.8e-08, + "incautious": 3.8e-08, + "incommensurable": 3.8e-08, + "innocuously": 3.8e-08, + "integrability": 3.8e-08, + "interpenetration": 3.8e-08, + "intraperitoneally": 3.8e-08, + "iten": 3.8e-08, + "jansenism": 3.8e-08, + "jilt": 3.8e-08, + "jumba": 3.8e-08, + "junking": 3.8e-08, + "kalmia": 3.8e-08, + "kamas": 3.8e-08, + "kasher": 3.8e-08, + "kenning": 3.8e-08, + "knop": 3.8e-08, + "koruna": 3.8e-08, + "lactuca": 3.8e-08, + "lamping": 3.8e-08, + "lastingly": 3.8e-08, + "lemurian": 3.8e-08, + "lobule": 3.8e-08, + "lunger": 3.8e-08, + "lustfully": 3.8e-08, + "magnesian": 3.8e-08, + "mallus": 3.8e-08, + "maranta": 3.8e-08, + "marwari": 3.8e-08, + "medlar": 3.8e-08, + "mestiza": 3.8e-08, + "misgiving": 3.8e-08, + "mogador": 3.8e-08, + "monatomic": 3.8e-08, + "monopolar": 3.8e-08, + "montu": 3.8e-08, + "murrelet": 3.8e-08, + "mussy": 3.8e-08, + "myometrium": 3.8e-08, + "myrmidon": 3.8e-08, + "neap": 3.8e-08, + "noctilucent": 3.8e-08, + "nonclinical": 3.8e-08, + "nonporous": 3.8e-08, + "oolite": 3.8e-08, + "ostrea": 3.8e-08, + "outturn": 3.8e-08, + "paintable": 3.8e-08, + "pandita": 3.8e-08, + "parliamentarism": 3.8e-08, + "parvenu": 3.8e-08, + "pattee": 3.8e-08, + "pecten": 3.8e-08, + "pennon": 3.8e-08, + "perfectness": 3.8e-08, + "perianal": 3.8e-08, + "periplus": 3.8e-08, + "petrification": 3.8e-08, + "phalarope": 3.8e-08, + "pianola": 3.8e-08, + "pilau": 3.8e-08, + "pisum": 3.8e-08, + "plagal": 3.8e-08, + "polysemy": 3.8e-08, + "poncelet": 3.8e-08, + "popularizer": 3.8e-08, + "possessory": 3.8e-08, + "posterolateral": 3.8e-08, + "praetorium": 3.8e-08, + "prejudgment": 3.8e-08, + "presciently": 3.8e-08, + "pression": 3.8e-08, + "prevaricate": 3.8e-08, + "procaine": 3.8e-08, + "protectress": 3.8e-08, + "pudu": 3.8e-08, + "puggle": 3.8e-08, + "quirt": 3.8e-08, + "raggedly": 3.8e-08, + "raggy": 3.8e-08, + "recognizer": 3.8e-08, + "recoverability": 3.8e-08, + "reducibility": 3.8e-08, + "rhetor": 3.8e-08, + "rhizobium": 3.8e-08, + "ringe": 3.8e-08, + "ropp": 3.8e-08, + "rudbeckia": 3.8e-08, + "sailplane": 3.8e-08, + "saponin": 3.8e-08, + "scenography": 3.8e-08, + "scolex": 3.8e-08, + "sempiternal": 3.8e-08, + "settlor": 3.8e-08, + "shadowbox": 3.8e-08, + "shippo": 3.8e-08, + "sibilance": 3.8e-08, + "siller": 3.8e-08, + "slabbed": 3.8e-08, + "spectroscopically": 3.8e-08, + "spiraea": 3.8e-08, + "spondylosis": 3.8e-08, + "spookiness": 3.8e-08, + "sporangium": 3.8e-08, + "strade": 3.8e-08, + "streetwalker": 3.8e-08, + "symbiotically": 3.8e-08, + "talpa": 3.8e-08, + "tangipahoa": 3.8e-08, + "tantalite": 3.8e-08, + "tarheel": 3.8e-08, + "tarsier": 3.8e-08, + "telesis": 3.8e-08, + "tenpenny": 3.8e-08, + "teras": 1.17e-08, + "tightwad": 3.8e-08, + "tilefish": 3.8e-08, + "timelessly": 3.8e-08, + "tranquilize": 3.8e-08, + "tricorn": 3.8e-08, + "tristam": 3.8e-08, + "trochaic": 3.8e-08, + "tuatara": 3.8e-08, + "tufty": 3.8e-08, + "tulu": 3.8e-08, + "turnback": 3.8e-08, + "turtleback": 3.8e-08, + "tutorship": 3.8e-08, + "typica": 3.8e-08, + "unassociated": 3.8e-08, + "unbolt": 3.8e-08, + "uncompahgre": 3.8e-08, + "unlatch": 3.8e-08, + "unsealing": 3.8e-08, + "unseeing": 3.8e-08, + "unutterable": 3.8e-08, + "usque": 3.8e-08, + "vegetate": 3.8e-08, + "vitalizing": 3.8e-08, + "wallman": 3.8e-08, + "wigging": 3.8e-08, + "wonted": 3.8e-08, + "wots": 1.32e-08, + "wrongfulness": 3.8e-08, + "zenana": 3.8e-08, + "acquaintanceship": 3.72e-08, + "adrenochrome": 3.72e-08, + "adrenocorticotropic": 3.72e-08, + "aias": 1.66e-08, + "andantino": 3.72e-08, + "antinomianism": 3.72e-08, + "argentum": 3.72e-08, + "armamentarium": 3.72e-08, + "asthenia": 3.72e-08, + "atopy": 3.72e-08, + "audiogram": 3.72e-08, + "axiomatically": 3.72e-08, + "badinage": 3.72e-08, + "bailer": 3.72e-08, + "balky": 3.72e-08, + "balter": 3.72e-08, + "bareheaded": 3.72e-08, + "bely": 3.72e-08, + "benne": 3.72e-08, + "benzine": 3.72e-08, + "bleck": 3.72e-08, + "bogong": 3.72e-08, + "bolar": 3.72e-08, + "bombo": 3.72e-08, + "cannily": 3.72e-08, + "capelin": 3.72e-08, + "castable": 3.72e-08, + "cavy": 3.72e-08, + "chandlery": 3.72e-08, + "checkable": 3.72e-08, + "cheeseboard": 3.72e-08, + "chough": 3.72e-08, + "chromatid": 3.72e-08, + "chromosphere": 3.72e-08, + "civvy": 3.72e-08, + "clallam": 3.72e-08, + "coequal": 3.72e-08, + "colorize": 3.72e-08, + "coneflower": 3.72e-08, + "corpuscle": 3.72e-08, + "corruptor": 3.72e-08, + "crania": 3.72e-08, + "crassness": 3.72e-08, + "croaky": 3.72e-08, + "crunchiness": 3.72e-08, + "cupholder": 3.72e-08, + "curculionidae": 3.72e-08, + "cypripedium": 3.72e-08, + "dasi": 3.72e-08, + "deaner": 3.72e-08, + "declaim": 3.72e-08, + "defeater": 3.72e-08, + "defoliated": 3.72e-08, + "depolymerization": 3.72e-08, + "detrusor": 3.72e-08, + "dimethylamino": 3.72e-08, + "disconsolately": 3.72e-08, + "disembowelment": 3.72e-08, + "draba": 3.72e-08, + "dubb": 3.72e-08, + "dwarfish": 3.72e-08, + "ecclesiastically": 3.72e-08, + "egocentrism": 3.72e-08, + "endophytic": 3.72e-08, + "epiphysis": 3.72e-08, + "eponym": 3.72e-08, + "eradicator": 3.72e-08, + "excoriation": 3.72e-08, + "exsanguination": 3.72e-08, + "fanlight": 3.72e-08, + "fifthly": 3.72e-08, + "fioretti": 3.72e-08, + "fishback": 3.72e-08, + "forename": 3.72e-08, + "fornicator": 3.72e-08, + "fouler": 3.72e-08, + "fourscore": 3.72e-08, + "freeness": 3.72e-08, + "frippery": 3.72e-08, + "fucus": 3.72e-08, + "galatian": 3.72e-08, + "gastrostomy": 3.72e-08, + "gelly": 3.72e-08, + "genistein": 3.72e-08, + "geraniol": 3.72e-08, + "glossolalia": 3.72e-08, + "goodish": 3.72e-08, + "guarneri": 3.72e-08, + "gunite": 3.72e-08, + "haem": 3.72e-08, + "hardpan": 3.72e-08, + "haziness": 3.72e-08, + "hemophiliac": 3.72e-08, + "huaca": 3.72e-08, + "husking": 3.72e-08, + "hutterites": 3.72e-08, + "idiomatically": 3.72e-08, + "incidently": 3.72e-08, + "inconstancy": 3.72e-08, + "indecorous": 3.72e-08, + "indigence": 3.72e-08, + "inertness": 3.72e-08, + "ingoing": 3.72e-08, + "inhumation": 3.72e-08, + "integumentary": 3.72e-08, + "interrogatory": 3.72e-08, + "ironbound": 3.72e-08, + "irruption": 3.72e-08, + "jansenist": 3.72e-08, + "kadu": 3.72e-08, + "kempster": 3.72e-08, + "kirman": 3.72e-08, + "knurling": 3.72e-08, + "lacework": 3.72e-08, + "lanson": 3.72e-08, + "leatherwork": 3.72e-08, + "leftwards": 3.72e-08, + "leonis": 1.35e-08, + "leuco": 3.72e-08, + "loof": 3.72e-08, + "loosestrife": 3.72e-08, + "lunda": 3.72e-08, + "lycus": 3.72e-08, + "malediction": 3.72e-08, + "malevolently": 3.72e-08, + "mantic": 3.72e-08, + "maximalism": 3.72e-08, + "melasma": 3.72e-08, + "melodramatically": 3.72e-08, + "meum": 3.72e-08, + "mho": 3.72e-08, + "ministerium": 3.72e-08, + "mithraism": 3.72e-08, + "moner": 3.72e-08, + "monogamist": 3.72e-08, + "montgolfier": 3.72e-08, + "monton": 3.72e-08, + "mooting": 3.72e-08, + "mopane": 3.72e-08, + "muckraker": 3.72e-08, + "mudflow": 3.72e-08, + "mundanity": 3.72e-08, + "muskellunge": 3.72e-08, + "mysel": 3.72e-08, + "natatorium": 3.72e-08, + "navigability": 3.72e-08, + "nebular": 3.72e-08, + "neutralist": 3.72e-08, + "nonaggression": 3.72e-08, + "nontransferable": 3.72e-08, + "obscuration": 3.72e-08, + "ofttimes": 3.72e-08, + "osteological": 3.72e-08, + "outrageousness": 3.72e-08, + "overflown": 3.72e-08, + "overstretch": 3.72e-08, + "padishah": 3.72e-08, + "palaeography": 3.72e-08, + "palas": 3.72e-08, + "parasitize": 3.72e-08, + "parenthetically": 3.72e-08, + "parricide": 3.72e-08, + "patellofemoral": 3.72e-08, + "paulownia": 3.72e-08, + "perceptiveness": 3.72e-08, + "pessary": 3.72e-08, + "photocurrent": 3.72e-08, + "phrenological": 3.72e-08, + "physalis": 3.72e-08, + "pianistic": 3.72e-08, + "pilch": 3.72e-08, + "poblacion": 3.72e-08, + "polymorphous": 3.72e-08, + "postmedial": 3.72e-08, + "predynastic": 3.72e-08, + "prefigure": 3.72e-08, + "priss": 3.72e-08, + "procuratorate": 3.72e-08, + "pronounceable": 3.72e-08, + "prorate": 3.72e-08, + "prothorax": 3.72e-08, + "protuberant": 3.72e-08, + "psychosurgery": 3.72e-08, + "psyllid": 3.72e-08, + "pyrites": 3.72e-08, + "quarterman": 3.72e-08, + "quinidine": 3.72e-08, + "radiochemistry": 3.72e-08, + "rainless": 3.72e-08, + "rebid": 3.72e-08, + "regality": 3.72e-08, + "resubmission": 3.72e-08, + "retroflex": 3.72e-08, + "revers": 3.72e-08, + "ringle": 3.72e-08, + "rori": 3.72e-08, + "roughhouse": 3.72e-08, + "scannable": 3.72e-08, + "scatty": 3.72e-08, + "scentless": 3.72e-08, + "scorekeeper": 3.72e-08, + "scrimped": 3.72e-08, + "scrummage": 3.72e-08, + "secretively": 3.72e-08, + "semiannually": 3.72e-08, + "serried": 3.72e-08, + "shingling": 3.72e-08, + "shouter": 3.72e-08, + "shrovetide": 3.72e-08, + "simular": 3.72e-08, + "siouan": 3.72e-08, + "skerry": 3.72e-08, + "smectite": 3.72e-08, + "snuffle": 3.72e-08, + "spencerian": 3.72e-08, + "sphingosine": 3.72e-08, + "spreaded": 3.72e-08, + "squalus": 3.72e-08, + "stammerer": 3.72e-08, + "stonefish": 3.72e-08, + "stoup": 3.72e-08, + "studier": 3.72e-08, + "subaerial": 3.72e-08, + "suggestiveness": 3.72e-08, + "sundanese": 3.72e-08, + "supernaturalism": 3.72e-08, + "swage": 3.72e-08, + "sweepings": 3.72e-08, + "swineherd": 3.72e-08, + "swingy": 3.72e-08, + "tantrik": 3.72e-08, + "taphouse": 3.72e-08, + "tattva": 3.72e-08, + "teather": 3.72e-08, + "theat": 3.72e-08, + "torticollis": 3.72e-08, + "treponema": 3.72e-08, + "trifold": 3.72e-08, + "twitterer": 3.72e-08, + "twopence": 3.72e-08, + "ulsterman": 3.72e-08, + "unamended": 3.72e-08, + "unchallenging": 3.72e-08, + "uncomplaining": 3.72e-08, + "uncontainable": 3.72e-08, + "undock": 3.72e-08, + "unpayable": 3.72e-08, + "unpledged": 3.72e-08, + "unsteadiness": 3.72e-08, + "urethritis": 3.72e-08, + "vanille": 3.72e-08, + "velocipede": 3.72e-08, + "wardman": 3.72e-08, + "waspy": 3.72e-08, + "whereat": 3.72e-08, + "wheresoever": 3.72e-08, + "yampa": 3.72e-08, + "yawp": 3.72e-08, + "yed": 1.51e-08, + "abase": 3.63e-08, + "abetment": 3.63e-08, + "ablow": 3.63e-08, + "abscission": 3.63e-08, + "adventurousness": 3.63e-08, + "aerostat": 3.63e-08, + "agone": 3.63e-08, + "agriculturalist": 3.63e-08, + "amadis": 3.63e-08, + "amytal": 3.63e-08, + "anaphoric": 3.63e-08, + "annona": 3.63e-08, + "annotator": 3.63e-08, + "antithrombin": 3.63e-08, + "anura": 3.63e-08, + "arietta": 3.63e-08, + "ascaris": 3.63e-08, + "ascertainable": 3.63e-08, + "astrometry": 3.63e-08, + "backstrap": 3.63e-08, + "bacopa": 3.63e-08, + "badon": 3.63e-08, + "bahut": 3.63e-08, + "bajra": 3.63e-08, + "balarama": 3.63e-08, + "basenji": 3.63e-08, + "bashfully": 3.63e-08, + "basicity": 3.63e-08, + "batata": 3.63e-08, + "bejan": 3.63e-08, + "bema": 3.63e-08, + "biotope": 3.63e-08, + "blackly": 3.63e-08, + "blepharoplasty": 3.63e-08, + "blighter": 3.63e-08, + "bokhara": 3.63e-08, + "boletus": 3.63e-08, + "bolide": 3.63e-08, + "bonce": 3.63e-08, + "bonder": 3.63e-08, + "brewis": 3.63e-08, + "brightener": 3.63e-08, + "broadness": 3.63e-08, + "bronchopneumonia": 3.63e-08, + "buffoonish": 3.63e-08, + "bulgy": 3.63e-08, + "bushwhacker": 3.63e-08, + "busine": 3.63e-08, + "californium": 3.63e-08, + "candlewood": 3.63e-08, + "canvasback": 3.63e-08, + "carica": 3.63e-08, + "castrum": 3.63e-08, + "casuistry": 3.63e-08, + "cayuse": 3.63e-08, + "centaurea": 3.63e-08, + "chac": 3.63e-08, + "chalcis": 3.63e-08, + "chambertin": 3.63e-08, + "chastely": 3.63e-08, + "chironomidae": 3.63e-08, + "chlamydomonas": 3.63e-08, + "clausal": 3.63e-08, + "cloudland": 3.63e-08, + "clypeus": 3.63e-08, + "cognisance": 3.63e-08, + "cogwheel": 3.63e-08, + "cohosh": 3.63e-08, + "collaterally": 3.63e-08, + "columellar": 3.63e-08, + "combinatory": 3.63e-08, + "completer": 3.63e-08, + "congregationalism": 3.63e-08, + "corsetry": 3.63e-08, + "cosmography": 3.63e-08, + "counteraction": 3.63e-08, + "crossbeam": 3.63e-08, + "crumby": 3.63e-08, + "cubital": 3.63e-08, + "cutted": 3.63e-08, + "cyclorama": 3.63e-08, + "deacetylation": 3.63e-08, + "derogatorily": 3.63e-08, + "devitalized": 3.63e-08, + "didacticism": 3.63e-08, + "dimness": 3.63e-08, + "discounter": 3.63e-08, + "disproportionation": 3.63e-08, + "dogman": 3.63e-08, + "earplug": 3.63e-08, + "ebullience": 3.63e-08, + "editorialize": 3.63e-08, + "eeriness": 3.63e-08, + "effulgent": 3.63e-08, + "egba": 3.63e-08, + "egomania": 3.63e-08, + "eimer": 3.63e-08, + "elevational": 3.63e-08, + "emendation": 3.63e-08, + "encomienda": 3.63e-08, + "engraftment": 3.63e-08, + "euonymus": 3.63e-08, + "expediently": 3.63e-08, + "extendible": 3.63e-08, + "fairwater": 3.63e-08, + "fiddlehead": 3.63e-08, + "firedamp": 3.63e-08, + "firer": 3.63e-08, + "flagman": 3.63e-08, + "flitch": 3.63e-08, + "flusher": 3.63e-08, + "foible": 3.63e-08, + "forfend": 3.63e-08, + "fourpence": 3.63e-08, + "fowling": 3.63e-08, + "fusil": 3.63e-08, + "gaddi": 3.63e-08, + "galah": 3.63e-08, + "gasman": 3.63e-08, + "gaun": 3.63e-08, + "gaus": 3.63e-08, + "geest": 3.63e-08, + "gentiana": 3.63e-08, + "gien": 3.63e-08, + "glub": 3.63e-08, + "grandniece": 3.63e-08, + "grevillea": 3.63e-08, + "hairiness": 3.63e-08, + "hammerman": 3.63e-08, + "hano": 3.63e-08, + "heinously": 3.63e-08, + "hemiplegic": 3.63e-08, + "heterosis": 3.63e-08, + "hideousness": 3.63e-08, + "hyperglycemic": 3.63e-08, + "hyperplastic": 3.63e-08, + "hyrax": 3.63e-08, + "ideational": 3.63e-08, + "imagist": 3.63e-08, + "imbricated": 3.63e-08, + "inchworm": 3.63e-08, + "indefatigably": 3.63e-08, + "indiaman": 3.63e-08, + "indoles": 3.63e-08, + "ineluctably": 3.63e-08, + "inexpressive": 3.63e-08, + "inhabitation": 3.63e-08, + "inhere": 3.63e-08, + "intangibility": 3.63e-08, + "interstage": 3.63e-08, + "isotropy": 3.63e-08, + "javelina": 3.63e-08, + "jawless": 3.63e-08, + "joinder": 3.63e-08, + "kalends": 3.63e-08, + "keet": 3.63e-08, + "keplerian": 3.63e-08, + "laager": 3.63e-08, + "lipodystrophy": 3.63e-08, + "liquidy": 3.63e-08, + "lomita": 3.63e-08, + "loyalism": 3.63e-08, + "luckie": 3.63e-08, + "ludden": 3.63e-08, + "macassar": 3.63e-08, + "machinability": 3.63e-08, + "manichaeism": 3.63e-08, + "manometer": 3.63e-08, + "mazama": 3.63e-08, + "meltingly": 3.63e-08, + "merel": 3.63e-08, + "meretricious": 3.63e-08, + "meromorphic": 3.63e-08, + "metalanguage": 3.63e-08, + "modernly": 3.63e-08, + "mutely": 3.63e-08, + "naos": 2.82e-08, + "nappe": 3.63e-08, + "newcome": 3.63e-08, + "niello": 3.63e-08, + "nonagenarian": 3.63e-08, + "noncommunicable": 3.63e-08, + "noria": 3.63e-08, + "oculist": 3.63e-08, + "ogham": 3.63e-08, + "olecranon": 3.63e-08, + "onrush": 3.63e-08, + "ophidian": 3.63e-08, + "orientalia": 3.63e-08, + "osteomalacia": 3.63e-08, + "palli": 3.63e-08, + "pantie": 3.63e-08, + "parsee": 3.63e-08, + "partite": 3.63e-08, + "petaled": 3.63e-08, + "phenolphthalein": 3.63e-08, + "philippus": 3.63e-08, + "pintado": 3.63e-08, + "planform": 3.63e-08, + "plass": 3.63e-08, + "plesiosaur": 3.63e-08, + "plotless": 3.63e-08, + "pluralization": 3.63e-08, + "polydactyly": 3.63e-08, + "polypharmacy": 3.63e-08, + "polytope": 3.63e-08, + "popover": 3.63e-08, + "postulant": 3.63e-08, + "potestas": 3.63e-08, + "pourer": 3.63e-08, + "premonitory": 3.63e-08, + "preverbal": 3.63e-08, + "princeling": 3.63e-08, + "propitiatory": 3.63e-08, + "psaltery": 3.63e-08, + "psychobiology": 3.63e-08, + "quantize": 3.63e-08, + "rarefaction": 3.63e-08, + "reincorporate": 3.63e-08, + "relist": 3.63e-08, + "renascence": 3.63e-08, + "reprobation": 3.63e-08, + "retrogression": 3.63e-08, + "rimu": 3.63e-08, + "rotogravure": 3.63e-08, + "rumbly": 3.63e-08, + "rutin": 3.63e-08, + "salmagundi": 3.63e-08, + "samas": 3.55e-08, + "sarrazin": 3.63e-08, + "scarman": 3.63e-08, + "scudi": 3.63e-08, + "selter": 3.63e-08, + "seronegative": 3.63e-08, + "serpentina": 3.63e-08, + "shamming": 3.63e-08, + "shotter": 3.63e-08, + "sicca": 3.63e-08, + "sidling": 3.63e-08, + "singable": 3.63e-08, + "sixpenny": 3.63e-08, + "skunky": 3.63e-08, + "slanderer": 3.63e-08, + "smout": 3.63e-08, + "sope": 3.63e-08, + "souchong": 3.63e-08, + "spirograph": 3.63e-08, + "standee": 3.63e-08, + "staver": 3.63e-08, + "stockpot": 3.63e-08, + "stoppable": 3.63e-08, + "stratigraphically": 3.63e-08, + "subgrade": 3.63e-08, + "sublethal": 3.63e-08, + "sudra": 3.63e-08, + "superheterodyne": 3.63e-08, + "supination": 3.63e-08, + "synergism": 3.63e-08, + "tactus": 3.63e-08, + "talar": 3.63e-08, + "taxonomical": 3.63e-08, + "tectum": 3.63e-08, + "telamon": 3.63e-08, + "terpsichore": 3.63e-08, + "thuringian": 3.63e-08, + "tillable": 3.63e-08, + "transfigure": 3.63e-08, + "trilemma": 3.63e-08, + "trophyless": 3.63e-08, + "tubbing": 3.63e-08, + "turanian": 3.63e-08, + "turbinate": 3.63e-08, + "turgor": 3.63e-08, + "uncaught": 3.63e-08, + "undercoating": 3.63e-08, + "undergirding": 3.63e-08, + "unhealthful": 3.63e-08, + "unintelligibly": 3.63e-08, + "unrevised": 3.63e-08, + "unrooted": 3.63e-08, + "unscrupulously": 3.63e-08, + "unsuspectingly": 3.63e-08, + "unsymmetrical": 3.63e-08, + "urtica": 3.63e-08, + "vicuna": 3.63e-08, + "vietminh": 3.63e-08, + "walpurgis": 3.63e-08, + "warbled": 3.63e-08, + "weaponless": 3.63e-08, + "wherefrom": 3.63e-08, + "wicky": 3.63e-08, + "widder": 3.63e-08, + "wisse": 3.63e-08, + "witched": 3.63e-08, + "yest": 3.63e-08, + "yowl": 3.63e-08, + "accentual": 3.55e-08, + "adjunction": 3.55e-08, + "akov": 3.55e-08, + "alkenyl": 3.55e-08, + "amylose": 3.55e-08, + "anax": 3.55e-08, + "ancestress": 3.55e-08, + "anole": 3.55e-08, + "anticyclonic": 3.55e-08, + "apalachee": 3.55e-08, + "apostoli": 3.55e-08, + "aquarelle": 3.55e-08, + "arkansan": 3.55e-08, + "armillaria": 3.55e-08, + "assumedly": 3.55e-08, + "atheroma": 3.55e-08, + "atomize": 3.55e-08, + "automaticity": 3.55e-08, + "bandbox": 3.55e-08, + "barbette": 3.55e-08, + "basidia": 3.55e-08, + "birn": 3.55e-08, + "blacktail": 3.55e-08, + "boundedness": 3.55e-08, + "bowlegged": 3.55e-08, + "braeside": 3.55e-08, + "brobdingnagian": 3.55e-08, + "brutalization": 3.55e-08, + "bundu": 3.55e-08, + "cabiria": 3.55e-08, + "calas": 3.55e-08, + "carya": 3.55e-08, + "caseless": 3.55e-08, + "chalons": 3.55e-08, + "chigger": 3.55e-08, + "chinless": 3.55e-08, + "chymotrypsin": 3.55e-08, + "clarinettist": 3.55e-08, + "clearheaded": 3.55e-08, + "clevis": 3.55e-08, + "cloudberry": 3.55e-08, + "coercivity": 3.55e-08, + "colline": 3.55e-08, + "commingle": 3.55e-08, + "concent": 3.55e-08, + "conjoin": 3.55e-08, + "consubstantial": 3.55e-08, + "coquet": 3.55e-08, + "cordia": 3.55e-08, + "corylus": 3.55e-08, + "cotman": 3.55e-08, + "cotte": 3.55e-08, + "countersink": 3.55e-08, + "couped": 3.55e-08, + "crenulate": 3.55e-08, + "crossflow": 3.55e-08, + "cupful": 3.55e-08, + "curial": 3.55e-08, + "decretum": 3.55e-08, + "demurrer": 3.55e-08, + "depreciable": 3.55e-08, + "derris": 3.55e-08, + "dilling": 3.55e-08, + "dispersible": 3.55e-08, + "doggedness": 3.55e-08, + "duco": 3.55e-08, + "edea": 3.55e-08, + "edgeways": 3.55e-08, + "efface": 3.55e-08, + "elzevir": 3.55e-08, + "escarole": 3.55e-08, + "evasively": 3.55e-08, + "executory": 3.55e-08, + "exogenously": 3.55e-08, + "falcate": 3.55e-08, + "federalize": 3.55e-08, + "fibrillar": 3.55e-08, + "fictitiously": 3.55e-08, + "finical": 3.55e-08, + "firn": 3.55e-08, + "fraudulence": 3.55e-08, + "fucose": 3.55e-08, + "gaine": 3.55e-08, + "galled": 3.55e-08, + "geostrophic": 3.55e-08, + "girdling": 3.55e-08, + "glaister": 3.55e-08, + "goodhearted": 3.55e-08, + "grandfatherly": 3.55e-08, + "grego": 3.55e-08, + "grisaille": 3.55e-08, + "headwall": 3.55e-08, + "hercynian": 3.55e-08, + "hernani": 3.55e-08, + "heterozygote": 3.55e-08, + "hory": 3.55e-08, + "hunkers": 3.55e-08, + "hydroxylamine": 3.55e-08, + "hypoglossal": 3.55e-08, + "ifugao": 3.55e-08, + "impliedly": 3.55e-08, + "inconsiderately": 3.55e-08, + "indigeneity": 3.55e-08, + "indissolubly": 3.55e-08, + "infinitude": 3.55e-08, + "insensibility": 3.55e-08, + "inserter": 3.55e-08, + "intensional": 3.55e-08, + "intercoastal": 3.55e-08, + "intercommunication": 3.55e-08, + "intracellularly": 3.55e-08, + "intractability": 3.55e-08, + "intuitionism": 3.55e-08, + "involucral": 3.55e-08, + "iroko": 3.55e-08, + "irredentism": 3.55e-08, + "irremediably": 3.55e-08, + "jaywalker": 3.55e-08, + "jowar": 3.55e-08, + "kanuri": 3.55e-08, + "kindliness": 3.55e-08, + "knifeman": 3.55e-08, + "knothole": 3.55e-08, + "kulm": 3.55e-08, + "labium": 3.55e-08, + "lampman": 3.55e-08, + "laterality": 3.55e-08, + "leonato": 3.55e-08, + "lewdly": 3.55e-08, + "libretti": 3.55e-08, + "liturgically": 3.55e-08, + "liveness": 3.55e-08, + "locrian": 3.55e-08, + "lood": 3.55e-08, + "loutish": 3.55e-08, + "maenad": 3.55e-08, + "makua": 3.55e-08, + "manter": 3.55e-08, + "masterless": 3.55e-08, + "mayorship": 3.55e-08, + "meditatively": 3.55e-08, + "memorability": 3.55e-08, + "microinjection": 3.55e-08, + "millionairess": 3.55e-08, + "misprision": 3.55e-08, + "missioner": 3.55e-08, + "monobloc": 3.55e-08, + "mudguard": 3.55e-08, + "mythmaking": 3.55e-08, + "nabataean": 3.55e-08, + "necessar": 3.55e-08, + "neoclassic": 3.55e-08, + "nephite": 3.55e-08, + "nomenclatural": 3.55e-08, + "nonperishable": 3.55e-08, + "nonvoting": 3.55e-08, + "notitia": 3.55e-08, + "numen": 3.55e-08, + "oaten": 3.55e-08, + "obscurantist": 3.55e-08, + "ocellus": 3.55e-08, + "oenothera": 3.55e-08, + "oldish": 3.55e-08, + "orchidaceae": 3.55e-08, + "osmotically": 3.55e-08, + "otology": 3.55e-08, + "pannonian": 3.55e-08, + "paramountcy": 3.55e-08, + "parer": 3.55e-08, + "parus": 3.55e-08, + "perforator": 3.55e-08, + "philomel": 3.55e-08, + "pickax": 3.55e-08, + "pieman": 3.55e-08, + "pigheaded": 3.55e-08, + "piperazine": 3.55e-08, + "piscataqua": 3.55e-08, + "plastisol": 3.55e-08, + "plumbago": 3.55e-08, + "pochard": 3.55e-08, + "poha": 3.55e-08, + "pointillist": 3.55e-08, + "posteriors": 3.55e-08, + "poundcake": 3.55e-08, + "praseodymium": 3.55e-08, + "prestidigitation": 3.55e-08, + "primp": 3.55e-08, + "processual": 3.55e-08, + "propound": 3.55e-08, + "prudishness": 3.55e-08, + "pugilism": 3.55e-08, + "pulseless": 3.55e-08, + "punnet": 3.55e-08, + "pyin": 3.55e-08, + "quebracho": 3.55e-08, + "raffish": 3.55e-08, + "rakh": 3.55e-08, + "reconsolidation": 3.55e-08, + "redescription": 3.55e-08, + "reflation": 3.55e-08, + "reify": 3.55e-08, + "remise": 3.55e-08, + "renes": 3.55e-08, + "repartition": 3.55e-08, + "resentfully": 3.55e-08, + "revetment": 3.55e-08, + "ruminative": 3.55e-08, + "samen": 3.55e-08, + "saracenic": 3.55e-08, + "sartorially": 3.55e-08, + "sawer": 3.55e-08, + "sawmilling": 3.55e-08, + "scotchman": 3.55e-08, + "scotoma": 3.55e-08, + "semiautonomous": 3.55e-08, + "semipro": 3.55e-08, + "semiprofessional": 3.55e-08, + "sensuously": 3.55e-08, + "serape": 3.55e-08, + "serenata": 3.55e-08, + "silversmithing": 3.55e-08, + "sitosterol": 3.55e-08, + "skag": 3.55e-08, + "slaveowner": 3.55e-08, + "slimness": 3.55e-08, + "snakelike": 3.55e-08, + "solarization": 3.55e-08, + "spadix": 3.55e-08, + "spired": 3.55e-08, + "spiv": 3.55e-08, + "spored": 3.55e-08, + "spuriously": 3.55e-08, + "squarer": 3.55e-08, + "stargaze": 3.55e-08, + "steeplechaser": 3.55e-08, + "stikine": 3.55e-08, + "subdeacon": 3.55e-08, + "subtile": 3.55e-08, + "supraventricular": 3.55e-08, + "sweetish": 3.55e-08, + "tembe": 3.55e-08, + "temin": 3.55e-08, + "tenseness": 3.55e-08, + "tetrode": 3.55e-08, + "texturally": 3.55e-08, + "theobroma": 3.55e-08, + "theoria": 3.55e-08, + "threnody": 3.55e-08, + "toluidine": 3.55e-08, + "tonsured": 3.55e-08, + "tovah": 3.55e-08, + "toyshop": 3.55e-08, + "transbay": 3.55e-08, + "transitively": 3.55e-08, + "translationally": 3.55e-08, + "trinary": 3.55e-08, + "twelvemonth": 3.55e-08, + "umbo": 3.55e-08, + "unauthentic": 3.55e-08, + "unavailing": 3.55e-08, + "unbolted": 3.55e-08, + "undernourishment": 3.55e-08, + "undisputedly": 3.55e-08, + "unedifying": 3.55e-08, + "ungaro": 3.55e-08, + "unimportance": 3.55e-08, + "univalent": 3.55e-08, + "unnavigable": 3.55e-08, + "unrefrigerated": 3.55e-08, + "unrra": 3.55e-08, + "valerate": 3.55e-08, + "varangian": 3.55e-08, + "vectis": 3.55e-08, + "vicinal": 3.55e-08, + "vitalize": 3.55e-08, + "wakf": 3.55e-08, + "wase": 3.55e-08, + "wateringly": 3.55e-08, + "wronger": 3.55e-08, + "yellowhammer": 3.55e-08, + "yenisei": 3.55e-08, + "abased": 3.47e-08, + "abaxial": 3.47e-08, + "abscissa": 3.47e-08, + "accrete": 3.47e-08, + "adjudge": 3.47e-08, + "aimlessness": 3.47e-08, + "airiness": 3.47e-08, + "alertly": 3.47e-08, + "alloxan": 3.47e-08, + "amang": 3.47e-08, + "amnion": 3.47e-08, + "anorectal": 3.47e-08, + "antinomy": 3.47e-08, + "antismoking": 3.47e-08, + "aper": 3.47e-08, + "araneae": 3.47e-08, + "arati": 3.47e-08, + "arhat": 3.47e-08, + "armhole": 3.47e-08, + "arni": 3.47e-08, + "arrestable": 3.47e-08, + "ashame": 3.47e-08, + "audiometry": 3.47e-08, + "badland": 3.47e-08, + "bakeshop": 3.47e-08, + "barebone": 3.47e-08, + "bassoonist": 3.47e-08, + "batis": 3.47e-08, + "battel": 3.47e-08, + "batterer": 3.47e-08, + "bedazzling": 3.47e-08, + "bichir": 3.47e-08, + "bifid": 3.47e-08, + "blaw": 3.47e-08, + "bloodroot": 3.47e-08, + "boastfully": 3.47e-08, + "borlase": 3.47e-08, + "bounden": 3.47e-08, + "boza": 3.47e-08, + "brahmanism": 3.47e-08, + "bulkiness": 3.47e-08, + "bungler": 3.47e-08, + "burnsides": 3.47e-08, + "cabalistic": 3.47e-08, + "cager": 3.47e-08, + "carpus": 3.47e-08, + "castra": 3.47e-08, + "cecropia": 3.47e-08, + "chazan": 3.47e-08, + "chilkat": 3.47e-08, + "chlorogenic": 3.47e-08, + "chlorotic": 3.47e-08, + "christmasy": 3.47e-08, + "chromatogram": 3.47e-08, + "churchward": 3.47e-08, + "collectanea": 3.47e-08, + "collembola": 3.47e-08, + "compartmental": 3.47e-08, + "compositae": 3.47e-08, + "consolatory": 3.47e-08, + "coppicing": 3.47e-08, + "corbeau": 3.47e-08, + "corrugation": 3.47e-08, + "covenanting": 3.47e-08, + "crabbed": 3.47e-08, + "crassly": 3.47e-08, + "crewel": 3.47e-08, + "cric": 3.47e-08, + "cristopher": 3.47e-08, + "cupressus": 3.47e-08, + "curatorship": 3.47e-08, + "cycad": 3.47e-08, + "daemonic": 3.47e-08, + "daler": 3.47e-08, + "danelaw": 3.47e-08, + "decarbonization": 3.47e-08, + "decimator": 3.47e-08, + "deckhouse": 3.47e-08, + "delphian": 3.47e-08, + "depilatory": 3.47e-08, + "depravation": 3.47e-08, + "diagenetic": 3.47e-08, + "diatomite": 3.47e-08, + "diopside": 3.47e-08, + "dioscorea": 3.47e-08, + "disaggregate": 3.47e-08, + "dobe": 3.47e-08, + "draggy": 3.47e-08, + "earnie": 3.47e-08, + "ectoplasmic": 3.47e-08, + "edenic": 3.47e-08, + "embarras": 3.47e-08, + "endodermal": 3.47e-08, + "endurable": 3.47e-08, + "enolate": 3.47e-08, + "enthrone": 3.47e-08, + "erythropoiesis": 3.47e-08, + "eupatorium": 3.47e-08, + "eversion": 3.47e-08, + "expediter": 3.47e-08, + "factuality": 3.47e-08, + "fauvism": 3.47e-08, + "feminity": 3.47e-08, + "feticide": 3.47e-08, + "flirtatiously": 3.47e-08, + "formalistic": 3.47e-08, + "fragaria": 3.47e-08, + "gainsay": 3.47e-08, + "gallet": 3.47e-08, + "gateman": 3.47e-08, + "geniality": 3.47e-08, + "gerbe": 3.47e-08, + "ghettoization": 3.47e-08, + "ghosty": 3.47e-08, + "glorying": 3.47e-08, + "googol": 3.47e-08, + "grandmotherly": 3.47e-08, + "granulate": 3.47e-08, + "grus": 3.39e-08, + "gruss": 3.47e-08, + "gypsophila": 3.47e-08, + "habituate": 3.47e-08, + "hadean": 3.47e-08, + "happing": 3.47e-08, + "harmfulness": 3.47e-08, + "haymaking": 3.47e-08, + "headsman": 3.47e-08, + "hearten": 3.47e-08, + "hellier": 3.47e-08, + "holmium": 3.47e-08, + "hoofer": 3.47e-08, + "housetop": 3.47e-08, + "humoristic": 3.47e-08, + "hurlock": 3.47e-08, + "hydropathic": 3.47e-08, + "hypertrophied": 3.47e-08, + "idealistically": 3.47e-08, + "ilian": 3.47e-08, + "imperially": 3.47e-08, + "impressiveness": 3.47e-08, + "indecomposable": 3.47e-08, + "indexical": 3.47e-08, + "inotropic": 3.47e-08, + "insatiably": 3.47e-08, + "interactionist": 3.47e-08, + "intraventricular": 3.47e-08, + "jodo": 3.47e-08, + "karstic": 3.47e-08, + "kayan": 3.47e-08, + "kepi": 3.47e-08, + "kerogen": 3.47e-08, + "kimberlin": 3.47e-08, + "klaudia": 3.47e-08, + "krome": 3.47e-08, + "kuldip": 3.47e-08, + "lacewing": 3.47e-08, + "lader": 3.47e-08, + "lagniappe": 3.47e-08, + "landownership": 3.47e-08, + "legatee": 3.47e-08, + "localist": 3.47e-08, + "loquat": 3.47e-08, + "luciferin": 3.47e-08, + "maidenhair": 3.47e-08, + "marshman": 3.47e-08, + "mathurin": 3.47e-08, + "maycock": 3.47e-08, + "mazarine": 3.47e-08, + "melodeon": 3.47e-08, + "mendi": 3.47e-08, + "meningoencephalitis": 3.47e-08, + "mese": 3.47e-08, + "moneyless": 3.47e-08, + "monophysite": 3.47e-08, + "moonwalker": 3.47e-08, + "mortmain": 3.47e-08, + "naggy": 3.47e-08, + "nephrotoxicity": 3.47e-08, + "nolle": 3.47e-08, + "noncurrent": 3.47e-08, + "nonstructural": 3.47e-08, + "offeree": 3.47e-08, + "oligopolistic": 3.47e-08, + "opaqueness": 3.47e-08, + "optionality": 3.47e-08, + "orangeman": 3.47e-08, + "orcadian": 3.47e-08, + "osier": 3.47e-08, + "ostracod": 3.47e-08, + "overproduce": 3.47e-08, + "oxcart": 3.47e-08, + "palmately": 3.47e-08, + "pantaloon": 3.47e-08, + "parasitica": 3.47e-08, + "parentless": 3.47e-08, + "pathobiology": 3.47e-08, + "peery": 3.47e-08, + "peregrin": 3.47e-08, + "phthalic": 3.47e-08, + "phytochemistry": 3.47e-08, + "piscator": 3.47e-08, + "popinjay": 3.47e-08, + "presumptuously": 3.47e-08, + "provine": 3.47e-08, + "purgatorial": 3.47e-08, + "pyx": 3.47e-08, + "quadrivalent": 3.47e-08, + "quilled": 3.47e-08, + "quoits": 3.47e-08, + "ratten": 3.47e-08, + "ratter": 3.47e-08, + "recolonize": 3.47e-08, + "recompose": 3.47e-08, + "redelivery": 3.47e-08, + "reeded": 3.47e-08, + "refutable": 3.47e-08, + "relabel": 3.47e-08, + "reproachful": 3.47e-08, + "retoucher": 3.47e-08, + "retrocession": 3.47e-08, + "rootedness": 3.47e-08, + "rubberneck": 3.47e-08, + "rubdown": 3.47e-08, + "saintliness": 3.47e-08, + "salian": 3.47e-08, + "saltman": 3.47e-08, + "sanatoria": 3.47e-08, + "sandworm": 3.47e-08, + "sarangi": 3.47e-08, + "scroop": 3.47e-08, + "sedately": 3.47e-08, + "seigneurial": 3.47e-08, + "sensitizer": 3.47e-08, + "sericea": 3.47e-08, + "shamefaced": 3.47e-08, + "shammy": 3.47e-08, + "shinwari": 3.47e-08, + "shoesmith": 3.47e-08, + "shopgirl": 3.47e-08, + "shoreside": 3.47e-08, + "siuslaw": 3.47e-08, + "smilax": 3.47e-08, + "snarly": 3.47e-08, + "snuffbox": 3.47e-08, + "solferino": 3.47e-08, + "spirochete": 3.47e-08, + "stagnancy": 3.47e-08, + "stickball": 3.47e-08, + "stigmatic": 3.47e-08, + "storeman": 3.47e-08, + "storting": 3.47e-08, + "strophic": 3.47e-08, + "styloid": 3.47e-08, + "supernal": 3.47e-08, + "suppuration": 3.47e-08, + "swedenborgian": 3.47e-08, + "swordsmith": 3.47e-08, + "tade": 3.47e-08, + "takt": 3.47e-08, + "tameness": 3.47e-08, + "tamilian": 3.47e-08, + "tendance": 3.47e-08, + "teredo": 3.47e-08, + "terminable": 3.47e-08, + "thesauri": 3.47e-08, + "thrombophlebitis": 3.47e-08, + "thunderously": 3.47e-08, + "ticketless": 3.47e-08, + "tilth": 3.47e-08, + "tingler": 3.47e-08, + "titanosaur": 3.47e-08, + "titlist": 3.47e-08, + "tode": 3.47e-08, + "transliterate": 3.47e-08, + "tremulously": 3.47e-08, + "tribuna": 3.47e-08, + "trichomonas": 3.47e-08, + "trinomial": 3.47e-08, + "trun": 3.47e-08, + "tyche": 3.47e-08, + "tyto": 3.47e-08, + "unbent": 3.47e-08, + "unca": 3.47e-08, + "uncleanliness": 3.47e-08, + "unconjugated": 3.47e-08, + "uncorking": 3.47e-08, + "unfeigned": 3.47e-08, + "universalization": 3.47e-08, + "unnameable": 3.47e-08, + "unteachable": 3.47e-08, + "virga": 3.47e-08, + "virtualize": 3.47e-08, + "vitrine": 3.47e-08, + "wallpapering": 3.47e-08, + "wanga": 3.47e-08, + "worktable": 3.47e-08, + "wowser": 3.47e-08, + "wrenchingly": 3.47e-08, + "zemstvo": 3.47e-08, + "achor": 3.39e-08, + "aggress": 3.39e-08, + "alluringly": 3.39e-08, + "almagest": 3.39e-08, + "amygdalin": 3.39e-08, + "anchises": 3.39e-08, + "anthropocentrism": 3.39e-08, + "antivenin": 3.39e-08, + "antral": 3.39e-08, + "apatosaurus": 3.39e-08, + "apomorphine": 3.39e-08, + "arrear": 3.39e-08, + "asplenium": 3.39e-08, + "autocatalytic": 3.39e-08, + "bakal": 3.39e-08, + "baneful": 3.39e-08, + "bastardization": 3.39e-08, + "betroth": 3.39e-08, + "bifacial": 3.39e-08, + "blan": 3.39e-08, + "boomy": 3.39e-08, + "bosomed": 3.39e-08, + "bragi": 3.39e-08, + "braveness": 3.39e-08, + "brume": 3.39e-08, + "bughouse": 3.39e-08, + "bumptious": 3.39e-08, + "calculative": 3.39e-08, + "canthus": 3.39e-08, + "catalepsy": 3.39e-08, + "centime": 3.39e-08, + "chondrosarcoma": 3.39e-08, + "ciliata": 3.39e-08, + "coaxially": 3.39e-08, + "cogency": 3.39e-08, + "constantinian": 3.39e-08, + "coquetry": 3.39e-08, + "cosily": 3.39e-08, + "crossbill": 3.39e-08, + "cucumis": 3.39e-08, + "cytherea": 3.39e-08, + "dangler": 3.39e-08, + "daybook": 3.39e-08, + "debunker": 3.39e-08, + "defloration": 3.39e-08, + "demagogy": 3.39e-08, + "dethronement": 3.39e-08, + "detroiter": 3.39e-08, + "disquieted": 3.39e-08, + "dockage": 3.39e-08, + "doney": 3.39e-08, + "dramatical": 3.39e-08, + "drearily": 3.39e-08, + "dudman": 3.39e-08, + "easting": 3.39e-08, + "eggless": 3.39e-08, + "elephas": 3.39e-08, + "emeraude": 3.39e-08, + "epidote": 3.39e-08, + "epigraphical": 3.39e-08, + "ergometer": 3.39e-08, + "ericaceae": 3.39e-08, + "ethanolamine": 3.39e-08, + "ethnobotanical": 3.39e-08, + "exudation": 3.39e-08, + "factious": 3.39e-08, + "fany": 3.39e-08, + "feminize": 3.39e-08, + "fermentative": 3.39e-08, + "fiacre": 3.39e-08, + "fibroma": 3.39e-08, + "fibulae": 3.39e-08, + "fleche": 3.39e-08, + "foolscap": 3.39e-08, + "forebay": 3.39e-08, + "foresail": 3.39e-08, + "forestal": 3.39e-08, + "furlan": 3.39e-08, + "gabble": 3.39e-08, + "gastroenterological": 3.39e-08, + "germanization": 3.39e-08, + "ghibelline": 3.39e-08, + "gloominess": 3.39e-08, + "gujrati": 3.39e-08, + "hepatomegaly": 3.39e-08, + "hornworm": 3.39e-08, + "hupa": 3.39e-08, + "hyades": 3.39e-08, + "hypocalcemia": 3.39e-08, + "hyson": 3.39e-08, + "immodestly": 3.39e-08, + "immunogen": 3.39e-08, + "impi": 3.39e-08, + "impulsion": 3.39e-08, + "incisively": 3.39e-08, + "incorrupt": 3.39e-08, + "inculcation": 3.39e-08, + "indestructibility": 3.39e-08, + "indivisibility": 3.39e-08, + "infantilism": 3.39e-08, + "instatement": 3.39e-08, + "intracardiac": 3.39e-08, + "inwardness": 3.39e-08, + "jagir": 3.39e-08, + "jeremiad": 3.39e-08, + "jicarilla": 3.39e-08, + "kago": 3.39e-08, + "katabatic": 3.39e-08, + "khutbah": 3.39e-08, + "labret": 3.39e-08, + "langi": 3.39e-08, + "lewie": 3.39e-08, + "liliaceae": 3.39e-08, + "litch": 3.39e-08, + "lolium": 3.39e-08, + "maithili": 3.39e-08, + "mammut": 3.39e-08, + "mantid": 3.39e-08, + "manxman": 3.39e-08, + "manzil": 3.39e-08, + "masser": 3.39e-08, + "melian": 3.39e-08, + "mense": 3.39e-08, + "messuage": 3.39e-08, + "miliary": 3.39e-08, + "mirthful": 3.39e-08, + "mischance": 3.39e-08, + "monomorphic": 3.39e-08, + "moonset": 3.39e-08, + "motorable": 3.39e-08, + "muchness": 3.39e-08, + "munity": 3.39e-08, + "nagari": 3.39e-08, + "nasolabial": 3.39e-08, + "neurotically": 3.39e-08, + "noninfectious": 3.39e-08, + "opalescence": 3.39e-08, + "orenda": 3.39e-08, + "organosilicon": 3.39e-08, + "ostium": 3.39e-08, + "outspread": 3.39e-08, + "oxyrhynchus": 3.39e-08, + "palestra": 3.39e-08, + "papular": 3.39e-08, + "pathy": 3.39e-08, + "peaker": 3.39e-08, + "perchloric": 3.39e-08, + "philtrum": 3.39e-08, + "phosphonate": 3.39e-08, + "phthisis": 3.39e-08, + "phut": 3.39e-08, + "phytopathology": 3.39e-08, + "pinewoods": 3.39e-08, + "platformed": 3.39e-08, + "pluvial": 3.39e-08, + "polarimetric": 3.39e-08, + "postclassic": 3.39e-08, + "praya": 3.39e-08, + "preadolescent": 3.39e-08, + "preclassic": 3.39e-08, + "programma": 3.39e-08, + "propitiate": 3.39e-08, + "prudy": 3.39e-08, + "psychologic": 3.39e-08, + "pylades": 3.39e-08, + "quadroon": 3.39e-08, + "quietism": 3.39e-08, + "quondam": 3.39e-08, + "radiosonde": 3.39e-08, + "rasped": 3.39e-08, + "ravindran": 3.39e-08, + "recommitment": 3.39e-08, + "recomposition": 3.39e-08, + "reconciliatory": 3.39e-08, + "remunerate": 3.39e-08, + "reseat": 3.39e-08, + "respirable": 3.39e-08, + "responsivity": 3.39e-08, + "rhodonite": 3.39e-08, + "ringneck": 3.39e-08, + "sammer": 3.39e-08, + "sapsucker": 3.39e-08, + "scalloping": 3.39e-08, + "serang": 3.39e-08, + "shagreen": 3.39e-08, + "sharkskin": 3.39e-08, + "sharry": 3.39e-08, + "shenanigan": 3.39e-08, + "shiplap": 3.39e-08, + "shita": 3.39e-08, + "shoa": 3.39e-08, + "shrewish": 3.39e-08, + "simnel": 3.39e-08, + "sleekly": 3.39e-08, + "slenderness": 3.39e-08, + "snuffer": 3.39e-08, + "solidi": 3.39e-08, + "spermaceti": 3.39e-08, + "spiritist": 3.39e-08, + "sportingly": 3.39e-08, + "staw": 3.39e-08, + "stenographic": 3.39e-08, + "sternness": 3.39e-08, + "stridor": 3.39e-08, + "stude": 3.39e-08, + "subsect": 3.39e-08, + "suprapubic": 3.39e-08, + "swarf": 3.39e-08, + "tacker": 3.39e-08, + "tapachula": 3.39e-08, + "tarbet": 3.39e-08, + "tereus": 3.39e-08, + "termine": 3.39e-08, + "thalamocortical": 3.39e-08, + "thenceforward": 3.39e-08, + "thiourea": 3.39e-08, + "thoron": 3.39e-08, + "thready": 3.39e-08, + "toodle": 3.39e-08, + "tophet": 3.39e-08, + "tradescantia": 3.39e-08, + "trepanning": 3.39e-08, + "tribalist": 3.39e-08, + "triforium": 3.39e-08, + "turdus": 3.39e-08, + "unauthenticated": 3.39e-08, + "uncomfy": 3.39e-08, + "uncropped": 3.39e-08, + "underland": 3.39e-08, + "undersize": 3.39e-08, + "unessential": 3.39e-08, + "unexcelled": 3.39e-08, + "unexcited": 3.39e-08, + "unfitted": 3.39e-08, + "unfused": 3.39e-08, + "unitive": 3.39e-08, + "unlettered": 3.39e-08, + "unpremeditated": 3.39e-08, + "unsatisfactorily": 3.39e-08, + "unsubstituted": 3.39e-08, + "unutterably": 3.39e-08, + "vedantic": 3.39e-08, + "vigneron": 3.39e-08, + "vinery": 3.39e-08, + "vire": 3.39e-08, + "voluptuousness": 3.39e-08, + "waer": 3.39e-08, + "washstand": 3.39e-08, + "waxhaw": 3.39e-08, + "weanling": 3.39e-08, + "wecht": 3.39e-08, + "wheen": 3.39e-08, + "whereunto": 3.39e-08, + "wuzzy": 3.39e-08, + "zax": 3.39e-08, + "zwitterionic": 3.39e-08, + "aaru": 3.31e-08, + "abidi": 3.31e-08, + "aggrandize": 3.31e-08, + "aligner": 3.31e-08, + "alist": 3.31e-08, + "allopatric": 3.31e-08, + "alterative": 3.31e-08, + "aluminosilicate": 3.31e-08, + "anahita": 3.31e-08, + "ancilla": 3.31e-08, + "anonym": 3.31e-08, + "antidumping": 3.31e-08, + "antitheses": 3.31e-08, + "aplasia": 3.31e-08, + "arachnida": 3.31e-08, + "attender": 3.31e-08, + "avernus": 3.31e-08, + "axil": 3.31e-08, + "baldhead": 3.31e-08, + "bandhu": 3.31e-08, + "barbarously": 3.31e-08, + "barnstormer": 3.31e-08, + "beastman": 3.31e-08, + "bego": 3.31e-08, + "benincasa": 3.31e-08, + "benzoquinone": 3.31e-08, + "bethink": 3.31e-08, + "boody": 3.31e-08, + "bortz": 3.31e-08, + "bountifully": 3.31e-08, + "cabotage": 3.31e-08, + "camelina": 3.31e-08, + "caramelization": 3.31e-08, + "carious": 3.31e-08, + "cartulary": 3.31e-08, + "cercospora": 3.31e-08, + "cetane": 3.31e-08, + "chalcedonian": 3.31e-08, + "chatelain": 3.31e-08, + "chironomus": 3.31e-08, + "civically": 3.31e-08, + "claudication": 3.31e-08, + "cnidaria": 3.31e-08, + "coccus": 3.31e-08, + "colocasia": 3.31e-08, + "contently": 3.31e-08, + "conterminous": 3.31e-08, + "corroboree": 3.31e-08, + "cotangent": 3.31e-08, + "cozen": 3.31e-08, + "crozer": 3.31e-08, + "cuffy": 3.31e-08, + "cultism": 3.31e-08, + "dactylic": 3.31e-08, + "deceivingly": 3.31e-08, + "decelerator": 3.31e-08, + "denaro": 3.31e-08, + "deoxygenation": 3.31e-08, + "depolarize": 3.31e-08, + "dhak": 3.31e-08, + "directoire": 3.31e-08, + "disgruntlement": 3.31e-08, + "disingenuousness": 3.31e-08, + "dodona": 3.31e-08, + "dominium": 3.31e-08, + "draughtsmanship": 3.31e-08, + "dugway": 3.31e-08, + "dysgenesis": 3.31e-08, + "emersion": 3.31e-08, + "engrailed": 3.31e-08, + "entamoeba": 3.31e-08, + "erth": 3.31e-08, + "euphorbiaceae": 3.31e-08, + "expositional": 3.31e-08, + "exter": 3.31e-08, + "fireable": 3.31e-08, + "foully": 3.31e-08, + "fraternally": 3.31e-08, + "fungicidal": 3.31e-08, + "funniness": 3.31e-08, + "furcal": 3.31e-08, + "geosphere": 3.31e-08, + "germanism": 3.31e-08, + "godet": 3.31e-08, + "gossypium": 3.31e-08, + "guana": 3.31e-08, + "hamate": 3.31e-08, + "heiau": 3.31e-08, + "hermeticism": 3.31e-08, + "hinayana": 3.31e-08, + "hospitably": 3.31e-08, + "hygeia": 3.31e-08, + "hypertrichosis": 3.31e-08, + "illusionism": 3.31e-08, + "incarnational": 3.31e-08, + "incomprehensibility": 3.31e-08, + "insensate": 3.31e-08, + "intercomparison": 3.31e-08, + "intown": 3.31e-08, + "jagannatha": 3.31e-08, + "jerboa": 3.31e-08, + "jocularly": 3.31e-08, + "justness": 3.31e-08, + "keuper": 3.31e-08, + "kinswoman": 3.31e-08, + "kirker": 3.31e-08, + "knowingness": 3.31e-08, + "lability": 3.31e-08, + "leftish": 3.31e-08, + "lionhearted": 3.31e-08, + "lollard": 3.31e-08, + "maidu": 3.31e-08, + "malanga": 3.31e-08, + "mameluke": 3.31e-08, + "measureless": 3.31e-08, + "metacentric": 3.31e-08, + "metalloid": 3.31e-08, + "metallurgic": 3.31e-08, + "methemoglobinemia": 3.31e-08, + "milliard": 3.31e-08, + "molluscum": 3.31e-08, + "molybdate": 3.31e-08, + "monocot": 3.31e-08, + "moodily": 3.31e-08, + "morula": 3.31e-08, + "mucilaginous": 3.31e-08, + "mulatta": 3.31e-08, + "multilaterally": 3.31e-08, + "museology": 3.31e-08, + "mustafina": 3.31e-08, + "muteness": 3.31e-08, + "mysteriousness": 3.31e-08, + "nicker": 3.31e-08, + "noddle": 3.31e-08, + "noncontact": 3.31e-08, + "nonmetal": 3.31e-08, + "nonreactive": 3.31e-08, + "octant": 3.31e-08, + "openside": 3.31e-08, + "ophthalmologic": 3.31e-08, + "overcomer": 3.31e-08, + "overemotional": 3.31e-08, + "overfly": 3.31e-08, + "overfull": 3.31e-08, + "oversaturation": 3.31e-08, + "paleography": 3.31e-08, + "paraiba": 3.31e-08, + "parousia": 3.31e-08, + "peckerwood": 3.31e-08, + "pelota": 3.31e-08, + "pencilling": 3.31e-08, + "peregrina": 3.31e-08, + "perfectionistic": 3.31e-08, + "periodontist": 3.31e-08, + "persecutory": 3.31e-08, + "personalist": 3.31e-08, + "petrography": 3.31e-08, + "pind": 3.31e-08, + "pinfold": 3.31e-08, + "pirogue": 3.31e-08, + "pitchblende": 3.31e-08, + "pittosporum": 3.31e-08, + "planarian": 3.31e-08, + "pleadingly": 3.31e-08, + "plodder": 3.31e-08, + "porifera": 3.31e-08, + "prate": 3.31e-08, + "premaxilla": 3.31e-08, + "producible": 3.31e-08, + "promotable": 3.31e-08, + "proteinaceous": 3.31e-08, + "puddled": 3.31e-08, + "racialization": 3.31e-08, + "rebury": 3.31e-08, + "recoupment": 3.31e-08, + "reteach": 3.31e-08, + "rivalrous": 3.31e-08, + "romansh": 3.31e-08, + "romish": 3.31e-08, + "ropy": 3.31e-08, + "samnite": 3.31e-08, + "sarwan": 3.31e-08, + "seductiveness": 3.31e-08, + "sharada": 3.31e-08, + "sheepy": 3.31e-08, + "shipmaster": 3.31e-08, + "sillery": 3.31e-08, + "slatter": 3.31e-08, + "slaughterer": 3.31e-08, + "smocking": 3.31e-08, + "smolt": 3.31e-08, + "snee": 3.31e-08, + "snorer": 3.31e-08, + "solidary": 3.31e-08, + "soulfulness": 3.31e-08, + "soursop": 3.31e-08, + "sparhawk": 3.31e-08, + "spectrophotometric": 3.31e-08, + "splodge": 3.31e-08, + "sportiness": 3.31e-08, + "squirty": 3.31e-08, + "staysail": 3.31e-08, + "strass": 3.31e-08, + "stupidness": 3.31e-08, + "styrian": 3.31e-08, + "succulence": 3.31e-08, + "sudani": 3.31e-08, + "sugarhouse": 3.31e-08, + "syringomyelia": 3.31e-08, + "tangram": 3.31e-08, + "tapetum": 3.31e-08, + "tautly": 3.31e-08, + "taxonomist": 3.31e-08, + "teashop": 3.31e-08, + "telegraphist": 3.31e-08, + "terron": 3.31e-08, + "thymol": 3.31e-08, + "tierce": 3.31e-08, + "timesaver": 3.31e-08, + "tonus": 3.31e-08, + "topgallant": 3.31e-08, + "tourn": 3.31e-08, + "translucence": 3.31e-08, + "trigonometrical": 3.31e-08, + "tronc": 3.31e-08, + "tusked": 3.31e-08, + "tyg": 3.31e-08, + "tyrannize": 3.31e-08, + "unchallengeable": 3.31e-08, + "unchaperoned": 3.31e-08, + "uncleaned": 3.31e-08, + "undrawn": 3.31e-08, + "unhelpfully": 3.31e-08, + "unhuman": 3.31e-08, + "unidimensional": 3.31e-08, + "unparliamentary": 3.31e-08, + "unroofed": 3.31e-08, + "upclose": 3.31e-08, + "uvular": 3.31e-08, + "victrix": 3.31e-08, + "visitant": 3.31e-08, + "visuality": 3.31e-08, + "vituperation": 3.31e-08, + "vlei": 3.31e-08, + "waling": 3.31e-08, + "wapato": 3.31e-08, + "warehouseman": 3.31e-08, + "warmish": 3.31e-08, + "welted": 3.31e-08, + "wheelspin": 3.31e-08, + "yond": 3.31e-08, + "abdal": 3.24e-08, + "acle": 3.24e-08, + "adman": 3.24e-08, + "airdrome": 3.24e-08, + "alchemic": 3.24e-08, + "altern": 3.24e-08, + "amination": 3.24e-08, + "anabolism": 3.24e-08, + "anaglyph": 3.24e-08, + "aneroid": 3.24e-08, + "aneurysmal": 3.24e-08, + "angelical": 3.24e-08, + "angularity": 3.24e-08, + "anthracnose": 3.24e-08, + "appall": 3.24e-08, + "areopagite": 3.24e-08, + "argillaceous": 3.24e-08, + "armillary": 3.24e-08, + "ascus": 3.24e-08, + "aspidistra": 3.24e-08, + "asterism": 3.24e-08, + "autonomist": 3.24e-08, + "backhander": 3.24e-08, + "bairam": 3.24e-08, + "bantayan": 3.24e-08, + "barotse": 3.24e-08, + "benzophenone": 3.24e-08, + "bewilderingly": 3.24e-08, + "bibble": 3.24e-08, + "biga": 3.24e-08, + "blackfire": 3.24e-08, + "bookstall": 3.24e-08, + "boose": 3.24e-08, + "cabala": 3.24e-08, + "cabriole": 3.24e-08, + "cahuilla": 3.24e-08, + "calomel": 3.24e-08, + "cental": 3.24e-08, + "chicle": 3.24e-08, + "chophouse": 3.24e-08, + "churl": 3.24e-08, + "classificatory": 3.24e-08, + "closter": 3.24e-08, + "collegiately": 3.24e-08, + "columban": 3.24e-08, + "committeewoman": 3.24e-08, + "comradely": 3.24e-08, + "conceptualist": 3.24e-08, + "conflux": 3.24e-08, + "conjugacy": 3.24e-08, + "consomme": 3.24e-08, + "constructible": 3.24e-08, + "contiguously": 3.24e-08, + "corkage": 3.24e-08, + "cornishman": 3.24e-08, + "cotoneaster": 3.24e-08, + "cottier": 3.24e-08, + "countertransference": 3.24e-08, + "cullis": 3.24e-08, + "cumulation": 3.24e-08, + "dalt": 3.24e-08, + "deferentially": 3.24e-08, + "demitasse": 3.24e-08, + "despondently": 3.24e-08, + "determinacy": 3.24e-08, + "diastasis": 3.24e-08, + "direly": 3.24e-08, + "disapprobation": 3.24e-08, + "dominical": 3.24e-08, + "dosimetric": 3.24e-08, + "effluvium": 3.24e-08, + "eliphalet": 3.24e-08, + "ephemerality": 3.24e-08, + "equilibrate": 3.24e-08, + "esoterica": 3.24e-08, + "europeanization": 3.24e-08, + "excelente": 3.24e-08, + "excipient": 3.24e-08, + "explant": 3.24e-08, + "fibered": 3.24e-08, + "flysch": 3.24e-08, + "forewoman": 3.24e-08, + "froward": 3.24e-08, + "fungibility": 3.24e-08, + "fustian": 3.24e-08, + "galanthus": 3.24e-08, + "giblet": 3.24e-08, + "glanders": 3.24e-08, + "glibness": 3.24e-08, + "gourde": 3.24e-08, + "guarnieri": 3.24e-08, + "gyle": 3.24e-08, + "habanera": 3.24e-08, + "haematite": 3.24e-08, + "hamal": 3.24e-08, + "handless": 3.24e-08, + "havildar": 3.24e-08, + "helichrysum": 3.24e-08, + "hexokinase": 3.24e-08, + "homological": 3.24e-08, + "hoper": 3.24e-08, + "hornless": 3.24e-08, + "hydroperoxide": 3.24e-08, + "ignorable": 3.24e-08, + "illuminant": 3.24e-08, + "inexpert": 3.24e-08, + "ingrowth": 3.24e-08, + "inhomogeneity": 3.24e-08, + "interleave": 3.24e-08, + "intertropical": 3.24e-08, + "intervocalic": 3.24e-08, + "inveigle": 3.24e-08, + "ionizer": 3.24e-08, + "isoflavone": 3.24e-08, + "karch": 3.24e-08, + "katar": 3.24e-08, + "kilovolt": 3.24e-08, + "lacerta": 3.24e-08, + "laudably": 3.24e-08, + "lobate": 3.24e-08, + "lorikeet": 3.24e-08, + "lowish": 3.24e-08, + "macerate": 3.24e-08, + "magdalenian": 3.24e-08, + "maleate": 3.24e-08, + "mangi": 3.24e-08, + "mantuan": 3.24e-08, + "marm": 3.24e-08, + "meaninglessly": 3.24e-08, + "metalworks": 3.24e-08, + "mightiness": 3.24e-08, + "minium": 3.24e-08, + "mollycoddle": 3.24e-08, + "multilinear": 3.24e-08, + "murkiness": 3.24e-08, + "nabal": 3.24e-08, + "nisse": 3.24e-08, + "nobleness": 3.24e-08, + "nonclassical": 3.24e-08, + "nonsingular": 3.24e-08, + "numerate": 3.24e-08, + "nutation": 3.24e-08, + "nutmegged": 3.24e-08, + "nutriment": 3.24e-08, + "oakum": 3.24e-08, + "obtuseness": 3.24e-08, + "ophthalmoscope": 3.24e-08, + "orthographically": 3.24e-08, + "overactivity": 3.24e-08, + "overcautious": 3.24e-08, + "overspread": 3.24e-08, + "overtreatment": 3.24e-08, + "pankration": 3.24e-08, + "panpsychism": 3.24e-08, + "passman": 3.24e-08, + "pasteurize": 3.24e-08, + "patchiness": 3.24e-08, + "patte": 3.24e-08, + "pentangle": 3.24e-08, + "plughole": 3.24e-08, + "precursory": 3.24e-08, + "predetermination": 3.24e-08, + "prevalently": 3.24e-08, + "prudery": 3.24e-08, + "psychometry": 3.24e-08, + "pterygium": 3.24e-08, + "pulsatilla": 3.24e-08, + "pyriform": 3.24e-08, + "quarterstaff": 3.24e-08, + "quoit": 3.24e-08, + "rattail": 3.24e-08, + "redpoll": 3.24e-08, + "reichsmark": 3.24e-08, + "reincorporation": 3.24e-08, + "rescan": 3.24e-08, + "resignedly": 3.24e-08, + "resolvent": 3.24e-08, + "responsively": 3.24e-08, + "reverentially": 3.24e-08, + "rhizomatous": 3.24e-08, + "rine": 3.24e-08, + "rohilla": 3.24e-08, + "roky": 3.24e-08, + "roue": 3.24e-08, + "ruelle": 3.24e-08, + "sandrock": 3.24e-08, + "saumya": 3.24e-08, + "saura": 3.24e-08, + "saury": 3.24e-08, + "scofflaw": 3.24e-08, + "scovel": 3.24e-08, + "scrupulosity": 3.24e-08, + "semidefinite": 3.24e-08, + "semiofficial": 3.24e-08, + "semisolid": 3.24e-08, + "sheered": 3.24e-08, + "shellback": 3.24e-08, + "sidesaddle": 3.24e-08, + "simonian": 3.24e-08, + "skinflint": 3.24e-08, + "smoothen": 3.24e-08, + "soteriological": 3.24e-08, + "spelter": 3.24e-08, + "spinocerebellar": 3.24e-08, + "squelchy": 3.24e-08, + "statured": 3.24e-08, + "stereochemical": 3.24e-08, + "striation": 3.24e-08, + "stumper": 3.24e-08, + "subretinal": 3.24e-08, + "supari": 3.24e-08, + "sures": 3.24e-08, + "sweatproof": 3.24e-08, + "sweetbread": 3.24e-08, + "swithin": 3.24e-08, + "symbolization": 3.24e-08, + "syracusan": 3.24e-08, + "tagua": 3.24e-08, + "taler": 3.24e-08, + "tastiness": 3.24e-08, + "tentacular": 3.24e-08, + "tention": 3.24e-08, + "theretofore": 3.24e-08, + "thermostable": 3.24e-08, + "thig": 3.24e-08, + "threader": 3.24e-08, + "thriftiness": 3.24e-08, + "timecard": 3.24e-08, + "tisane": 3.24e-08, + "tollhouse": 3.24e-08, + "topmast": 3.24e-08, + "towhee": 3.24e-08, + "transmissive": 3.24e-08, + "traumatically": 3.24e-08, + "trembler": 3.24e-08, + "triangulum": 3.24e-08, + "tricalcium": 3.24e-08, + "tryptic": 3.24e-08, + "tsuba": 3.24e-08, + "tumescence": 3.24e-08, + "tutela": 3.24e-08, + "typologically": 3.24e-08, + "unbarred": 3.24e-08, + "uncross": 3.24e-08, + "unembarrassed": 3.24e-08, + "unenclosed": 3.24e-08, + "unhistorical": 3.24e-08, + "unpersuaded": 3.24e-08, + "unretouched": 3.24e-08, + "unsay": 3.24e-08, + "unsought": 3.24e-08, + "unthinkably": 3.24e-08, + "untrodden": 3.24e-08, + "unworthily": 3.24e-08, + "veritably": 3.24e-08, + "vermiform": 3.24e-08, + "vilayet": 3.24e-08, + "vimana": 3.24e-08, + "voivodeship": 3.24e-08, + "wallwork": 3.24e-08, + "warrantee": 3.24e-08, + "waxer": 3.24e-08, + "waywardness": 3.24e-08, + "whitebark": 3.24e-08, + "wilsonian": 3.24e-08, + "winterize": 3.24e-08, + "woolshed": 3.24e-08, + "abord": 3.16e-08, + "absoluteness": 3.16e-08, + "acadie": 3.16e-08, + "accessibly": 3.16e-08, + "acidly": 3.16e-08, + "adsorbate": 3.16e-08, + "aegisthus": 3.16e-08, + "alcor": 3.16e-08, + "allantoin": 3.16e-08, + "allogenic": 3.16e-08, + "amatory": 3.16e-08, + "amice": 3.16e-08, + "andorran": 3.16e-08, + "anthesis": 3.16e-08, + "antifeminist": 3.16e-08, + "apod": 3.16e-08, + "aponeurosis": 3.16e-08, + "applecart": 3.16e-08, + "arbutin": 3.16e-08, + "arduously": 3.16e-08, + "arrah": 3.16e-08, + "arthrogryposis": 3.16e-08, + "asok": 3.16e-08, + "asteria": 3.16e-08, + "autobiographic": 3.16e-08, + "autoradiography": 3.16e-08, + "baldric": 3.16e-08, + "bateaux": 3.16e-08, + "battening": 3.16e-08, + "befuddlement": 3.16e-08, + "beggary": 3.16e-08, + "besom": 3.16e-08, + "betweenness": 3.16e-08, + "bipolarity": 3.16e-08, + "bodoni": 3.16e-08, + "bolshie": 3.16e-08, + "bucketing": 3.16e-08, + "burster": 3.16e-08, + "butene": 3.16e-08, + "calathea": 3.16e-08, + "cannulated": 3.16e-08, + "capucine": 3.16e-08, + "carcharias": 3.16e-08, + "cardinalis": 3.16e-08, + "carouse": 3.16e-08, + "catting": 3.16e-08, + "caval": 3.16e-08, + "clavel": 3.16e-08, + "collectorate": 3.16e-08, + "congruity": 3.16e-08, + "conine": 3.16e-08, + "conky": 3.16e-08, + "contentedness": 3.16e-08, + "copolymerization": 3.16e-08, + "corporeality": 3.16e-08, + "corpulence": 3.16e-08, + "coset": 3.16e-08, + "cowled": 3.16e-08, + "crenulated": 3.16e-08, + "crispiness": 3.16e-08, + "crotalaria": 3.16e-08, + "cushiony": 3.16e-08, + "cyanea": 3.16e-08, + "cylindric": 3.16e-08, + "cyme": 3.16e-08, + "darksome": 3.16e-08, + "deafeningly": 3.16e-08, + "defoliate": 3.16e-08, + "demark": 3.16e-08, + "develin": 3.16e-08, + "devilfish": 3.16e-08, + "dialectology": 3.16e-08, + "dunner": 3.16e-08, + "edentulous": 3.16e-08, + "eker": 3.16e-08, + "electret": 3.16e-08, + "electrometer": 3.16e-08, + "essentiality": 3.16e-08, + "externalism": 3.16e-08, + "falcata": 3.16e-08, + "fetcher": 3.16e-08, + "feverfew": 3.16e-08, + "fibrinolysis": 3.16e-08, + "filterable": 3.16e-08, + "flameproof": 3.16e-08, + "flimflam": 3.16e-08, + "fluoroscope": 3.16e-08, + "freebooter": 3.16e-08, + "frenetically": 3.16e-08, + "furring": 3.16e-08, + "galium": 3.16e-08, + "gandharva": 3.16e-08, + "garnishee": 3.16e-08, + "gaslit": 3.16e-08, + "gelation": 3.16e-08, + "genom": 3.16e-08, + "genoveva": 3.16e-08, + "goldi": 3.16e-08, + "greensward": 3.16e-08, + "guilloche": 3.16e-08, + "gunnel": 3.16e-08, + "harelip": 3.16e-08, + "haricot": 3.16e-08, + "harmfully": 3.16e-08, + "hedera": 3.16e-08, + "helically": 3.16e-08, + "helleborus": 3.16e-08, + "heterotopia": 3.16e-08, + "hochelaga": 3.16e-08, + "holarctic": 3.16e-08, + "housebuilder": 3.16e-08, + "hymnbook": 3.16e-08, + "hyperboloid": 3.16e-08, + "hypergolic": 3.16e-08, + "hypocotyl": 3.16e-08, + "ihram": 3.16e-08, + "illusionistic": 3.16e-08, + "implosive": 3.16e-08, + "indiscreetly": 3.16e-08, + "inoculant": 3.16e-08, + "internee": 3.16e-08, + "interorbital": 3.16e-08, + "interschool": 3.16e-08, + "invigoration": 3.16e-08, + "kleinian": 3.16e-08, + "ladakhi": 3.16e-08, + "laramide": 3.16e-08, + "lateen": 3.16e-08, + "learoyd": 3.16e-08, + "linter": 3.16e-08, + "lionize": 3.16e-08, + "locanda": 3.16e-08, + "locution": 3.16e-08, + "loir": 3.16e-08, + "martu": 3.16e-08, + "mensuration": 3.16e-08, + "metempsychosis": 3.16e-08, + "microanalysis": 3.16e-08, + "mitered": 3.16e-08, + "mizar": 3.16e-08, + "monegasque": 3.16e-08, + "mosasaur": 3.16e-08, + "mugwump": 3.16e-08, + "mulcher": 3.16e-08, + "murshid": 3.16e-08, + "nankin": 3.16e-08, + "navicula": 3.16e-08, + "neurosyphilis": 3.16e-08, + "ninefold": 3.16e-08, + "noncontroversial": 3.16e-08, + "nubbin": 3.16e-08, + "octyl": 3.16e-08, + "odontology": 3.16e-08, + "openable": 3.16e-08, + "optation": 3.16e-08, + "osmose": 3.16e-08, + "ouabain": 3.16e-08, + "outlawry": 3.16e-08, + "outmost": 3.16e-08, + "outpour": 3.16e-08, + "outrightly": 3.16e-08, + "overcorrection": 3.16e-08, + "overextension": 3.16e-08, + "oviposit": 3.16e-08, + "panagia": 3.16e-08, + "pangloss": 3.16e-08, + "panner": 3.16e-08, + "pansexuality": 3.16e-08, + "parenterally": 3.16e-08, + "passionflower": 3.16e-08, + "pentavalent": 3.16e-08, + "petrous": 3.16e-08, + "phalangeal": 3.16e-08, + "phantasmagoric": 3.16e-08, + "pichi": 3.16e-08, + "plumpness": 3.16e-08, + "polyrhythmic": 3.16e-08, + "precordial": 3.16e-08, + "primordia": 3.16e-08, + "profanation": 3.16e-08, + "profunda": 3.16e-08, + "prognosticator": 3.16e-08, + "prolate": 3.16e-08, + "psychoeducational": 3.16e-08, + "pucelle": 3.16e-08, + "puckish": 3.16e-08, + "pulpal": 3.16e-08, + "pyogenic": 3.16e-08, + "pyrethrum": 3.16e-08, + "quenelle": 3.16e-08, + "quincunx": 3.16e-08, + "radiophonic": 3.16e-08, + "rapacity": 3.16e-08, + "recolonization": 3.16e-08, + "reinvestigate": 3.16e-08, + "renumeration": 3.16e-08, + "requital": 3.16e-08, + "reviling": 3.16e-08, + "rhombohedral": 3.16e-08, + "ringless": 3.16e-08, + "risser": 3.16e-08, + "roundy": 3.16e-08, + "ruther": 3.16e-08, + "rutty": 3.16e-08, + "sagitta": 3.16e-08, + "sailmaker": 3.16e-08, + "sanct": 3.16e-08, + "savageness": 3.16e-08, + "scholiast": 3.16e-08, + "scorekeeping": 3.16e-08, + "semipermeable": 3.16e-08, + "sententious": 3.16e-08, + "shanny": 3.16e-08, + "shimei": 3.16e-08, + "shirky": 3.16e-08, + "shrimpy": 3.16e-08, + "shrinky": 3.16e-08, + "siak": 3.16e-08, + "sigmoidal": 3.16e-08, + "simulium": 3.16e-08, + "sinoatrial": 3.16e-08, + "sociably": 3.16e-08, + "somnambulism": 3.16e-08, + "soundlessly": 3.16e-08, + "speckling": 3.16e-08, + "sphingomyelin": 3.16e-08, + "spiriting": 3.16e-08, + "steelyard": 3.16e-08, + "stemple": 3.16e-08, + "streamside": 3.16e-08, + "stright": 3.16e-08, + "stroy": 3.16e-08, + "stum": 3.16e-08, + "styptic": 3.16e-08, + "subclause": 3.16e-08, + "suborn": 3.16e-08, + "subsumption": 3.16e-08, + "sulfhydryl": 3.16e-08, + "superorganism": 3.16e-08, + "supranuclear": 3.16e-08, + "sweatbox": 3.16e-08, + "synchronism": 3.16e-08, + "teicher": 3.16e-08, + "tetrafluoride": 3.16e-08, + "tetravalent": 3.16e-08, + "thermochemistry": 3.16e-08, + "thung": 3.16e-08, + "thyestes": 3.16e-08, + "tippee": 3.16e-08, + "toweling": 3.16e-08, + "trainman": 3.16e-08, + "trigram": 3.16e-08, + "trover": 3.16e-08, + "trucial": 3.16e-08, + "uncoiled": 3.16e-08, + "underrating": 3.16e-08, + "undersurface": 3.16e-08, + "undesirably": 3.16e-08, + "undomesticated": 3.16e-08, + "unevolved": 3.16e-08, + "unfading": 3.16e-08, + "unguent": 3.16e-08, + "unperformed": 3.16e-08, + "unrequested": 3.16e-08, + "unsponsored": 3.16e-08, + "untwisted": 3.16e-08, + "uria": 3.16e-08, + "vair": 3.16e-08, + "varix": 3.16e-08, + "viscid": 3.16e-08, + "volution": 3.16e-08, + "vulgarian": 3.16e-08, + "wainer": 3.16e-08, + "wapentake": 3.16e-08, + "waterberg": 3.16e-08, + "watsonia": 3.16e-08, + "weeder": 3.16e-08, + "whaleboat": 3.16e-08, + "whitethroat": 3.16e-08, + "whoredom": 3.16e-08, + "windrow": 3.16e-08, + "wup": 3.16e-08, + "yutu": 3.16e-08, + "aboriginality": 3.09e-08, + "achar": 3.09e-08, + "acheulean": 3.09e-08, + "acicular": 3.09e-08, + "acropora": 3.09e-08, + "adeptness": 3.09e-08, + "alkoxide": 3.09e-08, + "alterity": 3.09e-08, + "amaurosis": 3.09e-08, + "amendable": 3.09e-08, + "analogically": 3.09e-08, + "anele": 3.09e-08, + "answerer": 3.09e-08, + "appanage": 3.09e-08, + "appropriative": 3.09e-08, + "arachis": 3.09e-08, + "araminta": 3.09e-08, + "aroon": 3.09e-08, + "atavism": 3.09e-08, + "bangash": 3.09e-08, + "befuddle": 3.09e-08, + "beman": 3.09e-08, + "bohemianism": 3.09e-08, + "bolometric": 3.09e-08, + "bordure": 3.09e-08, + "brandenburger": 3.09e-08, + "breastwork": 3.09e-08, + "britisher": 3.09e-08, + "brythonic": 3.09e-08, + "budworm": 3.09e-08, + "butylene": 3.09e-08, + "cappadocian": 3.09e-08, + "carcanet": 3.09e-08, + "cascadian": 3.09e-08, + "catchweight": 3.09e-08, + "cerasus": 3.09e-08, + "channelization": 3.09e-08, + "chelonia": 3.09e-08, + "cholecystokinin": 3.09e-08, + "chukar": 3.09e-08, + "chuvash": 3.09e-08, + "connate": 3.09e-08, + "contrasty": 3.09e-08, + "copeman": 3.09e-08, + "coppiced": 3.09e-08, + "coxa": 3.09e-08, + "creen": 3.09e-08, + "cremaster": 3.09e-08, + "declarant": 3.09e-08, + "decussate": 3.09e-08, + "deflagration": 3.09e-08, + "deflower": 3.09e-08, + "degustation": 3.09e-08, + "delphinus": 3.09e-08, + "demurrage": 3.09e-08, + "denudation": 3.09e-08, + "deuteronomic": 3.09e-08, + "dialkyl": 3.09e-08, + "diastema": 3.09e-08, + "dika": 3.09e-08, + "discordia": 3.09e-08, + "dool": 3.09e-08, + "doornail": 3.09e-08, + "dysgraphia": 3.09e-08, + "echinococcus": 3.09e-08, + "electrokinetic": 3.09e-08, + "elfish": 3.09e-08, + "engulfment": 3.09e-08, + "eppie": 3.09e-08, + "eppy": 3.09e-08, + "equipotential": 3.09e-08, + "erigeron": 3.09e-08, + "escheat": 3.09e-08, + "evolvable": 3.09e-08, + "exclamatory": 3.09e-08, + "extrusive": 3.09e-08, + "farthingale": 3.09e-08, + "fibrinolytic": 3.09e-08, + "filarial": 3.09e-08, + "fluorination": 3.09e-08, + "frontbencher": 3.09e-08, + "gater": 3.09e-08, + "gaura": 3.09e-08, + "gilden": 3.09e-08, + "gloriosa": 3.09e-08, + "goetia": 3.09e-08, + "grasset": 3.09e-08, + "grun": 3.09e-08, + "haik": 3.09e-08, + "hemiparesis": 3.09e-08, + "hevea": 3.09e-08, + "hinter": 3.09e-08, + "hirundo": 3.09e-08, + "hugeness": 3.09e-08, + "hurds": 3.09e-08, + "hydrops": 3.09e-08, + "hypochlorous": 3.09e-08, + "hypopituitarism": 3.09e-08, + "iconostasis": 3.09e-08, + "incorrigibly": 3.09e-08, + "inefficacy": 3.09e-08, + "ineradicable": 3.09e-08, + "insertable": 3.09e-08, + "intellectualize": 3.09e-08, + "interconversion": 3.09e-08, + "interpretability": 3.09e-08, + "irresolute": 3.09e-08, + "ixia": 3.09e-08, + "jingled": 3.09e-08, + "jink": 3.09e-08, + "kabyle": 3.09e-08, + "kedge": 3.09e-08, + "kex": 3.09e-08, + "khotan": 3.09e-08, + "knapweed": 3.09e-08, + "kroo": 3.09e-08, + "kubera": 3.09e-08, + "laryngectomy": 3.09e-08, + "lasciviousness": 3.09e-08, + "leakproof": 3.09e-08, + "letterer": 3.09e-08, + "letup": 3.09e-08, + "logwood": 3.09e-08, + "luminously": 3.09e-08, + "malines": 3.09e-08, + "mankin": 3.09e-08, + "marli": 3.09e-08, + "marylander": 3.09e-08, + "mechanician": 3.09e-08, + "meny": 3.09e-08, + "merak": 3.09e-08, + "mimeo": 3.09e-08, + "minify": 3.09e-08, + "misattribution": 3.09e-08, + "misguidedly": 3.09e-08, + "monocyclic": 3.09e-08, + "mozarabic": 3.09e-08, + "mutualist": 3.09e-08, + "mykiss": 3.09e-08, + "nabby": 3.09e-08, + "naphthol": 3.09e-08, + "nebulosity": 3.09e-08, + "needler": 3.09e-08, + "nepenthe": 3.09e-08, + "nontaxable": 3.09e-08, + "norridgewock": 3.09e-08, + "notarize": 3.09e-08, + "numbly": 3.09e-08, + "odel": 3.09e-08, + "ofter": 3.09e-08, + "orate": 3.09e-08, + "overregulation": 3.09e-08, + "overstress": 3.09e-08, + "paddlefish": 3.09e-08, + "palpebral": 3.09e-08, + "pand": 3.09e-08, + "parapsychological": 3.09e-08, + "parathion": 3.09e-08, + "pargo": 3.09e-08, + "patroon": 3.09e-08, + "peda": 3.09e-08, + "pedunculate": 3.09e-08, + "penalization": 3.09e-08, + "persea": 3.09e-08, + "persuadable": 3.09e-08, + "phagocyte": 3.09e-08, + "phantasmal": 3.09e-08, + "piccalilli": 3.09e-08, + "pipistrelle": 3.09e-08, + "pithily": 3.09e-08, + "plica": 3.09e-08, + "polarizability": 3.09e-08, + "polyuria": 3.09e-08, + "porr": 3.09e-08, + "positiveness": 3.09e-08, + "potto": 3.09e-08, + "pressor": 3.09e-08, + "prophylactically": 3.09e-08, + "proselytization": 3.09e-08, + "proximately": 3.09e-08, + "pylorus": 3.09e-08, + "quester": 3.09e-08, + "quilling": 3.09e-08, + "racemose": 3.09e-08, + "radiopaque": 3.09e-08, + "radiosensitivity": 3.09e-08, + "recti": 3.09e-08, + "refound": 3.09e-08, + "reinsertion": 3.09e-08, + "releaser": 3.09e-08, + "reoperation": 3.09e-08, + "rester": 3.09e-08, + "rewriter": 3.09e-08, + "rhamnus": 3.09e-08, + "rightwards": 3.09e-08, + "rochet": 3.09e-08, + "romanism": 3.09e-08, + "rubiaceae": 3.09e-08, + "ruminal": 3.09e-08, + "sabaoth": 3.09e-08, + "saraf": 3.09e-08, + "satanas": 3.09e-08, + "sawhorse": 3.09e-08, + "saxifraga": 3.09e-08, + "scirpus": 3.09e-08, + "scripturally": 3.09e-08, + "selt": 3.09e-08, + "semantical": 3.09e-08, + "shadowboxing": 3.09e-08, + "siddur": 3.09e-08, + "siol": 3.09e-08, + "skyscape": 3.09e-08, + "slattern": 3.09e-08, + "slive": 3.09e-08, + "songcraft": 3.09e-08, + "sorex": 3.09e-08, + "spatiality": 3.09e-08, + "spectroradiometer": 3.09e-08, + "spreng": 3.09e-08, + "springlike": 3.09e-08, + "sruti": 3.09e-08, + "stentor": 3.09e-08, + "stopcock": 3.09e-08, + "stram": 3.09e-08, + "stridency": 3.09e-08, + "suavely": 3.09e-08, + "subharmonic": 3.09e-08, + "subthalamic": 3.09e-08, + "succinyl": 3.09e-08, + "suku": 3.09e-08, + "sunward": 3.09e-08, + "superdelegate": 3.09e-08, + "tangency": 3.09e-08, + "taraxacum": 3.09e-08, + "tavola": 3.09e-08, + "taylorism": 3.09e-08, + "teacake": 3.09e-08, + "tessera": 3.09e-08, + "tetch": 3.09e-08, + "teuton": 3.09e-08, + "therapeutical": 3.09e-08, + "thermometry": 3.09e-08, + "trailside": 3.09e-08, + "treacly": 3.09e-08, + "trichinopoly": 3.09e-08, + "trichome": 3.09e-08, + "trifoliate": 3.09e-08, + "trishna": 3.09e-08, + "tristeza": 3.09e-08, + "trophoblastic": 3.09e-08, + "unconsecrated": 3.09e-08, + "underskirt": 3.09e-08, + "undistracted": 3.09e-08, + "unicolor": 3.09e-08, + "unrepentantly": 3.09e-08, + "unscriptural": 3.09e-08, + "unsheathe": 3.09e-08, + "unspun": 3.09e-08, + "unstaffed": 3.09e-08, + "upchuck": 3.09e-08, + "urna": 3.09e-08, + "uvea": 3.09e-08, + "vernonia": 3.09e-08, + "westing": 3.09e-08, + "whimbrel": 3.09e-08, + "zambo": 3.09e-08, + "zealousness": 3.09e-08, + "zooxanthellae": 3.09e-08, + "accipiter": 3.02e-08, + "activin": 3.02e-08, + "adroitness": 3.02e-08, + "aesculapius": 3.02e-08, + "amarin": 3.02e-08, + "anatase": 3.02e-08, + "ancestrally": 3.02e-08, + "appeaser": 3.02e-08, + "appointive": 3.02e-08, + "arborvitae": 3.02e-08, + "archaism": 3.02e-08, + "arctos": 3.02e-08, + "arpeggiated": 3.02e-08, + "aspersion": 3.02e-08, + "assenting": 3.02e-08, + "astatine": 3.02e-08, + "ataxic": 3.02e-08, + "atonality": 3.02e-08, + "autogenic": 3.02e-08, + "autoharp": 3.02e-08, + "avoider": 3.02e-08, + "backdown": 3.02e-08, + "backwardation": 3.02e-08, + "baldachin": 3.02e-08, + "balita": 3.02e-08, + "baul": 3.02e-08, + "berengaria": 3.02e-08, + "bilingually": 3.02e-08, + "bindle": 3.02e-08, + "bocking": 3.02e-08, + "booter": 3.02e-08, + "bootless": 3.02e-08, + "borak": 3.02e-08, + "braccio": 3.02e-08, + "brawner": 3.02e-08, + "brigantes": 3.02e-08, + "bushwhacking": 3.02e-08, + "cablegram": 3.02e-08, + "caffeic": 3.02e-08, + "caliburn": 3.02e-08, + "calixtus": 3.02e-08, + "canel": 3.02e-08, + "canonist": 3.02e-08, + "cantle": 3.02e-08, + "capitate": 3.02e-08, + "cark": 3.02e-08, + "catarrhal": 3.02e-08, + "celandine": 3.02e-08, + "ceras": 3.02e-08, + "chirrup": 3.02e-08, + "chordata": 3.02e-08, + "chromaticism": 3.02e-08, + "chronometric": 3.02e-08, + "chrysocolla": 3.02e-08, + "cinquefoil": 3.02e-08, + "claque": 3.02e-08, + "clava": 3.02e-08, + "climbable": 3.02e-08, + "cloy": 3.02e-08, + "cockhead": 3.02e-08, + "cocobolo": 3.02e-08, + "cocotte": 3.02e-08, + "cognize": 3.02e-08, + "colletotrichum": 3.02e-08, + "commonness": 3.02e-08, + "commonsensical": 3.02e-08, + "congest": 3.02e-08, + "corbie": 3.02e-08, + "cresol": 3.02e-08, + "cromlech": 3.02e-08, + "crosshead": 3.02e-08, + "crushable": 3.02e-08, + "cyperaceae": 3.02e-08, + "delver": 3.02e-08, + "depilation": 3.02e-08, + "describer": 3.02e-08, + "deuced": 3.02e-08, + "devilment": 3.02e-08, + "diathermy": 3.02e-08, + "dimethoxy": 3.02e-08, + "dipeptide": 3.02e-08, + "diplomatist": 3.02e-08, + "disinterestedly": 3.02e-08, + "dizygotic": 3.02e-08, + "downspout": 3.02e-08, + "dreaminess": 3.02e-08, + "dubby": 3.02e-08, + "ecotype": 3.02e-08, + "edematous": 3.02e-08, + "effulgence": 3.02e-08, + "epistasis": 3.02e-08, + "equant": 3.02e-08, + "espalier": 3.02e-08, + "ethylenediamine": 3.02e-08, + "euphonic": 3.02e-08, + "exclusivist": 3.02e-08, + "extubation": 3.02e-08, + "falutin": 3.02e-08, + "fireless": 3.02e-08, + "fixator": 3.02e-08, + "foehn": 3.02e-08, + "follis": 3.02e-08, + "fontinalis": 3.02e-08, + "formability": 3.02e-08, + "fractionating": 3.02e-08, + "fuddle": 3.02e-08, + "fusee": 3.02e-08, + "gaj": 3.02e-08, + "gammarus": 3.02e-08, + "ganglionic": 3.02e-08, + "genealogically": 3.02e-08, + "geoduck": 3.02e-08, + "gez": 3.02e-08, + "ghostwrite": 3.02e-08, + "glaciological": 3.02e-08, + "glamorously": 3.02e-08, + "glenohumeral": 3.02e-08, + "gnatcatcher": 3.02e-08, + "goldenseal": 3.02e-08, + "gondi": 3.02e-08, + "grandness": 3.02e-08, + "graphy": 3.02e-08, + "greenshank": 3.02e-08, + "guenon": 3.02e-08, + "guttersnipe": 3.02e-08, + "gyne": 3.02e-08, + "hartebeest": 3.02e-08, + "heartstring": 3.02e-08, + "herma": 3.02e-08, + "herse": 3.02e-08, + "hesperian": 3.02e-08, + "hispid": 3.02e-08, + "humiliatingly": 3.02e-08, + "hyperthyroid": 3.02e-08, + "ilocano": 3.02e-08, + "impenitent": 3.02e-08, + "inanely": 3.02e-08, + "incorruptibility": 3.02e-08, + "incubi": 3.02e-08, + "inexistent": 3.02e-08, + "inimitably": 3.02e-08, + "instable": 3.02e-08, + "insurability": 3.02e-08, + "interfraternity": 3.02e-08, + "intersexual": 3.02e-08, + "iolite": 3.02e-08, + "irrelevantly": 3.02e-08, + "jocelin": 3.02e-08, + "justen": 3.02e-08, + "kantianism": 3.02e-08, + "ketene": 3.02e-08, + "kingbird": 3.02e-08, + "korova": 3.02e-08, + "lacker": 3.02e-08, + "larghetto": 3.02e-08, + "layback": 3.02e-08, + "lindane": 3.02e-08, + "lowliness": 3.02e-08, + "luminiferous": 3.02e-08, + "magh": 3.02e-08, + "mantrap": 3.02e-08, + "masanobu": 3.02e-08, + "matanza": 3.02e-08, + "medicolegal": 3.02e-08, + "mesne": 3.02e-08, + "mesophyll": 3.02e-08, + "mihrab": 3.02e-08, + "millenary": 3.02e-08, + "miry": 3.02e-08, + "misguiding": 3.02e-08, + "monody": 3.02e-08, + "monstera": 3.02e-08, + "moonshiner": 3.02e-08, + "mosser": 3.02e-08, + "motmot": 3.02e-08, + "mutilator": 3.02e-08, + "naphthenic": 3.02e-08, + "nematology": 3.02e-08, + "newar": 3.02e-08, + "nimmer": 3.02e-08, + "nonagon": 3.02e-08, + "nosema": 3.02e-08, + "observationally": 3.02e-08, + "odoriferous": 3.02e-08, + "orage": 3.02e-08, + "orthodontia": 3.02e-08, + "otolith": 3.02e-08, + "outliner": 3.02e-08, + "outremer": 3.02e-08, + "overbid": 3.02e-08, + "overgrow": 3.02e-08, + "paleobotany": 3.02e-08, + "paleogeography": 3.02e-08, + "panentheism": 3.02e-08, + "parimutuel": 3.02e-08, + "parquetry": 3.02e-08, + "pathognomonic": 3.02e-08, + "pennisetum": 3.02e-08, + "pensionary": 3.02e-08, + "peoplehood": 3.02e-08, + "perfecter": 3.02e-08, + "petrosal": 3.02e-08, + "phenotypical": 3.02e-08, + "phrenologist": 3.02e-08, + "piezoelectricity": 3.02e-08, + "piggish": 3.02e-08, + "pilus": 3.02e-08, + "pimiento": 3.02e-08, + "plexiform": 3.02e-08, + "plock": 3.02e-08, + "pochette": 3.02e-08, + "pogge": 3.02e-08, + "pompa": 3.02e-08, + "pondy": 3.02e-08, + "potentiometric": 3.02e-08, + "praesidium": 3.02e-08, + "pratfall": 3.02e-08, + "prehnite": 3.02e-08, + "privative": 3.02e-08, + "proctology": 3.02e-08, + "proleptic": 3.02e-08, + "propene": 3.02e-08, + "propinquity": 3.02e-08, + "prosperously": 3.02e-08, + "protoplasmic": 3.02e-08, + "pullet": 3.02e-08, + "pyrexia": 3.02e-08, + "quadratically": 3.02e-08, + "radiotelegraph": 3.02e-08, + "recuperator": 3.02e-08, + "redtop": 3.02e-08, + "regarder": 3.02e-08, + "resample": 3.02e-08, + "resorcinol": 3.02e-08, + "ridging": 3.02e-08, + "rostra": 3.02e-08, + "roundelay": 3.02e-08, + "rowlet": 3.02e-08, + "rubbishing": 3.02e-08, + "rushy": 3.02e-08, + "russophile": 3.02e-08, + "ryen": 3.02e-08, + "sapience": 3.02e-08, + "satisfiable": 3.02e-08, + "satrapy": 3.02e-08, + "scission": 3.02e-08, + "scops": 3.02e-08, + "scrag": 3.02e-08, + "sheering": 3.02e-08, + "silvicultural": 3.02e-08, + "siphuncle": 3.02e-08, + "slangy": 3.02e-08, + "solfeggio": 3.02e-08, + "splendiferous": 3.02e-08, + "squidge": 3.02e-08, + "struvite": 3.02e-08, + "subhead": 3.02e-08, + "subpolar": 3.02e-08, + "swordswoman": 3.02e-08, + "testily": 3.02e-08, + "tetherball": 3.02e-08, + "theodosian": 3.02e-08, + "tinner": 3.02e-08, + "tortuously": 3.02e-08, + "tractarian": 3.02e-08, + "transconductance": 3.02e-08, + "triplane": 3.02e-08, + "turnstone": 3.02e-08, + "uncomplimentary": 3.02e-08, + "unconcealed": 3.02e-08, + "unenjoyable": 3.02e-08, + "unexpended": 3.02e-08, + "unhealthiness": 3.02e-08, + "unreciprocated": 3.02e-08, + "unshaded": 3.02e-08, + "unstitched": 3.02e-08, + "valmy": 3.02e-08, + "varicocele": 3.02e-08, + "vermis": 3.02e-08, + "volumetrically": 3.02e-08, + "vulpine": 3.02e-08, + "wabe": 3.02e-08, + "waisting": 3.02e-08, + "watchout": 3.02e-08, + "winglet": 3.02e-08, + "wode": 3.02e-08, + "worthiest": 3.02e-08, + "wur": 3.02e-08, + "xeroderma": 3.02e-08, + "yez": 3.02e-08, + "zestful": 3.02e-08, + "afeard": 2.95e-08, + "agranulocytosis": 2.95e-08, + "ailanthus": 2.95e-08, + "alterable": 2.95e-08, + "amnestic": 2.95e-08, + "amylin": 2.95e-08, + "angouleme": 2.95e-08, + "anice": 2.95e-08, + "anolis": 2.95e-08, + "antiparasitic": 2.95e-08, + "arnaut": 2.95e-08, + "augean": 2.95e-08, + "auh": 2.95e-08, + "aviso": 2.95e-08, + "baconian": 2.95e-08, + "bilobed": 2.95e-08, + "bitartrate": 2.95e-08, + "bloater": 2.95e-08, + "boiko": 2.95e-08, + "bombsight": 2.95e-08, + "bromate": 2.95e-08, + "buddh": 2.95e-08, + "budgerigar": 2.95e-08, + "camion": 2.95e-08, + "cannoned": 2.95e-08, + "cardium": 2.95e-08, + "carian": 2.95e-08, + "cataloguer": 2.95e-08, + "cetyl": 2.95e-08, + "chamar": 2.95e-08, + "channeler": 2.95e-08, + "channer": 2.95e-08, + "chapt": 2.95e-08, + "cheeriness": 2.95e-08, + "chitter": 2.95e-08, + "chondrocyte": 2.95e-08, + "claimer": 2.95e-08, + "claribel": 2.95e-08, + "clavus": 2.95e-08, + "cluniac": 2.95e-08, + "coarctation": 2.95e-08, + "cobber": 2.95e-08, + "collectivistic": 2.95e-08, + "commensurable": 2.95e-08, + "communality": 2.95e-08, + "conduce": 2.95e-08, + "confirmable": 2.95e-08, + "connectable": 2.95e-08, + "consoler": 2.95e-08, + "consummately": 2.95e-08, + "containable": 2.95e-08, + "contentiously": 2.95e-08, + "contingently": 2.95e-08, + "contrapositive": 2.95e-08, + "coquettishly": 2.95e-08, + "costata": 2.95e-08, + "counterpoise": 2.95e-08, + "crookedly": 2.95e-08, + "crosshatch": 2.95e-08, + "cryptologist": 2.95e-08, + "dalbergia": 2.95e-08, + "decubitus": 2.95e-08, + "defeasible": 2.95e-08, + "delocalization": 2.95e-08, + "derange": 2.95e-08, + "derivate": 2.95e-08, + "desideratum": 2.95e-08, + "despond": 2.95e-08, + "desquamation": 2.95e-08, + "diencephalon": 2.95e-08, + "dight": 2.95e-08, + "diospyros": 2.95e-08, + "discussant": 2.95e-08, + "disgustedly": 2.95e-08, + "dishpan": 2.95e-08, + "disinvite": 2.95e-08, + "dissector": 2.95e-08, + "donum": 2.95e-08, + "drear": 2.95e-08, + "drolly": 2.95e-08, + "earless": 2.95e-08, + "economizer": 2.95e-08, + "electrocardiographic": 2.95e-08, + "electrothermal": 2.95e-08, + "ellagic": 2.95e-08, + "embryonal": 2.95e-08, + "envenomation": 2.95e-08, + "epiblast": 2.95e-08, + "exaction": 2.95e-08, + "excrescence": 2.95e-08, + "exogamous": 2.95e-08, + "eyeshield": 2.95e-08, + "facultatively": 2.95e-08, + "fenestrated": 2.95e-08, + "ferrarese": 2.95e-08, + "flatting": 2.95e-08, + "flatus": 2.95e-08, + "floridan": 2.95e-08, + "formicidae": 2.95e-08, + "formlessness": 2.95e-08, + "fumaric": 2.95e-08, + "gasbag": 2.95e-08, + "geomancer": 2.95e-08, + "geriatrician": 2.95e-08, + "gleek": 2.95e-08, + "glossa": 2.95e-08, + "groschen": 2.95e-08, + "groundwood": 2.95e-08, + "gurry": 2.95e-08, + "hapu": 2.95e-08, + "hardanger": 2.95e-08, + "hatband": 2.95e-08, + "hazily": 2.95e-08, + "hinoki": 2.95e-08, + "humectant": 2.95e-08, + "humeri": 2.95e-08, + "husked": 2.95e-08, + "hydatid": 2.95e-08, + "hydrometeorological": 2.95e-08, + "hypoactive": 2.95e-08, + "ichthyologist": 2.95e-08, + "ictus": 2.95e-08, + "idolization": 2.95e-08, + "immutably": 2.95e-08, + "incautiously": 2.95e-08, + "indispensability": 2.95e-08, + "infeed": 2.95e-08, + "infernally": 2.95e-08, + "intergranular": 2.95e-08, + "interlining": 2.95e-08, + "inviscid": 2.95e-08, + "isometrically": 2.95e-08, + "jacketing": 2.95e-08, + "kinetoscope": 2.95e-08, + "kolinsky": 2.95e-08, + "koso": 2.95e-08, + "krems": 2.95e-08, + "lalang": 2.95e-08, + "lation": 2.95e-08, + "lepidopteran": 2.95e-08, + "lidless": 2.95e-08, + "locksmithing": 2.95e-08, + "loveman": 2.95e-08, + "mahonia": 2.95e-08, + "malefactor": 2.95e-08, + "mandelic": 2.95e-08, + "mangue": 2.95e-08, + "manque": 2.95e-08, + "mantlet": 2.95e-08, + "melodia": 2.95e-08, + "metasedimentary": 2.95e-08, + "metatarsus": 2.95e-08, + "microsphere": 2.95e-08, + "midheaven": 2.95e-08, + "milpa": 2.95e-08, + "mindel": 2.95e-08, + "mirana": 2.95e-08, + "mirthless": 2.95e-08, + "misrepresentative": 2.95e-08, + "montilla": 2.95e-08, + "mool": 2.95e-08, + "moxa": 2.95e-08, + "nauset": 2.95e-08, + "ngaio": 2.95e-08, + "nondegenerate": 2.95e-08, + "nonflammable": 2.95e-08, + "obliquus": 2.95e-08, + "observably": 2.95e-08, + "oenology": 2.95e-08, + "ornithopter": 2.95e-08, + "orthophosphate": 2.95e-08, + "orthosis": 2.95e-08, + "outcrossing": 2.95e-08, + "overbalance": 2.95e-08, + "palatalization": 2.95e-08, + "paraxial": 2.95e-08, + "pasteboard": 2.95e-08, + "pedagogics": 2.95e-08, + "pemphigoid": 2.95e-08, + "perambulation": 2.95e-08, + "petrarchan": 2.95e-08, + "phalloplasty": 2.95e-08, + "philistinism": 2.95e-08, + "philomela": 2.95e-08, + "phoca": 2.95e-08, + "physicalist": 2.95e-08, + "plowshare": 2.95e-08, + "ponderously": 2.95e-08, + "possessively": 2.95e-08, + "preapproval": 2.95e-08, + "profanely": 2.95e-08, + "protoconch": 2.95e-08, + "pryse": 2.95e-08, + "puppis": 2.95e-08, + "quader": 2.95e-08, + "rappe": 2.95e-08, + "ravishingly": 2.95e-08, + "rearrest": 2.95e-08, + "rectorship": 2.95e-08, + "repellency": 2.95e-08, + "resonantly": 2.95e-08, + "reveler": 2.95e-08, + "reverso": 2.95e-08, + "revolute": 2.95e-08, + "rhaetian": 2.95e-08, + "rhomboidal": 2.95e-08, + "robinia": 2.95e-08, + "saccharide": 2.95e-08, + "scaleless": 2.95e-08, + "scudo": 2.95e-08, + "secretin": 2.95e-08, + "secularize": 2.95e-08, + "sego": 2.95e-08, + "sensuousness": 2.95e-08, + "sentential": 2.95e-08, + "sesquiterpene": 2.95e-08, + "shikar": 2.95e-08, + "shorea": 2.95e-08, + "silvius": 2.95e-08, + "sinusoid": 2.95e-08, + "slicking": 2.95e-08, + "slumberland": 2.95e-08, + "smilodon": 2.95e-08, + "snakeroot": 2.95e-08, + "sociotechnical": 2.95e-08, + "springhouse": 2.95e-08, + "sprong": 2.95e-08, + "steersman": 2.95e-08, + "steeve": 2.95e-08, + "sybaritic": 2.95e-08, + "tangibility": 2.95e-08, + "tarai": 2.95e-08, + "terribleness": 2.95e-08, + "tetramethyl": 2.95e-08, + "thulium": 2.95e-08, + "thurl": 2.95e-08, + "thyroglobulin": 2.95e-08, + "tonkawa": 2.95e-08, + "topia": 2.95e-08, + "tottie": 2.95e-08, + "tousle": 2.95e-08, + "trimeric": 2.95e-08, + "trussing": 2.95e-08, + "ullage": 2.95e-08, + "ultraviolent": 2.95e-08, + "undereye": 2.95e-08, + "ungraceful": 2.95e-08, + "unilingual": 2.95e-08, + "unlocated": 2.95e-08, + "unmated": 2.95e-08, + "unplowed": 2.95e-08, + "unredeemable": 2.95e-08, + "uranian": 2.95e-08, + "valkyr": 2.95e-08, + "veery": 2.95e-08, + "vestryman": 2.95e-08, + "whereafter": 2.95e-08, + "wickerwork": 2.95e-08, + "yowie": 2.95e-08, + "zonta": 2.95e-08, + "zostera": 2.95e-08, + "aboral": 2.88e-08, + "accordant": 2.88e-08, + "achates": 2.88e-08, + "actioner": 2.88e-08, + "adventurously": 2.88e-08, + "aglaia": 2.88e-08, + "agrarianism": 2.88e-08, + "aguacate": 2.88e-08, + "ahom": 2.88e-08, + "albigensian": 2.88e-08, + "alstroemeria": 2.88e-08, + "amenia": 2.88e-08, + "amic": 2.88e-08, + "antegrade": 2.88e-08, + "anthropomorphize": 2.88e-08, + "antitheft": 2.88e-08, + "apostatize": 2.88e-08, + "appreciator": 2.88e-08, + "arborescent": 2.88e-08, + "artemas": 2.88e-08, + "assman": 2.88e-08, + "astrologically": 2.88e-08, + "atlatl": 2.88e-08, + "atomicity": 2.88e-08, + "automatization": 2.88e-08, + "axiology": 2.88e-08, + "backchat": 2.88e-08, + "bashaw": 2.88e-08, + "bathyal": 2.88e-08, + "bedene": 2.88e-08, + "berberian": 2.88e-08, + "bestower": 2.88e-08, + "bimetallism": 2.88e-08, + "bizen": 2.88e-08, + "bogomil": 2.88e-08, + "bosomy": 2.88e-08, + "boswellia": 2.88e-08, + "bouse": 2.88e-08, + "bowlful": 2.88e-08, + "breadbox": 2.88e-08, + "breadmaker": 2.88e-08, + "bronchopulmonary": 2.88e-08, + "burbot": 2.88e-08, + "cabinetmaking": 2.88e-08, + "cadetship": 2.88e-08, + "camb": 2.88e-08, + "camponotus": 2.88e-08, + "cebus": 1.62e-08, + "centerless": 2.88e-08, + "cephalopoda": 2.88e-08, + "cestus": 2.88e-08, + "cheilitis": 2.88e-08, + "chera": 2.88e-08, + "chlamys": 2.88e-08, + "cimex": 2.88e-08, + "clouted": 2.88e-08, + "complected": 2.88e-08, + "conspectus": 2.88e-08, + "coregonus": 2.88e-08, + "coronae": 2.88e-08, + "coronagraph": 2.88e-08, + "corvina": 2.88e-08, + "cotuit": 2.88e-08, + "couth": 2.88e-08, + "coverture": 2.88e-08, + "cowal": 2.88e-08, + "cryptorchidism": 2.88e-08, + "cyclopropane": 2.88e-08, + "cynara": 2.88e-08, + "daggy": 2.88e-08, + "debus": 2.88e-08, + "dehiscent": 2.88e-08, + "demob": 2.88e-08, + "demodex": 2.88e-08, + "deregister": 2.88e-08, + "divertor": 2.88e-08, + "documental": 2.88e-08, + "dosis": 2.88e-08, + "dowser": 2.88e-08, + "drachmae": 2.88e-08, + "ecchymosis": 2.88e-08, + "edomite": 2.88e-08, + "effluvia": 2.88e-08, + "electrodeposition": 2.88e-08, + "electropositive": 2.88e-08, + "electrotype": 2.88e-08, + "enam": 2.88e-08, + "enchantingly": 2.88e-08, + "endophyte": 2.88e-08, + "ennead": 2.88e-08, + "enviably": 2.88e-08, + "europeanism": 2.88e-08, + "evidentially": 2.88e-08, + "exeunt": 2.88e-08, + "extrajudicially": 2.88e-08, + "extravert": 2.88e-08, + "faddle": 2.88e-08, + "fady": 2.88e-08, + "fastidiousness": 2.88e-08, + "feminin": 2.88e-08, + "fimbriated": 2.88e-08, + "fitly": 2.88e-08, + "flesher": 2.88e-08, + "footpad": 2.88e-08, + "fumigant": 2.88e-08, + "furfural": 2.88e-08, + "galop": 2.88e-08, + "gamester": 2.88e-08, + "gastroscopy": 2.88e-08, + "gaudily": 2.88e-08, + "greathead": 2.88e-08, + "griever": 2.88e-08, + "grippe": 2.88e-08, + "guz": 2.88e-08, + "hagiographical": 2.88e-08, + "haisla": 2.88e-08, + "hardhead": 2.88e-08, + "haulier": 2.88e-08, + "havanese": 2.88e-08, + "heartful": 2.88e-08, + "heartiness": 2.88e-08, + "heathenism": 2.88e-08, + "hegelianism": 2.88e-08, + "heliograph": 2.88e-08, + "hereupon": 2.88e-08, + "hobbyhorse": 2.88e-08, + "huke": 2.88e-08, + "huldah": 2.88e-08, + "hurrian": 2.88e-08, + "hypergamy": 2.88e-08, + "icaria": 2.88e-08, + "indeterminism": 2.88e-08, + "inexpressibly": 2.88e-08, + "ingathering": 2.88e-08, + "inia": 2.88e-08, + "interpellation": 2.88e-08, + "involucre": 2.88e-08, + "isba": 2.88e-08, + "jocularity": 2.88e-08, + "jowly": 2.88e-08, + "judex": 2.88e-08, + "kalian": 2.88e-08, + "keena": 2.88e-08, + "kench": 2.88e-08, + "labella": 2.88e-08, + "landlubber": 2.88e-08, + "lanner": 2.88e-08, + "layette": 2.88e-08, + "leatherjacket": 2.88e-08, + "lehua": 2.88e-08, + "ligure": 2.88e-08, + "lutra": 2.88e-08, + "malaprop": 2.88e-08, + "maniple": 2.88e-08, + "maranhao": 2.88e-08, + "marquesan": 2.88e-08, + "marree": 2.88e-08, + "masculinist": 2.88e-08, + "matagalpa": 2.88e-08, + "matka": 2.88e-08, + "methacrylic": 2.88e-08, + "micturition": 2.88e-08, + "montagnais": 2.88e-08, + "motiveless": 2.88e-08, + "muchly": 2.88e-08, + "mummify": 2.88e-08, + "myrica": 2.88e-08, + "neeld": 2.88e-08, + "nereis": 2.88e-08, + "neuropathologist": 2.88e-08, + "neuroptera": 2.88e-08, + "newsworthiness": 2.88e-08, + "nonblack": 2.88e-08, + "nonexempt": 2.88e-08, + "nonsensically": 2.88e-08, + "nothofagus": 2.88e-08, + "noumenon": 2.88e-08, + "oceanian": 2.88e-08, + "octuple": 2.88e-08, + "oenomaus": 2.88e-08, + "onychomycosis": 2.88e-08, + "oscan": 2.88e-08, + "outwood": 2.88e-08, + "ouzel": 2.88e-08, + "overdetermined": 2.88e-08, + "overtax": 2.88e-08, + "oxfordian": 2.88e-08, + "paleoanthropology": 2.88e-08, + "pallu": 2.88e-08, + "panhead": 2.88e-08, + "peignoir": 2.88e-08, + "periorbital": 2.88e-08, + "pernickety": 2.88e-08, + "phycology": 2.88e-08, + "pignon": 2.88e-08, + "pillager": 2.88e-08, + "pimenta": 2.88e-08, + "plantaris": 2.88e-08, + "podocarpus": 2.88e-08, + "propionibacterium": 2.88e-08, + "proration": 2.88e-08, + "prosecutrix": 2.88e-08, + "quadrat": 2.88e-08, + "quiles": 2.88e-08, + "quinquennial": 2.88e-08, + "quipu": 2.88e-08, + "reface": 2.88e-08, + "reforge": 2.88e-08, + "relook": 2.88e-08, + "remanence": 2.88e-08, + "remineralization": 2.88e-08, + "renumber": 2.88e-08, + "reselection": 2.88e-08, + "riata": 2.88e-08, + "sacramentary": 2.88e-08, + "sankhya": 2.88e-08, + "sawney": 2.88e-08, + "saxifrage": 2.88e-08, + "scansion": 2.88e-08, + "scholastically": 2.88e-08, + "screamy": 2.88e-08, + "semiconscious": 2.88e-08, + "serger": 2.88e-08, + "shamba": 2.88e-08, + "shippy": 2.88e-08, + "silvering": 2.88e-08, + "slote": 2.88e-08, + "snork": 2.88e-08, + "sophistic": 2.88e-08, + "specky": 2.88e-08, + "spectatorship": 2.88e-08, + "spiffed": 2.88e-08, + "splosh": 2.88e-08, + "spooler": 2.88e-08, + "staller": 2.88e-08, + "stope": 2.88e-08, + "stratigraphical": 2.88e-08, + "struggler": 2.88e-08, + "stupefaction": 2.88e-08, + "subassembly": 2.88e-08, + "subequal": 2.88e-08, + "submedian": 2.88e-08, + "subspecific": 2.88e-08, + "suffuse": 2.88e-08, + "superstitiously": 2.88e-08, + "supervenience": 2.88e-08, + "surd": 2.88e-08, + "swimmable": 2.88e-08, + "sybarite": 2.88e-08, + "tasse": 2.88e-08, + "tenter": 2.88e-08, + "tessellate": 2.88e-08, + "theca": 2.88e-08, + "thistledown": 2.88e-08, + "tickly": 2.88e-08, + "timesaving": 2.88e-08, + "tind": 2.88e-08, + "tishri": 2.88e-08, + "tosk": 2.88e-08, + "trichogramma": 2.88e-08, + "tummel": 2.88e-08, + "tuque": 2.88e-08, + "tynwald": 2.88e-08, + "typic": 2.88e-08, + "unactivated": 2.88e-08, + "unanchored": 2.88e-08, + "unblended": 2.88e-08, + "unclogged": 2.88e-08, + "uncoil": 2.88e-08, + "undemonstrative": 2.88e-08, + "unfound": 2.88e-08, + "unlocker": 2.88e-08, + "unloveable": 2.88e-08, + "unstimulated": 2.88e-08, + "unventilated": 2.88e-08, + "upcast": 2.88e-08, + "vaccinator": 2.88e-08, + "vinculum": 2.88e-08, + "vindex": 2.88e-08, + "viremia": 2.88e-08, + "vitelline": 2.88e-08, + "volubly": 2.88e-08, + "whereabout": 2.88e-08, + "whipsaw": 2.88e-08, + "winningly": 2.88e-08, + "yoursel": 2.88e-08, + "yuchi": 2.88e-08, + "ablate": 2.82e-08, + "acanthosis": 2.82e-08, + "adulatory": 2.82e-08, + "adventism": 2.82e-08, + "agonal": 2.82e-08, + "akha": 2.82e-08, + "akra": 2.82e-08, + "alces": 2.82e-08, + "amazonite": 2.82e-08, + "androgyne": 2.82e-08, + "antepenultimate": 2.82e-08, + "aphthous": 2.82e-08, + "appetitive": 2.82e-08, + "arsenical": 2.82e-08, + "artfulness": 2.82e-08, + "assumptive": 2.82e-08, + "auricula": 2.82e-08, + "autolysis": 2.82e-08, + "basely": 2.82e-08, + "baun": 2.82e-08, + "bedder": 2.82e-08, + "bhil": 2.82e-08, + "biconvex": 2.82e-08, + "bilin": 2.57e-08, + "bimolecular": 2.82e-08, + "bioplastic": 2.82e-08, + "boosterism": 2.82e-08, + "bosher": 2.82e-08, + "bracingly": 2.82e-08, + "breeched": 2.82e-08, + "brei": 2.82e-08, + "bryozoa": 2.82e-08, + "buddleia": 2.82e-08, + "butterfish": 2.82e-08, + "calamansi": 2.82e-08, + "calcify": 2.82e-08, + "calluna": 2.82e-08, + "carbonari": 2.82e-08, + "catafalque": 2.82e-08, + "catling": 2.82e-08, + "cauline": 2.82e-08, + "cimbri": 2.82e-08, + "cladosporium": 2.82e-08, + "claimable": 2.82e-08, + "climacteric": 2.82e-08, + "coagulase": 2.82e-08, + "collectability": 2.82e-08, + "commissionaire": 2.82e-08, + "commutable": 2.82e-08, + "contractible": 2.82e-08, + "contrariness": 2.82e-08, + "convolute": 2.82e-08, + "copen": 2.82e-08, + "coque": 2.82e-08, + "cornelian": 2.82e-08, + "creese": 2.82e-08, + "cuadra": 2.82e-08, + "cumbre": 2.82e-08, + "cuprous": 2.82e-08, + "debark": 2.82e-08, + "deckle": 2.82e-08, + "decorously": 2.82e-08, + "denominate": 2.82e-08, + "dextrin": 2.82e-08, + "dicalcium": 2.82e-08, + "directress": 2.82e-08, + "disorganize": 2.82e-08, + "dissuasive": 2.82e-08, + "distend": 2.82e-08, + "distractibility": 2.82e-08, + "diverticulosis": 2.82e-08, + "dominie": 2.82e-08, + "doodad": 2.82e-08, + "dulse": 2.82e-08, + "dynast": 2.82e-08, + "edgeless": 2.82e-08, + "einkorn": 2.82e-08, + "einsteinian": 2.82e-08, + "electrosurgical": 2.82e-08, + "eliminative": 2.82e-08, + "elute": 2.82e-08, + "embraceable": 2.82e-08, + "endometritis": 2.82e-08, + "escadrille": 2.82e-08, + "esparto": 2.82e-08, + "faeroe": 2.82e-08, + "falx": 2.82e-08, + "felidae": 2.82e-08, + "filamentary": 2.82e-08, + "fimbria": 2.82e-08, + "flageolet": 2.82e-08, + "flayer": 2.82e-08, + "fluked": 2.82e-08, + "flummery": 2.82e-08, + "formulator": 2.82e-08, + "gadwall": 2.82e-08, + "galusha": 2.82e-08, + "gambusia": 2.82e-08, + "giardiasis": 2.82e-08, + "glomus": 2.82e-08, + "glossopharyngeal": 2.82e-08, + "governable": 2.82e-08, + "graphitization": 2.82e-08, + "haworthia": 2.82e-08, + "heedlessly": 2.82e-08, + "heliconia": 2.82e-08, + "helladic": 2.82e-08, + "hemostat": 2.82e-08, + "hereabout": 2.82e-08, + "hexyl": 2.82e-08, + "histochemistry": 2.82e-08, + "honeywood": 2.82e-08, + "husting": 2.82e-08, + "hyperkeratosis": 2.82e-08, + "immoderately": 2.82e-08, + "incisiveness": 2.82e-08, + "indology": 2.82e-08, + "infundibulum": 2.82e-08, + "intellectuality": 2.82e-08, + "interuniversity": 2.82e-08, + "intervale": 2.82e-08, + "intrusively": 2.82e-08, + "invoker": 2.82e-08, + "iodate": 2.82e-08, + "jambos": 2.82e-08, + "kabuli": 2.82e-08, + "kerplunk": 2.82e-08, + "knyaz": 2.82e-08, + "laibach": 2.82e-08, + "lairy": 2.82e-08, + "lamby": 2.82e-08, + "laurentide": 2.82e-08, + "lazybones": 2.82e-08, + "learnership": 2.82e-08, + "leastways": 2.82e-08, + "leathercraft": 2.82e-08, + "leiomyosarcoma": 2.82e-08, + "lenis": 1.51e-08, + "lepomis": 2.82e-08, + "lifelessly": 2.82e-08, + "litterateur": 2.82e-08, + "liyuan": 2.82e-08, + "loftiness": 2.82e-08, + "loganberry": 2.82e-08, + "lowan": 2.82e-08, + "lowboy": 2.82e-08, + "lupercalia": 2.82e-08, + "mahant": 2.82e-08, + "malonyl": 2.82e-08, + "merse": 2.82e-08, + "meteoritic": 2.82e-08, + "micronucleus": 2.82e-08, + "microscopist": 2.82e-08, + "mischievousness": 2.82e-08, + "moler": 2.82e-08, + "moop": 2.82e-08, + "mudhole": 2.82e-08, + "mulley": 2.82e-08, + "multicentric": 2.82e-08, + "murrain": 2.82e-08, + "namaqua": 2.82e-08, + "nazirite": 2.82e-08, + "neuralgic": 2.82e-08, + "neuropathological": 2.82e-08, + "nightcaps": 2.82e-08, + "niter": 2.82e-08, + "nymphet": 2.82e-08, + "okrug": 2.82e-08, + "organdy": 2.82e-08, + "osmunda": 2.82e-08, + "overact": 2.82e-08, + "overexpress": 2.82e-08, + "overprice": 2.82e-08, + "paduan": 2.82e-08, + "parasitically": 2.82e-08, + "parch": 2.82e-08, + "pardonable": 2.82e-08, + "parvis": 2.82e-08, + "pastille": 2.82e-08, + "patchily": 2.82e-08, + "pean": 2.82e-08, + "peneplain": 2.82e-08, + "permute": 2.82e-08, + "photogrammetric": 2.82e-08, + "pinkness": 2.82e-08, + "plangent": 2.82e-08, + "plastically": 2.82e-08, + "pleroma": 2.82e-08, + "pokeweed": 2.82e-08, + "postdate": 2.82e-08, + "potong": 2.82e-08, + "preciseness": 2.82e-08, + "prescript": 2.82e-08, + "prevision": 2.82e-08, + "primaried": 2.82e-08, + "prolyl": 2.82e-08, + "proofer": 2.82e-08, + "protist": 2.82e-08, + "pyroelectric": 2.82e-08, + "quadripartite": 2.82e-08, + "quiapo": 2.82e-08, + "radiochemical": 2.82e-08, + "reconvert": 2.82e-08, + "redound": 2.82e-08, + "residentiary": 2.82e-08, + "residuum": 2.82e-08, + "revisional": 2.82e-08, + "roadman": 2.82e-08, + "roding": 2.82e-08, + "rusticity": 2.82e-08, + "saleroom": 2.82e-08, + "sasan": 2.82e-08, + "screamingly": 2.82e-08, + "seasonably": 2.82e-08, + "secessionism": 2.82e-08, + "sedat": 2.82e-08, + "sexto": 2.82e-08, + "shatteringly": 2.82e-08, + "sheepherder": 2.82e-08, + "shier": 2.82e-08, + "shininess": 2.82e-08, + "sirene": 2.82e-08, + "skel": 2.82e-08, + "skep": 2.82e-08, + "slainte": 2.82e-08, + "smacker": 2.82e-08, + "socinian": 2.82e-08, + "soldan": 2.82e-08, + "soss": 2.82e-08, + "spikelet": 2.82e-08, + "squareness": 2.82e-08, + "stelar": 2.82e-08, + "stereogram": 2.82e-08, + "sternocleidomastoid": 2.82e-08, + "stoss": 2.82e-08, + "stylishness": 2.82e-08, + "stylize": 2.82e-08, + "submental": 2.82e-08, + "sumptuousness": 2.82e-08, + "superabundant": 2.82e-08, + "superhumanly": 2.82e-08, + "supraclavicular": 2.82e-08, + "synchromesh": 2.82e-08, + "talisay": 2.82e-08, + "tappa": 2.82e-08, + "tartlet": 2.82e-08, + "tastelessness": 2.82e-08, + "taun": 2.82e-08, + "telt": 2.82e-08, + "tetanic": 2.82e-08, + "tetrameter": 2.82e-08, + "thersites": 2.82e-08, + "theurgy": 2.82e-08, + "thuggee": 2.82e-08, + "tiding": 2.82e-08, + "titbit": 2.82e-08, + "tobiah": 2.82e-08, + "totara": 2.82e-08, + "tournay": 2.82e-08, + "transalpine": 2.82e-08, + "transversus": 2.82e-08, + "trenchantly": 2.82e-08, + "tricarboxylic": 2.82e-08, + "triethylamine": 2.82e-08, + "triphenylphosphine": 2.82e-08, + "trisodium": 2.82e-08, + "trone": 2.82e-08, + "trutta": 2.82e-08, + "tryp": 2.82e-08, + "tumorous": 2.82e-08, + "typographically": 2.82e-08, + "unattested": 2.82e-08, + "unbreathable": 2.82e-08, + "underdown": 2.82e-08, + "unexpectedness": 2.82e-08, + "unfroze": 2.82e-08, + "uninflected": 2.82e-08, + "uninvestigated": 2.82e-08, + "unitedly": 2.82e-08, + "unmusical": 2.82e-08, + "unnamable": 2.82e-08, + "unpinned": 2.82e-08, + "unpolarized": 2.82e-08, + "unsheathing": 2.82e-08, + "unsworn": 2.82e-08, + "untaken": 2.82e-08, + "unwired": 2.82e-08, + "upbraid": 2.82e-08, + "vallum": 2.82e-08, + "venite": 2.82e-08, + "verticillium": 2.82e-08, + "victual": 2.82e-08, + "volatilization": 2.82e-08, + "vomer": 2.82e-08, + "waviness": 2.82e-08, + "weldability": 2.82e-08, + "wenonah": 2.82e-08, + "windflower": 2.82e-08, + "womanism": 2.82e-08, + "wonna": 2.82e-08, + "xiphoid": 2.82e-08, + "xylan": 2.82e-08, + "aculeata": 2.75e-08, + "aedile": 2.75e-08, + "allworthy": 2.75e-08, + "alman": 2.75e-08, + "alveolus": 2.75e-08, + "ammer": 2.75e-08, + "anabaptism": 2.75e-08, + "anthurium": 2.75e-08, + "anticlinal": 2.75e-08, + "apelike": 2.75e-08, + "apotropaic": 2.75e-08, + "aralia": 2.75e-08, + "arthrodesis": 2.75e-08, + "ashling": 2.75e-08, + "asterias": 2.75e-08, + "autobiographer": 2.75e-08, + "backlands": 2.75e-08, + "bantay": 2.75e-08, + "bater": 2.75e-08, + "bauch": 2.75e-08, + "beanery": 2.75e-08, + "bearding": 2.75e-08, + "bellicosity": 2.75e-08, + "besan": 2.75e-08, + "bhut": 2.75e-08, + "boliviano": 2.75e-08, + "brail": 2.75e-08, + "brehon": 2.75e-08, + "brickmaking": 2.75e-08, + "brocaded": 2.75e-08, + "bronchoalveolar": 2.75e-08, + "burgee": 2.75e-08, + "bushwhack": 2.75e-08, + "cardroom": 2.75e-08, + "caseinate": 2.75e-08, + "caudally": 2.75e-08, + "cheesemonger": 2.75e-08, + "chiasmus": 2.75e-08, + "chinaware": 2.75e-08, + "chiroptera": 2.75e-08, + "chrysomelidae": 2.75e-08, + "chugger": 2.75e-08, + "cigarillo": 2.75e-08, + "cinnamomum": 2.75e-08, + "circumambulation": 2.75e-08, + "circumferentially": 2.75e-08, + "cirsium": 2.75e-08, + "clavicular": 2.75e-08, + "cloyingly": 2.75e-08, + "coattail": 2.75e-08, + "cockscomb": 2.75e-08, + "coconspirator": 2.75e-08, + "condylar": 2.75e-08, + "contemporaneity": 2.75e-08, + "coving": 2.75e-08, + "creedal": 2.75e-08, + "crosspoint": 2.75e-08, + "cuboidal": 2.75e-08, + "cuckoldry": 2.75e-08, + "curculio": 2.75e-08, + "curette": 2.75e-08, + "daur": 2.75e-08, + "decidual": 2.75e-08, + "delphin": 2.75e-08, + "denseness": 2.75e-08, + "deprecatingly": 2.75e-08, + "diglossia": 2.75e-08, + "dilettanti": 2.75e-08, + "dissuasion": 2.75e-08, + "distressful": 2.75e-08, + "disyllabic": 2.75e-08, + "dixiecrat": 2.75e-08, + "dollmaker": 2.75e-08, + "dorine": 2.75e-08, + "dunciad": 2.75e-08, + "dunderhead": 2.75e-08, + "effectuation": 2.75e-08, + "entrepot": 2.75e-08, + "ephah": 2.75e-08, + "epilation": 2.75e-08, + "equalist": 2.75e-08, + "excluder": 2.75e-08, + "expiatory": 2.75e-08, + "ferrocyanide": 2.75e-08, + "feudalist": 2.75e-08, + "foreseeability": 2.75e-08, + "gatch": 2.75e-08, + "gavia": 2.75e-08, + "genal": 2.75e-08, + "gesticulation": 2.75e-08, + "gettable": 2.75e-08, + "ghostlike": 2.75e-08, + "goldcrest": 2.75e-08, + "greasiness": 2.75e-08, + "gunrunner": 2.75e-08, + "gyps": 2.75e-08, + "haab": 2.75e-08, + "hagger": 2.75e-08, + "hako": 2.75e-08, + "halogenation": 2.75e-08, + "halteres": 2.75e-08, + "harpooner": 2.75e-08, + "hellbender": 2.75e-08, + "hereinabove": 2.75e-08, + "histon": 2.75e-08, + "hognose": 2.75e-08, + "homogenate": 2.75e-08, + "homozygosity": 2.75e-08, + "hooven": 2.75e-08, + "hydrologically": 2.75e-08, + "hydronium": 2.75e-08, + "hyperacusis": 2.75e-08, + "iliotibial": 2.75e-08, + "imbed": 2.75e-08, + "inelegantly": 2.75e-08, + "inextinguishable": 2.75e-08, + "ingestible": 2.75e-08, + "irreconcilably": 2.75e-08, + "ischial": 2.75e-08, + "jaun": 2.75e-08, + "kinetochore": 2.75e-08, + "knab": 2.75e-08, + "lablab": 2.75e-08, + "laddering": 2.75e-08, + "legitimist": 2.75e-08, + "leiomyoma": 2.75e-08, + "leisured": 2.75e-08, + "lipan": 2.75e-08, + "litas": 1.7e-08, + "littermate": 2.75e-08, + "littleness": 2.75e-08, + "loanable": 2.75e-08, + "longway": 2.75e-08, + "lucentio": 2.75e-08, + "luxation": 2.75e-08, + "luxuriantly": 2.75e-08, + "mabinogion": 2.75e-08, + "maffia": 2.75e-08, + "mahua": 2.75e-08, + "malvaceae": 2.75e-08, + "marcan": 2.75e-08, + "marmota": 2.75e-08, + "masticatory": 2.75e-08, + "matamata": 2.75e-08, + "metalware": 2.75e-08, + "metazoa": 2.75e-08, + "milkfish": 2.75e-08, + "moderner": 2.75e-08, + "monzonite": 2.75e-08, + "mucor": 2.75e-08, + "muscatel": 2.75e-08, + "necrology": 2.75e-08, + "nereid": 2.75e-08, + "nevadan": 2.75e-08, + "noncontiguous": 2.75e-08, + "obsequiously": 2.75e-08, + "omphalos": 2.75e-08, + "oneiric": 2.75e-08, + "openhearted": 2.75e-08, + "outstay": 2.75e-08, + "outthink": 2.75e-08, + "overbook": 2.75e-08, + "overdress": 2.75e-08, + "overmatch": 2.75e-08, + "oxygenator": 2.75e-08, + "ozonation": 2.75e-08, + "palely": 2.75e-08, + "parallelepiped": 2.75e-08, + "parallelize": 2.75e-08, + "pardoner": 2.75e-08, + "parto": 2.75e-08, + "paternalist": 2.75e-08, + "patola": 2.75e-08, + "pentad": 2.75e-08, + "phosphite": 2.75e-08, + "photoactive": 2.75e-08, + "physiography": 2.75e-08, + "plak": 2.75e-08, + "pluralize": 2.75e-08, + "plutonian": 2.75e-08, + "polydipsia": 2.75e-08, + "polymyositis": 2.75e-08, + "posca": 2.75e-08, + "preborn": 2.75e-08, + "predella": 2.75e-08, + "prepubertal": 2.75e-08, + "progressivity": 2.75e-08, + "propionyl": 2.75e-08, + "puling": 2.75e-08, + "purlin": 2.75e-08, + "putrefy": 2.75e-08, + "pyrrolidine": 2.75e-08, + "quadruplex": 2.75e-08, + "radicle": 2.75e-08, + "radicular": 2.75e-08, + "reductant": 2.75e-08, + "reinette": 2.75e-08, + "respray": 2.75e-08, + "retreatment": 2.75e-08, + "rheumy": 2.75e-08, + "rhizopus": 2.75e-08, + "rhizotomy": 2.75e-08, + "rhomb": 2.75e-08, + "rhythmicity": 2.75e-08, + "robinet": 2.75e-08, + "rolley": 2.75e-08, + "roosted": 2.75e-08, + "rotan": 2.75e-08, + "rustproof": 2.75e-08, + "sackful": 2.75e-08, + "samani": 2.75e-08, + "sarracenia": 2.75e-08, + "satinwood": 2.75e-08, + "scantling": 2.75e-08, + "securement": 2.75e-08, + "selaginella": 2.75e-08, + "sextile": 2.75e-08, + "shadiness": 2.75e-08, + "shamer": 2.75e-08, + "shoebill": 2.75e-08, + "silvertip": 2.75e-08, + "slon": 2.75e-08, + "snowberry": 2.75e-08, + "somnus": 2.75e-08, + "soubise": 2.75e-08, + "spadework": 2.75e-08, + "sparge": 2.75e-08, + "spass": 2.75e-08, + "spatchcock": 2.75e-08, + "sphygmomanometer": 2.75e-08, + "spiritless": 2.75e-08, + "spirometer": 2.75e-08, + "spitefulness": 2.75e-08, + "squeezable": 2.75e-08, + "stemmer": 2.75e-08, + "straggle": 2.75e-08, + "substantiality": 2.75e-08, + "sulfonyl": 2.75e-08, + "supererogatory": 2.75e-08, + "suppliant": 2.75e-08, + "suspensive": 2.75e-08, + "sutural": 2.75e-08, + "swatow": 2.75e-08, + "syncretistic": 2.75e-08, + "tailrace": 2.75e-08, + "tatian": 2.75e-08, + "tecla": 2.75e-08, + "tenebrous": 2.75e-08, + "tergite": 2.75e-08, + "tesuque": 2.75e-08, + "tetrahydro": 2.75e-08, + "textualism": 2.75e-08, + "thornless": 2.75e-08, + "thymoma": 2.75e-08, + "tical": 2.75e-08, + "tiffy": 2.75e-08, + "tobira": 2.75e-08, + "transfix": 2.75e-08, + "triduum": 2.75e-08, + "trochlear": 2.75e-08, + "tulasi": 2.75e-08, + "tungus": 2.75e-08, + "ulcerate": 2.75e-08, + "unattractiveness": 2.75e-08, + "unchosen": 2.75e-08, + "uncircumcision": 2.75e-08, + "uncited": 2.75e-08, + "unconcern": 2.75e-08, + "unestablished": 2.75e-08, + "unexcavated": 2.75e-08, + "unheroic": 2.75e-08, + "unhitched": 2.75e-08, + "unhoused": 2.75e-08, + "unpin": 2.75e-08, + "unscarred": 2.75e-08, + "unsweet": 2.75e-08, + "unvested": 2.75e-08, + "verbalization": 2.75e-08, + "veridical": 2.75e-08, + "victimizer": 2.75e-08, + "vulval": 2.75e-08, + "waldensian": 2.75e-08, + "wavelike": 2.75e-08, + "weathercock": 2.75e-08, + "weatherproofing": 2.75e-08, + "westernize": 2.75e-08, + "widdershins": 2.75e-08, + "wishfully": 2.75e-08, + "yapper": 2.75e-08, + "yelm": 2.75e-08, + "zoonosis": 2.75e-08, + "zuleika": 2.75e-08, + "absolutive": 2.69e-08, + "adaxial": 2.69e-08, + "adjudicative": 2.69e-08, + "adulterant": 2.69e-08, + "aery": 2.69e-08, + "agglutinin": 2.69e-08, + "akey": 2.69e-08, + "algonkian": 2.69e-08, + "alkylene": 2.69e-08, + "allochthonous": 2.69e-08, + "allophone": 2.69e-08, + "alula": 2.69e-08, + "aminta": 2.69e-08, + "amoskeag": 2.69e-08, + "anastomotic": 2.69e-08, + "andropogon": 2.69e-08, + "apophatic": 2.69e-08, + "appendicular": 2.69e-08, + "arguer": 2.69e-08, + "ascanius": 2.69e-08, + "asterion": 2.69e-08, + "autist": 2.69e-08, + "awin": 2.69e-08, + "axiomatization": 2.69e-08, + "aztecan": 2.69e-08, + "bacchic": 2.69e-08, + "bailment": 2.69e-08, + "bassus": 2.69e-08, + "bedframe": 2.69e-08, + "bibber": 2.69e-08, + "bioscope": 2.69e-08, + "bleb": 2.69e-08, + "bondar": 2.69e-08, + "boud": 2.69e-08, + "boundlessly": 2.69e-08, + "brecciated": 2.69e-08, + "bridgeway": 2.69e-08, + "burgage": 2.69e-08, + "cader": 2.69e-08, + "cannoneer": 2.69e-08, + "caracter": 2.69e-08, + "cardmaking": 2.69e-08, + "castigation": 2.69e-08, + "catechu": 2.69e-08, + "celtis": 2.69e-08, + "centavo": 2.69e-08, + "cheke": 2.69e-08, + "chinch": 2.69e-08, + "chiropody": 2.69e-08, + "chloroprene": 2.69e-08, + "choler": 2.69e-08, + "clasper": 2.69e-08, + "clayoquot": 2.69e-08, + "cleanable": 2.69e-08, + "clinicopathological": 2.69e-08, + "clinopyroxene": 2.69e-08, + "cobus": 2.69e-08, + "coccidiosis": 2.69e-08, + "cockspur": 2.69e-08, + "comino": 2.69e-08, + "conflictive": 2.69e-08, + "conidial": 2.69e-08, + "crampon": 2.69e-08, + "craniosacral": 2.69e-08, + "crannog": 2.69e-08, + "creditability": 2.69e-08, + "crowdy": 2.69e-08, + "crustless": 2.69e-08, + "cryptogenic": 2.69e-08, + "cuber": 2.69e-08, + "cutover": 2.69e-08, + "cystectomy": 2.69e-08, + "danseuse": 2.69e-08, + "dayroom": 2.69e-08, + "dematerialization": 2.69e-08, + "dexterously": 2.69e-08, + "dicotyledonous": 2.69e-08, + "discernibly": 2.69e-08, + "diverticular": 2.69e-08, + "doodler": 2.69e-08, + "dreg": 2.69e-08, + "dugal": 2.69e-08, + "durometer": 2.69e-08, + "dysuria": 2.69e-08, + "echolalia": 2.69e-08, + "eclosion": 2.69e-08, + "efficaciously": 2.69e-08, + "embar": 2.69e-08, + "equational": 2.69e-08, + "equinoctial": 2.69e-08, + "erotomania": 2.69e-08, + "errorless": 2.69e-08, + "etalon": 2.69e-08, + "ethmoidal": 2.69e-08, + "evolute": 2.69e-08, + "fasciola": 2.69e-08, + "felucca": 2.69e-08, + "folium": 2.69e-08, + "fontanel": 2.69e-08, + "foreshock": 2.69e-08, + "gadding": 2.69e-08, + "gearless": 2.69e-08, + "giffgaff": 2.69e-08, + "glasswork": 2.69e-08, + "godward": 2.69e-08, + "granter": 2.69e-08, + "grece": 2.69e-08, + "gristly": 2.69e-08, + "grouts": 1.02e-08, + "gulo": 2.69e-08, + "gunmaker": 2.69e-08, + "gutty": 2.69e-08, + "hask": 2.69e-08, + "heathered": 2.69e-08, + "hempen": 2.69e-08, + "hempseed": 2.69e-08, + "heuchera": 2.69e-08, + "hinny": 2.69e-08, + "histochemical": 2.69e-08, + "homebred": 2.69e-08, + "horridly": 2.69e-08, + "housemother": 2.69e-08, + "hurter": 2.69e-08, + "iconographical": 2.69e-08, + "idiosyncratically": 2.69e-08, + "importune": 2.69e-08, + "importunity": 2.69e-08, + "inscrutability": 2.69e-08, + "insincerely": 2.69e-08, + "interlingua": 2.69e-08, + "intermedium": 2.69e-08, + "intermontane": 2.69e-08, + "interphalangeal": 2.69e-08, + "iontophoresis": 2.69e-08, + "karwar": 2.69e-08, + "keelboat": 2.69e-08, + "kinsfolk": 2.69e-08, + "kyah": 2.69e-08, + "labeler": 2.69e-08, + "lacunar": 2.69e-08, + "laigh": 2.69e-08, + "larcenous": 2.69e-08, + "lavandula": 2.69e-08, + "levirate": 2.69e-08, + "limbers": 2.69e-08, + "lipping": 2.69e-08, + "lungful": 2.69e-08, + "macropus": 2.69e-08, + "malignity": 2.69e-08, + "malter": 2.69e-08, + "manful": 2.69e-08, + "manzana": 2.69e-08, + "massilia": 2.69e-08, + "metalcraft": 2.69e-08, + "metalinguistic": 2.69e-08, + "metonymic": 2.69e-08, + "michigander": 2.69e-08, + "misidentify": 2.69e-08, + "morosely": 2.69e-08, + "morphometry": 2.69e-08, + "mortarboard": 2.69e-08, + "murmuration": 2.69e-08, + "myalgic": 2.69e-08, + "myotonia": 2.69e-08, + "myrtaceae": 2.69e-08, + "myxoma": 2.69e-08, + "natrix": 2.69e-08, + "nematoda": 2.69e-08, + "nife": 2.69e-08, + "nohow": 2.69e-08, + "nonsignificant": 2.69e-08, + "nowaday": 2.69e-08, + "nucleoprotein": 2.69e-08, + "nullifier": 2.69e-08, + "nummi": 2.69e-08, + "ocimum": 2.69e-08, + "oddments": 2.69e-08, + "odocoileus": 2.69e-08, + "ogress": 2.69e-08, + "oogenesis": 2.69e-08, + "oppositionist": 2.69e-08, + "orthoclase": 2.69e-08, + "osse": 2.69e-08, + "outbreeding": 2.69e-08, + "outrace": 2.69e-08, + "outworn": 2.69e-08, + "overabundant": 2.69e-08, + "pantaleon": 2.69e-08, + "papilledema": 2.69e-08, + "participial": 2.69e-08, + "patination": 2.69e-08, + "penurious": 2.69e-08, + "phenanthrene": 2.69e-08, + "phosphoryl": 2.69e-08, + "pierhead": 2.69e-08, + "pietas": 2.69e-08, + "pinked": 2.69e-08, + "plainsman": 2.69e-08, + "plantae": 2.69e-08, + "pneumococcus": 2.69e-08, + "poil": 2.69e-08, + "polt": 2.69e-08, + "polypodium": 2.69e-08, + "poorness": 2.69e-08, + "postelection": 2.69e-08, + "postganglionic": 2.69e-08, + "precess": 2.69e-08, + "preclusion": 2.69e-08, + "prefilter": 2.69e-08, + "pressurizer": 2.69e-08, + "professedly": 2.69e-08, + "prosthetist": 2.69e-08, + "protactinium": 2.69e-08, + "pulu": 2.69e-08, + "radiometry": 2.69e-08, + "rapine": 2.69e-08, + "recognizability": 2.69e-08, + "reeler": 2.69e-08, + "reship": 2.69e-08, + "reutter": 2.69e-08, + "reverberatory": 2.69e-08, + "rickettsial": 2.69e-08, + "riden": 2.69e-08, + "rumbo": 2.69e-08, + "rushen": 2.69e-08, + "sannyasi": 2.69e-08, + "sansei": 2.69e-08, + "saturable": 2.69e-08, + "saum": 2.69e-08, + "scalawag": 2.69e-08, + "seldomly": 2.69e-08, + "shott": 2.69e-08, + "sikar": 2.69e-08, + "siphonal": 2.69e-08, + "skift": 2.69e-08, + "sleekness": 2.69e-08, + "slitted": 2.69e-08, + "sloka": 2.69e-08, + "snoek": 2.69e-08, + "socle": 2.69e-08, + "solemnization": 2.69e-08, + "solvability": 2.69e-08, + "soroptimist": 2.69e-08, + "soubrette": 2.69e-08, + "specula": 2.69e-08, + "spirea": 2.69e-08, + "spume": 2.69e-08, + "squiffy": 2.69e-08, + "strelitz": 2.69e-08, + "strengthener": 2.69e-08, + "subaqueous": 2.69e-08, + "substitutable": 2.69e-08, + "suchness": 2.69e-08, + "superfluity": 2.69e-08, + "suprematism": 2.69e-08, + "sweepingly": 2.69e-08, + "sweetshop": 2.69e-08, + "switchyard": 2.69e-08, + "tetany": 2.69e-08, + "thebaid": 2.69e-08, + "thixotropic": 2.69e-08, + "tippler": 2.69e-08, + "trappy": 2.69e-08, + "trenched": 2.69e-08, + "tricentennial": 2.69e-08, + "tricolored": 2.69e-08, + "triumvir": 2.69e-08, + "trochanteric": 2.69e-08, + "truculence": 2.69e-08, + "tulipa": 2.69e-08, + "tway": 2.69e-08, + "uang": 2.69e-08, + "uncorrupt": 2.69e-08, + "underslung": 2.69e-08, + "undiscounted": 2.69e-08, + "unhurriedly": 2.69e-08, + "unlawfulness": 2.69e-08, + "unruliness": 2.69e-08, + "unsmoked": 2.69e-08, + "unsuppressed": 2.69e-08, + "vespertine": 2.69e-08, + "virgilia": 2.69e-08, + "viscometer": 2.69e-08, + "vitta": 2.69e-08, + "waac": 2.69e-08, + "wanly": 2.69e-08, + "washhouse": 2.69e-08, + "whithersoever": 2.69e-08, + "wholesomely": 2.69e-08, + "winegrowing": 2.69e-08, + "winna": 2.69e-08, + "wittiness": 2.69e-08, + "wizardly": 2.69e-08, + "woolpack": 2.69e-08, + "wurzel": 2.69e-08, + "yakka": 2.69e-08, + "yati": 2.69e-08, + "yesternight": 2.69e-08, + "zephyrus": 2.69e-08, + "accelerando": 2.63e-08, + "alaihi": 2.63e-08, + "alary": 2.63e-08, + "algerine": 2.63e-08, + "alur": 2.63e-08, + "ambassadress": 2.63e-08, + "ambystoma": 2.63e-08, + "analyzable": 2.63e-08, + "antidrug": 2.63e-08, + "antireligious": 2.63e-08, + "apeiron": 2.63e-08, + "apneic": 2.63e-08, + "appassionato": 2.63e-08, + "aquilino": 2.63e-08, + "ascendent": 2.63e-08, + "ascetical": 2.63e-08, + "auspiciousness": 2.63e-08, + "aviatrix": 2.63e-08, + "azoospermia": 2.63e-08, + "barwise": 2.63e-08, + "barycenter": 2.63e-08, + "baywood": 2.63e-08, + "bewail": 2.63e-08, + "biometry": 2.63e-08, + "bizarreness": 2.63e-08, + "bossiness": 2.63e-08, + "bowerbird": 2.63e-08, + "boxen": 2.63e-08, + "breadwinning": 2.63e-08, + "bruta": 2.63e-08, + "calkin": 2.63e-08, + "calyces": 2.63e-08, + "capering": 2.63e-08, + "carminative": 2.63e-08, + "carnosine": 2.63e-08, + "catechumen": 2.63e-08, + "cedula": 2.63e-08, + "cenacle": 2.63e-08, + "chais": 2.57e-08, + "charterer": 2.63e-08, + "chaucerian": 2.63e-08, + "cheroot": 2.63e-08, + "chersonese": 2.63e-08, + "chinquapin": 2.63e-08, + "choriocarcinoma": 2.63e-08, + "citronelle": 2.63e-08, + "coadministration": 2.63e-08, + "coelom": 2.63e-08, + "coition": 2.63e-08, + "coloradan": 2.63e-08, + "convulsant": 2.63e-08, + "coupee": 2.63e-08, + "crisping": 2.63e-08, + "crossly": 2.63e-08, + "cryogen": 2.63e-08, + "culicoides": 2.63e-08, + "cullet": 2.63e-08, + "cupper": 2.63e-08, + "cutpurse": 2.63e-08, + "cysticercosis": 2.63e-08, + "cytopathology": 2.63e-08, + "dastur": 2.63e-08, + "debarkation": 2.63e-08, + "demolisher": 2.63e-08, + "denude": 2.63e-08, + "desirably": 2.63e-08, + "devata": 2.63e-08, + "diatessaron": 2.63e-08, + "diazonium": 2.63e-08, + "dipterocarp": 2.63e-08, + "disappointedly": 2.63e-08, + "discouragingly": 2.63e-08, + "dockland": 2.63e-08, + "doorpost": 2.63e-08, + "drowsily": 2.63e-08, + "enfilading": 2.63e-08, + "ennoblement": 2.63e-08, + "ergosterol": 2.63e-08, + "ethene": 2.63e-08, + "ethereally": 2.63e-08, + "evadne": 2.63e-08, + "exarchate": 2.63e-08, + "exceptionality": 2.63e-08, + "exclusivism": 2.63e-08, + "filicide": 2.63e-08, + "flexuous": 2.63e-08, + "flot": 2.63e-08, + "fogger": 2.63e-08, + "formable": 2.63e-08, + "fornax": 2.63e-08, + "fossilize": 2.63e-08, + "fougasse": 2.63e-08, + "franchiser": 2.63e-08, + "frison": 2.63e-08, + "fruitarian": 2.63e-08, + "fub": 2.63e-08, + "gadabout": 2.63e-08, + "garran": 2.63e-08, + "gemellus": 2.63e-08, + "gentlefolk": 2.63e-08, + "getae": 2.63e-08, + "glassfish": 2.63e-08, + "glucuronic": 2.63e-08, + "glycyrrhiza": 2.63e-08, + "gnomish": 2.63e-08, + "goonie": 2.63e-08, + "goral": 2.63e-08, + "greenfinch": 2.63e-08, + "haircutting": 2.63e-08, + "hallel": 2.63e-08, + "hamitic": 2.63e-08, + "handiness": 2.63e-08, + "harlequinade": 2.63e-08, + "heiltsuk": 2.63e-08, + "hereinbefore": 2.63e-08, + "hesper": 2.63e-08, + "hoarfrost": 2.63e-08, + "homy": 2.63e-08, + "horary": 2.63e-08, + "horsewhip": 2.63e-08, + "housel": 2.63e-08, + "howdah": 2.63e-08, + "hubb": 2.63e-08, + "illimitable": 2.63e-08, + "illinoian": 2.63e-08, + "impanel": 2.63e-08, + "impedimenta": 2.63e-08, + "impenetrability": 2.63e-08, + "inamorata": 2.63e-08, + "inconnu": 2.63e-08, + "indite": 2.63e-08, + "infectiousness": 2.63e-08, + "infraorbital": 2.63e-08, + "interoceptive": 2.63e-08, + "interruptible": 2.63e-08, + "introspectively": 2.63e-08, + "iterable": 2.63e-08, + "ixil": 2.63e-08, + "jacana": 2.63e-08, + "jacobitism": 2.63e-08, + "jerkily": 2.63e-08, + "jetter": 2.63e-08, + "keratoplasty": 2.63e-08, + "keres": 2.63e-08, + "ketty": 2.63e-08, + "kinglet": 2.63e-08, + "kodagu": 2.63e-08, + "koppen": 2.63e-08, + "lache": 2.63e-08, + "lapper": 2.63e-08, + "latinus": 2.63e-08, + "lepa": 2.63e-08, + "liberalist": 2.63e-08, + "liberationist": 2.63e-08, + "ligamentum": 2.63e-08, + "limn": 2.63e-08, + "limpy": 2.63e-08, + "logistician": 2.63e-08, + "losh": 2.63e-08, + "lucrece": 2.63e-08, + "luffa": 2.63e-08, + "lustrum": 2.63e-08, + "mackle": 2.63e-08, + "maidenhood": 2.63e-08, + "majestical": 2.63e-08, + "manacle": 2.63e-08, + "mantes": 2.63e-08, + "megacolon": 2.63e-08, + "melanistic": 2.63e-08, + "menhir": 2.63e-08, + "menorrhagia": 2.63e-08, + "metalliferous": 2.63e-08, + "milfoil": 2.63e-08, + "millstream": 2.63e-08, + "misgovernment": 2.63e-08, + "mishnaic": 2.63e-08, + "moneywise": 2.63e-08, + "morphogenic": 2.63e-08, + "multifold": 2.63e-08, + "myiasis": 2.63e-08, + "myrcene": 2.63e-08, + "mythically": 2.63e-08, + "neep": 2.63e-08, + "nestorianism": 2.63e-08, + "niggly": 2.63e-08, + "normalizer": 2.63e-08, + "nostoc": 2.63e-08, + "obduracy": 2.63e-08, + "obsequiousness": 2.63e-08, + "oilskin": 2.63e-08, + "oleate": 2.63e-08, + "origanum": 2.63e-08, + "overpoweringly": 2.63e-08, + "panamint": 2.63e-08, + "paradisiacal": 2.63e-08, + "peperomia": 2.63e-08, + "phalangist": 2.63e-08, + "phosphoprotein": 2.63e-08, + "phytophagous": 2.63e-08, + "pilonidal": 2.63e-08, + "pityriasis": 2.63e-08, + "planarity": 2.63e-08, + "platanus": 2.63e-08, + "platitudinous": 2.63e-08, + "playbox": 2.63e-08, + "pluma": 2.63e-08, + "pocketable": 2.63e-08, + "popgun": 2.63e-08, + "postglacial": 2.63e-08, + "postlude": 2.63e-08, + "preheater": 2.63e-08, + "primordium": 2.63e-08, + "proteaceae": 2.63e-08, + "protohistoric": 2.63e-08, + "puebloan": 2.63e-08, + "queening": 2.63e-08, + "quintain": 2.63e-08, + "quintic": 2.63e-08, + "radiotelegraphy": 2.63e-08, + "ramose": 2.63e-08, + "raveling": 2.63e-08, + "recept": 2.63e-08, + "rection": 2.63e-08, + "redemptorist": 2.63e-08, + "regather": 2.63e-08, + "regrade": 2.63e-08, + "reversionary": 2.63e-08, + "rewarder": 2.63e-08, + "rhodochrosite": 2.63e-08, + "riverman": 2.63e-08, + "rootlessness": 2.63e-08, + "rootworm": 2.63e-08, + "rurally": 2.63e-08, + "salp": 2.63e-08, + "sarsen": 2.63e-08, + "saturnia": 2.63e-08, + "scutellaria": 2.63e-08, + "sectionalism": 2.63e-08, + "selectee": 2.63e-08, + "sgraffito": 2.63e-08, + "shammar": 2.63e-08, + "sheeny": 2.63e-08, + "shippable": 2.63e-08, + "shovelful": 2.63e-08, + "sickroom": 2.63e-08, + "siderite": 2.63e-08, + "siletz": 2.63e-08, + "silverleaf": 2.63e-08, + "silverside": 2.63e-08, + "skeg": 2.63e-08, + "skimpily": 2.63e-08, + "skippable": 2.63e-08, + "sluggard": 2.63e-08, + "sneath": 2.63e-08, + "snoozy": 2.63e-08, + "somite": 2.63e-08, + "sond": 2.63e-08, + "spermatophore": 2.63e-08, + "splenetic": 2.63e-08, + "starfruit": 2.63e-08, + "steatite": 2.63e-08, + "stereopsis": 2.63e-08, + "stoled": 2.63e-08, + "stolidly": 2.63e-08, + "stratiform": 2.63e-08, + "subband": 2.63e-08, + "surcease": 2.63e-08, + "suum": 2.63e-08, + "swearword": 2.63e-08, + "swingeing": 2.63e-08, + "tanglefoot": 2.63e-08, + "teagle": 2.63e-08, + "tegmentum": 2.63e-08, + "terma": 2.63e-08, + "termly": 2.63e-08, + "theb": 2.63e-08, + "tonna": 2.63e-08, + "totemism": 2.63e-08, + "transthoracic": 2.63e-08, + "trichromatic": 2.63e-08, + "trillionaire": 2.63e-08, + "trochus": 2.63e-08, + "tucano": 2.63e-08, + "tufting": 2.63e-08, + "turkman": 2.63e-08, + "tursiops": 2.63e-08, + "unblessed": 2.63e-08, + "unbuffered": 2.63e-08, + "unlaced": 2.63e-08, + "unraced": 2.63e-08, + "unripened": 2.63e-08, + "untuned": 2.63e-08, + "unworked": 2.63e-08, + "vamoose": 2.63e-08, + "vlach": 2.63e-08, + "waltzer": 2.63e-08, + "weberian": 2.63e-08, + "whaleback": 2.63e-08, + "winesap": 2.63e-08, + "wineskin": 2.63e-08, + "wolfskin": 2.63e-08, + "writter": 2.63e-08, + "yasna": 2.63e-08, + "yeat": 2.63e-08, + "zingiber": 2.63e-08, + "absi": 2.57e-08, + "achakzai": 2.57e-08, + "achromatopsia": 2.57e-08, + "acidemia": 2.57e-08, + "acrobatically": 2.57e-08, + "acromioclavicular": 2.57e-08, + "aeacus": 2.57e-08, + "alosa": 2.57e-08, + "aphasic": 2.57e-08, + "appurtenant": 2.57e-08, + "arist": 2.57e-08, + "aronia": 2.57e-08, + "arthropathy": 2.57e-08, + "ascidian": 2.57e-08, + "axiological": 2.57e-08, + "azeotrope": 2.57e-08, + "basketful": 2.57e-08, + "beechnut": 2.57e-08, + "belemnites": 2.57e-08, + "belligerency": 2.57e-08, + "bestrode": 2.57e-08, + "bhandar": 2.57e-08, + "blackamoor": 2.57e-08, + "booklover": 2.57e-08, + "brooklynite": 2.57e-08, + "brugh": 2.57e-08, + "burian": 2.57e-08, + "cabman": 2.57e-08, + "cadge": 2.57e-08, + "candidness": 2.57e-08, + "cannel": 2.57e-08, + "capetian": 2.57e-08, + "carabid": 2.57e-08, + "centuria": 2.57e-08, + "chape": 2.57e-08, + "charlatanism": 2.57e-08, + "chayote": 2.57e-08, + "chimu": 2.57e-08, + "ciguatera": 2.57e-08, + "clavate": 2.57e-08, + "coexistent": 2.57e-08, + "colan": 2.57e-08, + "compounder": 2.57e-08, + "condign": 2.57e-08, + "constantinopolitan": 2.57e-08, + "contemporarily": 2.57e-08, + "corydalis": 2.57e-08, + "crile": 2.57e-08, + "curbstone": 2.57e-08, + "cursorily": 2.57e-08, + "daucus": 2.57e-08, + "delegator": 2.57e-08, + "denaturalization": 2.57e-08, + "dendroctonus": 2.57e-08, + "dicot": 2.57e-08, + "diffractometer": 2.57e-08, + "dogberry": 2.57e-08, + "dryopteris": 2.57e-08, + "echinodermata": 2.57e-08, + "empyema": 2.57e-08, + "encina": 2.57e-08, + "eneas": 2.57e-08, + "engorge": 2.57e-08, + "esox": 2.57e-08, + "ferula": 2.57e-08, + "fibrocystic": 2.57e-08, + "flighting": 2.57e-08, + "froom": 2.57e-08, + "gabelle": 2.57e-08, + "gearset": 2.57e-08, + "gerundive": 2.57e-08, + "gigot": 2.57e-08, + "gote": 2.57e-08, + "gramp": 2.57e-08, + "granulite": 2.57e-08, + "greengage": 2.57e-08, + "grogginess": 2.57e-08, + "gurian": 2.57e-08, + "haliotis": 2.57e-08, + "hemagglutination": 2.57e-08, + "hexose": 2.57e-08, + "hipbone": 2.57e-08, + "hornbook": 2.57e-08, + "hydrocele": 2.57e-08, + "hyperthermic": 2.57e-08, + "immortelle": 2.57e-08, + "improvident": 2.57e-08, + "indigene": 2.57e-08, + "inoceramus": 2.57e-08, + "inscriptional": 2.57e-08, + "inseparability": 2.57e-08, + "inspirit": 2.57e-08, + "intravesical": 2.57e-08, + "invagination": 2.57e-08, + "ironmaster": 2.57e-08, + "katatonia": 2.57e-08, + "kickout": 2.57e-08, + "killas": 2.57e-08, + "kongu": 2.57e-08, + "kopeck": 2.57e-08, + "kummel": 2.57e-08, + "laconian": 2.57e-08, + "lamasery": 2.57e-08, + "lambkin": 2.57e-08, + "lampstand": 2.57e-08, + "linch": 2.57e-08, + "llew": 2.57e-08, + "lobata": 2.57e-08, + "longshanks": 2.57e-08, + "lumine": 2.57e-08, + "lunation": 2.57e-08, + "lusitanian": 2.57e-08, + "lutetium": 2.57e-08, + "lwo": 2.57e-08, + "massiveness": 2.57e-08, + "medicean": 2.57e-08, + "merchantable": 2.57e-08, + "mesoblast": 2.57e-08, + "metaphysic": 2.57e-08, + "methodic": 2.57e-08, + "mineralize": 2.57e-08, + "mischaracterize": 2.57e-08, + "misguidance": 2.57e-08, + "misspeak": 2.57e-08, + "mithraic": 2.57e-08, + "mollycoddling": 2.57e-08, + "monarchial": 2.57e-08, + "monomaniacal": 2.57e-08, + "mucuna": 2.57e-08, + "mummer": 2.57e-08, + "murrey": 2.57e-08, + "nacreous": 2.57e-08, + "neaten": 2.57e-08, + "nightwalker": 2.57e-08, + "noncontrolling": 2.57e-08, + "nonfictional": 2.57e-08, + "nugatory": 2.57e-08, + "offerer": 2.57e-08, + "oncidium": 2.57e-08, + "onlooking": 2.57e-08, + "organoid": 2.57e-08, + "orthognathic": 2.57e-08, + "overexert": 2.57e-08, + "ownerless": 2.57e-08, + "palaestra": 2.57e-08, + "palter": 2.57e-08, + "paramatta": 2.57e-08, + "perun": 2.57e-08, + "phasis": 2.57e-08, + "phenylenediamine": 2.57e-08, + "piked": 2.57e-08, + "plack": 2.57e-08, + "plaga": 2.57e-08, + "pleurotus": 2.57e-08, + "polysynthetic": 2.57e-08, + "ponceau": 2.57e-08, + "pondweed": 2.57e-08, + "porites": 2.57e-08, + "porkpie": 2.57e-08, + "portulaca": 2.57e-08, + "prelacy": 2.57e-08, + "preparator": 2.57e-08, + "profoundness": 2.57e-08, + "prosector": 2.57e-08, + "prospection": 2.57e-08, + "pruritic": 2.57e-08, + "psittacosis": 2.57e-08, + "psychodynamics": 2.57e-08, + "puckle": 2.57e-08, + "pulk": 2.57e-08, + "pulverization": 2.57e-08, + "purloin": 2.57e-08, + "pursuivant": 2.57e-08, + "purveyance": 2.57e-08, + "putrescine": 2.57e-08, + "puya": 2.57e-08, + "pycnidia": 2.57e-08, + "ramson": 2.57e-08, + "recontest": 2.57e-08, + "repass": 2.57e-08, + "retinaculum": 2.57e-08, + "rosal": 2.57e-08, + "ruddle": 2.57e-08, + "rustication": 2.57e-08, + "schiedam": 2.57e-08, + "semimajor": 2.57e-08, + "serotina": 2.57e-08, + "sharn": 2.57e-08, + "shela": 2.57e-08, + "shingler": 2.57e-08, + "simar": 2.57e-08, + "sise": 2.57e-08, + "sleighing": 2.57e-08, + "slobbers": 2.57e-08, + "smokebox": 2.57e-08, + "spangly": 2.57e-08, + "speechmaking": 2.57e-08, + "sphericity": 2.57e-08, + "spiracle": 2.57e-08, + "spitted": 2.57e-08, + "stannous": 2.57e-08, + "stepless": 2.57e-08, + "stod": 2.57e-08, + "streamy": 2.57e-08, + "subbasal": 2.57e-08, + "subcommission": 2.57e-08, + "subtriangular": 2.57e-08, + "sutor": 2.57e-08, + "synchronistic": 2.57e-08, + "syre": 2.57e-08, + "tabacum": 2.57e-08, + "thyrotoxicosis": 2.57e-08, + "tji": 2.57e-08, + "toadfish": 2.57e-08, + "tomin": 2.57e-08, + "toneless": 2.57e-08, + "towage": 2.57e-08, + "transhumance": 2.57e-08, + "transversally": 2.57e-08, + "trinitarianism": 2.57e-08, + "trustingly": 2.57e-08, + "turnagain": 2.57e-08, + "tyrannically": 2.57e-08, + "unalike": 2.57e-08, + "unceded": 2.57e-08, + "uncongenial": 2.57e-08, + "undertrained": 2.57e-08, + "unharvested": 2.57e-08, + "unhide": 2.57e-08, + "unicum": 2.57e-08, + "uninvite": 2.57e-08, + "universalize": 2.57e-08, + "unlighted": 2.57e-08, + "unscrambling": 2.57e-08, + "untempered": 2.57e-08, + "unthankful": 2.57e-08, + "untidiness": 2.57e-08, + "unwearable": 2.57e-08, + "unwounded": 2.57e-08, + "usun": 2.57e-08, + "versant": 2.57e-08, + "vinta": 2.57e-08, + "weste": 2.57e-08, + "wetly": 2.57e-08, + "wordiness": 2.57e-08, + "yote": 2.57e-08, + "younker": 2.57e-08, + "zoophile": 2.57e-08, + "adai": 2.51e-08, + "aleatory": 2.51e-08, + "allometric": 2.51e-08, + "allopathy": 2.51e-08, + "ambulate": 2.51e-08, + "amylopectin": 2.51e-08, + "anthologist": 2.51e-08, + "apriori": 2.51e-08, + "aquilegia": 2.51e-08, + "arawa": 2.51e-08, + "arboricultural": 2.51e-08, + "artcraft": 2.51e-08, + "artel": 2.51e-08, + "artlessly": 2.51e-08, + "augite": 2.51e-08, + "australopithecine": 2.51e-08, + "autotransformer": 2.51e-08, + "balbriggan": 2.51e-08, + "baronetage": 2.51e-08, + "basto": 2.51e-08, + "beechen": 2.51e-08, + "belayer": 2.51e-08, + "bellyful": 2.51e-08, + "betony": 2.51e-08, + "bewitchment": 2.51e-08, + "birken": 2.51e-08, + "blackfin": 2.51e-08, + "bolometer": 2.51e-08, + "bootblack": 2.51e-08, + "bootes": 2.51e-08, + "brachiocephalic": 2.51e-08, + "bronchoconstriction": 2.51e-08, + "buntline": 2.51e-08, + "burring": 2.51e-08, + "candleholder": 2.51e-08, + "caudex": 2.51e-08, + "charivari": 2.51e-08, + "chasma": 2.51e-08, + "chinking": 2.51e-08, + "chocho": 2.51e-08, + "chyle": 2.51e-08, + "cladonia": 2.51e-08, + "cocytus": 2.51e-08, + "colorimeter": 2.51e-08, + "cominform": 2.51e-08, + "conservatorio": 2.51e-08, + "coppy": 2.51e-08, + "copyhold": 2.51e-08, + "criminalistics": 2.51e-08, + "cryptomeria": 2.51e-08, + "crystalloid": 2.51e-08, + "culmen": 2.51e-08, + "curst": 2.51e-08, + "cuscuta": 2.51e-08, + "cycas": 2.51e-08, + "damia": 2.51e-08, + "darnel": 2.51e-08, + "delusive": 2.51e-08, + "dematerialize": 2.51e-08, + "demonologist": 2.51e-08, + "depigmentation": 2.51e-08, + "dharmakaya": 2.51e-08, + "diffract": 2.51e-08, + "disentanglement": 2.51e-08, + "dispensational": 2.51e-08, + "disputatious": 2.51e-08, + "doglike": 2.51e-08, + "doorless": 2.51e-08, + "duction": 2.51e-08, + "dyker": 2.51e-08, + "dynamis": 2.51e-08, + "effuse": 2.51e-08, + "eigenfunction": 2.51e-08, + "elberta": 2.51e-08, + "electrocautery": 2.51e-08, + "electrodialysis": 2.51e-08, + "electrolytically": 2.51e-08, + "electrolyzer": 2.51e-08, + "electroplate": 2.51e-08, + "enmeshment": 2.51e-08, + "epistemologically": 2.51e-08, + "eragrostis": 2.51e-08, + "ergotamine": 2.51e-08, + "espino": 2.51e-08, + "ethological": 2.51e-08, + "exhaustingly": 2.51e-08, + "expeller": 2.51e-08, + "exquisiteness": 2.51e-08, + "exudative": 2.51e-08, + "fillable": 2.51e-08, + "firetrap": 2.51e-08, + "florescence": 2.51e-08, + "focuser": 2.51e-08, + "fogginess": 2.51e-08, + "fomites": 2.51e-08, + "footgear": 2.51e-08, + "forestay": 2.51e-08, + "fritillaria": 2.51e-08, + "frogfish": 2.51e-08, + "frolicsome": 2.51e-08, + "gaslighted": 2.51e-08, + "gauger": 2.51e-08, + "gaut": 2.51e-08, + "glassful": 2.51e-08, + "gosplan": 2.51e-08, + "granitoid": 2.51e-08, + "graspable": 2.51e-08, + "grayness": 2.51e-08, + "grunion": 2.51e-08, + "guanidine": 2.51e-08, + "gujar": 2.51e-08, + "gullion": 2.51e-08, + "harmlessness": 2.51e-08, + "hasher": 2.51e-08, + "hatpin": 2.51e-08, + "hexahydrate": 2.51e-08, + "highjack": 2.51e-08, + "hitcher": 2.51e-08, + "homogenizer": 2.51e-08, + "illume": 2.51e-08, + "imagism": 2.51e-08, + "incombustible": 2.51e-08, + "infundibular": 2.51e-08, + "inquietude": 2.51e-08, + "insertional": 2.51e-08, + "interaural": 2.51e-08, + "interventricular": 2.51e-08, + "irreducibility": 2.51e-08, + "islamize": 2.51e-08, + "jingly": 2.51e-08, + "kuchen": 2.51e-08, + "laking": 2.51e-08, + "lappet": 2.51e-08, + "licensable": 2.51e-08, + "limbu": 2.51e-08, + "linage": 2.51e-08, + "lingula": 2.51e-08, + "lipin": 2.51e-08, + "liverwurst": 2.51e-08, + "lowth": 2.51e-08, + "luridly": 2.51e-08, + "manakin": 2.51e-08, + "melodiously": 2.51e-08, + "microliter": 2.51e-08, + "monocytic": 2.51e-08, + "moorage": 2.51e-08, + "mucocutaneous": 2.51e-08, + "mullerian": 2.51e-08, + "multani": 2.51e-08, + "myomectomy": 2.51e-08, + "nasalization": 2.51e-08, + "neele": 2.51e-08, + "neger": 2.51e-08, + "neutrophilic": 2.51e-08, + "ninepence": 2.51e-08, + "nitrobenzene": 2.51e-08, + "nonconsecutive": 2.51e-08, + "noneconomic": 2.51e-08, + "nonoperative": 2.51e-08, + "offhanded": 2.51e-08, + "onager": 2.51e-08, + "onanism": 2.51e-08, + "ostracization": 2.51e-08, + "outmatch": 2.51e-08, + "palet": 2.51e-08, + "panoptic": 2.51e-08, + "pedregal": 2.51e-08, + "pelon": 2.51e-08, + "peptone": 2.51e-08, + "percale": 2.51e-08, + "perfunctorily": 2.51e-08, + "peroration": 2.51e-08, + "phosphonium": 2.51e-08, + "photocatalyst": 2.51e-08, + "phytase": 2.51e-08, + "pigweed": 2.51e-08, + "piki": 2.51e-08, + "piscis": 2.51e-08, + "plantigrade": 2.51e-08, + "plenteous": 2.51e-08, + "polyvinylidene": 2.51e-08, + "poolroom": 2.51e-08, + "portail": 2.51e-08, + "portentously": 2.51e-08, + "porty": 2.51e-08, + "premedication": 2.51e-08, + "pressingly": 2.51e-08, + "prill": 2.51e-08, + "probabl": 2.51e-08, + "professoriate": 2.51e-08, + "proo": 2.51e-08, + "protoporphyrin": 2.51e-08, + "protozoal": 2.51e-08, + "pryer": 2.51e-08, + "psychiatrically": 2.51e-08, + "pyrography": 2.51e-08, + "queenship": 2.51e-08, + "quelch": 2.51e-08, + "rabbet": 2.51e-08, + "rancidity": 2.51e-08, + "rathole": 2.51e-08, + "rebuilder": 2.51e-08, + "recertify": 2.51e-08, + "recross": 2.51e-08, + "reductively": 2.51e-08, + "renk": 2.51e-08, + "reportorial": 2.51e-08, + "repulsively": 2.51e-08, + "resurge": 2.51e-08, + "revivify": 2.51e-08, + "ripsaw": 2.51e-08, + "rondel": 2.51e-08, + "sackbut": 2.51e-08, + "saltus": 2.51e-08, + "scabious": 2.51e-08, + "scribbly": 2.51e-08, + "sculler": 2.51e-08, + "seemless": 2.51e-08, + "sensualist": 2.51e-08, + "sesbania": 2.51e-08, + "setaria": 2.51e-08, + "sillimanite": 2.51e-08, + "skulker": 2.51e-08, + "sneakiness": 2.51e-08, + "sneeringly": 2.51e-08, + "snivel": 2.51e-08, + "soken": 2.51e-08, + "sorbic": 2.51e-08, + "spoofer": 2.51e-08, + "stenotic": 2.51e-08, + "stereoscopy": 2.51e-08, + "strategos": 2.51e-08, + "subdorsal": 2.51e-08, + "superinfection": 2.51e-08, + "supposably": 2.51e-08, + "supraspinatus": 2.51e-08, + "swinish": 2.51e-08, + "synesthetic": 2.51e-08, + "tahr": 2.51e-08, + "tanak": 2.51e-08, + "tatta": 2.51e-08, + "tektite": 2.51e-08, + "telemetric": 2.51e-08, + "tendinous": 2.51e-08, + "termagant": 2.51e-08, + "thomasine": 2.51e-08, + "thoo": 2.51e-08, + "thornbush": 2.51e-08, + "tipe": 2.51e-08, + "toolmaking": 2.51e-08, + "transcendentally": 2.51e-08, + "transmissivity": 2.51e-08, + "triangularly": 2.51e-08, + "trilinear": 2.51e-08, + "tropicalia": 2.51e-08, + "tuamotu": 2.51e-08, + "tunicate": 2.51e-08, + "tupman": 2.51e-08, + "twitcher": 2.51e-08, + "ukase": 2.51e-08, + "unaged": 2.51e-08, + "unarticulated": 2.51e-08, + "unavenged": 2.51e-08, + "unawakened": 2.51e-08, + "unbirthday": 2.51e-08, + "uncoloured": 2.51e-08, + "undercook": 2.51e-08, + "underminer": 2.51e-08, + "undoable": 2.51e-08, + "unenthusiastically": 2.51e-08, + "unfalsifiable": 2.51e-08, + "unfreedom": 2.51e-08, + "ungreased": 2.51e-08, + "unhittable": 2.51e-08, + "unicity": 2.51e-08, + "uninvested": 2.51e-08, + "unmuted": 2.51e-08, + "unreconciled": 2.51e-08, + "unrepairable": 2.51e-08, + "unsharp": 2.51e-08, + "unshod": 2.51e-08, + "urolithiasis": 2.51e-08, + "venipuncture": 2.51e-08, + "veracious": 2.51e-08, + "vicegerent": 2.51e-08, + "violaceous": 2.51e-08, + "voluntaryism": 2.51e-08, + "wagonload": 2.51e-08, + "whiptail": 2.51e-08, + "whipworm": 2.51e-08, + "wireman": 2.51e-08, + "yahan": 2.51e-08, + "yoking": 2.51e-08, + "zande": 2.51e-08, + "adet": 2.45e-08, + "adiantum": 2.45e-08, + "aesculus": 2.45e-08, + "afterwork": 2.45e-08, + "ahir": 2.45e-08, + "allurement": 2.45e-08, + "analogic": 2.45e-08, + "anarchical": 2.45e-08, + "anay": 2.45e-08, + "animalism": 2.45e-08, + "anorectic": 2.45e-08, + "anthemis": 2.45e-08, + "antirrhinum": 2.45e-08, + "antisepsis": 2.45e-08, + "apocalypticism": 2.45e-08, + "appassionata": 2.45e-08, + "ascomycetes": 2.45e-08, + "assister": 2.45e-08, + "astroid": 2.45e-08, + "atik": 2.45e-08, + "attent": 2.45e-08, + "azon": 2.45e-08, + "babai": 2.45e-08, + "barnburner": 2.45e-08, + "basidiomycetes": 2.45e-08, + "basophilic": 2.45e-08, + "bastinado": 2.45e-08, + "bivalvia": 2.45e-08, + "blader": 2.45e-08, + "blende": 2.45e-08, + "boronic": 2.45e-08, + "brahmachari": 2.45e-08, + "brayer": 2.45e-08, + "carbonless": 2.45e-08, + "categorial": 2.45e-08, + "celosia": 2.45e-08, + "cephus": 2.45e-08, + "cermet": 2.45e-08, + "chaa": 2.45e-08, + "charkha": 2.45e-08, + "chemisorption": 2.45e-08, + "chinee": 2.45e-08, + "chockablock": 2.45e-08, + "cliquish": 2.45e-08, + "compromiser": 2.45e-08, + "conclusory": 2.45e-08, + "contraflow": 2.45e-08, + "convector": 2.45e-08, + "coper": 2.45e-08, + "coprolite": 2.45e-08, + "corvidae": 2.45e-08, + "cosmopolite": 2.45e-08, + "coturnix": 2.45e-08, + "crepitus": 2.45e-08, + "cryolite": 2.45e-08, + "curlicue": 2.45e-08, + "cyanamide": 2.45e-08, + "cyclohexyl": 2.45e-08, + "daric": 2.45e-08, + "deanship": 2.45e-08, + "deathlike": 2.45e-08, + "delicioso": 2.45e-08, + "delineator": 2.45e-08, + "demimonde": 2.45e-08, + "deprave": 2.45e-08, + "dichromatic": 2.45e-08, + "disestablish": 2.45e-08, + "disperser": 2.45e-08, + "disubstituted": 2.45e-08, + "divorcement": 2.45e-08, + "dobra": 2.45e-08, + "dogface": 2.45e-08, + "donatist": 2.45e-08, + "duit": 2.45e-08, + "dusun": 2.45e-08, + "earthshaker": 2.45e-08, + "earthward": 2.45e-08, + "easer": 2.45e-08, + "eastertide": 2.45e-08, + "eclogite": 2.45e-08, + "effluence": 2.45e-08, + "emarginate": 2.45e-08, + "emprise": 2.45e-08, + "entrustment": 2.45e-08, + "enzootic": 2.45e-08, + "eparchy": 2.45e-08, + "epaulet": 2.45e-08, + "ependymal": 2.45e-08, + "epilobium": 2.45e-08, + "equestrianism": 2.45e-08, + "eumenides": 2.45e-08, + "exasperatingly": 2.45e-08, + "exoskeletal": 2.45e-08, + "expectable": 2.45e-08, + "eyen": 2.45e-08, + "faddy": 2.45e-08, + "fishwife": 2.45e-08, + "flannelette": 2.45e-08, + "flawlessness": 2.45e-08, + "flechette": 2.45e-08, + "fono": 2.45e-08, + "footling": 2.45e-08, + "fumarole": 2.45e-08, + "funkiness": 2.45e-08, + "gatepost": 2.45e-08, + "gilled": 2.45e-08, + "glassmaker": 2.45e-08, + "glume": 2.45e-08, + "googolplex": 2.45e-08, + "gorlin": 2.45e-08, + "goujon": 2.45e-08, + "grenelle": 2.45e-08, + "gryllus": 2.45e-08, + "guerdon": 2.45e-08, + "habitude": 2.45e-08, + "hamamelis": 2.45e-08, + "handwheel": 2.45e-08, + "helicoid": 2.45e-08, + "hellenist": 2.45e-08, + "hemerocallis": 2.45e-08, + "historial": 2.45e-08, + "horizontality": 2.45e-08, + "horribleness": 2.45e-08, + "howel": 2.45e-08, + "huskily": 2.45e-08, + "hydrozoa": 2.45e-08, + "icarian": 2.45e-08, + "igorot": 2.45e-08, + "incantatory": 2.45e-08, + "incommensurate": 2.45e-08, + "indenter": 2.45e-08, + "inequivalent": 2.45e-08, + "insipidity": 2.45e-08, + "inspiringly": 2.45e-08, + "intellectualization": 2.45e-08, + "interproximal": 2.45e-08, + "intersession": 2.45e-08, + "intimal": 2.45e-08, + "intuitionist": 2.45e-08, + "intuitiveness": 2.45e-08, + "irrationalism": 2.45e-08, + "irruptive": 2.45e-08, + "jenine": 2.45e-08, + "karakul": 2.45e-08, + "khanda": 2.45e-08, + "koban": 2.45e-08, + "kufic": 2.45e-08, + "laccase": 2.45e-08, + "lamanite": 2.45e-08, + "legman": 2.45e-08, + "lemna": 2.45e-08, + "lowness": 2.45e-08, + "malapropism": 2.45e-08, + "manteau": 2.45e-08, + "manubrium": 2.45e-08, + "mentation": 2.45e-08, + "mentionable": 2.45e-08, + "midianite": 2.45e-08, + "miek": 2.45e-08, + "mimulus": 2.45e-08, + "mistakingly": 2.45e-08, + "mizraim": 2.45e-08, + "moneybag": 2.45e-08, + "monocotyledonous": 2.45e-08, + "multijet": 2.45e-08, + "multinucleated": 2.45e-08, + "muong": 2.45e-08, + "mysis": 2.45e-08, + "mythologically": 2.45e-08, + "nesty": 2.45e-08, + "newfoundlander": 2.45e-08, + "niobate": 2.45e-08, + "nitroprusside": 2.45e-08, + "noncanonical": 2.45e-08, + "nonconventional": 2.45e-08, + "nonet": 2.45e-08, + "nonproductive": 2.45e-08, + "nonrecurring": 2.45e-08, + "nonworking": 2.45e-08, + "nullable": 2.45e-08, + "oceanology": 2.45e-08, + "ohia": 2.45e-08, + "oldness": 2.45e-08, + "olor": 2.45e-08, + "oniony": 2.45e-08, + "onomastic": 2.45e-08, + "orbed": 2.45e-08, + "orthotropic": 2.45e-08, + "otomi": 2.45e-08, + "overstory": 2.45e-08, + "ovular": 2.45e-08, + "oxonian": 2.45e-08, + "palaeocene": 2.45e-08, + "panathenaic": 2.45e-08, + "pasteurella": 2.45e-08, + "pathogenetic": 2.45e-08, + "pawnbroking": 2.45e-08, + "pentaerythritol": 2.45e-08, + "periostracum": 2.45e-08, + "petrological": 2.45e-08, + "philistia": 2.45e-08, + "phronesis": 2.45e-08, + "phytologist": 2.45e-08, + "pitaya": 2.45e-08, + "planorbis": 2.45e-08, + "polarimeter": 2.45e-08, + "polyandrous": 2.45e-08, + "polymorphonuclear": 2.45e-08, + "preganglionic": 2.45e-08, + "prehistorical": 2.45e-08, + "premillennial": 2.45e-08, + "presidencia": 2.45e-08, + "prober": 2.45e-08, + "pugnacity": 2.45e-08, + "pyometra": 2.45e-08, + "quaintance": 2.45e-08, + "quippy": 2.45e-08, + "radiolarian": 2.45e-08, + "rafflesia": 2.45e-08, + "ranunculaceae": 2.45e-08, + "ratably": 2.45e-08, + "realgar": 2.45e-08, + "reappropriation": 2.45e-08, + "reformative": 2.45e-08, + "reinitiate": 2.45e-08, + "resoluteness": 2.45e-08, + "rewrap": 2.45e-08, + "rhumb": 2.45e-08, + "roadworthiness": 2.45e-08, + "rollable": 2.45e-08, + "roud": 2.45e-08, + "rull": 2.45e-08, + "runty": 2.45e-08, + "sacken": 2.45e-08, + "sacramentum": 2.45e-08, + "scarth": 2.45e-08, + "scherzando": 2.45e-08, + "schoon": 2.45e-08, + "schuss": 2.45e-08, + "secretiveness": 2.45e-08, + "sedang": 2.45e-08, + "seigniory": 2.45e-08, + "serapeum": 2.45e-08, + "servery": 2.45e-08, + "servet": 2.45e-08, + "shambu": 2.45e-08, + "signaler": 2.45e-08, + "slivovitz": 2.45e-08, + "snipper": 2.45e-08, + "soberness": 2.45e-08, + "spirogyra": 2.45e-08, + "spolia": 2.45e-08, + "stahlhelm": 2.45e-08, + "subbase": 2.45e-08, + "sublittoral": 2.45e-08, + "subtribe": 2.45e-08, + "supracondylar": 2.45e-08, + "sural": 2.45e-08, + "symptomless": 2.45e-08, + "systematical": 2.45e-08, + "tankage": 2.45e-08, + "teasel": 2.45e-08, + "temporoparietal": 2.45e-08, + "tenne": 2.45e-08, + "thaumaturgy": 2.45e-08, + "thermogram": 2.45e-08, + "tocsin": 2.45e-08, + "tonometer": 2.45e-08, + "tradesperson": 2.45e-08, + "tranquilly": 2.45e-08, + "triacetate": 2.45e-08, + "turm": 2.45e-08, + "unbundle": 2.45e-08, + "unclad": 2.45e-08, + "uncontracted": 2.45e-08, + "undercharged": 2.45e-08, + "undiscussed": 2.45e-08, + "unimposing": 2.45e-08, + "univocal": 2.45e-08, + "unmarred": 2.45e-08, + "unobscured": 2.45e-08, + "unpatented": 2.45e-08, + "unpigmented": 2.45e-08, + "unpreventable": 2.45e-08, + "unprimed": 2.45e-08, + "unseeable": 2.45e-08, + "unspecialized": 2.45e-08, + "unswept": 2.45e-08, + "untransformed": 2.45e-08, + "upstair": 2.45e-08, + "usufructuary": 2.45e-08, + "vaishnavism": 2.45e-08, + "vaunt": 2.45e-08, + "viaticum": 2.45e-08, + "vihuela": 2.45e-08, + "vulnerably": 2.45e-08, + "weeble": 2.45e-08, + "weigher": 2.45e-08, + "wendish": 2.45e-08, + "wolfer": 2.45e-08, + "wormlike": 2.45e-08, + "yardmaster": 2.45e-08, + "youthfully": 2.45e-08, + "yuman": 2.45e-08, + "ablaut": 2.4e-08, + "absorptivity": 2.4e-08, + "aerodyne": 2.4e-08, + "aisled": 2.4e-08, + "alicyclic": 2.4e-08, + "anaerobe": 2.4e-08, + "antagonistically": 2.4e-08, + "antiochene": 2.4e-08, + "apigenin": 2.4e-08, + "apulian": 2.4e-08, + "arabis": 1.1e-08, + "arakanese": 2.4e-08, + "archdruid": 2.4e-08, + "arctostaphylos": 2.4e-08, + "aromatization": 2.4e-08, + "asperity": 2.4e-08, + "associateship": 2.4e-08, + "assort": 2.4e-08, + "astigmatic": 2.4e-08, + "azeotropic": 2.4e-08, + "backslapping": 2.4e-08, + "baffler": 2.4e-08, + "baikie": 2.4e-08, + "balaenoptera": 2.4e-08, + "ballistically": 2.4e-08, + "baronage": 2.4e-08, + "bashfulness": 2.4e-08, + "bhutia": 2.4e-08, + "biretta": 2.4e-08, + "blackwork": 2.4e-08, + "boaster": 2.4e-08, + "bosky": 2.4e-08, + "branner": 2.4e-08, + "bufflehead": 2.4e-08, + "busher": 2.4e-08, + "caban": 2.4e-08, + "calorimetric": 2.4e-08, + "cambric": 2.4e-08, + "cancelable": 2.4e-08, + "cardiogram": 2.4e-08, + "carone": 2.4e-08, + "castanet": 2.4e-08, + "castled": 2.4e-08, + "cedrus": 2.4e-08, + "changement": 2.4e-08, + "chapping": 2.4e-08, + "charabanc": 2.4e-08, + "chare": 2.4e-08, + "chark": 2.4e-08, + "chemic": 2.4e-08, + "childbed": 2.4e-08, + "chincha": 2.4e-08, + "codefendant": 2.4e-08, + "collectibility": 2.4e-08, + "companionate": 2.4e-08, + "conformant": 2.4e-08, + "contradictorily": 2.4e-08, + "corespondent": 2.4e-08, + "corta": 2.4e-08, + "cosset": 2.4e-08, + "coxy": 2.4e-08, + "crenate": 2.4e-08, + "crenelated": 2.4e-08, + "crippler": 2.4e-08, + "cupric": 2.4e-08, + "cushitic": 2.4e-08, + "cyanuric": 2.4e-08, + "cymric": 2.4e-08, + "daalder": 2.4e-08, + "danio": 2.4e-08, + "darner": 2.4e-08, + "decurion": 2.4e-08, + "defrock": 2.4e-08, + "denotative": 2.4e-08, + "denticulate": 2.4e-08, + "dermoid": 2.4e-08, + "desiccate": 2.4e-08, + "directrix": 2.4e-08, + "dolina": 2.4e-08, + "donar": 2.4e-08, + "drollery": 2.4e-08, + "drophead": 2.4e-08, + "easeful": 2.4e-08, + "elver": 2.4e-08, + "endlessness": 2.4e-08, + "equivocally": 2.4e-08, + "evolver": 2.4e-08, + "excessiveness": 2.4e-08, + "extramedullary": 2.4e-08, + "extrinsically": 2.4e-08, + "eyeshot": 2.4e-08, + "facetiousness": 2.4e-08, + "fasciotomy": 2.4e-08, + "flocculent": 2.4e-08, + "flosser": 2.4e-08, + "flota": 2.4e-08, + "formule": 2.4e-08, + "frenchness": 2.4e-08, + "frette": 2.4e-08, + "frostproof": 2.4e-08, + "gallivant": 2.4e-08, + "gavelkind": 2.4e-08, + "gelatinization": 2.4e-08, + "gemsbok": 2.4e-08, + "genuflection": 2.4e-08, + "gobelin": 2.4e-08, + "greige": 2.4e-08, + "gunstock": 2.4e-08, + "guran": 2.4e-08, + "haboob": 2.4e-08, + "haskalah": 2.4e-08, + "hazle": 2.4e-08, + "hebraica": 2.4e-08, + "hemin": 2.4e-08, + "hemorrhoidal": 2.4e-08, + "heterogeneously": 2.4e-08, + "hidradenitis": 2.4e-08, + "hilding": 2.4e-08, + "hindhead": 2.4e-08, + "hippopotami": 2.4e-08, + "hiren": 2.4e-08, + "hominidae": 2.4e-08, + "homogenic": 2.4e-08, + "hooly": 2.4e-08, + "hostler": 2.4e-08, + "hypervigilant": 2.4e-08, + "hypochondriasis": 2.4e-08, + "impermeability": 2.4e-08, + "inbreed": 2.4e-08, + "inconvertible": 2.4e-08, + "inharmonious": 2.4e-08, + "inkle": 2.4e-08, + "innominate": 2.4e-08, + "insalubrious": 2.4e-08, + "insolubility": 2.4e-08, + "interlaminar": 2.4e-08, + "interphone": 2.4e-08, + "intraosseous": 2.4e-08, + "intriguer": 2.4e-08, + "inveigh": 2.4e-08, + "inviolably": 2.4e-08, + "kaempferol": 2.4e-08, + "karela": 2.4e-08, + "kokan": 2.4e-08, + "korona": 2.4e-08, + "kran": 2.4e-08, + "labrys": 2.4e-08, + "lepcha": 2.4e-08, + "lespedeza": 2.4e-08, + "lettable": 2.4e-08, + "letten": 2.4e-08, + "lickspittle": 2.4e-08, + "linet": 2.4e-08, + "linos": 2.4e-08, + "louch": 2.4e-08, + "lovably": 2.4e-08, + "lucilia": 2.4e-08, + "matzos": 2.4e-08, + "mease": 2.4e-08, + "mediatization": 2.4e-08, + "mediatrix": 2.4e-08, + "megatherium": 2.4e-08, + "melano": 2.4e-08, + "meril": 2.4e-08, + "merpeople": 2.4e-08, + "metallographic": 2.4e-08, + "microtome": 2.4e-08, + "misfortunate": 2.4e-08, + "mohammedanism": 2.4e-08, + "monitory": 2.4e-08, + "montanan": 2.4e-08, + "montargis": 2.4e-08, + "morat": 2.4e-08, + "motional": 2.4e-08, + "mucoid": 2.4e-08, + "muddler": 2.4e-08, + "muscari": 2.4e-08, + "mylohyoid": 2.4e-08, + "nahor": 2.4e-08, + "naias": 1.23e-08, + "nejd": 2.4e-08, + "nocturia": 2.4e-08, + "nonproprietary": 2.4e-08, + "numerously": 2.4e-08, + "oatcake": 2.4e-08, + "octroi": 2.4e-08, + "odontoglossum": 2.4e-08, + "ophthalmia": 2.4e-08, + "opportunely": 2.4e-08, + "orthographical": 2.4e-08, + "orthopyroxene": 2.4e-08, + "osmoregulation": 2.4e-08, + "osteoblastic": 2.4e-08, + "osteoid": 2.4e-08, + "overarm": 2.4e-08, + "overset": 2.4e-08, + "overthought": 2.4e-08, + "oxychloride": 2.4e-08, + "paleoanthropologist": 2.4e-08, + "parilla": 2.4e-08, + "pauperism": 2.4e-08, + "perambulator": 2.4e-08, + "personation": 2.4e-08, + "perspirant": 2.4e-08, + "phosphoglycerate": 2.4e-08, + "pinery": 2.4e-08, + "pinniped": 2.4e-08, + "piteously": 2.4e-08, + "pneumatology": 2.4e-08, + "portamento": 2.4e-08, + "prating": 2.4e-08, + "protamine": 2.4e-08, + "pyriformis": 2.4e-08, + "quadrivium": 2.4e-08, + "quileute": 2.4e-08, + "ranny": 2.4e-08, + "rebind": 2.4e-08, + "recitalist": 2.4e-08, + "redistrict": 2.4e-08, + "refection": 2.4e-08, + "religionist": 2.4e-08, + "remodeler": 2.4e-08, + "residentially": 2.4e-08, + "restorable": 2.4e-08, + "retroreflective": 2.4e-08, + "rhizoctonia": 2.4e-08, + "rhizophora": 2.4e-08, + "romancer": 2.4e-08, + "roomer": 2.4e-08, + "roset": 2.4e-08, + "rotatory": 2.4e-08, + "sadh": 2.4e-08, + "sandspit": 2.4e-08, + "saprophytic": 2.4e-08, + "scarn": 2.4e-08, + "scrofulous": 2.4e-08, + "seatrain": 2.4e-08, + "secularly": 2.4e-08, + "serpens": 2.4e-08, + "shirttail": 2.4e-08, + "shunter": 2.4e-08, + "sideslip": 2.4e-08, + "siping": 2.4e-08, + "sirian": 2.4e-08, + "smeary": 2.4e-08, + "smirky": 2.4e-08, + "snorter": 2.4e-08, + "sockless": 2.4e-08, + "solitarily": 2.4e-08, + "soothsaying": 2.4e-08, + "sovran": 2.4e-08, + "spieler": 2.4e-08, + "spirifer": 2.4e-08, + "springe": 2.4e-08, + "stanner": 2.4e-08, + "stilbene": 2.4e-08, + "stitchery": 2.4e-08, + "structuration": 2.4e-08, + "subjectivist": 2.4e-08, + "subra": 2.4e-08, + "superheroic": 2.4e-08, + "surcoat": 2.4e-08, + "syndactyly": 2.4e-08, + "taberna": 2.4e-08, + "tabulator": 2.4e-08, + "tachypnea": 2.4e-08, + "talak": 2.4e-08, + "tautness": 2.4e-08, + "taximeter": 2.4e-08, + "telephonist": 2.4e-08, + "teletherapy": 2.4e-08, + "tenantry": 2.4e-08, + "teratology": 2.4e-08, + "terseness": 2.4e-08, + "tetraplegia": 2.4e-08, + "tholos": 2.4e-08, + "throstle": 2.4e-08, + "tocher": 2.4e-08, + "tonsillar": 2.4e-08, + "truckle": 2.4e-08, + "trueness": 2.4e-08, + "trug": 2.4e-08, + "tuberculate": 2.4e-08, + "tungstate": 2.4e-08, + "tunner": 2.4e-08, + "twopenny": 2.4e-08, + "uncomfortableness": 2.4e-08, + "underpainting": 2.4e-08, + "ungratefully": 2.4e-08, + "unpossible": 2.4e-08, + "unreduced": 2.4e-08, + "unreviewed": 2.4e-08, + "unsparingly": 2.4e-08, + "untraced": 2.4e-08, + "usherette": 2.4e-08, + "utas": 1.51e-08, + "utricularia": 2.4e-08, + "warpage": 2.4e-08, + "washery": 2.4e-08, + "weldable": 2.4e-08, + "werf": 2.4e-08, + "wollastonite": 2.4e-08, + "wounder": 2.4e-08, + "yellowlegs": 2.4e-08, + "yellowness": 2.4e-08, + "zoysia": 2.4e-08, + "aconitine": 2.34e-08, + "acromial": 2.34e-08, + "adhesiveness": 2.34e-08, + "aftertouch": 2.34e-08, + "albyn": 2.34e-08, + "amain": 2.34e-08, + "amelanchier": 2.34e-08, + "analyzation": 2.34e-08, + "anarch": 2.34e-08, + "angelically": 2.34e-08, + "antenor": 2.34e-08, + "arbela": 2.34e-08, + "armorican": 2.34e-08, + "asteroidal": 2.34e-08, + "auspice": 2.34e-08, + "autosuggestion": 2.34e-08, + "awing": 2.34e-08, + "ballasting": 2.34e-08, + "bathysphere": 2.34e-08, + "battlemented": 2.34e-08, + "beldam": 2.34e-08, + "belgae": 2.34e-08, + "bestride": 2.34e-08, + "betatron": 2.34e-08, + "bhagavat": 2.34e-08, + "bibliotherapy": 2.34e-08, + "biodynamics": 2.34e-08, + "biosocial": 2.34e-08, + "bipinnate": 2.34e-08, + "bipyridine": 2.34e-08, + "blackland": 2.34e-08, + "blenny": 2.34e-08, + "bloomy": 2.34e-08, + "botfly": 2.34e-08, + "brambly": 2.34e-08, + "brassicaceae": 2.34e-08, + "breadmaking": 2.34e-08, + "breeching": 2.34e-08, + "brighid": 2.34e-08, + "britannian": 2.34e-08, + "bucktail": 2.34e-08, + "bunya": 2.34e-08, + "cachalot": 2.34e-08, + "canossa": 2.34e-08, + "canthal": 2.34e-08, + "carambola": 2.34e-08, + "carnassial": 2.34e-08, + "cartload": 2.34e-08, + "charadrius": 2.34e-08, + "cholesteryl": 2.34e-08, + "christmastide": 2.34e-08, + "chytrid": 2.34e-08, + "citrin": 2.34e-08, + "cogitate": 2.34e-08, + "cogitation": 2.34e-08, + "colias": 2.34e-08, + "colonelcy": 2.34e-08, + "colorimetry": 2.34e-08, + "comfortless": 2.34e-08, + "compatibly": 2.34e-08, + "concurso": 2.34e-08, + "consistorial": 2.34e-08, + "contentiousness": 2.34e-08, + "cracky": 2.34e-08, + "crammer": 2.34e-08, + "creolization": 2.34e-08, + "crowl": 2.34e-08, + "crystallin": 2.34e-08, + "dedan": 2.34e-08, + "deducible": 2.34e-08, + "deerwood": 2.34e-08, + "denationalization": 2.34e-08, + "dendron": 2.34e-08, + "deservingly": 2.34e-08, + "deul": 2.34e-08, + "diaconal": 2.34e-08, + "diffusible": 2.34e-08, + "dinosauria": 2.34e-08, + "dioscuri": 2.34e-08, + "disaffiliation": 2.34e-08, + "disarticulation": 2.34e-08, + "disjuncture": 2.34e-08, + "dissolver": 2.34e-08, + "ducato": 2.34e-08, + "dustless": 2.34e-08, + "ejectment": 2.34e-08, + "elephanta": 2.34e-08, + "enactor": 2.34e-08, + "endocardial": 2.34e-08, + "endomorphism": 2.34e-08, + "enfeeble": 2.34e-08, + "ense": 2.34e-08, + "epact": 2.34e-08, + "erythrina": 2.34e-08, + "evolutional": 2.34e-08, + "eyer": 2.34e-08, + "fascisti": 2.34e-08, + "feer": 2.34e-08, + "fibromatosis": 2.34e-08, + "fidele": 2.34e-08, + "fireboy": 2.34e-08, + "fishable": 2.34e-08, + "floriferous": 2.34e-08, + "flowable": 2.34e-08, + "fraise": 2.34e-08, + "gadge": 2.34e-08, + "gadzooks": 2.34e-08, + "gingersnap": 2.34e-08, + "glagolitic": 2.34e-08, + "glossiness": 2.34e-08, + "godkin": 2.34e-08, + "golpe": 2.34e-08, + "gwine": 2.34e-08, + "gyrfalcon": 2.34e-08, + "gyromagnetic": 2.34e-08, + "habitant": 2.34e-08, + "haggler": 2.34e-08, + "hemoglobinuria": 2.34e-08, + "hereunto": 2.34e-08, + "hippocampi": 2.34e-08, + "homotopic": 2.34e-08, + "hungaria": 2.34e-08, + "hydrocyanic": 2.34e-08, + "hyperacute": 2.34e-08, + "hypoxanthine": 2.34e-08, + "iamb": 2.34e-08, + "idola": 2.34e-08, + "idyl": 2.34e-08, + "impersonality": 2.34e-08, + "imperviousness": 2.34e-08, + "impoliteness": 2.34e-08, + "impudently": 2.34e-08, + "imputable": 2.34e-08, + "inauspiciously": 2.34e-08, + "indecisively": 2.34e-08, + "indeclinable": 2.34e-08, + "indehiscent": 2.34e-08, + "indiction": 2.34e-08, + "infiltrative": 2.34e-08, + "influentially": 2.34e-08, + "inlander": 2.34e-08, + "invalidly": 2.34e-08, + "isogenic": 2.34e-08, + "janua": 2.34e-08, + "jarra": 2.34e-08, + "jocund": 2.34e-08, + "joll": 2.34e-08, + "kermes": 2.34e-08, + "kette": 2.34e-08, + "khazarian": 2.34e-08, + "khet": 2.34e-08, + "knavery": 2.34e-08, + "kneeler": 2.34e-08, + "kojiki": 2.34e-08, + "kurung": 2.34e-08, + "labrusca": 2.34e-08, + "leitmotiv": 2.34e-08, + "lekha": 2.34e-08, + "lepra": 2.34e-08, + "limekiln": 2.34e-08, + "liquidambar": 2.34e-08, + "liverwort": 2.34e-08, + "longways": 2.34e-08, + "ludicrousness": 2.34e-08, + "lunisolar": 2.34e-08, + "manlike": 2.34e-08, + "masticate": 2.34e-08, + "megaloblastic": 2.34e-08, + "melanoplus": 2.34e-08, + "metonym": 2.34e-08, + "micropterus": 2.34e-08, + "microtia": 2.34e-08, + "millennialism": 2.34e-08, + "monophasic": 2.34e-08, + "morisco": 2.34e-08, + "mudde": 2.34e-08, + "mulish": 2.34e-08, + "munga": 2.34e-08, + "murza": 2.34e-08, + "muscarine": 2.34e-08, + "musico": 2.34e-08, + "muskat": 2.34e-08, + "muter": 2.34e-08, + "myelomeningocele": 2.34e-08, + "myogenesis": 2.34e-08, + "myosotis": 2.34e-08, + "mythopoeic": 2.34e-08, + "nannette": 2.34e-08, + "navigant": 2.34e-08, + "nesh": 2.34e-08, + "niggard": 2.34e-08, + "nightman": 2.34e-08, + "noctiluca": 2.34e-08, + "nondefense": 2.34e-08, + "nonius": 2.34e-08, + "nosegay": 2.34e-08, + "olid": 2.34e-08, + "onsight": 2.34e-08, + "opposit": 2.34e-08, + "oraon": 2.34e-08, + "outbred": 2.34e-08, + "oxer": 2.34e-08, + "palled": 2.34e-08, + "palus": 2.34e-08, + "paralyzer": 2.34e-08, + "paronychia": 2.34e-08, + "pathless": 2.34e-08, + "patristics": 2.34e-08, + "pedology": 2.34e-08, + "pekan": 2.34e-08, + "phantasmagorical": 2.34e-08, + "phenylene": 2.34e-08, + "philomath": 2.34e-08, + "phoma": 2.34e-08, + "phosphonic": 2.34e-08, + "photogram": 2.34e-08, + "phytopathological": 2.34e-08, + "pigmentary": 2.34e-08, + "pinacoteca": 2.34e-08, + "pitilessly": 2.34e-08, + "planaria": 2.34e-08, + "pledget": 2.34e-08, + "plicate": 2.34e-08, + "polarimetry": 2.34e-08, + "polydactyl": 2.34e-08, + "pondo": 2.34e-08, + "postposition": 2.34e-08, + "pozzolanic": 2.34e-08, + "precuneus": 2.34e-08, + "prehension": 2.34e-08, + "preponderantly": 2.34e-08, + "pressel": 2.34e-08, + "preventively": 2.34e-08, + "profitless": 2.34e-08, + "proprietorial": 2.34e-08, + "protomartyr": 2.34e-08, + "punctiliously": 2.34e-08, + "pyridinium": 2.34e-08, + "quadratics": 2.34e-08, + "quickset": 2.34e-08, + "quietist": 2.34e-08, + "raffinose": 2.34e-08, + "raptorial": 2.34e-08, + "readdress": 2.34e-08, + "recommand": 2.34e-08, + "redivivus": 2.34e-08, + "refold": 2.34e-08, + "regrind": 2.34e-08, + "reinterment": 2.34e-08, + "remold": 2.34e-08, + "roer": 2.34e-08, + "saccharification": 2.34e-08, + "sagra": 2.34e-08, + "salamandra": 2.34e-08, + "salvager": 2.34e-08, + "sarcomere": 2.34e-08, + "sauerbraten": 2.34e-08, + "sauf": 2.34e-08, + "scaffolder": 2.34e-08, + "scarabaeidae": 2.34e-08, + "scottishness": 2.34e-08, + "sech": 2.34e-08, + "sermo": 2.34e-08, + "seron": 2.34e-08, + "sharpy": 2.34e-08, + "shavian": 2.34e-08, + "sigatoka": 2.34e-08, + "slusher": 2.34e-08, + "smalltime": 2.34e-08, + "solanine": 2.34e-08, + "solipsist": 2.34e-08, + "spermidine": 2.34e-08, + "spiritedly": 2.34e-08, + "springiness": 2.34e-08, + "standage": 2.34e-08, + "starbright": 2.34e-08, + "storax": 2.34e-08, + "strongyloides": 2.34e-08, + "subhumid": 2.34e-08, + "sublicense": 2.34e-08, + "supercargo": 2.34e-08, + "swagman": 2.34e-08, + "swimmy": 2.34e-08, + "tablespoonful": 2.34e-08, + "tenino": 2.34e-08, + "termer": 2.34e-08, + "tetrahedrally": 2.34e-08, + "textuality": 2.34e-08, + "tezcatlipoca": 2.34e-08, + "thankee": 2.34e-08, + "theatric": 2.34e-08, + "theorization": 2.34e-08, + "thighed": 2.34e-08, + "thujone": 2.34e-08, + "thumbscrew": 2.34e-08, + "tolstoyan": 2.34e-08, + "towny": 2.34e-08, + "towser": 2.34e-08, + "transplantable": 2.34e-08, + "tubig": 2.34e-08, + "tunga": 2.34e-08, + "turb": 2.34e-08, + "turtling": 2.34e-08, + "uncap": 2.34e-08, + "unclosed": 2.34e-08, + "uncooled": 2.34e-08, + "undercliff": 2.34e-08, + "underclothing": 2.34e-08, + "underlaid": 2.34e-08, + "underlayer": 2.34e-08, + "unenhanced": 2.34e-08, + "ungraspable": 2.34e-08, + "unguardable": 2.34e-08, + "uniate": 2.34e-08, + "uniformitarianism": 2.34e-08, + "unleased": 2.34e-08, + "unmyelinated": 2.34e-08, + "unplanted": 2.34e-08, + "unversed": 2.34e-08, + "vadose": 2.34e-08, + "vengefully": 2.34e-08, + "veratrum": 2.34e-08, + "voluntariness": 2.34e-08, + "voluptuously": 2.34e-08, + "waldenses": 2.34e-08, + "wallon": 2.34e-08, + "wheezer": 2.34e-08, + "whoreson": 2.34e-08, + "wideness": 2.34e-08, + "wimble": 2.34e-08, + "wiseacre": 2.34e-08, + "yadava": 2.34e-08, + "zoisite": 2.34e-08, + "abdiel": 2.29e-08, + "abhorring": 2.29e-08, + "advancer": 2.29e-08, + "affixation": 2.29e-08, + "afifi": 2.29e-08, + "agnate": 2.29e-08, + "alabamian": 2.29e-08, + "alca": 2.29e-08, + "aldose": 2.29e-08, + "aloma": 2.29e-08, + "anastasis": 2.29e-08, + "andamanese": 2.29e-08, + "andrena": 2.29e-08, + "ankylosaurus": 2.29e-08, + "annelida": 2.29e-08, + "anorthosite": 2.29e-08, + "antipathetic": 2.29e-08, + "appropriator": 2.29e-08, + "aptness": 2.29e-08, + "arado": 2.29e-08, + "arioso": 2.29e-08, + "artisanship": 2.29e-08, + "artocarpus": 2.29e-08, + "asklepios": 2.29e-08, + "aslant": 2.29e-08, + "assimilative": 2.29e-08, + "autarkic": 2.29e-08, + "autochrome": 2.29e-08, + "autorotation": 2.29e-08, + "azelaic": 2.29e-08, + "azole": 2.29e-08, + "bailor": 2.29e-08, + "bassie": 2.29e-08, + "benison": 2.29e-08, + "benzylpenicillin": 2.29e-08, + "bicameralism": 2.29e-08, + "bija": 2.29e-08, + "bilharzia": 2.29e-08, + "bimanual": 2.29e-08, + "blastula": 2.29e-08, + "bloomery": 2.29e-08, + "boorishness": 2.29e-08, + "brachialis": 2.29e-08, + "briner": 2.29e-08, + "bucker": 2.29e-08, + "bullnose": 2.29e-08, + "bureaucratization": 2.29e-08, + "cairene": 2.29e-08, + "callo": 2.29e-08, + "catchword": 2.29e-08, + "cecrops": 2.29e-08, + "cense": 2.29e-08, + "chaparro": 2.29e-08, + "chatta": 2.29e-08, + "chronicity": 2.29e-08, + "cincher": 2.29e-08, + "cleavable": 2.29e-08, + "cloudscape": 2.29e-08, + "coccidia": 2.29e-08, + "codirector": 2.29e-08, + "coloboma": 2.29e-08, + "complaisant": 2.29e-08, + "confliction": 2.29e-08, + "confucianist": 2.29e-08, + "conjecturally": 2.29e-08, + "cotch": 2.29e-08, + "coviello": 2.29e-08, + "cozily": 2.29e-08, + "cresset": 2.29e-08, + "cribriform": 2.29e-08, + "cucurbitaceae": 2.29e-08, + "curiosa": 2.29e-08, + "curule": 2.29e-08, + "damayanti": 2.29e-08, + "danian": 2.29e-08, + "daut": 2.29e-08, + "deepfreeze": 2.29e-08, + "defectively": 2.29e-08, + "delectably": 2.29e-08, + "demagnetization": 2.29e-08, + "dentifrice": 2.29e-08, + "dimittis": 2.29e-08, + "diplegia": 2.29e-08, + "discharger": 2.29e-08, + "disenchant": 2.29e-08, + "disinterment": 2.29e-08, + "dotterel": 2.29e-08, + "druidry": 2.29e-08, + "duenna": 2.29e-08, + "echinus": 2.29e-08, + "elymus": 2.29e-08, + "embracement": 2.29e-08, + "erwinia": 2.29e-08, + "esquiline": 2.29e-08, + "euryalus": 2.29e-08, + "exhilarate": 2.29e-08, + "expectoration": 2.29e-08, + "ferling": 2.29e-08, + "fervency": 2.29e-08, + "fireboat": 2.29e-08, + "flagger": 2.29e-08, + "flivver": 2.29e-08, + "fordable": 2.29e-08, + "forgiver": 2.29e-08, + "forkhead": 2.29e-08, + "fornicated": 2.29e-08, + "gabion": 2.29e-08, + "galenic": 2.29e-08, + "garderobe": 2.29e-08, + "geebung": 2.29e-08, + "goldhammer": 2.29e-08, + "goofily": 2.29e-08, + "gossiper": 2.29e-08, + "gradgrind": 2.29e-08, + "grasper": 2.29e-08, + "gratiano": 2.29e-08, + "gritstone": 2.29e-08, + "guncotton": 2.29e-08, + "hackery": 2.29e-08, + "hammerless": 2.29e-08, + "harbi": 2.29e-08, + "hastiness": 2.29e-08, + "hawse": 2.29e-08, + "heliacal": 2.29e-08, + "hezron": 2.29e-08, + "highhanded": 2.29e-08, + "horehound": 2.29e-08, + "hummocky": 2.29e-08, + "hyle": 2.29e-08, + "idalia": 2.29e-08, + "ideomotor": 2.29e-08, + "imide": 2.29e-08, + "improvable": 2.29e-08, + "individua": 2.29e-08, + "infibulation": 2.29e-08, + "intravaginal": 2.29e-08, + "jerkiness": 2.29e-08, + "kittles": 2.29e-08, + "kulturkampf": 2.29e-08, + "kuman": 2.29e-08, + "kundry": 2.29e-08, + "labdanum": 2.29e-08, + "lagoonal": 2.29e-08, + "lammer": 2.29e-08, + "laryngology": 2.29e-08, + "lexicology": 2.29e-08, + "ligate": 2.29e-08, + "logographic": 2.29e-08, + "luri": 2.29e-08, + "malingerer": 2.29e-08, + "malonate": 2.29e-08, + "maynt": 2.29e-08, + "mediately": 2.29e-08, + "melisma": 2.29e-08, + "mentholated": 2.29e-08, + "microphysics": 2.29e-08, + "miscount": 2.29e-08, + "mistle": 2.29e-08, + "moil": 2.29e-08, + "molasse": 2.29e-08, + "monacan": 2.29e-08, + "mopsy": 2.29e-08, + "muktar": 2.29e-08, + "muser": 2.29e-08, + "nauplius": 2.29e-08, + "nazarite": 2.29e-08, + "necrophile": 2.29e-08, + "nephritic": 2.29e-08, + "neuropsychiatrist": 2.29e-08, + "nogal": 2.29e-08, + "noil": 2.29e-08, + "noncriminal": 2.29e-08, + "nonperformance": 2.29e-08, + "noseband": 2.29e-08, + "ogygia": 2.29e-08, + "orby": 2.29e-08, + "orchardist": 2.29e-08, + "orography": 2.29e-08, + "otoscope": 2.29e-08, + "overbridge": 2.29e-08, + "overexpose": 2.29e-08, + "overline": 2.29e-08, + "ownself": 2.29e-08, + "paleoclimatology": 2.29e-08, + "parboil": 2.29e-08, + "patronizingly": 2.29e-08, + "pattu": 2.29e-08, + "pearlite": 2.29e-08, + "peiser": 2.29e-08, + "penetratingly": 2.29e-08, + "permittee": 2.29e-08, + "phosphatic": 2.29e-08, + "photosensitizer": 2.29e-08, + "pipal": 2.29e-08, + "planisphere": 2.29e-08, + "postsurgical": 2.29e-08, + "privily": 2.29e-08, + "prodrome": 2.29e-08, + "prodromus": 2.29e-08, + "proscriptive": 2.29e-08, + "protonic": 2.29e-08, + "pseudonymously": 2.29e-08, + "psychopomp": 2.29e-08, + "pulchritude": 2.29e-08, + "pulvinar": 2.29e-08, + "pungently": 2.29e-08, + "quantitive": 2.29e-08, + "raggle": 2.29e-08, + "ratcatcher": 2.29e-08, + "rearwards": 2.29e-08, + "reclusion": 2.29e-08, + "recruitable": 2.29e-08, + "reflash": 2.29e-08, + "reflectometry": 2.29e-08, + "remilitarization": 2.29e-08, + "revisionary": 2.29e-08, + "revoltingly": 2.29e-08, + "rhinology": 2.29e-08, + "rotifer": 2.29e-08, + "rutaceae": 2.29e-08, + "sanctimoniously": 2.29e-08, + "santalum": 2.29e-08, + "sarcoid": 2.29e-08, + "sarif": 2.29e-08, + "sarod": 2.29e-08, + "scantly": 2.29e-08, + "scheelite": 2.29e-08, + "semilunar": 2.29e-08, + "severian": 2.29e-08, + "sexagenarian": 2.29e-08, + "shreeve": 2.29e-08, + "shrinker": 2.29e-08, + "sinuously": 2.29e-08, + "skandhas": 2.29e-08, + "skeel": 2.29e-08, + "sketchily": 2.29e-08, + "slank": 2.29e-08, + "sluttish": 2.29e-08, + "softhearted": 2.29e-08, + "solderless": 2.29e-08, + "songo": 2.29e-08, + "speel": 2.29e-08, + "spelunker": 2.29e-08, + "spiritualistic": 2.29e-08, + "stept": 2.29e-08, + "stodge": 2.29e-08, + "stonemasonry": 2.29e-08, + "strid": 2.29e-08, + "submaximal": 2.29e-08, + "subpanel": 2.29e-08, + "suckable": 2.29e-08, + "swith": 2.29e-08, + "symbolics": 2.29e-08, + "tachograph": 2.29e-08, + "tactlessly": 2.29e-08, + "tagal": 2.29e-08, + "tagetes": 2.29e-08, + "tangelo": 2.29e-08, + "tanha": 2.29e-08, + "temporizing": 2.29e-08, + "teosinte": 2.29e-08, + "terzo": 2.29e-08, + "testimonium": 2.29e-08, + "thionyl": 2.29e-08, + "thromboplastin": 2.29e-08, + "thunderstone": 2.29e-08, + "tideland": 2.29e-08, + "timar": 2.29e-08, + "tiresomely": 2.29e-08, + "triazine": 2.29e-08, + "trichophyton": 2.29e-08, + "trullo": 2.29e-08, + "trumpery": 2.29e-08, + "tumultuously": 2.29e-08, + "unbefitting": 2.29e-08, + "unbend": 2.29e-08, + "uncharitably": 2.29e-08, + "uncoded": 2.29e-08, + "unfashionably": 2.29e-08, + "unie": 2.29e-08, + "unmethylated": 2.29e-08, + "unmount": 2.29e-08, + "unpublishable": 2.29e-08, + "unquantified": 2.29e-08, + "unsayable": 2.29e-08, + "unsexed": 2.29e-08, + "unsterilized": 2.29e-08, + "unstretched": 2.29e-08, + "unswayed": 2.29e-08, + "unvented": 2.29e-08, + "valeriana": 2.29e-08, + "valiance": 2.29e-08, + "varanus": 2.29e-08, + "vedette": 2.29e-08, + "velutina": 2.29e-08, + "villein": 2.29e-08, + "vomitus": 2.29e-08, + "wearability": 2.29e-08, + "whitethorn": 2.29e-08, + "wingy": 2.29e-08, + "wyne": 2.29e-08, + "xerography": 2.29e-08, + "xerophytic": 2.29e-08, + "yeuk": 2.29e-08, + "abettor": 2.24e-08, + "acier": 2.24e-08, + "acipenser": 2.24e-08, + "acor": 2.24e-08, + "alpinism": 2.24e-08, + "altissimo": 2.24e-08, + "amidship": 2.24e-08, + "analogize": 2.24e-08, + "angiosarcoma": 2.24e-08, + "anthroposophical": 2.24e-08, + "anticlericalism": 2.24e-08, + "aonach": 2.24e-08, + "apathetically": 2.24e-08, + "archaically": 2.24e-08, + "asellus": 2.24e-08, + "atle": 2.24e-08, + "atraumatic": 2.24e-08, + "audion": 2.24e-08, + "autogiro": 2.24e-08, + "aviate": 2.24e-08, + "bacchante": 2.24e-08, + "backstay": 2.24e-08, + "bajada": 2.24e-08, + "bastardize": 2.24e-08, + "bogy": 2.24e-08, + "bondman": 2.24e-08, + "bookless": 2.24e-08, + "broadacre": 2.24e-08, + "brooked": 2.24e-08, + "bryophyte": 2.24e-08, + "bullishness": 2.24e-08, + "buoyantly": 2.24e-08, + "caam": 2.24e-08, + "caeca": 2.24e-08, + "calculatedly": 2.24e-08, + "calmy": 2.24e-08, + "carboxylation": 2.24e-08, + "cathro": 2.24e-08, + "ceder": 2.24e-08, + "chank": 2.24e-08, + "chokecherry": 2.24e-08, + "churching": 2.24e-08, + "circuitously": 2.24e-08, + "citral": 2.24e-08, + "coherer": 2.24e-08, + "collator": 2.24e-08, + "compter": 2.24e-08, + "conatus": 2.24e-08, + "condensable": 2.24e-08, + "congeneric": 2.24e-08, + "corrigenda": 2.24e-08, + "cretinism": 2.24e-08, + "crin": 2.24e-08, + "cryptanalyst": 2.24e-08, + "cryptogamic": 2.24e-08, + "crystallite": 2.24e-08, + "cuspid": 2.24e-08, + "dacoity": 2.24e-08, + "decrescendo": 2.24e-08, + "decretal": 2.24e-08, + "deedy": 2.24e-08, + "deporter": 2.24e-08, + "desmodium": 2.24e-08, + "despoliation": 2.24e-08, + "diddler": 2.24e-08, + "didelphis": 2.24e-08, + "digitaria": 2.24e-08, + "dipteran": 2.24e-08, + "disruptively": 2.24e-08, + "doeg": 2.24e-08, + "drabness": 2.24e-08, + "eche": 2.24e-08, + "echium": 2.24e-08, + "eclectically": 2.24e-08, + "efik": 2.24e-08, + "elementalist": 2.24e-08, + "elodea": 2.24e-08, + "empyreal": 2.24e-08, + "enjoyer": 2.24e-08, + "entracte": 2.24e-08, + "epigenetically": 2.24e-08, + "eria": 2.24e-08, + "ericaceous": 2.24e-08, + "etymologist": 2.24e-08, + "euphrasia": 2.24e-08, + "exculpation": 2.24e-08, + "extracranial": 2.24e-08, + "falangist": 2.24e-08, + "fibrillary": 2.24e-08, + "flatboat": 2.24e-08, + "fluorometer": 2.24e-08, + "foulard": 2.24e-08, + "freckly": 2.24e-08, + "fugacity": 2.24e-08, + "fundulus": 2.24e-08, + "furthermost": 2.24e-08, + "gangling": 2.24e-08, + "georgic": 2.24e-08, + "gerontocracy": 2.24e-08, + "gorry": 2.24e-08, + "greisen": 2.24e-08, + "gurmukhi": 2.24e-08, + "hardhearted": 2.24e-08, + "heathenry": 2.24e-08, + "hexapod": 2.24e-08, + "hieracium": 2.24e-08, + "hitlerism": 2.24e-08, + "homeliness": 2.24e-08, + "hominoid": 2.24e-08, + "hortatory": 2.24e-08, + "hydrobiology": 2.24e-08, + "hyperborean": 2.24e-08, + "hystrix": 2.24e-08, + "iconology": 2.24e-08, + "illustre": 2.24e-08, + "imprecation": 2.24e-08, + "incommunicable": 2.24e-08, + "indistinguishably": 2.24e-08, + "instructively": 2.24e-08, + "interrelatedness": 2.24e-08, + "intervener": 2.24e-08, + "jawab": 2.24e-08, + "jete": 2.24e-08, + "kishon": 2.24e-08, + "kokumin": 2.24e-08, + "kotwal": 2.24e-08, + "lathing": 2.24e-08, + "leatherworking": 2.24e-08, + "leuconostoc": 2.24e-08, + "lexia": 2.24e-08, + "limmer": 2.24e-08, + "logrolling": 2.24e-08, + "loxia": 2.24e-08, + "lymnaea": 2.24e-08, + "manitoban": 2.24e-08, + "mariola": 2.24e-08, + "metel": 2.24e-08, + "micaceous": 2.24e-08, + "miserliness": 2.24e-08, + "mislabel": 2.24e-08, + "modred": 2.24e-08, + "monkhood": 2.24e-08, + "nasality": 2.24e-08, + "nattily": 2.24e-08, + "nautch": 2.24e-08, + "nefariously": 2.24e-08, + "nominalist": 2.24e-08, + "nonconductive": 2.24e-08, + "nonduality": 2.24e-08, + "nullo": 2.24e-08, + "obnoxiousness": 2.24e-08, + "obstruent": 2.24e-08, + "oersted": 2.24e-08, + "ogpu": 2.24e-08, + "olivette": 2.24e-08, + "omental": 2.24e-08, + "orchester": 2.24e-08, + "ordure": 2.24e-08, + "orichalcum": 2.24e-08, + "originary": 2.24e-08, + "ouranos": 2.24e-08, + "outfight": 2.24e-08, + "overbear": 2.24e-08, + "paeonia": 2.24e-08, + "palmette": 2.24e-08, + "paranthropus": 2.24e-08, + "parliamentarianism": 2.24e-08, + "parodist": 2.24e-08, + "participator": 2.24e-08, + "passus": 2.24e-08, + "pearler": 2.24e-08, + "peccadillo": 2.24e-08, + "peracetic": 2.24e-08, + "percutaneously": 2.24e-08, + "peridium": 2.24e-08, + "perioral": 2.24e-08, + "philippic": 2.24e-08, + "photocatalysis": 2.24e-08, + "pilobolus": 2.24e-08, + "placentation": 2.24e-08, + "poltroon": 2.24e-08, + "polyanthus": 2.24e-08, + "precent": 2.24e-08, + "prevue": 2.24e-08, + "pricer": 2.24e-08, + "procuress": 2.24e-08, + "prostomium": 2.24e-08, + "protract": 2.24e-08, + "provitamin": 2.24e-08, + "pseudopod": 2.24e-08, + "pseudopodia": 2.24e-08, + "puppyhood": 2.24e-08, + "rareness": 2.24e-08, + "rascality": 2.24e-08, + "reasonability": 2.24e-08, + "reassume": 2.24e-08, + "rebelliously": 2.24e-08, + "recompute": 2.24e-08, + "recusancy": 2.24e-08, + "redtail": 2.24e-08, + "reimplantation": 2.24e-08, + "reiver": 2.24e-08, + "retable": 2.24e-08, + "ritornello": 2.24e-08, + "riving": 2.24e-08, + "rorqual": 2.24e-08, + "rotundo": 2.24e-08, + "roughen": 2.24e-08, + "rubiales": 2.24e-08, + "sacredly": 2.24e-08, + "saltation": 2.24e-08, + "samish": 2.24e-08, + "saronic": 2.24e-08, + "scaremonger": 2.24e-08, + "scenically": 2.24e-08, + "seadog": 2.24e-08, + "seismographic": 2.24e-08, + "serologically": 2.24e-08, + "serpentinization": 2.24e-08, + "shakha": 2.24e-08, + "sitten": 2.24e-08, + "sjaak": 2.24e-08, + "smarm": 2.24e-08, + "smily": 2.24e-08, + "sogdian": 2.24e-08, + "solicitously": 2.24e-08, + "sorb": 2.24e-08, + "sozin": 2.24e-08, + "spasmed": 2.24e-08, + "speleological": 2.24e-08, + "spermatozoon": 2.24e-08, + "spinneret": 2.24e-08, + "spinsterhood": 2.24e-08, + "stachys": 2.24e-08, + "stagy": 2.24e-08, + "stook": 2.24e-08, + "streptocarpus": 2.24e-08, + "strontian": 2.24e-08, + "subrace": 2.24e-08, + "sukey": 2.24e-08, + "sulfadiazine": 2.24e-08, + "supersensitive": 2.24e-08, + "suppurative": 2.24e-08, + "surpassingly": 2.24e-08, + "surra": 2.24e-08, + "surtout": 2.24e-08, + "swashbuckle": 2.24e-08, + "sympathectomy": 2.24e-08, + "synchronically": 2.24e-08, + "tangaroa": 2.24e-08, + "tasco": 2.24e-08, + "tegula": 2.24e-08, + "tentativeness": 2.24e-08, + "thaught": 2.24e-08, + "thwacking": 2.24e-08, + "tosspot": 2.24e-08, + "towable": 2.24e-08, + "transcaucasian": 2.24e-08, + "trebly": 2.24e-08, + "trichinella": 2.24e-08, + "trichrome": 2.24e-08, + "trinitrotoluene": 2.24e-08, + "trotty": 2.24e-08, + "trustless": 2.24e-08, + "tuckshop": 2.24e-08, + "turritella": 2.24e-08, + "twite": 2.24e-08, + "unacceptability": 2.24e-08, + "unbe": 2.24e-08, + "undischarged": 2.24e-08, + "unlevel": 2.24e-08, + "unordinary": 2.24e-08, + "unoriginality": 2.24e-08, + "unpracticed": 2.24e-08, + "unsatisfiable": 2.24e-08, + "unsaturation": 2.24e-08, + "utricle": 2.24e-08, + "velika": 2.24e-08, + "venturesome": 2.24e-08, + "verjuice": 2.24e-08, + "vertebrata": 2.24e-08, + "vichyssoise": 2.24e-08, + "vielle": 2.24e-08, + "waggy": 2.24e-08, + "woolsack": 2.24e-08, + "wouldest": 2.24e-08, + "wryneck": 2.24e-08, + "youngun": 2.24e-08, + "zouave": 2.24e-08, + "abutilon": 2.19e-08, + "adoniram": 2.19e-08, + "aerolite": 2.19e-08, + "affronting": 2.19e-08, + "aircraftman": 2.19e-08, + "alima": 2.19e-08, + "alky": 2.19e-08, + "amper": 2.19e-08, + "anthozoa": 2.19e-08, + "antlerless": 2.19e-08, + "apiarist": 2.19e-08, + "apophysis": 2.19e-08, + "arapaima": 2.19e-08, + "argiope": 2.19e-08, + "armload": 2.19e-08, + "arsis": 2.19e-08, + "athabascan": 2.19e-08, + "atropa": 2.19e-08, + "autocratically": 2.19e-08, + "ayyubid": 2.19e-08, + "backbite": 2.19e-08, + "backslider": 2.19e-08, + "backwashing": 2.19e-08, + "baith": 2.19e-08, + "balanus": 2.19e-08, + "balefully": 2.19e-08, + "bannered": 2.19e-08, + "beerhouse": 2.19e-08, + "benben": 2.19e-08, + "benzimidazole": 2.19e-08, + "bioclimatic": 2.19e-08, + "biosis": 2.19e-08, + "boatbuilder": 2.19e-08, + "bonderman": 2.19e-08, + "brassware": 2.19e-08, + "budh": 2.19e-08, + "buttermaker": 2.19e-08, + "calandria": 2.19e-08, + "calcar": 2.19e-08, + "canoodle": 2.19e-08, + "capitally": 2.19e-08, + "caprylic": 2.19e-08, + "captivation": 2.19e-08, + "carcharodon": 2.19e-08, + "carga": 2.19e-08, + "castalian": 2.19e-08, + "catastrophism": 2.19e-08, + "cavatina": 2.19e-08, + "cerambycidae": 2.19e-08, + "chalukya": 2.19e-08, + "chello": 2.19e-08, + "chirino": 2.19e-08, + "chyme": 2.19e-08, + "cineraria": 2.19e-08, + "collectivize": 2.19e-08, + "colonially": 2.19e-08, + "cravenly": 2.19e-08, + "creamware": 2.19e-08, + "crossness": 2.19e-08, + "crucian": 2.19e-08, + "cyanidin": 2.19e-08, + "cyanogenic": 2.19e-08, + "cyclohexanone": 2.19e-08, + "cytometer": 2.19e-08, + "danta": 2.19e-08, + "dashpot": 2.19e-08, + "delftware": 2.19e-08, + "denominationalism": 2.19e-08, + "departmentally": 2.19e-08, + "deuteronomistic": 2.19e-08, + "dinosaurian": 2.19e-08, + "discordantly": 2.19e-08, + "disinheritance": 2.19e-08, + "disinterestedness": 2.19e-08, + "drifty": 2.19e-08, + "drowse": 2.19e-08, + "drub": 2.19e-08, + "durani": 2.19e-08, + "ecdysis": 2.19e-08, + "elaborative": 2.19e-08, + "empirics": 2.19e-08, + "enlace": 2.19e-08, + "epididymal": 2.19e-08, + "examinable": 2.19e-08, + "felid": 2.19e-08, + "fermentor": 2.19e-08, + "fermentum": 2.19e-08, + "filching": 2.19e-08, + "firebolt": 2.19e-08, + "flavone": 2.19e-08, + "flavoprotein": 2.19e-08, + "fleay": 2.19e-08, + "floppers": 2.19e-08, + "florilegium": 2.19e-08, + "flummox": 2.19e-08, + "fundal": 2.19e-08, + "furbish": 2.19e-08, + "galey": 2.19e-08, + "gallian": 2.19e-08, + "gansey": 2.19e-08, + "gemination": 2.19e-08, + "ginner": 2.19e-08, + "grein": 2.19e-08, + "groundsel": 2.19e-08, + "gumma": 2.19e-08, + "gymnosperm": 2.19e-08, + "hairstreak": 2.19e-08, + "hant": 2.19e-08, + "harpa": 2.19e-08, + "harvestman": 2.19e-08, + "hastati": 2.19e-08, + "hatmaker": 2.19e-08, + "hawfinch": 2.19e-08, + "heartsease": 2.19e-08, + "hemocyanin": 2.19e-08, + "hepcat": 2.19e-08, + "horsehide": 2.19e-08, + "huso": 2.19e-08, + "hydrostatics": 2.19e-08, + "hyoscine": 2.19e-08, + "hyperemia": 2.19e-08, + "hypostyle": 2.19e-08, + "imagistic": 2.19e-08, + "impertinently": 2.19e-08, + "incog": 2.19e-08, + "indiscrete": 2.19e-08, + "indult": 2.19e-08, + "inkpot": 2.19e-08, + "inoffensively": 2.19e-08, + "institutionalist": 2.19e-08, + "investible": 2.19e-08, + "isoamyl": 2.19e-08, + "isoperimetric": 2.19e-08, + "jaggy": 2.19e-08, + "knavish": 2.19e-08, + "krama": 2.19e-08, + "laddered": 2.19e-08, + "laundryman": 2.19e-08, + "lobola": 2.19e-08, + "lokman": 2.19e-08, + "lunaria": 2.19e-08, + "maltman": 2.19e-08, + "malto": 2.19e-08, + "mangifera": 2.19e-08, + "marrowbone": 2.19e-08, + "meatworks": 2.19e-08, + "mesmerist": 2.19e-08, + "metalist": 2.19e-08, + "metonymically": 2.19e-08, + "microevolution": 2.19e-08, + "microsporidia": 2.19e-08, + "millenarianism": 2.19e-08, + "molucca": 2.19e-08, + "morganatic": 2.19e-08, + "morinda": 2.19e-08, + "mudfish": 2.19e-08, + "multivibrator": 2.19e-08, + "myoelectric": 2.19e-08, + "myristic": 2.19e-08, + "neckless": 2.19e-08, + "neotoma": 2.19e-08, + "nete": 2.19e-08, + "neutralism": 2.19e-08, + "nitzschia": 2.19e-08, + "nonfood": 2.19e-08, + "nonintervention": 2.19e-08, + "nonslip": 2.19e-08, + "noop": 2.19e-08, + "nucleoli": 2.19e-08, + "obduction": 2.19e-08, + "opaquely": 2.19e-08, + "orangeade": 2.19e-08, + "ossify": 2.19e-08, + "outgo": 2.19e-08, + "overindulgent": 2.19e-08, + "oxyacetylene": 2.19e-08, + "ozias": 2.19e-08, + "pabulum": 2.19e-08, + "palaeogene": 2.19e-08, + "parceling": 2.19e-08, + "patu": 2.19e-08, + "penni": 2.19e-08, + "pfund": 2.19e-08, + "phylactery": 2.19e-08, + "piecrust": 2.19e-08, + "pierian": 2.19e-08, + "pinda": 2.19e-08, + "pindari": 2.19e-08, + "plumbeous": 2.19e-08, + "politesse": 2.19e-08, + "poller": 2.19e-08, + "positivistic": 2.19e-08, + "principium": 2.19e-08, + "pteris": 2.19e-08, + "ptomaine": 2.19e-08, + "pyrogenic": 2.19e-08, + "pyrrhotite": 2.19e-08, + "reacquisition": 2.19e-08, + "remanufacture": 2.19e-08, + "requin": 2.19e-08, + "responsorial": 2.19e-08, + "retie": 2.19e-08, + "rusin": 2.19e-08, + "saho": 2.19e-08, + "salishan": 2.19e-08, + "sampaloc": 2.19e-08, + "semiaquatic": 2.19e-08, + "serigraph": 2.19e-08, + "serosa": 2.19e-08, + "sexagesimal": 2.19e-08, + "shabbiness": 2.19e-08, + "shedder": 2.19e-08, + "shelduck": 2.19e-08, + "silversides": 2.19e-08, + "sinologist": 2.19e-08, + "sirree": 2.19e-08, + "slavey": 2.19e-08, + "sleeting": 2.19e-08, + "snappish": 2.19e-08, + "solidum": 2.19e-08, + "solubilize": 2.19e-08, + "spikenard": 2.19e-08, + "spirituous": 2.19e-08, + "squill": 2.19e-08, + "starlights": 1.35e-08, + "stonecrop": 2.19e-08, + "stonewood": 2.19e-08, + "striver": 2.19e-08, + "strombolian": 2.19e-08, + "submucosa": 2.19e-08, + "sundowning": 2.19e-08, + "syndical": 2.19e-08, + "tallish": 2.19e-08, + "tangie": 2.19e-08, + "tattooer": 2.19e-08, + "tercer": 2.19e-08, + "terrestrially": 2.19e-08, + "tertian": 2.19e-08, + "thimbleful": 2.19e-08, + "thoracolumbar": 2.19e-08, + "tocharian": 2.19e-08, + "toilsome": 2.19e-08, + "tooter": 2.19e-08, + "transparence": 2.19e-08, + "tribunate": 2.19e-08, + "troad": 2.19e-08, + "tropically": 2.19e-08, + "trueborn": 2.19e-08, + "truthy": 2.19e-08, + "tutty": 2.19e-08, + "twizzle": 2.19e-08, + "tyrannous": 2.19e-08, + "uncombed": 2.19e-08, + "uncountably": 2.19e-08, + "uncracked": 2.19e-08, + "uncuffed": 2.19e-08, + "unexecuted": 2.19e-08, + "unexplainably": 2.19e-08, + "unhand": 2.19e-08, + "unhedged": 2.19e-08, + "unpadded": 2.19e-08, + "unpresidential": 2.19e-08, + "unratified": 2.19e-08, + "unworried": 2.19e-08, + "unzen": 2.19e-08, + "upbraiding": 2.19e-08, + "uprightly": 2.19e-08, + "ureteric": 2.19e-08, + "vesical": 2.19e-08, + "vicissitude": 2.19e-08, + "viga": 2.19e-08, + "viscus": 2.19e-08, + "waise": 2.19e-08, + "whereer": 2.19e-08, + "whilom": 2.19e-08, + "whisp": 2.19e-08, + "yeth": 2.19e-08, + "abatis": 2.14e-08, + "addax": 2.14e-08, + "adjure": 2.14e-08, + "agentive": 2.14e-08, + "agio": 2.14e-08, + "amabel": 2.14e-08, + "amsel": 2.14e-08, + "anaplasmosis": 2.14e-08, + "andric": 2.14e-08, + "angelin": 2.14e-08, + "anglicization": 2.14e-08, + "anhedral": 2.14e-08, + "ankylosis": 2.14e-08, + "antemedial": 2.14e-08, + "antirheumatic": 2.14e-08, + "archfiend": 2.14e-08, + "aristeas": 2.14e-08, + "articulator": 2.14e-08, + "arundo": 2.14e-08, + "assiduity": 2.14e-08, + "atap": 2.14e-08, + "atmospherical": 2.14e-08, + "aurantium": 2.14e-08, + "baculum": 2.14e-08, + "balanitis": 2.14e-08, + "baric": 2.14e-08, + "barkey": 2.14e-08, + "barnstorm": 2.14e-08, + "betoken": 2.14e-08, + "bowfin": 2.14e-08, + "brahmanic": 2.14e-08, + "brandied": 2.14e-08, + "brasse": 2.14e-08, + "bumbler": 2.14e-08, + "caatinga": 2.14e-08, + "caravansary": 2.14e-08, + "castoreum": 2.14e-08, + "categoric": 2.14e-08, + "cateye": 2.14e-08, + "cellobiose": 2.14e-08, + "cenobite": 2.14e-08, + "chamaecyparis": 2.14e-08, + "chameleonic": 2.14e-08, + "chinar": 2.14e-08, + "cholesteric": 2.14e-08, + "cnidarian": 2.14e-08, + "coachbuilder": 2.14e-08, + "coltsfoot": 2.14e-08, + "commerciality": 2.14e-08, + "conciliating": 2.14e-08, + "congoleum": 2.14e-08, + "continuator": 2.14e-08, + "conventionalism": 2.14e-08, + "coppet": 2.14e-08, + "cosmogonic": 2.14e-08, + "counterflow": 2.14e-08, + "cremator": 2.14e-08, + "croatan": 2.14e-08, + "cruller": 2.14e-08, + "cumene": 2.14e-08, + "damselfish": 2.14e-08, + "dauntingly": 2.14e-08, + "decapoda": 2.14e-08, + "decolletage": 2.14e-08, + "decontrol": 2.14e-08, + "deformability": 2.14e-08, + "degrease": 2.14e-08, + "dermatosis": 2.14e-08, + "dhritarashtra": 2.14e-08, + "diametrical": 2.14e-08, + "discalced": 2.14e-08, + "disseminator": 2.14e-08, + "dotter": 2.14e-08, + "drayage": 2.14e-08, + "elate": 2.14e-08, + "elytron": 2.14e-08, + "emblazon": 2.14e-08, + "enkindle": 2.14e-08, + "ergotism": 2.14e-08, + "erucic": 2.14e-08, + "euphrosyne": 2.14e-08, + "exaggerator": 2.14e-08, + "extravascular": 2.14e-08, + "fagging": 2.14e-08, + "farseer": 2.14e-08, + "fiar": 2.14e-08, + "fireguard": 2.14e-08, + "flashiness": 2.14e-08, + "flicky": 2.14e-08, + "folkloristic": 2.14e-08, + "foolhardiness": 2.14e-08, + "gaboon": 2.14e-08, + "gallinule": 2.14e-08, + "gangan": 2.14e-08, + "gasholder": 2.14e-08, + "gastroschisis": 2.14e-08, + "gean": 2.14e-08, + "geomantic": 2.14e-08, + "gimel": 2.14e-08, + "grainer": 2.14e-08, + "grunter": 2.14e-08, + "hadrosaur": 2.14e-08, + "headstall": 2.14e-08, + "heliostat": 2.14e-08, + "henequen": 2.14e-08, + "heptagon": 2.14e-08, + "hish": 2.14e-08, + "hydric": 2.14e-08, + "hyperexcitability": 2.14e-08, + "ichthyological": 2.14e-08, + "immaturely": 2.14e-08, + "impenetrably": 2.14e-08, + "impishly": 2.14e-08, + "imposingly": 2.14e-08, + "inclinometer": 2.14e-08, + "incommensurability": 2.14e-08, + "incorporator": 2.14e-08, + "incorruption": 2.14e-08, + "indistinguishability": 2.14e-08, + "instrumentalism": 2.14e-08, + "intergrade": 2.14e-08, + "intracity": 2.14e-08, + "inversed": 2.14e-08, + "irrotational": 2.14e-08, + "jalousie": 2.14e-08, + "jingoist": 2.14e-08, + "kafa": 2.14e-08, + "karabagh": 2.14e-08, + "kella": 2.14e-08, + "keratoconjunctivitis": 2.14e-08, + "knoller": 2.14e-08, + "kunzite": 2.14e-08, + "lamiaceae": 2.14e-08, + "landaulet": 2.14e-08, + "lasi": 2.14e-08, + "latinization": 2.14e-08, + "lavant": 2.14e-08, + "leamer": 2.14e-08, + "lifelessness": 2.14e-08, + "limnological": 2.14e-08, + "lingually": 2.14e-08, + "linie": 2.14e-08, + "lipless": 2.14e-08, + "liriodendron": 2.14e-08, + "lunula": 2.14e-08, + "lusatian": 2.14e-08, + "luxuriousness": 2.14e-08, + "lyophilization": 2.14e-08, + "lysogenic": 2.14e-08, + "magicked": 2.14e-08, + "magistral": 2.14e-08, + "maidenly": 2.14e-08, + "malignantly": 2.14e-08, + "measurability": 2.14e-08, + "meleagris": 2.14e-08, + "methemoglobin": 2.14e-08, + "moed": 2.14e-08, + "monarda": 2.14e-08, + "morong": 2.14e-08, + "morphosis": 2.14e-08, + "multiplicatively": 2.14e-08, + "myopically": 2.14e-08, + "myriophyllum": 2.14e-08, + "nacionalista": 2.14e-08, + "nael": 2.14e-08, + "nagger": 2.14e-08, + "naturalistically": 2.14e-08, + "neoplatonist": 2.14e-08, + "ningpo": 2.14e-08, + "noninterference": 2.14e-08, + "nonresistance": 2.14e-08, + "numerosity": 2.14e-08, + "octoroon": 2.14e-08, + "onca": 2.14e-08, + "otiose": 2.14e-08, + "otosclerosis": 2.14e-08, + "overanxious": 2.14e-08, + "overawe": 2.14e-08, + "padfoot": 2.14e-08, + "palliate": 2.14e-08, + "palpal": 2.14e-08, + "pantagraph": 2.14e-08, + "pantalone": 2.14e-08, + "parah": 2.14e-08, + "parure": 2.14e-08, + "peahen": 2.14e-08, + "perambulate": 2.14e-08, + "perfectibility": 2.14e-08, + "permeant": 2.14e-08, + "peronospora": 2.14e-08, + "petcock": 2.14e-08, + "phenomenologically": 2.14e-08, + "phoria": 2.14e-08, + "phyllite": 2.14e-08, + "pianism": 2.14e-08, + "plecoptera": 2.14e-08, + "plumpy": 2.14e-08, + "polearm": 2.14e-08, + "portrayer": 2.14e-08, + "precipitator": 2.14e-08, + "preregister": 2.14e-08, + "prognosticate": 2.14e-08, + "pronator": 2.14e-08, + "prothesis": 2.14e-08, + "protista": 2.14e-08, + "protoplast": 2.14e-08, + "pyracantha": 2.14e-08, + "realizability": 2.14e-08, + "reassortment": 2.14e-08, + "reave": 2.14e-08, + "recompilation": 2.14e-08, + "recordation": 2.14e-08, + "recrudescence": 2.14e-08, + "relationality": 2.14e-08, + "repertorium": 2.14e-08, + "replan": 2.14e-08, + "repletion": 2.14e-08, + "reticulocyte": 2.14e-08, + "retranslation": 2.14e-08, + "rhamnose": 2.14e-08, + "rilly": 2.14e-08, + "riverway": 2.14e-08, + "roseola": 2.14e-08, + "sablefish": 2.14e-08, + "sacrificially": 2.14e-08, + "saltworks": 2.14e-08, + "sawah": 2.14e-08, + "sawbuck": 2.14e-08, + "scathe": 2.14e-08, + "scrutineer": 2.14e-08, + "semipalmated": 2.14e-08, + "septoria": 2.14e-08, + "seriatim": 2.14e-08, + "serpentis": 2.14e-08, + "shawwal": 2.14e-08, + "shirker": 2.14e-08, + "sigillum": 2.14e-08, + "skiddy": 2.14e-08, + "slewed": 2.14e-08, + "slitter": 2.14e-08, + "snappily": 2.14e-08, + "socius": 2.14e-08, + "sodic": 2.14e-08, + "sorites": 2.14e-08, + "sphincterotomy": 2.14e-08, + "spicewood": 2.14e-08, + "spoonerism": 2.14e-08, + "strub": 2.14e-08, + "suavity": 2.14e-08, + "subproblem": 2.14e-08, + "succinctness": 2.14e-08, + "suckage": 2.14e-08, + "summable": 2.14e-08, + "summand": 2.14e-08, + "sundog": 2.14e-08, + "synergic": 2.14e-08, + "synergist": 2.14e-08, + "syntonic": 2.14e-08, + "syzygium": 2.14e-08, + "tanach": 2.14e-08, + "tanh": 2.14e-08, + "tappen": 2.14e-08, + "tarras": 2.14e-08, + "taxodium": 2.14e-08, + "telang": 2.14e-08, + "telegu": 2.14e-08, + "teth": 2.14e-08, + "tetracyclic": 2.14e-08, + "tetrameric": 2.14e-08, + "tetrarchy": 2.14e-08, + "teucer": 2.14e-08, + "thermodynamical": 2.14e-08, + "tigrina": 2.14e-08, + "tirthankara": 2.14e-08, + "tonalist": 2.14e-08, + "torontonian": 2.14e-08, + "towy": 2.14e-08, + "traceless": 2.14e-08, + "transportability": 2.14e-08, + "triboelectric": 2.14e-08, + "tribolium": 2.14e-08, + "triethyl": 2.14e-08, + "tritonal": 2.14e-08, + "trypanosome": 2.14e-08, + "tsardom": 2.14e-08, + "tufan": 2.14e-08, + "tume": 2.14e-08, + "turkishness": 2.14e-08, + "twaddell": 2.14e-08, + "ugrian": 2.14e-08, + "ultramontane": 2.14e-08, + "unblinkingly": 2.14e-08, + "uncodified": 2.14e-08, + "undissolved": 2.14e-08, + "unembellished": 2.14e-08, + "unfoldment": 2.14e-08, + "unfriendliness": 2.14e-08, + "unguiculata": 2.14e-08, + "unimaginatively": 2.14e-08, + "unpunctual": 2.14e-08, + "unreliably": 2.14e-08, + "unring": 2.14e-08, + "unscratched": 2.14e-08, + "unsleeping": 2.14e-08, + "unsurmountable": 2.14e-08, + "untradeable": 2.14e-08, + "untruthfully": 2.14e-08, + "urbanize": 2.14e-08, + "urian": 2.14e-08, + "vacuously": 2.14e-08, + "valorize": 2.14e-08, + "veneering": 2.14e-08, + "veneti": 2.14e-08, + "vipera": 2.14e-08, + "visiter": 2.14e-08, + "vitaphone": 2.14e-08, + "volans": 2.14e-08, + "voluminously": 2.14e-08, + "wasat": 2.14e-08, + "webworm": 2.14e-08, + "weightiness": 2.14e-08, + "xanthium": 2.14e-08, + "yabby": 2.14e-08, + "yajnavalkya": 2.14e-08, + "yarran": 2.14e-08, + "yogin": 2.14e-08, + "zymogen": 2.14e-08, + "abbacy": 2.09e-08, + "abecedarian": 2.09e-08, + "absconder": 2.09e-08, + "acetamide": 2.09e-08, + "acquisitiveness": 2.09e-08, + "adipic": 2.09e-08, + "agathis": 2.09e-08, + "aghori": 2.09e-08, + "agistment": 2.09e-08, + "aglet": 2.09e-08, + "agrotis": 2.09e-08, + "alexian": 2.09e-08, + "alite": 2.09e-08, + "ambidexterity": 2.09e-08, + "ancha": 2.09e-08, + "anglophobia": 2.09e-08, + "ansu": 2.09e-08, + "aphididae": 2.09e-08, + "arytenoid": 2.09e-08, + "atonic": 2.09e-08, + "auditoria": 2.09e-08, + "avens": 2.09e-08, + "avicularia": 2.09e-08, + "aweek": 2.09e-08, + "backwood": 2.09e-08, + "balanta": 2.09e-08, + "bange": 2.09e-08, + "barouche": 2.09e-08, + "batatas": 2.09e-08, + "befoul": 2.09e-08, + "beleave": 2.09e-08, + "belittlement": 2.09e-08, + "benu": 2.09e-08, + "bestir": 2.09e-08, + "bigha": 2.09e-08, + "boastfulness": 2.09e-08, + "borana": 2.09e-08, + "brickle": 2.09e-08, + "buccinator": 2.09e-08, + "calanthe": 2.09e-08, + "calcarea": 2.09e-08, + "camelus": 2.09e-08, + "cameral": 2.09e-08, + "canalization": 2.09e-08, + "carbinol": 2.09e-08, + "cartographical": 2.09e-08, + "caudata": 2.09e-08, + "cercopithecus": 2.09e-08, + "charry": 2.09e-08, + "chatterer": 2.09e-08, + "chivalrously": 2.09e-08, + "circularize": 2.09e-08, + "citified": 2.09e-08, + "clag": 2.09e-08, + "claustrum": 2.09e-08, + "cognatic": 2.09e-08, + "colombier": 2.09e-08, + "complacence": 2.09e-08, + "composita": 2.09e-08, + "cookstove": 2.09e-08, + "corf": 2.09e-08, + "corrente": 2.09e-08, + "culicidae": 2.09e-08, + "culpably": 2.09e-08, + "cuniculus": 2.09e-08, + "cyclohexene": 2.09e-08, + "dannebrog": 2.09e-08, + "decembrist": 2.09e-08, + "decomposer": 2.09e-08, + "dedicatee": 2.09e-08, + "deodorize": 2.09e-08, + "deprecatory": 2.09e-08, + "descry": 2.09e-08, + "dhai": 2.09e-08, + "didna": 2.09e-08, + "diselenide": 2.09e-08, + "dishrag": 2.09e-08, + "disinter": 2.09e-08, + "dogcatcher": 2.09e-08, + "donax": 2.09e-08, + "dooryard": 2.09e-08, + "dramaturge": 2.09e-08, + "dropwise": 2.09e-08, + "duffing": 2.09e-08, + "dunkard": 2.09e-08, + "ependymoma": 2.09e-08, + "equinus": 2.09e-08, + "equipartition": 2.09e-08, + "estival": 2.09e-08, + "euxine": 2.09e-08, + "eyn": 2.09e-08, + "fasher": 2.09e-08, + "ferial": 2.09e-08, + "fidalgo": 2.09e-08, + "fishless": 2.09e-08, + "fluidization": 2.09e-08, + "footlight": 2.09e-08, + "frot": 2.09e-08, + "gadus": 2.09e-08, + "gametogenesis": 2.09e-08, + "gantlet": 2.09e-08, + "garum": 2.09e-08, + "gaulin": 2.09e-08, + "genizah": 2.09e-08, + "genua": 2.09e-08, + "graphis": 2.09e-08, + "grapnel": 2.09e-08, + "gravimeter": 2.09e-08, + "greenkeeper": 2.09e-08, + "greenstuff": 2.09e-08, + "grillwork": 2.09e-08, + "grizel": 2.09e-08, + "grotesquerie": 2.09e-08, + "guara": 2.09e-08, + "haddie": 2.09e-08, + "hauberk": 2.09e-08, + "headsail": 2.09e-08, + "hegira": 2.09e-08, + "herbicidal": 2.09e-08, + "hertzian": 2.09e-08, + "heterochromatic": 2.09e-08, + "hided": 2.09e-08, + "hirondelle": 2.09e-08, + "hobnailed": 2.09e-08, + "hollowly": 2.09e-08, + "hydrus": 2.09e-08, + "iciness": 2.09e-08, + "incept": 2.09e-08, + "interchurch": 2.09e-08, + "interestingness": 2.09e-08, + "iranic": 2.09e-08, + "irremovable": 2.09e-08, + "jabot": 2.09e-08, + "jackanapes": 2.09e-08, + "jayesh": 2.09e-08, + "kambal": 2.09e-08, + "lagger": 2.09e-08, + "limper": 2.09e-08, + "limulus": 2.09e-08, + "lungworm": 2.09e-08, + "lynnhaven": 2.09e-08, + "maba": 2.09e-08, + "macrosomia": 2.09e-08, + "manege": 2.09e-08, + "manumit": 2.09e-08, + "marrano": 2.09e-08, + "mastaba": 2.09e-08, + "medallic": 2.09e-08, + "meibomian": 2.09e-08, + "melanism": 2.09e-08, + "melismatic": 2.09e-08, + "meningococcus": 2.09e-08, + "mesially": 2.09e-08, + "metaphyseal": 2.09e-08, + "microphysical": 2.09e-08, + "millefiori": 2.09e-08, + "missable": 2.09e-08, + "molybdenite": 2.09e-08, + "moneylending": 2.09e-08, + "moonface": 2.09e-08, + "morcellation": 2.09e-08, + "motoric": 2.09e-08, + "murga": 2.09e-08, + "murre": 2.09e-08, + "mycotic": 2.09e-08, + "nabatean": 2.09e-08, + "natterjack": 2.09e-08, + "naturalizer": 2.09e-08, + "nomological": 2.09e-08, + "nowness": 2.09e-08, + "obtainment": 2.09e-08, + "osteolytic": 2.09e-08, + "osteopetrosis": 2.09e-08, + "outhit": 2.09e-08, + "overlock": 2.09e-08, + "oversubscription": 2.09e-08, + "oxygenic": 2.09e-08, + "pandarus": 2.09e-08, + "pantomimic": 2.09e-08, + "pantothenate": 2.09e-08, + "passingly": 2.09e-08, + "pedimented": 2.09e-08, + "pelorus": 2.09e-08, + "perdix": 2.09e-08, + "phiz": 2.09e-08, + "photosynthetically": 2.09e-08, + "piner": 2.09e-08, + "piperine": 2.09e-08, + "pixilation": 2.09e-08, + "plantsman": 2.09e-08, + "polarizable": 2.09e-08, + "polyphyletic": 2.09e-08, + "poney": 2.09e-08, + "portlet": 2.09e-08, + "portway": 2.09e-08, + "preconference": 2.09e-08, + "prematch": 2.09e-08, + "premillennialism": 2.09e-08, + "promethea": 2.09e-08, + "pteropus": 2.09e-08, + "pueraria": 2.09e-08, + "purposively": 2.09e-08, + "pursley": 2.09e-08, + "pyromancer": 2.09e-08, + "quarryman": 2.09e-08, + "quiddity": 2.09e-08, + "quinary": 2.09e-08, + "reinstitution": 2.09e-08, + "remanent": 2.09e-08, + "remeasurement": 2.09e-08, + "replantation": 2.09e-08, + "reproachfully": 2.09e-08, + "requalification": 2.09e-08, + "resina": 2.09e-08, + "resurvey": 2.09e-08, + "resuscitative": 2.09e-08, + "reversely": 2.09e-08, + "risala": 2.09e-08, + "roquet": 2.09e-08, + "ruche": 2.09e-08, + "rumbler": 2.09e-08, + "ryot": 2.09e-08, + "safeness": 2.09e-08, + "saucerful": 2.09e-08, + "scatterer": 2.09e-08, + "scorebook": 2.09e-08, + "seriation": 2.09e-08, + "shaddock": 2.09e-08, + "shedded": 2.09e-08, + "shilluk": 2.09e-08, + "shipway": 2.09e-08, + "sickler": 2.09e-08, + "sier": 2.09e-08, + "silphium": 2.09e-08, + "silverwork": 2.09e-08, + "singlehood": 2.09e-08, + "siwash": 2.09e-08, + "slashy": 2.09e-08, + "smashup": 2.09e-08, + "solea": 2.09e-08, + "solenopsis": 2.09e-08, + "somatization": 2.09e-08, + "sonification": 2.09e-08, + "sopor": 2.09e-08, + "sosh": 2.09e-08, + "sothis": 2.09e-08, + "spart": 2.09e-08, + "squamata": 2.09e-08, + "stableman": 2.09e-08, + "stramonium": 2.09e-08, + "strati": 2.09e-08, + "subglobose": 2.09e-08, + "sublinear": 2.09e-08, + "subquadrate": 2.09e-08, + "suer": 2.09e-08, + "sunlamp": 2.09e-08, + "sunsetting": 2.09e-08, + "supai": 2.09e-08, + "tahsildar": 2.09e-08, + "talukdar": 2.09e-08, + "teleostei": 2.09e-08, + "temne": 2.09e-08, + "tepidly": 2.09e-08, + "thebaine": 2.09e-08, + "tillerman": 2.09e-08, + "tiltable": 2.09e-08, + "tolerantly": 2.09e-08, + "tonkinese": 2.09e-08, + "tornillo": 2.09e-08, + "tortuosity": 2.09e-08, + "towelette": 2.09e-08, + "tractability": 2.09e-08, + "trifid": 2.09e-08, + "trigona": 2.09e-08, + "trimeter": 2.09e-08, + "troche": 2.09e-08, + "unassertive": 2.09e-08, + "unassimilated": 2.09e-08, + "undersupply": 2.09e-08, + "undrained": 2.09e-08, + "unemotionally": 2.09e-08, + "unexpanded": 2.09e-08, + "unfaithfully": 2.09e-08, + "unostentatious": 2.09e-08, + "unprosecuted": 2.09e-08, + "unrhymed": 2.09e-08, + "unroasted": 2.09e-08, + "unroot": 2.09e-08, + "unshelled": 2.09e-08, + "untaught": 2.09e-08, + "untrainable": 2.09e-08, + "upholster": 2.09e-08, + "velella": 2.09e-08, + "vengefulness": 2.09e-08, + "verdin": 2.09e-08, + "vibronic": 2.09e-08, + "volscian": 2.09e-08, + "vomeronasal": 2.09e-08, + "votary": 2.09e-08, + "werebear": 2.09e-08, + "wolframite": 2.09e-08, + "worktime": 2.09e-08, + "wurtzite": 2.09e-08, + "yellowbird": 2.09e-08, + "abstractionist": 2.04e-08, + "acculturate": 2.04e-08, + "acridine": 2.04e-08, + "acron": 2.04e-08, + "acrosome": 2.04e-08, + "actinolite": 2.04e-08, + "adharma": 2.04e-08, + "agraphia": 2.04e-08, + "alemanni": 2.04e-08, + "alphard": 2.04e-08, + "ambassadeur": 2.04e-08, + "ameliorative": 2.04e-08, + "amerind": 2.04e-08, + "andron": 2.04e-08, + "angelology": 2.04e-08, + "anhinga": 2.04e-08, + "annalist": 2.04e-08, + "annulata": 2.04e-08, + "anomala": 2.04e-08, + "apium": 2.04e-08, + "apodosis": 2.04e-08, + "architectonics": 2.04e-08, + "areolar": 2.04e-08, + "articulata": 2.04e-08, + "autocephaly": 2.04e-08, + "autoloading": 2.04e-08, + "autrefois": 2.04e-08, + "awakener": 2.04e-08, + "babbie": 2.04e-08, + "bandsman": 2.04e-08, + "bathonian": 2.04e-08, + "bearberry": 2.04e-08, + "bellbird": 2.04e-08, + "benumbed": 2.04e-08, + "betterer": 2.04e-08, + "bibulous": 2.04e-08, + "bicolored": 2.04e-08, + "billhook": 2.04e-08, + "bluffer": 2.04e-08, + "bolthole": 2.04e-08, + "boxman": 2.04e-08, + "branta": 2.04e-08, + "bronchoscope": 2.04e-08, + "burghal": 2.04e-08, + "cactaceae": 2.04e-08, + "cakebread": 2.04e-08, + "calamagrostis": 2.04e-08, + "calander": 2.04e-08, + "caporal": 2.04e-08, + "carbonado": 2.04e-08, + "carcinomatosis": 2.04e-08, + "causeless": 2.04e-08, + "cavalla": 2.04e-08, + "cerumen": 2.04e-08, + "chalmer": 2.04e-08, + "champignon": 2.04e-08, + "changeability": 2.04e-08, + "chaudron": 2.04e-08, + "cheeper": 2.04e-08, + "chocker": 2.04e-08, + "chondritic": 2.04e-08, + "chordate": 2.04e-08, + "chubbiness": 2.04e-08, + "ciborium": 2.04e-08, + "cinnamate": 2.04e-08, + "cleek": 2.04e-08, + "climacus": 2.04e-08, + "coastland": 2.04e-08, + "cockup": 2.04e-08, + "codding": 2.04e-08, + "cogman": 2.04e-08, + "coly": 2.04e-08, + "conformer": 2.04e-08, + "contributive": 2.04e-08, + "convexly": 2.04e-08, + "copulative": 2.04e-08, + "cordiner": 2.04e-08, + "coronated": 2.04e-08, + "couvade": 2.04e-08, + "cuke": 2.04e-08, + "cutterhead": 2.04e-08, + "cyanidation": 2.04e-08, + "dacitic": 2.04e-08, + "decad": 2.04e-08, + "detune": 2.04e-08, + "disharmonious": 2.04e-08, + "disobliging": 2.04e-08, + "diurnally": 2.04e-08, + "dizzily": 2.04e-08, + "doddy": 2.04e-08, + "drest": 2.04e-08, + "dunnock": 2.04e-08, + "ecca": 2.04e-08, + "embden": 2.04e-08, + "enstatite": 2.04e-08, + "ephemeroptera": 2.04e-08, + "equimolar": 2.04e-08, + "eryngium": 2.04e-08, + "erythropoietic": 2.04e-08, + "eryx": 2.04e-08, + "escheator": 2.04e-08, + "everglade": 2.04e-08, + "everliving": 2.04e-08, + "excentric": 2.04e-08, + "exfoliative": 2.04e-08, + "exposer": 2.04e-08, + "farcically": 2.04e-08, + "fecklessness": 2.04e-08, + "feldspathic": 2.04e-08, + "fenestella": 2.04e-08, + "fibration": 2.04e-08, + "fibrocartilage": 2.04e-08, + "finner": 2.04e-08, + "flecker": 2.04e-08, + "fluoranthene": 2.04e-08, + "fluviatile": 2.04e-08, + "focally": 2.04e-08, + "foraminiferal": 2.04e-08, + "fremd": 2.04e-08, + "fungo": 2.04e-08, + "gandhism": 2.04e-08, + "gelid": 2.04e-08, + "germanics": 2.04e-08, + "gliosis": 2.04e-08, + "gloxinia": 2.04e-08, + "glycolipid": 2.04e-08, + "goniometer": 2.04e-08, + "grane": 2.04e-08, + "groop": 2.04e-08, + "groupwise": 2.04e-08, + "grumbly": 2.04e-08, + "guiltiness": 2.04e-08, + "gunflint": 2.04e-08, + "hellenization": 2.04e-08, + "herdwick": 2.04e-08, + "hexer": 2.04e-08, + "hexis": 2.04e-08, + "hinderer": 2.04e-08, + "hingle": 2.04e-08, + "hoggy": 2.04e-08, + "homophonous": 2.04e-08, + "huia": 2.04e-08, + "hundi": 2.04e-08, + "hunnic": 2.04e-08, + "hyacinthus": 2.04e-08, + "hymnology": 2.04e-08, + "hypocaust": 2.04e-08, + "ignatia": 2.04e-08, + "illinoisan": 2.04e-08, + "impartation": 2.04e-08, + "incrustation": 2.04e-08, + "indispensably": 2.04e-08, + "induration": 2.04e-08, + "ingratiation": 2.04e-08, + "interclub": 2.04e-08, + "intrathoracic": 2.04e-08, + "ironhead": 2.04e-08, + "isoelectronic": 2.04e-08, + "jungly": 2.04e-08, + "karluk": 2.04e-08, + "kaska": 2.04e-08, + "kenaf": 2.04e-08, + "ketogenesis": 2.04e-08, + "khot": 2.04e-08, + "kirtle": 2.04e-08, + "kittatinny": 2.04e-08, + "knotwork": 2.04e-08, + "kusha": 2.04e-08, + "lacquering": 2.04e-08, + "leatherstocking": 2.04e-08, + "lenity": 2.04e-08, + "leptospermum": 2.04e-08, + "lipoid": 2.04e-08, + "locusta": 2.04e-08, + "loggin": 2.04e-08, + "loriot": 2.04e-08, + "lovesickness": 2.04e-08, + "lummox": 2.04e-08, + "lusciously": 2.04e-08, + "magaziner": 2.04e-08, + "maggoty": 2.04e-08, + "mandola": 2.04e-08, + "maraud": 2.04e-08, + "margarite": 2.04e-08, + "markhor": 2.04e-08, + "marsi": 2.04e-08, + "memoryless": 2.04e-08, + "mercurochrome": 2.04e-08, + "metacarpophalangeal": 2.04e-08, + "midlander": 2.04e-08, + "mignonne": 2.04e-08, + "milksop": 2.04e-08, + "moonlighter": 2.04e-08, + "mosasaurus": 2.04e-08, + "movably": 2.04e-08, + "moyenne": 2.04e-08, + "multisyllabic": 2.04e-08, + "multum": 2.04e-08, + "nephila": 2.04e-08, + "nondiabetic": 2.04e-08, + "nucleoplasm": 2.04e-08, + "nunatak": 2.04e-08, + "ontogenesis": 2.04e-08, + "opulently": 2.04e-08, + "organotin": 2.04e-08, + "osirian": 2.04e-08, + "ostensive": 2.04e-08, + "outport": 2.04e-08, + "overside": 2.04e-08, + "palmo": 2.04e-08, + "panjandrum": 2.04e-08, + "parching": 2.04e-08, + "pargeter": 2.04e-08, + "parklike": 2.04e-08, + "parnassian": 2.04e-08, + "patronal": 2.04e-08, + "pediculus": 2.04e-08, + "perinuclear": 2.04e-08, + "permissioned": 2.04e-08, + "phantasma": 2.04e-08, + "phycological": 2.04e-08, + "pickaninny": 2.04e-08, + "pineland": 2.04e-08, + "piscivorous": 2.04e-08, + "pistacia": 2.04e-08, + "plash": 2.04e-08, + "polemically": 2.04e-08, + "pollinia": 2.04e-08, + "polyphagous": 2.04e-08, + "polyporus": 2.04e-08, + "prearrangement": 2.04e-08, + "preceptorship": 2.04e-08, + "preces": 2.04e-08, + "precipitately": 2.04e-08, + "prevenient": 2.04e-08, + "printery": 2.04e-08, + "psychobiological": 2.04e-08, + "puku": 2.04e-08, + "pulsator": 2.04e-08, + "pyrethrin": 2.04e-08, + "raanan": 2.04e-08, + "rangifer": 2.04e-08, + "ratable": 2.04e-08, + "ratch": 2.04e-08, + "rattly": 2.04e-08, + "redeliver": 2.04e-08, + "reductionistic": 2.04e-08, + "reparable": 2.04e-08, + "restring": 2.04e-08, + "ribaldry": 2.04e-08, + "ridable": 2.04e-08, + "riddel": 2.04e-08, + "rouille": 2.04e-08, + "rubbishy": 2.04e-08, + "saccos": 2.04e-08, + "sacramentally": 2.04e-08, + "saim": 2.04e-08, + "salvinia": 2.04e-08, + "sanjak": 2.04e-08, + "schanz": 2.04e-08, + "seborrhea": 2.04e-08, + "sebright": 2.04e-08, + "seidlitz": 2.04e-08, + "sestina": 2.04e-08, + "shahzada": 2.04e-08, + "sharra": 2.04e-08, + "sheerly": 2.04e-08, + "shipbreaking": 2.04e-08, + "shootist": 2.04e-08, + "sicarius": 2.04e-08, + "simmon": 2.04e-08, + "singhalese": 2.04e-08, + "skirl": 2.04e-08, + "slavism": 2.04e-08, + "slue": 2.04e-08, + "smeeth": 2.04e-08, + "smeller": 2.04e-08, + "snowless": 2.04e-08, + "solutrean": 2.04e-08, + "songfest": 2.04e-08, + "sophistical": 2.04e-08, + "spak": 2.04e-08, + "sperma": 2.04e-08, + "spermatheca": 2.04e-08, + "splasher": 2.04e-08, + "springtrap": 2.04e-08, + "squinch": 2.04e-08, + "staphylinidae": 2.04e-08, + "starn": 2.04e-08, + "statice": 2.04e-08, + "stockholding": 2.04e-08, + "stockinger": 2.04e-08, + "subconjunctival": 2.04e-08, + "subscapularis": 2.04e-08, + "substitutional": 2.04e-08, + "sulkily": 2.04e-08, + "supervene": 2.04e-08, + "tahsin": 2.04e-08, + "tamarix": 2.04e-08, + "tartrazine": 2.04e-08, + "tead": 2.04e-08, + "tellina": 2.04e-08, + "telophase": 2.04e-08, + "temiskaming": 2.04e-08, + "testate": 2.04e-08, + "tetrachloroethylene": 2.04e-08, + "thamnophis": 2.04e-08, + "thermopile": 2.04e-08, + "timberman": 2.04e-08, + "tonicity": 2.04e-08, + "tonsorial": 2.04e-08, + "totum": 2.04e-08, + "trapa": 2.04e-08, + "tref": 2.04e-08, + "trellised": 2.04e-08, + "trichotomy": 2.04e-08, + "tringa": 2.04e-08, + "triphasic": 2.04e-08, + "triquetra": 2.04e-08, + "tzotzil": 2.04e-08, + "udal": 2.04e-08, + "ultracentrifuge": 2.04e-08, + "ultranationalism": 2.04e-08, + "unal": 2.04e-08, + "unattractively": 2.04e-08, + "uncurl": 2.04e-08, + "understandability": 2.04e-08, + "unimodular": 2.04e-08, + "universalistic": 2.04e-08, + "unlamented": 2.04e-08, + "unlooked": 2.04e-08, + "unorthodoxy": 2.04e-08, + "unperceived": 2.04e-08, + "unscored": 2.04e-08, + "unshed": 2.04e-08, + "unthreatened": 2.04e-08, + "untrustworthiness": 2.04e-08, + "urushiol": 2.04e-08, + "usee": 2.04e-08, + "valva": 2.04e-08, + "vanadate": 2.04e-08, + "vaunting": 2.04e-08, + "vavasor": 2.04e-08, + "velours": 2.04e-08, + "verst": 2.04e-08, + "vibrissae": 2.04e-08, + "vitalist": 2.04e-08, + "watchfully": 2.04e-08, + "waterscape": 2.04e-08, + "weki": 2.04e-08, + "welting": 2.04e-08, + "whiggish": 2.04e-08, + "whitsuntide": 2.04e-08, + "witherite": 2.04e-08, + "yardman": 2.04e-08, + "yucatecan": 2.04e-08, + "zoogeography": 2.04e-08, + "zooid": 2.04e-08, + "abducens": 2e-08, + "acedia": 2e-08, + "acetophenone": 2e-08, + "affricate": 2e-08, + "affrighted": 2e-08, + "afterburning": 2e-08, + "alarum": 2e-08, + "albuginea": 2e-08, + "alcaide": 2e-08, + "altin": 2e-08, + "antithetic": 2e-08, + "apomixis": 2e-08, + "appendant": 2e-08, + "archdemon": 2e-08, + "assegai": 2e-08, + "autobiographically": 2e-08, + "autoregulation": 2e-08, + "baghouse": 2e-08, + "barbarically": 2e-08, + "bardy": 2e-08, + "begetter": 2e-08, + "beguilingly": 2e-08, + "beingness": 2e-08, + "biliverdin": 2e-08, + "boneshaker": 2e-08, + "boomslang": 2e-08, + "bouge": 2e-08, + "boyang": 2e-08, + "branchless": 2e-08, + "briard": 2e-08, + "bushbuck": 2e-08, + "cailleach": 2e-08, + "calisthenic": 2e-08, + "capful": 2e-08, + "capitulary": 2e-08, + "carbamide": 2e-08, + "cardoon": 2e-08, + "carfare": 2e-08, + "centriole": 2e-08, + "chaffer": 2e-08, + "charlock": 2e-08, + "chauchat": 2e-08, + "chawl": 2e-08, + "chemotherapeutics": 2e-08, + "chrysoprase": 2e-08, + "ciceronian": 2e-08, + "cockleshell": 2e-08, + "comeliness": 2e-08, + "commendam": 2e-08, + "completive": 2e-08, + "confounder": 2e-08, + "contagiously": 2e-08, + "contemplatively": 2e-08, + "conventicle": 2e-08, + "countermove": 2e-08, + "craney": 2e-08, + "criminalist": 2e-08, + "cringingly": 2e-08, + "darshana": 2e-08, + "dechlorination": 2e-08, + "decompressive": 2e-08, + "deerhound": 2e-08, + "defensibility": 2e-08, + "despitefully": 2e-08, + "diffidently": 2e-08, + "digitigrade": 2e-08, + "dionysiac": 2e-08, + "dipsomaniac": 2e-08, + "doltish": 2e-08, + "dubber": 2e-08, + "duodecimal": 2e-08, + "eclectics": 2e-08, + "ectasia": 2e-08, + "ectomorph": 2e-08, + "elain": 2e-08, + "empathically": 2e-08, + "endocardium": 2e-08, + "endochondral": 2e-08, + "enslaver": 2e-08, + "equidistance": 2e-08, + "erse": 2e-08, + "euergetes": 2e-08, + "exasperatedly": 2e-08, + "excursus": 2e-08, + "extensiveness": 2e-08, + "fallaciously": 2e-08, + "fiducia": 2e-08, + "fieldsman": 2e-08, + "fisherwoman": 2e-08, + "flaggy": 2e-08, + "flamen": 2e-08, + "frugivorous": 2e-08, + "fundable": 2e-08, + "gaillardia": 2e-08, + "galago": 2e-08, + "galvanization": 2e-08, + "garbling": 2e-08, + "geotechnics": 2e-08, + "glister": 2e-08, + "gonal": 2e-08, + "gravimetry": 2e-08, + "greasewood": 2e-08, + "helenus": 2e-08, + "helminthic": 2e-08, + "helot": 2e-08, + "hent": 2e-08, + "hesitatingly": 2e-08, + "homeotic": 2e-08, + "hura": 2e-08, + "hydrosol": 2e-08, + "hyoscyamine": 2e-08, + "hypodermically": 2e-08, + "iliopsoas": 2e-08, + "indigena": 2e-08, + "inexpedient": 2e-08, + "infatuate": 2e-08, + "inkstand": 2e-08, + "inlaying": 2e-08, + "innocency": 2e-08, + "insusceptible": 2e-08, + "intimidatory": 2e-08, + "isopoda": 2e-08, + "itinerarium": 2e-08, + "jugger": 2e-08, + "keelhaul": 2e-08, + "kemalism": 2e-08, + "kitan": 2e-08, + "lakish": 2e-08, + "landlordism": 2e-08, + "lasciviously": 2e-08, + "lection": 2e-08, + "ledged": 2e-08, + "lepidolite": 2e-08, + "leucippus": 2e-08, + "linnaea": 2e-08, + "lunule": 2e-08, + "macanese": 2e-08, + "mahdist": 2e-08, + "mainsheet": 2e-08, + "maius": 2e-08, + "manslayer": 2e-08, + "mashie": 2e-08, + "matrilineally": 2e-08, + "mercurian": 2e-08, + "microdose": 2e-08, + "micropore": 2e-08, + "mollifying": 2e-08, + "momme": 2e-08, + "monoceros": 2e-08, + "mounter": 2e-08, + "multipartite": 2e-08, + "mump": 2e-08, + "murra": 2e-08, + "myrtus": 2e-08, + "narky": 2e-08, + "neurasthenic": 2e-08, + "neurotropic": 2e-08, + "nonmotile": 2e-08, + "noontide": 2e-08, + "noumenal": 2e-08, + "numenius": 2e-08, + "oaty": 2e-08, + "obex": 2e-08, + "obloquy": 2e-08, + "onza": 2e-08, + "operatically": 2e-08, + "ophrys": 2e-08, + "ordines": 2e-08, + "oread": 2e-08, + "outcaste": 2e-08, + "ovambo": 2e-08, + "overlander": 2e-08, + "panderer": 2e-08, + "pantelis": 2e-08, + "paracentesis": 2e-08, + "paradigmatically": 2e-08, + "peba": 2e-08, + "perca": 2e-08, + "pericardiocentesis": 2e-08, + "permissibly": 2e-08, + "photolithographic": 2e-08, + "photophysical": 2e-08, + "phototrophic": 2e-08, + "pial": 2e-08, + "pinaster": 2e-08, + "plumaged": 2e-08, + "pontin": 2e-08, + "populistic": 2e-08, + "postnuptial": 2e-08, + "prebendal": 2e-08, + "preconscious": 2e-08, + "prehistorically": 2e-08, + "prerevolutionary": 2e-08, + "procuration": 2e-08, + "propellent": 2e-08, + "prurience": 2e-08, + "pulex": 2e-08, + "pya": 2e-08, + "pyralidae": 2e-08, + "quadruplet": 2e-08, + "radiographically": 2e-08, + "radiotelephony": 2e-08, + "ravishment": 2e-08, + "reconfirmation": 2e-08, + "renouncement": 2e-08, + "resultantly": 2e-08, + "rhodococcus": 2e-08, + "rhodora": 2e-08, + "rogation": 2e-08, + "roughcast": 2e-08, + "rowdyism": 2e-08, + "ruching": 2e-08, + "rux": 2e-08, + "salmonidae": 2e-08, + "sauger": 2e-08, + "sclerite": 2e-08, + "scotswoman": 2e-08, + "semidetached": 2e-08, + "sempervivum": 2e-08, + "serviceberry": 2e-08, + "servomotor": 2e-08, + "shagbark": 2e-08, + "sheriffdom": 2e-08, + "shoreward": 2e-08, + "sideward": 2e-08, + "significative": 2e-08, + "sinaitic": 2e-08, + "singspiel": 2e-08, + "sinlessness": 2e-08, + "sirup": 2e-08, + "skiver": 2e-08, + "slavi": 2e-08, + "slidable": 2e-08, + "sodded": 2e-08, + "sorbian": 2e-08, + "sparer": 2e-08, + "spodumene": 2e-08, + "squamosa": 2e-08, + "staling": 2e-08, + "starer": 2e-08, + "stellaria": 2e-08, + "stereoisomer": 2e-08, + "stibnite": 2e-08, + "stretto": 2e-08, + "stroboscope": 2e-08, + "subchondral": 2e-08, + "submicroscopic": 2e-08, + "suevi": 2e-08, + "supportability": 2e-08, + "supratemporal": 2e-08, + "taggle": 2e-08, + "tangut": 2e-08, + "terrigenous": 2e-08, + "testacea": 2e-08, + "textualist": 2e-08, + "thessalonian": 2e-08, + "tinkly": 2e-08, + "tiple": 2e-08, + "tollman": 2e-08, + "tonometry": 2e-08, + "tooken": 2e-08, + "travois": 2e-08, + "trichuris": 2e-08, + "triennially": 2e-08, + "trochlea": 2e-08, + "trogon": 2e-08, + "tumid": 2e-08, + "unaccountability": 2e-08, + "unaesthetic": 2e-08, + "unbacked": 2e-08, + "uncelebrated": 2e-08, + "unclimbed": 2e-08, + "uncollectible": 2e-08, + "undeformed": 2e-08, + "underexposure": 2e-08, + "undistinguishable": 2e-08, + "unendingly": 2e-08, + "unexampled": 2e-08, + "unfilial": 2e-08, + "ungroomed": 2e-08, + "unhandled": 2e-08, + "unliveable": 2e-08, + "unmannerly": 2e-08, + "unposted": 2e-08, + "unshaped": 2e-08, + "unvaried": 2e-08, + "unwaxed": 2e-08, + "verminous": 2e-08, + "vinal": 2e-08, + "vomica": 2e-08, + "weever": 2e-08, + "whelm": 2e-08, + "whiskery": 2e-08, + "winy": 2e-08, + "yoker": 2e-08, + "abler": 1.95e-08, + "abortus": 1.95e-08, + "academicism": 1.95e-08, + "actinomyces": 1.95e-08, + "adenoidal": 1.95e-08, + "admonitory": 1.95e-08, + "affectional": 1.95e-08, + "airt": 1.95e-08, + "alette": 1.95e-08, + "alunite": 1.95e-08, + "amacrine": 1.95e-08, + "amandus": 1.95e-08, + "amaranthine": 1.95e-08, + "amatrice": 1.95e-08, + "anastomose": 1.95e-08, + "angiology": 1.95e-08, + "angulate": 1.95e-08, + "anisette": 1.95e-08, + "archil": 1.95e-08, + "arhar": 1.95e-08, + "armado": 1.95e-08, + "azande": 1.95e-08, + "azoth": 1.95e-08, + "badian": 1.95e-08, + "baldie": 1.95e-08, + "bareness": 1.95e-08, + "basketmaker": 1.95e-08, + "batwa": 1.95e-08, + "belga": 1.95e-08, + "belled": 1.95e-08, + "bessarabian": 1.95e-08, + "bhoy": 1.95e-08, + "billman": 1.95e-08, + "bito": 1.95e-08, + "bookwork": 1.95e-08, + "bootlace": 1.95e-08, + "boree": 1.95e-08, + "botheration": 1.95e-08, + "brachioradialis": 1.95e-08, + "brahminism": 1.95e-08, + "braker": 1.95e-08, + "brickbat": 1.95e-08, + "briskness": 1.95e-08, + "bromination": 1.95e-08, + "bulker": 1.95e-08, + "buskin": 1.95e-08, + "butterbur": 1.95e-08, + "calcaneum": 1.95e-08, + "calp": 1.95e-08, + "calusa": 1.95e-08, + "calyptra": 1.95e-08, + "caparison": 1.95e-08, + "caprine": 1.95e-08, + "carpinus": 1.95e-08, + "carvacrol": 1.95e-08, + "castilleja": 1.95e-08, + "cathexis": 1.95e-08, + "cattiness": 1.95e-08, + "cauld": 1.95e-08, + "cellularity": 1.95e-08, + "chalcone": 1.95e-08, + "chromospheric": 1.95e-08, + "churchmanship": 1.95e-08, + "circumambulate": 1.95e-08, + "circumspectly": 1.95e-08, + "cissus": 1.95e-08, + "clabber": 1.95e-08, + "clivia": 1.95e-08, + "clonus": 1.95e-08, + "clostridial": 1.95e-08, + "coalitional": 1.95e-08, + "cockaded": 1.95e-08, + "conoid": 1.95e-08, + "conscienceless": 1.95e-08, + "consilience": 1.95e-08, + "contrariety": 1.95e-08, + "coom": 1.95e-08, + "copart": 1.95e-08, + "craniectomy": 1.95e-08, + "ctenophora": 1.95e-08, + "cucurbit": 1.95e-08, + "culverin": 1.95e-08, + "cymraeg": 1.95e-08, + "cytisus": 1.95e-08, + "danaan": 1.95e-08, + "dashingly": 1.95e-08, + "decerebrate": 1.95e-08, + "deflective": 1.95e-08, + "deliberateness": 1.95e-08, + "deliquescent": 1.95e-08, + "dendrology": 1.95e-08, + "dewater": 1.95e-08, + "dibasic": 1.95e-08, + "distractible": 1.95e-08, + "dolefully": 1.95e-08, + "doree": 1.95e-08, + "drusy": 1.95e-08, + "electress": 1.95e-08, + "electroluminescence": 1.95e-08, + "emperorship": 1.95e-08, + "enactive": 1.95e-08, + "encinal": 1.95e-08, + "endocrinological": 1.95e-08, + "epenthesis": 1.95e-08, + "epicycle": 1.95e-08, + "epidermoid": 1.95e-08, + "erodible": 1.95e-08, + "euge": 1.95e-08, + "euglena": 1.95e-08, + "eyespot": 1.95e-08, + "fauvist": 1.95e-08, + "ferociousness": 1.95e-08, + "fibroblastic": 1.95e-08, + "fibroin": 1.95e-08, + "fieldfare": 1.95e-08, + "fondu": 1.95e-08, + "footwall": 1.95e-08, + "fordy": 1.95e-08, + "foulmouthed": 1.95e-08, + "francium": 1.95e-08, + "fraticelli": 1.95e-08, + "freshet": 1.95e-08, + "fusional": 1.95e-08, + "galbanum": 1.95e-08, + "gebbie": 1.95e-08, + "gibus": 1.95e-08, + "gigantopithecus": 1.95e-08, + "gimped": 1.95e-08, + "gramineae": 1.95e-08, + "growingly": 1.95e-08, + "guaiac": 1.95e-08, + "hackin": 1.95e-08, + "halma": 1.95e-08, + "harmel": 1.95e-08, + "heedlessness": 1.95e-08, + "humulus": 1.95e-08, + "hydrazone": 1.95e-08, + "hydrobromide": 1.95e-08, + "hypogastric": 1.95e-08, + "ichneumonidae": 1.95e-08, + "idahoan": 1.95e-08, + "ijma": 1.95e-08, + "inadvertence": 1.95e-08, + "interhemispheric": 1.95e-08, + "intertrochanteric": 1.95e-08, + "interzonal": 1.95e-08, + "intumescent": 1.95e-08, + "inviter": 1.95e-08, + "jeffie": 1.95e-08, + "jivaro": 1.95e-08, + "johnsonian": 1.95e-08, + "kend": 1.95e-08, + "killable": 1.95e-08, + "kylix": 1.95e-08, + "ladylove": 1.95e-08, + "lappa": 1.95e-08, + "latrodectus": 1.95e-08, + "lawned": 1.95e-08, + "leathern": 1.95e-08, + "lepidium": 1.95e-08, + "lithotomy": 1.95e-08, + "macrocosmic": 1.95e-08, + "madhva": 1.95e-08, + "marid": 1.95e-08, + "materialistically": 1.95e-08, + "matricaria": 1.95e-08, + "mauley": 1.95e-08, + "meatiness": 1.95e-08, + "metastability": 1.95e-08, + "miliaria": 1.95e-08, + "mineralogically": 1.95e-08, + "monocled": 1.95e-08, + "monomethyl": 1.95e-08, + "moonshining": 1.95e-08, + "morion": 1.95e-08, + "moschus": 1.95e-08, + "motorbus": 1.95e-08, + "mouflon": 1.95e-08, + "movant": 1.95e-08, + "mudejar": 1.95e-08, + "mujtahid": 1.95e-08, + "multiplane": 1.95e-08, + "mythologize": 1.95e-08, + "nassa": 1.95e-08, + "natrium": 1.95e-08, + "navar": 1.95e-08, + "nectary": 1.95e-08, + "newari": 1.95e-08, + "ninepins": 1.95e-08, + "nobble": 1.95e-08, + "nodus": 1.95e-08, + "nonjudicial": 1.95e-08, + "notropis": 1.95e-08, + "notus": 1.95e-08, + "nowise": 1.95e-08, + "nucleoid": 1.95e-08, + "nulliparous": 1.95e-08, + "ohmmeter": 1.95e-08, + "oppressiveness": 1.95e-08, + "organicism": 1.95e-08, + "orle": 1.95e-08, + "orlo": 1.95e-08, + "ostrogothic": 1.95e-08, + "ovalbumin": 1.95e-08, + "overpotential": 1.95e-08, + "overproof": 1.95e-08, + "palea": 1.95e-08, + "paleopathology": 1.95e-08, + "palsied": 1.95e-08, + "pandion": 1.95e-08, + "pavonia": 1.95e-08, + "pectic": 1.95e-08, + "pelasgian": 1.95e-08, + "pelf": 1.95e-08, + "perverseness": 1.95e-08, + "philanthropically": 1.95e-08, + "phyllanthus": 1.95e-08, + "pilum": 1.95e-08, + "pinnatifid": 1.95e-08, + "pipefish": 1.95e-08, + "pleonasm": 1.95e-08, + "poilu": 1.95e-08, + "polytropic": 1.95e-08, + "pommard": 1.95e-08, + "potestate": 1.95e-08, + "praefectus": 1.95e-08, + "preselect": 1.95e-08, + "princedom": 1.95e-08, + "printability": 1.95e-08, + "proctitis": 1.95e-08, + "progressivist": 1.95e-08, + "proptosis": 1.95e-08, + "provisioner": 1.95e-08, + "pyrrolidone": 1.95e-08, + "queerly": 1.95e-08, + "racemization": 1.95e-08, + "radiolaria": 1.95e-08, + "rathskeller": 1.95e-08, + "ratiocination": 1.95e-08, + "raun": 1.95e-08, + "ravelin": 1.95e-08, + "rebec": 1.95e-08, + "reboard": 1.95e-08, + "recenter": 1.95e-08, + "reprice": 1.95e-08, + "revelant": 1.95e-08, + "riblet": 1.95e-08, + "rotative": 1.95e-08, + "sagittaria": 1.95e-08, + "saloonkeeper": 1.95e-08, + "salopian": 1.95e-08, + "salpa": 1.95e-08, + "samsam": 1.95e-08, + "sardanapalus": 1.95e-08, + "scandic": 1.95e-08, + "scatology": 1.95e-08, + "scenographic": 1.95e-08, + "scheffel": 1.95e-08, + "sclerophyll": 1.95e-08, + "scyld": 1.95e-08, + "sequela": 1.95e-08, + "serail": 1.95e-08, + "sideling": 1.95e-08, + "sife": 1.95e-08, + "slotter": 1.95e-08, + "slummy": 1.95e-08, + "slyness": 1.95e-08, + "soapmaking": 1.95e-08, + "soce": 1.95e-08, + "sociometry": 1.95e-08, + "sonorant": 1.95e-08, + "sophism": 1.95e-08, + "southron": 1.95e-08, + "spermatogonial": 1.95e-08, + "spinae": 1.95e-08, + "spinelessness": 1.95e-08, + "sporobolus": 1.95e-08, + "squam": 1.95e-08, + "sridharan": 1.95e-08, + "stola": 1.95e-08, + "stomatology": 1.95e-08, + "stonechat": 1.95e-08, + "stoutness": 1.95e-08, + "stressless": 1.95e-08, + "styrax": 1.95e-08, + "subcapsular": 1.95e-08, + "suckler": 1.95e-08, + "suffocatingly": 1.95e-08, + "superphosphate": 1.95e-08, + "swad": 1.95e-08, + "tahltan": 1.95e-08, + "talamanca": 1.95e-08, + "tarok": 1.95e-08, + "tawse": 1.95e-08, + "taxability": 1.95e-08, + "tegument": 1.95e-08, + "terna": 1.95e-08, + "thalasso": 1.95e-08, + "theorbo": 1.95e-08, + "thermoluminescent": 1.95e-08, + "thickheaded": 1.95e-08, + "timbale": 1.95e-08, + "titler": 1.95e-08, + "titulus": 1.95e-08, + "tormenta": 1.95e-08, + "totipotent": 1.95e-08, + "transitionary": 1.95e-08, + "tressed": 1.95e-08, + "truncal": 1.95e-08, + "tyrolese": 1.95e-08, + "uhlan": 1.95e-08, + "unaspirated": 1.95e-08, + "unconstructed": 1.95e-08, + "underspend": 1.95e-08, + "undescribable": 1.95e-08, + "unengaging": 1.95e-08, + "ungratefulness": 1.95e-08, + "unknowledgeable": 1.95e-08, + "unlace": 1.95e-08, + "unmanifest": 1.95e-08, + "unpropitious": 1.95e-08, + "unsighted": 1.95e-08, + "unsynchronized": 1.95e-08, + "unwaged": 1.95e-08, + "ventricose": 1.95e-08, + "verbascum": 1.95e-08, + "verrucous": 1.95e-08, + "versal": 1.95e-08, + "viniculture": 1.95e-08, + "vitalization": 1.95e-08, + "vivisectionist": 1.95e-08, + "voivode": 1.95e-08, + "vomerine": 1.95e-08, + "wampus": 1.95e-08, + "warper": 1.95e-08, + "wattmeter": 1.95e-08, + "whinger": 1.95e-08, + "whyever": 1.95e-08, + "wreathe": 1.95e-08, + "yeard": 1.95e-08, + "yodeler": 1.95e-08, + "actinomorphic": 1.91e-08, + "adjacently": 1.91e-08, + "afeared": 1.91e-08, + "afterlight": 1.91e-08, + "agmatine": 1.91e-08, + "agnel": 1.91e-08, + "airmanship": 1.91e-08, + "aliunde": 1.91e-08, + "alpenglow": 1.91e-08, + "althaea": 1.91e-08, + "amli": 1.91e-08, + "aneuploid": 1.91e-08, + "anharmonic": 1.91e-08, + "antedate": 1.91e-08, + "antimonide": 1.91e-08, + "anywheres": 1.91e-08, + "aposematic": 1.91e-08, + "approvable": 1.91e-08, + "arbitrable": 1.91e-08, + "aristida": 1.91e-08, + "aristippus": 1.91e-08, + "arteriole": 1.91e-08, + "athirst": 1.91e-08, + "aute": 1.91e-08, + "auxiliar": 1.91e-08, + "backstitch": 1.91e-08, + "bactericide": 1.91e-08, + "bambusa": 1.91e-08, + "baptizer": 1.91e-08, + "barile": 1.91e-08, + "baselessly": 1.91e-08, + "bathypelagic": 1.91e-08, + "bewailing": 1.91e-08, + "bicorne": 1.91e-08, + "billot": 1.91e-08, + "blent": 1.91e-08, + "bonspiel": 1.91e-08, + "bonze": 1.91e-08, + "boxful": 1.91e-08, + "bragger": 1.91e-08, + "bricky": 1.91e-08, + "bridling": 1.91e-08, + "brog": 1.91e-08, + "calculous": 1.91e-08, + "calliper": 1.91e-08, + "callovian": 1.91e-08, + "camelid": 1.91e-08, + "cardiomegaly": 1.91e-08, + "cathodoluminescence": 1.91e-08, + "centrales": 1.91e-08, + "centrifugally": 1.91e-08, + "ceric": 1.91e-08, + "chaitya": 1.91e-08, + "chernozem": 1.91e-08, + "chilliness": 1.91e-08, + "chlorinator": 1.91e-08, + "cincture": 1.91e-08, + "clacker": 1.91e-08, + "coagula": 1.91e-08, + "cobwebby": 1.91e-08, + "coheir": 1.91e-08, + "committer": 1.91e-08, + "cordel": 1.91e-08, + "couchant": 1.91e-08, + "counterman": 1.91e-08, + "counterplay": 1.91e-08, + "courante": 1.91e-08, + "cubi": 1.91e-08, + "cutwork": 1.91e-08, + "cyprinidae": 1.91e-08, + "daer": 1.91e-08, + "dandyism": 1.91e-08, + "danegeld": 1.91e-08, + "darger": 1.91e-08, + "daytimes": 1.07e-08, + "debaser": 1.91e-08, + "defilade": 1.91e-08, + "dermatome": 1.91e-08, + "dharana": 1.91e-08, + "diaphoresis": 1.91e-08, + "dimethylamine": 1.91e-08, + "dimps": 1.91e-08, + "dioptric": 1.91e-08, + "disconnectedness": 1.91e-08, + "discreteness": 1.91e-08, + "disorientate": 1.91e-08, + "disport": 1.91e-08, + "dissociable": 1.91e-08, + "distraint": 1.91e-08, + "dobber": 1.91e-08, + "dominionism": 1.91e-08, + "dorsoventral": 1.91e-08, + "drayman": 1.91e-08, + "earthborn": 1.91e-08, + "egocentricity": 1.91e-08, + "electromyographic": 1.91e-08, + "emptily": 1.91e-08, + "endocarp": 1.91e-08, + "epididymitis": 1.91e-08, + "epistatic": 1.91e-08, + "exultantly": 1.91e-08, + "falsework": 1.91e-08, + "fatherlessness": 1.91e-08, + "fearsomely": 1.91e-08, + "fictionalize": 1.91e-08, + "flaccidity": 1.91e-08, + "flatman": 1.91e-08, + "flyspeck": 1.91e-08, + "forky": 1.91e-08, + "formular": 1.91e-08, + "gatha": 1.91e-08, + "gaultheria": 1.91e-08, + "gimbaled": 1.91e-08, + "gladsome": 1.91e-08, + "gladstonian": 1.91e-08, + "goaty": 1.91e-08, + "graphophone": 1.91e-08, + "gritter": 1.91e-08, + "grubbed": 1.91e-08, + "gynoecium": 1.91e-08, + "handfasting": 1.91e-08, + "harlotry": 1.91e-08, + "harpalus": 1.91e-08, + "heathery": 1.91e-08, + "hemianopia": 1.91e-08, + "hemihydrate": 1.91e-08, + "highboy": 1.91e-08, + "hippocrene": 1.91e-08, + "huller": 1.91e-08, + "humin": 1.91e-08, + "hydrator": 1.91e-08, + "imbibition": 1.91e-08, + "imer": 1.91e-08, + "imitable": 1.91e-08, + "immortalization": 1.91e-08, + "impiously": 1.91e-08, + "importable": 1.91e-08, + "impresa": 1.91e-08, + "incontinently": 1.91e-08, + "indumentum": 1.91e-08, + "insurrectional": 1.91e-08, + "interisland": 1.91e-08, + "invar": 1.91e-08, + "iodo": 1.91e-08, + "jessamy": 1.91e-08, + "kabardian": 1.91e-08, + "kettledrum": 1.91e-08, + "kittenish": 1.91e-08, + "knapper": 1.91e-08, + "knickknack": 1.91e-08, + "koryak": 1.91e-08, + "lactarius": 1.91e-08, + "larvicide": 1.91e-08, + "lauraceae": 1.91e-08, + "leaser": 1.91e-08, + "legatine": 1.91e-08, + "lench": 1.91e-08, + "lengthily": 1.91e-08, + "lictor": 1.91e-08, + "lipolytic": 1.91e-08, + "lustral": 1.91e-08, + "lymphocytosis": 1.91e-08, + "malonic": 1.91e-08, + "maltreat": 1.91e-08, + "mappable": 1.91e-08, + "markedness": 1.91e-08, + "matrilocal": 1.91e-08, + "mellowness": 1.91e-08, + "meroitic": 1.91e-08, + "mesencephalon": 1.91e-08, + "microbicide": 1.91e-08, + "microcline": 1.91e-08, + "micrococcus": 1.91e-08, + "microdissection": 1.91e-08, + "misapply": 1.91e-08, + "mislay": 1.91e-08, + "moldboard": 1.91e-08, + "moluccan": 1.91e-08, + "mononitrate": 1.91e-08, + "morganatically": 1.91e-08, + "moul": 1.91e-08, + "mydriasis": 1.91e-08, + "neoteny": 1.91e-08, + "nocturn": 1.91e-08, + "nonscientific": 1.91e-08, + "normotensive": 1.91e-08, + "obtrusively": 1.91e-08, + "obturation": 1.91e-08, + "offprint": 1.91e-08, + "ogival": 1.91e-08, + "olynthus": 1.91e-08, + "omnibenevolent": 1.91e-08, + "ophthalmoplegia": 1.91e-08, + "otherworldliness": 1.91e-08, + "owlish": 1.91e-08, + "pacaya": 1.91e-08, + "palaemon": 1.91e-08, + "panela": 1.91e-08, + "parcheesi": 1.91e-08, + "parthenos": 1.91e-08, + "penates": 1.91e-08, + "periodontium": 1.91e-08, + "phonography": 1.91e-08, + "phora": 1.91e-08, + "photodissociation": 1.91e-08, + "phyletic": 1.91e-08, + "physa": 1.91e-08, + "pilose": 1.91e-08, + "piousness": 1.91e-08, + "plication": 1.91e-08, + "podger": 1.91e-08, + "pointman": 1.91e-08, + "pomander": 1.91e-08, + "precentral": 1.91e-08, + "problematize": 1.91e-08, + "procrustes": 1.91e-08, + "prophetical": 1.91e-08, + "psychonomic": 1.91e-08, + "pulpitis": 1.91e-08, + "purga": 1.91e-08, + "pyrazine": 1.91e-08, + "pyrope": 1.91e-08, + "pyruvic": 1.91e-08, + "quarrier": 1.91e-08, + "quelea": 1.91e-08, + "raddle": 1.91e-08, + "rakishly": 1.91e-08, + "razorbill": 1.91e-08, + "rectifiable": 1.91e-08, + "redemptor": 1.91e-08, + "referentially": 1.91e-08, + "reimposition": 1.91e-08, + "rejuvenator": 1.91e-08, + "reline": 1.91e-08, + "requalify": 1.91e-08, + "reselect": 1.91e-08, + "reviser": 1.91e-08, + "rigamarole": 1.91e-08, + "rinser": 1.91e-08, + "rotgut": 1.91e-08, + "ruffer": 1.91e-08, + "saarbrucken": 1.91e-08, + "salicornia": 1.91e-08, + "salpingectomy": 1.91e-08, + "salsola": 1.91e-08, + "salvationist": 1.91e-08, + "sanand": 1.91e-08, + "sectionally": 1.91e-08, + "semiformal": 1.91e-08, + "shrinkable": 1.91e-08, + "singsing": 1.91e-08, + "skout": 1.91e-08, + "snowcap": 1.91e-08, + "socii": 1.91e-08, + "solio": 1.91e-08, + "solvate": 1.91e-08, + "spack": 1.91e-08, + "spinalis": 1.91e-08, + "spruit": 1.91e-08, + "spyer": 1.91e-08, + "steek": 1.91e-08, + "stolon": 1.91e-08, + "storge": 1.91e-08, + "stoush": 1.91e-08, + "superstrong": 1.91e-08, + "suspicionless": 1.91e-08, + "swoony": 1.91e-08, + "tatter": 1.91e-08, + "tauntingly": 1.91e-08, + "tave": 1.91e-08, + "tavy": 1.91e-08, + "taws": 1.91e-08, + "telencephalon": 1.91e-08, + "terebinth": 1.91e-08, + "terephthalic": 1.91e-08, + "terphenyl": 1.91e-08, + "thack": 1.91e-08, + "threadfin": 1.91e-08, + "thunnus": 1.91e-08, + "triclinium": 1.91e-08, + "trismus": 1.91e-08, + "trub": 1.91e-08, + "trypan": 1.91e-08, + "trysting": 1.91e-08, + "tweel": 1.91e-08, + "tyrannicide": 1.91e-08, + "understandingly": 1.91e-08, + "ungallant": 1.91e-08, + "ungifted": 1.91e-08, + "unhitch": 1.91e-08, + "unknowability": 1.91e-08, + "unlikeliness": 1.91e-08, + "unpolitical": 1.91e-08, + "unpromoted": 1.91e-08, + "unsimulated": 1.91e-08, + "vanner": 1.91e-08, + "venomously": 1.91e-08, + "vinification": 1.91e-08, + "viticulturist": 1.91e-08, + "voluntarist": 1.91e-08, + "wangler": 1.91e-08, + "whenas": 1.91e-08, + "wildcatter": 1.91e-08, + "winegrower": 1.91e-08, + "winterberry": 1.91e-08, + "witchwood": 1.91e-08, + "withdrawable": 1.91e-08, + "woofy": 1.91e-08, + "ziarat": 1.91e-08, + "abstractionism": 1.86e-08, + "affright": 1.86e-08, + "agalloch": 1.86e-08, + "allegoric": 1.86e-08, + "almohad": 1.86e-08, + "amboina": 1.86e-08, + "anabaena": 1.86e-08, + "animi": 1.86e-08, + "anogenital": 1.86e-08, + "antifeminism": 1.86e-08, + "appellative": 1.86e-08, + "araceae": 1.86e-08, + "aristolochia": 1.86e-08, + "arunta": 1.86e-08, + "asphaltic": 1.86e-08, + "assurant": 1.86e-08, + "autarch": 1.86e-08, + "autodidactic": 1.86e-08, + "automa": 1.86e-08, + "banneret": 1.86e-08, + "banty": 1.86e-08, + "barebacked": 1.86e-08, + "barse": 1.86e-08, + "batan": 1.86e-08, + "beardie": 1.86e-08, + "benignity": 1.86e-08, + "benzylic": 1.86e-08, + "berend": 1.86e-08, + "berith": 1.86e-08, + "bethuel": 1.86e-08, + "bettong": 1.86e-08, + "bhara": 1.86e-08, + "blasphemously": 1.86e-08, + "blepharospasm": 1.86e-08, + "braca": 1.86e-08, + "brachyura": 1.86e-08, + "brickfield": 1.86e-08, + "cadential": 1.86e-08, + "calydon": 1.86e-08, + "cardiological": 1.86e-08, + "cardioplegia": 1.86e-08, + "carhop": 1.86e-08, + "cellule": 1.86e-08, + "censorial": 1.86e-08, + "centaury": 1.86e-08, + "cephalometric": 1.86e-08, + "cicuta": 1.86e-08, + "circularization": 1.86e-08, + "citable": 1.86e-08, + "clotho": 1.86e-08, + "cobbing": 1.86e-08, + "coccinellidae": 1.86e-08, + "cohabitant": 1.86e-08, + "columbite": 1.86e-08, + "comfit": 1.86e-08, + "commissural": 1.86e-08, + "commonalty": 1.86e-08, + "comprador": 1.86e-08, + "concentricity": 1.86e-08, + "conchoidal": 1.86e-08, + "confessedly": 1.86e-08, + "confusional": 1.86e-08, + "conically": 1.86e-08, + "conium": 1.86e-08, + "conspicuity": 1.86e-08, + "coprinus": 1.86e-08, + "cordierite": 1.86e-08, + "cordyline": 1.86e-08, + "countershaft": 1.86e-08, + "crocodylus": 1.86e-08, + "cuckhold": 1.86e-08, + "cyanine": 1.86e-08, + "cyanotype": 1.86e-08, + "cyprinid": 1.86e-08, + "dabb": 1.86e-08, + "decan": 1.86e-08, + "decap": 1.86e-08, + "declivity": 1.86e-08, + "delenda": 1.86e-08, + "deltic": 1.86e-08, + "devall": 1.86e-08, + "differentia": 1.86e-08, + "dinaric": 1.86e-08, + "diplodia": 1.86e-08, + "disconnector": 1.86e-08, + "divaricate": 1.86e-08, + "donative": 1.86e-08, + "doomer": 1.86e-08, + "dropt": 1.86e-08, + "duotone": 1.86e-08, + "dutiable": 1.86e-08, + "elasmobranch": 1.86e-08, + "electrocardiograph": 1.86e-08, + "embolectomy": 1.86e-08, + "endodermis": 1.86e-08, + "enmesh": 1.86e-08, + "epicene": 1.86e-08, + "epileptiform": 1.86e-08, + "epileptogenic": 1.86e-08, + "epithalamium": 1.86e-08, + "erechtheus": 1.86e-08, + "estus": 1.86e-08, + "ethnographically": 1.86e-08, + "eustatic": 1.86e-08, + "exhaustible": 1.86e-08, + "exhibitioner": 1.86e-08, + "facture": 1.86e-08, + "farmable": 1.86e-08, + "feelingly": 1.86e-08, + "fellahin": 1.86e-08, + "fernery": 1.86e-08, + "forcemeat": 1.86e-08, + "foresighted": 1.86e-08, + "formin": 1.86e-08, + "fortunetelling": 1.86e-08, + "frenching": 1.86e-08, + "frontoparietal": 1.86e-08, + "galvanism": 1.86e-08, + "gastronome": 1.86e-08, + "gemmy": 1.86e-08, + "gigantically": 1.86e-08, + "giornata": 1.86e-08, + "glissade": 1.86e-08, + "gloriousness": 1.86e-08, + "glossitis": 1.86e-08, + "goodwife": 1.86e-08, + "governability": 1.86e-08, + "grandiloquence": 1.86e-08, + "habitational": 1.86e-08, + "hairlessness": 1.86e-08, + "haori": 1.86e-08, + "helpmeet": 1.86e-08, + "herniate": 1.86e-08, + "hexene": 1.86e-08, + "horatian": 1.86e-08, + "hudsonian": 1.86e-08, + "hurri": 1.86e-08, + "hydrometallurgical": 1.86e-08, + "hydropathy": 1.86e-08, + "hypophysis": 1.86e-08, + "ignobly": 1.86e-08, + "ilot": 1.86e-08, + "impetuousness": 1.86e-08, + "incarnadine": 1.86e-08, + "interbody": 1.86e-08, + "interindividual": 1.86e-08, + "interlocal": 1.86e-08, + "intermediately": 1.86e-08, + "internuclear": 1.86e-08, + "intragroup": 1.86e-08, + "invincibly": 1.86e-08, + "irascibility": 1.86e-08, + "irenic": 1.86e-08, + "isothiocyanates": 1.86e-08, + "itea": 1.86e-08, + "jamesian": 1.86e-08, + "jardiniere": 1.86e-08, + "jollier": 1.86e-08, + "jongleur": 1.86e-08, + "kayvan": 1.86e-08, + "keelson": 1.86e-08, + "kenosis": 1.86e-08, + "kibitz": 1.86e-08, + "klam": 1.86e-08, + "klop": 1.86e-08, + "kurrajong": 1.86e-08, + "labiodental": 1.86e-08, + "lachrymal": 1.86e-08, + "laurelwood": 1.86e-08, + "leastwise": 1.86e-08, + "leucaena": 1.86e-08, + "leveret": 1.86e-08, + "liatris": 1.86e-08, + "libertinism": 1.86e-08, + "liveryman": 1.86e-08, + "lodgment": 1.86e-08, + "mailable": 1.86e-08, + "marocain": 1.86e-08, + "mediant": 1.86e-08, + "melilotus": 1.86e-08, + "melters": 1.86e-08, + "mephitis": 1.86e-08, + "meristematic": 1.86e-08, + "mesocarp": 1.86e-08, + "methylate": 1.86e-08, + "methylglyoxal": 1.86e-08, + "microseismic": 1.86e-08, + "midvein": 1.86e-08, + "misplay": 1.86e-08, + "misreport": 1.86e-08, + "modernizer": 1.86e-08, + "monal": 1.86e-08, + "monochord": 1.86e-08, + "monodromy": 1.86e-08, + "moratoria": 1.86e-08, + "morga": 1.86e-08, + "mucormycosis": 1.86e-08, + "muleta": 1.86e-08, + "myoblast": 1.86e-08, + "naphthoquinone": 1.86e-08, + "nasopharyngitis": 1.86e-08, + "natality": 1.86e-08, + "nephrotoxic": 1.86e-08, + "nocardia": 1.86e-08, + "nodder": 1.86e-08, + "nonaggressive": 1.86e-08, + "nonpathogenic": 1.86e-08, + "nonracial": 1.86e-08, + "nosewheel": 1.86e-08, + "noter": 1.86e-08, + "obelus": 1.86e-08, + "obol": 1.86e-08, + "obovoid": 1.86e-08, + "ologist": 1.86e-08, + "olpe": 1.86e-08, + "onlay": 1.86e-08, + "opercula": 1.86e-08, + "opercular": 1.86e-08, + "osmanli": 1.86e-08, + "outdrink": 1.86e-08, + "overcorrect": 1.86e-08, + "overglaze": 1.86e-08, + "pantropical": 1.86e-08, + "paratyphoid": 1.86e-08, + "parcelling": 1.86e-08, + "pentyl": 1.86e-08, + "phoo": 1.86e-08, + "phosphorite": 1.86e-08, + "photomechanical": 1.86e-08, + "photoperiodic": 1.86e-08, + "photopic": 1.86e-08, + "phototaxis": 1.86e-08, + "phototropism": 1.86e-08, + "physiognomic": 1.86e-08, + "piastre": 1.86e-08, + "pimpled": 1.86e-08, + "pisciculture": 1.86e-08, + "pisiform": 1.86e-08, + "polyarthritis": 1.86e-08, + "polygala": 1.86e-08, + "porbeagle": 1.86e-08, + "precessional": 1.86e-08, + "precisionist": 1.86e-08, + "precocial": 1.86e-08, + "presentence": 1.86e-08, + "priapic": 1.86e-08, + "productus": 1.86e-08, + "prognathism": 1.86e-08, + "provability": 1.86e-08, + "pseudonymity": 1.86e-08, + "pulchritudinous": 1.86e-08, + "puzzlingly": 1.86e-08, + "pyrotechnical": 1.86e-08, + "quadruplicate": 1.86e-08, + "quincentennial": 1.86e-08, + "rampion": 1.86e-08, + "redware": 1.86e-08, + "regift": 1.86e-08, + "rehang": 1.86e-08, + "remonstrant": 1.86e-08, + "renascent": 1.86e-08, + "repulsiveness": 1.86e-08, + "roominess": 1.86e-08, + "rosmarinus": 1.86e-08, + "roter": 1.86e-08, + "roughrider": 1.86e-08, + "rowel": 1.86e-08, + "rudiment": 1.86e-08, + "russula": 1.86e-08, + "salicin": 1.86e-08, + "sarcosine": 1.86e-08, + "scotopic": 1.86e-08, + "scrophulariaceae": 1.86e-08, + "septuple": 1.86e-08, + "shiko": 1.86e-08, + "shovelhead": 1.86e-08, + "showup": 1.86e-08, + "silkiness": 1.86e-08, + "simpleness": 1.86e-08, + "sinapis": 1.86e-08, + "skinker": 1.86e-08, + "slavophile": 1.86e-08, + "socage": 1.86e-08, + "sophora": 1.86e-08, + "sparely": 1.86e-08, + "splintery": 1.86e-08, + "spurway": 1.86e-08, + "steepled": 1.86e-08, + "stewartry": 1.86e-08, + "stilbite": 1.86e-08, + "stinkbug": 1.86e-08, + "subeditor": 1.86e-08, + "sulfatase": 1.86e-08, + "summar": 1.86e-08, + "supersession": 1.86e-08, + "surliness": 1.86e-08, + "tabanus": 1.86e-08, + "teetotalism": 1.86e-08, + "telephonically": 1.86e-08, + "telescopically": 1.86e-08, + "teutonia": 1.86e-08, + "thurible": 1.86e-08, + "tideswell": 1.86e-08, + "titano": 1.86e-08, + "tohunga": 1.86e-08, + "tonalite": 1.86e-08, + "tornus": 1.86e-08, + "tortricidae": 1.86e-08, + "toughly": 1.86e-08, + "trickiness": 1.86e-08, + "triethanolamine": 1.86e-08, + "triolet": 1.86e-08, + "triology": 1.86e-08, + "tripeptide": 1.86e-08, + "twilit": 1.86e-08, + "typicality": 1.86e-08, + "unabsorbed": 1.86e-08, + "unadapted": 1.86e-08, + "unaggressive": 1.86e-08, + "unbeautiful": 1.86e-08, + "uncanonical": 1.86e-08, + "uncinate": 1.86e-08, + "unconsumed": 1.86e-08, + "unconventionality": 1.86e-08, + "unenrolled": 1.86e-08, + "ungracefully": 1.86e-08, + "unhesitating": 1.86e-08, + "unliving": 1.86e-08, + "unrevealing": 1.86e-08, + "unself": 1.86e-08, + "unsnapped": 1.86e-08, + "unspiritual": 1.86e-08, + "untenanted": 1.86e-08, + "untuck": 1.86e-08, + "uraninite": 1.86e-08, + "urticarial": 1.86e-08, + "viertel": 1.86e-08, + "villanous": 1.86e-08, + "wasteman": 1.86e-08, + "wirework": 1.86e-08, + "wolfen": 1.86e-08, + "worky": 1.86e-08, + "wrox": 1.86e-08, + "wull": 1.86e-08, + "yucatec": 1.86e-08, + "zelkova": 1.86e-08, + "zygomorphic": 1.86e-08, + "aberdonian": 1.82e-08, + "abomasum": 1.82e-08, + "abrash": 1.82e-08, + "adieux": 1.82e-08, + "aeolic": 1.82e-08, + "alternatingly": 1.82e-08, + "amphictyonic": 1.82e-08, + "angor": 1.82e-08, + "anither": 1.82e-08, + "annamite": 1.82e-08, + "antecessor": 1.82e-08, + "anthranilate": 1.82e-08, + "antiprotozoal": 1.82e-08, + "aotea": 1.82e-08, + "apert": 1.82e-08, + "apiaceae": 1.82e-08, + "apocynaceae": 1.82e-08, + "arroba": 1.82e-08, + "arsenopyrite": 1.82e-08, + "ascariasis": 1.82e-08, + "asdic": 1.82e-08, + "assimilable": 1.82e-08, + "atemporal": 1.82e-08, + "avicennia": 1.82e-08, + "azha": 1.82e-08, + "banditti": 1.82e-08, + "barycentric": 1.82e-08, + "beastliness": 1.82e-08, + "bedeck": 1.82e-08, + "bedmate": 1.82e-08, + "beshrew": 1.82e-08, + "bessi": 1.82e-08, + "binman": 1.82e-08, + "birchbark": 1.82e-08, + "blackbutt": 1.82e-08, + "blastomycosis": 1.82e-08, + "bloodwood": 1.82e-08, + "bolis": 1.82e-08, + "bollworm": 1.82e-08, + "bordel": 1.82e-08, + "boringness": 1.82e-08, + "bouteloua": 1.82e-08, + "bowmaker": 1.82e-08, + "boyishness": 1.82e-08, + "braconidae": 1.82e-08, + "breadman": 1.82e-08, + "brightwork": 1.82e-08, + "brusqueness": 1.82e-08, + "buddhistic": 1.82e-08, + "bumblefoot": 1.82e-08, + "busked": 1.82e-08, + "buxus": 1.82e-08, + "cabalist": 1.82e-08, + "caecilia": 1.82e-08, + "calaboose": 1.82e-08, + "caltrop": 1.82e-08, + "carboxyhemoglobin": 1.82e-08, + "catostomus": 1.82e-08, + "catti": 1.82e-08, + "cavia": 1.82e-08, + "cellaring": 1.82e-08, + "chack": 1.82e-08, + "chenopodiaceae": 1.82e-08, + "chlorinate": 1.82e-08, + "chorda": 1.82e-08, + "chorten": 1.82e-08, + "choya": 1.82e-08, + "chronical": 1.82e-08, + "cimmeria": 1.82e-08, + "clachan": 1.82e-08, + "claviform": 1.82e-08, + "cleome": 1.82e-08, + "clothbound": 1.82e-08, + "clubbable": 1.82e-08, + "coccygeal": 1.82e-08, + "cogger": 1.82e-08, + "coifed": 1.82e-08, + "colcannon": 1.82e-08, + "collinearity": 1.82e-08, + "coluber": 1.82e-08, + "complexification": 1.82e-08, + "consultor": 1.82e-08, + "contagiousness": 1.82e-08, + "coprophagia": 1.82e-08, + "coreless": 1.82e-08, + "creaser": 1.82e-08, + "cringle": 1.82e-08, + "crinum": 1.82e-08, + "croyden": 1.82e-08, + "crucifer": 1.82e-08, + "ctenophore": 1.82e-08, + "cupreous": 1.82e-08, + "cutwater": 1.82e-08, + "cypres": 1.82e-08, + "cytolytic": 1.82e-08, + "dactylis": 1.82e-08, + "danakil": 1.82e-08, + "danite": 1.82e-08, + "darst": 1.82e-08, + "decalcomania": 1.82e-08, + "decantation": 1.82e-08, + "delaminate": 1.82e-08, + "dentally": 1.82e-08, + "denticle": 1.82e-08, + "dibber": 1.82e-08, + "dorsomedial": 1.82e-08, + "dorsoventrally": 1.82e-08, + "dought": 1.82e-08, + "dout": 1.82e-08, + "dyestuff": 1.82e-08, + "ecumenically": 1.82e-08, + "edaphic": 1.82e-08, + "effeminately": 1.82e-08, + "electively": 1.82e-08, + "electrocatalytic": 1.82e-08, + "ellipticity": 1.82e-08, + "enervate": 1.82e-08, + "enteritidis": 1.82e-08, + "equilibrio": 1.82e-08, + "eulogistic": 1.82e-08, + "evanesce": 1.82e-08, + "eyebright": 1.82e-08, + "eyeshade": 1.82e-08, + "fasciculation": 1.82e-08, + "ferricyanide": 1.82e-08, + "finback": 1.82e-08, + "fleshless": 1.82e-08, + "fluoridate": 1.82e-08, + "fossorial": 1.82e-08, + "francisc": 1.82e-08, + "fulica": 1.82e-08, + "fungoid": 1.82e-08, + "gager": 1.82e-08, + "gaudiness": 1.82e-08, + "glabellar": 1.82e-08, + "glaucomatous": 1.82e-08, + "gleba": 1.82e-08, + "gleed": 1.82e-08, + "gobber": 1.82e-08, + "gorgonian": 1.82e-08, + "greenheart": 1.82e-08, + "gregariously": 1.82e-08, + "grubstake": 1.82e-08, + "guardo": 1.82e-08, + "hackamore": 1.82e-08, + "heatless": 1.82e-08, + "heteronuclear": 1.82e-08, + "heterotypic": 1.82e-08, + "hilsa": 1.82e-08, + "hitlerite": 1.82e-08, + "hoggin": 1.82e-08, + "holeman": 1.82e-08, + "homophony": 1.82e-08, + "homopolar": 1.82e-08, + "homozygote": 1.82e-08, + "horntail": 1.82e-08, + "hyphema": 1.82e-08, + "imino": 1.82e-08, + "ingestive": 1.82e-08, + "ingressive": 1.82e-08, + "inlier": 1.82e-08, + "insidiousness": 1.82e-08, + "intellection": 1.82e-08, + "intercalate": 1.82e-08, + "interruptive": 1.82e-08, + "intractably": 1.82e-08, + "ironware": 1.82e-08, + "khir": 1.82e-08, + "kickable": 1.82e-08, + "laddish": 1.82e-08, + "lamarckism": 1.82e-08, + "lanugo": 1.82e-08, + "laryngospasm": 1.82e-08, + "laten": 1.82e-08, + "lewisite": 1.82e-08, + "linaria": 1.82e-08, + "lushai": 1.82e-08, + "lycosa": 1.82e-08, + "malpighiaceae": 1.82e-08, + "mammillaria": 1.82e-08, + "manometry": 1.82e-08, + "marasmus": 1.82e-08, + "marled": 1.82e-08, + "miscibility": 1.82e-08, + "misconfiguration": 1.82e-08, + "molality": 1.82e-08, + "moneysaving": 1.82e-08, + "mudlark": 1.82e-08, + "mugg": 1.82e-08, + "multistoried": 1.82e-08, + "mustiness": 1.82e-08, + "myxedema": 1.82e-08, + "natraj": 1.82e-08, + "nephrogenic": 1.82e-08, + "nightmarishly": 1.82e-08, + "niton": 1.82e-08, + "nonexecutive": 1.82e-08, + "nonmarital": 1.82e-08, + "nontransparent": 1.82e-08, + "nonvenomous": 1.82e-08, + "northlight": 1.82e-08, + "numskull": 1.82e-08, + "occulting": 1.82e-08, + "opacification": 1.82e-08, + "optime": 1.82e-08, + "orchitis": 1.82e-08, + "orgeat": 1.82e-08, + "outspan": 1.82e-08, + "overwash": 1.82e-08, + "ovolo": 1.82e-08, + "palpitate": 1.82e-08, + "paregoric": 1.82e-08, + "pengo": 1.82e-08, + "pentachloride": 1.82e-08, + "periplaneta": 1.82e-08, + "periplasm": 1.82e-08, + "perniciously": 1.82e-08, + "photochemically": 1.82e-08, + "physiochemical": 1.82e-08, + "piggle": 1.82e-08, + "pithecanthropus": 1.82e-08, + "platea": 1.82e-08, + "polypterus": 1.82e-08, + "premeditate": 1.82e-08, + "prepublication": 1.82e-08, + "presacral": 1.82e-08, + "primordially": 1.82e-08, + "prizeman": 1.82e-08, + "profitableness": 1.82e-08, + "prototypic": 1.82e-08, + "pulvinus": 1.82e-08, + "rackety": 1.82e-08, + "radiosensitive": 1.82e-08, + "rangatira": 1.82e-08, + "raptly": 1.82e-08, + "reak": 1.82e-08, + "reappropriate": 1.82e-08, + "reflectiveness": 1.82e-08, + "reges": 1.82e-08, + "remediable": 1.82e-08, + "restorationist": 1.82e-08, + "resuscitator": 1.82e-08, + "rhabdoid": 1.82e-08, + "runnel": 1.82e-08, + "ruritania": 1.82e-08, + "ryme": 1.82e-08, + "saivism": 1.82e-08, + "sakkara": 1.82e-08, + "sallet": 1.82e-08, + "sansevieria": 1.82e-08, + "sapan": 1.82e-08, + "scoon": 1.82e-08, + "secluding": 1.82e-08, + "seiche": 1.82e-08, + "separative": 1.82e-08, + "sevillian": 1.82e-08, + "shiah": 1.07e-08, + "shrieker": 1.82e-08, + "sidewards": 1.82e-08, + "silkily": 1.82e-08, + "sinusoidally": 1.82e-08, + "sociobiological": 1.82e-08, + "spinose": 1.82e-08, + "spirant": 1.82e-08, + "spiration": 1.82e-08, + "sprunt": 1.82e-08, + "stateswoman": 1.82e-08, + "stewy": 1.82e-08, + "stiflingly": 1.82e-08, + "stolidity": 1.82e-08, + "subarea": 1.82e-08, + "suprasegmental": 1.82e-08, + "syndesmosis": 1.82e-08, + "tantrism": 1.82e-08, + "tarascan": 1.82e-08, + "tardily": 1.82e-08, + "tarrying": 1.82e-08, + "tauchnitz": 1.82e-08, + "tautologically": 1.82e-08, + "tecnology": 1.82e-08, + "tetrazolium": 1.82e-08, + "thalictrum": 1.82e-08, + "thermotropic": 1.82e-08, + "thiazole": 1.82e-08, + "thymocyte": 1.82e-08, + "thyratron": 1.82e-08, + "tightfisted": 1.82e-08, + "titratable": 1.82e-08, + "topeng": 1.82e-08, + "toxemia": 1.82e-08, + "trembly": 1.82e-08, + "troublingly": 1.82e-08, + "tuppenny": 1.82e-08, + "unallowable": 1.82e-08, + "unannotated": 1.82e-08, + "unascertained": 1.82e-08, + "unchivalrous": 1.82e-08, + "undemocratically": 1.82e-08, + "undeviating": 1.82e-08, + "unfrequented": 1.82e-08, + "uninspected": 1.82e-08, + "unremovable": 1.82e-08, + "unsegmented": 1.82e-08, + "unsoundness": 1.82e-08, + "unstaged": 1.82e-08, + "unstintingly": 1.82e-08, + "unsurveyed": 1.82e-08, + "upanishadic": 1.82e-08, + "uster": 1.82e-08, + "valuably": 1.82e-08, + "vestibulum": 1.82e-08, + "vinaceous": 1.82e-08, + "viny": 1.82e-08, + "vitalistic": 1.82e-08, + "washo": 1.82e-08, + "wice": 1.82e-08, + "wisen": 1.82e-08, + "wordage": 1.82e-08, + "yeara": 1.82e-08, + "zeugma": 1.82e-08, + "academicals": 1.78e-08, + "acetoin": 1.78e-08, + "aedeagus": 1.78e-08, + "affiance": 1.78e-08, + "afflictive": 1.78e-08, + "agitatedly": 1.78e-08, + "ailie": 1.78e-08, + "airtightness": 1.78e-08, + "alphonsine": 1.78e-08, + "amblyomma": 1.78e-08, + "amphioxus": 1.78e-08, + "amphipoda": 1.78e-08, + "amygdaloid": 1.78e-08, + "androcentric": 1.78e-08, + "apian": 1.78e-08, + "apocalyptically": 1.78e-08, + "approximative": 1.78e-08, + "aquitanian": 1.78e-08, + "arenig": 1.78e-08, + "arkose": 1.78e-08, + "assumpsit": 1.78e-08, + "atheling": 1.78e-08, + "athenee": 1.78e-08, + "athetoid": 1.78e-08, + "audiometric": 1.78e-08, + "azygos": 1.78e-08, + "bacalao": 1.78e-08, + "bajau": 1.78e-08, + "bighearted": 1.78e-08, + "birlinn": 1.78e-08, + "boojum": 1.78e-08, + "brickmaker": 1.78e-08, + "cadenced": 1.78e-08, + "caique": 1.78e-08, + "camporee": 1.78e-08, + "candiru": 1.78e-08, + "cardiotoxic": 1.78e-08, + "carpetbag": 1.78e-08, + "caughnawaga": 1.78e-08, + "cholesteatoma": 1.78e-08, + "chromaffin": 1.78e-08, + "chucklehead": 1.78e-08, + "cineole": 1.78e-08, + "civitan": 1.78e-08, + "cockily": 1.78e-08, + "coloristic": 1.78e-08, + "commensalism": 1.78e-08, + "coner": 1.78e-08, + "congruently": 1.78e-08, + "contumely": 1.78e-08, + "cordery": 1.78e-08, + "cossette": 1.78e-08, + "costermonger": 1.78e-08, + "countermovement": 1.78e-08, + "countervail": 1.78e-08, + "cowardliness": 1.78e-08, + "creaturely": 1.78e-08, + "crownless": 1.78e-08, + "cycloidal": 1.78e-08, + "dalmatic": 1.78e-08, + "defeasance": 1.78e-08, + "derogative": 1.78e-08, + "despotically": 1.78e-08, + "deviltry": 1.78e-08, + "directer": 1.78e-08, + "dissimilation": 1.78e-08, + "distastefully": 1.78e-08, + "dithyrambic": 1.78e-08, + "divinization": 1.78e-08, + "doddery": 1.78e-08, + "dolichocephalic": 1.78e-08, + "drillmaster": 1.78e-08, + "dush": 1.78e-08, + "embedment": 1.78e-08, + "encyst": 1.78e-08, + "endodontist": 1.78e-08, + "endolymph": 1.78e-08, + "ephorus": 1.78e-08, + "epicentral": 1.78e-08, + "epigenesis": 1.78e-08, + "eriogonum": 1.78e-08, + "estop": 1.78e-08, + "exclusionist": 1.78e-08, + "exhilaratingly": 1.78e-08, + "explicative": 1.78e-08, + "extoll": 1.78e-08, + "fatuously": 1.78e-08, + "felter": 1.78e-08, + "fisetin": 1.78e-08, + "flagellant": 1.78e-08, + "flagstick": 1.78e-08, + "fleabane": 1.78e-08, + "flinger": 1.78e-08, + "floatable": 1.78e-08, + "fluorene": 1.78e-08, + "fordo": 1.78e-08, + "forepart": 1.78e-08, + "fourchette": 1.78e-08, + "fouth": 1.78e-08, + "frabjous": 1.78e-08, + "freakiness": 1.78e-08, + "gadarene": 1.78e-08, + "gateless": 1.78e-08, + "genista": 1.78e-08, + "gorra": 1.78e-08, + "greenhead": 1.78e-08, + "grindingly": 1.78e-08, + "griqua": 1.78e-08, + "grotesqueness": 1.78e-08, + "groundling": 1.78e-08, + "haplessly": 1.78e-08, + "hellene": 1.78e-08, + "herl": 1.78e-08, + "hightop": 1.78e-08, + "hogger": 1.78e-08, + "hogget": 1.78e-08, + "hoodless": 1.78e-08, + "huzoor": 1.78e-08, + "hypertonia": 1.78e-08, + "ichthyosaurus": 1.78e-08, + "immovably": 1.78e-08, + "immunochemistry": 1.78e-08, + "impolitely": 1.78e-08, + "indemnitee": 1.78e-08, + "inexpertly": 1.78e-08, + "infalling": 1.78e-08, + "innovatory": 1.78e-08, + "insectivore": 1.78e-08, + "instanter": 1.78e-08, + "interocular": 1.78e-08, + "interpenetrate": 1.78e-08, + "intersexuality": 1.78e-08, + "introitus": 1.78e-08, + "ionizable": 1.78e-08, + "irreproducible": 1.78e-08, + "jova": 1.78e-08, + "joyousness": 1.78e-08, + "justifier": 1.78e-08, + "karbi": 1.78e-08, + "kinkajou": 1.78e-08, + "klipspringer": 1.78e-08, + "kosong": 1.78e-08, + "laxly": 1.78e-08, + "leaflike": 1.78e-08, + "legendry": 1.78e-08, + "leprosarium": 1.78e-08, + "leptomeningeal": 1.78e-08, + "lightener": 1.78e-08, + "lignocellulose": 1.78e-08, + "ligustrum": 1.78e-08, + "limen": 1.78e-08, + "lochy": 1.78e-08, + "locomobile": 1.78e-08, + "lohar": 1.78e-08, + "lorgnette": 1.78e-08, + "lotic": 1.78e-08, + "lowlander": 1.78e-08, + "lucanus": 1.78e-08, + "lumpiness": 1.78e-08, + "lymphadenitis": 1.78e-08, + "machinable": 1.78e-08, + "mandra": 1.78e-08, + "manlet": 1.78e-08, + "martlet": 1.78e-08, + "matapan": 1.78e-08, + "melanosis": 1.78e-08, + "melodist": 1.78e-08, + "mensural": 1.78e-08, + "mentum": 1.78e-08, + "metallography": 1.78e-08, + "metasomatism": 1.78e-08, + "millibar": 1.78e-08, + "misquotation": 1.78e-08, + "modiolus": 1.78e-08, + "monogenetic": 1.78e-08, + "moreen": 1.78e-08, + "mucocele": 1.78e-08, + "muddiness": 1.78e-08, + "multirate": 1.78e-08, + "myasthenic": 1.78e-08, + "myristate": 1.78e-08, + "mythologist": 1.78e-08, + "mythopoetic": 1.78e-08, + "nadder": 1.78e-08, + "nauseate": 1.78e-08, + "nebulously": 1.78e-08, + "negatory": 1.78e-08, + "neritic": 1.78e-08, + "nestler": 1.78e-08, + "noisiness": 1.78e-08, + "nomogram": 1.78e-08, + "noncritical": 1.78e-08, + "nonpregnant": 1.78e-08, + "northing": 1.78e-08, + "olivary": 1.78e-08, + "olivella": 1.78e-08, + "osteolysis": 1.78e-08, + "outpoint": 1.78e-08, + "overbearingly": 1.78e-08, + "overblowing": 1.78e-08, + "overhit": 1.78e-08, + "overpopulate": 1.78e-08, + "pakhtun": 1.78e-08, + "pangenesis": 1.78e-08, + "paperbark": 1.78e-08, + "papermaker": 1.78e-08, + "paphiopedilum": 1.78e-08, + "papillote": 1.78e-08, + "passionist": 1.78e-08, + "patternmaker": 1.78e-08, + "peeress": 1.78e-08, + "peever": 1.78e-08, + "pennywort": 1.78e-08, + "perspicuous": 1.78e-08, + "phalacrocorax": 1.78e-08, + "pharisaical": 1.78e-08, + "pinioned": 1.78e-08, + "porrect": 1.78e-08, + "portress": 1.78e-08, + "posole": 1.78e-08, + "poult": 1.78e-08, + "practicably": 1.78e-08, + "preimage": 1.78e-08, + "presumptuousness": 1.78e-08, + "prickled": 1.78e-08, + "primality": 1.78e-08, + "procurable": 1.78e-08, + "proem": 1.78e-08, + "prolixity": 1.78e-08, + "provoker": 1.78e-08, + "psychosynthesis": 1.78e-08, + "psychrometric": 1.78e-08, + "punica": 1.78e-08, + "purply": 1.78e-08, + "pyramidalis": 1.78e-08, + "quantitate": 1.78e-08, + "quincentenary": 1.78e-08, + "rainproof": 1.78e-08, + "rastus": 1.78e-08, + "ratel": 1.78e-08, + "recallable": 1.78e-08, + "redetermination": 1.78e-08, + "refeed": 1.78e-08, + "rehung": 1.78e-08, + "relisten": 1.78e-08, + "restudy": 1.78e-08, + "reupholster": 1.78e-08, + "rotundity": 1.78e-08, + "royalism": 1.78e-08, + "ruman": 1.78e-08, + "sacaton": 1.78e-08, + "sanskritic": 1.78e-08, + "sarcocystis": 1.78e-08, + "scabiosa": 1.78e-08, + "scarify": 1.78e-08, + "sceloporus": 1.78e-08, + "schlemiel": 1.78e-08, + "sclerotium": 1.78e-08, + "screwworm": 1.78e-08, + "seminoma": 1.78e-08, + "semiquantitative": 1.78e-08, + "septarian": 1.78e-08, + "settable": 1.78e-08, + "sheat": 1.78e-08, + "shrimper": 1.78e-08, + "siliqua": 1.78e-08, + "skywriter": 1.78e-08, + "slovenliness": 1.78e-08, + "sonobuoy": 1.78e-08, + "soum": 1.78e-08, + "sovereignly": 1.78e-08, + "specificly": 1.78e-08, + "stakhanovite": 1.78e-08, + "stateliness": 1.78e-08, + "steepen": 1.78e-08, + "stickum": 1.78e-08, + "strelitzia": 1.78e-08, + "subacid": 1.78e-08, + "subdivisional": 1.78e-08, + "subungual": 1.78e-08, + "sudanic": 1.78e-08, + "sunbonnet": 1.78e-08, + "supergene": 1.78e-08, + "swearer": 1.78e-08, + "synapsis": 1.78e-08, + "teaware": 1.78e-08, + "teletypewriter": 1.78e-08, + "tercio": 1.78e-08, + "thone": 1.78e-08, + "thoracostomy": 1.78e-08, + "thyrsus": 1.78e-08, + "tinware": 1.78e-08, + "toponym": 1.78e-08, + "torreya": 1.78e-08, + "torturously": 1.78e-08, + "traceried": 1.78e-08, + "tranced": 1.78e-08, + "triennium": 1.78e-08, + "trippingly": 1.78e-08, + "triturus": 1.78e-08, + "tutin": 1.78e-08, + "twentyfold": 1.78e-08, + "umbilicate": 1.78e-08, + "umble": 1.78e-08, + "umiak": 1.78e-08, + "uncatalogued": 1.78e-08, + "undoped": 1.78e-08, + "unfeasibly": 1.78e-08, + "unmanifested": 1.78e-08, + "unpassable": 1.78e-08, + "unsaddled": 1.78e-08, + "unthank": 1.78e-08, + "unwitnessed": 1.78e-08, + "upwell": 1.78e-08, + "valveless": 1.78e-08, + "vasoconstrictive": 1.78e-08, + "veronal": 1.78e-08, + "vesuvian": 1.78e-08, + "vulvitis": 1.78e-08, + "waymark": 1.78e-08, + "wharfage": 1.78e-08, + "whatso": 1.78e-08, + "wone": 1.78e-08, + "wootz": 1.78e-08, + "yaupon": 1.78e-08, + "yday": 1.78e-08, + "yokuts": 1.78e-08, + "yourn": 1.78e-08, + "yulan": 1.78e-08, + "acryl": 1.74e-08, + "agropyron": 1.74e-08, + "agy": 1.74e-08, + "alchemilla": 1.74e-08, + "alemannic": 1.74e-08, + "amazona": 1.74e-08, + "anacreontic": 1.74e-08, + "anaplasma": 1.74e-08, + "angularly": 1.74e-08, + "antigorite": 1.74e-08, + "archerfish": 1.74e-08, + "aseptically": 1.74e-08, + "awadhi": 1.74e-08, + "bacillary": 1.74e-08, + "bacteriuria": 1.74e-08, + "banyuls": 1.74e-08, + "barbless": 1.74e-08, + "batfish": 1.74e-08, + "bearwood": 1.74e-08, + "behen": 1.74e-08, + "berrier": 1.74e-08, + "bethought": 1.74e-08, + "bhaga": 1.74e-08, + "biotype": 1.74e-08, + "boracic": 1.74e-08, + "boxlike": 1.74e-08, + "braider": 1.74e-08, + "byth": 1.74e-08, + "cajanus": 1.74e-08, + "calculational": 1.74e-08, + "caligo": 1.74e-08, + "canella": 1.74e-08, + "capillarity": 1.74e-08, + "carvone": 1.74e-08, + "cataleptic": 1.74e-08, + "caulerpa": 1.74e-08, + "chatti": 1.74e-08, + "cion": 1.74e-08, + "clintonite": 1.74e-08, + "clivus": 1.74e-08, + "coaming": 1.74e-08, + "coccoid": 1.74e-08, + "communicatively": 1.74e-08, + "communization": 1.74e-08, + "conductress": 1.74e-08, + "constructiveness": 1.74e-08, + "continuant": 1.74e-08, + "copei": 1.74e-08, + "corbicula": 1.74e-08, + "corruptness": 1.74e-08, + "cottager": 1.74e-08, + "credulously": 1.74e-08, + "cryptocrystalline": 1.74e-08, + "crystallographer": 1.74e-08, + "cubitus": 1.74e-08, + "cussedness": 1.74e-08, + "cymry": 1.74e-08, + "damningly": 1.74e-08, + "dankness": 1.74e-08, + "deathday": 1.74e-08, + "decorticate": 1.74e-08, + "deknight": 1.74e-08, + "delightsome": 1.74e-08, + "diaeresis": 1.74e-08, + "dipotassium": 1.74e-08, + "disfiguration": 1.74e-08, + "dismissible": 1.74e-08, + "distempered": 1.74e-08, + "distichous": 1.74e-08, + "divus": 1.74e-08, + "diwata": 1.74e-08, + "domer": 1.74e-08, + "dysphasia": 1.74e-08, + "echoic": 1.74e-08, + "eddo": 1.74e-08, + "egoistical": 1.74e-08, + "eleocharis": 1.74e-08, + "elkhound": 1.74e-08, + "enharmonically": 1.74e-08, + "epenthetic": 1.74e-08, + "eutherian": 1.74e-08, + "extenuate": 1.74e-08, + "exteriorization": 1.74e-08, + "extrapulmonary": 1.74e-08, + "farriery": 1.74e-08, + "femininely": 1.74e-08, + "fieldworker": 1.74e-08, + "fisty": 1.74e-08, + "flavobacterium": 1.74e-08, + "fogy": 1.74e-08, + "foldy": 1.74e-08, + "freckling": 1.74e-08, + "gastrovascular": 1.74e-08, + "godsake": 1.74e-08, + "graphologist": 1.74e-08, + "gregariousness": 1.74e-08, + "gunne": 1.74e-08, + "haemorrhoid": 1.74e-08, + "hemifacial": 1.74e-08, + "hindquarter": 1.74e-08, + "hirofumi": 1.74e-08, + "historiated": 1.74e-08, + "hoit": 1.74e-08, + "holer": 1.74e-08, + "homarus": 1.74e-08, + "humoresque": 1.74e-08, + "humous": 1.74e-08, + "hypha": 1.74e-08, + "iliacus": 1.74e-08, + "illiberalism": 1.74e-08, + "imploringly": 1.74e-08, + "incisal": 1.74e-08, + "indebt": 1.74e-08, + "infarcted": 1.74e-08, + "innateness": 1.74e-08, + "intersystem": 1.74e-08, + "inutile": 1.74e-08, + "ironist": 1.74e-08, + "januarius": 1.74e-08, + "jejunal": 1.74e-08, + "jerm": 1.74e-08, + "keratectomy": 1.74e-08, + "keylock": 1.74e-08, + "kiddish": 1.74e-08, + "laodicean": 1.74e-08, + "lasius": 1.74e-08, + "lemniscus": 1.74e-08, + "lepidodendron": 1.74e-08, + "ligule": 1.74e-08, + "limitlessly": 1.74e-08, + "limonium": 1.74e-08, + "lissom": 1.74e-08, + "lissome": 1.74e-08, + "lukewarmness": 1.74e-08, + "lycium": 1.74e-08, + "lymphopenia": 1.74e-08, + "machiavel": 1.74e-08, + "magnetometry": 1.74e-08, + "maltster": 1.74e-08, + "manent": 1.74e-08, + "manihot": 1.74e-08, + "maux": 1.74e-08, + "mechlin": 1.74e-08, + "melampus": 1.74e-08, + "melungeon": 1.74e-08, + "mesomorphic": 1.74e-08, + "meteorologically": 1.74e-08, + "misalliance": 1.74e-08, + "misremember": 1.74e-08, + "mogadore": 1.74e-08, + "monologist": 1.74e-08, + "moste": 1.74e-08, + "mudskipper": 1.74e-08, + "multiparous": 1.74e-08, + "municipalization": 1.74e-08, + "naziism": 1.74e-08, + "necator": 1.74e-08, + "nitch": 1.74e-08, + "nitrosyl": 1.74e-08, + "nonbreeding": 1.74e-08, + "nonfederal": 1.74e-08, + "nudd": 1.74e-08, + "octosyllabic": 1.74e-08, + "oocyst": 1.74e-08, + "orpiment": 1.74e-08, + "outcross": 1.74e-08, + "outdistance": 1.74e-08, + "outride": 1.74e-08, + "overberg": 1.74e-08, + "paleoceanography": 1.74e-08, + "paniculate": 1.74e-08, + "pantalon": 1.74e-08, + "parasitemia": 1.74e-08, + "parthenium": 1.74e-08, + "patrilocal": 1.74e-08, + "peplos": 1.74e-08, + "perfuse": 1.74e-08, + "pettifogging": 1.74e-08, + "phormium": 1.74e-08, + "photopolymerization": 1.74e-08, + "piast": 1.74e-08, + "piegan": 1.74e-08, + "pilin": 1.74e-08, + "pinetum": 1.74e-08, + "pinguin": 1.74e-08, + "platano": 1.74e-08, + "platyhelminthes": 1.74e-08, + "plaudit": 1.74e-08, + "playlet": 1.74e-08, + "plumbum": 1.74e-08, + "polistes": 1.74e-08, + "polyptych": 1.74e-08, + "postbag": 1.74e-08, + "pouter": 1.74e-08, + "precociousness": 1.74e-08, + "pressboard": 1.74e-08, + "presymptomatic": 1.74e-08, + "preyer": 1.74e-08, + "prodigality": 1.74e-08, + "proleague": 1.74e-08, + "proselytizer": 1.74e-08, + "pueblito": 1.74e-08, + "quintuplet": 1.74e-08, + "quizzer": 1.74e-08, + "reconciler": 1.74e-08, + "refind": 1.74e-08, + "representer": 1.74e-08, + "resourcefully": 1.74e-08, + "respectfulness": 1.74e-08, + "retractile": 1.74e-08, + "retransfer": 1.74e-08, + "retrobulbar": 1.74e-08, + "retting": 1.74e-08, + "revaluate": 1.74e-08, + "reversi": 1.74e-08, + "rudas": 1.74e-08, + "salvarsan": 1.74e-08, + "samh": 1.74e-08, + "sanai": 1.74e-08, + "sandglass": 1.74e-08, + "sanjib": 1.74e-08, + "saraband": 1.74e-08, + "scarlatina": 1.74e-08, + "schnapper": 1.74e-08, + "scholium": 1.74e-08, + "scoffer": 1.74e-08, + "seamark": 1.74e-08, + "seamlessness": 1.74e-08, + "semivowel": 1.74e-08, + "septime": 1.74e-08, + "seriate": 1.74e-08, + "sethian": 1.74e-08, + "shipside": 1.74e-08, + "shoreland": 1.74e-08, + "sicula": 1.74e-08, + "sidepiece": 1.74e-08, + "siglos": 1.74e-08, + "siksika": 1.74e-08, + "skidder": 1.74e-08, + "socky": 1.74e-08, + "soilless": 1.74e-08, + "somewhen": 1.74e-08, + "soupcon": 1.74e-08, + "spaded": 1.74e-08, + "spheric": 1.74e-08, + "spiracular": 1.74e-08, + "starlike": 1.74e-08, + "statelet": 1.74e-08, + "stereopticon": 1.74e-08, + "stingily": 1.74e-08, + "strenth": 1.74e-08, + "strychnos": 1.74e-08, + "surgeonfish": 1.74e-08, + "syrtis": 1.74e-08, + "tailstock": 1.74e-08, + "talkativeness": 1.74e-08, + "teache": 1.74e-08, + "tetum": 1.74e-08, + "throe": 1.74e-08, + "toadflax": 1.74e-08, + "toponymy": 1.74e-08, + "townfolk": 1.74e-08, + "toyon": 1.74e-08, + "trancelike": 1.74e-08, + "trichloroacetic": 1.74e-08, + "tsubo": 1.74e-08, + "twal": 1.74e-08, + "tympany": 1.74e-08, + "umbilicated": 1.74e-08, + "unadvisedly": 1.74e-08, + "uncancelled": 1.74e-08, + "undreamt": 1.74e-08, + "unflatteringly": 1.74e-08, + "unknot": 1.74e-08, + "unmodulated": 1.74e-08, + "unpatentable": 1.74e-08, + "unrepeated": 1.74e-08, + "unreviewable": 1.74e-08, + "unsalaried": 1.74e-08, + "unsane": 1.74e-08, + "unsharpened": 1.74e-08, + "unsoiled": 1.74e-08, + "unstamped": 1.74e-08, + "unsuspicious": 1.74e-08, + "untiringly": 1.74e-08, + "untraveled": 1.74e-08, + "unvalued": 1.74e-08, + "unwalled": 1.74e-08, + "unwarrantable": 1.74e-08, + "usnea": 1.74e-08, + "utai": 1.74e-08, + "vegetational": 1.74e-08, + "ventersdorp": 1.74e-08, + "vermiculated": 1.74e-08, + "vicinage": 1.74e-08, + "virgate": 1.74e-08, + "vivify": 1.74e-08, + "volva": 1.74e-08, + "washday": 1.74e-08, + "wettable": 1.74e-08, + "whitter": 1.74e-08, + "wisconsinite": 1.74e-08, + "wodge": 1.74e-08, + "achen": 1.7e-08, + "acquirable": 1.7e-08, + "acrididae": 1.7e-08, + "adnexal": 1.7e-08, + "adrenalectomy": 1.7e-08, + "alencon": 1.7e-08, + "amorously": 1.7e-08, + "anhang": 1.7e-08, + "anthus": 1.7e-08, + "antiquarianism": 1.7e-08, + "apidae": 1.7e-08, + "artistical": 1.7e-08, + "astilbe": 1.7e-08, + "auriferous": 1.7e-08, + "auspex": 1.7e-08, + "autoignition": 1.7e-08, + "axman": 1.7e-08, + "axonometric": 1.7e-08, + "balaghat": 1.7e-08, + "ballistae": 1.7e-08, + "balustraded": 1.7e-08, + "bangalow": 1.7e-08, + "basuto": 1.7e-08, + "bayamo": 1.7e-08, + "benzidine": 1.7e-08, + "blackcock": 1.7e-08, + "blash": 1.7e-08, + "blastoderm": 1.7e-08, + "blueing": 1.7e-08, + "bodle": 1.7e-08, + "borning": 1.7e-08, + "boxfish": 1.7e-08, + "brahui": 1.7e-08, + "broll": 1.7e-08, + "buckstone": 1.7e-08, + "bushwood": 1.7e-08, + "caddoan": 1.7e-08, + "capric": 1.7e-08, + "capsa": 1.7e-08, + "chartaceous": 1.7e-08, + "chemosynthetic": 1.7e-08, + "chiastic": 1.7e-08, + "chokeberry": 1.7e-08, + "chouette": 1.7e-08, + "claustral": 1.7e-08, + "clifty": 1.7e-08, + "coccidioides": 1.7e-08, + "coelomic": 1.7e-08, + "colombina": 1.7e-08, + "communalist": 1.7e-08, + "compony": 1.7e-08, + "conceptional": 1.7e-08, + "conchological": 1.7e-08, + "connectional": 1.7e-08, + "conspicuousness": 1.7e-08, + "continuer": 1.7e-08, + "coronate": 1.7e-08, + "corselet": 1.7e-08, + "coryza": 1.7e-08, + "cottus": 1.7e-08, + "coumaric": 1.7e-08, + "covariation": 1.7e-08, + "creational": 1.7e-08, + "crutching": 1.7e-08, + "cymbopogon": 1.7e-08, + "cymose": 1.7e-08, + "cystinuria": 1.7e-08, + "decarbonize": 1.7e-08, + "dedifferentiation": 1.7e-08, + "dejeuner": 1.7e-08, + "delsarte": 1.7e-08, + "dentalium": 1.7e-08, + "dentinal": 1.7e-08, + "derailer": 1.7e-08, + "derivatively": 1.7e-08, + "dermatopathology": 1.7e-08, + "deuterocanonical": 1.7e-08, + "dichotic": 1.7e-08, + "dichotomously": 1.7e-08, + "didactically": 1.7e-08, + "dinitrate": 1.7e-08, + "discriminability": 1.7e-08, + "dodecahedral": 1.7e-08, + "dripstone": 1.7e-08, + "dromos": 1.7e-08, + "electrosurgery": 1.7e-08, + "empusa": 1.7e-08, + "endemically": 1.7e-08, + "equatorially": 1.7e-08, + "erewhile": 1.7e-08, + "expansible": 1.7e-08, + "febrifuge": 1.7e-08, + "fibroadenoma": 1.7e-08, + "floorless": 1.7e-08, + "focsle": 1.7e-08, + "fomes": 1.7e-08, + "forepeak": 1.7e-08, + "formel": 1.7e-08, + "formy": 1.7e-08, + "frazil": 1.7e-08, + "fyrd": 1.7e-08, + "galactorrhea": 1.7e-08, + "genro": 1.7e-08, + "geranyl": 1.7e-08, + "germen": 1.7e-08, + "gilbertese": 1.7e-08, + "glycogenolysis": 1.7e-08, + "gnarl": 1.7e-08, + "graptolite": 1.7e-08, + "graticule": 1.7e-08, + "gravamen": 1.7e-08, + "helicoidal": 1.7e-08, + "heptarchy": 1.7e-08, + "heteromorphic": 1.7e-08, + "histiocytic": 1.7e-08, + "hornfels": 1.7e-08, + "humean": 1.7e-08, + "hydrographical": 1.7e-08, + "hypogeum": 1.7e-08, + "individuate": 1.7e-08, + "inferentially": 1.7e-08, + "inscrutably": 1.7e-08, + "insentient": 1.7e-08, + "interposer": 1.7e-08, + "interpretational": 1.7e-08, + "inturn": 1.7e-08, + "ipil": 1.7e-08, + "jasminum": 1.7e-08, + "jebusite": 1.7e-08, + "judger": 1.7e-08, + "jussive": 1.7e-08, + "kippy": 1.7e-08, + "lamblia": 1.7e-08, + "lavabo": 1.7e-08, + "lightish": 1.7e-08, + "limax": 1.7e-08, + "litotes": 1.7e-08, + "lubricious": 1.7e-08, + "luddism": 1.7e-08, + "luteolin": 1.7e-08, + "macrobiotics": 1.7e-08, + "madrasi": 1.7e-08, + "maleficence": 1.7e-08, + "malmsey": 1.7e-08, + "margay": 1.7e-08, + "marmorated": 1.7e-08, + "marquisate": 1.7e-08, + "matris": 1.7e-08, + "maturer": 1.7e-08, + "meece": 1.7e-08, + "megachile": 1.7e-08, + "mehari": 1.7e-08, + "mellophone": 1.7e-08, + "memphite": 1.7e-08, + "meshech": 1.7e-08, + "mesomorph": 1.7e-08, + "microcellular": 1.7e-08, + "microphthalmia": 1.7e-08, + "migrator": 1.7e-08, + "miltos": 1.7e-08, + "minable": 1.7e-08, + "monodon": 1.7e-08, + "multigraph": 1.7e-08, + "myoma": 1.7e-08, + "naphthyl": 1.7e-08, + "neoteric": 1.7e-08, + "neuraxis": 1.7e-08, + "nilgai": 1.7e-08, + "nonagricultural": 1.7e-08, + "nonbiological": 1.7e-08, + "nondominant": 1.7e-08, + "nonorganic": 1.7e-08, + "nursling": 1.7e-08, + "orakzai": 1.7e-08, + "oriflamme": 1.7e-08, + "ormer": 1.7e-08, + "ottar": 1.7e-08, + "outdrive": 1.7e-08, + "palinurus": 1.7e-08, + "palmist": 1.7e-08, + "papillomatosis": 1.7e-08, + "pearmain": 1.7e-08, + "peltate": 1.7e-08, + "penetrometer": 1.7e-08, + "peppin": 1.7e-08, + "perchloroethylene": 1.7e-08, + "perkiness": 1.7e-08, + "petaloid": 1.7e-08, + "phenothiazine": 1.7e-08, + "phonolite": 1.7e-08, + "plasmic": 1.7e-08, + "plesiomorphic": 1.7e-08, + "polychromy": 1.7e-08, + "pontil": 1.7e-08, + "precedented": 1.7e-08, + "precipitant": 1.7e-08, + "primar": 1.7e-08, + "productid": 1.7e-08, + "promisee": 1.7e-08, + "provenience": 1.7e-08, + "pruinose": 1.7e-08, + "puerperium": 1.7e-08, + "puker": 1.7e-08, + "punchinello": 1.7e-08, + "pyrometer": 1.7e-08, + "quadrilogy": 1.7e-08, + "quaedam": 1.7e-08, + "quinsy": 1.7e-08, + "racemate": 1.7e-08, + "raphia": 1.7e-08, + "recommission": 1.7e-08, + "redeposit": 1.7e-08, + "regenesis": 1.7e-08, + "reimage": 1.7e-08, + "relativize": 1.7e-08, + "reutilization": 1.7e-08, + "ribby": 1.7e-08, + "rinka": 1.7e-08, + "romantical": 1.7e-08, + "rosily": 1.7e-08, + "sabbatarian": 1.7e-08, + "sackman": 1.7e-08, + "sacrificer": 1.7e-08, + "safavi": 1.7e-08, + "scarer": 1.7e-08, + "scientistic": 1.7e-08, + "sculp": 1.7e-08, + "scurf": 1.7e-08, + "seckel": 1.7e-08, + "seeress": 1.7e-08, + "semimonthly": 1.7e-08, + "septennial": 1.7e-08, + "serer": 1.7e-08, + "sestet": 1.7e-08, + "shiftable": 1.7e-08, + "shogunal": 1.7e-08, + "shuff": 1.7e-08, + "sickling": 1.7e-08, + "simoom": 1.7e-08, + "sinitic": 1.7e-08, + "sirenia": 1.7e-08, + "skaff": 1.7e-08, + "smiter": 1.7e-08, + "sneezer": 1.7e-08, + "spadefish": 1.7e-08, + "specked": 1.7e-08, + "speen": 1.7e-08, + "sponson": 1.7e-08, + "stadholder": 1.7e-08, + "starveling": 1.7e-08, + "stech": 1.7e-08, + "straightup": 1.7e-08, + "strategi": 1.7e-08, + "streck": 1.7e-08, + "subserve": 1.7e-08, + "substructural": 1.7e-08, + "subtleness": 1.7e-08, + "sulcate": 1.7e-08, + "sulfuryl": 1.7e-08, + "sunlike": 1.7e-08, + "syncytium": 1.7e-08, + "talmudical": 1.7e-08, + "tamandua": 1.7e-08, + "tannaitic": 1.7e-08, + "telemeter": 1.7e-08, + "tellurian": 1.7e-08, + "terral": 1.7e-08, + "thermolysis": 1.7e-08, + "tiam": 1.7e-08, + "timbrel": 1.7e-08, + "toher": 1.7e-08, + "tortrix": 1.7e-08, + "touse": 1.7e-08, + "tracheobronchial": 1.7e-08, + "transmogrify": 1.7e-08, + "treelike": 1.7e-08, + "tremblingly": 1.7e-08, + "trephine": 1.7e-08, + "trixy": 1.7e-08, + "tyrannic": 1.7e-08, + "umbriel": 1.7e-08, + "undeciphered": 1.7e-08, + "underly": 1.7e-08, + "unenumerated": 1.7e-08, + "ungrouped": 1.7e-08, + "unornamented": 1.7e-08, + "unsex": 1.7e-08, + "unsuspended": 1.7e-08, + "unweathered": 1.7e-08, + "urushi": 1.7e-08, + "vasty": 1.7e-08, + "verdelho": 1.7e-08, + "vocalism": 1.7e-08, + "wangan": 1.7e-08, + "wega": 1.7e-08, + "welshness": 1.7e-08, + "wene": 1.7e-08, + "whits": 1.51e-08, + "whity": 1.7e-08, + "winterization": 1.7e-08, + "witheringly": 1.7e-08, + "yapa": 1.7e-08, + "yark": 1.7e-08, + "zamia": 1.7e-08, + "abbassi": 1.66e-08, + "abusiveness": 1.66e-08, + "acception": 1.66e-08, + "agla": 1.66e-08, + "airsickness": 1.66e-08, + "altricial": 1.66e-08, + "amateurishly": 1.66e-08, + "amyris": 1.66e-08, + "anamorphosis": 1.66e-08, + "ancylostoma": 1.66e-08, + "antilia": 1.66e-08, + "aptera": 1.66e-08, + "aquascutum": 1.66e-08, + "arenicola": 1.66e-08, + "argel": 1.66e-08, + "artiodactyla": 1.66e-08, + "asiento": 1.66e-08, + "atwitter": 1.66e-08, + "autosome": 1.66e-08, + "balustrading": 1.66e-08, + "barye": 1.66e-08, + "beamy": 1.66e-08, + "beechy": 1.66e-08, + "bemuse": 1.66e-08, + "bendingly": 1.66e-08, + "beribboned": 1.66e-08, + "biographically": 1.66e-08, + "bloodlessly": 1.66e-08, + "blueback": 1.66e-08, + "bluet": 1.66e-08, + "boser": 1.66e-08, + "broomcorn": 1.66e-08, + "broon": 1.66e-08, + "bult": 1.66e-08, + "byssus": 1.66e-08, + "caladium": 1.66e-08, + "calvaria": 1.66e-08, + "canebrake": 1.66e-08, + "cantharidin": 1.66e-08, + "capreolus": 1.66e-08, + "cardamine": 1.66e-08, + "cardinalate": 1.66e-08, + "caryophyllene": 1.66e-08, + "cauter": 1.66e-08, + "centage": 1.66e-08, + "centry": 1.66e-08, + "cerussite": 1.66e-08, + "cervidae": 1.66e-08, + "chancre": 1.66e-08, + "chancroid": 1.66e-08, + "cheapish": 1.66e-08, + "chital": 1.66e-08, + "clitoridectomy": 1.66e-08, + "closable": 1.66e-08, + "clotheshorse": 1.66e-08, + "coltish": 1.66e-08, + "concolorous": 1.66e-08, + "concupiscent": 1.66e-08, + "conservational": 1.66e-08, + "copular": 1.66e-08, + "crambe": 1.66e-08, + "crescentic": 1.66e-08, + "critch": 1.66e-08, + "crotched": 1.66e-08, + "dabby": 1.66e-08, + "dastard": 1.66e-08, + "decus": 1.66e-08, + "degradative": 1.66e-08, + "demonetize": 1.66e-08, + "desistance": 1.66e-08, + "desulfovibrio": 1.66e-08, + "devadasi": 1.66e-08, + "deviser": 1.66e-08, + "dharani": 1.66e-08, + "diastatic": 1.66e-08, + "diazomethane": 1.66e-08, + "dicarboxylate": 1.66e-08, + "discomfit": 1.66e-08, + "displayable": 1.66e-08, + "distractive": 1.66e-08, + "dodman": 1.66e-08, + "dolichos": 1.66e-08, + "dominionist": 1.66e-08, + "drukpa": 1.66e-08, + "earthlight": 1.66e-08, + "effervesce": 1.66e-08, + "eleemosynary": 1.66e-08, + "elfland": 1.66e-08, + "encashment": 1.66e-08, + "engager": 1.66e-08, + "epicardial": 1.66e-08, + "epidendrum": 1.66e-08, + "epiphenomenon": 1.66e-08, + "epiphora": 1.66e-08, + "equiangular": 1.66e-08, + "esophagectomy": 1.66e-08, + "expostulate": 1.66e-08, + "extraditable": 1.66e-08, + "eyestalk": 1.66e-08, + "fibrosarcoma": 1.66e-08, + "fibrovascular": 1.66e-08, + "flimsiness": 1.66e-08, + "floodwood": 1.66e-08, + "floridly": 1.66e-08, + "foliot": 1.66e-08, + "forwent": 1.66e-08, + "foudroyant": 1.66e-08, + "fractionate": 1.66e-08, + "frize": 1.66e-08, + "fussily": 1.66e-08, + "gameness": 1.66e-08, + "garniture": 1.66e-08, + "gazella": 1.66e-08, + "girlishly": 1.66e-08, + "glossina": 1.66e-08, + "gneissic": 1.66e-08, + "goup": 1.66e-08, + "grimalkin": 1.66e-08, + "grisette": 1.66e-08, + "gruffness": 1.66e-08, + "habenula": 1.66e-08, + "harebell": 1.66e-08, + "hateable": 1.66e-08, + "hattery": 1.66e-08, + "heathenish": 1.66e-08, + "helvetian": 1.66e-08, + "helvetii": 1.66e-08, + "hemosiderin": 1.66e-08, + "heterocycle": 1.66e-08, + "hittable": 1.66e-08, + "hoyden": 1.66e-08, + "hydrostatically": 1.66e-08, + "imperata": 1.66e-08, + "incestuously": 1.66e-08, + "inconsideration": 1.66e-08, + "indeterminately": 1.66e-08, + "indolently": 1.66e-08, + "induna": 1.66e-08, + "inframammary": 1.66e-08, + "infraspinatus": 1.66e-08, + "ingloriously": 1.66e-08, + "insertive": 1.66e-08, + "internationality": 1.66e-08, + "interrogatively": 1.66e-08, + "interwove": 1.66e-08, + "invertase": 1.66e-08, + "isoquinoline": 1.66e-08, + "ivin": 1.66e-08, + "jacobinism": 1.66e-08, + "jemadar": 1.66e-08, + "jewfish": 1.66e-08, + "jube": 1.66e-08, + "kinematical": 1.66e-08, + "kinematograph": 1.66e-08, + "kizil": 1.66e-08, + "knuckler": 1.66e-08, + "lamium": 1.66e-08, + "lawbook": 1.66e-08, + "layland": 1.66e-08, + "lenth": 1.66e-08, + "lesional": 1.66e-08, + "lifespring": 1.66e-08, + "ligula": 1.66e-08, + "limu": 1.66e-08, + "longspur": 1.66e-08, + "luminesce": 1.66e-08, + "lyrebird": 1.66e-08, + "maccabaeus": 1.66e-08, + "maculate": 1.66e-08, + "majuscule": 1.66e-08, + "managership": 1.66e-08, + "megaron": 1.66e-08, + "memphian": 1.66e-08, + "mephitic": 1.66e-08, + "mesothelial": 1.66e-08, + "messmate": 1.66e-08, + "microcopy": 1.66e-08, + "microcosmos": 1.66e-08, + "microsporum": 1.66e-08, + "millerite": 1.66e-08, + "milliampere": 1.66e-08, + "misstate": 1.66e-08, + "mizzenmast": 1.66e-08, + "mizzle": 1.66e-08, + "mizzy": 1.66e-08, + "modiste": 1.66e-08, + "molinia": 1.66e-08, + "monomaniac": 1.66e-08, + "morphew": 1.66e-08, + "nebulization": 1.66e-08, + "neopagan": 1.66e-08, + "neuromotor": 1.66e-08, + "nomic": 1.66e-08, + "noncentral": 1.66e-08, + "norie": 1.66e-08, + "norlander": 1.66e-08, + "nuncle": 1.66e-08, + "oldster": 1.66e-08, + "oligochaeta": 1.66e-08, + "omened": 1.66e-08, + "omphalocele": 1.66e-08, + "overinvestment": 1.66e-08, + "painty": 1.66e-08, + "palaeogeography": 1.66e-08, + "pantun": 1.66e-08, + "paraffinic": 1.66e-08, + "parentally": 1.66e-08, + "particularize": 1.66e-08, + "patriciate": 1.66e-08, + "paup": 1.66e-08, + "pelter": 1.66e-08, + "perplexingly": 1.66e-08, + "philosoph": 1.66e-08, + "phytogeography": 1.66e-08, + "phytolacca": 1.66e-08, + "pictorialism": 1.66e-08, + "pinaceae": 1.66e-08, + "pipestem": 1.66e-08, + "pleck": 1.66e-08, + "plesiosaurus": 1.66e-08, + "pneumonectomy": 1.66e-08, + "pockmark": 1.66e-08, + "pointedness": 1.66e-08, + "polychaeta": 1.66e-08, + "potassic": 1.66e-08, + "pouce": 1.66e-08, + "preassigned": 1.66e-08, + "prelapsarian": 1.66e-08, + "prescriptively": 1.66e-08, + "proconsular": 1.66e-08, + "prostyle": 1.66e-08, + "protasis": 1.66e-08, + "prut": 1.66e-08, + "pulli": 1.66e-08, + "pythagoreanism": 1.66e-08, + "rabelaisian": 1.66e-08, + "raptus": 1.66e-08, + "reft": 1.66e-08, + "refulgent": 1.66e-08, + "relink": 1.66e-08, + "remiges": 1.66e-08, + "reregister": 1.66e-08, + "resile": 1.66e-08, + "restiveness": 1.66e-08, + "reversable": 1.66e-08, + "rewinder": 1.66e-08, + "rigidness": 1.66e-08, + "rockwork": 1.66e-08, + "sabaean": 1.66e-08, + "salesclerk": 1.66e-08, + "salubrity": 1.66e-08, + "samite": 1.66e-08, + "sarcolemma": 1.66e-08, + "sarcoptic": 1.66e-08, + "scrupulousness": 1.66e-08, + "secale": 1.66e-08, + "seediness": 1.66e-08, + "semipermanent": 1.66e-08, + "semitics": 1.66e-08, + "senlac": 1.66e-08, + "sesquipedalian": 1.66e-08, + "shapen": 1.66e-08, + "shikara": 1.66e-08, + "shrive": 1.66e-08, + "silen": 1.66e-08, + "skelp": 1.66e-08, + "skirling": 1.66e-08, + "slowish": 1.66e-08, + "sloyd": 1.66e-08, + "sniffly": 1.66e-08, + "somal": 1.66e-08, + "soud": 1.66e-08, + "spellcraft": 1.66e-08, + "spile": 1.66e-08, + "spindled": 1.66e-08, + "sponger": 1.66e-08, + "sporades": 1.66e-08, + "standfast": 1.66e-08, + "starcher": 1.66e-08, + "stereotypy": 1.66e-08, + "stewpot": 1.66e-08, + "stillhouse": 1.66e-08, + "stinted": 1.66e-08, + "stoep": 1.66e-08, + "stridulation": 1.66e-08, + "strophanthus": 1.66e-08, + "subbasement": 1.66e-08, + "subindex": 1.66e-08, + "sublimed": 1.66e-08, + "subphylum": 1.66e-08, + "subscapular": 1.66e-08, + "sultriness": 1.66e-08, + "summability": 1.66e-08, + "suppling": 1.66e-08, + "suprarenal": 1.66e-08, + "suspiciousness": 1.66e-08, + "suttee": 1.66e-08, + "swamper": 1.66e-08, + "swiney": 1.66e-08, + "switchman": 1.66e-08, + "tamburello": 1.66e-08, + "tectona": 1.66e-08, + "tehsildar": 1.66e-08, + "televisor": 1.66e-08, + "thermostability": 1.66e-08, + "tilter": 1.66e-08, + "torma": 1.66e-08, + "toxicosis": 1.66e-08, + "transcendently": 1.66e-08, + "transversalis": 1.66e-08, + "tremolite": 1.66e-08, + "trogs": 1.66e-08, + "unaccommodating": 1.66e-08, + "unamplified": 1.66e-08, + "unbudgeted": 1.66e-08, + "uncapable": 1.66e-08, + "unexercised": 1.66e-08, + "unfancied": 1.66e-08, + "ungual": 1.66e-08, + "unilocular": 1.66e-08, + "unmeet": 1.66e-08, + "unpresentable": 1.66e-08, + "unproductively": 1.66e-08, + "unshakably": 1.66e-08, + "unshorn": 1.66e-08, + "unstopped": 1.66e-08, + "unvalidated": 1.66e-08, + "unvanquished": 1.66e-08, + "unwearied": 1.66e-08, + "uraeus": 1.66e-08, + "vasodilatation": 1.66e-08, + "veliger": 1.66e-08, + "vendace": 1.66e-08, + "violon": 1.66e-08, + "visionless": 1.66e-08, + "voguish": 1.66e-08, + "voidness": 1.66e-08, + "waggish": 1.66e-08, + "washdown": 1.66e-08, + "washerman": 1.66e-08, + "webwork": 1.66e-08, + "whensoever": 1.66e-08, + "whimsey": 1.66e-08, + "yapped": 1.66e-08, + "yolked": 1.66e-08, + "zayat": 1.66e-08, + "zonally": 1.66e-08, + "zwinglian": 1.66e-08, + "abstractness": 1.62e-08, + "acidophilic": 1.62e-08, + "acoustician": 1.62e-08, + "advisee": 1.62e-08, + "affirmance": 1.62e-08, + "africanization": 1.62e-08, + "alanyl": 1.62e-08, + "allometry": 1.62e-08, + "allotrope": 1.62e-08, + "almandine": 1.62e-08, + "ambivert": 1.62e-08, + "aminobenzoic": 1.62e-08, + "androsterone": 1.62e-08, + "ardelia": 1.62e-08, + "aroid": 1.62e-08, + "arteriography": 1.62e-08, + "avaunt": 1.62e-08, + "avouch": 1.62e-08, + "bagani": 1.62e-08, + "balkanize": 1.62e-08, + "barwood": 1.62e-08, + "basilosaurus": 1.62e-08, + "benedicite": 1.62e-08, + "blandish": 1.62e-08, + "bloodthirst": 1.62e-08, + "boisterousness": 1.62e-08, + "boride": 1.62e-08, + "bracteate": 1.62e-08, + "briss": 1.62e-08, + "bubinga": 1.62e-08, + "bulter": 1.62e-08, + "byname": 1.62e-08, + "caddish": 1.62e-08, + "calotype": 1.62e-08, + "cammed": 1.62e-08, + "campaspe": 1.62e-08, + "capacitation": 1.62e-08, + "capless": 1.62e-08, + "carinated": 1.62e-08, + "carronade": 1.62e-08, + "cavus": 1.62e-08, + "celotex": 1.62e-08, + "centralizer": 1.62e-08, + "charka": 1.62e-08, + "cheeser": 1.62e-08, + "chilver": 1.62e-08, + "chlordane": 1.62e-08, + "chunga": 1.62e-08, + "circumvallation": 1.62e-08, + "clinal": 1.62e-08, + "clootie": 1.62e-08, + "concretize": 1.62e-08, + "confutation": 1.62e-08, + "coniacian": 1.62e-08, + "connexus": 1.62e-08, + "contemptibly": 1.62e-08, + "controllably": 1.62e-08, + "controvert": 1.62e-08, + "corallina": 1.62e-08, + "correlatively": 1.62e-08, + "counteractive": 1.62e-08, + "counterblast": 1.62e-08, + "counterscarp": 1.62e-08, + "croche": 1.62e-08, + "crocosmia": 1.62e-08, + "cumulant": 1.62e-08, + "cupronickel": 1.62e-08, + "cutup": 1.62e-08, + "cyclothymia": 1.62e-08, + "cytologic": 1.62e-08, + "daira": 1.62e-08, + "dalradian": 1.62e-08, + "dashy": 1.62e-08, + "daymark": 1.62e-08, + "decarburization": 1.62e-08, + "decimeter": 1.62e-08, + "dendrochronological": 1.62e-08, + "densify": 1.62e-08, + "densitometer": 1.62e-08, + "determinately": 1.62e-08, + "digamma": 1.62e-08, + "dinmont": 1.62e-08, + "dislodgement": 1.62e-08, + "dittany": 1.62e-08, + "dixy": 1.62e-08, + "dormy": 1.62e-08, + "doser": 1.62e-08, + "dratted": 1.62e-08, + "drupa": 1.62e-08, + "dysgenic": 1.62e-08, + "ebullition": 1.62e-08, + "electrohydraulic": 1.62e-08, + "electroscope": 1.62e-08, + "endobronchial": 1.62e-08, + "endogenic": 1.62e-08, + "epicly": 1.62e-08, + "equid": 1.62e-08, + "etheria": 1.62e-08, + "etui": 1.62e-08, + "eurythmy": 1.62e-08, + "farer": 1.62e-08, + "fezziwig": 1.62e-08, + "fivesome": 1.62e-08, + "flibbertigibbet": 1.62e-08, + "flocculant": 1.62e-08, + "floody": 1.62e-08, + "foliose": 1.62e-08, + "forementioned": 1.62e-08, + "formational": 1.62e-08, + "fragrantly": 1.62e-08, + "freebooting": 1.62e-08, + "fullam": 1.62e-08, + "fulsomely": 1.62e-08, + "gaper": 1.62e-08, + "glore": 1.62e-08, + "glycolate": 1.62e-08, + "goldish": 1.62e-08, + "guipure": 1.62e-08, + "gule": 1.62e-08, + "habited": 1.62e-08, + "hadland": 1.62e-08, + "hairspring": 1.62e-08, + "hassock": 1.62e-08, + "hawkweed": 1.62e-08, + "hefter": 1.62e-08, + "heirship": 1.62e-08, + "heptagonal": 1.62e-08, + "hoatzin": 1.62e-08, + "homonymy": 1.62e-08, + "hopple": 1.62e-08, + "houri": 1.62e-08, + "housebreak": 1.62e-08, + "huipil": 1.62e-08, + "hydrograph": 1.62e-08, + "hyne": 1.62e-08, + "hypersecretion": 1.62e-08, + "hypothecation": 1.62e-08, + "inchoative": 1.62e-08, + "indefensibly": 1.62e-08, + "indeterministic": 1.62e-08, + "indirectness": 1.62e-08, + "indissolubility": 1.62e-08, + "indorse": 1.62e-08, + "infusoria": 1.62e-08, + "ingenuousness": 1.62e-08, + "intactness": 1.62e-08, + "intercensal": 1.62e-08, + "intermunicipal": 1.62e-08, + "intrepidly": 1.62e-08, + "intromission": 1.62e-08, + "iritis": 1.62e-08, + "jackaroo": 1.62e-08, + "jewishly": 1.62e-08, + "keratinous": 1.62e-08, + "kerygma": 1.62e-08, + "knurl": 1.62e-08, + "kulang": 1.62e-08, + "ladleful": 1.62e-08, + "lampblack": 1.62e-08, + "langle": 1.62e-08, + "latria": 1.62e-08, + "lewisian": 1.62e-08, + "lightkeeper": 1.62e-08, + "lineation": 1.62e-08, + "lombardic": 1.62e-08, + "lysimachia": 1.62e-08, + "malati": 1.62e-08, + "mandolinist": 1.62e-08, + "martinmas": 1.62e-08, + "mashona": 1.62e-08, + "masquerader": 1.62e-08, + "mesencephalic": 1.62e-08, + "methoxide": 1.62e-08, + "micrographic": 1.62e-08, + "mistic": 1.62e-08, + "monobasic": 1.62e-08, + "mulier": 1.62e-08, + "munsee": 1.62e-08, + "muzo": 1.62e-08, + "necklet": 1.62e-08, + "nephesh": 1.62e-08, + "neuroblast": 1.62e-08, + "nibbed": 1.62e-08, + "nitriding": 1.62e-08, + "noachian": 1.62e-08, + "noctuid": 1.62e-08, + "nomenclator": 1.62e-08, + "nucula": 1.62e-08, + "nyanja": 1.62e-08, + "ophion": 1.62e-08, + "orobanche": 1.62e-08, + "oryctolagus": 1.62e-08, + "overhill": 1.62e-08, + "ovidian": 1.62e-08, + "palpus": 1.62e-08, + "panoche": 1.62e-08, + "paramedian": 1.62e-08, + "parlamento": 1.62e-08, + "partible": 1.62e-08, + "patrilineally": 1.62e-08, + "pavetta": 1.62e-08, + "pennyweight": 1.62e-08, + "phacelia": 1.62e-08, + "phenylacetic": 1.62e-08, + "piggin": 1.62e-08, + "placidity": 1.62e-08, + "plaidy": 1.62e-08, + "plasmatic": 1.62e-08, + "pleomorphism": 1.62e-08, + "plurilateral": 1.62e-08, + "podiceps": 1.62e-08, + "polyarteritis": 1.62e-08, + "potpie": 1.62e-08, + "praenomen": 1.62e-08, + "prefiguration": 1.62e-08, + "preponderate": 1.62e-08, + "prier": 1.62e-08, + "pronouncedly": 1.62e-08, + "puffinus": 1.62e-08, + "pyridyl": 1.62e-08, + "quadricycle": 1.62e-08, + "queerer": 1.62e-08, + "reclusiveness": 1.62e-08, + "reliquiae": 1.62e-08, + "renominate": 1.62e-08, + "resuspension": 1.62e-08, + "rosel": 1.62e-08, + "roup": 1.62e-08, + "ruckle": 1.62e-08, + "ruderal": 1.62e-08, + "rumbelow": 1.62e-08, + "runback": 1.62e-08, + "saecula": 1.62e-08, + "saimiri": 1.62e-08, + "sapiential": 1.62e-08, + "sauciness": 1.62e-08, + "seconder": 1.62e-08, + "semiprivate": 1.62e-08, + "sensualism": 1.62e-08, + "shindy": 1.62e-08, + "shole": 1.62e-08, + "shrillness": 1.62e-08, + "shukria": 1.62e-08, + "sinology": 1.62e-08, + "sizz": 1.62e-08, + "sketchiness": 1.62e-08, + "skete": 1.62e-08, + "slabby": 1.62e-08, + "snakewood": 1.62e-08, + "someways": 1.62e-08, + "spaceless": 1.62e-08, + "stellite": 1.62e-08, + "subtend": 1.62e-08, + "sufferable": 1.62e-08, + "swarmer": 1.62e-08, + "synthesist": 1.62e-08, + "syntype": 1.62e-08, + "tamis": 1.17e-08, + "tayer": 1.62e-08, + "tebet": 1.62e-08, + "tetrachord": 1.62e-08, + "thegn": 1.62e-08, + "thenar": 1.62e-08, + "thermometric": 1.62e-08, + "thissen": 1.62e-08, + "thoracentesis": 1.62e-08, + "tided": 1.62e-08, + "tilework": 1.62e-08, + "towan": 1.62e-08, + "toxicodendron": 1.62e-08, + "traduce": 1.62e-08, + "tridentate": 1.62e-08, + "tuffaceous": 1.62e-08, + "ululation": 1.62e-08, + "unaccessible": 1.62e-08, + "unbonded": 1.62e-08, + "uncalculated": 1.62e-08, + "uncaptured": 1.62e-08, + "uncompassionate": 1.62e-08, + "uncorrectable": 1.62e-08, + "uncrossable": 1.62e-08, + "uncus": 1.62e-08, + "undermentioned": 1.62e-08, + "undesirability": 1.62e-08, + "undiscerning": 1.62e-08, + "undiscriminating": 1.62e-08, + "undutiful": 1.62e-08, + "unglaciated": 1.62e-08, + "unilateralist": 1.62e-08, + "unimolecular": 1.62e-08, + "unital": 1.62e-08, + "unloyal": 1.62e-08, + "unmined": 1.62e-08, + "unmourned": 1.62e-08, + "unprovided": 1.62e-08, + "unreferenced": 1.62e-08, + "unresisting": 1.62e-08, + "unsympathetically": 1.62e-08, + "untether": 1.62e-08, + "unthreaded": 1.62e-08, + "unwomanly": 1.62e-08, + "upas": 1.41e-08, + "vagotomy": 1.62e-08, + "varyingly": 1.62e-08, + "viver": 1.62e-08, + "waterwise": 1.62e-08, + "waul": 1.62e-08, + "weakfish": 1.62e-08, + "yahwist": 1.62e-08, + "yeso": 1.62e-08, + "zebrina": 1.62e-08, + "zeolitic": 1.62e-08, + "zooks": 1.62e-08, + "adullam": 1.58e-08, + "aerodynamicist": 1.58e-08, + "aftertreatment": 1.58e-08, + "ageratum": 1.58e-08, + "agrimony": 1.58e-08, + "almoravid": 1.58e-08, + "anba": 1.58e-08, + "anergy": 1.58e-08, + "antichristian": 1.58e-08, + "antiphonary": 1.58e-08, + "antu": 1.58e-08, + "arsine": 1.58e-08, + "ascochyta": 1.58e-08, + "aseismic": 1.58e-08, + "asor": 1.58e-08, + "athymic": 1.58e-08, + "australoid": 1.58e-08, + "baptisia": 1.58e-08, + "bawley": 1.58e-08, + "bayman": 1.58e-08, + "beanfield": 1.58e-08, + "bewitchingly": 1.58e-08, + "biomathematics": 1.58e-08, + "blastomere": 1.58e-08, + "bonzer": 1.58e-08, + "borderer": 1.58e-08, + "borrel": 1.58e-08, + "bovidae": 1.58e-08, + "bradykinesia": 1.58e-08, + "brambling": 1.58e-08, + "brummagem": 1.58e-08, + "bughead": 1.58e-08, + "bursal": 1.58e-08, + "butyrolactone": 1.58e-08, + "caesalpinia": 1.58e-08, + "calcific": 1.58e-08, + "camelopardalis": 1.58e-08, + "cameronian": 1.58e-08, + "cantate": 1.58e-08, + "capitated": 1.58e-08, + "carduus": 1.58e-08, + "carroty": 1.58e-08, + "cassina": 1.58e-08, + "cementite": 1.58e-08, + "centrosymmetric": 1.58e-08, + "ceptor": 1.58e-08, + "chiam": 1.58e-08, + "chlorohydrin": 1.58e-08, + "chlorophyceae": 1.58e-08, + "chorded": 1.58e-08, + "chrismation": 1.58e-08, + "chukker": 1.58e-08, + "chylothorax": 1.58e-08, + "cinnamaldehyde": 1.58e-08, + "clarkia": 1.58e-08, + "classman": 1.58e-08, + "clepsydra": 1.58e-08, + "commandingly": 1.58e-08, + "conglomeratic": 1.58e-08, + "contraposition": 1.58e-08, + "cowfish": 1.58e-08, + "croci": 1.58e-08, + "ctenoid": 1.58e-08, + "cuchulainn": 1.58e-08, + "cultch": 1.58e-08, + "cyclopentadiene": 1.58e-08, + "cyclotomic": 1.58e-08, + "cymene": 1.58e-08, + "cystoscope": 1.58e-08, + "deceptiveness": 1.58e-08, + "dentil": 1.58e-08, + "diametral": 1.58e-08, + "digitalize": 1.58e-08, + "dimera": 1.58e-08, + "disaffiliate": 1.58e-08, + "dislikable": 1.58e-08, + "dragonfish": 1.58e-08, + "dreiling": 1.58e-08, + "drugless": 1.58e-08, + "earsplitting": 1.58e-08, + "elementally": 1.58e-08, + "elusively": 1.58e-08, + "embolo": 1.58e-08, + "emotively": 1.58e-08, + "encephalocele": 1.58e-08, + "endospore": 1.58e-08, + "engrossment": 1.58e-08, + "enrapture": 1.58e-08, + "entelechy": 1.58e-08, + "eohippus": 1.58e-08, + "esotropia": 1.58e-08, + "eutopia": 1.58e-08, + "execrate": 1.58e-08, + "exserted": 1.58e-08, + "famish": 1.58e-08, + "fathomable": 1.58e-08, + "faugh": 1.58e-08, + "ferule": 1.58e-08, + "finless": 1.58e-08, + "fireplug": 1.58e-08, + "fructidor": 1.58e-08, + "functionless": 1.58e-08, + "geal": 1.58e-08, + "geminid": 1.58e-08, + "gentlemanlike": 1.58e-08, + "ghastliness": 1.58e-08, + "gink": 1.58e-08, + "gladdy": 1.58e-08, + "goidelic": 1.58e-08, + "greave": 1.58e-08, + "groaner": 1.58e-08, + "groundedness": 1.58e-08, + "gruesomeness": 1.58e-08, + "guardant": 1.58e-08, + "gyrocompass": 1.58e-08, + "haikal": 1.58e-08, + "haler": 1.58e-08, + "hepatectomy": 1.58e-08, + "heroides": 1.58e-08, + "hetter": 1.58e-08, + "hexamethylene": 1.58e-08, + "hexaploid": 1.58e-08, + "homotypic": 1.58e-08, + "husbandly": 1.58e-08, + "hyaloid": 1.58e-08, + "hypanthium": 1.58e-08, + "hypercoagulable": 1.58e-08, + "hyperostosis": 1.58e-08, + "hypersphere": 1.58e-08, + "ibad": 1.58e-08, + "impregnability": 1.58e-08, + "inceptive": 1.58e-08, + "indefeasible": 1.58e-08, + "inhibitive": 1.58e-08, + "interdistrict": 1.58e-08, + "interiorly": 1.58e-08, + "interpolator": 1.58e-08, + "intertype": 1.58e-08, + "isoptera": 1.58e-08, + "jesuitical": 1.58e-08, + "jobo": 1.58e-08, + "judaization": 1.58e-08, + "juturna": 1.58e-08, + "keratinization": 1.58e-08, + "kibe": 1.58e-08, + "kiddushin": 1.58e-08, + "lacinia": 1.58e-08, + "lactide": 1.58e-08, + "latinist": 1.58e-08, + "latitudinarian": 1.58e-08, + "liassic": 1.58e-08, + "limitlessness": 1.58e-08, + "lopper": 1.58e-08, + "luxuriance": 1.58e-08, + "macrocystis": 1.58e-08, + "macrophotography": 1.58e-08, + "madeiran": 1.58e-08, + "magian": 1.58e-08, + "makeweight": 1.58e-08, + "makonde": 1.58e-08, + "malacological": 1.58e-08, + "malpighian": 1.58e-08, + "mammillary": 1.58e-08, + "marmar": 1.58e-08, + "maytime": 1.58e-08, + "meathook": 1.58e-08, + "megaera": 1.58e-08, + "meriones": 1.58e-08, + "mirabell": 1.58e-08, + "mirk": 1.58e-08, + "mismeasure": 1.58e-08, + "misperceive": 1.58e-08, + "momordica": 1.58e-08, + "multifilament": 1.58e-08, + "muscularly": 1.58e-08, + "myxoid": 1.58e-08, + "nankeen": 1.58e-08, + "nocturnally": 1.58e-08, + "nodose": 1.58e-08, + "nonblocking": 1.58e-08, + "numerable": 1.58e-08, + "ocherous": 1.58e-08, + "orangewood": 1.58e-08, + "ordu": 1.58e-08, + "orotund": 1.58e-08, + "orthoceras": 1.58e-08, + "outwell": 1.58e-08, + "overblow": 1.58e-08, + "overzealousness": 1.58e-08, + "parling": 1.58e-08, + "penk": 1.58e-08, + "persicaria": 1.58e-08, + "phenomenalism": 1.58e-08, + "phlegmy": 1.58e-08, + "phocoena": 1.58e-08, + "plighted": 1.58e-08, + "pohutukawa": 1.58e-08, + "poisonwood": 1.58e-08, + "potence": 1.58e-08, + "pother": 1.58e-08, + "prankish": 1.58e-08, + "procris": 1.58e-08, + "procrustean": 1.58e-08, + "pronaos": 1.58e-08, + "pseudomembranous": 1.58e-08, + "psychologism": 1.58e-08, + "psychrophilic": 1.58e-08, + "pterostigma": 1.58e-08, + "quodlibet": 1.58e-08, + "recreative": 1.58e-08, + "recrystallize": 1.58e-08, + "redub": 1.58e-08, + "reimagination": 1.58e-08, + "reinfect": 1.58e-08, + "reinterview": 1.58e-08, + "reservable": 1.58e-08, + "responde": 1.58e-08, + "resupinate": 1.58e-08, + "revisor": 1.58e-08, + "revivification": 1.58e-08, + "rifter": 1.58e-08, + "rogatory": 1.58e-08, + "rummer": 1.58e-08, + "sagger": 1.58e-08, + "salep": 1.58e-08, + "sarraf": 1.58e-08, + "saucily": 1.58e-08, + "savable": 1.58e-08, + "scup": 1.58e-08, + "sedulously": 1.58e-08, + "semidesert": 1.58e-08, + "seral": 1.58e-08, + "sergiu": 1.58e-08, + "serow": 1.58e-08, + "sesia": 1.58e-08, + "severer": 1.58e-08, + "shaivism": 1.58e-08, + "shockable": 1.58e-08, + "showiness": 1.58e-08, + "silverwing": 1.58e-08, + "slartibartfast": 1.58e-08, + "sniffily": 1.58e-08, + "snubber": 1.58e-08, + "sooky": 1.58e-08, + "souverain": 1.58e-08, + "sovietization": 1.58e-08, + "spatialization": 1.58e-08, + "speediness": 1.58e-08, + "spermatogenic": 1.58e-08, + "spiritualize": 1.58e-08, + "stere": 1.58e-08, + "stonily": 1.58e-08, + "strappado": 1.58e-08, + "strikebreaking": 1.58e-08, + "strombus": 1.58e-08, + "subcircular": 1.58e-08, + "subepithelial": 1.58e-08, + "subflooring": 1.58e-08, + "subrange": 1.58e-08, + "subsistent": 1.58e-08, + "sulfanilamide": 1.58e-08, + "sundaresan": 1.58e-08, + "sunwise": 1.58e-08, + "superscription": 1.58e-08, + "tartarian": 1.58e-08, + "tendresse": 1.58e-08, + "thanatology": 1.58e-08, + "theileria": 1.58e-08, + "theologist": 1.58e-08, + "thoro": 1.58e-08, + "tramroad": 1.58e-08, + "transferal": 1.58e-08, + "trinkle": 1.58e-08, + "tumtum": 1.58e-08, + "tweeny": 1.58e-08, + "unadopted": 1.58e-08, + "unassumingly": 1.58e-08, + "unbrushed": 1.58e-08, + "unclasp": 1.58e-08, + "unfeathered": 1.58e-08, + "unfrosted": 1.58e-08, + "unguaranteed": 1.58e-08, + "unirradiated": 1.58e-08, + "unrealizable": 1.58e-08, + "unstrapped": 1.58e-08, + "upthrust": 1.58e-08, + "vapidity": 1.58e-08, + "venereology": 1.58e-08, + "venezolano": 1.58e-08, + "venturous": 1.58e-08, + "welwitschia": 1.58e-08, + "wheaty": 1.58e-08, + "whinstone": 1.58e-08, + "woom": 1.58e-08, + "writeable": 1.58e-08, + "xaverian": 1.58e-08, + "yellowwood": 1.58e-08, + "yelper": 1.58e-08, + "zamorin": 1.58e-08, + "zehner": 1.58e-08, + "zwanziger": 1.58e-08, + "abstainer": 1.55e-08, + "acetobacter": 1.55e-08, + "adiel": 1.55e-08, + "adonia": 1.55e-08, + "agglutinate": 1.55e-08, + "alala": 1.55e-08, + "alate": 1.55e-08, + "alienage": 1.55e-08, + "altun": 1.55e-08, + "ambassade": 1.55e-08, + "amole": 1.55e-08, + "angioma": 1.55e-08, + "annunciator": 1.55e-08, + "anoa": 1.55e-08, + "anteromedial": 1.55e-08, + "antitype": 1.55e-08, + "antra": 1.55e-08, + "anuran": 1.55e-08, + "aphotic": 1.55e-08, + "appurtenance": 1.55e-08, + "assyriology": 1.55e-08, + "atavus": 1.55e-08, + "athetosis": 1.55e-08, + "atossa": 1.55e-08, + "attainability": 1.55e-08, + "aurin": 1.55e-08, + "azote": 1.55e-08, + "bacchantes": 1.55e-08, + "backcross": 1.55e-08, + "backwoodsman": 1.55e-08, + "bangala": 1.55e-08, + "barding": 1.55e-08, + "battledore": 1.55e-08, + "bedstraw": 1.55e-08, + "bichromate": 1.55e-08, + "biometrically": 1.55e-08, + "blackboy": 1.55e-08, + "bladderwort": 1.55e-08, + "boggler": 1.55e-08, + "bogland": 1.55e-08, + "bothnian": 1.55e-08, + "bovid": 1.55e-08, + "brainwork": 1.55e-08, + "brazer": 1.55e-08, + "brecken": 1.55e-08, + "brucite": 1.55e-08, + "bryologist": 1.55e-08, + "bupleurum": 1.55e-08, + "burled": 1.55e-08, + "burrower": 1.55e-08, + "butsu": 1.55e-08, + "cabas": 1.55e-08, + "calculatingly": 1.55e-08, + "campanulate": 1.55e-08, + "capelet": 1.55e-08, + "caproate": 1.55e-08, + "captious": 1.55e-08, + "carinate": 1.55e-08, + "chemoreceptor": 1.55e-08, + "christianism": 1.55e-08, + "chrysoberyl": 1.55e-08, + "chrysops": 1.55e-08, + "cinerary": 1.55e-08, + "clangor": 1.55e-08, + "colligative": 1.55e-08, + "collotype": 1.55e-08, + "commissionership": 1.55e-08, + "compulsiveness": 1.55e-08, + "condonation": 1.55e-08, + "contractive": 1.55e-08, + "contumacious": 1.55e-08, + "costard": 1.55e-08, + "costumier": 1.55e-08, + "countryfolk": 1.55e-08, + "craner": 1.55e-08, + "crosspiece": 1.55e-08, + "crout": 1.55e-08, + "croute": 1.55e-08, + "croze": 1.55e-08, + "cruck": 1.55e-08, + "crustaceous": 1.55e-08, + "cuirassier": 1.55e-08, + "curser": 1.55e-08, + "cuscus": 1.55e-08, + "debonaire": 1.55e-08, + "declaratively": 1.55e-08, + "demagnetize": 1.55e-08, + "demijohn": 1.55e-08, + "demographical": 1.55e-08, + "descension": 1.55e-08, + "despondence": 1.55e-08, + "dicentra": 1.55e-08, + "diketone": 1.55e-08, + "dinheiro": 1.55e-08, + "dinitrophenol": 1.55e-08, + "diprotodon": 1.55e-08, + "disagreeably": 1.55e-08, + "disinvest": 1.55e-08, + "diskless": 1.55e-08, + "diterpene": 1.55e-08, + "docilely": 1.55e-08, + "doorsill": 1.55e-08, + "dosser": 1.55e-08, + "drachm": 1.55e-08, + "duala": 1.55e-08, + "duologue": 1.55e-08, + "durative": 1.55e-08, + "embitter": 1.55e-08, + "emersed": 1.55e-08, + "emesa": 1.55e-08, + "emetine": 1.55e-08, + "empery": 1.55e-08, + "endorsee": 1.55e-08, + "energic": 1.55e-08, + "enervation": 1.55e-08, + "eriophorum": 1.55e-08, + "essayistic": 1.55e-08, + "etheostoma": 1.55e-08, + "evolutive": 1.55e-08, + "exaudi": 1.55e-08, + "exclosure": 1.55e-08, + "exophthalmos": 1.55e-08, + "eyebeam": 1.55e-08, + "facepiece": 1.55e-08, + "fascista": 1.55e-08, + "fellani": 1.55e-08, + "feme": 1.55e-08, + "feministic": 1.55e-08, + "filar": 1.55e-08, + "forbiddingly": 1.55e-08, + "foud": 1.55e-08, + "frenziedly": 1.55e-08, + "freudianism": 1.55e-08, + "frizer": 1.55e-08, + "fusiformis": 1.55e-08, + "geechee": 1.55e-08, + "germfree": 1.55e-08, + "germicide": 1.55e-08, + "gladiola": 1.55e-08, + "gordius": 1.55e-08, + "gravenstein": 1.55e-08, + "guaiacol": 1.55e-08, + "gulper": 1.55e-08, + "haloid": 1.55e-08, + "hearting": 1.55e-08, + "heugh": 1.55e-08, + "hexagonally": 1.55e-08, + "homoptera": 1.55e-08, + "humate": 1.55e-08, + "hunnish": 1.55e-08, + "hypochondriacal": 1.55e-08, + "hysteretic": 1.55e-08, + "ideate": 1.55e-08, + "immateriality": 1.55e-08, + "immortally": 1.55e-08, + "incrassate": 1.55e-08, + "indention": 1.55e-08, + "indigofera": 1.55e-08, + "inexhaustibly": 1.55e-08, + "inodes": 1.55e-08, + "insectarium": 1.55e-08, + "interpleader": 1.55e-08, + "intertrigo": 1.55e-08, + "intervallic": 1.55e-08, + "iodoform": 1.55e-08, + "itala": 1.55e-08, + "jagua": 1.55e-08, + "japanned": 1.55e-08, + "juang": 1.55e-08, + "juridically": 1.55e-08, + "khula": 1.55e-08, + "kilojoule": 1.55e-08, + "kiltie": 1.55e-08, + "lactalbumin": 1.55e-08, + "lecker": 1.55e-08, + "lepidopterist": 1.55e-08, + "limosa": 1.55e-08, + "linin": 1.55e-08, + "lobstering": 1.55e-08, + "lovesome": 1.55e-08, + "lubberly": 1.55e-08, + "lucayan": 1.55e-08, + "lumper": 1.55e-08, + "lustra": 1.55e-08, + "macrocephaly": 1.55e-08, + "magisterially": 1.55e-08, + "mandaean": 1.55e-08, + "meagerly": 1.55e-08, + "meritoriously": 1.55e-08, + "mesonotum": 1.55e-08, + "metatarsophalangeal": 1.55e-08, + "methylmalonic": 1.55e-08, + "metope": 1.55e-08, + "miasmic": 1.55e-08, + "mikir": 1.55e-08, + "minikin": 1.55e-08, + "mofussil": 1.55e-08, + "monocline": 1.55e-08, + "morphophonemic": 1.55e-08, + "motacilla": 1.55e-08, + "muleteer": 1.55e-08, + "mundanely": 1.55e-08, + "nakula": 1.55e-08, + "nataka": 1.55e-08, + "naughtily": 1.55e-08, + "negator": 1.55e-08, + "nervine": 1.55e-08, + "nitrosamine": 1.55e-08, + "nonadherence": 1.55e-08, + "nonaqueous": 1.55e-08, + "noninflammatory": 1.55e-08, + "nonrenewal": 1.55e-08, + "nonskid": 1.55e-08, + "nontax": 1.55e-08, + "nonya": 1.55e-08, + "octopod": 1.55e-08, + "officiously": 1.55e-08, + "omnivision": 1.55e-08, + "optimates": 1.55e-08, + "overbuild": 1.55e-08, + "overskirt": 1.55e-08, + "overthrust": 1.55e-08, + "paleobotanist": 1.55e-08, + "paleogeographic": 1.55e-08, + "penological": 1.55e-08, + "perfectible": 1.55e-08, + "perseveration": 1.55e-08, + "petrographically": 1.55e-08, + "phenacetin": 1.55e-08, + "photoconductivity": 1.55e-08, + "pinte": 1.55e-08, + "pinworm": 1.55e-08, + "piperno": 1.55e-08, + "pirn": 1.55e-08, + "plaquette": 1.55e-08, + "pleuritic": 1.55e-08, + "plosion": 1.55e-08, + "pollex": 1.55e-08, + "polygraphic": 1.55e-08, + "ponent": 1.55e-08, + "poppel": 1.55e-08, + "postnasal": 1.55e-08, + "preceptory": 1.55e-08, + "preceramic": 1.55e-08, + "precharge": 1.55e-08, + "premiss": 1.55e-08, + "preorbital": 1.55e-08, + "prestissimo": 1.55e-08, + "pricker": 1.55e-08, + "pronate": 1.55e-08, + "protium": 1.55e-08, + "pseudocyst": 1.55e-08, + "pteridophyta": 1.55e-08, + "pumpable": 1.55e-08, + "pushpin": 1.55e-08, + "pyrochlore": 1.55e-08, + "pyrrhonism": 1.55e-08, + "quoniam": 1.55e-08, + "radionics": 1.55e-08, + "ragpicker": 1.55e-08, + "ratoon": 1.55e-08, + "rattletrap": 1.55e-08, + "readapt": 1.55e-08, + "rearwardly": 1.55e-08, + "recurse": 1.55e-08, + "redesignate": 1.55e-08, + "reedbuck": 1.55e-08, + "reinspection": 1.55e-08, + "replier": 1.55e-08, + "reproducer": 1.55e-08, + "residental": 1.55e-08, + "resorb": 1.55e-08, + "rheometer": 1.55e-08, + "rhinorrhea": 1.55e-08, + "rhizomatic": 1.55e-08, + "riant": 1.55e-08, + "romanza": 1.55e-08, + "rosicrucianism": 1.55e-08, + "sadducee": 1.55e-08, + "safrole": 1.55e-08, + "samel": 1.55e-08, + "sannyasin": 1.55e-08, + "schistosome": 1.55e-08, + "schoodic": 1.55e-08, + "schwabacher": 1.55e-08, + "scob": 1.55e-08, + "scoparius": 1.55e-08, + "scuppernong": 1.55e-08, + "securable": 1.55e-08, + "semiquaver": 1.55e-08, + "septicemic": 1.55e-08, + "shaiva": 1.55e-08, + "skinniness": 1.55e-08, + "sluggy": 1.55e-08, + "smeltery": 1.55e-08, + "sociometric": 1.55e-08, + "somnambulant": 1.55e-08, + "sordidness": 1.55e-08, + "sortition": 1.55e-08, + "spermine": 1.55e-08, + "starosta": 1.55e-08, + "stromata": 1.55e-08, + "sublunary": 1.55e-08, + "subvocal": 1.55e-08, + "tachymeter": 1.55e-08, + "tailender": 1.55e-08, + "tatou": 1.55e-08, + "tautomer": 1.55e-08, + "tekke": 1.55e-08, + "telencephalic": 1.55e-08, + "temporale": 1.55e-08, + "tenent": 1.55e-08, + "tensional": 1.55e-08, + "terpsichorean": 1.55e-08, + "territorialism": 1.55e-08, + "thermotherapy": 1.55e-08, + "tiang": 1.55e-08, + "toponymic": 1.55e-08, + "totonac": 1.55e-08, + "transatlanticism": 1.55e-08, + "trepang": 1.55e-08, + "tribromide": 1.55e-08, + "tridimensional": 1.55e-08, + "tripolitan": 1.55e-08, + "truster": 1.55e-08, + "unarranged": 1.55e-08, + "unbought": 1.55e-08, + "uncoerced": 1.55e-08, + "uncomparable": 1.55e-08, + "undamped": 1.55e-08, + "unexceptionable": 1.55e-08, + "unfiled": 1.55e-08, + "unflushed": 1.55e-08, + "unlove": 1.55e-08, + "unscholarly": 1.55e-08, + "unscientifically": 1.55e-08, + "unsterile": 1.55e-08, + "untruthfulness": 1.55e-08, + "untz": 1.55e-08, + "vanaheim": 1.55e-08, + "vernalization": 1.55e-08, + "vinylidene": 1.55e-08, + "viviparity": 1.55e-08, + "volcanological": 1.55e-08, + "wallawalla": 1.55e-08, + "warwolf": 1.55e-08, + "waterhead": 1.55e-08, + "westering": 1.55e-08, + "womanliness": 1.55e-08, + "yaru": 1.55e-08, + "abhorrently": 1.51e-08, + "abominate": 1.51e-08, + "acrisius": 1.51e-08, + "actinomycin": 1.51e-08, + "adverbially": 1.51e-08, + "aforetime": 1.51e-08, + "aiel": 1.51e-08, + "airscrew": 1.51e-08, + "alamanni": 1.51e-08, + "alphorn": 1.51e-08, + "amical": 1.51e-08, + "andriana": 1.51e-08, + "androgenetic": 1.51e-08, + "angka": 1.51e-08, + "anglicanum": 1.51e-08, + "antecedently": 1.51e-08, + "apanteles": 1.51e-08, + "apport": 1.51e-08, + "aramaean": 1.51e-08, + "argumentatively": 1.51e-08, + "arianrhod": 1.51e-08, + "arrestingly": 1.51e-08, + "artillerist": 1.51e-08, + "aspartyl": 1.51e-08, + "authoritativeness": 1.51e-08, + "autographic": 1.51e-08, + "autotomy": 1.51e-08, + "bandoleer": 1.51e-08, + "baniya": 1.51e-08, + "bargeman": 1.51e-08, + "bayadere": 1.51e-08, + "berley": 1.51e-08, + "boid": 1.51e-08, + "bororo": 1.51e-08, + "bottommost": 1.51e-08, + "bowknot": 1.51e-08, + "brachiopoda": 1.51e-08, + "bribri": 1.51e-08, + "burrel": 1.51e-08, + "butterman": 1.51e-08, + "calamites": 1.51e-08, + "cantilena": 1.51e-08, + "cantrip": 1.51e-08, + "carburization": 1.51e-08, + "carinthian": 1.51e-08, + "carthamus": 1.51e-08, + "cataphract": 1.51e-08, + "catha": 1.51e-08, + "catmint": 1.51e-08, + "cercis": 1.51e-08, + "cerebrally": 1.51e-08, + "chagga": 1.51e-08, + "chelone": 1.51e-08, + "cherimoya": 1.51e-08, + "chiasma": 1.51e-08, + "cinnamyl": 1.51e-08, + "cithara": 1.51e-08, + "cladophora": 1.51e-08, + "claviceps": 1.51e-08, + "cleg": 1.51e-08, + "coccinella": 1.51e-08, + "cockcrow": 1.51e-08, + "combinable": 1.51e-08, + "consolingly": 1.51e-08, + "crocheter": 1.51e-08, + "crowberry": 1.51e-08, + "crustose": 1.51e-08, + "cupidon": 1.51e-08, + "cyclobutane": 1.51e-08, + "dazedly": 1.51e-08, + "deschampsia": 1.51e-08, + "dowitcher": 1.51e-08, + "dryish": 1.51e-08, + "durra": 1.51e-08, + "earhole": 1.51e-08, + "echinochloa": 1.51e-08, + "educable": 1.51e-08, + "empanel": 1.51e-08, + "enjambment": 1.51e-08, + "epode": 1.51e-08, + "equatorward": 1.51e-08, + "eschar": 1.51e-08, + "exhibitionistic": 1.51e-08, + "extracellularly": 1.51e-08, + "fissiparous": 1.51e-08, + "forcer": 1.51e-08, + "forkbeard": 1.51e-08, + "forsterite": 1.51e-08, + "freezable": 1.51e-08, + "frenched": 1.51e-08, + "frenum": 1.51e-08, + "fumarolic": 1.51e-08, + "funker": 1.51e-08, + "furcate": 1.51e-08, + "furcula": 1.51e-08, + "fusus": 1.51e-08, + "giustina": 1.51e-08, + "glooming": 1.51e-08, + "gorsedd": 1.51e-08, + "grimme": 1.51e-08, + "guileful": 1.51e-08, + "haiduk": 1.51e-08, + "handcar": 1.51e-08, + "harborage": 1.51e-08, + "hayfork": 1.51e-08, + "heirless": 1.51e-08, + "helve": 1.51e-08, + "hematemesis": 1.51e-08, + "heraldically": 1.51e-08, + "highflying": 1.51e-08, + "homonuclear": 1.51e-08, + "homothetic": 1.51e-08, + "hostilely": 1.51e-08, + "housecarl": 1.51e-08, + "howlite": 1.51e-08, + "huffily": 1.51e-08, + "hydrometric": 1.51e-08, + "hypodermis": 1.51e-08, + "illium": 1.51e-08, + "impassivity": 1.51e-08, + "imprese": 1.51e-08, + "inarticulately": 1.51e-08, + "incomer": 1.51e-08, + "incuse": 1.51e-08, + "insulter": 1.51e-08, + "interstadial": 1.51e-08, + "inula": 1.51e-08, + "irrecoverably": 1.51e-08, + "isotopy": 1.51e-08, + "ixora": 1.51e-08, + "jacinth": 1.51e-08, + "keralite": 1.51e-08, + "keynoter": 1.51e-08, + "knotter": 1.51e-08, + "knowledged": 1.51e-08, + "labyrinthian": 1.51e-08, + "laelia": 1.51e-08, + "landship": 1.51e-08, + "lendu": 1.51e-08, + "leucocyte": 1.51e-08, + "lighterage": 1.51e-08, + "limner": 1.51e-08, + "literalness": 1.51e-08, + "logoi": 1.51e-08, + "lucratively": 1.51e-08, + "luminate": 1.51e-08, + "lupulus": 1.51e-08, + "luwian": 1.51e-08, + "lymantria": 1.51e-08, + "malinger": 1.51e-08, + "malthusianism": 1.51e-08, + "mangabey": 1.51e-08, + "matlow": 1.51e-08, + "mawkishness": 1.51e-08, + "meatal": 1.51e-08, + "melioration": 1.51e-08, + "melongena": 1.51e-08, + "metate": 1.51e-08, + "minuteness": 1.51e-08, + "mobula": 1.51e-08, + "modalism": 1.51e-08, + "mullock": 1.51e-08, + "multiaxial": 1.51e-08, + "myoepithelial": 1.51e-08, + "natica": 1.51e-08, + "nawt": 1.51e-08, + "neter": 1.51e-08, + "nethermost": 1.51e-08, + "nodulation": 1.51e-08, + "nomothetic": 1.51e-08, + "nonbasic": 1.51e-08, + "noncombustible": 1.51e-08, + "noncon": 1.51e-08, + "nondisjunction": 1.51e-08, + "nutritiously": 1.51e-08, + "oligohydramnios": 1.51e-08, + "opprobrious": 1.51e-08, + "orphism": 1.51e-08, + "orthochromatic": 1.51e-08, + "overcall": 1.51e-08, + "pacifically": 1.51e-08, + "paintless": 1.51e-08, + "palta": 1.51e-08, + "papillose": 1.51e-08, + "particularist": 1.51e-08, + "parturient": 1.51e-08, + "peaberry": 1.51e-08, + "pectinate": 1.51e-08, + "pedunculated": 1.51e-08, + "pelisse": 1.51e-08, + "penial": 1.51e-08, + "pentahydrate": 1.51e-08, + "perseveringly": 1.51e-08, + "peul": 1.51e-08, + "pharmacal": 1.51e-08, + "philter": 1.51e-08, + "phomopsis": 1.51e-08, + "pigface": 1.51e-08, + "pise": 1.51e-08, + "pithos": 1.51e-08, + "polynuclear": 1.51e-08, + "pomological": 1.51e-08, + "pomology": 1.51e-08, + "potsherd": 1.51e-08, + "preplan": 1.51e-08, + "presurgical": 1.51e-08, + "prewash": 1.51e-08, + "pridefully": 1.51e-08, + "propaedeutic": 1.51e-08, + "psychotria": 1.51e-08, + "pushtu": 1.51e-08, + "pyramidion": 1.51e-08, + "quinacrine": 1.51e-08, + "ramify": 1.51e-08, + "randia": 1.51e-08, + "rasselas": 1.51e-08, + "rebeck": 1.51e-08, + "refluxed": 1.51e-08, + "regimentals": 1.51e-08, + "rememberable": 1.51e-08, + "representatively": 1.51e-08, + "responsory": 1.51e-08, + "restrictiveness": 1.51e-08, + "resynthesis": 1.51e-08, + "rhadamanthus": 1.51e-08, + "rhapsodize": 1.51e-08, + "runrig": 1.51e-08, + "rurality": 1.51e-08, + "saeculum": 1.51e-08, + "saponaria": 1.51e-08, + "sassan": 1.51e-08, + "scenarist": 1.51e-08, + "scientifical": 1.51e-08, + "sensilla": 1.51e-08, + "sententiously": 1.51e-08, + "septi": 1.51e-08, + "shawm": 1.51e-08, + "shoofly": 1.51e-08, + "sifaka": 1.51e-08, + "sinuosity": 1.51e-08, + "sker": 1.51e-08, + "skittishness": 1.51e-08, + "slided": 1.51e-08, + "slobby": 1.51e-08, + "sloshy": 1.51e-08, + "snivy": 1.51e-08, + "snowbell": 1.51e-08, + "socker": 1.51e-08, + "sopranino": 1.51e-08, + "souwester": 1.51e-08, + "spartacist": 1.51e-08, + "spermophilus": 1.51e-08, + "spicule": 1.51e-08, + "spinozism": 1.51e-08, + "sprink": 1.51e-08, + "squilla": 1.51e-08, + "stannate": 1.51e-08, + "stanzaic": 1.51e-08, + "stanze": 1.51e-08, + "stemma": 1.51e-08, + "stingo": 1.51e-08, + "stirringly": 1.51e-08, + "stret": 1.51e-08, + "subaquatic": 1.51e-08, + "sundra": 1.51e-08, + "suricata": 1.51e-08, + "tallage": 1.51e-08, + "tamperproof": 1.51e-08, + "tangly": 1.51e-08, + "tanoa": 1.51e-08, + "temperately": 1.51e-08, + "tergum": 1.51e-08, + "termin": 1.51e-08, + "thunderstrike": 1.51e-08, + "tined": 1.51e-08, + "tinne": 1.51e-08, + "tipula": 1.51e-08, + "transuranium": 1.51e-08, + "trapshooting": 1.51e-08, + "trindle": 1.51e-08, + "turcoman": 1.51e-08, + "unclimbable": 1.51e-08, + "unhidden": 1.51e-08, + "unobvious": 1.51e-08, + "unreasoned": 1.51e-08, + "unscalable": 1.51e-08, + "unsuitably": 1.51e-08, + "untidily": 1.51e-08, + "upflow": 1.51e-08, + "uraemic": 1.51e-08, + "vatic": 1.51e-08, + "vendue": 1.51e-08, + "wainman": 1.51e-08, + "wanty": 1.51e-08, + "whick": 1.51e-08, + "whinchat": 1.51e-08, + "wolffian": 1.51e-08, + "wooer": 1.51e-08, + "worrywart": 1.51e-08, + "zenithal": 1.51e-08, + "zirconate": 1.51e-08, + "aberrational": 1.48e-08, + "actinomycete": 1.48e-08, + "agelessness": 1.48e-08, + "akasa": 1.48e-08, + "alcedo": 1.48e-08, + "ammoniacal": 1.48e-08, + "amorphophallus": 1.48e-08, + "annulated": 1.48e-08, + "anodal": 1.48e-08, + "anticorrosive": 1.48e-08, + "apochromatic": 1.48e-08, + "areopagitica": 1.48e-08, + "arrestment": 1.48e-08, + "arteriosclerotic": 1.48e-08, + "artlessness": 1.48e-08, + "assumably": 1.48e-08, + "astraddle": 1.48e-08, + "autodrome": 1.48e-08, + "bacterially": 1.48e-08, + "bahmani": 1.48e-08, + "balconied": 1.48e-08, + "banaba": 1.48e-08, + "barratry": 1.48e-08, + "battlewagon": 1.48e-08, + "bavin": 1.48e-08, + "beefin": 1.48e-08, + "bespoken": 1.48e-08, + "bicone": 1.48e-08, + "bladesmith": 1.48e-08, + "bloodmobile": 1.48e-08, + "blushy": 1.48e-08, + "boattail": 1.48e-08, + "boneset": 1.48e-08, + "boughten": 1.48e-08, + "braconid": 1.48e-08, + "briber": 1.48e-08, + "broadbill": 1.48e-08, + "brobdingnag": 1.48e-08, + "brusher": 1.48e-08, + "buccinum": 1.48e-08, + "butanone": 1.48e-08, + "cabezon": 1.48e-08, + "caitiff": 1.48e-08, + "calcitic": 1.48e-08, + "calends": 1.48e-08, + "canaille": 1.48e-08, + "captivatingly": 1.48e-08, + "catalyzer": 1.48e-08, + "cathari": 1.48e-08, + "caudatum": 1.48e-08, + "chaus": 1.05e-08, + "chauk": 1.48e-08, + "chelonian": 1.48e-08, + "christocentric": 1.48e-08, + "coachee": 1.48e-08, + "codo": 1.48e-08, + "commensurability": 1.48e-08, + "compliancy": 1.48e-08, + "conceptus": 1.48e-08, + "congenially": 1.48e-08, + "coquito": 1.48e-08, + "cowcatcher": 1.48e-08, + "cracksman": 1.48e-08, + "crepis": 1.48e-08, + "cuarenta": 1.48e-08, + "cuneus": 1.48e-08, + "dagoba": 1.48e-08, + "decadently": 1.48e-08, + "decagon": 1.48e-08, + "decalcification": 1.48e-08, + "dennet": 1.48e-08, + "depersonalize": 1.48e-08, + "dermacentor": 1.48e-08, + "despoiler": 1.48e-08, + "diamagnetism": 1.48e-08, + "digastric": 1.48e-08, + "diplomatics": 1.48e-08, + "disintegrative": 1.48e-08, + "dragonet": 1.48e-08, + "drawable": 1.48e-08, + "dubiousness": 1.48e-08, + "duddies": 1.48e-08, + "duello": 1.48e-08, + "ectopia": 1.48e-08, + "eleatic": 1.48e-08, + "electrocatalysis": 1.48e-08, + "emodin": 1.48e-08, + "emplace": 1.48e-08, + "envenom": 1.48e-08, + "epicontinental": 1.48e-08, + "errantry": 1.48e-08, + "euchromatin": 1.48e-08, + "euryhaline": 1.48e-08, + "excremental": 1.48e-08, + "executively": 1.48e-08, + "exemplarily": 1.48e-08, + "exenteration": 1.48e-08, + "exostosis": 1.48e-08, + "exotoxin": 1.48e-08, + "eyeblink": 1.48e-08, + "ferroalloy": 1.48e-08, + "fianchetto": 1.48e-08, + "filaria": 1.48e-08, + "flaker": 1.48e-08, + "forbore": 1.48e-08, + "fosterage": 1.48e-08, + "fragmental": 1.48e-08, + "furca": 1.48e-08, + "galantine": 1.48e-08, + "geminated": 1.48e-08, + "gilia": 1.48e-08, + "gippy": 1.48e-08, + "glis": 1.48e-08, + "goutte": 1.48e-08, + "gracelessly": 1.48e-08, + "gradable": 1.48e-08, + "grandiosely": 1.48e-08, + "guessable": 1.48e-08, + "hagiographer": 1.48e-08, + "haliaeetus": 1.48e-08, + "handclasp": 1.48e-08, + "harrovian": 1.48e-08, + "heartly": 1.48e-08, + "hecatomb": 1.48e-08, + "helenium": 1.48e-08, + "heliogabalus": 1.48e-08, + "hemolysin": 1.48e-08, + "hemopoietic": 1.48e-08, + "hepper": 1.48e-08, + "hornwort": 1.48e-08, + "houbara": 1.48e-08, + "houstonia": 1.48e-08, + "hydrobromic": 1.48e-08, + "hyllus": 1.48e-08, + "hypocritic": 1.48e-08, + "hypopharynx": 1.48e-08, + "immunogenetics": 1.48e-08, + "improvidently": 1.48e-08, + "inciter": 1.48e-08, + "inculpatory": 1.48e-08, + "infelicitous": 1.48e-08, + "ingenuously": 1.48e-08, + "interministerial": 1.48e-08, + "intoxicatingly": 1.48e-08, + "intranuclear": 1.48e-08, + "janiculum": 1.48e-08, + "jouster": 1.48e-08, + "kallah": 1.48e-08, + "kawika": 1.48e-08, + "keeshond": 1.48e-08, + "khamsin": 1.48e-08, + "kikki": 1.48e-08, + "kinkiness": 1.48e-08, + "ladyfish": 1.48e-08, + "laic": 1.48e-08, + "languorously": 1.48e-08, + "laund": 1.48e-08, + "ledum": 1.48e-08, + "lemniscate": 1.48e-08, + "lempira": 1.48e-08, + "lenca": 1.48e-08, + "liwan": 1.48e-08, + "lopsidedness": 1.48e-08, + "macaronic": 1.48e-08, + "macrocephalus": 1.48e-08, + "maculopapular": 1.48e-08, + "margravine": 1.48e-08, + "markka": 1.48e-08, + "megalosaurus": 1.48e-08, + "melanic": 1.48e-08, + "meriah": 1.48e-08, + "metachromatic": 1.48e-08, + "meteoritics": 1.48e-08, + "microdrive": 1.48e-08, + "midsentence": 1.48e-08, + "misbelief": 1.48e-08, + "monopodial": 1.48e-08, + "moralization": 1.48e-08, + "mouthless": 1.48e-08, + "mumbler": 1.48e-08, + "muridae": 1.48e-08, + "nagual": 1.48e-08, + "nambe": 1.48e-08, + "nautically": 1.48e-08, + "nekton": 1.48e-08, + "neotype": 1.48e-08, + "niblick": 1.48e-08, + "nival": 1.48e-08, + "nonpermanent": 1.48e-08, + "nonrestrictive": 1.48e-08, + "nonreturnable": 1.48e-08, + "nonstationary": 1.48e-08, + "noseless": 1.48e-08, + "nosepiece": 1.48e-08, + "nosology": 1.48e-08, + "notum": 1.48e-08, + "nunciature": 1.48e-08, + "ophthalmoscopy": 1.48e-08, + "oranger": 1.48e-08, + "orcinus": 1.48e-08, + "orgue": 1.48e-08, + "ornithischian": 1.48e-08, + "ossianic": 1.48e-08, + "osteochondritis": 1.48e-08, + "osteosynthesis": 1.48e-08, + "outguess": 1.48e-08, + "outstand": 1.48e-08, + "ovoviviparous": 1.48e-08, + "paleobotanical": 1.48e-08, + "paleoclimatic": 1.48e-08, + "palmyrene": 1.48e-08, + "papule": 1.48e-08, + "paravertebral": 1.48e-08, + "parsimoniously": 1.48e-08, + "peduncular": 1.48e-08, + "percipient": 1.48e-08, + "periphrasis": 1.48e-08, + "phasmid": 1.48e-08, + "philologically": 1.48e-08, + "phytotoxic": 1.48e-08, + "pipet": 1.48e-08, + "plagiocephaly": 1.48e-08, + "plantable": 1.48e-08, + "popolari": 1.48e-08, + "prad": 1.48e-08, + "preliterate": 1.48e-08, + "prepotent": 1.48e-08, + "procumbent": 1.48e-08, + "protraction": 1.48e-08, + "pteridium": 1.48e-08, + "pudenda": 1.48e-08, + "putrescent": 1.48e-08, + "pyrogen": 1.48e-08, + "ramanan": 1.48e-08, + "ramesside": 1.48e-08, + "rattrap": 1.48e-08, + "recreant": 1.48e-08, + "reinflate": 1.48e-08, + "relitigate": 1.48e-08, + "relock": 1.48e-08, + "reputably": 1.48e-08, + "rewash": 1.48e-08, + "riem": 1.48e-08, + "ringy": 1.48e-08, + "rubicund": 1.48e-08, + "rumbustious": 1.48e-08, + "saithe": 1.48e-08, + "sasine": 1.48e-08, + "saturator": 1.48e-08, + "sauterne": 1.48e-08, + "segmentally": 1.48e-08, + "semiweekly": 1.48e-08, + "sesamum": 1.48e-08, + "shoya": 1.48e-08, + "smatter": 1.48e-08, + "socinianism": 1.48e-08, + "somatics": 1.48e-08, + "sonorously": 1.48e-08, + "sovkhoz": 1.48e-08, + "speechlessness": 1.48e-08, + "sphenoidal": 1.48e-08, + "stid": 1.48e-08, + "stoloniferous": 1.48e-08, + "stomaching": 1.48e-08, + "stringybark": 1.48e-08, + "stubbled": 1.48e-08, + "sufficing": 1.48e-08, + "suffixation": 1.48e-08, + "supercilium": 1.48e-08, + "superfluously": 1.48e-08, + "supersensible": 1.48e-08, + "tabanidae": 1.48e-08, + "tachinid": 1.48e-08, + "tautomeric": 1.48e-08, + "teca": 1.48e-08, + "tercet": 1.48e-08, + "terrorizer": 1.48e-08, + "teruyuki": 1.48e-08, + "thalassotherapy": 1.48e-08, + "thetic": 1.48e-08, + "thingamabob": 1.48e-08, + "thorned": 1.48e-08, + "tolt": 1.48e-08, + "tompion": 1.48e-08, + "transorbital": 1.48e-08, + "traprock": 1.48e-08, + "trema": 1.48e-08, + "trink": 1.48e-08, + "triops": 1.48e-08, + "trochee": 1.48e-08, + "trophozoite": 1.48e-08, + "tuart": 1.48e-08, + "tunefully": 1.48e-08, + "turma": 1.48e-08, + "typification": 1.48e-08, + "ulex": 1.48e-08, + "unadaptable": 1.48e-08, + "uncarved": 1.48e-08, + "unconformable": 1.48e-08, + "uncontroversially": 1.48e-08, + "unenriched": 1.48e-08, + "unillustrated": 1.48e-08, + "unlogged": 1.48e-08, + "unmelted": 1.48e-08, + "unstrap": 1.48e-08, + "untanned": 1.48e-08, + "untap": 1.48e-08, + "unwonted": 1.48e-08, + "vacuolated": 1.48e-08, + "vagary": 1.48e-08, + "virtuousness": 1.48e-08, + "waiata": 1.48e-08, + "westernism": 1.48e-08, + "whitetip": 1.48e-08, + "whoremonger": 1.48e-08, + "wrang": 1.48e-08, + "yohimbe": 1.48e-08, + "abelia": 1.45e-08, + "acorus": 1.45e-08, + "adhesively": 1.45e-08, + "adsorptive": 1.45e-08, + "affectingly": 1.45e-08, + "akia": 1.45e-08, + "alkylate": 1.45e-08, + "amenability": 1.45e-08, + "amoebiasis": 1.45e-08, + "amurru": 1.45e-08, + "anaphylactoid": 1.45e-08, + "annamese": 1.45e-08, + "annulation": 1.45e-08, + "annunciate": 1.45e-08, + "anodize": 1.45e-08, + "antigenicity": 1.45e-08, + "apertural": 1.45e-08, + "apomictic": 1.45e-08, + "aport": 1.45e-08, + "appertain": 1.45e-08, + "archidamus": 1.45e-08, + "arrearage": 1.45e-08, + "artemisium": 1.45e-08, + "asafetida": 1.45e-08, + "asperges": 1.45e-08, + "auca": 1.45e-08, + "autarchy": 1.45e-08, + "baccharis": 1.45e-08, + "beauclerc": 1.45e-08, + "beautifier": 1.45e-08, + "becomingly": 1.45e-08, + "bedcover": 1.45e-08, + "bhikshu": 1.45e-08, + "bibliomania": 1.45e-08, + "bijouterie": 1.45e-08, + "bipyramidal": 1.45e-08, + "birse": 1.45e-08, + "bloodthirstiness": 1.45e-08, + "bolete": 1.45e-08, + "bolsheviki": 1.45e-08, + "bonapartism": 1.45e-08, + "bornite": 1.45e-08, + "bowwow": 1.45e-08, + "brandling": 1.45e-08, + "brender": 1.45e-08, + "broadloom": 1.45e-08, + "broche": 1.45e-08, + "brownness": 1.45e-08, + "bube": 1.45e-08, + "buchu": 1.45e-08, + "burette": 1.45e-08, + "burgoo": 1.45e-08, + "butea": 1.45e-08, + "byssal": 1.45e-08, + "calliphora": 1.45e-08, + "catadioptric": 1.45e-08, + "catechize": 1.45e-08, + "cavitary": 1.45e-08, + "cervicitis": 1.45e-08, + "chalcid": 1.45e-08, + "chartreux": 1.45e-08, + "chawan": 1.45e-08, + "chekist": 1.45e-08, + "chiefship": 1.45e-08, + "chlorobenzene": 1.45e-08, + "choky": 1.45e-08, + "clupea": 1.45e-08, + "compassing": 1.45e-08, + "compellent": 1.45e-08, + "complot": 1.45e-08, + "conjugative": 1.45e-08, + "conjunctively": 1.45e-08, + "conventionalist": 1.45e-08, + "corchorus": 1.45e-08, + "costliness": 1.45e-08, + "crocidolite": 1.45e-08, + "daimio": 1.45e-08, + "damagingly": 1.45e-08, + "dargo": 1.45e-08, + "daroga": 1.45e-08, + "derate": 1.45e-08, + "designedly": 1.45e-08, + "diaphysis": 1.45e-08, + "dieffenbachia": 1.45e-08, + "digitus": 1.45e-08, + "dipodomys": 1.45e-08, + "distortive": 1.45e-08, + "divisionism": 1.45e-08, + "dobbing": 1.45e-08, + "eczematous": 1.45e-08, + "endolymphatic": 1.45e-08, + "epimedium": 1.45e-08, + "esoterically": 1.45e-08, + "eurasianism": 1.45e-08, + "exigence": 1.45e-08, + "expatiate": 1.45e-08, + "extradural": 1.45e-08, + "falernian": 1.45e-08, + "faradaic": 1.45e-08, + "farinaceous": 1.45e-08, + "farmery": 1.45e-08, + "ferrochrome": 1.45e-08, + "fibromuscular": 1.45e-08, + "fizzer": 1.45e-08, + "flattener": 1.45e-08, + "forby": 1.45e-08, + "forepaw": 1.45e-08, + "frankpledge": 1.45e-08, + "frostily": 1.45e-08, + "fruiterer": 1.45e-08, + "galactoside": 1.45e-08, + "gaudete": 1.45e-08, + "glycosuria": 1.45e-08, + "goldbug": 1.45e-08, + "goosefoot": 1.45e-08, + "granatum": 1.45e-08, + "graved": 1.45e-08, + "gyroplane": 1.45e-08, + "headshake": 1.45e-08, + "heii": 1.45e-08, + "hemal": 1.45e-08, + "hematogenous": 1.45e-08, + "henotheism": 1.45e-08, + "heracleum": 1.45e-08, + "himation": 1.45e-08, + "humidify": 1.45e-08, + "hydrodynamical": 1.45e-08, + "hydropneumatic": 1.45e-08, + "hyperopic": 1.45e-08, + "hypervitaminosis": 1.45e-08, + "idomeneus": 1.45e-08, + "imaginate": 1.45e-08, + "inapposite": 1.45e-08, + "indisciplined": 1.45e-08, + "informatively": 1.45e-08, + "insatiate": 1.45e-08, + "intertie": 1.45e-08, + "irrespectively": 1.45e-08, + "isobutylene": 1.45e-08, + "isoetes": 1.45e-08, + "isothermally": 1.45e-08, + "itali": 1.45e-08, + "jarosite": 1.45e-08, + "jewy": 1.45e-08, + "justiciability": 1.45e-08, + "kassite": 1.45e-08, + "kayastha": 1.45e-08, + "khanjar": 1.45e-08, + "klingsor": 1.45e-08, + "knez": 1.45e-08, + "knowability": 1.45e-08, + "labyrinthitis": 1.45e-08, + "laceless": 1.45e-08, + "lacemaking": 1.45e-08, + "lampas": 1.45e-08, + "limewash": 1.45e-08, + "loadstone": 1.45e-08, + "magnetostriction": 1.45e-08, + "malalignment": 1.45e-08, + "mariology": 1.45e-08, + "masulipatam": 1.45e-08, + "metaline": 1.45e-08, + "microbalance": 1.45e-08, + "mintaka": 1.45e-08, + "mistassini": 1.45e-08, + "mitotically": 1.45e-08, + "monogamously": 1.45e-08, + "monoglot": 1.45e-08, + "monoline": 1.45e-08, + "moraceae": 1.45e-08, + "mordent": 1.45e-08, + "moresque": 1.45e-08, + "mucronate": 1.45e-08, + "mugil": 1.45e-08, + "multinuclear": 1.45e-08, + "mutase": 1.45e-08, + "nagana": 1.45e-08, + "nailhead": 1.45e-08, + "navarrese": 1.45e-08, + "negundo": 1.45e-08, + "nelumbo": 1.45e-08, + "neuritic": 1.45e-08, + "nonbusiness": 1.45e-08, + "nonmalignant": 1.45e-08, + "nonmetropolitan": 1.45e-08, + "objectiveness": 1.45e-08, + "officiator": 1.45e-08, + "oligodendroglioma": 1.45e-08, + "operatory": 1.45e-08, + "orderable": 1.45e-08, + "oronoco": 1.45e-08, + "owly": 1.45e-08, + "padder": 1.45e-08, + "pannus": 1.45e-08, + "papaverine": 1.45e-08, + "parcher": 1.45e-08, + "parotitis": 1.45e-08, + "parthenope": 1.45e-08, + "pasquino": 1.45e-08, + "paternalistically": 1.45e-08, + "pecky": 1.45e-08, + "pedestrianism": 1.45e-08, + "peregrination": 1.45e-08, + "perfecti": 1.45e-08, + "periwig": 1.45e-08, + "petrea": 1.45e-08, + "phycoerythrin": 1.45e-08, + "pinchback": 1.45e-08, + "pinhook": 1.45e-08, + "planetesimal": 1.45e-08, + "pleonastic": 1.45e-08, + "plethysmography": 1.45e-08, + "polemarch": 1.45e-08, + "ponderomotive": 1.45e-08, + "pretreat": 1.45e-08, + "probabilism": 1.45e-08, + "projectable": 1.45e-08, + "pronotal": 1.45e-08, + "prosopography": 1.45e-08, + "psylla": 1.45e-08, + "pterocarpus": 1.45e-08, + "quaternionic": 1.45e-08, + "quintette": 1.45e-08, + "ragstone": 1.45e-08, + "rangle": 1.45e-08, + "raphanus": 1.45e-08, + "raploch": 1.45e-08, + "reconceive": 1.45e-08, + "refight": 1.45e-08, + "refix": 1.45e-08, + "remould": 1.45e-08, + "retama": 1.45e-08, + "rhodophyta": 1.45e-08, + "rifi": 1.45e-08, + "rimland": 1.45e-08, + "ristori": 1.45e-08, + "roistering": 1.45e-08, + "romanize": 1.45e-08, + "rondelle": 1.45e-08, + "roundedness": 1.45e-08, + "ruritanian": 1.45e-08, + "rustiness": 1.45e-08, + "ryal": 1.45e-08, + "salination": 1.45e-08, + "sapodilla": 1.45e-08, + "schottische": 1.45e-08, + "scolytus": 1.45e-08, + "scriptor": 1.45e-08, + "scritch": 1.45e-08, + "scrod": 1.45e-08, + "secesh": 1.45e-08, + "sedilia": 1.45e-08, + "semimetal": 1.45e-08, + "semitropical": 1.45e-08, + "servient": 1.45e-08, + "servilely": 1.45e-08, + "sexological": 1.45e-08, + "shirvan": 1.45e-08, + "sinto": 1.45e-08, + "slippered": 1.45e-08, + "slothfulness": 1.45e-08, + "smirch": 1.45e-08, + "sned": 1.45e-08, + "sortation": 1.45e-08, + "sovietism": 1.45e-08, + "springhead": 1.45e-08, + "stableboy": 1.45e-08, + "starky": 1.45e-08, + "sterculia": 1.45e-08, + "stomacher": 1.45e-08, + "structureless": 1.45e-08, + "submontane": 1.45e-08, + "substage": 1.45e-08, + "sulfonation": 1.45e-08, + "supernature": 1.45e-08, + "suto": 1.45e-08, + "sylloge": 1.45e-08, + "talcher": 1.45e-08, + "tallyho": 1.45e-08, + "tankful": 1.45e-08, + "tarea": 1.45e-08, + "tarkhan": 1.45e-08, + "taunter": 1.45e-08, + "tentation": 1.45e-08, + "terrene": 1.45e-08, + "thecal": 1.45e-08, + "thiobacillus": 1.45e-08, + "thomomys": 1.45e-08, + "thundershower": 1.45e-08, + "timpanist": 1.45e-08, + "tomkin": 1.45e-08, + "toxigenic": 1.45e-08, + "trampler": 1.45e-08, + "tridacna": 1.45e-08, + "trollops": 1.45e-08, + "trombe": 1.45e-08, + "tubifex": 1.45e-08, + "tunneler": 1.45e-08, + "turnable": 1.45e-08, + "ulua": 1.45e-08, + "umbelliferae": 1.45e-08, + "unchastity": 1.45e-08, + "uncommented": 1.45e-08, + "uncomplainingly": 1.45e-08, + "undebatable": 1.45e-08, + "underfill": 1.45e-08, + "underripe": 1.45e-08, + "unfavored": 1.45e-08, + "unground": 1.45e-08, + "unicyclist": 1.45e-08, + "uniformitarian": 1.45e-08, + "unintrusive": 1.45e-08, + "uniparental": 1.45e-08, + "unmold": 1.45e-08, + "unquenched": 1.45e-08, + "unregarded": 1.45e-08, + "unretired": 1.45e-08, + "unscaled": 1.45e-08, + "unsnap": 1.45e-08, + "unsocialized": 1.45e-08, + "untampered": 1.45e-08, + "untilled": 1.45e-08, + "unuseful": 1.45e-08, + "vagas": 1.45e-08, + "vext": 1.45e-08, + "vilela": 1.45e-08, + "villainously": 1.45e-08, + "volost": 1.45e-08, + "wardenship": 1.45e-08, + "warrener": 1.45e-08, + "whiffy": 1.45e-08, + "wickiup": 1.45e-08, + "woundwort": 1.45e-08, + "xebec": 1.45e-08, + "zabaglione": 1.45e-08, + "zaffar": 1.45e-08, + "zygoma": 1.45e-08, + "acastus": 1.41e-08, + "acidotic": 1.41e-08, + "adaptative": 1.41e-08, + "afflatus": 1.41e-08, + "agitational": 1.41e-08, + "ajuga": 1.41e-08, + "alabaman": 1.41e-08, + "alkermes": 1.41e-08, + "allness": 1.41e-08, + "alme": 1.41e-08, + "amenorrhoea": 1.41e-08, + "anchoress": 1.41e-08, + "anglicize": 1.41e-08, + "anguis": 1.41e-08, + "antituberculosis": 1.41e-08, + "apartness": 1.41e-08, + "apodictic": 1.41e-08, + "arean": 1.41e-08, + "areolate": 1.41e-08, + "argyria": 1.41e-08, + "armeria": 1.41e-08, + "aryanization": 1.41e-08, + "assurer": 1.41e-08, + "aulic": 1.41e-08, + "awat": 1.41e-08, + "bacula": 1.41e-08, + "balagan": 1.41e-08, + "baseballer": 1.41e-08, + "bathetic": 1.41e-08, + "beroe": 1.41e-08, + "biconcave": 1.41e-08, + "blackey": 1.41e-08, + "boilerhouse": 1.41e-08, + "borromean": 1.41e-08, + "boustrophedon": 1.41e-08, + "brakeless": 1.41e-08, + "breechblock": 1.41e-08, + "brutishness": 1.41e-08, + "bumpiness": 1.41e-08, + "buret": 1.41e-08, + "burgrave": 1.41e-08, + "callose": 1.41e-08, + "candlebox": 1.41e-08, + "carcharhinus": 1.41e-08, + "carene": 1.41e-08, + "carousal": 1.41e-08, + "cenchrus": 1.41e-08, + "chanco": 1.41e-08, + "chironomid": 1.41e-08, + "chuter": 1.41e-08, + "cicer": 1.41e-08, + "ciconia": 1.41e-08, + "columbiad": 1.41e-08, + "comestible": 1.41e-08, + "conative": 1.41e-08, + "conchal": 1.41e-08, + "condoling": 1.41e-08, + "confessionalism": 1.41e-08, + "conserver": 1.41e-08, + "coolen": 1.41e-08, + "copaiba": 1.41e-08, + "corporeally": 1.41e-08, + "corrugator": 1.41e-08, + "cotty": 1.41e-08, + "counterpointed": 1.41e-08, + "counterprotest": 1.41e-08, + "craftswoman": 1.41e-08, + "cuon": 1.41e-08, + "cyclopentane": 1.41e-08, + "cyclopia": 1.41e-08, + "cypraea": 1.41e-08, + "daintiness": 1.41e-08, + "debride": 1.41e-08, + "demit": 1.41e-08, + "desolating": 1.41e-08, + "destrier": 1.41e-08, + "desuetude": 1.41e-08, + "docetism": 1.41e-08, + "drinkability": 1.41e-08, + "dubba": 1.41e-08, + "durgan": 1.41e-08, + "ectopy": 1.41e-08, + "elmy": 1.41e-08, + "enlightener": 1.41e-08, + "erinaceus": 1.41e-08, + "escaper": 1.41e-08, + "ethicality": 1.41e-08, + "feathertop": 1.41e-08, + "fettling": 1.41e-08, + "finically": 1.41e-08, + "flocculate": 1.41e-08, + "fogbound": 1.41e-08, + "forceable": 1.41e-08, + "foresty": 1.41e-08, + "fosh": 1.41e-08, + "fourierism": 1.41e-08, + "foxwood": 1.41e-08, + "freck": 1.41e-08, + "funiculus": 1.41e-08, + "gallimaufry": 1.41e-08, + "ganymedes": 1.41e-08, + "gastronomically": 1.41e-08, + "givenness": 1.41e-08, + "gizz": 1.41e-08, + "glauconite": 1.41e-08, + "gnomonic": 1.41e-08, + "godling": 1.41e-08, + "goosander": 1.41e-08, + "gorgosaurus": 1.41e-08, + "graveling": 1.41e-08, + "grebo": 1.41e-08, + "groundmass": 1.41e-08, + "gustus": 1.41e-08, + "headachy": 1.41e-08, + "heaf": 1.41e-08, + "heavyhanded": 1.41e-08, + "hebraist": 1.41e-08, + "heinousness": 1.41e-08, + "herem": 1.41e-08, + "hoick": 1.41e-08, + "hurtfully": 1.41e-08, + "illogicality": 1.41e-08, + "indefiniteness": 1.41e-08, + "ingomar": 1.41e-08, + "inspectional": 1.41e-08, + "integrality": 1.41e-08, + "intercommunion": 1.41e-08, + "intermuscular": 1.41e-08, + "internodal": 1.41e-08, + "ironer": 1.41e-08, + "isocyanide": 1.41e-08, + "isomorphous": 1.41e-08, + "izar": 1.41e-08, + "jelutong": 1.41e-08, + "jetton": 1.41e-08, + "kafta": 1.41e-08, + "kagu": 1.41e-08, + "keawe": 1.41e-08, + "kingu": 1.41e-08, + "kutcha": 1.41e-08, + "kuvera": 1.41e-08, + "labra": 1.41e-08, + "landlessness": 1.41e-08, + "lansquenet": 1.41e-08, + "leadout": 1.41e-08, + "lemnian": 1.41e-08, + "lethargically": 1.41e-08, + "lochia": 1.41e-08, + "logogram": 1.41e-08, + "lostness": 1.41e-08, + "lupis": 1.41e-08, + "lynceus": 1.41e-08, + "mabi": 1.41e-08, + "maigre": 1.41e-08, + "malpais": 1.41e-08, + "mappy": 1.41e-08, + "mastoiditis": 1.41e-08, + "mayda": 1.41e-08, + "mazuma": 1.41e-08, + "mediolateral": 1.41e-08, + "meline": 1.41e-08, + "merluccius": 1.41e-08, + "metic": 1.41e-08, + "microcephalic": 1.41e-08, + "microphonic": 1.41e-08, + "millimolar": 1.41e-08, + "milvus": 1.41e-08, + "minning": 1.41e-08, + "monadelphous": 1.41e-08, + "mongolic": 1.41e-08, + "monitorial": 1.41e-08, + "monosyllable": 1.41e-08, + "morphemic": 1.41e-08, + "morpholine": 1.41e-08, + "mossed": 1.41e-08, + "moter": 1.41e-08, + "mouly": 1.41e-08, + "multiplet": 1.41e-08, + "muscidae": 1.41e-08, + "myristica": 1.41e-08, + "nabla": 1.41e-08, + "neckpiece": 1.41e-08, + "neopaganism": 1.41e-08, + "nitrophenol": 1.41e-08, + "nongenetic": 1.41e-08, + "northeastwards": 1.41e-08, + "nuggety": 1.41e-08, + "oligochaete": 1.41e-08, + "orach": 1.41e-08, + "orderer": 1.41e-08, + "overgenerous": 1.41e-08, + "pancreatectomy": 1.41e-08, + "passado": 1.41e-08, + "pavy": 1.41e-08, + "penally": 1.41e-08, + "pendular": 1.41e-08, + "periclean": 1.41e-08, + "persiflage": 1.41e-08, + "petrifaction": 1.41e-08, + "petrologic": 1.41e-08, + "phosphocreatine": 1.41e-08, + "picaro": 1.41e-08, + "picturization": 1.41e-08, + "pilea": 1.41e-08, + "pityingly": 1.41e-08, + "planetology": 1.41e-08, + "policial": 1.41e-08, + "pontification": 1.41e-08, + "presider": 1.41e-08, + "promisor": 1.41e-08, + "propulsor": 1.41e-08, + "proudness": 1.41e-08, + "psalterium": 1.41e-08, + "pseudococcus": 1.41e-08, + "pyramides": 1.41e-08, + "quet": 1.41e-08, + "readaptation": 1.41e-08, + "rectocele": 1.41e-08, + "rectorial": 1.41e-08, + "refire": 1.41e-08, + "refractoriness": 1.41e-08, + "resalable": 1.41e-08, + "resettable": 1.41e-08, + "reshipment": 1.41e-08, + "restrictionist": 1.41e-08, + "resurrectionist": 1.41e-08, + "riflery": 1.41e-08, + "roister": 1.41e-08, + "roit": 1.41e-08, + "roughie": 1.41e-08, + "rufescent": 1.41e-08, + "salmonberry": 1.41e-08, + "sanballat": 1.41e-08, + "sanidine": 1.41e-08, + "sarcophaga": 1.41e-08, + "scaglia": 1.41e-08, + "scapegrace": 1.41e-08, + "scenary": 1.41e-08, + "scopic": 1.41e-08, + "secretor": 1.41e-08, + "seeable": 1.41e-08, + "selli": 1.41e-08, + "sensoria": 1.41e-08, + "sentimentalize": 1.41e-08, + "sheeter": 1.41e-08, + "shram": 1.41e-08, + "simia": 1.41e-08, + "sissification": 1.41e-08, + "skillfulness": 1.41e-08, + "skitty": 1.41e-08, + "soapsuds": 1.41e-08, + "sonchus": 1.41e-08, + "sparker": 1.41e-08, + "spathulate": 1.41e-08, + "spellwork": 1.41e-08, + "spet": 1.41e-08, + "spinothalamic": 1.41e-08, + "sprag": 1.41e-08, + "spurius": 1.41e-08, + "steatorrhea": 1.41e-08, + "stenotype": 1.41e-08, + "strapwork": 1.41e-08, + "streek": 1.41e-08, + "submucous": 1.41e-08, + "subulate": 1.41e-08, + "sugamo": 1.41e-08, + "supercycle": 1.41e-08, + "supersmart": 1.41e-08, + "surfy": 1.41e-08, + "svan": 1.41e-08, + "syncopate": 1.41e-08, + "syneresis": 1.41e-08, + "tabid": 1.41e-08, + "tanan": 1.41e-08, + "telopea": 1.41e-08, + "tephrosia": 1.41e-08, + "thaumaturge": 1.41e-08, + "thickish": 1.41e-08, + "thouse": 1.41e-08, + "tieback": 1.41e-08, + "titoist": 1.41e-08, + "triatoma": 1.41e-08, + "trigone": 1.41e-08, + "triliteral": 1.41e-08, + "troper": 1.41e-08, + "tundish": 1.41e-08, + "tungusic": 1.41e-08, + "tupaia": 1.41e-08, + "turbellaria": 1.41e-08, + "turion": 1.41e-08, + "turkism": 1.41e-08, + "ultrafilter": 1.41e-08, + "unappropriated": 1.41e-08, + "unclasped": 1.41e-08, + "undatable": 1.41e-08, + "ungloved": 1.41e-08, + "unhewn": 1.41e-08, + "unsalable": 1.41e-08, + "unsearched": 1.41e-08, + "unsurfaced": 1.41e-08, + "untwisting": 1.41e-08, + "urman": 1.41e-08, + "voluptuary": 1.41e-08, + "vulcanite": 1.41e-08, + "wany": 1.41e-08, + "wedgy": 1.41e-08, + "whirley": 1.41e-08, + "whitefoot": 1.41e-08, + "wonderingly": 1.41e-08, + "zosterops": 1.41e-08, + "zuza": 1.41e-08, + "acaricide": 1.38e-08, + "adamite": 1.38e-08, + "adipocere": 1.38e-08, + "afebrile": 1.38e-08, + "aftergood": 1.38e-08, + "agria": 1.38e-08, + "agrin": 1.38e-08, + "alocasia": 1.38e-08, + "alphabetization": 1.38e-08, + "ambarella": 1.38e-08, + "ambulacral": 1.38e-08, + "analysand": 1.38e-08, + "anathematize": 1.38e-08, + "angiopathy": 1.38e-08, + "anglicism": 1.38e-08, + "aniconic": 1.38e-08, + "anorthite": 1.38e-08, + "appose": 1.38e-08, + "approximatively": 1.38e-08, + "arara": 1.38e-08, + "arawakan": 1.38e-08, + "armonica": 1.38e-08, + "arrau": 1.38e-08, + "arriver": 1.38e-08, + "asepsis": 1.38e-08, + "atheromatous": 1.38e-08, + "aureola": 1.38e-08, + "baho": 1.38e-08, + "bajocian": 1.38e-08, + "balkar": 1.38e-08, + "bargainer": 1.38e-08, + "barsac": 1.38e-08, + "barytes": 1.38e-08, + "batcher": 1.38e-08, + "becloud": 1.38e-08, + "belar": 1.38e-08, + "belemnite": 1.38e-08, + "bibulus": 1.38e-08, + "bissextile": 1.38e-08, + "blacklegs": 1.38e-08, + "blady": 1.38e-08, + "blamer": 1.38e-08, + "blesbok": 1.38e-08, + "bloodworm": 1.38e-08, + "blunderer": 1.38e-08, + "blup": 1.38e-08, + "boder": 1.38e-08, + "bolson": 1.38e-08, + "botryoidal": 1.38e-08, + "brilliantine": 1.38e-08, + "brolga": 1.38e-08, + "broodiness": 1.38e-08, + "bugloss": 1.38e-08, + "bukh": 1.38e-08, + "capricornus": 1.38e-08, + "carbonero": 1.38e-08, + "carisa": 1.38e-08, + "catamite": 1.38e-08, + "celtiberian": 1.38e-08, + "cerebration": 1.38e-08, + "chalazion": 1.38e-08, + "challengeable": 1.38e-08, + "challengingly": 1.38e-08, + "cheder": 1.38e-08, + "cherty": 1.38e-08, + "chevaline": 1.38e-08, + "chorine": 1.38e-08, + "cincinnatian": 1.38e-08, + "cive": 1.38e-08, + "clinometer": 1.38e-08, + "cockaigne": 1.38e-08, + "collineation": 1.38e-08, + "comedo": 1.38e-08, + "compeer": 1.38e-08, + "conceivability": 1.38e-08, + "conscionable": 1.38e-08, + "contumacy": 1.38e-08, + "copr": 1.38e-08, + "coproducer": 1.38e-08, + "cortinarius": 1.38e-08, + "corymb": 1.38e-08, + "cranage": 1.38e-08, + "cristobalite": 1.38e-08, + "crusie": 1.38e-08, + "culturable": 1.38e-08, + "cynocephalus": 1.38e-08, + "defectiveness": 1.38e-08, + "depuration": 1.38e-08, + "detachably": 1.38e-08, + "detectible": 1.38e-08, + "deworm": 1.38e-08, + "dhanvantari": 1.38e-08, + "dialyzer": 1.38e-08, + "diammonium": 1.38e-08, + "diaster": 1.38e-08, + "diluvial": 1.38e-08, + "direful": 1.38e-08, + "disparately": 1.38e-08, + "dobbed": 1.38e-08, + "dracunculus": 1.38e-08, + "drawee": 1.38e-08, + "drumheads": 1.38e-08, + "duodecimo": 1.38e-08, + "ectropion": 1.38e-08, + "elative": 1.38e-08, + "electrotechnology": 1.38e-08, + "emberiza": 1.38e-08, + "emulous": 1.38e-08, + "endemicity": 1.38e-08, + "endomorph": 1.38e-08, + "enshroud": 1.38e-08, + "entropion": 1.38e-08, + "epiglottitis": 1.38e-08, + "equidistantly": 1.38e-08, + "erumpent": 1.38e-08, + "exchangeability": 1.38e-08, + "fascicule": 1.38e-08, + "figurate": 1.38e-08, + "flexile": 1.38e-08, + "flirtatiousness": 1.38e-08, + "fole": 1.38e-08, + "fragmentarily": 1.38e-08, + "francolin": 1.38e-08, + "frequentative": 1.38e-08, + "frigidly": 1.38e-08, + "furnisher": 1.38e-08, + "galp": 1.38e-08, + "garganey": 1.38e-08, + "glitnir": 1.38e-08, + "glossopteris": 1.38e-08, + "gorlois": 1.38e-08, + "gradational": 1.38e-08, + "grigri": 1.38e-08, + "guaiacum": 1.38e-08, + "gunshop": 1.38e-08, + "handsel": 1.38e-08, + "hapten": 1.38e-08, + "heavenwards": 1.38e-08, + "heedful": 1.38e-08, + "hemen": 1.38e-08, + "hemicycle": 1.38e-08, + "heteronomous": 1.38e-08, + "historics": 1.38e-08, + "hogfish": 1.38e-08, + "homelander": 1.38e-08, + "homograph": 1.38e-08, + "hoosegow": 1.38e-08, + "horologist": 1.38e-08, + "hospitium": 1.38e-08, + "hybla": 1.38e-08, + "hydrazide": 1.38e-08, + "impar": 1.38e-08, + "inequal": 1.38e-08, + "inharmonic": 1.38e-08, + "insurmountably": 1.38e-08, + "intercommunity": 1.38e-08, + "interdependently": 1.38e-08, + "interlobular": 1.38e-08, + "iphis": 1.38e-08, + "ironmaking": 1.38e-08, + "ironworking": 1.38e-08, + "ithiel": 1.38e-08, + "joggle": 1.38e-08, + "jumpiness": 1.38e-08, + "jurisconsult": 1.38e-08, + "kanoon": 1.38e-08, + "kilocalorie": 1.38e-08, + "kmet": 1.38e-08, + "komondor": 1.38e-08, + "konak": 1.38e-08, + "latro": 1.38e-08, + "laudian": 1.38e-08, + "leucotomy": 1.38e-08, + "lexicographically": 1.38e-08, + "licenser": 1.38e-08, + "lichenoid": 1.38e-08, + "lightful": 1.38e-08, + "limy": 1.38e-08, + "lithologic": 1.38e-08, + "logorrhea": 1.38e-08, + "louisianian": 1.38e-08, + "lues": 1.38e-08, + "lunkhead": 1.38e-08, + "macaco": 1.38e-08, + "maghribi": 1.38e-08, + "malacology": 1.38e-08, + "maldistribution": 1.38e-08, + "manobo": 1.38e-08, + "maqui": 1.38e-08, + "mastopexy": 1.38e-08, + "megarian": 1.38e-08, + "megrim": 1.38e-08, + "mentalis": 1.38e-08, + "mercilessness": 1.38e-08, + "merlon": 1.38e-08, + "mewl": 1.38e-08, + "micromechanics": 1.38e-08, + "microphotography": 1.38e-08, + "mirthlessly": 1.38e-08, + "misdeal": 1.38e-08, + "moneyer": 1.38e-08, + "moriori": 1.38e-08, + "mudar": 1.38e-08, + "mulligatawny": 1.38e-08, + "munia": 1.38e-08, + "mustachio": 1.38e-08, + "mustelidae": 1.38e-08, + "mutualization": 1.38e-08, + "needlefish": 1.38e-08, + "nonideal": 1.38e-08, + "nonofficial": 1.38e-08, + "nonoverlapping": 1.38e-08, + "nonsynonymous": 1.38e-08, + "obstinance": 1.38e-08, + "occipitalis": 1.38e-08, + "odometry": 1.38e-08, + "odontoid": 1.38e-08, + "oord": 1.38e-08, + "ornamentally": 1.38e-08, + "overborne": 1.38e-08, + "overstimulate": 1.38e-08, + "painfulness": 1.38e-08, + "palladia": 1.38e-08, + "parallelly": 1.38e-08, + "paratuberculosis": 1.38e-08, + "passeriformes": 1.38e-08, + "pavis": 1.38e-08, + "phosphene": 1.38e-08, + "phyllotaxis": 1.38e-08, + "pibroch": 1.38e-08, + "pignut": 1.38e-08, + "piscatorial": 1.38e-08, + "placation": 1.38e-08, + "placeable": 1.38e-08, + "platysma": 1.38e-08, + "poleaxe": 1.38e-08, + "polypoid": 1.38e-08, + "poria": 1.38e-08, + "porphyrion": 1.38e-08, + "potoo": 1.38e-08, + "precautious": 1.38e-08, + "predecease": 1.38e-08, + "prexy": 1.38e-08, + "prolificacy": 1.38e-08, + "promotive": 1.38e-08, + "protoceratops": 1.38e-08, + "pseudobulbar": 1.38e-08, + "purger": 1.38e-08, + "quaters": 1.38e-08, + "radiolocation": 1.38e-08, + "radiophone": 1.38e-08, + "reconstructor": 1.38e-08, + "reginal": 1.38e-08, + "rememberer": 1.38e-08, + "removability": 1.38e-08, + "rhyton": 1.38e-08, + "riccia": 1.38e-08, + "rinde": 1.38e-08, + "roarer": 1.38e-08, + "roed": 1.38e-08, + "rosebay": 1.38e-08, + "sahidic": 1.38e-08, + "sainfoin": 1.38e-08, + "scomber": 1.38e-08, + "seatwork": 1.38e-08, + "seker": 1.38e-08, + "servomechanism": 1.38e-08, + "shoptalk": 1.38e-08, + "siciliana": 1.38e-08, + "sidehill": 1.38e-08, + "sizar": 1.38e-08, + "skokomish": 1.38e-08, + "sleave": 1.38e-08, + "solidness": 1.38e-08, + "soullessness": 1.38e-08, + "sphenopalatine": 1.38e-08, + "sporotrichosis": 1.38e-08, + "steeplechasing": 1.38e-08, + "storminess": 1.38e-08, + "strapper": 1.38e-08, + "studbook": 1.38e-08, + "stylobate": 1.38e-08, + "subacromial": 1.38e-08, + "subvariety": 1.38e-08, + "successfulness": 1.38e-08, + "sweetleaf": 1.38e-08, + "synastry": 1.38e-08, + "synclinal": 1.38e-08, + "syrphidae": 1.38e-08, + "tannaim": 1.38e-08, + "tastefulness": 1.38e-08, + "teuk": 1.38e-08, + "thirstily": 1.38e-08, + "thurm": 1.38e-08, + "timbal": 1.38e-08, + "timeously": 1.38e-08, + "toona": 1.38e-08, + "toper": 1.38e-08, + "toytown": 1.38e-08, + "trametes": 1.38e-08, + "transamination": 1.38e-08, + "translater": 1.38e-08, + "trepan": 1.38e-08, + "triarii": 1.38e-08, + "troublous": 1.38e-08, + "tryptase": 1.38e-08, + "trysail": 1.38e-08, + "tucket": 1.38e-08, + "tunk": 1.38e-08, + "ultramontanism": 1.38e-08, + "unbreachable": 1.38e-08, + "uncomfort": 1.38e-08, + "uncurable": 1.38e-08, + "undeleted": 1.38e-08, + "underrun": 1.38e-08, + "undy": 1.38e-08, + "unfledged": 1.38e-08, + "unipotent": 1.38e-08, + "unnaturalness": 1.38e-08, + "unpure": 1.38e-08, + "unroadworthy": 1.38e-08, + "upraise": 1.38e-08, + "uxorious": 1.38e-08, + "valuate": 1.38e-08, + "valuator": 1.38e-08, + "variegate": 1.38e-08, + "vivaciously": 1.38e-08, + "waag": 1.38e-08, + "watersmeet": 1.38e-08, + "wheneer": 1.38e-08, + "winchman": 1.38e-08, + "wriggler": 1.38e-08, + "xanthate": 1.38e-08, + "zechstein": 1.38e-08, + "adaptiveness": 1.35e-08, + "agamic": 1.35e-08, + "alkalic": 1.35e-08, + "alsatia": 1.35e-08, + "ambry": 1.35e-08, + "andalusite": 1.35e-08, + "annihilationism": 1.35e-08, + "anthropomorphization": 1.35e-08, + "apish": 1.35e-08, + "apocalyptical": 1.35e-08, + "appendice": 1.35e-08, + "apprehensiveness": 1.35e-08, + "aquarii": 1.35e-08, + "aquo": 1.35e-08, + "arbalest": 1.35e-08, + "arboreta": 1.35e-08, + "arizonian": 1.35e-08, + "asphaltene": 1.35e-08, + "astacus": 1.35e-08, + "astrograph": 1.35e-08, + "atonia": 1.35e-08, + "auricularia": 1.35e-08, + "backspacer": 1.35e-08, + "bedsore": 1.35e-08, + "beothuk": 1.35e-08, + "bernicia": 1.35e-08, + "beseen": 1.35e-08, + "biguanide": 1.35e-08, + "birational": 1.35e-08, + "blamelessly": 1.35e-08, + "bombastically": 1.35e-08, + "botherer": 1.35e-08, + "boyard": 1.35e-08, + "brattice": 1.35e-08, + "breathiness": 1.35e-08, + "brigalow": 1.35e-08, + "bronchoscopic": 1.35e-08, + "bryophyta": 1.35e-08, + "burred": 1.35e-08, + "buttonless": 1.35e-08, + "cadaverine": 1.35e-08, + "calcic": 1.35e-08, + "caltha": 1.35e-08, + "cambarus": 1.35e-08, + "cancri": 1.35e-08, + "capturer": 1.35e-08, + "carbonize": 1.35e-08, + "caroler": 1.35e-08, + "celebrator": 1.35e-08, + "chainer": 1.35e-08, + "chiliad": 1.35e-08, + "choiceless": 1.35e-08, + "chylomicron": 1.35e-08, + "citrullus": 1.35e-08, + "cliona": 1.35e-08, + "continuative": 1.35e-08, + "cordelier": 1.35e-08, + "corrosiveness": 1.35e-08, + "corrosivity": 1.35e-08, + "cosse": 1.35e-08, + "counterweighted": 1.35e-08, + "cupula": 1.35e-08, + "cuspidal": 1.35e-08, + "cystadenoma": 1.35e-08, + "cystocele": 1.35e-08, + "czardas": 1.35e-08, + "definiens": 1.35e-08, + "desaturate": 1.35e-08, + "deuteronomist": 1.35e-08, + "devoutness": 1.35e-08, + "diablerie": 1.35e-08, + "diaspore": 1.35e-08, + "dispirit": 1.35e-08, + "distorter": 1.35e-08, + "ditcher": 1.35e-08, + "dodecagon": 1.35e-08, + "dogbane": 1.35e-08, + "dotchin": 1.35e-08, + "drummy": 1.35e-08, + "duumvirate": 1.35e-08, + "echinoid": 1.35e-08, + "ejaculator": 1.35e-08, + "elocutionist": 1.35e-08, + "embryoid": 1.35e-08, + "endwise": 1.35e-08, + "ensconce": 1.35e-08, + "enthrallment": 1.35e-08, + "epinephelus": 1.35e-08, + "erotism": 1.35e-08, + "everydayness": 1.35e-08, + "exegeses": 1.35e-08, + "expectorate": 1.35e-08, + "expensiveness": 1.35e-08, + "expertness": 1.35e-08, + "explantation": 1.35e-08, + "extraembryonic": 1.35e-08, + "fantast": 1.35e-08, + "fascicular": 1.35e-08, + "fathometer": 1.35e-08, + "favosites": 1.35e-08, + "fibrillose": 1.35e-08, + "fideism": 1.35e-08, + "filmland": 1.35e-08, + "fingall": 1.35e-08, + "fishiness": 1.35e-08, + "footsore": 1.35e-08, + "foresaid": 1.35e-08, + "freemasonic": 1.35e-08, + "gelsemium": 1.35e-08, + "gemmae": 1.35e-08, + "girondin": 1.35e-08, + "glassie": 1.35e-08, + "glycerate": 1.35e-08, + "glyphic": 1.35e-08, + "gobbing": 1.35e-08, + "granulator": 1.35e-08, + "graupel": 1.35e-08, + "haematoxylin": 1.35e-08, + "haidee": 1.35e-08, + "hazer": 1.35e-08, + "headnote": 1.35e-08, + "hectograph": 1.35e-08, + "hemangiosarcoma": 1.35e-08, + "heronry": 1.35e-08, + "herrenvolk": 1.35e-08, + "heterodera": 1.35e-08, + "heterotic": 1.35e-08, + "hudibras": 1.35e-08, + "hure": 1.35e-08, + "hydria": 1.35e-08, + "hyperemic": 1.35e-08, + "hyperextend": 1.35e-08, + "hypoid": 1.35e-08, + "icho": 1.35e-08, + "iconoscope": 1.35e-08, + "illative": 1.35e-08, + "illegibility": 1.35e-08, + "incoherency": 1.35e-08, + "ineffability": 1.35e-08, + "injuriously": 1.35e-08, + "inkosi": 1.35e-08, + "interdictor": 1.35e-08, + "intrapsychic": 1.35e-08, + "inversive": 1.35e-08, + "irresolution": 1.35e-08, + "ixodidae": 1.35e-08, + "jackfish": 1.35e-08, + "jugglery": 1.35e-08, + "karroo": 1.35e-08, + "kemple": 1.35e-08, + "kokum": 1.35e-08, + "kynurenic": 1.35e-08, + "lactational": 1.35e-08, + "lagarto": 1.35e-08, + "lampwick": 1.35e-08, + "leakiness": 1.35e-08, + "lessness": 1.35e-08, + "lineated": 1.35e-08, + "linty": 1.35e-08, + "livor": 1.35e-08, + "luminant": 1.35e-08, + "lysenkoism": 1.35e-08, + "macrocytic": 1.35e-08, + "magnetizable": 1.35e-08, + "manganite": 1.35e-08, + "manufacturable": 1.35e-08, + "mariamman": 1.35e-08, + "masculinize": 1.35e-08, + "meliaceae": 1.35e-08, + "mercapto": 1.35e-08, + "mesophytic": 1.35e-08, + "mesothelium": 1.35e-08, + "microphonics": 1.35e-08, + "miltonic": 1.35e-08, + "minhag": 1.35e-08, + "misimpression": 1.35e-08, + "mistime": 1.35e-08, + "monotreme": 1.35e-08, + "mordantly": 1.35e-08, + "mullite": 1.35e-08, + "multinucleate": 1.35e-08, + "muran": 1.35e-08, + "musaeus": 1.35e-08, + "naid": 1.35e-08, + "natals": 1.35e-08, + "navette": 1.35e-08, + "neophobia": 1.35e-08, + "neuroepithelial": 1.35e-08, + "nipponese": 1.35e-08, + "nogai": 1.35e-08, + "nonmarine": 1.35e-08, + "nonrecourse": 1.35e-08, + "nontheistic": 1.35e-08, + "nowheres": 1.35e-08, + "nympha": 1.35e-08, + "ogam": 1.35e-08, + "oghuz": 1.35e-08, + "opah": 1.35e-08, + "orchestrion": 1.35e-08, + "orthophosphoric": 1.35e-08, + "outwater": 1.35e-08, + "overpromise": 1.35e-08, + "pagurus": 1.35e-08, + "pahoehoe": 1.35e-08, + "parlando": 1.35e-08, + "pasmo": 1.35e-08, + "pectinase": 1.35e-08, + "peevishly": 1.35e-08, + "pelmet": 1.35e-08, + "pelu": 1.35e-08, + "penality": 1.35e-08, + "pentapolis": 1.35e-08, + "perfusate": 1.35e-08, + "periocular": 1.35e-08, + "perpendicularity": 1.35e-08, + "phyton": 1.35e-08, + "phytosterol": 1.35e-08, + "picturesqueness": 1.35e-08, + "pikeman": 1.35e-08, + "pistache": 1.35e-08, + "planation": 1.35e-08, + "plasmodial": 1.35e-08, + "plinian": 1.35e-08, + "plumose": 1.35e-08, + "porphyra": 1.35e-08, + "porterage": 1.35e-08, + "posthypnotic": 1.35e-08, + "preachiness": 1.35e-08, + "predestinate": 1.35e-08, + "proboscidea": 1.35e-08, + "proclitic": 1.35e-08, + "prototypically": 1.35e-08, + "prurigo": 1.35e-08, + "psidium": 1.35e-08, + "psittacine": 1.35e-08, + "psychometrically": 1.35e-08, + "punkah": 1.35e-08, + "punster": 1.35e-08, + "purry": 1.35e-08, + "pyrazole": 1.35e-08, + "pyrogallol": 1.35e-08, + "pyrophyllite": 1.35e-08, + "pythonic": 1.35e-08, + "quacky": 1.35e-08, + "rabboni": 1.35e-08, + "radiolucent": 1.35e-08, + "raffe": 1.35e-08, + "rageful": 1.35e-08, + "raglin": 1.35e-08, + "railer": 1.35e-08, + "reinsure": 1.35e-08, + "relet": 1.35e-08, + "reprehensibly": 1.35e-08, + "reshare": 1.35e-08, + "restfulness": 1.35e-08, + "restream": 1.35e-08, + "resubscribe": 1.35e-08, + "resultative": 1.35e-08, + "revisitation": 1.35e-08, + "richesse": 1.35e-08, + "roadhead": 1.35e-08, + "roadstone": 1.35e-08, + "rooky": 1.35e-08, + "ruen": 1.35e-08, + "saite": 1.35e-08, + "salay": 1.35e-08, + "sappiness": 1.35e-08, + "scolopendra": 1.35e-08, + "scotchy": 1.35e-08, + "scourer": 1.35e-08, + "scriber": 1.35e-08, + "sculpturally": 1.35e-08, + "searchingly": 1.35e-08, + "seax": 1.35e-08, + "seriocomic": 1.35e-08, + "sesqui": 1.35e-08, + "shallop": 1.35e-08, + "shaly": 1.35e-08, + "shiftiness": 1.35e-08, + "skyscraping": 1.35e-08, + "slad": 1.35e-08, + "sleaziness": 1.35e-08, + "slogger": 1.35e-08, + "solecism": 1.35e-08, + "souhegan": 1.35e-08, + "southmost": 1.35e-08, + "sparklingly": 1.35e-08, + "spondylus": 1.35e-08, + "stannary": 1.35e-08, + "stanno": 1.35e-08, + "stive": 1.35e-08, + "stopa": 1.35e-08, + "stormberg": 1.35e-08, + "stormproof": 1.35e-08, + "stouthearted": 1.35e-08, + "stresser": 1.35e-08, + "subsessile": 1.35e-08, + "subsolar": 1.35e-08, + "succinimide": 1.35e-08, + "summarizer": 1.35e-08, + "sunnism": 1.35e-08, + "supertax": 1.35e-08, + "sympatry": 1.35e-08, + "taar": 1.35e-08, + "tabet": 1.35e-08, + "talmudist": 1.35e-08, + "tetramethylammonium": 1.35e-08, + "tomogram": 1.35e-08, + "touchiness": 1.35e-08, + "tragacanth": 1.35e-08, + "traitorously": 1.35e-08, + "tramper": 1.35e-08, + "trapezohedron": 1.35e-08, + "triteness": 1.35e-08, + "unchangeably": 1.35e-08, + "uncia": 1.35e-08, + "uncongested": 1.35e-08, + "underpressure": 1.35e-08, + "underproduction": 1.35e-08, + "undervoltage": 1.35e-08, + "undrilled": 1.35e-08, + "undulatory": 1.35e-08, + "unhung": 1.35e-08, + "uniface": 1.35e-08, + "uniflow": 1.35e-08, + "uninstructed": 1.35e-08, + "unintelligibility": 1.35e-08, + "uninterpretable": 1.35e-08, + "uninventive": 1.35e-08, + "unlubricated": 1.35e-08, + "unmanageably": 1.35e-08, + "unsanctified": 1.35e-08, + "unsliced": 1.35e-08, + "unstinted": 1.35e-08, + "unstyled": 1.35e-08, + "unstylish": 1.35e-08, + "uralian": 1.35e-08, + "vallisneria": 1.35e-08, + "veldman": 1.35e-08, + "ventless": 1.35e-08, + "vitrify": 1.35e-08, + "volatilize": 1.35e-08, + "vorticism": 1.35e-08, + "waapa": 1.35e-08, + "waler": 1.35e-08, + "wangara": 1.35e-08, + "wapp": 1.35e-08, + "waur": 1.35e-08, + "waveless": 1.35e-08, + "whoof": 1.35e-08, + "wicketkeeping": 1.35e-08, + "withania": 1.35e-08, + "yttria": 1.35e-08, + "zanella": 1.35e-08, + "zebrawood": 1.35e-08, + "abrin": 1.32e-08, + "achatina": 1.32e-08, + "adagietto": 1.32e-08, + "adansonia": 1.32e-08, + "advocator": 1.32e-08, + "afterpiece": 1.32e-08, + "aggregative": 1.32e-08, + "algor": 1.32e-08, + "amaryllidaceae": 1.32e-08, + "amateurishness": 1.32e-08, + "ammonoid": 1.32e-08, + "anatidae": 1.32e-08, + "anhidrosis": 1.32e-08, + "antiknock": 1.32e-08, + "apocryphally": 1.32e-08, + "apophyllite": 1.32e-08, + "apostolical": 1.32e-08, + "applier": 1.32e-08, + "appoggiatura": 1.32e-08, + "arteriogram": 1.32e-08, + "arthrosis": 1.32e-08, + "assimilatory": 1.32e-08, + "audiometer": 1.32e-08, + "bagworm": 1.32e-08, + "baken": 1.32e-08, + "barghest": 1.32e-08, + "basilican": 1.32e-08, + "basketwork": 1.32e-08, + "batrachia": 1.32e-08, + "bdellium": 1.32e-08, + "bezzi": 1.32e-08, + "bicyclo": 1.32e-08, + "billiken": 1.32e-08, + "bilocation": 1.32e-08, + "bination": 1.32e-08, + "biopsychology": 1.32e-08, + "bosker": 1.32e-08, + "brawly": 1.32e-08, + "briolette": 1.32e-08, + "brochette": 1.32e-08, + "broma": 1.32e-08, + "broodingly": 1.32e-08, + "brushland": 1.32e-08, + "budder": 1.32e-08, + "caducous": 1.32e-08, + "cahow": 1.32e-08, + "calliphoridae": 1.32e-08, + "canonicals": 1.07e-08, + "cascabel": 1.32e-08, + "casuality": 1.32e-08, + "casuistic": 1.32e-08, + "cataclysmically": 1.32e-08, + "catharism": 1.32e-08, + "centile": 1.32e-08, + "champy": 1.32e-08, + "chuckwalla": 1.32e-08, + "cittern": 1.32e-08, + "cladocera": 1.32e-08, + "clamper": 1.32e-08, + "clownery": 1.32e-08, + "cockchafer": 1.32e-08, + "coelenterata": 1.32e-08, + "combretum": 1.32e-08, + "confiteor": 1.32e-08, + "cotinus": 1.32e-08, + "counterpane": 1.32e-08, + "counterplan": 1.32e-08, + "cowlicks": 1.32e-08, + "coxal": 1.32e-08, + "crabeater": 1.32e-08, + "crapy": 1.32e-08, + "craquelure": 1.32e-08, + "crine": 1.32e-08, + "cruciferae": 1.32e-08, + "crystallizer": 1.32e-08, + "curer": 1.32e-08, + "curtal": 1.32e-08, + "cuttingly": 1.32e-08, + "cuttyhunk": 1.32e-08, + "deacidification": 1.32e-08, + "decani": 1.32e-08, + "defamer": 1.32e-08, + "definability": 1.32e-08, + "demander": 1.32e-08, + "democratical": 1.32e-08, + "demulcent": 1.32e-08, + "depthless": 1.32e-08, + "dialectician": 1.32e-08, + "dillweed": 1.32e-08, + "discriminately": 1.32e-08, + "dissimilatory": 1.32e-08, + "dogie": 1.32e-08, + "dourly": 1.32e-08, + "downflow": 1.32e-08, + "driveaway": 1.32e-08, + "electrophysiologist": 1.32e-08, + "elsewise": 1.32e-08, + "encrust": 1.32e-08, + "epicanthic": 1.32e-08, + "epiphenomenalism": 1.32e-08, + "exactingly": 1.32e-08, + "exemptive": 1.32e-08, + "farse": 1.32e-08, + "fatalistically": 1.32e-08, + "felicitously": 1.32e-08, + "fibrinous": 1.32e-08, + "fingersmith": 1.32e-08, + "fleeter": 1.32e-08, + "fleetness": 1.32e-08, + "flurried": 1.32e-08, + "forebode": 1.32e-08, + "gaberdine": 1.32e-08, + "galaxian": 1.32e-08, + "gharial": 1.32e-08, + "girlishness": 1.32e-08, + "glauconitic": 1.32e-08, + "gluer": 1.32e-08, + "glutaric": 1.32e-08, + "gonfalonier": 1.32e-08, + "gradin": 1.32e-08, + "grassman": 1.32e-08, + "graveman": 1.32e-08, + "grilse": 1.32e-08, + "groser": 1.32e-08, + "gunnera": 1.32e-08, + "habenaria": 1.32e-08, + "harmala": 1.32e-08, + "hartin": 1.32e-08, + "hemera": 1.32e-08, + "hemionus": 1.32e-08, + "hepatorenal": 1.32e-08, + "heresiarch": 1.32e-08, + "heritance": 1.32e-08, + "hiddenness": 1.32e-08, + "holcus": 1.32e-08, + "horsy": 1.32e-08, + "hydatidiform": 1.32e-08, + "hydroforming": 1.32e-08, + "hydrokinetic": 1.32e-08, + "hypericin": 1.32e-08, + "hypothetic": 1.32e-08, + "illuminative": 1.32e-08, + "immemorially": 1.32e-08, + "impracticability": 1.32e-08, + "incertitude": 1.32e-08, + "indifferentism": 1.32e-08, + "inelegance": 1.32e-08, + "infanticidal": 1.32e-08, + "inherence": 1.32e-08, + "inion": 1.32e-08, + "insatiability": 1.32e-08, + "intercloud": 1.32e-08, + "intergrowth": 1.32e-08, + "interlingual": 1.32e-08, + "intragastric": 1.32e-08, + "intraparietal": 1.32e-08, + "introjection": 1.32e-08, + "isochronic": 1.32e-08, + "isostasy": 1.32e-08, + "jackshaft": 1.32e-08, + "kalium": 1.32e-08, + "kantele": 1.32e-08, + "kashubian": 1.32e-08, + "katalyst": 1.32e-08, + "kinematically": 1.32e-08, + "knape": 1.32e-08, + "knout": 1.32e-08, + "korwa": 1.32e-08, + "kuttab": 1.32e-08, + "lacedaemonian": 1.32e-08, + "lacer": 1.32e-08, + "lackadaisically": 1.32e-08, + "lagomorph": 1.32e-08, + "lamaism": 1.32e-08, + "lappish": 1.32e-08, + "larky": 1.32e-08, + "lazzaroni": 1.32e-08, + "lechuguilla": 1.32e-08, + "leucyl": 1.32e-08, + "limitedly": 1.32e-08, + "litterer": 1.32e-08, + "locular": 1.32e-08, + "lopsidedly": 1.32e-08, + "luting": 1.32e-08, + "lymphangioma": 1.32e-08, + "lymphotoxin": 1.32e-08, + "magnetoelectric": 1.32e-08, + "mahra": 1.32e-08, + "mahseer": 1.32e-08, + "malrotation": 1.32e-08, + "manipulatively": 1.32e-08, + "mannerless": 1.32e-08, + "mashy": 1.32e-08, + "matchwood": 1.32e-08, + "megavolt": 1.32e-08, + "micropaleontology": 1.32e-08, + "milicent": 1.32e-08, + "mistily": 1.32e-08, + "mochica": 1.32e-08, + "montem": 1.32e-08, + "morphea": 1.32e-08, + "multiengine": 1.32e-08, + "multifidus": 1.32e-08, + "mumming": 1.32e-08, + "nightwork": 1.32e-08, + "nonpaying": 1.32e-08, + "nonuse": 1.32e-08, + "numerary": 1.32e-08, + "officership": 1.32e-08, + "oint": 1.32e-08, + "onchocerca": 1.32e-08, + "onionskin": 1.32e-08, + "onomatopoetic": 1.32e-08, + "osteichthyes": 1.32e-08, + "oudenarde": 1.32e-08, + "overbank": 1.32e-08, + "overfit": 1.32e-08, + "overstrain": 1.32e-08, + "oxyhemoglobin": 1.32e-08, + "panpipe": 1.32e-08, + "parasitologist": 1.32e-08, + "parochially": 1.32e-08, + "passional": 1.32e-08, + "pedicularis": 1.32e-08, + "penannular": 1.32e-08, + "periastron": 1.32e-08, + "perique": 1.32e-08, + "perissodactyla": 1.32e-08, + "pertly": 1.32e-08, + "photomicrography": 1.32e-08, + "phraseological": 1.32e-08, + "phycocyanin": 1.32e-08, + "pinnule": 1.32e-08, + "plancher": 1.32e-08, + "plethodon": 1.32e-08, + "plowboy": 1.32e-08, + "poesis": 1.32e-08, + "pollywog": 1.32e-08, + "polymicrobial": 1.32e-08, + "polytrichum": 1.32e-08, + "poniard": 1.32e-08, + "postnominal": 1.32e-08, + "postwoman": 1.32e-08, + "precipitable": 1.32e-08, + "predictively": 1.32e-08, + "prejudicially": 1.32e-08, + "preocular": 1.32e-08, + "priscillian": 1.32e-08, + "prodigally": 1.32e-08, + "punga": 1.32e-08, + "purlieu": 1.32e-08, + "queenless": 1.32e-08, + "quilly": 1.32e-08, + "ratite": 1.32e-08, + "rectovaginal": 1.32e-08, + "reeding": 1.32e-08, + "reflate": 1.32e-08, + "refuser": 1.32e-08, + "regressor": 1.32e-08, + "reiterative": 1.32e-08, + "remeasure": 1.32e-08, + "retropharyngeal": 1.32e-08, + "retroversion": 1.32e-08, + "reubenites": 1.32e-08, + "revalidate": 1.32e-08, + "rodolphus": 1.32e-08, + "rogero": 1.32e-08, + "roguery": 1.32e-08, + "rusticate": 1.32e-08, + "saturnus": 1.32e-08, + "saulter": 1.32e-08, + "scarabaeus": 1.32e-08, + "scillonian": 1.32e-08, + "scombroid": 1.32e-08, + "scratchboard": 1.32e-08, + "scriver": 1.32e-08, + "scunner": 1.32e-08, + "scutage": 1.32e-08, + "selenographic": 1.32e-08, + "semble": 1.32e-08, + "setscrew": 1.32e-08, + "sigla": 1.32e-08, + "siphonaptera": 1.32e-08, + "skoo": 1.32e-08, + "slape": 1.32e-08, + "snugger": 1.32e-08, + "speleology": 1.32e-08, + "spense": 1.32e-08, + "strategics": 1.32e-08, + "strook": 1.32e-08, + "subjacent": 1.32e-08, + "subvertical": 1.32e-08, + "sulfonium": 1.32e-08, + "sullenness": 1.32e-08, + "surviver": 1.32e-08, + "tactlessness": 1.32e-08, + "taffrail": 1.32e-08, + "tainui": 1.32e-08, + "tautomerism": 1.32e-08, + "tawn": 1.32e-08, + "tearless": 1.32e-08, + "teleseismic": 1.32e-08, + "timucua": 1.32e-08, + "torsionally": 1.32e-08, + "totalize": 1.32e-08, + "toter": 1.32e-08, + "tother": 1.32e-08, + "towery": 1.32e-08, + "toxically": 1.32e-08, + "transship": 1.32e-08, + "traverser": 1.32e-08, + "tropaeolum": 1.32e-08, + "truckster": 1.32e-08, + "trumpie": 1.32e-08, + "trush": 1.32e-08, + "unadvised": 1.32e-08, + "unamusing": 1.32e-08, + "unanalyzed": 1.32e-08, + "unappealable": 1.32e-08, + "uncoachable": 1.32e-08, + "unconvicted": 1.32e-08, + "underglow": 1.32e-08, + "unfix": 1.32e-08, + "ungentle": 1.32e-08, + "ungraciously": 1.32e-08, + "unguis": 1.32e-08, + "unice": 1.32e-08, + "unintimidated": 1.32e-08, + "unmarriageable": 1.32e-08, + "unpretentiously": 1.32e-08, + "unqualifiedly": 1.32e-08, + "unshackling": 1.32e-08, + "unsifted": 1.32e-08, + "unthoughtful": 1.32e-08, + "unwrinkled": 1.32e-08, + "usnic": 1.32e-08, + "vacuousness": 1.32e-08, + "vermifuge": 1.32e-08, + "visitable": 1.32e-08, + "voteless": 1.32e-08, + "wandoo": 1.32e-08, + "wanter": 1.32e-08, + "weightlessly": 1.32e-08, + "wildcatting": 1.32e-08, + "witchetty": 1.32e-08, + "aardwolf": 1.29e-08, + "abloom": 1.29e-08, + "abuna": 1.29e-08, + "actomyosin": 1.29e-08, + "adjustive": 1.29e-08, + "advective": 1.29e-08, + "adventive": 1.29e-08, + "agronomical": 1.29e-08, + "ajoint": 1.29e-08, + "albuminous": 1.29e-08, + "alclad": 1.29e-08, + "ambitus": 1.29e-08, + "anacardiaceae": 1.29e-08, + "annalistic": 1.29e-08, + "annulet": 1.29e-08, + "antecubital": 1.29e-08, + "antinational": 1.29e-08, + "antiskid": 1.29e-08, + "asianism": 1.29e-08, + "aythya": 1.29e-08, + "azobenzene": 1.29e-08, + "baiocchi": 1.29e-08, + "banba": 1.29e-08, + "banteng": 1.29e-08, + "barrer": 1.29e-08, + "beatae": 1.29e-08, + "beatify": 1.29e-08, + "beleaguer": 1.29e-08, + "bemusedly": 1.29e-08, + "bethabara": 1.29e-08, + "bezique": 1.29e-08, + "bhangi": 1.29e-08, + "bicipital": 1.29e-08, + "bield": 1.29e-08, + "biscayan": 1.29e-08, + "bitted": 1.29e-08, + "biuret": 1.29e-08, + "blameworthiness": 1.29e-08, + "boraginaceae": 1.29e-08, + "bothrops": 1.29e-08, + "buncher": 1.29e-08, + "buriti": 1.29e-08, + "busman": 1.29e-08, + "cacoon": 1.29e-08, + "calciferous": 1.29e-08, + "calinda": 1.29e-08, + "capax": 1.29e-08, + "capparis": 1.29e-08, + "capsula": 1.29e-08, + "captainship": 1.29e-08, + "carbazole": 1.29e-08, + "cartesianism": 1.29e-08, + "cartonnage": 1.29e-08, + "cerastium": 1.29e-08, + "cestoda": 1.29e-08, + "chantey": 1.29e-08, + "chassepot": 1.29e-08, + "cholic": 1.29e-08, + "chronologic": 1.29e-08, + "chronoscope": 1.29e-08, + "chuckies": 1.29e-08, + "clammer": 1.29e-08, + "clausula": 1.29e-08, + "clavecin": 1.29e-08, + "collocate": 1.29e-08, + "colluvial": 1.29e-08, + "compliantly": 1.29e-08, + "compoundable": 1.29e-08, + "concanavalin": 1.29e-08, + "confect": 1.29e-08, + "copiousness": 1.29e-08, + "corporally": 1.29e-08, + "courtliness": 1.29e-08, + "crural": 1.29e-08, + "crystallizable": 1.29e-08, + "culinarily": 1.29e-08, + "curcas": 1.29e-08, + "decollete": 1.29e-08, + "deject": 1.29e-08, + "delayer": 1.29e-08, + "dequeen": 1.29e-08, + "digitate": 1.29e-08, + "disbelievingly": 1.29e-08, + "dithionite": 1.29e-08, + "dithyramb": 1.29e-08, + "doat": 1.29e-08, + "eddic": 1.29e-08, + "enfeoffment": 1.29e-08, + "escribe": 1.29e-08, + "executional": 1.29e-08, + "exteriorly": 1.29e-08, + "factorize": 1.29e-08, + "familism": 1.29e-08, + "fetchingly": 1.29e-08, + "fjeld": 1.29e-08, + "flump": 1.29e-08, + "forker": 1.29e-08, + "froe": 1.29e-08, + "frogmouth": 1.29e-08, + "galoot": 1.29e-08, + "gamboge": 1.29e-08, + "gastrula": 1.29e-08, + "geometridae": 1.29e-08, + "germander": 1.29e-08, + "glyoxal": 1.29e-08, + "goateed": 1.29e-08, + "granadilla": 1.29e-08, + "grantha": 1.29e-08, + "grasser": 1.29e-08, + "grinderman": 1.29e-08, + "haggy": 1.29e-08, + "hammerstone": 1.29e-08, + "hebdomadal": 1.29e-08, + "hippeastrum": 1.29e-08, + "horticulturally": 1.29e-08, + "hypopharyngeal": 1.29e-08, + "identic": 1.29e-08, + "imprecatory": 1.29e-08, + "inartistic": 1.29e-08, + "incredibility": 1.29e-08, + "indianization": 1.29e-08, + "involuted": 1.29e-08, + "irides": 1.29e-08, + "ironweed": 1.29e-08, + "joch": 1.29e-08, + "judahite": 1.29e-08, + "juggins": 1.29e-08, + "jural": 1.29e-08, + "kehillah": 1.29e-08, + "kenotic": 1.29e-08, + "khaja": 1.29e-08, + "knotless": 1.29e-08, + "kwannon": 1.29e-08, + "lactoglobulin": 1.29e-08, + "leadless": 1.29e-08, + "lemel": 1.29e-08, + "lentigo": 1.29e-08, + "liturgist": 1.29e-08, + "locomotory": 1.29e-08, + "locule": 1.29e-08, + "loligo": 1.29e-08, + "longobardi": 1.29e-08, + "lychnis": 1.29e-08, + "magnific": 1.29e-08, + "malunion": 1.29e-08, + "marline": 1.29e-08, + "megakaryocyte": 1.29e-08, + "megaptera": 1.29e-08, + "melanotic": 1.29e-08, + "menadione": 1.29e-08, + "metasoma": 1.29e-08, + "metasomatic": 1.29e-08, + "microbiologic": 1.29e-08, + "minification": 1.29e-08, + "misura": 1.29e-08, + "mohar": 1.29e-08, + "moosey": 1.29e-08, + "morillon": 1.29e-08, + "musang": 1.29e-08, + "musci": 1.29e-08, + "mushiness": 1.29e-08, + "nerving": 1.29e-08, + "nightlong": 1.29e-08, + "nipmuc": 1.29e-08, + "nitella": 1.29e-08, + "nonattendance": 1.29e-08, + "noncom": 1.29e-08, + "nurser": 1.29e-08, + "nymphalidae": 1.29e-08, + "odontologist": 1.29e-08, + "orchidaceous": 1.29e-08, + "organolithium": 1.29e-08, + "orias": 1.29e-08, + "overwrap": 1.29e-08, + "owenite": 1.29e-08, + "pahi": 1.29e-08, + "palolo": 1.29e-08, + "paon": 1.29e-08, + "parado": 1.29e-08, + "parasitosis": 1.29e-08, + "parhelia": 1.29e-08, + "peevishness": 1.29e-08, + "pentimento": 1.29e-08, + "pertinacity": 1.29e-08, + "philippian": 1.29e-08, + "phlogopite": 1.29e-08, + "photographical": 1.29e-08, + "pliancy": 1.29e-08, + "polypore": 1.29e-08, + "polysemous": 1.29e-08, + "ponderable": 1.29e-08, + "postclassical": 1.29e-08, + "prefectly": 1.29e-08, + "prefigurative": 1.29e-08, + "prestation": 1.29e-08, + "presumedly": 1.29e-08, + "propodeum": 1.29e-08, + "proprium": 1.29e-08, + "pseudotuberculosis": 1.29e-08, + "psychosomatics": 1.29e-08, + "purposelessness": 1.29e-08, + "purpuric": 1.29e-08, + "quag": 1.29e-08, + "quoter": 1.29e-08, + "racon": 1.29e-08, + "rataplan": 1.29e-08, + "ravindranath": 1.29e-08, + "redleg": 1.29e-08, + "renewability": 1.29e-08, + "reprehend": 1.29e-08, + "resplendently": 1.29e-08, + "restitute": 1.29e-08, + "ritardando": 1.29e-08, + "ruffly": 1.29e-08, + "rushlight": 1.29e-08, + "saccule": 1.29e-08, + "samskara": 1.29e-08, + "sancy": 1.29e-08, + "sanforized": 1.29e-08, + "saprophyte": 1.29e-08, + "sawt": 1.29e-08, + "screenless": 1.29e-08, + "scrobble": 1.29e-08, + "scyphozoa": 1.29e-08, + "semirural": 1.29e-08, + "serendib": 1.29e-08, + "serrana": 1.29e-08, + "shirring": 1.29e-08, + "shivaree": 1.29e-08, + "sidy": 1.29e-08, + "siever": 1.29e-08, + "skey": 1.29e-08, + "skijoring": 1.29e-08, + "smashingly": 1.29e-08, + "snaffles": 1.29e-08, + "soaper": 1.29e-08, + "sourwood": 1.29e-08, + "spading": 1.29e-08, + "spatha": 1.29e-08, + "squantum": 1.29e-08, + "stickly": 1.29e-08, + "stumpage": 1.29e-08, + "stupe": 1.29e-08, + "subglottic": 1.29e-08, + "syncopal": 1.29e-08, + "synthol": 1.29e-08, + "tankman": 1.29e-08, + "tantivy": 1.29e-08, + "tautog": 1.29e-08, + "tegmina": 1.29e-08, + "teiresias": 1.29e-08, + "tellurite": 1.29e-08, + "teston": 1.29e-08, + "tetrahydrate": 1.29e-08, + "thight": 1.29e-08, + "tinct": 1.29e-08, + "totalizator": 1.29e-08, + "tottle": 1.29e-08, + "triatomic": 1.29e-08, + "trigonella": 1.29e-08, + "triskele": 1.29e-08, + "tubocurarine": 1.29e-08, + "uncurled": 1.29e-08, + "underconsumption": 1.29e-08, + "undermountain": 1.29e-08, + "unfathomed": 1.29e-08, + "unfelt": 1.29e-08, + "ungrazed": 1.29e-08, + "unimpeachably": 1.29e-08, + "uninflated": 1.29e-08, + "unitarily": 1.29e-08, + "unjam": 1.29e-08, + "unkilled": 1.29e-08, + "unman": 1.29e-08, + "unpeopled": 1.29e-08, + "unselect": 1.29e-08, + "unstrained": 1.29e-08, + "unthink": 1.29e-08, + "uplifter": 1.29e-08, + "vassos": 1.29e-08, + "vellala": 1.29e-08, + "villanovan": 1.29e-08, + "vulcanize": 1.29e-08, + "vulvovaginal": 1.29e-08, + "wabble": 1.29e-08, + "warran": 1.29e-08, + "wiggen": 1.29e-08, + "wigmaker": 1.29e-08, + "wiliness": 1.29e-08, + "woodiness": 1.29e-08, + "wordle": 1.29e-08, + "worklessness": 1.29e-08, + "wovoka": 1.29e-08, + "xanthophyll": 1.29e-08, + "zygomaticus": 1.29e-08, + "absinthium": 1.26e-08, + "acerbity": 1.26e-08, + "agami": 1.26e-08, + "aggravatingly": 1.26e-08, + "airsick": 1.26e-08, + "akebia": 1.26e-08, + "alcyon": 1.26e-08, + "alongshore": 1.26e-08, + "altazimuth": 1.26e-08, + "alternance": 1.26e-08, + "ambitiousness": 1.26e-08, + "analeptic": 1.26e-08, + "anatomize": 1.26e-08, + "anginal": 1.26e-08, + "appraisement": 1.26e-08, + "areole": 1.26e-08, + "argal": 1.26e-08, + "arisaema": 1.26e-08, + "ascribable": 1.26e-08, + "assumable": 1.26e-08, + "astrally": 1.26e-08, + "ateles": 1.26e-08, + "atomy": 1.26e-08, + "attributively": 1.26e-08, + "autoradiographic": 1.26e-08, + "autoxidation": 1.26e-08, + "babassu": 1.26e-08, + "baldpate": 1.26e-08, + "ballow": 1.26e-08, + "balsamea": 1.26e-08, + "bandle": 1.26e-08, + "barabara": 1.26e-08, + "basidiomycete": 1.26e-08, + "basilic": 1.26e-08, + "beekmantown": 1.26e-08, + "belove": 1.26e-08, + "benzal": 1.26e-08, + "berkelium": 1.26e-08, + "berline": 1.26e-08, + "biharmonic": 1.26e-08, + "bombax": 1.26e-08, + "bondwoman": 1.26e-08, + "boundlessness": 1.26e-08, + "bricken": 1.26e-08, + "calamitously": 1.26e-08, + "calvarium": 1.26e-08, + "calx": 1.26e-08, + "canaliculi": 1.26e-08, + "cardsharp": 1.26e-08, + "cartogram": 1.26e-08, + "casteless": 1.26e-08, + "cavae": 1.26e-08, + "chaldee": 1.26e-08, + "charleen": 1.26e-08, + "chasteness": 1.26e-08, + "chillness": 1.26e-08, + "chinaberry": 1.26e-08, + "chloroformate": 1.26e-08, + "choca": 1.26e-08, + "chude": 1.26e-08, + "cicala": 1.26e-08, + "clogger": 1.26e-08, + "colorfulness": 1.26e-08, + "concordantly": 1.26e-08, + "conservativeness": 1.26e-08, + "conspiration": 1.26e-08, + "contritely": 1.26e-08, + "convectional": 1.26e-08, + "cookshop": 1.26e-08, + "coolish": 1.26e-08, + "coprolalia": 1.26e-08, + "cosmetician": 1.26e-08, + "covin": 1.26e-08, + "cowpuncher": 1.26e-08, + "crossette": 1.26e-08, + "crystallographically": 1.26e-08, + "cubeb": 1.26e-08, + "cystoid": 1.26e-08, + "dandyish": 1.26e-08, + "decimalization": 1.26e-08, + "delegable": 1.26e-08, + "determent": 1.26e-08, + "digitoxin": 1.26e-08, + "diker": 1.26e-08, + "dilettantism": 1.26e-08, + "diphtheritic": 1.26e-08, + "disharmonic": 1.26e-08, + "dispersity": 1.26e-08, + "dissembler": 1.26e-08, + "docetic": 1.26e-08, + "domineer": 1.26e-08, + "earthshine": 1.26e-08, + "earthshock": 1.26e-08, + "egyptological": 1.26e-08, + "elaeagnus": 1.26e-08, + "eluvial": 1.26e-08, + "encephalitic": 1.26e-08, + "endue": 1.26e-08, + "errantly": 1.26e-08, + "escapable": 1.26e-08, + "ethnobotanist": 1.26e-08, + "etiolation": 1.26e-08, + "euboean": 1.26e-08, + "eumolpus": 1.26e-08, + "euskara": 1.26e-08, + "extenuation": 1.26e-08, + "fencible": 1.26e-08, + "flavorsome": 1.26e-08, + "fluorogenic": 1.26e-08, + "foregate": 1.26e-08, + "foretop": 1.26e-08, + "fuzzily": 1.26e-08, + "gabbroic": 1.26e-08, + "gaullism": 1.26e-08, + "ghetti": 1.26e-08, + "gibberella": 1.26e-08, + "glary": 1.26e-08, + "goldwork": 1.26e-08, + "greenlander": 1.26e-08, + "grewia": 1.26e-08, + "grumbler": 1.26e-08, + "gurk": 1.26e-08, + "hairsplitting": 1.26e-08, + "hardihood": 1.26e-08, + "heliographic": 1.26e-08, + "hemodilution": 1.26e-08, + "henbit": 1.26e-08, + "hesiodic": 1.26e-08, + "hipple": 1.26e-08, + "holystone": 1.26e-08, + "homilist": 1.26e-08, + "homologate": 1.26e-08, + "hoodman": 1.26e-08, + "hosel": 1.26e-08, + "hyoscyamus": 1.26e-08, + "hyperelliptic": 1.26e-08, + "idiographic": 1.26e-08, + "immanently": 1.26e-08, + "imperturbably": 1.26e-08, + "incompressibility": 1.26e-08, + "indelicacy": 1.26e-08, + "indrawn": 1.26e-08, + "infeasibility": 1.26e-08, + "intercaste": 1.26e-08, + "interparietal": 1.26e-08, + "jackscrew": 1.26e-08, + "jerseyan": 1.26e-08, + "journalese": 1.26e-08, + "juglone": 1.26e-08, + "justificatory": 1.26e-08, + "kamerad": 1.26e-08, + "kjeldahl": 1.26e-08, + "kochia": 1.26e-08, + "lacca": 1.26e-08, + "laicization": 1.26e-08, + "lamber": 1.26e-08, + "lammergeier": 1.26e-08, + "landscapist": 1.26e-08, + "lawlessly": 1.26e-08, + "lecanora": 1.26e-08, + "legger": 1.26e-08, + "levulinic": 1.26e-08, + "ligulate": 1.26e-08, + "lumbricus": 1.26e-08, + "lycosidae": 1.26e-08, + "macronucleus": 1.26e-08, + "magistrature": 1.26e-08, + "malapert": 1.26e-08, + "malarious": 1.26e-08, + "marcionite": 1.26e-08, + "meliorate": 1.26e-08, + "merrythought": 1.26e-08, + "methodologist": 1.26e-08, + "miasmatic": 1.26e-08, + "microfossil": 1.26e-08, + "milliamp": 1.26e-08, + "mimer": 1.26e-08, + "mingy": 1.26e-08, + "monomolecular": 1.26e-08, + "muhammadi": 1.26e-08, + "mussulman": 1.26e-08, + "mycosphaerella": 1.26e-08, + "natation": 1.26e-08, + "neist": 1.26e-08, + "nervure": 1.26e-08, + "nonreciprocal": 1.26e-08, + "ocellated": 1.26e-08, + "oenologist": 1.26e-08, + "oestridae": 1.26e-08, + "oidium": 1.26e-08, + "oiticica": 1.26e-08, + "oliguria": 1.26e-08, + "onomasticon": 1.26e-08, + "ontogenetically": 1.26e-08, + "oribi": 1.26e-08, + "orthopraxy": 1.26e-08, + "ostrogoth": 1.26e-08, + "ottomanism": 1.26e-08, + "overpraise": 1.26e-08, + "palmitoleic": 1.26e-08, + "pantocrator": 1.26e-08, + "paramagnetism": 1.26e-08, + "paraparesis": 1.26e-08, + "parasitological": 1.26e-08, + "parenchymatous": 1.26e-08, + "parrotlet": 1.26e-08, + "particularistic": 1.26e-08, + "particularization": 1.26e-08, + "pasan": 1.26e-08, + "pediculosis": 1.26e-08, + "pentafluoride": 1.26e-08, + "pentelic": 1.26e-08, + "performable": 1.26e-08, + "periodogram": 1.26e-08, + "permeance": 1.26e-08, + "peroxy": 1.26e-08, + "phagocytose": 1.26e-08, + "phorid": 1.26e-08, + "picknick": 1.26e-08, + "pindaric": 1.26e-08, + "placeless": 1.26e-08, + "placode": 1.26e-08, + "plethysmograph": 1.26e-08, + "polygraphy": 1.26e-08, + "pompier": 1.26e-08, + "pompousness": 1.26e-08, + "popal": 1.26e-08, + "portugais": 1.26e-08, + "poter": 1.26e-08, + "praetorship": 1.26e-08, + "prehuman": 1.26e-08, + "prettify": 1.26e-08, + "propargyl": 1.26e-08, + "psychon": 1.26e-08, + "querent": 1.26e-08, + "raffinate": 1.26e-08, + "razee": 1.26e-08, + "reanalyze": 1.26e-08, + "recontact": 1.26e-08, + "recopy": 1.26e-08, + "redactional": 1.26e-08, + "redisplay": 1.26e-08, + "reflectometer": 1.26e-08, + "reflexologist": 1.26e-08, + "retter": 1.26e-08, + "revery": 1.26e-08, + "rikk": 1.26e-08, + "rindy": 1.26e-08, + "ripuarian": 1.26e-08, + "ropewalk": 1.26e-08, + "rumal": 1.26e-08, + "runed": 1.26e-08, + "safehold": 1.26e-08, + "saliently": 1.26e-08, + "saurel": 1.26e-08, + "scaff": 1.26e-08, + "scilicet": 1.26e-08, + "scrappiness": 1.26e-08, + "seak": 1.26e-08, + "secretum": 1.26e-08, + "sennet": 1.26e-08, + "septuagesima": 1.26e-08, + "sericite": 1.26e-08, + "sextillion": 1.26e-08, + "shalako": 1.26e-08, + "shieling": 1.26e-08, + "shinner": 1.26e-08, + "shoat": 1.26e-08, + "shoddiness": 1.26e-08, + "shoreless": 1.26e-08, + "shrilling": 1.26e-08, + "sibby": 1.26e-08, + "sillon": 1.26e-08, + "silures": 1.26e-08, + "slenderly": 1.26e-08, + "sloven": 1.26e-08, + "snakeweed": 1.26e-08, + "snew": 1.26e-08, + "solenoidal": 1.26e-08, + "sororal": 1.26e-08, + "spectroscopist": 1.26e-08, + "splendorous": 1.26e-08, + "sponginess": 1.26e-08, + "sprent": 1.26e-08, + "squark": 1.26e-08, + "stealthiness": 1.26e-08, + "subcentral": 1.26e-08, + "substract": 1.26e-08, + "subverse": 1.26e-08, + "superconscious": 1.26e-08, + "supernaturalist": 1.26e-08, + "supersweet": 1.26e-08, + "sweller": 1.26e-08, + "tacca": 1.26e-08, + "taloned": 1.26e-08, + "tamaroa": 1.26e-08, + "tanyard": 1.26e-08, + "telegony": 1.26e-08, + "tenesmus": 1.26e-08, + "terne": 1.26e-08, + "theocentric": 1.26e-08, + "theurgic": 1.26e-08, + "tinamou": 1.26e-08, + "titoism": 1.26e-08, + "tivy": 1.26e-08, + "tongueless": 1.26e-08, + "transmural": 1.26e-08, + "transmuter": 1.26e-08, + "trinitrate": 1.26e-08, + "triterpene": 1.26e-08, + "turgidity": 1.26e-08, + "ulcerous": 1.26e-08, + "ultimum": 1.26e-08, + "unaffectionate": 1.26e-08, + "uncapitalized": 1.26e-08, + "unclutter": 1.26e-08, + "uncontrived": 1.26e-08, + "uncrated": 1.26e-08, + "unfilmed": 1.26e-08, + "unindexed": 1.26e-08, + "unintellectual": 1.26e-08, + "unmalted": 1.26e-08, + "unmannered": 1.26e-08, + "unmeritorious": 1.26e-08, + "unprofitably": 1.26e-08, + "unruptured": 1.26e-08, + "unsplit": 1.26e-08, + "unwatered": 1.26e-08, + "unweaving": 1.26e-08, + "upness": 1.26e-08, + "uppish": 1.26e-08, + "venesection": 1.26e-08, + "vernant": 1.26e-08, + "verrucose": 1.26e-08, + "vexillum": 1.26e-08, + "victorianism": 1.26e-08, + "vidua": 1.26e-08, + "vocality": 1.26e-08, + "wappinger": 1.26e-08, + "washbowl": 1.26e-08, + "watchkeeper": 1.26e-08, + "wobbegong": 1.26e-08, + "wolfberry": 1.26e-08, + "woodenly": 1.26e-08, + "wordsworthian": 1.26e-08, + "xerosis": 1.26e-08, + "acanthaceae": 1.23e-08, + "acerra": 1.23e-08, + "actinia": 1.23e-08, + "aetolian": 1.23e-08, + "aggrieve": 1.23e-08, + "aminophenol": 1.23e-08, + "anacardium": 1.23e-08, + "anile": 1.23e-08, + "anosmic": 1.23e-08, + "anticorrosion": 1.23e-08, + "aogiri": 1.23e-08, + "apperceptive": 1.23e-08, + "aquacade": 1.23e-08, + "araucanian": 1.23e-08, + "ashamedly": 1.23e-08, + "auditive": 1.23e-08, + "aureate": 1.23e-08, + "austroasiatic": 1.23e-08, + "authigenic": 1.23e-08, + "autogamy": 1.23e-08, + "ayllu": 1.23e-08, + "azotemia": 1.23e-08, + "backboned": 1.23e-08, + "banjoist": 1.23e-08, + "bawdiness": 1.23e-08, + "bewhiskered": 1.23e-08, + "bigamously": 1.23e-08, + "binominal": 1.23e-08, + "binturong": 1.23e-08, + "bitless": 1.23e-08, + "bivector": 1.23e-08, + "blastema": 1.23e-08, + "blastopore": 1.23e-08, + "blesser": 1.23e-08, + "bluethroat": 1.23e-08, + "boldo": 1.23e-08, + "bookroom": 1.23e-08, + "botrychium": 1.23e-08, + "bouw": 1.23e-08, + "boxty": 1.23e-08, + "brunella": 1.23e-08, + "bryum": 1.23e-08, + "caelian": 1.23e-08, + "calypsonian": 1.23e-08, + "cassiope": 1.23e-08, + "catamenial": 1.23e-08, + "cedron": 1.23e-08, + "ceratophyllum": 1.23e-08, + "cerebella": 1.23e-08, + "chaffy": 1.23e-08, + "chalcocite": 1.23e-08, + "changeful": 1.23e-08, + "chasselas": 1.23e-08, + "cherishable": 1.23e-08, + "chloromycetin": 1.23e-08, + "cholelithiasis": 1.23e-08, + "chondroid": 1.23e-08, + "chymosin": 1.23e-08, + "citied": 1.23e-08, + "clamorously": 1.23e-08, + "cogon": 1.23e-08, + "colorfast": 1.23e-08, + "comitative": 1.23e-08, + "commendator": 1.23e-08, + "consubstantiation": 1.23e-08, + "convincer": 1.23e-08, + "coomb": 1.23e-08, + "coopering": 1.23e-08, + "copus": 1.23e-08, + "corneous": 1.23e-08, + "costate": 1.23e-08, + "cotinga": 1.23e-08, + "coypu": 1.23e-08, + "crepidula": 1.23e-08, + "crossbowman": 1.23e-08, + "danthonia": 1.23e-08, + "defenselessness": 1.23e-08, + "degrader": 1.23e-08, + "dekko": 1.23e-08, + "dendroica": 1.23e-08, + "denominationally": 1.23e-08, + "deodorization": 1.23e-08, + "devotedness": 1.23e-08, + "didactical": 1.23e-08, + "disquietude": 1.23e-08, + "distributee": 1.23e-08, + "doeskin": 1.23e-08, + "donnish": 1.23e-08, + "doum": 1.23e-08, + "dragonhead": 1.23e-08, + "drainable": 1.23e-08, + "eelpout": 1.23e-08, + "eichhornia": 1.23e-08, + "encash": 1.23e-08, + "enterpriser": 1.23e-08, + "entremets": 1.23e-08, + "ermines": 1.23e-08, + "estre": 1.23e-08, + "ethnologically": 1.23e-08, + "ethoxide": 1.23e-08, + "ethynyl": 1.23e-08, + "eveque": 1.23e-08, + "exedra": 1.23e-08, + "expounder": 1.23e-08, + "exteriority": 1.23e-08, + "extractant": 1.23e-08, + "extranuclear": 1.23e-08, + "falasha": 1.23e-08, + "farcy": 1.23e-08, + "fascio": 1.23e-08, + "fasciole": 1.23e-08, + "feijoa": 1.23e-08, + "ferromanganese": 1.23e-08, + "fishlike": 1.23e-08, + "fractionator": 1.23e-08, + "franticly": 1.23e-08, + "fructify": 1.23e-08, + "fruitlessness": 1.23e-08, + "fruitwood": 1.23e-08, + "giantism": 1.23e-08, + "giggler": 1.23e-08, + "globigerina": 1.23e-08, + "glochidia": 1.23e-08, + "guilelessness": 1.23e-08, + "halimeda": 1.23e-08, + "hallan": 1.23e-08, + "hardily": 1.23e-08, + "harmine": 1.23e-08, + "haruspex": 1.23e-08, + "headframe": 1.23e-08, + "hemianopsia": 1.23e-08, + "hexachord": 1.23e-08, + "hexapla": 1.23e-08, + "hilariousness": 1.23e-08, + "hipe": 1.23e-08, + "hippodamia": 1.23e-08, + "holothuria": 1.23e-08, + "homodyne": 1.23e-08, + "housewifery": 1.23e-08, + "hunkpapa": 1.23e-08, + "hydrometeorology": 1.23e-08, + "hypothecate": 1.23e-08, + "immoralist": 1.23e-08, + "imperiousness": 1.23e-08, + "impy": 1.23e-08, + "incurrence": 1.23e-08, + "indelicately": 1.23e-08, + "inexactitude": 1.23e-08, + "infratemporal": 1.23e-08, + "innovational": 1.23e-08, + "innumerous": 1.23e-08, + "intellectualist": 1.23e-08, + "interstice": 1.23e-08, + "joceline": 1.23e-08, + "jumada": 1.23e-08, + "jurisdictionally": 1.23e-08, + "kaffraria": 1.23e-08, + "kalong": 1.23e-08, + "kipchak": 1.23e-08, + "kolis": 1.23e-08, + "konia": 1.23e-08, + "kunbi": 1.23e-08, + "labiovelar": 1.23e-08, + "lacis": 1.23e-08, + "largen": 1.23e-08, + "lavaliere": 1.23e-08, + "lawing": 1.23e-08, + "lechwe": 1.23e-08, + "lingayat": 1.23e-08, + "lippen": 1.23e-08, + "logicism": 1.23e-08, + "lollardy": 1.23e-08, + "lovelessness": 1.23e-08, + "lupercal": 1.23e-08, + "lymphangitis": 1.23e-08, + "madurese": 1.23e-08, + "magnetomotive": 1.23e-08, + "manhattanite": 1.23e-08, + "manipulatable": 1.23e-08, + "marang": 1.23e-08, + "marcionism": 1.23e-08, + "marsupium": 1.23e-08, + "martagon": 1.23e-08, + "melburnian": 1.23e-08, + "melder": 1.23e-08, + "menzie": 1.23e-08, + "milty": 1.23e-08, + "mimus": 1.23e-08, + "mobocracy": 1.23e-08, + "monophysitism": 1.23e-08, + "moph": 1.23e-08, + "moquette": 1.23e-08, + "municipium": 1.23e-08, + "musar": 1.23e-08, + "mysid": 1.23e-08, + "naringin": 1.23e-08, + "neighbored": 1.23e-08, + "nitrosomonas": 1.23e-08, + "nonconsent": 1.23e-08, + "nonfinite": 1.23e-08, + "nooky": 1.23e-08, + "noteholder": 1.23e-08, + "occurrent": 1.23e-08, + "oceanographical": 1.23e-08, + "oecumenical": 1.23e-08, + "ogdoad": 1.23e-08, + "ophidia": 1.23e-08, + "orlop": 1.23e-08, + "osteodystrophy": 1.23e-08, + "outdate": 1.23e-08, + "outman": 1.23e-08, + "overexcitement": 1.23e-08, + "overmix": 1.23e-08, + "paeon": 1.23e-08, + "panaka": 1.23e-08, + "parataxis": 1.23e-08, + "patternmaking": 1.23e-08, + "penitentes": 1.23e-08, + "penitently": 1.23e-08, + "pentathlete": 1.23e-08, + "pentlandite": 1.23e-08, + "peripeteia": 1.23e-08, + "pestiferous": 1.23e-08, + "photospheric": 1.23e-08, + "physeter": 1.23e-08, + "piny": 1.23e-08, + "placoid": 1.23e-08, + "plakat": 1.23e-08, + "pleached": 1.23e-08, + "plugboard": 1.23e-08, + "podzol": 1.23e-08, + "polygonaceae": 1.23e-08, + "porringer": 1.23e-08, + "postpositional": 1.23e-08, + "poteen": 1.23e-08, + "precollege": 1.23e-08, + "prehaps": 1.23e-08, + "preputial": 1.23e-08, + "presbycusis": 1.23e-08, + "presumptious": 1.23e-08, + "prolepsis": 1.23e-08, + "puberulent": 1.23e-08, + "pulmonaria": 1.23e-08, + "pusillanimity": 1.23e-08, + "quantifiably": 1.23e-08, + "rechristen": 1.23e-08, + "reignition": 1.23e-08, + "religiose": 1.23e-08, + "remorsefully": 1.23e-08, + "renunciate": 1.23e-08, + "retranslate": 1.23e-08, + "ribband": 1.23e-08, + "richebourg": 1.23e-08, + "ridgepole": 1.23e-08, + "ruana": 1.23e-08, + "rusky": 1.23e-08, + "saprolite": 1.23e-08, + "sarus": 1.23e-08, + "sasin": 1.23e-08, + "savara": 1.23e-08, + "scarless": 1.23e-08, + "senecan": 1.23e-08, + "sepium": 1.23e-08, + "serialist": 1.23e-08, + "serpula": 1.23e-08, + "shabbath": 1.23e-08, + "sheely": 1.23e-08, + "sheepherding": 1.23e-08, + "shucker": 1.23e-08, + "siamang": 1.23e-08, + "snowscape": 1.23e-08, + "snuffers": 1.23e-08, + "souterrain": 1.23e-08, + "spenserian": 1.23e-08, + "spiderling": 1.23e-08, + "spinulosa": 1.23e-08, + "sprightliness": 1.23e-08, + "stalkless": 1.23e-08, + "stearin": 1.23e-08, + "stickpin": 1.23e-08, + "strikebreaker": 1.23e-08, + "sturnus": 1.23e-08, + "stylosanthes": 1.23e-08, + "subiculum": 1.23e-08, + "summerly": 1.23e-08, + "superfit": 1.23e-08, + "suppletive": 1.23e-08, + "surfboat": 1.23e-08, + "symbion": 1.23e-08, + "symposion": 1.23e-08, + "szlachta": 1.23e-08, + "tamias": 1.23e-08, + "tarpeian": 1.23e-08, + "tawdriness": 1.23e-08, + "tayrona": 1.23e-08, + "telephus": 1.23e-08, + "tenaciousness": 1.23e-08, + "thave": 1.23e-08, + "tigerish": 1.23e-08, + "tightener": 1.23e-08, + "tomentum": 1.23e-08, + "torchon": 1.23e-08, + "trigonia": 1.23e-08, + "tripinnate": 1.23e-08, + "tritheism": 1.23e-08, + "turbulently": 1.23e-08, + "turse": 1.23e-08, + "ultrabasic": 1.23e-08, + "unanimated": 1.23e-08, + "unbendable": 1.23e-08, + "unbias": 1.23e-08, + "uncased": 1.23e-08, + "unconfessed": 1.23e-08, + "underlaying": 1.23e-08, + "underprice": 1.23e-08, + "undiversified": 1.23e-08, + "undoubtable": 1.23e-08, + "uneatable": 1.23e-08, + "unemploy": 1.23e-08, + "unnoted": 1.23e-08, + "unprescribed": 1.23e-08, + "unriddle": 1.23e-08, + "unstirred": 1.23e-08, + "unusualness": 1.23e-08, + "vacuolation": 1.23e-08, + "vasal": 1.23e-08, + "verdet": 1.23e-08, + "vesicant": 1.23e-08, + "viscously": 1.23e-08, + "vorticist": 1.23e-08, + "vulpecula": 1.23e-08, + "waiwai": 1.23e-08, + "warbly": 1.23e-08, + "weedless": 1.23e-08, + "whimsicality": 1.23e-08, + "widthwise": 1.23e-08, + "workship": 1.23e-08, + "yock": 1.23e-08, + "abox": 1.2e-08, + "acock": 1.2e-08, + "actinidia": 1.2e-08, + "aerostatic": 1.2e-08, + "aesculapian": 1.2e-08, + "agal": 1.2e-08, + "agastache": 1.2e-08, + "agrestic": 1.2e-08, + "alaria": 1.2e-08, + "alidade": 1.2e-08, + "ammophila": 1.2e-08, + "amoraim": 1.2e-08, + "antilope": 1.2e-08, + "antiphony": 1.2e-08, + "apocynum": 1.2e-08, + "aquiver": 1.2e-08, + "arain": 1.2e-08, + "ascitic": 1.2e-08, + "aulos": 1.2e-08, + "automobility": 1.2e-08, + "axenic": 1.2e-08, + "azilian": 1.2e-08, + "azotobacter": 1.2e-08, + "baccara": 1.2e-08, + "barcoo": 1.2e-08, + "bargee": 1.2e-08, + "batterman": 1.2e-08, + "belanda": 1.2e-08, + "bergama": 1.2e-08, + "bewigged": 1.2e-08, + "biconical": 1.2e-08, + "bimbisara": 1.2e-08, + "boanerges": 1.2e-08, + "breth": 1.2e-08, + "bucktooth": 1.2e-08, + "callboy": 1.2e-08, + "cartomancy": 1.2e-08, + "caudad": 1.2e-08, + "cavaliero": 1.2e-08, + "ceratitis": 1.2e-08, + "chalta": 1.2e-08, + "chemehuevi": 1.2e-08, + "choes": 1.2e-08, + "chondromalacia": 1.2e-08, + "christadelphian": 1.2e-08, + "christianly": 1.2e-08, + "circulant": 1.2e-08, + "circumstanced": 1.2e-08, + "climatologically": 1.2e-08, + "clodhopper": 1.2e-08, + "cockling": 1.2e-08, + "colubrid": 1.2e-08, + "comptometer": 1.2e-08, + "concentrative": 1.2e-08, + "conter": 1.2e-08, + "convolvulaceae": 1.2e-08, + "cornified": 1.2e-08, + "crummock": 1.2e-08, + "cuerda": 1.2e-08, + "cuprum": 1.2e-08, + "cyclothymic": 1.2e-08, + "daftness": 1.2e-08, + "dagomba": 1.2e-08, + "defreeze": 1.2e-08, + "degu": 1.2e-08, + "deicer": 1.2e-08, + "delegacy": 1.2e-08, + "dentelle": 1.2e-08, + "desireless": 1.2e-08, + "desma": 1.2e-08, + "desultorily": 1.2e-08, + "deutzia": 1.2e-08, + "developmentalist": 1.2e-08, + "discloser": 1.2e-08, + "disjointedness": 1.2e-08, + "dispersibility": 1.2e-08, + "dogmatist": 1.2e-08, + "doubleton": 1.2e-08, + "dynatron": 1.2e-08, + "eastwardly": 1.2e-08, + "econometrician": 1.2e-08, + "efflorescent": 1.2e-08, + "elean": 1.2e-08, + "electroforming": 1.2e-08, + "emblematically": 1.2e-08, + "epiclesis": 1.2e-08, + "erodium": 1.2e-08, + "escritoire": 1.2e-08, + "essed": 1.2e-08, + "fagaceae": 1.2e-08, + "falconet": 1.2e-08, + "farandole": 1.2e-08, + "fauces": 1.2e-08, + "filmgoer": 1.2e-08, + "fleshiness": 1.2e-08, + "flimsily": 1.2e-08, + "floran": 1.2e-08, + "freewoman": 1.2e-08, + "fuchsian": 1.2e-08, + "fueler": 1.2e-08, + "ghoster": 1.2e-08, + "girasol": 1.2e-08, + "graybeard": 1.2e-08, + "haaf": 1.2e-08, + "hafter": 1.2e-08, + "hakenkreuz": 1.2e-08, + "hatchment": 1.2e-08, + "hatrack": 1.2e-08, + "headwork": 1.2e-08, + "henrician": 1.2e-08, + "hesione": 1.2e-08, + "hibernal": 1.2e-08, + "huari": 1.2e-08, + "huer": 1.2e-08, + "hydantoin": 1.2e-08, + "hypnopompic": 1.2e-08, + "hypostome": 1.2e-08, + "impeccability": 1.2e-08, + "imprisonable": 1.2e-08, + "inacceptable": 1.2e-08, + "inalienability": 1.2e-08, + "inalienably": 1.2e-08, + "intermediacy": 1.2e-08, + "intil": 1.2e-08, + "intravital": 1.2e-08, + "intromittent": 1.2e-08, + "iridaceae": 1.2e-08, + "isaurian": 1.2e-08, + "jalouse": 1.2e-08, + "jewelweed": 1.2e-08, + "jodel": 1.2e-08, + "jubilance": 1.2e-08, + "jumana": 1.2e-08, + "kachari": 1.2e-08, + "kidlet": 1.2e-08, + "koppa": 1.2e-08, + "lactiferous": 1.2e-08, + "lauan": 1.2e-08, + "legitim": 1.2e-08, + "leonese": 1.2e-08, + "lerp": 1.2e-08, + "ligger": 1.2e-08, + "littleneck": 1.2e-08, + "lonesomeness": 1.2e-08, + "loxodonta": 1.2e-08, + "lucuma": 1.2e-08, + "luscinia": 1.2e-08, + "maladaptation": 1.2e-08, + "marchantia": 1.2e-08, + "mazed": 1.2e-08, + "measle": 1.2e-08, + "metrosideros": 1.2e-08, + "microfauna": 1.2e-08, + "microgroove": 1.2e-08, + "milden": 1.2e-08, + "millrace": 1.2e-08, + "misconstruction": 1.2e-08, + "mittimus": 1.2e-08, + "mity": 1.2e-08, + "mooth": 1.2e-08, + "morainic": 1.2e-08, + "movieland": 1.2e-08, + "musicianly": 1.2e-08, + "mustelid": 1.2e-08, + "naebody": 1.2e-08, + "nandina": 1.2e-08, + "naturality": 1.2e-08, + "nebby": 1.2e-08, + "necessitous": 1.2e-08, + "nelken": 1.2e-08, + "nonplanar": 1.2e-08, + "northeaster": 1.2e-08, + "norumbega": 1.2e-08, + "nuphar": 1.2e-08, + "objectionably": 1.2e-08, + "oblateness": 1.2e-08, + "occidentalism": 1.2e-08, + "octan": 1.2e-08, + "octavarium": 1.2e-08, + "oestradiol": 1.2e-08, + "ootheca": 1.2e-08, + "oppian": 1.2e-08, + "orgastic": 1.2e-08, + "originative": 1.2e-08, + "orthoptic": 1.2e-08, + "oscillatoria": 1.2e-08, + "outrance": 1.2e-08, + "overmantel": 1.2e-08, + "pacolet": 1.2e-08, + "padmasana": 1.2e-08, + "palaeobotany": 1.2e-08, + "panada": 1.2e-08, + "panglossian": 1.2e-08, + "papiamento": 1.2e-08, + "papillate": 1.2e-08, + "parathyroidectomy": 1.2e-08, + "paretic": 1.2e-08, + "pasquin": 1.2e-08, + "passible": 1.2e-08, + "pedunculata": 1.2e-08, + "penghulu": 1.2e-08, + "pepperbox": 1.2e-08, + "pepperwood": 1.2e-08, + "pepsinogen": 1.2e-08, + "periscopic": 1.2e-08, + "perseverant": 1.2e-08, + "personalistic": 1.2e-08, + "phenolate": 1.2e-08, + "phiale": 1.2e-08, + "phocian": 1.2e-08, + "pillet": 1.2e-08, + "planch": 1.2e-08, + "planetarian": 1.2e-08, + "planimetric": 1.2e-08, + "plumet": 1.2e-08, + "poignance": 1.2e-08, + "poisonously": 1.2e-08, + "polacca": 1.2e-08, + "polygenetic": 1.2e-08, + "pongee": 1.2e-08, + "porphyrogenitus": 1.2e-08, + "pory": 1.2e-08, + "postcentral": 1.2e-08, + "posthole": 1.2e-08, + "powerfulness": 1.2e-08, + "premorbid": 1.2e-08, + "priscian": 1.2e-08, + "progovernment": 1.2e-08, + "propone": 1.2e-08, + "prototypal": 1.2e-08, + "psychoneurotic": 1.2e-08, + "pyroxenite": 1.2e-08, + "quean": 1.2e-08, + "quemado": 1.2e-08, + "quila": 1.2e-08, + "quillwork": 1.2e-08, + "raillery": 1.2e-08, + "ranchman": 1.2e-08, + "reaal": 1.2e-08, + "refoundation": 1.2e-08, + "remigration": 1.2e-08, + "remittent": 1.2e-08, + "representationalism": 1.2e-08, + "reputability": 1.2e-08, + "resthouse": 1.2e-08, + "ricinoleic": 1.2e-08, + "rigorousness": 1.2e-08, + "sabellian": 1.2e-08, + "saging": 1.2e-08, + "sahadeva": 1.2e-08, + "saltatory": 1.2e-08, + "saltern": 1.2e-08, + "saponi": 1.2e-08, + "schistocerca": 1.2e-08, + "scholion": 1.2e-08, + "schuhe": 1.2e-08, + "scintillate": 1.2e-08, + "scrapy": 1.2e-08, + "secretagogue": 1.2e-08, + "sectary": 1.2e-08, + "semang": 1.2e-08, + "semiahmoo": 1.2e-08, + "separata": 1.2e-08, + "serian": 1.2e-08, + "serigraphy": 1.2e-08, + "sharded": 1.2e-08, + "shesha": 1.2e-08, + "shreddy": 1.2e-08, + "siphonophore": 1.2e-08, + "sixte": 1.2e-08, + "sjambok": 1.2e-08, + "skatole": 1.2e-08, + "smew": 1.2e-08, + "spalax": 1.2e-08, + "spoonflower": 1.2e-08, + "stero": 1.2e-08, + "stockcar": 1.2e-08, + "stressfully": 1.2e-08, + "strobili": 1.2e-08, + "strow": 1.2e-08, + "subgeneric": 1.2e-08, + "submaxillary": 1.2e-08, + "suboccipital": 1.2e-08, + "superelevation": 1.2e-08, + "supersecret": 1.2e-08, + "surcingle": 1.2e-08, + "swinge": 1.2e-08, + "syllabification": 1.2e-08, + "syrphid": 1.2e-08, + "tagboard": 1.2e-08, + "tambourin": 1.2e-08, + "tapeless": 1.2e-08, + "tazia": 1.2e-08, + "telestial": 1.2e-08, + "tenebrionidae": 1.2e-08, + "tetrao": 1.2e-08, + "theatron": 1.2e-08, + "thyroglossal": 1.2e-08, + "tipulidae": 1.2e-08, + "tonically": 1.2e-08, + "tortonian": 1.2e-08, + "towheaded": 1.2e-08, + "trainmaster": 1.2e-08, + "tromba": 1.2e-08, + "tunelessly": 1.2e-08, + "tzolkin": 1.2e-08, + "ucal": 1.2e-08, + "unavowed": 1.2e-08, + "uncrushed": 1.2e-08, + "undeceived": 1.2e-08, + "unemployability": 1.2e-08, + "unextended": 1.2e-08, + "unmilitary": 1.2e-08, + "unpatrolled": 1.2e-08, + "unreligious": 1.2e-08, + "unrendered": 1.2e-08, + "unrequired": 1.2e-08, + "unrushed": 1.2e-08, + "urgence": 1.2e-08, + "variator": 1.2e-08, + "vedda": 1.2e-08, + "vedika": 1.2e-08, + "verdurous": 1.2e-08, + "versifier": 1.2e-08, + "wakonda": 1.2e-08, + "wanapum": 1.2e-08, + "warl": 1.2e-08, + "whipcord": 1.2e-08, + "whiteware": 1.2e-08, + "whosever": 1.2e-08, + "woning": 1.2e-08, + "worldling": 1.2e-08, + "xenotime": 1.2e-08, + "zanzibari": 1.2e-08, + "zemi": 1.2e-08, + "abreaction": 1.17e-08, + "absolver": 1.17e-08, + "acarology": 1.17e-08, + "acidulous": 1.17e-08, + "actinobacillus": 1.17e-08, + "adumbrate": 1.17e-08, + "agential": 1.17e-08, + "agoge": 1.17e-08, + "alliterate": 1.17e-08, + "allomorph": 1.17e-08, + "alluvion": 1.17e-08, + "aloysia": 1.17e-08, + "aluminous": 1.17e-08, + "alveus": 1.17e-08, + "ambrotype": 1.17e-08, + "amniote": 1.17e-08, + "anglomania": 1.17e-08, + "anodonta": 1.17e-08, + "apolar": 1.17e-08, + "arabin": 1.17e-08, + "arow": 1.17e-08, + "articulacy": 1.17e-08, + "artiodactyl": 1.17e-08, + "ascon": 1.17e-08, + "assimilator": 1.17e-08, + "asteroidea": 1.17e-08, + "autarchic": 1.17e-08, + "automatical": 1.17e-08, + "autotelic": 1.17e-08, + "autotransfusion": 1.17e-08, + "aweary": 1.17e-08, + "azoic": 1.17e-08, + "backwardly": 1.17e-08, + "baktun": 1.17e-08, + "bankbook": 1.17e-08, + "barracouta": 1.17e-08, + "baseliner": 1.17e-08, + "basilian": 1.17e-08, + "bearfoot": 1.17e-08, + "benefactive": 1.17e-08, + "bivalved": 1.17e-08, + "blissfulness": 1.17e-08, + "boxhead": 1.17e-08, + "bracker": 1.17e-08, + "branchy": 1.17e-08, + "cacodemon": 1.17e-08, + "caffa": 1.17e-08, + "cahoot": 1.17e-08, + "calceolaria": 1.17e-08, + "callet": 1.17e-08, + "calophyllum": 1.17e-08, + "caoutchouc": 1.17e-08, + "carburator": 1.17e-08, + "caressingly": 1.17e-08, + "caricatural": 1.17e-08, + "caruncle": 1.17e-08, + "caryophyllaceae": 1.17e-08, + "catholicon": 1.17e-08, + "causse": 1.17e-08, + "celebrative": 1.17e-08, + "celestite": 1.17e-08, + "cestode": 1.17e-08, + "chainless": 1.17e-08, + "channelize": 1.17e-08, + "chemoreception": 1.17e-08, + "chemosynthesis": 1.17e-08, + "chromatophore": 1.17e-08, + "chronal": 1.17e-08, + "chrysolite": 1.17e-08, + "chuffy": 1.17e-08, + "cicatricial": 1.17e-08, + "citronellol": 1.17e-08, + "clandestinity": 1.17e-08, + "claytonia": 1.17e-08, + "cocculus": 1.17e-08, + "colza": 1.17e-08, + "commentarial": 1.17e-08, + "commiphora": 1.17e-08, + "communicability": 1.17e-08, + "compassionless": 1.17e-08, + "conducing": 1.17e-08, + "configural": 1.17e-08, + "confute": 1.17e-08, + "constipate": 1.17e-08, + "continentally": 1.17e-08, + "coth": 1.17e-08, + "counterbore": 1.17e-08, + "crankpin": 1.17e-08, + "crex": 1.17e-08, + "culet": 1.17e-08, + "cupellation": 1.17e-08, + "deadlight": 1.17e-08, + "decanal": 1.17e-08, + "decapitator": 1.17e-08, + "decortication": 1.17e-08, + "decumanus": 1.17e-08, + "deiphobus": 1.17e-08, + "delouse": 1.17e-08, + "dendroid": 1.17e-08, + "detinue": 1.17e-08, + "deuteride": 1.17e-08, + "dextrocardia": 1.17e-08, + "diffusor": 1.17e-08, + "diomedea": 1.17e-08, + "diphthongization": 1.17e-08, + "dissipator": 1.17e-08, + "distensible": 1.17e-08, + "distrait": 1.17e-08, + "disunite": 1.17e-08, + "doxastic": 1.17e-08, + "drably": 1.17e-08, + "dragoness": 1.17e-08, + "dunite": 1.17e-08, + "durio": 1.17e-08, + "durry": 1.17e-08, + "dyscrasia": 1.17e-08, + "earthfall": 1.17e-08, + "electorial": 1.17e-08, + "elusion": 1.17e-08, + "emphysematous": 1.17e-08, + "engraft": 1.17e-08, + "epistemologist": 1.17e-08, + "equanimous": 1.17e-08, + "equestrienne": 1.17e-08, + "erythrocytic": 1.17e-08, + "esoterism": 1.17e-08, + "etymon": 1.17e-08, + "eucalyptol": 1.17e-08, + "evitable": 1.17e-08, + "exhorter": 1.17e-08, + "exiguous": 1.17e-08, + "exitus": 1.17e-08, + "exsanguinate": 1.17e-08, + "falciform": 1.17e-08, + "fallaway": 1.17e-08, + "fantasied": 1.17e-08, + "fasciculate": 1.17e-08, + "fayal": 1.17e-08, + "fixedness": 1.17e-08, + "flet": 1.17e-08, + "floristically": 1.17e-08, + "fluorapatite": 1.17e-08, + "fortuity": 1.17e-08, + "fraze": 1.17e-08, + "frizzing": 1.17e-08, + "fucoxanthin": 1.17e-08, + "gaspereau": 1.17e-08, + "gerenuk": 1.17e-08, + "germanize": 1.17e-08, + "glycyrrhizin": 1.17e-08, + "gradate": 1.17e-08, + "guffy": 1.17e-08, + "habitue": 1.17e-08, + "haikai": 1.17e-08, + "hatikvah": 1.17e-08, + "hectoliter": 1.17e-08, + "helminthiasis": 1.17e-08, + "hepatologist": 1.17e-08, + "hereat": 1.17e-08, + "hillsman": 1.17e-08, + "housebreaker": 1.17e-08, + "hydroxamic": 1.17e-08, + "hypoblast": 1.17e-08, + "hypothec": 1.17e-08, + "ideograph": 1.17e-08, + "improvidence": 1.17e-08, + "inceptor": 1.17e-08, + "increaser": 1.17e-08, + "indan": 1.17e-08, + "indemnitor": 1.17e-08, + "indivisibly": 1.17e-08, + "inopportunely": 1.17e-08, + "inswinger": 1.17e-08, + "intentionalism": 1.17e-08, + "intercrural": 1.17e-08, + "irritative": 1.17e-08, + "isobutyrate": 1.17e-08, + "isochoric": 1.17e-08, + "isochrone": 1.17e-08, + "isurus": 1.17e-08, + "jocose": 1.17e-08, + "junt": 1.17e-08, + "juring": 1.17e-08, + "juryman": 1.17e-08, + "kahili": 1.17e-08, + "kaoliang": 1.17e-08, + "khoka": 1.17e-08, + "kinkle": 1.17e-08, + "lallan": 1.17e-08, + "lambdoid": 1.17e-08, + "landdrost": 1.17e-08, + "laurate": 1.17e-08, + "laurencia": 1.17e-08, + "lipotropic": 1.17e-08, + "litster": 1.17e-08, + "ludian": 1.17e-08, + "lungis": 1.17e-08, + "mandom": 1.17e-08, + "manscape": 1.17e-08, + "maravi": 1.17e-08, + "marish": 1.17e-08, + "maritally": 1.17e-08, + "mausolea": 1.17e-08, + "maying": 1.17e-08, + "mealer": 1.17e-08, + "mediumistic": 1.17e-08, + "memorialist": 1.17e-08, + "mesonephric": 1.17e-08, + "mesosoma": 1.17e-08, + "metameric": 1.17e-08, + "methoxychlor": 1.17e-08, + "micrognathia": 1.17e-08, + "moble": 1.17e-08, + "moldavite": 1.17e-08, + "molter": 1.17e-08, + "monocentric": 1.17e-08, + "mulloway": 1.17e-08, + "multiplicand": 1.17e-08, + "mycetoma": 1.17e-08, + "nervii": 1.17e-08, + "nettlesome": 1.17e-08, + "nonane": 1.17e-08, + "nonmarket": 1.17e-08, + "nymphaeum": 1.17e-08, + "odeum": 1.17e-08, + "oleron": 1.17e-08, + "onium": 1.17e-08, + "ophthalmopathy": 1.17e-08, + "oreas": 1.17e-08, + "orthicon": 1.17e-08, + "ostracon": 1.17e-08, + "overcritical": 1.17e-08, + "overexpansion": 1.17e-08, + "oxytocic": 1.17e-08, + "pactolus": 1.17e-08, + "paniscus": 1.17e-08, + "papyrology": 1.17e-08, + "parabolically": 1.17e-08, + "passout": 1.17e-08, + "pedological": 1.17e-08, + "pelecanus": 1.17e-08, + "penult": 1.17e-08, + "perceivably": 1.17e-08, + "pertinacious": 1.17e-08, + "photinia": 1.17e-08, + "photoengraving": 1.17e-08, + "phyllostachys": 1.17e-08, + "pictland": 1.17e-08, + "piking": 1.17e-08, + "pilferer": 1.17e-08, + "pindling": 1.17e-08, + "piperonyl": 1.17e-08, + "pitanga": 1.17e-08, + "plomb": 1.17e-08, + "plutella": 1.17e-08, + "pluteus": 1.17e-08, + "poddy": 1.17e-08, + "poleman": 1.17e-08, + "polystichum": 1.17e-08, + "pontifices": 1.17e-08, + "postmedian": 1.17e-08, + "precontact": 1.17e-08, + "predevelopment": 1.17e-08, + "prevertebral": 1.17e-08, + "primatial": 1.17e-08, + "processive": 1.17e-08, + "procne": 1.17e-08, + "proso": 1.17e-08, + "prosthodontist": 1.17e-08, + "protozoology": 1.17e-08, + "pseudobulb": 1.17e-08, + "publicness": 1.17e-08, + "punti": 1.17e-08, + "purblind": 1.17e-08, + "putorius": 1.17e-08, + "pyran": 1.17e-08, + "quiverful": 1.17e-08, + "radiometrically": 1.17e-08, + "rasse": 1.17e-08, + "reconviction": 1.17e-08, + "rectorate": 1.17e-08, + "reedman": 1.17e-08, + "refigure": 1.17e-08, + "regrant": 1.17e-08, + "repine": 1.17e-08, + "resinate": 1.17e-08, + "restaur": 1.17e-08, + "rightfulness": 1.17e-08, + "rigol": 1.17e-08, + "saeima": 1.17e-08, + "sangho": 1.17e-08, + "sapote": 1.17e-08, + "sargus": 1.17e-08, + "scagliola": 1.17e-08, + "scarifier": 1.17e-08, + "schmelz": 1.17e-08, + "schochet": 1.17e-08, + "scholarism": 1.17e-08, + "scorpene": 1.17e-08, + "scragged": 1.17e-08, + "setoff": 1.17e-08, + "sexlessness": 1.17e-08, + "shallon": 1.17e-08, + "shamanist": 1.17e-08, + "shamefacedly": 1.17e-08, + "shawny": 1.17e-08, + "sistrum": 1.17e-08, + "skeletonization": 1.17e-08, + "skeuomorphic": 1.17e-08, + "skinful": 1.17e-08, + "skittled": 1.17e-08, + "slabber": 1.17e-08, + "softish": 1.17e-08, + "solanaceous": 1.17e-08, + "sordello": 1.17e-08, + "sosia": 1.17e-08, + "speciously": 1.17e-08, + "spiceland": 1.17e-08, + "starshot": 1.17e-08, + "stereograph": 1.17e-08, + "sterigmata": 1.17e-08, + "sternpost": 1.17e-08, + "stoichiometrically": 1.17e-08, + "studiedly": 1.17e-08, + "subagent": 1.17e-08, + "sucuri": 1.17e-08, + "suld": 1.17e-08, + "superpose": 1.17e-08, + "supinator": 1.17e-08, + "tagish": 1.17e-08, + "tanbark": 1.17e-08, + "tanged": 1.17e-08, + "tarsius": 1.17e-08, + "tautologous": 1.17e-08, + "tebu": 1.17e-08, + "terpineol": 1.17e-08, + "tetragon": 1.17e-08, + "theer": 1.17e-08, + "throbber": 1.17e-08, + "tillering": 1.17e-08, + "torse": 1.17e-08, + "trihydroxy": 1.17e-08, + "truculently": 1.17e-08, + "tuberculated": 1.17e-08, + "tyrannizing": 1.17e-08, + "unconcernedly": 1.17e-08, + "uncontestable": 1.17e-08, + "uncustomary": 1.17e-08, + "undefendable": 1.17e-08, + "unfallen": 1.17e-08, + "unhardened": 1.17e-08, + "unholiness": 1.17e-08, + "uniaxially": 1.17e-08, + "unpiloted": 1.17e-08, + "unrecognizably": 1.17e-08, + "upswell": 1.17e-08, + "vacuolization": 1.17e-08, + "vage": 1.17e-08, + "varanger": 1.17e-08, + "variometer": 1.17e-08, + "vierling": 1.17e-08, + "volsci": 1.17e-08, + "volubility": 1.17e-08, + "vulgarization": 1.17e-08, + "warmouth": 1.17e-08, + "whitecoat": 1.17e-08, + "wieldy": 1.17e-08, + "wigwag": 1.17e-08, + "winglike": 1.17e-08, + "workbox": 1.17e-08, + "yawner": 1.17e-08, + "yellowthroat": 1.17e-08, + "yesso": 1.17e-08, + "yoruban": 1.17e-08, + "zanthoxylum": 1.17e-08, + "abeyant": 1.15e-08, + "acclimatation": 1.15e-08, + "acrux": 1.15e-08, + "agkistrodon": 1.15e-08, + "alkahest": 1.15e-08, + "anatoxin": 1.15e-08, + "anencephalic": 1.15e-08, + "anilao": 1.15e-08, + "annexationist": 1.15e-08, + "anormal": 1.15e-08, + "anthonomus": 1.15e-08, + "anthranilic": 1.15e-08, + "archness": 1.15e-08, + "arctium": 1.15e-08, + "aroras": 1.15e-08, + "ascetically": 1.15e-08, + "ascidia": 1.15e-08, + "assumingly": 1.15e-08, + "astatic": 1.15e-08, + "atony": 1.15e-08, + "attorn": 1.15e-08, + "aviculture": 1.15e-08, + "balneotherapy": 1.15e-08, + "barograph": 1.15e-08, + "bastioned": 1.15e-08, + "bearishness": 1.15e-08, + "benzol": 1.15e-08, + "biaxially": 1.15e-08, + "biocatalyst": 1.15e-08, + "bisti": 1.15e-08, + "blackacre": 1.15e-08, + "bregma": 1.15e-08, + "briareus": 1.15e-08, + "bridgeable": 1.15e-08, + "brigandine": 1.15e-08, + "bulak": 1.15e-08, + "caecal": 1.15e-08, + "calcine": 1.15e-08, + "cannabinol": 1.15e-08, + "carbodiimide": 1.15e-08, + "carcel": 1.15e-08, + "cardiograph": 1.15e-08, + "catabolite": 1.15e-08, + "catchfly": 1.15e-08, + "caterwaul": 1.15e-08, + "catheterize": 1.15e-08, + "cembalo": 1.15e-08, + "centesimal": 1.15e-08, + "ceratopsian": 1.15e-08, + "champain": 1.15e-08, + "chort": 1.15e-08, + "chrestomathy": 1.15e-08, + "churchly": 1.15e-08, + "cicadellidae": 1.15e-08, + "cipo": 1.15e-08, + "clubmate": 1.15e-08, + "coastside": 1.15e-08, + "cogging": 1.15e-08, + "collywobbles": 1.15e-08, + "conniver": 1.15e-08, + "contect": 1.15e-08, + "contrapuntally": 1.15e-08, + "coprophilia": 1.15e-08, + "corah": 1.15e-08, + "cosecant": 1.15e-08, + "cosmologically": 1.15e-08, + "countercharge": 1.15e-08, + "cousinly": 1.15e-08, + "cowskin": 1.15e-08, + "criminogenic": 1.15e-08, + "crocketed": 1.15e-08, + "curdy": 1.15e-08, + "cursorial": 1.15e-08, + "cushite": 1.15e-08, + "cuttlebone": 1.15e-08, + "daleman": 1.15e-08, + "damie": 1.15e-08, + "dardan": 1.15e-08, + "deemster": 1.15e-08, + "dehisce": 1.15e-08, + "deino": 1.15e-08, + "departmentalization": 1.15e-08, + "dermatophyte": 1.15e-08, + "dimply": 1.15e-08, + "dingly": 1.15e-08, + "disadvantageously": 1.15e-08, + "distich": 1.15e-08, + "downcomer": 1.15e-08, + "dvaita": 1.15e-08, + "ectoparasitic": 1.15e-08, + "egotistically": 1.15e-08, + "electromedical": 1.15e-08, + "elemi": 1.15e-08, + "entasis": 1.15e-08, + "ephraimite": 1.15e-08, + "epicardium": 1.15e-08, + "equalitarian": 1.15e-08, + "esoterics": 1.15e-08, + "eternalism": 1.15e-08, + "ethylamine": 1.15e-08, + "evacuator": 1.15e-08, + "exeat": 1.15e-08, + "externalist": 1.15e-08, + "extracapsular": 1.15e-08, + "fabes": 1.15e-08, + "famulus": 1.15e-08, + "feculent": 1.15e-08, + "feoffee": 1.15e-08, + "finity": 1.15e-08, + "flabbergast": 1.15e-08, + "flowerless": 1.15e-08, + "foodless": 1.15e-08, + "franker": 1.15e-08, + "fretter": 1.15e-08, + "fringy": 1.15e-08, + "friulian": 1.15e-08, + "fructification": 1.15e-08, + "fullish": 1.15e-08, + "fungistatic": 1.15e-08, + "fusionist": 1.15e-08, + "gallicanism": 1.15e-08, + "gallinaceous": 1.15e-08, + "gasless": 1.15e-08, + "goldsmithing": 1.15e-08, + "gonadotropic": 1.15e-08, + "gosain": 1.15e-08, + "grandam": 1.15e-08, + "guayule": 1.15e-08, + "gunstone": 1.15e-08, + "gyrator": 1.15e-08, + "hazardously": 1.15e-08, + "heptad": 1.15e-08, + "hieros": 1.15e-08, + "hiper": 1.15e-08, + "hokan": 1.15e-08, + "homeworker": 1.15e-08, + "hydrolyzable": 1.15e-08, + "hydrometallurgy": 1.15e-08, + "hylobates": 1.15e-08, + "hymeneal": 1.15e-08, + "hymenolepis": 1.15e-08, + "illegibly": 1.15e-08, + "implacability": 1.15e-08, + "implicative": 1.15e-08, + "inaptly": 1.15e-08, + "inestimably": 1.15e-08, + "inexistence": 1.15e-08, + "inquisitional": 1.15e-08, + "inspirationally": 1.15e-08, + "intuitional": 1.15e-08, + "irresistibility": 1.15e-08, + "isostatically": 1.15e-08, + "jollification": 1.15e-08, + "jugate": 1.15e-08, + "jumbuck": 1.15e-08, + "kakistocracy": 1.15e-08, + "katharsis": 1.15e-08, + "kelter": 1.15e-08, + "kermis": 1.15e-08, + "kinbote": 1.15e-08, + "kiver": 1.15e-08, + "kovil": 1.15e-08, + "larve": 1.15e-08, + "leban": 1.15e-08, + "lenticularis": 1.15e-08, + "lippia": 1.15e-08, + "litigiousness": 1.15e-08, + "loquacity": 1.15e-08, + "lovability": 1.15e-08, + "luigino": 1.15e-08, + "lycaenidae": 1.15e-08, + "maline": 1.15e-08, + "mangonel": 1.15e-08, + "markab": 1.15e-08, + "marrot": 1.15e-08, + "mesothorax": 1.15e-08, + "metacarpus": 1.15e-08, + "metaplastic": 1.15e-08, + "methoxyl": 1.15e-08, + "microbicidal": 1.15e-08, + "microbiologically": 1.15e-08, + "microlithic": 1.15e-08, + "migmatite": 1.15e-08, + "mildewy": 1.15e-08, + "minatory": 1.15e-08, + "miridae": 1.15e-08, + "misgovernance": 1.15e-08, + "molinism": 1.15e-08, + "molossus": 1.15e-08, + "monocarpic": 1.15e-08, + "moosewood": 1.15e-08, + "munificently": 1.15e-08, + "mushroomy": 1.15e-08, + "myopathic": 1.15e-08, + "myrmica": 1.15e-08, + "myrosinase": 1.15e-08, + "nameable": 1.15e-08, + "nasalis": 1.15e-08, + "nautic": 1.15e-08, + "nautiloid": 1.15e-08, + "needlelike": 1.15e-08, + "needlewoman": 1.15e-08, + "nescience": 1.15e-08, + "nodulose": 1.15e-08, + "nonary": 1.15e-08, + "nonfeasance": 1.15e-08, + "nonmaterial": 1.15e-08, + "nonparticipation": 1.15e-08, + "norna": 1.15e-08, + "obsoletely": 1.15e-08, + "oenanthe": 1.15e-08, + "olenellus": 1.15e-08, + "ongaro": 1.15e-08, + "osteoma": 1.15e-08, + "otoplasty": 1.15e-08, + "outdraw": 1.15e-08, + "outstate": 1.15e-08, + "panglima": 1.15e-08, + "pannage": 1.15e-08, + "paracelsian": 1.15e-08, + "paratactic": 1.15e-08, + "pentateuchal": 1.15e-08, + "peritonsillar": 1.15e-08, + "perspicuity": 1.15e-08, + "phlegethon": 1.15e-08, + "phosphated": 1.15e-08, + "phyllosticta": 1.15e-08, + "phytogeographic": 1.15e-08, + "piddock": 1.15e-08, + "pipistrellus": 1.15e-08, + "pisidium": 1.15e-08, + "pittsburgher": 1.15e-08, + "podzolic": 1.15e-08, + "polymathic": 1.15e-08, + "polyoxymethylene": 1.15e-08, + "portiere": 1.15e-08, + "prepurchase": 1.15e-08, + "prozone": 1.15e-08, + "pterygopalatine": 1.15e-08, + "puerility": 1.15e-08, + "pyrroline": 1.15e-08, + "rainband": 1.15e-08, + "razzia": 1.15e-08, + "recessively": 1.15e-08, + "reduct": 1.15e-08, + "reduplicate": 1.15e-08, + "regeneratively": 1.15e-08, + "rejector": 1.15e-08, + "reoffer": 1.15e-08, + "retiarius": 1.15e-08, + "retiral": 1.15e-08, + "revaccination": 1.15e-08, + "ridgy": 1.15e-08, + "rynd": 1.15e-08, + "salvadora": 1.15e-08, + "sanctimoniousness": 1.15e-08, + "scoggin": 1.15e-08, + "scorchingly": 1.15e-08, + "scurfy": 1.15e-08, + "selectiveness": 1.15e-08, + "sepulture": 1.15e-08, + "shewa": 1.15e-08, + "simsim": 1.15e-08, + "sithe": 1.15e-08, + "sixthly": 1.15e-08, + "slithy": 1.15e-08, + "smudger": 1.15e-08, + "soarer": 1.15e-08, + "somata": 1.15e-08, + "sourer": 1.15e-08, + "specifiable": 1.15e-08, + "speechmaker": 1.15e-08, + "squarehead": 1.15e-08, + "stannum": 1.15e-08, + "statical": 1.15e-08, + "stellated": 1.15e-08, + "stepstone": 1.15e-08, + "stigmatism": 1.15e-08, + "stupp": 1.15e-08, + "suade": 1.15e-08, + "subfossil": 1.15e-08, + "sugarberry": 1.15e-08, + "surette": 1.15e-08, + "symmetrization": 1.15e-08, + "taiaha": 1.15e-08, + "tamanu": 1.15e-08, + "tariana": 1.15e-08, + "tastelessly": 1.15e-08, + "tentmaker": 1.15e-08, + "terebra": 1.15e-08, + "teucrium": 1.15e-08, + "thermophile": 1.15e-08, + "thysanoptera": 1.15e-08, + "timorously": 1.15e-08, + "tinhorn": 1.15e-08, + "toothing": 1.15e-08, + "transjordanian": 1.15e-08, + "translative": 1.15e-08, + "trunkless": 1.15e-08, + "tusayan": 1.15e-08, + "tusky": 1.15e-08, + "tutee": 1.15e-08, + "ulmo": 1.15e-08, + "unbar": 1.15e-08, + "unloose": 1.15e-08, + "unmasculine": 1.15e-08, + "unprogressive": 1.15e-08, + "unreadiness": 1.15e-08, + "unrepented": 1.15e-08, + "unsilent": 1.15e-08, + "unsticking": 1.15e-08, + "ursolic": 1.15e-08, + "vanadyl": 1.15e-08, + "venery": 1.15e-08, + "vidette": 1.15e-08, + "vigesimal": 1.15e-08, + "vougeot": 1.15e-08, + "wingspread": 1.15e-08, + "winsomely": 1.15e-08, + "winterkill": 1.15e-08, + "wolve": 1.15e-08, + "yachtswoman": 1.15e-08, + "zonotrichia": 1.15e-08, + "accomplishable": 1.12e-08, + "adenopathy": 1.12e-08, + "adjectivally": 1.12e-08, + "adorer": 1.12e-08, + "adventitia": 1.12e-08, + "aizoon": 1.12e-08, + "akinesia": 1.12e-08, + "alauda": 1.12e-08, + "algebraist": 1.12e-08, + "amblyopic": 1.12e-08, + "anacrusis": 1.12e-08, + "ancylus": 1.12e-08, + "anicut": 1.12e-08, + "antidotal": 1.12e-08, + "apolline": 1.12e-08, + "apparence": 1.12e-08, + "apsis": 1.12e-08, + "ardency": 1.12e-08, + "argolid": 1.12e-08, + "arval": 1.12e-08, + "autochthon": 1.12e-08, + "awfu": 1.12e-08, + "baculites": 1.12e-08, + "banchi": 1.12e-08, + "beatifically": 1.12e-08, + "befriender": 1.12e-08, + "beheader": 1.12e-08, + "bellying": 1.12e-08, + "benignant": 1.12e-08, + "biomagnetic": 1.12e-08, + "biparental": 1.12e-08, + "biramous": 1.12e-08, + "biserial": 1.12e-08, + "blet": 1.12e-08, + "bloused": 1.12e-08, + "brainpan": 1.12e-08, + "brank": 1.12e-08, + "burnisher": 1.12e-08, + "byplay": 1.12e-08, + "cagily": 1.12e-08, + "carditis": 1.12e-08, + "carminic": 1.12e-08, + "carucate": 1.12e-08, + "castellar": 1.12e-08, + "catastrophist": 1.12e-08, + "cerithium": 1.12e-08, + "chaetodon": 1.12e-08, + "chasidim": 1.12e-08, + "chawk": 1.12e-08, + "chemis": 1.12e-08, + "chloric": 1.12e-08, + "chryselephantine": 1.12e-08, + "cicindela": 1.12e-08, + "cista": 1.12e-08, + "clockmaking": 1.12e-08, + "coleoptile": 1.12e-08, + "collusively": 1.12e-08, + "combustive": 1.12e-08, + "companionably": 1.12e-08, + "concavely": 1.12e-08, + "concernment": 1.12e-08, + "confiture": 1.12e-08, + "corticium": 1.12e-08, + "countermarch": 1.12e-08, + "countersignature": 1.12e-08, + "cricothyroid": 1.12e-08, + "crookback": 1.12e-08, + "crosscurrent": 1.12e-08, + "crower": 1.12e-08, + "cruelness": 1.12e-08, + "culturist": 1.12e-08, + "cumbrous": 1.12e-08, + "cuspidor": 1.12e-08, + "cyathea": 1.12e-08, + "cypriote": 1.12e-08, + "darg": 1.12e-08, + "dehumidify": 1.12e-08, + "delate": 1.12e-08, + "demigoddess": 1.12e-08, + "dentigerous": 1.12e-08, + "desiderative": 1.12e-08, + "detrain": 1.12e-08, + "deucedly": 1.12e-08, + "discarnate": 1.12e-08, + "disembodiment": 1.12e-08, + "dissimulate": 1.12e-08, + "doddie": 1.12e-08, + "doubleness": 1.12e-08, + "downthrow": 1.12e-08, + "druidical": 1.12e-08, + "duckpin": 1.12e-08, + "dueler": 1.12e-08, + "dyak": 1.12e-08, + "dyarchy": 1.12e-08, + "dyeable": 1.12e-08, + "dynamiter": 1.12e-08, + "economism": 1.12e-08, + "electrolyze": 1.12e-08, + "eleusine": 1.12e-08, + "elohist": 1.12e-08, + "embosser": 1.12e-08, + "emmenagogue": 1.12e-08, + "empidonax": 1.12e-08, + "endosteal": 1.12e-08, + "entia": 1.12e-08, + "equipotent": 1.12e-08, + "erythromelalgia": 1.12e-08, + "esperantist": 1.12e-08, + "ethnobiology": 1.12e-08, + "evangelically": 1.12e-08, + "extemporize": 1.12e-08, + "extortionately": 1.12e-08, + "fabliau": 1.12e-08, + "favilla": 1.12e-08, + "fayalite": 1.12e-08, + "fimbriate": 1.12e-08, + "fise": 1.12e-08, + "flapdoodle": 1.12e-08, + "flavo": 1.12e-08, + "floreal": 1.12e-08, + "forgie": 1.12e-08, + "fourpenny": 1.12e-08, + "freakishness": 1.12e-08, + "fulmination": 1.12e-08, + "gallinae": 1.12e-08, + "gasterosteus": 1.12e-08, + "geophone": 1.12e-08, + "ghoulishly": 1.12e-08, + "goatfish": 1.12e-08, + "goback": 1.12e-08, + "gossypol": 1.12e-08, + "greenkeeping": 1.12e-08, + "grinner": 1.12e-08, + "grippingly": 1.12e-08, + "gunj": 1.12e-08, + "gustation": 1.12e-08, + "guttate": 1.12e-08, + "habitate": 1.12e-08, + "hackler": 1.12e-08, + "hairbreadth": 1.12e-08, + "halfman": 1.12e-08, + "haversian": 1.12e-08, + "helminthology": 1.12e-08, + "hemoperitoneum": 1.12e-08, + "histogenesis": 1.12e-08, + "hoddy": 1.12e-08, + "homam": 1.12e-08, + "honeymooner": 1.12e-08, + "hydrogenolysis": 1.12e-08, + "hymenaeus": 1.12e-08, + "hyperacidity": 1.12e-08, + "hypercoagulability": 1.12e-08, + "hyperfocal": 1.12e-08, + "hyperpigmented": 1.12e-08, + "ilima": 1.12e-08, + "incide": 1.12e-08, + "inebriety": 1.12e-08, + "inelasticity": 1.12e-08, + "inkstone": 1.12e-08, + "inquiringly": 1.12e-08, + "instauration": 1.12e-08, + "intracortical": 1.12e-08, + "ipecacuanha": 1.12e-08, + "jagirdar": 1.12e-08, + "juck": 1.12e-08, + "jungled": 1.12e-08, + "kahar": 1.12e-08, + "kohistani": 1.12e-08, + "kubba": 1.12e-08, + "kurmi": 1.12e-08, + "laureateship": 1.12e-08, + "libber": 1.12e-08, + "limpness": 1.12e-08, + "linearize": 1.12e-08, + "linkman": 1.12e-08, + "literalistic": 1.12e-08, + "lithopone": 1.12e-08, + "longfin": 1.12e-08, + "lusciousness": 1.12e-08, + "lutjanus": 1.12e-08, + "lythrum": 1.12e-08, + "mahican": 1.12e-08, + "malacostraca": 1.12e-08, + "manyfold": 1.12e-08, + "masting": 1.12e-08, + "melam": 1.12e-08, + "melodramatics": 1.12e-08, + "merops": 1.12e-08, + "mesembryanthemum": 1.12e-08, + "messiahship": 1.12e-08, + "metathorax": 1.12e-08, + "misattribute": 1.12e-08, + "monial": 1.12e-08, + "monomorphism": 1.12e-08, + "muhlenbergia": 1.12e-08, + "myriapoda": 1.12e-08, + "nephrosis": 1.12e-08, + "neuromyelitis": 1.12e-08, + "nonalignment": 1.12e-08, + "nonintercourse": 1.12e-08, + "obdurately": 1.12e-08, + "obliterator": 1.12e-08, + "ocellar": 1.12e-08, + "odontoblast": 1.12e-08, + "olein": 1.12e-08, + "ornithorhynchus": 1.12e-08, + "palmae": 1.12e-08, + "paraldehyde": 1.12e-08, + "pardesi": 1.12e-08, + "patronization": 1.12e-08, + "perceptional": 1.12e-08, + "perfidiously": 1.12e-08, + "perilymph": 1.12e-08, + "perineural": 1.12e-08, + "perisphere": 1.12e-08, + "perspicuously": 1.12e-08, + "petrosa": 1.12e-08, + "pheasantry": 1.12e-08, + "pheidole": 1.12e-08, + "phototropic": 1.12e-08, + "phytol": 1.12e-08, + "phytopathogenic": 1.12e-08, + "pierides": 1.12e-08, + "pinguicula": 1.12e-08, + "pipper": 1.12e-08, + "pledgee": 1.12e-08, + "pleuron": 1.12e-08, + "portreeve": 1.12e-08, + "posteromedial": 1.12e-08, + "postilion": 1.12e-08, + "predicatively": 1.12e-08, + "preposterousness": 1.12e-08, + "prescientific": 1.12e-08, + "priestcraft": 1.12e-08, + "prink": 1.12e-08, + "processionary": 1.12e-08, + "proclaimer": 1.12e-08, + "provisory": 1.12e-08, + "puparium": 1.12e-08, + "purpure": 1.12e-08, + "putrescence": 1.12e-08, + "pyrola": 1.12e-08, + "quibbler": 1.12e-08, + "ragingly": 1.12e-08, + "ramet": 1.12e-08, + "rapaciousness": 1.12e-08, + "raser": 1.12e-08, + "recharter": 1.12e-08, + "redeal": 1.12e-08, + "resitting": 1.12e-08, + "rhombencephalon": 1.12e-08, + "rhymester": 1.12e-08, + "richen": 1.12e-08, + "roey": 1.12e-08, + "roguishly": 1.12e-08, + "rontgen": 1.12e-08, + "rotala": 1.12e-08, + "ruralist": 1.12e-08, + "salten": 1.12e-08, + "sapor": 1.12e-08, + "scaramouch": 1.12e-08, + "schematization": 1.12e-08, + "schisandra": 1.12e-08, + "schistose": 1.12e-08, + "schout": 1.12e-08, + "scrump": 1.12e-08, + "scumming": 1.12e-08, + "seacraft": 1.12e-08, + "sectile": 1.12e-08, + "seedtime": 1.12e-08, + "seignorage": 1.12e-08, + "semblable": 1.12e-08, + "septenary": 1.12e-08, + "serpentes": 1.12e-08, + "sheepman": 1.12e-08, + "shittim": 1.12e-08, + "shog": 1.12e-08, + "sighter": 1.12e-08, + "sinal": 1.12e-08, + "slabbing": 1.12e-08, + "slaggy": 1.12e-08, + "sleety": 1.12e-08, + "slightness": 1.12e-08, + "smally": 1.12e-08, + "somatically": 1.12e-08, + "sorosis": 1.12e-08, + "spiccato": 1.12e-08, + "sporulate": 1.12e-08, + "sput": 1.12e-08, + "stearyl": 1.12e-08, + "stinkhorn": 1.12e-08, + "stinkweed": 1.12e-08, + "stof": 1.12e-08, + "stoof": 1.12e-08, + "strich": 1.12e-08, + "subrogate": 1.12e-08, + "sugan": 1.12e-08, + "suppost": 1.12e-08, + "suprascapular": 1.12e-08, + "swarth": 1.12e-08, + "swedenborgianism": 1.12e-08, + "swordman": 1.12e-08, + "symphysiotomy": 1.12e-08, + "sympodial": 1.12e-08, + "synostosis": 1.12e-08, + "systemization": 1.12e-08, + "tachinidae": 1.12e-08, + "tapete": 1.12e-08, + "tarasco": 1.12e-08, + "tarrow": 1.12e-08, + "tenace": 1.12e-08, + "tendentiously": 1.12e-08, + "tentorium": 1.12e-08, + "tepidarium": 1.12e-08, + "termino": 1.12e-08, + "thrain": 1.12e-08, + "thrombogenic": 1.12e-08, + "thumbless": 1.12e-08, + "tibbie": 1.12e-08, + "tillite": 1.12e-08, + "timberjack": 1.12e-08, + "transhumant": 1.12e-08, + "transpolar": 1.12e-08, + "transversality": 1.12e-08, + "triene": 1.12e-08, + "trilobed": 1.12e-08, + "tripolar": 1.12e-08, + "tritonia": 1.12e-08, + "tuath": 1.12e-08, + "tuffet": 1.12e-08, + "tulchin": 1.12e-08, + "twistable": 1.12e-08, + "unadvisable": 1.12e-08, + "unbiasedly": 1.12e-08, + "unblushing": 1.12e-08, + "uncanniness": 1.12e-08, + "uncombined": 1.12e-08, + "underhandedly": 1.12e-08, + "unfrocked": 1.12e-08, + "unglue": 1.12e-08, + "unperfect": 1.12e-08, + "unposed": 1.12e-08, + "unrigged": 1.12e-08, + "unsatisfactoriness": 1.12e-08, + "unstacked": 1.12e-08, + "unsubtly": 1.12e-08, + "ushabti": 1.12e-08, + "varve": 1.12e-08, + "veps": 1.12e-08, + "vulgarism": 1.12e-08, + "vum": 1.12e-08, + "waggly": 1.12e-08, + "weaner": 1.12e-08, + "weeda": 1.12e-08, + "wernerian": 1.12e-08, + "wharfinger": 1.12e-08, + "wharfside": 1.12e-08, + "whitesmith": 1.12e-08, + "wildish": 1.12e-08, + "wintun": 1.12e-08, + "wowt": 1.12e-08, + "yarraman": 1.12e-08, + "yeld": 1.12e-08, + "yolky": 1.12e-08, + "zoic": 1.12e-08, + "zoogeographic": 1.12e-08, + "zorilla": 1.12e-08, + "abstemiousness": 1.1e-08, + "acana": 1.1e-08, + "accelerative": 1.1e-08, + "acetylacetone": 1.1e-08, + "acquittance": 1.1e-08, + "actinomycosis": 1.1e-08, + "albigenses": 1.1e-08, + "alioth": 1.1e-08, + "almain": 1.1e-08, + "alopecurus": 1.1e-08, + "amanitin": 1.1e-08, + "ampelopsis": 1.1e-08, + "amusedly": 1.1e-08, + "amygdalus": 1.1e-08, + "androecium": 1.1e-08, + "anglic": 1.1e-08, + "anticipative": 1.1e-08, + "antipyrine": 1.1e-08, + "architeuthis": 1.1e-08, + "argemone": 1.1e-08, + "arverni": 1.1e-08, + "aryanism": 1.1e-08, + "asthenic": 1.1e-08, + "atactic": 1.1e-08, + "atavist": 1.1e-08, + "avahi": 1.1e-08, + "babirusa": 1.1e-08, + "bakongo": 1.1e-08, + "banian": 1.1e-08, + "banket": 1.1e-08, + "barbarianism": 1.1e-08, + "bastardly": 1.1e-08, + "bazoo": 1.1e-08, + "belait": 1.1e-08, + "benthamite": 1.1e-08, + "benzil": 1.1e-08, + "bestowment": 1.1e-08, + "bibio": 1.1e-08, + "birching": 1.1e-08, + "bixa": 1.1e-08, + "bonneted": 1.1e-08, + "bosk": 1.1e-08, + "brahmani": 1.1e-08, + "brazilwood": 1.1e-08, + "briefness": 1.1e-08, + "brocard": 1.1e-08, + "brooklet": 1.1e-08, + "cajan": 1.1e-08, + "calabaza": 1.1e-08, + "caliver": 1.1e-08, + "callosal": 1.1e-08, + "calotte": 1.1e-08, + "cantara": 1.1e-08, + "capias": 1.1e-08, + "cardial": 1.1e-08, + "cardplayer": 1.1e-08, + "casaba": 1.1e-08, + "catamenia": 1.1e-08, + "catboat": 1.1e-08, + "cellarer": 1.1e-08, + "chacma": 1.1e-08, + "chirpily": 1.1e-08, + "choluteca": 1.1e-08, + "chronometry": 1.1e-08, + "chrysis": 1.1e-08, + "chthonian": 1.1e-08, + "circuital": 1.1e-08, + "clairaudience": 1.1e-08, + "clawless": 1.1e-08, + "cleistogamous": 1.1e-08, + "clocker": 1.1e-08, + "cloudlike": 1.1e-08, + "combustibility": 1.1e-08, + "comprehensibly": 1.1e-08, + "conceiver": 1.1e-08, + "concertedly": 1.1e-08, + "consultee": 1.1e-08, + "contentless": 1.1e-08, + "controllership": 1.1e-08, + "conversable": 1.1e-08, + "copartnership": 1.1e-08, + "coptis": 1.1e-08, + "corriedale": 1.1e-08, + "cosmographer": 1.1e-08, + "counterfire": 1.1e-08, + "crusca": 1.1e-08, + "crutched": 1.1e-08, + "cubiculum": 1.1e-08, + "cyanic": 1.1e-08, + "dasheen": 1.1e-08, + "debauchee": 1.1e-08, + "deific": 1.1e-08, + "delphinidae": 1.1e-08, + "dermestid": 1.1e-08, + "desman": 1.1e-08, + "detectably": 1.1e-08, + "devitrification": 1.1e-08, + "diarchy": 1.1e-08, + "diethanolamine": 1.1e-08, + "diminisher": 1.1e-08, + "dinkey": 1.1e-08, + "disarrange": 1.1e-08, + "discourteously": 1.1e-08, + "dispersement": 1.1e-08, + "distributively": 1.1e-08, + "divergently": 1.1e-08, + "doggish": 1.1e-08, + "dulia": 1.1e-08, + "durrie": 1.1e-08, + "eleutheria": 1.1e-08, + "embrocation": 1.1e-08, + "emys": 1.1e-08, + "enochic": 1.1e-08, + "eremite": 1.1e-08, + "erythronium": 1.1e-08, + "euskera": 1.1e-08, + "evenhandedly": 1.1e-08, + "evenhandedness": 1.1e-08, + "exequatur": 1.1e-08, + "extensometer": 1.1e-08, + "exuviae": 1.1e-08, + "falstaffian": 1.1e-08, + "farfel": 1.1e-08, + "fastigiate": 1.1e-08, + "fattiness": 1.1e-08, + "ferrosilicon": 1.1e-08, + "firemaster": 1.1e-08, + "flabbiness": 1.1e-08, + "floorwalker": 1.1e-08, + "fronter": 1.1e-08, + "froufrou": 1.1e-08, + "frush": 1.1e-08, + "fyke": 1.1e-08, + "ganton": 1.1e-08, + "genetrix": 1.1e-08, + "genotypically": 1.1e-08, + "gentlemanliness": 1.1e-08, + "germinative": 1.1e-08, + "girondist": 1.1e-08, + "glyceria": 1.1e-08, + "gorce": 1.1e-08, + "granulose": 1.1e-08, + "guianese": 1.1e-08, + "habiru": 1.1e-08, + "halophytic": 1.1e-08, + "hardstand": 1.1e-08, + "hech": 1.1e-08, + "hectically": 1.1e-08, + "hemiacetal": 1.1e-08, + "hemocyte": 1.1e-08, + "hesperis": 1.1e-08, + "hevi": 1.1e-08, + "hewel": 1.1e-08, + "hipshot": 1.1e-08, + "hirudo": 1.1e-08, + "horologium": 1.1e-08, + "hotelkeeper": 1.1e-08, + "hypercorrection": 1.1e-08, + "ilokano": 1.1e-08, + "improvisor": 1.1e-08, + "inconsequentially": 1.1e-08, + "indianism": 1.1e-08, + "inspiriting": 1.1e-08, + "interclass": 1.1e-08, + "intermixture": 1.1e-08, + "joylessly": 1.1e-08, + "kanat": 1.1e-08, + "kelk": 1.1e-08, + "kioko": 1.1e-08, + "komati": 1.1e-08, + "ladyfinger": 1.1e-08, + "lagen": 1.1e-08, + "laplander": 1.1e-08, + "lazaret": 1.1e-08, + "leatherworker": 1.1e-08, + "lethean": 1.1e-08, + "leucite": 1.1e-08, + "licorne": 1.1e-08, + "lithographically": 1.1e-08, + "lodowick": 1.1e-08, + "lored": 1.1e-08, + "lunare": 1.1e-08, + "lunel": 1.1e-08, + "luter": 1.1e-08, + "machree": 1.1e-08, + "malcontented": 1.1e-08, + "mergus": 1.1e-08, + "meros": 1.1e-08, + "microlepidoptera": 1.1e-08, + "micturate": 1.1e-08, + "milkiness": 1.1e-08, + "minuter": 1.1e-08, + "misclassify": 1.1e-08, + "modally": 1.1e-08, + "moisty": 1.1e-08, + "monadology": 1.1e-08, + "montjoy": 1.1e-08, + "munge": 1.1e-08, + "mutative": 1.1e-08, + "mydriatic": 1.1e-08, + "myotomy": 1.1e-08, + "naumkeag": 1.1e-08, + "negatron": 1.1e-08, + "nonconstructive": 1.1e-08, + "nonlife": 1.1e-08, + "nonmusical": 1.1e-08, + "nosological": 1.1e-08, + "notan": 1.1e-08, + "novatian": 1.1e-08, + "nubbly": 1.1e-08, + "odiously": 1.1e-08, + "offsider": 1.1e-08, + "opusculum": 1.1e-08, + "orphean": 1.1e-08, + "overtrain": 1.1e-08, + "pacemaking": 1.1e-08, + "palaeoclimatology": 1.1e-08, + "passen": 1.1e-08, + "pataka": 1.1e-08, + "pauperization": 1.1e-08, + "pentadactyl": 1.1e-08, + "pentamerous": 1.1e-08, + "pericellular": 1.1e-08, + "pericentric": 1.1e-08, + "permalloy": 1.1e-08, + "perognathus": 1.1e-08, + "petrogenesis": 1.1e-08, + "pettifog": 1.1e-08, + "phenanthroline": 1.1e-08, + "phenethyl": 1.1e-08, + "photoluminescent": 1.1e-08, + "photomicrograph": 1.1e-08, + "pici": 1.1e-08, + "pikestaff": 1.1e-08, + "pimienta": 1.1e-08, + "pinacle": 1.1e-08, + "placatory": 1.1e-08, + "pleuropneumonia": 1.1e-08, + "plup": 1.1e-08, + "postmillennial": 1.1e-08, + "postocular": 1.1e-08, + "pounamu": 1.1e-08, + "predestinarian": 1.1e-08, + "prelature": 1.1e-08, + "premonstratensian": 1.1e-08, + "preopercle": 1.1e-08, + "protrusive": 1.1e-08, + "pulsatility": 1.1e-08, + "pulsion": 1.1e-08, + "pyretic": 1.1e-08, + "pyrrhonian": 1.1e-08, + "quadricentennial": 1.1e-08, + "raphides": 1.1e-08, + "recommencement": 1.1e-08, + "rectangularly": 1.1e-08, + "renewer": 1.1e-08, + "requote": 1.1e-08, + "resole": 1.1e-08, + "rhaetic": 1.1e-08, + "ripely": 1.1e-08, + "roaded": 1.1e-08, + "robusticity": 1.1e-08, + "rockrose": 1.1e-08, + "rougeau": 1.1e-08, + "sacrococcygeal": 1.1e-08, + "salability": 1.1e-08, + "salema": 1.1e-08, + "sanche": 1.1e-08, + "sapindaceae": 1.1e-08, + "sectored": 1.1e-08, + "semiring": 1.1e-08, + "shide": 1.1e-08, + "shirtmaker": 1.1e-08, + "sickled": 1.1e-08, + "sigillaria": 1.1e-08, + "sium": 1.1e-08, + "smartish": 1.1e-08, + "snowie": 1.1e-08, + "sody": 1.1e-08, + "sogginess": 1.1e-08, + "sparus": 1.1e-08, + "spicebush": 1.1e-08, + "spritsail": 1.1e-08, + "sternite": 1.1e-08, + "stower": 1.1e-08, + "strangulate": 1.1e-08, + "stridulatory": 1.1e-08, + "strongback": 1.1e-08, + "studiousness": 1.1e-08, + "stuiver": 1.1e-08, + "submultiple": 1.1e-08, + "superincumbent": 1.1e-08, + "supervenient": 1.1e-08, + "swietenia": 1.1e-08, + "tanacetum": 1.1e-08, + "taurid": 1.1e-08, + "taxpaid": 1.1e-08, + "tenebrio": 1.1e-08, + "thereinto": 1.1e-08, + "thimbleweed": 1.1e-08, + "throwout": 1.1e-08, + "tibiofemoral": 1.1e-08, + "tirer": 1.1e-08, + "toosh": 1.1e-08, + "torcher": 1.1e-08, + "toxicologic": 1.1e-08, + "transpositional": 1.1e-08, + "trichologist": 1.1e-08, + "trowing": 1.1e-08, + "trygon": 1.1e-08, + "tweaky": 1.1e-08, + "unappeasable": 1.1e-08, + "unapplied": 1.1e-08, + "unconsented": 1.1e-08, + "underbridge": 1.1e-08, + "underexpose": 1.1e-08, + "undismayed": 1.1e-08, + "unescapable": 1.1e-08, + "unflawed": 1.1e-08, + "unhorse": 1.1e-08, + "unideal": 1.1e-08, + "unimprovable": 1.1e-08, + "unintelligence": 1.1e-08, + "unmeaning": 1.1e-08, + "unmutated": 1.1e-08, + "unobligated": 1.1e-08, + "unpreserved": 1.1e-08, + "unsprayed": 1.1e-08, + "untoasted": 1.1e-08, + "uplander": 1.1e-08, + "vectorially": 1.1e-08, + "vespidae": 1.1e-08, + "viatical": 1.1e-08, + "visaya": 1.1e-08, + "viscountcy": 1.1e-08, + "vocalion": 1.1e-08, + "wallower": 1.1e-08, + "warrantable": 1.1e-08, + "weeze": 1.1e-08, + "wristlock": 1.1e-08, + "yakan": 1.1e-08, + "youp": 1.1e-08, + "zwieback": 1.1e-08, + "zyme": 1.1e-08, + "acanthocephala": 1.07e-08, + "actaea": 1.07e-08, + "addend": 1.07e-08, + "addlepated": 1.07e-08, + "alderwoman": 1.07e-08, + "allotropic": 1.07e-08, + "anisocoria": 1.07e-08, + "answerability": 1.07e-08, + "apoidea": 1.07e-08, + "archvillain": 1.07e-08, + "argali": 1.07e-08, + "argenteum": 1.07e-08, + "arvel": 1.07e-08, + "asarum": 1.07e-08, + "ascomycete": 1.07e-08, + "asphaltum": 1.07e-08, + "athanasia": 1.07e-08, + "atip": 1.07e-08, + "attackable": 1.07e-08, + "auscultatory": 1.07e-08, + "baft": 1.07e-08, + "baltimorean": 1.07e-08, + "banate": 1.07e-08, + "barbital": 1.07e-08, + "barbone": 1.07e-08, + "beachmaster": 1.07e-08, + "belah": 1.07e-08, + "binna": 1.07e-08, + "biomicroscopy": 1.07e-08, + "bitemporal": 1.07e-08, + "blazy": 1.07e-08, + "bloodletter": 1.07e-08, + "borean": 1.07e-08, + "bouldery": 1.07e-08, + "brigantia": 1.07e-08, + "bronzite": 1.07e-08, + "bullishly": 1.07e-08, + "cadette": 1.07e-08, + "caecilian": 1.07e-08, + "campanini": 1.07e-08, + "cantref": 1.07e-08, + "capsulated": 1.07e-08, + "carbonator": 1.07e-08, + "castrator": 1.07e-08, + "cedrela": 1.07e-08, + "cephalad": 1.07e-08, + "cerastes": 1.07e-08, + "cervid": 1.07e-08, + "cherubin": 1.07e-08, + "chondrogenesis": 1.07e-08, + "classer": 1.07e-08, + "clearwing": 1.07e-08, + "clethra": 1.07e-08, + "cliffed": 1.07e-08, + "cocorico": 1.07e-08, + "collimate": 1.07e-08, + "commencer": 1.07e-08, + "complaisance": 1.07e-08, + "complicatedly": 1.07e-08, + "conclusiveness": 1.07e-08, + "conoidal": 1.07e-08, + "continentality": 1.07e-08, + "conveniency": 1.07e-08, + "coparent": 1.07e-08, + "corbula": 1.07e-08, + "corncrib": 1.07e-08, + "coyo": 1.07e-08, + "crabber": 1.07e-08, + "cringer": 1.07e-08, + "crupper": 1.07e-08, + "cunningness": 1.07e-08, + "cupule": 1.07e-08, + "cytotoxin": 1.07e-08, + "daggered": 1.07e-08, + "daitya": 1.07e-08, + "daiva": 1.07e-08, + "decennium": 1.07e-08, + "defog": 1.07e-08, + "demonological": 1.07e-08, + "dermaptera": 1.07e-08, + "diamondiferous": 1.07e-08, + "diastase": 1.07e-08, + "discerner": 1.07e-08, + "disjunctively": 1.07e-08, + "distinguisher": 1.07e-08, + "domy": 1.07e-08, + "downhaul": 1.07e-08, + "ecad": 1.07e-08, + "eclamptic": 1.07e-08, + "ecliptical": 1.07e-08, + "electroanalytical": 1.07e-08, + "emergently": 1.07e-08, + "empetrum": 1.07e-08, + "enfeeblement": 1.07e-08, + "enfeoff": 1.07e-08, + "enure": 1.07e-08, + "epical": 1.07e-08, + "epideictic": 1.07e-08, + "erysiphe": 1.07e-08, + "erythraean": 1.07e-08, + "essling": 1.07e-08, + "eternalize": 1.07e-08, + "euphausia": 1.07e-08, + "eversible": 1.07e-08, + "exciseman": 1.07e-08, + "exhaustedly": 1.07e-08, + "exogyra": 1.07e-08, + "externe": 1.07e-08, + "extortioner": 1.07e-08, + "falteringly": 1.07e-08, + "fashionability": 1.07e-08, + "featural": 1.07e-08, + "fictious": 1.07e-08, + "firbolg": 1.07e-08, + "fireworm": 1.07e-08, + "floriated": 1.07e-08, + "fluxional": 1.07e-08, + "foamer": 1.07e-08, + "foreteller": 1.07e-08, + "fretfully": 1.07e-08, + "fulgurite": 1.07e-08, + "fumigator": 1.07e-08, + "furfur": 1.07e-08, + "furtherest": 1.07e-08, + "furunculosis": 1.07e-08, + "gamb": 1.07e-08, + "ganoid": 1.07e-08, + "gauntleted": 1.07e-08, + "gillyflower": 1.07e-08, + "girasole": 1.07e-08, + "gisla": 1.07e-08, + "gramicidin": 1.07e-08, + "graveness": 1.07e-08, + "groined": 1.07e-08, + "groundlessly": 1.07e-08, + "gruntled": 1.07e-08, + "haemaphysalis": 1.07e-08, + "haily": 1.07e-08, + "hamites": 1.07e-08, + "haoma": 1.07e-08, + "hoise": 1.07e-08, + "hornist": 1.07e-08, + "hospodar": 1.07e-08, + "hydrocotyle": 1.07e-08, + "hydrotalcite": 1.07e-08, + "hypercomplex": 1.07e-08, + "ichthus": 1.07e-08, + "incipiently": 1.07e-08, + "incriminatory": 1.07e-08, + "indue": 1.07e-08, + "infinitival": 1.07e-08, + "inhospitality": 1.07e-08, + "intercondylar": 1.07e-08, + "isomerize": 1.07e-08, + "isovaleric": 1.07e-08, + "jamdani": 1.07e-08, + "kibitzer": 1.07e-08, + "labiatae": 1.07e-08, + "layia": 1.07e-08, + "lettish": 1.07e-08, + "libellula": 1.07e-08, + "liebfraumilch": 1.07e-08, + "litharge": 1.07e-08, + "loculus": 1.07e-08, + "lugubriously": 1.07e-08, + "luxemburger": 1.07e-08, + "luzula": 1.07e-08, + "machinal": 1.07e-08, + "makari": 1.07e-08, + "malthe": 1.07e-08, + "margining": 1.07e-08, + "martially": 1.07e-08, + "mashru": 1.07e-08, + "matadero": 1.07e-08, + "matchable": 1.07e-08, + "melic": 1.07e-08, + "mentalization": 1.07e-08, + "metabolizable": 1.07e-08, + "metalorganic": 1.07e-08, + "micropipette": 1.07e-08, + "micropyle": 1.07e-08, + "milkwood": 1.07e-08, + "misogynous": 1.07e-08, + "moit": 1.07e-08, + "moonfish": 1.07e-08, + "motionlessly": 1.07e-08, + "multicourse": 1.07e-08, + "multinodular": 1.07e-08, + "mundle": 1.07e-08, + "muscicapa": 1.07e-08, + "muzhik": 1.07e-08, + "nationalistically": 1.07e-08, + "nephrops": 1.07e-08, + "nerita": 1.07e-08, + "netherlandic": 1.07e-08, + "nodi": 1.07e-08, + "nonattainment": 1.07e-08, + "novate": 1.07e-08, + "obtrude": 1.07e-08, + "ocracy": 1.07e-08, + "odal": 1.07e-08, + "oleomargarine": 1.07e-08, + "operculate": 1.07e-08, + "ophiolitic": 1.07e-08, + "opiliones": 1.07e-08, + "ortrud": 1.07e-08, + "ostracoda": 1.07e-08, + "ostrya": 1.07e-08, + "outgas": 1.07e-08, + "owk": 1.07e-08, + "oxidizable": 1.07e-08, + "oxonium": 1.07e-08, + "panocha": 1.07e-08, + "passementerie": 1.07e-08, + "pauldron": 1.07e-08, + "peridinium": 1.07e-08, + "periodate": 1.07e-08, + "permissively": 1.07e-08, + "perpend": 1.07e-08, + "peziza": 1.07e-08, + "phratry": 1.07e-08, + "physiocratic": 1.07e-08, + "pinctada": 1.07e-08, + "pinocytosis": 1.07e-08, + "piragua": 1.07e-08, + "pitahaya": 1.07e-08, + "pitchout": 1.07e-08, + "plashet": 1.07e-08, + "playday": 1.07e-08, + "plethoric": 1.07e-08, + "plew": 1.07e-08, + "pluckily": 1.07e-08, + "pluvialis": 1.07e-08, + "poiana": 1.07e-08, + "polyhalite": 1.07e-08, + "polyhydroxy": 1.07e-08, + "porousness": 1.07e-08, + "pragmatical": 1.07e-08, + "prehend": 1.07e-08, + "presbyterial": 1.07e-08, + "preterist": 1.07e-08, + "professionality": 1.07e-08, + "proliferous": 1.07e-08, + "prosy": 1.07e-08, + "protocone": 1.07e-08, + "protogynous": 1.07e-08, + "pygidial": 1.07e-08, + "pyritic": 1.07e-08, + "quartzitic": 1.07e-08, + "quassia": 1.07e-08, + "quinolinic": 1.07e-08, + "quixotically": 1.07e-08, + "rallus": 1.07e-08, + "rebaptism": 1.07e-08, + "rechallenge": 1.07e-08, + "recriminatory": 1.07e-08, + "refurnish": 1.07e-08, + "restfully": 1.07e-08, + "ricey": 1.07e-08, + "rikshaw": 1.07e-08, + "routinization": 1.07e-08, + "rubeola": 1.07e-08, + "sanctionable": 1.07e-08, + "saprolegnia": 1.07e-08, + "sarcoptes": 1.07e-08, + "saveloy": 1.07e-08, + "scantiness": 1.07e-08, + "scarious": 1.07e-08, + "scenographer": 1.07e-08, + "sclerophyllous": 1.07e-08, + "scorner": 1.07e-08, + "screecher": 1.07e-08, + "sealine": 1.07e-08, + "seigniorial": 1.07e-08, + "semidirect": 1.07e-08, + "seriality": 1.07e-08, + "sesma": 1.07e-08, + "shopkeeping": 1.07e-08, + "shopman": 1.07e-08, + "sidonian": 1.07e-08, + "sierran": 1.07e-08, + "signalize": 1.07e-08, + "signwriter": 1.07e-08, + "silicification": 1.07e-08, + "skite": 1.07e-08, + "snippety": 1.07e-08, + "snugness": 1.07e-08, + "soapwort": 1.07e-08, + "somberness": 1.07e-08, + "southernwood": 1.07e-08, + "soxhlet": 1.07e-08, + "spadefoot": 1.07e-08, + "spareness": 1.07e-08, + "sphingidae": 1.07e-08, + "spirillum": 1.07e-08, + "squama": 1.07e-08, + "sternoclavicular": 1.07e-08, + "stringless": 1.07e-08, + "stunkard": 1.07e-08, + "subangular": 1.07e-08, + "subcircuit": 1.07e-08, + "subinterval": 1.07e-08, + "superficies": 1.07e-08, + "superorder": 1.07e-08, + "sylvatic": 1.07e-08, + "symbiogenesis": 1.07e-08, + "talao": 1.07e-08, + "tanistry": 1.07e-08, + "taum": 1.07e-08, + "tetranitrate": 1.07e-08, + "theosophic": 1.07e-08, + "thrip": 1.07e-08, + "tisiphone": 1.07e-08, + "tournant": 1.07e-08, + "tramontane": 1.07e-08, + "transmigrate": 1.07e-08, + "trashiness": 1.07e-08, + "troilite": 1.07e-08, + "troughing": 1.07e-08, + "unabbreviated": 1.07e-08, + "unbraced": 1.07e-08, + "uncloaked": 1.07e-08, + "uncontentious": 1.07e-08, + "undermount": 1.07e-08, + "undeterminable": 1.07e-08, + "unerupted": 1.07e-08, + "unguessable": 1.07e-08, + "unharnessed": 1.07e-08, + "uniphase": 1.07e-08, + "unluck": 1.07e-08, + "unnoticeably": 1.07e-08, + "unpleased": 1.07e-08, + "unpoliced": 1.07e-08, + "unpressed": 1.07e-08, + "unshipped": 1.07e-08, + "upsettingly": 1.07e-08, + "verbenaceae": 1.07e-08, + "vermicular": 1.07e-08, + "vigia": 1.07e-08, + "voicelessness": 1.07e-08, + "vulcanism": 1.07e-08, + "wellsite": 1.07e-08, + "womanize": 1.07e-08, + "zoospore": 1.07e-08, + "abash": 1.05e-08, + "absorbingly": 1.05e-08, + "acarina": 1.05e-08, + "acromegalic": 1.05e-08, + "adjustably": 1.05e-08, + "admeasurement": 1.05e-08, + "adorability": 1.05e-08, + "aigrette": 1.05e-08, + "akinetic": 1.05e-08, + "algic": 1.05e-08, + "annoyingness": 1.05e-08, + "anopheline": 1.05e-08, + "antiseptically": 1.05e-08, + "aphorist": 1.05e-08, + "apteryx": 1.05e-08, + "arcite": 1.05e-08, + "aristocratically": 1.05e-08, + "atlantes": 1.05e-08, + "auscultate": 1.05e-08, + "awalt": 1.05e-08, + "backwall": 1.05e-08, + "bagginess": 1.05e-08, + "balaena": 1.05e-08, + "barytone": 1.05e-08, + "basale": 1.05e-08, + "beguin": 1.05e-08, + "berret": 1.05e-08, + "biometrical": 1.05e-08, + "blistery": 1.05e-08, + "blumea": 1.05e-08, + "borneol": 1.05e-08, + "bouchette": 1.05e-08, + "brachet": 1.05e-08, + "briery": 1.05e-08, + "capitolium": 1.05e-08, + "carburation": 1.05e-08, + "cheaping": 1.05e-08, + "chiffonade": 1.05e-08, + "chubbed": 1.05e-08, + "cicatrix": 1.05e-08, + "clackety": 1.05e-08, + "clarenceux": 1.05e-08, + "clerisy": 1.05e-08, + "cnemidophorus": 1.05e-08, + "coffeecake": 1.05e-08, + "coffret": 1.05e-08, + "cogged": 1.05e-08, + "communard": 1.05e-08, + "concertgoer": 1.05e-08, + "consulter": 1.05e-08, + "coolibah": 1.05e-08, + "copperleaf": 1.05e-08, + "coprecipitation": 1.05e-08, + "coprosma": 1.05e-08, + "courageousness": 1.05e-08, + "coze": 1.05e-08, + "crenellate": 1.05e-08, + "crepuscule": 1.05e-08, + "crevalle": 1.05e-08, + "crowdedness": 1.05e-08, + "crowner": 1.05e-08, + "cubbing": 1.05e-08, + "cultivatable": 1.05e-08, + "cyclopedic": 1.05e-08, + "dantean": 1.05e-08, + "daymare": 1.05e-08, + "decian": 1.05e-08, + "decussation": 1.05e-08, + "dekle": 1.05e-08, + "dementedly": 1.05e-08, + "demoniacal": 1.05e-08, + "desolately": 1.05e-08, + "desponding": 1.05e-08, + "desulphurization": 1.05e-08, + "diphthongal": 1.05e-08, + "disfranchise": 1.05e-08, + "disgustingness": 1.05e-08, + "dismission": 1.05e-08, + "dolomitization": 1.05e-08, + "dunch": 1.05e-08, + "duny": 1.05e-08, + "dytiscidae": 1.05e-08, + "echinocactus": 1.05e-08, + "echinoidea": 1.05e-08, + "ectoparasite": 1.05e-08, + "egregiousness": 1.05e-08, + "elaeis": 1.05e-08, + "elvet": 1.05e-08, + "enwrap": 1.05e-08, + "epiphenomenal": 1.05e-08, + "epiphyllum": 1.05e-08, + "equably": 1.05e-08, + "erysimum": 1.05e-08, + "ethiop": 1.05e-08, + "excurved": 1.05e-08, + "faunistic": 1.05e-08, + "featherbedding": 1.05e-08, + "filipendula": 1.05e-08, + "filmdom": 1.05e-08, + "firetail": 1.05e-08, + "floristics": 1.05e-08, + "foeniculum": 1.05e-08, + "foliaceous": 1.05e-08, + "fortifier": 1.05e-08, + "freehanded": 1.05e-08, + "fretty": 1.05e-08, + "fungiform": 1.05e-08, + "furcation": 1.05e-08, + "furless": 1.05e-08, + "galaxias": 1.05e-08, + "gaulding": 1.05e-08, + "gilliver": 1.05e-08, + "glottic": 1.05e-08, + "gordonia": 1.05e-08, + "griffe": 1.05e-08, + "gunless": 1.05e-08, + "hajib": 1.05e-08, + "halberdier": 1.05e-08, + "hedysarum": 1.05e-08, + "heeze": 1.05e-08, + "heliodor": 1.05e-08, + "hesperidin": 1.05e-08, + "heterothallic": 1.05e-08, + "hexahedral": 1.05e-08, + "hexahedron": 1.05e-08, + "housewright": 1.05e-08, + "humification": 1.05e-08, + "huskiness": 1.05e-08, + "hybridizer": 1.05e-08, + "ianus": 1.05e-08, + "illustratively": 1.05e-08, + "inclose": 1.05e-08, + "incomparability": 1.05e-08, + "ingulf": 1.05e-08, + "inorganically": 1.05e-08, + "inro": 1.05e-08, + "instructress": 1.05e-08, + "interlaboratory": 1.05e-08, + "ironsmith": 1.05e-08, + "irrationalist": 1.05e-08, + "izle": 1.05e-08, + "jaggedly": 1.05e-08, + "jounce": 1.05e-08, + "kamik": 1.05e-08, + "karou": 1.05e-08, + "kegler": 1.05e-08, + "ketal": 1.05e-08, + "kikar": 1.05e-08, + "kikongo": 1.05e-08, + "kinnikinnick": 1.05e-08, + "knittle": 1.05e-08, + "knotgrass": 1.05e-08, + "koschei": 1.05e-08, + "labialization": 1.05e-08, + "lamna": 1.05e-08, + "latinity": 1.05e-08, + "laudation": 1.05e-08, + "ligneous": 1.05e-08, + "lineally": 1.05e-08, + "lophophora": 1.05e-08, + "lurky": 1.05e-08, + "lymphosarcoma": 1.05e-08, + "malversation": 1.05e-08, + "mandatary": 1.05e-08, + "manless": 1.05e-08, + "maomao": 1.05e-08, + "marcomanni": 1.05e-08, + "mawp": 1.05e-08, + "megajoule": 1.05e-08, + "mehtar": 1.05e-08, + "melica": 1.05e-08, + "mesonephros": 1.05e-08, + "metaphysis": 1.05e-08, + "mnemiopsis": 1.05e-08, + "molland": 1.05e-08, + "montanism": 1.05e-08, + "motherwort": 1.05e-08, + "movability": 1.05e-08, + "murinus": 1.05e-08, + "muskmelon": 1.05e-08, + "myriapod": 1.05e-08, + "napery": 1.05e-08, + "negativeness": 1.05e-08, + "nephrostomy": 1.05e-08, + "nonaffiliated": 1.05e-08, + "nonparticipating": 1.05e-08, + "nontuberculous": 1.05e-08, + "norroy": 1.05e-08, + "outbreed": 1.05e-08, + "outlandishness": 1.05e-08, + "overcut": 1.05e-08, + "overprotect": 1.05e-08, + "oxadiazole": 1.05e-08, + "padus": 1.05e-08, + "pagus": 1.05e-08, + "palanka": 1.05e-08, + "paraxylene": 1.05e-08, + "pericentral": 1.05e-08, + "phonetical": 1.05e-08, + "photoactivation": 1.05e-08, + "pillowing": 1.05e-08, + "plaister": 1.05e-08, + "playwrighting": 1.05e-08, + "pleochroism": 1.05e-08, + "pliosaur": 1.05e-08, + "postpositive": 1.05e-08, + "preoral": 1.05e-08, + "preterit": 1.05e-08, + "priorly": 1.05e-08, + "pritch": 1.05e-08, + "probational": 1.05e-08, + "pronouncer": 1.05e-08, + "psychoanalytically": 1.05e-08, + "psychopathia": 1.05e-08, + "pukeko": 1.05e-08, + "pulmonata": 1.05e-08, + "pulpotomy": 1.05e-08, + "quei": 1.05e-08, + "readopt": 1.05e-08, + "regressively": 1.05e-08, + "resorptive": 1.05e-08, + "resplendence": 1.05e-08, + "restrainer": 1.05e-08, + "retexture": 1.05e-08, + "retrogradely": 1.05e-08, + "rhyodacite": 1.05e-08, + "rimal": 1.05e-08, + "robalo": 1.05e-08, + "romanist": 1.05e-08, + "rosiness": 1.05e-08, + "ruscus": 1.05e-08, + "sampaguita": 1.05e-08, + "sandling": 1.05e-08, + "sapid": 1.05e-08, + "satura": 1.05e-08, + "sauria": 1.05e-08, + "schematism": 1.05e-08, + "scray": 1.05e-08, + "scutter": 1.05e-08, + "seamster": 1.05e-08, + "seignory": 1.05e-08, + "semibreve": 1.05e-08, + "semiskilled": 1.05e-08, + "sepiolite": 1.05e-08, + "serranus": 1.05e-08, + "setose": 1.05e-08, + "smartweed": 1.05e-08, + "snobbishly": 1.05e-08, + "soutane": 1.05e-08, + "sowle": 1.05e-08, + "speal": 1.05e-08, + "sperone": 1.05e-08, + "spondee": 1.05e-08, + "springtail": 1.05e-08, + "starflower": 1.05e-08, + "stephanotis": 1.05e-08, + "subcylindrical": 1.05e-08, + "sulpician": 1.05e-08, + "supercontest": 1.05e-08, + "supergun": 1.05e-08, + "supernational": 1.05e-08, + "suppurate": 1.05e-08, + "surgent": 1.05e-08, + "surprisal": 1.05e-08, + "survivance": 1.05e-08, + "tatarian": 1.05e-08, + "taurian": 1.05e-08, + "tetter": 1.05e-08, + "themer": 1.05e-08, + "thermoelectricity": 1.05e-08, + "thingness": 1.05e-08, + "thirstiness": 1.05e-08, + "toldo": 1.05e-08, + "torsade": 1.05e-08, + "traject": 1.05e-08, + "transillumination": 1.05e-08, + "transmarine": 1.05e-08, + "trematoda": 1.05e-08, + "trental": 1.05e-08, + "tressure": 1.05e-08, + "trichomanes": 1.05e-08, + "trilithon": 1.05e-08, + "triplication": 1.05e-08, + "trisection": 1.05e-08, + "trituration": 1.05e-08, + "troglodytic": 1.05e-08, + "trypsinogen": 1.05e-08, + "twiddly": 1.05e-08, + "tympana": 1.05e-08, + "tyrosyl": 1.05e-08, + "ubiquitousness": 1.05e-08, + "uller": 1.05e-08, + "ultimata": 1.05e-08, + "unadoptable": 1.05e-08, + "unblurred": 1.05e-08, + "unboiled": 1.05e-08, + "unburnable": 1.05e-08, + "unclutch": 1.05e-08, + "uncomplete": 1.05e-08, + "underdrain": 1.05e-08, + "underdress": 1.05e-08, + "undesigned": 1.05e-08, + "unknotted": 1.05e-08, + "unmoor": 1.05e-08, + "unmoral": 1.05e-08, + "unpickable": 1.05e-08, + "unscrupulousness": 1.05e-08, + "unstack": 1.05e-08, + "unweaned": 1.05e-08, + "urography": 1.05e-08, + "uzan": 1.05e-08, + "vailable": 1.05e-08, + "vandalization": 1.05e-08, + "volitionally": 1.05e-08, + "walloper": 1.05e-08, + "washability": 1.05e-08, + "winnower": 1.05e-08, + "abusable": 1.02e-08, + "accentor": 1.02e-08, + "accouchement": 1.02e-08, + "acetylide": 1.02e-08, + "adytum": 1.02e-08, + "aerology": 1.02e-08, + "airer": 1.02e-08, + "allanite": 1.02e-08, + "alouatta": 1.02e-08, + "amoret": 1.02e-08, + "anagnorisis": 1.02e-08, + "anagrammatic": 1.02e-08, + "andromaque": 1.02e-08, + "angami": 1.02e-08, + "aotus": 1.02e-08, + "apologetical": 1.02e-08, + "aquaplane": 1.02e-08, + "aranyaka": 1.02e-08, + "argol": 1.02e-08, + "ascendence": 1.02e-08, + "astrachan": 1.02e-08, + "athyrium": 1.02e-08, + "atrypa": 1.02e-08, + "basiliscus": 1.02e-08, + "bauta": 1.02e-08, + "beant": 1.02e-08, + "bedspring": 1.02e-08, + "beelzebul": 1.02e-08, + "benzofuran": 1.02e-08, + "bifilar": 1.02e-08, + "biquadratic": 1.02e-08, + "bismarckian": 1.02e-08, + "blamelessness": 1.02e-08, + "blasty": 1.02e-08, + "blithesome": 1.02e-08, + "blobbed": 1.02e-08, + "bookland": 1.02e-08, + "boomlet": 1.02e-08, + "bosn": 1.02e-08, + "brachydactyly": 1.02e-08, + "breeziness": 1.02e-08, + "briza": 1.02e-08, + "calcrete": 1.02e-08, + "calden": 1.02e-08, + "cambial": 1.02e-08, + "canalicular": 1.02e-08, + "canaliculus": 1.02e-08, + "candytuft": 1.02e-08, + "capsian": 1.02e-08, + "carabus": 1.02e-08, + "caragana": 1.02e-08, + "carnallite": 1.02e-08, + "carnic": 1.02e-08, + "cartelization": 1.02e-08, + "caryopsis": 1.02e-08, + "cathartically": 1.02e-08, + "chatoyant": 1.02e-08, + "chitimacha": 1.02e-08, + "chloromethane": 1.02e-08, + "chunkiness": 1.02e-08, + "citrinin": 1.02e-08, + "claggy": 1.02e-08, + "clerkly": 1.02e-08, + "clitocybe": 1.02e-08, + "coeternal": 1.02e-08, + "comfortableness": 1.02e-08, + "computus": 1.02e-08, + "concuss": 1.02e-08, + "coolheaded": 1.02e-08, + "coree": 1.02e-08, + "corsie": 1.02e-08, + "counterfoil": 1.02e-08, + "crackable": 1.02e-08, + "creaseless": 1.02e-08, + "cuarta": 1.02e-08, + "cyanohydrin": 1.02e-08, + "deathy": 1.02e-08, + "debonnaire": 1.02e-08, + "dermatophytosis": 1.02e-08, + "devolutionary": 1.02e-08, + "digitalism": 1.02e-08, + "disbalance": 1.02e-08, + "discerningly": 1.02e-08, + "disilicate": 1.02e-08, + "disputant": 1.02e-08, + "domical": 1.02e-08, + "duckpond": 1.02e-08, + "earliness": 1.02e-08, + "earthwards": 1.02e-08, + "educe": 1.02e-08, + "ejective": 1.02e-08, + "elaphe": 1.02e-08, + "elding": 1.02e-08, + "elegancy": 1.02e-08, + "encephalic": 1.02e-08, + "encyclopedist": 1.02e-08, + "endothermy": 1.02e-08, + "episcleritis": 1.02e-08, + "esclavage": 1.02e-08, + "esselen": 1.02e-08, + "establisher": 1.02e-08, + "eulogist": 1.02e-08, + "eutectoid": 1.02e-08, + "eventless": 1.02e-08, + "executer": 1.02e-08, + "exotropia": 1.02e-08, + "facilely": 1.02e-08, + "ferrate": 1.02e-08, + "ferroconcrete": 1.02e-08, + "fiberglas": 1.02e-08, + "fieldy": 1.02e-08, + "findability": 1.02e-08, + "flyman": 1.02e-08, + "foliaged": 1.02e-08, + "frictionally": 1.02e-08, + "frisket": 1.02e-08, + "frivolousness": 1.02e-08, + "fuegian": 1.02e-08, + "garishness": 1.02e-08, + "gartered": 1.02e-08, + "gastroplasty": 1.02e-08, + "gearwheel": 1.02e-08, + "geometrid": 1.02e-08, + "germanness": 1.02e-08, + "ghoom": 1.02e-08, + "gibbsite": 1.02e-08, + "goosy": 1.02e-08, + "gorgonia": 1.02e-08, + "grandaunt": 1.02e-08, + "gunong": 1.02e-08, + "harka": 1.02e-08, + "heliconius": 1.02e-08, + "hemorrhoidectomy": 1.02e-08, + "hexameric": 1.02e-08, + "histrio": 1.02e-08, + "homiletical": 1.02e-08, + "huggle": 1.02e-08, + "hyperesthesia": 1.02e-08, + "hypsometric": 1.02e-08, + "ichthyofauna": 1.02e-08, + "iconographer": 1.02e-08, + "ideologic": 1.02e-08, + "imperturbability": 1.02e-08, + "importunately": 1.02e-08, + "inapplicability": 1.02e-08, + "indusium": 1.02e-08, + "infame": 1.02e-08, + "innominata": 1.02e-08, + "intersegmental": 1.02e-08, + "intradermally": 1.02e-08, + "intratracheal": 1.02e-08, + "invertibility": 1.02e-08, + "isosteric": 1.02e-08, + "iswara": 1.02e-08, + "jamnia": 1.02e-08, + "jinrikisha": 1.02e-08, + "joom": 1.02e-08, + "kadaga": 1.02e-08, + "kamacite": 1.02e-08, + "kappe": 1.02e-08, + "khasa": 1.02e-08, + "kidskin": 1.02e-08, + "kitter": 1.02e-08, + "laccolith": 1.02e-08, + "lacemaker": 1.02e-08, + "laryngological": 1.02e-08, + "laryngologist": 1.02e-08, + "levitator": 1.02e-08, + "loiterer": 1.02e-08, + "lycanthropic": 1.02e-08, + "lycopersicon": 1.02e-08, + "lysin": 1.02e-08, + "macco": 1.02e-08, + "maculated": 1.02e-08, + "marmoreal": 1.02e-08, + "mathesis": 1.02e-08, + "mazatec": 1.02e-08, + "mediatorial": 1.02e-08, + "megalops": 1.02e-08, + "membrana": 1.02e-08, + "membranaceous": 1.02e-08, + "metamerism": 1.02e-08, + "metritis": 1.02e-08, + "misapprehend": 1.02e-08, + "mithraeum": 1.02e-08, + "modenese": 1.02e-08, + "monograptus": 1.02e-08, + "mophead": 1.02e-08, + "mopper": 1.02e-08, + "morchella": 1.02e-08, + "mukluk": 1.02e-08, + "mundari": 1.02e-08, + "necrophilic": 1.02e-08, + "neglection": 1.02e-08, + "nematocyst": 1.02e-08, + "nonbeing": 1.02e-08, + "noncognitive": 1.02e-08, + "nonconscious": 1.02e-08, + "nonsuit": 1.02e-08, + "obongo": 1.02e-08, + "olearia": 1.02e-08, + "oligospermia": 1.02e-08, + "oomycete": 1.02e-08, + "osculum": 1.02e-08, + "otherwhere": 1.02e-08, + "outsail": 1.02e-08, + "palar": 1.02e-08, + "pandaram": 1.02e-08, + "panfil": 1.02e-08, + "parnellite": 1.02e-08, + "pathic": 1.02e-08, + "penologist": 1.02e-08, + "petitgrain": 1.02e-08, + "photophone": 1.02e-08, + "photostability": 1.02e-08, + "phototype": 1.02e-08, + "physicalistic": 1.02e-08, + "phytohormone": 1.02e-08, + "picaroon": 1.02e-08, + "pictorialist": 1.02e-08, + "pisonia": 1.02e-08, + "placet": 1.02e-08, + "plaguy": 1.02e-08, + "polony": 1.02e-08, + "polysiphonia": 1.02e-08, + "potful": 1.02e-08, + "prase": 1.02e-08, + "prenominal": 1.02e-08, + "promptitude": 1.02e-08, + "quartan": 1.02e-08, + "quink": 1.02e-08, + "quivery": 1.02e-08, + "rawboned": 1.02e-08, + "reconcilement": 1.02e-08, + "reforger": 1.02e-08, + "reimportation": 1.02e-08, + "repressible": 1.02e-08, + "reservedly": 1.02e-08, + "rocklike": 1.02e-08, + "ropework": 1.02e-08, + "rosabel": 1.02e-08, + "sacculus": 1.02e-08, + "saiid": 1.02e-08, + "sanguinaria": 1.02e-08, + "scur": 1.02e-08, + "seatless": 1.02e-08, + "semitendinosus": 1.02e-08, + "shampooer": 1.02e-08, + "shuba": 1.02e-08, + "skemp": 1.02e-08, + "slatternly": 1.02e-08, + "snagger": 1.02e-08, + "spastically": 1.02e-08, + "spearwood": 1.02e-08, + "sphenodon": 1.02e-08, + "splashproof": 1.02e-08, + "stickit": 1.02e-08, + "stipendium": 1.02e-08, + "stipitate": 1.02e-08, + "stosh": 1.02e-08, + "straiten": 1.02e-08, + "suasive": 1.02e-08, + "subahdar": 1.02e-08, + "subcommander": 1.02e-08, + "subparallel": 1.02e-08, + "subscribership": 1.02e-08, + "substernal": 1.02e-08, + "substitutive": 1.02e-08, + "succi": 1.02e-08, + "supertonic": 1.02e-08, + "supraoccipital": 1.02e-08, + "swooper": 1.02e-08, + "tactfulness": 1.02e-08, + "taffarel": 1.02e-08, + "talipes": 1.02e-08, + "tallyman": 1.02e-08, + "teethe": 1.02e-08, + "thanatopsis": 1.02e-08, + "theek": 1.02e-08, + "theocrat": 1.02e-08, + "thermosiphon": 1.02e-08, + "thievish": 1.02e-08, + "thriftily": 1.02e-08, + "totalization": 1.02e-08, + "trachytic": 1.02e-08, + "triquetrum": 1.02e-08, + "troca": 1.02e-08, + "tryphena": 1.02e-08, + "unaffectedly": 1.02e-08, + "unbury": 1.02e-08, + "uncontroverted": 1.02e-08, + "undogmatic": 1.02e-08, + "unflustered": 1.02e-08, + "unformulated": 1.02e-08, + "unfulfillable": 1.02e-08, + "ungood": 1.02e-08, + "unicolorous": 1.02e-08, + "unionidae": 1.02e-08, + "unipolarity": 1.02e-08, + "unpoetic": 1.02e-08, + "unpolite": 1.02e-08, + "unpurified": 1.02e-08, + "variolation": 1.02e-08, + "vasopressor": 1.02e-08, + "vindhyan": 1.02e-08, + "vivisect": 1.02e-08, + "voluta": 1.02e-08, + "wame": 1.02e-08, + "wearier": 1.02e-08, + "westralian": 1.02e-08, + "wienie": 1.02e-08, + "wilga": 1.02e-08, + "winnard": 1.02e-08, + "wisecracker": 1.02e-08, + "xiphias": 1.02e-08, + "yellowbelly": 1.02e-08, + "zati": 1.02e-08, + "zingiberaceae": 1.02e-08, + "zwitterion": 1.02e-08, + "highkey": 2e-06, + "frfr": 2e-06, + "nocap": 2e-06, + "b2b": 5e-07, + "b2c": 5e-07 + }, + "words_by_length": { + "3": [ + { + "word": "the", + "freq": 0.0537 + }, + { + "word": "and", + "freq": 0.0257 + }, + { + "word": "for", + "freq": 0.0102 + }, + { + "word": "you", + "freq": 0.00955 + }, + { + "word": "are", + "freq": 0.0055 + }, + { + "word": "not", + "freq": 0.0049 + }, + { + "word": "but", + "freq": 0.00427 + }, + { + "word": "all", + "freq": 0.00331 + }, + { + "word": "one", + "freq": 0.00295 + }, + { + "word": "can", + "freq": 0.00288 + }, + { + "word": "out", + "freq": 0.0024 + }, + { + "word": "who", + "freq": 0.00219 + }, + { + "word": "had", + "freq": 0.00214 + }, + { + "word": "her", + "freq": 0.002 + }, + { + "word": "get", + "freq": 0.00191 + }, + { + "word": "she", + "freq": 0.00182 + }, + { + "word": "new", + "freq": 0.00178 + }, + { + "word": "how", + "freq": 0.00174 + }, + { + "word": "now", + "freq": 0.00151 + }, + { + "word": "our", + "freq": 0.00138 + }, + { + "word": "him", + "freq": 0.00129 + }, + { + "word": "see", + "freq": 0.00126 + }, + { + "word": "two", + "freq": 0.00126 + }, + { + "word": "any", + "freq": 0.00117 + }, + { + "word": "way", + "freq": 0.00102 + }, + { + "word": "may", + "freq": 0.000955 + }, + { + "word": "did", + "freq": 0.000912 + }, + { + "word": "day", + "freq": 0.000891 + }, + { + "word": "too", + "freq": 0.000891 + }, + { + "word": "off", + "freq": 0.000851 + }, + { + "word": "why", + "freq": 0.000851 + }, + { + "word": "got", + "freq": 0.000813 + }, + { + "word": "say", + "freq": 0.000776 + }, + { + "word": "man", + "freq": 0.000661 + }, + { + "word": "use", + "freq": 0.000646 + }, + { + "word": "old", + "freq": 0.000562 + }, + { + "word": "own", + "freq": 0.00055 + }, + { + "word": "end", + "freq": 0.000479 + }, + { + "word": "big", + "freq": 0.000468 + }, + { + "word": "put", + "freq": 0.000457 + }, + { + "word": "lot", + "freq": 0.000407 + }, + { + "word": "few", + "freq": 0.000398 + }, + { + "word": "let", + "freq": 0.000398 + }, + { + "word": "set", + "freq": 0.000389 + }, + { + "word": "god", + "freq": 0.000372 + }, + { + "word": "top", + "freq": 0.000372 + }, + { + "word": "yet", + "freq": 0.000347 + }, + { + "word": "bad", + "freq": 0.000339 + }, + { + "word": "men", + "freq": 0.000324 + }, + { + "word": "far", + "freq": 0.000316 + }, + { + "word": "job", + "freq": 0.000316 + }, + { + "word": "try", + "freq": 0.000316 + }, + { + "word": "run", + "freq": 0.000309 + }, + { + "word": "law", + "freq": 0.000288 + }, + { + "word": "war", + "freq": 0.000288 + }, + { + "word": "car", + "freq": 0.000282 + }, + { + "word": "per", + "freq": 0.000282 + }, + { + "word": "ago", + "freq": 0.000263 + }, + { + "word": "guy", + "freq": 0.000251 + }, + { + "word": "pay", + "freq": 0.000251 + }, + { + "word": "win", + "freq": 0.000245 + }, + { + "word": "air", + "freq": 0.000234 + }, + { + "word": "bit", + "freq": 0.000234 + }, + { + "word": "hit", + "freq": 0.000234 + }, + { + "word": "due", + "freq": 0.000224 + }, + { + "word": "ask", + "freq": 0.000219 + }, + { + "word": "saw", + "freq": 0.000219 + }, + { + "word": "low", + "freq": 0.000214 + }, + { + "word": "age", + "freq": 0.000209 + }, + { + "word": "buy", + "freq": 0.000209 + }, + { + "word": "red", + "freq": 0.000209 + }, + { + "word": "act", + "freq": 0.0002 + }, + { + "word": "fun", + "freq": 0.0002 + }, + { + "word": "art", + "freq": 0.000195 + }, + { + "word": "non", + "freq": 0.000195 + }, + { + "word": "six", + "freq": 0.000195 + }, + { + "word": "son", + "freq": 0.000191 + }, + { + "word": "cut", + "freq": 0.000174 + }, + { + "word": "sex", + "freq": 0.000166 + }, + { + "word": "won", + "freq": 0.000158 + }, + { + "word": "boy", + "freq": 0.000148 + }, + { + "word": "hot", + "freq": 0.000145 + }, + { + "word": "tax", + "freq": 0.000138 + }, + { + "word": "eat", + "freq": 0.000135 + }, + { + "word": "hey", + "freq": 0.000132 + }, + { + "word": "key", + "freq": 0.000132 + }, + { + "word": "mom", + "freq": 0.000132 + }, + { + "word": "cup", + "freq": 0.000129 + }, + { + "word": "led", + "freq": 0.000129 + }, + { + "word": "dog", + "freq": 0.000126 + }, + { + "word": "oil", + "freq": 0.000126 + }, + { + "word": "add", + "freq": 0.000123 + }, + { + "word": "met", + "freq": 0.000123 + }, + { + "word": "bed", + "freq": 0.000117 + }, + { + "word": "die", + "freq": 0.000117 + }, + { + "word": "sea", + "freq": 0.000115 + }, + { + "word": "sir", + "freq": 0.000115 + }, + { + "word": "lol", + "freq": 0.000112 + }, + { + "word": "ten", + "freq": 0.000112 + }, + { + "word": "box", + "freq": 0.00011 + }, + { + "word": "etc", + "freq": 0.000107 + }, + { + "word": "eye", + "freq": 0.000105 + }, + { + "word": "via", + "freq": 0.000105 + }, + { + "word": "ice", + "freq": 0.0001 + }, + { + "word": "kid", + "freq": 9.77e-05 + }, + { + "word": "san", + "freq": 9.33e-05 + }, + { + "word": "sun", + "freq": 9.33e-05 + }, + { + "word": "gun", + "freq": 9.12e-05 + }, + { + "word": "wow", + "freq": 9.12e-05 + }, + { + "word": "dad", + "freq": 8.91e-05 + }, + { + "word": "fit", + "freq": 8.91e-05 + }, + { + "word": "pre", + "freq": 8.91e-05 + }, + { + "word": "bar", + "freq": 8.71e-05 + }, + { + "word": "pro", + "freq": 8.71e-05 + }, + { + "word": "fan", + "freq": 8.32e-05 + }, + { + "word": "gay", + "freq": 7.94e-05 + }, + { + "word": "sit", + "freq": 7.94e-05 + }, + { + "word": "pop", + "freq": 7.41e-05 + }, + { + "word": "ran", + "freq": 7.41e-05 + }, + { + "word": "app", + "freq": 7.24e-05 + }, + { + "word": "fat", + "freq": 7.08e-05 + }, + { + "word": "lie", + "freq": 6.92e-05 + }, + { + "word": "tom", + "freq": 6.76e-05 + }, + { + "word": "mid", + "freq": 6.61e-05 + }, + { + "word": "bag", + "freq": 6.17e-05 + }, + { + "word": "bet", + "freq": 6.17e-05 + }, + { + "word": "usa", + "freq": 6.17e-05 + }, + { + "word": "cat", + "freq": 6.03e-05 + }, + { + "word": "joe", + "freq": 6.03e-05 + }, + { + "word": "nor", + "freq": 6.03e-05 + }, + { + "word": "van", + "freq": 6.03e-05 + }, + { + "word": "inc", + "freq": 5.89e-05 + }, + { + "word": "map", + "freq": 5.75e-05 + }, + { + "word": "net", + "freq": 5.75e-05 + }, + { + "word": "aid", + "freq": 5.62e-05 + }, + { + "word": "fix", + "freq": 5.62e-05 + }, + { + "word": "fly", + "freq": 5.62e-05 + }, + { + "word": "dry", + "freq": 5.5e-05 + }, + { + "word": "mad", + "freq": 5.5e-05 + }, + { + "word": "web", + "freq": 5.5e-05 + }, + { + "word": "arm", + "freq": 5.37e-05 + }, + { + "word": "bay", + "freq": 5.37e-05 + }, + { + "word": "lee", + "freq": 5.37e-05 + }, + { + "word": "tea", + "freq": 5.37e-05 + }, + { + "word": "ill", + "freq": 5.25e-05 + }, + { + "word": "sky", + "freq": 5.25e-05 + }, + { + "word": "mix", + "freq": 5.13e-05 + }, + { + "word": "ben", + "freq": 4.9e-05 + }, + { + "word": "ray", + "freq": 4.9e-05 + }, + { + "word": "era", + "freq": 4.68e-05 + }, + { + "word": "fox", + "freq": 4.57e-05 + }, + { + "word": "leg", + "freq": 4.57e-05 + }, + { + "word": "max", + "freq": 4.57e-05 + }, + { + "word": "sub", + "freq": 4.57e-05 + }, + { + "word": "lay", + "freq": 4.37e-05 + }, + { + "word": "sam", + "freq": 4.37e-05 + }, + { + "word": "sat", + "freq": 4.37e-05 + }, + { + "word": "bob", + "freq": 4.27e-05 + }, + { + "word": "iii", + "freq": 4.27e-05 + }, + { + "word": "jim", + "freq": 4.17e-05 + }, + { + "word": "don", + "freq": 3.98e-05 + }, + { + "word": "row", + "freq": 3.98e-05 + }, + { + "word": "cry", + "freq": 3.89e-05 + }, + { + "word": "kim", + "freq": 3.89e-05 + }, + { + "word": "bbc", + "freq": 3.72e-05 + }, + { + "word": "ban", + "freq": 3.55e-05 + }, + { + "word": "joy", + "freq": 3.55e-05 + }, + { + "word": "tip", + "freq": 3.55e-05 + }, + { + "word": "nfl", + "freq": 3.47e-05 + }, + { + "word": "wet", + "freq": 3.47e-05 + }, + { + "word": "hat", + "freq": 3.39e-05 + }, + { + "word": "raw", + "freq": 3.39e-05 + }, + { + "word": "aim", + "freq": 3.24e-05 + }, + { + "word": "cap", + "freq": 3.24e-05 + }, + { + "word": "dan", + "freq": 3.24e-05 + }, + { + "word": "fed", + "freq": 3.24e-05 + }, + { + "word": "fee", + "freq": 3.24e-05 + }, + { + "word": "jan", + "freq": 3.24e-05 + }, + { + "word": "tie", + "freq": 3.24e-05 + }, + { + "word": "tim", + "freq": 3.24e-05 + }, + { + "word": "rid", + "freq": 3.16e-05 + }, + { + "word": "dna", + "freq": 3.09e-05 + }, + { + "word": "gap", + "freq": 2.95e-05 + }, + { + "word": "ltd", + "freq": 2.95e-05 + }, + { + "word": "ceo", + "freq": 2.88e-05 + }, + { + "word": "egg", + "freq": 2.88e-05 + }, + { + "word": "hip", + "freq": 2.88e-05 + }, + { + "word": "mac", + "freq": 2.82e-05 + }, + { + "word": "pet", + "freq": 2.82e-05 + }, + { + "word": "tag", + "freq": 2.75e-05 + }, + { + "word": "ear", + "freq": 2.69e-05 + }, + { + "word": "fbi", + "freq": 2.69e-05 + }, + { + "word": "gym", + "freq": 2.69e-05 + }, + { + "word": "kit", + "freq": 2.63e-05 + }, + { + "word": "lab", + "freq": 2.63e-05 + }, + { + "word": "min", + "freq": 2.63e-05 + }, + { + "word": "mum", + "freq": 2.57e-05 + }, + { + "word": "tho", + "freq": 2.57e-05 + }, + { + "word": "vol", + "freq": 2.57e-05 + }, + { + "word": "bid", + "freq": 2.51e-05 + }, + { + "word": "bro", + "freq": 2.51e-05 + }, + { + "word": "hop", + "freq": 2.51e-05 + }, + { + "word": "nah", + "freq": 2.51e-05 + }, + { + "word": "pot", + "freq": 2.51e-05 + }, + { + "word": "bye", + "freq": 2.45e-05 + }, + { + "word": "nba", + "freq": 2.45e-05 + }, + { + "word": "pan", + "freq": 2.45e-05 + }, + { + "word": "yep", + "freq": 2.45e-05 + }, + { + "word": "feb", + "freq": 2.4e-05 + }, + { + "word": "jay", + "freq": 2.4e-05 + }, + { + "word": "pen", + "freq": 2.4e-05 + }, + { + "word": "cop", + "freq": 2.34e-05 + }, + { + "word": "log", + "freq": 2.34e-05 + }, + { + "word": "nov", + "freq": 2.34e-05 + }, + { + "word": "sin", + "freq": 2.34e-05 + }, + { + "word": "doc", + "freq": 2.29e-05 + }, + { + "word": "ann", + "freq": 2.24e-05 + }, + { + "word": "oct", + "freq": 2.24e-05 + }, + { + "word": "rep", + "freq": 2.24e-05 + }, + { + "word": "rio", + "freq": 2.24e-05 + }, + { + "word": "rob", + "freq": 2.24e-05 + }, + { + "word": "ate", + "freq": 2.19e-05 + }, + { + "word": "sum", + "freq": 2.19e-05 + }, + { + "word": "aug", + "freq": 2.14e-05 + }, + { + "word": "gen", + "freq": 2.14e-05 + }, + { + "word": "del", + "freq": 2.09e-05 + }, + { + "word": "eve", + "freq": 2.09e-05 + }, + { + "word": "ian", + "freq": 2.09e-05 + }, + { + "word": "ali", + "freq": 2.04e-05 + }, + { + "word": "jon", + "freq": 2.04e-05 + }, + { + "word": "sec", + "freq": 2.04e-05 + }, + { + "word": "bat", + "freq": 2e-05 + }, + { + "word": "bow", + "freq": 2e-05 + }, + { + "word": "toy", + "freq": 2e-05 + }, + { + "word": "dec", + "freq": 1.95e-05 + }, + { + "word": "jet", + "freq": 1.95e-05 + }, + { + "word": "ton", + "freq": 1.95e-05 + }, + { + "word": "cnn", + "freq": 1.91e-05 + }, + { + "word": "con", + "freq": 1.91e-05 + }, + { + "word": "pin", + "freq": 1.91e-05 + }, + { + "word": "tap", + "freq": 1.91e-05 + }, + { + "word": "huh", + "freq": 1.86e-05 + }, + { + "word": "pit", + "freq": 1.86e-05 + }, + { + "word": "rip", + "freq": 1.82e-05 + }, + { + "word": "ted", + "freq": 1.82e-05 + }, + { + "word": "yea", + "freq": 1.82e-05 + }, + { + "word": "des", + "freq": 1.78e-05 + }, + { + "word": "dvd", + "freq": 1.78e-05 + }, + { + "word": "roy", + "freq": 1.78e-05 + }, + { + "word": "abc", + "freq": 1.74e-05 + }, + { + "word": "pat", + "freq": 1.74e-05 + }, + { + "word": "spy", + "freq": 1.74e-05 + }, + { + "word": "leo", + "freq": 1.7e-05 + }, + { + "word": "pub", + "freq": 1.7e-05 + }, + { + "word": "bin", + "freq": 1.66e-05 + }, + { + "word": "com", + "freq": 1.66e-05 + }, + { + "word": "dig", + "freq": 1.66e-05 + }, + { + "word": "gop", + "freq": 1.66e-05 + }, + { + "word": "ron", + "freq": 1.66e-05 + }, + { + "word": "sue", + "freq": 1.66e-05 + }, + { + "word": "ugh", + "freq": 1.66e-05 + }, + { + "word": "wtf", + "freq": 1.66e-05 + }, + { + "word": "arc", + "freq": 1.62e-05 + }, + { + "word": "cia", + "freq": 1.62e-05 + }, + { + "word": "ken", + "freq": 1.62e-05 + }, + { + "word": "amy", + "freq": 1.58e-05 + }, + { + "word": "bug", + "freq": 1.58e-05 + }, + { + "word": "pic", + "freq": 1.58e-05 + }, + { + "word": "lit", + "freq": 1.55e-05 + }, + { + "word": "mar", + "freq": 1.55e-05 + }, + { + "word": "pie", + "freq": 1.55e-05 + }, + { + "word": "ram", + "freq": 1.55e-05 + }, + { + "word": "lap", + "freq": 1.51e-05 + }, + { + "word": "oak", + "freq": 1.51e-05 + }, + { + "word": "tbh", + "freq": 1.51e-05 + }, + { + "word": "dam", + "freq": 1.48e-05 + }, + { + "word": "hiv", + "freq": 1.48e-05 + }, + { + "word": "idk", + "freq": 1.48e-05 + }, + { + "word": "jam", + "freq": 1.48e-05 + }, + { + "word": "rat", + "freq": 1.48e-05 + }, + { + "word": "von", + "freq": 1.48e-05 + }, + { + "word": "ash", + "freq": 1.45e-05 + }, + { + "word": "der", + "freq": 1.45e-05 + }, + { + "word": "shy", + "freq": 1.45e-05 + }, + { + "word": "aka", + "freq": 1.41e-05 + }, + { + "word": "ion", + "freq": 1.41e-05 + }, + { + "word": "par", + "freq": 1.41e-05 + }, + { + "word": "cow", + "freq": 1.38e-05 + }, + { + "word": "pig", + "freq": 1.38e-05 + }, + { + "word": "rod", + "freq": 1.38e-05 + }, + { + "word": "zoo", + "freq": 1.38e-05 + }, + { + "word": "lip", + "freq": 1.35e-05 + }, + { + "word": "mud", + "freq": 1.35e-05 + }, + { + "word": "owe", + "freq": 1.35e-05 + }, + { + "word": "ski", + "freq": 1.35e-05 + }, + { + "word": "ham", + "freq": 1.32e-05 + }, + { + "word": "ios", + "freq": 1.32e-05 + }, + { + "word": "rap", + "freq": 1.32e-05 + }, + { + "word": "rev", + "freq": 1.32e-05 + }, + { + "word": "sri", + "freq": 1.32e-05 + }, + { + "word": "ace", + "freq": 1.29e-05 + }, + { + "word": "est", + "freq": 1.29e-05 + }, + { + "word": "hmm", + "freq": 1.29e-05 + }, + { + "word": "thy", + "freq": 1.29e-05 + }, + { + "word": "cam", + "freq": 1.26e-05 + }, + { + "word": "fig", + "freq": 1.26e-05 + }, + { + "word": "ore", + "freq": 1.26e-05 + }, + { + "word": "bee", + "freq": 1.23e-05 + }, + { + "word": "hug", + "freq": 1.23e-05 + }, + { + "word": "bud", + "freq": 1.2e-05 + }, + { + "word": "duo", + "freq": 1.2e-05 + }, + { + "word": "hub", + "freq": 1.2e-05 + }, + { + "word": "bio", + "freq": 1.17e-05 + }, + { + "word": "ink", + "freq": 1.17e-05 + }, + { + "word": "inn", + "freq": 1.17e-05 + }, + { + "word": "phd", + "freq": 1.17e-05 + }, + { + "word": "toe", + "freq": 1.17e-05 + }, + { + "word": "btw", + "freq": 1.15e-05 + }, + { + "word": "yup", + "freq": 1.15e-05 + }, + { + "word": "beg", + "freq": 1.12e-05 + }, + { + "word": "dip", + "freq": 1.12e-05 + }, + { + "word": "nyc", + "freq": 1.12e-05 + }, + { + "word": "omg", + "freq": 1.12e-05 + }, + { + "word": "ave", + "freq": 1.1e-05 + }, + { + "word": "cum", + "freq": 1.1e-05 + }, + { + "word": "nut", + "freq": 1.1e-05 + }, + { + "word": "fur", + "freq": 1.07e-05 + }, + { + "word": "mob", + "freq": 1.07e-05 + }, + { + "word": "mph", + "freq": 1.07e-05 + }, + { + "word": "til", + "freq": 1.07e-05 + }, + { + "word": "tin", + "freq": 1.07e-05 + }, + { + "word": "ive", + "freq": 1.05e-05 + }, + { + "word": "apr", + "freq": 1.05e-05 + }, + { + "word": "ego", + "freq": 1.05e-05 + }, + { + "word": "gut", + "freq": 1.05e-05 + }, + { + "word": "nbc", + "freq": 1.05e-05 + }, + { + "word": "nhl", + "freq": 1.05e-05 + }, + { + "word": "abu", + "freq": 1.02e-05 + }, + { + "word": "cal", + "freq": 1.02e-05 + }, + { + "word": "den", + "freq": 1.02e-05 + }, + { + "word": "gov", + "freq": 1.02e-05 + }, + { + "word": "pad", + "freq": 1.02e-05 + }, + { + "word": "sen", + "freq": 1.02e-05 + }, + { + "word": "seo", + "freq": 1.02e-05 + }, + { + "word": "tan", + "freq": 1.02e-05 + }, + { + "word": "gdp", + "freq": 1e-05 + }, + { + "word": "nhs", + "freq": 1e-05 + }, + { + "word": "neo", + "freq": 9.77e-06 + }, + { + "word": "pal", + "freq": 9.77e-06 + }, + { + "word": "gig", + "freq": 9.55e-06 + }, + { + "word": "jaw", + "freq": 9.55e-06 + }, + { + "word": "jin", + "freq": 9.55e-06 + }, + { + "word": "usb", + "freq": 9.55e-06 + }, + { + "word": "rub", + "freq": 9.33e-06 + }, + { + "word": "usd", + "freq": 9.33e-06 + }, + { + "word": "wwe", + "freq": 9.33e-06 + }, + { + "word": "hes", + "freq": 9.12e-06 + }, + { + "word": "flu", + "freq": 9.12e-06 + }, + { + "word": "pee", + "freq": 9.12e-06 + }, + { + "word": "spa", + "freq": 9.12e-06 + }, + { + "word": "tab", + "freq": 9.12e-06 + }, + { + "word": "wit", + "freq": 9.12e-06 + }, + { + "word": "cab", + "freq": 8.91e-06 + }, + { + "word": "chi", + "freq": 8.91e-06 + }, + { + "word": "col", + "freq": 8.91e-06 + }, + { + "word": "ing", + "freq": 8.91e-06 + }, + { + "word": "ref", + "freq": 8.91e-06 + }, + { + "word": "cox", + "freq": 8.71e-06 + }, + { + "word": "gum", + "freq": 8.71e-06 + }, + { + "word": "jun", + "freq": 8.71e-06 + }, + { + "word": "lou", + "freq": 8.71e-06 + }, + { + "word": "sci", + "freq": 8.71e-06 + }, + { + "word": "sep", + "freq": 8.71e-06 + }, + { + "word": "und", + "freq": 8.71e-06 + }, + { + "word": "han", + "freq": 8.51e-06 + }, + { + "word": "ibm", + "freq": 8.51e-06 + }, + { + "word": "jar", + "freq": 8.51e-06 + }, + { + "word": "kay", + "freq": 8.51e-06 + }, + { + "word": "pac", + "freq": 8.51e-06 + }, + { + "word": "bmw", + "freq": 8.32e-06 + }, + { + "word": "boo", + "freq": 8.32e-06 + }, + { + "word": "wax", + "freq": 8.32e-06 + }, + { + "word": "yay", + "freq": 8.32e-06 + }, + { + "word": "def", + "freq": 8.13e-06 + }, + { + "word": "hay", + "freq": 8.13e-06 + }, + { + "word": "mod", + "freq": 8.13e-06 + }, + { + "word": "epa", + "freq": 7.94e-06 + }, + { + "word": "eva", + "freq": 7.94e-06 + }, + { + "word": "fog", + "freq": 7.94e-06 + }, + { + "word": "gif", + "freq": 7.94e-06 + }, + { + "word": "lad", + "freq": 7.94e-06 + }, + { + "word": "opt", + "freq": 7.94e-06 + }, + { + "word": "tel", + "freq": 7.94e-06 + }, + { + "word": "vet", + "freq": 7.94e-06 + }, + { + "word": "ana", + "freq": 7.76e-06 + }, + { + "word": "aye", + "freq": 7.76e-06 + }, + { + "word": "cod", + "freq": 7.76e-06 + }, + { + "word": "cuz", + "freq": 7.76e-06 + }, + { + "word": "fry", + "freq": 7.76e-06 + }, + { + "word": "hon", + "freq": 7.76e-06 + }, + { + "word": "irs", + "freq": 7.76e-06 + }, + { + "word": "mvp", + "freq": 7.76e-06 + }, + { + "word": "rex", + "freq": 7.76e-06 + }, + { + "word": "dem", + "freq": 7.59e-06 + }, + { + "word": "med", + "freq": 7.59e-06 + }, + { + "word": "fda", + "freq": 7.41e-06 + }, + { + "word": "gem", + "freq": 7.41e-06 + }, + { + "word": "jew", + "freq": 7.41e-06 + }, + { + "word": "mia", + "freq": 7.41e-06 + }, + { + "word": "mtv", + "freq": 7.41e-06 + }, + { + "word": "owl", + "freq": 7.41e-06 + }, + { + "word": "wee", + "freq": 7.41e-06 + }, + { + "word": "woo", + "freq": 7.41e-06 + }, + { + "word": "zip", + "freq": 7.41e-06 + }, + { + "word": "ahh", + "freq": 7.24e-06 + }, + { + "word": "dug", + "freq": 7.24e-06 + }, + { + "word": "mon", + "freq": 7.24e-06 + }, + { + "word": "nsa", + "freq": 7.24e-06 + }, + { + "word": "rig", + "freq": 7.24e-06 + }, + { + "word": "url", + "freq": 7.24e-06 + }, + { + "word": "atm", + "freq": 7.08e-06 + }, + { + "word": "bra", + "freq": 7.08e-06 + }, + { + "word": "mlb", + "freq": 7.08e-06 + }, + { + "word": "rim", + "freq": 7.08e-06 + }, + { + "word": "tub", + "freq": 7.08e-06 + }, + { + "word": "ufc", + "freq": 7.08e-06 + }, + { + "word": "dee", + "freq": 6.92e-06 + }, + { + "word": "doe", + "freq": 6.92e-06 + }, + { + "word": "gel", + "freq": 6.92e-06 + }, + { + "word": "hut", + "freq": 6.92e-06 + }, + { + "word": "ira", + "freq": 6.92e-06 + }, + { + "word": "mat", + "freq": 6.92e-06 + }, + { + "word": "pdf", + "freq": 6.92e-06 + }, + { + "word": "que", + "freq": 6.92e-06 + }, + { + "word": "sox", + "freq": 6.92e-06 + }, + { + "word": "vic", + "freq": 6.92e-06 + }, + { + "word": "vii", + "freq": 6.92e-06 + }, + { + "word": "ivy", + "freq": 6.76e-06 + }, + { + "word": "liz", + "freq": 6.76e-06 + }, + { + "word": "llc", + "freq": 6.76e-06 + }, + { + "word": "bot", + "freq": 6.61e-06 + }, + { + "word": "dye", + "freq": 6.61e-06 + }, + { + "word": "nap", + "freq": 6.61e-06 + }, + { + "word": "tee", + "freq": 6.61e-06 + }, + { + "word": "alt", + "freq": 6.46e-06 + }, + { + "word": "gal", + "freq": 6.46e-06 + }, + { + "word": "lid", + "freq": 6.46e-06 + }, + { + "word": "mic", + "freq": 6.46e-06 + }, + { + "word": "nsw", + "freq": 6.46e-06 + }, + { + "word": "afl", + "freq": 6.31e-06 + }, + { + "word": "amp", + "freq": 6.31e-06 + }, + { + "word": "awe", + "freq": 6.31e-06 + }, + { + "word": "diy", + "freq": 6.31e-06 + }, + { + "word": "lin", + "freq": 6.31e-06 + }, + { + "word": "mel", + "freq": 6.31e-06 + }, + { + "word": "sim", + "freq": 6.31e-06 + }, + { + "word": "wan", + "freq": 6.31e-06 + }, + { + "word": "axe", + "freq": 6.17e-06 + }, + { + "word": "hid", + "freq": 6.17e-06 + }, + { + "word": "iso", + "freq": 6.17e-06 + }, + { + "word": "mls", + "freq": 6.17e-06 + }, + { + "word": "rey", + "freq": 6.17e-06 + }, + { + "word": "dom", + "freq": 6.03e-06 + }, + { + "word": "quo", + "freq": 6.03e-06 + }, + { + "word": "soo", + "freq": 6.03e-06 + }, + { + "word": "aaa", + "freq": 5.89e-06 + }, + { + "word": "kai", + "freq": 5.89e-06 + }, + { + "word": "dev", + "freq": 5.75e-06 + }, + { + "word": "ooh", + "freq": 5.75e-06 + }, + { + "word": "vip", + "freq": 5.75e-06 + }, + { + "word": "ark", + "freq": 5.62e-06 + }, + { + "word": "blu", + "freq": 5.62e-06 + }, + { + "word": "bum", + "freq": 5.62e-06 + }, + { + "word": "cue", + "freq": 5.62e-06 + }, + { + "word": "fcc", + "freq": 5.62e-06 + }, + { + "word": "lib", + "freq": 5.62e-06 + }, + { + "word": "nat", + "freq": 5.62e-06 + }, + { + "word": "rom", + "freq": 5.62e-06 + }, + { + "word": "uae", + "freq": 5.62e-06 + }, + { + "word": "eli", + "freq": 5.5e-06 + }, + { + "word": "hbo", + "freq": 5.5e-06 + }, + { + "word": "liu", + "freq": 5.5e-06 + }, + { + "word": "mil", + "freq": 5.5e-06 + }, + { + "word": "mit", + "freq": 5.5e-06 + }, + { + "word": "nod", + "freq": 5.5e-06 + }, + { + "word": "ole", + "freq": 5.37e-06 + }, + { + "word": "usc", + "freq": 5.37e-06 + }, + { + "word": "xxx", + "freq": 5.37e-06 + }, + { + "word": "yen", + "freq": 5.37e-06 + }, + { + "word": "cpu", + "freq": 5.25e-06 + }, + { + "word": "ish", + "freq": 5.25e-06 + }, + { + "word": "rug", + "freq": 5.25e-06 + }, + { + "word": "tow", + "freq": 5.25e-06 + }, + { + "word": "ada", + "freq": 5.13e-06 + }, + { + "word": "bon", + "freq": 5.13e-06 + }, + { + "word": "eco", + "freq": 5.13e-06 + }, + { + "word": "imo", + "freq": 5.13e-06 + }, + { + "word": "mag", + "freq": 5.13e-06 + }, + { + "word": "mug", + "freq": 5.13e-06 + }, + { + "word": "ned", + "freq": 5.13e-06 + }, + { + "word": "tri", + "freq": 5.13e-06 + }, + { + "word": "val", + "freq": 5.13e-06 + }, + { + "word": "afc", + "freq": 5.01e-06 + }, + { + "word": "cha", + "freq": 5.01e-06 + }, + { + "word": "fin", + "freq": 5.01e-06 + }, + { + "word": "nam", + "freq": 5.01e-06 + }, + { + "word": "rot", + "freq": 5.01e-06 + }, + { + "word": "sur", + "freq": 5.01e-06 + }, + { + "word": "utc", + "freq": 5.01e-06 + }, + { + "word": "zen", + "freq": 5.01e-06 + }, + { + "word": "apt", + "freq": 4.9e-06 + }, + { + "word": "pls", + "freq": 4.9e-06 + }, + { + "word": "sol", + "freq": 4.9e-06 + }, + { + "word": "uni", + "freq": 4.9e-06 + }, + { + "word": "ale", + "freq": 4.79e-06 + }, + { + "word": "api", + "freq": 4.79e-06 + }, + { + "word": "gin", + "freq": 4.79e-06 + }, + { + "word": "reg", + "freq": 4.79e-06 + }, + { + "word": "rna", + "freq": 4.79e-06 + }, + { + "word": "wii", + "freq": 4.79e-06 + }, + { + "word": "acc", + "freq": 4.68e-06 + }, + { + "word": "aww", + "freq": 4.68e-06 + }, + { + "word": "hal", + "freq": 4.68e-06 + }, + { + "word": "heh", + "freq": 4.68e-06 + }, + { + "word": "lag", + "freq": 4.68e-06 + }, + { + "word": "sac", + "freq": 4.68e-06 + }, + { + "word": "sip", + "freq": 4.68e-06 + }, + { + "word": "wed", + "freq": 4.57e-06 + }, + { + "word": "bbq", + "freq": 4.57e-06 + }, + { + "word": "eng", + "freq": 4.57e-06 + }, + { + "word": "exp", + "freq": 4.57e-06 + }, + { + "word": "ppl", + "freq": 4.57e-06 + }, + { + "word": "zoe", + "freq": 4.57e-06 + }, + { + "word": "cbd", + "freq": 4.47e-06 + }, + { + "word": "elf", + "freq": 4.47e-06 + }, + { + "word": "gmt", + "freq": 4.47e-06 + }, + { + "word": "kin", + "freq": 4.47e-06 + }, + { + "word": "mae", + "freq": 4.47e-06 + }, + { + "word": "var", + "freq": 4.47e-06 + }, + { + "word": "bam", + "freq": 4.37e-06 + }, + { + "word": "dub", + "freq": 4.37e-06 + }, + { + "word": "icc", + "freq": 4.37e-06 + }, + { + "word": "jul", + "freq": 4.37e-06 + }, + { + "word": "kat", + "freq": 4.37e-06 + }, + { + "word": "lan", + "freq": 4.37e-06 + }, + { + "word": "nun", + "freq": 4.37e-06 + }, + { + "word": "pup", + "freq": 4.37e-06 + }, + { + "word": "raf", + "freq": 4.37e-06 + }, + { + "word": "wig", + "freq": 4.37e-06 + }, + { + "word": "dow", + "freq": 4.27e-06 + }, + { + "word": "fax", + "freq": 4.27e-06 + }, + { + "word": "gag", + "freq": 4.27e-06 + }, + { + "word": "gee", + "freq": 4.27e-06 + }, + { + "word": "rum", + "freq": 4.27e-06 + }, + { + "word": "soy", + "freq": 4.27e-06 + }, + { + "word": "tar", + "freq": 4.27e-06 + }, + { + "word": "abe", + "freq": 4.17e-06 + }, + { + "word": "dim", + "freq": 4.17e-06 + }, + { + "word": "doo", + "freq": 4.17e-06 + }, + { + "word": "rec", + "freq": 4.17e-06 + }, + { + "word": "sic", + "freq": 4.17e-06 + }, + { + "word": "snp", + "freq": 4.17e-06 + }, + { + "word": "tha", + "freq": 4.17e-06 + }, + { + "word": "geo", + "freq": 4.07e-06 + }, + { + "word": "pga", + "freq": 4.07e-06 + }, + { + "word": "plc", + "freq": 4.07e-06 + }, + { + "word": "suv", + "freq": 4.07e-06 + }, + { + "word": "duh", + "freq": 3.98e-06 + }, + { + "word": "mao", + "freq": 3.98e-06 + }, + { + "word": "ohh", + "freq": 3.98e-06 + }, + { + "word": "pam", + "freq": 3.98e-06 + }, + { + "word": "sap", + "freq": 3.98e-06 + }, + { + "word": "cdc", + "freq": 3.89e-06 + }, + { + "word": "cis", + "freq": 3.89e-06 + }, + { + "word": "fla", + "freq": 3.89e-06 + }, + { + "word": "gta", + "freq": 3.89e-06 + }, + { + "word": "hum", + "freq": 3.89e-06 + }, + { + "word": "isa", + "freq": 3.89e-06 + }, + { + "word": "mma", + "freq": 3.89e-06 + }, + { + "word": "rib", + "freq": 3.89e-06 + }, + { + "word": "bae", + "freq": 3.8e-06 + }, + { + "word": "dnc", + "freq": 3.8e-06 + }, + { + "word": "jen", + "freq": 3.8e-06 + }, + { + "word": "hai", + "freq": 3.72e-06 + }, + { + "word": "hog", + "freq": 3.72e-06 + }, + { + "word": "ind", + "freq": 3.72e-06 + }, + { + "word": "lea", + "freq": 3.72e-06 + }, + { + "word": "sid", + "freq": 3.72e-06 + }, + { + "word": "tor", + "freq": 3.72e-06 + }, + { + "word": "umm", + "freq": 3.72e-06 + }, + { + "word": "aha", + "freq": 3.63e-06 + }, + { + "word": "bun", + "freq": 3.63e-06 + }, + { + "word": "din", + "freq": 3.63e-06 + }, + { + "word": "dir", + "freq": 3.63e-06 + }, + { + "word": "hen", + "freq": 3.63e-06 + }, + { + "word": "mri", + "freq": 3.63e-06 + }, + { + "word": "rue", + "freq": 3.63e-06 + }, + { + "word": "sup", + "freq": 3.63e-06 + }, + { + "word": "vow", + "freq": 3.63e-06 + }, + { + "word": "dat", + "freq": 3.55e-06 + }, + { + "word": "esp", + "freq": 3.55e-06 + }, + { + "word": "gil", + "freq": 3.55e-06 + }, + { + "word": "mal", + "freq": 3.55e-06 + }, + { + "word": "mba", + "freq": 3.55e-06 + }, + { + "word": "meg", + "freq": 3.55e-06 + }, + { + "word": "mmm", + "freq": 3.55e-06 + }, + { + "word": "org", + "freq": 3.55e-06 + }, + { + "word": "phi", + "freq": 3.55e-06 + }, + { + "word": "poe", + "freq": 3.55e-06 + }, + { + "word": "pun", + "freq": 3.55e-06 + }, + { + "word": "rag", + "freq": 3.55e-06 + }, + { + "word": "raj", + "freq": 3.55e-06 + }, + { + "word": "sgt", + "freq": 3.55e-06 + }, + { + "word": "bjp", + "freq": 3.47e-06 + }, + { + "word": "gpa", + "freq": 3.47e-06 + }, + { + "word": "hah", + "freq": 3.47e-06 + }, + { + "word": "icy", + "freq": 3.47e-06 + }, + { + "word": "lax", + "freq": 3.47e-06 + }, + { + "word": "pea", + "freq": 3.47e-06 + }, + { + "word": "poo", + "freq": 3.47e-06 + }, + { + "word": "vat", + "freq": 3.47e-06 + }, + { + "word": "yah", + "freq": 3.47e-06 + }, + { + "word": "ari", + "freq": 3.39e-06 + }, + { + "word": "imf", + "freq": 3.39e-06 + }, + { + "word": "itv", + "freq": 3.39e-06 + }, + { + "word": "mai", + "freq": 3.39e-06 + }, + { + "word": "tad", + "freq": 3.39e-06 + }, + { + "word": "yan", + "freq": 3.39e-06 + }, + { + "word": "amd", + "freq": 3.31e-06 + }, + { + "word": "ang", + "freq": 3.31e-06 + }, + { + "word": "dew", + "freq": 3.31e-06 + }, + { + "word": "fam", + "freq": 3.31e-06 + }, + { + "word": "fyi", + "freq": 3.31e-06 + }, + { + "word": "nfc", + "freq": 3.31e-06 + }, + { + "word": "pbs", + "freq": 3.31e-06 + }, + { + "word": "pep", + "freq": 3.31e-06 + }, + { + "word": "rpg", + "freq": 3.31e-06 + }, + { + "word": "rye", + "freq": 3.31e-06 + }, + { + "word": "tex", + "freq": 3.31e-06 + }, + { + "word": "wal", + "freq": 3.31e-06 + }, + { + "word": "yrs", + "freq": 3.31e-06 + }, + { + "word": "atp", + "freq": 3.24e-06 + }, + { + "word": "foe", + "freq": 3.24e-06 + }, + { + "word": "iot", + "freq": 3.24e-06 + }, + { + "word": "tae", + "freq": 3.24e-06 + }, + { + "word": "chu", + "freq": 3.16e-06 + }, + { + "word": "faa", + "freq": 3.16e-06 + }, + { + "word": "hee", + "freq": 3.16e-06 + }, + { + "word": "lex", + "freq": 3.16e-06 + }, + { + "word": "lsu", + "freq": 3.16e-06 + }, + { + "word": "moe", + "freq": 3.16e-06 + }, + { + "word": "por", + "freq": 3.16e-06 + }, + { + "word": "rad", + "freq": 3.16e-06 + }, + { + "word": "smh", + "freq": 3.16e-06 + }, + { + "word": "tai", + "freq": 3.16e-06 + }, + { + "word": "tug", + "freq": 3.16e-06 + }, + { + "word": "ava", + "freq": 3.09e-06 + }, + { + "word": "cbc", + "freq": 3.09e-06 + }, + { + "word": "cho", + "freq": 3.09e-06 + }, + { + "word": "cub", + "freq": 3.09e-06 + }, + { + "word": "edt", + "freq": 3.09e-06 + }, + { + "word": "elk", + "freq": 3.09e-06 + }, + { + "word": "eur", + "freq": 3.09e-06 + }, + { + "word": "hue", + "freq": 3.09e-06 + }, + { + "word": "nan", + "freq": 3.09e-06 + }, + { + "word": "peg", + "freq": 3.09e-06 + }, + { + "word": "rpm", + "freq": 3.09e-06 + }, + { + "word": "ser", + "freq": 3.09e-06 + }, + { + "word": "tao", + "freq": 3.09e-06 + }, + { + "word": "wen", + "freq": 3.09e-06 + }, + { + "word": "aca", + "freq": 3.02e-06 + }, + { + "word": "ama", + "freq": 3.02e-06 + }, + { + "word": "ape", + "freq": 3.02e-06 + }, + { + "word": "fir", + "freq": 3.02e-06 + }, + { + "word": "paw", + "freq": 3.02e-06 + }, + { + "word": "psa", + "freq": 3.02e-06 + }, + { + "word": "rae", + "freq": 3.02e-06 + }, + { + "word": "rss", + "freq": 3.02e-06 + }, + { + "word": "sal", + "freq": 3.02e-06 + }, + { + "word": "tit", + "freq": 3.02e-06 + }, + { + "word": "ufo", + "freq": 3.02e-06 + }, + { + "word": "yoo", + "freq": 3.02e-06 + }, + { + "word": "aap", + "freq": 2.95e-06 + }, + { + "word": "ibn", + "freq": 2.95e-06 + }, + { + "word": "lcd", + "freq": 2.95e-06 + }, + { + "word": "rbi", + "freq": 2.95e-06 + }, + { + "word": "ain", + "freq": 2.88e-06 + }, + { + "word": "che", + "freq": 2.88e-06 + }, + { + "word": "gao", + "freq": 2.88e-06 + }, + { + "word": "npr", + "freq": 2.88e-06 + }, + { + "word": "ren", + "freq": 2.88e-06 + }, + { + "word": "shi", + "freq": 2.88e-06 + }, + { + "word": "wei", + "freq": 2.88e-06 + }, + { + "word": "yum", + "freq": 2.88e-06 + }, + { + "word": "anc", + "freq": 2.82e-06 + }, + { + "word": "nra", + "freq": 2.82e-06 + }, + { + "word": "psi", + "freq": 2.82e-06 + }, + { + "word": "sew", + "freq": 2.82e-06 + }, + { + "word": "uhh", + "freq": 2.82e-06 + }, + { + "word": "wah", + "freq": 2.82e-06 + }, + { + "word": "xii", + "freq": 2.82e-06 + }, + { + "word": "asa", + "freq": 2.75e-06 + }, + { + "word": "aux", + "freq": 2.75e-06 + }, + { + "word": "jfk", + "freq": 2.75e-06 + }, + { + "word": "kia", + "freq": 2.75e-06 + }, + { + "word": "lam", + "freq": 2.75e-06 + }, + { + "word": "ooo", + "freq": 2.75e-06 + }, + { + "word": "pow", + "freq": 2.75e-06 + }, + { + "word": "roe", + "freq": 2.75e-06 + }, + { + "word": "una", + "freq": 2.75e-06 + }, + { + "word": "wat", + "freq": 2.75e-06 + }, + { + "word": "bmi", + "freq": 2.69e-06 + }, + { + "word": "btc", + "freq": 2.69e-06 + }, + { + "word": "dre", + "freq": 2.69e-06 + }, + { + "word": "htc", + "freq": 2.69e-06 + }, + { + "word": "irl", + "freq": 2.69e-06 + }, + { + "word": "len", + "freq": 2.69e-06 + }, + { + "word": "mhz", + "freq": 2.69e-06 + }, + { + "word": "nay", + "freq": 2.69e-06 + }, + { + "word": "ngo", + "freq": 2.69e-06 + }, + { + "word": "pol", + "freq": 2.69e-06 + }, + { + "word": "bel", + "freq": 2.63e-06 + }, + { + "word": "cpr", + "freq": 2.63e-06 + }, + { + "word": "css", + "freq": 2.63e-06 + }, + { + "word": "dlc", + "freq": 2.63e-06 + }, + { + "word": "fri", + "freq": 2.63e-06 + }, + { + "word": "hoc", + "freq": 2.63e-06 + }, + { + "word": "ike", + "freq": 2.63e-06 + }, + { + "word": "jae", + "freq": 2.63e-06 + }, + { + "word": "php", + "freq": 2.63e-06 + }, + { + "word": "std", + "freq": 2.63e-06 + }, + { + "word": "ver", + "freq": 2.63e-06 + }, + { + "word": "vin", + "freq": 2.63e-06 + }, + { + "word": "cad", + "freq": 2.57e-06 + }, + { + "word": "goo", + "freq": 2.57e-06 + }, + { + "word": "maj", + "freq": 2.57e-06 + }, + { + "word": "pew", + "freq": 2.57e-06 + }, + { + "word": "boi", + "freq": 2.51e-06 + }, + { + "word": "goa", + "freq": 2.51e-06 + }, + { + "word": "meh", + "freq": 2.51e-06 + }, + { + "word": "nic", + "freq": 2.51e-06 + }, + { + "word": "pak", + "freq": 2.51e-06 + }, + { + "word": "sly", + "freq": 2.51e-06 + }, + { + "word": "vid", + "freq": 2.51e-06 + }, + { + "word": "xvi", + "freq": 2.51e-06 + }, + { + "word": "aft", + "freq": 2.45e-06 + }, + { + "word": "dea", + "freq": 2.45e-06 + }, + { + "word": "eff", + "freq": 2.45e-06 + }, + { + "word": "err", + "freq": 2.45e-06 + }, + { + "word": "fab", + "freq": 2.45e-06 + }, + { + "word": "liv", + "freq": 2.45e-06 + }, + { + "word": "mei", + "freq": 2.45e-06 + }, + { + "word": "mop", + "freq": 2.45e-06 + }, + { + "word": "roi", + "freq": 2.45e-06 + }, + { + "word": "vpn", + "freq": 2.45e-06 + }, + { + "word": "xiv", + "freq": 2.45e-06 + }, + { + "word": "amc", + "freq": 2.4e-06 + }, + { + "word": "blm", + "freq": 2.4e-06 + }, + { + "word": "det", + "freq": 2.4e-06 + }, + { + "word": "gst", + "freq": 2.4e-06 + }, + { + "word": "hms", + "freq": 2.4e-06 + }, + { + "word": "hoo", + "freq": 2.4e-06 + }, + { + "word": "hun", + "freq": 2.4e-06 + }, + { + "word": "lte", + "freq": 2.4e-06 + }, + { + "word": "mir", + "freq": 2.4e-06 + }, + { + "word": "ndp", + "freq": 2.4e-06 + }, + { + "word": "sbs", + "freq": 2.4e-06 + }, + { + "word": "sow", + "freq": 2.4e-06 + }, + { + "word": "sql", + "freq": 2.4e-06 + }, + { + "word": "zac", + "freq": 2.4e-06 + }, + { + "word": "acl", + "freq": 2.34e-06 + }, + { + "word": "avg", + "freq": 2.34e-06 + }, + { + "word": "cgi", + "freq": 2.34e-06 + }, + { + "word": "div", + "freq": 2.34e-06 + }, + { + "word": "eta", + "freq": 2.34e-06 + }, + { + "word": "ipo", + "freq": 2.34e-06 + }, + { + "word": "jai", + "freq": 2.34e-06 + }, + { + "word": "kan", + "freq": 2.34e-06 + }, + { + "word": "nrl", + "freq": 2.34e-06 + }, + { + "word": "sao", + "freq": 2.34e-06 + }, + { + "word": "www", + "freq": 2.34e-06 + }, + { + "word": "bop", + "freq": 2.29e-06 + }, + { + "word": "elm", + "freq": 2.29e-06 + }, + { + "word": "git", + "freq": 2.29e-06 + }, + { + "word": "png", + "freq": 2.29e-06 + }, + { + "word": "yer", + "freq": 2.29e-06 + }, + { + "word": "afp", + "freq": 2.24e-06 + }, + { + "word": "dui", + "freq": 2.24e-06 + }, + { + "word": "fps", + "freq": 2.24e-06 + }, + { + "word": "hud", + "freq": 2.24e-06 + }, + { + "word": "jab", + "freq": 2.24e-06 + }, + { + "word": "nih", + "freq": 2.24e-06 + }, + { + "word": "obi", + "freq": 2.24e-06 + }, + { + "word": "pip", + "freq": 2.24e-06 + }, + { + "word": "sha", + "freq": 2.24e-06 + }, + { + "word": "tat", + "freq": 2.24e-06 + }, + { + "word": "vie", + "freq": 2.24e-06 + }, + { + "word": "yin", + "freq": 2.24e-06 + }, + { + "word": "yun", + "freq": 2.24e-06 + }, + { + "word": "tvs", + "freq": 2.19e-06 + }, + { + "word": "bea", + "freq": 2.19e-06 + }, + { + "word": "bog", + "freq": 2.19e-06 + }, + { + "word": "bom", + "freq": 2.19e-06 + }, + { + "word": "dia", + "freq": 2.19e-06 + }, + { + "word": "dod", + "freq": 2.19e-06 + }, + { + "word": "foo", + "freq": 2.19e-06 + }, + { + "word": "gon", + "freq": 2.19e-06 + }, + { + "word": "luc", + "freq": 2.19e-06 + }, + { + "word": "tsa", + "freq": 2.19e-06 + }, + { + "word": "une", + "freq": 2.19e-06 + }, + { + "word": "dun", + "freq": 2.14e-06 + }, + { + "word": "ict", + "freq": 2.14e-06 + }, + { + "word": "lim", + "freq": 2.14e-06 + }, + { + "word": "lux", + "freq": 2.14e-06 + }, + { + "word": "nil", + "freq": 2.14e-06 + }, + { + "word": "unc", + "freq": 2.14e-06 + }, + { + "word": "aba", + "freq": 2.09e-06 + }, + { + "word": "apa", + "freq": 2.09e-06 + }, + { + "word": "cor", + "freq": 2.09e-06 + }, + { + "word": "dab", + "freq": 2.09e-06 + }, + { + "word": "dar", + "freq": 2.09e-06 + }, + { + "word": "ent", + "freq": 2.09e-06 + }, + { + "word": "fag", + "freq": 2.09e-06 + }, + { + "word": "fil", + "freq": 2.09e-06 + }, + { + "word": "fro", + "freq": 2.09e-06 + }, + { + "word": "gma", + "freq": 2.09e-06 + }, + { + "word": "mla", + "freq": 2.09e-06 + }, + { + "word": "nip", + "freq": 2.09e-06 + }, + { + "word": "nxt", + "freq": 2.09e-06 + }, + { + "word": "nye", + "freq": 2.09e-06 + }, + { + "word": "psg", + "freq": 2.09e-06 + }, + { + "word": "qui", + "freq": 2.09e-06 + }, + { + "word": "soc", + "freq": 2.09e-06 + }, + { + "word": "sta", + "freq": 2.09e-06 + }, + { + "word": "yeh", + "freq": 2.09e-06 + }, + { + "word": "bey", + "freq": 2.04e-06 + }, + { + "word": "cba", + "freq": 2.04e-06 + }, + { + "word": "cbi", + "freq": 2.04e-06 + }, + { + "word": "ghz", + "freq": 2.04e-06 + }, + { + "word": "hex", + "freq": 2.04e-06 + }, + { + "word": "ipa", + "freq": 2.04e-06 + }, + { + "word": "jax", + "freq": 2.04e-06 + }, + { + "word": "lac", + "freq": 2.04e-06 + }, + { + "word": "nec", + "freq": 2.04e-06 + }, + { + "word": "ode", + "freq": 2.04e-06 + }, + { + "word": "oem", + "freq": 2.04e-06 + }, + { + "word": "rea", + "freq": 2.04e-06 + }, + { + "word": "roc", + "freq": 2.04e-06 + }, + { + "word": "thc", + "freq": 2.04e-06 + }, + { + "word": "tnt", + "freq": 2.04e-06 + }, + { + "word": "woe", + "freq": 2.04e-06 + }, + { + "word": "abi", + "freq": 2e-06 + }, + { + "word": "ami", + "freq": 2e-06 + }, + { + "word": "coo", + "freq": 2e-06 + }, + { + "word": "flo", + "freq": 2e-06 + }, + { + "word": "jog", + "freq": 2e-06 + }, + { + "word": "jug", + "freq": 2e-06 + }, + { + "word": "kgb", + "freq": 2e-06 + }, + { + "word": "loo", + "freq": 2e-06 + }, + { + "word": "ofc", + "freq": 2e-06 + }, + { + "word": "pax", + "freq": 2e-06 + }, + { + "word": "pov", + "freq": 2e-06 + }, + { + "word": "rao", + "freq": 2e-06 + }, + { + "word": "ros", + "freq": 2e-06 + }, + { + "word": "taj", + "freq": 2e-06 + }, + { + "word": "tlc", + "freq": 2e-06 + }, + { + "word": "veg", + "freq": 2e-06 + }, + { + "word": "vhs", + "freq": 2e-06 + }, + { + "word": "wha", + "freq": 2e-06 + }, + { + "word": "cio", + "freq": 1.95e-06 + }, + { + "word": "dei", + "freq": 1.95e-06 + }, + { + "word": "doj", + "freq": 1.95e-06 + }, + { + "word": "fay", + "freq": 1.95e-06 + }, + { + "word": "gui", + "freq": 1.95e-06 + }, + { + "word": "idf", + "freq": 1.95e-06 + }, + { + "word": "jeb", + "freq": 1.95e-06 + }, + { + "word": "lai", + "freq": 1.95e-06 + }, + { + "word": "mer", + "freq": 1.95e-06 + }, + { + "word": "nes", + "freq": 1.95e-06 + }, + { + "word": "ocd", + "freq": 1.95e-06 + }, + { + "word": "ppp", + "freq": 1.95e-06 + }, + { + "word": "pst", + "freq": 1.95e-06 + }, + { + "word": "tau", + "freq": 1.95e-06 + }, + { + "word": "xml", + "freq": 1.95e-06 + }, + { + "word": "cpi", + "freq": 1.91e-06 + }, + { + "word": "dae", + "freq": 1.91e-06 + }, + { + "word": "esa", + "freq": 1.91e-06 + }, + { + "word": "hwy", + "freq": 1.91e-06 + }, + { + "word": "kfc", + "freq": 1.91e-06 + }, + { + "word": "msm", + "freq": 1.91e-06 + }, + { + "word": "pap", + "freq": 1.91e-06 + }, + { + "word": "rem", + "freq": 1.91e-06 + }, + { + "word": "tac", + "freq": 1.91e-06 + }, + { + "word": "tam", + "freq": 1.91e-06 + }, + { + "word": "uno", + "freq": 1.91e-06 + }, + { + "word": "wil", + "freq": 1.91e-06 + }, + { + "word": "yee", + "freq": 1.91e-06 + }, + { + "word": "biz", + "freq": 1.86e-06 + }, + { + "word": "dai", + "freq": 1.86e-06 + }, + { + "word": "doi", + "freq": 1.86e-06 + }, + { + "word": "faq", + "freq": 1.86e-06 + }, + { + "word": "kun", + "freq": 1.86e-06 + }, + { + "word": "lao", + "freq": 1.86e-06 + }, + { + "word": "lau", + "freq": 1.86e-06 + }, + { + "word": "lew", + "freq": 1.86e-06 + }, + { + "word": "mgm", + "freq": 1.86e-06 + }, + { + "word": "odi", + "freq": 1.86e-06 + }, + { + "word": "orr", + "freq": 1.86e-06 + }, + { + "word": "sai", + "freq": 1.86e-06 + }, + { + "word": "sig", + "freq": 1.86e-06 + }, + { + "word": "sob", + "freq": 1.86e-06 + }, + { + "word": "str", + "freq": 1.86e-06 + }, + { + "word": "dex", + "freq": 1.82e-06 + }, + { + "word": "dhs", + "freq": 1.82e-06 + }, + { + "word": "fad", + "freq": 1.82e-06 + }, + { + "word": "fol", + "freq": 1.82e-06 + }, + { + "word": "moi", + "freq": 1.82e-06 + }, + { + "word": "nav", + "freq": 1.82e-06 + }, + { + "word": "orb", + "freq": 1.82e-06 + }, + { + "word": "pla", + "freq": 1.82e-06 + }, + { + "word": "plz", + "freq": 1.82e-06 + }, + { + "word": "spd", + "freq": 1.82e-06 + }, + { + "word": "tal", + "freq": 1.82e-06 + }, + { + "word": "ter", + "freq": 1.82e-06 + }, + { + "word": "uri", + "freq": 1.82e-06 + }, + { + "word": "civ", + "freq": 1.78e-06 + }, + { + "word": "csi", + "freq": 1.78e-06 + }, + { + "word": "dal", + "freq": 1.78e-06 + }, + { + "word": "eid", + "freq": 1.78e-06 + }, + { + "word": "gmo", + "freq": 1.78e-06 + }, + { + "word": "hoe", + "freq": 1.78e-06 + }, + { + "word": "icu", + "freq": 1.78e-06 + }, + { + "word": "isp", + "freq": 1.78e-06 + }, + { + "word": "kev", + "freq": 1.78e-06 + }, + { + "word": "lsd", + "freq": 1.78e-06 + }, + { + "word": "oft", + "freq": 1.78e-06 + }, + { + "word": "rai", + "freq": 1.78e-06 + }, + { + "word": "sag", + "freq": 1.78e-06 + }, + { + "word": "sem", + "freq": 1.78e-06 + }, + { + "word": "sod", + "freq": 1.78e-06 + }, + { + "word": "ssr", + "freq": 1.78e-06 + }, + { + "word": "tsp", + "freq": 1.78e-06 + }, + { + "word": "abt", + "freq": 1.74e-06 + }, + { + "word": "aol", + "freq": 1.74e-06 + }, + { + "word": "apc", + "freq": 1.74e-06 + }, + { + "word": "cpa", + "freq": 1.74e-06 + }, + { + "word": "dmv", + "freq": 1.74e-06 + }, + { + "word": "dns", + "freq": 1.74e-06 + }, + { + "word": "emo", + "freq": 1.74e-06 + }, + { + "word": "hem", + "freq": 1.74e-06 + }, + { + "word": "hua", + "freq": 1.74e-06 + }, + { + "word": "ioc", + "freq": 1.74e-06 + }, + { + "word": "loc", + "freq": 1.74e-06 + }, + { + "word": "mah", + "freq": 1.74e-06 + }, + { + "word": "naw", + "freq": 1.74e-06 + }, + { + "word": "snl", + "freq": 1.74e-06 + }, + { + "word": "tak", + "freq": 1.74e-06 + }, + { + "word": "tpp", + "freq": 1.74e-06 + }, + { + "word": "tue", + "freq": 1.74e-06 + }, + { + "word": "urn", + "freq": 1.74e-06 + }, + { + "word": "ccp", + "freq": 1.7e-06 + }, + { + "word": "deb", + "freq": 1.7e-06 + }, + { + "word": "eel", + "freq": 1.7e-06 + }, + { + "word": "eos", + "freq": 1.7e-06 + }, + { + "word": "fav", + "freq": 1.7e-06 + }, + { + "word": "ftc", + "freq": 1.7e-06 + }, + { + "word": "imp", + "freq": 1.7e-06 + }, + { + "word": "kkk", + "freq": 1.7e-06 + }, + { + "word": "msc", + "freq": 1.7e-06 + }, + { + "word": "nyt", + "freq": 1.7e-06 + }, + { + "word": "ost", + "freq": 1.7e-06 + }, + { + "word": "psp", + "freq": 1.7e-06 + }, + { + "word": "ryu", + "freq": 1.7e-06 + }, + { + "word": "vox", + "freq": 1.7e-06 + }, + { + "word": "wto", + "freq": 1.7e-06 + }, + { + "word": "ars", + "freq": 1.66e-06 + }, + { + "word": "att", + "freq": 1.66e-06 + }, + { + "word": "ein", + "freq": 1.66e-06 + }, + { + "word": "erm", + "freq": 1.66e-06 + }, + { + "word": "gpu", + "freq": 1.66e-06 + }, + { + "word": "hye", + "freq": 1.66e-06 + }, + { + "word": "ich", + "freq": 1.66e-06 + }, + { + "word": "ina", + "freq": 1.66e-06 + }, + { + "word": "ire", + "freq": 1.66e-06 + }, + { + "word": "lds", + "freq": 1.66e-06 + }, + { + "word": "nom", + "freq": 1.66e-06 + }, + { + "word": "osu", + "freq": 1.66e-06 + }, + { + "word": "pty", + "freq": 1.66e-06 + }, + { + "word": "ste", + "freq": 1.66e-06 + }, + { + "word": "stu", + "freq": 1.66e-06 + }, + { + "word": "ara", + "freq": 1.62e-06 + }, + { + "word": "cot", + "freq": 1.62e-06 + }, + { + "word": "edm", + "freq": 1.62e-06 + }, + { + "word": "edo", + "freq": 1.62e-06 + }, + { + "word": "eth", + "freq": 1.62e-06 + }, + { + "word": "hui", + "freq": 1.62e-06 + }, + { + "word": "ign", + "freq": 1.62e-06 + }, + { + "word": "ipl", + "freq": 1.62e-06 + }, + { + "word": "nee", + "freq": 1.62e-06 + }, + { + "word": "pvc", + "freq": 1.62e-06 + } + ], + "2": [ + { + "word": "to", + "freq": 0.0269 + }, + { + "word": "of", + "freq": 0.0251 + }, + { + "word": "on", + "freq": 0.00813 + }, + { + "word": "be", + "freq": 0.00617 + }, + { + "word": "at", + "freq": 0.00501 + }, + { + "word": "he", + "freq": 0.0049 + }, + { + "word": "by", + "freq": 0.00457 + }, + { + "word": "my", + "freq": 0.00372 + }, + { + "word": "we", + "freq": 0.00347 + }, + { + "word": "an", + "freq": 0.00339 + }, + { + "word": "so", + "freq": 0.00331 + }, + { + "word": "me", + "freq": 0.00302 + }, + { + "word": "up", + "freq": 0.00245 + }, + { + "word": "do", + "freq": 0.00224 + }, + { + "word": "no", + "freq": 0.00224 + }, + { + "word": "go", + "freq": 0.00107 + }, + { + "word": "mr", + "freq": 0.00049 + }, + { + "word": "oh", + "freq": 0.000269 + }, + { + "word": "dr", + "freq": 0.000174 + }, + { + "word": "de", + "freq": 0.00017 + }, + { + "word": "re", + "freq": 0.00017 + }, + { + "word": "co", + "freq": 0.000162 + }, + { + "word": "st", + "freq": 0.000158 + }, + { + "word": "tv", + "freq": 0.000158 + }, + { + "word": "al", + "freq": 0.000145 + }, + { + "word": "ok", + "freq": 0.000138 + }, + { + "word": "uk", + "freq": 0.000132 + }, + { + "word": "la", + "freq": 0.000112 + }, + { + "word": "ii", + "freq": 0.000105 + }, + { + "word": "hi", + "freq": 0.0001 + }, + { + "word": "ex", + "freq": 6.46e-05 + }, + { + "word": "ad", + "freq": 5.75e-05 + }, + { + "word": "im", + "freq": 4.9e-05 + }, + { + "word": "pm", + "freq": 4.9e-05 + }, + { + "word": "ca", + "freq": 4.68e-05 + }, + { + "word": "ya", + "freq": 4.68e-05 + }, + { + "word": "et", + "freq": 4.57e-05 + }, + { + "word": "ll", + "freq": 4.57e-05 + }, + { + "word": "mm", + "freq": 4.47e-05 + }, + { + "word": "ah", + "freq": 4.27e-05 + }, + { + "word": "ma", + "freq": 4.27e-05 + }, + { + "word": "eu", + "freq": 4.17e-05 + }, + { + "word": "un", + "freq": 4.17e-05 + }, + { + "word": "id", + "freq": 4.07e-05 + }, + { + "word": "ha", + "freq": 3.8e-05 + }, + { + "word": "em", + "freq": 3.72e-05 + }, + { + "word": "dc", + "freq": 3.63e-05 + }, + { + "word": "el", + "freq": 3.63e-05 + }, + { + "word": "ve", + "freq": 3.63e-05 + }, + { + "word": "jr", + "freq": 3.55e-05 + }, + { + "word": "da", + "freq": 3.47e-05 + }, + { + "word": "pc", + "freq": 3.39e-05 + }, + { + "word": "ft", + "freq": 3.31e-05 + }, + { + "word": "en", + "freq": 3.16e-05 + }, + { + "word": "le", + "freq": 3.16e-05 + }, + { + "word": "bc", + "freq": 3.09e-05 + }, + { + "word": "pa", + "freq": 2.88e-05 + }, + { + "word": "yo", + "freq": 2.82e-05 + }, + { + "word": "ny", + "freq": 2.69e-05 + }, + { + "word": "na", + "freq": 2.63e-05 + }, + { + "word": "op", + "freq": 2.63e-05 + }, + { + "word": "ap", + "freq": 2.51e-05 + }, + { + "word": "mo", + "freq": 2.4e-05 + }, + { + "word": "pp", + "freq": 2.4e-05 + }, + { + "word": "km", + "freq": 2.34e-05 + }, + { + "word": "cd", + "freq": 2.29e-05 + }, + { + "word": "di", + "freq": 2.14e-05 + }, + { + "word": "mi", + "freq": 2e-05 + }, + { + "word": "sa", + "freq": 2e-05 + }, + { + "word": "mp", + "freq": 1.95e-05 + }, + { + "word": "se", + "freq": 1.95e-05 + }, + { + "word": "cm", + "freq": 1.86e-05 + }, + { + "word": "eh", + "freq": 1.82e-05 + }, + { + "word": "fi", + "freq": 1.82e-05 + }, + { + "word": "hd", + "freq": 1.82e-05 + }, + { + "word": "uh", + "freq": 1.82e-05 + }, + { + "word": "va", + "freq": 1.82e-05 + }, + { + "word": "ac", + "freq": 1.78e-05 + }, + { + "word": "li", + "freq": 1.78e-05 + }, + { + "word": "ye", + "freq": 1.78e-05 + }, + { + "word": "er", + "freq": 1.74e-05 + }, + { + "word": "ai", + "freq": 1.7e-05 + }, + { + "word": "dj", + "freq": 1.7e-05 + }, + { + "word": "ho", + "freq": 1.66e-05 + }, + { + "word": "du", + "freq": 1.62e-05 + }, + { + "word": "ep", + "freq": 1.62e-05 + }, + { + "word": "fa", + "freq": 1.58e-05 + }, + { + "word": "hr", + "freq": 1.58e-05 + }, + { + "word": "md", + "freq": 1.58e-05 + }, + { + "word": "th", + "freq": 1.58e-05 + }, + { + "word": "pr", + "freq": 1.55e-05 + }, + { + "word": "sc", + "freq": 1.51e-05 + }, + { + "word": "si", + "freq": 1.48e-05 + }, + { + "word": "wa", + "freq": 1.48e-05 + }, + { + "word": "gm", + "freq": 1.45e-05 + }, + { + "word": "cc", + "freq": 1.41e-05 + }, + { + "word": "lt", + "freq": 1.41e-05 + }, + { + "word": "ga", + "freq": 1.38e-05 + }, + { + "word": "aw", + "freq": 1.35e-05 + }, + { + "word": "ba", + "freq": 1.35e-05 + }, + { + "word": "hp", + "freq": 1.35e-05 + }, + { + "word": "mt", + "freq": 1.35e-05 + }, + { + "word": "um", + "freq": 1.35e-05 + }, + { + "word": "mg", + "freq": 1.32e-05 + }, + { + "word": "xi", + "freq": 1.32e-05 + }, + { + "word": "ct", + "freq": 1.29e-05 + }, + { + "word": "rd", + "freq": 1.29e-05 + }, + { + "word": "fl", + "freq": 1.23e-05 + }, + { + "word": "fr", + "freq": 1.23e-05 + }, + { + "word": "vi", + "freq": 1.23e-05 + }, + { + "word": "wi", + "freq": 1.23e-05 + }, + { + "word": "kg", + "freq": 1.2e-05 + }, + { + "word": "lo", + "freq": 1.17e-05 + }, + { + "word": "te", + "freq": 1.17e-05 + }, + { + "word": "ab", + "freq": 1.15e-05 + }, + { + "word": "fc", + "freq": 1.15e-05 + }, + { + "word": "nc", + "freq": 1.12e-05 + }, + { + "word": "ne", + "freq": 1.12e-05 + }, + { + "word": "bi", + "freq": 1.1e-05 + }, + { + "word": "ip", + "freq": 1.1e-05 + }, + { + "word": "pt", + "freq": 1.1e-05 + }, + { + "word": "rt", + "freq": 1.1e-05 + }, + { + "word": "jo", + "freq": 1.07e-05 + }, + { + "word": "sp", + "freq": 1.07e-05 + }, + { + "word": "sr", + "freq": 1.07e-05 + }, + { + "word": "au", + "freq": 1.05e-05 + }, + { + "word": "fm", + "freq": 1.05e-05 + }, + { + "word": "ta", + "freq": 1.05e-05 + }, + { + "word": "tl", + "freq": 1.05e-05 + }, + { + "word": "aa", + "freq": 1.02e-05 + }, + { + "word": "oz", + "freq": 1.02e-05 + }, + { + "word": "tx", + "freq": 1.02e-05 + }, + { + "word": "bo", + "freq": 1e-05 + }, + { + "word": "mc", + "freq": 1e-05 + }, + { + "word": "cr", + "freq": 9.77e-06 + }, + { + "word": "ol", + "freq": 9.55e-06 + }, + { + "word": "af", + "freq": 9.33e-06 + }, + { + "word": "nj", + "freq": 9.33e-06 + }, + { + "word": "ph", + "freq": 9.33e-06 + }, + { + "word": "po", + "freq": 9.33e-06 + }, + { + "word": "ag", + "freq": 8.91e-06 + }, + { + "word": "ch", + "freq": 8.91e-06 + }, + { + "word": "lb", + "freq": 8.51e-06 + }, + { + "word": "ni", + "freq": 8.51e-06 + }, + { + "word": "pi", + "freq": 8.32e-06 + }, + { + "word": "su", + "freq": 8.32e-06 + }, + { + "word": "yu", + "freq": 8.32e-06 + }, + { + "word": "gb", + "freq": 8.13e-06 + }, + { + "word": "ur", + "freq": 8.13e-06 + }, + { + "word": "fe", + "freq": 7.94e-06 + }, + { + "word": "ng", + "freq": 7.94e-06 + }, + { + "word": "ra", + "freq": 7.94e-06 + }, + { + "word": "br", + "freq": 7.76e-06 + }, + { + "word": "ji", + "freq": 7.76e-06 + }, + { + "word": "sd", + "freq": 7.76e-06 + }, + { + "word": "bt", + "freq": 7.59e-06 + }, + { + "word": "dm", + "freq": 7.59e-06 + }, + { + "word": "fu", + "freq": 7.59e-06 + }, + { + "word": "gf", + "freq": 7.59e-06 + }, + { + "word": "gp", + "freq": 7.59e-06 + }, + { + "word": "ki", + "freq": 7.59e-06 + }, + { + "word": "pg", + "freq": 7.59e-06 + }, + { + "word": "pl", + "freq": 7.59e-06 + }, + { + "word": "sf", + "freq": 7.59e-06 + }, + { + "word": "xd", + "freq": 7.41e-06 + }, + { + "word": "sh", + "freq": 7.24e-06 + }, + { + "word": "cf", + "freq": 7.08e-06 + }, + { + "word": "cl", + "freq": 7.08e-06 + }, + { + "word": "lp", + "freq": 7.08e-06 + }, + { + "word": "ot", + "freq": 7.08e-06 + }, + { + "word": "ti", + "freq": 7.08e-06 + }, + { + "word": "bb", + "freq": 6.92e-06 + }, + { + "word": "ml", + "freq": 6.92e-06 + }, + { + "word": "bp", + "freq": 6.76e-06 + }, + { + "word": "ce", + "freq": 6.76e-06 + }, + { + "word": "ge", + "freq": 6.76e-06 + }, + { + "word": "ka", + "freq": 6.76e-06 + }, + { + "word": "sq", + "freq": 6.76e-06 + }, + { + "word": "vr", + "freq": 6.76e-06 + }, + { + "word": "hm", + "freq": 6.61e-06 + }, + { + "word": "nm", + "freq": 6.61e-06 + }, + { + "word": "ea", + "freq": 6.46e-06 + }, + { + "word": "qb", + "freq": 6.46e-06 + }, + { + "word": "wu", + "freq": 6.46e-06 + }, + { + "word": "ie", + "freq": 6.31e-06 + }, + { + "word": "bf", + "freq": 6.17e-06 + }, + { + "word": "cp", + "freq": 6.17e-06 + }, + { + "word": "gt", + "freq": 6.17e-06 + }, + { + "word": "nz", + "freq": 6.17e-06 + }, + { + "word": "yr", + "freq": 6.17e-06 + }, + { + "word": "ff", + "freq": 6.03e-06 + }, + { + "word": "mb", + "freq": 6.03e-06 + }, + { + "word": "db", + "freq": 5.89e-06 + }, + { + "word": "ky", + "freq": 5.89e-06 + }, + { + "word": "ou", + "freq": 5.89e-06 + }, + { + "word": "fb", + "freq": 5.75e-06 + }, + { + "word": "tu", + "freq": 5.75e-06 + }, + { + "word": "rm", + "freq": 5.62e-06 + }, + { + "word": "wh", + "freq": 5.5e-06 + }, + { + "word": "xx", + "freq": 5.5e-06 + }, + { + "word": "ak", + "freq": 5.37e-06 + }, + { + "word": "hq", + "freq": 5.37e-06 + }, + { + "word": "ko", + "freq": 5.37e-06 + }, + { + "word": "ln", + "freq": 5.37e-06 + }, + { + "word": "mn", + "freq": 5.37e-06 + }, + { + "word": "tr", + "freq": 5.37e-06 + }, + { + "word": "ty", + "freq": 5.37e-06 + }, + { + "word": "gi", + "freq": 5.25e-06 + }, + { + "word": "nw", + "freq": 5.25e-06 + }, + { + "word": "og", + "freq": 5.25e-06 + }, + { + "word": "pe", + "freq": 5.25e-06 + }, + { + "word": "uc", + "freq": 5.25e-06 + }, + { + "word": "ut", + "freq": 5.25e-06 + }, + { + "word": "vp", + "freq": 5.25e-06 + }, + { + "word": "cb", + "freq": 5.13e-06 + }, + { + "word": "ja", + "freq": 5.13e-06 + }, + { + "word": "nd", + "freq": 5.13e-06 + }, + { + "word": "oi", + "freq": 5.13e-06 + }, + { + "word": "rn", + "freq": 5.13e-06 + }, + { + "word": "sm", + "freq": 5.13e-06 + }, + { + "word": "tb", + "freq": 5.13e-06 + }, + { + "word": "tn", + "freq": 5.13e-06 + }, + { + "word": "ec", + "freq": 5.01e-06 + }, + { + "word": "ia", + "freq": 5.01e-06 + }, + { + "word": "pd", + "freq": 5.01e-06 + }, + { + "word": "rb", + "freq": 5.01e-06 + }, + { + "word": "sb", + "freq": 5.01e-06 + }, + { + "word": "wo", + "freq": 5.01e-06 + }, + { + "word": "iq", + "freq": 4.9e-06 + }, + { + "word": "ix", + "freq": 4.9e-06 + }, + { + "word": "mu", + "freq": 4.9e-06 + }, + { + "word": "ri", + "freq": 4.9e-06 + }, + { + "word": "az", + "freq": 4.79e-06 + }, + { + "word": "dd", + "freq": 4.79e-06 + }, + { + "word": "ir", + "freq": 4.79e-06 + }, + { + "word": "sw", + "freq": 4.79e-06 + }, + { + "word": "xl", + "freq": 4.79e-06 + }, + { + "word": "dl", + "freq": 4.68e-06 + }, + { + "word": "lg", + "freq": 4.68e-06 + }, + { + "word": "rp", + "freq": 4.68e-06 + }, + { + "word": "xp", + "freq": 4.68e-06 + }, + { + "word": "wr", + "freq": 4.57e-06 + }, + { + "word": "yi", + "freq": 4.57e-06 + }, + { + "word": "ev", + "freq": 4.47e-06 + }, + { + "word": "fo", + "freq": 4.47e-06 + }, + { + "word": "hc", + "freq": 4.47e-06 + }, + { + "word": "jp", + "freq": 4.47e-06 + }, + { + "word": "rc", + "freq": 4.47e-06 + }, + { + "word": "lu", + "freq": 4.37e-06 + }, + { + "word": "ow", + "freq": 4.37e-06 + }, + { + "word": "av", + "freq": 4.27e-06 + }, + { + "word": "ig", + "freq": 4.27e-06 + }, + { + "word": "je", + "freq": 4.27e-06 + }, + { + "word": "jj", + "freq": 4.27e-06 + }, + { + "word": "uv", + "freq": 4.27e-06 + }, + { + "word": "eg", + "freq": 4.17e-06 + }, + { + "word": "mf", + "freq": 4.17e-06 + }, + { + "word": "ro", + "freq": 4.17e-06 + }, + { + "word": "tm", + "freq": 4.17e-06 + }, + { + "word": "ui", + "freq": 4.17e-06 + }, + { + "word": "ay", + "freq": 4.07e-06 + }, + { + "word": "cv", + "freq": 4.07e-06 + }, + { + "word": "ee", + "freq": 4.07e-06 + }, + { + "word": "sl", + "freq": 4.07e-06 + }, + { + "word": "tt", + "freq": 4.07e-06 + }, + { + "word": "aj", + "freq": 3.89e-06 + }, + { + "word": "fx", + "freq": 3.89e-06 + }, + { + "word": "oc", + "freq": 3.89e-06 + }, + { + "word": "nt", + "freq": 3.8e-06 + }, + { + "word": "ew", + "freq": 3.8e-06 + }, + { + "word": "hu", + "freq": 3.8e-06 + }, + { + "word": "mk", + "freq": 3.8e-06 + }, + { + "word": "mw", + "freq": 3.8e-06 + }, + { + "word": "gc", + "freq": 3.72e-06 + }, + { + "word": "ju", + "freq": 3.72e-06 + }, + { + "word": "np", + "freq": 3.72e-06 + }, + { + "word": "oo", + "freq": 3.72e-06 + }, + { + "word": "dt", + "freq": 3.63e-06 + }, + { + "word": "nh", + "freq": 3.63e-06 + }, + { + "word": "tf", + "freq": 3.63e-06 + }, + { + "word": "cu", + "freq": 3.55e-06 + }, + { + "word": "ic", + "freq": 3.55e-06 + }, + { + "word": "kc", + "freq": 3.55e-06 + }, + { + "word": "nu", + "freq": 3.55e-06 + }, + { + "word": "om", + "freq": 3.55e-06 + }, + { + "word": "rf", + "freq": 3.55e-06 + }, + { + "word": "rv", + "freq": 3.55e-06 + }, + { + "word": "cw", + "freq": 3.47e-06 + }, + { + "word": "hk", + "freq": 3.47e-06 + }, + { + "word": "sg", + "freq": 3.47e-06 + }, + { + "word": "ul", + "freq": 3.47e-06 + }, + { + "word": "bu", + "freq": 3.39e-06 + }, + { + "word": "ci", + "freq": 3.39e-06 + }, + { + "word": "ku", + "freq": 3.39e-06 + }, + { + "word": "vc", + "freq": 3.39e-06 + }, + { + "word": "gr", + "freq": 3.31e-06 + }, + { + "word": "lc", + "freq": 3.31e-06 + }, + { + "word": "nl", + "freq": 3.31e-06 + }, + { + "word": "pb", + "freq": 3.31e-06 + }, + { + "word": "tc", + "freq": 3.31e-06 + }, + { + "word": "dp", + "freq": 3.24e-06 + }, + { + "word": "sk", + "freq": 3.24e-06 + }, + { + "word": "ke", + "freq": 3.16e-06 + }, + { + "word": "mv", + "freq": 3.16e-06 + }, + { + "word": "ru", + "freq": 3.16e-06 + }, + { + "word": "as", + "freq": 3.09e-06 + }, + { + "word": "ae", + "freq": 3.09e-06 + }, + { + "word": "bd", + "freq": 3.09e-06 + }, + { + "word": "kd", + "freq": 3.02e-06 + }, + { + "word": "xv", + "freq": 3.02e-06 + }, + { + "word": "jd", + "freq": 2.95e-06 + }, + { + "word": "jk", + "freq": 2.95e-06 + }, + { + "word": "kb", + "freq": 2.95e-06 + }, + { + "word": "ox", + "freq": 2.95e-06 + }, + { + "word": "cj", + "freq": 2.88e-06 + }, + { + "word": "nk", + "freq": 2.88e-06 + }, + { + "word": "vt", + "freq": 2.88e-06 + }, + { + "word": "ib", + "freq": 2.82e-06 + }, + { + "word": "nv", + "freq": 2.82e-06 + }, + { + "word": "gg", + "freq": 2.75e-06 + }, + { + "word": "pf", + "freq": 2.75e-06 + }, + { + "word": "pu", + "freq": 2.75e-06 + }, + { + "word": "qc", + "freq": 2.75e-06 + }, + { + "word": "tj", + "freq": 2.75e-06 + }, + { + "word": "bk", + "freq": 2.69e-06 + }, + { + "word": "gl", + "freq": 2.69e-06 + }, + { + "word": "kw", + "freq": 2.69e-06 + }, + { + "word": "nr", + "freq": 2.69e-06 + }, + { + "word": "ob", + "freq": 2.69e-06 + }, + { + "word": "tp", + "freq": 2.69e-06 + }, + { + "word": "io", + "freq": 2.57e-06 + }, + { + "word": "mj", + "freq": 2.57e-06 + }, + { + "word": "wc", + "freq": 2.57e-06 + }, + { + "word": "gu", + "freq": 2.51e-06 + }, + { + "word": "lf", + "freq": 2.51e-06 + }, + { + "word": "pk", + "freq": 2.51e-06 + }, + { + "word": "pv", + "freq": 2.51e-06 + }, + { + "word": "rr", + "freq": 2.51e-06 + }, + { + "word": "vw", + "freq": 2.51e-06 + }, + { + "word": "lv", + "freq": 2.45e-06 + }, + { + "word": "ao", + "freq": 2.4e-06 + }, + { + "word": "cn", + "freq": 2.4e-06 + }, + { + "word": "ht", + "freq": 2.4e-06 + }, + { + "word": "bl", + "freq": 2.34e-06 + }, + { + "word": "dh", + "freq": 2.34e-06 + }, + { + "word": "ld", + "freq": 2.34e-06 + }, + { + "word": "ly", + "freq": 2.34e-06 + }, + { + "word": "nb", + "freq": 2.34e-06 + }, + { + "word": "rl", + "freq": 2.34e-06 + }, + { + "word": "bm", + "freq": 2.29e-06 + }, + { + "word": "cy", + "freq": 2.29e-06 + }, + { + "word": "jc", + "freq": 2.29e-06 + }, + { + "word": "wb", + "freq": 2.29e-06 + }, + { + "word": "wt", + "freq": 2.29e-06 + }, + { + "word": "bn", + "freq": 2.24e-06 + }, + { + "word": "ax", + "freq": 2.19e-06 + }, + { + "word": "ck", + "freq": 2.19e-06 + }, + { + "word": "dk", + "freq": 2.19e-06 + }, + { + "word": "hz", + "freq": 2.19e-06 + }, + { + "word": "ik", + "freq": 2.19e-06 + }, + { + "word": "mx", + "freq": 2.19e-06 + }, + { + "word": "wp", + "freq": 2.19e-06 + }, + { + "word": "hb", + "freq": 2.14e-06 + }, + { + "word": "ww", + "freq": 2.14e-06 + }, + { + "word": "xu", + "freq": 2.14e-06 + }, + { + "word": "bg", + "freq": 2.09e-06 + }, + { + "word": "df", + "freq": 2.09e-06 + }, + { + "word": "eq", + "freq": 2.09e-06 + }, + { + "word": "lr", + "freq": 2.09e-06 + }, + { + "word": "cg", + "freq": 2.04e-06 + }, + { + "word": "fg", + "freq": 2.04e-06 + }, + { + "word": "rh", + "freq": 2.04e-06 + }, + { + "word": "rx", + "freq": 2.04e-06 + }, + { + "word": "jt", + "freq": 2e-06 + }, + { + "word": "wm", + "freq": 2e-06 + }, + { + "word": "ey", + "freq": 1.95e-06 + }, + { + "word": "iu", + "freq": 1.95e-06 + }, + { + "word": "qi", + "freq": 1.95e-06 + }, + { + "word": "vu", + "freq": 1.95e-06 + }, + { + "word": "bj", + "freq": 1.91e-06 + }, + { + "word": "eb", + "freq": 1.91e-06 + }, + { + "word": "ef", + "freq": 1.91e-06 + }, + { + "word": "mh", + "freq": 1.91e-06 + }, + { + "word": "qu", + "freq": 1.91e-06 + }, + { + "word": "rj", + "freq": 1.91e-06 + }, + { + "word": "ua", + "freq": 1.91e-06 + }, + { + "word": "gw", + "freq": 1.86e-06 + }, + { + "word": "jb", + "freq": 1.86e-06 + }, + { + "word": "kr", + "freq": 1.86e-06 + }, + { + "word": "dw", + "freq": 1.78e-06 + }, + { + "word": "ts", + "freq": 1.74e-06 + }, + { + "word": "dx", + "freq": 1.74e-06 + }, + { + "word": "ez", + "freq": 1.74e-06 + }, + { + "word": "nf", + "freq": 1.74e-06 + }, + { + "word": "bw", + "freq": 1.7e-06 + }, + { + "word": "hf", + "freq": 1.7e-06 + }, + { + "word": "hg", + "freq": 1.7e-06 + }, + { + "word": "oj", + "freq": 1.7e-06 + }, + { + "word": "pj", + "freq": 1.7e-06 + }, + { + "word": "qa", + "freq": 1.7e-06 + }, + { + "word": "uw", + "freq": 1.7e-06 + }, + { + "word": "kt", + "freq": 1.66e-06 + }, + { + "word": "vm", + "freq": 1.66e-06 + }, + { + "word": "gd", + "freq": 1.62e-06 + }, + { + "word": "qt", + "freq": 1.62e-06 + }, + { + "word": "yt", + "freq": 1.62e-06 + }, + { + "word": "dg", + "freq": 1.58e-06 + }, + { + "word": "zu", + "freq": 1.58e-06 + }, + { + "word": "kk", + "freq": 1.55e-06 + }, + { + "word": "oa", + "freq": 1.55e-06 + }, + { + "word": "sv", + "freq": 1.55e-06 + }, + { + "word": "tg", + "freq": 1.55e-06 + }, + { + "word": "gh", + "freq": 1.51e-06 + }, + { + "word": "wv", + "freq": 1.51e-06 + }, + { + "word": "ek", + "freq": 1.48e-06 + }, + { + "word": "fp", + "freq": 1.48e-06 + }, + { + "word": "hh", + "freq": 1.48e-06 + }, + { + "word": "hw", + "freq": 1.48e-06 + }, + { + "word": "sj", + "freq": 1.48e-06 + }, + { + "word": "sn", + "freq": 1.48e-06 + }, + { + "word": "sy", + "freq": 1.48e-06 + }, + { + "word": "ux", + "freq": 1.48e-06 + }, + { + "word": "ei", + "freq": 1.45e-06 + }, + { + "word": "fw", + "freq": 1.45e-06 + }, + { + "word": "hl", + "freq": 1.45e-06 + }, + { + "word": "kl", + "freq": 1.45e-06 + }, + { + "word": "rg", + "freq": 1.45e-06 + }, + { + "word": "tk", + "freq": 1.45e-06 + }, + { + "word": "wd", + "freq": 1.45e-06 + }, + { + "word": "fy", + "freq": 1.35e-06 + }, + { + "word": "kv", + "freq": 1.35e-06 + }, + { + "word": "rw", + "freq": 1.35e-06 + }, + { + "word": "xo", + "freq": 1.35e-06 + }, + { + "word": "jv", + "freq": 1.32e-06 + }, + { + "word": "tw", + "freq": 1.32e-06 + }, + { + "word": "is", + "freq": 1.29e-06 + }, + { + "word": "dv", + "freq": 1.29e-06 + }, + { + "word": "gk", + "freq": 1.29e-06 + }, + { + "word": "gq", + "freq": 1.29e-06 + }, + { + "word": "kp", + "freq": 1.29e-06 + }, + { + "word": "oy", + "freq": 1.29e-06 + }, + { + "word": "vg", + "freq": 1.29e-06 + }, + { + "word": "eo", + "freq": 1.26e-06 + }, + { + "word": "jw", + "freq": 1.26e-06 + }, + { + "word": "cx", + "freq": 1.23e-06 + }, + { + "word": "fk", + "freq": 1.23e-06 + }, + { + "word": "jl", + "freq": 1.23e-06 + }, + { + "word": "jm", + "freq": 1.23e-06 + }, + { + "word": "lj", + "freq": 1.23e-06 + }, + { + "word": "qr", + "freq": 1.23e-06 + }, + { + "word": "vo", + "freq": 1.23e-06 + }, + { + "word": "za", + "freq": 1.23e-06 + }, + { + "word": "bs", + "freq": 1.17e-06 + }, + { + "word": "vb", + "freq": 1.17e-06 + }, + { + "word": "pw", + "freq": 1.15e-06 + }, + { + "word": "ze", + "freq": 1.15e-06 + }, + { + "word": "ms", + "freq": 1.1e-06 + }, + { + "word": "ue", + "freq": 1.1e-06 + }, + { + "word": "bh", + "freq": 1.07e-06 + }, + { + "word": "hy", + "freq": 1.07e-06 + }, + { + "word": "uf", + "freq": 1.07e-06 + }, + { + "word": "jg", + "freq": 1.05e-06 + }, + { + "word": "wk", + "freq": 1.05e-06 + }, + { + "word": "gs", + "freq": 1.02e-06 + }, + { + "word": "kh", + "freq": 1.02e-06 + }, + { + "word": "kn", + "freq": 1.02e-06 + }, + { + "word": "yd", + "freq": 1.02e-06 + }, + { + "word": "bv", + "freq": 1e-06 + }, + { + "word": "lh", + "freq": 1e-06 + }, + { + "word": "ds", + "freq": 9.77e-07 + }, + { + "word": "aq", + "freq": 9.77e-07 + }, + { + "word": "kj", + "freq": 9.77e-07 + }, + { + "word": "xm", + "freq": 9.77e-07 + }, + { + "word": "dy", + "freq": 9.55e-07 + }, + { + "word": "nn", + "freq": 9.55e-07 + }, + { + "word": "ej", + "freq": 9.33e-07 + }, + { + "word": "jn", + "freq": 9.33e-07 + }, + { + "word": "ry", + "freq": 9.33e-07 + }, + { + "word": "ug", + "freq": 9.33e-07 + }, + { + "word": "xs", + "freq": 9.12e-07 + }, + { + "word": "cz", + "freq": 9.12e-07 + }, + { + "word": "ov", + "freq": 9.12e-07 + }, + { + "word": "os", + "freq": 8.91e-07 + }, + { + "word": "dn", + "freq": 8.91e-07 + }, + { + "word": "oe", + "freq": 8.91e-07 + }, + { + "word": "wl", + "freq": 8.91e-07 + }, + { + "word": "xy", + "freq": 8.91e-07 + }, + { + "word": "lk", + "freq": 8.71e-07 + }, + { + "word": "ub", + "freq": 8.71e-07 + }, + { + "word": "gv", + "freq": 8.51e-07 + }, + { + "word": "cs", + "freq": 8.32e-07 + }, + { + "word": "iz", + "freq": 8.13e-07 + }, + { + "word": "vf", + "freq": 8.13e-07 + }, + { + "word": "lw", + "freq": 7.94e-07 + }, + { + "word": "pq", + "freq": 7.94e-07 + }, + { + "word": "rk", + "freq": 7.94e-07 + }, + { + "word": "wg", + "freq": 7.94e-07 + }, + { + "word": "zo", + "freq": 7.94e-07 + }, + { + "word": "iw", + "freq": 7.76e-07 + }, + { + "word": "vn", + "freq": 7.76e-07 + }, + { + "word": "xt", + "freq": 7.76e-07 + }, + { + "word": "jh", + "freq": 7.59e-07 + }, + { + "word": "nx", + "freq": 7.59e-07 + }, + { + "word": "wy", + "freq": 7.59e-07 + }, + { + "word": "lx", + "freq": 7.41e-07 + }, + { + "word": "zi", + "freq": 7.41e-07 + }, + { + "word": "dz", + "freq": 7.24e-07 + }, + { + "word": "xc", + "freq": 7.24e-07 + }, + { + "word": "cq", + "freq": 7.08e-07 + }, + { + "word": "gn", + "freq": 7.08e-07 + }, + { + "word": "pn", + "freq": 7.08e-07 + }, + { + "word": "qe", + "freq": 7.08e-07 + }, + { + "word": "dq", + "freq": 6.92e-07 + }, + { + "word": "vv", + "freq": 6.92e-07 + }, + { + "word": "hv", + "freq": 6.76e-07 + }, + { + "word": "ih", + "freq": 6.76e-07 + }, + { + "word": "es", + "freq": 6.61e-07 + }, + { + "word": "fh", + "freq": 6.61e-07 + }, + { + "word": "xr", + "freq": 6.61e-07 + }, + { + "word": "vs", + "freq": 6.46e-07 + }, + { + "word": "qf", + "freq": 6.31e-07 + }, + { + "word": "zz", + "freq": 6.31e-07 + }, + { + "word": "js", + "freq": 6.17e-07 + }, + { + "word": "gy", + "freq": 6.17e-07 + }, + { + "word": "vj", + "freq": 6.17e-07 + }, + { + "word": "hj", + "freq": 6.03e-07 + }, + { + "word": "jf", + "freq": 6.03e-07 + }, + { + "word": "px", + "freq": 6.03e-07 + }, + { + "word": "vk", + "freq": 6.03e-07 + }, + { + "word": "yg", + "freq": 6.03e-07 + }, + { + "word": "lz", + "freq": 5.75e-07 + }, + { + "word": "uo", + "freq": 5.62e-07 + }, + { + "word": "qq", + "freq": 5.5e-07 + }, + { + "word": "gj", + "freq": 5.37e-07 + }, + { + "word": "vx", + "freq": 5.37e-07 + }, + { + "word": "xe", + "freq": 5.37e-07 + }, + { + "word": "rs", + "freq": 5.25e-07 + }, + { + "word": "sx", + "freq": 5.25e-07 + }, + { + "word": "vl", + "freq": 5.25e-07 + }, + { + "word": "ps", + "freq": 5.13e-07 + }, + { + "word": "uu", + "freq": 5.01e-07 + }, + { + "word": "vd", + "freq": 5.01e-07 + }, + { + "word": "wf", + "freq": 5.01e-07 + }, + { + "word": "hn", + "freq": 4.9e-07 + }, + { + "word": "zh", + "freq": 4.9e-07 + }, + { + "word": "gx", + "freq": 4.79e-07 + }, + { + "word": "ks", + "freq": 4.57e-07 + }, + { + "word": "zn", + "freq": 4.57e-07 + }, + { + "word": "qs", + "freq": 4.47e-07 + }, + { + "word": "zx", + "freq": 4.47e-07 + }, + { + "word": "bx", + "freq": 4.37e-07 + }, + { + "word": "fv", + "freq": 4.37e-07 + }, + { + "word": "kf", + "freq": 4.37e-07 + }, + { + "word": "py", + "freq": 4.17e-07 + }, + { + "word": "ij", + "freq": 4.07e-07 + }, + { + "word": "wn", + "freq": 4.07e-07 + }, + { + "word": "xa", + "freq": 4.07e-07 + }, + { + "word": "sz", + "freq": 3.98e-07 + }, + { + "word": "mq", + "freq": 3.89e-07 + }, + { + "word": "rq", + "freq": 3.89e-07 + }, + { + "word": "fj", + "freq": 3.8e-07 + }, + { + "word": "vh", + "freq": 3.72e-07 + }, + { + "word": "yp", + "freq": 3.72e-07 + }, + { + "word": "ls", + "freq": 3.63e-07 + }, + { + "word": "qm", + "freq": 3.47e-07 + }, + { + "word": "xf", + "freq": 3.47e-07 + }, + { + "word": "us", + "freq": 3.39e-07 + }, + { + "word": "pz", + "freq": 3.39e-07 + }, + { + "word": "qp", + "freq": 3.39e-07 + }, + { + "word": "mz", + "freq": 3.31e-07 + }, + { + "word": "yb", + "freq": 3.31e-07 + }, + { + "word": "yl", + "freq": 3.31e-07 + }, + { + "word": "ss", + "freq": 3.24e-07 + }, + { + "word": "qd", + "freq": 3.16e-07 + }, + { + "word": "yn", + "freq": 3.16e-07 + }, + { + "word": "zs", + "freq": 3.09e-07 + }, + { + "word": "ws", + "freq": 3.02e-07 + }, + { + "word": "bq", + "freq": 3.02e-07 + }, + { + "word": "kx", + "freq": 3.02e-07 + }, + { + "word": "ym", + "freq": 3.02e-07 + }, + { + "word": "bz", + "freq": 2.95e-07 + }, + { + "word": "jy", + "freq": 2.95e-07 + }, + { + "word": "tq", + "freq": 2.88e-07 + }, + { + "word": "uj", + "freq": 2.88e-07 + }, + { + "word": "yc", + "freq": 2.88e-07 + }, + { + "word": "zr", + "freq": 2.88e-07 + }, + { + "word": "gz", + "freq": 2.82e-07 + }, + { + "word": "tz", + "freq": 2.82e-07 + }, + { + "word": "xb", + "freq": 2.82e-07 + }, + { + "word": "xj", + "freq": 2.82e-07 + }, + { + "word": "kz", + "freq": 2.75e-07 + }, + { + "word": "fs", + "freq": 2.69e-07 + }, + { + "word": "il", + "freq": 2.63e-07 + }, + { + "word": "vy", + "freq": 2.63e-07 + }, + { + "word": "yj", + "freq": 2.63e-07 + }, + { + "word": "yy", + "freq": 2.63e-07 + }, + { + "word": "vz", + "freq": 2.57e-07 + }, + { + "word": "hx", + "freq": 2.45e-07 + }, + { + "word": "lq", + "freq": 2.4e-07 + }, + { + "word": "yf", + "freq": 2.34e-07 + }, + { + "word": "ns", + "freq": 2.29e-07 + }, + { + "word": "xg", + "freq": 2.29e-07 + }, + { + "word": "hs", + "freq": 2.24e-07 + }, + { + "word": "uq", + "freq": 2.24e-07 + }, + { + "word": "zf", + "freq": 2.24e-07 + }, + { + "word": "nq", + "freq": 2.14e-07 + }, + { + "word": "uy", + "freq": 2.14e-07 + }, + { + "word": "qv", + "freq": 2.09e-07 + }, + { + "word": "yh", + "freq": 2.09e-07 + }, + { + "word": "rz", + "freq": 2.04e-07 + }, + { + "word": "fz", + "freq": 1.95e-07 + }, + { + "word": "wj", + "freq": 1.95e-07 + }, + { + "word": "ys", + "freq": 1.91e-07 + }, + { + "word": "xz", + "freq": 1.82e-07 + }, + { + "word": "iy", + "freq": 1.78e-07 + }, + { + "word": "wz", + "freq": 1.78e-07 + }, + { + "word": "ql", + "freq": 1.7e-07 + }, + { + "word": "uz", + "freq": 1.7e-07 + }, + { + "word": "xk", + "freq": 1.7e-07 + }, + { + "word": "qo", + "freq": 1.66e-07 + }, + { + "word": "wx", + "freq": 1.62e-07 + }, + { + "word": "zp", + "freq": 1.62e-07 + }, + { + "word": "wq", + "freq": 1.55e-07 + }, + { + "word": "fn", + "freq": 1.51e-07 + }, + { + "word": "zk", + "freq": 1.51e-07 + }, + { + "word": "zt", + "freq": 1.51e-07 + }, + { + "word": "xn", + "freq": 1.48e-07 + }, + { + "word": "jx", + "freq": 1.45e-07 + }, + { + "word": "zm", + "freq": 1.45e-07 + }, + { + "word": "iv", + "freq": 1.41e-07 + }, + { + "word": "lm", + "freq": 1.41e-07 + }, + { + "word": "yz", + "freq": 1.41e-07 + }, + { + "word": "qn", + "freq": 1.38e-07 + }, + { + "word": "yw", + "freq": 1.32e-07 + }, + { + "word": "fd", + "freq": 1.29e-07 + }, + { + "word": "yk", + "freq": 1.29e-07 + }, + { + "word": "kq", + "freq": 1.23e-07 + }, + { + "word": "zc", + "freq": 1.23e-07 + }, + { + "word": "zl", + "freq": 1.23e-07 + }, + { + "word": "zb", + "freq": 1.15e-07 + }, + { + "word": "zg", + "freq": 1.15e-07 + }, + { + "word": "fq", + "freq": 1.12e-07 + }, + { + "word": "vq", + "freq": 1.07e-07 + }, + { + "word": "jq", + "freq": 1.05e-07 + }, + { + "word": "qx", + "freq": 1.05e-07 + }, + { + "word": "oq", + "freq": 1.02e-07 + }, + { + "word": "qw", + "freq": 1.02e-07 + }, + { + "word": "xh", + "freq": 1.02e-07 + }, + { + "word": "zj", + "freq": 1.02e-07 + }, + { + "word": "zy", + "freq": 1.02e-07 + }, + { + "word": "qh", + "freq": 9.55e-08 + }, + { + "word": "zd", + "freq": 9.33e-08 + }, + { + "word": "jz", + "freq": 8.71e-08 + }, + { + "word": "qg", + "freq": 8.13e-08 + }, + { + "word": "xw", + "freq": 8.13e-08 + }, + { + "word": "zw", + "freq": 8.13e-08 + }, + { + "word": "xq", + "freq": 6.76e-08 + }, + { + "word": "yx", + "freq": 6.76e-08 + }, + { + "word": "qy", + "freq": 6.61e-08 + }, + { + "word": "in", + "freq": 6.46e-08 + }, + { + "word": "yv", + "freq": 5.75e-08 + }, + { + "word": "qz", + "freq": 5.01e-08 + }, + { + "word": "it", + "freq": 2.63e-08 + }, + { + "word": "td", + "freq": 2.57e-08 + }, + { + "word": "or", + "freq": 2.45e-08 + }, + { + "word": "od", + "freq": 2.45e-08 + }, + { + "word": "ud", + "freq": 2.14e-08 + }, + { + "word": "ar", + "freq": 1.74e-08 + }, + { + "word": "ed", + "freq": 1.58e-08 + }, + { + "word": "if", + "freq": 1.51e-08 + }, + { + "word": "am", + "freq": 1.32e-08 + } + ], + "4": [ + { + "word": "that", + "freq": 0.0102 + }, + { + "word": "with", + "freq": 0.00708 + }, + { + "word": "this", + "freq": 0.00661 + }, + { + "word": "have", + "freq": 0.00513 + }, + { + "word": "from", + "freq": 0.00427 + }, + { + "word": "they", + "freq": 0.00316 + }, + { + "word": "will", + "freq": 0.00282 + }, + { + "word": "just", + "freq": 0.00269 + }, + { + "word": "like", + "freq": 0.00257 + }, + { + "word": "what", + "freq": 0.0024 + }, + { + "word": "when", + "freq": 0.00234 + }, + { + "word": "more", + "freq": 0.00229 + }, + { + "word": "time", + "freq": 0.00195 + }, + { + "word": "been", + "freq": 0.00186 + }, + { + "word": "some", + "freq": 0.00158 + }, + { + "word": "also", + "freq": 0.00155 + }, + { + "word": "them", + "freq": 0.00155 + }, + { + "word": "than", + "freq": 0.00135 + }, + { + "word": "good", + "freq": 0.00132 + }, + { + "word": "only", + "freq": 0.00132 + }, + { + "word": "into", + "freq": 0.00129 + }, + { + "word": "know", + "freq": 0.00126 + }, + { + "word": "make", + "freq": 0.0012 + }, + { + "word": "over", + "freq": 0.0012 + }, + { + "word": "then", + "freq": 0.00117 + }, + { + "word": "back", + "freq": 0.0011 + }, + { + "word": "said", + "freq": 0.00102 + }, + { + "word": "most", + "freq": 0.001 + }, + { + "word": "much", + "freq": 0.001 + }, + { + "word": "very", + "freq": 0.001 + }, + { + "word": "even", + "freq": 0.000977 + }, + { + "word": "here", + "freq": 0.000933 + }, + { + "word": "need", + "freq": 0.000933 + }, + { + "word": "work", + "freq": 0.000912 + }, + { + "word": "year", + "freq": 0.000912 + }, + { + "word": "made", + "freq": 0.000832 + }, + { + "word": "take", + "freq": 0.000832 + }, + { + "word": "many", + "freq": 0.000813 + }, + { + "word": "life", + "freq": 0.000776 + }, + { + "word": "down", + "freq": 0.000759 + }, + { + "word": "last", + "freq": 0.000724 + }, + { + "word": "best", + "freq": 0.000692 + }, + { + "word": "such", + "freq": 0.000692 + }, + { + "word": "love", + "freq": 0.000661 + }, + { + "word": "home", + "freq": 0.000646 + }, + { + "word": "long", + "freq": 0.000646 + }, + { + "word": "look", + "freq": 0.000646 + }, + { + "word": "same", + "freq": 0.000631 + }, + { + "word": "used", + "freq": 0.000631 + }, + { + "word": "both", + "freq": 0.000617 + }, + { + "word": "come", + "freq": 0.000603 + }, + { + "word": "part", + "freq": 0.000603 + }, + { + "word": "find", + "freq": 0.000575 + }, + { + "word": "help", + "freq": 0.000562 + }, + { + "word": "high", + "freq": 0.000562 + }, + { + "word": "game", + "freq": 0.000525 + }, + { + "word": "give", + "freq": 0.000513 + }, + { + "word": "next", + "freq": 0.000501 + }, + { + "word": "each", + "freq": 0.00049 + }, + { + "word": "must", + "freq": 0.000479 + }, + { + "word": "show", + "freq": 0.000479 + }, + { + "word": "feel", + "freq": 0.000468 + }, + { + "word": "sure", + "freq": 0.000468 + }, + { + "word": "team", + "freq": 0.000468 + }, + { + "word": "ever", + "freq": 0.000457 + }, + { + "word": "keep", + "freq": 0.000457 + }, + { + "word": "free", + "freq": 0.000427 + }, + { + "word": "away", + "freq": 0.000417 + }, + { + "word": "left", + "freq": 0.000417 + }, + { + "word": "city", + "freq": 0.000407 + }, + { + "word": "name", + "freq": 0.000407 + }, + { + "word": "play", + "freq": 0.000407 + }, + { + "word": "real", + "freq": 0.000398 + }, + { + "word": "done", + "freq": 0.00038 + }, + { + "word": "care", + "freq": 0.000363 + }, + { + "word": "week", + "freq": 0.000363 + }, + { + "word": "case", + "freq": 0.000355 + }, + { + "word": "full", + "freq": 0.000347 + }, + { + "word": "live", + "freq": 0.000347 + }, + { + "word": "read", + "freq": 0.000347 + }, + { + "word": "told", + "freq": 0.000347 + }, + { + "word": "four", + "freq": 0.000339 + }, + { + "word": "hard", + "freq": 0.000339 + }, + { + "word": "mean", + "freq": 0.000339 + }, + { + "word": "once", + "freq": 0.000339 + }, + { + "word": "tell", + "freq": 0.000339 + }, + { + "word": "seen", + "freq": 0.000331 + }, + { + "word": "stop", + "freq": 0.000331 + }, + { + "word": "call", + "freq": 0.000324 + }, + { + "word": "head", + "freq": 0.000324 + }, + { + "word": "took", + "freq": 0.000324 + }, + { + "word": "came", + "freq": 0.000316 + }, + { + "word": "side", + "freq": 0.000316 + }, + { + "word": "went", + "freq": 0.000316 + }, + { + "word": "line", + "freq": 0.000309 + }, + { + "word": "open", + "freq": 0.000302 + }, + { + "word": "shit", + "freq": 0.000302 + }, + { + "word": "area", + "freq": 0.000288 + }, + { + "word": "face", + "freq": 0.000282 + }, + { + "word": "five", + "freq": 0.000282 + }, + { + "word": "kind", + "freq": 0.000282 + }, + { + "word": "hope", + "freq": 0.000275 + }, + { + "word": "able", + "freq": 0.000269 + }, + { + "word": "book", + "freq": 0.000269 + }, + { + "word": "post", + "freq": 0.000269 + }, + { + "word": "talk", + "freq": 0.000263 + }, + { + "word": "fact", + "freq": 0.000257 + }, + { + "word": "half", + "freq": 0.000257 + }, + { + "word": "hand", + "freq": 0.000257 + }, + { + "word": "mind", + "freq": 0.000257 + }, + { + "word": "were", + "freq": 0.000251 + }, + { + "word": "body", + "freq": 0.000251 + }, + { + "word": "food", + "freq": 0.000251 + }, + { + "word": "true", + "freq": 0.000251 + }, + { + "word": "fuck", + "freq": 0.000245 + }, + { + "word": "lost", + "freq": 0.000245 + }, + { + "word": "room", + "freq": 0.000245 + }, + { + "word": "else", + "freq": 0.00024 + }, + { + "word": "girl", + "freq": 0.00024 + }, + { + "word": "john", + "freq": 0.00024 + }, + { + "word": "nice", + "freq": 0.000234 + }, + { + "word": "yeah", + "freq": 0.000234 + }, + { + "word": "york", + "freq": 0.000234 + }, + { + "word": "idea", + "freq": 0.000229 + }, + { + "word": "past", + "freq": 0.000229 + }, + { + "word": "move", + "freq": 0.000224 + }, + { + "word": "wait", + "freq": 0.000224 + }, + { + "word": "data", + "freq": 0.000219 + }, + { + "word": "late", + "freq": 0.000219 + }, + { + "word": "stay", + "freq": 0.000214 + }, + { + "word": "deal", + "freq": 0.000209 + }, + { + "word": "soon", + "freq": 0.000209 + }, + { + "word": "turn", + "freq": 0.000209 + }, + { + "word": "form", + "freq": 0.000204 + }, + { + "word": "fire", + "freq": 0.0002 + }, + { + "word": "easy", + "freq": 0.000195 + }, + { + "word": "near", + "freq": 0.000195 + }, + { + "word": "plan", + "freq": 0.000195 + }, + { + "word": "west", + "freq": 0.000195 + }, + { + "word": "list", + "freq": 0.000191 + }, + { + "word": "meet", + "freq": 0.000186 + }, + { + "word": "type", + "freq": 0.000186 + }, + { + "word": "baby", + "freq": 0.000182 + }, + { + "word": "song", + "freq": 0.000182 + }, + { + "word": "word", + "freq": 0.000182 + }, + { + "word": "gave", + "freq": 0.000178 + }, + { + "word": "self", + "freq": 0.000178 + }, + { + "word": "cost", + "freq": 0.000174 + }, + { + "word": "held", + "freq": 0.000174 + }, + { + "word": "main", + "freq": 0.000174 + }, + { + "word": "road", + "freq": 0.000174 + }, + { + "word": "town", + "freq": 0.000174 + }, + { + "word": "fine", + "freq": 0.00017 + }, + { + "word": "hear", + "freq": 0.00017 + }, + { + "word": "rest", + "freq": 0.00017 + }, + { + "word": "term", + "freq": 0.00017 + }, + { + "word": "wife", + "freq": 0.00017 + }, + { + "word": "date", + "freq": 0.000166 + }, + { + "word": "goes", + "freq": 0.000166 + }, + { + "word": "land", + "freq": 0.000166 + }, + { + "word": "miss", + "freq": 0.000166 + }, + { + "word": "shot", + "freq": 0.000166 + }, + { + "word": "site", + "freq": 0.000166 + }, + { + "word": "june", + "freq": 0.000162 + }, + { + "word": "club", + "freq": 0.000158 + }, + { + "word": "died", + "freq": 0.000158 + }, + { + "word": "film", + "freq": 0.000158 + }, + { + "word": "knew", + "freq": 0.000158 + }, + { + "word": "lead", + "freq": 0.000158 + }, + { + "word": "dead", + "freq": 0.000155 + }, + { + "word": "hold", + "freq": 0.000155 + }, + { + "word": "star", + "freq": 0.000155 + }, + { + "word": "test", + "freq": 0.000155 + }, + { + "word": "view", + "freq": 0.000155 + }, + { + "word": "hour", + "freq": 0.000151 + }, + { + "word": "wish", + "freq": 0.000151 + }, + { + "word": "gold", + "freq": 0.000148 + }, + { + "word": "gone", + "freq": 0.000148 + }, + { + "word": "july", + "freq": 0.000148 + }, + { + "word": "king", + "freq": 0.000148 + }, + { + "word": "bank", + "freq": 0.000145 + }, + { + "word": "east", + "freq": 0.000145 + }, + { + "word": "park", + "freq": 0.000145 + }, + { + "word": "role", + "freq": 0.000145 + }, + { + "word": "sent", + "freq": 0.000145 + }, + { + "word": "bill", + "freq": 0.000141 + }, + { + "word": "cool", + "freq": 0.000141 + }, + { + "word": "rate", + "freq": 0.000138 + }, + { + "word": "save", + "freq": 0.000138 + }, + { + "word": "blue", + "freq": 0.000135 + }, + { + "word": "fall", + "freq": 0.000135 + }, + { + "word": "fast", + "freq": 0.000135 + }, + { + "word": "felt", + "freq": 0.000135 + }, + { + "word": "size", + "freq": 0.000135 + }, + { + "word": "step", + "freq": 0.000135 + }, + { + "word": "page", + "freq": 0.000132 + }, + { + "word": "paid", + "freq": 0.000132 + }, + { + "word": "upon", + "freq": 0.000132 + }, + { + "word": "hate", + "freq": 0.000129 + }, + { + "word": "send", + "freq": 0.000129 + }, + { + "word": "vote", + "freq": 0.000129 + }, + { + "word": "lord", + "freq": 0.000126 + }, + { + "word": "born", + "freq": 0.000123 + }, + { + "word": "damn", + "freq": 0.000123 + }, + { + "word": "kill", + "freq": 0.000123 + }, + { + "word": "poor", + "freq": 0.000123 + }, + { + "word": "code", + "freq": 0.00012 + }, + { + "word": "door", + "freq": 0.00012 + }, + { + "word": "hair", + "freq": 0.00012 + }, + { + "word": "lose", + "freq": 0.00012 + }, + { + "word": "pick", + "freq": 0.00012 + }, + { + "word": "race", + "freq": 0.00012 + }, + { + "word": "seem", + "freq": 0.00012 + }, + { + "word": "sign", + "freq": 0.00012 + }, + { + "word": "walk", + "freq": 0.00012 + }, + { + "word": "loss", + "freq": 0.000117 + }, + { + "word": "safe", + "freq": 0.000117 + }, + { + "word": "army", + "freq": 0.000115 + }, + { + "word": "goal", + "freq": 0.000115 + }, + { + "word": "huge", + "freq": 0.000115 + }, + { + "word": "okay", + "freq": 0.000115 + }, + { + "word": "base", + "freq": 0.000112 + }, + { + "word": "deep", + "freq": 0.000112 + }, + { + "word": "mark", + "freq": 0.000112 + }, + { + "word": "pass", + "freq": 0.000112 + }, + { + "word": "risk", + "freq": 0.000112 + }, + { + "word": "ball", + "freq": 0.00011 + }, + { + "word": "card", + "freq": 0.00011 + }, + { + "word": "dark", + "freq": 0.00011 + }, + { + "word": "mine", + "freq": 0.00011 + }, + { + "word": "note", + "freq": 0.00011 + }, + { + "word": "wall", + "freq": 0.00011 + }, + { + "word": "pain", + "freq": 0.000107 + }, + { + "word": "paul", + "freq": 0.000107 + }, + { + "word": "rock", + "freq": 0.000107 + }, + { + "word": "cold", + "freq": 0.000105 + }, + { + "word": "anti", + "freq": 0.000102 + }, + { + "word": "beat", + "freq": 0.000102 + }, + { + "word": "text", + "freq": 0.000102 + }, + { + "word": "join", + "freq": 0.0001 + }, + { + "word": "kept", + "freq": 0.0001 + }, + { + "word": "sort", + "freq": 0.0001 + }, + { + "word": "drop", + "freq": 9.77e-05 + }, + { + "word": "fair", + "freq": 9.77e-05 + }, + { + "word": "feet", + "freq": 9.77e-05 + }, + { + "word": "link", + "freq": 9.77e-05 + }, + { + "word": "sale", + "freq": 9.77e-05 + }, + { + "word": "tour", + "freq": 9.77e-05 + }, + { + "word": "sell", + "freq": 9.55e-05 + }, + { + "word": "sold", + "freq": 9.33e-05 + }, + { + "word": "wide", + "freq": 9.12e-05 + }, + { + "word": "fear", + "freq": 8.91e-05 + }, + { + "word": "lady", + "freq": 8.91e-05 + }, + { + "word": "plus", + "freq": 8.91e-05 + }, + { + "word": "unit", + "freq": 8.91e-05 + }, + { + "word": "hurt", + "freq": 8.71e-05 + }, + { + "word": "rule", + "freq": 8.71e-05 + }, + { + "word": "none", + "freq": 8.51e-05 + }, + { + "word": "ship", + "freq": 8.51e-05 + }, + { + "word": "band", + "freq": 8.32e-05 + }, + { + "word": "cash", + "freq": 8.32e-05 + }, + { + "word": "lack", + "freq": 8.32e-05 + }, + { + "word": "wear", + "freq": 8.32e-05 + }, + { + "word": "luck", + "freq": 8.13e-05 + }, + { + "word": "rich", + "freq": 8.13e-05 + }, + { + "word": "skin", + "freq": 8.13e-05 + }, + { + "word": "thus", + "freq": 8.13e-05 + }, + { + "word": "fish", + "freq": 7.94e-05 + }, + { + "word": "glad", + "freq": 7.94e-05 + }, + { + "word": "grow", + "freq": 7.94e-05 + }, + { + "word": "trip", + "freq": 7.94e-05 + }, + { + "word": "well", + "freq": 7.76e-05 + }, + { + "word": "male", + "freq": 7.76e-05 + }, + { + "word": "spot", + "freq": 7.76e-05 + }, + { + "word": "holy", + "freq": 7.59e-05 + }, + { + "word": "shop", + "freq": 7.59e-05 + }, + { + "word": "sick", + "freq": 7.59e-05 + }, + { + "word": "uses", + "freq": 7.59e-05 + }, + { + "word": "cell", + "freq": 7.41e-05 + }, + { + "word": "drug", + "freq": 7.41e-05 + }, + { + "word": "foot", + "freq": 7.41e-05 + }, + { + "word": "hall", + "freq": 7.41e-05 + }, + { + "word": "mass", + "freq": 7.41e-05 + }, + { + "word": "nine", + "freq": 7.41e-05 + }, + { + "word": "heat", + "freq": 7.24e-05 + }, + { + "word": "fell", + "freq": 7.08e-05 + }, + { + "word": "ride", + "freq": 7.08e-05 + }, + { + "word": "slow", + "freq": 7.08e-05 + }, + { + "word": "tree", + "freq": 7.08e-05 + }, + { + "word": "whom", + "freq": 7.08e-05 + }, + { + "word": "wind", + "freq": 6.92e-05 + }, + { + "word": "cent", + "freq": 6.76e-05 + }, + { + "word": "lake", + "freq": 6.76e-05 + }, + { + "word": "fund", + "freq": 6.61e-05 + }, + { + "word": "hill", + "freq": 6.61e-05 + }, + { + "word": "jack", + "freq": 6.61e-05 + }, + { + "word": "pull", + "freq": 6.61e-05 + }, + { + "word": "push", + "freq": 6.61e-05 + }, + { + "word": "rose", + "freq": 6.61e-05 + }, + { + "word": "seat", + "freq": 6.61e-05 + }, + { + "word": "draw", + "freq": 6.46e-05 + }, + { + "word": "dude", + "freq": 6.46e-05 + }, + { + "word": "gain", + "freq": 6.46e-05 + }, + { + "word": "http", + "freq": 6.46e-05 + }, + { + "word": "ring", + "freq": 6.46e-05 + }, + { + "word": "rise", + "freq": 6.46e-05 + }, + { + "word": "soul", + "freq": 6.46e-05 + }, + { + "word": "mike", + "freq": 6.31e-05 + }, + { + "word": "wild", + "freq": 6.31e-05 + }, + { + "word": "camp", + "freq": 6.17e-05 + }, + { + "word": "cast", + "freq": 6.17e-05 + }, + { + "word": "firm", + "freq": 6.17e-05 + }, + { + "word": "till", + "freq": 6.17e-05 + }, + { + "word": "gift", + "freq": 6.03e-05 + }, + { + "word": "mary", + "freq": 6.03e-05 + }, + { + "word": "shut", + "freq": 6.03e-05 + }, + { + "word": "copy", + "freq": 5.89e-05 + }, + { + "word": "dear", + "freq": 5.89e-05 + }, + { + "word": "host", + "freq": 5.89e-05 + }, + { + "word": "onto", + "freq": 5.89e-05 + }, + { + "word": "rare", + "freq": 5.89e-05 + }, + { + "word": "boss", + "freq": 5.75e-05 + }, + { + "word": "wake", + "freq": 5.75e-05 + }, + { + "word": "busy", + "freq": 5.62e-05 + }, + { + "word": "farm", + "freq": 5.62e-05 + }, + { + "word": "file", + "freq": 5.62e-05 + }, + { + "word": "roll", + "freq": 5.62e-05 + }, + { + "word": "edge", + "freq": 5.5e-05 + }, + { + "word": "evil", + "freq": 5.5e-05 + }, + { + "word": "iron", + "freq": 5.5e-05 + }, + { + "word": "wine", + "freq": 5.5e-05 + }, + { + "word": "blog", + "freq": 5.37e-05 + }, + { + "word": "core", + "freq": 5.37e-05 + }, + { + "word": "lies", + "freq": 5.37e-05 + }, + { + "word": "port", + "freq": 5.37e-05 + }, + { + "word": "flat", + "freq": 5.25e-05 + }, + { + "word": "fuel", + "freq": 5.25e-05 + }, + { + "word": "kick", + "freq": 5.25e-05 + }, + { + "word": "mail", + "freq": 5.25e-05 + }, + { + "word": "pair", + "freq": 5.25e-05 + }, + { + "word": "zone", + "freq": 5.25e-05 + }, + { + "word": "bear", + "freq": 5.13e-05 + }, + { + "word": "boat", + "freq": 5.13e-05 + }, + { + "word": "duty", + "freq": 5.13e-05 + }, + { + "word": "path", + "freq": 5.13e-05 + }, + { + "word": "rain", + "freq": 5.13e-05 + }, + { + "word": "vice", + "freq": 5.13e-05 + }, + { + "word": "warm", + "freq": 5.13e-05 + }, + { + "word": "beer", + "freq": 5.01e-05 + }, + { + "word": "crew", + "freq": 5.01e-05 + }, + { + "word": "dick", + "freq": 5.01e-05 + }, + { + "word": "moon", + "freq": 5.01e-05 + }, + { + "word": "suit", + "freq": 5.01e-05 + }, + { + "word": "debt", + "freq": 4.9e-05 + }, + { + "word": "grew", + "freq": 4.9e-05 + }, + { + "word": "jump", + "freq": 4.9e-05 + }, + { + "word": "tech", + "freq": 4.9e-05 + }, + { + "word": "user", + "freq": 4.9e-05 + }, + { + "word": "flow", + "freq": 4.79e-05 + }, + { + "word": "hero", + "freq": 4.79e-05 + }, + { + "word": "joke", + "freq": 4.79e-05 + }, + { + "word": "loan", + "freq": 4.79e-05 + }, + { + "word": "soft", + "freq": 4.79e-05 + }, + { + "word": "feed", + "freq": 4.68e-05 + }, + { + "word": "pool", + "freq": 4.68e-05 + }, + { + "word": "hole", + "freq": 4.57e-05 + }, + { + "word": "milk", + "freq": 4.57e-05 + }, + { + "word": "pack", + "freq": 4.57e-05 + }, + { + "word": "snow", + "freq": 4.57e-05 + }, + { + "word": "weak", + "freq": 4.57e-05 + }, + { + "word": "asia", + "freq": 4.47e-05 + }, + { + "word": "cook", + "freq": 4.47e-05 + }, + { + "word": "cute", + "freq": 4.47e-05 + }, + { + "word": "fake", + "freq": 4.47e-05 + }, + { + "word": "task", + "freq": 4.47e-05 + }, + { + "word": "fill", + "freq": 4.37e-05 + }, + { + "word": "pure", + "freq": 4.37e-05 + }, + { + "word": "tony", + "freq": 4.37e-05 + }, + { + "word": "bird", + "freq": 4.27e-05 + }, + { + "word": "bowl", + "freq": 4.27e-05 + }, + { + "word": "meat", + "freq": 4.27e-05 + }, + { + "word": "mode", + "freq": 4.27e-05 + }, + { + "word": "neck", + "freq": 4.27e-05 + }, + { + "word": "zero", + "freq": 4.27e-05 + }, + { + "word": "alex", + "freq": 4.17e-05 + }, + { + "word": "iran", + "freq": 4.17e-05 + }, + { + "word": "jail", + "freq": 4.17e-05 + }, + { + "word": "tiny", + "freq": 4.17e-05 + }, + { + "word": "wave", + "freq": 4.17e-05 + }, + { + "word": "fail", + "freq": 4.07e-05 + }, + { + "word": "ohio", + "freq": 4.07e-05 + }, + { + "word": "seek", + "freq": 4.07e-05 + }, + { + "word": "solo", + "freq": 4.07e-05 + }, + { + "word": "wing", + "freq": 4.07e-05 + }, + { + "word": "bomb", + "freq": 3.98e-05 + }, + { + "word": "hang", + "freq": 3.98e-05 + }, + { + "word": "info", + "freq": 3.98e-05 + }, + { + "word": "salt", + "freq": 3.98e-05 + }, + { + "word": "bell", + "freq": 3.89e-05 + }, + { + "word": "blow", + "freq": 3.89e-05 + }, + { + "word": "bond", + "freq": 3.89e-05 + }, + { + "word": "mile", + "freq": 3.89e-05 + }, + { + "word": "nick", + "freq": 3.89e-05 + }, + { + "word": "ryan", + "freq": 3.89e-05 + }, + { + "word": "flag", + "freq": 3.8e-05 + }, + { + "word": "kiss", + "freq": 3.8e-05 + }, + { + "word": "load", + "freq": 3.8e-05 + }, + { + "word": "plot", + "freq": 3.8e-05 + }, + { + "word": "rent", + "freq": 3.8e-05 + }, + { + "word": "chat", + "freq": 3.72e-05 + }, + { + "word": "diet", + "freq": 3.72e-05 + }, + { + "word": "item", + "freq": 3.72e-05 + }, + { + "word": "lane", + "freq": 3.72e-05 + }, + { + "word": "mess", + "freq": 3.72e-05 + }, + { + "word": "navy", + "freq": 3.72e-05 + }, + { + "word": "tank", + "freq": 3.72e-05 + }, + { + "word": "tend", + "freq": 3.72e-05 + }, + { + "word": "yard", + "freq": 3.72e-05 + }, + { + "word": "golf", + "freq": 3.63e-05 + }, + { + "word": "laid", + "freq": 3.63e-05 + }, + { + "word": "tool", + "freq": 3.63e-05 + }, + { + "word": "mate", + "freq": 3.55e-05 + }, + { + "word": "matt", + "freq": 3.55e-05 + }, + { + "word": "rice", + "freq": 3.55e-05 + }, + { + "word": "roof", + "freq": 3.55e-05 + }, + { + "word": "hell", + "freq": 3.47e-05 + }, + { + "word": "calm", + "freq": 3.47e-05 + }, + { + "word": "dumb", + "freq": 3.47e-05 + }, + { + "word": "hide", + "freq": 3.47e-05 + }, + { + "word": "quit", + "freq": 3.47e-05 + }, + { + "word": "sing", + "freq": 3.47e-05 + }, + { + "word": "bike", + "freq": 3.39e-05 + }, + { + "word": "burn", + "freq": 3.39e-05 + }, + { + "word": "cake", + "freq": 3.39e-05 + }, + { + "word": "haha", + "freq": 3.39e-05 + }, + { + "word": "hong", + "freq": 3.39e-05 + }, + { + "word": "loud", + "freq": 3.39e-05 + }, + { + "word": "peak", + "freq": 3.39e-05 + }, + { + "word": "puts", + "freq": 3.39e-05 + }, + { + "word": "grab", + "freq": 3.31e-05 + }, + { + "word": "pink", + "freq": 3.31e-05 + }, + { + "word": "tall", + "freq": 3.31e-05 + }, + { + "word": "lets", + "freq": 3.24e-05 + }, + { + "word": "lock", + "freq": 3.24e-05 + }, + { + "word": "nose", + "freq": 3.24e-05 + }, + { + "word": "semi", + "freq": 3.24e-05 + }, + { + "word": "wise", + "freq": 3.24e-05 + }, + { + "word": "aged", + "freq": 3.16e-05 + }, + { + "word": "ford", + "freq": 3.16e-05 + }, + { + "word": "gang", + "freq": 3.16e-05 + }, + { + "word": "lift", + "freq": 3.16e-05 + }, + { + "word": "porn", + "freq": 3.16e-05 + }, + { + "word": "bush", + "freq": 3.09e-05 + }, + { + "word": "coal", + "freq": 3.09e-05 + }, + { + "word": "eric", + "freq": 3.09e-05 + }, + { + "word": "hunt", + "freq": 3.09e-05 + }, + { + "word": "inch", + "freq": 3.09e-05 + }, + { + "word": "jury", + "freq": 3.09e-05 + }, + { + "word": "kong", + "freq": 3.09e-05 + }, + { + "word": "tone", + "freq": 3.09e-05 + }, + { + "word": "vast", + "freq": 3.09e-05 + }, + { + "word": "auto", + "freq": 3.02e-05 + }, + { + "word": "earn", + "freq": 3.02e-05 + }, + { + "word": "grey", + "freq": 3.02e-05 + }, + { + "word": "meal", + "freq": 3.02e-05 + }, + { + "word": "rape", + "freq": 3.02e-05 + }, + { + "word": "rush", + "freq": 3.02e-05 + }, + { + "word": "bone", + "freq": 2.95e-05 + }, + { + "word": "gate", + "freq": 2.95e-05 + }, + { + "word": "harm", + "freq": 2.95e-05 + }, + { + "word": "thin", + "freq": 2.95e-05 + }, + { + "word": "tied", + "freq": 2.95e-05 + }, + { + "word": "drew", + "freq": 2.88e-05 + }, + { + "word": "gear", + "freq": 2.88e-05 + }, + { + "word": "tons", + "freq": 2.88e-05 + }, + { + "word": "wash", + "freq": 2.88e-05 + }, + { + "word": "acid", + "freq": 2.82e-05 + }, + { + "word": "alan", + "freq": 2.82e-05 + }, + { + "word": "duke", + "freq": 2.82e-05 + }, + { + "word": "gray", + "freq": 2.82e-05 + }, + { + "word": "jeff", + "freq": 2.82e-05 + }, + { + "word": "luke", + "freq": 2.82e-05 + }, + { + "word": "math", + "freq": 2.82e-05 + }, + { + "word": "rome", + "freq": 2.82e-05 + }, + { + "word": "asks", + "freq": 2.75e-05 + }, + { + "word": "bath", + "freq": 2.75e-05 + }, + { + "word": "dave", + "freq": 2.75e-05 + }, + { + "word": "mini", + "freq": 2.75e-05 + }, + { + "word": "mood", + "freq": 2.75e-05 + }, + { + "word": "rank", + "freq": 2.75e-05 + }, + { + "word": "sand", + "freq": 2.75e-05 + }, + { + "word": "tape", + "freq": 2.75e-05 + }, + { + "word": "wage", + "freq": 2.75e-05 + }, + { + "word": "andy", + "freq": 2.69e-05 + }, + { + "word": "desk", + "freq": 2.69e-05 + }, + { + "word": "iraq", + "freq": 2.69e-05 + }, + { + "word": "rear", + "freq": 2.69e-05 + }, + { + "word": "wire", + "freq": 2.69e-05 + }, + { + "word": "belt", + "freq": 2.63e-05 + }, + { + "word": "cuts", + "freq": 2.63e-05 + }, + { + "word": "jane", + "freq": 2.63e-05 + }, + { + "word": "sexy", + "freq": 2.63e-05 + }, + { + "word": "soil", + "freq": 2.63e-05 + }, + { + "word": "suck", + "freq": 2.63e-05 + }, + { + "word": "ugly", + "freq": 2.63e-05 + }, + { + "word": "deck", + "freq": 2.57e-05 + }, + { + "word": "dies", + "freq": 2.57e-05 + }, + { + "word": "dust", + "freq": 2.57e-05 + }, + { + "word": "rail", + "freq": 2.57e-05 + }, + { + "word": "root", + "freq": 2.57e-05 + }, + { + "word": "crap", + "freq": 2.51e-05 + }, + { + "word": "dean", + "freq": 2.51e-05 + }, + { + "word": "hire", + "freq": 2.51e-05 + }, + { + "word": "pray", + "freq": 2.51e-05 + }, + { + "word": "sake", + "freq": 2.51e-05 + }, + { + "word": "ones", + "freq": 2.45e-05 + }, + { + "word": "arab", + "freq": 2.45e-05 + }, + { + "word": "gary", + "freq": 2.45e-05 + }, + { + "word": "ross", + "freq": 2.45e-05 + }, + { + "word": "adds", + "freq": 2.4e-05 + }, + { + "word": "mill", + "freq": 2.4e-05 + }, + { + "word": "pace", + "freq": 2.4e-05 + }, + { + "word": "pope", + "freq": 2.4e-05 + }, + { + "word": "spin", + "freq": 2.4e-05 + }, + { + "word": "gods", + "freq": 2.34e-05 + }, + { + "word": "anna", + "freq": 2.34e-05 + }, + { + "word": "hook", + "freq": 2.34e-05 + }, + { + "word": "phil", + "freq": 2.34e-05 + }, + { + "word": "seed", + "freq": 2.34e-05 + }, + { + "word": "ward", + "freq": 2.34e-05 + }, + { + "word": "coat", + "freq": 2.29e-05 + }, + { + "word": "fate", + "freq": 2.29e-05 + }, + { + "word": "gene", + "freq": 2.29e-05 + }, + { + "word": "jean", + "freq": 2.29e-05 + }, + { + "word": "tube", + "freq": 2.29e-05 + }, + { + "word": "cant", + "freq": 2.24e-05 + }, + { + "word": "epic", + "freq": 2.24e-05 + }, + { + "word": "exit", + "freq": 2.24e-05 + }, + { + "word": "josh", + "freq": 2.24e-05 + }, + { + "word": "lips", + "freq": 2.24e-05 + }, + { + "word": "poll", + "freq": 2.24e-05 + }, + { + "word": "sept", + "freq": 2.24e-05 + }, + { + "word": "tear", + "freq": 2.24e-05 + }, + { + "word": "ties", + "freq": 2.24e-05 + }, + { + "word": "wolf", + "freq": 2.24e-05 + }, + { + "word": "bull", + "freq": 2.19e-05 + }, + { + "word": "deny", + "freq": 2.19e-05 + }, + { + "word": "ease", + "freq": 2.19e-05 + }, + { + "word": "fame", + "freq": 2.19e-05 + }, + { + "word": "kate", + "freq": 2.19e-05 + }, + { + "word": "tail", + "freq": 2.19e-05 + }, + { + "word": "twin", + "freq": 2.19e-05 + }, + { + "word": "boom", + "freq": 2.14e-05 + }, + { + "word": "iowa", + "freq": 2.14e-05 + }, + { + "word": "knee", + "freq": 2.14e-05 + }, + { + "word": "teen", + "freq": 2.14e-05 + }, + { + "word": "trap", + "freq": 2.14e-05 + }, + { + "word": "anne", + "freq": 2.09e-05 + }, + { + "word": "bang", + "freq": 2.09e-05 + }, + { + "word": "cure", + "freq": 2.09e-05 + }, + { + "word": "rick", + "freq": 2.09e-05 + }, + { + "word": "bite", + "freq": 2.04e-05 + }, + { + "word": "chip", + "freq": 2.04e-05 + }, + { + "word": "dare", + "freq": 2.04e-05 + }, + { + "word": "jazz", + "freq": 2.04e-05 + }, + { + "word": "mask", + "freq": 2.04e-05 + }, + { + "word": "ruin", + "freq": 2.04e-05 + }, + { + "word": "sean", + "freq": 2.04e-05 + }, + { + "word": "cape", + "freq": 2e-05 + }, + { + "word": "edit", + "freq": 2e-05 + }, + { + "word": "nuts", + "freq": 2e-05 + }, + { + "word": "seal", + "freq": 2e-05 + }, + { + "word": "stem", + "freq": 2e-05 + }, + { + "word": "beef", + "freq": 1.95e-05 + }, + { + "word": "clay", + "freq": 1.95e-05 + }, + { + "word": "drag", + "freq": 1.95e-05 + }, + { + "word": "fool", + "freq": 1.95e-05 + }, + { + "word": "lisa", + "freq": 1.95e-05 + }, + { + "word": "loop", + "freq": 1.95e-05 + }, + { + "word": "mall", + "freq": 1.95e-05 + }, + { + "word": "rely", + "freq": 1.95e-05 + }, + { + "word": "sole", + "freq": 1.95e-05 + }, + { + "word": "tale", + "freq": 1.95e-05 + }, + { + "word": "wore", + "freq": 1.95e-05 + }, + { + "word": "bass", + "freq": 1.91e-05 + }, + { + "word": "butt", + "freq": 1.91e-05 + }, + { + "word": "dual", + "freq": 1.91e-05 + }, + { + "word": "gulf", + "freq": 1.91e-05 + }, + { + "word": "lmao", + "freq": 1.91e-05 + }, + { + "word": "logo", + "freq": 1.91e-05 + }, + { + "word": "nazi", + "freq": 1.91e-05 + }, + { + "word": "pump", + "freq": 1.91e-05 + }, + { + "word": "slip", + "freq": 1.91e-05 + }, + { + "word": "corp", + "freq": 1.86e-05 + }, + { + "word": "dawn", + "freq": 1.86e-05 + }, + { + "word": "fits", + "freq": 1.86e-05 + }, + { + "word": "tune", + "freq": 1.86e-05 + }, + { + "word": "weed", + "freq": 1.86e-05 + }, + { + "word": "bold", + "freq": 1.82e-05 + }, + { + "word": "clip", + "freq": 1.82e-05 + }, + { + "word": "exam", + "freq": 1.82e-05 + }, + { + "word": "menu", + "freq": 1.82e-05 + }, + { + "word": "nope", + "freq": 1.82e-05 + }, + { + "word": "oral", + "freq": 1.82e-05 + }, + { + "word": "pays", + "freq": 1.82e-05 + }, + { + "word": "worn", + "freq": 1.82e-05 + }, + { + "word": "khan", + "freq": 1.78e-05 + }, + { + "word": "lion", + "freq": 1.78e-05 + }, + { + "word": "pipe", + "freq": 1.78e-05 + }, + { + "word": "poem", + "freq": 1.78e-05 + }, + { + "word": "rude", + "freq": 1.78e-05 + }, + { + "word": "vary", + "freq": 1.78e-05 + }, + { + "word": "carl", + "freq": 1.74e-05 + }, + { + "word": "dirt", + "freq": 1.74e-05 + }, + { + "word": "lazy", + "freq": 1.74e-05 + }, + { + "word": "mama", + "freq": 1.74e-05 + }, + { + "word": "shoe", + "freq": 1.74e-05 + }, + { + "word": "chef", + "freq": 1.7e-05 + }, + { + "word": "cock", + "freq": 1.7e-05 + }, + { + "word": "emma", + "freq": 1.7e-05 + }, + { + "word": "greg", + "freq": 1.7e-05 + }, + { + "word": "palm", + "freq": 1.7e-05 + }, + { + "word": "pole", + "freq": 1.7e-05 + }, + { + "word": "utah", + "freq": 1.7e-05 + }, + { + "word": "folk", + "freq": 1.66e-05 + }, + { + "word": "leaf", + "freq": 1.66e-05 + }, + { + "word": "woke", + "freq": 1.66e-05 + }, + { + "word": "aims", + "freq": 1.62e-05 + }, + { + "word": "dish", + "freq": 1.62e-05 + }, + { + "word": "duck", + "freq": 1.62e-05 + }, + { + "word": "fifa", + "freq": 1.62e-05 + }, + { + "word": "fred", + "freq": 1.62e-05 + }, + { + "word": "hood", + "freq": 1.62e-05 + }, + { + "word": "hung", + "freq": 1.62e-05 + }, + { + "word": "jose", + "freq": 1.62e-05 + }, + { + "word": "lied", + "freq": 1.62e-05 + }, + { + "word": "nail", + "freq": 1.62e-05 + }, + { + "word": "nasa", + "freq": 1.62e-05 + }, + { + "word": "owns", + "freq": 1.62e-05 + }, + { + "word": "poet", + "freq": 1.62e-05 + }, + { + "word": "sink", + "freq": 1.62e-05 + }, + { + "word": "skip", + "freq": 1.62e-05 + }, + { + "word": "snap", + "freq": 1.62e-05 + }, + { + "word": "swim", + "freq": 1.62e-05 + }, + { + "word": "beta", + "freq": 1.58e-05 + }, + { + "word": "cave", + "freq": 1.58e-05 + }, + { + "word": "dose", + "freq": 1.58e-05 + }, + { + "word": "flip", + "freq": 1.58e-05 + }, + { + "word": "punk", + "freq": 1.58e-05 + }, + { + "word": "wrap", + "freq": 1.58e-05 + }, + { + "word": "yoga", + "freq": 1.58e-05 + }, + { + "word": "boot", + "freq": 1.55e-05 + }, + { + "word": "bulk", + "freq": 1.55e-05 + }, + { + "word": "coin", + "freq": 1.55e-05 + }, + { + "word": "corn", + "freq": 1.55e-05 + }, + { + "word": "raid", + "freq": 1.55e-05 + }, + { + "word": "sony", + "freq": 1.55e-05 + }, + { + "word": "taxi", + "freq": 1.55e-05 + }, + { + "word": "xbox", + "freq": 1.55e-05 + }, + { + "word": "shed", + "freq": 1.51e-05 + }, + { + "word": "bare", + "freq": 1.51e-05 + }, + { + "word": "clue", + "freq": 1.51e-05 + }, + { + "word": "cole", + "freq": 1.51e-05 + }, + { + "word": "earl", + "freq": 1.51e-05 + }, + { + "word": "grid", + "freq": 1.51e-05 + }, + { + "word": "sits", + "freq": 1.51e-05 + }, + { + "word": "soap", + "freq": 1.51e-05 + }, + { + "word": "jake", + "freq": 1.48e-05 + }, + { + "word": "kent", + "freq": 1.48e-05 + }, + { + "word": "piss", + "freq": 1.48e-05 + }, + { + "word": "thai", + "freq": 1.48e-05 + }, + { + "word": "aunt", + "freq": 1.45e-05 + }, + { + "word": "flew", + "freq": 1.45e-05 + }, + { + "word": "icon", + "freq": 1.45e-05 + }, + { + "word": "neil", + "freq": 1.45e-05 + }, + { + "word": "thou", + "freq": 1.45e-05 + }, + { + "word": "tier", + "freq": 1.45e-05 + }, + { + "word": "crop", + "freq": 1.41e-05 + }, + { + "word": "soup", + "freq": 1.41e-05 + }, + { + "word": "beam", + "freq": 1.38e-05 + }, + { + "word": "horn", + "freq": 1.38e-05 + }, + { + "word": "kyle", + "freq": 1.38e-05 + }, + { + "word": "lean", + "freq": 1.38e-05 + }, + { + "word": "peer", + "freq": 1.38e-05 + }, + { + "word": "pile", + "freq": 1.38e-05 + }, + { + "word": "plug", + "freq": 1.38e-05 + }, + { + "word": "bend", + "freq": 1.35e-05 + }, + { + "word": "cage", + "freq": 1.35e-05 + }, + { + "word": "cuba", + "freq": 1.35e-05 + }, + { + "word": "disc", + "freq": 1.35e-05 + }, + { + "word": "keen", + "freq": 1.35e-05 + }, + { + "word": "mere", + "freq": 1.35e-05 + }, + { + "word": "visa", + "freq": 1.35e-05 + }, + { + "word": "blew", + "freq": 1.32e-05 + }, + { + "word": "brad", + "freq": 1.32e-05 + }, + { + "word": "deer", + "freq": 1.32e-05 + }, + { + "word": "dive", + "freq": 1.32e-05 + }, + { + "word": "heal", + "freq": 1.32e-05 + }, + { + "word": "juan", + "freq": 1.32e-05 + }, + { + "word": "pete", + "freq": 1.32e-05 + }, + { + "word": "prof", + "freq": 1.32e-05 + }, + { + "word": "babe", + "freq": 1.29e-05 + }, + { + "word": "drum", + "freq": 1.29e-05 + }, + { + "word": "grip", + "freq": 1.29e-05 + }, + { + "word": "mild", + "freq": 1.29e-05 + }, + { + "word": "noon", + "freq": 1.29e-05 + }, + { + "word": "rage", + "freq": 1.29e-05 + }, + { + "word": "silk", + "freq": 1.29e-05 + }, + { + "word": "urge", + "freq": 1.29e-05 + }, + { + "word": "ally", + "freq": 1.26e-05 + }, + { + "word": "ipad", + "freq": 1.26e-05 + }, + { + "word": "lung", + "freq": 1.26e-05 + }, + { + "word": "pine", + "freq": 1.26e-05 + }, + { + "word": "pose", + "freq": 1.26e-05 + }, + { + "word": "pour", + "freq": 1.26e-05 + }, + { + "word": "sang", + "freq": 1.26e-05 + }, + { + "word": "wont", + "freq": 1.23e-05 + }, + { + "word": "cafe", + "freq": 1.23e-05 + }, + { + "word": "cult", + "freq": 1.23e-05 + }, + { + "word": "euro", + "freq": 1.23e-05 + }, + { + "word": "leak", + "freq": 1.23e-05 + }, + { + "word": "mice", + "freq": 1.23e-05 + }, + { + "word": "riot", + "freq": 1.23e-05 + }, + { + "word": "slot", + "freq": 1.23e-05 + }, + { + "word": "todd", + "freq": 1.23e-05 + }, + { + "word": "coke", + "freq": 1.2e-05 + }, + { + "word": "dump", + "freq": 1.2e-05 + }, + { + "word": "fold", + "freq": 1.2e-05 + }, + { + "word": "myth", + "freq": 1.2e-05 + }, + { + "word": "pale", + "freq": 1.2e-05 + }, + { + "word": "shaw", + "freq": 1.2e-05 + }, + { + "word": "toll", + "freq": 1.2e-05 + }, + { + "word": "torn", + "freq": 1.2e-05 + }, + { + "word": "cruz", + "freq": 1.17e-05 + }, + { + "word": "hint", + "freq": 1.17e-05 + }, + { + "word": "lucy", + "freq": 1.17e-05 + }, + { + "word": "nest", + "freq": 1.17e-05 + }, + { + "word": "reed", + "freq": 1.17e-05 + }, + { + "word": "scan", + "freq": 1.17e-05 + }, + { + "word": "span", + "freq": 1.17e-05 + }, + { + "word": "demo", + "freq": 1.15e-05 + }, + { + "word": "doll", + "freq": 1.15e-05 + }, + { + "word": "hull", + "freq": 1.15e-05 + }, + { + "word": "rope", + "freq": 1.15e-05 + }, + { + "word": "stan", + "freq": 1.15e-05 + }, + { + "word": "bout", + "freq": 1.12e-05 + }, + { + "word": "buzz", + "freq": 1.12e-05 + }, + { + "word": "fled", + "freq": 1.12e-05 + }, + { + "word": "foul", + "freq": 1.12e-05 + }, + { + "word": "hack", + "freq": 1.12e-05 + }, + { + "word": "lamp", + "freq": 1.12e-05 + }, + { + "word": "oven", + "freq": 1.12e-05 + }, + { + "word": "owen", + "freq": 1.12e-05 + }, + { + "word": "ruth", + "freq": 1.12e-05 + }, + { + "word": "slim", + "freq": 1.12e-05 + }, + { + "word": "spam", + "freq": 1.12e-05 + }, + { + "word": "tent", + "freq": 1.12e-05 + }, + { + "word": "tide", + "freq": 1.12e-05 + }, + { + "word": "bolt", + "freq": 1.1e-05 + }, + { + "word": "bust", + "freq": 1.1e-05 + }, + { + "word": "cope", + "freq": 1.1e-05 + }, + { + "word": "ebay", + "freq": 1.1e-05 + }, + { + "word": "echo", + "freq": 1.1e-05 + }, + { + "word": "hart", + "freq": 1.1e-05 + }, + { + "word": "lgbt", + "freq": 1.1e-05 + }, + { + "word": "soda", + "freq": 1.1e-05 + }, + { + "word": "thee", + "freq": 1.1e-05 + }, + { + "word": "fork", + "freq": 1.07e-05 + }, + { + "word": "hype", + "freq": 1.07e-05 + }, + { + "word": "junk", + "freq": 1.07e-05 + }, + { + "word": "marc", + "freq": 1.07e-05 + }, + { + "word": "pill", + "freq": 1.07e-05 + }, + { + "word": "pork", + "freq": 1.07e-05 + }, + { + "word": "arch", + "freq": 1.05e-05 + }, + { + "word": "axis", + "freq": 1.05e-05 + }, + { + "word": "doug", + "freq": 1.05e-05 + }, + { + "word": "goat", + "freq": 1.05e-05 + }, + { + "word": "heck", + "freq": 1.05e-05 + }, + { + "word": "lamb", + "freq": 1.05e-05 + }, + { + "word": "liar", + "freq": 1.05e-05 + }, + { + "word": "mega", + "freq": 1.05e-05 + }, + { + "word": "slam", + "freq": 1.05e-05 + }, + { + "word": "tire", + "freq": 1.05e-05 + }, + { + "word": "warn", + "freq": 1.05e-05 + }, + { + "word": "bail", + "freq": 1.02e-05 + }, + { + "word": "buck", + "freq": 1.02e-05 + }, + { + "word": "disk", + "freq": 1.02e-05 + }, + { + "word": "hugh", + "freq": 1.02e-05 + }, + { + "word": "joan", + "freq": 1.02e-05 + }, + { + "word": "nato", + "freq": 1.02e-05 + }, + { + "word": "sail", + "freq": 1.02e-05 + }, + { + "word": "void", + "freq": 1.02e-05 + }, + { + "word": "whip", + "freq": 1.02e-05 + }, + { + "word": "wipe", + "freq": 1.02e-05 + }, + { + "word": "chan", + "freq": 1e-05 + }, + { + "word": "chin", + "freq": 1e-05 + }, + { + "word": "coup", + "freq": 1e-05 + }, + { + "word": "dash", + "freq": 1e-05 + }, + { + "word": "java", + "freq": 1e-05 + }, + { + "word": "jerk", + "freq": 1e-05 + }, + { + "word": "karl", + "freq": 1e-05 + }, + { + "word": "nude", + "freq": 1e-05 + }, + { + "word": "tits", + "freq": 1e-05 + }, + { + "word": "barn", + "freq": 9.77e-06 + }, + { + "word": "bent", + "freq": 9.77e-06 + }, + { + "word": "deaf", + "freq": 9.77e-06 + }, + { + "word": "dock", + "freq": 9.77e-06 + }, + { + "word": "feat", + "freq": 9.77e-06 + }, + { + "word": "neat", + "freq": 9.77e-06 + }, + { + "word": "reid", + "freq": 9.77e-06 + }, + { + "word": "sore", + "freq": 9.77e-06 + }, + { + "word": "bean", + "freq": 9.55e-06 + }, + { + "word": "bump", + "freq": 9.55e-06 + }, + { + "word": "cart", + "freq": 9.55e-06 + }, + { + "word": "cord", + "freq": 9.55e-06 + }, + { + "word": "dale", + "freq": 9.55e-06 + }, + { + "word": "lawn", + "freq": 9.55e-06 + }, + { + "word": "oval", + "freq": 9.55e-06 + }, + { + "word": "pity", + "freq": 9.55e-06 + }, + { + "word": "pond", + "freq": 9.55e-06 + }, + { + "word": "prey", + "freq": 9.55e-06 + }, + { + "word": "ruby", + "freq": 9.55e-06 + }, + { + "word": "wade", + "freq": 9.55e-06 + }, + { + "word": "clan", + "freq": 9.33e-06 + }, + { + "word": "joel", + "freq": 9.33e-06 + }, + { + "word": "rico", + "freq": 9.33e-06 + }, + { + "word": "slap", + "freq": 9.33e-06 + }, + { + "word": "chen", + "freq": 9.12e-06 + }, + { + "word": "dame", + "freq": 9.12e-06 + }, + { + "word": "eyed", + "freq": 9.12e-06 + }, + { + "word": "melt", + "freq": 9.12e-06 + }, + { + "word": "oath", + "freq": 9.12e-06 + }, + { + "word": "sara", + "freq": 9.12e-06 + }, + { + "word": "stir", + "freq": 9.12e-06 + }, + { + "word": "toes", + "freq": 9.12e-06 + }, + { + "word": "trek", + "freq": 9.12e-06 + }, + { + "word": "uber", + "freq": 9.12e-06 + }, + { + "word": "unto", + "freq": 9.12e-06 + }, + { + "word": "amid", + "freq": 8.91e-06 + }, + { + "word": "goin", + "freq": 8.91e-06 + }, + { + "word": "hike", + "freq": 8.91e-06 + }, + { + "word": "kane", + "freq": 8.91e-06 + }, + { + "word": "lame", + "freq": 8.91e-06 + }, + { + "word": "lily", + "freq": 8.91e-06 + }, + { + "word": "plea", + "freq": 8.91e-06 + }, + { + "word": "sigh", + "freq": 8.91e-06 + }, + { + "word": "stat", + "freq": 8.91e-06 + }, + { + "word": "troy", + "freq": 8.91e-06 + }, + { + "word": "wang", + "freq": 8.91e-06 + }, + { + "word": "anal", + "freq": 8.71e-06 + }, + { + "word": "dull", + "freq": 8.71e-06 + }, + { + "word": "fare", + "freq": 8.71e-06 + }, + { + "word": "idol", + "freq": 8.71e-06 + }, + { + "word": "leap", + "freq": 8.71e-06 + }, + { + "word": "prep", + "freq": 8.71e-06 + }, + { + "word": "scam", + "freq": 8.71e-06 + }, + { + "word": "swap", + "freq": 8.71e-06 + }, + { + "word": "trio", + "freq": 8.71e-06 + }, + { + "word": "vibe", + "freq": 8.71e-06 + }, + { + "word": "wifi", + "freq": 8.71e-06 + }, + { + "word": "acre", + "freq": 8.51e-06 + }, + { + "word": "alot", + "freq": 8.51e-06 + }, + { + "word": "amen", + "freq": 8.51e-06 + }, + { + "word": "bore", + "freq": 8.51e-06 + }, + { + "word": "chad", + "freq": 8.51e-06 + }, + { + "word": "dial", + "freq": 8.51e-06 + }, + { + "word": "espn", + "freq": 8.51e-06 + }, + { + "word": "halt", + "freq": 8.51e-06 + }, + { + "word": "liam", + "freq": 8.51e-06 + }, + { + "word": "monk", + "freq": 8.51e-06 + }, + { + "word": "noah", + "freq": 8.51e-06 + }, + { + "word": "norm", + "freq": 8.51e-06 + }, + { + "word": "gaza", + "freq": 8.32e-06 + }, + { + "word": "hail", + "freq": 8.32e-06 + }, + { + "word": "joey", + "freq": 8.32e-06 + }, + { + "word": "lend", + "freq": 8.32e-06 + }, + { + "word": "leon", + "freq": 8.32e-06 + }, + { + "word": "mint", + "freq": 8.32e-06 + }, + { + "word": "nova", + "freq": 8.32e-06 + }, + { + "word": "seth", + "freq": 8.32e-06 + }, + { + "word": "bake", + "freq": 8.13e-06 + }, + { + "word": "fury", + "freq": 8.13e-06 + }, + { + "word": "glow", + "freq": 8.13e-06 + }, + { + "word": "lone", + "freq": 8.13e-06 + }, + { + "word": "meme", + "freq": 8.13e-06 + }, + { + "word": "papa", + "freq": 8.13e-06 + }, + { + "word": "rode", + "freq": 8.13e-06 + }, + { + "word": "sack", + "freq": 8.13e-06 + }, + { + "word": "sung", + "freq": 8.13e-06 + }, + { + "word": "toss", + "freq": 8.13e-06 + }, + { + "word": "wool", + "freq": 8.13e-06 + }, + { + "word": "yang", + "freq": 8.13e-06 + }, + { + "word": "dome", + "freq": 7.94e-06 + }, + { + "word": "dope", + "freq": 7.94e-06 + }, + { + "word": "gosh", + "freq": 7.94e-06 + }, + { + "word": "penn", + "freq": 7.94e-06 + }, + { + "word": "rack", + "freq": 7.94e-06 + }, + { + "word": "sued", + "freq": 7.94e-06 + }, + { + "word": "sums", + "freq": 7.94e-06 + }, + { + "word": "tory", + "freq": 7.94e-06 + }, + { + "word": "walt", + "freq": 7.94e-06 + }, + { + "word": "isnt", + "freq": 7.76e-06 + }, + { + "word": "bury", + "freq": 7.76e-06 + }, + { + "word": "fist", + "freq": 7.76e-06 + }, + { + "word": "fond", + "freq": 7.76e-06 + }, + { + "word": "frog", + "freq": 7.76e-06 + }, + { + "word": "heir", + "freq": 7.76e-06 + }, + { + "word": "moss", + "freq": 7.76e-06 + }, + { + "word": "peru", + "freq": 7.76e-06 + }, + { + "word": "tomb", + "freq": 7.76e-06 + }, + { + "word": "trim", + "freq": 7.76e-06 + }, + { + "word": "sons", + "freq": 7.59e-06 + }, + { + "word": "blah", + "freq": 7.59e-06 + }, + { + "word": "haul", + "freq": 7.59e-06 + }, + { + "word": "kurt", + "freq": 7.59e-06 + }, + { + "word": "ncaa", + "freq": 7.59e-06 + }, + { + "word": "nike", + "freq": 7.59e-06 + }, + { + "word": "node", + "freq": 7.59e-06 + }, + { + "word": "sour", + "freq": 7.59e-06 + }, + { + "word": "yale", + "freq": 7.59e-06 + }, + { + "word": "beth", + "freq": 7.41e-06 + }, + { + "word": "bids", + "freq": 7.41e-06 + }, + { + "word": "cunt", + "freq": 7.41e-06 + }, + { + "word": "glen", + "freq": 7.41e-06 + }, + { + "word": "maya", + "freq": 7.41e-06 + }, + { + "word": "saga", + "freq": 7.41e-06 + }, + { + "word": "fade", + "freq": 7.24e-06 + }, + { + "word": "ivan", + "freq": 7.24e-06 + }, + { + "word": "lime", + "freq": 7.24e-06 + }, + { + "word": "lynn", + "freq": 7.24e-06 + }, + { + "word": "maid", + "freq": 7.24e-06 + }, + { + "word": "owed", + "freq": 7.24e-06 + }, + { + "word": "surf", + "freq": 7.24e-06 + }, + { + "word": "sync", + "freq": 7.24e-06 + }, + { + "word": "guys", + "freq": 7.08e-06 + }, + { + "word": "bait", + "freq": 7.08e-06 + }, + { + "word": "bark", + "freq": 7.08e-06 + }, + { + "word": "comp", + "freq": 7.08e-06 + }, + { + "word": "kirk", + "freq": 7.08e-06 + }, + { + "word": "lang", + "freq": 7.08e-06 + }, + { + "word": "levy", + "freq": 7.08e-06 + }, + { + "word": "mock", + "freq": 7.08e-06 + }, + { + "word": "nina", + "freq": 7.08e-06 + }, + { + "word": "para", + "freq": 7.08e-06 + }, + { + "word": "spit", + "freq": 7.08e-06 + }, + { + "word": "envy", + "freq": 6.92e-06 + }, + { + "word": "heel", + "freq": 6.92e-06 + }, + { + "word": "nash", + "freq": 6.92e-06 + }, + { + "word": "swan", + "freq": 6.92e-06 + }, + { + "word": "bald", + "freq": 6.76e-06 + }, + { + "word": "boil", + "freq": 6.76e-06 + }, + { + "word": "boyd", + "freq": 6.76e-06 + }, + { + "word": "cone", + "freq": 6.76e-06 + }, + { + "word": "isle", + "freq": 6.76e-06 + }, + { + "word": "lego", + "freq": 6.76e-06 + }, + { + "word": "mick", + "freq": 6.76e-06 + }, + { + "word": "obey", + "freq": 6.76e-06 + }, + { + "word": "ramp", + "freq": 6.76e-06 + }, + { + "word": "rand", + "freq": 6.76e-06 + }, + { + "word": "reef", + "freq": 6.76e-06 + }, + { + "word": "sage", + "freq": 6.76e-06 + }, + { + "word": "thru", + "freq": 6.76e-06 + }, + { + "word": "zoom", + "freq": 6.76e-06 + }, + { + "word": "cube", + "freq": 6.61e-06 + }, + { + "word": "dana", + "freq": 6.61e-06 + }, + { + "word": "eden", + "freq": 6.61e-06 + }, + { + "word": "guru", + "freq": 6.61e-06 + }, + { + "word": "lace", + "freq": 6.61e-06 + }, + { + "word": "pier", + "freq": 6.61e-06 + }, + { + "word": "quiz", + "freq": 6.61e-06 + }, + { + "word": "whoa", + "freq": 6.61e-06 + }, + { + "word": "moms", + "freq": 6.46e-06 + }, + { + "word": "asap", + "freq": 6.46e-06 + }, + { + "word": "bash", + "freq": 6.46e-06 + }, + { + "word": "doom", + "freq": 6.46e-06 + }, + { + "word": "flee", + "freq": 6.46e-06 + }, + { + "word": "hawk", + "freq": 6.46e-06 + }, + { + "word": "jill", + "freq": 6.46e-06 + }, + { + "word": "logs", + "freq": 6.46e-06 + }, + { + "word": "memo", + "freq": 6.46e-06 + }, + { + "word": "nate", + "freq": 6.46e-06 + }, + { + "word": "pony", + "freq": 6.46e-06 + }, + { + "word": "shah", + "freq": 6.46e-06 + }, + { + "word": "sofa", + "freq": 6.46e-06 + }, + { + "word": "crow", + "freq": 6.31e-06 + }, + { + "word": "doin", + "freq": 6.31e-06 + }, + { + "word": "font", + "freq": 6.31e-06 + }, + { + "word": "glue", + "freq": 6.31e-06 + }, + { + "word": "lyon", + "freq": 6.31e-06 + }, + { + "word": "modi", + "freq": 6.31e-06 + }, + { + "word": "peel", + "freq": 6.31e-06 + }, + { + "word": "pins", + "freq": 6.31e-06 + }, + { + "word": "ribs", + "freq": 6.31e-06 + }, + { + "word": "rosa", + "freq": 6.31e-06 + }, + { + "word": "tick", + "freq": 6.31e-06 + }, + { + "word": "ussr", + "freq": 6.31e-06 + }, + { + "word": "vent", + "freq": 6.31e-06 + }, + { + "word": "bred", + "freq": 6.17e-06 + }, + { + "word": "curb", + "freq": 6.17e-06 + }, + { + "word": "dong", + "freq": 6.17e-06 + } + ], + "5": [ + { + "word": "about", + "freq": 0.00251 + }, + { + "word": "their", + "freq": 0.00214 + }, + { + "word": "which", + "freq": 0.002 + }, + { + "word": "would", + "freq": 0.00186 + }, + { + "word": "other", + "freq": 0.00145 + }, + { + "word": "after", + "freq": 0.00129 + }, + { + "word": "first", + "freq": 0.00129 + }, + { + "word": "think", + "freq": 0.0012 + }, + { + "word": "could", + "freq": 0.00115 + }, + { + "word": "these", + "freq": 0.0011 + }, + { + "word": "where", + "freq": 0.001 + }, + { + "word": "right", + "freq": 0.000912 + }, + { + "word": "being", + "freq": 0.000891 + }, + { + "word": "going", + "freq": 0.000871 + }, + { + "word": "still", + "freq": 0.000832 + }, + { + "word": "never", + "freq": 0.000813 + }, + { + "word": "those", + "freq": 0.000794 + }, + { + "word": "world", + "freq": 0.000776 + }, + { + "word": "great", + "freq": 0.000759 + }, + { + "word": "while", + "freq": 0.000724 + }, + { + "word": "every", + "freq": 0.000617 + }, + { + "word": "state", + "freq": 0.000603 + }, + { + "word": "three", + "freq": 0.000603 + }, + { + "word": "since", + "freq": 0.000562 + }, + { + "word": "under", + "freq": 0.000537 + }, + { + "word": "thing", + "freq": 0.000525 + }, + { + "word": "house", + "freq": 0.000513 + }, + { + "word": "place", + "freq": 0.000513 + }, + { + "word": "again", + "freq": 0.000501 + }, + { + "word": "found", + "freq": 0.000479 + }, + { + "word": "might", + "freq": 0.000457 + }, + { + "word": "money", + "freq": 0.000437 + }, + { + "word": "night", + "freq": 0.000407 + }, + { + "word": "until", + "freq": 0.000407 + }, + { + "word": "doing", + "freq": 0.000398 + }, + { + "word": "group", + "freq": 0.000372 + }, + { + "word": "women", + "freq": 0.000372 + }, + { + "word": "start", + "freq": 0.000363 + }, + { + "word": "today", + "freq": 0.000355 + }, + { + "word": "point", + "freq": 0.000347 + }, + { + "word": "music", + "freq": 0.000331 + }, + { + "word": "power", + "freq": 0.000331 + }, + { + "word": "water", + "freq": 0.000331 + }, + { + "word": "based", + "freq": 0.000324 + }, + { + "word": "small", + "freq": 0.000324 + }, + { + "word": "white", + "freq": 0.000324 + }, + { + "word": "later", + "freq": 0.000309 + }, + { + "word": "order", + "freq": 0.000309 + }, + { + "word": "party", + "freq": 0.000309 + }, + { + "word": "thank", + "freq": 0.000302 + }, + { + "word": "using", + "freq": 0.000295 + }, + { + "word": "black", + "freq": 0.000288 + }, + { + "word": "makes", + "freq": 0.000288 + }, + { + "word": "whole", + "freq": 0.000288 + }, + { + "word": "maybe", + "freq": 0.000282 + }, + { + "word": "story", + "freq": 0.000282 + }, + { + "word": "least", + "freq": 0.000275 + }, + { + "word": "means", + "freq": 0.000275 + }, + { + "word": "early", + "freq": 0.000269 + }, + { + "word": "local", + "freq": 0.000269 + }, + { + "word": "video", + "freq": 0.000269 + }, + { + "word": "young", + "freq": 0.000269 + }, + { + "word": "court", + "freq": 0.000257 + }, + { + "word": "given", + "freq": 0.000257 + }, + { + "word": "level", + "freq": 0.000257 + }, + { + "word": "often", + "freq": 0.000257 + }, + { + "word": "death", + "freq": 0.000251 + }, + { + "word": "south", + "freq": 0.000251 + }, + { + "word": "known", + "freq": 0.000245 + }, + { + "word": "large", + "freq": 0.000245 + }, + { + "word": "wrong", + "freq": 0.000245 + }, + { + "word": "along", + "freq": 0.00024 + }, + { + "word": "class", + "freq": 0.000229 + }, + { + "word": "close", + "freq": 0.000229 + }, + { + "word": "cause", + "freq": 0.000224 + }, + { + "word": "happy", + "freq": 0.000224 + }, + { + "word": "human", + "freq": 0.000224 + }, + { + "word": "woman", + "freq": 0.000224 + }, + { + "word": "leave", + "freq": 0.000219 + }, + { + "word": "north", + "freq": 0.000219 + }, + { + "word": "watch", + "freq": 0.000219 + }, + { + "word": "light", + "freq": 0.000214 + }, + { + "word": "short", + "freq": 0.000214 + }, + { + "word": "taken", + "freq": 0.000214 + }, + { + "word": "third", + "freq": 0.000209 + }, + { + "word": "among", + "freq": 0.000204 + }, + { + "word": "check", + "freq": 0.000204 + }, + { + "word": "heart", + "freq": 0.000204 + }, + { + "word": "asked", + "freq": 0.0002 + }, + { + "word": "child", + "freq": 0.0002 + }, + { + "word": "major", + "freq": 0.0002 + }, + { + "word": "media", + "freq": 0.0002 + }, + { + "word": "phone", + "freq": 0.0002 + }, + { + "word": "gonna", + "freq": 0.000195 + }, + { + "word": "quite", + "freq": 0.000195 + }, + { + "word": "final", + "freq": 0.000191 + }, + { + "word": "front", + "freq": 0.000191 + }, + { + "word": "ready", + "freq": 0.000191 + }, + { + "word": "bring", + "freq": 0.000186 + }, + { + "word": "heard", + "freq": 0.000186 + }, + { + "word": "march", + "freq": 0.000182 + }, + { + "word": "study", + "freq": 0.000182 + }, + { + "word": "clear", + "freq": 0.000178 + }, + { + "word": "month", + "freq": 0.000178 + }, + { + "word": "board", + "freq": 0.000174 + }, + { + "word": "field", + "freq": 0.000174 + }, + { + "word": "seems", + "freq": 0.000174 + }, + { + "word": "fight", + "freq": 0.00017 + }, + { + "word": "force", + "freq": 0.00017 + }, + { + "word": "issue", + "freq": 0.00017 + }, + { + "word": "price", + "freq": 0.00017 + }, + { + "word": "space", + "freq": 0.00017 + }, + { + "word": "total", + "freq": 0.000162 + }, + { + "word": "above", + "freq": 0.000158 + }, + { + "word": "april", + "freq": 0.000155 + }, + { + "word": "sense", + "freq": 0.000155 + }, + { + "word": "break", + "freq": 0.000151 + }, + { + "word": "event", + "freq": 0.000151 + }, + { + "word": "sorry", + "freq": 0.000151 + }, + { + "word": "takes", + "freq": 0.000151 + }, + { + "word": "guess", + "freq": 0.000148 + }, + { + "word": "learn", + "freq": 0.000148 + }, + { + "word": "added", + "freq": 0.000145 + }, + { + "word": "alone", + "freq": 0.000145 + }, + { + "word": "movie", + "freq": 0.000145 + }, + { + "word": "press", + "freq": 0.000145 + }, + { + "word": "tried", + "freq": 0.000145 + }, + { + "word": "worth", + "freq": 0.000145 + }, + { + "word": "sound", + "freq": 0.000141 + }, + { + "word": "value", + "freq": 0.000141 + }, + { + "word": "round", + "freq": 0.000138 + }, + { + "word": "stand", + "freq": 0.000138 + }, + { + "word": "stuff", + "freq": 0.000138 + }, + { + "word": "david", + "freq": 0.000135 + }, + { + "word": "drive", + "freq": 0.000135 + }, + { + "word": "green", + "freq": 0.000135 + }, + { + "word": "match", + "freq": 0.000135 + }, + { + "word": "model", + "freq": 0.000135 + }, + { + "word": "trust", + "freq": 0.000135 + }, + { + "word": "range", + "freq": 0.000132 + }, + { + "word": "trade", + "freq": 0.000132 + }, + { + "word": "chief", + "freq": 0.000129 + }, + { + "word": "lower", + "freq": 0.000129 + }, + { + "word": "style", + "freq": 0.000129 + }, + { + "word": "blood", + "freq": 0.000126 + }, + { + "word": "china", + "freq": 0.000126 + }, + { + "word": "stage", + "freq": 0.000126 + }, + { + "word": "title", + "freq": 0.000126 + }, + { + "word": "enjoy", + "freq": 0.000123 + }, + { + "word": "cover", + "freq": 0.00012 + }, + { + "word": "legal", + "freq": 0.00012 + }, + { + "word": "seven", + "freq": 0.00012 + }, + { + "word": "staff", + "freq": 0.00012 + }, + { + "word": "super", + "freq": 0.00012 + }, + { + "word": "union", + "freq": 0.00012 + }, + { + "word": "began", + "freq": 0.000117 + }, + { + "word": "built", + "freq": 0.000117 + }, + { + "word": "crazy", + "freq": 0.000117 + }, + { + "word": "daily", + "freq": 0.000117 + }, + { + "word": "paper", + "freq": 0.000117 + }, + { + "word": "voice", + "freq": 0.000117 + }, + { + "word": "whose", + "freq": 0.000117 + }, + { + "word": "earth", + "freq": 0.000115 + }, + { + "word": "below", + "freq": 0.000112 + }, + { + "word": "offer", + "freq": 0.000112 + }, + { + "word": "sleep", + "freq": 0.000112 + }, + { + "word": "table", + "freq": 0.000112 + }, + { + "word": "truth", + "freq": 0.000112 + }, + { + "word": "build", + "freq": 0.00011 + }, + { + "word": "india", + "freq": 0.00011 + }, + { + "word": "piece", + "freq": 0.00011 + }, + { + "word": "visit", + "freq": 0.00011 + }, + { + "word": "wanna", + "freq": 0.00011 + }, + { + "word": "wrote", + "freq": 0.00011 + }, + { + "word": "gives", + "freq": 0.000107 + }, + { + "word": "river", + "freq": 0.000107 + }, + { + "word": "shall", + "freq": 0.000107 + }, + { + "word": "speak", + "freq": 0.000107 + }, + { + "word": "write", + "freq": 0.000107 + }, + { + "word": "album", + "freq": 0.000105 + }, + { + "word": "eight", + "freq": 0.000105 + }, + { + "word": "funny", + "freq": 0.000105 + }, + { + "word": "peace", + "freq": 0.000105 + }, + { + "word": "spent", + "freq": 0.000105 + }, + { + "word": "store", + "freq": 0.000105 + }, + { + "word": "track", + "freq": 0.000105 + }, + { + "word": "ahead", + "freq": 0.000102 + }, + { + "word": "allow", + "freq": 0.000102 + }, + { + "word": "brown", + "freq": 0.000102 + }, + { + "word": "moved", + "freq": 0.000102 + }, + { + "word": "radio", + "freq": 0.000102 + }, + { + "word": "cross", + "freq": 0.0001 + }, + { + "word": "focus", + "freq": 0.0001 + }, + { + "word": "loved", + "freq": 0.0001 + }, + { + "word": "speed", + "freq": 0.0001 + }, + { + "word": "jesus", + "freq": 9.77e-05 + }, + { + "word": "extra", + "freq": 9.55e-05 + }, + { + "word": "quick", + "freq": 9.55e-05 + }, + { + "word": "agree", + "freq": 9.33e-05 + }, + { + "word": "clean", + "freq": 9.33e-05 + }, + { + "word": "photo", + "freq": 9.33e-05 + }, + { + "word": "scene", + "freq": 9.33e-05 + }, + { + "word": "spend", + "freq": 9.33e-05 + }, + { + "word": "coach", + "freq": 9.12e-05 + }, + { + "word": "costs", + "freq": 9.12e-05 + }, + { + "word": "heavy", + "freq": 9.12e-05 + }, + { + "word": "train", + "freq": 9.12e-05 + }, + { + "word": "claim", + "freq": 8.91e-05 + }, + { + "word": "goals", + "freq": 8.91e-05 + }, + { + "word": "gotta", + "freq": 8.91e-05 + }, + { + "word": "hotel", + "freq": 8.91e-05 + }, + { + "word": "judge", + "freq": 8.91e-05 + }, + { + "word": "named", + "freq": 8.91e-05 + }, + { + "word": "brain", + "freq": 8.71e-05 + }, + { + "word": "floor", + "freq": 8.71e-05 + }, + { + "word": "image", + "freq": 8.71e-05 + }, + { + "word": "reach", + "freq": 8.71e-05 + }, + { + "word": "civil", + "freq": 8.51e-05 + }, + { + "word": "dance", + "freq": 8.51e-05 + }, + { + "word": "stock", + "freq": 8.51e-05 + }, + { + "word": "trump", + "freq": 8.51e-05 + }, + { + "word": "worst", + "freq": 8.51e-05 + }, + { + "word": "beach", + "freq": 8.32e-05 + }, + { + "word": "ended", + "freq": 8.32e-05 + }, + { + "word": "older", + "freq": 8.32e-05 + }, + { + "word": "color", + "freq": 8.13e-05 + }, + { + "word": "dream", + "freq": 8.13e-05 + }, + { + "word": "grand", + "freq": 8.13e-05 + }, + { + "word": "sweet", + "freq": 8.13e-05 + }, + { + "word": "touch", + "freq": 8.13e-05 + }, + { + "word": "doubt", + "freq": 7.94e-05 + }, + { + "word": "drink", + "freq": 7.94e-05 + }, + { + "word": "feels", + "freq": 7.94e-05 + }, + { + "word": "shown", + "freq": 7.94e-05 + }, + { + "word": "basic", + "freq": 7.76e-05 + }, + { + "word": "carry", + "freq": 7.76e-05 + }, + { + "word": "crime", + "freq": 7.76e-05 + }, + { + "word": "fully", + "freq": 7.76e-05 + }, + { + "word": "japan", + "freq": 7.76e-05 + }, + { + "word": "plant", + "freq": 7.76e-05 + }, + { + "word": "smith", + "freq": 7.76e-05 + }, + { + "word": "texas", + "freq": 7.76e-05 + }, + { + "word": "worse", + "freq": 7.76e-05 + }, + { + "word": "award", + "freq": 7.59e-05 + }, + { + "word": "block", + "freq": 7.59e-05 + }, + { + "word": "lived", + "freq": 7.59e-05 + }, + { + "word": "peter", + "freq": 7.59e-05 + }, + { + "word": "rates", + "freq": 7.59e-05 + }, + { + "word": "avoid", + "freq": 7.41e-05 + }, + { + "word": "catch", + "freq": 7.41e-05 + }, + { + "word": "coast", + "freq": 7.41e-05 + }, + { + "word": "trial", + "freq": 7.41e-05 + }, + { + "word": "truly", + "freq": 7.41e-05 + }, + { + "word": "obama", + "freq": 7.24e-05 + }, + { + "word": "queen", + "freq": 7.24e-05 + }, + { + "word": "broke", + "freq": 7.08e-05 + }, + { + "word": "glass", + "freq": 7.08e-05 + }, + { + "word": "prior", + "freq": 7.08e-05 + }, + { + "word": "royal", + "freq": 7.08e-05 + }, + { + "word": "serve", + "freq": 7.08e-05 + }, + { + "word": "begin", + "freq": 6.92e-05 + }, + { + "word": "twice", + "freq": 6.92e-05 + }, + { + "word": "worry", + "freq": 6.92e-05 + }, + { + "word": "brand", + "freq": 6.76e-05 + }, + { + "word": "count", + "freq": 6.76e-05 + }, + { + "word": "fresh", + "freq": 6.76e-05 + }, + { + "word": "mouth", + "freq": 6.76e-05 + }, + { + "word": "owner", + "freq": 6.76e-05 + }, + { + "word": "scale", + "freq": 6.76e-05 + }, + { + "word": "score", + "freq": 6.76e-05 + }, + { + "word": "smart", + "freq": 6.76e-05 + }, + { + "word": "throw", + "freq": 6.76e-05 + }, + { + "word": "click", + "freq": 6.61e-05 + }, + { + "word": "faith", + "freq": 6.61e-05 + }, + { + "word": "louis", + "freq": 6.61e-05 + }, + { + "word": "metal", + "freq": 6.61e-05 + }, + { + "word": "paris", + "freq": 6.61e-05 + }, + { + "word": "agent", + "freq": 6.46e-05 + }, + { + "word": "apply", + "freq": 6.46e-05 + }, + { + "word": "basis", + "freq": 6.46e-05 + }, + { + "word": "chris", + "freq": 6.46e-05 + }, + { + "word": "enter", + "freq": 6.46e-05 + }, + { + "word": "prime", + "freq": 6.46e-05 + }, + { + "word": "waste", + "freq": 6.46e-05 + }, + { + "word": "weird", + "freq": 6.46e-05 + }, + { + "word": "adult", + "freq": 6.31e-05 + }, + { + "word": "grade", + "freq": 6.31e-05 + }, + { + "word": "stone", + "freq": 6.31e-05 + }, + { + "word": "apart", + "freq": 6.03e-05 + }, + { + "word": "aware", + "freq": 6.03e-05 + }, + { + "word": "fifth", + "freq": 6.03e-05 + }, + { + "word": "proud", + "freq": 6.03e-05 + }, + { + "word": "tells", + "freq": 6.03e-05 + }, + { + "word": "birth", + "freq": 5.89e-05 + }, + { + "word": "labor", + "freq": 5.89e-05 + }, + { + "word": "lucky", + "freq": 5.89e-05 + }, + { + "word": "prove", + "freq": 5.89e-05 + }, + { + "word": "tough", + "freq": 5.89e-05 + }, + { + "word": "alive", + "freq": 5.75e-05 + }, + { + "word": "apple", + "freq": 5.75e-05 + }, + { + "word": "bitch", + "freq": 5.75e-05 + }, + { + "word": "dress", + "freq": 5.75e-05 + }, + { + "word": "horse", + "freq": 5.75e-05 + }, + { + "word": "liked", + "freq": 5.75e-05 + }, + { + "word": "magic", + "freq": 5.75e-05 + }, + { + "word": "owned", + "freq": 5.75e-05 + }, + { + "word": "stick", + "freq": 5.75e-05 + }, + { + "word": "frank", + "freq": 5.62e-05 + }, + { + "word": "guide", + "freq": 5.62e-05 + }, + { + "word": "raise", + "freq": 5.62e-05 + }, + { + "word": "treat", + "freq": 5.62e-05 + }, + { + "word": "youth", + "freq": 5.62e-05 + }, + { + "word": "helps", + "freq": 5.5e-05 + }, + { + "word": "henry", + "freq": 5.5e-05 + }, + { + "word": "exist", + "freq": 5.37e-05 + }, + { + "word": "guard", + "freq": 5.37e-05 + }, + { + "word": "likes", + "freq": 5.37e-05 + }, + { + "word": "shoot", + "freq": 5.37e-05 + }, + { + "word": "solid", + "freq": 5.37e-05 + }, + { + "word": "sport", + "freq": 5.37e-05 + }, + { + "word": "steps", + "freq": 5.37e-05 + }, + { + "word": "taste", + "freq": 5.37e-05 + }, + { + "word": "facts", + "freq": 5.25e-05 + }, + { + "word": "harry", + "freq": 5.25e-05 + }, + { + "word": "hello", + "freq": 5.25e-05 + }, + { + "word": "plane", + "freq": 5.25e-05 + }, + { + "word": "scott", + "freq": 5.25e-05 + }, + { + "word": "shape", + "freq": 5.25e-05 + }, + { + "word": "upper", + "freq": 5.25e-05 + }, + { + "word": "cheap", + "freq": 5.13e-05 + }, + { + "word": "joint", + "freq": 5.13e-05 + }, + { + "word": "steel", + "freq": 5.13e-05 + }, + { + "word": "steve", + "freq": 5.13e-05 + }, + { + "word": "tired", + "freq": 5.13e-05 + }, + { + "word": "crowd", + "freq": 5.01e-05 + }, + { + "word": "enemy", + "freq": 5.01e-05 + }, + { + "word": "fixed", + "freq": 5.01e-05 + }, + { + "word": "limit", + "freq": 5.01e-05 + }, + { + "word": "ocean", + "freq": 5.01e-05 + }, + { + "word": "proof", + "freq": 5.01e-05 + }, + { + "word": "asian", + "freq": 4.9e-05 + }, + { + "word": "chair", + "freq": 4.9e-05 + }, + { + "word": "honor", + "freq": 4.9e-05 + }, + { + "word": "noted", + "freq": 4.9e-05 + }, + { + "word": "email", + "freq": 4.79e-05 + }, + { + "word": "stuck", + "freq": 4.79e-05 + }, + { + "word": "sugar", + "freq": 4.79e-05 + }, + { + "word": "drama", + "freq": 4.68e-05 + }, + { + "word": "entry", + "freq": 4.68e-05 + }, + { + "word": "grant", + "freq": 4.68e-05 + }, + { + "word": "grown", + "freq": 4.68e-05 + }, + { + "word": "keeps", + "freq": 4.68e-05 + }, + { + "word": "lying", + "freq": 4.68e-05 + }, + { + "word": "route", + "freq": 4.68e-05 + }, + { + "word": "saved", + "freq": 4.68e-05 + }, + { + "word": "smoke", + "freq": 4.68e-05 + }, + { + "word": "squad", + "freq": 4.68e-05 + }, + { + "word": "teach", + "freq": 4.68e-05 + }, + { + "word": "abuse", + "freq": 4.57e-05 + }, + { + "word": "angry", + "freq": 4.57e-05 + }, + { + "word": "italy", + "freq": 4.57e-05 + }, + { + "word": "laugh", + "freq": 4.57e-05 + }, + { + "word": "lunch", + "freq": 4.57e-05 + }, + { + "word": "storm", + "freq": 4.57e-05 + }, + { + "word": "actor", + "freq": 4.47e-05 + }, + { + "word": "chain", + "freq": 4.47e-05 + }, + { + "word": "equal", + "freq": 4.47e-05 + }, + { + "word": "korea", + "freq": 4.47e-05 + }, + { + "word": "quiet", + "freq": 4.47e-05 + }, + { + "word": "split", + "freq": 4.47e-05 + }, + { + "word": "taxes", + "freq": 4.47e-05 + }, + { + "word": "urban", + "freq": 4.47e-05 + }, + { + "word": "fault", + "freq": 4.37e-05 + }, + { + "word": "mixed", + "freq": 4.37e-05 + }, + { + "word": "phase", + "freq": 4.37e-05 + }, + { + "word": "smile", + "freq": 4.37e-05 + }, + { + "word": "truck", + "freq": 4.37e-05 + }, + { + "word": "blame", + "freq": 4.27e-05 + }, + { + "word": "dying", + "freq": 4.27e-05 + }, + { + "word": "false", + "freq": 4.27e-05 + }, + { + "word": "fired", + "freq": 4.27e-05 + }, + { + "word": "novel", + "freq": 4.27e-05 + }, + { + "word": "shirt", + "freq": 4.27e-05 + }, + { + "word": "cream", + "freq": 4.17e-05 + }, + { + "word": "giant", + "freq": 4.17e-05 + }, + { + "word": "mayor", + "freq": 4.17e-05 + }, + { + "word": "minor", + "freq": 4.17e-05 + }, + { + "word": "theme", + "freq": 4.17e-05 + }, + { + "word": "usual", + "freq": 4.17e-05 + }, + { + "word": "voted", + "freq": 4.17e-05 + }, + { + "word": "draft", + "freq": 4.07e-05 + }, + { + "word": "drunk", + "freq": 4.07e-05 + }, + { + "word": "finds", + "freq": 4.07e-05 + }, + { + "word": "spoke", + "freq": 4.07e-05 + }, + { + "word": "upset", + "freq": 4.07e-05 + }, + { + "word": "cycle", + "freq": 3.98e-05 + }, + { + "word": "holds", + "freq": 3.98e-05 + }, + { + "word": "wales", + "freq": 3.98e-05 + }, + { + "word": "armed", + "freq": 3.89e-05 + }, + { + "word": "aside", + "freq": 3.89e-05 + }, + { + "word": "empty", + "freq": 3.89e-05 + }, + { + "word": "kinda", + "freq": 3.89e-05 + }, + { + "word": "prize", + "freq": 3.89e-05 + }, + { + "word": "rural", + "freq": 3.89e-05 + }, + { + "word": "spain", + "freq": 3.89e-05 + }, + { + "word": "admit", + "freq": 3.8e-05 + }, + { + "word": "favor", + "freq": 3.8e-05 + }, + { + "word": "frame", + "freq": 3.8e-05 + }, + { + "word": "guest", + "freq": 3.8e-05 + }, + { + "word": "teeth", + "freq": 3.8e-05 + }, + { + "word": "bunch", + "freq": 3.72e-05 + }, + { + "word": "fruit", + "freq": 3.72e-05 + }, + { + "word": "index", + "freq": 3.72e-05 + }, + { + "word": "shift", + "freq": 3.72e-05 + }, + { + "word": "stood", + "freq": 3.72e-05 + }, + { + "word": "tight", + "freq": 3.72e-05 + }, + { + "word": "crown", + "freq": 3.63e-05 + }, + { + "word": "grace", + "freq": 3.63e-05 + }, + { + "word": "kevin", + "freq": 3.63e-05 + }, + { + "word": "chose", + "freq": 3.55e-05 + }, + { + "word": "crash", + "freq": 3.55e-05 + }, + { + "word": "depth", + "freq": 3.55e-05 + }, + { + "word": "dirty", + "freq": 3.55e-05 + }, + { + "word": "error", + "freq": 3.55e-05 + }, + { + "word": "noise", + "freq": 3.55e-05 + }, + { + "word": "panel", + "freq": 3.55e-05 + }, + { + "word": "plate", + "freq": 3.55e-05 + }, + { + "word": "shame", + "freq": 3.55e-05 + }, + { + "word": "bible", + "freq": 3.47e-05 + }, + { + "word": "cable", + "freq": 3.47e-05 + }, + { + "word": "irish", + "freq": 3.47e-05 + }, + { + "word": "multi", + "freq": 3.47e-05 + }, + { + "word": "print", + "freq": 3.47e-05 + }, + { + "word": "sight", + "freq": 3.47e-05 + }, + { + "word": "broad", + "freq": 3.39e-05 + }, + { + "word": "drawn", + "freq": 3.39e-05 + }, + { + "word": "motor", + "freq": 3.39e-05 + }, + { + "word": "solar", + "freq": 3.39e-05 + }, + { + "word": "tries", + "freq": 3.39e-05 + }, + { + "word": "thats", + "freq": 3.31e-05 + }, + { + "word": "blind", + "freq": 3.31e-05 + }, + { + "word": "brief", + "freq": 3.31e-05 + }, + { + "word": "chest", + "freq": 3.31e-05 + }, + { + "word": "debut", + "freq": 3.31e-05 + }, + { + "word": "paint", + "freq": 3.31e-05 + }, + { + "word": "pilot", + "freq": 3.31e-05 + }, + { + "word": "steam", + "freq": 3.31e-05 + }, + { + "word": "exact", + "freq": 3.24e-05 + }, + { + "word": "kinds", + "freq": 3.24e-05 + }, + { + "word": "loans", + "freq": 3.24e-05 + }, + { + "word": "quote", + "freq": 3.24e-05 + }, + { + "word": "swear", + "freq": 3.24e-05 + }, + { + "word": "trend", + "freq": 3.24e-05 + }, + { + "word": "bread", + "freq": 3.16e-05 + }, + { + "word": "greek", + "freq": 3.16e-05 + }, + { + "word": "inner", + "freq": 3.16e-05 + }, + { + "word": "reply", + "freq": 3.16e-05 + }, + { + "word": "roman", + "freq": 3.16e-05 + }, + { + "word": "tower", + "freq": 3.16e-05 + }, + { + "word": "wheel", + "freq": 3.16e-05 + }, + { + "word": "davis", + "freq": 3.09e-05 + }, + { + "word": "faced", + "freq": 3.09e-05 + }, + { + "word": "filed", + "freq": 3.09e-05 + }, + { + "word": "pride", + "freq": 3.09e-05 + }, + { + "word": "rough", + "freq": 3.09e-05 + }, + { + "word": "santa", + "freq": 3.09e-05 + }, + { + "word": "smell", + "freq": 3.09e-05 + }, + { + "word": "topic", + "freq": 3.09e-05 + }, + { + "word": "latin", + "freq": 3.02e-05 + }, + { + "word": "lewis", + "freq": 3.02e-05 + }, + { + "word": "sarah", + "freq": 3.02e-05 + }, + { + "word": "sharp", + "freq": 3.02e-05 + }, + { + "word": "simon", + "freq": 3.02e-05 + }, + { + "word": "trick", + "freq": 3.02e-05 + }, + { + "word": "audio", + "freq": 2.95e-05 + }, + { + "word": "brian", + "freq": 2.95e-05 + }, + { + "word": "chart", + "freq": 2.95e-05 + }, + { + "word": "miami", + "freq": 2.95e-05 + }, + { + "word": "mount", + "freq": 2.95e-05 + }, + { + "word": "occur", + "freq": 2.95e-05 + }, + { + "word": "tears", + "freq": 2.95e-05 + }, + { + "word": "argue", + "freq": 2.88e-05 + }, + { + "word": "awful", + "freq": 2.88e-05 + }, + { + "word": "bound", + "freq": 2.88e-05 + }, + { + "word": "cloud", + "freq": 2.88e-05 + }, + { + "word": "jason", + "freq": 2.88e-05 + }, + { + "word": "loose", + "freq": 2.88e-05 + }, + { + "word": "moral", + "freq": 2.88e-05 + }, + { + "word": "shock", + "freq": 2.88e-05 + }, + { + "word": "thick", + "freq": 2.88e-05 + }, + { + "word": "threw", + "freq": 2.88e-05 + }, + { + "word": "angel", + "freq": 2.82e-05 + }, + { + "word": "bonus", + "freq": 2.82e-05 + }, + { + "word": "egypt", + "freq": 2.82e-05 + }, + { + "word": "flash", + "freq": 2.82e-05 + }, + { + "word": "gross", + "freq": 2.82e-05 + }, + { + "word": "refer", + "freq": 2.82e-05 + }, + { + "word": "trail", + "freq": 2.82e-05 + }, + { + "word": "uncle", + "freq": 2.82e-05 + }, + { + "word": "badly", + "freq": 2.75e-05 + }, + { + "word": "chase", + "freq": 2.75e-05 + }, + { + "word": "ideal", + "freq": 2.75e-05 + }, + { + "word": "jimmy", + "freq": 2.75e-05 + }, + { + "word": "kelly", + "freq": 2.75e-05 + }, + { + "word": "roles", + "freq": 2.75e-05 + }, + { + "word": "clock", + "freq": 2.69e-05 + }, + { + "word": "label", + "freq": 2.69e-05 + }, + { + "word": "naked", + "freq": 2.69e-05 + }, + { + "word": "opens", + "freq": 2.69e-05 + }, + { + "word": "pitch", + "freq": 2.69e-05 + }, + { + "word": "pizza", + "freq": 2.69e-05 + }, + { + "word": "plain", + "freq": 2.69e-05 + }, + { + "word": "anger", + "freq": 2.63e-05 + }, + { + "word": "comic", + "freq": 2.63e-05 + }, + { + "word": "ghost", + "freq": 2.63e-05 + }, + { + "word": "https", + "freq": 2.63e-05 + }, + { + "word": "islam", + "freq": 2.63e-05 + }, + { + "word": "newly", + "freq": 2.63e-05 + }, + { + "word": "skill", + "freq": 2.63e-05 + }, + { + "word": "solve", + "freq": 2.63e-05 + }, + { + "word": "trash", + "freq": 2.63e-05 + }, + { + "word": "virus", + "freq": 2.63e-05 + }, + { + "word": "boost", + "freq": 2.57e-05 + }, + { + "word": "crack", + "freq": 2.57e-05 + }, + { + "word": "dutch", + "freq": 2.57e-05 + }, + { + "word": "hired", + "freq": 2.57e-05 + }, + { + "word": "knife", + "freq": 2.57e-05 + }, + { + "word": "saint", + "freq": 2.57e-05 + }, + { + "word": "steal", + "freq": 2.57e-05 + }, + { + "word": "trans", + "freq": 2.57e-05 + }, + { + "word": "buddy", + "freq": 2.51e-05 + }, + { + "word": "delay", + "freq": 2.51e-05 + }, + { + "word": "elite", + "freq": 2.51e-05 + }, + { + "word": "forth", + "freq": 2.51e-05 + }, + { + "word": "layer", + "freq": 2.51e-05 + }, + { + "word": "marry", + "freq": 2.51e-05 + }, + { + "word": "nurse", + "freq": 2.51e-05 + }, + { + "word": "rugby", + "freq": 2.51e-05 + }, + { + "word": "sheet", + "freq": 2.51e-05 + }, + { + "word": "stops", + "freq": 2.51e-05 + }, + { + "word": "syria", + "freq": 2.51e-05 + }, + { + "word": "bench", + "freq": 2.45e-05 + }, + { + "word": "idiot", + "freq": 2.45e-05 + }, + { + "word": "medal", + "freq": 2.45e-05 + }, + { + "word": "roger", + "freq": 2.45e-05 + }, + { + "word": "silly", + "freq": 2.45e-05 + }, + { + "word": "years", + "freq": 2.4e-05 + }, + { + "word": "allen", + "freq": 2.4e-05 + }, + { + "word": "angle", + "freq": 2.4e-05 + }, + { + "word": "clark", + "freq": 2.4e-05 + }, + { + "word": "forum", + "freq": 2.4e-05 + }, + { + "word": "gifts", + "freq": 2.4e-05 + }, + { + "word": "grass", + "freq": 2.4e-05 + }, + { + "word": "hence", + "freq": 2.4e-05 + }, + { + "word": "rapid", + "freq": 2.4e-05 + }, + { + "word": "sixth", + "freq": 2.4e-05 + }, + { + "word": "sucks", + "freq": 2.4e-05 + }, + { + "word": "valid", + "freq": 2.4e-05 + }, + { + "word": "vital", + "freq": 2.4e-05 + }, + { + "word": "creek", + "freq": 2.34e-05 + }, + { + "word": "fraud", + "freq": 2.34e-05 + }, + { + "word": "honey", + "freq": 2.34e-05 + }, + { + "word": "ratio", + "freq": 2.34e-05 + }, + { + "word": "scary", + "freq": 2.34e-05 + }, + { + "word": "spell", + "freq": 2.34e-05 + }, + { + "word": "sword", + "freq": 2.34e-05 + }, + { + "word": "wayne", + "freq": 2.34e-05 + }, + { + "word": "begun", + "freq": 2.29e-05 + }, + { + "word": "daddy", + "freq": 2.29e-05 + }, + { + "word": "diego", + "freq": 2.29e-05 + }, + { + "word": "drove", + "freq": 2.29e-05 + }, + { + "word": "glory", + "freq": 2.29e-05 + }, + { + "word": "juice", + "freq": 2.29e-05 + }, + { + "word": "logic", + "freq": 2.29e-05 + }, + { + "word": "meets", + "freq": 2.29e-05 + }, + { + "word": "strip", + "freq": 2.29e-05 + }, + { + "word": "dozen", + "freq": 2.24e-05 + }, + { + "word": "fancy", + "freq": 2.24e-05 + }, + { + "word": "input", + "freq": 2.24e-05 + }, + { + "word": "knock", + "freq": 2.24e-05 + }, + { + "word": "ought", + "freq": 2.24e-05 + }, + { + "word": "risks", + "freq": 2.24e-05 + }, + { + "word": "boxes", + "freq": 2.19e-05 + }, + { + "word": "bruce", + "freq": 2.19e-05 + }, + { + "word": "flood", + "freq": 2.19e-05 + }, + { + "word": "kills", + "freq": 2.19e-05 + }, + { + "word": "maria", + "freq": 2.19e-05 + }, + { + "word": "rally", + "freq": 2.19e-05 + }, + { + "word": "swing", + "freq": 2.19e-05 + }, + { + "word": "alert", + "freq": 2.14e-05 + }, + { + "word": "arena", + "freq": 2.14e-05 + }, + { + "word": "billy", + "freq": 2.14e-05 + }, + { + "word": "brave", + "freq": 2.14e-05 + }, + { + "word": "drops", + "freq": 2.14e-05 + }, + { + "word": "fleet", + "freq": 2.14e-05 + }, + { + "word": "robin", + "freq": 2.14e-05 + }, + { + "word": "shake", + "freq": 2.14e-05 + }, + { + "word": "shore", + "freq": 2.14e-05 + }, + { + "word": "stats", + "freq": 2.14e-05 + }, + { + "word": "blast", + "freq": 2.09e-05 + }, + { + "word": "pound", + "freq": 2.09e-05 + }, + { + "word": "punch", + "freq": 2.09e-05 + }, + { + "word": "walks", + "freq": 2.09e-05 + }, + { + "word": "fewer", + "freq": 2.04e-05 + }, + { + "word": "grave", + "freq": 2.04e-05 + }, + { + "word": "mouse", + "freq": 2.04e-05 + }, + { + "word": "oscar", + "freq": 2.04e-05 + }, + { + "word": "piano", + "freq": 2.04e-05 + }, + { + "word": "saudi", + "freq": 2.04e-05 + }, + { + "word": "slave", + "freq": 2.04e-05 + }, + { + "word": "craft", + "freq": 2e-05 + }, + { + "word": "devil", + "freq": 2e-05 + }, + { + "word": "hurts", + "freq": 2e-05 + }, + { + "word": "rated", + "freq": 2e-05 + }, + { + "word": "ruled", + "freq": 2e-05 + }, + { + "word": "sauce", + "freq": 2e-05 + }, + { + "word": "slide", + "freq": 2e-05 + }, + { + "word": "tiger", + "freq": 2e-05 + }, + { + "word": "alien", + "freq": 1.95e-05 + }, + { + "word": "beast", + "freq": 1.95e-05 + }, + { + "word": "candy", + "freq": 1.95e-05 + }, + { + "word": "cited", + "freq": 1.95e-05 + }, + { + "word": "dated", + "freq": 1.95e-05 + }, + { + "word": "delhi", + "freq": 1.95e-05 + }, + { + "word": "fifty", + "freq": 1.95e-05 + }, + { + "word": "relax", + "freq": 1.95e-05 + }, + { + "word": "acted", + "freq": 1.91e-05 + }, + { + "word": "alarm", + "freq": 1.91e-05 + }, + { + "word": "globe", + "freq": 1.91e-05 + }, + { + "word": "hoped", + "freq": 1.91e-05 + }, + { + "word": "larry", + "freq": 1.91e-05 + }, + { + "word": "moore", + "freq": 1.91e-05 + }, + { + "word": "spare", + "freq": 1.91e-05 + }, + { + "word": "opera", + "freq": 1.86e-05 + }, + { + "word": "quest", + "freq": 1.86e-05 + }, + { + "word": "sized", + "freq": 1.86e-05 + }, + { + "word": "tokyo", + "freq": 1.86e-05 + }, + { + "word": "alice", + "freq": 1.82e-05 + }, + { + "word": "anime", + "freq": 1.82e-05 + }, + { + "word": "barry", + "freq": 1.82e-05 + }, + { + "word": "fails", + "freq": 1.82e-05 + }, + { + "word": "jerry", + "freq": 1.82e-05 + }, + { + "word": "lover", + "freq": 1.82e-05 + }, + { + "word": "panic", + "freq": 1.82e-05 + }, + { + "word": "scope", + "freq": 1.82e-05 + }, + { + "word": "aimed", + "freq": 1.78e-05 + }, + { + "word": "alpha", + "freq": 1.78e-05 + }, + { + "word": "brick", + "freq": 1.78e-05 + }, + { + "word": "danny", + "freq": 1.78e-05 + }, + { + "word": "mercy", + "freq": 1.78e-05 + }, + { + "word": "outer", + "freq": 1.78e-05 + }, + { + "word": "screw", + "freq": 1.78e-05 + }, + { + "word": "venue", + "freq": 1.78e-05 + }, + { + "word": "wages", + "freq": 1.78e-05 + }, + { + "word": "burns", + "freq": 1.74e-05 + }, + { + "word": "habit", + "freq": 1.74e-05 + }, + { + "word": "laura", + "freq": 1.74e-05 + }, + { + "word": "naval", + "freq": 1.74e-05 + }, + { + "word": "noble", + "freq": 1.74e-05 + }, + { + "word": "picks", + "freq": 1.74e-05 + }, + { + "word": "pussy", + "freq": 1.74e-05 + }, + { + "word": "robot", + "freq": 1.74e-05 + }, + { + "word": "susan", + "freq": 1.74e-05 + }, + { + "word": "terry", + "freq": 1.74e-05 + }, + { + "word": "toxic", + "freq": 1.74e-05 + }, + { + "word": "wider", + "freq": 1.74e-05 + }, + { + "word": "wound", + "freq": 1.74e-05 + }, + { + "word": "aaron", + "freq": 1.7e-05 + }, + { + "word": "asset", + "freq": 1.7e-05 + }, + { + "word": "baker", + "freq": 1.7e-05 + }, + { + "word": "brush", + "freq": 1.7e-05 + }, + { + "word": "essay", + "freq": 1.7e-05 + }, + { + "word": "jacob", + "freq": 1.7e-05 + }, + { + "word": "maker", + "freq": 1.7e-05 + }, + { + "word": "mario", + "freq": 1.7e-05 + }, + { + "word": "ranks", + "freq": 1.7e-05 + }, + { + "word": "snake", + "freq": 1.7e-05 + }, + { + "word": "tasks", + "freq": 1.7e-05 + }, + { + "word": "ultra", + "freq": 1.7e-05 + }, + { + "word": "usage", + "freq": 1.7e-05 + }, + { + "word": "bobby", + "freq": 1.66e-05 + }, + { + "word": "canal", + "freq": 1.66e-05 + }, + { + "word": "climb", + "freq": 1.66e-05 + }, + { + "word": "fever", + "freq": 1.66e-05 + }, + { + "word": "fluid", + "freq": 1.66e-05 + }, + { + "word": "loads", + "freq": 1.66e-05 + }, + { + "word": "nasty", + "freq": 1.66e-05 + }, + { + "word": "perry", + "freq": 1.66e-05 + }, + { + "word": "twist", + "freq": 1.66e-05 + }, + { + "word": "unity", + "freq": 1.66e-05 + }, + { + "word": "blown", + "freq": 1.62e-05 + }, + { + "word": "fence", + "freq": 1.62e-05 + }, + { + "word": "sorts", + "freq": 1.62e-05 + }, + { + "word": "stole", + "freq": 1.62e-05 + }, + { + "word": "swiss", + "freq": 1.62e-05 + }, + { + "word": "bored", + "freq": 1.58e-05 + }, + { + "word": "dealt", + "freq": 1.58e-05 + }, + { + "word": "flesh", + "freq": 1.58e-05 + }, + { + "word": "forty", + "freq": 1.58e-05 + }, + { + "word": "hated", + "freq": 1.58e-05 + }, + { + "word": "laser", + "freq": 1.58e-05 + }, + { + "word": "loyal", + "freq": 1.58e-05 + }, + { + "word": "patch", + "freq": 1.58e-05 + }, + { + "word": "radar", + "freq": 1.58e-05 + }, + { + "word": "villa", + "freq": 1.58e-05 + }, + { + "word": "adopt", + "freq": 1.55e-05 + }, + { + "word": "blade", + "freq": 1.55e-05 + }, + { + "word": "cargo", + "freq": 1.55e-05 + }, + { + "word": "cried", + "freq": 1.55e-05 + }, + { + "word": "helen", + "freq": 1.55e-05 + }, + { + "word": "humor", + "freq": 1.55e-05 + }, + { + "word": "marie", + "freq": 1.55e-05 + }, + { + "word": "meals", + "freq": 1.55e-05 + }, + { + "word": "nerve", + "freq": 1.55e-05 + }, + { + "word": "sandy", + "freq": 1.55e-05 + }, + { + "word": "sheep", + "freq": 1.55e-05 + }, + { + "word": "trace", + "freq": 1.55e-05 + }, + { + "word": "shell", + "freq": 1.51e-05 + }, + { + "word": "chill", + "freq": 1.51e-05 + }, + { + "word": "craig", + "freq": 1.51e-05 + }, + { + "word": "grain", + "freq": 1.51e-05 + }, + { + "word": "grows", + "freq": 1.51e-05 + }, + { + "word": "liver", + "freq": 1.51e-05 + }, + { + "word": "metro", + "freq": 1.51e-05 + }, + { + "word": "rifle", + "freq": 1.51e-05 + }, + { + "word": "rival", + "freq": 1.51e-05 + }, + { + "word": "sadly", + "freq": 1.51e-05 + }, + { + "word": "sizes", + "freq": 1.51e-05 + }, + { + "word": "slept", + "freq": 1.51e-05 + }, + { + "word": "spray", + "freq": 1.51e-05 + }, + { + "word": "suite", + "freq": 1.51e-05 + }, + { + "word": "verse", + "freq": 1.51e-05 + }, + { + "word": "acres", + "freq": 1.48e-05 + }, + { + "word": "bless", + "freq": 1.48e-05 + }, + { + "word": "chuck", + "freq": 1.48e-05 + }, + { + "word": "couch", + "freq": 1.48e-05 + }, + { + "word": "crush", + "freq": 1.48e-05 + }, + { + "word": "fears", + "freq": 1.48e-05 + }, + { + "word": "genre", + "freq": 1.48e-05 + }, + { + "word": "keith", + "freq": 1.48e-05 + }, + { + "word": "lease", + "freq": 1.48e-05 + }, + { + "word": "shine", + "freq": 1.48e-05 + }, + { + "word": "tweet", + "freq": 1.48e-05 + }, + { + "word": "tyler", + "freq": 1.48e-05 + }, + { + "word": "blake", + "freq": 1.45e-05 + }, + { + "word": "inter", + "freq": 1.45e-05 + }, + { + "word": "maine", + "freq": 1.45e-05 + }, + { + "word": "react", + "freq": 1.45e-05 + }, + { + "word": "rocky", + "freq": 1.45e-05 + }, + { + "word": "shade", + "freq": 1.45e-05 + }, + { + "word": "tommy", + "freq": 1.45e-05 + }, + { + "word": "vocal", + "freq": 1.45e-05 + }, + { + "word": "yield", + "freq": 1.45e-05 + }, + { + "word": "bacon", + "freq": 1.41e-05 + }, + { + "word": "burst", + "freq": 1.41e-05 + }, + { + "word": "costa", + "freq": 1.41e-05 + }, + { + "word": "hates", + "freq": 1.41e-05 + }, + { + "word": "salad", + "freq": 1.41e-05 + }, + { + "word": "sends", + "freq": 1.41e-05 + }, + { + "word": "stake", + "freq": 1.41e-05 + }, + { + "word": "swift", + "freq": 1.41e-05 + }, + { + "word": "welsh", + "freq": 1.41e-05 + }, + { + "word": "awake", + "freq": 1.38e-05 + }, + { + "word": "blank", + "freq": 1.38e-05 + }, + { + "word": "curve", + "freq": 1.38e-05 + }, + { + "word": "eddie", + "freq": 1.38e-05 + }, + { + "word": "emily", + "freq": 1.38e-05 + }, + { + "word": "flows", + "freq": 1.38e-05 + }, + { + "word": "harsh", + "freq": 1.38e-05 + }, + { + "word": "hurry", + "freq": 1.38e-05 + }, + { + "word": "mason", + "freq": 1.38e-05 + }, + { + "word": "nancy", + "freq": 1.38e-05 + }, + { + "word": "organ", + "freq": 1.38e-05 + }, + { + "word": "pearl", + "freq": 1.38e-05 + }, + { + "word": "sweat", + "freq": 1.38e-05 + }, + { + "word": "alike", + "freq": 1.35e-05 + }, + { + "word": "arrow", + "freq": 1.35e-05 + }, + { + "word": "cabin", + "freq": 1.35e-05 + }, + { + "word": "eagle", + "freq": 1.35e-05 + }, + { + "word": "eaten", + "freq": 1.35e-05 + }, + { + "word": "guilt", + "freq": 1.35e-05 + }, + { + "word": "haven", + "freq": 1.35e-05 + }, + { + "word": "kenya", + "freq": 1.35e-05 + }, + { + "word": "putin", + "freq": 1.35e-05 + }, + { + "word": "seeks", + "freq": 1.35e-05 + }, + { + "word": "theft", + "freq": 1.35e-05 + }, + { + "word": "valve", + "freq": 1.35e-05 + }, + { + "word": "charm", + "freq": 1.32e-05 + }, + { + "word": "cruel", + "freq": 1.32e-05 + }, + { + "word": "delta", + "freq": 1.32e-05 + }, + { + "word": "julia", + "freq": 1.32e-05 + }, + { + "word": "ridge", + "freq": 1.32e-05 + }, + { + "word": "tends", + "freq": 1.32e-05 + }, + { + "word": "tribe", + "freq": 1.32e-05 + }, + { + "word": "canon", + "freq": 1.29e-05 + }, + { + "word": "cared", + "freq": 1.29e-05 + }, + { + "word": "loses", + "freq": 1.29e-05 + }, + { + "word": "stamp", + "freq": 1.29e-05 + }, + { + "word": "voter", + "freq": 1.29e-05 + }, + { + "word": "witch", + "freq": 1.29e-05 + }, + { + "word": "array", + "freq": 1.26e-05 + }, + { + "word": "belly", + "freq": 1.26e-05 + }, + { + "word": "booth", + "freq": 1.26e-05 + }, + { + "word": "cliff", + "freq": 1.26e-05 + }, + { + "word": "derby", + "freq": 1.26e-05 + }, + { + "word": "draws", + "freq": 1.26e-05 + }, + { + "word": "fatal", + "freq": 1.26e-05 + }, + { + "word": "lemon", + "freq": 1.26e-05 + }, + { + "word": "outta", + "freq": 1.26e-05 + }, + { + "word": "ralph", + "freq": 1.26e-05 + }, + { + "word": "shark", + "freq": 1.26e-05 + }, + { + "word": "teams", + "freq": 1.23e-05 + }, + { + "word": "colin", + "freq": 1.23e-05 + }, + { + "word": "dairy", + "freq": 1.23e-05 + }, + { + "word": "diary", + "freq": 1.23e-05 + }, + { + "word": "drill", + "freq": 1.23e-05 + }, + { + "word": "flies", + "freq": 1.23e-05 + }, + { + "word": "julie", + "freq": 1.23e-05 + }, + { + "word": "karen", + "freq": 1.23e-05 + }, + { + "word": "meter", + "freq": 1.23e-05 + }, + { + "word": "olive", + "freq": 1.23e-05 + }, + { + "word": "safer", + "freq": 1.23e-05 + }, + { + "word": "sells", + "freq": 1.23e-05 + }, + { + "word": "setup", + "freq": 1.23e-05 + }, + { + "word": "skull", + "freq": 1.23e-05 + }, + { + "word": "smash", + "freq": 1.23e-05 + }, + { + "word": "basin", + "freq": 1.2e-05 + }, + { + "word": "breed", + "freq": 1.2e-05 + }, + { + "word": "bride", + "freq": 1.2e-05 + }, + { + "word": "chick", + "freq": 1.2e-05 + }, + { + "word": "dubai", + "freq": 1.2e-05 + }, + { + "word": "fairy", + "freq": 1.2e-05 + }, + { + "word": "freak", + "freq": 1.2e-05 + }, + { + "word": "grief", + "freq": 1.2e-05 + }, + { + "word": "lined", + "freq": 1.2e-05 + }, + { + "word": "lodge", + "freq": 1.2e-05 + }, + { + "word": "merit", + "freq": 1.2e-05 + }, + { + "word": "micro", + "freq": 1.2e-05 + }, + { + "word": "raped", + "freq": 1.2e-05 + }, + { + "word": "rebel", + "freq": 1.2e-05 + }, + { + "word": "tooth", + "freq": 1.2e-05 + }, + { + "word": "viral", + "freq": 1.2e-05 + }, + { + "word": "wears", + "freq": 1.2e-05 + }, + { + "word": "widow", + "freq": 1.2e-05 + }, + { + "word": "wives", + "freq": 1.2e-05 + }, + { + "word": "beard", + "freq": 1.17e-05 + }, + { + "word": "curse", + "freq": 1.17e-05 + }, + { + "word": "drain", + "freq": 1.17e-05 + }, + { + "word": "flame", + "freq": 1.17e-05 + }, + { + "word": "intel", + "freq": 1.17e-05 + }, + { + "word": "kicks", + "freq": 1.17e-05 + }, + { + "word": "ninth", + "freq": 1.17e-05 + }, + { + "word": "penny", + "freq": 1.17e-05 + }, + { + "word": "petty", + "freq": 1.17e-05 + }, + { + "word": "reign", + "freq": 1.17e-05 + }, + { + "word": "rises", + "freq": 1.17e-05 + }, + { + "word": "saves", + "freq": 1.17e-05 + }, + { + "word": "scare", + "freq": 1.17e-05 + }, + { + "word": "sunny", + "freq": 1.17e-05 + }, + { + "word": "cheat", + "freq": 1.15e-05 + }, + { + "word": "cheer", + "freq": 1.15e-05 + }, + { + "word": "chile", + "freq": 1.15e-05 + }, + { + "word": "demon", + "freq": 1.15e-05 + }, + { + "word": "elder", + "freq": 1.15e-05 + }, + { + "word": "fiber", + "freq": 1.15e-05 + }, + { + "word": "fried", + "freq": 1.15e-05 + }, + { + "word": "heels", + "freq": 1.15e-05 + }, + { + "word": "linda", + "freq": 1.15e-05 + }, + { + "word": "pulse", + "freq": 1.15e-05 + }, + { + "word": "realm", + "freq": 1.15e-05 + }, + { + "word": "shout", + "freq": 1.15e-05 + }, + { + "word": "weeks", + "freq": 1.12e-05 + }, + { + "word": "alter", + "freq": 1.12e-05 + }, + { + "word": "brass", + "freq": 1.12e-05 + }, + { + "word": "crops", + "freq": 1.12e-05 + }, + { + "word": "dylan", + "freq": 1.12e-05 + }, + { + "word": "ellen", + "freq": 1.12e-05 + }, + { + "word": "graph", + "freq": 1.12e-05 + }, + { + "word": "milan", + "freq": 1.12e-05 + }, + { + "word": "penis", + "freq": 1.12e-05 + }, + { + "word": "pills", + "freq": 1.12e-05 + }, + { + "word": "shook", + "freq": 1.12e-05 + }, + { + "word": "stack", + "freq": 1.12e-05 + }, + { + "word": "aging", + "freq": 1.1e-05 + }, + { + "word": "audit", + "freq": 1.1e-05 + }, + { + "word": "blows", + "freq": 1.1e-05 + }, + { + "word": "dried", + "freq": 1.1e-05 + }, + { + "word": "jesse", + "freq": 1.1e-05 + }, + { + "word": "joins", + "freq": 1.1e-05 + }, + { + "word": "logan", + "freq": 1.1e-05 + }, + { + "word": "nails", + "freq": 1.1e-05 + }, + { + "word": "singh", + "freq": 1.1e-05 + }, + { + "word": "spite", + "freq": 1.1e-05 + }, + { + "word": "kings", + "freq": 1.07e-05 + }, + { + "word": "burnt", + "freq": 1.07e-05 + }, + { + "word": "buyer", + "freq": 1.07e-05 + }, + { + "word": "cease", + "freq": 1.07e-05 + }, + { + "word": "cloth", + "freq": 1.07e-05 + }, + { + "word": "eager", + "freq": 1.07e-05 + }, + { + "word": "elect", + "freq": 1.07e-05 + }, + { + "word": "kenny", + "freq": 1.07e-05 + }, + { + "word": "lloyd", + "freq": 1.07e-05 + }, + { + "word": "lobby", + "freq": 1.07e-05 + }, + { + "word": "orbit", + "freq": 1.07e-05 + }, + { + "word": "ranch", + "freq": 1.07e-05 + }, + { + "word": "socks", + "freq": 1.07e-05 + }, + { + "word": "trunk", + "freq": 1.07e-05 + }, + { + "word": "badge", + "freq": 1.05e-05 + }, + { + "word": "buses", + "freq": 1.05e-05 + }, + { + "word": "carol", + "freq": 1.05e-05 + }, + { + "word": "diana", + "freq": 1.05e-05 + }, + { + "word": "ferry", + "freq": 1.05e-05 + }, + { + "word": "gauge", + "freq": 1.05e-05 + }, + { + "word": "peers", + "freq": 1.05e-05 + }, + { + "word": "rider", + "freq": 1.05e-05 + }, + { + "word": "ruins", + "freq": 1.05e-05 + }, + { + "word": "shelf", + "freq": 1.05e-05 + }, + { + "word": "width", + "freq": 1.05e-05 + }, + { + "word": "derek", + "freq": 1.02e-05 + }, + { + "word": "leeds", + "freq": 1.02e-05 + }, + { + "word": "legit", + "freq": 1.02e-05 + }, + { + "word": "loser", + "freq": 1.02e-05 + }, + { + "word": "pulls", + "freq": 1.02e-05 + }, + { + "word": "sheer", + "freq": 1.02e-05 + }, + { + "word": "stark", + "freq": 1.02e-05 + }, + { + "word": "thumb", + "freq": 1.02e-05 + }, + { + "word": "urged", + "freq": 1.02e-05 + }, + { + "word": "wheat", + "freq": 1.02e-05 + }, + { + "word": "wrist", + "freq": 1.02e-05 + }, + { + "word": "acute", + "freq": 1e-05 + }, + { + "word": "blair", + "freq": 1e-05 + }, + { + "word": "civic", + "freq": 1e-05 + }, + { + "word": "clerk", + "freq": 1e-05 + }, + { + "word": "crude", + "freq": 1e-05 + }, + { + "word": "drone", + "freq": 1e-05 + }, + { + "word": "exams", + "freq": 1e-05 + }, + { + "word": "flour", + "freq": 1e-05 + }, + { + "word": "hindu", + "freq": 1e-05 + }, + { + "word": "indie", + "freq": 1e-05 + }, + { + "word": "minus", + "freq": 1e-05 + }, + { + "word": "pause", + "freq": 1e-05 + }, + { + "word": "puppy", + "freq": 1e-05 + }, + { + "word": "slice", + "freq": 1e-05 + }, + { + "word": "spurs", + "freq": 1e-05 + }, + { + "word": "vinyl", + "freq": 1e-05 + }, + { + "word": "debts", + "freq": 9.77e-06 + }, + { + "word": "linux", + "freq": 9.77e-06 + }, + { + "word": "probe", + "freq": 9.77e-06 + }, + { + "word": "remix", + "freq": 9.77e-06 + }, + { + "word": "sneak", + "freq": 9.77e-06 + }, + { + "word": "spark", + "freq": 9.77e-06 + }, + { + "word": "steep", + "freq": 9.77e-06 + }, + { + "word": "straw", + "freq": 9.77e-06 + }, + { + "word": "weigh", + "freq": 9.77e-06 + }, + { + "word": "adapt", + "freq": 9.55e-06 + }, + { + "word": "bryan", + "freq": 9.55e-06 + }, + { + "word": "cohen", + "freq": 9.55e-06 + }, + { + "word": "cyber", + "freq": 9.55e-06 + }, + { + "word": "dense", + "freq": 9.55e-06 + }, + { + "word": "kitty", + "freq": 9.55e-06 + }, + { + "word": "moses", + "freq": 9.55e-06 + }, + { + "word": "whale", + "freq": 9.55e-06 + }, + { + "word": "amber", + "freq": 9.33e-06 + }, + { + "word": "ankle", + "freq": 9.33e-06 + }, + { + "word": "armor", + "freq": 9.33e-06 + }, + { + "word": "berry", + "freq": 9.33e-06 + }, + { + "word": "brady", + "freq": 9.33e-06 + }, + { + "word": "clash", + "freq": 9.33e-06 + }, + { + "word": "glenn", + "freq": 9.33e-06 + }, + { + "word": "grasp", + "freq": 9.33e-06 + }, + { + "word": "handy", + "freq": 9.33e-06 + }, + { + "word": "lungs", + "freq": 9.33e-06 + }, + { + "word": "manga", + "freq": 9.33e-06 + }, + { + "word": "poker", + "freq": 9.33e-06 + }, + { + "word": "sally", + "freq": 9.33e-06 + }, + { + "word": "scout", + "freq": 9.33e-06 + }, + { + "word": "steak", + "freq": 9.33e-06 + }, + { + "word": "sweep", + "freq": 9.33e-06 + }, + { + "word": "tumor", + "freq": 9.33e-06 + }, + { + "word": "girls", + "freq": 9.12e-06 + }, + { + "word": "casey", + "freq": 9.12e-06 + }, + { + "word": "cheek", + "freq": 9.12e-06 + }, + { + "word": "curry", + "freq": 9.12e-06 + }, + { + "word": "drake", + "freq": 9.12e-06 + }, + { + "word": "janet", + "freq": 9.12e-06 + }, + { + "word": "katie", + "freq": 9.12e-06 + }, + { + "word": "polar", + "freq": 9.12e-06 + }, + { + "word": "skirt", + "freq": 9.12e-06 + }, + { + "word": "spike", + "freq": 9.12e-06 + }, + { + "word": "toast", + "freq": 9.12e-06 + }, + { + "word": "waist", + "freq": 9.12e-06 + }, + { + "word": "wreck", + "freq": 9.12e-06 + }, + { + "word": "blend", + "freq": 8.91e-06 + }, + { + "word": "brake", + "freq": 8.91e-06 + }, + { + "word": "cough", + "freq": 8.91e-06 + }, + { + "word": "czech", + "freq": 8.91e-06 + }, + { + "word": "depot", + "freq": 8.91e-06 + }, + { + "word": "drank", + "freq": 8.91e-06 + }, + { + "word": "ellis", + "freq": 8.91e-06 + }, + { + "word": "feast", + "freq": 8.91e-06 + } + ], + "6": [ + { + "word": "people", + "freq": 0.00178 + }, + { + "word": "should", + "freq": 0.000977 + }, + { + "word": "really", + "freq": 0.000933 + }, + { + "word": "before", + "freq": 0.000851 + }, + { + "word": "around", + "freq": 0.000589 + }, + { + "word": "better", + "freq": 0.000575 + }, + { + "word": "little", + "freq": 0.000562 + }, + { + "word": "during", + "freq": 0.000525 + }, + { + "word": "school", + "freq": 0.000513 + }, + { + "word": "family", + "freq": 0.000457 + }, + { + "word": "please", + "freq": 0.000457 + }, + { + "word": "second", + "freq": 0.000427 + }, + { + "word": "number", + "freq": 0.000417 + }, + { + "word": "called", + "freq": 0.000389 + }, + { + "word": "having", + "freq": 0.000389 + }, + { + "word": "public", + "freq": 0.000372 + }, + { + "word": "system", + "freq": 0.000363 + }, + { + "word": "person", + "freq": 0.000355 + }, + { + "word": "enough", + "freq": 0.000347 + }, + { + "word": "making", + "freq": 0.000347 + }, + { + "word": "though", + "freq": 0.000316 + }, + { + "word": "season", + "freq": 0.000302 + }, + { + "word": "trying", + "freq": 0.000295 + }, + { + "word": "united", + "freq": 0.000295 + }, + { + "word": "course", + "freq": 0.000275 + }, + { + "word": "health", + "freq": 0.000275 + }, + { + "word": "within", + "freq": 0.000275 + }, + { + "word": "social", + "freq": 0.000263 + }, + { + "word": "single", + "freq": 0.000257 + }, + { + "word": "become", + "freq": 0.000251 + }, + { + "word": "coming", + "freq": 0.000251 + }, + { + "word": "office", + "freq": 0.000251 + }, + { + "word": "almost", + "freq": 0.000245 + }, + { + "word": "taking", + "freq": 0.000245 + }, + { + "word": "anyone", + "freq": 0.00024 + }, + { + "word": "matter", + "freq": 0.00024 + }, + { + "word": "pretty", + "freq": 0.00024 + }, + { + "word": "friend", + "freq": 0.000234 + }, + { + "word": "saying", + "freq": 0.000234 + }, + { + "word": "wanted", + "freq": 0.000229 + }, + { + "word": "series", + "freq": 0.000224 + }, + { + "word": "either", + "freq": 0.000214 + }, + { + "word": "future", + "freq": 0.000214 + }, + { + "word": "police", + "freq": 0.000214 + }, + { + "word": "rather", + "freq": 0.000209 + }, + { + "word": "reason", + "freq": 0.000209 + }, + { + "word": "report", + "freq": 0.000209 + }, + { + "word": "myself", + "freq": 0.000204 + }, + { + "word": "living", + "freq": 0.0002 + }, + { + "word": "behind", + "freq": 0.000195 + }, + { + "word": "market", + "freq": 0.000195 + }, + { + "word": "former", + "freq": 0.000191 + }, + { + "word": "street", + "freq": 0.000191 + }, + { + "word": "london", + "freq": 0.000186 + }, + { + "word": "chance", + "freq": 0.000182 + }, + { + "word": "father", + "freq": 0.000182 + }, + { + "word": "across", + "freq": 0.000178 + }, + { + "word": "action", + "freq": 0.000178 + }, + { + "word": "moment", + "freq": 0.000174 + }, + { + "word": "mother", + "freq": 0.000174 + }, + { + "word": "energy", + "freq": 0.00017 + }, + { + "word": "played", + "freq": 0.00017 + }, + { + "word": "summer", + "freq": 0.00017 + }, + { + "word": "killed", + "freq": 0.000166 + }, + { + "word": "strong", + "freq": 0.000166 + }, + { + "word": "period", + "freq": 0.000162 + }, + { + "word": "record", + "freq": 0.000162 + }, + { + "word": "common", + "freq": 0.000158 + }, + { + "word": "likely", + "freq": 0.000158 + }, + { + "word": "center", + "freq": 0.000155 + }, + { + "word": "county", + "freq": 0.000155 + }, + { + "word": "couple", + "freq": 0.000155 + }, + { + "word": "happen", + "freq": 0.000155 + }, + { + "word": "inside", + "freq": 0.000155 + }, + { + "word": "online", + "freq": 0.000155 + }, + { + "word": "player", + "freq": 0.000155 + }, + { + "word": "return", + "freq": 0.000155 + }, + { + "word": "higher", + "freq": 0.000151 + }, + { + "word": "member", + "freq": 0.000151 + }, + { + "word": "middle", + "freq": 0.000151 + }, + { + "word": "needed", + "freq": 0.000151 + }, + { + "word": "result", + "freq": 0.000151 + }, + { + "word": "answer", + "freq": 0.000148 + }, + { + "word": "design", + "freq": 0.000148 + }, + { + "word": "policy", + "freq": 0.000148 + }, + { + "word": "church", + "freq": 0.000145 + }, + { + "word": "longer", + "freq": 0.000145 + }, + { + "word": "worked", + "freq": 0.000145 + }, + { + "word": "became", + "freq": 0.000141 + }, + { + "word": "giving", + "freq": 0.000141 + }, + { + "word": "ground", + "freq": 0.000141 + }, + { + "word": "source", + "freq": 0.000141 + }, + { + "word": "follow", + "freq": 0.000138 + }, + { + "word": "amount", + "freq": 0.000135 + }, + { + "word": "league", + "freq": 0.000135 + }, + { + "word": "review", + "freq": 0.000132 + }, + { + "word": "cannot", + "freq": 0.000129 + }, + { + "word": "looked", + "freq": 0.000129 + }, + { + "word": "august", + "freq": 0.000126 + }, + { + "word": "itself", + "freq": 0.000126 + }, + { + "word": "attack", + "freq": 0.000123 + }, + { + "word": "entire", + "freq": 0.000123 + }, + { + "word": "french", + "freq": 0.000123 + }, + { + "word": "turned", + "freq": 0.000123 + }, + { + "word": "choice", + "freq": 0.00012 + }, + { + "word": "simple", + "freq": 0.00012 + }, + { + "word": "simply", + "freq": 0.00012 + }, + { + "word": "career", + "freq": 0.000117 + }, + { + "word": "figure", + "freq": 0.000117 + }, + { + "word": "modern", + "freq": 0.000117 + }, + { + "word": "forget", + "freq": 0.000115 + }, + { + "word": "listen", + "freq": 0.000115 + }, + { + "word": "access", + "freq": 0.000112 + }, + { + "word": "europe", + "freq": 0.00011 + }, + { + "word": "george", + "freq": 0.00011 + }, + { + "word": "recent", + "freq": 0.00011 + }, + { + "word": "seeing", + "freq": 0.00011 + }, + { + "word": "growth", + "freq": 0.000107 + }, + { + "word": "charge", + "freq": 0.000105 + }, + { + "word": "create", + "freq": 0.000105 + }, + { + "word": "effect", + "freq": 0.000105 + }, + { + "word": "except", + "freq": 0.000105 + }, + { + "word": "moving", + "freq": 0.000105 + }, + { + "word": "weight", + "freq": 0.000105 + }, + { + "word": "double", + "freq": 0.000102 + }, + { + "word": "expect", + "freq": 0.000102 + }, + { + "word": "island", + "freq": 0.000102 + }, + { + "word": "normal", + "freq": 0.000102 + }, + { + "word": "credit", + "freq": 0.0001 + }, + { + "word": "female", + "freq": 0.0001 + }, + { + "word": "nearly", + "freq": 0.0001 + }, + { + "word": "region", + "freq": 0.0001 + }, + { + "word": "travel", + "freq": 0.0001 + }, + { + "word": "beyond", + "freq": 9.55e-05 + }, + { + "word": "minute", + "freq": 9.55e-05 + }, + { + "word": "nature", + "freq": 9.55e-05 + }, + { + "word": "unless", + "freq": 9.55e-05 + }, + { + "word": "canada", + "freq": 9.33e-05 + }, + { + "word": "income", + "freq": 9.33e-05 + }, + { + "word": "posted", + "freq": 9.33e-05 + }, + { + "word": "safety", + "freq": 9.33e-05 + }, + { + "word": "asking", + "freq": 9.12e-05 + }, + { + "word": "friday", + "freq": 9.12e-05 + }, + { + "word": "search", + "freq": 9.12e-05 + }, + { + "word": "author", + "freq": 8.91e-05 + }, + { + "word": "centre", + "freq": 8.91e-05 + }, + { + "word": "german", + "freq": 8.91e-05 + }, + { + "word": "global", + "freq": 8.91e-05 + }, + { + "word": "leader", + "freq": 8.91e-05 + }, + { + "word": "letter", + "freq": 8.91e-05 + }, + { + "word": "nobody", + "freq": 8.91e-05 + }, + { + "word": "sister", + "freq": 8.91e-05 + }, + { + "word": "annual", + "freq": 8.71e-05 + }, + { + "word": "battle", + "freq": 8.71e-05 + }, + { + "word": "degree", + "freq": 8.71e-05 + }, + { + "word": "france", + "freq": 8.71e-05 + }, + { + "word": "stupid", + "freq": 8.71e-05 + }, + { + "word": "active", + "freq": 8.51e-05 + }, + { + "word": "cancer", + "freq": 8.51e-05 + }, + { + "word": "master", + "freq": 8.51e-05 + }, + { + "word": "russia", + "freq": 8.51e-05 + }, + { + "word": "wonder", + "freq": 8.51e-05 + }, + { + "word": "africa", + "freq": 8.32e-05 + }, + { + "word": "effort", + "freq": 8.32e-05 + }, + { + "word": "impact", + "freq": 8.32e-05 + }, + { + "word": "latest", + "freq": 8.32e-05 + }, + { + "word": "passed", + "freq": 8.32e-05 + }, + { + "word": "secret", + "freq": 8.32e-05 + }, + { + "word": "senior", + "freq": 8.32e-05 + }, + { + "word": "spring", + "freq": 8.32e-05 + }, + { + "word": "sunday", + "freq": 8.32e-05 + }, + { + "word": "anyway", + "freq": 8.13e-05 + }, + { + "word": "bought", + "freq": 8.13e-05 + }, + { + "word": "choose", + "freq": 8.13e-05 + }, + { + "word": "direct", + "freq": 8.13e-05 + }, + { + "word": "easily", + "freq": 8.13e-05 + }, + { + "word": "finish", + "freq": 8.13e-05 + }, + { + "word": "indian", + "freq": 8.13e-05 + }, + { + "word": "caught", + "freq": 7.94e-05 + }, + { + "word": "closed", + "freq": 7.94e-05 + }, + { + "word": "damage", + "freq": 7.94e-05 + }, + { + "word": "doctor", + "freq": 7.94e-05 + }, + { + "word": "notice", + "freq": 7.94e-05 + }, + { + "word": "highly", + "freq": 7.76e-05 + }, + { + "word": "winter", + "freq": 7.76e-05 + }, + { + "word": "advice", + "freq": 7.59e-05 + }, + { + "word": "broken", + "freq": 7.59e-05 + }, + { + "word": "caused", + "freq": 7.59e-05 + }, + { + "word": "helped", + "freq": 7.59e-05 + }, + { + "word": "nation", + "freq": 7.59e-05 + }, + { + "word": "theory", + "freq": 7.59e-05 + }, + { + "word": "agency", + "freq": 7.41e-05 + }, + { + "word": "camera", + "freq": 7.41e-05 + }, + { + "word": "status", + "freq": 7.41e-05 + }, + { + "word": "claims", + "freq": 7.24e-05 + }, + { + "word": "coffee", + "freq": 7.24e-05 + }, + { + "word": "flight", + "freq": 7.24e-05 + }, + { + "word": "google", + "freq": 7.24e-05 + }, + { + "word": "murder", + "freq": 7.24e-05 + }, + { + "word": "showed", + "freq": 7.24e-05 + }, + { + "word": "accept", + "freq": 7.08e-05 + }, + { + "word": "actual", + "freq": 7.08e-05 + }, + { + "word": "appear", + "freq": 7.08e-05 + }, + { + "word": "eating", + "freq": 7.08e-05 + }, + { + "word": "losing", + "freq": 7.08e-05 + }, + { + "word": "mobile", + "freq": 7.08e-05 + }, + { + "word": "opened", + "freq": 7.08e-05 + }, + { + "word": "placed", + "freq": 7.08e-05 + }, + { + "word": "robert", + "freq": 7.08e-05 + }, + { + "word": "screen", + "freq": 7.08e-05 + }, + { + "word": "signed", + "freq": 7.08e-05 + }, + { + "word": "speech", + "freq": 7.08e-05 + }, + { + "word": "agreed", + "freq": 6.92e-05 + }, + { + "word": "bottom", + "freq": 6.92e-05 + }, + { + "word": "cities", + "freq": 6.92e-05 + }, + { + "word": "demand", + "freq": 6.92e-05 + }, + { + "word": "engine", + "freq": 6.92e-05 + }, + { + "word": "famous", + "freq": 6.92e-05 + }, + { + "word": "raised", + "freq": 6.92e-05 + }, + { + "word": "square", + "freq": 6.92e-05 + }, + { + "word": "thomas", + "freq": 6.92e-05 + }, + { + "word": "forced", + "freq": 6.76e-05 + }, + { + "word": "fourth", + "freq": 6.76e-05 + }, + { + "word": "mental", + "freq": 6.76e-05 + }, + { + "word": "missed", + "freq": 6.76e-05 + }, + { + "word": "mostly", + "freq": 6.76e-05 + }, + { + "word": "remain", + "freq": 6.76e-05 + }, + { + "word": "starts", + "freq": 6.76e-05 + }, + { + "word": "acting", + "freq": 6.61e-05 + }, + { + "word": "budget", + "freq": 6.61e-05 + }, + { + "word": "estate", + "freq": 6.61e-05 + }, + { + "word": "failed", + "freq": 6.61e-05 + }, + { + "word": "larger", + "freq": 6.61e-05 + }, + { + "word": "seemed", + "freq": 6.61e-05 + }, + { + "word": "sexual", + "freq": 6.61e-05 + }, + { + "word": "target", + "freq": 6.61e-05 + }, + { + "word": "animal", + "freq": 6.46e-05 + }, + { + "word": "memory", + "freq": 6.46e-05 + }, + { + "word": "served", + "freq": 6.46e-05 + }, + { + "word": "silver", + "freq": 6.46e-05 + }, + { + "word": "spread", + "freq": 6.46e-05 + }, + { + "word": "supply", + "freq": 6.46e-05 + }, + { + "word": "artist", + "freq": 6.31e-05 + }, + { + "word": "method", + "freq": 6.31e-05 + }, + { + "word": "monday", + "freq": 6.31e-05 + }, + { + "word": "option", + "freq": 6.31e-05 + }, + { + "word": "prison", + "freq": 6.31e-05 + }, + { + "word": "senate", + "freq": 6.31e-05 + }, + { + "word": "window", + "freq": 6.31e-05 + }, + { + "word": "winner", + "freq": 6.31e-05 + }, + { + "word": "christ", + "freq": 6.17e-05 + }, + { + "word": "handle", + "freq": 6.17e-05 + }, + { + "word": "indeed", + "freq": 6.17e-05 + }, + { + "word": "spirit", + "freq": 6.17e-05 + }, + { + "word": "decide", + "freq": 6.03e-05 + }, + { + "word": "dinner", + "freq": 6.03e-05 + }, + { + "word": "bridge", + "freq": 5.89e-05 + }, + { + "word": "garden", + "freq": 5.89e-05 + }, + { + "word": "israel", + "freq": 5.89e-05 + }, + { + "word": "length", + "freq": 5.89e-05 + }, + { + "word": "skills", + "freq": 5.89e-05 + }, + { + "word": "easier", + "freq": 5.75e-05 + }, + { + "word": "fellow", + "freq": 5.75e-05 + }, + { + "word": "volume", + "freq": 5.75e-05 + }, + { + "word": "beauty", + "freq": 5.62e-05 + }, + { + "word": "buying", + "freq": 5.62e-05 + }, + { + "word": "corner", + "freq": 5.62e-05 + }, + { + "word": "driver", + "freq": 5.62e-05 + }, + { + "word": "mexico", + "freq": 5.62e-05 + }, + { + "word": "paying", + "freq": 5.62e-05 + }, + { + "word": "unique", + "freq": 5.62e-05 + }, + { + "word": "bigger", + "freq": 5.5e-05 + }, + { + "word": "injury", + "freq": 5.5e-05 + }, + { + "word": "lovely", + "freq": 5.5e-05 + }, + { + "word": "martin", + "freq": 5.5e-05 + }, + { + "word": "offers", + "freq": 5.5e-05 + }, + { + "word": "stated", + "freq": 5.5e-05 + }, + { + "word": "closer", + "freq": 5.37e-05 + }, + { + "word": "honest", + "freq": 5.37e-05 + }, + { + "word": "issued", + "freq": 5.37e-05 + }, + { + "word": "joined", + "freq": 5.37e-05 + }, + { + "word": "reduce", + "freq": 5.37e-05 + }, + { + "word": "stress", + "freq": 5.37e-05 + }, + { + "word": "picked", + "freq": 5.25e-05 + }, + { + "word": "plenty", + "freq": 5.25e-05 + }, + { + "word": "prince", + "freq": 5.25e-05 + }, + { + "word": "proper", + "freq": 5.25e-05 + }, + { + "word": "toward", + "freq": 5.25e-05 + }, + { + "word": "useful", + "freq": 5.25e-05 + }, + { + "word": "valley", + "freq": 5.25e-05 + }, + { + "word": "flying", + "freq": 5.13e-05 + }, + { + "word": "museum", + "freq": 5.13e-05 + }, + { + "word": "remove", + "freq": 5.13e-05 + }, + { + "word": "afraid", + "freq": 5.01e-05 + }, + { + "word": "border", + "freq": 5.01e-05 + }, + { + "word": "dating", + "freq": 5.01e-05 + }, + { + "word": "ensure", + "freq": 5.01e-05 + }, + { + "word": "filled", + "freq": 5.01e-05 + }, + { + "word": "forest", + "freq": 5.01e-05 + }, + { + "word": "labour", + "freq": 5.01e-05 + }, + { + "word": "profit", + "freq": 5.01e-05 + }, + { + "word": "bodies", + "freq": 4.9e-05 + }, + { + "word": "launch", + "freq": 4.9e-05 + }, + { + "word": "listed", + "freq": 4.9e-05 + }, + { + "word": "native", + "freq": 4.9e-05 + }, + { + "word": "survey", + "freq": 4.9e-05 + }, + { + "word": "update", + "freq": 4.9e-05 + }, + { + "word": "writer", + "freq": 4.9e-05 + }, + { + "word": "yellow", + "freq": 4.9e-05 + }, + { + "word": "ending", + "freq": 4.79e-05 + }, + { + "word": "formed", + "freq": 4.79e-05 + }, + { + "word": "planet", + "freq": 4.79e-05 + }, + { + "word": "shared", + "freq": 4.79e-05 + }, + { + "word": "taught", + "freq": 4.79e-05 + }, + { + "word": "adding", + "freq": 4.68e-05 + }, + { + "word": "allows", + "freq": 4.68e-05 + }, + { + "word": "appeal", + "freq": 4.68e-05 + }, + { + "word": "boston", + "freq": 4.68e-05 + }, + { + "word": "device", + "freq": 4.68e-05 + }, + { + "word": "factor", + "freq": 4.68e-05 + }, + { + "word": "golden", + "freq": 4.68e-05 + }, + { + "word": "hoping", + "freq": 4.68e-05 + }, + { + "word": "lawyer", + "freq": 4.68e-05 + }, + { + "word": "muslim", + "freq": 4.68e-05 + }, + { + "word": "pulled", + "freq": 4.68e-05 + }, + { + "word": "values", + "freq": 4.68e-05 + }, + { + "word": "walked", + "freq": 4.68e-05 + }, + { + "word": "jersey", + "freq": 4.57e-05 + }, + { + "word": "sector", + "freq": 4.57e-05 + }, + { + "word": "strike", + "freq": 4.57e-05 + }, + { + "word": "studio", + "freq": 4.57e-05 + }, + { + "word": "taylor", + "freq": 4.47e-05 + }, + { + "word": "twenty", + "freq": 4.47e-05 + }, + { + "word": "debate", + "freq": 4.37e-05 + }, + { + "word": "escape", + "freq": 4.37e-05 + }, + { + "word": "faster", + "freq": 4.37e-05 + }, + { + "word": "ladies", + "freq": 4.37e-05 + }, + { + "word": "secure", + "freq": 4.37e-05 + }, + { + "word": "talent", + "freq": 4.37e-05 + }, + { + "word": "troops", + "freq": 4.37e-05 + }, + { + "word": "causes", + "freq": 4.27e-05 + }, + { + "word": "forgot", + "freq": 4.27e-05 + }, + { + "word": "scored", + "freq": 4.27e-05 + }, + { + "word": "slowly", + "freq": 4.27e-05 + }, + { + "word": "vision", + "freq": 4.27e-05 + }, + { + "word": "begins", + "freq": 4.17e-05 + }, + { + "word": "crisis", + "freq": 4.17e-05 + }, + { + "word": "daniel", + "freq": 4.17e-05 + }, + { + "word": "editor", + "freq": 4.17e-05 + }, + { + "word": "orange", + "freq": 4.17e-05 + }, + { + "word": "signal", + "freq": 4.17e-05 + }, + { + "word": "stream", + "freq": 4.17e-05 + }, + { + "word": "talked", + "freq": 4.17e-05 + }, + { + "word": "voting", + "freq": 4.17e-05 + }, + { + "word": "bright", + "freq": 4.07e-05 + }, + { + "word": "brings", + "freq": 4.07e-05 + }, + { + "word": "chosen", + "freq": 4.07e-05 + }, + { + "word": "desire", + "freq": 4.07e-05 + }, + { + "word": "guilty", + "freq": 4.07e-05 + }, + { + "word": "jewish", + "freq": 4.07e-05 + }, + { + "word": "medium", + "freq": 4.07e-05 + }, + { + "word": "stands", + "freq": 4.07e-05 + }, + { + "word": "ticket", + "freq": 4.07e-05 + }, + { + "word": "unable", + "freq": 4.07e-05 + }, + { + "word": "mainly", + "freq": 3.98e-05 + }, + { + "word": "scared", + "freq": 3.98e-05 + }, + { + "word": "shares", + "freq": 3.98e-05 + }, + { + "word": "switch", + "freq": 3.98e-05 + }, + { + "word": "threat", + "freq": 3.98e-05 + }, + { + "word": "affect", + "freq": 3.89e-05 + }, + { + "word": "danger", + "freq": 3.89e-05 + }, + { + "word": "dollar", + "freq": 3.89e-05 + }, + { + "word": "fucked", + "freq": 3.89e-05 + }, + { + "word": "gender", + "freq": 3.89e-05 + }, + { + "word": "motion", + "freq": 3.89e-05 + }, + { + "word": "saving", + "freq": 3.89e-05 + }, + { + "word": "branch", + "freq": 3.8e-05 + }, + { + "word": "brazil", + "freq": 3.8e-05 + }, + { + "word": "heaven", + "freq": 3.8e-05 + }, + { + "word": "random", + "freq": 3.8e-05 + }, + { + "word": "afford", + "freq": 3.72e-05 + }, + { + "word": "andrew", + "freq": 3.72e-05 + }, + { + "word": "assume", + "freq": 3.72e-05 + }, + { + "word": "bottle", + "freq": 3.72e-05 + }, + { + "word": "cheese", + "freq": 3.72e-05 + }, + { + "word": "detail", + "freq": 3.72e-05 + }, + { + "word": "harder", + "freq": 3.72e-05 + }, + { + "word": "parent", + "freq": 3.72e-05 + }, + { + "word": "prefer", + "freq": 3.72e-05 + }, + { + "word": "scheme", + "freq": 3.72e-05 + }, + { + "word": "unlike", + "freq": 3.72e-05 + }, + { + "word": "weekly", + "freq": 3.72e-05 + }, + { + "word": "button", + "freq": 3.63e-05 + }, + { + "word": "combat", + "freq": 3.63e-05 + }, + { + "word": "crying", + "freq": 3.63e-05 + }, + { + "word": "excuse", + "freq": 3.63e-05 + }, + { + "word": "expert", + "freq": 3.63e-05 + }, + { + "word": "latter", + "freq": 3.63e-05 + }, + { + "word": "mining", + "freq": 3.63e-05 + }, + { + "word": "object", + "freq": 3.63e-05 + }, + { + "word": "severe", + "freq": 3.63e-05 + }, + { + "word": "turkey", + "freq": 3.63e-05 + }, + { + "word": "victim", + "freq": 3.63e-05 + }, + { + "word": "amazon", + "freq": 3.55e-05 + }, + { + "word": "arrest", + "freq": 3.55e-05 + }, + { + "word": "attend", + "freq": 3.55e-05 + }, + { + "word": "carbon", + "freq": 3.55e-05 + }, + { + "word": "circle", + "freq": 3.55e-05 + }, + { + "word": "deputy", + "freq": 3.55e-05 + }, + { + "word": "earned", + "freq": 3.55e-05 + }, + { + "word": "headed", + "freq": 3.55e-05 + }, + { + "word": "manner", + "freq": 3.55e-05 + }, + { + "word": "nearby", + "freq": 3.55e-05 + }, + { + "word": "origin", + "freq": 3.55e-05 + }, + { + "word": "relief", + "freq": 3.55e-05 + }, + { + "word": "retail", + "freq": 3.55e-05 + }, + { + "word": "surely", + "freq": 3.55e-05 + }, + { + "word": "client", + "freq": 3.47e-05 + }, + { + "word": "driven", + "freq": 3.47e-05 + }, + { + "word": "empire", + "freq": 3.47e-05 + }, + { + "word": "linked", + "freq": 3.47e-05 + }, + { + "word": "manage", + "freq": 3.47e-05 + }, + { + "word": "soviet", + "freq": 3.47e-05 + }, + { + "word": "weapon", + "freq": 3.47e-05 + }, + { + "word": "widely", + "freq": 3.47e-05 + }, + { + "word": "hardly", + "freq": 3.39e-05 + }, + { + "word": "height", + "freq": 3.39e-05 + }, + { + "word": "hidden", + "freq": 3.39e-05 + }, + { + "word": "marine", + "freq": 3.39e-05 + }, + { + "word": "reform", + "freq": 3.39e-05 + }, + { + "word": "sample", + "freq": 3.39e-05 + }, + { + "word": "stayed", + "freq": 3.39e-05 + }, + { + "word": "sydney", + "freq": 3.39e-05 + }, + { + "word": "wilson", + "freq": 3.39e-05 + }, + { + "word": "breath", + "freq": 3.31e-05 + }, + { + "word": "decade", + "freq": 3.31e-05 + }, + { + "word": "edward", + "freq": 3.31e-05 + }, + { + "word": "joseph", + "freq": 3.31e-05 + }, + { + "word": "rising", + "freq": 3.31e-05 + }, + { + "word": "singer", + "freq": 3.31e-05 + }, + { + "word": "campus", + "freq": 3.24e-05 + }, + { + "word": "comedy", + "freq": 3.24e-05 + }, + { + "word": "defeat", + "freq": 3.24e-05 + }, + { + "word": "jordan", + "freq": 3.24e-05 + }, + { + "word": "wealth", + "freq": 3.24e-05 + }, + { + "word": "facing", + "freq": 3.16e-05 + }, + { + "word": "fairly", + "freq": 3.16e-05 + }, + { + "word": "marked", + "freq": 3.16e-05 + }, + { + "word": "miller", + "freq": 3.16e-05 + }, + { + "word": "racing", + "freq": 3.16e-05 + }, + { + "word": "shower", + "freq": 3.16e-05 + }, + { + "word": "visual", + "freq": 3.16e-05 + }, + { + "word": "barely", + "freq": 3.09e-05 + }, + { + "word": "colour", + "freq": 3.09e-05 + }, + { + "word": "fought", + "freq": 3.09e-05 + }, + { + "word": "gained", + "freq": 3.09e-05 + }, + { + "word": "junior", + "freq": 3.09e-05 + }, + { + "word": "korean", + "freq": 3.09e-05 + }, + { + "word": "repeat", + "freq": 3.09e-05 + }, + { + "word": "riding", + "freq": 3.09e-05 + }, + { + "word": "sought", + "freq": 3.09e-05 + }, + { + "word": "exists", + "freq": 3.02e-05 + }, + { + "word": "finger", + "freq": 3.02e-05 + }, + { + "word": "guitar", + "freq": 3.02e-05 + }, + { + "word": "howard", + "freq": 3.02e-05 + }, + { + "word": "ignore", + "freq": 3.02e-05 + }, + { + "word": "pocket", + "freq": 3.02e-05 + }, + { + "word": "proved", + "freq": 3.02e-05 + }, + { + "word": "rescue", + "freq": 3.02e-05 + }, + { + "word": "soccer", + "freq": 3.02e-05 + }, + { + "word": "stable", + "freq": 3.02e-05 + }, + { + "word": "tested", + "freq": 3.02e-05 + }, + { + "word": "defend", + "freq": 2.95e-05 + }, + { + "word": "extent", + "freq": 2.95e-05 + }, + { + "word": "format", + "freq": 2.95e-05 + }, + { + "word": "gotten", + "freq": 2.95e-05 + }, + { + "word": "killer", + "freq": 2.95e-05 + }, + { + "word": "lesson", + "freq": 2.95e-05 + }, + { + "word": "limits", + "freq": 2.95e-05 + }, + { + "word": "loving", + "freq": 2.95e-05 + }, + { + "word": "mirror", + "freq": 2.95e-05 + }, + { + "word": "belief", + "freq": 2.88e-05 + }, + { + "word": "donald", + "freq": 2.88e-05 + }, + { + "word": "server", + "freq": 2.88e-05 + }, + { + "word": "babies", + "freq": 2.82e-05 + }, + { + "word": "castle", + "freq": 2.82e-05 + }, + { + "word": "finals", + "freq": 2.82e-05 + }, + { + "word": "formal", + "freq": 2.82e-05 + }, + { + "word": "hungry", + "freq": 2.82e-05 + }, + { + "word": "losses", + "freq": 2.82e-05 + }, + { + "word": "palace", + "freq": 2.82e-05 + }, + { + "word": "passes", + "freq": 2.82e-05 + }, + { + "word": "rating", + "freq": 2.82e-05 + }, + { + "word": "select", + "freq": 2.82e-05 + }, + { + "word": "silent", + "freq": 2.82e-05 + }, + { + "word": "spoken", + "freq": 2.82e-05 + }, + { + "word": "suffer", + "freq": 2.82e-05 + }, + { + "word": "temple", + "freq": 2.82e-05 + }, + { + "word": "deeply", + "freq": 2.75e-05 + }, + { + "word": "harris", + "freq": 2.75e-05 + }, + { + "word": "legend", + "freq": 2.75e-05 + }, + { + "word": "muscle", + "freq": 2.75e-05 + }, + { + "word": "shadow", + "freq": 2.75e-05 + }, + { + "word": "thread", + "freq": 2.75e-05 + }, + { + "word": "avenue", + "freq": 2.69e-05 + }, + { + "word": "boring", + "freq": 2.69e-05 + }, + { + "word": "copies", + "freq": 2.69e-05 + }, + { + "word": "custom", + "freq": 2.69e-05 + }, + { + "word": "denied", + "freq": 2.69e-05 + }, + { + "word": "horror", + "freq": 2.69e-05 + }, + { + "word": "iphone", + "freq": 2.69e-05 + }, + { + "word": "locked", + "freq": 2.69e-05 + }, + { + "word": "output", + "freq": 2.69e-05 + }, + { + "word": "pushed", + "freq": 2.69e-05 + }, + { + "word": "reveal", + "freq": 2.69e-05 + }, + { + "word": "speaks", + "freq": 2.69e-05 + }, + { + "word": "worker", + "freq": 2.69e-05 + }, + { + "word": "assist", + "freq": 2.63e-05 + }, + { + "word": "behalf", + "freq": 2.63e-05 + }, + { + "word": "dallas", + "freq": 2.63e-05 + }, + { + "word": "flower", + "freq": 2.63e-05 + }, + { + "word": "handed", + "freq": 2.63e-05 + }, + { + "word": "hockey", + "freq": 2.63e-05 + }, + { + "word": "morgan", + "freq": 2.63e-05 + }, + { + "word": "moscow", + "freq": 2.63e-05 + }, + { + "word": "prayer", + "freq": 2.63e-05 + }, + { + "word": "racist", + "freq": 2.63e-05 + }, + { + "word": "rarely", + "freq": 2.63e-05 + }, + { + "word": "struck", + "freq": 2.63e-05 + }, + { + "word": "walker", + "freq": 2.63e-05 + }, + { + "word": "arthur", + "freq": 2.57e-05 + }, + { + "word": "aspect", + "freq": 2.57e-05 + }, + { + "word": "banned", + "freq": 2.57e-05 + }, + { + "word": "bureau", + "freq": 2.57e-05 + }, + { + "word": "cousin", + "freq": 2.57e-05 + }, + { + "word": "dragon", + "freq": 2.57e-05 + }, + { + "word": "lately", + "freq": 2.57e-05 + }, + { + "word": "lowest", + "freq": 2.57e-05 + }, + { + "word": "remote", + "freq": 2.57e-05 + }, + { + "word": "repair", + "freq": 2.57e-05 + }, + { + "word": "stolen", + "freq": 2.57e-05 + }, + { + "word": "buried", + "freq": 2.51e-05 + }, + { + "word": "butter", + "freq": 2.51e-05 + }, + { + "word": "decent", + "freq": 2.51e-05 + }, + { + "word": "desert", + "freq": 2.51e-05 + }, + { + "word": "insane", + "freq": 2.51e-05 + }, + { + "word": "obtain", + "freq": 2.51e-05 + }, + { + "word": "poetry", + "freq": 2.51e-05 + }, + { + "word": "recall", + "freq": 2.51e-05 + }, + { + "word": "smooth", + "freq": 2.51e-05 + }, + { + "word": "string", + "freq": 2.51e-05 + }, + { + "word": "sudden", + "freq": 2.51e-05 + }, + { + "word": "sweden", + "freq": 2.51e-05 + }, + { + "word": "thrown", + "freq": 2.51e-05 + }, + { + "word": "abroad", + "freq": 2.45e-05 + }, + { + "word": "bother", + "freq": 2.45e-05 + }, + { + "word": "disney", + "freq": 2.45e-05 + }, + { + "word": "fallen", + "freq": 2.45e-05 + }, + { + "word": "liquid", + "freq": 2.45e-05 + }, + { + "word": "makeup", + "freq": 2.45e-05 + }, + { + "word": "narrow", + "freq": 2.45e-05 + }, + { + "word": "refuse", + "freq": 2.45e-05 + }, + { + "word": "serves", + "freq": 2.45e-05 + }, + { + "word": "arrive", + "freq": 2.4e-05 + }, + { + "word": "belong", + "freq": 2.4e-05 + }, + { + "word": "berlin", + "freq": 2.4e-05 + }, + { + "word": "bishop", + "freq": 2.4e-05 + }, + { + "word": "kicked", + "freq": 2.4e-05 + }, + { + "word": "oxford", + "freq": 2.4e-05 + }, + { + "word": "shaped", + "freq": 2.4e-05 + }, + { + "word": "thirty", + "freq": 2.4e-05 + }, + { + "word": "whilst", + "freq": 2.4e-05 + }, + { + "word": "gordon", + "freq": 2.34e-05 + }, + { + "word": "honour", + "freq": 2.34e-05 + }, + { + "word": "hunter", + "freq": 2.34e-05 + }, + { + "word": "kansas", + "freq": 2.34e-05 + }, + { + "word": "legacy", + "freq": 2.34e-05 + }, + { + "word": "merely", + "freq": 2.34e-05 + }, + { + "word": "regret", + "freq": 2.34e-05 + }, + { + "word": "remind", + "freq": 2.34e-05 + }, + { + "word": "resort", + "freq": 2.34e-05 + }, + { + "word": "settle", + "freq": 2.34e-05 + }, + { + "word": "tongue", + "freq": 2.34e-05 + }, + { + "word": "argued", + "freq": 2.29e-05 + }, + { + "word": "asleep", + "freq": 2.29e-05 + }, + { + "word": "austin", + "freq": 2.29e-05 + }, + { + "word": "engage", + "freq": 2.29e-05 + }, + { + "word": "gaming", + "freq": 2.29e-05 + }, + { + "word": "regard", + "freq": 2.29e-05 + }, + { + "word": "salary", + "freq": 2.29e-05 + }, + { + "word": "script", + "freq": 2.29e-05 + }, + { + "word": "walter", + "freq": 2.29e-05 + }, + { + "word": "writes", + "freq": 2.29e-05 + }, + { + "word": "breast", + "freq": 2.24e-05 + }, + { + "word": "carter", + "freq": 2.24e-05 + }, + { + "word": "cotton", + "freq": 2.24e-05 + }, + { + "word": "expand", + "freq": 2.24e-05 + }, + { + "word": "heroes", + "freq": 2.24e-05 + }, + { + "word": "inches", + "freq": 2.24e-05 + }, + { + "word": "johnny", + "freq": 2.24e-05 + }, + { + "word": "luxury", + "freq": 2.24e-05 + }, + { + "word": "lyrics", + "freq": 2.24e-05 + }, + { + "word": "ranked", + "freq": 2.24e-05 + }, + { + "word": "tennis", + "freq": 2.24e-05 + }, + { + "word": "twelve", + "freq": 2.24e-05 + }, + { + "word": "virgin", + "freq": 2.24e-05 + }, + { + "word": "wishes", + "freq": 2.24e-05 + }, + { + "word": "extend", + "freq": 2.19e-05 + }, + { + "word": "occurs", + "freq": 2.19e-05 + }, + { + "word": "reader", + "freq": 2.19e-05 + }, + { + "word": "column", + "freq": 2.14e-05 + }, + { + "word": "commit", + "freq": 2.14e-05 + }, + { + "word": "ethnic", + "freq": 2.14e-05 + }, + { + "word": "foster", + "freq": 2.14e-05 + }, + { + "word": "fuckin", + "freq": 2.14e-05 + }, + { + "word": "genius", + "freq": 2.14e-05 + }, + { + "word": "priest", + "freq": 2.14e-05 + }, + { + "word": "proven", + "freq": 2.14e-05 + }, + { + "word": "reward", + "freq": 2.14e-05 + }, + { + "word": "wooden", + "freq": 2.14e-05 + }, + { + "word": "duties", + "freq": 2.09e-05 + }, + { + "word": "frozen", + "freq": 2.09e-05 + }, + { + "word": "hiding", + "freq": 2.09e-05 + }, + { + "word": "invest", + "freq": 2.09e-05 + }, + { + "word": "jacket", + "freq": 2.09e-05 + }, + { + "word": "justin", + "freq": 2.09e-05 + }, + { + "word": "manual", + "freq": 2.09e-05 + }, + { + "word": "purple", + "freq": 2.09e-05 + }, + { + "word": "tissue", + "freq": 2.09e-05 + }, + { + "word": "trends", + "freq": 2.09e-05 + }, + { + "word": "versus", + "freq": 2.09e-05 + }, + { + "word": "burned", + "freq": 2.04e-05 + }, + { + "word": "checks", + "freq": 2.04e-05 + }, + { + "word": "define", + "freq": 2.04e-05 + }, + { + "word": "domain", + "freq": 2.04e-05 + }, + { + "word": "edited", + "freq": 2.04e-05 + }, + { + "word": "favour", + "freq": 2.04e-05 + }, + { + "word": "packed", + "freq": 2.04e-05 + }, + { + "word": "praise", + "freq": 2.04e-05 + }, + { + "word": "rocket", + "freq": 2.04e-05 + }, + { + "word": "steady", + "freq": 2.04e-05 + }, + { + "word": "symbol", + "freq": 2.04e-05 + }, + { + "word": "toilet", + "freq": 2.04e-05 + }, + { + "word": "treaty", + "freq": 2.04e-05 + }, + { + "word": "triple", + "freq": 2.04e-05 + }, + { + "word": "viewed", + "freq": 2.04e-05 + }, + { + "word": "affair", + "freq": 2e-05 + }, + { + "word": "agenda", + "freq": 2e-05 + }, + { + "word": "deeper", + "freq": 2e-05 + }, + { + "word": "enable", + "freq": 2e-05 + }, + { + "word": "equity", + "freq": 2e-05 + }, + { + "word": "graham", + "freq": 2e-05 + }, + { + "word": "invite", + "freq": 2e-05 + }, + { + "word": "madrid", + "freq": 2e-05 + }, + { + "word": "oregon", + "freq": 2e-05 + }, + { + "word": "partly", + "freq": 2e-05 + }, + { + "word": "phrase", + "freq": 2e-05 + }, + { + "word": "racial", + "freq": 2e-05 + }, + { + "word": "regime", + "freq": 2e-05 + }, + { + "word": "shield", + "freq": 2e-05 + }, + { + "word": "summit", + "freq": 2e-05 + }, + { + "word": "throat", + "freq": 2e-05 + }, + { + "word": "visits", + "freq": 2e-05 + }, + { + "word": "wisdom", + "freq": 2e-05 + }, + { + "word": "funded", + "freq": 1.95e-05 + }, + { + "word": "polish", + "freq": 1.95e-05 + }, + { + "word": "ruling", + "freq": 1.95e-05 + }, + { + "word": "timing", + "freq": 1.95e-05 + }, + { + "word": "worthy", + "freq": 1.95e-05 + }, + { + "word": "bloody", + "freq": 1.91e-05 + }, + { + "word": "filter", + "freq": 1.91e-05 + }, + { + "word": "galaxy", + "freq": 1.91e-05 + }, + { + "word": "grades", + "freq": 1.91e-05 + }, + { + "word": "greece", + "freq": 1.91e-05 + }, + { + "word": "intent", + "freq": 1.91e-05 + }, + { + "word": "knight", + "freq": 1.91e-05 + }, + { + "word": "mature", + "freq": 1.91e-05 + }, + { + "word": "philip", + "freq": 1.91e-05 + }, + { + "word": "submit", + "freq": 1.91e-05 + }, + { + "word": "copper", + "freq": 1.86e-05 + }, + { + "word": "firing", + "freq": 1.86e-05 + }, + { + "word": "margin", + "freq": 1.86e-05 + }, + { + "word": "murray", + "freq": 1.86e-05 + }, + { + "word": "stroke", + "freq": 1.86e-05 + }, + { + "word": "topics", + "freq": 1.86e-05 + }, + { + "word": "vessel", + "freq": 1.86e-05 + }, + { + "word": "autumn", + "freq": 1.82e-05 + }, + { + "word": "backed", + "freq": 1.82e-05 + }, + { + "word": "cooper", + "freq": 1.82e-05 + }, + { + "word": "fiscal", + "freq": 1.82e-05 + }, + { + "word": "mutual", + "freq": 1.82e-05 + }, + { + "word": "pursue", + "freq": 1.82e-05 + }, + { + "word": "ruined", + "freq": 1.82e-05 + }, + { + "word": "terror", + "freq": 1.82e-05 + }, + { + "word": "waited", + "freq": 1.82e-05 + }, + { + "word": "warren", + "freq": 1.82e-05 + }, + { + "word": "errors", + "freq": 1.78e-05 + }, + { + "word": "garage", + "freq": 1.78e-05 + }, + { + "word": "hosted", + "freq": 1.78e-05 + }, + { + "word": "jumped", + "freq": 1.78e-05 + }, + { + "word": "loaded", + "freq": 1.78e-05 + }, + { + "word": "lonely", + "freq": 1.78e-05 + }, + { + "word": "oxygen", + "freq": 1.78e-05 + }, + { + "word": "pissed", + "freq": 1.78e-05 + }, + { + "word": "powder", + "freq": 1.78e-05 + }, + { + "word": "quotes", + "freq": 1.78e-05 + }, + { + "word": "racism", + "freq": 1.78e-05 + }, + { + "word": "refers", + "freq": 1.78e-05 + }, + { + "word": "sooner", + "freq": 1.78e-05 + }, + { + "word": "spider", + "freq": 1.78e-05 + }, + { + "word": "albert", + "freq": 1.74e-05 + }, + { + "word": "bullet", + "freq": 1.74e-05 + }, + { + "word": "divine", + "freq": 1.74e-05 + }, + { + "word": "emails", + "freq": 1.74e-05 + }, + { + "word": "export", + "freq": 1.74e-05 + }, + { + "word": "gather", + "freq": 1.74e-05 + }, + { + "word": "landed", + "freq": 1.74e-05 + }, + { + "word": "nelson", + "freq": 1.74e-05 + }, + { + "word": "oldest", + "freq": 1.74e-05 + }, + { + "word": "poland", + "freq": 1.74e-05 + }, + { + "word": "relate", + "freq": 1.74e-05 + }, + { + "word": "sacred", + "freq": 1.74e-05 + }, + { + "word": "steven", + "freq": 1.74e-05 + }, + { + "word": "tunnel", + "freq": 1.74e-05 + }, + { + "word": "worlds", + "freq": 1.7e-05 + }, + { + "word": "burden", + "freq": 1.7e-05 + }, + { + "word": "casual", + "freq": 1.7e-05 + }, + { + "word": "denver", + "freq": 1.7e-05 + }, + { + "word": "hiring", + "freq": 1.7e-05 + }, + { + "word": "laptop", + "freq": 1.7e-05 + }, + { + "word": "parker", + "freq": 1.7e-05 + }, + { + "word": "recipe", + "freq": 1.7e-05 + }, + { + "word": "rubber", + "freq": 1.7e-05 + }, + { + "word": "serial", + "freq": 1.7e-05 + }, + { + "word": "strict", + "freq": 1.7e-05 + }, + { + "word": "batman", + "freq": 1.66e-05 + }, + { + "word": "cruise", + "freq": 1.66e-05 + }, + { + "word": "delete", + "freq": 1.66e-05 + }, + { + "word": "oliver", + "freq": 1.66e-05 + }, + { + "word": "outfit", + "freq": 1.66e-05 + }, + { + "word": "permit", + "freq": 1.66e-05 + }, + { + "word": "safely", + "freq": 1.66e-05 + }, + { + "word": "slight", + "freq": 1.66e-05 + }, + { + "word": "backup", + "freq": 1.62e-05 + }, + { + "word": "beaten", + "freq": 1.62e-05 + }, + { + "word": "bitter", + "freq": 1.62e-05 + }, + { + "word": "clever", + "freq": 1.62e-05 + }, + { + "word": "clinic", + "freq": 1.62e-05 + }, + { + "word": "excess", + "freq": 1.62e-05 + }, + { + "word": "habits", + "freq": 1.62e-05 + }, + { + "word": "holder", + "freq": 1.62e-05 + }, + { + "word": "meters", + "freq": 1.62e-05 + }, + { + "word": "quoted", + "freq": 1.62e-05 + }, + { + "word": "rolled", + "freq": 1.62e-05 + }, + { + "word": "bronze", + "freq": 1.58e-05 + }, + { + "word": "caring", + "freq": 1.58e-05 + }, + { + "word": "depend", + "freq": 1.58e-05 + }, + { + "word": "eighth", + "freq": 1.58e-05 + }, + { + "word": "resist", + "freq": 1.58e-05 + }, + { + "word": "solely", + "freq": 1.58e-05 + }, + { + "word": "wright", + "freq": 1.58e-05 + }, + { + "word": "alaska", + "freq": 1.55e-05 + }, + { + "word": "beside", + "freq": 1.55e-05 + }, + { + "word": "census", + "freq": 1.55e-05 + }, + { + "word": "dealer", + "freq": 1.55e-05 + }, + { + "word": "deemed", + "freq": 1.55e-05 + }, + { + "word": "ethics", + "freq": 1.55e-05 + }, + { + "word": "poster", + "freq": 1.55e-05 + }, + { + "word": "samuel", + "freq": 1.55e-05 + }, + { + "word": "themes", + "freq": 1.55e-05 + }, + { + "word": "turner", + "freq": 1.55e-05 + }, + { + "word": "wasted", + "freq": 1.55e-05 + }, + { + "word": "cancel", + "freq": 1.51e-05 + }, + { + "word": "carpet", + "freq": 1.51e-05 + }, + { + "word": "cherry", + "freq": 1.51e-05 + }, + { + "word": "gospel", + "freq": 1.51e-05 + }, + { + "word": "patent", + "freq": 1.51e-05 + }, + { + "word": "runner", + "freq": 1.51e-05 + }, + { + "word": "stored", + "freq": 1.51e-05 + }, + { + "word": "victor", + "freq": 1.51e-05 + }, + { + "word": "warned", + "freq": 1.51e-05 + }, + { + "word": "watson", + "freq": 1.51e-05 + }, + { + "word": "barrel", + "freq": 1.48e-05 + }, + { + "word": "boxing", + "freq": 1.48e-05 + }, + { + "word": "cinema", + "freq": 1.48e-05 + }, + { + "word": "gentle", + "freq": 1.48e-05 + }, + { + "word": "layers", + "freq": 1.48e-05 + }, + { + "word": "metres", + "freq": 1.48e-05 + }, + { + "word": "notion", + "freq": 1.48e-05 + }, + { + "word": "trophy", + "freq": 1.48e-05 + }, + { + "word": "unfair", + "freq": 1.48e-05 + }, + { + "word": "bubble", + "freq": 1.45e-05 + }, + { + "word": "casino", + "freq": 1.45e-05 + }, + { + "word": "deadly", + "freq": 1.45e-05 + }, + { + "word": "hammer", + "freq": 1.45e-05 + }, + { + "word": "hitler", + "freq": 1.45e-05 + }, + { + "word": "laying", + "freq": 1.45e-05 + }, + { + "word": "marvel", + "freq": 1.45e-05 + }, + { + "word": "parade", + "freq": 1.45e-05 + }, + { + "word": "retain", + "freq": 1.45e-05 + }, + { + "word": "sheets", + "freq": 1.45e-05 + }, + { + "word": "cattle", + "freq": 1.41e-05 + }, + { + "word": "farmer", + "freq": 1.41e-05 + }, + { + "word": "finest", + "freq": 1.41e-05 + }, + { + "word": "harbor", + "freq": 1.41e-05 + }, + { + "word": "harvey", + "freq": 1.41e-05 + }, + { + "word": "inform", + "freq": 1.41e-05 + }, + { + "word": "jeremy", + "freq": 1.41e-05 + }, + { + "word": "minded", + "freq": 1.41e-05 + }, + { + "word": "morris", + "freq": 1.41e-05 + }, + { + "word": "norway", + "freq": 1.41e-05 + }, + { + "word": "rachel", + "freq": 1.41e-05 + }, + { + "word": "strain", + "freq": 1.41e-05 + }, + { + "word": "tackle", + "freq": 1.41e-05 + }, + { + "word": "traded", + "freq": 1.41e-05 + }, + { + "word": "tricks", + "freq": 1.41e-05 + }, + { + "word": "urgent", + "freq": 1.41e-05 + }, + { + "word": "wallet", + "freq": 1.41e-05 + }, + { + "word": "aboard", + "freq": 1.38e-05 + }, + { + "word": "accent", + "freq": 1.38e-05 + }, + { + "word": "dining", + "freq": 1.38e-05 + }, + { + "word": "immune", + "freq": 1.38e-05 + }, + { + "word": "norman", + "freq": 1.38e-05 + }, + { + "word": "patrol", + "freq": 1.38e-05 + }, + { + "word": "pepper", + "freq": 1.38e-05 + }, + { + "word": "scream", + "freq": 1.38e-05 + }, + { + "word": "stairs", + "freq": 1.38e-05 + }, + { + "word": "syrian", + "freq": 1.38e-05 + }, + { + "word": "tattoo", + "freq": 1.38e-05 + }, + { + "word": "trauma", + "freq": 1.38e-05 + }, + { + "word": "breach", + "freq": 1.35e-05 + }, + { + "word": "cheers", + "freq": 1.35e-05 + }, + { + "word": "closet", + "freq": 1.35e-05 + }, + { + "word": "dishes", + "freq": 1.35e-05 + }, + { + "word": "dozens", + "freq": 1.35e-05 + }, + { + "word": "fitted", + "freq": 1.35e-05 + }, + { + "word": "iconic", + "freq": 1.35e-05 + }, + { + "word": "lesser", + "freq": 1.35e-05 + }, + { + "word": "murphy", + "freq": 1.35e-05 + }, + { + "word": "nathan", + "freq": 1.35e-05 + }, + { + "word": "rookie", + "freq": 1.35e-05 + }, + { + "word": "stuart", + "freq": 1.35e-05 + }, + { + "word": "arabia", + "freq": 1.32e-05 + }, + { + "word": "banner", + "freq": 1.32e-05 + }, + { + "word": "colony", + "freq": 1.32e-05 + }, + { + "word": "divide", + "freq": 1.32e-05 + }, + { + "word": "easter", + "freq": 1.32e-05 + }, + { + "word": "eleven", + "freq": 1.32e-05 + }, + { + "word": "entity", + "freq": 1.32e-05 + }, + { + "word": "jungle", + "freq": 1.32e-05 + }, + { + "word": "linear", + "freq": 1.32e-05 + }, + { + "word": "resume", + "freq": 1.32e-05 + }, + { + "word": "sealed", + "freq": 1.32e-05 + }, + { + "word": "ashley", + "freq": 1.29e-05 + }, + { + "word": "cooked", + "freq": 1.29e-05 + }, + { + "word": "dental", + "freq": 1.29e-05 + }, + { + "word": "freeze", + "freq": 1.29e-05 + }, + { + "word": "humble", + "freq": 1.29e-05 + }, + { + "word": "hybrid", + "freq": 1.29e-05 + }, + { + "word": "mixing", + "freq": 1.29e-05 + }, + { + "word": "openly", + "freq": 1.29e-05 + }, + { + "word": "parish", + "freq": 1.29e-05 + }, + { + "word": "potato", + "freq": 1.29e-05 + }, + { + "word": "potter", + "freq": 1.29e-05 + }, + { + "word": "throne", + "freq": 1.29e-05 + }, + { + "word": "warner", + "freq": 1.29e-05 + }, + { + "word": "brutal", + "freq": 1.26e-05 + }, + { + "word": "dennis", + "freq": 1.26e-05 + }, + { + "word": "facial", + "freq": 1.26e-05 + }, + { + "word": "hunger", + "freq": 1.26e-05 + }, + { + "word": "import", + "freq": 1.26e-05 + }, + { + "word": "lifted", + "freq": 1.26e-05 + }, + { + "word": "mighty", + "freq": 1.26e-05 + }, + { + "word": "poorly", + "freq": 1.26e-05 + }, + { + "word": "purely", + "freq": 1.26e-05 + }, + { + "word": "rental", + "freq": 1.26e-05 + }, + { + "word": "titled", + "freq": 1.26e-05 + }, + { + "word": "washed", + "freq": 1.26e-05 + }, + { + "word": "advise", + "freq": 1.23e-05 + }, + { + "word": "dakota", + "freq": 1.23e-05 + }, + { + "word": "fixing", + "freq": 1.23e-05 + }, + { + "word": "heated", + "freq": 1.23e-05 + }, + { + "word": "indoor", + "freq": 1.23e-05 + }, + { + "word": "intend", + "freq": 1.23e-05 + }, + { + "word": "lasted", + "freq": 1.23e-05 + }, + { + "word": "marcus", + "freq": 1.23e-05 + }, + { + "word": "roster", + "freq": 1.23e-05 + }, + { + "word": "statue", + "freq": 1.23e-05 + }, + { + "word": "tender", + "freq": 1.23e-05 + }, + { + "word": "vacuum", + "freq": 1.23e-05 + }, + { + "word": "agrees", + "freq": 1.2e-05 + }, + { + "word": "butler", + "freq": 1.2e-05 + }, + { + "word": "dublin", + "freq": 1.2e-05 + }, + { + "word": "essays", + "freq": 1.2e-05 + }, + { + "word": "fabric", + "freq": 1.2e-05 + }, + { + "word": "gently", + "freq": 1.2e-05 + }, + { + "word": "hughes", + "freq": 1.2e-05 + }, + { + "word": "laughs", + "freq": 1.2e-05 + }, + { + "word": "layout", + "freq": 1.2e-05 + }, + { + "word": "pastor", + "freq": 1.2e-05 + }, + { + "word": "poison", + "freq": 1.2e-05 + }, + { + "word": "prints", + "freq": 1.2e-05 + }, + { + "word": "solved", + "freq": 1.2e-05 + }, + { + "word": "subtle", + "freq": 1.2e-05 + }, + { + "word": "tastes", + "freq": 1.2e-05 + }, + { + "word": "throws", + "freq": 1.2e-05 + }, + { + "word": "tragic", + "freq": 1.2e-05 + }, + { + "word": "adjust", + "freq": 1.17e-05 + }, + { + "word": "allied", + "freq": 1.17e-05 + }, + { + "word": "assess", + "freq": 1.17e-05 + }, + { + "word": "basket", + "freq": 1.17e-05 + }, + { + "word": "bucket", + "freq": 1.17e-05 + }, + { + "word": "burger", + "freq": 1.17e-05 + }, + { + "word": "cookie", + "freq": 1.17e-05 + }, + { + "word": "freely", + "freq": 1.17e-05 + }, + { + "word": "matrix", + "freq": 1.17e-05 + }, + { + "word": "monkey", + "freq": 1.17e-05 + }, + { + "word": "nicely", + "freq": 1.17e-05 + }, + { + "word": "valued", + "freq": 1.17e-05 + }, + { + "word": "wounds", + "freq": 1.17e-05 + }, + { + "word": "assure", + "freq": 1.15e-05 + }, + { + "word": "bailey", + "freq": 1.15e-05 + }, + { + "word": "ballot", + "freq": 1.15e-05 + }, + { + "word": "filmed", + "freq": 1.15e-05 + }, + { + "word": "guided", + "freq": 1.15e-05 + }, + { + "word": "guinea", + "freq": 1.15e-05 + }, + { + "word": "holmes", + "freq": 1.15e-05 + }, + { + "word": "proves", + "freq": 1.15e-05 + }, + { + "word": "ripped", + "freq": 1.15e-05 + }, + { + "word": "sierra", + "freq": 1.15e-05 + }, + { + "word": "streak", + "freq": 1.15e-05 + }, + { + "word": "treats", + "freq": 1.15e-05 + }, + { + "word": "states", + "freq": 1.12e-05 + }, + { + "word": "booked", + "freq": 1.12e-05 + }, + { + "word": "clarke", + "freq": 1.12e-05 + }, + { + "word": "detect", + "freq": 1.12e-05 + }, + { + "word": "diesel", + "freq": 1.12e-05 + }, + { + "word": "filing", + "freq": 1.12e-05 + }, + { + "word": "hannah", + "freq": 1.12e-05 + }, + { + "word": "hatred", + "freq": 1.12e-05 + }, + { + "word": "median", + "freq": 1.12e-05 + }, + { + "word": "rabbit", + "freq": 1.12e-05 + }, + { + "word": "raises", + "freq": 1.12e-05 + }, + { + "word": "ranges", + "freq": 1.12e-05 + }, + { + "word": "retire", + "freq": 1.12e-05 + }, + { + "word": "rhythm", + "freq": 1.12e-05 + }, + { + "word": "savage", + "freq": 1.12e-05 + }, + { + "word": "stance", + "freq": 1.12e-05 + }, + { + "word": "static", + "freq": 1.12e-05 + }, + { + "word": "subway", + "freq": 1.12e-05 + }, + { + "word": "tablet", + "freq": 1.12e-05 + }, + { + "word": "thesis", + "freq": 1.12e-05 + }, + { + "word": "argues", + "freq": 1.1e-05 + }, + { + "word": "blonde", + "freq": 1.1e-05 + }, + { + "word": "collar", + "freq": 1.1e-05 + }, + { + "word": "comply", + "freq": 1.1e-05 + }, + { + "word": "creepy", + "freq": 1.1e-05 + }, + { + "word": "donate", + "freq": 1.1e-05 + }, + { + "word": "finale", + "freq": 1.1e-05 + }, + { + "word": "flavor", + "freq": 1.1e-05 + }, + { + "word": "gloves", + "freq": 1.1e-05 + }, + { + "word": "harper", + "freq": 1.1e-05 + }, + { + "word": "joking", + "freq": 1.1e-05 + }, + { + "word": "lineup", + "freq": 1.1e-05 + }, + { + "word": "nevada", + "freq": 1.1e-05 + }, + { + "word": "newest", + "freq": 1.1e-05 + }, + { + "word": "puerto", + "freq": 1.1e-05 + }, + { + "word": "shitty", + "freq": 1.1e-05 + }, + { + "word": "sketch", + "freq": 1.1e-05 + }, + { + "word": "smells", + "freq": 1.1e-05 + }, + { + "word": "sunset", + "freq": 1.1e-05 + }, + { + "word": "taiwan", + "freq": 1.1e-05 + }, + { + "word": "arabic", + "freq": 1.07e-05 + }, + { + "word": "arctic", + "freq": 1.07e-05 + }, + { + "word": "chapel", + "freq": 1.07e-05 + }, + { + "word": "differ", + "freq": 1.07e-05 + }, + { + "word": "flames", + "freq": 1.07e-05 + }, + { + "word": "harold", + "freq": 1.07e-05 + }, + { + "word": "hudson", + "freq": 1.07e-05 + }, + { + "word": "insist", + "freq": 1.07e-05 + }, + { + "word": "kidney", + "freq": 1.07e-05 + }, + { + "word": "ladder", + "freq": 1.07e-05 + }, + { + "word": "modest", + "freq": 1.07e-05 + }, + { + "word": "reject", + "freq": 1.07e-05 + }, + { + "word": "seized", + "freq": 1.07e-05 + }, + { + "word": "suited", + "freq": 1.07e-05 + }, + { + "word": "tribal", + "freq": 1.07e-05 + }, + { + "word": "varied", + "freq": 1.07e-05 + }, + { + "word": "anchor", + "freq": 1.05e-05 + }, + { + "word": "angela", + "freq": 1.05e-05 + }, + { + "word": "bounce", + "freq": 1.05e-05 + }, + { + "word": "cannon", + "freq": 1.05e-05 + }, + { + "word": "diving", + "freq": 1.05e-05 + }, + { + "word": "duncan", + "freq": 1.05e-05 + }, + { + "word": "fisher", + "freq": 1.05e-05 + }, + { + "word": "fridge", + "freq": 1.05e-05 + }, + { + "word": "fusion", + "freq": 1.05e-05 + }, + { + "word": "helmet", + "freq": 1.05e-05 + }, + { + "word": "keeper", + "freq": 1.05e-05 + }, + { + "word": "namely", + "freq": 1.05e-05 + } + ], + "7": [ + { + "word": "because", + "freq": 0.00107 + }, + { + "word": "through", + "freq": 0.000741 + }, + { + "word": "between", + "freq": 0.000589 + }, + { + "word": "another", + "freq": 0.00055 + }, + { + "word": "without", + "freq": 0.00049 + }, + { + "word": "against", + "freq": 0.000479 + }, + { + "word": "someone", + "freq": 0.000427 + }, + { + "word": "company", + "freq": 0.000398 + }, + { + "word": "thought", + "freq": 0.000389 + }, + { + "word": "however", + "freq": 0.00038 + }, + { + "word": "getting", + "freq": 0.000372 + }, + { + "word": "looking", + "freq": 0.000372 + }, + { + "word": "already", + "freq": 0.000355 + }, + { + "word": "nothing", + "freq": 0.000355 + }, + { + "word": "support", + "freq": 0.000339 + }, + { + "word": "believe", + "freq": 0.000324 + }, + { + "word": "service", + "freq": 0.000309 + }, + { + "word": "country", + "freq": 0.000302 + }, + { + "word": "general", + "freq": 0.000295 + }, + { + "word": "working", + "freq": 0.000282 + }, + { + "word": "control", + "freq": 0.000251 + }, + { + "word": "problem", + "freq": 0.000251 + }, + { + "word": "history", + "freq": 0.000245 + }, + { + "word": "several", + "freq": 0.000245 + }, + { + "word": "started", + "freq": 0.000245 + }, + { + "word": "playing", + "freq": 0.000234 + }, + { + "word": "special", + "freq": 0.000219 + }, + { + "word": "fucking", + "freq": 0.000214 + }, + { + "word": "million", + "freq": 0.000214 + }, + { + "word": "morning", + "freq": 0.000214 + }, + { + "word": "whether", + "freq": 0.000209 + }, + { + "word": "further", + "freq": 0.000204 + }, + { + "word": "talking", + "freq": 0.000195 + }, + { + "word": "college", + "freq": 0.000186 + }, + { + "word": "current", + "freq": 0.000186 + }, + { + "word": "example", + "freq": 0.000186 + }, + { + "word": "program", + "freq": 0.000186 + }, + { + "word": "process", + "freq": 0.000182 + }, + { + "word": "himself", + "freq": 0.000178 + }, + { + "word": "outside", + "freq": 0.000178 + }, + { + "word": "instead", + "freq": 0.000174 + }, + { + "word": "results", + "freq": 0.00017 + }, + { + "word": "running", + "freq": 0.00017 + }, + { + "word": "america", + "freq": 0.000166 + }, + { + "word": "project", + "freq": 0.000166 + }, + { + "word": "account", + "freq": 0.000162 + }, + { + "word": "include", + "freq": 0.000162 + }, + { + "word": "similar", + "freq": 0.000162 + }, + { + "word": "perfect", + "freq": 0.000158 + }, + { + "word": "english", + "freq": 0.000155 + }, + { + "word": "private", + "freq": 0.000155 + }, + { + "word": "british", + "freq": 0.000151 + }, + { + "word": "present", + "freq": 0.000151 + }, + { + "word": "finally", + "freq": 0.000148 + }, + { + "word": "society", + "freq": 0.000148 + }, + { + "word": "average", + "freq": 0.000145 + }, + { + "word": "brought", + "freq": 0.000145 + }, + { + "word": "certain", + "freq": 0.000145 + }, + { + "word": "medical", + "freq": 0.000145 + }, + { + "word": "exactly", + "freq": 0.000141 + }, + { + "word": "meeting", + "freq": 0.000141 + }, + { + "word": "provide", + "freq": 0.000141 + }, + { + "word": "usually", + "freq": 0.000141 + }, + { + "word": "reading", + "freq": 0.000138 + }, + { + "word": "federal", + "freq": 0.000135 + }, + { + "word": "feeling", + "freq": 0.000135 + }, + { + "word": "picture", + "freq": 0.000135 + }, + { + "word": "central", + "freq": 0.000132 + }, + { + "word": "england", + "freq": 0.000132 + }, + { + "word": "forward", + "freq": 0.000132 + }, + { + "word": "science", + "freq": 0.000132 + }, + { + "word": "various", + "freq": 0.000132 + }, + { + "word": "brother", + "freq": 0.000129 + }, + { + "word": "natural", + "freq": 0.000129 + }, + { + "word": "october", + "freq": 0.000129 + }, + { + "word": "quality", + "freq": 0.000129 + }, + { + "word": "amazing", + "freq": 0.000126 + }, + { + "word": "related", + "freq": 0.000126 + }, + { + "word": "serious", + "freq": 0.000126 + }, + { + "word": "article", + "freq": 0.000123 + }, + { + "word": "decided", + "freq": 0.000123 + }, + { + "word": "january", + "freq": 0.000123 + }, + { + "word": "perhaps", + "freq": 0.000123 + }, + { + "word": "release", + "freq": 0.000123 + }, + { + "word": "website", + "freq": 0.000123 + }, + { + "word": "written", + "freq": 0.000123 + }, + { + "word": "council", + "freq": 0.00012 + }, + { + "word": "foreign", + "freq": 0.00012 + }, + { + "word": "michael", + "freq": 0.00012 + }, + { + "word": "changed", + "freq": 0.000117 + }, + { + "word": "popular", + "freq": 0.000117 + }, + { + "word": "version", + "freq": 0.000117 + }, + { + "word": "writing", + "freq": 0.000117 + }, + { + "word": "success", + "freq": 0.000115 + }, + { + "word": "towards", + "freq": 0.000115 + }, + { + "word": "waiting", + "freq": 0.000115 + }, + { + "word": "created", + "freq": 0.000112 + }, + { + "word": "missing", + "freq": 0.000112 + }, + { + "word": "percent", + "freq": 0.00011 + }, + { + "word": "allowed", + "freq": 0.000107 + }, + { + "word": "culture", + "freq": 0.000107 + }, + { + "word": "married", + "freq": 0.000107 + }, + { + "word": "officer", + "freq": 0.000107 + }, + { + "word": "respect", + "freq": 0.000107 + }, + { + "word": "tonight", + "freq": 0.000107 + }, + { + "word": "century", + "freq": 0.000105 + }, + { + "word": "limited", + "freq": 0.000105 + }, + { + "word": "network", + "freq": 0.000105 + }, + { + "word": "student", + "freq": 0.000105 + }, + { + "word": "capital", + "freq": 0.000102 + }, + { + "word": "chinese", + "freq": 0.000102 + }, + { + "word": "russian", + "freq": 0.000102 + }, + { + "word": "station", + "freq": 0.000102 + }, + { + "word": "western", + "freq": 0.000102 + }, + { + "word": "content", + "freq": 0.0001 + }, + { + "word": "despite", + "freq": 0.0001 + }, + { + "word": "husband", + "freq": 0.0001 + }, + { + "word": "leading", + "freq": 0.0001 + }, + { + "word": "message", + "freq": 0.0001 + }, + { + "word": "quickly", + "freq": 0.0001 + }, + { + "word": "section", + "freq": 0.0001 + }, + { + "word": "contact", + "freq": 9.77e-05 + }, + { + "word": "welcome", + "freq": 9.77e-05 + }, + { + "word": "earlier", + "freq": 9.55e-05 + }, + { + "word": "leaving", + "freq": 9.55e-05 + }, + { + "word": "studies", + "freq": 9.55e-05 + }, + { + "word": "winning", + "freq": 9.55e-05 + }, + { + "word": "episode", + "freq": 9.33e-05 + }, + { + "word": "justice", + "freq": 9.33e-05 + }, + { + "word": "manager", + "freq": 9.33e-05 + }, + { + "word": "ability", + "freq": 9.12e-05 + }, + { + "word": "calling", + "freq": 9.12e-05 + }, + { + "word": "happens", + "freq": 9.12e-05 + }, + { + "word": "subject", + "freq": 9.12e-05 + }, + { + "word": "product", + "freq": 8.91e-05 + }, + { + "word": "regular", + "freq": 8.91e-05 + }, + { + "word": "stories", + "freq": 8.91e-05 + }, + { + "word": "anymore", + "freq": 8.71e-05 + }, + { + "word": "growing", + "freq": 8.71e-05 + }, + { + "word": "opening", + "freq": 8.71e-05 + }, + { + "word": "opinion", + "freq": 8.71e-05 + }, + { + "word": "biggest", + "freq": 8.51e-05 + }, + { + "word": "defense", + "freq": 8.51e-05 + }, + { + "word": "weekend", + "freq": 8.51e-05 + }, + { + "word": "awesome", + "freq": 8.32e-05 + }, + { + "word": "clearly", + "freq": 8.32e-05 + }, + { + "word": "imagine", + "freq": 8.32e-05 + }, + { + "word": "protect", + "freq": 8.32e-05 + }, + { + "word": "telling", + "freq": 8.32e-05 + }, + { + "word": "address", + "freq": 8.13e-05 + }, + { + "word": "details", + "freq": 8.13e-05 + }, + { + "word": "disease", + "freq": 7.94e-05 + }, + { + "word": "driving", + "freq": 7.94e-05 + }, + { + "word": "germany", + "freq": 7.94e-05 + }, + { + "word": "greater", + "freq": 7.94e-05 + }, + { + "word": "largest", + "freq": 7.94e-05 + }, + { + "word": "machine", + "freq": 7.94e-05 + }, + { + "word": "overall", + "freq": 7.94e-05 + }, + { + "word": "captain", + "freq": 7.76e-05 + }, + { + "word": "explain", + "freq": 7.76e-05 + }, + { + "word": "holding", + "freq": 7.76e-05 + }, + { + "word": "parties", + "freq": 7.76e-05 + }, + { + "word": "reality", + "freq": 7.76e-05 + }, + { + "word": "comment", + "freq": 7.59e-05 + }, + { + "word": "killing", + "freq": 7.59e-05 + }, + { + "word": "primary", + "freq": 7.59e-05 + }, + { + "word": "purpose", + "freq": 7.59e-05 + }, + { + "word": "showing", + "freq": 7.59e-05 + }, + { + "word": "teacher", + "freq": 7.59e-05 + }, + { + "word": "william", + "freq": 7.59e-05 + }, + { + "word": "economy", + "freq": 7.41e-05 + }, + { + "word": "meaning", + "freq": 7.41e-05 + }, + { + "word": "mission", + "freq": 7.41e-05 + }, + { + "word": "weather", + "freq": 7.41e-05 + }, + { + "word": "complex", + "freq": 7.24e-05 + }, + { + "word": "evening", + "freq": 7.24e-05 + }, + { + "word": "freedom", + "freq": 7.24e-05 + }, + { + "word": "highest", + "freq": 7.24e-05 + }, + { + "word": "library", + "freq": 7.24e-05 + }, + { + "word": "located", + "freq": 7.24e-05 + }, + { + "word": "offered", + "freq": 7.24e-05 + }, + { + "word": "putting", + "freq": 7.24e-05 + }, + { + "word": "sitting", + "freq": 7.24e-05 + }, + { + "word": "walking", + "freq": 7.24e-05 + }, + { + "word": "attempt", + "freq": 7.08e-05 + }, + { + "word": "channel", + "freq": 7.08e-05 + }, + { + "word": "finding", + "freq": 7.08e-05 + }, + { + "word": "learned", + "freq": 7.08e-05 + }, + { + "word": "reached", + "freq": 7.08e-05 + }, + { + "word": "receive", + "freq": 7.08e-05 + }, + { + "word": "species", + "freq": 7.08e-05 + }, + { + "word": "traffic", + "freq": 7.08e-05 + }, + { + "word": "wearing", + "freq": 7.08e-05 + }, + { + "word": "airport", + "freq": 6.92e-05 + }, + { + "word": "appears", + "freq": 6.92e-05 + }, + { + "word": "keeping", + "freq": 6.92e-05 + }, + { + "word": "partner", + "freq": 6.92e-05 + }, + { + "word": "stopped", + "freq": 6.92e-05 + }, + { + "word": "becomes", + "freq": 6.76e-05 + }, + { + "word": "chicago", + "freq": 6.76e-05 + }, + { + "word": "covered", + "freq": 6.76e-05 + }, + { + "word": "digital", + "freq": 6.76e-05 + }, + { + "word": "realize", + "freq": 6.76e-05 + }, + { + "word": "surface", + "freq": 6.76e-05 + }, + { + "word": "totally", + "freq": 6.76e-05 + }, + { + "word": "twitter", + "freq": 6.76e-05 + }, + { + "word": "wedding", + "freq": 6.76e-05 + }, + { + "word": "african", + "freq": 6.61e-05 + }, + { + "word": "benefit", + "freq": 6.61e-05 + }, + { + "word": "fashion", + "freq": 6.61e-05 + }, + { + "word": "feature", + "freq": 6.61e-05 + }, + { + "word": "hearing", + "freq": 6.61e-05 + }, + { + "word": "profile", + "freq": 6.61e-05 + }, + { + "word": "village", + "freq": 6.61e-05 + }, + { + "word": "follows", + "freq": 6.46e-05 + }, + { + "word": "selling", + "freq": 6.46e-05 + }, + { + "word": "edition", + "freq": 6.31e-05 + }, + { + "word": "healthy", + "freq": 6.31e-05 + }, + { + "word": "remains", + "freq": 6.31e-05 + }, + { + "word": "smaller", + "freq": 6.31e-05 + }, + { + "word": "arrived", + "freq": 6.17e-05 + }, + { + "word": "correct", + "freq": 6.17e-05 + }, + { + "word": "improve", + "freq": 6.17e-05 + }, + { + "word": "prevent", + "freq": 6.17e-05 + }, + { + "word": "removed", + "freq": 6.17e-05 + }, + { + "word": "richard", + "freq": 6.17e-05 + }, + { + "word": "trouble", + "freq": 6.17e-05 + }, + { + "word": "eastern", + "freq": 6.03e-05 + }, + { + "word": "helping", + "freq": 6.03e-05 + }, + { + "word": "herself", + "freq": 6.03e-05 + }, + { + "word": "produce", + "freq": 6.03e-05 + }, + { + "word": "require", + "freq": 6.03e-05 + }, + { + "word": "carried", + "freq": 5.89e-05 + }, + { + "word": "charles", + "freq": 5.89e-05 + }, + { + "word": "classes", + "freq": 5.89e-05 + }, + { + "word": "concept", + "freq": 5.89e-05 + }, + { + "word": "efforts", + "freq": 5.89e-05 + }, + { + "word": "housing", + "freq": 5.89e-05 + }, + { + "word": "journal", + "freq": 5.89e-05 + }, + { + "word": "neither", + "freq": 5.89e-05 + }, + { + "word": "patient", + "freq": 5.89e-05 + }, + { + "word": "setting", + "freq": 5.89e-05 + }, + { + "word": "balance", + "freq": 5.75e-05 + }, + { + "word": "florida", + "freq": 5.75e-05 + }, + { + "word": "knowing", + "freq": 5.75e-05 + }, + { + "word": "managed", + "freq": 5.75e-05 + }, + { + "word": "request", + "freq": 5.75e-05 + }, + { + "word": "vehicle", + "freq": 5.75e-05 + }, + { + "word": "billion", + "freq": 5.62e-05 + }, + { + "word": "develop", + "freq": 5.62e-05 + }, + { + "word": "suggest", + "freq": 5.62e-05 + }, + { + "word": "variety", + "freq": 5.62e-05 + }, + { + "word": "excited", + "freq": 5.5e-05 + }, + { + "word": "forever", + "freq": 5.5e-05 + }, + { + "word": "ordered", + "freq": 5.5e-05 + }, + { + "word": "angeles", + "freq": 5.37e-05 + }, + { + "word": "dropped", + "freq": 5.37e-05 + }, + { + "word": "mention", + "freq": 5.37e-05 + }, + { + "word": "nuclear", + "freq": 5.37e-05 + }, + { + "word": "spanish", + "freq": 5.37e-05 + }, + { + "word": "victory", + "freq": 5.37e-05 + }, + { + "word": "britain", + "freq": 5.25e-05 + }, + { + "word": "classic", + "freq": 5.25e-05 + }, + { + "word": "clothes", + "freq": 5.25e-05 + }, + { + "word": "entered", + "freq": 5.25e-05 + }, + { + "word": "failure", + "freq": 5.25e-05 + }, + { + "word": "initial", + "freq": 5.25e-05 + }, + { + "word": "johnson", + "freq": 5.25e-05 + }, + { + "word": "massive", + "freq": 5.25e-05 + }, + { + "word": "quarter", + "freq": 5.25e-05 + }, + { + "word": "session", + "freq": 5.25e-05 + }, + { + "word": "watched", + "freq": 5.25e-05 + }, + { + "word": "willing", + "freq": 5.25e-05 + }, + { + "word": "climate", + "freq": 5.13e-05 + }, + { + "word": "hundred", + "freq": 5.13e-05 + }, + { + "word": "options", + "freq": 5.13e-05 + }, + { + "word": "promise", + "freq": 5.13e-05 + }, + { + "word": "treated", + "freq": 5.13e-05 + }, + { + "word": "turning", + "freq": 5.13e-05 + }, + { + "word": "command", + "freq": 5.01e-05 + }, + { + "word": "minimum", + "freq": 4.9e-05 + }, + { + "word": "planned", + "freq": 4.9e-05 + }, + { + "word": "supreme", + "freq": 4.9e-05 + }, + { + "word": "younger", + "freq": 4.9e-05 + }, + { + "word": "ancient", + "freq": 4.79e-05 + }, + { + "word": "charges", + "freq": 4.79e-05 + }, + { + "word": "express", + "freq": 4.79e-05 + }, + { + "word": "illegal", + "freq": 4.79e-05 + }, + { + "word": "methods", + "freq": 4.79e-05 + }, + { + "word": "affairs", + "freq": 4.68e-05 + }, + { + "word": "applied", + "freq": 4.68e-05 + }, + { + "word": "mistake", + "freq": 4.68e-05 + }, + { + "word": "testing", + "freq": 4.68e-05 + }, + { + "word": "concern", + "freq": 4.57e-05 + }, + { + "word": "discuss", + "freq": 4.57e-05 + }, + { + "word": "falling", + "freq": 4.57e-05 + }, + { + "word": "holiday", + "freq": 4.57e-05 + }, + { + "word": "ireland", + "freq": 4.57e-05 + }, + { + "word": "italian", + "freq": 4.57e-05 + }, + { + "word": "liberal", + "freq": 4.57e-05 + }, + { + "word": "payment", + "freq": 4.57e-05 + }, + { + "word": "perform", + "freq": 4.57e-05 + }, + { + "word": "sharing", + "freq": 4.57e-05 + }, + { + "word": "youtube", + "freq": 4.57e-05 + }, + { + "word": "advance", + "freq": 4.47e-05 + }, + { + "word": "chapter", + "freq": 4.47e-05 + }, + { + "word": "finance", + "freq": 4.47e-05 + }, + { + "word": "focused", + "freq": 4.47e-05 + }, + { + "word": "journey", + "freq": 4.47e-05 + }, + { + "word": "kitchen", + "freq": 4.47e-05 + }, + { + "word": "measure", + "freq": 4.47e-05 + }, + { + "word": "claimed", + "freq": 4.37e-05 + }, + { + "word": "reduced", + "freq": 4.37e-05 + }, + { + "word": "revenue", + "freq": 4.37e-05 + }, + { + "word": "strange", + "freq": 4.37e-05 + }, + { + "word": "besides", + "freq": 4.27e-05 + }, + { + "word": "chicken", + "freq": 4.27e-05 + }, + { + "word": "context", + "freq": 4.27e-05 + }, + { + "word": "display", + "freq": 4.27e-05 + }, + { + "word": "elected", + "freq": 4.27e-05 + }, + { + "word": "funding", + "freq": 4.27e-05 + }, + { + "word": "noticed", + "freq": 4.27e-05 + }, + { + "word": "obvious", + "freq": 4.27e-05 + }, + { + "word": "passing", + "freq": 4.27e-05 + }, + { + "word": "stadium", + "freq": 4.27e-05 + }, + { + "word": "surgery", + "freq": 4.27e-05 + }, + { + "word": "trading", + "freq": 4.27e-05 + }, + { + "word": "tuesday", + "freq": 4.27e-05 + }, + { + "word": "worried", + "freq": 4.27e-05 + }, + { + "word": "charged", + "freq": 4.17e-05 + }, + { + "word": "kingdom", + "freq": 4.17e-05 + }, + { + "word": "serving", + "freq": 4.17e-05 + }, + { + "word": "suicide", + "freq": 4.17e-05 + }, + { + "word": "alcohol", + "freq": 4.07e-05 + }, + { + "word": "capable", + "freq": 4.07e-05 + }, + { + "word": "cutting", + "freq": 4.07e-05 + }, + { + "word": "granted", + "freq": 4.07e-05 + }, + { + "word": "largely", + "freq": 4.07e-05 + }, + { + "word": "sending", + "freq": 4.07e-05 + }, + { + "word": "dealing", + "freq": 3.98e-05 + }, + { + "word": "extreme", + "freq": 3.98e-05 + }, + { + "word": "maximum", + "freq": 3.98e-05 + }, + { + "word": "reserve", + "freq": 3.98e-05 + }, + { + "word": "returns", + "freq": 3.98e-05 + }, + { + "word": "tickets", + "freq": 3.98e-05 + }, + { + "word": "careful", + "freq": 3.89e-05 + }, + { + "word": "deserve", + "freq": 3.89e-05 + }, + { + "word": "enjoyed", + "freq": 3.89e-05 + }, + { + "word": "matches", + "freq": 3.89e-05 + }, + { + "word": "pacific", + "freq": 3.89e-05 + }, + { + "word": "singing", + "freq": 3.89e-05 + }, + { + "word": "typical", + "freq": 3.89e-05 + }, + { + "word": "warning", + "freq": 3.89e-05 + }, + { + "word": "drawing", + "freq": 3.8e-05 + }, + { + "word": "jackson", + "freq": 3.8e-05 + }, + { + "word": "replace", + "freq": 3.8e-05 + }, + { + "word": "seeking", + "freq": 3.8e-05 + }, + { + "word": "senator", + "freq": 3.8e-05 + }, + { + "word": "trained", + "freq": 3.8e-05 + }, + { + "word": "academy", + "freq": 3.72e-05 + }, + { + "word": "achieve", + "freq": 3.72e-05 + }, + { + "word": "clinton", + "freq": 3.72e-05 + }, + { + "word": "storage", + "freq": 3.72e-05 + }, + { + "word": "anybody", + "freq": 3.63e-05 + }, + { + "word": "counter", + "freq": 3.63e-05 + }, + { + "word": "defined", + "freq": 3.63e-05 + }, + { + "word": "pattern", + "freq": 3.63e-05 + }, + { + "word": "premier", + "freq": 3.63e-05 + }, + { + "word": "promote", + "freq": 3.63e-05 + }, + { + "word": "suppose", + "freq": 3.63e-05 + }, + { + "word": "concert", + "freq": 3.55e-05 + }, + { + "word": "deliver", + "freq": 3.55e-05 + }, + { + "word": "factory", + "freq": 3.55e-05 + }, + { + "word": "prepare", + "freq": 3.55e-05 + }, + { + "word": "staying", + "freq": 3.55e-05 + }, + { + "word": "updated", + "freq": 3.55e-05 + }, + { + "word": "checked", + "freq": 3.47e-05 + }, + { + "word": "degrees", + "freq": 3.47e-05 + }, + { + "word": "heavily", + "freq": 3.47e-05 + }, + { + "word": "refused", + "freq": 3.47e-05 + }, + { + "word": "causing", + "freq": 3.39e-05 + }, + { + "word": "closely", + "freq": 3.39e-05 + }, + { + "word": "contest", + "freq": 3.39e-05 + }, + { + "word": "depends", + "freq": 3.39e-05 + }, + { + "word": "invited", + "freq": 3.39e-05 + }, + { + "word": "letting", + "freq": 3.39e-05 + }, + { + "word": "portion", + "freq": 3.39e-05 + }, + { + "word": "protein", + "freq": 3.39e-05 + }, + { + "word": "respond", + "freq": 3.39e-05 + }, + { + "word": "somehow", + "freq": 3.39e-05 + }, + { + "word": "unknown", + "freq": 3.39e-05 + }, + { + "word": "battery", + "freq": 3.31e-05 + }, + { + "word": "conduct", + "freq": 3.31e-05 + }, + { + "word": "destroy", + "freq": 3.31e-05 + }, + { + "word": "engaged", + "freq": 3.31e-05 + }, + { + "word": "fantasy", + "freq": 3.31e-05 + }, + { + "word": "license", + "freq": 3.31e-05 + }, + { + "word": "smoking", + "freq": 3.31e-05 + }, + { + "word": "survive", + "freq": 3.31e-05 + }, + { + "word": "theatre", + "freq": 3.31e-05 + }, + { + "word": "therapy", + "freq": 3.31e-05 + }, + { + "word": "witness", + "freq": 3.31e-05 + }, + { + "word": "adopted", + "freq": 3.24e-05 + }, + { + "word": "defence", + "freq": 3.24e-05 + }, + { + "word": "exposed", + "freq": 3.24e-05 + }, + { + "word": "injured", + "freq": 3.24e-05 + }, + { + "word": "musical", + "freq": 3.24e-05 + }, + { + "word": "opposed", + "freq": 3.24e-05 + }, + { + "word": "plastic", + "freq": 3.24e-05 + }, + { + "word": "suspect", + "freq": 3.24e-05 + }, + { + "word": "aspects", + "freq": 3.16e-05 + }, + { + "word": "burning", + "freq": 3.16e-05 + }, + { + "word": "contain", + "freq": 3.16e-05 + }, + { + "word": "dancing", + "freq": 3.16e-05 + }, + { + "word": "founded", + "freq": 3.16e-05 + }, + { + "word": "hanging", + "freq": 3.16e-05 + }, + { + "word": "monthly", + "freq": 3.16e-05 + }, + { + "word": "operate", + "freq": 3.16e-05 + }, + { + "word": "stephen", + "freq": 3.16e-05 + }, + { + "word": "visited", + "freq": 3.16e-05 + }, + { + "word": "zealand", + "freq": 3.16e-05 + }, + { + "word": "cabinet", + "freq": 3.09e-05 + }, + { + "word": "gallery", + "freq": 3.09e-05 + }, + { + "word": "highway", + "freq": 3.09e-05 + }, + { + "word": "monster", + "freq": 3.09e-05 + }, + { + "word": "olympic", + "freq": 3.09e-05 + }, + { + "word": "speaker", + "freq": 3.09e-05 + }, + { + "word": "studied", + "freq": 3.09e-05 + }, + { + "word": "toronto", + "freq": 3.09e-05 + }, + { + "word": "wanting", + "freq": 3.09e-05 + }, + { + "word": "heading", + "freq": 3.02e-05 + }, + { + "word": "chamber", + "freq": 2.95e-05 + }, + { + "word": "circuit", + "freq": 2.95e-05 + }, + { + "word": "divided", + "freq": 2.95e-05 + }, + { + "word": "fishing", + "freq": 2.95e-05 + }, + { + "word": "joining", + "freq": 2.95e-05 + }, + { + "word": "parking", + "freq": 2.95e-05 + }, + { + "word": "rolling", + "freq": 2.95e-05 + }, + { + "word": "shortly", + "freq": 2.95e-05 + }, + { + "word": "accused", + "freq": 2.88e-05 + }, + { + "word": "bedroom", + "freq": 2.88e-05 + }, + { + "word": "choices", + "freq": 2.88e-05 + }, + { + "word": "closing", + "freq": 2.88e-05 + }, + { + "word": "element", + "freq": 2.88e-05 + }, + { + "word": "founder", + "freq": 2.88e-05 + }, + { + "word": "georgia", + "freq": 2.88e-05 + }, + { + "word": "hitting", + "freq": 2.88e-05 + }, + { + "word": "package", + "freq": 2.88e-05 + }, + { + "word": "pointed", + "freq": 2.88e-05 + }, + { + "word": "poverty", + "freq": 2.88e-05 + }, + { + "word": "railway", + "freq": 2.88e-05 + }, + { + "word": "silence", + "freq": 2.88e-05 + }, + { + "word": "soldier", + "freq": 2.88e-05 + }, + { + "word": "violent", + "freq": 2.88e-05 + }, + { + "word": "actress", + "freq": 2.82e-05 + }, + { + "word": "anxiety", + "freq": 2.82e-05 + }, + { + "word": "charity", + "freq": 2.82e-05 + }, + { + "word": "compare", + "freq": 2.82e-05 + }, + { + "word": "cooking", + "freq": 2.82e-05 + }, + { + "word": "curious", + "freq": 2.82e-05 + }, + { + "word": "formula", + "freq": 2.82e-05 + }, + { + "word": "mystery", + "freq": 2.82e-05 + }, + { + "word": "penalty", + "freq": 2.82e-05 + }, + { + "word": "protest", + "freq": 2.82e-05 + }, + { + "word": "unusual", + "freq": 2.82e-05 + }, + { + "word": "arrival", + "freq": 2.75e-05 + }, + { + "word": "assault", + "freq": 2.75e-05 + }, + { + "word": "fiction", + "freq": 2.75e-05 + }, + { + "word": "islamic", + "freq": 2.75e-05 + }, + { + "word": "passion", + "freq": 2.75e-05 + }, + { + "word": "picking", + "freq": 2.75e-05 + }, + { + "word": "pleased", + "freq": 2.75e-05 + }, + { + "word": "pushing", + "freq": 2.75e-05 + }, + { + "word": "retired", + "freq": 2.75e-05 + }, + { + "word": "savings", + "freq": 2.75e-05 + }, + { + "word": "settled", + "freq": 2.75e-05 + }, + { + "word": "beating", + "freq": 2.69e-05 + }, + { + "word": "charlie", + "freq": 2.69e-05 + }, + { + "word": "helpful", + "freq": 2.69e-05 + }, + { + "word": "raising", + "freq": 2.69e-05 + }, + { + "word": "welfare", + "freq": 2.69e-05 + }, + { + "word": "alright", + "freq": 2.63e-05 + }, + { + "word": "android", + "freq": 2.63e-05 + }, + { + "word": "capture", + "freq": 2.63e-05 + }, + { + "word": "diamond", + "freq": 2.63e-05 + }, + { + "word": "dressed", + "freq": 2.63e-05 + }, + { + "word": "houston", + "freq": 2.63e-05 + }, + { + "word": "hunting", + "freq": 2.63e-05 + }, + { + "word": "nervous", + "freq": 2.63e-05 + }, + { + "word": "stomach", + "freq": 2.63e-05 + }, + { + "word": "whoever", + "freq": 2.63e-05 + }, + { + "word": "amounts", + "freq": 2.57e-05 + }, + { + "word": "anthony", + "freq": 2.57e-05 + }, + { + "word": "colonel", + "freq": 2.57e-05 + }, + { + "word": "comfort", + "freq": 2.57e-05 + }, + { + "word": "demands", + "freq": 2.57e-05 + }, + { + "word": "illness", + "freq": 2.57e-05 + }, + { + "word": "mexican", + "freq": 2.57e-05 + }, + { + "word": "whereas", + "freq": 2.57e-05 + }, + { + "word": "confirm", + "freq": 2.51e-05 + }, + { + "word": "crystal", + "freq": 2.51e-05 + }, + { + "word": "decline", + "freq": 2.51e-05 + }, + { + "word": "enemies", + "freq": 2.51e-05 + }, + { + "word": "israeli", + "freq": 2.51e-05 + }, + { + "word": "landing", + "freq": 2.51e-05 + }, + { + "word": "nowhere", + "freq": 2.51e-05 + }, + { + "word": "organic", + "freq": 2.51e-05 + }, + { + "word": "printed", + "freq": 2.51e-05 + }, + { + "word": "signing", + "freq": 2.51e-05 + }, + { + "word": "assumed", + "freq": 2.45e-05 + }, + { + "word": "citizen", + "freq": 2.45e-05 + }, + { + "word": "compete", + "freq": 2.45e-05 + }, + { + "word": "cricket", + "freq": 2.45e-05 + }, + { + "word": "damaged", + "freq": 2.45e-05 + }, + { + "word": "equally", + "freq": 2.45e-05 + }, + { + "word": "figured", + "freq": 2.45e-05 + }, + { + "word": "fitness", + "freq": 2.45e-05 + }, + { + "word": "francis", + "freq": 2.45e-05 + }, + { + "word": "intense", + "freq": 2.45e-05 + }, + { + "word": "physics", + "freq": 2.45e-05 + }, + { + "word": "posting", + "freq": 2.45e-05 + }, + { + "word": "reflect", + "freq": 2.45e-05 + }, + { + "word": "seattle", + "freq": 2.45e-05 + }, + { + "word": "visible", + "freq": 2.45e-05 + }, + { + "word": "arizona", + "freq": 2.4e-05 + }, + { + "word": "connect", + "freq": 2.4e-05 + }, + { + "word": "lessons", + "freq": 2.4e-05 + }, + { + "word": "alleged", + "freq": 2.34e-05 + }, + { + "word": "atlanta", + "freq": 2.34e-05 + }, + { + "word": "collect", + "freq": 2.34e-05 + }, + { + "word": "funeral", + "freq": 2.34e-05 + }, + { + "word": "genuine", + "freq": 2.34e-05 + }, + { + "word": "matthew", + "freq": 2.34e-05 + }, + { + "word": "monitor", + "freq": 2.34e-05 + }, + { + "word": "patrick", + "freq": 2.34e-05 + }, + { + "word": "reverse", + "freq": 2.34e-05 + }, + { + "word": "routine", + "freq": 2.34e-05 + }, + { + "word": "summary", + "freq": 2.34e-05 + }, + { + "word": "consent", + "freq": 2.29e-05 + }, + { + "word": "divorce", + "freq": 2.29e-05 + }, + { + "word": "privacy", + "freq": 2.29e-05 + }, + { + "word": "profits", + "freq": 2.29e-05 + }, + { + "word": "roughly", + "freq": 2.29e-05 + }, + { + "word": "scoring", + "freq": 2.29e-05 + }, + { + "word": "awarded", + "freq": 2.24e-05 + }, + { + "word": "banking", + "freq": 2.24e-05 + }, + { + "word": "chelsea", + "freq": 2.24e-05 + }, + { + "word": "crossed", + "freq": 2.24e-05 + }, + { + "word": "detroit", + "freq": 2.24e-05 + }, + { + "word": "leather", + "freq": 2.24e-05 + }, + { + "word": "outcome", + "freq": 2.24e-05 + }, + { + "word": "painted", + "freq": 2.24e-05 + }, + { + "word": "pulling", + "freq": 2.24e-05 + }, + { + "word": "removal", + "freq": 2.24e-05 + }, + { + "word": "stretch", + "freq": 2.24e-05 + }, + { + "word": "theater", + "freq": 2.24e-05 + }, + { + "word": "absence", + "freq": 2.19e-05 + }, + { + "word": "asshole", + "freq": 2.19e-05 + }, + { + "word": "genetic", + "freq": 2.19e-05 + }, + { + "word": "glasses", + "freq": 2.19e-05 + }, + { + "word": "instant", + "freq": 2.19e-05 + }, + { + "word": "liberty", + "freq": 2.19e-05 + }, + { + "word": "rapidly", + "freq": 2.19e-05 + }, + { + "word": "reveals", + "freq": 2.19e-05 + }, + { + "word": "density", + "freq": 2.14e-05 + }, + { + "word": "greatly", + "freq": 2.14e-05 + }, + { + "word": "nigeria", + "freq": 2.14e-05 + }, + { + "word": "premium", + "freq": 2.14e-05 + }, + { + "word": "pretend", + "freq": 2.14e-05 + }, + { + "word": "radical", + "freq": 2.14e-05 + }, + { + "word": "russell", + "freq": 2.14e-05 + }, + { + "word": "uniform", + "freq": 2.14e-05 + }, + { + "word": "mothers", + "freq": 2.09e-05 + }, + { + "word": "courage", + "freq": 2.09e-05 + }, + { + "word": "faculty", + "freq": 2.09e-05 + }, + { + "word": "fighter", + "freq": 2.09e-05 + }, + { + "word": "listing", + "freq": 2.09e-05 + }, + { + "word": "nursing", + "freq": 2.09e-05 + }, + { + "word": "ongoing", + "freq": 2.09e-05 + }, + { + "word": "painful", + "freq": 2.09e-05 + }, + { + "word": "romance", + "freq": 2.09e-05 + }, + { + "word": "trailer", + "freq": 2.09e-05 + }, + { + "word": "ukraine", + "freq": 2.09e-05 + }, + { + "word": "virtual", + "freq": 2.09e-05 + }, + { + "word": "wounded", + "freq": 2.09e-05 + }, + { + "word": "amongst", + "freq": 2.04e-05 + }, + { + "word": "arsenal", + "freq": 2.04e-05 + }, + { + "word": "blocked", + "freq": 2.04e-05 + }, + { + "word": "dynamic", + "freq": 2.04e-05 + }, + { + "word": "explore", + "freq": 2.04e-05 + }, + { + "word": "footage", + "freq": 2.04e-05 + }, + { + "word": "indiana", + "freq": 2.04e-05 + }, + { + "word": "lincoln", + "freq": 2.04e-05 + }, + { + "word": "updates", + "freq": 2.04e-05 + }, + { + "word": "vietnam", + "freq": 2.04e-05 + }, + { + "word": "failing", + "freq": 2e-05 + }, + { + "word": "fortune", + "freq": 2e-05 + }, + { + "word": "goodbye", + "freq": 2e-05 + }, + { + "word": "hillary", + "freq": 2e-05 + }, + { + "word": "touched", + "freq": 2e-05 + }, + { + "word": "awkward", + "freq": 1.95e-05 + }, + { + "word": "carrier", + "freq": 1.95e-05 + }, + { + "word": "default", + "freq": 1.95e-05 + }, + { + "word": "derived", + "freq": 1.95e-05 + }, + { + "word": "existed", + "freq": 1.95e-05 + }, + { + "word": "recover", + "freq": 1.95e-05 + }, + { + "word": "succeed", + "freq": 1.95e-05 + }, + { + "word": "worship", + "freq": 1.95e-05 + }, + { + "word": "creates", + "freq": 1.91e-05 + }, + { + "word": "crucial", + "freq": 1.91e-05 + }, + { + "word": "feeding", + "freq": 1.91e-05 + }, + { + "word": "involve", + "freq": 1.91e-05 + }, + { + "word": "kennedy", + "freq": 1.91e-05 + }, + { + "word": "replied", + "freq": 1.91e-05 + }, + { + "word": "revenge", + "freq": 1.91e-05 + }, + { + "word": "threats", + "freq": 1.91e-05 + }, + { + "word": "tourism", + "freq": 1.91e-05 + }, + { + "word": "turkish", + "freq": 1.91e-05 + }, + { + "word": "auction", + "freq": 1.86e-05 + }, + { + "word": "dispute", + "freq": 1.86e-05 + }, + { + "word": "editing", + "freq": 1.86e-05 + }, + { + "word": "ignored", + "freq": 1.86e-05 + }, + { + "word": "passage", + "freq": 1.86e-05 + }, + { + "word": "shocked", + "freq": 1.86e-05 + }, + { + "word": "utility", + "freq": 1.86e-05 + }, + { + "word": "peoples", + "freq": 1.82e-05 + }, + { + "word": "alabama", + "freq": 1.82e-05 + }, + { + "word": "breathe", + "freq": 1.82e-05 + }, + { + "word": "cameron", + "freq": 1.82e-05 + }, + { + "word": "coaches", + "freq": 1.82e-05 + }, + { + "word": "mounted", + "freq": 1.82e-05 + }, + { + "word": "offense", + "freq": 1.82e-05 + }, + { + "word": "realise", + "freq": 1.82e-05 + }, + { + "word": "segment", + "freq": 1.82e-05 + }, + { + "word": "venture", + "freq": 1.82e-05 + }, + { + "word": "arguing", + "freq": 1.78e-05 + }, + { + "word": "beliefs", + "freq": 1.78e-05 + }, + { + "word": "emperor", + "freq": 1.78e-05 + }, + { + "word": "forgive", + "freq": 1.78e-05 + }, + { + "word": "handled", + "freq": 1.78e-05 + }, + { + "word": "inquiry", + "freq": 1.78e-05 + }, + { + "word": "powered", + "freq": 1.78e-05 + }, + { + "word": "ratings", + "freq": 1.78e-05 + }, + { + "word": "seventh", + "freq": 1.78e-05 + }, + { + "word": "shelter", + "freq": 1.78e-05 + }, + { + "word": "stewart", + "freq": 1.78e-05 + }, + { + "word": "tribute", + "freq": 1.78e-05 + }, + { + "word": "trigger", + "freq": 1.78e-05 + }, + { + "word": "belongs", + "freq": 1.74e-05 + }, + { + "word": "beneath", + "freq": 1.74e-05 + }, + { + "word": "bitcoin", + "freq": 1.74e-05 + }, + { + "word": "deposit", + "freq": 1.74e-05 + }, + { + "word": "diverse", + "freq": 1.74e-05 + }, + { + "word": "fastest", + "freq": 1.74e-05 + }, + { + "word": "harvard", + "freq": 1.74e-05 + }, + { + "word": "jealous", + "freq": 1.74e-05 + }, + { + "word": "knocked", + "freq": 1.74e-05 + }, + { + "word": "laughed", + "freq": 1.74e-05 + }, + { + "word": "neutral", + "freq": 1.74e-05 + }, + { + "word": "upgrade", + "freq": 1.74e-05 + }, + { + "word": "warrant", + "freq": 1.74e-05 + }, + { + "word": "applies", + "freq": 1.7e-05 + }, + { + "word": "backing", + "freq": 1.7e-05 + }, + { + "word": "blessed", + "freq": 1.7e-05 + }, + { + "word": "charter", + "freq": 1.7e-05 + }, + { + "word": "earning", + "freq": 1.7e-05 + }, + { + "word": "expense", + "freq": 1.7e-05 + }, + { + "word": "graphic", + "freq": 1.7e-05 + }, + { + "word": "healing", + "freq": 1.7e-05 + }, + { + "word": "jumping", + "freq": 1.7e-05 + }, + { + "word": "outdoor", + "freq": 1.7e-05 + }, + { + "word": "secured", + "freq": 1.7e-05 + }, + { + "word": "amateur", + "freq": 1.66e-05 + }, + { + "word": "bearing", + "freq": 1.66e-05 + }, + { + "word": "biology", + "freq": 1.66e-05 + }, + { + "word": "briefly", + "freq": 1.66e-05 + }, + { + "word": "cheaper", + "freq": 1.66e-05 + }, + { + "word": "custody", + "freq": 1.66e-05 + }, + { + "word": "longest", + "freq": 1.66e-05 + }, + { + "word": "magical", + "freq": 1.66e-05 + }, + { + "word": "pension", + "freq": 1.66e-05 + }, + { + "word": "reminds", + "freq": 1.66e-05 + }, + { + "word": "shorter", + "freq": 1.66e-05 + }, + { + "word": "tension", + "freq": 1.66e-05 + }, + { + "word": "useless", + "freq": 1.66e-05 + }, + { + "word": "closest", + "freq": 1.62e-05 + }, + { + "word": "creator", + "freq": 1.62e-05 + }, + { + "word": "douglas", + "freq": 1.62e-05 + }, + { + "word": "farming", + "freq": 1.62e-05 + }, + { + "word": "forcing", + "freq": 1.62e-05 + }, + { + "word": "forming", + "freq": 1.62e-05 + }, + { + "word": "gravity", + "freq": 1.62e-05 + }, + { + "word": "legally", + "freq": 1.62e-05 + }, + { + "word": "ontario", + "freq": 1.62e-05 + }, + { + "word": "orleans", + "freq": 1.62e-05 + }, + { + "word": "phoenix", + "freq": 1.62e-05 + }, + { + "word": "slavery", + "freq": 1.62e-05 + }, + { + "word": "swedish", + "freq": 1.62e-05 + }, + { + "word": "veteran", + "freq": 1.62e-05 + }, + { + "word": "wealthy", + "freq": 1.62e-05 + }, + { + "word": "attract", + "freq": 1.58e-05 + }, + { + "word": "barbara", + "freq": 1.58e-05 + }, + { + "word": "blowing", + "freq": 1.58e-05 + }, + { + "word": "chronic", + "freq": 1.58e-05 + }, + { + "word": "cleared", + "freq": 1.58e-05 + }, + { + "word": "delayed", + "freq": 1.58e-05 + }, + { + "word": "kidding", + "freq": 1.58e-05 + }, + { + "word": "regards", + "freq": 1.58e-05 + }, + { + "word": "stepped", + "freq": 1.58e-05 + }, + { + "word": "tourist", + "freq": 1.58e-05 + }, + { + "word": "transit", + "freq": 1.58e-05 + }, + { + "word": "trusted", + "freq": 1.58e-05 + }, + { + "word": "volumes", + "freq": 1.58e-05 + }, + { + "word": "anytime", + "freq": 1.55e-05 + }, + { + "word": "coastal", + "freq": 1.55e-05 + }, + { + "word": "colored", + "freq": 1.55e-05 + }, + { + "word": "destiny", + "freq": 1.55e-05 + }, + { + "word": "distant", + "freq": 1.55e-05 + }, + { + "word": "emotion", + "freq": 1.55e-05 + }, + { + "word": "filling", + "freq": 1.55e-05 + }, + { + "word": "filming", + "freq": 1.55e-05 + }, + { + "word": "glasgow", + "freq": 1.55e-05 + }, + { + "word": "insight", + "freq": 1.55e-05 + }, + { + "word": "netflix", + "freq": 1.55e-05 + }, + { + "word": "qualify", + "freq": 1.55e-05 + }, + { + "word": "ranging", + "freq": 1.55e-05 + }, + { + "word": "ranking", + "freq": 1.55e-05 + }, + { + "word": "spotted", + "freq": 1.55e-05 + }, + { + "word": "stanley", + "freq": 1.55e-05 + }, + { + "word": "tobacco", + "freq": 1.55e-05 + }, + { + "word": "trapped", + "freq": 1.55e-05 + }, + { + "word": "advised", + "freq": 1.51e-05 + }, + { + "word": "ceiling", + "freq": 1.51e-05 + }, + { + "word": "costume", + "freq": 1.51e-05 + }, + { + "word": "deleted", + "freq": 1.51e-05 + }, + { + "word": "devoted", + "freq": 1.51e-05 + }, + { + "word": "endless", + "freq": 1.51e-05 + }, + { + "word": "escaped", + "freq": 1.51e-05 + }, + { + "word": "examine", + "freq": 1.51e-05 + }, + { + "word": "garbage", + "freq": 1.51e-05 + }, + { + "word": "heating", + "freq": 1.51e-05 + }, + { + "word": "mixture", + "freq": 1.51e-05 + }, + { + "word": "proceed", + "freq": 1.51e-05 + }, + { + "word": "restore", + "freq": 1.51e-05 + }, + { + "word": "vintage", + "freq": 1.51e-05 + }, + { + "word": "adapted", + "freq": 1.48e-05 + }, + { + "word": "antonio", + "freq": 1.48e-05 + }, + { + "word": "beloved", + "freq": 1.48e-05 + }, + { + "word": "grammar", + "freq": 1.48e-05 + }, + { + "word": "jessica", + "freq": 1.48e-05 + }, + { + "word": "loyalty", + "freq": 1.48e-05 + }, + { + "word": "madison", + "freq": 1.48e-05 + }, + { + "word": "partial", + "freq": 1.48e-05 + }, + { + "word": "placing", + "freq": 1.48e-05 + }, + { + "word": "resolve", + "freq": 1.48e-05 + }, + { + "word": "scandal", + "freq": 1.48e-05 + }, + { + "word": "tactics", + "freq": 1.48e-05 + }, + { + "word": "affects", + "freq": 1.45e-05 + }, + { + "word": "counsel", + "freq": 1.45e-05 + }, + { + "word": "decides", + "freq": 1.45e-05 + }, + { + "word": "desired", + "freq": 1.45e-05 + }, + { + "word": "embrace", + "freq": 1.45e-05 + }, + { + "word": "emerged", + "freq": 1.45e-05 + }, + { + "word": "exhibit", + "freq": 1.45e-05 + }, + { + "word": "hosting", + "freq": 1.45e-05 + }, + { + "word": "imposed", + "freq": 1.45e-05 + }, + { + "word": "iranian", + "freq": 1.45e-05 + }, + { + "word": "kicking", + "freq": 1.45e-05 + }, + { + "word": "reaches", + "freq": 1.45e-05 + }, + { + "word": "remarks", + "freq": 1.45e-05 + }, + { + "word": "scratch", + "freq": 1.45e-05 + }, + { + "word": "sheriff", + "freq": 1.45e-05 + }, + { + "word": "warrior", + "freq": 1.45e-05 + }, + { + "word": "worries", + "freq": 1.45e-05 + }, + { + "word": "barrier", + "freq": 1.41e-05 + }, + { + "word": "belgium", + "freq": 1.41e-05 + }, + { + "word": "casting", + "freq": 1.41e-05 + }, + { + "word": "colours", + "freq": 1.41e-05 + }, + { + "word": "elderly", + "freq": 1.41e-05 + }, + { + "word": "lesbian", + "freq": 1.41e-05 + }, + { + "word": "podcast", + "freq": 1.41e-05 + }, + { + "word": "quietly", + "freq": 1.41e-05 + }, + { + "word": "smiling", + "freq": 1.41e-05 + }, + { + "word": "stating", + "freq": 1.41e-05 + }, + { + "word": "torture", + "freq": 1.41e-05 + }, + { + "word": "wrapped", + "freq": 1.41e-05 + }, + { + "word": "binding", + "freq": 1.38e-05 + }, + { + "word": "buffalo", + "freq": 1.38e-05 + }, + { + "word": "corrupt", + "freq": 1.38e-05 + }, + { + "word": "fifteen", + "freq": 1.38e-05 + }, + { + "word": "heights", + "freq": 1.38e-05 + }, + { + "word": "install", + "freq": 1.38e-05 + }, + { + "word": "justify", + "freq": 1.38e-05 + }, + { + "word": "lecture", + "freq": 1.38e-05 + }, + { + "word": "logical", + "freq": 1.38e-05 + }, + { + "word": "missile", + "freq": 1.38e-05 + }, + { + "word": "muscles", + "freq": 1.38e-05 + }, + { + "word": "revised", + "freq": 1.38e-05 + }, + { + "word": "staring", + "freq": 1.38e-05 + }, + { + "word": "teenage", + "freq": 1.38e-05 + }, + { + "word": "thunder", + "freq": 1.38e-05 + }, + { + "word": "tragedy", + "freq": 1.38e-05 + }, + { + "word": "vincent", + "freq": 1.38e-05 + }, + { + "word": "acquire", + "freq": 1.35e-05 + }, + { + "word": "combine", + "freq": 1.35e-05 + }, + { + "word": "damages", + "freq": 1.35e-05 + }, + { + "word": "embassy", + "freq": 1.35e-05 + }, + { + "word": "gaining", + "freq": 1.35e-05 + }, + { + "word": "miracle", + "freq": 1.35e-05 + }, + { + "word": "playoff", + "freq": 1.35e-05 + }, + { + "word": "precise", + "freq": 1.35e-05 + }, + { + "word": "retreat", + "freq": 1.35e-05 + }, + { + "word": "skilled", + "freq": 1.35e-05 + }, + { + "word": "surgeon", + "freq": 1.35e-05 + }, + { + "word": "washing", + "freq": 1.35e-05 + }, + { + "word": "beijing", + "freq": 1.32e-05 + }, + { + "word": "chasing", + "freq": 1.32e-05 + }, + { + "word": "jewelry", + "freq": 1.32e-05 + }, + { + "word": "prayers", + "freq": 1.32e-05 + }, + { + "word": "pressed", + "freq": 1.32e-05 + }, + { + "word": "pursuit", + "freq": 1.32e-05 + }, + { + "word": "samsung", + "freq": 1.32e-05 + }, + { + "word": "sounded", + "freq": 1.32e-05 + }, + { + "word": "arrives", + "freq": 1.29e-05 + }, + { + "word": "artwork", + "freq": 1.29e-05 + }, + { + "word": "athlete", + "freq": 1.29e-05 + }, + { + "word": "closure", + "freq": 1.29e-05 + }, + { + "word": "convert", + "freq": 1.29e-05 + }, + { + "word": "enabled", + "freq": 1.29e-05 + }, + { + "word": "eternal", + "freq": 1.29e-05 + }, + { + "word": "generic", + "freq": 1.29e-05 + }, + { + "word": "grandma", + "freq": 1.29e-05 + }, + { + "word": "handful", + "freq": 1.29e-05 + }, + { + "word": "happily", + "freq": 1.29e-05 + }, + { + "word": "harmony", + "freq": 1.29e-05 + }, + { + "word": "hurting", + "freq": 1.29e-05 + }, + { + "word": "lasting", + "freq": 1.29e-05 + }, + { + "word": "locally", + "freq": 1.29e-05 + }, + { + "word": "minimal", + "freq": 1.29e-05 + }, + { + "word": "nearest", + "freq": 1.29e-05 + }, + { + "word": "selfish", + "freq": 1.29e-05 + }, + { + "word": "wasting", + "freq": 1.29e-05 + }, + { + "word": "cycling", + "freq": 1.26e-05 + }, + { + "word": "fitting", + "freq": 1.26e-05 + }, + { + "word": "hardest", + "freq": 1.26e-05 + }, + { + "word": "holland", + "freq": 1.26e-05 + }, + { + "word": "honored", + "freq": 1.26e-05 + }, + { + "word": "loading", + "freq": 1.26e-05 + }, + { + "word": "publish", + "freq": 1.26e-05 + }, + { + "word": "rewards", + "freq": 1.26e-05 + }, + { + "word": "watches", + "freq": 1.26e-05 + }, + { + "word": "anxious", + "freq": 1.23e-05 + }, + { + "word": "bombing", + "freq": 1.23e-05 + }, + { + "word": "darling", + "freq": 1.23e-05 + }, + { + "word": "entries", + "freq": 1.23e-05 + }, + { + "word": "evolved", + "freq": 1.23e-05 + }, + { + "word": "exports", + "freq": 1.23e-05 + }, + { + "word": "lawsuit", + "freq": 1.23e-05 + }, + { + "word": "lighter", + "freq": 1.23e-05 + }, + { + "word": "servant", + "freq": 1.23e-05 + }, + { + "word": "tweeted", + "freq": 1.23e-05 + }, + { + "word": "fathers", + "freq": 1.2e-05 + }, + { + "word": "approve", + "freq": 1.2e-05 + }, + { + "word": "cartoon", + "freq": 1.2e-05 + }, + { + "word": "console", + "freq": 1.2e-05 + }, + { + "word": "focuses", + "freq": 1.2e-05 + }, + { + "word": "lacking", + "freq": 1.2e-05 + }, + { + "word": "pockets", + "freq": 1.2e-05 + }, + { + "word": "predict", + "freq": 1.2e-05 + }, + { + "word": "repairs", + "freq": 1.2e-05 + }, + { + "word": "shaking", + "freq": 1.2e-05 + }, + { + "word": "trainer", + "freq": 1.2e-05 + }, + { + "word": "viewing", + "freq": 1.2e-05 + }, + { + "word": "assured", + "freq": 1.17e-05 + }, + { + "word": "austria", + "freq": 1.17e-05 + }, + { + "word": "avoided", + "freq": 1.17e-05 + }, + { + "word": "blanket", + "freq": 1.17e-05 + }, + { + "word": "ethical", + "freq": 1.17e-05 + }, + { + "word": "grabbed", + "freq": 1.17e-05 + }, + { + "word": "horizon", + "freq": 1.17e-05 + }, + { + "word": "hostile", + "freq": 1.17e-05 + }, + { + "word": "notable", + "freq": 1.17e-05 + }, + { + "word": "optical", + "freq": 1.17e-05 + }, + { + "word": "outlook", + "freq": 1.17e-05 + }, + { + "word": "quantum", + "freq": 1.17e-05 + }, + { + "word": "rainbow", + "freq": 1.17e-05 + }, + { + "word": "spencer", + "freq": 1.17e-05 + }, + { + "word": "ashamed", + "freq": 1.15e-05 + }, + { + "word": "compact", + "freq": 1.15e-05 + }, + { + "word": "cooling", + "freq": 1.15e-05 + }, + { + "word": "corners", + "freq": 1.15e-05 + }, + { + "word": "deficit", + "freq": 1.15e-05 + }, + { + "word": "donated", + "freq": 1.15e-05 + }, + { + "word": "grocery", + "freq": 1.15e-05 + }, + { + "word": "halfway", + "freq": 1.15e-05 + }, + { + "word": "happier", + "freq": 1.15e-05 + }, + { + "word": "laundry", + "freq": 1.15e-05 + }, + { + "word": "lifting", + "freq": 1.15e-05 + }, + { + "word": "martial", + "freq": 1.15e-05 + }, + { + "word": "observe", + "freq": 1.15e-05 + }, + { + "word": "packing", + "freq": 1.15e-05 + }, + { + "word": "pokemon", + "freq": 1.15e-05 + }, + { + "word": "reforms", + "freq": 1.15e-05 + }, + { + "word": "unhappy", + "freq": 1.15e-05 + }, + { + "word": "apology", + "freq": 1.12e-05 + }, + { + "word": "bowling", + "freq": 1.12e-05 + }, + { + "word": "declare", + "freq": 1.12e-05 + }, + { + "word": "dresses", + "freq": 1.12e-05 + }, + { + "word": "frankly", + "freq": 1.12e-05 + }, + { + "word": "judging", + "freq": 1.12e-05 + }, + { + "word": "majesty", + "freq": 1.12e-05 + }, + { + "word": "montana", + "freq": 1.12e-05 + }, + { + "word": "murders", + "freq": 1.12e-05 + }, + { + "word": "shooter", + "freq": 1.12e-05 + }, + { + "word": "someday", + "freq": 1.12e-05 + }, + { + "word": "symbols", + "freq": 1.12e-05 + }, + { + "word": "wallace", + "freq": 1.12e-05 + }, + { + "word": "warfare", + "freq": 1.12e-05 + }, + { + "word": "warming", + "freq": 1.12e-05 + }, + { + "word": "persons", + "freq": 1.1e-05 + }, + { + "word": "airline", + "freq": 1.1e-05 + }, + { + "word": "anyways", + "freq": 1.1e-05 + }, + { + "word": "counted", + "freq": 1.1e-05 + }, + { + "word": "crashed", + "freq": 1.1e-05 + }, + { + "word": "denmark", + "freq": 1.1e-05 + }, + { + "word": "enhance", + "freq": 1.1e-05 + }, + { + "word": "induced", + "freq": 1.1e-05 + }, + { + "word": "orlando", + "freq": 1.1e-05 + }, + { + "word": "planted", + "freq": 1.1e-05 + }, + { + "word": "pricing", + "freq": 1.1e-05 + }, + { + "word": "renewed", + "freq": 1.1e-05 + }, + { + "word": "shallow", + "freq": 1.1e-05 + }, + { + "word": "sponsor", + "freq": 1.1e-05 + }, + { + "word": "strings", + "freq": 1.1e-05 + }, + { + "word": "thermal", + "freq": 1.1e-05 + }, + { + "word": "yelling", + "freq": 1.1e-05 + }, + { + "word": "analyst", + "freq": 1.07e-05 + }, + { + "word": "assists", + "freq": 1.07e-05 + }, + { + "word": "bennett", + "freq": 1.07e-05 + }, + { + "word": "bristol", + "freq": 1.07e-05 + }, + { + "word": "crushed", + "freq": 1.07e-05 + }, + { + "word": "essence", + "freq": 1.07e-05 + }, + { + "word": "harvest", + "freq": 1.07e-05 + }, + { + "word": "impacts", + "freq": 1.07e-05 + }, + { + "word": "mineral", + "freq": 1.07e-05 + }, + { + "word": "passive", + "freq": 1.07e-05 + }, + { + "word": "shipped", + "freq": 1.07e-05 + }, + { + "word": "thereby", + "freq": 1.07e-05 + }, + { + "word": "vampire", + "freq": 1.07e-05 + }, + { + "word": "verdict", + "freq": 1.07e-05 + }, + { + "word": "abandon", + "freq": 1.05e-05 + }, + { + "word": "altered", + "freq": 1.05e-05 + }, + { + "word": "bernard", + "freq": 1.05e-05 + }, + { + "word": "bizarre", + "freq": 1.05e-05 + }, + { + "word": "cleaned", + "freq": 1.05e-05 + }, + { + "word": "dignity", + "freq": 1.05e-05 + }, + { + "word": "extract", + "freq": 1.05e-05 + }, + { + "word": "flowing", + "freq": 1.05e-05 + }, + { + "word": "innings", + "freq": 1.05e-05 + }, + { + "word": "mansion", + "freq": 1.05e-05 + }, + { + "word": "mercury", + "freq": 1.05e-05 + }, + { + "word": "needing", + "freq": 1.05e-05 + }, + { + "word": "pending", + "freq": 1.05e-05 + }, + { + "word": "possess", + "freq": 1.05e-05 + }, + { + "word": "praised", + "freq": 1.05e-05 + }, + { + "word": "refuses", + "freq": 1.05e-05 + }, + { + "word": "starter", + "freq": 1.05e-05 + }, + { + "word": "utterly", + "freq": 1.05e-05 + }, + { + "word": "voltage", + "freq": 1.05e-05 + }, + { + "word": "workout", + "freq": 1.05e-05 + }, + { + "word": "advisor", + "freq": 1.02e-05 + }, + { + "word": "bradley", + "freq": 1.02e-05 + }, + { + "word": "brandon", + "freq": 1.02e-05 + }, + { + "word": "broader", + "freq": 1.02e-05 + }, + { + "word": "desires", + "freq": 1.02e-05 + }, + { + "word": "goddess", + "freq": 1.02e-05 + }, + { + "word": "lebanon", + "freq": 1.02e-05 + }, + { + "word": "leonard", + "freq": 1.02e-05 + }, + { + "word": "malcolm", + "freq": 1.02e-05 + }, + { + "word": "massage", + "freq": 1.02e-05 + }, + { + "word": "matched", + "freq": 1.02e-05 + }, + { + "word": "notably", + "freq": 1.02e-05 + }, + { + "word": "relaxed", + "freq": 1.02e-05 + }, + { + "word": "simpson", + "freq": 1.02e-05 + }, + { + "word": "visitor", + "freq": 1.02e-05 + }, + { + "word": "vitamin", + "freq": 1.02e-05 + }, + { + "word": "admiral", + "freq": 1e-05 + }, + { + "word": "arrange", + "freq": 1e-05 + }, + { + "word": "betting", + "freq": 1e-05 + }, + { + "word": "camping", + "freq": 1e-05 + }, + { + "word": "capitol", + "freq": 1e-05 + }, + { + "word": "cottage", + "freq": 1e-05 + }, + { + "word": "dragged", + "freq": 1e-05 + }, + { + "word": "inspire", + "freq": 1e-05 + }, + { + "word": "interim", + "freq": 1e-05 + }, + { + "word": "lottery", + "freq": 1e-05 + }, + { + "word": "outlets", + "freq": 1e-05 + }, + { + "word": "proving", + "freq": 1e-05 + }, + { + "word": "screwed", + "freq": 1e-05 + }, + { + "word": "silicon", + "freq": 1e-05 + } + ], + "9": [ + { + "word": "something", + "freq": 0.000646 + }, + { + "word": "different", + "freq": 0.000389 + }, + { + "word": "including", + "freq": 0.000331 + }, + { + "word": "following", + "freq": 0.000288 + }, + { + "word": "president", + "freq": 0.000282 + }, + { + "word": "important", + "freq": 0.000275 + }, + { + "word": "community", + "freq": 0.000219 + }, + { + "word": "political", + "freq": 0.000195 + }, + { + "word": "according", + "freq": 0.000191 + }, + { + "word": "available", + "freq": 0.000191 + }, + { + "word": "education", + "freq": 0.000191 + }, + { + "word": "beautiful", + "freq": 0.000166 + }, + { + "word": "companies", + "freq": 0.000151 + }, + { + "word": "september", + "freq": 0.000141 + }, + { + "word": "countries", + "freq": 0.000135 + }, + { + "word": "attention", + "freq": 0.000129 + }, + { + "word": "character", + "freq": 0.000129 + }, + { + "word": "situation", + "freq": 0.000123 + }, + { + "word": "currently", + "freq": 0.00012 + }, + { + "word": "financial", + "freq": 0.00012 + }, + { + "word": "difficult", + "freq": 0.000117 + }, + { + "word": "published", + "freq": 0.000117 + }, + { + "word": "australia", + "freq": 0.000115 + }, + { + "word": "committee", + "freq": 0.000102 + }, + { + "word": "potential", + "freq": 0.000102 + }, + { + "word": "treatment", + "freq": 0.000102 + }, + { + "word": "beginning", + "freq": 0.0001 + }, + { + "word": "certainly", + "freq": 0.0001 + }, + { + "word": "described", + "freq": 0.0001 + }, + { + "word": "statement", + "freq": 9.33e-05 + }, + { + "word": "announced", + "freq": 9.12e-05 + }, + { + "word": "continued", + "freq": 9.12e-05 + }, + { + "word": "knowledge", + "freq": 9.12e-05 + }, + { + "word": "developed", + "freq": 8.91e-05 + }, + { + "word": "generally", + "freq": 8.91e-05 + }, + { + "word": "secretary", + "freq": 8.91e-05 + }, + { + "word": "insurance", + "freq": 8.71e-05 + }, + { + "word": "seriously", + "freq": 8.71e-05 + }, + { + "word": "direction", + "freq": 8.51e-05 + }, + { + "word": "operation", + "freq": 8.32e-05 + }, + { + "word": "christmas", + "freq": 8.13e-05 + }, + { + "word": "increased", + "freq": 8.13e-05 + }, + { + "word": "literally", + "freq": 8.13e-05 + }, + { + "word": "necessary", + "freq": 8.13e-05 + }, + { + "word": "resources", + "freq": 8.13e-05 + }, + { + "word": "yesterday", + "freq": 8.13e-05 + }, + { + "word": "professor", + "freq": 7.94e-05 + }, + { + "word": "effective", + "freq": 7.76e-05 + }, + { + "word": "agreement", + "freq": 7.59e-05 + }, + { + "word": "challenge", + "freq": 7.59e-05 + }, + { + "word": "christian", + "freq": 7.59e-05 + }, + { + "word": "equipment", + "freq": 7.59e-05 + }, + { + "word": "otherwise", + "freq": 7.59e-05 + }, + { + "word": "executive", + "freq": 7.41e-05 + }, + { + "word": "therefore", + "freq": 7.41e-05 + }, + { + "word": "condition", + "freq": 7.24e-05 + }, + { + "word": "interview", + "freq": 7.24e-05 + }, + { + "word": "religious", + "freq": 7.08e-05 + }, + { + "word": "wonderful", + "freq": 7.08e-05 + }, + { + "word": "everybody", + "freq": 6.92e-05 + }, + { + "word": "structure", + "freq": 6.92e-05 + }, + { + "word": "mentioned", + "freq": 6.76e-05 + }, + { + "word": "authority", + "freq": 6.46e-05 + }, + { + "word": "happening", + "freq": 6.31e-05 + }, + { + "word": "institute", + "freq": 6.31e-05 + }, + { + "word": "obviously", + "freq": 6.31e-05 + }, + { + "word": "continues", + "freq": 6.17e-05 + }, + { + "word": "dangerous", + "freq": 6.17e-05 + }, + { + "word": "extremely", + "freq": 6.17e-05 + }, + { + "word": "advantage", + "freq": 6.03e-05 + }, + { + "word": "influence", + "freq": 6.03e-05 + }, + { + "word": "marketing", + "freq": 6.03e-05 + }, + { + "word": "completed", + "freq": 5.89e-05 + }, + { + "word": "thousands", + "freq": 5.89e-05 + }, + { + "word": "concerned", + "freq": 5.62e-05 + }, + { + "word": "operating", + "freq": 5.62e-05 + }, + { + "word": "presented", + "freq": 5.62e-05 + }, + { + "word": "technical", + "freq": 5.62e-05 + }, + { + "word": "reference", + "freq": 5.5e-05 + }, + { + "word": "somewhere", + "freq": 5.5e-05 + }, + { + "word": "excellent", + "freq": 5.37e-05 + }, + { + "word": "afternoon", + "freq": 5.25e-05 + }, + { + "word": "assistant", + "freq": 5.25e-05 + }, + { + "word": "emergency", + "freq": 5.25e-05 + }, + { + "word": "providing", + "freq": 5.25e-05 + }, + { + "word": "fantastic", + "freq": 5.13e-05 + }, + { + "word": "expensive", + "freq": 4.9e-05 + }, + { + "word": "connected", + "freq": 4.79e-05 + }, + { + "word": "performed", + "freq": 4.79e-05 + }, + { + "word": "suggested", + "freq": 4.79e-05 + }, + { + "word": "supported", + "freq": 4.79e-05 + }, + { + "word": "surprised", + "freq": 4.79e-05 + }, + { + "word": "transport", + "freq": 4.79e-05 + }, + { + "word": "confirmed", + "freq": 4.68e-05 + }, + { + "word": "regarding", + "freq": 4.68e-05 + }, + { + "word": "relations", + "freq": 4.68e-05 + }, + { + "word": "candidate", + "freq": 4.57e-05 + }, + { + "word": "emotional", + "freq": 4.57e-05 + }, + { + "word": "interests", + "freq": 4.57e-05 + }, + { + "word": "listening", + "freq": 4.57e-05 + }, + { + "word": "apartment", + "freq": 4.47e-05 + }, + { + "word": "committed", + "freq": 4.47e-05 + }, + { + "word": "corporate", + "freq": 4.37e-05 + }, + { + "word": "basically", + "freq": 4.27e-05 + }, + { + "word": "collected", + "freq": 4.27e-05 + }, + { + "word": "determine", + "freq": 4.27e-05 + }, + { + "word": "remaining", + "freq": 4.27e-05 + }, + { + "word": "delivered", + "freq": 4.17e-05 + }, + { + "word": "estimated", + "freq": 4.17e-05 + }, + { + "word": "ourselves", + "freq": 4.17e-05 + }, + { + "word": "selection", + "freq": 4.17e-05 + }, + { + "word": "typically", + "freq": 4.17e-05 + }, + { + "word": "breakfast", + "freq": 4.07e-05 + }, + { + "word": "destroyed", + "freq": 4.07e-05 + }, + { + "word": "essential", + "freq": 4.07e-05 + }, + { + "word": "perfectly", + "freq": 4.07e-05 + }, + { + "word": "recommend", + "freq": 4.07e-05 + }, + { + "word": "newspaper", + "freq": 3.98e-05 + }, + { + "word": "territory", + "freq": 3.98e-05 + }, + { + "word": "appointed", + "freq": 3.89e-05 + }, + { + "word": "boyfriend", + "freq": 3.89e-05 + }, + { + "word": "explained", + "freq": 3.89e-05 + }, + { + "word": "receiving", + "freq": 3.89e-05 + }, + { + "word": "wednesday", + "freq": 3.89e-05 + }, + { + "word": "conducted", + "freq": 3.8e-05 + }, + { + "word": "dedicated", + "freq": 3.8e-05 + }, + { + "word": "represent", + "freq": 3.8e-05 + }, + { + "word": "favourite", + "freq": 3.72e-05 + }, + { + "word": "permanent", + "freq": 3.72e-05 + }, + { + "word": "programme", + "freq": 3.72e-05 + }, + { + "word": "depending", + "freq": 3.63e-05 + }, + { + "word": "exclusive", + "freq": 3.63e-05 + }, + { + "word": "hopefully", + "freq": 3.63e-05 + }, + { + "word": "personnel", + "freq": 3.63e-05 + }, + { + "word": "brilliant", + "freq": 3.55e-05 + }, + { + "word": "existence", + "freq": 3.55e-05 + }, + { + "word": "expansion", + "freq": 3.47e-05 + }, + { + "word": "reporting", + "freq": 3.47e-05 + }, + { + "word": "worldwide", + "freq": 3.47e-05 + }, + { + "word": "francisco", + "freq": 3.39e-05 + }, + { + "word": "secondary", + "freq": 3.39e-05 + }, + { + "word": "suffering", + "freq": 3.39e-05 + }, + { + "word": "wondering", + "freq": 3.39e-05 + }, + { + "word": "expressed", + "freq": 3.31e-05 + }, + { + "word": "hollywood", + "freq": 3.31e-05 + }, + { + "word": "immediate", + "freq": 3.31e-05 + }, + { + "word": "principal", + "freq": 3.31e-05 + }, + { + "word": "recognize", + "freq": 3.31e-05 + }, + { + "word": "regularly", + "freq": 3.31e-05 + }, + { + "word": "childhood", + "freq": 3.24e-05 + }, + { + "word": "commander", + "freq": 3.24e-05 + }, + { + "word": "democracy", + "freq": 3.24e-05 + }, + { + "word": "organized", + "freq": 3.24e-05 + }, + { + "word": "protected", + "freq": 3.24e-05 + }, + { + "word": "recording", + "freq": 3.24e-05 + }, + { + "word": "solutions", + "freq": 3.16e-05 + }, + { + "word": "tradition", + "freq": 3.16e-05 + }, + { + "word": "celebrate", + "freq": 3.09e-05 + }, + { + "word": "chocolate", + "freq": 3.09e-05 + }, + { + "word": "criticism", + "freq": 3.09e-05 + }, + { + "word": "extensive", + "freq": 3.09e-05 + }, + { + "word": "formation", + "freq": 3.09e-05 + }, + { + "word": "initially", + "freq": 3.09e-05 + }, + { + "word": "returning", + "freq": 3.09e-05 + }, + { + "word": "universal", + "freq": 3.09e-05 + }, + { + "word": "involving", + "freq": 3.02e-05 + }, + { + "word": "meanwhile", + "freq": 3.02e-05 + }, + { + "word": "naturally", + "freq": 3.02e-05 + }, + { + "word": "practical", + "freq": 3.02e-05 + }, + { + "word": "primarily", + "freq": 3.02e-05 + }, + { + "word": "resulting", + "freq": 3.02e-05 + }, + { + "word": "temporary", + "freq": 3.02e-05 + }, + { + "word": "elizabeth", + "freq": 2.95e-05 + }, + { + "word": "household", + "freq": 2.95e-05 + }, + { + "word": "purchased", + "freq": 2.95e-05 + }, + { + "word": "technique", + "freq": 2.95e-05 + }, + { + "word": "adventure", + "freq": 2.88e-05 + }, + { + "word": "carefully", + "freq": 2.88e-05 + }, + { + "word": "elsewhere", + "freq": 2.88e-05 + }, + { + "word": "establish", + "freq": 2.88e-05 + }, + { + "word": "extension", + "freq": 2.88e-05 + }, + { + "word": "increases", + "freq": 2.88e-05 + }, + { + "word": "offensive", + "freq": 2.88e-05 + }, + { + "word": "processes", + "freq": 2.88e-05 + }, + { + "word": "qualified", + "freq": 2.88e-05 + }, + { + "word": "sensitive", + "freq": 2.88e-05 + }, + { + "word": "alongside", + "freq": 2.82e-05 + }, + { + "word": "contained", + "freq": 2.82e-05 + }, + { + "word": "discovery", + "freq": 2.82e-05 + }, + { + "word": "discussed", + "freq": 2.82e-05 + }, + { + "word": "encourage", + "freq": 2.82e-05 + }, + { + "word": "featuring", + "freq": 2.82e-05 + }, + { + "word": "producing", + "freq": 2.82e-05 + }, + { + "word": "scheduled", + "freq": 2.82e-05 + }, + { + "word": "awareness", + "freq": 2.75e-05 + }, + { + "word": "guarantee", + "freq": 2.75e-05 + }, + { + "word": "happiness", + "freq": 2.75e-05 + }, + { + "word": "procedure", + "freq": 2.75e-05 + }, + { + "word": "confident", + "freq": 2.69e-05 + }, + { + "word": "liverpool", + "freq": 2.69e-05 + }, + { + "word": "strategic", + "freq": 2.69e-05 + }, + { + "word": "attempted", + "freq": 2.63e-05 + }, + { + "word": "economics", + "freq": 2.63e-05 + }, + { + "word": "efficient", + "freq": 2.63e-05 + }, + { + "word": "expecting", + "freq": 2.63e-05 + }, + { + "word": "evolution", + "freq": 2.57e-05 + }, + { + "word": "promotion", + "freq": 2.57e-05 + }, + { + "word": "telephone", + "freq": 2.57e-05 + }, + { + "word": "abandoned", + "freq": 2.51e-05 + }, + { + "word": "alexander", + "freq": 2.51e-05 + }, + { + "word": "convinced", + "freq": 2.51e-05 + }, + { + "word": "describes", + "freq": 2.51e-05 + }, + { + "word": "forgotten", + "freq": 2.51e-05 + }, + { + "word": "installed", + "freq": 2.51e-05 + }, + { + "word": "ownership", + "freq": 2.51e-05 + }, + { + "word": "spiritual", + "freq": 2.51e-05 + }, + { + "word": "associate", + "freq": 2.45e-05 + }, + { + "word": "broadcast", + "freq": 2.45e-05 + }, + { + "word": "cambridge", + "freq": 2.45e-05 + }, + { + "word": "narrative", + "freq": 2.45e-05 + }, + { + "word": "reduction", + "freq": 2.45e-05 + }, + { + "word": "amendment", + "freq": 2.4e-05 + }, + { + "word": "defensive", + "freq": 2.4e-05 + }, + { + "word": "passenger", + "freq": 2.4e-05 + }, + { + "word": "improving", + "freq": 2.34e-05 + }, + { + "word": "introduce", + "freq": 2.34e-05 + }, + { + "word": "automatic", + "freq": 2.29e-05 + }, + { + "word": "behaviour", + "freq": 2.29e-05 + }, + { + "word": "frequency", + "freq": 2.29e-05 + }, + { + "word": "landscape", + "freq": 2.29e-05 + }, + { + "word": "melbourne", + "freq": 2.29e-05 + }, + { + "word": "microsoft", + "freq": 2.29e-05 + }, + { + "word": "objective", + "freq": 2.29e-05 + }, + { + "word": "residence", + "freq": 2.29e-05 + }, + { + "word": "searching", + "freq": 2.29e-05 + }, + { + "word": "wisconsin", + "freq": 2.29e-05 + }, + { + "word": "chemistry", + "freq": 2.24e-05 + }, + { + "word": "concluded", + "freq": 2.24e-05 + }, + { + "word": "exception", + "freq": 2.24e-05 + }, + { + "word": "preferred", + "freq": 2.24e-05 + }, + { + "word": "referring", + "freq": 2.24e-05 + }, + { + "word": "screaming", + "freq": 2.24e-05 + }, + { + "word": "singapore", + "freq": 2.24e-05 + }, + { + "word": "terrorist", + "freq": 2.24e-05 + }, + { + "word": "delicious", + "freq": 2.19e-05 + }, + { + "word": "generated", + "freq": 2.19e-05 + }, + { + "word": "impressed", + "freq": 2.19e-05 + }, + { + "word": "indicated", + "freq": 2.19e-05 + }, + { + "word": "principle", + "freq": 2.19e-05 + }, + { + "word": "defending", + "freq": 2.14e-05 + }, + { + "word": "infection", + "freq": 2.14e-05 + }, + { + "word": "instagram", + "freq": 2.14e-05 + }, + { + "word": "intention", + "freq": 2.14e-05 + }, + { + "word": "pregnancy", + "freq": 2.14e-05 + }, + { + "word": "preparing", + "freq": 2.14e-05 + }, + { + "word": "prominent", + "freq": 2.14e-05 + }, + { + "word": "requested", + "freq": 2.14e-05 + }, + { + "word": "satellite", + "freq": 2.14e-05 + }, + { + "word": "centuries", + "freq": 2.09e-05 + }, + { + "word": "communist", + "freq": 2.09e-05 + }, + { + "word": "complaint", + "freq": 2.09e-05 + }, + { + "word": "component", + "freq": 2.09e-05 + }, + { + "word": "desperate", + "freq": 2.09e-05 + }, + { + "word": "diversity", + "freq": 2.09e-05 + }, + { + "word": "submitted", + "freq": 2.09e-05 + }, + { + "word": "suspended", + "freq": 2.09e-05 + }, + { + "word": "attending", + "freq": 2.04e-05 + }, + { + "word": "attracted", + "freq": 2.04e-05 + }, + { + "word": "minnesota", + "freq": 2.04e-05 + }, + { + "word": "stability", + "freq": 2.04e-05 + }, + { + "word": "estimates", + "freq": 2e-05 + }, + { + "word": "finishing", + "freq": 2e-05 + }, + { + "word": "separated", + "freq": 2e-05 + }, + { + "word": "similarly", + "freq": 2e-05 + }, + { + "word": "attacking", + "freq": 1.95e-05 + }, + { + "word": "celebrity", + "freq": 1.95e-05 + }, + { + "word": "execution", + "freq": 1.95e-05 + }, + { + "word": "followers", + "freq": 1.95e-05 + }, + { + "word": "framework", + "freq": 1.95e-05 + }, + { + "word": "franchise", + "freq": 1.95e-05 + }, + { + "word": "furniture", + "freq": 1.95e-05 + }, + { + "word": "lifestyle", + "freq": 1.95e-05 + }, + { + "word": "responses", + "freq": 1.95e-05 + }, + { + "word": "sacrifice", + "freq": 1.95e-05 + }, + { + "word": "witnesses", + "freq": 1.95e-05 + }, + { + "word": "breathing", + "freq": 1.91e-05 + }, + { + "word": "dependent", + "freq": 1.91e-05 + }, + { + "word": "edinburgh", + "freq": 1.91e-05 + }, + { + "word": "promoting", + "freq": 1.91e-05 + }, + { + "word": "satisfied", + "freq": 1.91e-05 + }, + { + "word": "volunteer", + "freq": 1.91e-05 + }, + { + "word": "cleveland", + "freq": 1.86e-05 + }, + { + "word": "hilarious", + "freq": 1.86e-05 + }, + { + "word": "mechanism", + "freq": 1.86e-05 + }, + { + "word": "radiation", + "freq": 1.86e-05 + }, + { + "word": "traveling", + "freq": 1.86e-05 + }, + { + "word": "addressed", + "freq": 1.82e-05 + }, + { + "word": "classical", + "freq": 1.82e-05 + }, + { + "word": "encounter", + "freq": 1.82e-05 + }, + { + "word": "occasions", + "freq": 1.82e-05 + }, + { + "word": "responded", + "freq": 1.82e-05 + }, + { + "word": "virtually", + "freq": 1.82e-05 + }, + { + "word": "gathering", + "freq": 1.78e-05 + }, + { + "word": "indonesia", + "freq": 1.78e-05 + }, + { + "word": "inspector", + "freq": 1.78e-05 + }, + { + "word": "recovered", + "freq": 1.78e-05 + }, + { + "word": "signature", + "freq": 1.78e-05 + }, + { + "word": "copyright", + "freq": 1.74e-05 + }, + { + "word": "indicates", + "freq": 1.74e-05 + }, + { + "word": "municipal", + "freq": 1.74e-05 + }, + { + "word": "reactions", + "freq": 1.74e-05 + }, + { + "word": "terrorism", + "freq": 1.74e-05 + }, + { + "word": "barcelona", + "freq": 1.7e-05 + }, + { + "word": "brazilian", + "freq": 1.7e-05 + }, + { + "word": "certified", + "freq": 1.7e-05 + }, + { + "word": "coalition", + "freq": 1.7e-05 + }, + { + "word": "instantly", + "freq": 1.7e-05 + }, + { + "word": "legendary", + "freq": 1.7e-05 + }, + { + "word": "reception", + "freq": 1.7e-05 + }, + { + "word": "sponsored", + "freq": 1.7e-05 + }, + { + "word": "substance", + "freq": 1.7e-05 + }, + { + "word": "argentina", + "freq": 1.66e-05 + }, + { + "word": "baltimore", + "freq": 1.66e-05 + }, + { + "word": "cancelled", + "freq": 1.66e-05 + }, + { + "word": "charlotte", + "freq": 1.66e-05 + }, + { + "word": "competing", + "freq": 1.66e-05 + }, + { + "word": "departure", + "freq": 1.66e-05 + }, + { + "word": "explosion", + "freq": 1.66e-05 + }, + { + "word": "integrity", + "freq": 1.66e-05 + }, + { + "word": "lightning", + "freq": 1.66e-05 + }, + { + "word": "socialist", + "freq": 1.66e-05 + }, + { + "word": "streaming", + "freq": 1.66e-05 + }, + { + "word": "abilities", + "freq": 1.62e-05 + }, + { + "word": "converted", + "freq": 1.62e-05 + }, + { + "word": "correctly", + "freq": 1.62e-05 + }, + { + "word": "detective", + "freq": 1.62e-05 + }, + { + "word": "gradually", + "freq": 1.62e-05 + }, + { + "word": "highlight", + "freq": 1.62e-05 + }, + { + "word": "identical", + "freq": 1.62e-05 + }, + { + "word": "scientist", + "freq": 1.62e-05 + }, + { + "word": "tennessee", + "freq": 1.62e-05 + }, + { + "word": "convicted", + "freq": 1.58e-05 + }, + { + "word": "developer", + "freq": 1.58e-05 + }, + { + "word": "diagnosis", + "freq": 1.58e-05 + }, + { + "word": "dismissed", + "freq": 1.58e-05 + }, + { + "word": "implement", + "freq": 1.58e-05 + }, + { + "word": "jerusalem", + "freq": 1.58e-05 + }, + { + "word": "marijuana", + "freq": 1.58e-05 + }, + { + "word": "pollution", + "freq": 1.58e-05 + }, + { + "word": "precisely", + "freq": 1.58e-05 + }, + { + "word": "privilege", + "freq": 1.58e-05 + }, + { + "word": "proposals", + "freq": 1.58e-05 + }, + { + "word": "confusion", + "freq": 1.55e-05 + }, + { + "word": "louisiana", + "freq": 1.55e-05 + }, + { + "word": "nightmare", + "freq": 1.55e-05 + }, + { + "word": "overnight", + "freq": 1.55e-05 + }, + { + "word": "partially", + "freq": 1.55e-05 + }, + { + "word": "spreading", + "freq": 1.55e-05 + }, + { + "word": "sustained", + "freq": 1.55e-05 + }, + { + "word": "accepting", + "freq": 1.51e-05 + }, + { + "word": "animation", + "freq": 1.51e-05 + }, + { + "word": "conscious", + "freq": 1.51e-05 + }, + { + "word": "displayed", + "freq": 1.51e-05 + }, + { + "word": "dominated", + "freq": 1.51e-05 + }, + { + "word": "nominated", + "freq": 1.51e-05 + }, + { + "word": "physician", + "freq": 1.51e-05 + }, + { + "word": "shoulders", + "freq": 1.51e-05 + }, + { + "word": "ukrainian", + "freq": 1.51e-05 + }, + { + "word": "anonymous", + "freq": 1.48e-05 + }, + { + "word": "chemicals", + "freq": 1.48e-05 + }, + { + "word": "expanding", + "freq": 1.48e-05 + }, + { + "word": "testimony", + "freq": 1.48e-05 + }, + { + "word": "accidents", + "freq": 1.45e-05 + }, + { + "word": "apologize", + "freq": 1.45e-05 + }, + { + "word": "gentleman", + "freq": 1.45e-05 + }, + { + "word": "liability", + "freq": 1.45e-05 + }, + { + "word": "manhattan", + "freq": 1.45e-05 + }, + { + "word": "perceived", + "freq": 1.45e-05 + }, + { + "word": "realistic", + "freq": 1.45e-05 + }, + { + "word": "vancouver", + "freq": 1.45e-05 + }, + { + "word": "admission", + "freq": 1.41e-05 + }, + { + "word": "appearing", + "freq": 1.41e-05 + }, + { + "word": "believing", + "freq": 1.41e-05 + }, + { + "word": "classroom", + "freq": 1.41e-05 + }, + { + "word": "eliminate", + "freq": 1.41e-05 + }, + { + "word": "incidents", + "freq": 1.41e-05 + }, + { + "word": "portfolio", + "freq": 1.41e-05 + }, + { + "word": "replacing", + "freq": 1.41e-05 + }, + { + "word": "screening", + "freq": 1.41e-05 + }, + { + "word": "southeast", + "freq": 1.41e-05 + }, + { + "word": "suspected", + "freq": 1.41e-05 + }, + { + "word": "violation", + "freq": 1.41e-05 + }, + { + "word": "addiction", + "freq": 1.38e-05 + }, + { + "word": "depressed", + "freq": 1.38e-05 + }, + { + "word": "disorders", + "freq": 1.38e-05 + }, + { + "word": "graduated", + "freq": 1.38e-05 + }, + { + "word": "inflation", + "freq": 1.38e-05 + }, + { + "word": "intensity", + "freq": 1.38e-05 + }, + { + "word": "inventory", + "freq": 1.38e-05 + }, + { + "word": "libraries", + "freq": 1.38e-05 + }, + { + "word": "migration", + "freq": 1.38e-05 + }, + { + "word": "motivated", + "freq": 1.38e-05 + }, + { + "word": "northwest", + "freq": 1.38e-05 + }, + { + "word": "provision", + "freq": 1.38e-05 + }, + { + "word": "releasing", + "freq": 1.38e-05 + }, + { + "word": "requiring", + "freq": 1.38e-05 + }, + { + "word": "succeeded", + "freq": 1.38e-05 + }, + { + "word": "wrestling", + "freq": 1.38e-05 + }, + { + "word": "addresses", + "freq": 1.35e-05 + }, + { + "word": "companion", + "freq": 1.35e-05 + }, + { + "word": "comparing", + "freq": 1.35e-05 + }, + { + "word": "demanding", + "freq": 1.35e-05 + }, + { + "word": "financing", + "freq": 1.35e-05 + }, + { + "word": "gentlemen", + "freq": 1.35e-05 + }, + { + "word": "mandatory", + "freq": 1.35e-05 + }, + { + "word": "permitted", + "freq": 1.35e-05 + }, + { + "word": "publisher", + "freq": 1.35e-05 + }, + { + "word": "sentences", + "freq": 1.35e-05 + }, + { + "word": "caribbean", + "freq": 1.32e-05 + }, + { + "word": "electoral", + "freq": 1.32e-05 + }, + { + "word": "excessive", + "freq": 1.32e-05 + }, + { + "word": "exercises", + "freq": 1.32e-05 + }, + { + "word": "governing", + "freq": 1.32e-05 + }, + { + "word": "interface", + "freq": 1.32e-05 + }, + { + "word": "predicted", + "freq": 1.32e-05 + }, + { + "word": "reflected", + "freq": 1.32e-05 + }, + { + "word": "strongest", + "freq": 1.32e-05 + }, + { + "word": "victorian", + "freq": 1.32e-05 + }, + { + "word": "alternate", + "freq": 1.29e-05 + }, + { + "word": "catherine", + "freq": 1.29e-05 + }, + { + "word": "cognitive", + "freq": 1.29e-05 + }, + { + "word": "editorial", + "freq": 1.29e-05 + }, + { + "word": "investing", + "freq": 1.29e-05 + }, + { + "word": "molecular", + "freq": 1.29e-05 + }, + { + "word": "promising", + "freq": 1.29e-05 + }, + { + "word": "purchases", + "freq": 1.29e-05 + }, + { + "word": "respected", + "freq": 1.29e-05 + }, + { + "word": "breakdown", + "freq": 1.26e-05 + }, + { + "word": "civilians", + "freq": 1.26e-05 + }, + { + "word": "conflicts", + "freq": 1.26e-05 + }, + { + "word": "consensus", + "freq": 1.26e-05 + }, + { + "word": "donations", + "freq": 1.26e-05 + }, + { + "word": "genuinely", + "freq": 1.26e-05 + }, + { + "word": "hurricane", + "freq": 1.26e-05 + }, + { + "word": "nutrition", + "freq": 1.26e-05 + }, + { + "word": "seemingly", + "freq": 1.26e-05 + }, + { + "word": "southwest", + "freq": 1.26e-05 + }, + { + "word": "unlimited", + "freq": 1.26e-05 + }, + { + "word": "delighted", + "freq": 1.23e-05 + }, + { + "word": "disappear", + "freq": 1.23e-05 + }, + { + "word": "invisible", + "freq": 1.23e-05 + }, + { + "word": "prevented", + "freq": 1.23e-05 + }, + { + "word": "sentenced", + "freq": 1.23e-05 + }, + { + "word": "surrender", + "freq": 1.23e-05 + }, + { + "word": "architect", + "freq": 1.2e-05 + }, + { + "word": "exhausted", + "freq": 1.2e-05 + }, + { + "word": "organised", + "freq": 1.2e-05 + }, + { + "word": "particles", + "freq": 1.2e-05 + }, + { + "word": "penalties", + "freq": 1.2e-05 + }, + { + "word": "societies", + "freq": 1.2e-05 + }, + { + "word": "struggles", + "freq": 1.2e-05 + }, + { + "word": "variation", + "freq": 1.2e-05 + }, + { + "word": "warehouse", + "freq": 1.2e-05 + }, + { + "word": "affecting", + "freq": 1.17e-05 + }, + { + "word": "answering", + "freq": 1.17e-05 + }, + { + "word": "commented", + "freq": 1.17e-05 + }, + { + "word": "computing", + "freq": 1.17e-05 + }, + { + "word": "continent", + "freq": 1.17e-05 + }, + { + "word": "emissions", + "freq": 1.17e-05 + }, + { + "word": "measuring", + "freq": 1.17e-05 + }, + { + "word": "miserable", + "freq": 1.17e-05 + }, + { + "word": "newcastle", + "freq": 1.17e-05 + }, + { + "word": "preserved", + "freq": 1.17e-05 + }, + { + "word": "prospects", + "freq": 1.17e-05 + }, + { + "word": "supporter", + "freq": 1.17e-05 + }, + { + "word": "testament", + "freq": 1.17e-05 + }, + { + "word": "allegedly", + "freq": 1.15e-05 + }, + { + "word": "ambulance", + "freq": 1.15e-05 + }, + { + "word": "batteries", + "freq": 1.15e-05 + }, + { + "word": "cigarette", + "freq": 1.15e-05 + }, + { + "word": "detection", + "freq": 1.15e-05 + }, + { + "word": "elaborate", + "freq": 1.15e-05 + }, + { + "word": "expertise", + "freq": 1.15e-05 + }, + { + "word": "exploring", + "freq": 1.15e-05 + }, + { + "word": "instances", + "freq": 1.15e-05 + }, + { + "word": "intensive", + "freq": 1.15e-05 + }, + { + "word": "northeast", + "freq": 1.15e-05 + }, + { + "word": "qualities", + "freq": 1.15e-05 + }, + { + "word": "specified", + "freq": 1.15e-05 + }, + { + "word": "switching", + "freq": 1.15e-05 + }, + { + "word": "tolerance", + "freq": 1.15e-05 + }, + { + "word": "belonging", + "freq": 1.12e-05 + }, + { + "word": "diagnosed", + "freq": 1.12e-05 + }, + { + "word": "authentic", + "freq": 1.1e-05 + }, + { + "word": "backwards", + "freq": 1.1e-05 + }, + { + "word": "extending", + "freq": 1.1e-05 + }, + { + "word": "ignorance", + "freq": 1.1e-05 + }, + { + "word": "immigrant", + "freq": 1.1e-05 + }, + { + "word": "inspiring", + "freq": 1.1e-05 + }, + { + "word": "invention", + "freq": 1.1e-05 + }, + { + "word": "placement", + "freq": 1.1e-05 + }, + { + "word": "transform", + "freq": 1.1e-05 + }, + { + "word": "witnessed", + "freq": 1.1e-05 + }, + { + "word": "workplace", + "freq": 1.1e-05 + }, + { + "word": "yorkshire", + "freq": 1.1e-05 + }, + { + "word": "achieving", + "freq": 1.07e-05 + }, + { + "word": "amsterdam", + "freq": 1.07e-05 + }, + { + "word": "considers", + "freq": 1.07e-05 + }, + { + "word": "container", + "freq": 1.07e-05 + }, + { + "word": "paragraph", + "freq": 1.07e-05 + }, + { + "word": "peninsula", + "freq": 1.07e-05 + }, + { + "word": "remainder", + "freq": 1.07e-05 + }, + { + "word": "sentiment", + "freq": 1.07e-05 + }, + { + "word": "surviving", + "freq": 1.07e-05 + }, + { + "word": "threshold", + "freq": 1.07e-05 + }, + { + "word": "aesthetic", + "freq": 1.05e-05 + }, + { + "word": "algorithm", + "freq": 1.05e-05 + }, + { + "word": "confusing", + "freq": 1.05e-05 + }, + { + "word": "dimension", + "freq": 1.05e-05 + }, + { + "word": "favorites", + "freq": 1.05e-05 + }, + { + "word": "graduates", + "freq": 1.05e-05 + }, + { + "word": "inclusion", + "freq": 1.05e-05 + }, + { + "word": "isolation", + "freq": 1.05e-05 + }, + { + "word": "justified", + "freq": 1.05e-05 + }, + { + "word": "machinery", + "freq": 1.05e-05 + }, + { + "word": "subscribe", + "freq": 1.05e-05 + }, + { + "word": "transfers", + "freq": 1.05e-05 + }, + { + "word": "activated", + "freq": 1.02e-05 + }, + { + "word": "attitudes", + "freq": 1.02e-05 + }, + { + "word": "hampshire", + "freq": 1.02e-05 + }, + { + "word": "milwaukee", + "freq": 1.02e-05 + }, + { + "word": "orchestra", + "freq": 1.02e-05 + }, + { + "word": "pakistani", + "freq": 1.02e-05 + }, + { + "word": "precision", + "freq": 1.02e-05 + }, + { + "word": "privately", + "freq": 1.02e-05 + }, + { + "word": "reasoning", + "freq": 1.02e-05 + }, + { + "word": "specially", + "freq": 1.02e-05 + }, + { + "word": "struggled", + "freq": 1.02e-05 + }, + { + "word": "voluntary", + "freq": 1.02e-05 + }, + { + "word": "contacted", + "freq": 1e-05 + }, + { + "word": "decreased", + "freq": 1e-05 + }, + { + "word": "jefferson", + "freq": 1e-05 + }, + { + "word": "magnitude", + "freq": 1e-05 + }, + { + "word": "publicity", + "freq": 1e-05 + }, + { + "word": "telegraph", + "freq": 1e-05 + }, + { + "word": "affiliate", + "freq": 9.77e-06 + }, + { + "word": "cathedral", + "freq": 9.77e-06 + }, + { + "word": "initiated", + "freq": 9.77e-06 + }, + { + "word": "injection", + "freq": 9.77e-06 + }, + { + "word": "launching", + "freq": 9.77e-06 + }, + { + "word": "negotiate", + "freq": 9.77e-06 + }, + { + "word": "palestine", + "freq": 9.77e-06 + }, + { + "word": "projected", + "freq": 9.77e-06 + }, + { + "word": "quarterly", + "freq": 9.77e-06 + }, + { + "word": "resistant", + "freq": 9.77e-06 + }, + { + "word": "successor", + "freq": 9.77e-06 + }, + { + "word": "targeting", + "freq": 9.77e-06 + }, + { + "word": "triggered", + "freq": 9.77e-06 + }, + { + "word": "uncertain", + "freq": 9.77e-06 + }, + { + "word": "colleague", + "freq": 9.55e-06 + }, + { + "word": "construct", + "freq": 9.55e-06 + }, + { + "word": "defendant", + "freq": 9.55e-06 + }, + { + "word": "geography", + "freq": 9.55e-06 + }, + { + "word": "nashville", + "freq": 9.55e-06 + }, + { + "word": "regulated", + "freq": 9.55e-06 + }, + { + "word": "travelled", + "freq": 9.55e-06 + }, + { + "word": "condemned", + "freq": 9.33e-06 + }, + { + "word": "curiosity", + "freq": 9.33e-06 + }, + { + "word": "explosive", + "freq": 9.33e-06 + }, + { + "word": "fortunate", + "freq": 9.33e-06 + }, + { + "word": "incentive", + "freq": 9.33e-06 + }, + { + "word": "inclusive", + "freq": 9.33e-06 + }, + { + "word": "memorable", + "freq": 9.33e-06 + }, + { + "word": "occurring", + "freq": 9.33e-06 + }, + { + "word": "realizing", + "freq": 9.33e-06 + }, + { + "word": "revealing", + "freq": 9.33e-06 + }, + { + "word": "scattered", + "freq": 9.33e-06 + }, + { + "word": "sexuality", + "freq": 9.33e-06 + }, + { + "word": "suspicion", + "freq": 9.33e-06 + }, + { + "word": "therapist", + "freq": 9.33e-06 + }, + { + "word": "variables", + "freq": 9.33e-06 + }, + { + "word": "wholesale", + "freq": 9.33e-06 + }, + { + "word": "artillery", + "freq": 9.12e-06 + }, + { + "word": "assembled", + "freq": 9.12e-06 + }, + { + "word": "clearance", + "freq": 9.12e-06 + }, + { + "word": "countless", + "freq": 9.12e-06 + }, + { + "word": "detention", + "freq": 9.12e-06 + }, + { + "word": "forbidden", + "freq": 9.12e-06 + }, + { + "word": "kidnapped", + "freq": 9.12e-06 + }, + { + "word": "maintains", + "freq": 9.12e-06 + }, + { + "word": "packaging", + "freq": 9.12e-06 + }, + { + "word": "processed", + "freq": 9.12e-06 + }, + { + "word": "touchdown", + "freq": 9.12e-06 + }, + { + "word": "underwear", + "freq": 9.12e-06 + }, + { + "word": "ambitious", + "freq": 8.91e-06 + }, + { + "word": "appealing", + "freq": 8.91e-06 + }, + { + "word": "collision", + "freq": 8.91e-06 + }, + { + "word": "corrected", + "freq": 8.91e-06 + }, + { + "word": "factories", + "freq": 8.91e-06 + }, + { + "word": "frederick", + "freq": 8.91e-06 + }, + { + "word": "licensing", + "freq": 8.91e-06 + }, + { + "word": "messenger", + "freq": 8.91e-06 + }, + { + "word": "norwegian", + "freq": 8.91e-06 + }, + { + "word": "salvation", + "freq": 8.91e-06 + }, + { + "word": "sanctions", + "freq": 8.91e-06 + }, + { + "word": "sovereign", + "freq": 8.91e-06 + }, + { + "word": "synthetic", + "freq": 8.91e-06 + }, + { + "word": "varieties", + "freq": 8.91e-06 + }, + { + "word": "aggregate", + "freq": 8.71e-06 + }, + { + "word": "announces", + "freq": 8.71e-06 + }, + { + "word": "composite", + "freq": 8.71e-06 + }, + { + "word": "decorated", + "freq": 8.71e-06 + }, + { + "word": "delegates", + "freq": 8.71e-06 + }, + { + "word": "fashioned", + "freq": 8.71e-06 + }, + { + "word": "generator", + "freq": 8.71e-06 + }, + { + "word": "incorrect", + "freq": 8.71e-06 + }, + { + "word": "rebellion", + "freq": 8.71e-06 + }, + { + "word": "recipient", + "freq": 8.71e-06 + }, + { + "word": "terrified", + "freq": 8.71e-06 + }, + { + "word": "vegetable", + "freq": 8.71e-06 + }, + { + "word": "workforce", + "freq": 8.71e-06 + }, + { + "word": "butterfly", + "freq": 8.51e-06 + }, + { + "word": "directory", + "freq": 8.51e-06 + }, + { + "word": "discharge", + "freq": 8.51e-06 + }, + { + "word": "discusses", + "freq": 8.51e-06 + }, + { + "word": "henderson", + "freq": 8.51e-06 + }, + { + "word": "inability", + "freq": 8.51e-06 + }, + { + "word": "leicester", + "freq": 8.51e-06 + }, + { + "word": "obtaining", + "freq": 8.51e-06 + }, + { + "word": "remembers", + "freq": 8.51e-06 + }, + { + "word": "sanctuary", + "freq": 8.51e-06 + }, + { + "word": "translate", + "freq": 8.51e-06 + }, + { + "word": "treasurer", + "freq": 8.51e-06 + }, + { + "word": "venezuela", + "freq": 8.51e-06 + }, + { + "word": "affection", + "freq": 8.32e-06 + }, + { + "word": "collapsed", + "freq": 8.32e-06 + }, + { + "word": "competent", + "freq": 8.32e-06 + }, + { + "word": "excluding", + "freq": 8.32e-06 + }, + { + "word": "gratitude", + "freq": 8.32e-06 + }, + { + "word": "indicator", + "freq": 8.32e-06 + }, + { + "word": "molecules", + "freq": 8.32e-06 + }, + { + "word": "recognise", + "freq": 8.32e-06 + }, + { + "word": "reviewing", + "freq": 8.32e-06 + }, + { + "word": "sculpture", + "freq": 8.32e-06 + }, + { + "word": "wikipedia", + "freq": 8.32e-06 + }, + { + "word": "alcoholic", + "freq": 8.13e-06 + }, + { + "word": "automated", + "freq": 8.13e-06 + }, + { + "word": "catalogue", + "freq": 8.13e-06 + }, + { + "word": "christine", + "freq": 8.13e-06 + }, + { + "word": "collector", + "freq": 8.13e-06 + }, + { + "word": "consisted", + "freq": 8.13e-06 + }, + { + "word": "enjoyable", + "freq": 8.13e-06 + }, + { + "word": "headlines", + "freq": 8.13e-06 + }, + { + "word": "inherited", + "freq": 8.13e-06 + }, + { + "word": "necessity", + "freq": 8.13e-06 + }, + { + "word": "renewable", + "freq": 8.13e-06 + }, + { + "word": "sheffield", + "freq": 8.13e-06 + }, + { + "word": "aftermath", + "freq": 7.94e-06 + }, + { + "word": "armstrong", + "freq": 7.94e-06 + }, + { + "word": "champagne", + "freq": 7.94e-06 + }, + { + "word": "combining", + "freq": 7.94e-06 + }, + { + "word": "directing", + "freq": 7.94e-06 + }, + { + "word": "elevation", + "freq": 7.94e-06 + }, + { + "word": "historian", + "freq": 7.94e-06 + }, + { + "word": "marriages", + "freq": 7.94e-06 + }, + { + "word": "mortality", + "freq": 7.94e-06 + }, + { + "word": "obsession", + "freq": 7.94e-06 + }, + { + "word": "petroleum", + "freq": 7.94e-06 + }, + { + "word": "rejection", + "freq": 7.94e-06 + }, + { + "word": "reservoir", + "freq": 7.94e-06 + }, + { + "word": "sebastian", + "freq": 7.94e-06 + }, + { + "word": "sensation", + "freq": 7.94e-06 + }, + { + "word": "spotlight", + "freq": 7.94e-06 + }, + { + "word": "withdrawn", + "freq": 7.94e-06 + }, + { + "word": "behaviors", + "freq": 7.76e-06 + }, + { + "word": "biography", + "freq": 7.76e-06 + }, + { + "word": "consuming", + "freq": 7.76e-06 + }, + { + "word": "designing", + "freq": 7.76e-06 + }, + { + "word": "economies", + "freq": 7.76e-06 + }, + { + "word": "holocaust", + "freq": 7.76e-06 + }, + { + "word": "obamacare", + "freq": 7.76e-06 + }, + { + "word": "roosevelt", + "freq": 7.76e-06 + }, + { + "word": "sincerely", + "freq": 7.76e-06 + }, + { + "word": "specialty", + "freq": 7.76e-06 + }, + { + "word": "surprises", + "freq": 7.76e-06 + }, + { + "word": "trademark", + "freq": 7.76e-06 + }, + { + "word": "utilities", + "freq": 7.76e-06 + }, + { + "word": "interfere", + "freq": 7.59e-06 + }, + { + "word": "obstacles", + "freq": 7.59e-06 + }, + { + "word": "pointless", + "freq": 7.59e-06 + }, + { + "word": "proximity", + "freq": 7.59e-06 + }, + { + "word": "scenarios", + "freq": 7.59e-06 + }, + { + "word": "selective", + "freq": 7.59e-06 + }, + { + "word": "socialism", + "freq": 7.59e-06 + }, + { + "word": "stressful", + "freq": 7.59e-06 + }, + { + "word": "stretched", + "freq": 7.59e-06 + }, + { + "word": "billboard", + "freq": 7.41e-06 + }, + { + "word": "calculate", + "freq": 7.41e-06 + }, + { + "word": "conceived", + "freq": 7.41e-06 + }, + { + "word": "dissolved", + "freq": 7.41e-06 + }, + { + "word": "economist", + "freq": 7.41e-06 + }, + { + "word": "europeans", + "freq": 7.41e-06 + }, + { + "word": "examining", + "freq": 7.41e-06 + }, + { + "word": "illegally", + "freq": 7.41e-06 + }, + { + "word": "parenting", + "freq": 7.41e-06 + }, + { + "word": "proceeded", + "freq": 7.41e-06 + }, + { + "word": "processor", + "freq": 7.41e-06 + }, + { + "word": "robertson", + "freq": 7.41e-06 + }, + { + "word": "seventeen", + "freq": 7.41e-06 + }, + { + "word": "abundance", + "freq": 7.24e-06 + }, + { + "word": "advancing", + "freq": 7.24e-06 + }, + { + "word": "commodity", + "freq": 7.24e-06 + }, + { + "word": "exhibited", + "freq": 7.24e-06 + }, + { + "word": "fictional", + "freq": 7.24e-06 + }, + { + "word": "judgement", + "freq": 7.24e-06 + }, + { + "word": "judiciary", + "freq": 7.24e-06 + }, + { + "word": "logistics", + "freq": 7.24e-06 + }, + { + "word": "nonprofit", + "freq": 7.24e-06 + }, + { + "word": "operative", + "freq": 7.24e-06 + }, + { + "word": "portraits", + "freq": 7.24e-06 + }, + { + "word": "subjected", + "freq": 7.24e-06 + }, + { + "word": "allowance", + "freq": 7.08e-06 + }, + { + "word": "apologies", + "freq": 7.08e-06 + }, + { + "word": "arbitrary", + "freq": 7.08e-06 + }, + { + "word": "comprises", + "freq": 7.08e-06 + }, + { + "word": "desirable", + "freq": 7.08e-06 + }, + { + "word": "favorable", + "freq": 7.08e-06 + }, + { + "word": "galleries", + "freq": 7.08e-06 + }, + { + "word": "portrayed", + "freq": 7.08e-06 + }, + { + "word": "possessed", + "freq": 7.08e-06 + }, + { + "word": "princeton", + "freq": 7.08e-06 + }, + { + "word": "recession", + "freq": 7.08e-06 + }, + { + "word": "sequences", + "freq": 7.08e-06 + }, + { + "word": "superhero", + "freq": 7.08e-06 + }, + { + "word": "catholics", + "freq": 6.92e-06 + }, + { + "word": "malaysian", + "freq": 6.92e-06 + }, + { + "word": "paperwork", + "freq": 6.92e-06 + }, + { + "word": "poisoning", + "freq": 6.92e-06 + }, + { + "word": "repeating", + "freq": 6.92e-06 + }, + { + "word": "slaughter", + "freq": 6.92e-06 + }, + { + "word": "synthesis", + "freq": 6.92e-06 + }, + { + "word": "afterward", + "freq": 6.76e-06 + }, + { + "word": "allocated", + "freq": 6.76e-06 + }, + { + "word": "charities", + "freq": 6.76e-06 + }, + { + "word": "churchill", + "freq": 6.76e-06 + }, + { + "word": "declining", + "freq": 6.76e-06 + }, + { + "word": "discourse", + "freq": 6.76e-06 + }, + { + "word": "distances", + "freq": 6.76e-06 + }, + { + "word": "dominance", + "freq": 6.76e-06 + }, + { + "word": "entertain", + "freq": 6.76e-06 + }, + { + "word": "evaluated", + "freq": 6.76e-06 + }, + { + "word": "fireworks", + "freq": 6.76e-06 + }, + { + "word": "innocence", + "freq": 6.76e-06 + }, + { + "word": "katherine", + "freq": 6.76e-06 + }, + { + "word": "livestock", + "freq": 6.76e-06 + }, + { + "word": "notorious", + "freq": 6.76e-06 + }, + { + "word": "oversight", + "freq": 6.76e-06 + }, + { + "word": "prototype", + "freq": 6.76e-06 + }, + { + "word": "strengths", + "freq": 6.76e-06 + }, + { + "word": "superstar", + "freq": 6.76e-06 + }, + { + "word": "victories", + "freq": 6.76e-06 + }, + { + "word": "accounted", + "freq": 6.61e-06 + }, + { + "word": "certainty", + "freq": 6.61e-06 + }, + { + "word": "christina", + "freq": 6.61e-06 + }, + { + "word": "comprised", + "freq": 6.61e-06 + }, + { + "word": "declaring", + "freq": 6.61e-06 + }, + { + "word": "educators", + "freq": 6.61e-06 + }, + { + "word": "fragments", + "freq": 6.61e-06 + }, + { + "word": "offerings", + "freq": 6.61e-06 + }, + { + "word": "practiced", + "freq": 6.61e-06 + }, + { + "word": "testified", + "freq": 6.61e-06 + }, + { + "word": "worthless", + "freq": 6.61e-06 + }, + { + "word": "accompany", + "freq": 6.46e-06 + }, + { + "word": "assurance", + "freq": 6.46e-06 + }, + { + "word": "battalion", + "freq": 6.46e-06 + }, + { + "word": "bulgarian", + "freq": 6.46e-06 + }, + { + "word": "carpenter", + "freq": 6.46e-06 + }, + { + "word": "enjoyment", + "freq": 6.46e-06 + }, + { + "word": "healthier", + "freq": 6.46e-06 + }, + { + "word": "honorable", + "freq": 6.46e-06 + }, + { + "word": "injustice", + "freq": 6.46e-06 + }, + { + "word": "inquiries", + "freq": 6.46e-06 + }, + { + "word": "interpret", + "freq": 6.46e-06 + }, + { + "word": "prolonged", + "freq": 6.46e-06 + }, + { + "word": "recruited", + "freq": 6.46e-06 + }, + { + "word": "reluctant", + "freq": 6.46e-06 + }, + { + "word": "retention", + "freq": 6.46e-06 + }, + { + "word": "rochester", + "freq": 6.46e-06 + }, + { + "word": "schedules", + "freq": 6.46e-06 + }, + { + "word": "selecting", + "freq": 6.46e-06 + }, + { + "word": "stephanie", + "freq": 6.46e-06 + }, + { + "word": "submarine", + "freq": 6.46e-06 + }, + { + "word": "acquiring", + "freq": 6.31e-06 + }, + { + "word": "additions", + "freq": 6.31e-06 + }, + { + "word": "admitting", + "freq": 6.31e-06 + }, + { + "word": "balancing", + "freq": 6.31e-06 + }, + { + "word": "communism", + "freq": 6.31e-06 + }, + { + "word": "conductor", + "freq": 6.31e-06 + }, + { + "word": "disclosed", + "freq": 6.31e-06 + }, + { + "word": "displaced", + "freq": 6.31e-06 + }, + { + "word": "disturbed", + "freq": 6.31e-06 + }, + { + "word": "freestyle", + "freq": 6.31e-06 + }, + { + "word": "messaging", + "freq": 6.31e-06 + }, + { + "word": "microwave", + "freq": 6.31e-06 + }, + { + "word": "performer", + "freq": 6.31e-06 + }, + { + "word": "primitive", + "freq": 6.31e-06 + }, + { + "word": "retrieved", + "freq": 6.31e-06 + }, + { + "word": "righteous", + "freq": 6.31e-06 + }, + { + "word": "twentieth", + "freq": 6.31e-06 + }, + { + "word": "unrelated", + "freq": 6.31e-06 + }, + { + "word": "wandering", + "freq": 6.31e-06 + }, + { + "word": "assisting", + "freq": 6.17e-06 + }, + { + "word": "constable", + "freq": 6.17e-06 + }, + { + "word": "cooperate", + "freq": 6.17e-06 + }, + { + "word": "counselor", + "freq": 6.17e-06 + }, + { + "word": "discounts", + "freq": 6.17e-06 + }, + { + "word": "hungarian", + "freq": 6.17e-06 + }, + { + "word": "imaginary", + "freq": 6.17e-06 + }, + { + "word": "patriotic", + "freq": 6.17e-06 + }, + { + "word": "populated", + "freq": 6.17e-06 + }, + { + "word": "prejudice", + "freq": 6.17e-06 + }, + { + "word": "probation", + "freq": 6.17e-06 + }, + { + "word": "rendering", + "freq": 6.17e-06 + }, + { + "word": "spokesman", + "freq": 6.17e-06 + }, + { + "word": "traumatic", + "freq": 6.17e-06 + }, + { + "word": "daughters", + "freq": 6.03e-06 + }, + { + "word": "academics", + "freq": 6.03e-06 + }, + { + "word": "alignment", + "freq": 6.03e-06 + }, + { + "word": "apparatus", + "freq": 6.03e-06 + }, + { + "word": "commenced", + "freq": 6.03e-06 + }, + { + "word": "ecosystem", + "freq": 6.03e-06 + }, + { + "word": "fertility", + "freq": 6.03e-06 + }, + { + "word": "hierarchy", + "freq": 6.03e-06 + }, + { + "word": "lancaster", + "freq": 6.03e-06 + }, + { + "word": "neglected", + "freq": 6.03e-06 + }, + { + "word": "photoshop", + "freq": 6.03e-06 + }, + { + "word": "precedent", + "freq": 6.03e-06 + }, + { + "word": "prevalent", + "freq": 6.03e-06 + }, + { + "word": "retaining", + "freq": 6.03e-06 + }, + { + "word": "sociology", + "freq": 6.03e-06 + }, + { + "word": "splitting", + "freq": 6.03e-06 + }, + { + "word": "analytics", + "freq": 5.89e-06 + }, + { + "word": "attribute", + "freq": 5.89e-06 + }, + { + "word": "commanded", + "freq": 5.89e-06 + }, + { + "word": "contested", + "freq": 5.89e-06 + }, + { + "word": "equations", + "freq": 5.89e-06 + }, + { + "word": "fulfilled", + "freq": 5.89e-06 + }, + { + "word": "incumbent", + "freq": 5.89e-06 + }, + { + "word": "objection", + "freq": 5.89e-06 + }, + { + "word": "offspring", + "freq": 5.89e-06 + }, + { + "word": "persuaded", + "freq": 5.89e-06 + }, + { + "word": "presenter", + "freq": 5.89e-06 + }, + { + "word": "scripture", + "freq": 5.89e-06 + }, + { + "word": "slightest", + "freq": 5.89e-06 + }, + { + "word": "specimens", + "freq": 5.89e-06 + }, + { + "word": "valentine", + "freq": 5.89e-06 + }, + { + "word": "welcoming", + "freq": 5.89e-06 + }, + { + "word": "capturing", + "freq": 5.75e-06 + }, + { + "word": "concludes", + "freq": 5.75e-06 + }, + { + "word": "disasters", + "freq": 5.75e-06 + }, + { + "word": "mentality", + "freq": 5.75e-06 + }, + { + "word": "minecraft", + "freq": 5.75e-06 + }, + { + "word": "protocols", + "freq": 5.75e-06 + }, + { + "word": "recycling", + "freq": 5.75e-06 + }, + { + "word": "stainless", + "freq": 5.75e-06 + }, + { + "word": "statutory", + "freq": 5.75e-06 + }, + { + "word": "stockholm", + "freq": 5.75e-06 + }, + { + "word": "teachings", + "freq": 5.75e-06 + }, + { + "word": "unusually", + "freq": 5.75e-06 + }, + { + "word": "assaulted", + "freq": 5.62e-06 + }, + { + "word": "blessings", + "freq": 5.62e-06 + }, + { + "word": "bluetooth", + "freq": 5.62e-06 + }, + { + "word": "borrowing", + "freq": 5.62e-06 + }, + { + "word": "limestone", + "freq": 5.62e-06 + }, + { + "word": "monitored", + "freq": 5.62e-06 + }, + { + "word": "observing", + "freq": 5.62e-06 + }, + { + "word": "relevance", + "freq": 5.62e-06 + }, + { + "word": "shattered", + "freq": 5.62e-06 + }, + { + "word": "successes", + "freq": 5.62e-06 + }, + { + "word": "supplying", + "freq": 5.62e-06 + }, + { + "word": "telescope", + "freq": 5.62e-06 + }, + { + "word": "thickness", + "freq": 5.62e-06 + }, + { + "word": "threatens", + "freq": 5.62e-06 + }, + { + "word": "valuation", + "freq": 5.62e-06 + }, + { + "word": "villagers", + "freq": 5.62e-06 + }, + { + "word": "amusement", + "freq": 5.5e-06 + }, + { + "word": "assessing", + "freq": 5.5e-06 + }, + { + "word": "auxiliary", + "freq": 5.5e-06 + }, + { + "word": "descended", + "freq": 5.5e-06 + }, + { + "word": "emergence", + "freq": 5.5e-06 + }, + { + "word": "endurance", + "freq": 5.5e-06 + }, + { + "word": "exchanged", + "freq": 5.5e-06 + }, + { + "word": "jewellery", + "freq": 5.5e-06 + }, + { + "word": "phenomena", + "freq": 5.5e-06 + }, + { + "word": "pneumonia", + "freq": 5.5e-06 + }, + { + "word": "policeman", + "freq": 5.5e-06 + }, + { + "word": "postponed", + "freq": 5.5e-06 + }, + { + "word": "preceding", + "freq": 5.5e-06 + }, + { + "word": "rewarding", + "freq": 5.5e-06 + }, + { + "word": "storyline", + "freq": 5.5e-06 + }, + { + "word": "subsidies", + "freq": 5.5e-06 + }, + { + "word": "unchanged", + "freq": 5.5e-06 + }, + { + "word": "aerospace", + "freq": 5.37e-06 + }, + { + "word": "aluminium", + "freq": 5.37e-06 + }, + { + "word": "arlington", + "freq": 5.37e-06 + }, + { + "word": "averaging", + "freq": 5.37e-06 + }, + { + "word": "bacterial", + "freq": 5.37e-06 + }, + { + "word": "confessed", + "freq": 5.37e-06 + }, + { + "word": "employing", + "freq": 5.37e-06 + }, + { + "word": "ethnicity", + "freq": 5.37e-06 + }, + { + "word": "mysteries", + "freq": 5.37e-06 + }, + { + "word": "paramount", + "freq": 5.37e-06 + }, + { + "word": "reminding", + "freq": 5.37e-06 + }, + { + "word": "schooling", + "freq": 5.37e-06 + }, + { + "word": "uncovered", + "freq": 5.37e-06 + }, + { + "word": "undertake", + "freq": 5.37e-06 + }, + { + "word": "violating", + "freq": 5.37e-06 + }, + { + "word": "artifacts", + "freq": 5.25e-06 + }, + { + "word": "awakening", + "freq": 5.25e-06 + }, + { + "word": "bilateral", + "freq": 5.25e-06 + }, + { + "word": "compelled", + "freq": 5.25e-06 + }, + { + "word": "concealed", + "freq": 5.25e-06 + }, + { + "word": "dismissal", + "freq": 5.25e-06 + }, + { + "word": "hydraulic", + "freq": 5.25e-06 + }, + { + "word": "incapable", + "freq": 5.25e-06 + }, + { + "word": "integrate", + "freq": 5.25e-06 + }, + { + "word": "miniature", + "freq": 5.25e-06 + }, + { + "word": "murdering", + "freq": 5.25e-06 + }, + { + "word": "presently", + "freq": 5.25e-06 + }, + { + "word": "restoring", + "freq": 5.25e-06 + }, + { + "word": "unhealthy", + "freq": 5.25e-06 + }, + { + "word": "unpopular", + "freq": 5.25e-06 + }, + { + "word": "adjusting", + "freq": 5.13e-06 + }, + { + "word": "analyzing", + "freq": 5.13e-06 + }, + { + "word": "diplomacy", + "freq": 5.13e-06 + }, + { + "word": "directive", + "freq": 5.13e-06 + }, + { + "word": "energetic", + "freq": 5.13e-06 + }, + { + "word": "greatness", + "freq": 5.13e-06 + }, + { + "word": "hazardous", + "freq": 5.13e-06 + }, + { + "word": "induction", + "freq": 5.13e-06 + }, + { + "word": "masculine", + "freq": 5.13e-06 + }, + { + "word": "milestone", + "freq": 5.13e-06 + }, + { + "word": "mushrooms", + "freq": 5.13e-06 + }, + { + "word": "nutrients", + "freq": 5.13e-06 + }, + { + "word": "recurring", + "freq": 5.13e-06 + }, + { + "word": "resembles", + "freq": 5.13e-06 + }, + { + "word": "rodriguez", + "freq": 5.13e-06 + }, + { + "word": "routinely", + "freq": 5.13e-06 + }, + { + "word": "stationed", + "freq": 5.13e-06 + }, + { + "word": "acclaimed", + "freq": 5.01e-06 + }, + { + "word": "boulevard", + "freq": 5.01e-06 + }, + { + "word": "chronicle", + "freq": 5.01e-06 + }, + { + "word": "dividends", + "freq": 5.01e-06 + }, + { + "word": "histories", + "freq": 5.01e-06 + }, + { + "word": "insulting", + "freq": 5.01e-06 + }, + { + "word": "irregular", + "freq": 5.01e-06 + }, + { + "word": "modelling", + "freq": 5.01e-06 + }, + { + "word": "premature", + "freq": 5.01e-06 + }, + { + "word": "residency", + "freq": 5.01e-06 + }, + { + "word": "stretches", + "freq": 5.01e-06 + }, + { + "word": "unwilling", + "freq": 5.01e-06 + }, + { + "word": "whichever", + "freq": 5.01e-06 + }, + { + "word": "bangalore", + "freq": 4.9e-06 + }, + { + "word": "broadband", + "freq": 4.9e-06 + }, + { + "word": "emphasize", + "freq": 4.9e-06 + }, + { + "word": "everytime", + "freq": 4.9e-06 + }, + { + "word": "fisheries", + "freq": 4.9e-06 + }, + { + "word": "footsteps", + "freq": 4.9e-06 + }, + { + "word": "intervals", + "freq": 4.9e-06 + }, + { + "word": "liberties", + "freq": 4.9e-06 + }, + { + "word": "macdonald", + "freq": 4.9e-06 + }, + { + "word": "mortgages", + "freq": 4.9e-06 + }, + { + "word": "neighbour", + "freq": 4.9e-06 + }, + { + "word": "patterson", + "freq": 4.9e-06 + }, + { + "word": "preaching", + "freq": 4.9e-06 + }, + { + "word": "proposing", + "freq": 4.9e-06 + }, + { + "word": "shootings", + "freq": 4.9e-06 + }, + { + "word": "solicitor", + "freq": 4.9e-06 + }, + { + "word": "sophomore", + "freq": 4.9e-06 + }, + { + "word": "wallpaper", + "freq": 4.9e-06 + }, + { + "word": "countdown", + "freq": 4.79e-06 + }, + { + "word": "exclusion", + "freq": 4.79e-06 + }, + { + "word": "exploited", + "freq": 4.79e-06 + }, + { + "word": "extracted", + "freq": 4.79e-06 + }, + { + "word": "freelance", + "freq": 4.79e-06 + }, + { + "word": "headaches", + "freq": 4.79e-06 + }, + { + "word": "honeymoon", + "freq": 4.79e-06 + }, + { + "word": "perimeter", + "freq": 4.79e-06 + }, + { + "word": "protector", + "freq": 4.79e-06 + }, + { + "word": "rehearsal", + "freq": 4.79e-06 + }, + { + "word": "reinforce", + "freq": 4.79e-06 + }, + { + "word": "skeptical", + "freq": 4.79e-06 + }, + { + "word": "unanimous", + "freq": 4.79e-06 + }, + { + "word": "vengeance", + "freq": 4.79e-06 + }, + { + "word": "bathrooms", + "freq": 4.68e-06 + }, + { + "word": "benefited", + "freq": 4.68e-06 + }, + { + "word": "cosmetics", + "freq": 4.68e-06 + }, + { + "word": "embracing", + "freq": 4.68e-06 + }, + { + "word": "gardening", + "freq": 4.68e-06 + }, + { + "word": "generates", + "freq": 4.68e-06 + } + ], + "10": [ + { + "word": "government", + "freq": 0.000372 + }, + { + "word": "everything", + "freq": 0.000347 + }, + { + "word": "university", + "freq": 0.000245 + }, + { + "word": "understand", + "freq": 0.000234 + }, + { + "word": "experience", + "freq": 0.000186 + }, + { + "word": "department", + "freq": 0.00017 + }, + { + "word": "especially", + "freq": 0.000162 + }, + { + "word": "themselves", + "freq": 0.000145 + }, + { + "word": "production", + "freq": 0.000138 + }, + { + "word": "management", + "freq": 0.000135 + }, + { + "word": "technology", + "freq": 0.000123 + }, + { + "word": "considered", + "freq": 0.00012 + }, + { + "word": "washington", + "freq": 0.00012 + }, + { + "word": "conference", + "freq": 0.000102 + }, + { + "word": "difference", + "freq": 0.000102 + }, + { + "word": "population", + "freq": 0.000102 + }, + { + "word": "california", + "freq": 0.0001 + }, + { + "word": "completely", + "freq": 0.0001 + }, + { + "word": "individual", + "freq": 0.0001 + }, + { + "word": "particular", + "freq": 0.0001 + }, + { + "word": "throughout", + "freq": 9.77e-05 + }, + { + "word": "absolutely", + "freq": 9.55e-05 + }, + { + "word": "additional", + "freq": 9.55e-05 + }, + { + "word": "conditions", + "freq": 9.55e-05 + }, + { + "word": "collection", + "freq": 9.12e-05 + }, + { + "word": "definitely", + "freq": 9.12e-05 + }, + { + "word": "interested", + "freq": 8.91e-05 + }, + { + "word": "successful", + "freq": 8.71e-05 + }, + { + "word": "australian", + "freq": 8.51e-05 + }, + { + "word": "commercial", + "freq": 8.32e-05 + }, + { + "word": "activities", + "freq": 8.13e-05 + }, + { + "word": "commission", + "freq": 8.13e-05 + }, + { + "word": "associated", + "freq": 7.76e-05 + }, + { + "word": "eventually", + "freq": 7.59e-05 + }, + { + "word": "protection", + "freq": 7.08e-05 + }, + { + "word": "investment", + "freq": 6.92e-05 + }, + { + "word": "previously", + "freq": 6.76e-05 + }, + { + "word": "generation", + "freq": 6.61e-05 + }, + { + "word": "foundation", + "freq": 6.46e-05 + }, + { + "word": "apparently", + "freq": 6.31e-05 + }, + { + "word": "television", + "freq": 6.17e-05 + }, + { + "word": "impossible", + "freq": 6.03e-05 + }, + { + "word": "background", + "freq": 5.89e-05 + }, + { + "word": "leadership", + "freq": 5.89e-05 + }, + { + "word": "connection", + "freq": 5.75e-05 + }, + { + "word": "appreciate", + "freq": 5.5e-05 + }, + { + "word": "discovered", + "freq": 5.5e-05 + }, + { + "word": "parliament", + "freq": 5.5e-05 + }, + { + "word": "democratic", + "freq": 5.37e-05 + }, + { + "word": "introduced", + "freq": 5.25e-05 + }, + { + "word": "discussion", + "freq": 5.13e-05 + }, + { + "word": "industrial", + "freq": 5.13e-05 + }, + { + "word": "supporting", + "freq": 5.13e-05 + }, + { + "word": "republican", + "freq": 5.01e-05 + }, + { + "word": "appearance", + "freq": 4.9e-05 + }, + { + "word": "historical", + "freq": 4.9e-05 + }, + { + "word": "originally", + "freq": 4.9e-05 + }, + { + "word": "girlfriend", + "freq": 4.79e-05 + }, + { + "word": "increasing", + "freq": 4.79e-05 + }, + { + "word": "restaurant", + "freq": 4.79e-05 + }, + { + "word": "scientific", + "freq": 4.68e-05 + }, + { + "word": "businesses", + "freq": 4.57e-05 + }, + { + "word": "developing", + "freq": 4.57e-05 + }, + { + "word": "everywhere", + "freq": 4.57e-05 + }, + { + "word": "facilities", + "freq": 4.57e-05 + }, + { + "word": "relatively", + "freq": 4.57e-05 + }, + { + "word": "confidence", + "freq": 4.47e-05 + }, + { + "word": "properties", + "freq": 4.47e-05 + }, + { + "word": "determined", + "freq": 4.37e-05 + }, + { + "word": "identified", + "freq": 4.27e-05 + }, + { + "word": "incredible", + "freq": 4.27e-05 + }, + { + "word": "literature", + "freq": 4.17e-05 + }, + { + "word": "statistics", + "freq": 3.98e-05 + }, + { + "word": "assistance", + "freq": 3.89e-05 + }, + { + "word": "controlled", + "freq": 3.89e-05 + }, + { + "word": "reasonable", + "freq": 3.89e-05 + }, + { + "word": "resolution", + "freq": 3.89e-05 + }, + { + "word": "definition", + "freq": 3.8e-05 + }, + { + "word": "understood", + "freq": 3.8e-05 + }, + { + "word": "opposition", + "freq": 3.72e-05 + }, + { + "word": "personally", + "freq": 3.72e-05 + }, + { + "word": "ultimately", + "freq": 3.72e-05 + }, + { + "word": "basketball", + "freq": 3.63e-05 + }, + { + "word": "depression", + "freq": 3.63e-05 + }, + { + "word": "employment", + "freq": 3.63e-05 + }, + { + "word": "frequently", + "freq": 3.63e-05 + }, + { + "word": "importance", + "freq": 3.63e-05 + }, + { + "word": "performing", + "freq": 3.63e-05 + }, + { + "word": "revolution", + "freq": 3.63e-05 + }, + { + "word": "tournament", + "freq": 3.63e-05 + }, + { + "word": "electronic", + "freq": 3.55e-05 + }, + { + "word": "expression", + "freq": 3.55e-05 + }, + { + "word": "resistance", + "freq": 3.55e-05 + }, + { + "word": "attractive", + "freq": 3.39e-05 + }, + { + "word": "constantly", + "freq": 3.39e-05 + }, + { + "word": "manchester", + "freq": 3.39e-05 + }, + { + "word": "officially", + "freq": 3.39e-05 + }, + { + "word": "retirement", + "freq": 3.39e-05 + }, + { + "word": "recognized", + "freq": 3.31e-05 + }, + { + "word": "registered", + "freq": 3.31e-05 + }, + { + "word": "comparison", + "freq": 3.24e-05 + }, + { + "word": "techniques", + "freq": 3.24e-05 + }, + { + "word": "convention", + "freq": 3.16e-05 + }, + { + "word": "equivalent", + "freq": 3.16e-05 + }, + { + "word": "permission", + "freq": 3.16e-05 + }, + { + "word": "challenges", + "freq": 3.09e-05 + }, + { + "word": "philosophy", + "freq": 3.09e-05 + }, + { + "word": "settlement", + "freq": 3.09e-05 + }, + { + "word": "consistent", + "freq": 3.02e-05 + }, + { + "word": "continuing", + "freq": 3.02e-05 + }, + { + "word": "percentage", + "freq": 3.02e-05 + }, + { + "word": "regardless", + "freq": 3.02e-05 + }, + { + "word": "represents", + "freq": 3.02e-05 + }, + { + "word": "healthcare", + "freq": 2.95e-05 + }, + { + "word": "impressive", + "freq": 2.95e-05 + }, + { + "word": "membership", + "freq": 2.95e-05 + }, + { + "word": "reputation", + "freq": 2.95e-05 + }, + { + "word": "situations", + "freq": 2.95e-05 + }, + { + "word": "assessment", + "freq": 2.88e-05 + }, + { + "word": "atmosphere", + "freq": 2.88e-05 + }, + { + "word": "processing", + "freq": 2.88e-05 + }, + { + "word": "ridiculous", + "freq": 2.88e-05 + }, + { + "word": "transition", + "freq": 2.88e-05 + }, + { + "word": "components", + "freq": 2.75e-05 + }, + { + "word": "lieutenant", + "freq": 2.75e-05 + }, + { + "word": "commitment", + "freq": 2.69e-05 + }, + { + "word": "containing", + "freq": 2.69e-05 + }, + { + "word": "afterwards", + "freq": 2.63e-05 + }, + { + "word": "electrical", + "freq": 2.63e-05 + }, + { + "word": "industries", + "freq": 2.63e-05 + }, + { + "word": "principles", + "freq": 2.63e-05 + }, + { + "word": "references", + "freq": 2.63e-05 + }, + { + "word": "conclusion", + "freq": 2.51e-05 + }, + { + "word": "friendship", + "freq": 2.45e-05 + }, + { + "word": "subsequent", + "freq": 2.45e-05 + }, + { + "word": "efficiency", + "freq": 2.4e-05 + }, + { + "word": "enterprise", + "freq": 2.4e-05 + }, + { + "word": "experiment", + "freq": 2.4e-05 + }, + { + "word": "incredibly", + "freq": 2.4e-05 + }, + { + "word": "journalist", + "freq": 2.4e-05 + }, + { + "word": "maintained", + "freq": 2.4e-05 + }, + { + "word": "possession", + "freq": 2.4e-05 + }, + { + "word": "regulation", + "freq": 2.4e-05 + }, + { + "word": "exhibition", + "freq": 2.34e-05 + }, + { + "word": "publishing", + "freq": 2.34e-05 + }, + { + "word": "initiative", + "freq": 2.29e-05 + }, + { + "word": "interviews", + "freq": 2.29e-05 + }, + { + "word": "procedures", + "freq": 2.29e-05 + }, + { + "word": "surrounded", + "freq": 2.29e-05 + }, + { + "word": "threatened", + "freq": 2.29e-05 + }, + { + "word": "ambassador", + "freq": 2.24e-05 + }, + { + "word": "corruption", + "freq": 2.24e-05 + }, + { + "word": "impression", + "freq": 2.24e-05 + }, + { + "word": "contribute", + "freq": 2.19e-05 + }, + { + "word": "monitoring", + "freq": 2.19e-05 + }, + { + "word": "punishment", + "freq": 2.19e-05 + }, + { + "word": "difficulty", + "freq": 2.14e-05 + }, + { + "word": "elementary", + "freq": 2.14e-05 + }, + { + "word": "mechanical", + "freq": 2.14e-05 + }, + { + "word": "remembered", + "freq": 2.14e-05 + }, + { + "word": "struggling", + "freq": 2.14e-05 + }, + { + "word": "aggressive", + "freq": 2.09e-05 + }, + { + "word": "encouraged", + "freq": 2.09e-05 + }, + { + "word": "innovation", + "freq": 2.09e-05 + }, + { + "word": "sufficient", + "freq": 2.09e-05 + }, + { + "word": "biological", + "freq": 2.04e-05 + }, + { + "word": "categories", + "freq": 2.04e-05 + }, + { + "word": "concerning", + "freq": 2.04e-05 + }, + { + "word": "engagement", + "freq": 2.04e-05 + }, + { + "word": "laboratory", + "freq": 2.04e-05 + }, + { + "word": "psychology", + "freq": 2.04e-05 + }, + { + "word": "collective", + "freq": 2e-05 + }, + { + "word": "physically", + "freq": 2e-05 + }, + { + "word": "protecting", + "freq": 2e-05 + }, + { + "word": "accounting", + "freq": 1.95e-05 + }, + { + "word": "guaranteed", + "freq": 1.95e-05 + }, + { + "word": "integrated", + "freq": 1.95e-05 + }, + { + "word": "remarkable", + "freq": 1.95e-05 + }, + { + "word": "strategies", + "freq": 1.95e-05 + }, + { + "word": "highlights", + "freq": 1.91e-05 + }, + { + "word": "prevention", + "freq": 1.91e-05 + }, + { + "word": "specialist", + "freq": 1.91e-05 + }, + { + "word": "surprising", + "freq": 1.91e-05 + }, + { + "word": "acceptable", + "freq": 1.86e-05 + }, + { + "word": "attempting", + "freq": 1.86e-05 + }, + { + "word": "classified", + "freq": 1.82e-05 + }, + { + "word": "conspiracy", + "freq": 1.82e-05 + }, + { + "word": "federation", + "freq": 1.82e-05 + }, + { + "word": "instrument", + "freq": 1.82e-05 + }, + { + "word": "mainstream", + "freq": 1.82e-05 + }, + { + "word": "approaches", + "freq": 1.78e-05 + }, + { + "word": "boundaries", + "freq": 1.78e-05 + }, + { + "word": "designated", + "freq": 1.78e-05 + }, + { + "word": "guidelines", + "freq": 1.78e-05 + }, + { + "word": "suggesting", + "freq": 1.78e-05 + }, + { + "word": "artificial", + "freq": 1.74e-05 + }, + { + "word": "celebrated", + "freq": 1.74e-05 + }, + { + "word": "conversion", + "freq": 1.74e-05 + }, + { + "word": "functional", + "freq": 1.74e-05 + }, + { + "word": "popularity", + "freq": 1.74e-05 + }, + { + "word": "securities", + "freq": 1.74e-05 + }, + { + "word": "suspension", + "freq": 1.74e-05 + }, + { + "word": "complaints", + "freq": 1.7e-05 + }, + { + "word": "describing", + "freq": 1.7e-05 + }, + { + "word": "discipline", + "freq": 1.7e-05 + }, + { + "word": "discussing", + "freq": 1.7e-05 + }, + { + "word": "disgusting", + "freq": 1.7e-05 + }, + { + "word": "explaining", + "freq": 1.7e-05 + }, + { + "word": "photograph", + "freq": 1.7e-05 + }, + { + "word": "queensland", + "freq": 1.7e-05 + }, + { + "word": "regulatory", + "freq": 1.7e-05 + }, + { + "word": "suggestion", + "freq": 1.7e-05 + }, + { + "word": "unexpected", + "freq": 1.7e-05 + }, + { + "word": "affordable", + "freq": 1.66e-05 + }, + { + "word": "completion", + "freq": 1.66e-05 + }, + { + "word": "legitimate", + "freq": 1.66e-05 + }, + { + "word": "motivation", + "freq": 1.66e-05 + }, + { + "word": "productive", + "freq": 1.66e-05 + }, + { + "word": "continuous", + "freq": 1.62e-05 + }, + { + "word": "disability", + "freq": 1.62e-05 + }, + { + "word": "evaluation", + "freq": 1.62e-05 + }, + { + "word": "repeatedly", + "freq": 1.62e-05 + }, + { + "word": "vulnerable", + "freq": 1.62e-05 + }, + { + "word": "influenced", + "freq": 1.58e-05 + }, + { + "word": "occupation", + "freq": 1.58e-05 + }, + { + "word": "commentary", + "freq": 1.55e-05 + }, + { + "word": "excitement", + "freq": 1.55e-05 + }, + { + "word": "respective", + "freq": 1.55e-05 + }, + { + "word": "restricted", + "freq": 1.55e-05 + }, + { + "word": "widespread", + "freq": 1.55e-05 + }, + { + "word": "accessible", + "freq": 1.51e-05 + }, + { + "word": "assignment", + "freq": 1.51e-05 + }, + { + "word": "birmingham", + "freq": 1.51e-05 + }, + { + "word": "collecting", + "freq": 1.51e-05 + }, + { + "word": "perception", + "freq": 1.51e-05 + }, + { + "word": "structural", + "freq": 1.51e-05 + }, + { + "word": "attendance", + "freq": 1.48e-05 + }, + { + "word": "compliance", + "freq": 1.48e-05 + }, + { + "word": "mysterious", + "freq": 1.48e-05 + }, + { + "word": "propaganda", + "freq": 1.48e-05 + }, + { + "word": "reflection", + "freq": 1.48e-05 + }, + { + "word": "substitute", + "freq": 1.48e-05 + }, + { + "word": "underlying", + "freq": 1.48e-05 + }, + { + "word": "acceptance", + "freq": 1.45e-05 + }, + { + "word": "approached", + "freq": 1.45e-05 + }, + { + "word": "connecting", + "freq": 1.45e-05 + }, + { + "word": "indigenous", + "freq": 1.45e-05 + }, + { + "word": "politician", + "freq": 1.45e-05 + }, + { + "word": "presidency", + "freq": 1.45e-05 + }, + { + "word": "travelling", + "freq": 1.45e-05 + }, + { + "word": "compromise", + "freq": 1.41e-05 + }, + { + "word": "convenient", + "freq": 1.41e-05 + }, + { + "word": "earthquake", + "freq": 1.41e-05 + }, + { + "word": "medication", + "freq": 1.41e-05 + }, + { + "word": "translated", + "freq": 1.41e-05 + }, + { + "word": "vegetables", + "freq": 1.41e-05 + }, + { + "word": "conviction", + "freq": 1.38e-05 + }, + { + "word": "inspection", + "freq": 1.38e-05 + }, + { + "word": "invitation", + "freq": 1.38e-05 + }, + { + "word": "meaningful", + "freq": 1.38e-05 + }, + { + "word": "accordance", + "freq": 1.35e-05 + }, + { + "word": "applicable", + "freq": 1.35e-05 + }, + { + "word": "chancellor", + "freq": 1.35e-05 + }, + { + "word": "consultant", + "freq": 1.35e-05 + }, + { + "word": "controller", + "freq": 1.35e-05 + }, + { + "word": "helicopter", + "freq": 1.35e-05 + }, + { + "word": "phenomenon", + "freq": 1.35e-05 + }, + { + "word": "pittsburgh", + "freq": 1.35e-05 + }, + { + "word": "profession", + "freq": 1.35e-05 + }, + { + "word": "protective", + "freq": 1.35e-05 + }, + { + "word": "reportedly", + "freq": 1.35e-05 + }, + { + "word": "separation", + "freq": 1.35e-05 + }, + { + "word": "authorized", + "freq": 1.32e-05 + }, + { + "word": "curriculum", + "freq": 1.32e-05 + }, + { + "word": "journalism", + "freq": 1.32e-05 + }, + { + "word": "occasional", + "freq": 1.32e-05 + }, + { + "word": "preventing", + "freq": 1.32e-05 + }, + { + "word": "provisions", + "freq": 1.32e-05 + }, + { + "word": "attraction", + "freq": 1.29e-05 + }, + { + "word": "bankruptcy", + "freq": 1.29e-05 + }, + { + "word": "diplomatic", + "freq": 1.29e-05 + }, + { + "word": "intentions", + "freq": 1.29e-05 + }, + { + "word": "preference", + "freq": 1.29e-05 + }, + { + "word": "proportion", + "freq": 1.29e-05 + }, + { + "word": "advantages", + "freq": 1.26e-05 + }, + { + "word": "calculated", + "freq": 1.26e-05 + }, + { + "word": "innovative", + "freq": 1.26e-05 + }, + { + "word": "traditions", + "freq": 1.26e-05 + }, + { + "word": "challenged", + "freq": 1.23e-05 + }, + { + "word": "cigarettes", + "freq": 1.23e-05 + }, + { + "word": "consisting", + "freq": 1.23e-05 + }, + { + "word": "delivering", + "freq": 1.23e-05 + }, + { + "word": "destroying", + "freq": 1.23e-05 + }, + { + "word": "governance", + "freq": 1.23e-05 + }, + { + "word": "indicating", + "freq": 1.23e-05 + }, + { + "word": "passionate", + "freq": 1.23e-05 + }, + { + "word": "suspicious", + "freq": 1.23e-05 + }, + { + "word": "thoroughly", + "freq": 1.23e-05 + }, + { + "word": "treatments", + "freq": 1.23e-05 + }, + { + "word": "variations", + "freq": 1.23e-05 + }, + { + "word": "beneficial", + "freq": 1.2e-05 + }, + { + "word": "comparable", + "freq": 1.2e-05 + }, + { + "word": "contractor", + "freq": 1.2e-05 + }, + { + "word": "frustrated", + "freq": 1.2e-05 + }, + { + "word": "inevitable", + "freq": 1.2e-05 + }, + { + "word": "objectives", + "freq": 1.2e-05 + }, + { + "word": "presenting", + "freq": 1.2e-05 + }, + { + "word": "provincial", + "freq": 1.2e-05 + }, + { + "word": "separately", + "freq": 1.2e-05 + }, + { + "word": "underneath", + "freq": 1.2e-05 + }, + { + "word": "altogether", + "freq": 1.17e-05 + }, + { + "word": "assumption", + "freq": 1.17e-05 + }, + { + "word": "capability", + "freq": 1.17e-05 + }, + { + "word": "conducting", + "freq": 1.17e-05 + }, + { + "word": "excellence", + "freq": 1.17e-05 + }, + { + "word": "graduation", + "freq": 1.17e-05 + }, + { + "word": "motorcycle", + "freq": 1.17e-05 + }, + { + "word": "nationwide", + "freq": 1.17e-05 + }, + { + "word": "nomination", + "freq": 1.17e-05 + }, + { + "word": "obligation", + "freq": 1.17e-05 + }, + { + "word": "recognised", + "freq": 1.17e-05 + }, + { + "word": "responding", + "freq": 1.17e-05 + }, + { + "word": "submission", + "freq": 1.17e-05 + }, + { + "word": "tremendous", + "freq": 1.17e-05 + }, + { + "word": "addressing", + "freq": 1.15e-05 + }, + { + "word": "completing", + "freq": 1.15e-05 + }, + { + "word": "consulting", + "freq": 1.15e-05 + }, + { + "word": "indication", + "freq": 1.15e-05 + }, + { + "word": "presumably", + "freq": 1.15e-05 + }, + { + "word": "pretending", + "freq": 1.15e-05 + }, + { + "word": "priorities", + "freq": 1.15e-05 + }, + { + "word": "pronounced", + "freq": 1.15e-05 + }, + { + "word": "purchasing", + "freq": 1.15e-05 + }, + { + "word": "smartphone", + "freq": 1.15e-05 + }, + { + "word": "accomplish", + "freq": 1.12e-05 + }, + { + "word": "attributed", + "freq": 1.12e-05 + }, + { + "word": "dimensions", + "freq": 1.12e-05 + }, + { + "word": "disturbing", + "freq": 1.12e-05 + }, + { + "word": "eliminated", + "freq": 1.12e-05 + }, + { + "word": "influences", + "freq": 1.12e-05 + }, + { + "word": "supportive", + "freq": 1.12e-05 + }, + { + "word": "withdrawal", + "freq": 1.12e-05 + }, + { + "word": "recreation", + "freq": 1.1e-05 + }, + { + "word": "strengthen", + "freq": 1.1e-05 + }, + { + "word": "mechanisms", + "freq": 1.07e-05 + }, + { + "word": "navigation", + "freq": 1.07e-05 + }, + { + "word": "portuguese", + "freq": 1.07e-05 + }, + { + "word": "profitable", + "freq": 1.07e-05 + }, + { + "word": "reasonably", + "freq": 1.07e-05 + }, + { + "word": "supplement", + "freq": 1.07e-05 + }, + { + "word": "complexity", + "freq": 1.05e-05 + }, + { + "word": "dictionary", + "freq": 1.05e-05 + }, + { + "word": "enthusiasm", + "freq": 1.05e-05 + }, + { + "word": "instructor", + "freq": 1.05e-05 + }, + { + "word": "questioned", + "freq": 1.05e-05 + }, + { + "word": "adaptation", + "freq": 1.02e-05 + }, + { + "word": "creativity", + "freq": 1.02e-05 + }, + { + "word": "harassment", + "freq": 1.02e-05 + }, + { + "word": "qualifying", + "freq": 1.02e-05 + }, + { + "word": "criticized", + "freq": 1e-05 + }, + { + "word": "disclosure", + "freq": 1e-05 + }, + { + "word": "documented", + "freq": 1e-05 + }, + { + "word": "encounters", + "freq": 1e-05 + }, + { + "word": "parameters", + "freq": 1e-05 + }, + { + "word": "protesters", + "freq": 1e-05 + }, + { + "word": "accurately", + "freq": 9.77e-06 + }, + { + "word": "complained", + "freq": 9.77e-06 + }, + { + "word": "expedition", + "freq": 9.77e-06 + }, + { + "word": "expressing", + "freq": 9.77e-06 + }, + { + "word": "facilitate", + "freq": 9.77e-06 + }, + { + "word": "generating", + "freq": 9.77e-06 + }, + { + "word": "interstate", + "freq": 9.77e-06 + }, + { + "word": "perfection", + "freq": 9.77e-06 + }, + { + "word": "practicing", + "freq": 9.77e-06 + }, + { + "word": "prohibited", + "freq": 9.77e-06 + }, + { + "word": "recruiting", + "freq": 9.77e-06 + }, + { + "word": "violations", + "freq": 9.77e-06 + }, + { + "word": "whatsoever", + "freq": 9.77e-06 + }, + { + "word": "compelling", + "freq": 9.55e-06 + }, + { + "word": "irrelevant", + "freq": 9.55e-06 + }, + { + "word": "referendum", + "freq": 9.55e-06 + }, + { + "word": "capitalism", + "freq": 9.33e-06 + }, + { + "word": "compatible", + "freq": 9.33e-06 + }, + { + "word": "convincing", + "freq": 9.33e-06 + }, + { + "word": "exceptions", + "freq": 9.33e-06 + }, + { + "word": "geographic", + "freq": 9.33e-06 + }, + { + "word": "infections", + "freq": 9.33e-06 + }, + { + "word": "minorities", + "freq": 9.33e-06 + }, + { + "word": "organizing", + "freq": 9.33e-06 + }, + { + "word": "succession", + "freq": 9.33e-06 + }, + { + "word": "thereafter", + "freq": 9.33e-06 + }, + { + "word": "affiliated", + "freq": 9.12e-06 + }, + { + "word": "bangladesh", + "freq": 9.12e-06 + }, + { + "word": "cincinnati", + "freq": 9.12e-06 + }, + { + "word": "conscience", + "freq": 9.12e-06 + }, + { + "word": "dedication", + "freq": 9.12e-06 + }, + { + "word": "explicitly", + "freq": 9.12e-06 + }, + { + "word": "prediction", + "freq": 9.12e-06 + }, + { + "word": "revelation", + "freq": 9.12e-06 + }, + { + "word": "supposedly", + "freq": 9.12e-06 + }, + { + "word": "compassion", + "freq": 8.91e-06 + }, + { + "word": "correction", + "freq": 8.91e-06 + }, + { + "word": "meditation", + "freq": 8.91e-06 + }, + { + "word": "supervisor", + "freq": 8.91e-06 + }, + { + "word": "terrifying", + "freq": 8.91e-06 + }, + { + "word": "wilderness", + "freq": 8.91e-06 + }, + { + "word": "presidents", + "freq": 8.71e-06 + }, + { + "word": "automobile", + "freq": 8.71e-06 + }, + { + "word": "networking", + "freq": 8.71e-06 + }, + { + "word": "prosecutor", + "freq": 8.71e-06 + }, + { + "word": "simulation", + "freq": 8.71e-06 + }, + { + "word": "automotive", + "freq": 8.51e-06 + }, + { + "word": "casualties", + "freq": 8.51e-06 + }, + { + "word": "litigation", + "freq": 8.51e-06 + }, + { + "word": "reflecting", + "freq": 8.51e-06 + }, + { + "word": "satisfying", + "freq": 8.51e-06 + }, + { + "word": "soundtrack", + "freq": 8.51e-06 + }, + { + "word": "substances", + "freq": 8.51e-06 + }, + { + "word": "attributes", + "freq": 8.32e-06 + }, + { + "word": "delegation", + "freq": 8.32e-06 + }, + { + "word": "enrollment", + "freq": 8.32e-06 + }, + { + "word": "forgetting", + "freq": 8.32e-06 + }, + { + "word": "inequality", + "freq": 8.32e-06 + }, + { + "word": "manuscript", + "freq": 8.32e-06 + }, + { + "word": "montgomery", + "freq": 8.32e-06 + }, + { + "word": "researcher", + "freq": 8.32e-06 + }, + { + "word": "subsidiary", + "freq": 8.32e-06 + }, + { + "word": "underwater", + "freq": 8.32e-06 + }, + { + "word": "ammunition", + "freq": 8.13e-06 + }, + { + "word": "charitable", + "freq": 8.13e-06 + }, + { + "word": "compliment", + "freq": 8.13e-06 + }, + { + "word": "deployment", + "freq": 8.13e-06 + }, + { + "word": "liberation", + "freq": 8.13e-06 + }, + { + "word": "likelihood", + "freq": 8.13e-06 + }, + { + "word": "prescribed", + "freq": 8.13e-06 + }, + { + "word": "prosperity", + "freq": 8.13e-06 + }, + { + "word": "richardson", + "freq": 8.13e-06 + }, + { + "word": "aggression", + "freq": 7.94e-06 + }, + { + "word": "discretion", + "freq": 7.94e-06 + }, + { + "word": "horizontal", + "freq": 7.94e-06 + }, + { + "word": "inevitably", + "freq": 7.94e-06 + }, + { + "word": "misleading", + "freq": 7.94e-06 + }, + { + "word": "persistent", + "freq": 7.94e-06 + }, + { + "word": "recordings", + "freq": 7.94e-06 + }, + { + "word": "unemployed", + "freq": 7.94e-06 + }, + { + "word": "contracted", + "freq": 7.76e-06 + }, + { + "word": "counseling", + "freq": 7.76e-06 + }, + { + "word": "indonesian", + "freq": 7.76e-06 + }, + { + "word": "positively", + "freq": 7.76e-06 + }, + { + "word": "solidarity", + "freq": 7.76e-06 + }, + { + "word": "adjustment", + "freq": 7.59e-06 + }, + { + "word": "attachment", + "freq": 7.59e-06 + }, + { + "word": "committing", + "freq": 7.59e-06 + }, + { + "word": "comprising", + "freq": 7.59e-06 + }, + { + "word": "confession", + "freq": 7.59e-06 + }, + { + "word": "critically", + "freq": 7.59e-06 + }, + { + "word": "distracted", + "freq": 7.59e-06 + }, + { + "word": "headphones", + "freq": 7.59e-06 + }, + { + "word": "incentives", + "freq": 7.59e-06 + }, + { + "word": "announcing", + "freq": 7.41e-06 + }, + { + "word": "hypothesis", + "freq": 7.41e-06 + }, + { + "word": "optimistic", + "freq": 7.41e-06 + }, + { + "word": "systematic", + "freq": 7.41e-06 + }, + { + "word": "behavioral", + "freq": 7.24e-06 + }, + { + "word": "containers", + "freq": 7.24e-06 + }, + { + "word": "endangered", + "freq": 7.24e-06 + }, + { + "word": "fellowship", + "freq": 7.24e-06 + }, + { + "word": "midfielder", + "freq": 7.24e-06 + }, + { + "word": "quantities", + "freq": 7.24e-06 + }, + { + "word": "sacramento", + "freq": 7.24e-06 + }, + { + "word": "wheelchair", + "freq": 7.24e-06 + }, + { + "word": "yourselves", + "freq": 7.24e-06 + }, + { + "word": "autonomous", + "freq": 7.08e-06 + }, + { + "word": "censorship", + "freq": 7.08e-06 + }, + { + "word": "constitute", + "freq": 7.08e-06 + }, + { + "word": "incomplete", + "freq": 7.08e-06 + }, + { + "word": "stretching", + "freq": 7.08e-06 + }, + { + "word": "successive", + "freq": 7.08e-06 + }, + { + "word": "undertaken", + "freq": 7.08e-06 + }, + { + "word": "vietnamese", + "freq": 7.08e-06 + }, + { + "word": "volleyball", + "freq": 7.08e-06 + }, + { + "word": "commanding", + "freq": 6.92e-06 + }, + { + "word": "confronted", + "freq": 6.92e-06 + }, + { + "word": "encourages", + "freq": 6.92e-06 + }, + { + "word": "instructed", + "freq": 6.92e-06 + }, + { + "word": "louisville", + "freq": 6.92e-06 + }, + { + "word": "nationally", + "freq": 6.92e-06 + }, + { + "word": "recovering", + "freq": 6.92e-06 + }, + { + "word": "activation", + "freq": 6.76e-06 + }, + { + "word": "commenting", + "freq": 6.76e-06 + }, + { + "word": "depressing", + "freq": 6.76e-06 + }, + { + "word": "diagnostic", + "freq": 6.76e-06 + }, + { + "word": "downloaded", + "freq": 6.76e-06 + }, + { + "word": "guarantees", + "freq": 6.76e-06 + }, + { + "word": "indicators", + "freq": 6.76e-06 + }, + { + "word": "missionary", + "freq": 6.76e-06 + }, + { + "word": "refreshing", + "freq": 6.76e-06 + }, + { + "word": "reinforced", + "freq": 6.76e-06 + }, + { + "word": "thoughtful", + "freq": 6.76e-06 + }, + { + "word": "accidental", + "freq": 6.61e-06 + }, + { + "word": "archbishop", + "freq": 6.61e-06 + }, + { + "word": "coordinate", + "freq": 6.61e-06 + }, + { + "word": "decoration", + "freq": 6.61e-06 + }, + { + "word": "deliberate", + "freq": 6.61e-06 + }, + { + "word": "extensions", + "freq": 6.61e-06 + }, + { + "word": "geological", + "freq": 6.61e-06 + }, + { + "word": "inadequate", + "freq": 6.61e-06 + }, + { + "word": "kilometers", + "freq": 6.61e-06 + }, + { + "word": "overlooked", + "freq": 6.61e-06 + }, + { + "word": "redemption", + "freq": 6.61e-06 + }, + { + "word": "structured", + "freq": 6.61e-06 + }, + { + "word": "vocabulary", + "freq": 6.61e-06 + }, + { + "word": "wellington", + "freq": 6.61e-06 + }, + { + "word": "algorithms", + "freq": 6.46e-06 + }, + { + "word": "competitor", + "freq": 6.46e-06 + }, + { + "word": "infectious", + "freq": 6.46e-06 + }, + { + "word": "privileged", + "freq": 6.46e-06 + }, + { + "word": "protestant", + "freq": 6.46e-06 + }, + { + "word": "automation", + "freq": 6.31e-06 + }, + { + "word": "decorative", + "freq": 6.31e-06 + }, + { + "word": "definitive", + "freq": 6.31e-06 + }, + { + "word": "extraction", + "freq": 6.31e-06 + }, + { + "word": "introduces", + "freq": 6.31e-06 + }, + { + "word": "originated", + "freq": 6.31e-06 + }, + { + "word": "providence", + "freq": 6.31e-06 + }, + { + "word": "requesting", + "freq": 6.31e-06 + }, + { + "word": "thankfully", + "freq": 6.31e-06 + }, + { + "word": "unpleasant", + "freq": 6.31e-06 + }, + { + "word": "weaknesses", + "freq": 6.31e-06 + }, + { + "word": "capitalist", + "freq": 6.17e-06 + }, + { + "word": "distribute", + "freq": 6.17e-06 + }, + { + "word": "explosives", + "freq": 6.17e-06 + }, + { + "word": "goalkeeper", + "freq": 6.17e-06 + }, + { + "word": "imprisoned", + "freq": 6.17e-06 + }, + { + "word": "oppression", + "freq": 6.17e-06 + }, + { + "word": "playground", + "freq": 6.17e-06 + }, + { + "word": "positioned", + "freq": 6.17e-06 + }, + { + "word": "projection", + "freq": 6.17e-06 + }, + { + "word": "subjective", + "freq": 6.17e-06 + }, + { + "word": "aboriginal", + "freq": 6.03e-06 + }, + { + "word": "compensate", + "freq": 6.03e-06 + }, + { + "word": "ecological", + "freq": 6.03e-06 + }, + { + "word": "greenhouse", + "freq": 6.03e-06 + }, + { + "word": "identities", + "freq": 6.03e-06 + }, + { + "word": "metabolism", + "freq": 6.03e-06 + }, + { + "word": "negotiated", + "freq": 6.03e-06 + }, + { + "word": "promotions", + "freq": 6.03e-06 + }, + { + "word": "vegetarian", + "freq": 6.03e-06 + }, + { + "word": "visibility", + "freq": 6.03e-06 + }, + { + "word": "alexandria", + "freq": 5.89e-06 + }, + { + "word": "charleston", + "freq": 5.89e-06 + }, + { + "word": "complement", + "freq": 5.89e-06 + }, + { + "word": "continuity", + "freq": 5.89e-06 + }, + { + "word": "delightful", + "freq": 5.89e-06 + }, + { + "word": "determines", + "freq": 5.89e-06 + }, + { + "word": "kidnapping", + "freq": 5.89e-06 + }, + { + "word": "kilometres", + "freq": 5.89e-06 + }, + { + "word": "occurrence", + "freq": 5.89e-06 + }, + { + "word": "outrageous", + "freq": 5.89e-06 + }, + { + "word": "proclaimed", + "freq": 5.89e-06 + }, + { + "word": "recommends", + "freq": 5.89e-06 + }, + { + "word": "remarkably", + "freq": 5.89e-06 + }, + { + "word": "sandwiches", + "freq": 5.89e-06 + }, + { + "word": "simplicity", + "freq": 5.89e-06 + }, + { + "word": "undercover", + "freq": 5.89e-06 + }, + { + "word": "vegetation", + "freq": 5.89e-06 + }, + { + "word": "accountant", + "freq": 5.75e-06 + }, + { + "word": "admissions", + "freq": 5.75e-06 + }, + { + "word": "celebrates", + "freq": 5.75e-06 + }, + { + "word": "discharged", + "freq": 5.75e-06 + }, + { + "word": "extinction", + "freq": 5.75e-06 + }, + { + "word": "graduating", + "freq": 5.75e-06 + }, + { + "word": "newsletter", + "freq": 5.75e-06 + }, + { + "word": "nineteenth", + "freq": 5.75e-06 + }, + { + "word": "phenomenal", + "freq": 5.75e-06 + }, + { + "word": "philippine", + "freq": 5.75e-06 + }, + { + "word": "privileges", + "freq": 5.75e-06 + }, + { + "word": "protesting", + "freq": 5.75e-06 + }, + { + "word": "transplant", + "freq": 5.75e-06 + }, + { + "word": "advertised", + "freq": 5.62e-06 + }, + { + "word": "communists", + "freq": 5.62e-06 + }, + { + "word": "conception", + "freq": 5.62e-06 + }, + { + "word": "identifies", + "freq": 5.62e-06 + }, + { + "word": "internally", + "freq": 5.62e-06 + }, + { + "word": "mentioning", + "freq": 5.62e-06 + }, + { + "word": "noticeable", + "freq": 5.62e-06 + }, + { + "word": "screenshot", + "freq": 5.62e-06 + }, + { + "word": "signatures", + "freq": 5.62e-06 + }, + { + "word": "spacecraft", + "freq": 5.62e-06 + }, + { + "word": "terminated", + "freq": 5.62e-06 + }, + { + "word": "veterinary", + "freq": 5.62e-06 + }, + { + "word": "allocation", + "freq": 5.5e-06 + }, + { + "word": "canterbury", + "freq": 5.5e-06 + }, + { + "word": "challenger", + "freq": 5.5e-06 + }, + { + "word": "evacuation", + "freq": 5.5e-06 + }, + { + "word": "frightened", + "freq": 5.5e-06 + }, + { + "word": "ingredient", + "freq": 5.5e-06 + }, + { + "word": "ironically", + "freq": 5.5e-06 + }, + { + "word": "overweight", + "freq": 5.5e-06 + }, + { + "word": "recognizes", + "freq": 5.5e-06 + }, + { + "word": "renovation", + "freq": 5.5e-06 + }, + { + "word": "sweetheart", + "freq": 5.5e-06 + }, + { + "word": "worthwhile", + "freq": 5.5e-06 + }, + { + "word": "analytical", + "freq": 5.37e-06 + }, + { + "word": "anticipate", + "freq": 5.37e-06 + }, + { + "word": "ceremonies", + "freq": 5.37e-06 + }, + { + "word": "contention", + "freq": 5.37e-06 + }, + { + "word": "converting", + "freq": 5.37e-06 + }, + { + "word": "exercising", + "freq": 5.37e-06 + }, + { + "word": "nightmares", + "freq": 5.37e-06 + }, + { + "word": "preserving", + "freq": 5.37e-06 + }, + { + "word": "devastated", + "freq": 5.25e-06 + }, + { + "word": "downstairs", + "freq": 5.25e-06 + }, + { + "word": "homosexual", + "freq": 5.25e-06 + }, + { + "word": "landscapes", + "freq": 5.25e-06 + }, + { + "word": "microphone", + "freq": 5.25e-06 + }, + { + "word": "nottingham", + "freq": 5.25e-06 + }, + { + "word": "plantation", + "freq": 5.25e-06 + }, + { + "word": "sacrifices", + "freq": 5.25e-06 + }, + { + "word": "strawberry", + "freq": 5.25e-06 + }, + { + "word": "sunglasses", + "freq": 5.25e-06 + }, + { + "word": "temptation", + "freq": 5.25e-06 + }, + { + "word": "unfinished", + "freq": 5.25e-06 + }, + { + "word": "accredited", + "freq": 5.13e-06 + }, + { + "word": "apocalypse", + "freq": 5.13e-06 + }, + { + "word": "appliances", + "freq": 5.13e-06 + }, + { + "word": "disruption", + "freq": 5.13e-06 + }, + { + "word": "emphasized", + "freq": 5.13e-06 + }, + { + "word": "engineered", + "freq": 5.13e-06 + }, + { + "word": "fulfilling", + "freq": 5.13e-06 + }, + { + "word": "illustrate", + "freq": 5.13e-06 + }, + { + "word": "indirectly", + "freq": 5.13e-06 + }, + { + "word": "installing", + "freq": 5.13e-06 + }, + { + "word": "limitation", + "freq": 5.13e-06 + }, + { + "word": "linguistic", + "freq": 5.13e-06 + }, + { + "word": "magistrate", + "freq": 5.13e-06 + }, + { + "word": "pedestrian", + "freq": 5.13e-06 + }, + { + "word": "preferably", + "freq": 5.13e-06 + }, + { + "word": "programmed", + "freq": 5.13e-06 + }, + { + "word": "rebuilding", + "freq": 5.13e-06 + }, + { + "word": "relaxation", + "freq": 5.13e-06 + }, + { + "word": "respectful", + "freq": 5.13e-06 + }, + { + "word": "undergoing", + "freq": 5.13e-06 + }, + { + "word": "apprentice", + "freq": 5.01e-06 + }, + { + "word": "comprehend", + "freq": 5.01e-06 + }, + { + "word": "compulsory", + "freq": 5.01e-06 + }, + { + "word": "domination", + "freq": 5.01e-06 + }, + { + "word": "evaluating", + "freq": 5.01e-06 + }, + { + "word": "indictment", + "freq": 5.01e-06 + }, + { + "word": "kardashian", + "freq": 5.01e-06 + }, + { + "word": "millennium", + "freq": 5.01e-06 + }, + { + "word": "petersburg", + "freq": 5.01e-06 + }, + { + "word": "responsive", + "freq": 5.01e-06 + }, + { + "word": "songwriter", + "freq": 5.01e-06 + }, + { + "word": "technician", + "freq": 5.01e-06 + }, + { + "word": "transcript", + "freq": 5.01e-06 + }, + { + "word": "allegiance", + "freq": 4.9e-06 + }, + { + "word": "attracting", + "freq": 4.9e-06 + }, + { + "word": "contingent", + "freq": 4.9e-06 + }, + { + "word": "councillor", + "freq": 4.9e-06 + }, + { + "word": "explosions", + "freq": 4.9e-06 + }, + { + "word": "footballer", + "freq": 4.9e-06 + }, + { + "word": "hemisphere", + "freq": 4.9e-06 + }, + { + "word": "intriguing", + "freq": 4.9e-06 + }, + { + "word": "irrigation", + "freq": 4.9e-06 + }, + { + "word": "manipulate", + "freq": 4.9e-06 + }, + { + "word": "negatively", + "freq": 4.9e-06 + }, + { + "word": "objections", + "freq": 4.9e-06 + }, + { + "word": "scheduling", + "freq": 4.9e-06 + }, + { + "word": "separating", + "freq": 4.9e-06 + }, + { + "word": "simplified", + "freq": 4.9e-06 + }, + { + "word": "consortium", + "freq": 4.79e-06 + }, + { + "word": "decreasing", + "freq": 4.79e-06 + }, + { + "word": "disastrous", + "freq": 4.79e-06 + }, + { + "word": "displaying", + "freq": 4.79e-06 + }, + { + "word": "selections", + "freq": 4.79e-06 + }, + { + "word": "theatrical", + "freq": 4.79e-06 + }, + { + "word": "validation", + "freq": 4.79e-06 + }, + { + "word": "classrooms", + "freq": 4.68e-06 + }, + { + "word": "confirming", + "freq": 4.68e-06 + }, + { + "word": "copenhagen", + "freq": 4.68e-06 + }, + { + "word": "diminished", + "freq": 4.68e-06 + }, + { + "word": "disappears", + "freq": 4.68e-06 + }, + { + "word": "disappoint", + "freq": 4.68e-06 + }, + { + "word": "honourable", + "freq": 4.68e-06 + }, + { + "word": "insulation", + "freq": 4.68e-06 + }, + { + "word": "neutrality", + "freq": 4.68e-06 + }, + { + "word": "referenced", + "freq": 4.68e-06 + }, + { + "word": "sacrificed", + "freq": 4.68e-06 + }, + { + "word": "translates", + "freq": 4.68e-06 + }, + { + "word": "translator", + "freq": 4.68e-06 + }, + { + "word": "absorption", + "freq": 4.57e-06 + }, + { + "word": "accelerate", + "freq": 4.57e-06 + }, + { + "word": "blockchain", + "freq": 4.57e-06 + }, + { + "word": "collateral", + "freq": 4.57e-06 + }, + { + "word": "congestion", + "freq": 4.57e-06 + }, + { + "word": "criticised", + "freq": 4.57e-06 + }, + { + "word": "criticisms", + "freq": 4.57e-06 + }, + { + "word": "deliveries", + "freq": 4.57e-06 + }, + { + "word": "dependence", + "freq": 4.57e-06 + }, + { + "word": "imperative", + "freq": 4.57e-06 + }, + { + "word": "misconduct", + "freq": 4.57e-06 + }, + { + "word": "peripheral", + "freq": 4.57e-06 + }, + { + "word": "prevalence", + "freq": 4.57e-06 + }, + { + "word": "proceeding", + "freq": 4.57e-06 + }, + { + "word": "unofficial", + "freq": 4.57e-06 + }, + { + "word": "blackberry", + "freq": 4.47e-06 + }, + { + "word": "derivative", + "freq": 4.47e-06 + }, + { + "word": "discomfort", + "freq": 4.47e-06 + }, + { + "word": "formidable", + "freq": 4.47e-06 + }, + { + "word": "inaccurate", + "freq": 4.47e-06 + }, + { + "word": "loneliness", + "freq": 4.47e-06 + }, + { + "word": "negligence", + "freq": 4.47e-06 + }, + { + "word": "standpoint", + "freq": 4.47e-06 + }, + { + "word": "vocational", + "freq": 4.47e-06 + }, + { + "word": "accustomed", + "freq": 4.37e-06 + }, + { + "word": "adequately", + "freq": 4.37e-06 + }, + { + "word": "bargaining", + "freq": 4.37e-06 + }, + { + "word": "beginnings", + "freq": 4.37e-06 + }, + { + "word": "culturally", + "freq": 4.37e-06 + }, + { + "word": "deficiency", + "freq": 4.37e-06 + }, + { + "word": "electorate", + "freq": 4.37e-06 + }, + { + "word": "favourites", + "freq": 4.37e-06 + }, + { + "word": "fitzgerald", + "freq": 4.37e-06 + }, + { + "word": "generators", + "freq": 4.37e-06 + }, + { + "word": "quarantine", + "freq": 4.37e-06 + }, + { + "word": "advocating", + "freq": 4.27e-06 + }, + { + "word": "apologized", + "freq": 4.27e-06 + }, + { + "word": "disrespect", + "freq": 4.27e-06 + }, + { + "word": "legitimacy", + "freq": 4.27e-06 + }, + { + "word": "organizers", + "freq": 4.27e-06 + }, + { + "word": "peacefully", + "freq": 4.27e-06 + }, + { + "word": "progressed", + "freq": 4.27e-06 + }, + { + "word": "reconsider", + "freq": 4.27e-06 + }, + { + "word": "reductions", + "freq": 4.27e-06 + }, + { + "word": "stationary", + "freq": 4.27e-06 + }, + { + "word": "succeeding", + "freq": 4.27e-06 + }, + { + "word": "sunderland", + "freq": 4.27e-06 + }, + { + "word": "beforehand", + "freq": 4.17e-06 + }, + { + "word": "compressed", + "freq": 4.17e-06 + }, + { + "word": "conceptual", + "freq": 4.17e-06 + }, + { + "word": "currencies", + "freq": 4.17e-06 + }, + { + "word": "demolition", + "freq": 4.17e-06 + }, + { + "word": "downstream", + "freq": 4.17e-06 + }, + { + "word": "formations", + "freq": 4.17e-06 + }, + { + "word": "generosity", + "freq": 4.17e-06 + }, + { + "word": "humanities", + "freq": 4.17e-06 + }, + { + "word": "predicting", + "freq": 4.17e-06 + }, + { + "word": "sanctioned", + "freq": 4.17e-06 + }, + { + "word": "sentencing", + "freq": 4.17e-06 + }, + { + "word": "undefeated", + "freq": 4.17e-06 + }, + { + "word": "unfamiliar", + "freq": 4.17e-06 + }, + { + "word": "authorised", + "freq": 4.07e-06 + }, + { + "word": "comforting", + "freq": 4.07e-06 + }, + { + "word": "courthouse", + "freq": 4.07e-06 + }, + { + "word": "dispatched", + "freq": 4.07e-06 + }, + { + "word": "fraudulent", + "freq": 4.07e-06 + }, + { + "word": "internship", + "freq": 4.07e-06 + }, + { + "word": "irritating", + "freq": 4.07e-06 + }, + { + "word": "narratives", + "freq": 4.07e-06 + }, + { + "word": "physiology", + "freq": 4.07e-06 + }, + { + "word": "possessing", + "freq": 4.07e-06 + }, + { + "word": "prosecuted", + "freq": 4.07e-06 + }, + { + "word": "resentment", + "freq": 4.07e-06 + }, + { + "word": "trajectory", + "freq": 4.07e-06 + }, + { + "word": "underrated", + "freq": 4.07e-06 + }, + { + "word": "accusation", + "freq": 3.98e-06 + }, + { + "word": "adjustable", + "freq": 3.98e-06 + }, + { + "word": "affiliates", + "freq": 3.98e-06 + }, + { + "word": "cultivated", + "freq": 3.98e-06 + }, + { + "word": "exhausting", + "freq": 3.98e-06 + }, + { + "word": "fascinated", + "freq": 3.98e-06 + }, + { + "word": "gymnastics", + "freq": 3.98e-06 + }, + { + "word": "lancashire", + "freq": 3.98e-06 + }, + { + "word": "ministries", + "freq": 3.98e-06 + }, + { + "word": "pertaining", + "freq": 3.98e-06 + }, + { + "word": "portsmouth", + "freq": 3.98e-06 + }, + { + "word": "prosperous", + "freq": 3.98e-06 + }, + { + "word": "respecting", + "freq": 3.98e-06 + }, + { + "word": "suppressed", + "freq": 3.98e-06 + }, + { + "word": "williamson", + "freq": 3.98e-06 + }, + { + "word": "admiration", + "freq": 3.89e-06 + }, + { + "word": "aesthetics", + "freq": 3.89e-06 + }, + { + "word": "courageous", + "freq": 3.89e-06 + }, + { + "word": "economical", + "freq": 3.89e-06 + }, + { + "word": "exposition", + "freq": 3.89e-06 + }, + { + "word": "fundraiser", + "freq": 3.89e-06 + }, + { + "word": "inherently", + "freq": 3.89e-06 + }, + { + "word": "patriotism", + "freq": 3.89e-06 + }, + { + "word": "socialists", + "freq": 3.89e-06 + }, + { + "word": "supervised", + "freq": 3.89e-06 + }, + { + "word": "tendencies", + "freq": 3.89e-06 + }, + { + "word": "adolescent", + "freq": 3.8e-06 + }, + { + "word": "competence", + "freq": 3.8e-06 + }, + { + "word": "contacting", + "freq": 3.8e-06 + }, + { + "word": "contagious", + "freq": 3.8e-06 + }, + { + "word": "discounted", + "freq": 3.8e-06 + }, + { + "word": "dominating", + "freq": 3.8e-06 + }, + { + "word": "projecting", + "freq": 3.8e-06 + }, + { + "word": "prostitute", + "freq": 3.8e-06 + }, + { + "word": "reflective", + "freq": 3.8e-06 + }, + { + "word": "resilience", + "freq": 3.8e-06 + }, + { + "word": "similarity", + "freq": 3.8e-06 + }, + { + "word": "touchdowns", + "freq": 3.8e-06 + }, + { + "word": "brightness", + "freq": 3.72e-06 + }, + { + "word": "combustion", + "freq": 3.72e-06 + }, + { + "word": "concession", + "freq": 3.72e-06 + }, + { + "word": "discourage", + "freq": 3.72e-06 + }, + { + "word": "disposable", + "freq": 3.72e-06 + }, + { + "word": "distressed", + "freq": 3.72e-06 + }, + { + "word": "essentials", + "freq": 3.72e-06 + }, + { + "word": "georgetown", + "freq": 3.72e-06 + }, + { + "word": "indicative", + "freq": 3.72e-06 + }, + { + "word": "kazakhstan", + "freq": 3.72e-06 + }, + { + "word": "luxembourg", + "freq": 3.72e-06 + }, + { + "word": "metropolis", + "freq": 3.72e-06 + }, + { + "word": "paragraphs", + "freq": 3.72e-06 + }, + { + "word": "procession", + "freq": 3.72e-06 + }, + { + "word": "relocation", + "freq": 3.72e-06 + }, + { + "word": "sanitation", + "freq": 3.72e-06 + }, + { + "word": "sculptures", + "freq": 3.72e-06 + }, + { + "word": "victorious", + "freq": 3.72e-06 + }, + { + "word": "antibodies", + "freq": 3.63e-06 + }, + { + "word": "belongings", + "freq": 3.63e-06 + }, + { + "word": "calculator", + "freq": 3.63e-06 + }, + { + "word": "concussion", + "freq": 3.63e-06 + }, + { + "word": "encryption", + "freq": 3.63e-06 + }, + { + "word": "fraternity", + "freq": 3.63e-06 + }, + { + "word": "insecurity", + "freq": 3.63e-06 + }, + { + "word": "inventions", + "freq": 3.63e-06 + }, + { + "word": "irrational", + "freq": 3.63e-06 + }, + { + "word": "managerial", + "freq": 3.63e-06 + }, + { + "word": "moderately", + "freq": 3.63e-06 + }, + { + "word": "multimedia", + "freq": 3.63e-06 + }, + { + "word": "programmer", + "freq": 3.63e-06 + }, + { + "word": "psychiatry", + "freq": 3.63e-06 + }, + { + "word": "repetitive", + "freq": 3.63e-06 + }, + { + "word": "researched", + "freq": 3.63e-06 + }, + { + "word": "scratching", + "freq": 3.63e-06 + }, + { + "word": "submitting", + "freq": 3.63e-06 + }, + { + "word": "waterfront", + "freq": 3.63e-06 + }, + { + "word": "winchester", + "freq": 3.63e-06 + }, + { + "word": "circulated", + "freq": 3.55e-06 + }, + { + "word": "cumulative", + "freq": 3.55e-06 + }, + { + "word": "distortion", + "freq": 3.55e-06 + }, + { + "word": "hesitation", + "freq": 3.55e-06 + }, + { + "word": "impairment", + "freq": 3.55e-06 + }, + { + "word": "lighthouse", + "freq": 3.55e-06 + }, + { + "word": "overcoming", + "freq": 3.55e-06 + }, + { + "word": "prevailing", + "freq": 3.55e-06 + }, + { + "word": "regulating", + "freq": 3.55e-06 + }, + { + "word": "sentiments", + "freq": 3.55e-06 + }, + { + "word": "sustaining", + "freq": 3.55e-06 + }, + { + "word": "turbulence", + "freq": 3.55e-06 + }, + { + "word": "waterproof", + "freq": 3.55e-06 + }, + { + "word": "administer", + "freq": 3.47e-06 + }, + { + "word": "admittedly", + "freq": 3.47e-06 + }, + { + "word": "articulate", + "freq": 3.47e-06 + }, + { + "word": "concluding", + "freq": 3.47e-06 + }, + { + "word": "cunningham", + "freq": 3.47e-06 + }, + { + "word": "homecoming", + "freq": 3.47e-06 + }, + { + "word": "invaluable", + "freq": 3.47e-06 + }, + { + "word": "pioneering", + "freq": 3.47e-06 + }, + { + "word": "prominence", + "freq": 3.47e-06 + }, + { + "word": "screenplay", + "freq": 3.47e-06 + }, + { + "word": "scriptures", + "freq": 3.47e-06 + }, + { + "word": "antarctica", + "freq": 3.39e-06 + }, + { + "word": "atrocities", + "freq": 3.39e-06 + }, + { + "word": "conversely", + "freq": 3.39e-06 + }, + { + "word": "distinctly", + "freq": 3.39e-06 + }, + { + "word": "favourable", + "freq": 3.39e-06 + }, + { + "word": "gloucester", + "freq": 3.39e-06 + }, + { + "word": "harvesting", + "freq": 3.39e-06 + }, + { + "word": "localities", + "freq": 3.39e-06 + }, + { + "word": "subscribed", + "freq": 3.39e-06 + }, + { + "word": "unreliable", + "freq": 3.39e-06 + }, + { + "word": "adrenaline", + "freq": 3.31e-06 + }, + { + "word": "buckingham", + "freq": 3.31e-06 + }, + { + "word": "demolished", + "freq": 3.31e-06 + }, + { + "word": "dependency", + "freq": 3.31e-06 + }, + { + "word": "ecosystems", + "freq": 3.31e-06 + }, + { + "word": "enrichment", + "freq": 3.31e-06 + }, + { + "word": "formulated", + "freq": 3.31e-06 + }, + { + "word": "freshwater", + "freq": 3.31e-06 + }, + { + "word": "huntington", + "freq": 3.31e-06 + }, + { + "word": "initiation", + "freq": 3.31e-06 + }, + { + "word": "injections", + "freq": 3.31e-06 + }, + { + "word": "kensington", + "freq": 3.31e-06 + }, + { + "word": "resembling", + "freq": 3.31e-06 + }, + { + "word": "starvation", + "freq": 3.31e-06 + }, + { + "word": "subscriber", + "freq": 3.31e-06 + }, + { + "word": "wonderland", + "freq": 3.31e-06 + }, + { + "word": "abandoning", + "freq": 3.24e-06 + }, + { + "word": "acquainted", + "freq": 3.24e-06 + }, + { + "word": "auditorium", + "freq": 3.24e-06 + }, + { + "word": "delusional", + "freq": 3.24e-06 + }, + { + "word": "deposition", + "freq": 3.24e-06 + }, + { + "word": "descending", + "freq": 3.24e-06 + }, + { + "word": "fabricated", + "freq": 3.24e-06 + }, + { + "word": "gatherings", + "freq": 3.24e-06 + }, + { + "word": "infinitely", + "freq": 3.24e-06 + }, + { + "word": "parenthood", + "freq": 3.24e-06 + }, + { + "word": "procedural", + "freq": 3.24e-06 + }, + { + "word": "profoundly", + "freq": 3.24e-06 + }, + { + "word": "relentless", + "freq": 3.24e-06 + }, + { + "word": "repression", + "freq": 3.24e-06 + }, + { + "word": "ultrasound", + "freq": 3.24e-06 + }, + { + "word": "witnessing", + "freq": 3.24e-06 + }, + { + "word": "allegation", + "freq": 3.16e-06 + }, + { + "word": "antibiotic", + "freq": 3.16e-06 + }, + { + "word": "broadcasts", + "freq": 3.16e-06 + }, + { + "word": "burlington", + "freq": 3.16e-06 + }, + { + "word": "correlated", + "freq": 3.16e-06 + }, + { + "word": "correspond", + "freq": 3.16e-06 + }, + { + "word": "homophobic", + "freq": 3.16e-06 + }, + { + "word": "javascript", + "freq": 3.16e-06 + }, + { + "word": "liberalism", + "freq": 3.16e-06 + }, + { + "word": "locomotive", + "freq": 3.16e-06 + }, + { + "word": "microscope", + "freq": 3.16e-06 + }, + { + "word": "monumental", + "freq": 3.16e-06 + }, + { + "word": "pilgrimage", + "freq": 3.16e-06 + }, + { + "word": "preventive", + "freq": 3.16e-06 + }, + { + "word": "regression", + "freq": 3.16e-06 + }, + { + "word": "staggering", + "freq": 3.16e-06 + }, + { + "word": "synonymous", + "freq": 3.16e-06 + }, + { + "word": "volkswagen", + "freq": 3.16e-06 + }, + { + "word": "yugoslavia", + "freq": 3.16e-06 + }, + { + "word": "ceremonial", + "freq": 3.09e-06 + }, + { + "word": "concurrent", + "freq": 3.09e-06 + }, + { + "word": "exhaustion", + "freq": 3.09e-06 + }, + { + "word": "expectancy", + "freq": 3.09e-06 + }, + { + "word": "grassroots", + "freq": 3.09e-06 + }, + { + "word": "hereditary", + "freq": 3.09e-06 + }, + { + "word": "horsepower", + "freq": 3.09e-06 + }, + { + "word": "laundering", + "freq": 3.09e-06 + }, + { + "word": "negativity", + "freq": 3.09e-06 + }, + { + "word": "noteworthy", + "freq": 3.09e-06 + }, + { + "word": "organising", + "freq": 3.09e-06 + }, + { + "word": "overturned", + "freq": 3.09e-06 + }, + { + "word": "pesticides", + "freq": 3.09e-06 + }, + { + "word": "suspicions", + "freq": 3.09e-06 + }, + { + "word": "volatility", + "freq": 3.09e-06 + }, + { + "word": "accumulate", + "freq": 3.02e-06 + }, + { + "word": "assemblies", + "freq": 3.02e-06 + }, + { + "word": "azerbaijan", + "freq": 3.02e-06 + }, + { + "word": "chromosome", + "freq": 3.02e-06 + }, + { + "word": "contestant", + "freq": 3.02e-06 + }, + { + "word": "correcting", + "freq": 3.02e-06 + }, + { + "word": "crossroads", + "freq": 3.02e-06 + }, + { + "word": "disneyland", + "freq": 3.02e-06 + }, + { + "word": "eighteenth", + "freq": 3.02e-06 + }, + { + "word": "emphasizes", + "freq": 3.02e-06 + }, + { + "word": "empowering", + "freq": 3.02e-06 + }, + { + "word": "expiration", + "freq": 3.02e-06 + }, + { + "word": "exploiting", + "freq": 3.02e-06 + }, + { + "word": "hysterical", + "freq": 3.02e-06 + }, + { + "word": "injunction", + "freq": 3.02e-06 + }, + { + "word": "instituted", + "freq": 3.02e-06 + }, + { + "word": "repetition", + "freq": 3.02e-06 + }, + { + "word": "triggering", + "freq": 3.02e-06 + }, + { + "word": "aggravated", + "freq": 2.95e-06 + }, + { + "word": "biomedical", + "freq": 2.95e-06 + }, + { + "word": "extremists", + "freq": 2.95e-06 + }, + { + "word": "heightened", + "freq": 2.95e-06 + }, + { + "word": "interfaces", + "freq": 2.95e-06 + }, + { + "word": "memorandum", + "freq": 2.95e-06 + }, + { + "word": "moderation", + "freq": 2.95e-06 + }, + { + "word": "paranormal", + "freq": 2.95e-06 + }, + { + "word": "sutherland", + "freq": 2.95e-06 + }, + { + "word": "unbearable", + "freq": 2.95e-06 + }, + { + "word": "despicable", + "freq": 2.88e-06 + }, + { + "word": "detachment", + "freq": 2.88e-06 + }, + { + "word": "disclaimer", + "freq": 2.88e-06 + }, + { + "word": "disconnect", + "freq": 2.88e-06 + }, + { + "word": "disruptive", + "freq": 2.88e-06 + }, + { + "word": "enthusiast", + "freq": 2.88e-06 + }, + { + "word": "estimation", + "freq": 2.88e-06 + }, + { + "word": "excavation", + "freq": 2.88e-06 + }, + { + "word": "flashlight", + "freq": 2.88e-06 + }, + { + "word": "flattering", + "freq": 2.88e-06 + }, + { + "word": "horrifying", + "freq": 2.88e-06 + }, + { + "word": "implicated", + "freq": 2.88e-06 + }, + { + "word": "mitigation", + "freq": 2.88e-06 + }, + { + "word": "operatives", + "freq": 2.88e-06 + }, + { + "word": "permitting", + "freq": 2.88e-06 + }, + { + "word": "postseason", + "freq": 2.88e-06 + }, + { + "word": "propulsion", + "freq": 2.88e-06 + }, + { + "word": "reproduced", + "freq": 2.88e-06 + }, + { + "word": "underworld", + "freq": 2.88e-06 + }, + { + "word": "vertically", + "freq": 2.88e-06 + }, + { + "word": "characters", + "freq": 2.82e-06 + }, + { + "word": "alcoholism", + "freq": 2.82e-06 + }, + { + "word": "astounding", + "freq": 2.82e-06 + }, + { + "word": "bitterness", + "freq": 2.82e-06 + }, + { + "word": "cinderella", + "freq": 2.82e-06 + }, + { + "word": "coronation", + "freq": 2.82e-06 + }, + { + "word": "cumberland", + "freq": 2.82e-06 + }, + { + "word": "durability", + "freq": 2.82e-06 + }, + { + "word": "fatalities", + "freq": 2.82e-06 + }, + { + "word": "mistakenly", + "freq": 2.82e-06 + } + ], + "8": [ + { + "word": "business", + "freq": 0.000363 + }, + { + "word": "anything", + "freq": 0.000355 + }, + { + "word": "national", + "freq": 0.000324 + }, + { + "word": "actually", + "freq": 0.000309 + }, + { + "word": "american", + "freq": 0.000309 + }, + { + "word": "children", + "freq": 0.000295 + }, + { + "word": "everyone", + "freq": 0.000295 + }, + { + "word": "together", + "freq": 0.000288 + }, + { + "word": "research", + "freq": 0.000245 + }, + { + "word": "remember", + "freq": 0.00024 + }, + { + "word": "probably", + "freq": 0.000234 + }, + { + "word": "possible", + "freq": 0.000229 + }, + { + "word": "question", + "freq": 0.000224 + }, + { + "word": "yourself", + "freq": 0.000204 + }, + { + "word": "although", + "freq": 0.0002 + }, + { + "word": "building", + "freq": 0.000195 + }, + { + "word": "thinking", + "freq": 0.000174 + }, + { + "word": "position", + "freq": 0.000162 + }, + { + "word": "happened", + "freq": 0.000158 + }, + { + "word": "military", + "freq": 0.000158 + }, + { + "word": "personal", + "freq": 0.000158 + }, + { + "word": "security", + "freq": 0.000158 + }, + { + "word": "industry", + "freq": 0.000155 + }, + { + "word": "training", + "freq": 0.000151 + }, + { + "word": "interest", + "freq": 0.000148 + }, + { + "word": "original", + "freq": 0.000145 + }, + { + "word": "received", + "freq": 0.000145 + }, + { + "word": "director", + "freq": 0.000141 + }, + { + "word": "evidence", + "freq": 0.000138 + }, + { + "word": "official", + "freq": 0.000138 + }, + { + "word": "whatever", + "freq": 0.000138 + }, + { + "word": "football", + "freq": 0.000129 + }, + { + "word": "property", + "freq": 0.000129 + }, + { + "word": "complete", + "freq": 0.000126 + }, + { + "word": "economic", + "freq": 0.000126 + }, + { + "word": "involved", + "freq": 0.000126 + }, + { + "word": "language", + "freq": 0.000126 + }, + { + "word": "november", + "freq": 0.000126 + }, + { + "word": "decision", + "freq": 0.000123 + }, + { + "word": "continue", + "freq": 0.00012 + }, + { + "word": "election", + "freq": 0.00012 + }, + { + "word": "european", + "freq": 0.00012 + }, + { + "word": "increase", + "freq": 0.00012 + }, + { + "word": "daughter", + "freq": 0.000117 + }, + { + "word": "december", + "freq": 0.000117 + }, + { + "word": "hospital", + "freq": 0.000117 + }, + { + "word": "starting", + "freq": 0.000117 + }, + { + "word": "internet", + "freq": 0.000115 + }, + { + "word": "practice", + "freq": 0.000115 + }, + { + "word": "followed", + "freq": 0.000112 + }, + { + "word": "released", + "freq": 0.000112 + }, + { + "word": "district", + "freq": 0.00011 + }, + { + "word": "minister", + "freq": 0.00011 + }, + { + "word": "straight", + "freq": 0.00011 + }, + { + "word": "february", + "freq": 0.000107 + }, + { + "word": "included", + "freq": 0.000107 + }, + { + "word": "response", + "freq": 0.000107 + }, + { + "word": "specific", + "freq": 0.000107 + }, + { + "word": "standard", + "freq": 0.000107 + }, + { + "word": "provided", + "freq": 0.000105 + }, + { + "word": "recently", + "freq": 0.000105 + }, + { + "word": "required", + "freq": 0.000105 + }, + { + "word": "tomorrow", + "freq": 0.000105 + }, + { + "word": "watching", + "freq": 0.000105 + }, + { + "word": "addition", + "freq": 0.000102 + }, + { + "word": "pressure", + "freq": 0.000102 + }, + { + "word": "campaign", + "freq": 0.0001 + }, + { + "word": "previous", + "freq": 0.0001 + }, + { + "word": "reported", + "freq": 0.0001 + }, + { + "word": "consider", + "freq": 9.77e-05 + }, + { + "word": "positive", + "freq": 9.77e-05 + }, + { + "word": "computer", + "freq": 9.33e-05 + }, + { + "word": "favorite", + "freq": 9.33e-05 + }, + { + "word": "movement", + "freq": 9.33e-05 + }, + { + "word": "designed", + "freq": 9.12e-05 + }, + { + "word": "expected", + "freq": 9.12e-05 + }, + { + "word": "includes", + "freq": 9.12e-05 + }, + { + "word": "material", + "freq": 8.91e-05 + }, + { + "word": "contract", + "freq": 8.71e-05 + }, + { + "word": "families", + "freq": 8.71e-05 + }, + { + "word": "features", + "freq": 8.71e-05 + }, + { + "word": "finished", + "freq": 8.71e-05 + }, + { + "word": "majority", + "freq": 8.71e-05 + }, + { + "word": "physical", + "freq": 8.71e-05 + }, + { + "word": "approach", + "freq": 8.51e-05 + }, + { + "word": "compared", + "freq": 8.32e-05 + }, + { + "word": "fighting", + "freq": 8.32e-05 + }, + { + "word": "learning", + "freq": 8.32e-05 + }, + { + "word": "multiple", + "freq": 8.32e-05 + }, + { + "word": "analysis", + "freq": 8.13e-05 + }, + { + "word": "marriage", + "freq": 8.13e-05 + }, + { + "word": "speaking", + "freq": 8.13e-05 + }, + { + "word": "supposed", + "freq": 8.13e-05 + }, + { + "word": "congress", + "freq": 7.94e-05 + }, + { + "word": "directly", + "freq": 7.94e-05 + }, + { + "word": "facebook", + "freq": 7.94e-05 + }, + { + "word": "planning", + "freq": 7.94e-05 + }, + { + "word": "comments", + "freq": 7.41e-05 + }, + { + "word": "politics", + "freq": 7.41e-05 + }, + { + "word": "produced", + "freq": 7.41e-05 + }, + { + "word": "saturday", + "freq": 7.41e-05 + }, + { + "word": "activity", + "freq": 7.24e-05 + }, + { + "word": "division", + "freq": 7.24e-05 + }, + { + "word": "location", + "freq": 7.24e-05 + }, + { + "word": "standing", + "freq": 7.24e-05 + }, + { + "word": "distance", + "freq": 7.08e-05 + }, + { + "word": "exchange", + "freq": 7.08e-05 + }, + { + "word": "northern", + "freq": 7.08e-05 + }, + { + "word": "powerful", + "freq": 7.08e-05 + }, + { + "word": "benefits", + "freq": 6.92e-05 + }, + { + "word": "solution", + "freq": 6.92e-05 + }, + { + "word": "southern", + "freq": 6.92e-05 + }, + { + "word": "appeared", + "freq": 6.76e-05 + }, + { + "word": "critical", + "freq": 6.76e-05 + }, + { + "word": "separate", + "freq": 6.76e-05 + }, + { + "word": "returned", + "freq": 6.61e-05 + }, + { + "word": "becoming", + "freq": 6.46e-05 + }, + { + "word": "japanese", + "freq": 6.46e-05 + }, + { + "word": "chairman", + "freq": 6.31e-05 + }, + { + "word": "provides", + "freq": 6.31e-05 + }, + { + "word": "somebody", + "freq": 6.31e-05 + }, + { + "word": "strength", + "freq": 6.31e-05 + }, + { + "word": "greatest", + "freq": 6.17e-05 + }, + { + "word": "negative", + "freq": 6.17e-05 + }, + { + "word": "function", + "freq": 6.03e-05 + }, + { + "word": "progress", + "freq": 6.03e-05 + }, + { + "word": "shooting", + "freq": 6.03e-05 + }, + { + "word": "possibly", + "freq": 5.89e-05 + }, + { + "word": "software", + "freq": 5.89e-05 + }, + { + "word": "birthday", + "freq": 5.75e-05 + }, + { + "word": "changing", + "freq": 5.75e-05 + }, + { + "word": "believed", + "freq": 5.62e-05 + }, + { + "word": "criminal", + "freq": 5.62e-05 + }, + { + "word": "cultural", + "freq": 5.62e-05 + }, + { + "word": "existing", + "freq": 5.62e-05 + }, + { + "word": "slightly", + "freq": 5.62e-05 + }, + { + "word": "surprise", + "freq": 5.62e-05 + }, + { + "word": "thoughts", + "freq": 5.62e-05 + }, + { + "word": "violence", + "freq": 5.62e-05 + }, + { + "word": "breaking", + "freq": 5.5e-05 + }, + { + "word": "magazine", + "freq": 5.5e-05 + }, + { + "word": "prepared", + "freq": 5.5e-05 + }, + { + "word": "religion", + "freq": 5.5e-05 + }, + { + "word": "strategy", + "freq": 5.5e-05 + }, + { + "word": "audience", + "freq": 5.37e-05 + }, + { + "word": "medicine", + "freq": 5.37e-05 + }, + { + "word": "mountain", + "freq": 5.37e-05 + }, + { + "word": "presence", + "freq": 5.37e-05 + }, + { + "word": "reaction", + "freq": 5.37e-05 + }, + { + "word": "electric", + "freq": 5.25e-05 + }, + { + "word": "entirely", + "freq": 5.25e-05 + }, + { + "word": "festival", + "freq": 5.25e-05 + }, + { + "word": "regional", + "freq": 5.25e-05 + }, + { + "word": "teaching", + "freq": 5.25e-05 + }, + { + "word": "transfer", + "freq": 5.25e-05 + }, + { + "word": "accident", + "freq": 5.13e-05 + }, + { + "word": "advanced", + "freq": 5.13e-05 + }, + { + "word": "anywhere", + "freq": 5.13e-05 + }, + { + "word": "bringing", + "freq": 5.13e-05 + }, + { + "word": "capacity", + "freq": 5.13e-05 + }, + { + "word": "drinking", + "freq": 5.13e-05 + }, + { + "word": "governor", + "freq": 5.13e-05 + }, + { + "word": "policies", + "freq": 5.13e-05 + }, + { + "word": "proposed", + "freq": 5.13e-05 + }, + { + "word": "purchase", + "freq": 5.13e-05 + }, + { + "word": "spending", + "freq": 5.13e-05 + }, + { + "word": "terrible", + "freq": 5.13e-05 + }, + { + "word": "canadian", + "freq": 5.01e-05 + }, + { + "word": "intended", + "freq": 5.01e-05 + }, + { + "word": "attorney", + "freq": 4.9e-05 + }, + { + "word": "behavior", + "freq": 4.9e-05 + }, + { + "word": "creating", + "freq": 4.9e-05 + }, + { + "word": "domestic", + "freq": 4.9e-05 + }, + { + "word": "honestly", + "freq": 4.9e-05 + }, + { + "word": "suddenly", + "freq": 4.9e-05 + }, + { + "word": "combined", + "freq": 4.79e-05 + }, + { + "word": "contains", + "freq": 4.79e-05 + }, + { + "word": "download", + "freq": 4.79e-05 + }, + { + "word": "exercise", + "freq": 4.79e-05 + }, + { + "word": "scotland", + "freq": 4.79e-05 + }, + { + "word": "selected", + "freq": 4.79e-05 + }, + { + "word": "shopping", + "freq": 4.79e-05 + }, + { + "word": "accepted", + "freq": 4.68e-05 + }, + { + "word": "measures", + "freq": 4.68e-05 + }, + { + "word": "platform", + "freq": 4.68e-05 + }, + { + "word": "requires", + "freq": 4.68e-05 + }, + { + "word": "schedule", + "freq": 4.68e-05 + }, + { + "word": "internal", + "freq": 4.57e-05 + }, + { + "word": "recorded", + "freq": 4.57e-05 + }, + { + "word": "identity", + "freq": 4.47e-05 + }, + { + "word": "maintain", + "freq": 4.47e-05 + }, + { + "word": "numerous", + "freq": 4.47e-05 + }, + { + "word": "revealed", + "freq": 4.47e-05 + }, + { + "word": "affected", + "freq": 4.37e-05 + }, + { + "word": "aircraft", + "freq": 4.37e-05 + }, + { + "word": "approved", + "freq": 4.37e-05 + }, + { + "word": "argument", + "freq": 4.37e-05 + }, + { + "word": "arrested", + "freq": 4.37e-05 + }, + { + "word": "conflict", + "freq": 4.37e-05 + }, + { + "word": "extended", + "freq": 4.37e-05 + }, + { + "word": "friendly", + "freq": 4.37e-05 + }, + { + "word": "properly", + "freq": 4.37e-05 + }, + { + "word": "thousand", + "freq": 4.37e-05 + }, + { + "word": "coverage", + "freq": 4.27e-05 + }, + { + "word": "examples", + "freq": 4.27e-05 + }, + { + "word": "inspired", + "freq": 4.27e-05 + }, + { + "word": "launched", + "freq": 4.27e-05 + }, + { + "word": "ministry", + "freq": 4.27e-05 + }, + { + "word": "whenever", + "freq": 4.27e-05 + }, + { + "word": "allowing", + "freq": 4.17e-05 + }, + { + "word": "champion", + "freq": 4.17e-05 + }, + { + "word": "opposite", + "freq": 4.17e-05 + }, + { + "word": "remained", + "freq": 4.17e-05 + }, + { + "word": "struggle", + "freq": 4.17e-05 + }, + { + "word": "thursday", + "freq": 4.17e-05 + }, + { + "word": "virginia", + "freq": 4.17e-05 + }, + { + "word": "assembly", + "freq": 4.07e-05 + }, + { + "word": "carrying", + "freq": 4.07e-05 + }, + { + "word": "customer", + "freq": 4.07e-05 + }, + { + "word": "familiar", + "freq": 4.07e-05 + }, + { + "word": "hundreds", + "freq": 4.07e-05 + }, + { + "word": "improved", + "freq": 4.07e-05 + }, + { + "word": "laughing", + "freq": 4.07e-05 + }, + { + "word": "referred", + "freq": 4.07e-05 + }, + { + "word": "relevant", + "freq": 4.07e-05 + }, + { + "word": "creative", + "freq": 3.98e-05 + }, + { + "word": "directed", + "freq": 3.98e-05 + }, + { + "word": "facility", + "freq": 3.98e-05 + }, + { + "word": "offering", + "freq": 3.98e-05 + }, + { + "word": "painting", + "freq": 3.98e-05 + }, + { + "word": "republic", + "freq": 3.98e-05 + }, + { + "word": "scottish", + "freq": 3.98e-05 + }, + { + "word": "concerns", + "freq": 3.89e-05 + }, + { + "word": "delivery", + "freq": 3.89e-05 + }, + { + "word": "instance", + "freq": 3.89e-05 + }, + { + "word": "realized", + "freq": 3.89e-05 + }, + { + "word": "register", + "freq": 3.89e-05 + }, + { + "word": "universe", + "freq": 3.89e-05 + }, + { + "word": "attitude", + "freq": 3.8e-05 + }, + { + "word": "recovery", + "freq": 3.8e-05 + }, + { + "word": "sentence", + "freq": 3.8e-05 + }, + { + "word": "academic", + "freq": 3.72e-05 + }, + { + "word": "accurate", + "freq": 3.72e-05 + }, + { + "word": "category", + "freq": 3.72e-05 + }, + { + "word": "chemical", + "freq": 3.72e-05 + }, + { + "word": "normally", + "freq": 3.72e-05 + }, + { + "word": "occurred", + "freq": 3.72e-05 + }, + { + "word": "pleasure", + "freq": 3.72e-05 + }, + { + "word": "consumer", + "freq": 3.63e-05 + }, + { + "word": "creation", + "freq": 3.63e-05 + }, + { + "word": "describe", + "freq": 3.63e-05 + }, + { + "word": "identify", + "freq": 3.63e-05 + }, + { + "word": "pregnant", + "freq": 3.63e-05 + }, + { + "word": "sleeping", + "freq": 3.63e-05 + }, + { + "word": "catholic", + "freq": 3.55e-05 + }, + { + "word": "declared", + "freq": 3.55e-05 + }, + { + "word": "interior", + "freq": 3.55e-05 + }, + { + "word": "pakistan", + "freq": 3.55e-05 + }, + { + "word": "replaced", + "freq": 3.55e-05 + }, + { + "word": "somewhat", + "freq": 3.55e-05 + }, + { + "word": "stronger", + "freq": 3.55e-05 + }, + { + "word": "absolute", + "freq": 3.47e-05 + }, + { + "word": "agencies", + "freq": 3.47e-05 + }, + { + "word": "baseball", + "freq": 3.47e-05 + }, + { + "word": "bathroom", + "freq": 3.47e-05 + }, + { + "word": "constant", + "freq": 3.47e-05 + }, + { + "word": "exciting", + "freq": 3.47e-05 + }, + { + "word": "incident", + "freq": 3.47e-05 + }, + { + "word": "messages", + "freq": 3.47e-05 + }, + { + "word": "michigan", + "freq": 3.47e-05 + }, + { + "word": "princess", + "freq": 3.39e-05 + }, + { + "word": "ultimate", + "freq": 3.39e-05 + }, + { + "word": "attached", + "freq": 3.31e-05 + }, + { + "word": "attacked", + "freq": 3.31e-05 + }, + { + "word": "carolina", + "freq": 3.31e-05 + }, + { + "word": "external", + "freq": 3.31e-05 + }, + { + "word": "shipping", + "freq": 3.31e-05 + }, + { + "word": "suffered", + "freq": 3.31e-05 + }, + { + "word": "clinical", + "freq": 3.24e-05 + }, + { + "word": "detailed", + "freq": 3.24e-05 + }, + { + "word": "entitled", + "freq": 3.24e-05 + }, + { + "word": "purposes", + "freq": 3.24e-05 + }, + { + "word": "valuable", + "freq": 3.24e-05 + }, + { + "word": "approval", + "freq": 3.16e-05 + }, + { + "word": "attempts", + "freq": 3.16e-05 + }, + { + "word": "document", + "freq": 3.16e-05 + }, + { + "word": "employee", + "freq": 3.16e-05 + }, + { + "word": "engineer", + "freq": 3.16e-05 + }, + { + "word": "graduate", + "freq": 3.16e-05 + }, + { + "word": "memories", + "freq": 3.16e-05 + }, + { + "word": "shoulder", + "freq": 3.16e-05 + }, + { + "word": "achieved", + "freq": 3.09e-05 + }, + { + "word": "admitted", + "freq": 3.09e-05 + }, + { + "word": "historic", + "freq": 3.09e-05 + }, + { + "word": "obtained", + "freq": 3.09e-05 + }, + { + "word": "promised", + "freq": 3.09e-05 + }, + { + "word": "suggests", + "freq": 3.09e-05 + }, + { + "word": "payments", + "freq": 3.02e-05 + }, + { + "word": "relative", + "freq": 3.02e-05 + }, + { + "word": "supplies", + "freq": 3.02e-05 + }, + { + "word": "symptoms", + "freq": 3.02e-05 + }, + { + "word": "attended", + "freq": 2.95e-05 + }, + { + "word": "bullshit", + "freq": 2.95e-05 + }, + { + "word": "clothing", + "freq": 2.95e-05 + }, + { + "word": "confused", + "freq": 2.95e-05 + }, + { + "word": "everyday", + "freq": 2.95e-05 + }, + { + "word": "proposal", + "freq": 2.95e-05 + }, + { + "word": "province", + "freq": 2.95e-05 + }, + { + "word": "strongly", + "freq": 2.95e-05 + }, + { + "word": "colorado", + "freq": 2.88e-05 + }, + { + "word": "contrast", + "freq": 2.88e-05 + }, + { + "word": "reaching", + "freq": 2.88e-05 + }, + { + "word": "superior", + "freq": 2.88e-05 + }, + { + "word": "covering", + "freq": 2.82e-05 + }, + { + "word": "informed", + "freq": 2.82e-05 + }, + { + "word": "innocent", + "freq": 2.82e-05 + }, + { + "word": "mistakes", + "freq": 2.82e-05 + }, + { + "word": "olympics", + "freq": 2.82e-05 + }, + { + "word": "captured", + "freq": 2.75e-05 + }, + { + "word": "concrete", + "freq": 2.75e-05 + }, + { + "word": "exposure", + "freq": 2.75e-05 + }, + { + "word": "featured", + "freq": 2.75e-05 + }, + { + "word": "horrible", + "freq": 2.75e-05 + }, + { + "word": "illinois", + "freq": 2.75e-05 + }, + { + "word": "injuries", + "freq": 2.75e-05 + }, + { + "word": "producer", + "freq": 2.75e-05 + }, + { + "word": "victoria", + "freq": 2.75e-05 + }, + { + "word": "visiting", + "freq": 2.75e-05 + }, + { + "word": "believes", + "freq": 2.69e-05 + }, + { + "word": "checking", + "freq": 2.69e-05 + }, + { + "word": "romantic", + "freq": 2.69e-05 + }, + { + "word": "swimming", + "freq": 2.69e-05 + }, + { + "word": "ceremony", + "freq": 2.63e-05 + }, + { + "word": "designer", + "freq": 2.63e-05 + }, + { + "word": "employed", + "freq": 2.63e-05 + }, + { + "word": "enjoying", + "freq": 2.63e-05 + }, + { + "word": "entering", + "freq": 2.63e-05 + }, + { + "word": "explains", + "freq": 2.63e-05 + }, + { + "word": "ordinary", + "freq": 2.63e-05 + }, + { + "word": "studying", + "freq": 2.63e-05 + }, + { + "word": "dramatic", + "freq": 2.57e-05 + }, + { + "word": "memorial", + "freq": 2.57e-05 + }, + { + "word": "minority", + "freq": 2.57e-05 + }, + { + "word": "opinions", + "freq": 2.57e-05 + }, + { + "word": "patterns", + "freq": 2.57e-05 + }, + { + "word": "presents", + "freq": 2.57e-05 + }, + { + "word": "priority", + "freq": 2.57e-05 + }, + { + "word": "acquired", + "freq": 2.51e-05 + }, + { + "word": "alliance", + "freq": 2.51e-05 + }, + { + "word": "annoying", + "freq": 2.51e-05 + }, + { + "word": "columbia", + "freq": 2.51e-05 + }, + { + "word": "downtown", + "freq": 2.51e-05 + }, + { + "word": "managing", + "freq": 2.51e-05 + }, + { + "word": "throwing", + "freq": 2.51e-05 + }, + { + "word": "vacation", + "freq": 2.51e-05 + }, + { + "word": "assigned", + "freq": 2.45e-05 + }, + { + "word": "atlantic", + "freq": 2.45e-05 + }, + { + "word": "cleaning", + "freq": 2.45e-05 + }, + { + "word": "consists", + "freq": 2.45e-05 + }, + { + "word": "disaster", + "freq": 2.45e-05 + }, + { + "word": "discover", + "freq": 2.45e-05 + }, + { + "word": "entrance", + "freq": 2.45e-05 + }, + { + "word": "handling", + "freq": 2.45e-05 + }, + { + "word": "lifetime", + "freq": 2.45e-05 + }, + { + "word": "mortgage", + "freq": 2.45e-05 + }, + { + "word": "observed", + "freq": 2.45e-05 + }, + { + "word": "resource", + "freq": 2.45e-05 + }, + { + "word": "commonly", + "freq": 2.4e-05 + }, + { + "word": "findings", + "freq": 2.4e-05 + }, + { + "word": "occasion", + "freq": 2.4e-05 + }, + { + "word": "resident", + "freq": 2.4e-05 + }, + { + "word": "suitable", + "freq": 2.4e-05 + }, + { + "word": "commerce", + "freq": 2.34e-05 + }, + { + "word": "currency", + "freq": 2.34e-05 + }, + { + "word": "emotions", + "freq": 2.34e-05 + }, + { + "word": "rejected", + "freq": 2.34e-05 + }, + { + "word": "resulted", + "freq": 2.34e-05 + }, + { + "word": "survival", + "freq": 2.34e-05 + }, + { + "word": "anderson", + "freq": 2.29e-05 + }, + { + "word": "heritage", + "freq": 2.29e-05 + }, + { + "word": "reducing", + "freq": 2.29e-05 + }, + { + "word": "discount", + "freq": 2.24e-05 + }, + { + "word": "gorgeous", + "freq": 2.24e-05 + }, + { + "word": "grateful", + "freq": 2.24e-05 + }, + { + "word": "indicate", + "freq": 2.24e-05 + }, + { + "word": "operated", + "freq": 2.24e-05 + }, + { + "word": "reporter", + "freq": 2.24e-05 + }, + { + "word": "sequence", + "freq": 2.24e-05 + }, + { + "word": "deserves", + "freq": 2.19e-05 + }, + { + "word": "involves", + "freq": 2.19e-05 + }, + { + "word": "upcoming", + "freq": 2.19e-05 + }, + { + "word": "claiming", + "freq": 2.14e-05 + }, + { + "word": "crossing", + "freq": 2.14e-05 + }, + { + "word": "dropping", + "freq": 2.14e-05 + }, + { + "word": "expenses", + "freq": 2.14e-05 + }, + { + "word": "guidance", + "freq": 2.14e-05 + }, + { + "word": "precious", + "freq": 2.14e-05 + }, + { + "word": "wildlife", + "freq": 2.14e-05 + }, + { + "word": "answered", + "freq": 2.09e-05 + }, + { + "word": "apparent", + "freq": 2.09e-05 + }, + { + "word": "feedback", + "freq": 2.09e-05 + }, + { + "word": "humanity", + "freq": 2.09e-05 + }, + { + "word": "murdered", + "freq": 2.09e-05 + }, + { + "word": "occupied", + "freq": 2.09e-05 + }, + { + "word": "operator", + "freq": 2.09e-05 + }, + { + "word": "railroad", + "freq": 2.09e-05 + }, + { + "word": "releases", + "freq": 2.09e-05 + }, + { + "word": "survived", + "freq": 2.09e-05 + }, + { + "word": "arranged", + "freq": 2.04e-05 + }, + { + "word": "database", + "freq": 2.04e-05 + }, + { + "word": "disorder", + "freq": 2.04e-05 + }, + { + "word": "hamilton", + "freq": 2.04e-05 + }, + { + "word": "jonathan", + "freq": 2.04e-05 + }, + { + "word": "lawrence", + "freq": 2.04e-05 + }, + { + "word": "literary", + "freq": 2.04e-05 + }, + { + "word": "midnight", + "freq": 2.04e-05 + }, + { + "word": "relation", + "freq": 2.04e-05 + }, + { + "word": "terminal", + "freq": 2.04e-05 + }, + { + "word": "unlikely", + "freq": 2.04e-05 + }, + { + "word": "calendar", + "freq": 2e-05 + }, + { + "word": "darkness", + "freq": 2e-05 + }, + { + "word": "hardware", + "freq": 2e-05 + }, + { + "word": "kentucky", + "freq": 2e-05 + }, + { + "word": "petition", + "freq": 2e-05 + }, + { + "word": "talented", + "freq": 2e-05 + }, + { + "word": "coaching", + "freq": 1.95e-05 + }, + { + "word": "dialogue", + "freq": 1.95e-05 + }, + { + "word": "disabled", + "freq": 1.95e-05 + }, + { + "word": "distinct", + "freq": 1.95e-05 + }, + { + "word": "educated", + "freq": 1.95e-05 + }, + { + "word": "eligible", + "freq": 1.95e-05 + }, + { + "word": "estimate", + "freq": 1.95e-05 + }, + { + "word": "lighting", + "freq": 1.95e-05 + }, + { + "word": "overseas", + "freq": 1.95e-05 + }, + { + "word": "regarded", + "freq": 1.95e-05 + }, + { + "word": "reliable", + "freq": 1.95e-05 + }, + { + "word": "stopping", + "freq": 1.95e-05 + }, + { + "word": "equipped", + "freq": 1.91e-05 + }, + { + "word": "expanded", + "freq": 1.91e-05 + }, + { + "word": "judgment", + "freq": 1.91e-05 + }, + { + "word": "malaysia", + "freq": 1.91e-05 + }, + { + "word": "peaceful", + "freq": 1.91e-05 + }, + { + "word": "printing", + "freq": 1.91e-05 + }, + { + "word": "publicly", + "freq": 1.91e-05 + }, + { + "word": "repeated", + "freq": 1.91e-05 + }, + { + "word": "requests", + "freq": 1.91e-05 + }, + { + "word": "stranger", + "freq": 1.91e-05 + }, + { + "word": "thompson", + "freq": 1.91e-05 + }, + { + "word": "churches", + "freq": 1.86e-05 + }, + { + "word": "composed", + "freq": 1.86e-05 + }, + { + "word": "counting", + "freq": 1.86e-05 + }, + { + "word": "earnings", + "freq": 1.86e-05 + }, + { + "word": "executed", + "freq": 1.86e-05 + }, + { + "word": "frequent", + "freq": 1.86e-05 + }, + { + "word": "gathered", + "freq": 1.86e-05 + }, + { + "word": "maryland", + "freq": 1.86e-05 + }, + { + "word": "moderate", + "freq": 1.86e-05 + }, + { + "word": "oklahoma", + "freq": 1.86e-05 + }, + { + "word": "overcome", + "freq": 1.86e-05 + }, + { + "word": "parallel", + "freq": 1.86e-05 + }, + { + "word": "stunning", + "freq": 1.86e-05 + }, + { + "word": "treating", + "freq": 1.86e-05 + }, + { + "word": "wherever", + "freq": 1.86e-05 + }, + { + "word": "announce", + "freq": 1.82e-05 + }, + { + "word": "choosing", + "freq": 1.82e-05 + }, + { + "word": "concepts", + "freq": 1.82e-05 + }, + { + "word": "convince", + "freq": 1.82e-05 + }, + { + "word": "equality", + "freq": 1.82e-05 + }, + { + "word": "guardian", + "freq": 1.82e-05 + }, + { + "word": "homeless", + "freq": 1.82e-05 + }, + { + "word": "missouri", + "freq": 1.82e-05 + }, + { + "word": "refugees", + "freq": 1.82e-05 + }, + { + "word": "removing", + "freq": 1.82e-05 + }, + { + "word": "spectrum", + "freq": 1.82e-05 + }, + { + "word": "brooklyn", + "freq": 1.78e-05 + }, + { + "word": "enormous", + "freq": 1.78e-05 + }, + { + "word": "focusing", + "freq": 1.78e-05 + }, + { + "word": "measured", + "freq": 1.78e-05 + }, + { + "word": "promises", + "freq": 1.78e-05 + }, + { + "word": "tracking", + "freq": 1.78e-05 + }, + { + "word": "abortion", + "freq": 1.74e-05 + }, + { + "word": "accuracy", + "freq": 1.74e-05 + }, + { + "word": "applying", + "freq": 1.74e-05 + }, + { + "word": "counties", + "freq": 1.74e-05 + }, + { + "word": "democrat", + "freq": 1.74e-05 + }, + { + "word": "formerly", + "freq": 1.74e-05 + }, + { + "word": "isolated", + "freq": 1.74e-05 + }, + { + "word": "marshall", + "freq": 1.74e-05 + }, + { + "word": "mitchell", + "freq": 1.74e-05 + }, + { + "word": "modified", + "freq": 1.74e-05 + }, + { + "word": "supplied", + "freq": 1.74e-05 + }, + { + "word": "treasury", + "freq": 1.74e-05 + }, + { + "word": "actively", + "freq": 1.7e-05 + }, + { + "word": "assuming", + "freq": 1.7e-05 + }, + { + "word": "campbell", + "freq": 1.7e-05 + }, + { + "word": "civilian", + "freq": 1.7e-05 + }, + { + "word": "complain", + "freq": 1.7e-05 + }, + { + "word": "dominant", + "freq": 1.7e-05 + }, + { + "word": "invasion", + "freq": 1.7e-05 + }, + { + "word": "margaret", + "freq": 1.7e-05 + }, + { + "word": "reviewed", + "freq": 1.7e-05 + }, + { + "word": "settings", + "freq": 1.7e-05 + }, + { + "word": "stealing", + "freq": 1.7e-05 + }, + { + "word": "syndrome", + "freq": 1.7e-05 + }, + { + "word": "employer", + "freq": 1.66e-05 + }, + { + "word": "generate", + "freq": 1.66e-05 + }, + { + "word": "handsome", + "freq": 1.66e-05 + }, + { + "word": "pleasant", + "freq": 1.66e-05 + }, + { + "word": "portrait", + "freq": 1.66e-05 + }, + { + "word": "targeted", + "freq": 1.66e-05 + }, + { + "word": "thailand", + "freq": 1.66e-05 + }, + { + "word": "theories", + "freq": 1.66e-05 + }, + { + "word": "touching", + "freq": 1.66e-05 + }, + { + "word": "advocate", + "freq": 1.62e-05 + }, + { + "word": "branches", + "freq": 1.62e-05 + }, + { + "word": "criteria", + "freq": 1.62e-05 + }, + { + "word": "declined", + "freq": 1.62e-05 + }, + { + "word": "egyptian", + "freq": 1.62e-05 + }, + { + "word": "franklin", + "freq": 1.62e-05 + }, + { + "word": "imperial", + "freq": 1.62e-05 + }, + { + "word": "listened", + "freq": 1.62e-05 + }, + { + "word": "nonsense", + "freq": 1.62e-05 + }, + { + "word": "playoffs", + "freq": 1.62e-05 + }, + { + "word": "relating", + "freq": 1.62e-05 + }, + { + "word": "robinson", + "freq": 1.62e-05 + }, + { + "word": "catching", + "freq": 1.58e-05 + }, + { + "word": "cheating", + "freq": 1.58e-05 + }, + { + "word": "generous", + "freq": 1.58e-05 + }, + { + "word": "mentally", + "freq": 1.58e-05 + }, + { + "word": "opponent", + "freq": 1.58e-05 + }, + { + "word": "patience", + "freq": 1.58e-05 + }, + { + "word": "pointing", + "freq": 1.58e-05 + }, + { + "word": "prisoner", + "freq": 1.58e-05 + }, + { + "word": "protests", + "freq": 1.58e-05 + }, + { + "word": "striking", + "freq": 1.58e-05 + }, + { + "word": "wireless", + "freq": 1.58e-05 + }, + { + "word": "wondered", + "freq": 1.58e-05 + }, + { + "word": "bacteria", + "freq": 1.55e-05 + }, + { + "word": "emerging", + "freq": 1.55e-05 + }, + { + "word": "emphasis", + "freq": 1.55e-05 + }, + { + "word": "graphics", + "freq": 1.55e-05 + }, + { + "word": "invested", + "freq": 1.55e-05 + }, + { + "word": "jennifer", + "freq": 1.55e-05 + }, + { + "word": "preserve", + "freq": 1.55e-05 + }, + { + "word": "produces", + "freq": 1.55e-05 + }, + { + "word": "receives", + "freq": 1.55e-05 + }, + { + "word": "scenario", + "freq": 1.55e-05 + }, + { + "word": "situated", + "freq": 1.55e-05 + }, + { + "word": "weakness", + "freq": 1.55e-05 + }, + { + "word": "advisory", + "freq": 1.51e-05 + }, + { + "word": "balanced", + "freq": 1.51e-05 + }, + { + "word": "basement", + "freq": 1.51e-05 + }, + { + "word": "collapse", + "freq": 1.51e-05 + }, + { + "word": "compound", + "freq": 1.51e-05 + }, + { + "word": "floating", + "freq": 1.51e-05 + }, + { + "word": "portland", + "freq": 1.51e-05 + }, + { + "word": "reserved", + "freq": 1.51e-05 + }, + { + "word": "stressed", + "freq": 1.51e-05 + }, + { + "word": "tropical", + "freq": 1.51e-05 + }, + { + "word": "adoption", + "freq": 1.48e-05 + }, + { + "word": "artistic", + "freq": 1.48e-05 + }, + { + "word": "aviation", + "freq": 1.48e-05 + }, + { + "word": "charging", + "freq": 1.48e-05 + }, + { + "word": "colonial", + "freq": 1.48e-05 + }, + { + "word": "contrary", + "freq": 1.48e-05 + }, + { + "word": "decrease", + "freq": 1.48e-05 + }, + { + "word": "defeated", + "freq": 1.48e-05 + }, + { + "word": "diabetes", + "freq": 1.48e-05 + }, + { + "word": "dressing", + "freq": 1.48e-05 + }, + { + "word": "invented", + "freq": 1.48e-05 + }, + { + "word": "licensed", + "freq": 1.48e-05 + }, + { + "word": "magnetic", + "freq": 1.48e-05 + }, + { + "word": "reminded", + "freq": 1.48e-05 + }, + { + "word": "treasure", + "freq": 1.48e-05 + }, + { + "word": "annually", + "freq": 1.45e-05 + }, + { + "word": "arriving", + "freq": 1.45e-05 + }, + { + "word": "benjamin", + "freq": 1.45e-05 + }, + { + "word": "creature", + "freq": 1.45e-05 + }, + { + "word": "infinite", + "freq": 1.45e-05 + }, + { + "word": "marathon", + "freq": 1.45e-05 + }, + { + "word": "moreover", + "freq": 1.45e-05 + }, + { + "word": "paradise", + "freq": 1.45e-05 + }, + { + "word": "premiere", + "freq": 1.45e-05 + }, + { + "word": "sometime", + "freq": 1.45e-05 + }, + { + "word": "sporting", + "freq": 1.45e-05 + }, + { + "word": "strictly", + "freq": 1.45e-05 + }, + { + "word": "sunshine", + "freq": 1.45e-05 + }, + { + "word": "promoted", + "freq": 1.41e-05 + }, + { + "word": "protocol", + "freq": 1.41e-05 + }, + { + "word": "timeline", + "freq": 1.41e-05 + }, + { + "word": "vertical", + "freq": 1.41e-05 + }, + { + "word": "workshop", + "freq": 1.41e-05 + }, + { + "word": "abstract", + "freq": 1.38e-05 + }, + { + "word": "deserved", + "freq": 1.38e-05 + }, + { + "word": "duration", + "freq": 1.38e-05 + }, + { + "word": "judicial", + "freq": 1.38e-05 + }, + { + "word": "switched", + "freq": 1.38e-05 + }, + { + "word": "activist", + "freq": 1.35e-05 + }, + { + "word": "boundary", + "freq": 1.35e-05 + }, + { + "word": "courtesy", + "freq": 1.35e-05 + }, + { + "word": "engaging", + "freq": 1.35e-05 + }, + { + "word": "flexible", + "freq": 1.35e-05 + }, + { + "word": "goodness", + "freq": 1.35e-05 + }, + { + "word": "homework", + "freq": 1.35e-05 + }, + { + "word": "infected", + "freq": 1.35e-05 + }, + { + "word": "operates", + "freq": 1.35e-05 + }, + { + "word": "prospect", + "freq": 1.35e-05 + }, + { + "word": "sandwich", + "freq": 1.35e-05 + }, + { + "word": "sexually", + "freq": 1.35e-05 + }, + { + "word": "sterling", + "freq": 1.35e-05 + }, + { + "word": "adjacent", + "freq": 1.32e-05 + }, + { + "word": "athletic", + "freq": 1.32e-05 + }, + { + "word": "blocking", + "freq": 1.32e-05 + }, + { + "word": "climbing", + "freq": 1.32e-05 + }, + { + "word": "deadline", + "freq": 1.32e-05 + }, + { + "word": "demanded", + "freq": 1.32e-05 + }, + { + "word": "feminist", + "freq": 1.32e-05 + }, + { + "word": "oriented", + "freq": 1.32e-05 + }, + { + "word": "reminder", + "freq": 1.32e-05 + }, + { + "word": "restored", + "freq": 1.32e-05 + }, + { + "word": "richmond", + "freq": 1.32e-05 + }, + { + "word": "variable", + "freq": 1.32e-05 + }, + { + "word": "worrying", + "freq": 1.32e-05 + }, + { + "word": "adjusted", + "freq": 1.29e-05 + }, + { + "word": "deciding", + "freq": 1.29e-05 + }, + { + "word": "defender", + "freq": 1.29e-05 + }, + { + "word": "keyboard", + "freq": 1.29e-05 + }, + { + "word": "neighbor", + "freq": 1.29e-05 + }, + { + "word": "nowadays", + "freq": 1.29e-05 + }, + { + "word": "overview", + "freq": 1.29e-05 + }, + { + "word": "pathetic", + "freq": 1.29e-05 + }, + { + "word": "reflects", + "freq": 1.29e-05 + }, + { + "word": "sergeant", + "freq": 1.29e-05 + }, + { + "word": "assisted", + "freq": 1.26e-05 + }, + { + "word": "examined", + "freq": 1.26e-05 + }, + { + "word": "faithful", + "freq": 1.26e-05 + }, + { + "word": "laughter", + "freq": 1.26e-05 + }, + { + "word": "matching", + "freq": 1.26e-05 + }, + { + "word": "monetary", + "freq": 1.26e-05 + }, + { + "word": "outcomes", + "freq": 1.26e-05 + }, + { + "word": "portugal", + "freq": 1.26e-05 + }, + { + "word": "provider", + "freq": 1.26e-05 + }, + { + "word": "resolved", + "freq": 1.26e-05 + }, + { + "word": "severely", + "freq": 1.26e-05 + }, + { + "word": "shocking", + "freq": 1.26e-05 + }, + { + "word": "disagree", + "freq": 1.23e-05 + }, + { + "word": "earliest", + "freq": 1.23e-05 + }, + { + "word": "forecast", + "freq": 1.23e-05 + }, + { + "word": "mentions", + "freq": 1.23e-05 + }, + { + "word": "potatoes", + "freq": 1.23e-05 + }, + { + "word": "receiver", + "freq": 1.23e-05 + }, + { + "word": "teenager", + "freq": 1.23e-05 + }, + { + "word": "advances", + "freq": 1.2e-05 + }, + { + "word": "bleeding", + "freq": 1.2e-05 + }, + { + "word": "breeding", + "freq": 1.2e-05 + }, + { + "word": "broadway", + "freq": 1.2e-05 + }, + { + "word": "diameter", + "freq": 1.2e-05 + }, + { + "word": "elephant", + "freq": 1.2e-05 + }, + { + "word": "enhanced", + "freq": 1.2e-05 + }, + { + "word": "fabulous", + "freq": 1.2e-05 + }, + { + "word": "gambling", + "freq": 1.2e-05 + }, + { + "word": "glorious", + "freq": 1.2e-05 + }, + { + "word": "harrison", + "freq": 1.2e-05 + }, + { + "word": "merchant", + "freq": 1.2e-05 + }, + { + "word": "nintendo", + "freq": 1.2e-05 + }, + { + "word": "obsessed", + "freq": 1.2e-05 + }, + { + "word": "pressing", + "freq": 1.2e-05 + }, + { + "word": "realised", + "freq": 1.2e-05 + }, + { + "word": "rotation", + "freq": 1.2e-05 + }, + { + "word": "starring", + "freq": 1.2e-05 + }, + { + "word": "animated", + "freq": 1.17e-05 + }, + { + "word": "avoiding", + "freq": 1.17e-05 + }, + { + "word": "charming", + "freq": 1.17e-05 + }, + { + "word": "displays", + "freq": 1.17e-05 + }, + { + "word": "imagined", + "freq": 1.17e-05 + }, + { + "word": "momentum", + "freq": 1.17e-05 + }, + { + "word": "montreal", + "freq": 1.17e-05 + }, + { + "word": "quantity", + "freq": 1.17e-05 + }, + { + "word": "retained", + "freq": 1.17e-05 + }, + { + "word": "adorable", + "freq": 1.15e-05 + }, + { + "word": "blessing", + "freq": 1.15e-05 + }, + { + "word": "cemetery", + "freq": 1.15e-05 + }, + { + "word": "detected", + "freq": 1.15e-05 + }, + { + "word": "insisted", + "freq": 1.15e-05 + }, + { + "word": "intimate", + "freq": 1.15e-05 + }, + { + "word": "nigerian", + "freq": 1.15e-05 + }, + { + "word": "password", + "freq": 1.15e-05 + }, + { + "word": "rational", + "freq": 1.15e-05 + }, + { + "word": "revenues", + "freq": 1.15e-05 + }, + { + "word": "traveled", + "freq": 1.15e-05 + }, + { + "word": "adequate", + "freq": 1.12e-05 + }, + { + "word": "arkansas", + "freq": 1.12e-05 + }, + { + "word": "comeback", + "freq": 1.12e-05 + }, + { + "word": "freezing", + "freq": 1.12e-05 + }, + { + "word": "ignorant", + "freq": 1.12e-05 + }, + { + "word": "interact", + "freq": 1.12e-05 + }, + { + "word": "medieval", + "freq": 1.12e-05 + }, + { + "word": "mobility", + "freq": 1.12e-05 + }, + { + "word": "passport", + "freq": 1.12e-05 + }, + { + "word": "proceeds", + "freq": 1.12e-05 + }, + { + "word": "surgical", + "freq": 1.12e-05 + }, + { + "word": "withdraw", + "freq": 1.12e-05 + }, + { + "word": "youngest", + "freq": 1.12e-05 + }, + { + "word": "clearing", + "freq": 1.1e-05 + }, + { + "word": "columbus", + "freq": 1.1e-05 + }, + { + "word": "divorced", + "freq": 1.1e-05 + }, + { + "word": "drawings", + "freq": 1.1e-05 + }, + { + "word": "freaking", + "freq": 1.1e-05 + }, + { + "word": "ignoring", + "freq": 1.1e-05 + }, + { + "word": "likewise", + "freq": 1.1e-05 + }, + { + "word": "meantime", + "freq": 1.1e-05 + }, + { + "word": "opposing", + "freq": 1.1e-05 + }, + { + "word": "pipeline", + "freq": 1.1e-05 + }, + { + "word": "resigned", + "freq": 1.1e-05 + }, + { + "word": "shanghai", + "freq": 1.1e-05 + }, + { + "word": "calories", + "freq": 1.07e-05 + }, + { + "word": "cannabis", + "freq": 1.07e-05 + }, + { + "word": "deployed", + "freq": 1.07e-05 + }, + { + "word": "elevated", + "freq": 1.07e-05 + }, + { + "word": "headline", + "freq": 1.07e-05 + }, + { + "word": "nicholas", + "freq": 1.07e-05 + }, + { + "word": "semester", + "freq": 1.07e-05 + }, + { + "word": "equation", + "freq": 1.05e-05 + }, + { + "word": "ideology", + "freq": 1.05e-05 + }, + { + "word": "ordering", + "freq": 1.05e-05 + }, + { + "word": "platinum", + "freq": 1.05e-05 + }, + { + "word": "premises", + "freq": 1.05e-05 + }, + { + "word": "sticking", + "freq": 1.05e-05 + }, + { + "word": "superman", + "freq": 1.05e-05 + }, + { + "word": "surfaces", + "freq": 1.05e-05 + }, + { + "word": "aluminum", + "freq": 1.02e-05 + }, + { + "word": "barriers", + "freq": 1.02e-05 + }, + { + "word": "belonged", + "freq": 1.02e-05 + }, + { + "word": "caroline", + "freq": 1.02e-05 + }, + { + "word": "congrats", + "freq": 1.02e-05 + }, + { + "word": "delicate", + "freq": 1.02e-05 + }, + { + "word": "evaluate", + "freq": 1.02e-05 + }, + { + "word": "formally", + "freq": 1.02e-05 + }, + { + "word": "musician", + "freq": 1.02e-05 + }, + { + "word": "packages", + "freq": 1.02e-05 + }, + { + "word": "secretly", + "freq": 1.02e-05 + }, + { + "word": "smallest", + "freq": 1.02e-05 + }, + { + "word": "sympathy", + "freq": 1.02e-05 + }, + { + "word": "defended", + "freq": 1e-05 + }, + { + "word": "deposits", + "freq": 1e-05 + }, + { + "word": "disposal", + "freq": 1e-05 + }, + { + "word": "donation", + "freq": 1e-05 + }, + { + "word": "ensuring", + "freq": 1e-05 + }, + { + "word": "holdings", + "freq": 1e-05 + }, + { + "word": "indirect", + "freq": 1e-05 + }, + { + "word": "kindness", + "freq": 1e-05 + }, + { + "word": "punished", + "freq": 1e-05 + }, + { + "word": "spelling", + "freq": 1e-05 + }, + { + "word": "survivor", + "freq": 1e-05 + }, + { + "word": "adelaide", + "freq": 9.77e-06 + }, + { + "word": "brussels", + "freq": 9.77e-06 + }, + { + "word": "centered", + "freq": 9.77e-06 + }, + { + "word": "cylinder", + "freq": 9.77e-06 + }, + { + "word": "failures", + "freq": 9.77e-06 + }, + { + "word": "founding", + "freq": 9.77e-06 + }, + { + "word": "outbreak", + "freq": 9.77e-06 + }, + { + "word": "refusing", + "freq": 9.77e-06 + }, + { + "word": "reynolds", + "freq": 9.77e-06 + }, + { + "word": "acoustic", + "freq": 9.55e-06 + }, + { + "word": "compiled", + "freq": 9.55e-06 + }, + { + "word": "doctrine", + "freq": 9.55e-06 + }, + { + "word": "freshman", + "freq": 9.55e-06 + }, + { + "word": "gameplay", + "freq": 9.55e-06 + }, + { + "word": "hydrogen", + "freq": 9.55e-06 + }, + { + "word": "mercedes", + "freq": 9.55e-06 + }, + { + "word": "mistaken", + "freq": 9.55e-06 + }, + { + "word": "nebraska", + "freq": 9.55e-06 + }, + { + "word": "organize", + "freq": 9.55e-06 + }, + { + "word": "portions", + "freq": 9.55e-06 + }, + { + "word": "recalled", + "freq": 9.55e-06 + }, + { + "word": "seasonal", + "freq": 9.55e-06 + }, + { + "word": "sensible", + "freq": 9.55e-06 + }, + { + "word": "shifting", + "freq": 9.55e-06 + }, + { + "word": "spinning", + "freq": 9.55e-06 + }, + { + "word": "stanford", + "freq": 9.55e-06 + }, + { + "word": "stepping", + "freq": 9.55e-06 + }, + { + "word": "township", + "freq": 9.55e-06 + }, + { + "word": "bachelor", + "freq": 9.33e-06 + }, + { + "word": "billions", + "freq": 9.33e-06 + }, + { + "word": "brisbane", + "freq": 9.33e-06 + }, + { + "word": "bullying", + "freq": 9.33e-06 + }, + { + "word": "entities", + "freq": 9.33e-06 + }, + { + "word": "flooding", + "freq": 9.33e-06 + }, + { + "word": "frontier", + "freq": 9.33e-06 + }, + { + "word": "hardcore", + "freq": 9.33e-06 + }, + { + "word": "headache", + "freq": 9.33e-06 + }, + { + "word": "hispanic", + "freq": 9.33e-06 + }, + { + "word": "performs", + "freq": 9.33e-06 + }, + { + "word": "portable", + "freq": 9.33e-06 + }, + { + "word": "randomly", + "freq": 9.33e-06 + }, + { + "word": "rankings", + "freq": 9.33e-06 + }, + { + "word": "searched", + "freq": 9.33e-06 + }, + { + "word": "shouting", + "freq": 9.33e-06 + }, + { + "word": "tactical", + "freq": 9.33e-06 + }, + { + "word": "thorough", + "freq": 9.33e-06 + }, + { + "word": "boarding", + "freq": 9.12e-06 + }, + { + "word": "bothered", + "freq": 9.12e-06 + }, + { + "word": "circular", + "freq": 9.12e-06 + }, + { + "word": "comedian", + "freq": 9.12e-06 + }, + { + "word": "deceased", + "freq": 9.12e-06 + }, + { + "word": "defining", + "freq": 9.12e-06 + }, + { + "word": "disputes", + "freq": 9.12e-06 + }, + { + "word": "explicit", + "freq": 9.12e-06 + }, + { + "word": "florence", + "freq": 9.12e-06 + }, + { + "word": "fraction", + "freq": 9.12e-06 + }, + { + "word": "infantry", + "freq": 9.12e-06 + }, + { + "word": "integral", + "freq": 9.12e-06 + }, + { + "word": "investor", + "freq": 9.12e-06 + }, + { + "word": "lectures", + "freq": 9.12e-06 + }, + { + "word": "maritime", + "freq": 9.12e-06 + }, + { + "word": "pursuing", + "freq": 9.12e-06 + }, + { + "word": "renowned", + "freq": 9.12e-06 + }, + { + "word": "socially", + "freq": 9.12e-06 + }, + { + "word": "tendency", + "freq": 9.12e-06 + }, + { + "word": "welcomed", + "freq": 9.12e-06 + }, + { + "word": "colombia", + "freq": 8.91e-06 + }, + { + "word": "consumed", + "freq": 8.91e-06 + }, + { + "word": "distress", + "freq": 8.91e-06 + }, + { + "word": "elevator", + "freq": 8.91e-06 + }, + { + "word": "homeland", + "freq": 8.91e-06 + }, + { + "word": "imported", + "freq": 8.91e-06 + }, + { + "word": "limiting", + "freq": 8.91e-06 + }, + { + "word": "mainland", + "freq": 8.91e-06 + }, + { + "word": "relieved", + "freq": 8.91e-06 + }, + { + "word": "rhetoric", + "freq": 8.91e-06 + }, + { + "word": "colonies", + "freq": 8.71e-06 + }, + { + "word": "dreaming", + "freq": 8.71e-06 + }, + { + "word": "grinding", + "freq": 8.71e-06 + }, + { + "word": "guessing", + "freq": 8.71e-06 + }, + { + "word": "illusion", + "freq": 8.71e-06 + }, + { + "word": "junction", + "freq": 8.71e-06 + }, + { + "word": "medicare", + "freq": 8.71e-06 + }, + { + "word": "modeling", + "freq": 8.71e-06 + }, + { + "word": "overtime", + "freq": 8.71e-06 + }, + { + "word": "profound", + "freq": 8.71e-06 + }, + { + "word": "threaten", + "freq": 8.71e-06 + }, + { + "word": "thrilled", + "freq": 8.71e-06 + }, + { + "word": "verified", + "freq": 8.71e-06 + }, + { + "word": "berkeley", + "freq": 8.51e-06 + }, + { + "word": "drilling", + "freq": 8.51e-06 + }, + { + "word": "incoming", + "freq": 8.51e-06 + }, + { + "word": "minerals", + "freq": 8.51e-06 + }, + { + "word": "offended", + "freq": 8.51e-06 + }, + { + "word": "orthodox", + "freq": 8.51e-06 + }, + { + "word": "overhead", + "freq": 8.51e-06 + }, + { + "word": "regiment", + "freq": 8.51e-06 + }, + { + "word": "securing", + "freq": 8.51e-06 + }, + { + "word": "speeches", + "freq": 8.51e-06 + }, + { + "word": "steering", + "freq": 8.51e-06 + }, + { + "word": "sullivan", + "freq": 8.51e-06 + }, + { + "word": "thankful", + "freq": 8.51e-06 + }, + { + "word": "triangle", + "freq": 8.51e-06 + }, + { + "word": "upgraded", + "freq": 8.51e-06 + }, + { + "word": "vladimir", + "freq": 8.51e-06 + }, + { + "word": "absorbed", + "freq": 8.32e-06 + }, + { + "word": "airplane", + "freq": 8.32e-06 + }, + { + "word": "altitude", + "freq": 8.32e-06 + }, + { + "word": "biblical", + "freq": 8.32e-06 + }, + { + "word": "coloured", + "freq": 8.32e-06 + }, + { + "word": "cracking", + "freq": 8.32e-06 + }, + { + "word": "enabling", + "freq": 8.32e-06 + }, + { + "word": "enrolled", + "freq": 8.32e-06 + }, + { + "word": "showcase", + "freq": 8.32e-06 + }, + { + "word": "theology", + "freq": 8.32e-06 + }, + { + "word": "uploaded", + "freq": 8.32e-06 + }, + { + "word": "velocity", + "freq": 8.32e-06 + }, + { + "word": "ambition", + "freq": 8.13e-06 + }, + { + "word": "borrowed", + "freq": 8.13e-06 + }, + { + "word": "clicking", + "freq": 8.13e-06 + }, + { + "word": "damaging", + "freq": 8.13e-06 + }, + { + "word": "exterior", + "freq": 8.13e-06 + }, + { + "word": "feminine", + "freq": 8.13e-06 + }, + { + "word": "firearms", + "freq": 8.13e-06 + }, + { + "word": "fountain", + "freq": 8.13e-06 + }, + { + "word": "genocide", + "freq": 8.13e-06 + }, + { + "word": "hometown", + "freq": 8.13e-06 + }, + { + "word": "immunity", + "freq": 8.13e-06 + }, + { + "word": "massacre", + "freq": 8.13e-06 + }, + { + "word": "nickname", + "freq": 8.13e-06 + }, + { + "word": "observer", + "freq": 8.13e-06 + }, + { + "word": "offshore", + "freq": 8.13e-06 + }, + { + "word": "optional", + "freq": 8.13e-06 + }, + { + "word": "shortage", + "freq": 8.13e-06 + }, + { + "word": "suburban", + "freq": 8.13e-06 + }, + { + "word": "terribly", + "freq": 8.13e-06 + }, + { + "word": "thriller", + "freq": 8.13e-06 + }, + { + "word": "troubled", + "freq": 8.13e-06 + }, + { + "word": "violated", + "freq": 8.13e-06 + }, + { + "word": "advocacy", + "freq": 7.94e-06 + }, + { + "word": "analyzed", + "freq": 7.94e-06 + }, + { + "word": "arguably", + "freq": 7.94e-06 + }, + { + "word": "assessed", + "freq": 7.94e-06 + }, + { + "word": "bulgaria", + "freq": 7.94e-06 + }, + { + "word": "canceled", + "freq": 7.94e-06 + }, + { + "word": "cardinal", + "freq": 7.94e-06 + }, + { + "word": "classics", + "freq": 7.94e-06 + }, + { + "word": "conclude", + "freq": 7.94e-06 + }, + { + "word": "delaware", + "freq": 7.94e-06 + }, + { + "word": "explored", + "freq": 7.94e-06 + }, + { + "word": "finishes", + "freq": 7.94e-06 + }, + { + "word": "listings", + "freq": 7.94e-06 + }, + { + "word": "literacy", + "freq": 7.94e-06 + }, + { + "word": "migrants", + "freq": 7.94e-06 + }, + { + "word": "moisture", + "freq": 7.94e-06 + }, + { + "word": "monument", + "freq": 7.94e-06 + }, + { + "word": "particle", + "freq": 7.94e-06 + }, + { + "word": "relaxing", + "freq": 7.94e-06 + }, + { + "word": "respects", + "freq": 7.94e-06 + }, + { + "word": "shepherd", + "freq": 7.94e-06 + }, + { + "word": "sounding", + "freq": 7.94e-06 + }, + { + "word": "terrific", + "freq": 7.94e-06 + }, + { + "word": "tomatoes", + "freq": 7.94e-06 + }, + { + "word": "accessed", + "freq": 7.76e-06 + }, + { + "word": "cellular", + "freq": 7.76e-06 + }, + { + "word": "cocktail", + "freq": 7.76e-06 + }, + { + "word": "costumes", + "freq": 7.76e-06 + }, + { + "word": "develops", + "freq": 7.76e-06 + }, + { + "word": "embedded", + "freq": 7.76e-06 + }, + { + "word": "excluded", + "freq": 7.76e-06 + }, + { + "word": "farewell", + "freq": 7.76e-06 + }, + { + "word": "landlord", + "freq": 7.76e-06 + }, + { + "word": "landmark", + "freq": 7.76e-06 + }, + { + "word": "launches", + "freq": 7.76e-06 + }, + { + "word": "prevents", + "freq": 7.76e-06 + }, + { + "word": "profiles", + "freq": 7.76e-06 + }, + { + "word": "salaries", + "freq": 7.76e-06 + }, + { + "word": "thirteen", + "freq": 7.76e-06 + }, + { + "word": "umbrella", + "freq": 7.76e-06 + }, + { + "word": "corridor", + "freq": 7.59e-06 + }, + { + "word": "credited", + "freq": 7.59e-06 + }, + { + "word": "ferguson", + "freq": 7.59e-06 + }, + { + "word": "fourteen", + "freq": 7.59e-06 + }, + { + "word": "geometry", + "freq": 7.59e-06 + }, + { + "word": "juvenile", + "freq": 7.59e-06 + }, + { + "word": "knocking", + "freq": 7.59e-06 + }, + { + "word": "leverage", + "freq": 7.59e-06 + }, + { + "word": "prompted", + "freq": 7.59e-06 + }, + { + "word": "rendered", + "freq": 7.59e-06 + }, + { + "word": "reversed", + "freq": 7.59e-06 + }, + { + "word": "tribunal", + "freq": 7.59e-06 + }, + { + "word": "uniforms", + "freq": 7.59e-06 + }, + { + "word": "appetite", + "freq": 7.41e-06 + }, + { + "word": "backyard", + "freq": 7.41e-06 + }, + { + "word": "dominate", + "freq": 7.41e-06 + }, + { + "word": "endorsed", + "freq": 7.41e-06 + }, + { + "word": "forehead", + "freq": 7.41e-06 + }, + { + "word": "inclined", + "freq": 7.41e-06 + }, + { + "word": "informal", + "freq": 7.41e-06 + }, + { + "word": "maturity", + "freq": 7.41e-06 + }, + { + "word": "morrison", + "freq": 7.41e-06 + }, + { + "word": "muhammad", + "freq": 7.41e-06 + }, + { + "word": "outlined", + "freq": 7.41e-06 + }, + { + "word": "pharmacy", + "freq": 7.41e-06 + }, + { + "word": "regulate", + "freq": 7.41e-06 + }, + { + "word": "uncommon", + "freq": 7.41e-06 + }, + { + "word": "underway", + "freq": 7.41e-06 + }, + { + "word": "unstable", + "freq": 7.41e-06 + }, + { + "word": "upstairs", + "freq": 7.41e-06 + }, + { + "word": "autonomy", + "freq": 7.24e-06 + }, + { + "word": "carnival", + "freq": 7.24e-06 + }, + { + "word": "delivers", + "freq": 7.24e-06 + }, + { + "word": "envelope", + "freq": 7.24e-06 + }, + { + "word": "handbook", + "freq": 7.24e-06 + }, + { + "word": "insights", + "freq": 7.24e-06 + }, + { + "word": "instinct", + "freq": 7.24e-06 + }, + { + "word": "inviting", + "freq": 7.24e-06 + }, + { + "word": "mistress", + "freq": 7.24e-06 + }, + { + "word": "morality", + "freq": 7.24e-06 + }, + { + "word": "mounting", + "freq": 7.24e-06 + }, + { + "word": "searches", + "freq": 7.24e-06 + }, + { + "word": "sunlight", + "freq": 7.24e-06 + }, + { + "word": "symbolic", + "freq": 7.24e-06 + }, + { + "word": "taxpayer", + "freq": 7.24e-06 + }, + { + "word": "averaged", + "freq": 7.08e-06 + }, + { + "word": "brighton", + "freq": 7.08e-06 + }, + { + "word": "buddhist", + "freq": 7.08e-06 + }, + { + "word": "carriage", + "freq": 7.08e-06 + }, + { + "word": "composer", + "freq": 7.08e-06 + }, + { + "word": "explorer", + "freq": 7.08e-06 + }, + { + "word": "feminism", + "freq": 7.08e-06 + }, + { + "word": "gasoline", + "freq": 7.08e-06 + }, + { + "word": "governed", + "freq": 7.08e-06 + }, + { + "word": "grandson", + "freq": 7.08e-06 + }, + { + "word": "necklace", + "freq": 7.08e-06 + }, + { + "word": "peterson", + "freq": 7.08e-06 + }, + { + "word": "secondly", + "freq": 7.08e-06 + }, + { + "word": "settling", + "freq": 7.08e-06 + }, + { + "word": "confirms", + "freq": 6.92e-06 + }, + { + "word": "crashing", + "freq": 6.92e-06 + }, + { + "word": "crawford", + "freq": 6.92e-06 + }, + { + "word": "daylight", + "freq": 6.92e-06 + }, + { + "word": "disclose", + "freq": 6.92e-06 + }, + { + "word": "genetics", + "freq": 6.92e-06 + }, + { + "word": "grounded", + "freq": 6.92e-06 + }, + { + "word": "monopoly", + "freq": 6.92e-06 + } + ], + "11": [ + { + "word": "information", + "freq": 0.000269 + }, + { + "word": "development", + "freq": 0.000204 + }, + { + "word": "performance", + "freq": 0.000145 + }, + { + "word": "association", + "freq": 0.000102 + }, + { + "word": "interesting", + "freq": 0.0001 + }, + { + "word": "immediately", + "freq": 9.55e-05 + }, + { + "word": "significant", + "freq": 9.55e-05 + }, + { + "word": "opportunity", + "freq": 8.91e-05 + }, + { + "word": "independent", + "freq": 8.51e-05 + }, + { + "word": "competition", + "freq": 8.13e-05 + }, + { + "word": "established", + "freq": 7.94e-05 + }, + { + "word": "responsible", + "freq": 7.59e-05 + }, + { + "word": "environment", + "freq": 7.41e-05 + }, + { + "word": "application", + "freq": 7.24e-05 + }, + { + "word": "traditional", + "freq": 6.92e-05 + }, + { + "word": "engineering", + "freq": 6.31e-05 + }, + { + "word": "description", + "freq": 5.37e-05 + }, + { + "word": "alternative", + "freq": 5.13e-05 + }, + { + "word": "communities", + "freq": 5.13e-05 + }, + { + "word": "appropriate", + "freq": 4.68e-05 + }, + { + "word": "comfortable", + "freq": 4.57e-05 + }, + { + "word": "considering", + "freq": 4.37e-05 + }, + { + "word": "temperature", + "freq": 4.37e-05 + }, + { + "word": "authorities", + "freq": 4.27e-05 + }, + { + "word": "experienced", + "freq": 4.27e-05 + }, + { + "word": "combination", + "freq": 4.07e-05 + }, + { + "word": "educational", + "freq": 3.98e-05 + }, + { + "word": "corporation", + "freq": 3.89e-05 + }, + { + "word": "possibility", + "freq": 3.8e-05 + }, + { + "word": "competitive", + "freq": 3.72e-05 + }, + { + "word": "perspective", + "freq": 3.63e-05 + }, + { + "word": "experiences", + "freq": 3.55e-05 + }, + { + "word": "legislation", + "freq": 3.55e-05 + }, + { + "word": "maintenance", + "freq": 3.55e-05 + }, + { + "word": "personality", + "freq": 3.55e-05 + }, + { + "word": "advertising", + "freq": 3.47e-05 + }, + { + "word": "anniversary", + "freq": 3.39e-05 + }, + { + "word": "represented", + "freq": 3.39e-05 + }, + { + "word": "differences", + "freq": 3.31e-05 + }, + { + "word": "outstanding", + "freq": 3.16e-05 + }, + { + "word": "recommended", + "freq": 3.16e-05 + }, + { + "word": "regulations", + "freq": 3.16e-05 + }, + { + "word": "appointment", + "freq": 3.09e-05 + }, + { + "word": "effectively", + "freq": 3.09e-05 + }, + { + "word": "improvement", + "freq": 3.09e-05 + }, + { + "word": "surrounding", + "freq": 3.09e-05 + }, + { + "word": "necessarily", + "freq": 3.02e-05 + }, + { + "word": "partnership", + "freq": 3.02e-05 + }, + { + "word": "complicated", + "freq": 2.95e-05 + }, + { + "word": "immigration", + "freq": 2.95e-05 + }, + { + "word": "recognition", + "freq": 2.95e-05 + }, + { + "word": "enforcement", + "freq": 2.82e-05 + }, + { + "word": "photography", + "freq": 2.82e-05 + }, + { + "word": "publication", + "freq": 2.82e-05 + }, + { + "word": "explanation", + "freq": 2.75e-05 + }, + { + "word": "replacement", + "freq": 2.75e-05 + }, + { + "word": "electricity", + "freq": 2.69e-05 + }, + { + "word": "essentially", + "freq": 2.63e-05 + }, + { + "word": "participate", + "freq": 2.63e-05 + }, + { + "word": "inspiration", + "freq": 2.57e-05 + }, + { + "word": "institution", + "freq": 2.57e-05 + }, + { + "word": "contributed", + "freq": 2.45e-05 + }, + { + "word": "potentially", + "freq": 2.45e-05 + }, + { + "word": "translation", + "freq": 2.45e-05 + }, + { + "word": "agriculture", + "freq": 2.34e-05 + }, + { + "word": "programming", + "freq": 2.34e-05 + }, + { + "word": "achievement", + "freq": 2.29e-05 + }, + { + "word": "destruction", + "freq": 2.29e-05 + }, + { + "word": "transferred", + "freq": 2.29e-05 + }, + { + "word": "consumption", + "freq": 2.24e-05 + }, + { + "word": "photographs", + "freq": 2.19e-05 + }, + { + "word": "progressive", + "freq": 2.19e-05 + }, + { + "word": "composition", + "freq": 2.14e-05 + }, + { + "word": "fundamental", + "freq": 2.14e-05 + }, + { + "word": "residential", + "freq": 2.14e-05 + }, + { + "word": "substantial", + "freq": 2.14e-05 + }, + { + "word": "legislative", + "freq": 2.09e-05 + }, + { + "word": "preparation", + "freq": 2.09e-05 + }, + { + "word": "underground", + "freq": 2.09e-05 + }, + { + "word": "distributed", + "freq": 2.04e-05 + }, + { + "word": "documentary", + "freq": 2.04e-05 + }, + { + "word": "investigate", + "freq": 2.04e-05 + }, + { + "word": "cooperation", + "freq": 2e-05 + }, + { + "word": "involvement", + "freq": 2e-05 + }, + { + "word": "celebration", + "freq": 1.95e-05 + }, + { + "word": "certificate", + "freq": 1.95e-05 + }, + { + "word": "constructed", + "freq": 1.95e-05 + }, + { + "word": "intelligent", + "freq": 1.95e-05 + }, + { + "word": "interaction", + "freq": 1.95e-05 + }, + { + "word": "discussions", + "freq": 1.91e-05 + }, + { + "word": "netherlands", + "freq": 1.91e-05 + }, + { + "word": "challenging", + "freq": 1.86e-05 + }, + { + "word": "investments", + "freq": 1.86e-05 + }, + { + "word": "acquisition", + "freq": 1.82e-05 + }, + { + "word": "controversy", + "freq": 1.82e-05 + }, + { + "word": "disappeared", + "freq": 1.82e-05 + }, + { + "word": "examination", + "freq": 1.82e-05 + }, + { + "word": "requirement", + "freq": 1.82e-05 + }, + { + "word": "accompanied", + "freq": 1.78e-05 + }, + { + "word": "arrangement", + "freq": 1.78e-05 + }, + { + "word": "maintaining", + "freq": 1.78e-05 + }, + { + "word": "destination", + "freq": 1.74e-05 + }, + { + "word": "exclusively", + "freq": 1.74e-05 + }, + { + "word": "grandfather", + "freq": 1.74e-05 + }, + { + "word": "suggestions", + "freq": 1.74e-05 + }, + { + "word": "afghanistan", + "freq": 1.7e-05 + }, + { + "word": "differently", + "freq": 1.7e-05 + }, + { + "word": "furthermore", + "freq": 1.7e-05 + }, + { + "word": "implemented", + "freq": 1.7e-05 + }, + { + "word": "switzerland", + "freq": 1.7e-05 + }, + { + "word": "christopher", + "freq": 1.66e-05 + }, + { + "word": "imagination", + "freq": 1.66e-05 + }, + { + "word": "integration", + "freq": 1.66e-05 + }, + { + "word": "operational", + "freq": 1.62e-05 + }, + { + "word": "transaction", + "freq": 1.62e-05 + }, + { + "word": "communicate", + "freq": 1.58e-05 + }, + { + "word": "demonstrate", + "freq": 1.58e-05 + }, + { + "word": "electronics", + "freq": 1.55e-05 + }, + { + "word": "exploration", + "freq": 1.55e-05 + }, + { + "word": "mississippi", + "freq": 1.55e-05 + }, + { + "word": "practically", + "freq": 1.55e-05 + }, + { + "word": "sustainable", + "freq": 1.55e-05 + }, + { + "word": "threatening", + "freq": 1.55e-05 + }, + { + "word": "acknowledge", + "freq": 1.51e-05 + }, + { + "word": "consecutive", + "freq": 1.51e-05 + }, + { + "word": "proceedings", + "freq": 1.51e-05 + }, + { + "word": "unnecessary", + "freq": 1.51e-05 + }, + { + "word": "approaching", + "freq": 1.48e-05 + }, + { + "word": "celebrating", + "freq": 1.48e-05 + }, + { + "word": "controlling", + "freq": 1.48e-05 + }, + { + "word": "illustrated", + "freq": 1.48e-05 + }, + { + "word": "appreciated", + "freq": 1.45e-05 + }, + { + "word": "introducing", + "freq": 1.45e-05 + }, + { + "word": "legislature", + "freq": 1.45e-05 + }, + { + "word": "preliminary", + "freq": 1.45e-05 + }, + { + "word": "mathematics", + "freq": 1.41e-05 + }, + { + "word": "scholarship", + "freq": 1.41e-05 + }, + { + "word": "encouraging", + "freq": 1.38e-05 + }, + { + "word": "grandmother", + "freq": 1.38e-05 + }, + { + "word": "ingredients", + "freq": 1.38e-05 + }, + { + "word": "instruction", + "freq": 1.38e-05 + }, + { + "word": "statistical", + "freq": 1.38e-05 + }, + { + "word": "fascinating", + "freq": 1.35e-05 + }, + { + "word": "observation", + "freq": 1.35e-05 + }, + { + "word": "understands", + "freq": 1.35e-05 + }, + { + "word": "complaining", + "freq": 1.32e-05 + }, + { + "word": "unfortunate", + "freq": 1.32e-05 + }, + { + "word": "connecticut", + "freq": 1.29e-05 + }, + { + "word": "palestinian", + "freq": 1.29e-05 + }, + { + "word": "restoration", + "freq": 1.29e-05 + }, + { + "word": "citizenship", + "freq": 1.26e-05 + }, + { + "word": "declaration", + "freq": 1.26e-05 + }, + { + "word": "distinction", + "freq": 1.26e-05 + }, + { + "word": "technically", + "freq": 1.26e-05 + }, + { + "word": "appearances", + "freq": 1.23e-05 + }, + { + "word": "importantly", + "freq": 1.23e-05 + }, + { + "word": "influential", + "freq": 1.23e-05 + }, + { + "word": "allegations", + "freq": 1.2e-05 + }, + { + "word": "anticipated", + "freq": 1.2e-05 + }, + { + "word": "celebrities", + "freq": 1.2e-05 + }, + { + "word": "permanently", + "freq": 1.2e-05 + }, + { + "word": "transformed", + "freq": 1.2e-05 + }, + { + "word": "concentrate", + "freq": 1.17e-05 + }, + { + "word": "consequence", + "freq": 1.17e-05 + }, + { + "word": "inhabitants", + "freq": 1.17e-05 + }, + { + "word": "specialized", + "freq": 1.17e-05 + }, + { + "word": "encountered", + "freq": 1.15e-05 + }, + { + "word": "interactive", + "freq": 1.15e-05 + }, + { + "word": "politically", + "freq": 1.15e-05 + }, + { + "word": "prosecution", + "freq": 1.15e-05 + }, + { + "word": "spectacular", + "freq": 1.15e-05 + }, + { + "word": "temporarily", + "freq": 1.15e-05 + }, + { + "word": "embarrassed", + "freq": 1.12e-05 + }, + { + "word": "exceptional", + "freq": 1.12e-05 + }, + { + "word": "limitations", + "freq": 1.12e-05 + }, + { + "word": "measurement", + "freq": 1.12e-05 + }, + { + "word": "orientation", + "freq": 1.12e-05 + }, + { + "word": "emotionally", + "freq": 1.1e-05 + }, + { + "word": "magnificent", + "freq": 1.1e-05 + }, + { + "word": "nonetheless", + "freq": 1.1e-05 + }, + { + "word": "questioning", + "freq": 1.1e-05 + }, + { + "word": "dimensional", + "freq": 1.07e-05 + }, + { + "word": "identifying", + "freq": 1.07e-05 + }, + { + "word": "uncertainty", + "freq": 1.07e-05 + }, + { + "word": "accommodate", + "freq": 1.05e-05 + }, + { + "word": "accordingly", + "freq": 1.05e-05 + }, + { + "word": "continental", + "freq": 1.05e-05 + }, + { + "word": "convenience", + "freq": 1.05e-05 + }, + { + "word": "flexibility", + "freq": 1.05e-05 + }, + { + "word": "functioning", + "freq": 1.05e-05 + }, + { + "word": "probability", + "freq": 1.05e-05 + }, + { + "word": "resignation", + "freq": 1.05e-05 + }, + { + "word": "territories", + "freq": 1.05e-05 + }, + { + "word": "theoretical", + "freq": 1.02e-05 + }, + { + "word": "transparent", + "freq": 1.02e-05 + }, + { + "word": "conclusions", + "freq": 1e-05 + }, + { + "word": "distinctive", + "freq": 1e-05 + }, + { + "word": "interviewed", + "freq": 1e-05 + }, + { + "word": "recruitment", + "freq": 1e-05 + }, + { + "word": "shakespeare", + "freq": 1e-05 + }, + { + "word": "westminster", + "freq": 1e-05 + }, + { + "word": "consistency", + "freq": 9.77e-06 + }, + { + "word": "expectation", + "freq": 9.77e-06 + }, + { + "word": "obligations", + "freq": 9.77e-06 + }, + { + "word": "speculation", + "freq": 9.77e-06 + }, + { + "word": "governments", + "freq": 9.55e-06 + }, + { + "word": "desperately", + "freq": 9.55e-06 + }, + { + "word": "financially", + "freq": 9.55e-06 + }, + { + "word": "manufacture", + "freq": 9.55e-06 + }, + { + "word": "determining", + "freq": 9.33e-06 + }, + { + "word": "fortunately", + "freq": 9.33e-06 + }, + { + "word": "frustrating", + "freq": 9.33e-06 + }, + { + "word": "frustration", + "freq": 9.33e-06 + }, + { + "word": "circulation", + "freq": 9.12e-06 + }, + { + "word": "coincidence", + "freq": 9.12e-06 + }, + { + "word": "accessories", + "freq": 8.91e-06 + }, + { + "word": "assumptions", + "freq": 8.91e-06 + }, + { + "word": "businessman", + "freq": 8.91e-06 + }, + { + "word": "quarterback", + "freq": 8.91e-06 + }, + { + "word": "reservation", + "freq": 8.91e-06 + }, + { + "word": "sensitivity", + "freq": 8.91e-06 + }, + { + "word": "playstation", + "freq": 8.71e-06 + }, + { + "word": "predictions", + "freq": 8.71e-06 + }, + { + "word": "remembering", + "freq": 8.71e-06 + }, + { + "word": "supervision", + "freq": 8.71e-06 + }, + { + "word": "unconscious", + "freq": 8.71e-06 + }, + { + "word": "battlefield", + "freq": 8.51e-06 + }, + { + "word": "conjunction", + "freq": 8.51e-06 + }, + { + "word": "elimination", + "freq": 8.51e-06 + }, + { + "word": "merchandise", + "freq": 8.51e-06 + }, + { + "word": "beautifully", + "freq": 8.32e-06 + }, + { + "word": "countryside", + "freq": 8.32e-06 + }, + { + "word": "demographic", + "freq": 8.32e-06 + }, + { + "word": "expressions", + "freq": 8.32e-06 + }, + { + "word": "interpreted", + "freq": 8.32e-06 + }, + { + "word": "reliability", + "freq": 8.32e-06 + }, + { + "word": "continually", + "freq": 8.13e-06 + }, + { + "word": "coordinator", + "freq": 8.13e-06 + }, + { + "word": "nationalist", + "freq": 8.13e-06 + }, + { + "word": "territorial", + "freq": 8.13e-06 + }, + { + "word": "transgender", + "freq": 8.13e-06 + }, + { + "word": "accountable", + "freq": 7.94e-06 + }, + { + "word": "attractions", + "freq": 7.94e-06 + }, + { + "word": "hospitality", + "freq": 7.94e-06 + }, + { + "word": "progression", + "freq": 7.94e-06 + }, + { + "word": "specialists", + "freq": 7.94e-06 + }, + { + "word": "trafficking", + "freq": 7.94e-06 + }, + { + "word": "destructive", + "freq": 7.76e-06 + }, + { + "word": "highlighted", + "freq": 7.76e-06 + }, + { + "word": "assignments", + "freq": 7.59e-06 + }, + { + "word": "credibility", + "freq": 7.59e-06 + }, + { + "word": "overwhelmed", + "freq": 7.59e-06 + }, + { + "word": "preferences", + "freq": 7.59e-06 + }, + { + "word": "transported", + "freq": 7.59e-06 + }, + { + "word": "undoubtedly", + "freq": 7.59e-06 + }, + { + "word": "distinguish", + "freq": 7.41e-06 + }, + { + "word": "extensively", + "freq": 7.41e-06 + }, + { + "word": "forgiveness", + "freq": 7.41e-06 + }, + { + "word": "minneapolis", + "freq": 7.41e-06 + }, + { + "word": "neighboring", + "freq": 7.41e-06 + }, + { + "word": "problematic", + "freq": 7.41e-06 + }, + { + "word": "promotional", + "freq": 7.41e-06 + }, + { + "word": "prospective", + "freq": 7.41e-06 + }, + { + "word": "psychiatric", + "freq": 7.41e-06 + }, + { + "word": "renaissance", + "freq": 7.41e-06 + }, + { + "word": "transmitted", + "freq": 7.41e-06 + }, + { + "word": "congressman", + "freq": 7.24e-06 + }, + { + "word": "cooperative", + "freq": 7.24e-06 + }, + { + "word": "correlation", + "freq": 7.24e-06 + }, + { + "word": "prestigious", + "freq": 7.24e-06 + }, + { + "word": "sovereignty", + "freq": 7.24e-06 + }, + { + "word": "accusations", + "freq": 7.08e-06 + }, + { + "word": "brotherhood", + "freq": 7.08e-06 + }, + { + "word": "compilation", + "freq": 7.08e-06 + }, + { + "word": "devastating", + "freq": 7.08e-06 + }, + { + "word": "incorporate", + "freq": 7.08e-06 + }, + { + "word": "interrupted", + "freq": 7.08e-06 + }, + { + "word": "proposition", + "freq": 7.08e-06 + }, + { + "word": "therapeutic", + "freq": 7.08e-06 + }, + { + "word": "atmospheric", + "freq": 6.92e-06 + }, + { + "word": "nationalism", + "freq": 6.76e-06 + }, + { + "word": "adjustments", + "freq": 6.61e-06 + }, + { + "word": "commercials", + "freq": 6.61e-06 + }, + { + "word": "compression", + "freq": 6.61e-06 + }, + { + "word": "coordinates", + "freq": 6.61e-06 + }, + { + "word": "definitions", + "freq": 6.61e-06 + }, + { + "word": "discovering", + "freq": 6.61e-06 + }, + { + "word": "marketplace", + "freq": 6.61e-06 + }, + { + "word": "methodology", + "freq": 6.61e-06 + }, + { + "word": "nominations", + "freq": 6.61e-06 + }, + { + "word": "predecessor", + "freq": 6.61e-06 + }, + { + "word": "willingness", + "freq": 6.61e-06 + }, + { + "word": "advancement", + "freq": 6.46e-06 + }, + { + "word": "fundraising", + "freq": 6.46e-06 + }, + { + "word": "masterpiece", + "freq": 6.46e-06 + }, + { + "word": "possessions", + "freq": 6.46e-06 + }, + { + "word": "respiratory", + "freq": 6.46e-06 + }, + { + "word": "southampton", + "freq": 6.46e-06 + }, + { + "word": "sympathetic", + "freq": 6.46e-06 + }, + { + "word": "constraints", + "freq": 6.31e-06 + }, + { + "word": "inheritance", + "freq": 6.31e-06 + }, + { + "word": "assessments", + "freq": 6.17e-06 + }, + { + "word": "backgrounds", + "freq": 6.17e-06 + }, + { + "word": "commitments", + "freq": 6.17e-06 + }, + { + "word": "comparisons", + "freq": 6.17e-06 + }, + { + "word": "coordinated", + "freq": 6.17e-06 + }, + { + "word": "efficiently", + "freq": 6.17e-06 + }, + { + "word": "eliminating", + "freq": 6.17e-06 + }, + { + "word": "springfield", + "freq": 6.17e-06 + }, + { + "word": "compromised", + "freq": 6.03e-06 + }, + { + "word": "distraction", + "freq": 6.03e-06 + }, + { + "word": "lightweight", + "freq": 6.03e-06 + }, + { + "word": "negotiating", + "freq": 6.03e-06 + }, + { + "word": "negotiation", + "freq": 6.03e-06 + }, + { + "word": "participant", + "freq": 6.03e-06 + }, + { + "word": "supermarket", + "freq": 6.03e-06 + }, + { + "word": "universitys", + "freq": 6.03e-06 + }, + { + "word": "comparative", + "freq": 5.89e-06 + }, + { + "word": "ideological", + "freq": 5.89e-06 + }, + { + "word": "prohibition", + "freq": 5.89e-06 + }, + { + "word": "recognizing", + "freq": 5.89e-06 + }, + { + "word": "supplements", + "freq": 5.89e-06 + }, + { + "word": "theological", + "freq": 5.89e-06 + }, + { + "word": "billionaire", + "freq": 5.75e-06 + }, + { + "word": "calculation", + "freq": 5.75e-06 + }, + { + "word": "decorations", + "freq": 5.75e-06 + }, + { + "word": "designation", + "freq": 5.75e-06 + }, + { + "word": "medications", + "freq": 5.75e-06 + }, + { + "word": "predictable", + "freq": 5.75e-06 + }, + { + "word": "restriction", + "freq": 5.75e-06 + }, + { + "word": "accelerated", + "freq": 5.62e-06 + }, + { + "word": "eligibility", + "freq": 5.62e-06 + }, + { + "word": "endorsement", + "freq": 5.62e-06 + }, + { + "word": "forthcoming", + "freq": 5.62e-06 + }, + { + "word": "antibiotics", + "freq": 5.5e-06 + }, + { + "word": "comfortably", + "freq": 5.5e-06 + }, + { + "word": "contributes", + "freq": 5.5e-06 + }, + { + "word": "credentials", + "freq": 5.5e-06 + }, + { + "word": "expenditure", + "freq": 5.5e-06 + }, + { + "word": "frequencies", + "freq": 5.5e-06 + }, + { + "word": "commodities", + "freq": 5.37e-06 + }, + { + "word": "discoveries", + "freq": 5.37e-06 + }, + { + "word": "innovations", + "freq": 5.37e-06 + }, + { + "word": "millionaire", + "freq": 5.37e-06 + }, + { + "word": "positioning", + "freq": 5.37e-06 + }, + { + "word": "termination", + "freq": 5.37e-06 + }, + { + "word": "arbitration", + "freq": 5.25e-06 + }, + { + "word": "cholesterol", + "freq": 5.25e-06 + }, + { + "word": "constitutes", + "freq": 5.25e-06 + }, + { + "word": "contributor", + "freq": 5.25e-06 + }, + { + "word": "intentional", + "freq": 5.25e-06 + }, + { + "word": "nationality", + "freq": 5.25e-06 + }, + { + "word": "persecution", + "freq": 5.25e-06 + }, + { + "word": "philosopher", + "freq": 5.25e-06 + }, + { + "word": "radioactive", + "freq": 5.25e-06 + }, + { + "word": "realization", + "freq": 5.25e-06 + }, + { + "word": "sponsorship", + "freq": 5.25e-06 + }, + { + "word": "undertaking", + "freq": 5.25e-06 + }, + { + "word": "voluntarily", + "freq": 5.25e-06 + }, + { + "word": "convictions", + "freq": 5.13e-06 + }, + { + "word": "descendants", + "freq": 5.13e-06 + }, + { + "word": "impressions", + "freq": 5.13e-06 + }, + { + "word": "instability", + "freq": 5.13e-06 + }, + { + "word": "observatory", + "freq": 5.13e-06 + }, + { + "word": "penetration", + "freq": 5.13e-06 + }, + { + "word": "projections", + "freq": 5.13e-06 + }, + { + "word": "respectable", + "freq": 5.13e-06 + }, + { + "word": "spontaneous", + "freq": 5.13e-06 + }, + { + "word": "submissions", + "freq": 5.13e-06 + }, + { + "word": "accumulated", + "freq": 5.01e-06 + }, + { + "word": "confederate", + "freq": 5.01e-06 + }, + { + "word": "counterpart", + "freq": 5.01e-06 + }, + { + "word": "downloading", + "freq": 5.01e-06 + }, + { + "word": "meaningless", + "freq": 5.01e-06 + }, + { + "word": "resolutions", + "freq": 5.01e-06 + }, + { + "word": "stimulation", + "freq": 5.01e-06 + }, + { + "word": "butterflies", + "freq": 4.9e-06 + }, + { + "word": "corrections", + "freq": 4.9e-06 + }, + { + "word": "disciplines", + "freq": 4.9e-06 + }, + { + "word": "compliments", + "freq": 4.79e-06 + }, + { + "word": "exaggerated", + "freq": 4.79e-06 + }, + { + "word": "overlooking", + "freq": 4.79e-06 + }, + { + "word": "perceptions", + "freq": 4.79e-06 + }, + { + "word": "procurement", + "freq": 4.79e-06 + }, + { + "word": "stereotypes", + "freq": 4.79e-06 + }, + { + "word": "suppression", + "freq": 4.79e-06 + }, + { + "word": "terminology", + "freq": 4.79e-06 + }, + { + "word": "astonishing", + "freq": 4.68e-06 + }, + { + "word": "commentator", + "freq": 4.68e-06 + }, + { + "word": "friendships", + "freq": 4.68e-06 + }, + { + "word": "frightening", + "freq": 4.68e-06 + }, + { + "word": "proprietary", + "freq": 4.68e-06 + }, + { + "word": "protagonist", + "freq": 4.68e-06 + }, + { + "word": "reflections", + "freq": 4.68e-06 + }, + { + "word": "susceptible", + "freq": 4.68e-06 + }, + { + "word": "aspirations", + "freq": 4.57e-06 + }, + { + "word": "distributor", + "freq": 4.57e-06 + }, + { + "word": "genetically", + "freq": 4.57e-06 + }, + { + "word": "ineffective", + "freq": 4.57e-06 + }, + { + "word": "interacting", + "freq": 4.57e-06 + }, + { + "word": "pornography", + "freq": 4.57e-06 + }, + { + "word": "proportions", + "freq": 4.57e-06 + }, + { + "word": "provisional", + "freq": 4.57e-06 + }, + { + "word": "concessions", + "freq": 4.47e-06 + }, + { + "word": "contracting", + "freq": 4.47e-06 + }, + { + "word": "drastically", + "freq": 4.47e-06 + }, + { + "word": "fashionable", + "freq": 4.47e-06 + }, + { + "word": "incompetent", + "freq": 4.47e-06 + }, + { + "word": "legislators", + "freq": 4.47e-06 + }, + { + "word": "manuscripts", + "freq": 4.47e-06 + }, + { + "word": "approximate", + "freq": 4.37e-06 + }, + { + "word": "compartment", + "freq": 4.37e-06 + }, + { + "word": "conditioned", + "freq": 4.37e-06 + }, + { + "word": "derivatives", + "freq": 4.37e-06 + }, + { + "word": "entertained", + "freq": 4.37e-06 + }, + { + "word": "multiplayer", + "freq": 4.37e-06 + }, + { + "word": "nutritional", + "freq": 4.37e-06 + }, + { + "word": "protections", + "freq": 4.37e-06 + }, + { + "word": "affiliation", + "freq": 4.27e-06 + }, + { + "word": "broadcaster", + "freq": 4.27e-06 + }, + { + "word": "conflicting", + "freq": 4.27e-06 + }, + { + "word": "cultivation", + "freq": 4.27e-06 + }, + { + "word": "enhancement", + "freq": 4.27e-06 + }, + { + "word": "illustrates", + "freq": 4.27e-06 + }, + { + "word": "inspections", + "freq": 4.27e-06 + }, + { + "word": "researching", + "freq": 4.27e-06 + }, + { + "word": "shareholder", + "freq": 4.27e-06 + }, + { + "word": "subdivision", + "freq": 4.27e-06 + }, + { + "word": "surrendered", + "freq": 4.27e-06 + }, + { + "word": "unavailable", + "freq": 4.27e-06 + }, + { + "word": "universally", + "freq": 4.27e-06 + }, + { + "word": "volunteered", + "freq": 4.27e-06 + }, + { + "word": "campaigning", + "freq": 4.17e-06 + }, + { + "word": "discouraged", + "freq": 4.17e-06 + }, + { + "word": "earthquakes", + "freq": 4.17e-06 + }, + { + "word": "heavyweight", + "freq": 4.17e-06 + }, + { + "word": "rectangular", + "freq": 4.17e-06 + }, + { + "word": "unanimously", + "freq": 4.17e-06 + }, + { + "word": "dissolution", + "freq": 4.07e-06 + }, + { + "word": "disturbance", + "freq": 4.07e-06 + }, + { + "word": "evangelical", + "freq": 4.07e-06 + }, + { + "word": "informative", + "freq": 4.07e-06 + }, + { + "word": "premiership", + "freq": 4.07e-06 + }, + { + "word": "remembrance", + "freq": 4.07e-06 + }, + { + "word": "reminiscent", + "freq": 4.07e-06 + }, + { + "word": "degradation", + "freq": 3.98e-06 + }, + { + "word": "equilibrium", + "freq": 3.98e-06 + }, + { + "word": "indications", + "freq": 3.98e-06 + }, + { + "word": "intercourse", + "freq": 3.98e-06 + }, + { + "word": "manipulated", + "freq": 3.98e-06 + }, + { + "word": "segregation", + "freq": 3.98e-06 + }, + { + "word": "ventilation", + "freq": 3.98e-06 + }, + { + "word": "chamberlain", + "freq": 3.89e-06 + }, + { + "word": "conditional", + "freq": 3.89e-06 + }, + { + "word": "impeachment", + "freq": 3.89e-06 + }, + { + "word": "kickstarter", + "freq": 3.89e-06 + }, + { + "word": "precautions", + "freq": 3.89e-06 + }, + { + "word": "resemblance", + "freq": 3.89e-06 + }, + { + "word": "superiority", + "freq": 3.89e-06 + }, + { + "word": "transitions", + "freq": 3.89e-06 + }, + { + "word": "transmitter", + "freq": 3.89e-06 + }, + { + "word": "vaccination", + "freq": 3.89e-06 + }, + { + "word": "condolences", + "freq": 3.8e-06 + }, + { + "word": "constituent", + "freq": 3.8e-06 + }, + { + "word": "constituted", + "freq": 3.8e-06 + }, + { + "word": "installment", + "freq": 3.8e-06 + }, + { + "word": "affirmative", + "freq": 3.72e-06 + }, + { + "word": "archaeology", + "freq": 3.72e-06 + }, + { + "word": "calculating", + "freq": 3.72e-06 + }, + { + "word": "criticizing", + "freq": 3.72e-06 + }, + { + "word": "deportation", + "freq": 3.72e-06 + }, + { + "word": "handwriting", + "freq": 3.72e-06 + }, + { + "word": "incorrectly", + "freq": 3.72e-06 + }, + { + "word": "inexpensive", + "freq": 3.72e-06 + }, + { + "word": "libertarian", + "freq": 3.72e-06 + }, + { + "word": "technicians", + "freq": 3.72e-06 + }, + { + "word": "businessmen", + "freq": 3.63e-06 + }, + { + "word": "catastrophe", + "freq": 3.63e-06 + }, + { + "word": "circulating", + "freq": 3.63e-06 + }, + { + "word": "emergencies", + "freq": 3.63e-06 + }, + { + "word": "enthusiasts", + "freq": 3.63e-06 + }, + { + "word": "implication", + "freq": 3.63e-06 + }, + { + "word": "liabilities", + "freq": 3.63e-06 + }, + { + "word": "overlapping", + "freq": 3.63e-06 + }, + { + "word": "revelations", + "freq": 3.63e-06 + }, + { + "word": "seriousness", + "freq": 3.63e-06 + }, + { + "word": "superficial", + "freq": 3.63e-06 + }, + { + "word": "bureaucracy", + "freq": 3.55e-06 + }, + { + "word": "convertible", + "freq": 3.55e-06 + }, + { + "word": "desperation", + "freq": 3.55e-06 + }, + { + "word": "detrimental", + "freq": 3.55e-06 + }, + { + "word": "entitlement", + "freq": 3.55e-06 + }, + { + "word": "humiliation", + "freq": 3.55e-06 + }, + { + "word": "ministerial", + "freq": 3.55e-06 + }, + { + "word": "obstruction", + "freq": 3.55e-06 + }, + { + "word": "prostitutes", + "freq": 3.55e-06 + }, + { + "word": "retaliation", + "freq": 3.55e-06 + }, + { + "word": "wonderfully", + "freq": 3.55e-06 + }, + { + "word": "alterations", + "freq": 3.47e-06 + }, + { + "word": "consolation", + "freq": 3.47e-06 + }, + { + "word": "corresponds", + "freq": 3.47e-06 + }, + { + "word": "descriptive", + "freq": 3.47e-06 + }, + { + "word": "empowerment", + "freq": 3.47e-06 + }, + { + "word": "inscription", + "freq": 3.47e-06 + }, + { + "word": "interpreter", + "freq": 3.47e-06 + }, + { + "word": "restrictive", + "freq": 3.47e-06 + }, + { + "word": "stimulating", + "freq": 3.47e-06 + }, + { + "word": "unrealistic", + "freq": 3.47e-06 + }, + { + "word": "whereabouts", + "freq": 3.47e-06 + }, + { + "word": "adolescents", + "freq": 3.39e-06 + }, + { + "word": "confessions", + "freq": 3.39e-06 + }, + { + "word": "intercepted", + "freq": 3.39e-06 + }, + { + "word": "interfering", + "freq": 3.39e-06 + }, + { + "word": "reformation", + "freq": 3.39e-06 + }, + { + "word": "screenshots", + "freq": 3.39e-06 + }, + { + "word": "sentimental", + "freq": 3.39e-06 + }, + { + "word": "slaughtered", + "freq": 3.39e-06 + }, + { + "word": "dysfunction", + "freq": 3.31e-06 + }, + { + "word": "integrating", + "freq": 3.31e-06 + }, + { + "word": "restricting", + "freq": 3.31e-06 + }, + { + "word": "sensational", + "freq": 3.31e-06 + }, + { + "word": "collaborate", + "freq": 3.24e-06 + }, + { + "word": "compensated", + "freq": 3.24e-06 + }, + { + "word": "councillors", + "freq": 3.24e-06 + }, + { + "word": "disciplined", + "freq": 3.24e-06 + }, + { + "word": "interviewer", + "freq": 3.24e-06 + }, + { + "word": "millennials", + "freq": 3.24e-06 + }, + { + "word": "persistence", + "freq": 3.24e-06 + }, + { + "word": "simulations", + "freq": 3.24e-06 + }, + { + "word": "speculative", + "freq": 3.24e-06 + }, + { + "word": "trustworthy", + "freq": 3.24e-06 + }, + { + "word": "albuquerque", + "freq": 3.16e-06 + }, + { + "word": "alternating", + "freq": 3.16e-06 + }, + { + "word": "consciously", + "freq": 3.16e-06 + }, + { + "word": "illuminated", + "freq": 3.16e-06 + }, + { + "word": "influencing", + "freq": 3.16e-06 + }, + { + "word": "picturesque", + "freq": 3.16e-06 + }, + { + "word": "progressing", + "freq": 3.16e-06 + }, + { + "word": "secretaries", + "freq": 3.16e-06 + }, + { + "word": "specializes", + "freq": 3.16e-06 + }, + { + "word": "utilization", + "freq": 3.16e-06 + }, + { + "word": "automobiles", + "freq": 3.09e-06 + }, + { + "word": "commemorate", + "freq": 3.09e-06 + }, + { + "word": "enlightened", + "freq": 3.09e-06 + }, + { + "word": "fingerprint", + "freq": 3.09e-06 + }, + { + "word": "interchange", + "freq": 3.09e-06 + }, + { + "word": "motorcycles", + "freq": 3.09e-06 + }, + { + "word": "northampton", + "freq": 3.09e-06 + }, + { + "word": "translating", + "freq": 3.09e-06 + }, + { + "word": "adventurous", + "freq": 3.02e-06 + }, + { + "word": "blockbuster", + "freq": 3.02e-06 + }, + { + "word": "charismatic", + "freq": 3.02e-06 + }, + { + "word": "confiscated", + "freq": 3.02e-06 + }, + { + "word": "disposition", + "freq": 3.02e-06 + }, + { + "word": "engagements", + "freq": 3.02e-06 + }, + { + "word": "fabrication", + "freq": 3.02e-06 + }, + { + "word": "facilitated", + "freq": 3.02e-06 + }, + { + "word": "fascination", + "freq": 3.02e-06 + }, + { + "word": "formulation", + "freq": 3.02e-06 + }, + { + "word": "originating", + "freq": 3.02e-06 + }, + { + "word": "restraining", + "freq": 3.02e-06 + }, + { + "word": "terrestrial", + "freq": 3.02e-06 + }, + { + "word": "unstoppable", + "freq": 3.02e-06 + }, + { + "word": "centralized", + "freq": 2.95e-06 + }, + { + "word": "consolidate", + "freq": 2.95e-06 + }, + { + "word": "containment", + "freq": 2.95e-06 + }, + { + "word": "dangerously", + "freq": 2.95e-06 + }, + { + "word": "establishes", + "freq": 2.95e-06 + }, + { + "word": "existential", + "freq": 2.95e-06 + }, + { + "word": "forecasting", + "freq": 2.95e-06 + }, + { + "word": "substituted", + "freq": 2.95e-06 + }, + { + "word": "brilliantly", + "freq": 2.88e-06 + }, + { + "word": "confinement", + "freq": 2.88e-06 + }, + { + "word": "confronting", + "freq": 2.88e-06 + }, + { + "word": "consultancy", + "freq": 2.88e-06 + }, + { + "word": "contraction", + "freq": 2.88e-06 + }, + { + "word": "contrasting", + "freq": 2.88e-06 + }, + { + "word": "convergence", + "freq": 2.88e-06 + }, + { + "word": "humiliating", + "freq": 2.88e-06 + }, + { + "word": "illustrator", + "freq": 2.88e-06 + }, + { + "word": "inefficient", + "freq": 2.88e-06 + }, + { + "word": "intensified", + "freq": 2.88e-06 + }, + { + "word": "intolerance", + "freq": 2.88e-06 + }, + { + "word": "plantations", + "freq": 2.88e-06 + }, + { + "word": "registering", + "freq": 2.88e-06 + }, + { + "word": "counselling", + "freq": 2.82e-06 + }, + { + "word": "entertainer", + "freq": 2.82e-06 + }, + { + "word": "festivities", + "freq": 2.82e-06 + }, + { + "word": "imaginative", + "freq": 2.82e-06 + }, + { + "word": "insensitive", + "freq": 2.82e-06 + }, + { + "word": "qualitative", + "freq": 2.82e-06 + }, + { + "word": "reluctantly", + "freq": 2.82e-06 + }, + { + "word": "secretariat", + "freq": 2.82e-06 + }, + { + "word": "specialised", + "freq": 2.82e-06 + }, + { + "word": "subordinate", + "freq": 2.82e-06 + }, + { + "word": "contingency", + "freq": 2.75e-06 + }, + { + "word": "deprivation", + "freq": 2.75e-06 + }, + { + "word": "diversified", + "freq": 2.75e-06 + }, + { + "word": "documenting", + "freq": 2.75e-06 + }, + { + "word": "everlasting", + "freq": 2.75e-06 + }, + { + "word": "feasibility", + "freq": 2.75e-06 + }, + { + "word": "fulfillment", + "freq": 2.75e-06 + }, + { + "word": "groundwater", + "freq": 2.75e-06 + }, + { + "word": "hostilities", + "freq": 2.75e-06 + }, + { + "word": "indifferent", + "freq": 2.75e-06 + }, + { + "word": "intimidated", + "freq": 2.75e-06 + }, + { + "word": "occupations", + "freq": 2.75e-06 + }, + { + "word": "pedestrians", + "freq": 2.75e-06 + }, + { + "word": "preparatory", + "freq": 2.75e-06 + }, + { + "word": "provocative", + "freq": 2.75e-06 + }, + { + "word": "rockefeller", + "freq": 2.75e-06 + }, + { + "word": "sacrificing", + "freq": 2.75e-06 + }, + { + "word": "apocalyptic", + "freq": 2.69e-06 + }, + { + "word": "contractual", + "freq": 2.69e-06 + }, + { + "word": "distracting", + "freq": 2.69e-06 + }, + { + "word": "evaluations", + "freq": 2.69e-06 + }, + { + "word": "generalized", + "freq": 2.69e-06 + }, + { + "word": "linguistics", + "freq": 2.69e-06 + }, + { + "word": "proficiency", + "freq": 2.69e-06 + }, + { + "word": "accelerator", + "freq": 2.63e-06 + }, + { + "word": "handicapped", + "freq": 2.63e-06 + }, + { + "word": "incarnation", + "freq": 2.63e-06 + }, + { + "word": "motivations", + "freq": 2.63e-06 + }, + { + "word": "prehistoric", + "freq": 2.63e-06 + }, + { + "word": "replication", + "freq": 2.63e-06 + }, + { + "word": "withdrawals", + "freq": 2.63e-06 + }, + { + "word": "withdrawing", + "freq": 2.63e-06 + }, + { + "word": "anonymously", + "freq": 2.57e-06 + }, + { + "word": "commonplace", + "freq": 2.57e-06 + }, + { + "word": "confidently", + "freq": 2.57e-06 + }, + { + "word": "constrained", + "freq": 2.57e-06 + }, + { + "word": "contemplate", + "freq": 2.57e-06 + }, + { + "word": "cooperating", + "freq": 2.57e-06 + }, + { + "word": "directorate", + "freq": 2.57e-06 + }, + { + "word": "encompasses", + "freq": 2.57e-06 + }, + { + "word": "foreclosure", + "freq": 2.57e-06 + }, + { + "word": "heartbroken", + "freq": 2.57e-06 + }, + { + "word": "immortality", + "freq": 2.57e-06 + }, + { + "word": "invitations", + "freq": 2.57e-06 + }, + { + "word": "mindfulness", + "freq": 2.57e-06 + }, + { + "word": "percentages", + "freq": 2.57e-06 + }, + { + "word": "prominently", + "freq": 2.57e-06 + }, + { + "word": "substantive", + "freq": 2.57e-06 + }, + { + "word": "transcripts", + "freq": 2.57e-06 + }, + { + "word": "unpublished", + "freq": 2.57e-06 + }, + { + "word": "abandonment", + "freq": 2.51e-06 + }, + { + "word": "astronomers", + "freq": 2.51e-06 + }, + { + "word": "extravagant", + "freq": 2.51e-06 + }, + { + "word": "familiarity", + "freq": 2.51e-06 + }, + { + "word": "principally", + "freq": 2.51e-06 + }, + { + "word": "renovations", + "freq": 2.51e-06 + }, + { + "word": "smithsonian", + "freq": 2.51e-06 + }, + { + "word": "superheroes", + "freq": 2.51e-06 + }, + { + "word": "articulated", + "freq": 2.45e-06 + }, + { + "word": "bournemouth", + "freq": 2.45e-06 + }, + { + "word": "coefficient", + "freq": 2.45e-06 + }, + { + "word": "conditioner", + "freq": 2.45e-06 + }, + { + "word": "conversions", + "freq": 2.45e-06 + }, + { + "word": "cornerstone", + "freq": 2.45e-06 + }, + { + "word": "correctness", + "freq": 2.45e-06 + }, + { + "word": "counterfeit", + "freq": 2.45e-06 + }, + { + "word": "refurbished", + "freq": 2.45e-06 + }, + { + "word": "troublesome", + "freq": 2.45e-06 + }, + { + "word": "departments", + "freq": 2.4e-06 + }, + { + "word": "adaptations", + "freq": 2.4e-06 + }, + { + "word": "appreciates", + "freq": 2.4e-06 + }, + { + "word": "attachments", + "freq": 2.4e-06 + }, + { + "word": "caterpillar", + "freq": 2.4e-06 + }, + { + "word": "diminishing", + "freq": 2.4e-06 + }, + { + "word": "directional", + "freq": 2.4e-06 + }, + { + "word": "imperialism", + "freq": 2.4e-06 + }, + { + "word": "incremental", + "freq": 2.4e-06 + }, + { + "word": "misdemeanor", + "freq": 2.4e-06 + }, + { + "word": "mountainous", + "freq": 2.4e-06 + }, + { + "word": "punishments", + "freq": 2.4e-06 + }, + { + "word": "retribution", + "freq": 2.4e-06 + }, + { + "word": "variability", + "freq": 2.4e-06 + }, + { + "word": "apologizing", + "freq": 2.34e-06 + }, + { + "word": "beneficiary", + "freq": 2.34e-06 + }, + { + "word": "catholicism", + "freq": 2.34e-06 + }, + { + "word": "firefighter", + "freq": 2.34e-06 + }, + { + "word": "fluorescent", + "freq": 2.34e-06 + }, + { + "word": "inclination", + "freq": 2.34e-06 + }, + { + "word": "interracial", + "freq": 2.34e-06 + }, + { + "word": "masculinity", + "freq": 2.34e-06 + }, + { + "word": "microscopic", + "freq": 2.34e-06 + }, + { + "word": "notoriously", + "freq": 2.34e-06 + }, + { + "word": "transformer", + "freq": 2.34e-06 + }, + { + "word": "undisclosed", + "freq": 2.34e-06 + }, + { + "word": "adolescence", + "freq": 2.29e-06 + }, + { + "word": "attribution", + "freq": 2.29e-06 + }, + { + "word": "corinthians", + "freq": 2.29e-06 + }, + { + "word": "emphasizing", + "freq": 2.29e-06 + }, + { + "word": "necessities", + "freq": 2.29e-06 + }, + { + "word": "outsourcing", + "freq": 2.29e-06 + }, + { + "word": "prosecuting", + "freq": 2.29e-06 + }, + { + "word": "referencing", + "freq": 2.29e-06 + }, + { + "word": "temperament", + "freq": 2.29e-06 + }, + { + "word": "undesirable", + "freq": 2.29e-06 + }, + { + "word": "unification", + "freq": 2.29e-06 + }, + { + "word": "withholding", + "freq": 2.29e-06 + }, + { + "word": "computation", + "freq": 2.24e-06 + }, + { + "word": "conspicuous", + "freq": 2.24e-06 + }, + { + "word": "constantine", + "freq": 2.24e-06 + }, + { + "word": "exceedingly", + "freq": 2.24e-06 + }, + { + "word": "excessively", + "freq": 2.24e-06 + }, + { + "word": "grammatical", + "freq": 2.24e-06 + }, + { + "word": "inquisition", + "freq": 2.24e-06 + }, + { + "word": "outnumbered", + "freq": 2.24e-06 + }, + { + "word": "protestants", + "freq": 2.24e-06 + }, + { + "word": "reinforcing", + "freq": 2.24e-06 + }, + { + "word": "seventeenth", + "freq": 2.24e-06 + }, + { + "word": "unavoidable", + "freq": 2.24e-06 + }, + { + "word": "bombardment", + "freq": 2.19e-06 + }, + { + "word": "calibration", + "freq": 2.19e-06 + }, + { + "word": "cylindrical", + "freq": 2.19e-06 + }, + { + "word": "devastation", + "freq": 2.19e-06 + }, + { + "word": "embroidered", + "freq": 2.19e-06 + }, + { + "word": "foreseeable", + "freq": 2.19e-06 + }, + { + "word": "intoxicated", + "freq": 2.19e-06 + }, + { + "word": "involuntary", + "freq": 2.19e-06 + }, + { + "word": "maharashtra", + "freq": 2.19e-06 + }, + { + "word": "originality", + "freq": 2.19e-06 + }, + { + "word": "propagation", + "freq": 2.19e-06 + }, + { + "word": "psychedelic", + "freq": 2.19e-06 + }, + { + "word": "archipelago", + "freq": 2.14e-06 + }, + { + "word": "cheerleader", + "freq": 2.14e-06 + }, + { + "word": "colonialism", + "freq": 2.14e-06 + }, + { + "word": "disgraceful", + "freq": 2.14e-06 + }, + { + "word": "exponential", + "freq": 2.14e-06 + }, + { + "word": "handwritten", + "freq": 2.14e-06 + }, + { + "word": "intervening", + "freq": 2.14e-06 + }, + { + "word": "matchmaking", + "freq": 2.14e-06 + }, + { + "word": "penetrating", + "freq": 2.14e-06 + }, + { + "word": "ultraviolet", + "freq": 2.14e-06 + }, + { + "word": "behavioural", + "freq": 2.09e-06 + }, + { + "word": "furnishings", + "freq": 2.09e-06 + }, + { + "word": "inaugurated", + "freq": 2.09e-06 + }, + { + "word": "miscarriage", + "freq": 2.09e-06 + }, + { + "word": "perpetrator", + "freq": 2.09e-06 + }, + { + "word": "prohibiting", + "freq": 2.09e-06 + }, + { + "word": "selectively", + "freq": 2.09e-06 + }, + { + "word": "substitutes", + "freq": 2.09e-06 + }, + { + "word": "supervising", + "freq": 2.09e-06 + }, + { + "word": "supervisory", + "freq": 2.09e-06 + }, + { + "word": "treacherous", + "freq": 2.09e-06 + }, + { + "word": "undermining", + "freq": 2.09e-06 + }, + { + "word": "versatility", + "freq": 2.09e-06 + }, + { + "word": "individuals", + "freq": 2.04e-06 + }, + { + "word": "apprehended", + "freq": 2.04e-06 + }, + { + "word": "capitalists", + "freq": 2.04e-06 + }, + { + "word": "categorized", + "freq": 2.04e-06 + }, + { + "word": "chromosomes", + "freq": 2.04e-06 + }, + { + "word": "contentious", + "freq": 2.04e-06 + }, + { + "word": "dehydration", + "freq": 2.04e-06 + }, + { + "word": "explanatory", + "freq": 2.04e-06 + }, + { + "word": "homosexuals", + "freq": 2.04e-06 + }, + { + "word": "illustrious", + "freq": 2.04e-06 + }, + { + "word": "memorabilia", + "freq": 2.04e-06 + }, + { + "word": "pregnancies", + "freq": 2.04e-06 + }, + { + "word": "prematurely", + "freq": 2.04e-06 + }, + { + "word": "scientology", + "freq": 2.04e-06 + }, + { + "word": "specialties", + "freq": 2.04e-06 + }, + { + "word": "spreadsheet", + "freq": 2.04e-06 + }, + { + "word": "abstraction", + "freq": 2e-06 + }, + { + "word": "considerate", + "freq": 2e-06 + }, + { + "word": "unspecified", + "freq": 2e-06 + }, + { + "word": "cultivating", + "freq": 1.95e-06 + }, + { + "word": "discrepancy", + "freq": 1.95e-06 + }, + { + "word": "flourishing", + "freq": 1.95e-06 + }, + { + "word": "hardworking", + "freq": 1.95e-06 + }, + { + "word": "housekeeper", + "freq": 1.95e-06 + }, + { + "word": "malfunction", + "freq": 1.95e-06 + }, + { + "word": "nightingale", + "freq": 1.95e-06 + }, + { + "word": "punctuation", + "freq": 1.95e-06 + }, + { + "word": "spiritually", + "freq": 1.95e-06 + }, + { + "word": "unprotected", + "freq": 1.95e-06 + }, + { + "word": "girlfriends", + "freq": 1.91e-06 + }, + { + "word": "compromises", + "freq": 1.91e-06 + }, + { + "word": "culminating", + "freq": 1.91e-06 + }, + { + "word": "defensively", + "freq": 1.91e-06 + }, + { + "word": "disapproval", + "freq": 1.91e-06 + }, + { + "word": "extradition", + "freq": 1.91e-06 + }, + { + "word": "impractical", + "freq": 1.91e-06 + }, + { + "word": "locomotives", + "freq": 1.91e-06 + }, + { + "word": "mercenaries", + "freq": 1.91e-06 + }, + { + "word": "objectively", + "freq": 1.91e-06 + }, + { + "word": "predicament", + "freq": 1.91e-06 + }, + { + "word": "predominant", + "freq": 1.91e-06 + }, + { + "word": "strengthens", + "freq": 1.91e-06 + }, + { + "word": "suppressing", + "freq": 1.91e-06 + }, + { + "word": "symmetrical", + "freq": 1.91e-06 + }, + { + "word": "unexplained", + "freq": 1.91e-06 + }, + { + "word": "yellowstone", + "freq": 1.91e-06 + }, + { + "word": "disclosures", + "freq": 1.86e-06 + }, + { + "word": "facilitates", + "freq": 1.86e-06 + }, + { + "word": "reassurance", + "freq": 1.86e-06 + }, + { + "word": "scarborough", + "freq": 1.86e-06 + }, + { + "word": "streamlined", + "freq": 1.86e-06 + }, + { + "word": "unthinkable", + "freq": 1.86e-06 + }, + { + "word": "antiquities", + "freq": 1.82e-06 + }, + { + "word": "brainwashed", + "freq": 1.82e-06 + }, + { + "word": "chattanooga", + "freq": 1.82e-06 + }, + { + "word": "cleanliness", + "freq": 1.82e-06 + }, + { + "word": "culmination", + "freq": 1.82e-06 + }, + { + "word": "democracies", + "freq": 1.82e-06 + }, + { + "word": "electrician", + "freq": 1.82e-06 + }, + { + "word": "internships", + "freq": 1.82e-06 + }, + { + "word": "liquidation", + "freq": 1.82e-06 + }, + { + "word": "occurrences", + "freq": 1.82e-06 + }, + { + "word": "preoccupied", + "freq": 1.82e-06 + }, + { + "word": "scandinavia", + "freq": 1.82e-06 + }, + { + "word": "supremacist", + "freq": 1.82e-06 + }, + { + "word": "aggregation", + "freq": 1.78e-06 + }, + { + "word": "appalachian", + "freq": 1.78e-06 + }, + { + "word": "bulletproof", + "freq": 1.78e-06 + }, + { + "word": "excavations", + "freq": 1.78e-06 + }, + { + "word": "fitzpatrick", + "freq": 1.78e-06 + }, + { + "word": "malpractice", + "freq": 1.78e-06 + }, + { + "word": "memberships", + "freq": 1.78e-06 + }, + { + "word": "perpetrated", + "freq": 1.78e-06 + }, + { + "word": "pessimistic", + "freq": 1.78e-06 + }, + { + "word": "affirmation", + "freq": 1.74e-06 + }, + { + "word": "bittersweet", + "freq": 1.74e-06 + }, + { + "word": "centimeters", + "freq": 1.74e-06 + }, + { + "word": "collingwood", + "freq": 1.74e-06 + }, + { + "word": "crystalline", + "freq": 1.74e-06 + }, + { + "word": "dismantling", + "freq": 1.74e-06 + }, + { + "word": "equivalents", + "freq": 1.74e-06 + }, + { + "word": "patriarchal", + "freq": 1.74e-06 + }, + { + "word": "religiously", + "freq": 1.74e-06 + }, + { + "word": "responsibly", + "freq": 1.74e-06 + }, + { + "word": "resurrected", + "freq": 1.74e-06 + }, + { + "word": "synthesized", + "freq": 1.74e-06 + }, + { + "word": "bestselling", + "freq": 1.7e-06 + }, + { + "word": "biographies", + "freq": 1.7e-06 + }, + { + "word": "confederacy", + "freq": 1.7e-06 + }, + { + "word": "lamborghini", + "freq": 1.7e-06 + }, + { + "word": "overflowing", + "freq": 1.7e-06 + }, + { + "word": "unimportant", + "freq": 1.7e-06 + }, + { + "word": "alternately", + "freq": 1.66e-06 + }, + { + "word": "arbitrarily", + "freq": 1.66e-06 + }, + { + "word": "bloomington", + "freq": 1.66e-06 + }, + { + "word": "coronavirus", + "freq": 1.66e-06 + }, + { + "word": "exacerbated", + "freq": 1.66e-06 + }, + { + "word": "homogeneous", + "freq": 1.66e-06 + }, + { + "word": "landscaping", + "freq": 1.66e-06 + }, + { + "word": "meteorology", + "freq": 1.66e-06 + }, + { + "word": "momentarily", + "freq": 1.66e-06 + }, + { + "word": "presumption", + "freq": 1.66e-06 + }, + { + "word": "proclaiming", + "freq": 1.66e-06 + }, + { + "word": "reactionary", + "freq": 1.66e-06 + }, + { + "word": "reconstruct", + "freq": 1.66e-06 + }, + { + "word": "selfishness", + "freq": 1.66e-06 + }, + { + "word": "specificity", + "freq": 1.66e-06 + }, + { + "word": "stewardship", + "freq": 1.66e-06 + }, + { + "word": "suspensions", + "freq": 1.66e-06 + }, + { + "word": "terminating", + "freq": 1.66e-06 + }, + { + "word": "thermometer", + "freq": 1.66e-06 + }, + { + "word": "adversaries", + "freq": 1.62e-06 + }, + { + "word": "aristocracy", + "freq": 1.62e-06 + }, + { + "word": "babysitting", + "freq": 1.62e-06 + }, + { + "word": "biochemical", + "freq": 1.62e-06 + }, + { + "word": "clandestine", + "freq": 1.62e-06 + }, + { + "word": "diagnostics", + "freq": 1.62e-06 + }, + { + "word": "prescribing", + "freq": 1.62e-06 + }, + { + "word": "shenanigans", + "freq": 1.62e-06 + }, + { + "word": "suitability", + "freq": 1.62e-06 + }, + { + "word": "translucent", + "freq": 1.62e-06 + }, + { + "word": "unfavorable", + "freq": 1.62e-06 + }, + { + "word": "accompanies", + "freq": 1.58e-06 + }, + { + "word": "assassinate", + "freq": 1.58e-06 + }, + { + "word": "cauliflower", + "freq": 1.58e-06 + }, + { + "word": "christensen", + "freq": 1.58e-06 + }, + { + "word": "distressing", + "freq": 1.58e-06 + }, + { + "word": "enlargement", + "freq": 1.58e-06 + }, + { + "word": "fingernails", + "freq": 1.58e-06 + }, + { + "word": "infiltrated", + "freq": 1.58e-06 + }, + { + "word": "intertwined", + "freq": 1.58e-06 + }, + { + "word": "inventories", + "freq": 1.58e-06 + }, + { + "word": "midfielders", + "freq": 1.58e-06 + }, + { + "word": "oxfordshire", + "freq": 1.58e-06 + }, + { + "word": "paralympics", + "freq": 1.58e-06 + }, + { + "word": "permissible", + "freq": 1.58e-06 + }, + { + "word": "realisation", + "freq": 1.58e-06 + }, + { + "word": "reparations", + "freq": 1.58e-06 + }, + { + "word": "sensibility", + "freq": 1.58e-06 + }, + { + "word": "tallahassee", + "freq": 1.58e-06 + }, + { + "word": "unsolicited", + "freq": 1.58e-06 + }, + { + "word": "commissions", + "freq": 1.55e-06 + }, + { + "word": "abbreviated", + "freq": 1.55e-06 + }, + { + "word": "aerodynamic", + "freq": 1.55e-06 + }, + { + "word": "copyrighted", + "freq": 1.55e-06 + }, + { + "word": "directories", + "freq": 1.55e-06 + }, + { + "word": "disparities", + "freq": 1.55e-06 + }, + { + "word": "nonexistent", + "freq": 1.55e-06 + }, + { + "word": "provocation", + "freq": 1.55e-06 + }, + { + "word": "restitution", + "freq": 1.55e-06 + }, + { + "word": "songwriting", + "freq": 1.55e-06 + }, + { + "word": "transporter", + "freq": 1.55e-06 + }, + { + "word": "unqualified", + "freq": 1.55e-06 + }, + { + "word": "wavelengths", + "freq": 1.55e-06 + }, + { + "word": "foundations", + "freq": 1.51e-06 + }, + { + "word": "bureaucrats", + "freq": 1.51e-06 + }, + { + "word": "exploratory", + "freq": 1.51e-06 + }, + { + "word": "frantically", + "freq": 1.51e-06 + }, + { + "word": "infertility", + "freq": 1.51e-06 + }, + { + "word": "periodicals", + "freq": 1.51e-06 + }, + { + "word": "polytechnic", + "freq": 1.51e-06 + }, + { + "word": "recognising", + "freq": 1.51e-06 + }, + { + "word": "tablespoons", + "freq": 1.51e-06 + }, + { + "word": "captivating", + "freq": 1.48e-06 + }, + { + "word": "commandment", + "freq": 1.48e-06 + }, + { + "word": "conceivable", + "freq": 1.48e-06 + }, + { + "word": "consecrated", + "freq": 1.48e-06 + }, + { + "word": "disarmament", + "freq": 1.48e-06 + }, + { + "word": "equivalence", + "freq": 1.48e-06 + }, + { + "word": "hairdresser", + "freq": 1.48e-06 + }, + { + "word": "infestation", + "freq": 1.48e-06 + }, + { + "word": "intolerable", + "freq": 1.48e-06 + }, + { + "word": "particulars", + "freq": 1.48e-06 + }, + { + "word": "pretentious", + "freq": 1.48e-06 + }, + { + "word": "rudimentary", + "freq": 1.48e-06 + }, + { + "word": "traumatized", + "freq": 1.48e-06 + }, + { + "word": "westchester", + "freq": 1.48e-06 + }, + { + "word": "bloodstream", + "freq": 1.45e-06 + }, + { + "word": "capitalized", + "freq": 1.45e-06 + }, + { + "word": "contradicts", + "freq": 1.45e-06 + }, + { + "word": "deformation", + "freq": 1.45e-06 + }, + { + "word": "duplication", + "freq": 1.45e-06 + }, + { + "word": "motherboard", + "freq": 1.45e-06 + }, + { + "word": "perpetually", + "freq": 1.45e-06 + }, + { + "word": "shortlisted", + "freq": 1.45e-06 + }, + { + "word": "singularity", + "freq": 1.45e-06 + }, + { + "word": "springsteen", + "freq": 1.45e-06 + }, + { + "word": "temptations", + "freq": 1.45e-06 + }, + { + "word": "transcribed", + "freq": 1.45e-06 + }, + { + "word": "worthington", + "freq": 1.45e-06 + }, + { + "word": "apprentices", + "freq": 1.41e-06 + }, + { + "word": "bridgewater", + "freq": 1.41e-06 + }, + { + "word": "chairperson", + "freq": 1.41e-06 + }, + { + "word": "deployments", + "freq": 1.41e-06 + }, + { + "word": "deteriorate", + "freq": 1.41e-06 + }, + { + "word": "discredited", + "freq": 1.41e-06 + }, + { + "word": "distributes", + "freq": 1.41e-06 + }, + { + "word": "marshmallow", + "freq": 1.41e-06 + }, + { + "word": "microphones", + "freq": 1.41e-06 + }, + { + "word": "mischievous", + "freq": 1.41e-06 + }, + { + "word": "officiating", + "freq": 1.41e-06 + }, + { + "word": "overarching", + "freq": 1.41e-06 + }, + { + "word": "pathologist", + "freq": 1.41e-06 + }, + { + "word": "preventable", + "freq": 1.41e-06 + }, + { + "word": "testimonies", + "freq": 1.41e-06 + }, + { + "word": "transplants", + "freq": 1.41e-06 + }, + { + "word": "tributaries", + "freq": 1.41e-06 + }, + { + "word": "unhappiness", + "freq": 1.41e-06 + }, + { + "word": "collectible", + "freq": 1.38e-06 + }, + { + "word": "displeasure", + "freq": 1.38e-06 + }, + { + "word": "fellowships", + "freq": 1.38e-06 + }, + { + "word": "imperialist", + "freq": 1.38e-06 + }, + { + "word": "justifiable", + "freq": 1.38e-06 + }, + { + "word": "reclamation", + "freq": 1.38e-06 + }, + { + "word": "sightseeing", + "freq": 1.38e-06 + }, + { + "word": "situational", + "freq": 1.38e-06 + }, + { + "word": "superpowers", + "freq": 1.38e-06 + }, + { + "word": "tentatively", + "freq": 1.38e-06 + }, + { + "word": "trespassing", + "freq": 1.38e-06 + }, + { + "word": "abomination", + "freq": 1.35e-06 + }, + { + "word": "associating", + "freq": 1.35e-06 + }, + { + "word": "checkpoints", + "freq": 1.35e-06 + }, + { + "word": "congressmen", + "freq": 1.35e-06 + }, + { + "word": "denominator", + "freq": 1.35e-06 + }, + { + "word": "exemplified", + "freq": 1.35e-06 + }, + { + "word": "inseparable", + "freq": 1.35e-06 + }, + { + "word": "instructing", + "freq": 1.35e-06 + }, + { + "word": "intravenous", + "freq": 1.35e-06 + }, + { + "word": "monasteries", + "freq": 1.35e-06 + }, + { + "word": "parentheses", + "freq": 1.35e-06 + }, + { + "word": "screwdriver", + "freq": 1.35e-06 + }, + { + "word": "transfusion", + "freq": 1.35e-06 + }, + { + "word": "unbreakable", + "freq": 1.35e-06 + }, + { + "word": "aggravating", + "freq": 1.32e-06 + }, + { + "word": "altercation", + "freq": 1.32e-06 + }, + { + "word": "authorizing", + "freq": 1.32e-06 + }, + { + "word": "bakersfield", + "freq": 1.32e-06 + }, + { + "word": "bangladeshi", + "freq": 1.32e-06 + }, + { + "word": "bartholomew", + "freq": 1.32e-06 + }, + { + "word": "californian", + "freq": 1.32e-06 + }, + { + "word": "eradication", + "freq": 1.32e-06 + }, + { + "word": "glastonbury", + "freq": 1.32e-06 + }, + { + "word": "nickelodeon", + "freq": 1.32e-06 + }, + { + "word": "painkillers", + "freq": 1.32e-06 + }, + { + "word": "skyscrapers", + "freq": 1.32e-06 + }, + { + "word": "spokeswoman", + "freq": 1.32e-06 + }, + { + "word": "stabilizing", + "freq": 1.32e-06 + }, + { + "word": "theologians", + "freq": 1.32e-06 + }, + { + "word": "unspeakable", + "freq": 1.32e-06 + }, + { + "word": "bridesmaids", + "freq": 1.29e-06 + }, + { + "word": "cockroaches", + "freq": 1.29e-06 + }, + { + "word": "discontinue", + "freq": 1.29e-06 + } + ], + "13": [ + { + "word": "international", + "freq": 0.000229 + }, + { + "word": "understanding", + "freq": 6.61e-05 + }, + { + "word": "investigation", + "freq": 5.62e-05 + }, + { + "word": "environmental", + "freq": 5.01e-05 + }, + { + "word": "communication", + "freq": 4.79e-05 + }, + { + "word": "approximately", + "freq": 4.37e-05 + }, + { + "word": "unfortunately", + "freq": 4.17e-05 + }, + { + "word": "opportunities", + "freq": 4.07e-05 + }, + { + "word": "entertainment", + "freq": 3.98e-05 + }, + { + "word": "circumstances", + "freq": 3.89e-05 + }, + { + "word": "manufacturing", + "freq": 3.63e-05 + }, + { + "word": "significantly", + "freq": 3.47e-05 + }, + { + "word": "automatically", + "freq": 3.31e-05 + }, + { + "word": "establishment", + "freq": 2.63e-05 + }, + { + "word": "comprehensive", + "freq": 2.29e-05 + }, + { + "word": "extraordinary", + "freq": 2.29e-05 + }, + { + "word": "contributions", + "freq": 2.19e-05 + }, + { + "word": "participation", + "freq": 2.14e-05 + }, + { + "word": "massachusetts", + "freq": 2.04e-05 + }, + { + "word": "conversations", + "freq": 2e-05 + }, + { + "word": "collaboration", + "freq": 1.91e-05 + }, + { + "word": "consideration", + "freq": 1.91e-05 + }, + { + "word": "concentration", + "freq": 1.86e-05 + }, + { + "word": "psychological", + "freq": 1.86e-05 + }, + { + "word": "controversial", + "freq": 1.7e-05 + }, + { + "word": "distinguished", + "freq": 1.58e-05 + }, + { + "word": "congressional", + "freq": 1.55e-05 + }, + { + "word": "participating", + "freq": 1.55e-05 + }, + { + "word": "uncomfortable", + "freq": 1.55e-05 + }, + { + "word": "parliamentary", + "freq": 1.51e-05 + }, + { + "word": "revolutionary", + "freq": 1.48e-05 + }, + { + "word": "determination", + "freq": 1.45e-05 + }, + { + "word": "consciousness", + "freq": 1.35e-05 + }, + { + "word": "corresponding", + "freq": 1.35e-05 + }, + { + "word": "possibilities", + "freq": 1.29e-05 + }, + { + "word": "investigating", + "freq": 1.2e-05 + }, + { + "word": "administrator", + "freq": 1.17e-05 + }, + { + "word": "accommodation", + "freq": 1.15e-05 + }, + { + "word": "demonstration", + "freq": 1.15e-05 + }, + { + "word": "independently", + "freq": 1.15e-05 + }, + { + "word": "technological", + "freq": 1.15e-05 + }, + { + "word": "traditionally", + "freq": 1.15e-05 + }, + { + "word": "effectiveness", + "freq": 1.12e-05 + }, + { + "word": "sophisticated", + "freq": 1.12e-05 + }, + { + "word": "disappointing", + "freq": 1.05e-05 + }, + { + "word": "characterized", + "freq": 1.02e-05 + }, + { + "word": "institutional", + "freq": 1e-05 + }, + { + "word": "inappropriate", + "freq": 9.77e-06 + }, + { + "word": "mediterranean", + "freq": 9.77e-06 + }, + { + "word": "complications", + "freq": 9.55e-06 + }, + { + "word": "certification", + "freq": 9.33e-06 + }, + { + "word": "configuration", + "freq": 9.33e-06 + }, + { + "word": "architectural", + "freq": 9.12e-06 + }, + { + "word": "substantially", + "freq": 9.12e-06 + }, + { + "word": "documentation", + "freq": 8.91e-06 + }, + { + "word": "philosophical", + "freq": 8.91e-06 + }, + { + "word": "neighbourhood", + "freq": 8.71e-06 + }, + { + "word": "personalities", + "freq": 7.94e-06 + }, + { + "word": "qualification", + "freq": 7.59e-06 + }, + { + "word": "illustrations", + "freq": 7.41e-06 + }, + { + "word": "correspondent", + "freq": 7.24e-06 + }, + { + "word": "undergraduate", + "freq": 7.08e-06 + }, + { + "word": "advertisement", + "freq": 6.92e-06 + }, + { + "word": "justification", + "freq": 6.76e-06 + }, + { + "word": "assassination", + "freq": 6.61e-06 + }, + { + "word": "intentionally", + "freq": 6.61e-06 + }, + { + "word": "modifications", + "freq": 6.61e-06 + }, + { + "word": "strengthening", + "freq": 6.61e-06 + }, + { + "word": "unprecedented", + "freq": 6.61e-06 + }, + { + "word": "alternatively", + "freq": 6.46e-06 + }, + { + "word": "predominantly", + "freq": 6.31e-06 + }, + { + "word": "encouragement", + "freq": 6.17e-06 + }, + { + "word": "grandchildren", + "freq": 6.17e-06 + }, + { + "word": "collaborative", + "freq": 6.03e-06 + }, + { + "word": "developmental", + "freq": 6.03e-06 + }, + { + "word": "installations", + "freq": 6.03e-06 + }, + { + "word": "communicating", + "freq": 5.89e-06 + }, + { + "word": "embarrassment", + "freq": 5.89e-06 + }, + { + "word": "fundamentally", + "freq": 5.89e-06 + }, + { + "word": "demonstrating", + "freq": 5.75e-06 + }, + { + "word": "inspirational", + "freq": 5.62e-06 + }, + { + "word": "specification", + "freq": 5.62e-06 + }, + { + "word": "appropriately", + "freq": 5.5e-06 + }, + { + "word": "authorization", + "freq": 5.5e-06 + }, + { + "word": "disappearance", + "freq": 5.5e-06 + }, + { + "word": "exceptionally", + "freq": 5.5e-06 + }, + { + "word": "homosexuality", + "freq": 5.5e-06 + }, + { + "word": "interventions", + "freq": 5.5e-06 + }, + { + "word": "confrontation", + "freq": 5.25e-06 + }, + { + "word": "consolidation", + "freq": 5.13e-06 + }, + { + "word": "announcements", + "freq": 5.01e-06 + }, + { + "word": "contamination", + "freq": 5.01e-06 + }, + { + "word": "functionality", + "freq": 5.01e-06 + }, + { + "word": "vulnerability", + "freq": 5.01e-06 + }, + { + "word": "inconvenience", + "freq": 4.9e-06 + }, + { + "word": "incorporating", + "freq": 4.9e-06 + }, + { + "word": "underestimate", + "freq": 4.9e-06 + }, + { + "word": "investigative", + "freq": 4.79e-06 + }, + { + "word": "unpredictable", + "freq": 4.79e-06 + }, + { + "word": "enlightenment", + "freq": 4.68e-06 + }, + { + "word": "irresponsible", + "freq": 4.68e-06 + }, + { + "word": "statistically", + "freq": 4.68e-06 + }, + { + "word": "notifications", + "freq": 4.57e-06 + }, + { + "word": "acknowledging", + "freq": 4.47e-06 + }, + { + "word": "disrespectful", + "freq": 4.37e-06 + }, + { + "word": "precipitation", + "freq": 4.37e-06 + }, + { + "word": "theoretically", + "freq": 4.37e-06 + }, + { + "word": "autobiography", + "freq": 4.27e-06 + }, + { + "word": "computational", + "freq": 4.17e-06 + }, + { + "word": "differentiate", + "freq": 4.17e-06 + }, + { + "word": "restructuring", + "freq": 4.17e-06 + }, + { + "word": "misunderstood", + "freq": 4.07e-06 + }, + { + "word": "presentations", + "freq": 4.07e-06 + }, + { + "word": "proliferation", + "freq": 4.07e-06 + }, + { + "word": "granddaughter", + "freq": 3.98e-06 + }, + { + "word": "interestingly", + "freq": 3.98e-06 + }, + { + "word": "jurisdictions", + "freq": 3.98e-06 + }, + { + "word": "authoritarian", + "freq": 3.89e-06 + }, + { + "word": "compatibility", + "freq": 3.89e-06 + }, + { + "word": "comprehension", + "freq": 3.72e-06 + }, + { + "word": "heartbreaking", + "freq": 3.72e-06 + }, + { + "word": "complementary", + "freq": 3.63e-06 + }, + { + "word": "interrogation", + "freq": 3.63e-06 + }, + { + "word": "multinational", + "freq": 3.63e-06 + }, + { + "word": "schizophrenia", + "freq": 3.63e-06 + }, + { + "word": "compassionate", + "freq": 3.55e-06 + }, + { + "word": "concentrating", + "freq": 3.55e-06 + }, + { + "word": "accreditation", + "freq": 3.47e-06 + }, + { + "word": "clarification", + "freq": 3.47e-06 + }, + { + "word": "physiological", + "freq": 3.47e-06 + }, + { + "word": "transcription", + "freq": 3.47e-06 + }, + { + "word": "experimenting", + "freq": 3.39e-06 + }, + { + "word": "insignificant", + "freq": 3.39e-06 + }, + { + "word": "knowledgeable", + "freq": 3.39e-06 + }, + { + "word": "semiconductor", + "freq": 3.39e-06 + }, + { + "word": "contemplating", + "freq": 3.31e-06 + }, + { + "word": "accessibility", + "freq": 3.24e-06 + }, + { + "word": "comparatively", + "freq": 3.24e-06 + }, + { + "word": "distributions", + "freq": 3.24e-06 + }, + { + "word": "instructional", + "freq": 3.24e-06 + }, + { + "word": "pronunciation", + "freq": 3.24e-06 + }, + { + "word": "breastfeeding", + "freq": 3.16e-06 + }, + { + "word": "inexperienced", + "freq": 3.16e-06 + }, + { + "word": "profitability", + "freq": 3.16e-06 + }, + { + "word": "disadvantaged", + "freq": 3.09e-06 + }, + { + "word": "disadvantages", + "freq": 3.09e-06 + }, + { + "word": "gravitational", + "freq": 3.09e-06 + }, + { + "word": "intellectuals", + "freq": 3.09e-06 + }, + { + "word": "subscriptions", + "freq": 3.09e-06 + }, + { + "word": "unconditional", + "freq": 3.09e-06 + }, + { + "word": "unforgettable", + "freq": 3.09e-06 + }, + { + "word": "contradictory", + "freq": 3.02e-06 + }, + { + "word": "documentaries", + "freq": 3.02e-06 + }, + { + "word": "progressively", + "freq": 3.02e-06 + }, + { + "word": "retrospective", + "freq": 3.02e-06 + }, + { + "word": "righteousness", + "freq": 3.02e-06 + }, + { + "word": "globalization", + "freq": 2.88e-06 + }, + { + "word": "beneficiaries", + "freq": 2.82e-06 + }, + { + "word": "confederation", + "freq": 2.82e-06 + }, + { + "word": "contradiction", + "freq": 2.82e-06 + }, + { + "word": "strategically", + "freq": 2.82e-06 + }, + { + "word": "inadvertently", + "freq": 2.75e-06 + }, + { + "word": "questionnaire", + "freq": 2.75e-06 + }, + { + "word": "redevelopment", + "freq": 2.75e-06 + }, + { + "word": "deterioration", + "freq": 2.69e-06 + }, + { + "word": "manifestation", + "freq": 2.69e-06 + }, + { + "word": "prescriptions", + "freq": 2.69e-06 + }, + { + "word": "reinforcement", + "freq": 2.69e-06 + }, + { + "word": "biotechnology", + "freq": 2.63e-06 + }, + { + "word": "collaborating", + "freq": 2.63e-06 + }, + { + "word": "headquartered", + "freq": 2.63e-06 + }, + { + "word": "miscellaneous", + "freq": 2.63e-06 + }, + { + "word": "unnecessarily", + "freq": 2.63e-06 + }, + { + "word": "organizations", + "freq": 2.57e-06 + }, + { + "word": "acquaintances", + "freq": 2.51e-06 + }, + { + "word": "authoritative", + "freq": 2.51e-06 + }, + { + "word": "characterised", + "freq": 2.51e-06 + }, + { + "word": "chronological", + "freq": 2.51e-06 + }, + { + "word": "controversies", + "freq": 2.51e-06 + }, + { + "word": "incorporation", + "freq": 2.51e-06 + }, + { + "word": "appropriation", + "freq": 2.45e-06 + }, + { + "word": "consultations", + "freq": 2.45e-06 + }, + { + "word": "multicultural", + "freq": 2.45e-06 + }, + { + "word": "repercussions", + "freq": 2.45e-06 + }, + { + "word": "uncertainties", + "freq": 2.45e-06 + }, + { + "word": "disagreements", + "freq": 2.4e-06 + }, + { + "word": "constellation", + "freq": 2.34e-06 + }, + { + "word": "interpersonal", + "freq": 2.34e-06 + }, + { + "word": "dysfunctional", + "freq": 2.29e-06 + }, + { + "word": "incarceration", + "freq": 2.29e-06 + }, + { + "word": "modernization", + "freq": 2.29e-06 + }, + { + "word": "supplementary", + "freq": 2.29e-06 + }, + { + "word": "complimentary", + "freq": 2.24e-06 + }, + { + "word": "cybersecurity", + "freq": 2.24e-06 + }, + { + "word": "reimbursement", + "freq": 2.24e-06 + }, + { + "word": "transmissions", + "freq": 2.24e-06 + }, + { + "word": "indispensable", + "freq": 2.19e-06 + }, + { + "word": "middlesbrough", + "freq": 2.19e-06 + }, + { + "word": "socioeconomic", + "freq": 2.19e-06 + }, + { + "word": "spontaneously", + "freq": 2.19e-06 + }, + { + "word": "realistically", + "freq": 2.14e-06 + }, + { + "word": "staffordshire", + "freq": 2.14e-06 + }, + { + "word": "thunderstorms", + "freq": 2.14e-06 + }, + { + "word": "approximation", + "freq": 2.09e-06 + }, + { + "word": "collaborators", + "freq": 2.09e-06 + }, + { + "word": "commissioning", + "freq": 2.09e-06 + }, + { + "word": "visualization", + "freq": 2.09e-06 + }, + { + "word": "abnormalities", + "freq": 2.04e-06 + }, + { + "word": "nationalities", + "freq": 2.04e-06 + }, + { + "word": "administering", + "freq": 2e-06 + }, + { + "word": "carbohydrates", + "freq": 2e-06 + }, + { + "word": "constructions", + "freq": 2e-06 + }, + { + "word": "exponentially", + "freq": 2e-06 + }, + { + "word": "introductions", + "freq": 2e-06 + }, + { + "word": "predetermined", + "freq": 2e-06 + }, + { + "word": "stabilization", + "freq": 2e-06 + }, + { + "word": "commemoration", + "freq": 1.95e-06 + }, + { + "word": "decentralized", + "freq": 1.95e-06 + }, + { + "word": "denominations", + "freq": 1.95e-06 + }, + { + "word": "imperfections", + "freq": 1.95e-06 + }, + { + "word": "perpendicular", + "freq": 1.95e-06 + }, + { + "word": "ramifications", + "freq": 1.95e-06 + }, + { + "word": "demonstrators", + "freq": 1.91e-06 + }, + { + "word": "reconstructed", + "freq": 1.91e-06 + }, + { + "word": "gratification", + "freq": 1.86e-06 + }, + { + "word": "intersections", + "freq": 1.86e-06 + }, + { + "word": "mitochondrial", + "freq": 1.86e-06 + }, + { + "word": "privatization", + "freq": 1.86e-06 + }, + { + "word": "contraception", + "freq": 1.82e-06 + }, + { + "word": "decomposition", + "freq": 1.82e-06 + }, + { + "word": "discretionary", + "freq": 1.82e-06 + }, + { + "word": "dissemination", + "freq": 1.82e-06 + }, + { + "word": "transitioning", + "freq": 1.82e-06 + }, + { + "word": "accommodating", + "freq": 1.78e-06 + }, + { + "word": "customization", + "freq": 1.78e-06 + }, + { + "word": "deteriorating", + "freq": 1.78e-06 + }, + { + "word": "instinctively", + "freq": 1.78e-06 + }, + { + "word": "motherfuckers", + "freq": 1.78e-06 + }, + { + "word": "psychotherapy", + "freq": 1.78e-06 + }, + { + "word": "uninterrupted", + "freq": 1.78e-06 + }, + { + "word": "conscientious", + "freq": 1.74e-06 + }, + { + "word": "discriminated", + "freq": 1.74e-06 + }, + { + "word": "mathematician", + "freq": 1.74e-06 + }, + { + "word": "motherfucking", + "freq": 1.74e-06 + }, + { + "word": "accomplishing", + "freq": 1.7e-06 + }, + { + "word": "commemorative", + "freq": 1.7e-06 + }, + { + "word": "fragmentation", + "freq": 1.7e-06 + }, + { + "word": "gubernatorial", + "freq": 1.7e-06 + }, + { + "word": "inconsistency", + "freq": 1.7e-06 + }, + { + "word": "accompaniment", + "freq": 1.66e-06 + }, + { + "word": "interceptions", + "freq": 1.66e-06 + }, + { + "word": "misconception", + "freq": 1.66e-06 + }, + { + "word": "congratulated", + "freq": 1.62e-06 + }, + { + "word": "philanthropic", + "freq": 1.62e-06 + }, + { + "word": "deforestation", + "freq": 1.58e-06 + }, + { + "word": "hertfordshire", + "freq": 1.58e-06 + }, + { + "word": "individuality", + "freq": 1.58e-06 + }, + { + "word": "transatlantic", + "freq": 1.58e-06 + }, + { + "word": "aesthetically", + "freq": 1.55e-06 + }, + { + "word": "companionship", + "freq": 1.55e-06 + }, + { + "word": "discrepancies", + "freq": 1.55e-06 + }, + { + "word": "photographing", + "freq": 1.55e-06 + }, + { + "word": "circumference", + "freq": 1.51e-06 + }, + { + "word": "disillusioned", + "freq": 1.51e-06 + }, + { + "word": "informational", + "freq": 1.51e-06 + }, + { + "word": "refrigeration", + "freq": 1.51e-06 + }, + { + "word": "transnational", + "freq": 1.51e-06 + }, + { + "word": "whistleblower", + "freq": 1.51e-06 + }, + { + "word": "deliberations", + "freq": 1.48e-06 + }, + { + "word": "stereotypical", + "freq": 1.48e-06 + }, + { + "word": "affordability", + "freq": 1.45e-06 + }, + { + "word": "consolidating", + "freq": 1.45e-06 + }, + { + "word": "distinguishes", + "freq": 1.45e-06 + }, + { + "word": "probabilities", + "freq": 1.45e-06 + }, + { + "word": "contemplation", + "freq": 1.41e-06 + }, + { + "word": "merchandising", + "freq": 1.41e-06 + }, + { + "word": "misunderstand", + "freq": 1.41e-06 + }, + { + "word": "morphological", + "freq": 1.41e-06 + }, + { + "word": "reincarnation", + "freq": 1.41e-06 + }, + { + "word": "rollercoaster", + "freq": 1.41e-06 + }, + { + "word": "skateboarding", + "freq": 1.41e-06 + }, + { + "word": "unsustainable", + "freq": 1.41e-06 + }, + { + "word": "commemorating", + "freq": 1.38e-06 + }, + { + "word": "horticultural", + "freq": 1.38e-06 + }, + { + "word": "instantaneous", + "freq": 1.38e-06 + }, + { + "word": "jurisprudence", + "freq": 1.38e-06 + }, + { + "word": "observational", + "freq": 1.38e-06 + }, + { + "word": "quarterfinals", + "freq": 1.38e-06 + }, + { + "word": "superstitious", + "freq": 1.38e-06 + }, + { + "word": "choreographer", + "freq": 1.35e-06 + }, + { + "word": "extermination", + "freq": 1.35e-06 + }, + { + "word": "methodologies", + "freq": 1.35e-06 + }, + { + "word": "registrations", + "freq": 1.35e-06 + }, + { + "word": "schizophrenic", + "freq": 1.35e-06 + }, + { + "word": "amplification", + "freq": 1.32e-06 + }, + { + "word": "archaeologist", + "freq": 1.32e-06 + }, + { + "word": "interruptions", + "freq": 1.32e-06 + }, + { + "word": "unintentional", + "freq": 1.32e-06 + }, + { + "word": "contraceptive", + "freq": 1.29e-06 + }, + { + "word": "hydroelectric", + "freq": 1.29e-06 + }, + { + "word": "nanoparticles", + "freq": 1.29e-06 + }, + { + "word": "participatory", + "freq": 1.29e-06 + }, + { + "word": "refurbishment", + "freq": 1.29e-06 + }, + { + "word": "unwillingness", + "freq": 1.29e-06 + }, + { + "word": "condescending", + "freq": 1.26e-06 + }, + { + "word": "craftsmanship", + "freq": 1.26e-06 + }, + { + "word": "improvisation", + "freq": 1.26e-06 + }, + { + "word": "privatisation", + "freq": 1.26e-06 + }, + { + "word": "sensibilities", + "freq": 1.26e-06 + }, + { + "word": "sterilization", + "freq": 1.26e-06 + }, + { + "word": "cancellations", + "freq": 1.23e-06 + }, + { + "word": "incapacitated", + "freq": 1.23e-06 + }, + { + "word": "mismanagement", + "freq": 1.23e-06 + }, + { + "word": "reunification", + "freq": 1.23e-06 + }, + { + "word": "heterogeneous", + "freq": 1.2e-06 + }, + { + "word": "choreographed", + "freq": 1.17e-06 + }, + { + "word": "competitively", + "freq": 1.17e-06 + }, + { + "word": "inconceivable", + "freq": 1.17e-06 + }, + { + "word": "objectionable", + "freq": 1.17e-06 + }, + { + "word": "opportunistic", + "freq": 1.17e-06 + }, + { + "word": "dermatologist", + "freq": 1.15e-06 + }, + { + "word": "intrinsically", + "freq": 1.15e-06 + }, + { + "word": "unequivocally", + "freq": 1.15e-06 + }, + { + "word": "breakthroughs", + "freq": 1.12e-06 + }, + { + "word": "extracellular", + "freq": 1.12e-06 + }, + { + "word": "fertilization", + "freq": 1.12e-06 + }, + { + "word": "intelligently", + "freq": 1.12e-06 + }, + { + "word": "macroeconomic", + "freq": 1.12e-06 + }, + { + "word": "weightlifting", + "freq": 1.12e-06 + }, + { + "word": "wolverhampton", + "freq": 1.12e-06 + }, + { + "word": "abbreviations", + "freq": 1.1e-06 + }, + { + "word": "impossibility", + "freq": 1.1e-06 + }, + { + "word": "inconsiderate", + "freq": 1.1e-06 + }, + { + "word": "nationalistic", + "freq": 1.1e-06 + }, + { + "word": "proportionate", + "freq": 1.1e-06 + }, + { + "word": "quartermaster", + "freq": 1.1e-06 + }, + { + "word": "recollections", + "freq": 1.1e-06 + }, + { + "word": "unconsciously", + "freq": 1.1e-06 + }, + { + "word": "authorisation", + "freq": 1.07e-06 + }, + { + "word": "categorically", + "freq": 1.07e-06 + }, + { + "word": "consequential", + "freq": 1.07e-06 + }, + { + "word": "incriminating", + "freq": 1.07e-06 + }, + { + "word": "metamorphosis", + "freq": 1.07e-06 + }, + { + "word": "fantastically", + "freq": 1.05e-06 + }, + { + "word": "intracellular", + "freq": 1.05e-06 + }, + { + "word": "socialization", + "freq": 1.05e-06 + }, + { + "word": "spectacularly", + "freq": 1.05e-06 + }, + { + "word": "antimicrobial", + "freq": 1.02e-06 + }, + { + "word": "irreplaceable", + "freq": 1.02e-06 + }, + { + "word": "sportsmanship", + "freq": 1.02e-06 + }, + { + "word": "contradicting", + "freq": 1e-06 + }, + { + "word": "ideologically", + "freq": 1e-06 + }, + { + "word": "individualism", + "freq": 1e-06 + }, + { + "word": "translational", + "freq": 1e-06 + }, + { + "word": "uncomfortably", + "freq": 1e-06 + }, + { + "word": "materialistic", + "freq": 9.77e-07 + }, + { + "word": "normalization", + "freq": 9.77e-07 + }, + { + "word": "precautionary", + "freq": 9.77e-07 + }, + { + "word": "reinstatement", + "freq": 9.77e-07 + }, + { + "word": "introspection", + "freq": 9.55e-07 + }, + { + "word": "schoolteacher", + "freq": 9.55e-07 + }, + { + "word": "substitutions", + "freq": 9.55e-07 + }, + { + "word": "unaccompanied", + "freq": 9.55e-07 + }, + { + "word": "impersonating", + "freq": 9.33e-07 + }, + { + "word": "modernisation", + "freq": 9.33e-07 + }, + { + "word": "paraphernalia", + "freq": 9.33e-07 + }, + { + "word": "petrochemical", + "freq": 9.33e-07 + }, + { + "word": "protestantism", + "freq": 9.33e-07 + }, + { + "word": "recombination", + "freq": 9.33e-07 + }, + { + "word": "rehabilitated", + "freq": 9.33e-07 + }, + { + "word": "reprehensible", + "freq": 9.33e-07 + }, + { + "word": "confectionery", + "freq": 9.12e-07 + }, + { + "word": "disintegrated", + "freq": 9.12e-07 + }, + { + "word": "invertebrates", + "freq": 9.12e-07 + }, + { + "word": "juxtaposition", + "freq": 9.12e-07 + }, + { + "word": "prerequisites", + "freq": 9.12e-07 + }, + { + "word": "refrigerators", + "freq": 9.12e-07 + }, + { + "word": "businesswoman", + "freq": 8.91e-07 + }, + { + "word": "disconcerting", + "freq": 8.91e-07 + }, + { + "word": "globalisation", + "freq": 8.91e-07 + }, + { + "word": "communicative", + "freq": 8.71e-07 + }, + { + "word": "electrostatic", + "freq": 8.71e-07 + }, + { + "word": "idiosyncratic", + "freq": 8.71e-07 + }, + { + "word": "paradoxically", + "freq": 8.71e-07 + }, + { + "word": "retroactively", + "freq": 8.71e-07 + }, + { + "word": "sarcastically", + "freq": 8.71e-07 + }, + { + "word": "underwhelming", + "freq": 8.71e-07 + }, + { + "word": "archeological", + "freq": 8.51e-07 + }, + { + "word": "authenticated", + "freq": 8.51e-07 + }, + { + "word": "consecutively", + "freq": 8.51e-07 + }, + { + "word": "decompression", + "freq": 8.51e-07 + }, + { + "word": "deterministic", + "freq": 8.51e-07 + }, + { + "word": "magnification", + "freq": 8.51e-07 + }, + { + "word": "ophthalmology", + "freq": 8.51e-07 + }, + { + "word": "reproductions", + "freq": 8.51e-07 + }, + { + "word": "resuscitation", + "freq": 8.51e-07 + }, + { + "word": "sensitivities", + "freq": 8.51e-07 + }, + { + "word": "sequestration", + "freq": 8.51e-07 + }, + { + "word": "straightening", + "freq": 8.51e-07 + }, + { + "word": "thermodynamic", + "freq": 8.51e-07 + }, + { + "word": "brainstorming", + "freq": 8.32e-07 + }, + { + "word": "carboniferous", + "freq": 8.32e-07 + }, + { + "word": "congresswoman", + "freq": 8.32e-07 + }, + { + "word": "meteorologist", + "freq": 8.32e-07 + }, + { + "word": "pembrokeshire", + "freq": 8.32e-07 + }, + { + "word": "aberdeenshire", + "freq": 8.13e-07 + }, + { + "word": "anniversaries", + "freq": 8.13e-07 + }, + { + "word": "applicability", + "freq": 8.13e-07 + }, + { + "word": "characterizes", + "freq": 8.13e-07 + }, + { + "word": "disinterested", + "freq": 8.13e-07 + }, + { + "word": "disrespecting", + "freq": 8.13e-07 + }, + { + "word": "involuntarily", + "freq": 8.13e-07 + }, + { + "word": "radioactivity", + "freq": 8.13e-07 + }, + { + "word": "indescribable", + "freq": 7.94e-07 + }, + { + "word": "inevitability", + "freq": 7.94e-07 + }, + { + "word": "introspective", + "freq": 7.94e-07 + }, + { + "word": "stratigraphic", + "freq": 7.94e-07 + }, + { + "word": "superficially", + "freq": 7.94e-07 + }, + { + "word": "antibacterial", + "freq": 7.76e-07 + }, + { + "word": "argumentative", + "freq": 7.76e-07 + }, + { + "word": "baccalaureate", + "freq": 7.76e-07 + }, + { + "word": "contemplative", + "freq": 7.76e-07 + }, + { + "word": "hallucination", + "freq": 7.76e-07 + }, + { + "word": "perfectionist", + "freq": 7.76e-07 + }, + { + "word": "transactional", + "freq": 7.76e-07 + }, + { + "word": "transcendence", + "freq": 7.76e-07 + }, + { + "word": "transgression", + "freq": 7.76e-07 + }, + { + "word": "veterinarians", + "freq": 7.76e-07 + }, + { + "word": "commissioners", + "freq": 7.59e-07 + }, + { + "word": "conspicuously", + "freq": 7.59e-07 + }, + { + "word": "counterattack", + "freq": 7.59e-07 + }, + { + "word": "expeditionary", + "freq": 7.59e-07 + }, + { + "word": "indeterminate", + "freq": 7.59e-07 + }, + { + "word": "shakespearean", + "freq": 7.59e-07 + }, + { + "word": "dehydrogenase", + "freq": 7.41e-07 + }, + { + "word": "impersonation", + "freq": 7.41e-07 + }, + { + "word": "intercultural", + "freq": 7.41e-07 + }, + { + "word": "interrogating", + "freq": 7.41e-07 + }, + { + "word": "physiotherapy", + "freq": 7.41e-07 + }, + { + "word": "preoccupation", + "freq": 7.41e-07 + }, + { + "word": "uninteresting", + "freq": 7.41e-07 + }, + { + "word": "astonishingly", + "freq": 7.24e-07 + }, + { + "word": "complimenting", + "freq": 7.24e-07 + }, + { + "word": "compositional", + "freq": 7.24e-07 + }, + { + "word": "conglomerates", + "freq": 7.24e-07 + }, + { + "word": "disheartening", + "freq": 7.24e-07 + }, + { + "word": "eavesdropping", + "freq": 7.24e-07 + }, + { + "word": "hyperactivity", + "freq": 7.24e-07 + }, + { + "word": "intergalactic", + "freq": 7.24e-07 + }, + { + "word": "probabilistic", + "freq": 7.24e-07 + }, + { + "word": "impressionist", + "freq": 7.08e-07 + }, + { + "word": "interpolation", + "freq": 7.08e-07 + }, + { + "word": "metallurgical", + "freq": 7.08e-07 + }, + { + "word": "revolutionize", + "freq": 7.08e-07 + }, + { + "word": "biodegradable", + "freq": 6.92e-07 + }, + { + "word": "contingencies", + "freq": 6.92e-07 + }, + { + "word": "fortification", + "freq": 6.92e-07 + }, + { + "word": "painstakingly", + "freq": 6.92e-07 + }, + { + "word": "protectionist", + "freq": 6.92e-07 + }, + { + "word": "substantiated", + "freq": 6.92e-07 + }, + { + "word": "superstitions", + "freq": 6.92e-07 + }, + { + "word": "disseminating", + "freq": 6.76e-07 + }, + { + "word": "industrialist", + "freq": 6.76e-07 + }, + { + "word": "instrumentals", + "freq": 6.76e-07 + }, + { + "word": "manipulations", + "freq": 6.76e-07 + }, + { + "word": "oceanographic", + "freq": 6.76e-07 + }, + { + "word": "predominately", + "freq": 6.76e-07 + }, + { + "word": "supplementing", + "freq": 6.76e-07 + }, + { + "word": "uncomplicated", + "freq": 6.76e-07 + }, + { + "word": "untrustworthy", + "freq": 6.76e-07 + }, + { + "word": "hybridization", + "freq": 6.61e-07 + }, + { + "word": "preservatives", + "freq": 6.61e-07 + }, + { + "word": "reconstituted", + "freq": 6.61e-07 + }, + { + "word": "victimization", + "freq": 6.61e-07 + }, + { + "word": "consternation", + "freq": 6.46e-07 + }, + { + "word": "discoloration", + "freq": 6.46e-07 + }, + { + "word": "encyclopaedia", + "freq": 6.46e-07 + }, + { + "word": "protectionism", + "freq": 6.46e-07 + }, + { + "word": "manufacturers", + "freq": 6.31e-07 + }, + { + "word": "anthropogenic", + "freq": 6.31e-07 + }, + { + "word": "redistricting", + "freq": 6.31e-07 + }, + { + "word": "screenwriting", + "freq": 6.31e-07 + }, + { + "word": "statisticians", + "freq": 6.31e-07 + }, + { + "word": "technologists", + "freq": 6.31e-07 + }, + { + "word": "topographical", + "freq": 6.31e-07 + }, + { + "word": "organisations", + "freq": 6.17e-07 + }, + { + "word": "appropriating", + "freq": 6.17e-07 + }, + { + "word": "dictatorships", + "freq": 6.17e-07 + }, + { + "word": "dissertations", + "freq": 6.17e-07 + }, + { + "word": "neoliberalism", + "freq": 6.17e-07 + }, + { + "word": "prefabricated", + "freq": 6.17e-07 + }, + { + "word": "provisionally", + "freq": 6.17e-07 + }, + { + "word": "cheeseburgers", + "freq": 6.03e-07 + }, + { + "word": "liechtenstein", + "freq": 5.89e-07 + }, + { + "word": "magnificently", + "freq": 5.89e-07 + }, + { + "word": "ornamentation", + "freq": 5.89e-07 + }, + { + "word": "postsecondary", + "freq": 5.89e-07 + }, + { + "word": "redistributed", + "freq": 5.89e-07 + }, + { + "word": "reminiscences", + "freq": 5.89e-07 + }, + { + "word": "typographical", + "freq": 5.89e-07 + }, + { + "word": "desegregation", + "freq": 5.75e-07 + }, + { + "word": "distinctively", + "freq": 5.75e-07 + }, + { + "word": "endocrinology", + "freq": 5.75e-07 + }, + { + "word": "energetically", + "freq": 5.75e-07 + }, + { + "word": "foreshadowing", + "freq": 5.75e-07 + }, + { + "word": "heterogeneity", + "freq": 5.75e-07 + }, + { + "word": "immunotherapy", + "freq": 5.75e-07 + }, + { + "word": "inconspicuous", + "freq": 5.75e-07 + }, + { + "word": "overestimated", + "freq": 5.75e-07 + }, + { + "word": "strangulation", + "freq": 5.75e-07 + }, + { + "word": "supercomputer", + "freq": 5.75e-07 + }, + { + "word": "destabilizing", + "freq": 5.62e-07 + }, + { + "word": "intermediates", + "freq": 5.62e-07 + }, + { + "word": "spectroscopic", + "freq": 5.62e-07 + }, + { + "word": "teleportation", + "freq": 5.62e-07 + }, + { + "word": "temperamental", + "freq": 5.62e-07 + }, + { + "word": "domestication", + "freq": 5.5e-07 + }, + { + "word": "harpercollins", + "freq": 5.5e-07 + }, + { + "word": "homeschooling", + "freq": 5.5e-07 + }, + { + "word": "orchestration", + "freq": 5.5e-07 + }, + { + "word": "replenishment", + "freq": 5.5e-07 + }, + { + "word": "photographers", + "freq": 5.37e-07 + }, + { + "word": "acidification", + "freq": 5.37e-07 + }, + { + "word": "congratulates", + "freq": 5.37e-07 + }, + { + "word": "cryptographic", + "freq": 5.37e-07 + }, + { + "word": "peculiarities", + "freq": 5.37e-07 + }, + { + "word": "phenomenology", + "freq": 5.37e-07 + }, + { + "word": "contaminating", + "freq": 5.25e-07 + }, + { + "word": "disengagement", + "freq": 5.25e-07 + }, + { + "word": "endometriosis", + "freq": 5.25e-07 + }, + { + "word": "hallucinating", + "freq": 5.25e-07 + }, + { + "word": "monochromatic", + "freq": 5.25e-07 + }, + { + "word": "postoperative", + "freq": 5.25e-07 + }, + { + "word": "professorship", + "freq": 5.25e-07 + }, + { + "word": "rearrangement", + "freq": 5.25e-07 + }, + { + "word": "subcontractor", + "freq": 5.25e-07 + }, + { + "word": "translocation", + "freq": 5.25e-07 + }, + { + "word": "unanticipated", + "freq": 5.25e-07 + }, + { + "word": "valedictorian", + "freq": 5.25e-07 + }, + { + "word": "condescension", + "freq": 5.13e-07 + }, + { + "word": "herefordshire", + "freq": 5.13e-07 + }, + { + "word": "incrementally", + "freq": 5.13e-07 + }, + { + "word": "postmodernism", + "freq": 5.13e-07 + }, + { + "word": "procrastinate", + "freq": 5.13e-07 + }, + { + "word": "reciprocating", + "freq": 5.13e-07 + }, + { + "word": "unambiguously", + "freq": 5.13e-07 + }, + { + "word": "underpinnings", + "freq": 5.13e-07 + }, + { + "word": "unenforceable", + "freq": 5.13e-07 + }, + { + "word": "uninhabitable", + "freq": 5.13e-07 + }, + { + "word": "complementing", + "freq": 5.01e-07 + }, + { + "word": "corroboration", + "freq": 5.01e-07 + }, + { + "word": "grammatically", + "freq": 5.01e-07 + }, + { + "word": "hollingsworth", + "freq": 5.01e-07 + }, + { + "word": "homeownership", + "freq": 5.01e-07 + }, + { + "word": "necessitating", + "freq": 5.01e-07 + }, + { + "word": "operationally", + "freq": 5.01e-07 + }, + { + "word": "preliminaries", + "freq": 5.01e-07 + }, + { + "word": "preponderance", + "freq": 5.01e-07 + }, + { + "word": "presbyterians", + "freq": 5.01e-07 + }, + { + "word": "acetaminophen", + "freq": 4.9e-07 + }, + { + "word": "anachronistic", + "freq": 4.9e-07 + }, + { + "word": "bibliographic", + "freq": 4.9e-07 + }, + { + "word": "crowdsourcing", + "freq": 4.9e-07 + }, + { + "word": "cyberbullying", + "freq": 4.9e-07 + }, + { + "word": "differentials", + "freq": 4.9e-07 + }, + { + "word": "embellishment", + "freq": 4.9e-07 + }, + { + "word": "flabbergasted", + "freq": 4.9e-07 + }, + { + "word": "insufficiency", + "freq": 4.9e-07 + }, + { + "word": "polypropylene", + "freq": 4.9e-07 + }, + { + "word": "stabilisation", + "freq": 4.9e-07 + }, + { + "word": "triangulation", + "freq": 4.9e-07 + }, + { + "word": "authentically", + "freq": 4.79e-07 + }, + { + "word": "policyholders", + "freq": 4.79e-07 + }, + { + "word": "reconsidering", + "freq": 4.79e-07 + }, + { + "word": "republicanism", + "freq": 4.79e-07 + }, + { + "word": "transparently", + "freq": 4.79e-07 + }, + { + "word": "civilisations", + "freq": 4.68e-07 + }, + { + "word": "contractually", + "freq": 4.68e-07 + }, + { + "word": "contravention", + "freq": 4.68e-07 + }, + { + "word": "disconnecting", + "freq": 4.68e-07 + }, + { + "word": "extrajudicial", + "freq": 4.68e-07 + }, + { + "word": "neuromuscular", + "freq": 4.68e-07 + }, + { + "word": "thermonuclear", + "freq": 4.68e-07 + }, + { + "word": "unadulterated", + "freq": 4.68e-07 + }, + { + "word": "unsympathetic", + "freq": 4.68e-07 + }, + { + "word": "combinatorial", + "freq": 4.57e-07 + }, + { + "word": "counterweight", + "freq": 4.57e-07 + }, + { + "word": "decentralised", + "freq": 4.57e-07 + }, + { + "word": "defibrillator", + "freq": 4.57e-07 + }, + { + "word": "disconnection", + "freq": 4.57e-07 + }, + { + "word": "insensitivity", + "freq": 4.57e-07 + }, + { + "word": "observatories", + "freq": 4.57e-07 + }, + { + "word": "sedimentation", + "freq": 4.57e-07 + }, + { + "word": "unaccountable", + "freq": 4.57e-07 + }, + { + "word": "abolitionists", + "freq": 4.47e-07 + }, + { + "word": "argumentation", + "freq": 4.47e-07 + }, + { + "word": "confirmations", + "freq": 4.47e-07 + }, + { + "word": "featherweight", + "freq": 4.47e-07 + }, + { + "word": "matriculation", + "freq": 4.47e-07 + }, + { + "word": "propagandists", + "freq": 4.47e-07 + }, + { + "word": "stylistically", + "freq": 4.47e-07 + }, + { + "word": "triglycerides", + "freq": 4.47e-07 + }, + { + "word": "uncooperative", + "freq": 4.47e-07 + }, + { + "word": "undisciplined", + "freq": 4.47e-07 + }, + { + "word": "communicators", + "freq": 4.37e-07 + }, + { + "word": "discontinuous", + "freq": 4.37e-07 + }, + { + "word": "expropriation", + "freq": 4.37e-07 + }, + { + "word": "extinguishers", + "freq": 4.37e-07 + }, + { + "word": "glorification", + "freq": 4.37e-07 + }, + { + "word": "impressionism", + "freq": 4.37e-07 + }, + { + "word": "noncommercial", + "freq": 4.37e-07 + }, + { + "word": "pediatricians", + "freq": 4.37e-07 + }, + { + "word": "pennsylvanias", + "freq": 4.37e-07 + }, + { + "word": "philadelphias", + "freq": 4.37e-07 + }, + { + "word": "phytoplankton", + "freq": 4.37e-07 + }, + { + "word": "rediscovering", + "freq": 4.37e-07 + }, + { + "word": "relinquishing", + "freq": 4.37e-07 + }, + { + "word": "screenwriters", + "freq": 4.37e-07 + }, + { + "word": "troublemakers", + "freq": 4.37e-07 + }, + { + "word": "battlegrounds", + "freq": 4.27e-07 + }, + { + "word": "demonstrative", + "freq": 4.27e-07 + }, + { + "word": "dismemberment", + "freq": 4.27e-07 + }, + { + "word": "infinitesimal", + "freq": 4.27e-07 + }, + { + "word": "orchestrating", + "freq": 4.27e-07 + }, + { + "word": "preconditions", + "freq": 4.27e-07 + }, + { + "word": "reintegration", + "freq": 4.27e-07 + }, + { + "word": "renegotiation", + "freq": 4.27e-07 + }, + { + "word": "repositioning", + "freq": 4.27e-07 + }, + { + "word": "thermoplastic", + "freq": 4.27e-07 + }, + { + "word": "acceptability", + "freq": 4.17e-07 + }, + { + "word": "assertiveness", + "freq": 4.17e-07 + }, + { + "word": "hydrochloride", + "freq": 4.17e-07 + }, + { + "word": "infringements", + "freq": 4.17e-07 + }, + { + "word": "motorcyclists", + "freq": 4.17e-07 + }, + { + "word": "proclamations", + "freq": 4.17e-07 + }, + { + "word": "prohibitively", + "freq": 4.17e-07 + }, + { + "word": "rapprochement", + "freq": 4.17e-07 + }, + { + "word": "scintillating", + "freq": 4.17e-07 + }, + { + "word": "circumscribed", + "freq": 4.07e-07 + }, + { + "word": "comprehending", + "freq": 4.07e-07 + }, + { + "word": "connectedness", + "freq": 4.07e-07 + }, + { + "word": "cooperatively", + "freq": 4.07e-07 + }, + { + "word": "encapsulation", + "freq": 4.07e-07 + }, + { + "word": "inclusiveness", + "freq": 4.07e-07 + }, + { + "word": "waterproofing", + "freq": 4.07e-07 + }, + { + "word": "acetylcholine", + "freq": 3.98e-07 + }, + { + "word": "astrophysical", + "freq": 3.98e-07 + }, + { + "word": "encyclopedias", + "freq": 3.98e-07 + }, + { + "word": "indoctrinated", + "freq": 3.98e-07 + }, + { + "word": "inflorescence", + "freq": 3.98e-07 + }, + { + "word": "interactivity", + "freq": 3.98e-07 + }, + { + "word": "kindergartens", + "freq": 3.98e-07 + }, + { + "word": "piezoelectric", + "freq": 3.98e-07 + }, + { + "word": "prosecutorial", + "freq": 3.98e-07 + }, + { + "word": "reprogramming", + "freq": 3.98e-07 + }, + { + "word": "subordination", + "freq": 3.98e-07 + }, + { + "word": "survivability", + "freq": 3.98e-07 + }, + { + "word": "unjustifiable", + "freq": 3.98e-07 + }, + { + "word": "vegetarianism", + "freq": 3.98e-07 + }, + { + "word": "clearinghouse", + "freq": 3.89e-07 + }, + { + "word": "conceptualize", + "freq": 3.89e-07 + }, + { + "word": "corroborating", + "freq": 3.89e-07 + }, + { + "word": "diametrically", + "freq": 3.89e-07 + }, + { + "word": "extinguishing", + "freq": 3.89e-07 + }, + { + "word": "optimizations", + "freq": 3.89e-07 + }, + { + "word": "stratospheric", + "freq": 3.89e-07 + }, + { + "word": "superposition", + "freq": 3.89e-07 + }, + { + "word": "tyrannosaurus", + "freq": 3.89e-07 + }, + { + "word": "unexplainable", + "freq": 3.89e-07 + }, + { + "word": "unpretentious", + "freq": 3.89e-07 + }, + { + "word": "discontinuing", + "freq": 3.8e-07 + }, + { + "word": "disqualifying", + "freq": 3.8e-07 + }, + { + "word": "electrocution", + "freq": 3.8e-07 + }, + { + "word": "forgetfulness", + "freq": 3.8e-07 + }, + { + "word": "sanctimonious", + "freq": 3.8e-07 + }, + { + "word": "thoroughfares", + "freq": 3.8e-07 + }, + { + "word": "unappreciated", + "freq": 3.8e-07 + }, + { + "word": "antipsychotic", + "freq": 3.72e-07 + }, + { + "word": "chrysanthemum", + "freq": 3.72e-07 + }, + { + "word": "conflagration", + "freq": 3.72e-07 + }, + { + "word": "discriminates", + "freq": 3.72e-07 + }, + { + "word": "employability", + "freq": 3.72e-07 + }, + { + "word": "entanglements", + "freq": 3.72e-07 + }, + { + "word": "expressionism", + "freq": 3.72e-07 + }, + { + "word": "externalities", + "freq": 3.72e-07 + }, + { + "word": "inexhaustible", + "freq": 3.72e-07 + }, + { + "word": "malfunctioned", + "freq": 3.72e-07 + }, + { + "word": "nullification", + "freq": 3.72e-07 + }, + { + "word": "qualitatively", + "freq": 3.72e-07 + }, + { + "word": "transmutation", + "freq": 3.72e-07 + }, + { + "word": "undergarments", + "freq": 3.72e-07 + }, + { + "word": "irrepressible", + "freq": 3.63e-07 + }, + { + "word": "misadventures", + "freq": 3.63e-07 + }, + { + "word": "perfectionism", + "freq": 3.63e-07 + }, + { + "word": "pseudoscience", + "freq": 3.63e-07 + }, + { + "word": "neighborhoods", + "freq": 3.55e-07 + }, + { + "word": "accelerometer", + "freq": 3.55e-07 + }, + { + "word": "bidirectional", + "freq": 3.55e-07 + }, + { + "word": "bureaucracies", + "freq": 3.55e-07 + }, + { + "word": "deconstructed", + "freq": 3.55e-07 + }, + { + "word": "dependability", + "freq": 3.55e-07 + }, + { + "word": "extrapolation", + "freq": 3.55e-07 + }, + { + "word": "grandstanding", + "freq": 3.55e-07 + }, + { + "word": "handkerchiefs", + "freq": 3.55e-07 + }, + { + "word": "immunological", + "freq": 3.55e-07 + }, + { + "word": "indefatigable", + "freq": 3.55e-07 + }, + { + "word": "individualist", + "freq": 3.55e-07 + }, + { + "word": "intravenously", + "freq": 3.55e-07 + }, + { + "word": "irrationality", + "freq": 3.55e-07 + }, + { + "word": "nutritionally", + "freq": 3.55e-07 + }, + { + "word": "obstetricians", + "freq": 3.55e-07 + }, + { + "word": "rectification", + "freq": 3.55e-07 + }, + { + "word": "accumulations", + "freq": 3.47e-07 + }, + { + "word": "fertilisation", + "freq": 3.47e-07 + }, + { + "word": "inventiveness", + "freq": 3.47e-07 + }, + { + "word": "monmouthshire", + "freq": 3.47e-07 + }, + { + "word": "nutritionists", + "freq": 3.47e-07 + }, + { + "word": "progressivism", + "freq": 3.47e-07 + }, + { + "word": "pronouncement", + "freq": 3.47e-07 + }, + { + "word": "psychosomatic", + "freq": 3.47e-07 + }, + { + "word": "transposition", + "freq": 3.47e-07 + }, + { + "word": "undercarriage", + "freq": 3.47e-07 + }, + { + "word": "unimaginative", + "freq": 3.47e-07 + }, + { + "word": "agglomeration", + "freq": 3.39e-07 + }, + { + "word": "commendations", + "freq": 3.39e-07 + }, + { + "word": "dispassionate", + "freq": 3.39e-07 + }, + { + "word": "entomological", + "freq": 3.39e-07 + }, + { + "word": "expressionist", + "freq": 3.39e-07 + }, + { + "word": "frustratingly", + "freq": 3.39e-07 + }, + { + "word": "investigatory", + "freq": 3.39e-07 + }, + { + "word": "powerlessness", + "freq": 3.39e-07 + }, + { + "word": "psychoanalyst", + "freq": 3.39e-07 + }, + { + "word": "semiautomatic", + "freq": 3.39e-07 + }, + { + "word": "streptococcus", + "freq": 3.39e-07 + }, + { + "word": "thessalonians", + "freq": 3.39e-07 + }, + { + "word": "visualisation", + "freq": 3.39e-07 + }, + { + "word": "cerebrospinal", + "freq": 3.31e-07 + }, + { + "word": "circumventing", + "freq": 3.31e-07 + }, + { + "word": "commonalities", + "freq": 3.31e-07 + }, + { + "word": "conditionally", + "freq": 3.31e-07 + }, + { + "word": "displacements", + "freq": 3.31e-07 + }, + { + "word": "hematopoietic", + "freq": 3.31e-07 + }, + { + "word": "intermarriage", + "freq": 3.31e-07 + }, + { + "word": "knightsbridge", + "freq": 3.31e-07 + }, + { + "word": "machiavellian", + "freq": 3.31e-07 + }, + { + "word": "protestations", + "freq": 3.31e-07 + }, + { + "word": "reestablished", + "freq": 3.31e-07 + }, + { + "word": "requisitioned", + "freq": 3.31e-07 + }, + { + "word": "underutilized", + "freq": 3.31e-07 + }, + { + "word": "assassinating", + "freq": 3.24e-07 + }, + { + "word": "falsification", + "freq": 3.24e-07 + }, + { + "word": "frighteningly", + "freq": 3.24e-07 + }, + { + "word": "hieroglyphics", + "freq": 3.24e-07 + }, + { + "word": "irresponsibly", + "freq": 3.24e-07 + }, + { + "word": "mississippian", + "freq": 3.24e-07 + }, + { + "word": "polycarbonate", + "freq": 3.24e-07 + }, + { + "word": "proliferating", + "freq": 3.24e-07 + }, + { + "word": "theologically", + "freq": 3.24e-07 + }, + { + "word": "transmembrane", + "freq": 3.24e-07 + }, + { + "word": "waterboarding", + "freq": 3.24e-07 + }, + { + "word": "chiropractors", + "freq": 3.16e-07 + }, + { + "word": "cruiserweight", + "freq": 3.16e-07 + }, + { + "word": "discontinuity", + "freq": 3.16e-07 + }, + { + "word": "miscalculated", + "freq": 3.16e-07 + }, + { + "word": "reforestation", + "freq": 3.16e-07 + }, + { + "word": "uncoordinated", + "freq": 3.16e-07 + }, + { + "word": "archeologists", + "freq": 3.09e-07 + }, + { + "word": "expeditiously", + "freq": 3.09e-07 + }, + { + "word": "grandfathered", + "freq": 3.09e-07 + }, + { + "word": "imperceptible", + "freq": 3.09e-07 + }, + { + "word": "indiscretions", + "freq": 3.09e-07 + }, + { + "word": "malformations", + "freq": 3.09e-07 + }, + { + "word": "mycobacterium", + "freq": 3.09e-07 + }, + { + "word": "overstatement", + "freq": 3.09e-07 + }, + { + "word": "perturbations", + "freq": 3.09e-07 + }, + { + "word": "polymorphisms", + "freq": 3.09e-07 + }, + { + "word": "symmetrically", + "freq": 3.09e-07 + }, + { + "word": "telemarketing", + "freq": 3.09e-07 + }, + { + "word": "unintelligent", + "freq": 3.09e-07 + }, + { + "word": "apportionment", + "freq": 3.02e-07 + }, + { + "word": "criminalizing", + "freq": 3.02e-07 + }, + { + "word": "extrapolating", + "freq": 3.02e-07 + }, + { + "word": "geometrically", + "freq": 3.02e-07 + }, + { + "word": "hermaphrodite", + "freq": 3.02e-07 + }, + { + "word": "heterosexuals", + "freq": 3.02e-07 + }, + { + "word": "precipitating", + "freq": 3.02e-07 + }, + { + "word": "stormtroopers", + "freq": 3.02e-07 + }, + { + "word": "demilitarized", + "freq": 2.95e-07 + }, + { + "word": "interrogators", + "freq": 2.95e-07 + }, + { + "word": "invincibility", + "freq": 2.95e-07 + }, + { + "word": "outperforming", + "freq": 2.95e-07 + }, + { + "word": "proselytizing", + "freq": 2.95e-07 + }, + { + "word": "randomization", + "freq": 2.95e-07 + }, + { + "word": "sociocultural", + "freq": 2.95e-07 + }, + { + "word": "actualization", + "freq": 2.88e-07 + }, + { + "word": "deliciousness", + "freq": 2.88e-07 + }, + { + "word": "disfigurement", + "freq": 2.88e-07 + }, + { + "word": "exterminating", + "freq": 2.88e-07 + }, + { + "word": "extravagantly", + "freq": 2.88e-07 + }, + { + "word": "fictionalized", + "freq": 2.88e-07 + }, + { + "word": "globetrotters", + "freq": 2.88e-07 + }, + { + "word": "gynecological", + "freq": 2.88e-07 + }, + { + "word": "harmonization", + "freq": 2.88e-07 + }, + { + "word": "heartbreakers", + "freq": 2.88e-07 + }, + { + "word": "holidaymakers", + "freq": 2.88e-07 + }, + { + "word": "illuminations", + "freq": 2.88e-07 + }, + { + "word": "incorruptible", + "freq": 2.88e-07 + }, + { + "word": "overconfident", + "freq": 2.88e-07 + }, + { + "word": "paternalistic", + "freq": 2.88e-07 + }, + { + "word": "supranational", + "freq": 2.88e-07 + }, + { + "word": "thoroughbreds", + "freq": 2.88e-07 + }, + { + "word": "trainspotting", + "freq": 2.88e-07 + }, + { + "word": "transplanting", + "freq": 2.88e-07 + }, + { + "word": "charlottetown", + "freq": 2.82e-07 + }, + { + "word": "customisation", + "freq": 2.82e-07 + }, + { + "word": "disbursements", + "freq": 2.82e-07 + }, + { + "word": "frankensteins", + "freq": 2.82e-07 + }, + { + "word": "immunizations", + "freq": 2.82e-07 + }, + { + "word": "multicellular", + "freq": 2.82e-07 + }, + { + "word": "noncompliance", + "freq": 2.82e-07 + }, + { + "word": "percussionist", + "freq": 2.82e-07 + }, + { + "word": "restaurateurs", + "freq": 2.82e-07 + }, + { + "word": "ventriloquist", + "freq": 2.82e-07 + }, + { + "word": "approximating", + "freq": 2.75e-07 + }, + { + "word": "biomechanical", + "freq": 2.75e-07 + }, + { + "word": "commercialism", + "freq": 2.75e-07 + }, + { + "word": "cyanobacteria", + "freq": 2.75e-07 + }, + { + "word": "knickerbocker", + "freq": 2.75e-07 + }, + { + "word": "magnetization", + "freq": 2.75e-07 + }, + { + "word": "propositional", + "freq": 2.75e-07 + }, + { + "word": "rationalizing", + "freq": 2.75e-07 + }, + { + "word": "scandinavians", + "freq": 2.75e-07 + }, + { + "word": "singularities", + "freq": 2.75e-07 + }, + { + "word": "synchronicity", + "freq": 2.75e-07 + }, + { + "word": "trigonometric", + "freq": 2.75e-07 + }, + { + "word": "unfashionable", + "freq": 2.75e-07 + }, + { + "word": "dramatization", + "freq": 2.69e-07 + }, + { + "word": "fontainebleau", + "freq": 2.69e-07 + }, + { + "word": "infallibility", + "freq": 2.69e-07 + }, + { + "word": "nanomaterials", + "freq": 2.69e-07 + }, + { + "word": "schadenfreude", + "freq": 2.69e-07 + }, + { + "word": "solicitations", + "freq": 2.69e-07 + }, + { + "word": "transgendered", + "freq": 2.69e-07 + }, + { + "word": "uncircumcised", + "freq": 2.69e-07 + }, + { + "word": "underemployed", + "freq": 2.69e-07 + }, + { + "word": "constitutions", + "freq": 2.63e-07 + }, + { + "word": "anticoagulant", + "freq": 2.63e-07 + }, + { + "word": "exaggerations", + "freq": 2.63e-07 + }, + { + "word": "exhibitionist", + "freq": 2.63e-07 + }, + { + "word": "intelligencer", + "freq": 2.63e-07 + }, + { + "word": "metamorphoses", + "freq": 2.63e-07 + }, + { + "word": "nitroglycerin", + "freq": 2.63e-07 + }, + { + "word": "reactionaries", + "freq": 2.63e-07 + }, + { + "word": "reinterpreted", + "freq": 2.63e-07 + }, + { + "word": "reverberation", + "freq": 2.63e-07 + }, + { + "word": "serialization", + "freq": 2.63e-07 + }, + { + "word": "transgressive", + "freq": 2.63e-07 + }, + { + "word": "calcification", + "freq": 2.57e-07 + }, + { + "word": "disintegrates", + "freq": 2.57e-07 + }, + { + "word": "factorization", + "freq": 2.57e-07 + }, + { + "word": "incrimination", + "freq": 2.57e-07 + }, + { + "word": "intramuscular", + "freq": 2.57e-07 + }, + { + "word": "lawrenceville", + "freq": 2.57e-07 + }, + { + "word": "mechanization", + "freq": 2.57e-07 + }, + { + "word": "premeditation", + "freq": 2.57e-07 + }, + { + "word": "reinvigorated", + "freq": 2.57e-07 + }, + { + "word": "transportable", + "freq": 2.57e-07 + }, + { + "word": "commercialize", + "freq": 2.51e-07 + }, + { + "word": "conservatoire", + "freq": 2.51e-07 + }, + { + "word": "geostationary", + "freq": 2.51e-07 + }, + { + "word": "gynaecologist", + "freq": 2.51e-07 + }, + { + "word": "mouthwatering", + "freq": 2.51e-07 + }, + { + "word": "peacebuilding", + "freq": 2.51e-07 + }, + { + "word": "provocatively", + "freq": 2.51e-07 + }, + { + "word": "reverberating", + "freq": 2.51e-07 + }, + { + "word": "unreliability", + "freq": 2.51e-07 + }, + { + "word": "elizabethtown", + "freq": 2.45e-07 + }, + { + "word": "functionaries", + "freq": 2.45e-07 + }, + { + "word": "instabilities", + "freq": 2.45e-07 + }, + { + "word": "intelligences", + "freq": 2.45e-07 + }, + { + "word": "marketability", + "freq": 2.45e-07 + }, + { + "word": "photoshopping", + "freq": 2.45e-07 + }, + { + "word": "precipitously", + "freq": 2.45e-07 + }, + { + "word": "regurgitation", + "freq": 2.45e-07 + }, + { + "word": "saccharomyces", + "freq": 2.45e-07 + }, + { + "word": "sensitization", + "freq": 2.45e-07 + }, + { + "word": "sharpshooters", + "freq": 2.45e-07 + }, + { + "word": "sterilisation", + "freq": 2.45e-07 + }, + { + "word": "supercritical", + "freq": 2.45e-07 + }, + { + "word": "supermajority", + "freq": 2.45e-07 + }, + { + "word": "synchronizing", + "freq": 2.45e-07 + }, + { + "word": "witwatersrand", + "freq": 2.45e-07 + }, + { + "word": "anthropologie", + "freq": 2.4e-07 + }, + { + "word": "convalescence", + "freq": 2.4e-07 + }, + { + "word": "gynecologists", + "freq": 2.4e-07 + }, + { + "word": "hydraulically", + "freq": 2.4e-07 + }, + { + "word": "internacional", + "freq": 2.4e-07 + }, + { + "word": "lactobacillus", + "freq": 2.4e-07 + }, + { + "word": "mainstreaming", + "freq": 2.4e-07 + }, + { + "word": "overshadowing", + "freq": 2.4e-07 + }, + { + "word": "pennsylvanian", + "freq": 2.4e-07 + }, + { + "word": "reintroducing", + "freq": 2.4e-07 + }, + { + "word": "unconstrained", + "freq": 2.4e-07 + }, + { + "word": "acculturation", + "freq": 2.34e-07 + }, + { + "word": "defensiveness", + "freq": 2.34e-07 + }, + { + "word": "denunciations", + "freq": 2.34e-07 + }, + { + "word": "fractionation", + "freq": 2.34e-07 + }, + { + "word": "hallucinatory", + "freq": 2.34e-07 + }, + { + "word": "intermountain", + "freq": 2.34e-07 + }, + { + "word": "kidderminster", + "freq": 2.34e-07 + }, + { + "word": "librarianship", + "freq": 2.34e-07 + }, + { + "word": "magnetosphere", + "freq": 2.34e-07 + }, + { + "word": "maxillofacial", + "freq": 2.34e-07 + }, + { + "word": "michelangelos", + "freq": 2.34e-07 + }, + { + "word": "neuroblastoma", + "freq": 2.34e-07 + }, + { + "word": "nonconformist", + "freq": 2.34e-07 + }, + { + "word": "quadrilateral", + "freq": 2.34e-07 + }, + { + "word": "transmissible", + "freq": 2.34e-07 + }, + { + "word": "antihistamine", + "freq": 2.29e-07 + }, + { + "word": "cardiologists", + "freq": 2.29e-07 + }, + { + "word": "compensations", + "freq": 2.29e-07 + }, + { + "word": "insubstantial", + "freq": 2.29e-07 + }, + { + "word": "posttraumatic", + "freq": 2.29e-07 + }, + { + "word": "revolutionise", + "freq": 2.29e-07 + }, + { + "word": "skateboarders", + "freq": 2.29e-07 + }, + { + "word": "tortoiseshell", + "freq": 2.29e-07 + }, + { + "word": "apprehensions", + "freq": 2.24e-07 + }, + { + "word": "christmastime", + "freq": 2.24e-07 + }, + { + "word": "devastatingly", + "freq": 2.24e-07 + }, + { + "word": "disinfectants", + "freq": 2.24e-07 + }, + { + "word": "educationally", + "freq": 2.24e-07 + }, + { + "word": "experimenters", + "freq": 2.24e-07 + }, + { + "word": "hallucinogens", + "freq": 2.24e-07 + }, + { + "word": "impermissible", + "freq": 2.24e-07 + }, + { + "word": "interrogative", + "freq": 2.24e-07 + }, + { + "word": "intransigence", + "freq": 2.24e-07 + }, + { + "word": "subcategories", + "freq": 2.24e-07 + }, + { + "word": "tranquilizers", + "freq": 2.24e-07 + }, + { + "word": "unforeseeable", + "freq": 2.24e-07 + }, + { + "word": "visakhapatnam", + "freq": 2.24e-07 + }, + { + "word": "accoutrements", + "freq": 2.19e-07 + }, + { + "word": "carthaginians", + "freq": 2.19e-07 + }, + { + "word": "clandestinely", + "freq": 2.19e-07 + }, + { + "word": "fossiliferous", + "freq": 2.19e-07 + }, + { + "word": "geomorphology", + "freq": 2.19e-07 + }, + { + "word": "hydrogenation", + "freq": 2.19e-07 + }, + { + "word": "multifunction", + "freq": 2.19e-07 + }, + { + "word": "northeasterly", + "freq": 2.19e-07 + }, + { + "word": "serendipitous", + "freq": 2.19e-07 + }, + { + "word": "affirmatively", + "freq": 2.14e-07 + }, + { + "word": "biostatistics", + "freq": 2.14e-07 + }, + { + "word": "comparability", + "freq": 2.14e-07 + }, + { + "word": "dexamethasone", + "freq": 2.14e-07 + }, + { + "word": "fingerprinted", + "freq": 2.14e-07 + }, + { + "word": "imaginatively", + "freq": 2.14e-07 + }, + { + "word": "neurosciences", + "freq": 2.14e-07 + }, + { + "word": "outstandingly", + "freq": 2.14e-07 + }, + { + "word": "pragmatically", + "freq": 2.14e-07 + }, + { + "word": "standardizing", + "freq": 2.14e-07 + }, + { + "word": "subcommittees", + "freq": 2.14e-07 + }, + { + "word": "substantively", + "freq": 2.14e-07 + }, + { + "word": "uncompetitive", + "freq": 2.14e-07 + }, + { + "word": "characterises", + "freq": 2.09e-07 + }, + { + "word": "dimensionless", + "freq": 2.09e-07 + }, + { + "word": "hemispherical", + "freq": 2.09e-07 + }, + { + "word": "hydrocephalus", + "freq": 2.09e-07 + }, + { + "word": "kaleidoscopic", + "freq": 2.09e-07 + }, + { + "word": "kristallnacht", + "freq": 2.09e-07 + }, + { + "word": "microorganism", + "freq": 2.09e-07 + }, + { + "word": "misidentified", + "freq": 2.09e-07 + }, + { + "word": "nonconforming", + "freq": 2.09e-07 + }, + { + "word": "overabundance", + "freq": 2.09e-07 + }, + { + "word": "peloponnesian", + "freq": 2.09e-07 + }, + { + "word": "swashbuckling", + "freq": 2.09e-07 + }, + { + "word": "upperclassmen", + "freq": 2.09e-07 + }, + { + "word": "vocalizations", + "freq": 2.09e-07 + }, + { + "word": "airworthiness", + "freq": 2.04e-07 + }, + { + "word": "brokenhearted", + "freq": 2.04e-07 + }, + { + "word": "cartilaginous", + "freq": 2.04e-07 + }, + { + "word": "condemnations", + "freq": 2.04e-07 + }, + { + "word": "crossdressing", + "freq": 2.04e-07 + }, + { + "word": "dispossession", + "freq": 2.04e-07 + }, + { + "word": "hyperglycemia", + "freq": 2.04e-07 + }, + { + "word": "imperialistic", + "freq": 2.04e-07 + }, + { + "word": "meningococcal", + "freq": 2.04e-07 + }, + { + "word": "mineralogical", + "freq": 2.04e-07 + }, + { + "word": "normalisation", + "freq": 2.04e-07 + }, + { + "word": "proliferative", + "freq": 2.04e-07 + }, + { + "word": "prostaglandin", + "freq": 2.04e-07 + }, + { + "word": "radionuclides", + "freq": 2.04e-07 + }, + { + "word": "theatricality", + "freq": 2.04e-07 + }, + { + "word": "attentiveness", + "freq": 2e-07 + }, + { + "word": "circumvention", + "freq": 2e-07 + }, + { + "word": "conquistadors", + "freq": 2e-07 + }, + { + "word": "decriminalize", + "freq": 2e-07 + }, + { + "word": "ferromagnetic", + "freq": 2e-07 + }, + { + "word": "glycoproteins", + "freq": 2e-07 + }, + { + "word": "hypochondriac", + "freq": 2e-07 + }, + { + "word": "metamorphosed", + "freq": 2e-07 + }, + { + "word": "microcomputer", + "freq": 2e-07 + } + ], + "12": [ + { + "word": "relationship", + "freq": 0.000141 + }, + { + "word": "professional", + "freq": 0.000112 + }, + { + "word": "construction", + "freq": 9.33e-05 + }, + { + "word": "particularly", + "freq": 9.12e-05 + }, + { + "word": "organization", + "freq": 8.32e-05 + }, + { + "word": "conversation", + "freq": 5.62e-05 + }, + { + "word": "intelligence", + "freq": 5.01e-05 + }, + { + "word": "specifically", + "freq": 4.47e-05 + }, + { + "word": "distribution", + "freq": 4.37e-05 + }, + { + "word": "requirements", + "freq": 4.37e-05 + }, + { + "word": "conservative", + "freq": 4.07e-05 + }, + { + "word": "independence", + "freq": 3.8e-05 + }, + { + "word": "constitution", + "freq": 3.63e-05 + }, + { + "word": "championship", + "freq": 3.47e-05 + }, + { + "word": "introduction", + "freq": 3.31e-05 + }, + { + "word": "presidential", + "freq": 3.31e-05 + }, + { + "word": "neighborhood", + "freq": 3.16e-05 + }, + { + "word": "contemporary", + "freq": 3.09e-05 + }, + { + "word": "consequences", + "freq": 2.95e-05 + }, + { + "word": "respectively", + "freq": 2.82e-05 + }, + { + "word": "successfully", + "freq": 2.82e-05 + }, + { + "word": "expectations", + "freq": 2.75e-05 + }, + { + "word": "commissioner", + "freq": 2.69e-05 + }, + { + "word": "architecture", + "freq": 2.63e-05 + }, + { + "word": "disappointed", + "freq": 2.63e-05 + }, + { + "word": "philadelphia", + "freq": 2.63e-05 + }, + { + "word": "pennsylvania", + "freq": 2.51e-05 + }, + { + "word": "occasionally", + "freq": 2.45e-05 + }, + { + "word": "increasingly", + "freq": 2.4e-05 + }, + { + "word": "instructions", + "freq": 2.34e-05 + }, + { + "word": "headquarters", + "freq": 2.29e-05 + }, + { + "word": "organisation", + "freq": 2.29e-05 + }, + { + "word": "representing", + "freq": 2.29e-05 + }, + { + "word": "universities", + "freq": 2.29e-05 + }, + { + "word": "agricultural", + "freq": 2.19e-05 + }, + { + "word": "commonwealth", + "freq": 2.19e-05 + }, + { + "word": "contribution", + "freq": 2.19e-05 + }, + { + "word": "compensation", + "freq": 2.14e-05 + }, + { + "word": "conservation", + "freq": 2.14e-05 + }, + { + "word": "temperatures", + "freq": 2.14e-05 + }, + { + "word": "transmission", + "freq": 2.14e-05 + }, + { + "word": "registration", + "freq": 2.09e-05 + }, + { + "word": "technologies", + "freq": 2.09e-05 + }, + { + "word": "announcement", + "freq": 2.04e-05 + }, + { + "word": "presentation", + "freq": 2.04e-05 + }, + { + "word": "restrictions", + "freq": 2.04e-05 + }, + { + "word": "intellectual", + "freq": 2e-05 + }, + { + "word": "performances", + "freq": 1.95e-05 + }, + { + "word": "experimental", + "freq": 1.91e-05 + }, + { + "word": "photographer", + "freq": 1.91e-05 + }, + { + "word": "improvements", + "freq": 1.86e-05 + }, + { + "word": "intervention", + "freq": 1.82e-05 + }, + { + "word": "considerable", + "freq": 1.78e-05 + }, + { + "word": "conventional", + "freq": 1.78e-05 + }, + { + "word": "nevertheless", + "freq": 1.78e-05 + }, + { + "word": "consistently", + "freq": 1.74e-05 + }, + { + "word": "arrangements", + "freq": 1.7e-05 + }, + { + "word": "subsequently", + "freq": 1.7e-05 + }, + { + "word": "accidentally", + "freq": 1.66e-05 + }, + { + "word": "demonstrated", + "freq": 1.66e-05 + }, + { + "word": "transactions", + "freq": 1.66e-05 + }, + { + "word": "unemployment", + "freq": 1.66e-05 + }, + { + "word": "difficulties", + "freq": 1.62e-05 + }, + { + "word": "manufacturer", + "freq": 1.62e-05 + }, + { + "word": "negotiations", + "freq": 1.62e-05 + }, + { + "word": "additionally", + "freq": 1.58e-05 + }, + { + "word": "incorporated", + "freq": 1.58e-05 + }, + { + "word": "christianity", + "freq": 1.55e-05 + }, + { + "word": "metropolitan", + "freq": 1.51e-05 + }, + { + "word": "significance", + "freq": 1.51e-05 + }, + { + "word": "surveillance", + "freq": 1.48e-05 + }, + { + "word": "installation", + "freq": 1.45e-05 + }, + { + "word": "interactions", + "freq": 1.45e-05 + }, + { + "word": "satisfaction", + "freq": 1.45e-05 + }, + { + "word": "accomplished", + "freq": 1.41e-05 + }, + { + "word": "embarrassing", + "freq": 1.41e-05 + }, + { + "word": "productivity", + "freq": 1.41e-05 + }, + { + "word": "investigated", + "freq": 1.38e-05 + }, + { + "word": "availability", + "freq": 1.35e-05 + }, + { + "word": "manufactured", + "freq": 1.35e-05 + }, + { + "word": "appreciation", + "freq": 1.32e-05 + }, + { + "word": "capabilities", + "freq": 1.29e-05 + }, + { + "word": "entertaining", + "freq": 1.29e-05 + }, + { + "word": "establishing", + "freq": 1.29e-05 + }, + { + "word": "implications", + "freq": 1.26e-05 + }, + { + "word": "jurisdiction", + "freq": 1.26e-05 + }, + { + "word": "surprisingly", + "freq": 1.23e-05 + }, + { + "word": "acknowledged", + "freq": 1.2e-05 + }, + { + "word": "confirmation", + "freq": 1.2e-05 + }, + { + "word": "contributing", + "freq": 1.2e-05 + }, + { + "word": "historically", + "freq": 1.2e-05 + }, + { + "word": "overwhelming", + "freq": 1.2e-05 + }, + { + "word": "unbelievable", + "freq": 1.2e-05 + }, + { + "word": "achievements", + "freq": 1.15e-05 + }, + { + "word": "subscription", + "freq": 1.15e-05 + }, + { + "word": "measurements", + "freq": 1.12e-05 + }, + { + "word": "alternatives", + "freq": 1.1e-05 + }, + { + "word": "experiencing", + "freq": 1.1e-05 + }, + { + "word": "intermediate", + "freq": 1.1e-05 + }, + { + "word": "mathematical", + "freq": 1.1e-05 + }, + { + "word": "thanksgiving", + "freq": 1.1e-05 + }, + { + "word": "broadcasting", + "freq": 1.05e-05 + }, + { + "word": "consultation", + "freq": 1.05e-05 + }, + { + "word": "deliberately", + "freq": 1.05e-05 + }, + { + "word": "observations", + "freq": 1.05e-05 + }, + { + "word": "civilization", + "freq": 1.02e-05 + }, + { + "word": "participated", + "freq": 1.02e-05 + }, + { + "word": "preservation", + "freq": 1.02e-05 + }, + { + "word": "considerably", + "freq": 1e-05 + }, + { + "word": "prescription", + "freq": 1e-05 + }, + { + "word": "entrepreneur", + "freq": 9.77e-06 + }, + { + "word": "instrumental", + "freq": 9.77e-06 + }, + { + "word": "interference", + "freq": 9.77e-06 + }, + { + "word": "continuously", + "freq": 9.33e-06 + }, + { + "word": "administered", + "freq": 9.12e-06 + }, + { + "word": "commissioned", + "freq": 9.12e-06 + }, + { + "word": "concentrated", + "freq": 9.12e-06 + }, + { + "word": "appointments", + "freq": 8.91e-06 + }, + { + "word": "dramatically", + "freq": 8.91e-06 + }, + { + "word": "consequently", + "freq": 8.71e-06 + }, + { + "word": "disabilities", + "freq": 8.51e-06 + }, + { + "word": "descriptions", + "freq": 8.32e-06 + }, + { + "word": "illustration", + "freq": 8.32e-06 + }, + { + "word": "notification", + "freq": 8.32e-06 + }, + { + "word": "humanitarian", + "freq": 8.13e-06 + }, + { + "word": "implementing", + "freq": 8.13e-06 + }, + { + "word": "recreational", + "freq": 8.13e-06 + }, + { + "word": "confidential", + "freq": 7.94e-06 + }, + { + "word": "coordination", + "freq": 7.94e-06 + }, + { + "word": "individually", + "freq": 7.94e-06 + }, + { + "word": "transparency", + "freq": 7.94e-06 + }, + { + "word": "conditioning", + "freq": 7.76e-06 + }, + { + "word": "imprisonment", + "freq": 7.76e-06 + }, + { + "word": "perspectives", + "freq": 7.76e-06 + }, + { + "word": "supernatural", + "freq": 7.76e-06 + }, + { + "word": "intersection", + "freq": 7.59e-06 + }, + { + "word": "calculations", + "freq": 7.41e-06 + }, + { + "word": "preparations", + "freq": 7.41e-06 + }, + { + "word": "unacceptable", + "freq": 7.41e-06 + }, + { + "word": "demonstrates", + "freq": 7.24e-06 + }, + { + "word": "accompanying", + "freq": 7.08e-06 + }, + { + "word": "celebrations", + "freq": 7.08e-06 + }, + { + "word": "geographical", + "freq": 7.08e-06 + }, + { + "word": "governmental", + "freq": 7.08e-06 + }, + { + "word": "manipulation", + "freq": 7.08e-06 + }, + { + "word": "enthusiastic", + "freq": 6.92e-06 + }, + { + "word": "exploitation", + "freq": 6.92e-06 + }, + { + "word": "breakthrough", + "freq": 6.76e-06 + }, + { + "word": "combinations", + "freq": 6.76e-06 + }, + { + "word": "destinations", + "freq": 6.76e-06 + }, + { + "word": "differential", + "freq": 6.76e-06 + }, + { + "word": "economically", + "freq": 6.76e-06 + }, + { + "word": "investigator", + "freq": 6.76e-06 + }, + { + "word": "bibliography", + "freq": 6.61e-06 + }, + { + "word": "collectively", + "freq": 6.61e-06 + }, + { + "word": "congregation", + "freq": 6.61e-06 + }, + { + "word": "consolidated", + "freq": 6.61e-06 + }, + { + "word": "evolutionary", + "freq": 6.61e-06 + }, + { + "word": "indianapolis", + "freq": 6.61e-06 + }, + { + "word": "psychologist", + "freq": 6.31e-06 + }, + { + "word": "reproductive", + "freq": 6.31e-06 + }, + { + "word": "sufficiently", + "freq": 6.31e-06 + }, + { + "word": "inconsistent", + "freq": 6.17e-06 + }, + { + "word": "kindergarten", + "freq": 6.17e-06 + }, + { + "word": "northwestern", + "freq": 6.17e-06 + }, + { + "word": "reproduction", + "freq": 6.17e-06 + }, + { + "word": "reservations", + "freq": 6.17e-06 + }, + { + "word": "similarities", + "freq": 6.17e-06 + }, + { + "word": "surroundings", + "freq": 6.17e-06 + }, + { + "word": "constructive", + "freq": 6.03e-06 + }, + { + "word": "questionable", + "freq": 6.03e-06 + }, + { + "word": "certificates", + "freq": 5.89e-06 + }, + { + "word": "insufficient", + "freq": 5.89e-06 + }, + { + "word": "modification", + "freq": 5.89e-06 + }, + { + "word": "neighbouring", + "freq": 5.89e-06 + }, + { + "word": "cancellation", + "freq": 5.75e-06 + }, + { + "word": "explanations", + "freq": 5.75e-06 + }, + { + "word": "photographic", + "freq": 5.75e-06 + }, + { + "word": "resurrection", + "freq": 5.75e-06 + }, + { + "word": "scholarships", + "freq": 5.75e-06 + }, + { + "word": "counterparts", + "freq": 5.62e-06 + }, + { + "word": "disciplinary", + "freq": 5.62e-06 + }, + { + "word": "palestinians", + "freq": 5.62e-06 + }, + { + "word": "unreasonable", + "freq": 5.62e-06 + }, + { + "word": "anticipation", + "freq": 5.5e-06 + }, + { + "word": "transferring", + "freq": 5.5e-06 + }, + { + "word": "acceleration", + "freq": 5.37e-06 + }, + { + "word": "constituents", + "freq": 5.37e-06 + }, + { + "word": "inflammation", + "freq": 5.37e-06 + }, + { + "word": "quantitative", + "freq": 5.37e-06 + }, + { + "word": "unsuccessful", + "freq": 5.37e-06 + }, + { + "word": "inflammatory", + "freq": 5.25e-06 + }, + { + "word": "laboratories", + "freq": 5.25e-06 + }, + { + "word": "occupational", + "freq": 5.25e-06 + }, + { + "word": "photographed", + "freq": 5.25e-06 + }, + { + "word": "prostitution", + "freq": 5.25e-06 + }, + { + "word": "translations", + "freq": 5.25e-06 + }, + { + "word": "commentators", + "freq": 5.13e-06 + }, + { + "word": "continuation", + "freq": 5.13e-06 + }, + { + "word": "disadvantage", + "freq": 5.13e-06 + }, + { + "word": "municipality", + "freq": 5.13e-06 + }, + { + "word": "unexpectedly", + "freq": 5.13e-06 + }, + { + "word": "contaminated", + "freq": 5.01e-06 + }, + { + "word": "dissertation", + "freq": 5.01e-06 + }, + { + "word": "psychiatrist", + "freq": 5.01e-06 + }, + { + "word": "verification", + "freq": 5.01e-06 + }, + { + "word": "acquisitions", + "freq": 4.9e-06 + }, + { + "word": "constituency", + "freq": 4.9e-06 + }, + { + "word": "strengthened", + "freq": 4.9e-06 + }, + { + "word": "commercially", + "freq": 4.68e-06 + }, + { + "word": "contributors", + "freq": 4.68e-06 + }, + { + "word": "highlighting", + "freq": 4.68e-06 + }, + { + "word": "johannesburg", + "freq": 4.68e-06 + }, + { + "word": "circumstance", + "freq": 4.57e-06 + }, + { + "word": "disagreement", + "freq": 4.57e-06 + }, + { + "word": "optimization", + "freq": 4.57e-06 + }, + { + "word": "southeastern", + "freq": 4.57e-06 + }, + { + "word": "storytelling", + "freq": 4.57e-06 + }, + { + "word": "anthropology", + "freq": 4.47e-06 + }, + { + "word": "indefinitely", + "freq": 4.47e-06 + }, + { + "word": "transforming", + "freq": 4.47e-06 + }, + { + "word": "compositions", + "freq": 4.37e-06 + }, + { + "word": "dictatorship", + "freq": 4.37e-06 + }, + { + "word": "northeastern", + "freq": 4.37e-06 + }, + { + "word": "southwestern", + "freq": 4.37e-06 + }, + { + "word": "spokesperson", + "freq": 4.37e-06 + }, + { + "word": "standardized", + "freq": 4.37e-06 + }, + { + "word": "transitional", + "freq": 4.37e-06 + }, + { + "word": "aggressively", + "freq": 4.27e-06 + }, + { + "word": "discontinued", + "freq": 4.27e-06 + }, + { + "word": "displacement", + "freq": 4.27e-06 + }, + { + "word": "practitioner", + "freq": 4.27e-06 + }, + { + "word": "interviewing", + "freq": 4.17e-06 + }, + { + "word": "missionaries", + "freq": 4.17e-06 + }, + { + "word": "examinations", + "freq": 4.07e-06 + }, + { + "word": "hypothetical", + "freq": 4.07e-06 + }, + { + "word": "infringement", + "freq": 4.07e-06 + }, + { + "word": "jacksonville", + "freq": 4.07e-06 + }, + { + "word": "motherfucker", + "freq": 4.07e-06 + }, + { + "word": "refrigerator", + "freq": 4.07e-06 + }, + { + "word": "regeneration", + "freq": 4.07e-06 + }, + { + "word": "unidentified", + "freq": 4.07e-06 + }, + { + "word": "authenticity", + "freq": 3.98e-06 + }, + { + "word": "breathtaking", + "freq": 3.98e-06 + }, + { + "word": "disappearing", + "freq": 3.98e-06 + }, + { + "word": "distributors", + "freq": 3.98e-06 + }, + { + "word": "presbyterian", + "freq": 3.98e-06 + }, + { + "word": "proportional", + "freq": 3.98e-06 + }, + { + "word": "testosterone", + "freq": 3.98e-06 + }, + { + "word": "accumulation", + "freq": 3.89e-06 + }, + { + "word": "congratulate", + "freq": 3.89e-06 + }, + { + "word": "constructing", + "freq": 3.89e-06 + }, + { + "word": "coordinating", + "freq": 3.89e-06 + }, + { + "word": "fundamentals", + "freq": 3.89e-06 + }, + { + "word": "periodically", + "freq": 3.89e-06 + }, + { + "word": "transporting", + "freq": 3.89e-06 + }, + { + "word": "catastrophic", + "freq": 3.8e-06 + }, + { + "word": "conveniently", + "freq": 3.8e-06 + }, + { + "word": "distributing", + "freq": 3.8e-06 + }, + { + "word": "subsidiaries", + "freq": 3.8e-06 + }, + { + "word": "tuberculosis", + "freq": 3.8e-06 + }, + { + "word": "inauguration", + "freq": 3.72e-06 + }, + { + "word": "satisfactory", + "freq": 3.72e-06 + }, + { + "word": "transformers", + "freq": 3.72e-06 + }, + { + "word": "unauthorized", + "freq": 3.72e-06 + }, + { + "word": "chemotherapy", + "freq": 3.63e-06 + }, + { + "word": "connectivity", + "freq": 3.63e-06 + }, + { + "word": "demographics", + "freq": 3.63e-06 + }, + { + "word": "intimidating", + "freq": 3.63e-06 + }, + { + "word": "nationalists", + "freq": 3.63e-06 + }, + { + "word": "stakeholders", + "freq": 3.63e-06 + }, + { + "word": "acquaintance", + "freq": 3.55e-06 + }, + { + "word": "incorporates", + "freq": 3.55e-06 + }, + { + "word": "recommending", + "freq": 3.55e-06 + }, + { + "word": "spirituality", + "freq": 3.55e-06 + }, + { + "word": "neurological", + "freq": 3.47e-06 + }, + { + "word": "strawberries", + "freq": 3.47e-06 + }, + { + "word": "acknowledges", + "freq": 3.39e-06 + }, + { + "word": "communicated", + "freq": 3.39e-06 + }, + { + "word": "personalized", + "freq": 3.39e-06 + }, + { + "word": "replacements", + "freq": 3.39e-06 + }, + { + "word": "simultaneous", + "freq": 3.39e-06 + }, + { + "word": "condemnation", + "freq": 3.31e-06 + }, + { + "word": "disconnected", + "freq": 3.31e-06 + }, + { + "word": "encyclopedia", + "freq": 3.31e-06 + }, + { + "word": "expenditures", + "freq": 3.31e-06 + }, + { + "word": "volunteering", + "freq": 3.31e-06 + }, + { + "word": "discriminate", + "freq": 3.24e-06 + }, + { + "word": "incidentally", + "freq": 3.24e-06 + }, + { + "word": "introductory", + "freq": 3.24e-06 + }, + { + "word": "ridiculously", + "freq": 3.24e-06 + }, + { + "word": "specializing", + "freq": 3.24e-06 + }, + { + "word": "astronomical", + "freq": 3.09e-06 + }, + { + "word": "choreography", + "freq": 3.09e-06 + }, + { + "word": "scandinavian", + "freq": 3.09e-06 + }, + { + "word": "supplemental", + "freq": 3.09e-06 + }, + { + "word": "commencement", + "freq": 3.02e-06 + }, + { + "word": "incompatible", + "freq": 3.02e-06 + }, + { + "word": "motivational", + "freq": 3.02e-06 + }, + { + "word": "biodiversity", + "freq": 2.95e-06 + }, + { + "word": "fluctuations", + "freq": 2.95e-06 + }, + { + "word": "inconvenient", + "freq": 2.95e-06 + }, + { + "word": "irresistible", + "freq": 2.95e-06 + }, + { + "word": "respectfully", + "freq": 2.95e-06 + }, + { + "word": "accelerating", + "freq": 2.88e-06 + }, + { + "word": "masturbation", + "freq": 2.88e-06 + }, + { + "word": "subcommittee", + "freq": 2.88e-06 + }, + { + "word": "distractions", + "freq": 2.82e-06 + }, + { + "word": "interpreting", + "freq": 2.82e-06 + }, + { + "word": "manipulating", + "freq": 2.82e-06 + }, + { + "word": "neuroscience", + "freq": 2.82e-06 + }, + { + "word": "recognizable", + "freq": 2.82e-06 + }, + { + "word": "saskatchewan", + "freq": 2.82e-06 + }, + { + "word": "shortcomings", + "freq": 2.82e-06 + }, + { + "word": "artificially", + "freq": 2.75e-06 + }, + { + "word": "disqualified", + "freq": 2.75e-06 + }, + { + "word": "hospitalized", + "freq": 2.75e-06 + }, + { + "word": "proclamation", + "freq": 2.75e-06 + }, + { + "word": "undocumented", + "freq": 2.75e-06 + }, + { + "word": "correctional", + "freq": 2.69e-06 + }, + { + "word": "facilitating", + "freq": 2.69e-06 + }, + { + "word": "homelessness", + "freq": 2.69e-06 + }, + { + "word": "illegitimate", + "freq": 2.69e-06 + }, + { + "word": "incompetence", + "freq": 2.69e-06 + }, + { + "word": "interception", + "freq": 2.69e-06 + }, + { + "word": "manufactures", + "freq": 2.69e-06 + }, + { + "word": "transmitting", + "freq": 2.69e-06 + }, + { + "word": "conservatism", + "freq": 2.63e-06 + }, + { + "word": "supermarkets", + "freq": 2.63e-06 + }, + { + "word": "unbelievably", + "freq": 2.63e-06 + }, + { + "word": "hypertension", + "freq": 2.57e-06 + }, + { + "word": "irrespective", + "freq": 2.57e-06 + }, + { + "word": "substitution", + "freq": 2.57e-06 + }, + { + "word": "tremendously", + "freq": 2.57e-06 + }, + { + "word": "bureaucratic", + "freq": 2.51e-06 + }, + { + "word": "commandments", + "freq": 2.51e-06 + }, + { + "word": "legalization", + "freq": 2.51e-06 + }, + { + "word": "anticipating", + "freq": 2.45e-06 + }, + { + "word": "assassinated", + "freq": 2.45e-06 + }, + { + "word": "conglomerate", + "freq": 2.45e-06 + }, + { + "word": "heterosexual", + "freq": 2.45e-06 + }, + { + "word": "intermittent", + "freq": 2.45e-06 + }, + { + "word": "intimidation", + "freq": 2.45e-06 + }, + { + "word": "subconscious", + "freq": 2.45e-06 + }, + { + "word": "biographical", + "freq": 2.4e-06 + }, + { + "word": "manslaughter", + "freq": 2.4e-06 + }, + { + "word": "newfoundland", + "freq": 2.4e-06 + }, + { + "word": "civilisation", + "freq": 2.34e-06 + }, + { + "word": "collaborated", + "freq": 2.34e-06 + }, + { + "word": "depreciation", + "freq": 2.34e-06 + }, + { + "word": "identifiable", + "freq": 2.34e-06 + }, + { + "word": "longitudinal", + "freq": 2.34e-06 + }, + { + "word": "biochemistry", + "freq": 2.29e-06 + }, + { + "word": "colonization", + "freq": 2.29e-06 + }, + { + "word": "cosmopolitan", + "freq": 2.29e-06 + }, + { + "word": "interruption", + "freq": 2.29e-06 + }, + { + "word": "legitimately", + "freq": 2.29e-06 + }, + { + "word": "pathological", + "freq": 2.29e-06 + }, + { + "word": "unattractive", + "freq": 2.29e-06 + }, + { + "word": "affectionate", + "freq": 2.24e-06 + }, + { + "word": "deteriorated", + "freq": 2.24e-06 + }, + { + "word": "encompassing", + "freq": 2.24e-06 + }, + { + "word": "illumination", + "freq": 2.24e-06 + }, + { + "word": "impoverished", + "freq": 2.24e-06 + }, + { + "word": "mechanically", + "freq": 2.24e-06 + }, + { + "word": "deficiencies", + "freq": 2.19e-06 + }, + { + "word": "disturbances", + "freq": 2.19e-06 + }, + { + "word": "indifference", + "freq": 2.19e-06 + }, + { + "word": "interstellar", + "freq": 2.19e-06 + }, + { + "word": "marginalized", + "freq": 2.19e-06 + }, + { + "word": "perseverance", + "freq": 2.19e-06 + }, + { + "word": "progressives", + "freq": 2.19e-06 + }, + { + "word": "advantageous", + "freq": 2.14e-06 + }, + { + "word": "compromising", + "freq": 2.14e-06 + }, + { + "word": "fingerprints", + "freq": 2.14e-06 + }, + { + "word": "frankenstein", + "freq": 2.14e-06 + }, + { + "word": "investigates", + "freq": 2.14e-06 + }, + { + "word": "passionately", + "freq": 2.14e-06 + }, + { + "word": "shipbuilding", + "freq": 2.14e-06 + }, + { + "word": "supplemented", + "freq": 2.14e-06 + }, + { + "word": "characterize", + "freq": 2.09e-06 + }, + { + "word": "crowdfunding", + "freq": 2.09e-06 + }, + { + "word": "illustrating", + "freq": 2.09e-06 + }, + { + "word": "philanthropy", + "freq": 2.09e-06 + }, + { + "word": "preparedness", + "freq": 2.09e-06 + }, + { + "word": "attributable", + "freq": 2.04e-06 + }, + { + "word": "complication", + "freq": 2.04e-06 + }, + { + "word": "denomination", + "freq": 2.04e-06 + }, + { + "word": "dissatisfied", + "freq": 2.04e-06 + }, + { + "word": "distinctions", + "freq": 2.04e-06 + }, + { + "word": "hypocritical", + "freq": 2.04e-06 + }, + { + "word": "inscriptions", + "freq": 2.04e-06 + }, + { + "word": "spectroscopy", + "freq": 2.04e-06 + }, + { + "word": "conservatory", + "freq": 2e-06 + }, + { + "word": "epidemiology", + "freq": 2e-06 + }, + { + "word": "exaggeration", + "freq": 2e-06 + }, + { + "word": "fermentation", + "freq": 2e-06 + }, + { + "word": "horizontally", + "freq": 2e-06 + }, + { + "word": "inaccessible", + "freq": 2e-06 + }, + { + "word": "masturbating", + "freq": 2e-06 + }, + { + "word": "incarcerated", + "freq": 1.95e-06 + }, + { + "word": "journalistic", + "freq": 1.95e-06 + }, + { + "word": "lincolnshire", + "freq": 1.95e-06 + }, + { + "word": "purification", + "freq": 1.95e-06 + }, + { + "word": "complexities", + "freq": 1.91e-06 + }, + { + "word": "disobedience", + "freq": 1.91e-06 + }, + { + "word": "emancipation", + "freq": 1.91e-06 + }, + { + "word": "generational", + "freq": 1.91e-06 + }, + { + "word": "insecurities", + "freq": 1.91e-06 + }, + { + "word": "interrupting", + "freq": 1.91e-06 + }, + { + "word": "irreversible", + "freq": 1.91e-06 + }, + { + "word": "orchestrated", + "freq": 1.91e-06 + }, + { + "word": "participates", + "freq": 1.91e-06 + }, + { + "word": "postgraduate", + "freq": 1.91e-06 + }, + { + "word": "recollection", + "freq": 1.91e-06 + }, + { + "word": "departmental", + "freq": 1.86e-06 + }, + { + "word": "experimented", + "freq": 1.86e-06 + }, + { + "word": "localization", + "freq": 1.86e-06 + }, + { + "word": "mobilization", + "freq": 1.86e-06 + }, + { + "word": "unrestricted", + "freq": 1.86e-06 + }, + { + "word": "associations", + "freq": 1.82e-06 + }, + { + "word": "christchurch", + "freq": 1.82e-06 + }, + { + "word": "commentaries", + "freq": 1.82e-06 + }, + { + "word": "concurrently", + "freq": 1.82e-06 + }, + { + "word": "domestically", + "freq": 1.82e-06 + }, + { + "word": "endorsements", + "freq": 1.82e-06 + }, + { + "word": "frustrations", + "freq": 1.82e-06 + }, + { + "word": "hierarchical", + "freq": 1.82e-06 + }, + { + "word": "mysteriously", + "freq": 1.82e-06 + }, + { + "word": "polarization", + "freq": 1.82e-06 + }, + { + "word": "receptionist", + "freq": 1.82e-06 + }, + { + "word": "remuneration", + "freq": 1.82e-06 + }, + { + "word": "sociological", + "freq": 1.82e-06 + }, + { + "word": "subdivisions", + "freq": 1.82e-06 + }, + { + "word": "contemplated", + "freq": 1.78e-06 + }, + { + "word": "manipulative", + "freq": 1.78e-06 + }, + { + "word": "microbiology", + "freq": 1.78e-06 + }, + { + "word": "thunderstorm", + "freq": 1.78e-06 + }, + { + "word": "wrestlemania", + "freq": 1.78e-06 + }, + { + "word": "appreciative", + "freq": 1.74e-06 + }, + { + "word": "compartments", + "freq": 1.74e-06 + }, + { + "word": "fluorescence", + "freq": 1.74e-06 + }, + { + "word": "housekeeping", + "freq": 1.74e-06 + }, + { + "word": "inequalities", + "freq": 1.74e-06 + }, + { + "word": "infiltration", + "freq": 1.74e-06 + }, + { + "word": "malnutrition", + "freq": 1.74e-06 + }, + { + "word": "masterpieces", + "freq": 1.74e-06 + }, + { + "word": "prerequisite", + "freq": 1.74e-06 + }, + { + "word": "accumulating", + "freq": 1.7e-06 + }, + { + "word": "appreciating", + "freq": 1.7e-06 + }, + { + "word": "aristocratic", + "freq": 1.7e-06 + }, + { + "word": "biologically", + "freq": 1.7e-06 + }, + { + "word": "declarations", + "freq": 1.7e-06 + }, + { + "word": "encountering", + "freq": 1.7e-06 + }, + { + "word": "overshadowed", + "freq": 1.7e-06 + }, + { + "word": "peterborough", + "freq": 1.7e-06 + }, + { + "word": "philosophies", + "freq": 1.7e-06 + }, + { + "word": "safeguarding", + "freq": 1.7e-06 + }, + { + "word": "segmentation", + "freq": 1.7e-06 + }, + { + "word": "alphabetical", + "freq": 1.66e-06 + }, + { + "word": "annihilation", + "freq": 1.66e-06 + }, + { + "word": "cheerleaders", + "freq": 1.66e-06 + }, + { + "word": "coefficients", + "freq": 1.66e-06 + }, + { + "word": "discouraging", + "freq": 1.66e-06 + }, + { + "word": "effortlessly", + "freq": 1.66e-06 + }, + { + "word": "metaphysical", + "freq": 1.66e-06 + }, + { + "word": "narcissistic", + "freq": 1.66e-06 + }, + { + "word": "shakespeares", + "freq": 1.66e-06 + }, + { + "word": "circumcision", + "freq": 1.62e-06 + }, + { + "word": "hillsborough", + "freq": 1.62e-06 + }, + { + "word": "illuminating", + "freq": 1.62e-06 + }, + { + "word": "nomenclature", + "freq": 1.62e-06 + }, + { + "word": "preferential", + "freq": 1.62e-06 + }, + { + "word": "relentlessly", + "freq": 1.62e-06 + }, + { + "word": "superstition", + "freq": 1.62e-06 + }, + { + "word": "totalitarian", + "freq": 1.62e-06 + }, + { + "word": "guaranteeing", + "freq": 1.58e-06 + }, + { + "word": "paramilitary", + "freq": 1.58e-06 + }, + { + "word": "synchronized", + "freq": 1.58e-06 + }, + { + "word": "therapeutics", + "freq": 1.58e-06 + }, + { + "word": "uncontrolled", + "freq": 1.58e-06 + }, + { + "word": "unparalleled", + "freq": 1.58e-06 + }, + { + "word": "williamsburg", + "freq": 1.58e-06 + }, + { + "word": "assimilation", + "freq": 1.55e-06 + }, + { + "word": "concentrates", + "freq": 1.55e-06 + }, + { + "word": "contractions", + "freq": 1.55e-06 + }, + { + "word": "debilitating", + "freq": 1.55e-06 + }, + { + "word": "dependencies", + "freq": 1.55e-06 + }, + { + "word": "efficiencies", + "freq": 1.55e-06 + }, + { + "word": "electrically", + "freq": 1.55e-06 + }, + { + "word": "exaggerating", + "freq": 1.55e-06 + }, + { + "word": "extinguished", + "freq": 1.55e-06 + }, + { + "word": "functionally", + "freq": 1.55e-06 + }, + { + "word": "longstanding", + "freq": 1.55e-06 + }, + { + "word": "miraculously", + "freq": 1.55e-06 + }, + { + "word": "philharmonic", + "freq": 1.55e-06 + }, + { + "word": "structurally", + "freq": 1.55e-06 + }, + { + "word": "veterinarian", + "freq": 1.55e-06 + }, + { + "word": "academically", + "freq": 1.51e-06 + }, + { + "word": "bachelorette", + "freq": 1.51e-06 + }, + { + "word": "computerized", + "freq": 1.51e-06 + }, + { + "word": "dictionaries", + "freq": 1.51e-06 + }, + { + "word": "handkerchief", + "freq": 1.51e-06 + }, + { + "word": "horticulture", + "freq": 1.51e-06 + }, + { + "word": "huddersfield", + "freq": 1.51e-06 + }, + { + "word": "intermediary", + "freq": 1.51e-06 + }, + { + "word": "interrogated", + "freq": 1.51e-06 + }, + { + "word": "penitentiary", + "freq": 1.51e-06 + }, + { + "word": "pornographic", + "freq": 1.51e-06 + }, + { + "word": "carbohydrate", + "freq": 1.48e-06 + }, + { + "word": "complimented", + "freq": 1.48e-06 + }, + { + "word": "contaminants", + "freq": 1.48e-06 + }, + { + "word": "definitively", + "freq": 1.48e-06 + }, + { + "word": "deregulation", + "freq": 1.48e-06 + }, + { + "word": "domesticated", + "freq": 1.48e-06 + }, + { + "word": "insurrection", + "freq": 1.48e-06 + }, + { + "word": "personalised", + "freq": 1.48e-06 + }, + { + "word": "policymakers", + "freq": 1.48e-06 + }, + { + "word": "screenwriter", + "freq": 1.48e-06 + }, + { + "word": "solicitation", + "freq": 1.48e-06 + }, + { + "word": "accommodated", + "freq": 1.45e-06 + }, + { + "word": "cheerleading", + "freq": 1.45e-06 + }, + { + "word": "collaborator", + "freq": 1.45e-06 + }, + { + "word": "downloadable", + "freq": 1.45e-06 + }, + { + "word": "enhancements", + "freq": 1.45e-06 + }, + { + "word": "ghostbusters", + "freq": 1.45e-06 + }, + { + "word": "invitational", + "freq": 1.45e-06 + }, + { + "word": "michelangelo", + "freq": 1.45e-06 + }, + { + "word": "photoshopped", + "freq": 1.45e-06 + }, + { + "word": "antisemitism", + "freq": 1.41e-06 + }, + { + "word": "entertainers", + "freq": 1.41e-06 + }, + { + "word": "geopolitical", + "freq": 1.41e-06 + }, + { + "word": "installments", + "freq": 1.41e-06 + }, + { + "word": "peacekeeping", + "freq": 1.41e-06 + }, + { + "word": "pharmacology", + "freq": 1.41e-06 + }, + { + "word": "snowboarding", + "freq": 1.41e-06 + }, + { + "word": "unimaginable", + "freq": 1.41e-06 + }, + { + "word": "abbreviation", + "freq": 1.38e-06 + }, + { + "word": "appropriated", + "freq": 1.38e-06 + }, + { + "word": "bodybuilding", + "freq": 1.38e-06 + }, + { + "word": "conductivity", + "freq": 1.38e-06 + }, + { + "word": "contradicted", + "freq": 1.38e-06 + }, + { + "word": "ratification", + "freq": 1.38e-06 + }, + { + "word": "resettlement", + "freq": 1.38e-06 + }, + { + "word": "specialising", + "freq": 1.38e-06 + }, + { + "word": "underwriting", + "freq": 1.38e-06 + }, + { + "word": "unsuspecting", + "freq": 1.38e-06 + }, + { + "word": "affiliations", + "freq": 1.35e-06 + }, + { + "word": "communicates", + "freq": 1.35e-06 + }, + { + "word": "completeness", + "freq": 1.35e-06 + }, + { + "word": "inconclusive", + "freq": 1.35e-06 + }, + { + "word": "inexplicable", + "freq": 1.35e-06 + }, + { + "word": "postdoctoral", + "freq": 1.35e-06 + }, + { + "word": "preposterous", + "freq": 1.35e-06 + }, + { + "word": "preventative", + "freq": 1.35e-06 + }, + { + "word": "straightened", + "freq": 1.35e-06 + }, + { + "word": "surrendering", + "freq": 1.35e-06 + }, + { + "word": "vaccinations", + "freq": 1.35e-06 + }, + { + "word": "advancements", + "freq": 1.32e-06 + }, + { + "word": "cheeseburger", + "freq": 1.32e-06 + }, + { + "word": "condensation", + "freq": 1.32e-06 + }, + { + "word": "constipation", + "freq": 1.32e-06 + }, + { + "word": "consultative", + "freq": 1.32e-06 + }, + { + "word": "degeneration", + "freq": 1.32e-06 + }, + { + "word": "evangelicals", + "freq": 1.32e-06 + }, + { + "word": "exhilarating", + "freq": 1.32e-06 + }, + { + "word": "intoxication", + "freq": 1.32e-06 + }, + { + "word": "subordinates", + "freq": 1.32e-06 + }, + { + "word": "unilaterally", + "freq": 1.32e-06 + }, + { + "word": "chesterfield", + "freq": 1.29e-06 + }, + { + "word": "collectibles", + "freq": 1.29e-06 + }, + { + "word": "conspirators", + "freq": 1.29e-06 + }, + { + "word": "counterpoint", + "freq": 1.29e-06 + }, + { + "word": "subterranean", + "freq": 1.29e-06 + }, + { + "word": "warwickshire", + "freq": 1.29e-06 + }, + { + "word": "convincingly", + "freq": 1.26e-06 + }, + { + "word": "explorations", + "freq": 1.26e-06 + }, + { + "word": "interspersed", + "freq": 1.26e-06 + }, + { + "word": "metaphorical", + "freq": 1.26e-06 + }, + { + "word": "multilateral", + "freq": 1.26e-06 + }, + { + "word": "overreacting", + "freq": 1.26e-06 + }, + { + "word": "refrigerated", + "freq": 1.26e-06 + }, + { + "word": "stockholders", + "freq": 1.26e-06 + }, + { + "word": "unproductive", + "freq": 1.26e-06 + }, + { + "word": "aeronautical", + "freq": 1.23e-06 + }, + { + "word": "apprehension", + "freq": 1.23e-06 + }, + { + "word": "articulation", + "freq": 1.23e-06 + }, + { + "word": "complemented", + "freq": 1.23e-06 + }, + { + "word": "connotations", + "freq": 1.23e-06 + }, + { + "word": "correlations", + "freq": 1.23e-06 + }, + { + "word": "enlightening", + "freq": 1.23e-06 + }, + { + "word": "interpreters", + "freq": 1.23e-06 + }, + { + "word": "mitochondria", + "freq": 1.23e-06 + }, + { + "word": "romantically", + "freq": 1.23e-06 + }, + { + "word": "transitioned", + "freq": 1.23e-06 + }, + { + "word": "transmitters", + "freq": 1.23e-06 + }, + { + "word": "amalgamation", + "freq": 1.2e-06 + }, + { + "word": "conspiracies", + "freq": 1.2e-06 + }, + { + "word": "inspirations", + "freq": 1.2e-06 + }, + { + "word": "meticulously", + "freq": 1.2e-06 + }, + { + "word": "purposefully", + "freq": 1.2e-06 + }, + { + "word": "radiotherapy", + "freq": 1.2e-06 + }, + { + "word": "suspiciously", + "freq": 1.2e-06 + }, + { + "word": "unmistakable", + "freq": 1.2e-06 + }, + { + "word": "battleground", + "freq": 1.17e-06 + }, + { + "word": "emphatically", + "freq": 1.17e-06 + }, + { + "word": "formulations", + "freq": 1.17e-06 + }, + { + "word": "impenetrable", + "freq": 1.17e-06 + }, + { + "word": "pediatrician", + "freq": 1.17e-06 + }, + { + "word": "propositions", + "freq": 1.17e-06 + }, + { + "word": "unscrupulous", + "freq": 1.17e-06 + }, + { + "word": "cooperatives", + "freq": 1.15e-06 + }, + { + "word": "deliberation", + "freq": 1.15e-06 + }, + { + "word": "excruciating", + "freq": 1.15e-06 + }, + { + "word": "foundational", + "freq": 1.15e-06 + }, + { + "word": "hydrocarbons", + "freq": 1.15e-06 + }, + { + "word": "mythological", + "freq": 1.15e-06 + }, + { + "word": "parishioners", + "freq": 1.15e-06 + }, + { + "word": "regenerative", + "freq": 1.15e-06 + }, + { + "word": "repatriation", + "freq": 1.15e-06 + }, + { + "word": "transferable", + "freq": 1.15e-06 + }, + { + "word": "transplanted", + "freq": 1.15e-06 + }, + { + "word": "asymmetrical", + "freq": 1.12e-06 + }, + { + "word": "augmentation", + "freq": 1.12e-06 + }, + { + "word": "confessional", + "freq": 1.12e-06 + }, + { + "word": "heartwarming", + "freq": 1.12e-06 + }, + { + "word": "overcrowding", + "freq": 1.12e-06 + }, + { + "word": "persistently", + "freq": 1.12e-06 + }, + { + "word": "corresponded", + "freq": 1.1e-06 + }, + { + "word": "designations", + "freq": 1.1e-06 + }, + { + "word": "fayetteville", + "freq": 1.1e-06 + }, + { + "word": "genealogical", + "freq": 1.1e-06 + }, + { + "word": "imaginations", + "freq": 1.1e-06 + }, + { + "word": "interpretive", + "freq": 1.1e-06 + }, + { + "word": "urbanization", + "freq": 1.1e-06 + }, + { + "word": "apprehensive", + "freq": 1.07e-06 + }, + { + "word": "marshmallows", + "freq": 1.07e-06 + }, + { + "word": "middleweight", + "freq": 1.07e-06 + }, + { + "word": "multilingual", + "freq": 1.07e-06 + }, + { + "word": "postponement", + "freq": 1.07e-06 + }, + { + "word": "programmable", + "freq": 1.07e-06 + }, + { + "word": "slaughtering", + "freq": 1.07e-06 + }, + { + "word": "substituting", + "freq": 1.07e-06 + }, + { + "word": "unregistered", + "freq": 1.07e-06 + }, + { + "word": "antagonistic", + "freq": 1.05e-06 + }, + { + "word": "embezzlement", + "freq": 1.05e-06 + }, + { + "word": "hypothesized", + "freq": 1.05e-06 + }, + { + "word": "illustrative", + "freq": 1.05e-06 + }, + { + "word": "incandescent", + "freq": 1.05e-06 + }, + { + "word": "photovoltaic", + "freq": 1.05e-06 + }, + { + "word": "successively", + "freq": 1.05e-06 + }, + { + "word": "uninterested", + "freq": 1.05e-06 + }, + { + "word": "degenerative", + "freq": 1.02e-06 + }, + { + "word": "distillation", + "freq": 1.02e-06 + }, + { + "word": "immunization", + "freq": 1.02e-06 + }, + { + "word": "implantation", + "freq": 1.02e-06 + }, + { + "word": "inaccuracies", + "freq": 1.02e-06 + }, + { + "word": "inexplicably", + "freq": 1.02e-06 + }, + { + "word": "intermission", + "freq": 1.02e-06 + }, + { + "word": "progesterone", + "freq": 1.02e-06 + }, + { + "word": "refreshments", + "freq": 1.02e-06 + }, + { + "word": "unauthorised", + "freq": 1.02e-06 + }, + { + "word": "unforgivable", + "freq": 1.02e-06 + }, + { + "word": "commendation", + "freq": 1e-06 + }, + { + "word": "compensating", + "freq": 1e-06 + }, + { + "word": "condominiums", + "freq": 1e-06 + }, + { + "word": "diamondbacks", + "freq": 1e-06 + }, + { + "word": "disorganized", + "freq": 1e-06 + }, + { + "word": "disseminated", + "freq": 1e-06 + }, + { + "word": "faithfulness", + "freq": 1e-06 + }, + { + "word": "infrequently", + "freq": 1e-06 + }, + { + "word": "rehabilitate", + "freq": 1e-06 + }, + { + "word": "undiscovered", + "freq": 1e-06 + }, + { + "word": "grandmothers", + "freq": 9.77e-07 + }, + { + "word": "astrophysics", + "freq": 9.77e-07 + }, + { + "word": "competencies", + "freq": 9.77e-07 + }, + { + "word": "confiscation", + "freq": 9.77e-07 + }, + { + "word": "conscription", + "freq": 9.77e-07 + }, + { + "word": "ethnographic", + "freq": 9.77e-07 + }, + { + "word": "incomparable", + "freq": 9.77e-07 + }, + { + "word": "libertarians", + "freq": 9.77e-07 + }, + { + "word": "navigational", + "freq": 9.77e-07 + }, + { + "word": "osteoporosis", + "freq": 9.77e-07 + }, + { + "word": "perpetuating", + "freq": 9.77e-07 + }, + { + "word": "precipitated", + "freq": 9.77e-07 + }, + { + "word": "relinquished", + "freq": 9.77e-07 + }, + { + "word": "unresponsive", + "freq": 9.77e-07 + }, + { + "word": "corporations", + "freq": 9.55e-07 + }, + { + "word": "chairmanship", + "freq": 9.55e-07 + }, + { + "word": "conclusively", + "freq": 9.55e-07 + }, + { + "word": "electrolytes", + "freq": 9.55e-07 + }, + { + "word": "experiential", + "freq": 9.55e-07 + }, + { + "word": "figuratively", + "freq": 9.55e-07 + }, + { + "word": "interlocking", + "freq": 9.55e-07 + }, + { + "word": "mademoiselle", + "freq": 9.55e-07 + }, + { + "word": "misogynistic", + "freq": 9.55e-07 + }, + { + "word": "mistreatment", + "freq": 9.55e-07 + }, + { + "word": "overpowering", + "freq": 9.55e-07 + }, + { + "word": "rediscovered", + "freq": 9.55e-07 + }, + { + "word": "restructured", + "freq": 9.55e-07 + }, + { + "word": "thoroughbred", + "freq": 9.55e-07 + }, + { + "word": "amortization", + "freq": 9.33e-07 + }, + { + "word": "californians", + "freq": 9.33e-07 + }, + { + "word": "confederates", + "freq": 9.33e-07 + }, + { + "word": "constabulary", + "freq": 9.33e-07 + }, + { + "word": "coordinators", + "freq": 9.33e-07 + }, + { + "word": "entitlements", + "freq": 9.33e-07 + }, + { + "word": "formaldehyde", + "freq": 9.33e-07 + }, + { + "word": "impressively", + "freq": 9.33e-07 + }, + { + "word": "inexperience", + "freq": 9.33e-07 + }, + { + "word": "intoxicating", + "freq": 9.33e-07 + }, + { + "word": "polyethylene", + "freq": 9.33e-07 + }, + { + "word": "recognisable", + "freq": 9.33e-07 + }, + { + "word": "speculations", + "freq": 9.33e-07 + }, + { + "word": "supremacists", + "freq": 9.33e-07 + }, + { + "word": "symbolically", + "freq": 9.33e-07 + }, + { + "word": "thoughtfully", + "freq": 9.33e-07 + }, + { + "word": "coincidences", + "freq": 9.12e-07 + }, + { + "word": "communicator", + "freq": 9.12e-07 + }, + { + "word": "deportations", + "freq": 9.12e-07 + }, + { + "word": "disregarding", + "freq": 9.12e-07 + }, + { + "word": "necessitated", + "freq": 9.12e-07 + }, + { + "word": "practicality", + "freq": 9.12e-07 + }, + { + "word": "spectrometry", + "freq": 9.12e-07 + }, + { + "word": "turkmenistan", + "freq": 9.12e-07 + }, + { + "word": "westinghouse", + "freq": 9.12e-07 + }, + { + "word": "antioxidants", + "freq": 8.91e-07 + }, + { + "word": "coincidental", + "freq": 8.91e-07 + }, + { + "word": "constituting", + "freq": 8.91e-07 + }, + { + "word": "disingenuous", + "freq": 8.91e-07 + }, + { + "word": "enterprising", + "freq": 8.91e-07 + }, + { + "word": "extravaganza", + "freq": 8.91e-07 + }, + { + "word": "invisibility", + "freq": 8.91e-07 + }, + { + "word": "multipurpose", + "freq": 8.91e-07 + }, + { + "word": "transcendent", + "freq": 8.91e-07 + }, + { + "word": "complicating", + "freq": 8.71e-07 + }, + { + "word": "customizable", + "freq": 8.71e-07 + }, + { + "word": "hopelessness", + "freq": 8.71e-07 + }, + { + "word": "hysterically", + "freq": 8.71e-07 + }, + { + "word": "melodramatic", + "freq": 8.71e-07 + }, + { + "word": "premeditated", + "freq": 8.71e-07 + }, + { + "word": "sociologists", + "freq": 8.71e-07 + }, + { + "word": "stereotyping", + "freq": 8.71e-07 + }, + { + "word": "unofficially", + "freq": 8.71e-07 + }, + { + "word": "aerodynamics", + "freq": 8.51e-07 + }, + { + "word": "brainwashing", + "freq": 8.51e-07 + }, + { + "word": "chiropractic", + "freq": 8.51e-07 + }, + { + "word": "controllable", + "freq": 8.51e-07 + }, + { + "word": "disrespected", + "freq": 8.51e-07 + }, + { + "word": "friendliness", + "freq": 8.51e-07 + }, + { + "word": "guardianship", + "freq": 8.51e-07 + }, + { + "word": "multitasking", + "freq": 8.51e-07 + }, + { + "word": "naturalistic", + "freq": 8.51e-07 + }, + { + "word": "sledgehammer", + "freq": 8.51e-07 + }, + { + "word": "subcontinent", + "freq": 8.51e-07 + }, + { + "word": "artistically", + "freq": 8.32e-07 + }, + { + "word": "battlefields", + "freq": 8.32e-07 + }, + { + "word": "compilations", + "freq": 8.32e-07 + }, + { + "word": "conceptually", + "freq": 8.32e-07 + }, + { + "word": "corroborated", + "freq": 8.32e-07 + }, + { + "word": "extinguisher", + "freq": 8.32e-07 + }, + { + "word": "facilitation", + "freq": 8.32e-07 + }, + { + "word": "firefighting", + "freq": 8.32e-07 + }, + { + "word": "governorship", + "freq": 8.32e-07 + }, + { + "word": "incontinence", + "freq": 8.32e-07 + }, + { + "word": "orientations", + "freq": 8.32e-07 + }, + { + "word": "permeability", + "freq": 8.32e-07 + }, + { + "word": "rechargeable", + "freq": 8.32e-07 + }, + { + "word": "sporadically", + "freq": 8.32e-07 + }, + { + "word": "superimposed", + "freq": 8.32e-07 + }, + { + "word": "trajectories", + "freq": 8.32e-07 + }, + { + "word": "transylvania", + "freq": 8.32e-07 + }, + { + "word": "unreasonably", + "freq": 8.32e-07 + }, + { + "word": "unsupervised", + "freq": 8.32e-07 + }, + { + "word": "approachable", + "freq": 8.13e-07 + }, + { + "word": "commemorated", + "freq": 8.13e-07 + }, + { + "word": "cryptography", + "freq": 8.13e-07 + }, + { + "word": "delightfully", + "freq": 8.13e-07 + }, + { + "word": "determinants", + "freq": 8.13e-07 + }, + { + "word": "dispensaries", + "freq": 8.13e-07 + }, + { + "word": "encapsulated", + "freq": 8.13e-07 + }, + { + "word": "eyewitnesses", + "freq": 8.13e-07 + }, + { + "word": "helplessness", + "freq": 8.13e-07 + }, + { + "word": "impartiality", + "freq": 8.13e-07 + }, + { + "word": "outstretched", + "freq": 8.13e-07 + }, + { + "word": "prohibitions", + "freq": 8.13e-07 + }, + { + "word": "relativistic", + "freq": 8.13e-07 + }, + { + "word": "standardised", + "freq": 8.13e-07 + }, + { + "word": "thoroughfare", + "freq": 8.13e-07 + }, + { + "word": "unfathomable", + "freq": 8.13e-07 + }, + { + "word": "unprofitable", + "freq": 8.13e-07 + }, + { + "word": "capitulation", + "freq": 7.94e-07 + }, + { + "word": "cardiologist", + "freq": 7.94e-07 + }, + { + "word": "declassified", + "freq": 7.94e-07 + }, + { + "word": "demonstrator", + "freq": 7.94e-07 + }, + { + "word": "materialized", + "freq": 7.94e-07 + }, + { + "word": "menstruation", + "freq": 7.94e-07 + }, + { + "word": "nutritionist", + "freq": 7.94e-07 + }, + { + "word": "oscillations", + "freq": 7.94e-07 + }, + { + "word": "protectorate", + "freq": 7.94e-07 + }, + { + "word": "psychopathic", + "freq": 7.94e-07 + }, + { + "word": "quarterfinal", + "freq": 7.94e-07 + }, + { + "word": "reconsidered", + "freq": 7.94e-07 + }, + { + "word": "stratosphere", + "freq": 7.94e-07 + }, + { + "word": "testimonials", + "freq": 7.94e-07 + }, + { + "word": "asymptomatic", + "freq": 7.76e-07 + }, + { + "word": "compensatory", + "freq": 7.76e-07 + }, + { + "word": "epistemology", + "freq": 7.76e-07 + }, + { + "word": "fraudulently", + "freq": 7.76e-07 + }, + { + "word": "inefficiency", + "freq": 7.76e-07 + }, + { + "word": "inflationary", + "freq": 7.76e-07 + }, + { + "word": "intersecting", + "freq": 7.76e-07 + }, + { + "word": "machinations", + "freq": 7.76e-07 + }, + { + "word": "reassignment", + "freq": 7.76e-07 + }, + { + "word": "spectrometer", + "freq": 7.76e-07 + }, + { + "word": "sympathizers", + "freq": 7.76e-07 + }, + { + "word": "timberwolves", + "freq": 7.76e-07 + }, + { + "word": "undertakings", + "freq": 7.76e-07 + }, + { + "word": "undetermined", + "freq": 7.76e-07 + }, + { + "word": "westmoreland", + "freq": 7.76e-07 + }, + { + "word": "afterthought", + "freq": 7.59e-07 + }, + { + "word": "asynchronous", + "freq": 7.59e-07 + }, + { + "word": "consecration", + "freq": 7.59e-07 + }, + { + "word": "disintegrate", + "freq": 7.59e-07 + }, + { + "word": "entanglement", + "freq": 7.59e-07 + }, + { + "word": "milliseconds", + "freq": 7.59e-07 + }, + { + "word": "neanderthals", + "freq": 7.59e-07 + }, + { + "word": "prioritizing", + "freq": 7.59e-07 + }, + { + "word": "psychosocial", + "freq": 7.59e-07 + }, + { + "word": "radiological", + "freq": 7.59e-07 + }, + { + "word": "reintroduced", + "freq": 7.59e-07 + }, + { + "word": "subordinated", + "freq": 7.59e-07 + }, + { + "word": "unattainable", + "freq": 7.59e-07 + }, + { + "word": "underpinning", + "freq": 7.59e-07 + }, + { + "word": "attenborough", + "freq": 7.41e-07 + }, + { + "word": "bedfordshire", + "freq": 7.41e-07 + }, + { + "word": "commemorates", + "freq": 7.41e-07 + }, + { + "word": "constructors", + "freq": 7.41e-07 + }, + { + "word": "electrifying", + "freq": 7.41e-07 + }, + { + "word": "infiltrating", + "freq": 7.41e-07 + }, + { + "word": "intensifying", + "freq": 7.41e-07 + }, + { + "word": "marketplaces", + "freq": 7.41e-07 + }, + { + "word": "masquerading", + "freq": 7.41e-07 + }, + { + "word": "meaningfully", + "freq": 7.41e-07 + }, + { + "word": "oceanography", + "freq": 7.41e-07 + }, + { + "word": "partisanship", + "freq": 7.41e-07 + }, + { + "word": "phylogenetic", + "freq": 7.41e-07 + }, + { + "word": "pigmentation", + "freq": 7.41e-07 + }, + { + "word": "posthumously", + "freq": 7.41e-07 + }, + { + "word": "programmatic", + "freq": 7.41e-07 + }, + { + "word": "racketeering", + "freq": 7.41e-07 + }, + { + "word": "sequentially", + "freq": 7.41e-07 + }, + { + "word": "sponsorships", + "freq": 7.41e-07 + }, + { + "word": "statistician", + "freq": 7.41e-07 + }, + { + "word": "turbocharged", + "freq": 7.41e-07 + }, + { + "word": "unchallenged", + "freq": 7.41e-07 + }, + { + "word": "adaptability", + "freq": 7.24e-07 + }, + { + "word": "astonishment", + "freq": 7.24e-07 + }, + { + "word": "bloodthirsty", + "freq": 7.24e-07 + }, + { + "word": "encroachment", + "freq": 7.24e-07 + }, + { + "word": "internalized", + "freq": 7.24e-07 + }, + { + "word": "lighthearted", + "freq": 7.24e-07 + }, + { + "word": "loughborough", + "freq": 7.24e-07 + }, + { + "word": "multivariate", + "freq": 7.24e-07 + }, + { + "word": "preconceived", + "freq": 7.24e-07 + }, + { + "word": "presumptuous", + "freq": 7.24e-07 + }, + { + "word": "spreadsheets", + "freq": 7.24e-07 + }, + { + "word": "streamlining", + "freq": 7.24e-07 + }, + { + "word": "welterweight", + "freq": 7.24e-07 + }, + { + "word": "accomplishes", + "freq": 7.08e-07 + }, + { + "word": "articulating", + "freq": 7.08e-07 + }, + { + "word": "chiropractor", + "freq": 7.08e-07 + }, + { + "word": "conformation", + "freq": 7.08e-07 + }, + { + "word": "conveniences", + "freq": 7.08e-07 + }, + { + "word": "dispensation", + "freq": 7.08e-07 + }, + { + "word": "exploitative", + "freq": 7.08e-07 + }, + { + "word": "immeasurable", + "freq": 7.08e-07 + }, + { + "word": "indisputable", + "freq": 7.08e-07 + }, + { + "word": "overthinking", + "freq": 7.08e-07 + }, + { + "word": "undemocratic", + "freq": 7.08e-07 + }, + { + "word": "unrecognized", + "freq": 7.08e-07 + }, + { + "word": "amphitheatre", + "freq": 6.92e-07 + }, + { + "word": "biosynthesis", + "freq": 6.92e-07 + }, + { + "word": "dissociation", + "freq": 6.92e-07 + }, + { + "word": "eccentricity", + "freq": 6.92e-07 + }, + { + "word": "electricians", + "freq": 6.92e-07 + }, + { + "word": "electrocuted", + "freq": 6.92e-07 + }, + { + "word": "fraternities", + "freq": 6.92e-07 + }, + { + "word": "islamophobia", + "freq": 6.92e-07 + }, + { + "word": "kaleidoscope", + "freq": 6.92e-07 + }, + { + "word": "neurosurgery", + "freq": 6.92e-07 + }, + { + "word": "otherworldly", + "freq": 6.92e-07 + }, + { + "word": "repositories", + "freq": 6.92e-07 + }, + { + "word": "subjectivity", + "freq": 6.92e-07 + }, + { + "word": "underwriters", + "freq": 6.92e-07 + }, + { + "word": "carelessness", + "freq": 6.76e-07 + }, + { + "word": "commensurate", + "freq": 6.76e-07 + }, + { + "word": "incarnations", + "freq": 6.76e-07 + }, + { + "word": "indefensible", + "freq": 6.76e-07 + }, + { + "word": "inextricably", + "freq": 6.76e-07 + }, + { + "word": "insecticides", + "freq": 6.76e-07 + }, + { + "word": "overestimate", + "freq": 6.76e-07 + }, + { + "word": "peacekeepers", + "freq": 6.76e-07 + }, + { + "word": "psychoactive", + "freq": 6.76e-07 + }, + { + "word": "stubbornness", + "freq": 6.76e-07 + }, + { + "word": "subcutaneous", + "freq": 6.76e-07 + }, + { + "word": "substantiate", + "freq": 6.76e-07 + }, + { + "word": "technicality", + "freq": 6.76e-07 + }, + { + "word": "thunderbirds", + "freq": 6.76e-07 + }, + { + "word": "tribulations", + "freq": 6.76e-07 + }, + { + "word": "undetectable", + "freq": 6.76e-07 + }, + { + "word": "unremarkable", + "freq": 6.76e-07 + }, + { + "word": "grandfathers", + "freq": 6.61e-07 + }, + { + "word": "accommodates", + "freq": 6.61e-07 + }, + { + "word": "amphetamines", + "freq": 6.61e-07 + }, + { + "word": "fibrillation", + "freq": 6.61e-07 + }, + { + "word": "multimillion", + "freq": 6.61e-07 + }, + { + "word": "reincarnated", + "freq": 6.61e-07 + }, + { + "word": "resignations", + "freq": 6.61e-07 + }, + { + "word": "supercharged", + "freq": 6.61e-07 + }, + { + "word": "workstations", + "freq": 6.61e-07 + }, + { + "word": "australasian", + "freq": 6.46e-07 + }, + { + "word": "disinfectant", + "freq": 6.46e-07 + }, + { + "word": "exterminated", + "freq": 6.46e-07 + }, + { + "word": "extravagance", + "freq": 6.46e-07 + }, + { + "word": "imperfection", + "freq": 6.46e-07 + }, + { + "word": "paratroopers", + "freq": 6.46e-07 + }, + { + "word": "partitioning", + "freq": 6.46e-07 + }, + { + "word": "pathogenesis", + "freq": 6.46e-07 + }, + { + "word": "redesignated", + "freq": 6.46e-07 + }, + { + "word": "transporters", + "freq": 6.46e-07 + }, + { + "word": "amphitheater", + "freq": 6.31e-07 + }, + { + "word": "bicentennial", + "freq": 6.31e-07 + }, + { + "word": "blackberries", + "freq": 6.31e-07 + }, + { + "word": "capitalizing", + "freq": 6.31e-07 + }, + { + "word": "communicable", + "freq": 6.31e-07 + }, + { + "word": "computations", + "freq": 6.31e-07 + }, + { + "word": "cosmological", + "freq": 6.31e-07 + }, + { + "word": "ecologically", + "freq": 6.31e-07 + }, + { + "word": "foreclosures", + "freq": 6.31e-07 + }, + { + "word": "intercepting", + "freq": 6.31e-07 + }, + { + "word": "malnourished", + "freq": 6.31e-07 + }, + { + "word": "miscarriages", + "freq": 6.31e-07 + }, + { + "word": "multifaceted", + "freq": 6.31e-07 + }, + { + "word": "multiplicity", + "freq": 6.31e-07 + }, + { + "word": "neurosurgeon", + "freq": 6.31e-07 + }, + { + "word": "outrageously", + "freq": 6.31e-07 + }, + { + "word": "paraphrasing", + "freq": 6.31e-07 + }, + { + "word": "restlessness", + "freq": 6.31e-07 + }, + { + "word": "togetherness", + "freq": 6.31e-07 + }, + { + "word": "carcinogenic", + "freq": 6.17e-07 + }, + { + "word": "conditioners", + "freq": 6.17e-07 + }, + { + "word": "desalination", + "freq": 6.17e-07 + }, + { + "word": "illustrators", + "freq": 6.17e-07 + }, + { + "word": "insufferable", + "freq": 6.17e-07 + }, + { + "word": "loudspeakers", + "freq": 6.17e-07 + }, + { + "word": "magnificence", + "freq": 6.17e-07 + }, + { + "word": "malfunctions", + "freq": 6.17e-07 + }, + { + "word": "neoclassical", + "freq": 6.17e-07 + }, + { + "word": "paleontology", + "freq": 6.17e-07 + }, + { + "word": "permutations", + "freq": 6.17e-07 + }, + { + "word": "preservative", + "freq": 6.17e-07 + }, + { + "word": "rejuvenation", + "freq": 6.17e-07 + }, + { + "word": "technologist", + "freq": 6.17e-07 + }, + { + "word": "transfusions", + "freq": 6.17e-07 + }, + { + "word": "unapologetic", + "freq": 6.17e-07 + }, + { + "word": "unclassified", + "freq": 6.17e-07 + }, + { + "word": "unfavourable", + "freq": 6.17e-07 + }, + { + "word": "affirmations", + "freq": 6.03e-07 + }, + { + "word": "bullshitting", + "freq": 6.03e-07 + }, + { + "word": "demonstrably", + "freq": 6.03e-07 + }, + { + "word": "encephalitis", + "freq": 6.03e-07 + }, + { + "word": "grasshoppers", + "freq": 6.03e-07 + }, + { + "word": "gynecologist", + "freq": 6.03e-07 + }, + { + "word": "inspectorate", + "freq": 6.03e-07 + }, + { + "word": "interstitial", + "freq": 6.03e-07 + }, + { + "word": "mountaineers", + "freq": 6.03e-07 + }, + { + "word": "obstructions", + "freq": 6.03e-07 + }, + { + "word": "outperformed", + "freq": 6.03e-07 + }, + { + "word": "principality", + "freq": 6.03e-07 + }, + { + "word": "recklessness", + "freq": 6.03e-07 + }, + { + "word": "regenerating", + "freq": 6.03e-07 + }, + { + "word": "restorations", + "freq": 6.03e-07 + }, + { + "word": "stepdaughter", + "freq": 6.03e-07 + }, + { + "word": "accelerators", + "freq": 5.89e-07 + }, + { + "word": "agribusiness", + "freq": 5.89e-07 + }, + { + "word": "astrological", + "freq": 5.89e-07 + }, + { + "word": "bankruptcies", + "freq": 5.89e-07 + }, + { + "word": "catastrophes", + "freq": 5.89e-07 + }, + { + "word": "inadmissible", + "freq": 5.89e-07 + }, + { + "word": "insemination", + "freq": 5.89e-07 + }, + { + "word": "intelligible", + "freq": 5.89e-07 + }, + { + "word": "methodically", + "freq": 5.89e-07 + }, + { + "word": "overreaction", + "freq": 5.89e-07 + }, + { + "word": "pathologists", + "freq": 5.89e-07 + }, + { + "word": "prescriptive", + "freq": 5.89e-07 + }, + { + "word": "redistribute", + "freq": 5.89e-07 + }, + { + "word": "southernmost", + "freq": 5.89e-07 + }, + { + "word": "stipulations", + "freq": 5.89e-07 + }, + { + "word": "wittgenstein", + "freq": 5.89e-07 + } + ], + "14": [ + { + "word": "administration", + "freq": 8.51e-05 + }, + { + "word": "responsibility", + "freq": 5.62e-05 + }, + { + "word": "communications", + "freq": 3.89e-05 + }, + { + "word": "representative", + "freq": 3.72e-05 + }, + { + "word": "transportation", + "freq": 3.72e-05 + }, + { + "word": "infrastructure", + "freq": 2.88e-05 + }, + { + "word": "administrative", + "freq": 2.82e-05 + }, + { + "word": "representation", + "freq": 2.19e-05 + }, + { + "word": "constitutional", + "freq": 2.14e-05 + }, + { + "word": "discrimination", + "freq": 2.04e-05 + }, + { + "word": "implementation", + "freq": 2.04e-05 + }, + { + "word": "interpretation", + "freq": 1.66e-05 + }, + { + "word": "transformation", + "freq": 1.62e-05 + }, + { + "word": "classification", + "freq": 1.51e-05 + }, + { + "word": "identification", + "freq": 1.51e-05 + }, + { + "word": "simultaneously", + "freq": 1.48e-05 + }, + { + "word": "recommendation", + "freq": 1.23e-05 + }, + { + "word": "disappointment", + "freq": 1.02e-05 + }, + { + "word": "rehabilitation", + "freq": 9.77e-06 + }, + { + "word": "characteristic", + "freq": 9.33e-06 + }, + { + "word": "superintendent", + "freq": 9.33e-06 + }, + { + "word": "reconstruction", + "freq": 9.12e-06 + }, + { + "word": "specifications", + "freq": 8.91e-06 + }, + { + "word": "accountability", + "freq": 8.13e-06 + }, + { + "word": "pharmaceutical", + "freq": 7.94e-06 + }, + { + "word": "qualifications", + "freq": 7.59e-06 + }, + { + "word": "correspondence", + "freq": 7.08e-06 + }, + { + "word": "organizational", + "freq": 6.76e-06 + }, + { + "word": "demonstrations", + "freq": 6.03e-06 + }, + { + "word": "sustainability", + "freq": 5.89e-06 + }, + { + "word": "concentrations", + "freq": 5.75e-06 + }, + { + "word": "professionally", + "freq": 5.75e-06 + }, + { + "word": "advertisements", + "freq": 5.62e-06 + }, + { + "word": "considerations", + "freq": 5.5e-06 + }, + { + "word": "understandable", + "freq": 5.5e-06 + }, + { + "word": "reconciliation", + "freq": 5.25e-06 + }, + { + "word": "accomplishment", + "freq": 4.9e-06 + }, + { + "word": "archaeological", + "freq": 4.79e-06 + }, + { + "word": "cardiovascular", + "freq": 4.79e-06 + }, + { + "word": "municipalities", + "freq": 4.37e-06 + }, + { + "word": "aforementioned", + "freq": 3.47e-06 + }, + { + "word": "overwhelmingly", + "freq": 3.47e-06 + }, + { + "word": "systematically", + "freq": 3.31e-06 + }, + { + "word": "ecclesiastical", + "freq": 3.09e-06 + }, + { + "word": "accommodations", + "freq": 3.02e-06 + }, + { + "word": "reinforcements", + "freq": 3.02e-06 + }, + { + "word": "apprenticeship", + "freq": 2.95e-06 + }, + { + "word": "discriminatory", + "freq": 2.88e-06 + }, + { + "word": "groundbreaking", + "freq": 2.88e-06 + }, + { + "word": "configurations", + "freq": 2.82e-06 + }, + { + "word": "reconnaissance", + "freq": 2.82e-06 + }, + { + "word": "scientifically", + "freq": 2.82e-06 + }, + { + "word": "unconventional", + "freq": 2.63e-06 + }, + { + "word": "contemporaries", + "freq": 2.51e-06 + }, + { + "word": "meteorological", + "freq": 2.45e-06 + }, + { + "word": "underestimated", + "freq": 2.45e-06 + }, + { + "word": "constantinople", + "freq": 2.4e-06 + }, + { + "word": "czechoslovakia", + "freq": 2.4e-06 + }, + { + "word": "archaeologists", + "freq": 2.34e-06 + }, + { + "word": "appropriations", + "freq": 2.29e-06 + }, + { + "word": "understatement", + "freq": 2.29e-06 + }, + { + "word": "authentication", + "freq": 2.24e-06 + }, + { + "word": "distinguishing", + "freq": 2.24e-06 + }, + { + "word": "geographically", + "freq": 2.24e-06 + }, + { + "word": "intellectually", + "freq": 2.19e-06 + }, + { + "word": "reorganization", + "freq": 2.14e-06 + }, + { + "word": "collaborations", + "freq": 2.09e-06 + }, + { + "word": "constituencies", + "freq": 2.04e-06 + }, + { + "word": "irregularities", + "freq": 2.04e-06 + }, + { + "word": "cryptocurrency", + "freq": 2e-06 + }, + { + "word": "certifications", + "freq": 1.95e-06 + }, + { + "word": "differentiated", + "freq": 1.95e-06 + }, + { + "word": "specialization", + "freq": 1.95e-06 + }, + { + "word": "contradictions", + "freq": 1.91e-06 + }, + { + "word": "electronically", + "freq": 1.91e-06 + }, + { + "word": "hallucinations", + "freq": 1.91e-06 + }, + { + "word": "unsuccessfully", + "freq": 1.91e-06 + }, + { + "word": "misinformation", + "freq": 1.86e-06 + }, + { + "word": "northumberland", + "freq": 1.86e-06 + }, + { + "word": "redistribution", + "freq": 1.86e-06 + }, + { + "word": "sophistication", + "freq": 1.86e-06 + }, + { + "word": "multiplication", + "freq": 1.82e-06 + }, + { + "word": "understandably", + "freq": 1.82e-06 + }, + { + "word": "unprofessional", + "freq": 1.82e-06 + }, + { + "word": "attractiveness", + "freq": 1.78e-06 + }, + { + "word": "interconnected", + "freq": 1.78e-06 + }, + { + "word": "cinematography", + "freq": 1.74e-06 + }, + { + "word": "coincidentally", + "freq": 1.74e-06 + }, + { + "word": "manifestations", + "freq": 1.66e-06 + }, + { + "word": "generalization", + "freq": 1.62e-06 + }, + { + "word": "organisational", + "freq": 1.58e-06 + }, + { + "word": "unquestionably", + "freq": 1.55e-06 + }, + { + "word": "mathematically", + "freq": 1.51e-06 + }, + { + "word": "anthropologist", + "freq": 1.45e-06 + }, + { + "word": "fundamentalist", + "freq": 1.45e-06 + }, + { + "word": "misconceptions", + "freq": 1.45e-06 + }, + { + "word": "uncontrollable", + "freq": 1.45e-06 + }, + { + "word": "wholeheartedly", + "freq": 1.41e-06 + }, + { + "word": "circumstantial", + "freq": 1.38e-06 + }, + { + "word": "discriminating", + "freq": 1.38e-06 + }, + { + "word": "transformative", + "freq": 1.38e-06 + }, + { + "word": "undergraduates", + "freq": 1.38e-06 + }, + { + "word": "mathematicians", + "freq": 1.35e-06 + }, + { + "word": "microorganisms", + "freq": 1.35e-06 + }, + { + "word": "schwarzenegger", + "freq": 1.35e-06 + }, + { + "word": "capitalization", + "freq": 1.32e-06 + }, + { + "word": "democratically", + "freq": 1.32e-06 + }, + { + "word": "industrialized", + "freq": 1.32e-06 + }, + { + "word": "philanthropist", + "freq": 1.32e-06 + }, + { + "word": "acknowledgment", + "freq": 1.29e-06 + }, + { + "word": "affectionately", + "freq": 1.29e-06 + }, + { + "word": "conversational", + "freq": 1.29e-06 + }, + { + "word": "susceptibility", + "freq": 1.26e-06 + }, + { + "word": "thermodynamics", + "freq": 1.26e-06 + }, + { + "word": "cambridgeshire", + "freq": 1.23e-06 + }, + { + "word": "psychoanalysis", + "freq": 1.2e-06 + }, + { + "word": "uncompromising", + "freq": 1.2e-06 + }, + { + "word": "worcestershire", + "freq": 1.2e-06 + }, + { + "word": "conventionally", + "freq": 1.17e-06 + }, + { + "word": "fortifications", + "freq": 1.17e-06 + }, + { + "word": "congregational", + "freq": 1.15e-06 + }, + { + "word": "indestructible", + "freq": 1.15e-06 + }, + { + "word": "leicestershire", + "freq": 1.15e-06 + }, + { + "word": "individualized", + "freq": 1.12e-06 + }, + { + "word": "intermittently", + "freq": 1.12e-06 + }, + { + "word": "unsatisfactory", + "freq": 1.12e-06 + }, + { + "word": "responsiveness", + "freq": 1.1e-06 + }, + { + "word": "alphabetically", + "freq": 1.07e-06 + }, + { + "word": "gentrification", + "freq": 1.07e-06 + }, + { + "word": "insurmountable", + "freq": 1.07e-06 + }, + { + "word": "methodological", + "freq": 1.07e-06 + }, + { + "word": "misinterpreted", + "freq": 1.07e-06 + }, + { + "word": "photosynthesis", + "freq": 1.07e-06 + }, + { + "word": "questionnaires", + "freq": 1.07e-06 + }, + { + "word": "quintessential", + "freq": 1.07e-06 + }, + { + "word": "contraceptives", + "freq": 1.05e-06 + }, + { + "word": "disintegration", + "freq": 1.05e-06 + }, + { + "word": "nanotechnology", + "freq": 1.05e-06 + }, + { + "word": "experimentally", + "freq": 1.02e-06 + }, + { + "word": "superannuation", + "freq": 1.02e-06 + }, + { + "word": "unsurprisingly", + "freq": 1.02e-06 + }, + { + "word": "congratulating", + "freq": 1e-06 + }, + { + "word": "indiscriminate", + "freq": 1e-06 + }, + { + "word": "transcendental", + "freq": 1e-06 + }, + { + "word": "assassinations", + "freq": 9.77e-07 + }, + { + "word": "underdeveloped", + "freq": 9.77e-07 + }, + { + "word": "constellations", + "freq": 9.55e-07 + }, + { + "word": "simplification", + "freq": 9.55e-07 + }, + { + "word": "uncontrollably", + "freq": 9.55e-07 + }, + { + "word": "unincorporated", + "freq": 9.55e-07 + }, + { + "word": "confrontations", + "freq": 9.12e-07 + }, + { + "word": "disinformation", + "freq": 9.12e-07 + }, + { + "word": "intermediaries", + "freq": 9.12e-07 + }, + { + "word": "metaphorically", + "freq": 9.12e-07 + }, + { + "word": "misrepresented", + "freq": 9.12e-07 + }, + { + "word": "understandings", + "freq": 9.12e-07 + }, + { + "word": "chromatography", + "freq": 8.91e-07 + }, + { + "word": "malfunctioning", + "freq": 8.71e-07 + }, + { + "word": "proportionally", + "freq": 8.71e-07 + }, + { + "word": "slaughterhouse", + "freq": 8.71e-07 + }, + { + "word": "subconsciously", + "freq": 8.71e-07 + }, + { + "word": "antidepressant", + "freq": 8.51e-07 + }, + { + "word": "denominational", + "freq": 8.51e-07 + }, + { + "word": "hypothetically", + "freq": 8.51e-07 + }, + { + "word": "schoolchildren", + "freq": 8.51e-07 + }, + { + "word": "semiconductors", + "freq": 8.51e-07 + }, + { + "word": "fundamentalism", + "freq": 8.32e-07 + }, + { + "word": "microprocessor", + "freq": 8.32e-07 + }, + { + "word": "transgressions", + "freq": 8.32e-07 + }, + { + "word": "indoctrination", + "freq": 7.94e-07 + }, + { + "word": "subcontractors", + "freq": 7.94e-07 + }, + { + "word": "industrialists", + "freq": 7.76e-07 + }, + { + "word": "internationale", + "freq": 7.76e-07 + }, + { + "word": "justifications", + "freq": 7.76e-07 + }, + { + "word": "naturalization", + "freq": 7.76e-07 + }, + { + "word": "revitalization", + "freq": 7.76e-07 + }, + { + "word": "superstructure", + "freq": 7.76e-07 + }, + { + "word": "reorganisation", + "freq": 7.59e-07 + }, + { + "word": "whistleblowers", + "freq": 7.41e-07 + }, + { + "word": "aggressiveness", + "freq": 7.24e-07 + }, + { + "word": "characterizing", + "freq": 7.24e-07 + }, + { + "word": "deconstruction", + "freq": 7.24e-07 + }, + { + "word": "revolutionized", + "freq": 7.24e-07 + }, + { + "word": "claustrophobic", + "freq": 7.08e-07 + }, + { + "word": "impressionable", + "freq": 7.08e-07 + }, + { + "word": "polymerization", + "freq": 7.08e-07 + }, + { + "word": "predictability", + "freq": 7.08e-07 + }, + { + "word": "reconstructive", + "freq": 7.08e-07 + }, + { + "word": "fredericksburg", + "freq": 6.92e-07 + }, + { + "word": "liberalization", + "freq": 6.92e-07 + }, + { + "word": "mountaineering", + "freq": 6.92e-07 + }, + { + "word": "quantification", + "freq": 6.92e-07 + }, + { + "word": "counterfeiting", + "freq": 6.76e-07 + }, + { + "word": "satisfactorily", + "freq": 6.76e-07 + }, + { + "word": "bioinformatics", + "freq": 6.61e-07 + }, + { + "word": "categorization", + "freq": 6.61e-07 + }, + { + "word": "conservatively", + "freq": 6.61e-07 + }, + { + "word": "disappearances", + "freq": 6.61e-07 + }, + { + "word": "historiography", + "freq": 6.61e-07 + }, + { + "word": "interplanetary", + "freq": 6.61e-07 + }, + { + "word": "predisposition", + "freq": 6.61e-07 + }, + { + "word": "psychoanalytic", + "freq": 6.61e-07 + }, + { + "word": "respectability", + "freq": 6.61e-07 + }, + { + "word": "undersecretary", + "freq": 6.61e-07 + }, + { + "word": "unintelligible", + "freq": 6.61e-07 + }, + { + "word": "decommissioned", + "freq": 6.46e-07 + }, + { + "word": "differentiates", + "freq": 6.46e-07 + }, + { + "word": "excommunicated", + "freq": 6.46e-07 + }, + { + "word": "pronouncements", + "freq": 6.46e-07 + }, + { + "word": "sentimentality", + "freq": 6.46e-07 + }, + { + "word": "determinations", + "freq": 6.17e-07 + }, + { + "word": "interrogations", + "freq": 6.17e-07 + }, + { + "word": "reconstructing", + "freq": 6.17e-07 + }, + { + "word": "constructively", + "freq": 6.03e-07 + }, + { + "word": "virtualization", + "freq": 6.03e-07 + }, + { + "word": "embarrassingly", + "freq": 5.89e-07 + }, + { + "word": "jurisdictional", + "freq": 5.89e-07 + }, + { + "word": "insufficiently", + "freq": 5.75e-07 + }, + { + "word": "osteoarthritis", + "freq": 5.75e-07 + }, + { + "word": "stratification", + "freq": 5.75e-07 + }, + { + "word": "unconscionable", + "freq": 5.75e-07 + }, + { + "word": "unrecognizable", + "freq": 5.75e-07 + }, + { + "word": "multinationals", + "freq": 5.62e-07 + }, + { + "word": "traditionalist", + "freq": 5.62e-07 + }, + { + "word": "counterbalance", + "freq": 5.5e-07 + }, + { + "word": "gerrymandering", + "freq": 5.5e-07 + }, + { + "word": "congratulation", + "freq": 5.37e-07 + }, + { + "word": "congratulatory", + "freq": 5.37e-07 + }, + { + "word": "disintegrating", + "freq": 5.25e-07 + }, + { + "word": "approximations", + "freq": 5.13e-07 + }, + { + "word": "comprehensible", + "freq": 5.13e-07 + }, + { + "word": "inconveniences", + "freq": 5.13e-07 + }, + { + "word": "inefficiencies", + "freq": 5.13e-07 + }, + { + "word": "overpopulation", + "freq": 5.13e-07 + }, + { + "word": "preconceptions", + "freq": 5.13e-07 + }, + { + "word": "reintroduction", + "freq": 5.13e-07 + }, + { + "word": "technicalities", + "freq": 5.13e-07 + }, + { + "word": "confederations", + "freq": 5.01e-07 + }, + { + "word": "intelligentsia", + "freq": 5.01e-07 + }, + { + "word": "neuroscientist", + "freq": 5.01e-07 + }, + { + "word": "roethlisberger", + "freq": 5.01e-07 + }, + { + "word": "centralization", + "freq": 4.9e-07 + }, + { + "word": "disorientation", + "freq": 4.9e-07 + }, + { + "word": "linguistically", + "freq": 4.9e-07 + }, + { + "word": "hypothyroidism", + "freq": 4.79e-07 + }, + { + "word": "irreconcilable", + "freq": 4.79e-07 + }, + { + "word": "liberalisation", + "freq": 4.79e-07 + }, + { + "word": "macroeconomics", + "freq": 4.79e-07 + }, + { + "word": "internationals", + "freq": 4.68e-07 + }, + { + "word": "encephalopathy", + "freq": 4.68e-07 + }, + { + "word": "cardiomyopathy", + "freq": 4.57e-07 + }, + { + "word": "exceptionalism", + "freq": 4.57e-07 + }, + { + "word": "industrialised", + "freq": 4.57e-07 + }, + { + "word": "overprotective", + "freq": 4.57e-07 + }, + { + "word": "extraordinaire", + "freq": 4.47e-07 + }, + { + "word": "immunoglobulin", + "freq": 4.47e-07 + }, + { + "word": "preferentially", + "freq": 4.47e-07 + }, + { + "word": "staphylococcus", + "freq": 4.47e-07 + }, + { + "word": "commercialized", + "freq": 4.37e-07 + }, + { + "word": "conceptualized", + "freq": 4.37e-07 + }, + { + "word": "fingerprinting", + "freq": 4.37e-07 + }, + { + "word": "interdependent", + "freq": 4.37e-07 + }, + { + "word": "radicalization", + "freq": 4.37e-07 + }, + { + "word": "photosynthetic", + "freq": 4.27e-07 + }, + { + "word": "quantitatively", + "freq": 4.27e-07 + }, + { + "word": "singlehandedly", + "freq": 4.27e-07 + }, + { + "word": "astrophysicist", + "freq": 4.17e-07 + }, + { + "word": "libertarianism", + "freq": 4.17e-07 + }, + { + "word": "meteorologists", + "freq": 4.17e-07 + }, + { + "word": "schweinsteiger", + "freq": 4.17e-07 + }, + { + "word": "unquestionable", + "freq": 4.17e-07 + }, + { + "word": "antiretroviral", + "freq": 4.07e-07 + }, + { + "word": "businesspeople", + "freq": 4.07e-07 + }, + { + "word": "commemorations", + "freq": 4.07e-07 + }, + { + "word": "confidentially", + "freq": 4.07e-07 + }, + { + "word": "miscalculation", + "freq": 4.07e-07 + }, + { + "word": "norepinephrine", + "freq": 4.07e-07 + }, + { + "word": "rehabilitating", + "freq": 4.07e-07 + }, + { + "word": "bibliographies", + "freq": 3.98e-07 + }, + { + "word": "hallucinogenic", + "freq": 3.98e-07 + }, + { + "word": "inconvenienced", + "freq": 3.98e-07 + }, + { + "word": "nontraditional", + "freq": 3.98e-07 + }, + { + "word": "embellishments", + "freq": 3.89e-07 + }, + { + "word": "existentialism", + "freq": 3.89e-07 + }, + { + "word": "principalities", + "freq": 3.89e-07 + }, + { + "word": "reimbursements", + "freq": 3.89e-07 + }, + { + "word": "choreographers", + "freq": 3.8e-07 + }, + { + "word": "counterculture", + "freq": 3.8e-07 + }, + { + "word": "detoxification", + "freq": 3.8e-07 + }, + { + "word": "diplomatically", + "freq": 3.8e-07 + }, + { + "word": "prioritization", + "freq": 3.8e-07 + }, + { + "word": "specialisation", + "freq": 3.8e-07 + }, + { + "word": "transcriptions", + "freq": 3.8e-07 + }, + { + "word": "militarization", + "freq": 3.72e-07 + }, + { + "word": "claustrophobia", + "freq": 3.63e-07 + }, + { + "word": "conspiratorial", + "freq": 3.63e-07 + }, + { + "word": "hyperinflation", + "freq": 3.63e-07 + }, + { + "word": "idiosyncrasies", + "freq": 3.63e-07 + }, + { + "word": "initialization", + "freq": 3.63e-07 + }, + { + "word": "ridiculousness", + "freq": 3.63e-07 + }, + { + "word": "sanctification", + "freq": 3.63e-07 + }, + { + "word": "bioengineering", + "freq": 3.55e-07 + }, + { + "word": "clarifications", + "freq": 3.55e-07 + }, + { + "word": "thoughtfulness", + "freq": 3.55e-07 + }, + { + "word": "petrochemicals", + "freq": 3.47e-07 + }, + { + "word": "unavailability", + "freq": 3.47e-07 + }, + { + "word": "differentially", + "freq": 3.39e-07 + }, + { + "word": "discouragement", + "freq": 3.39e-07 + }, + { + "word": "interventional", + "freq": 3.39e-07 + }, + { + "word": "longitudinally", + "freq": 3.39e-07 + }, + { + "word": "multiplicative", + "freq": 3.39e-07 + }, + { + "word": "reasonableness", + "freq": 3.39e-07 + }, + { + "word": "underestimates", + "freq": 3.39e-07 + }, + { + "word": "beautification", + "freq": 3.31e-07 + }, + { + "word": "deconstructing", + "freq": 3.31e-07 + }, + { + "word": "egalitarianism", + "freq": 3.31e-07 + }, + { + "word": "paleontologist", + "freq": 3.31e-07 + }, + { + "word": "sensationalism", + "freq": 3.31e-07 + }, + { + "word": "unpleasantness", + "freq": 3.31e-07 + }, + { + "word": "anesthesiology", + "freq": 3.24e-07 + }, + { + "word": "intersectional", + "freq": 3.24e-07 + }, + { + "word": "predestination", + "freq": 3.24e-07 + }, + { + "word": "underperformed", + "freq": 3.24e-07 + }, + { + "word": "utilitarianism", + "freq": 3.24e-07 + }, + { + "word": "arrondissement", + "freq": 3.16e-07 + }, + { + "word": "interferometer", + "freq": 3.16e-07 + }, + { + "word": "postmenopausal", + "freq": 3.16e-07 + }, + { + "word": "pronunciations", + "freq": 3.16e-07 + }, + { + "word": "breathtakingly", + "freq": 3.09e-07 + }, + { + "word": "epidemiologist", + "freq": 3.09e-07 + }, + { + "word": "microstructure", + "freq": 3.09e-07 + }, + { + "word": "mineralization", + "freq": 3.09e-07 + }, + { + "word": "nebuchadnezzar", + "freq": 3.09e-07 + }, + { + "word": "antihistamines", + "freq": 3.02e-07 + }, + { + "word": "authorizations", + "freq": 3.02e-07 + }, + { + "word": "conformational", + "freq": 3.02e-07 + }, + { + "word": "eccentricities", + "freq": 3.02e-07 + }, + { + "word": "phosphorylated", + "freq": 3.02e-07 + }, + { + "word": "sociopolitical", + "freq": 3.02e-07 + }, + { + "word": "supercomputers", + "freq": 3.02e-07 + }, + { + "word": "adenocarcinoma", + "freq": 2.95e-07 + }, + { + "word": "capitalisation", + "freq": 2.95e-07 + }, + { + "word": "generalisation", + "freq": 2.95e-07 + }, + { + "word": "insignificance", + "freq": 2.95e-07 + }, + { + "word": "thermoelectric", + "freq": 2.95e-07 + }, + { + "word": "constructivist", + "freq": 2.88e-07 + }, + { + "word": "dermatologists", + "freq": 2.88e-07 + }, + { + "word": "disenchantment", + "freq": 2.88e-07 + }, + { + "word": "evangelization", + "freq": 2.88e-07 + }, + { + "word": "excruciatingly", + "freq": 2.88e-07 + }, + { + "word": "hypersensitive", + "freq": 2.88e-07 + }, + { + "word": "paramilitaries", + "freq": 2.88e-07 + }, + { + "word": "sensationalist", + "freq": 2.88e-07 + }, + { + "word": "telepathically", + "freq": 2.88e-07 + }, + { + "word": "optimistically", + "freq": 2.75e-07 + }, + { + "word": "benzodiazepine", + "freq": 2.69e-07 + }, + { + "word": "decolonization", + "freq": 2.69e-07 + }, + { + "word": "weightlessness", + "freq": 2.69e-07 + }, + { + "word": "entertainments", + "freq": 2.63e-07 + }, + { + "word": "antipsychotics", + "freq": 2.63e-07 + }, + { + "word": "corticosteroid", + "freq": 2.63e-07 + }, + { + "word": "impressionists", + "freq": 2.63e-07 + }, + { + "word": "inconsistently", + "freq": 2.63e-07 + }, + { + "word": "interpretative", + "freq": 2.63e-07 + }, + { + "word": "preoccupations", + "freq": 2.63e-07 + }, + { + "word": "dimensionality", + "freq": 2.57e-07 + }, + { + "word": "overexpression", + "freq": 2.57e-07 + }, + { + "word": "scientologists", + "freq": 2.57e-07 + }, + { + "word": "visualizations", + "freq": 2.57e-07 + }, + { + "word": "microbiologist", + "freq": 2.51e-07 + }, + { + "word": "rehabilitative", + "freq": 2.51e-07 + }, + { + "word": "superconductor", + "freq": 2.51e-07 + }, + { + "word": "unidirectional", + "freq": 2.51e-07 + }, + { + "word": "countermeasure", + "freq": 2.45e-07 + }, + { + "word": "disciplinarian", + "freq": 2.45e-07 + }, + { + "word": "evolutionarily", + "freq": 2.45e-07 + }, + { + "word": "politicization", + "freq": 2.45e-07 + }, + { + "word": "practicalities", + "freq": 2.45e-07 + }, + { + "word": "proprietorship", + "freq": 2.45e-07 + }, + { + "word": "redistributing", + "freq": 2.45e-07 + }, + { + "word": "revolutionised", + "freq": 2.45e-07 + }, + { + "word": "conjunctivitis", + "freq": 2.4e-07 + }, + { + "word": "existentialist", + "freq": 2.4e-07 + }, + { + "word": "micronutrients", + "freq": 2.4e-07 + }, + { + "word": "neutralization", + "freq": 2.4e-07 + }, + { + "word": "overproduction", + "freq": 2.4e-07 + }, + { + "word": "whistleblowing", + "freq": 2.4e-07 + }, + { + "word": "conservatories", + "freq": 2.34e-07 + }, + { + "word": "interferometry", + "freq": 2.34e-07 + }, + { + "word": "reconstitution", + "freq": 2.34e-07 + }, + { + "word": "scaremongering", + "freq": 2.34e-07 + }, + { + "word": "secularization", + "freq": 2.34e-07 + }, + { + "word": "unidentifiable", + "freq": 2.34e-07 + }, + { + "word": "centralisation", + "freq": 2.29e-07 + }, + { + "word": "geoengineering", + "freq": 2.29e-07 + }, + { + "word": "retransmission", + "freq": 2.29e-07 + }, + { + "word": "constructivism", + "freq": 2.24e-07 + }, + { + "word": "decriminalized", + "freq": 2.24e-07 + }, + { + "word": "electioneering", + "freq": 2.24e-07 + }, + { + "word": "evangelicalism", + "freq": 2.24e-07 + }, + { + "word": "improvisations", + "freq": 2.24e-07 + }, + { + "word": "overconfidence", + "freq": 2.24e-07 + }, + { + "word": "rearrangements", + "freq": 2.24e-07 + }, + { + "word": "unacknowledged", + "freq": 2.24e-07 + }, + { + "word": "bipartisanship", + "freq": 2.19e-07 + }, + { + "word": "differentiable", + "freq": 2.19e-07 + }, + { + "word": "dunbartonshire", + "freq": 2.19e-07 + }, + { + "word": "electroplating", + "freq": 2.19e-07 + }, + { + "word": "nanostructures", + "freq": 2.19e-07 + }, + { + "word": "neuroendocrine", + "freq": 2.19e-07 + }, + { + "word": "oversimplified", + "freq": 2.19e-07 + }, + { + "word": "radicalisation", + "freq": 2.19e-07 + }, + { + "word": "teleconference", + "freq": 2.19e-07 + }, + { + "word": "unapproachable", + "freq": 2.19e-07 + }, + { + "word": "accompaniments", + "freq": 2.14e-07 + }, + { + "word": "chrysanthemums", + "freq": 2.14e-07 + }, + { + "word": "glucocorticoid", + "freq": 2.14e-07 + }, + { + "word": "securitization", + "freq": 2.14e-07 + }, + { + "word": "counterfactual", + "freq": 2.09e-07 + }, + { + "word": "dehumanization", + "freq": 2.09e-07 + }, + { + "word": "incompleteness", + "freq": 2.09e-07 + }, + { + "word": "reconditioning", + "freq": 2.09e-07 + }, + { + "word": "traditionalism", + "freq": 2.09e-07 + }, + { + "word": "demobilization", + "freq": 2.04e-07 + }, + { + "word": "expressiveness", + "freq": 2.04e-07 + }, + { + "word": "macromolecular", + "freq": 2.04e-07 + }, + { + "word": "organometallic", + "freq": 2.04e-07 + }, + { + "word": "papillomavirus", + "freq": 2.04e-07 + }, + { + "word": "pathologically", + "freq": 2.04e-07 + }, + { + "word": "counterfeiters", + "freq": 2e-07 + }, + { + "word": "internazionale", + "freq": 2e-07 + }, + { + "word": "otolaryngology", + "freq": 2e-07 + }, + { + "word": "photosensitive", + "freq": 2e-07 + }, + { + "word": "distributional", + "freq": 1.95e-07 + }, + { + "word": "impersonations", + "freq": 1.95e-07 + }, + { + "word": "macromolecules", + "freq": 1.95e-07 + }, + { + "word": "overestimating", + "freq": 1.95e-07 + }, + { + "word": "pressurization", + "freq": 1.95e-07 + }, + { + "word": "radiofrequency", + "freq": 1.95e-07 + }, + { + "word": "recriminations", + "freq": 1.95e-07 + }, + { + "word": "reestablishing", + "freq": 1.95e-07 + }, + { + "word": "schoolteachers", + "freq": 1.95e-07 + }, + { + "word": "undernourished", + "freq": 1.95e-07 + }, + { + "word": "accelerometers", + "freq": 1.91e-07 + }, + { + "word": "conglomeration", + "freq": 1.91e-07 + }, + { + "word": "disenfranchise", + "freq": 1.91e-07 + }, + { + "word": "expressionless", + "freq": 1.91e-07 + }, + { + "word": "hepatocellular", + "freq": 1.91e-07 + }, + { + "word": "horticulturist", + "freq": 1.91e-07 + }, + { + "word": "hypoallergenic", + "freq": 1.91e-07 + }, + { + "word": "immobilization", + "freq": 1.91e-07 + }, + { + "word": "schizophrenics", + "freq": 1.91e-07 + }, + { + "word": "asymptotically", + "freq": 1.86e-07 + }, + { + "word": "eschatological", + "freq": 1.86e-07 + }, + { + "word": "intentionality", + "freq": 1.86e-07 + }, + { + "word": "microeconomics", + "freq": 1.86e-07 + }, + { + "word": "polysaccharide", + "freq": 1.86e-07 + }, + { + "word": "stigmatization", + "freq": 1.86e-07 + }, + { + "word": "categorisation", + "freq": 1.82e-07 + }, + { + "word": "circumnavigate", + "freq": 1.82e-07 + }, + { + "word": "disambiguation", + "freq": 1.82e-07 + }, + { + "word": "incapacitating", + "freq": 1.82e-07 + }, + { + "word": "regularization", + "freq": 1.82e-07 + }, + { + "word": "wollstonecraft", + "freq": 1.82e-07 + }, + { + "word": "zoroastrianism", + "freq": 1.82e-07 + }, + { + "word": "cardiothoracic", + "freq": 1.78e-07 + }, + { + "word": "counterattacks", + "freq": 1.78e-07 + }, + { + "word": "ornithological", + "freq": 1.78e-07 + }, + { + "word": "servicemembers", + "freq": 1.78e-07 + }, + { + "word": "unenthusiastic", + "freq": 1.78e-07 + }, + { + "word": "astronomically", + "freq": 1.74e-07 + }, + { + "word": "customizations", + "freq": 1.74e-07 + }, + { + "word": "impoverishment", + "freq": 1.74e-07 + }, + { + "word": "indecipherable", + "freq": 1.74e-07 + }, + { + "word": "intermolecular", + "freq": 1.74e-07 + }, + { + "word": "reverberations", + "freq": 1.74e-07 + }, + { + "word": "mephistopheles", + "freq": 1.7e-07 + }, + { + "word": "popularization", + "freq": 1.7e-07 + }, + { + "word": "psychoanalysts", + "freq": 1.7e-07 + }, + { + "word": "theresienstadt", + "freq": 1.7e-07 + }, + { + "word": "anticoagulants", + "freq": 1.66e-07 + }, + { + "word": "carcinogenesis", + "freq": 1.66e-07 + }, + { + "word": "centrifugation", + "freq": 1.66e-07 + }, + { + "word": "homogenization", + "freq": 1.66e-07 + }, + { + "word": "obstructionist", + "freq": 1.66e-07 + }, + { + "word": "phosphorescent", + "freq": 1.66e-07 + }, + { + "word": "recapitulation", + "freq": 1.66e-07 + }, + { + "word": "recreationally", + "freq": 1.66e-07 + }, + { + "word": "stephanopoulos", + "freq": 1.66e-07 + }, + { + "word": "subpopulations", + "freq": 1.66e-07 + }, + { + "word": "depolarization", + "freq": 1.62e-07 + }, + { + "word": "dnipropetrovsk", + "freq": 1.62e-07 + }, + { + "word": "gynaecological", + "freq": 1.62e-07 + }, + { + "word": "misunderstands", + "freq": 1.62e-07 + }, + { + "word": "supercomputing", + "freq": 1.62e-07 + }, + { + "word": "authenticating", + "freq": 1.58e-07 + }, + { + "word": "collateralized", + "freq": 1.58e-07 + }, + { + "word": "countervailing", + "freq": 1.58e-07 + }, + { + "word": "spironolactone", + "freq": 1.58e-07 + }, + { + "word": "advantageously", + "freq": 1.55e-07 + }, + { + "word": "asymmetrically", + "freq": 1.55e-07 + }, + { + "word": "hendersonville", + "freq": 1.55e-07 + }, + { + "word": "hydrocortisone", + "freq": 1.55e-07 + }, + { + "word": "inflorescences", + "freq": 1.55e-07 + }, + { + "word": "intraoperative", + "freq": 1.55e-07 + }, + { + "word": "overcompensate", + "freq": 1.55e-07 + }, + { + "word": "participations", + "freq": 1.55e-07 + }, + { + "word": "photogrammetry", + "freq": 1.55e-07 + }, + { + "word": "underachieving", + "freq": 1.55e-07 + }, + { + "word": "apologetically", + "freq": 1.51e-07 + }, + { + "word": "counterexample", + "freq": 1.51e-07 + }, + { + "word": "embarrassments", + "freq": 1.51e-07 + }, + { + "word": "indecisiveness", + "freq": 1.51e-07 + }, + { + "word": "misperceptions", + "freq": 1.51e-07 + }, + { + "word": "ornithologists", + "freq": 1.51e-07 + }, + { + "word": "segregationist", + "freq": 1.51e-07 + }, + { + "word": "solidification", + "freq": 1.51e-07 + }, + { + "word": "verisimilitude", + "freq": 1.51e-07 + }, + { + "word": "choreographing", + "freq": 1.48e-07 + }, + { + "word": "defibrillators", + "freq": 1.48e-07 + }, + { + "word": "differentiator", + "freq": 1.48e-07 + }, + { + "word": "enforceability", + "freq": 1.48e-07 + }, + { + "word": "hierarchically", + "freq": 1.48e-07 + }, + { + "word": "incapacitation", + "freq": 1.48e-07 + }, + { + "word": "incompressible", + "freq": 1.48e-07 + }, + { + "word": "jeffersonville", + "freq": 1.48e-07 + }, + { + "word": "pasteurization", + "freq": 1.48e-07 + }, + { + "word": "photoreceptors", + "freq": 1.48e-07 + }, + { + "word": "professorships", + "freq": 1.48e-07 + }, + { + "word": "refurbishments", + "freq": 1.48e-07 + }, + { + "word": "subcontracting", + "freq": 1.48e-07 + }, + { + "word": "unrecognisable", + "freq": 1.48e-07 + }, + { + "word": "untersuchungen", + "freq": 1.48e-07 + }, + { + "word": "aggrandizement", + "freq": 1.45e-07 + }, + { + "word": "authoritarians", + "freq": 1.45e-07 + }, + { + "word": "dermatological", + "freq": 1.45e-07 + }, + { + "word": "eutrophication", + "freq": 1.45e-07 + }, + { + "word": "hermaphrodites", + "freq": 1.45e-07 + }, + { + "word": "nitrocellulose", + "freq": 1.45e-07 + }, + { + "word": "parapsychology", + "freq": 1.45e-07 + }, + { + "word": "photorealistic", + "freq": 1.45e-07 + }, + { + "word": "presupposition", + "freq": 1.45e-07 + }, + { + "word": "stoichiometric", + "freq": 1.45e-07 + }, + { + "word": "superficiality", + "freq": 1.45e-07 + }, + { + "word": "investigations", + "freq": 1.41e-07 + }, + { + "word": "bioluminescent", + "freq": 1.41e-07 + }, + { + "word": "breathlessness", + "freq": 1.41e-07 + }, + { + "word": "contextualized", + "freq": 1.41e-07 + }, + { + "word": "directionality", + "freq": 1.41e-07 + }, + { + "word": "gynaecologists", + "freq": 1.41e-07 + }, + { + "word": "intervertebral", + "freq": 1.41e-07 + }, + { + "word": "kindergartners", + "freq": 1.41e-07 + }, + { + "word": "margaritaville", + "freq": 1.41e-07 + }, + { + "word": "optoelectronic", + "freq": 1.41e-07 + }, + { + "word": "oversubscribed", + "freq": 1.41e-07 + }, + { + "word": "retrospectives", + "freq": 1.41e-07 + }, + { + "word": "westernization", + "freq": 1.41e-07 + }, + { + "word": "establishments", + "freq": 1.38e-07 + }, + { + "word": "antimicrobials", + "freq": 1.38e-07 + }, + { + "word": "characterising", + "freq": 1.38e-07 + }, + { + "word": "criminologists", + "freq": 1.38e-07 + }, + { + "word": "intramolecular", + "freq": 1.38e-07 + }, + { + "word": "substantiation", + "freq": 1.38e-07 + }, + { + "word": "agriculturally", + "freq": 1.35e-07 + }, + { + "word": "biogeochemical", + "freq": 1.35e-07 + }, + { + "word": "contemptuously", + "freq": 1.35e-07 + }, + { + "word": "cybercriminals", + "freq": 1.35e-07 + }, + { + "word": "neurologically", + "freq": 1.35e-07 + }, + { + "word": "ostentatiously", + "freq": 1.35e-07 + }, + { + "word": "consolidations", + "freq": 1.32e-07 + }, + { + "word": "counterparties", + "freq": 1.32e-07 + }, + { + "word": "etymologically", + "freq": 1.32e-07 + }, + { + "word": "geosynchronous", + "freq": 1.32e-07 + }, + { + "word": "histopathology", + "freq": 1.32e-07 + }, + { + "word": "perfectionists", + "freq": 1.32e-07 + }, + { + "word": "philanthropies", + "freq": 1.32e-07 + }, + { + "word": "abovementioned", + "freq": 1.29e-07 + }, + { + "word": "autoantibodies", + "freq": 1.29e-07 + }, + { + "word": "businessperson", + "freq": 1.29e-07 + }, + { + "word": "decisionmaking", + "freq": 1.29e-07 + }, + { + "word": "demonetisation", + "freq": 1.29e-07 + }, + { + "word": "inconveniently", + "freq": 1.29e-07 + }, + { + "word": "individualised", + "freq": 1.29e-07 + }, + { + "word": "potentialities", + "freq": 1.29e-07 + }, + { + "word": "prostaglandins", + "freq": 1.29e-07 + }, + { + "word": "reconfigurable", + "freq": 1.29e-07 + }, + { + "word": "supernaturally", + "freq": 1.29e-07 + }, + { + "word": "transparencies", + "freq": 1.29e-07 + }, + { + "word": "wellingborough", + "freq": 1.29e-07 + }, + { + "word": "anticonvulsant", + "freq": 1.26e-07 + }, + { + "word": "bacteriologist", + "freq": 1.26e-07 + }, + { + "word": "bioremediation", + "freq": 1.26e-07 + }, + { + "word": "decontaminated", + "freq": 1.26e-07 + }, + { + "word": "disequilibrium", + "freq": 1.26e-07 + }, + { + "word": "diverticulitis", + "freq": 1.26e-07 + }, + { + "word": "functionalized", + "freq": 1.26e-07 + }, + { + "word": "hahahahahahaha", + "freq": 1.26e-07 + }, + { + "word": "interreligious", + "freq": 1.26e-07 + }, + { + "word": "obstructionism", + "freq": 1.26e-07 + }, + { + "word": "redistributive", + "freq": 1.26e-07 + }, + { + "word": "unconsolidated", + "freq": 1.26e-07 + }, + { + "word": "uncontaminated", + "freq": 1.26e-07 + }, + { + "word": "climatologists", + "freq": 1.23e-07 + }, + { + "word": "conocophillips", + "freq": 1.23e-07 + }, + { + "word": "digitalization", + "freq": 1.23e-07 + }, + { + "word": "discontinuance", + "freq": 1.23e-07 + }, + { + "word": "gopalakrishnan", + "freq": 1.23e-07 + }, + { + "word": "hypocritically", + "freq": 1.23e-07 + }, + { + "word": "juxtapositions", + "freq": 1.23e-07 + }, + { + "word": "pennsylvanians", + "freq": 1.23e-07 + }, + { + "word": "reinterpreting", + "freq": 1.23e-07 + }, + { + "word": "serviceability", + "freq": 1.23e-07 + }, + { + "word": "transmigration", + "freq": 1.23e-07 + }, + { + "word": "anticorruption", + "freq": 1.2e-07 + }, + { + "word": "disassociation", + "freq": 1.2e-07 + }, + { + "word": "instrumentally", + "freq": 1.2e-07 + }, + { + "word": "naturalisation", + "freq": 1.2e-07 + }, + { + "word": "neurocognitive", + "freq": 1.2e-07 + }, + { + "word": "rheumatologist", + "freq": 1.2e-07 + }, + { + "word": "transliterated", + "freq": 1.2e-07 + }, + { + "word": "biodegradation", + "freq": 1.17e-07 + }, + { + "word": "civilizational", + "freq": 1.17e-07 + }, + { + "word": "nondestructive", + "freq": 1.17e-07 + }, + { + "word": "procrastinated", + "freq": 1.17e-07 + }, + { + "word": "procrastinator", + "freq": 1.17e-07 + }, + { + "word": "proprioception", + "freq": 1.17e-07 + }, + { + "word": "revitalisation", + "freq": 1.17e-07 + }, + { + "word": "concessionaire", + "freq": 1.15e-07 + }, + { + "word": "conditionality", + "freq": 1.15e-07 + }, + { + "word": "discolouration", + "freq": 1.15e-07 + }, + { + "word": "electromagnets", + "freq": 1.15e-07 + }, + { + "word": "erythropoietin", + "freq": 1.15e-07 + }, + { + "word": "histologically", + "freq": 1.15e-07 + }, + { + "word": "inconsiderable", + "freq": 1.15e-07 + }, + { + "word": "intermediation", + "freq": 1.15e-07 + }, + { + "word": "microcomputers", + "freq": 1.15e-07 + }, + { + "word": "microsatellite", + "freq": 1.15e-07 + }, + { + "word": "presentational", + "freq": 1.15e-07 + }, + { + "word": "subcutaneously", + "freq": 1.15e-07 + }, + { + "word": "absentmindedly", + "freq": 1.12e-07 + }, + { + "word": "commercialised", + "freq": 1.12e-07 + }, + { + "word": "mistranslation", + "freq": 1.12e-07 + }, + { + "word": "possessiveness", + "freq": 1.12e-07 + }, + { + "word": "rollercoasters", + "freq": 1.12e-07 + }, + { + "word": "semiconducting", + "freq": 1.12e-07 + }, + { + "word": "underachievers", + "freq": 1.12e-07 + }, + { + "word": "vindictiveness", + "freq": 1.12e-07 + }, + { + "word": "demonetization", + "freq": 1.1e-07 + }, + { + "word": "hyperventilate", + "freq": 1.1e-07 + }, + { + "word": "unappreciative", + "freq": 1.1e-07 + }, + { + "word": "granddaughters", + "freq": 1.07e-07 + }, + { + "word": "anthropometric", + "freq": 1.07e-07 + }, + { + "word": "caenorhabditis", + "freq": 1.07e-07 + }, + { + "word": "crawfordsville", + "freq": 1.07e-07 + }, + { + "word": "extinguishment", + "freq": 1.07e-07 + }, + { + "word": "metaphysically", + "freq": 1.07e-07 + }, + { + "word": "multithreading", + "freq": 1.07e-07 + }, + { + "word": "radiotelephone", + "freq": 1.07e-07 + }, + { + "word": "accreditations", + "freq": 1.05e-07 + }, + { + "word": "ambassadorship", + "freq": 1.05e-07 + }, + { + "word": "echocardiogram", + "freq": 1.05e-07 + }, + { + "word": "indoctrinating", + "freq": 1.05e-07 + }, + { + "word": "interpolations", + "freq": 1.05e-07 + }, + { + "word": "meaningfulness", + "freq": 1.05e-07 + }, + { + "word": "multifactorial", + "freq": 1.05e-07 + }, + { + "word": "multiprocessor", + "freq": 1.05e-07 + }, + { + "word": "philosophizing", + "freq": 1.05e-07 + }, + { + "word": "phytochemicals", + "freq": 1.05e-07 + }, + { + "word": "remanufactured", + "freq": 1.05e-07 + }, + { + "word": "superintending", + "freq": 1.05e-07 + }, + { + "word": "troubleshooter", + "freq": 1.05e-07 + }, + { + "word": "apolipoprotein", + "freq": 1.02e-07 + }, + { + "word": "climatological", + "freq": 1.02e-07 + }, + { + "word": "discriminative", + "freq": 1.02e-07 + }, + { + "word": "extemporaneous", + "freq": 1.02e-07 + }, + { + "word": "hypnotherapist", + "freq": 1.02e-07 + }, + { + "word": "immunogenicity", + "freq": 1.02e-07 + }, + { + "word": "mechanicsville", + "freq": 1.02e-07 + }, + { + "word": "microbreweries", + "freq": 1.02e-07 + }, + { + "word": "noncommutative", + "freq": 1.02e-07 + }, + { + "word": "orchestrations", + "freq": 1.02e-07 + }, + { + "word": "propagandistic", + "freq": 1.02e-07 + }, + { + "word": "spatiotemporal", + "freq": 1.02e-07 + }, + { + "word": "territoriality", + "freq": 1.02e-07 + }, + { + "word": "translocations", + "freq": 1.02e-07 + }, + { + "word": "bacteriophages", + "freq": 1e-07 + }, + { + "word": "entertainingly", + "freq": 1e-07 + }, + { + "word": "individualists", + "freq": 1e-07 + }, + { + "word": "kaiserslautern", + "freq": 1e-07 + }, + { + "word": "malnourishment", + "freq": 1e-07 + }, + { + "word": "overestimation", + "freq": 1e-07 + }, + { + "word": "postproduction", + "freq": 1e-07 + }, + { + "word": "prohibitionist", + "freq": 1e-07 + }, + { + "word": "rebelliousness", + "freq": 1e-07 + }, + { + "word": "supramolecular", + "freq": 1e-07 + }, + { + "word": "thermoplastics", + "freq": 1e-07 + }, + { + "word": "administrators", + "freq": 9.77e-08 + }, + { + "word": "pentecostalism", + "freq": 9.77e-08 + }, + { + "word": "restructurings", + "freq": 9.77e-08 + }, + { + "word": "supersymmetric", + "freq": 9.77e-08 + }, + { + "word": "underreporting", + "freq": 9.77e-08 + }, + { + "word": "chandrashekhar", + "freq": 9.55e-08 + }, + { + "word": "conceptualised", + "freq": 9.55e-08 + }, + { + "word": "counterweights", + "freq": 9.55e-08 + }, + { + "word": "defibrillation", + "freq": 9.55e-08 + }, + { + "word": "disembarkation", + "freq": 9.55e-08 + }, + { + "word": "neonicotinoids", + "freq": 9.55e-08 + }, + { + "word": "untouchability", + "freq": 9.55e-08 + }, + { + "word": "administrating", + "freq": 9.33e-08 + }, + { + "word": "constitutively", + "freq": 9.33e-08 + }, + { + "word": "downregulation", + "freq": 9.33e-08 + }, + { + "word": "nanostructured", + "freq": 9.33e-08 + }, + { + "word": "nasopharyngeal", + "freq": 9.33e-08 + }, + { + "word": "neurochemistry", + "freq": 9.33e-08 + }, + { + "word": "nitroglycerine", + "freq": 9.33e-08 + }, + { + "word": "photochemistry", + "freq": 9.33e-08 + }, + { + "word": "retinoblastoma", + "freq": 9.33e-08 + }, + { + "word": "disapprovingly", + "freq": 9.12e-08 + }, + { + "word": "extrapolations", + "freq": 9.12e-08 + }, + { + "word": "macronutrients", + "freq": 9.12e-08 + }, + { + "word": "nonconformists", + "freq": 9.12e-08 + }, + { + "word": "wissenschaften", + "freq": 9.12e-08 + }, + { + "word": "agustawestland", + "freq": 8.91e-08 + }, + { + "word": "choreographies", + "freq": 8.91e-08 + }, + { + "word": "colloquialisms", + "freq": 8.91e-08 + }, + { + "word": "decolonisation", + "freq": 8.91e-08 + }, + { + "word": "federalization", + "freq": 8.91e-08 + }, + { + "word": "hyperlipidemia", + "freq": 8.91e-08 + }, + { + "word": "illegitimately", + "freq": 8.91e-08 + }, + { + "word": "mispronouncing", + "freq": 8.91e-08 + }, + { + "word": "nanocomposites", + "freq": 8.91e-08 + }, + { + "word": "noncompetitive", + "freq": 8.91e-08 + }, + { + "word": "nonresidential", + "freq": 8.91e-08 + }, + { + "word": "oceanographers", + "freq": 8.91e-08 + }, + { + "word": "percussionists", + "freq": 8.91e-08 + }, + { + "word": "philadelphians", + "freq": 8.91e-08 + }, + { + "word": "prioritisation", + "freq": 8.91e-08 + }, + { + "word": "reincarnations", + "freq": 8.91e-08 + }, + { + "word": "reinvigorating", + "freq": 8.91e-08 + }, + { + "word": "rhabdomyolysis", + "freq": 8.91e-08 + }, + { + "word": "substantiating", + "freq": 8.91e-08 + }, + { + "word": "uncorroborated", + "freq": 8.91e-08 + }, + { + "word": "unfaithfulness", + "freq": 8.91e-08 + }, + { + "word": "agglomerations", + "freq": 8.71e-08 + }, + { + "word": "alexanderplatz", + "freq": 8.71e-08 + }, + { + "word": "chancellorship", + "freq": 8.71e-08 + }, + { + "word": "criminological", + "freq": 8.71e-08 + }, + { + "word": "disconnections", + "freq": 8.71e-08 + }, + { + "word": "extracorporeal", + "freq": 8.71e-08 + }, + { + "word": "phantasmagoria", + "freq": 8.71e-08 + }, + { + "word": "polyacrylamide", + "freq": 8.71e-08 + }, + { + "word": "productiveness", + "freq": 8.71e-08 + }, + { + "word": "sociologically", + "freq": 8.71e-08 + }, + { + "word": "antiperspirant", + "freq": 8.51e-08 + }, + { + "word": "appreciatively", + "freq": 8.51e-08 + }, + { + "word": "asynchronously", + "freq": 8.51e-08 + }, + { + "word": "christological", + "freq": 8.51e-08 + }, + { + "word": "clarithromycin", + "freq": 8.51e-08 + }, + { + "word": "discretization", + "freq": 8.51e-08 + }, + { + "word": "hydroxyapatite", + "freq": 8.51e-08 + }, + { + "word": "monopolization", + "freq": 8.51e-08 + }, + { + "word": "submissiveness", + "freq": 8.51e-08 + }, + { + "word": "battlecruisers", + "freq": 8.32e-08 + }, + { + "word": "constructional", + "freq": 8.32e-08 + }, + { + "word": "convertibility", + "freq": 8.32e-08 + }, + { + "word": "fraternization", + "freq": 8.32e-08 + }, + { + "word": "herpetological", + "freq": 8.32e-08 + }, + { + "word": "inflammatories", + "freq": 8.32e-08 + }, + { + "word": "pedestrianised", + "freq": 8.32e-08 + }, + { + "word": "reconstituting", + "freq": 8.32e-08 + }, + { + "word": "transgenderism", + "freq": 8.32e-08 + }, + { + "word": "catecholamines", + "freq": 8.13e-08 + }, + { + "word": "conquistadores", + "freq": 8.13e-08 + }, + { + "word": "conservatorium", + "freq": 8.13e-08 + }, + { + "word": "correspondance", + "freq": 8.13e-08 + }, + { + "word": "demoralization", + "freq": 8.13e-08 + }, + { + "word": "intramedullary", + "freq": 8.13e-08 + }, + { + "word": "irreproachable", + "freq": 8.13e-08 + }, + { + "word": "legitimization", + "freq": 8.13e-08 + }, + { + "word": "licentiousness", + "freq": 8.13e-08 + }, + { + "word": "misapplication", + "freq": 8.13e-08 + }, + { + "word": "mississippians", + "freq": 8.13e-08 + }, + { + "word": "neuropathology", + "freq": 8.13e-08 + }, + { + "word": "permissiveness", + "freq": 8.13e-08 + }, + { + "word": "relinquishment", + "freq": 8.13e-08 + }, + { + "word": "supercontinent", + "freq": 8.13e-08 + }, + { + "word": "weatherization", + "freq": 8.13e-08 + }, + { + "word": "antigovernment", + "freq": 7.94e-08 + }, + { + "word": "blaxploitation", + "freq": 7.94e-08 + }, + { + "word": "disaggregation", + "freq": 7.94e-08 + }, + { + "word": "dnepropetrovsk", + "freq": 7.94e-08 + }, + { + "word": "hermaphroditic", + "freq": 7.94e-08 + }, + { + "word": "hypergeometric", + "freq": 7.94e-08 + }, + { + "word": "lexicographers", + "freq": 7.94e-08 + }, + { + "word": "mineralisation", + "freq": 7.94e-08 + }, + { + "word": "pharmacologist", + "freq": 7.94e-08 + }, + { + "word": "politicisation", + "freq": 7.94e-08 + }, + { + "word": "proprioceptive", + "freq": 7.94e-08 + }, + { + "word": "protectiveness", + "freq": 7.94e-08 + }, + { + "word": "simplistically", + "freq": 7.94e-08 + }, + { + "word": "transpositions", + "freq": 7.94e-08 + }, + { + "word": "universitaires", + "freq": 7.94e-08 + }, + { + "word": "commiserations", + "freq": 7.76e-08 + }, + { + "word": "contemplations", + "freq": 7.76e-08 + }, + { + "word": "decentralizing", + "freq": 7.76e-08 + }, + { + "word": "demobilisation", + "freq": 7.76e-08 + }, + { + "word": "expressionists", + "freq": 7.76e-08 + }, + { + "word": "grandfathering", + "freq": 7.76e-08 + }, + { + "word": "hepatotoxicity", + "freq": 7.76e-08 + }, + { + "word": "neuschwanstein", + "freq": 7.76e-08 + }, + { + "word": "overindulgence", + "freq": 7.76e-08 + }, + { + "word": "precariousness", + "freq": 7.76e-08 + }, + { + "word": "repetitiveness", + "freq": 7.76e-08 + }, + { + "word": "unhesitatingly", + "freq": 7.76e-08 + }, + { + "word": "cephalosporins", + "freq": 7.59e-08 + }, + { + "word": "chlorpromazine", + "freq": 7.59e-08 + }, + { + "word": "decriminalised", + "freq": 7.59e-08 + }, + { + "word": "disingenuously", + "freq": 7.59e-08 + }, + { + "word": "geopolitically", + "freq": 7.59e-08 + }, + { + "word": "requisitioning", + "freq": 7.59e-08 + }, + { + "word": "sterilizations", + "freq": 7.59e-08 + }, + { + "word": "transistorized", + "freq": 7.59e-08 + }, + { + "word": "untranslatable", + "freq": 7.59e-08 + }, + { + "word": "washingtonians", + "freq": 7.59e-08 + }, + { + "word": "campbellsville", + "freq": 7.41e-08 + }, + { + "word": "decompositions", + "freq": 7.41e-08 + }, + { + "word": "frontotemporal", + "freq": 7.41e-08 + }, + { + "word": "gerontological", + "freq": 7.41e-08 + }, + { + "word": "penitentiaries", + "freq": 7.41e-08 + }, + { + "word": "photocatalytic", + "freq": 7.41e-08 + }, + { + "word": "potentiometers", + "freq": 7.41e-08 + }, + { + "word": "superdelegates", + "freq": 7.41e-08 + }, + { + "word": "antineoplastic", + "freq": 7.24e-08 + }, + { + "word": "authorisations", + "freq": 7.24e-08 + }, + { + "word": "christopherson", + "freq": 7.24e-08 + }, + { + "word": "dissapointment", + "freq": 7.24e-08 + }, + { + "word": "interrelations", + "freq": 7.24e-08 + }, + { + "word": "levonorgestrel", + "freq": 7.24e-08 + }, + { + "word": "thermochemical", + "freq": 7.24e-08 + }, + { + "word": "defenestration", + "freq": 7.08e-08 + }, + { + "word": "microparticles", + "freq": 7.08e-08 + }, + { + "word": "middlesborough", + "freq": 7.08e-08 + }, + { + "word": "multicomponent", + "freq": 7.08e-08 + }, + { + "word": "preposterously", + "freq": 7.08e-08 + }, + { + "word": "securitisation", + "freq": 7.08e-08 + }, + { + "word": "symptomatology", + "freq": 7.08e-08 + }, + { + "word": "disinclination", + "freq": 6.92e-08 + }, + { + "word": "euroscepticism", + "freq": 6.92e-08 + }, + { + "word": "exhibitionists", + "freq": 6.92e-08 + }, + { + "word": "megalomaniacal", + "freq": 6.92e-08 + }, + { + "word": "nonthreatening", + "freq": 6.92e-08 + }, + { + "word": "overemphasized", + "freq": 6.92e-08 + }, + { + "word": "overstimulated", + "freq": 6.92e-08 + }, + { + "word": "quarterbacking", + "freq": 6.92e-08 + }, + { + "word": "reproductively", + "freq": 6.92e-08 + }, + { + "word": "responsability", + "freq": 6.92e-08 + }, + { + "word": "scatterbrained", + "freq": 6.92e-08 + }, + { + "word": "septuagenarian", + "freq": 6.92e-08 + }, + { + "word": "terminological", + "freq": 6.92e-08 + }, + { + "word": "unquantifiable", + "freq": 6.92e-08 + }, + { + "word": "neighbourhoods", + "freq": 6.76e-08 + }, + { + "word": "grandchildrens", + "freq": 6.76e-08 + }, + { + "word": "hydrophobicity", + "freq": 6.76e-08 + }, + { + "word": "hysterectomies", + "freq": 6.76e-08 + }, + { + "word": "kindergartener", + "freq": 6.76e-08 + }, + { + "word": "paediatricians", + "freq": 6.76e-08 + }, + { + "word": "psychophysical", + "freq": 6.76e-08 + }, + { + "word": "shankaracharya", + "freq": 6.76e-08 + }, + { + "word": "transsexualism", + "freq": 6.76e-08 + }, + { + "word": "cardiomyocytes", + "freq": 6.61e-08 + }, + { + "word": "congressperson", + "freq": 6.61e-08 + }, + { + "word": "councilmembers", + "freq": 6.61e-08 + }, + { + "word": "cryptographers", + "freq": 6.61e-08 + }, + { + "word": "nonequilibrium", + "freq": 6.61e-08 + }, + { + "word": "operationalize", + "freq": 6.61e-08 + }, + { + "word": "polyneuropathy", + "freq": 6.61e-08 + }, + { + "word": "reincorporated", + "freq": 6.61e-08 + }, + { + "word": "superintendant", + "freq": 6.61e-08 + }, + { + "word": "tetragrammaton", + "freq": 6.61e-08 + }, + { + "word": "charlottenburg", + "freq": 6.46e-08 + }, + { + "word": "concentrically", + "freq": 6.46e-08 + }, + { + "word": "contraventions", + "freq": 6.46e-08 + }, + { + "word": "corticosterone", + "freq": 6.46e-08 + }, + { + "word": "editorializing", + "freq": 6.46e-08 + }, + { + "word": "hillaryclinton", + "freq": 6.46e-08 + }, + { + "word": "interconnector", + "freq": 6.46e-08 + }, + { + "word": "lovingkindness", + "freq": 6.46e-08 + }, + { + "word": "militarisation", + "freq": 6.46e-08 + }, + { + "word": "perpendiculars", + "freq": 6.46e-08 + }, + { + "word": "phenotypically", + "freq": 6.46e-08 + }, + { + "word": "schleiermacher", + "freq": 6.46e-08 + }, + { + "word": "sentimentalist", + "freq": 6.46e-08 + }, + { + "word": "staphylococcal", + "freq": 6.46e-08 + }, + { + "word": "straightjacket", + "freq": 6.46e-08 + }, + { + "word": "supersaturated", + "freq": 6.46e-08 + }, + { + "word": "cholinesterase", + "freq": 6.31e-08 + }, + { + "word": "contaminations", + "freq": 6.31e-08 + }, + { + "word": "disassociating", + "freq": 6.31e-08 + }, + { + "word": "esterification", + "freq": 6.31e-08 + }, + { + "word": "heterojunction", + "freq": 6.31e-08 + }, + { + "word": "impracticality", + "freq": 6.31e-08 + }, + { + "word": "outperformance", + "freq": 6.31e-08 + }, + { + "word": "sentimentalism", + "freq": 6.31e-08 + }, + { + "word": "transcutaneous", + "freq": 6.31e-08 + }, + { + "word": "whippersnapper", + "freq": 6.31e-08 + }, + { + "word": "cyclooxygenase", + "freq": 6.17e-08 + }, + { + "word": "electrostatics", + "freq": 6.17e-08 + }, + { + "word": "emulsification", + "freq": 6.17e-08 + }, + { + "word": "heterozygosity", + "freq": 6.17e-08 + }, + { + "word": "hinchingbrooke", + "freq": 6.17e-08 + }, + { + "word": "paddleboarding", + "freq": 6.17e-08 + }, + { + "word": "pavlyuchenkova", + "freq": 6.17e-08 + }, + { + "word": "phonologically", + "freq": 6.17e-08 + }, + { + "word": "plasmapheresis", + "freq": 6.17e-08 + }, + { + "word": "revolutionists", + "freq": 6.17e-08 + }, + { + "word": "secularisation", + "freq": 6.17e-08 + }, + { + "word": "suggestibility", + "freq": 6.17e-08 + }, + { + "word": "undernutrition", + "freq": 6.17e-08 + }, + { + "word": "agriculturists", + "freq": 6.03e-08 + }, + { + "word": "bronchiectasis", + "freq": 6.03e-08 + }, + { + "word": "disarticulated", + "freq": 6.03e-08 + }, + { + "word": "discontentment", + "freq": 6.03e-08 + }, + { + "word": "einsatzgruppen", + "freq": 6.03e-08 + }, + { + "word": "foreshortening", + "freq": 6.03e-08 + }, + { + "word": "humidification", + "freq": 6.03e-08 + }, + { + "word": "knickerbockers", + "freq": 6.03e-08 + }, + { + "word": "pronounciation", + "freq": 6.03e-08 + }, + { + "word": "screenshotting", + "freq": 6.03e-08 + }, + { + "word": "showerthoughts", + "freq": 6.03e-08 + }, + { + "word": "correspondents", + "freq": 5.89e-08 + }, + { + "word": "assistantships", + "freq": 5.89e-08 + }, + { + "word": "availabilities", + "freq": 5.89e-08 + }, + { + "word": "circumspection", + "freq": 5.89e-08 + }, + { + "word": "documentations", + "freq": 5.89e-08 + }, + { + "word": "encouragements", + "freq": 5.89e-08 + }, + { + "word": "ethnographical", + "freq": 5.89e-08 + }, + { + "word": "particularized", + "freq": 5.89e-08 + }, + { + "word": "cyanobacterial", + "freq": 5.75e-08 + }, + { + "word": "demonstratives", + "freq": 5.75e-08 + }, + { + "word": "implausibility", + "freq": 5.75e-08 + }, + { + "word": "incorporations", + "freq": 5.75e-08 + }, + { + "word": "interactionism", + "freq": 5.75e-08 + }, + { + "word": "medicalization", + "freq": 5.75e-08 + }, + { + "word": "phthalocyanine", + "freq": 5.75e-08 + }, + { + "word": "phytoestrogens", + "freq": 5.75e-08 + }, + { + "word": "postmodernists", + "freq": 5.75e-08 + }, + { + "word": "visualisations", + "freq": 5.75e-08 + }, + { + "word": "comfortability", + "freq": 5.62e-08 + }, + { + "word": "disorientating", + "freq": 5.62e-08 + }, + { + "word": "glyceraldehyde", + "freq": 5.62e-08 + }, + { + "word": "metaphysicians", + "freq": 5.62e-08 + }, + { + "word": "persuasiveness", + "freq": 5.62e-08 + }, + { + "word": "privatizations", + "freq": 5.62e-08 + }, + { + "word": "subspecialties", + "freq": 5.62e-08 + }, + { + "word": "telangiectasia", + "freq": 5.62e-08 + }, + { + "word": "ultrastructure", + "freq": 5.62e-08 + }, + { + "word": "aguascalientes", + "freq": 5.5e-08 + }, + { + "word": "archiepiscopal", + "freq": 5.5e-08 + }, + { + "word": "encyclopaedias", + "freq": 5.5e-08 + }, + { + "word": "glamorganshire", + "freq": 5.5e-08 + }, + { + "word": "innovativeness", + "freq": 5.5e-08 + }, + { + "word": "paraneoplastic", + "freq": 5.5e-08 + }, + { + "word": "permissibility", + "freq": 5.5e-08 + }, + { + "word": "photodetectors", + "freq": 5.5e-08 + }, + { + "word": "recommissioned", + "freq": 5.5e-08 + }, + { + "word": "solubilization", + "freq": 5.5e-08 + }, + { + "word": "subcontinental", + "freq": 5.5e-08 + }, + { + "word": "thromboembolic", + "freq": 5.5e-08 + }, + { + "word": "unaccomplished", + "freq": 5.5e-08 + }, + { + "word": "unclassifiable", + "freq": 5.5e-08 + }, + { + "word": "bacteriostatic", + "freq": 5.37e-08 + }, + { + "word": "dinoflagellate", + "freq": 5.37e-08 + }, + { + "word": "disempowerment", + "freq": 5.37e-08 + }, + { + "word": "dramatizations", + "freq": 5.37e-08 + }, + { + "word": "metoclopramide", + "freq": 5.37e-08 + }, + { + "word": "polymerisation", + "freq": 5.37e-08 + }, + { + "word": "propagandizing", + "freq": 5.37e-08 + }, + { + "word": "renegotiations", + "freq": 5.37e-08 + }, + { + "word": "sensationalize", + "freq": 5.37e-08 + }, + { + "word": "socioeconomics", + "freq": 5.37e-08 + }, + { + "word": "ubiquitination", + "freq": 5.37e-08 + }, + { + "word": "aggrandisement", + "freq": 5.25e-08 + }, + { + "word": "airconditioned", + "freq": 5.25e-08 + }, + { + "word": "autoregressive", + "freq": 5.25e-08 + }, + { + "word": "chamillionaire", + "freq": 5.25e-08 + }, + { + "word": "cruiserweights", + "freq": 5.25e-08 + }, + { + "word": "deliverability", + "freq": 5.25e-08 + }, + { + "word": "diacylglycerol", + "freq": 5.25e-08 + }, + { + "word": "educationalist", + "freq": 5.25e-08 + }, + { + "word": "fremantlemedia", + "freq": 5.25e-08 + }, + { + "word": "groundskeepers", + "freq": 5.25e-08 + }, + { + "word": "hyperextension", + "freq": 5.25e-08 + }, + { + "word": "incrementalism", + "freq": 5.25e-08 + }, + { + "word": "intuitionistic", + "freq": 5.25e-08 + }, + { + "word": "magnifications", + "freq": 5.25e-08 + }, + { + "word": "microelectrode", + "freq": 5.25e-08 + }, + { + "word": "neocolonialism", + "freq": 5.25e-08 + }, + { + "word": "providentially", + "freq": 5.25e-08 + }, + { + "word": "quartermasters", + "freq": 5.25e-08 + }, + { + "word": "schoolmistress", + "freq": 5.25e-08 + } + ], + "15": [ + { + "word": "congratulations", + "freq": 2.51e-05 + }, + { + "word": "recommendations", + "freq": 1.95e-05 + }, + { + "word": "characteristics", + "freq": 1.91e-05 + }, + { + "word": "internationally", + "freq": 8.91e-06 + }, + { + "word": "straightforward", + "freq": 6.76e-06 + }, + { + "word": "accomplishments", + "freq": 5.62e-06 + }, + { + "word": "representations", + "freq": 4.68e-06 + }, + { + "word": "interpretations", + "freq": 4.27e-06 + }, + { + "word": "electromagnetic", + "freq": 3.8e-06 + }, + { + "word": "differentiation", + "freq": 3.09e-06 + }, + { + "word": "notwithstanding", + "freq": 3.02e-06 + }, + { + "word": "pharmaceuticals", + "freq": 3.02e-06 + }, + { + "word": "experimentation", + "freq": 2.95e-06 + }, + { + "word": "instrumentation", + "freq": 2.88e-06 + }, + { + "word": "competitiveness", + "freq": 2.82e-06 + }, + { + "word": "confidentiality", + "freq": 2.82e-06 + }, + { + "word": "environmentally", + "freq": 2.75e-06 + }, + { + "word": "extraordinarily", + "freq": 2.63e-06 + }, + { + "word": "entrepreneurial", + "freq": 2.51e-06 + }, + { + "word": "professionalism", + "freq": 2.51e-06 + }, + { + "word": "transformations", + "freq": 2.51e-06 + }, + { + "word": "psychologically", + "freq": 2.24e-06 + }, + { + "word": "administrations", + "freq": 2.19e-06 + }, + { + "word": "acknowledgement", + "freq": 2.09e-06 + }, + { + "word": "dissatisfaction", + "freq": 2.09e-06 + }, + { + "word": "interchangeable", + "freq": 1.91e-06 + }, + { + "word": "gloucestershire", + "freq": 1.82e-06 + }, + { + "word": "charlottesville", + "freq": 1.78e-06 + }, + { + "word": "inconsistencies", + "freq": 1.78e-06 + }, + { + "word": "transplantation", + "freq": 1.7e-06 + }, + { + "word": "vulnerabilities", + "freq": 1.7e-06 + }, + { + "word": "diversification", + "freq": 1.66e-06 + }, + { + "word": "revolutionaries", + "freq": 1.62e-06 + }, + { + "word": "unintentionally", + "freq": 1.62e-06 + }, + { + "word": "implementations", + "freq": 1.55e-06 + }, + { + "word": "classifications", + "freq": 1.51e-06 + }, + { + "word": "antidepressants", + "freq": 1.45e-06 + }, + { + "word": "unconditionally", + "freq": 1.45e-06 + }, + { + "word": "technologically", + "freq": 1.41e-06 + }, + { + "word": "disappointments", + "freq": 1.32e-06 + }, + { + "word": "synchronization", + "freq": 1.29e-06 + }, + { + "word": "anthropological", + "freq": 1.23e-06 + }, + { + "word": "hospitalization", + "freq": 1.23e-06 + }, + { + "word": "nottinghamshire", + "freq": 1.23e-06 + }, + { + "word": "standardization", + "freq": 1.23e-06 + }, + { + "word": "generalizations", + "freq": 1.17e-06 + }, + { + "word": "buckinghamshire", + "freq": 1.07e-06 + }, + { + "word": "confrontational", + "freq": 1.07e-06 + }, + { + "word": "anthropologists", + "freq": 1.05e-06 + }, + { + "word": "inappropriately", + "freq": 1.05e-06 + }, + { + "word": "electrification", + "freq": 1e-06 + }, + { + "word": "extracurricular", + "freq": 9.77e-07 + }, + { + "word": "phosphorylation", + "freq": 9.77e-07 + }, + { + "word": "methamphetamine", + "freq": 9.33e-07 + }, + { + "word": "comprehensively", + "freq": 9.12e-07 + }, + { + "word": "procrastination", + "freq": 9.12e-07 + }, + { + "word": "troubleshooting", + "freq": 9.12e-07 + }, + { + "word": "differentiating", + "freq": 8.91e-07 + }, + { + "word": "supplementation", + "freq": 8.91e-07 + }, + { + "word": "pharmacological", + "freq": 8.32e-07 + }, + { + "word": "underprivileged", + "freq": 8.32e-07 + }, + { + "word": "chronologically", + "freq": 8.13e-07 + }, + { + "word": "disenfranchised", + "freq": 7.94e-07 + }, + { + "word": "instantaneously", + "freq": 7.94e-07 + }, + { + "word": "interchangeably", + "freq": 7.94e-07 + }, + { + "word": "apprenticeships", + "freq": 7.76e-07 + }, + { + "word": "countermeasures", + "freq": 7.76e-07 + }, + { + "word": "cinematographer", + "freq": 7.59e-07 + }, + { + "word": "electrochemical", + "freq": 7.59e-07 + }, + { + "word": "unsubstantiated", + "freq": 7.59e-07 + }, + { + "word": "distinguishable", + "freq": 7.41e-07 + }, + { + "word": "epidemiological", + "freq": 7.41e-07 + }, + { + "word": "underestimating", + "freq": 7.41e-07 + }, + { + "word": "inconsequential", + "freq": 7.24e-07 + }, + { + "word": "fundamentalists", + "freq": 7.08e-07 + }, + { + "word": "contemporaneous", + "freq": 6.92e-07 + }, + { + "word": "decommissioning", + "freq": 6.92e-07 + }, + { + "word": "infrastructures", + "freq": 6.92e-07 + }, + { + "word": "interconnection", + "freq": 6.76e-07 + }, + { + "word": "disillusionment", + "freq": 6.61e-07 + }, + { + "word": "personification", + "freq": 6.61e-07 + }, + { + "word": "retrospectively", + "freq": 6.61e-07 + }, + { + "word": "totalitarianism", + "freq": 6.61e-07 + }, + { + "word": "intensification", + "freq": 6.46e-07 + }, + { + "word": "reconstructions", + "freq": 6.46e-07 + }, + { + "word": "parliamentarian", + "freq": 6.31e-07 + }, + { + "word": "photojournalist", + "freq": 6.31e-07 + }, + { + "word": "atherosclerosis", + "freq": 6.03e-07 + }, + { + "word": "decontamination", + "freq": 6.03e-07 + }, + { + "word": "philosophically", + "freq": 6.03e-07 + }, + { + "word": "transcriptional", + "freq": 6.03e-07 + }, + { + "word": "controversially", + "freq": 5.89e-07 + }, + { + "word": "democratization", + "freq": 5.89e-07 + }, + { + "word": "appropriateness", + "freq": 5.75e-07 + }, + { + "word": "correspondingly", + "freq": 5.75e-07 + }, + { + "word": "incompatibility", + "freq": 5.62e-07 + }, + { + "word": "musculoskeletal", + "freq": 5.62e-07 + }, + { + "word": "individualistic", + "freq": 5.5e-07 + }, + { + "word": "underperforming", + "freq": 5.5e-07 + }, + { + "word": "anthropomorphic", + "freq": 5.37e-07 + }, + { + "word": "developmentally", + "freq": 5.37e-07 + }, + { + "word": "psychotherapist", + "freq": 5.37e-07 + }, + { + "word": "nationalization", + "freq": 5.13e-07 + }, + { + "word": "rationalization", + "freq": 5.13e-07 + }, + { + "word": "superconducting", + "freq": 5.13e-07 + }, + { + "word": "conservationist", + "freq": 5.01e-07 + }, + { + "word": "excommunication", + "freq": 5.01e-07 + }, + { + "word": "ophthalmologist", + "freq": 5.01e-07 + }, + { + "word": "procrastinating", + "freq": 5.01e-07 + }, + { + "word": "interdependence", + "freq": 4.9e-07 + }, + { + "word": "philanthropists", + "freq": 4.9e-07 + }, + { + "word": "surreptitiously", + "freq": 4.9e-07 + }, + { + "word": "unconsciousness", + "freq": 4.9e-07 + }, + { + "word": "collaboratively", + "freq": 4.79e-07 + }, + { + "word": "corticosteroids", + "freq": 4.68e-07 + }, + { + "word": "physiotherapist", + "freq": 4.68e-07 + }, + { + "word": "trustworthiness", + "freq": 4.68e-07 + }, + { + "word": "insubordination", + "freq": 4.57e-07 + }, + { + "word": "nationalisation", + "freq": 4.57e-07 + }, + { + "word": "pathophysiology", + "freq": 4.57e-07 + }, + { + "word": "benzodiazepines", + "freq": 4.47e-07 + }, + { + "word": "marginalization", + "freq": 4.47e-07 + }, + { + "word": "misrepresenting", + "freq": 4.47e-07 + }, + { + "word": "proportionality", + "freq": 4.47e-07 + }, + { + "word": "proportionately", + "freq": 4.47e-07 + }, + { + "word": "reconsideration", + "freq": 4.47e-07 + }, + { + "word": "crystallization", + "freq": 4.37e-07 + }, + { + "word": "intercollegiate", + "freq": 4.37e-07 + }, + { + "word": "maneuverability", + "freq": 4.37e-07 + }, + { + "word": "objectification", + "freq": 4.37e-07 + }, + { + "word": "discontinuation", + "freq": 4.27e-07 + }, + { + "word": "plenipotentiary", + "freq": 4.27e-07 + }, + { + "word": "architecturally", + "freq": 4.17e-07 + }, + { + "word": "interventionist", + "freq": 4.17e-07 + }, + { + "word": "traditionalists", + "freq": 4.17e-07 + }, + { + "word": "epistemological", + "freq": 4.07e-07 + }, + { + "word": "physiologically", + "freq": 4.07e-07 + }, + { + "word": "crystallography", + "freq": 3.98e-07 + }, + { + "word": "carmarthenshire", + "freq": 3.89e-07 + }, + { + "word": "nongovernmental", + "freq": 3.89e-07 + }, + { + "word": "revolutionizing", + "freq": 3.89e-07 + }, + { + "word": "transfiguration", + "freq": 3.89e-07 + }, + { + "word": "bioavailability", + "freq": 3.72e-07 + }, + { + "word": "personalization", + "freq": 3.72e-07 + }, + { + "word": "specializations", + "freq": 3.72e-07 + }, + { + "word": "unsophisticated", + "freq": 3.72e-07 + }, + { + "word": "computationally", + "freq": 3.63e-07 + }, + { + "word": "electrophoresis", + "freq": 3.63e-07 + }, + { + "word": "identifications", + "freq": 3.63e-07 + }, + { + "word": "infrastructural", + "freq": 3.63e-07 + }, + { + "word": "instrumentalist", + "freq": 3.55e-07 + }, + { + "word": "investigational", + "freq": 3.55e-07 + }, + { + "word": "neuroscientists", + "freq": 3.55e-07 + }, + { + "word": "resourcefulness", + "freq": 3.55e-07 + }, + { + "word": "microprocessors", + "freq": 3.47e-07 + }, + { + "word": "reauthorization", + "freq": 3.47e-07 + }, + { + "word": "unceremoniously", + "freq": 3.47e-07 + }, + { + "word": "criminalization", + "freq": 3.39e-07 + }, + { + "word": "heterosexuality", + "freq": 3.31e-07 + }, + { + "word": "improvisational", + "freq": 3.31e-07 + }, + { + "word": "correspondences", + "freq": 3.24e-07 + }, + { + "word": "destabilization", + "freq": 3.24e-07 + }, + { + "word": "sympathetically", + "freq": 3.24e-07 + }, + { + "word": "intellectualism", + "freq": 3.16e-07 + }, + { + "word": "morphologically", + "freq": 3.16e-07 + }, + { + "word": "reconfiguration", + "freq": 3.16e-07 + }, + { + "word": "standardisation", + "freq": 3.16e-07 + }, + { + "word": "cardiopulmonary", + "freq": 3.09e-07 + }, + { + "word": "disappointingly", + "freq": 3.02e-07 + }, + { + "word": "indemnification", + "freq": 3.02e-07 + }, + { + "word": "paleontologists", + "freq": 3.02e-07 + }, + { + "word": "psychopathology", + "freq": 3.02e-07 + }, + { + "word": "multifunctional", + "freq": 2.95e-07 + }, + { + "word": "unsportsmanlike", + "freq": 2.95e-07 + }, + { + "word": "autobiographies", + "freq": 2.88e-07 + }, + { + "word": "bibliographical", + "freq": 2.88e-07 + }, + { + "word": "ineffectiveness", + "freq": 2.88e-07 + }, + { + "word": "polyunsaturated", + "freq": 2.88e-07 + }, + { + "word": "reproducibility", + "freq": 2.88e-07 + }, + { + "word": "desertification", + "freq": 2.82e-07 + }, + { + "word": "endocrinologist", + "freq": 2.82e-07 + }, + { + "word": "impressionistic", + "freq": 2.82e-07 + }, + { + "word": "microbiological", + "freq": 2.82e-07 + }, + { + "word": "photojournalism", + "freq": 2.82e-07 + }, + { + "word": "superconductors", + "freq": 2.82e-07 + }, + { + "word": "microcontroller", + "freq": 2.75e-07 + }, + { + "word": "slaughterhouses", + "freq": 2.75e-07 + }, + { + "word": "distinctiveness", + "freq": 2.69e-07 + }, + { + "word": "functionalities", + "freq": 2.69e-07 + }, + { + "word": "transliteration", + "freq": 2.69e-07 + }, + { + "word": "institutionally", + "freq": 2.63e-07 + }, + { + "word": "glaxosmithkline", + "freq": 2.51e-07 + }, + { + "word": "contraindicated", + "freq": 2.45e-07 + }, + { + "word": "gastroenteritis", + "freq": 2.45e-07 + }, + { + "word": "demographically", + "freq": 2.4e-07 + }, + { + "word": "interconnecting", + "freq": 2.4e-07 + }, + { + "word": "rationalisation", + "freq": 2.4e-07 + }, + { + "word": "cerebrovascular", + "freq": 2.29e-07 + }, + { + "word": "conscientiously", + "freq": 2.29e-07 + }, + { + "word": "interventionism", + "freq": 2.29e-07 + }, + { + "word": "neuropsychology", + "freq": 2.29e-07 + }, + { + "word": "uncontroversial", + "freq": 2.24e-07 + }, + { + "word": "circumferential", + "freq": 2.19e-07 + }, + { + "word": "disadvantageous", + "freq": 2.19e-07 + }, + { + "word": "epidemiologists", + "freq": 2.19e-07 + }, + { + "word": "hyperthyroidism", + "freq": 2.19e-07 + }, + { + "word": "polycrystalline", + "freq": 2.19e-07 + }, + { + "word": "catheterization", + "freq": 2.14e-07 + }, + { + "word": "stereotypically", + "freq": 2.14e-07 + }, + { + "word": "unrealistically", + "freq": 2.14e-07 + }, + { + "word": "commodification", + "freq": 2.09e-07 + }, + { + "word": "desensitization", + "freq": 2.09e-07 + }, + { + "word": "disorganization", + "freq": 2.09e-07 + }, + { + "word": "electrodynamics", + "freq": 2.04e-07 + }, + { + "word": "generalisations", + "freq": 2.04e-07 + }, + { + "word": "misappropriated", + "freq": 2.04e-07 + }, + { + "word": "underemployment", + "freq": 2.04e-07 + }, + { + "word": "californication", + "freq": 2e-07 + }, + { + "word": "misinterpreting", + "freq": 2e-07 + }, + { + "word": "undistinguished", + "freq": 2e-07 + }, + { + "word": "complementarity", + "freq": 1.95e-07 + }, + { + "word": "intelligibility", + "freq": 1.95e-07 + }, + { + "word": "internalization", + "freq": 1.95e-07 + }, + { + "word": "synchronisation", + "freq": 1.95e-07 + }, + { + "word": "parasympathetic", + "freq": 1.91e-07 + }, + { + "word": "presuppositions", + "freq": 1.91e-07 + }, + { + "word": "acknowledgments", + "freq": 1.82e-07 + }, + { + "word": "miniaturization", + "freq": 1.82e-07 + }, + { + "word": "neoconservative", + "freq": 1.82e-07 + }, + { + "word": "authoritatively", + "freq": 1.78e-07 + }, + { + "word": "conceptualizing", + "freq": 1.78e-07 + }, + { + "word": "democratisation", + "freq": 1.78e-07 + }, + { + "word": "glucocorticoids", + "freq": 1.78e-07 + }, + { + "word": "humanitarianism", + "freq": 1.78e-07 + }, + { + "word": "paleontological", + "freq": 1.78e-07 + }, + { + "word": "polysaccharides", + "freq": 1.78e-07 + }, + { + "word": "therapeutically", + "freq": 1.78e-07 + }, + { + "word": "instrumentality", + "freq": 1.74e-07 + }, + { + "word": "neurophysiology", + "freq": 1.74e-07 + }, + { + "word": "overrepresented", + "freq": 1.74e-07 + }, + { + "word": "discontinuities", + "freq": 1.7e-07 + }, + { + "word": "invulnerability", + "freq": 1.7e-07 + }, + { + "word": "omnidirectional", + "freq": 1.7e-07 + }, + { + "word": "pharmacokinetic", + "freq": 1.7e-07 + }, + { + "word": "ultrasonography", + "freq": 1.7e-07 + }, + { + "word": "hospitalisation", + "freq": 1.66e-07 + }, + { + "word": "methylphenidate", + "freq": 1.66e-07 + }, + { + "word": "microscopically", + "freq": 1.66e-07 + }, + { + "word": "oligonucleotide", + "freq": 1.66e-07 + }, + { + "word": "atherosclerotic", + "freq": 1.62e-07 + }, + { + "word": "conservatorship", + "freq": 1.62e-07 + }, + { + "word": "disrespectfully", + "freq": 1.62e-07 + }, + { + "word": "unrighteousness", + "freq": 1.62e-07 + }, + { + "word": "cinematographic", + "freq": 1.58e-07 + }, + { + "word": "inaccessibility", + "freq": 1.58e-07 + }, + { + "word": "underestimation", + "freq": 1.58e-07 + }, + { + "word": "cosmopolitanism", + "freq": 1.55e-07 + }, + { + "word": "czechoslovakian", + "freq": 1.55e-07 + }, + { + "word": "euphemistically", + "freq": 1.55e-07 + }, + { + "word": "marginalisation", + "freq": 1.55e-07 + }, + { + "word": "pseudoephedrine", + "freq": 1.55e-07 + }, + { + "word": "condescendingly", + "freq": 1.51e-07 + }, + { + "word": "interscholastic", + "freq": 1.51e-07 + }, + { + "word": "neurobiological", + "freq": 1.51e-07 + }, + { + "word": "personalisation", + "freq": 1.51e-07 + }, + { + "word": "americanization", + "freq": 1.48e-07 + }, + { + "word": "anticoagulation", + "freq": 1.48e-07 + }, + { + "word": "perpendicularly", + "freq": 1.48e-07 + }, + { + "word": "infinitesimally", + "freq": 1.45e-07 + }, + { + "word": "astrophysicists", + "freq": 1.41e-07 + }, + { + "word": "counterbalanced", + "freq": 1.41e-07 + }, + { + "word": "predispositions", + "freq": 1.41e-07 + }, + { + "word": "autocorrelation", + "freq": 1.38e-07 + }, + { + "word": "congressionally", + "freq": 1.38e-07 + }, + { + "word": "fivethirtyeight", + "freq": 1.38e-07 + }, + { + "word": "monounsaturated", + "freq": 1.38e-07 + }, + { + "word": "sociolinguistic", + "freq": 1.38e-07 + }, + { + "word": "bioluminescence", + "freq": 1.35e-07 + }, + { + "word": "gravitationally", + "freq": 1.35e-07 + }, + { + "word": "maintainability", + "freq": 1.35e-07 + }, + { + "word": "meaninglessness", + "freq": 1.35e-07 + }, + { + "word": "physicochemical", + "freq": 1.35e-07 + }, + { + "word": "simplifications", + "freq": 1.35e-07 + }, + { + "word": "superintendents", + "freq": 1.32e-07 + }, + { + "word": "compassionately", + "freq": 1.32e-07 + }, + { + "word": "dispassionately", + "freq": 1.32e-07 + }, + { + "word": "heteronormative", + "freq": 1.32e-07 + }, + { + "word": "multilingualism", + "freq": 1.32e-07 + }, + { + "word": "particularities", + "freq": 1.32e-07 + }, + { + "word": "sensationalized", + "freq": 1.32e-07 + }, + { + "word": "palaeontologist", + "freq": 1.29e-07 + }, + { + "word": "aerodynamically", + "freq": 1.26e-07 + }, + { + "word": "commercializing", + "freq": 1.26e-07 + }, + { + "word": "leagueoflegends", + "freq": 1.26e-07 + }, + { + "word": "manoeuvrability", + "freq": 1.26e-07 + }, + { + "word": "reapportionment", + "freq": 1.26e-07 + }, + { + "word": "reestablishment", + "freq": 1.26e-07 + }, + { + "word": "enfranchisement", + "freq": 1.23e-07 + }, + { + "word": "neuroplasticity", + "freq": 1.23e-07 + }, + { + "word": "overconsumption", + "freq": 1.23e-07 + }, + { + "word": "schistosomiasis", + "freq": 1.23e-07 + }, + { + "word": "chromatographic", + "freq": 1.2e-07 + }, + { + "word": "decriminalizing", + "freq": 1.2e-07 + }, + { + "word": "kindergarteners", + "freq": 1.2e-07 + }, + { + "word": "personalfinance", + "freq": 1.2e-07 + }, + { + "word": "realdonaldtrump", + "freq": 1.2e-07 + }, + { + "word": "renormalization", + "freq": 1.2e-07 + }, + { + "word": "airconditioning", + "freq": 1.17e-07 + }, + { + "word": "discombobulated", + "freq": 1.17e-07 + }, + { + "word": "micromanagement", + "freq": 1.17e-07 + }, + { + "word": "miscalculations", + "freq": 1.17e-07 + }, + { + "word": "anticompetitive", + "freq": 1.15e-07 + }, + { + "word": "countercultural", + "freq": 1.15e-07 + }, + { + "word": "destructiveness", + "freq": 1.15e-07 + }, + { + "word": "diphenhydramine", + "freq": 1.15e-07 + }, + { + "word": "gluconeogenesis", + "freq": 1.15e-07 + }, + { + "word": "misapprehension", + "freq": 1.15e-07 + }, + { + "word": "recertification", + "freq": 1.15e-07 + }, + { + "word": "reconciliations", + "freq": 1.15e-07 + }, + { + "word": "spermatogenesis", + "freq": 1.15e-07 + }, + { + "word": "unquestioningly", + "freq": 1.15e-07 + }, + { + "word": "noncommissioned", + "freq": 1.12e-07 + }, + { + "word": "reorganizations", + "freq": 1.12e-07 + }, + { + "word": "stereochemistry", + "freq": 1.12e-07 + }, + { + "word": "counterexamples", + "freq": 1.1e-07 + }, + { + "word": "cytomegalovirus", + "freq": 1.1e-07 + }, + { + "word": "inconveniencing", + "freq": 1.1e-07 + }, + { + "word": "internationales", + "freq": 1.1e-07 + }, + { + "word": "neuroprotective", + "freq": 1.1e-07 + }, + { + "word": "optoelectronics", + "freq": 1.1e-07 + }, + { + "word": "pharmacotherapy", + "freq": 1.1e-07 + }, + { + "word": "rumpelstiltskin", + "freq": 1.1e-07 + }, + { + "word": "criminalisation", + "freq": 1.07e-07 + }, + { + "word": "heartbreakingly", + "freq": 1.07e-07 + }, + { + "word": "horticulturists", + "freq": 1.07e-07 + }, + { + "word": "incomprehension", + "freq": 1.07e-07 + }, + { + "word": "interferometric", + "freq": 1.07e-07 + }, + { + "word": "bacteriological", + "freq": 1.05e-07 + }, + { + "word": "chloramphenicol", + "freq": 1.05e-07 + }, + { + "word": "familiarization", + "freq": 1.05e-07 + }, + { + "word": "microbiologists", + "freq": 1.05e-07 + }, + { + "word": "microelectronic", + "freq": 1.05e-07 + }, + { + "word": "microstructures", + "freq": 1.05e-07 + }, + { + "word": "multilateralism", + "freq": 1.05e-07 + }, + { + "word": "sadomasochistic", + "freq": 1.05e-07 + }, + { + "word": "schwarzeneggers", + "freq": 1.05e-07 + }, + { + "word": "acclimatization", + "freq": 1.02e-07 + }, + { + "word": "compressibility", + "freq": 1.02e-07 + }, + { + "word": "electrophoretic", + "freq": 1.02e-07 + }, + { + "word": "interprovincial", + "freq": 1.02e-07 + }, + { + "word": "presbyterianism", + "freq": 1.02e-07 + }, + { + "word": "temperamentally", + "freq": 1.02e-07 + }, + { + "word": "topographically", + "freq": 1.02e-07 + }, + { + "word": "anticholinergic", + "freq": 1e-07 + }, + { + "word": "computerization", + "freq": 1e-07 + }, + { + "word": "cryptosporidium", + "freq": 1e-07 + }, + { + "word": "impossibilities", + "freq": 1e-07 + }, + { + "word": "schizoaffective", + "freq": 1e-07 + }, + { + "word": "immunoglobulins", + "freq": 9.77e-08 + }, + { + "word": "parthenogenesis", + "freq": 9.77e-08 + }, + { + "word": "polychlorinated", + "freq": 9.77e-08 + }, + { + "word": "pretentiousness", + "freq": 9.77e-08 + }, + { + "word": "procrastinators", + "freq": 9.77e-08 + }, + { + "word": "revolutionising", + "freq": 9.77e-08 + }, + { + "word": "controllability", + "freq": 9.55e-08 + }, + { + "word": "disconcertingly", + "freq": 9.55e-08 + }, + { + "word": "inconspicuously", + "freq": 9.33e-08 + }, + { + "word": "microstructural", + "freq": 9.33e-08 + }, + { + "word": "supercapacitors", + "freq": 9.33e-08 + }, + { + "word": "synergistically", + "freq": 9.33e-08 + }, + { + "word": "counterargument", + "freq": 9.12e-08 + }, + { + "word": "ethnomusicology", + "freq": 9.12e-08 + }, + { + "word": "prekindergarten", + "freq": 9.12e-08 + }, + { + "word": "proinflammatory", + "freq": 9.12e-08 + }, + { + "word": "thromboembolism", + "freq": 9.12e-08 + }, + { + "word": "consciousnesses", + "freq": 8.91e-08 + }, + { + "word": "consequentially", + "freq": 8.91e-08 + }, + { + "word": "oligosaccharide", + "freq": 8.91e-08 + }, + { + "word": "organophosphate", + "freq": 8.91e-08 + }, + { + "word": "oversimplifying", + "freq": 8.91e-08 + }, + { + "word": "unprecedentedly", + "freq": 8.91e-08 + }, + { + "word": "intraperitoneal", + "freq": 8.71e-08 + }, + { + "word": "multiplications", + "freq": 8.71e-08 + }, + { + "word": "transportations", + "freq": 8.71e-08 + }, + { + "word": "unpronounceable", + "freq": 8.71e-08 + }, + { + "word": "algorithmically", + "freq": 8.51e-08 + }, + { + "word": "contextualizing", + "freq": 8.51e-08 + }, + { + "word": "electroacoustic", + "freq": 8.51e-08 + }, + { + "word": "industrializing", + "freq": 8.51e-08 + }, + { + "word": "interferometers", + "freq": 8.51e-08 + }, + { + "word": "anthropocentric", + "freq": 8.32e-08 + }, + { + "word": "complementation", + "freq": 8.32e-08 + }, + { + "word": "expressionistic", + "freq": 8.32e-08 + }, + { + "word": "lightheadedness", + "freq": 8.32e-08 + }, + { + "word": "progressiveness", + "freq": 8.32e-08 + }, + { + "word": "superintendence", + "freq": 8.32e-08 + }, + { + "word": "superstructures", + "freq": 8.32e-08 + }, + { + "word": "videoconference", + "freq": 8.32e-08 + }, + { + "word": "circumnavigated", + "freq": 8.13e-08 + }, + { + "word": "distributorship", + "freq": 8.13e-08 + }, + { + "word": "educationalists", + "freq": 8.13e-08 + }, + { + "word": "montgomeryshire", + "freq": 8.13e-08 + }, + { + "word": "anticonvulsants", + "freq": 7.94e-08 + }, + { + "word": "decarboxylation", + "freq": 7.94e-08 + }, + { + "word": "denitrification", + "freq": 7.94e-08 + }, + { + "word": "huntingdonshire", + "freq": 7.76e-08 + }, + { + "word": "materialization", + "freq": 7.76e-08 + }, + { + "word": "transferability", + "freq": 7.76e-08 + }, + { + "word": "carcinogenicity", + "freq": 7.59e-08 + }, + { + "word": "discriminations", + "freq": 7.59e-08 + }, + { + "word": "hemochromatosis", + "freq": 7.59e-08 + }, + { + "word": "heterochromatin", + "freq": 7.59e-08 + }, + { + "word": "phosphorescence", + "freq": 7.59e-08 + }, + { + "word": "postoperatively", + "freq": 7.59e-08 + }, + { + "word": "segregationists", + "freq": 7.59e-08 + }, + { + "word": "acclimatisation", + "freq": 7.41e-08 + }, + { + "word": "biogeochemistry", + "freq": 7.41e-08 + }, + { + "word": "concessionaires", + "freq": 7.41e-08 + }, + { + "word": "investigaciones", + "freq": 7.41e-08 + }, + { + "word": "myelodysplastic", + "freq": 7.41e-08 + }, + { + "word": "neuropsychiatry", + "freq": 7.41e-08 + }, + { + "word": "rumplestiltskin", + "freq": 7.41e-08 + }, + { + "word": "suburbanization", + "freq": 7.41e-08 + }, + { + "word": "uncommunicative", + "freq": 7.41e-08 + }, + { + "word": "categorizations", + "freq": 7.24e-08 + }, + { + "word": "littlebigplanet", + "freq": 7.24e-08 + }, + { + "word": "overstimulation", + "freq": 7.24e-08 + }, + { + "word": "parallelization", + "freq": 7.24e-08 + }, + { + "word": "preconditioning", + "freq": 7.24e-08 + }, + { + "word": "serendipitously", + "freq": 7.24e-08 + }, + { + "word": "uninterruptible", + "freq": 7.24e-08 + }, + { + "word": "bioaccumulation", + "freq": 7.08e-08 + }, + { + "word": "biotechnologies", + "freq": 7.08e-08 + }, + { + "word": "dinoflagellates", + "freq": 7.08e-08 + }, + { + "word": "merchantability", + "freq": 7.08e-08 + }, + { + "word": "preservationist", + "freq": 7.08e-08 + }, + { + "word": "prognostication", + "freq": 7.08e-08 + }, + { + "word": "prohibitionists", + "freq": 7.08e-08 + }, + { + "word": "regionalization", + "freq": 7.08e-08 + }, + { + "word": "systematization", + "freq": 7.08e-08 + }, + { + "word": "representatives", + "freq": 6.92e-08 + }, + { + "word": "bisphosphonates", + "freq": 6.92e-08 + }, + { + "word": "insurrectionary", + "freq": 6.92e-08 + }, + { + "word": "intertextuality", + "freq": 6.92e-08 + }, + { + "word": "lymphadenopathy", + "freq": 6.92e-08 + }, + { + "word": "photomultiplier", + "freq": 6.92e-08 + }, + { + "word": "thirtysomething", + "freq": 6.92e-08 + }, + { + "word": "thoughtlessness", + "freq": 6.92e-08 + }, + { + "word": "compositionally", + "freq": 6.76e-08 + }, + { + "word": "electroporation", + "freq": 6.76e-08 + }, + { + "word": "interdependency", + "freq": 6.76e-08 + }, + { + "word": "nonprescription", + "freq": 6.76e-08 + }, + { + "word": "nucleosynthesis", + "freq": 6.76e-08 + }, + { + "word": "preternaturally", + "freq": 6.76e-08 + }, + { + "word": "twentysomething", + "freq": 6.76e-08 + }, + { + "word": "crystallisation", + "freq": 6.61e-08 + }, + { + "word": "disproportional", + "freq": 6.61e-08 + }, + { + "word": "constructionist", + "freq": 6.46e-08 + }, + { + "word": "counterattacked", + "freq": 6.46e-08 + }, + { + "word": "inquisitiveness", + "freq": 6.46e-08 + }, + { + "word": "intramuscularly", + "freq": 6.46e-08 + }, + { + "word": "kindertransport", + "freq": 6.46e-08 + }, + { + "word": "monosaccharides", + "freq": 6.46e-08 + }, + { + "word": "neoconservatism", + "freq": 6.46e-08 + }, + { + "word": "specialisations", + "freq": 6.46e-08 + }, + { + "word": "uninterruptedly", + "freq": 6.46e-08 + }, + { + "word": "cholecystectomy", + "freq": 6.31e-08 + }, + { + "word": "dissimilarities", + "freq": 6.31e-08 + }, + { + "word": "interrogatories", + "freq": 6.31e-08 + }, + { + "word": "medulloblastoma", + "freq": 6.31e-08 + }, + { + "word": "neuroscientific", + "freq": 6.31e-08 + }, + { + "word": "proprietorships", + "freq": 6.31e-08 + }, + { + "word": "trypanosomiasis", + "freq": 6.31e-08 + }, + { + "word": "adenocarcinomas", + "freq": 6.17e-08 + }, + { + "word": "destabilisation", + "freq": 6.17e-08 + }, + { + "word": "parametrization", + "freq": 6.17e-08 + }, + { + "word": "postcolonialism", + "freq": 6.17e-08 + }, + { + "word": "problematically", + "freq": 6.17e-08 + }, + { + "word": "superimposition", + "freq": 6.17e-08 + }, + { + "word": "endocannabinoid", + "freq": 6.03e-08 + }, + { + "word": "existentialists", + "freq": 6.03e-08 + }, + { + "word": "jurisprudential", + "freq": 6.03e-08 + }, + { + "word": "logarithmically", + "freq": 6.03e-08 + }, + { + "word": "operationalized", + "freq": 6.03e-08 + }, + { + "word": "retroperitoneal", + "freq": 6.03e-08 + }, + { + "word": "ultrafiltration", + "freq": 6.03e-08 + }, + { + "word": "unprepossessing", + "freq": 6.03e-08 + }, + { + "word": "desulfurization", + "freq": 5.89e-08 + }, + { + "word": "experimentalist", + "freq": 5.89e-08 + }, + { + "word": "friedrichshafen", + "freq": 5.89e-08 + }, + { + "word": "professionalize", + "freq": 5.89e-08 + }, + { + "word": "daimlerchrysler", + "freq": 5.75e-08 + }, + { + "word": "electronegative", + "freq": 5.75e-08 + }, + { + "word": "exemplification", + "freq": 5.75e-08 + }, + { + "word": "insignificantly", + "freq": 5.75e-08 + }, + { + "word": "obstructionists", + "freq": 5.75e-08 + }, + { + "word": "superconductive", + "freq": 5.75e-08 + }, + { + "word": "unreconstructed", + "freq": 5.75e-08 + }, + { + "word": "hydroxybutyrate", + "freq": 5.62e-08 + }, + { + "word": "immunotherapies", + "freq": 5.62e-08 + }, + { + "word": "nanocrystalline", + "freq": 5.62e-08 + }, + { + "word": "neuromodulation", + "freq": 5.62e-08 + }, + { + "word": "photoionization", + "freq": 5.62e-08 + }, + { + "word": "vascularization", + "freq": 5.62e-08 + }, + { + "word": "constructionism", + "freq": 5.5e-08 + }, + { + "word": "counterfactuals", + "freq": 5.5e-08 + }, + { + "word": "docosahexaenoic", + "freq": 5.5e-08 + }, + { + "word": "immunologically", + "freq": 5.5e-08 + }, + { + "word": "industriousness", + "freq": 5.5e-08 + }, + { + "word": "overdevelopment", + "freq": 5.5e-08 + }, + { + "word": "pharmacodynamic", + "freq": 5.5e-08 + }, + { + "word": "configurational", + "freq": 5.37e-08 + }, + { + "word": "superintendency", + "freq": 5.37e-08 + }, + { + "word": "biopsychosocial", + "freq": 5.25e-08 + }, + { + "word": "dichloromethane", + "freq": 5.25e-08 + }, + { + "word": "experimentalism", + "freq": 5.25e-08 + }, + { + "word": "mechanistically", + "freq": 5.25e-08 + }, + { + "word": "nonprofessional", + "freq": 5.25e-08 + }, + { + "word": "tetrahydrofuran", + "freq": 5.25e-08 + }, + { + "word": "bronchodilators", + "freq": 5.13e-08 + }, + { + "word": "macroscopically", + "freq": 5.13e-08 + }, + { + "word": "ultrastructural", + "freq": 5.13e-08 + }, + { + "word": "africanamerican", + "freq": 5.01e-08 + }, + { + "word": "decontaminating", + "freq": 5.01e-08 + }, + { + "word": "demonstratively", + "freq": 5.01e-08 + }, + { + "word": "excommunicating", + "freq": 5.01e-08 + }, + { + "word": "internationalen", + "freq": 5.01e-08 + }, + { + "word": "microelectrodes", + "freq": 5.01e-08 + }, + { + "word": "nearsightedness", + "freq": 5.01e-08 + }, + { + "word": "oligomerization", + "freq": 5.01e-08 + }, + { + "word": "preimplantation", + "freq": 5.01e-08 + }, + { + "word": "remanufacturing", + "freq": 5.01e-08 + }, + { + "word": "underinvestment", + "freq": 5.01e-08 + }, + { + "word": "cannibalization", + "freq": 4.9e-08 + }, + { + "word": "conventionality", + "freq": 4.9e-08 + }, + { + "word": "irreversibility", + "freq": 4.9e-08 + }, + { + "word": "masculinization", + "freq": 4.9e-08 + }, + { + "word": "ritualistically", + "freq": 4.9e-08 + }, + { + "word": "approachability", + "freq": 4.79e-08 + }, + { + "word": "dehydrogenation", + "freq": 4.79e-08 + }, + { + "word": "discoverability", + "freq": 4.79e-08 + }, + { + "word": "intraepithelial", + "freq": 4.79e-08 + }, + { + "word": "lexicographical", + "freq": 4.79e-08 + }, + { + "word": "uncharacterized", + "freq": 4.79e-08 + }, + { + "word": "vasoconstrictor", + "freq": 4.79e-08 + }, + { + "word": "assimilationist", + "freq": 4.68e-08 + }, + { + "word": "circumscription", + "freq": 4.68e-08 + }, + { + "word": "inadmissibility", + "freq": 4.68e-08 + }, + { + "word": "insurrectionist", + "freq": 4.68e-08 + }, + { + "word": "intussusception", + "freq": 4.68e-08 + }, + { + "word": "uncomprehending", + "freq": 4.68e-08 + }, + { + "word": "unobjectionable", + "freq": 4.68e-08 + }, + { + "word": "biostratigraphy", + "freq": 4.57e-08 + }, + { + "word": "externalization", + "freq": 4.57e-08 + }, + { + "word": "historiographic", + "freq": 4.57e-08 + }, + { + "word": "inattentiveness", + "freq": 4.57e-08 + }, + { + "word": "neuroanatomical", + "freq": 4.57e-08 + }, + { + "word": "reinvestigation", + "freq": 4.57e-08 + }, + { + "word": "supersaturation", + "freq": 4.57e-08 + }, + { + "word": "connoisseurship", + "freq": 4.47e-08 + }, + { + "word": "ecclesiological", + "freq": 4.47e-08 + }, + { + "word": "histopathologic", + "freq": 4.47e-08 + }, + { + "word": "historiographer", + "freq": 4.47e-08 + }, + { + "word": "hydrogeological", + "freq": 4.47e-08 + }, + { + "word": "aristotelianism", + "freq": 4.37e-08 + }, + { + "word": "corynebacterium", + "freq": 4.37e-08 + }, + { + "word": "hermaphroditism", + "freq": 4.37e-08 + }, + { + "word": "intersubjective", + "freq": 4.37e-08 + }, + { + "word": "pessimistically", + "freq": 4.27e-08 + }, + { + "word": "photosynthesize", + "freq": 4.27e-08 + }, + { + "word": "atmospherically", + "freq": 4.17e-08 + }, + { + "word": "biogeographical", + "freq": 4.17e-08 + }, + { + "word": "counterproposal", + "freq": 4.17e-08 + }, + { + "word": "sympathomimetic", + "freq": 4.17e-08 + }, + { + "word": "anteroposterior", + "freq": 4.07e-08 + }, + { + "word": "discontinuously", + "freq": 4.07e-08 + }, + { + "word": "intermodulation", + "freq": 4.07e-08 + }, + { + "word": "memorialization", + "freq": 4.07e-08 + }, + { + "word": "preconstruction", + "freq": 4.07e-08 + }, + { + "word": "preregistration", + "freq": 4.07e-08 + }, + { + "word": "semitransparent", + "freq": 4.07e-08 + }, + { + "word": "parthenogenetic", + "freq": 3.98e-08 + }, + { + "word": "substitutionary", + "freq": 3.98e-08 + }, + { + "word": "symptomatically", + "freq": 3.98e-08 + }, + { + "word": "incommensurable", + "freq": 3.8e-08 + }, + { + "word": "parliamentarism", + "freq": 3.8e-08 + }, + { + "word": "nontransferable", + "freq": 3.72e-08 + }, + { + "word": "parenthetically", + "freq": 3.72e-08 + }, + { + "word": "supernaturalism", + "freq": 3.72e-08 + }, + { + "word": "adventurousness", + "freq": 3.63e-08 + }, + { + "word": "agriculturalist", + "freq": 3.63e-08 + }, + { + "word": "noncommunicable", + "freq": 3.63e-08 + }, + { + "word": "phenolphthalein", + "freq": 3.63e-08 + }, + { + "word": "superheterodyne", + "freq": 3.63e-08 + }, + { + "word": "inconsiderately", + "freq": 3.55e-08 + }, + { + "word": "intracellularly", + "freq": 3.55e-08 + }, + { + "word": "reconsolidation", + "freq": 3.55e-08 + }, + { + "word": "translationally", + "freq": 3.55e-08 + }, + { + "word": "decarbonization", + "freq": 3.47e-08 + }, + { + "word": "thalamocortical", + "freq": 3.39e-08 + }, + { + "word": "unauthenticated", + "freq": 3.39e-08 + }, + { + "word": "aluminosilicate", + "freq": 3.31e-08 + }, + { + "word": "draughtsmanship", + "freq": 3.31e-08 + }, + { + "word": "intercomparison", + "freq": 3.31e-08 + }, + { + "word": "perfectionistic", + "freq": 3.31e-08 + }, + { + "word": "trigonometrical", + "freq": 3.31e-08 + }, + { + "word": "unchallengeable", + "freq": 3.31e-08 + }, + { + "word": "unparliamentary", + "freq": 3.31e-08 + }, + { + "word": "europeanization", + "freq": 3.24e-08 + }, + { + "word": "reincorporation", + "freq": 3.24e-08 + }, + { + "word": "spinocerebellar", + "freq": 3.24e-08 + }, + { + "word": "autoradiography", + "freq": 3.16e-08 + }, + { + "word": "thermochemistry", + "freq": 3.16e-08 + }, + { + "word": "cholecystokinin", + "freq": 3.09e-08 + }, + { + "word": "hypopituitarism", + "freq": 3.09e-08 + }, + { + "word": "intellectualize", + "freq": 3.09e-08 + }, + { + "word": "interconversion", + "freq": 3.09e-08 + }, + { + "word": "proselytization", + "freq": 3.09e-08 + }, + { + "word": "disinterestedly", + "freq": 3.02e-08 + }, + { + "word": "ethylenediamine", + "freq": 3.02e-08 + }, + { + "word": "interfraternity", + "freq": 3.02e-08 + }, + { + "word": "observationally", + "freq": 3.02e-08 + }, + { + "word": "uncomplimentary", + "freq": 3.02e-08 + }, + { + "word": "agranulocytosis", + "freq": 2.95e-08 + }, + { + "word": "metasedimentary", + "freq": 2.95e-08 + }, + { + "word": "electropositive", + "freq": 2.88e-08 + }, + { + "word": "extrajudicially", + "freq": 2.88e-08 + }, + { + "word": "stratigraphical", + "freq": 2.88e-08 + }, + { + "word": "superstitiously", + "freq": 2.88e-08 + }, + { + "word": "undemonstrative", + "freq": 2.88e-08 + }, + { + "word": "antepenultimate", + "freq": 2.82e-08 + }, + { + "word": "distractibility", + "freq": 2.82e-08 + }, + { + "word": "electrosurgical", + "freq": 2.82e-08 + }, + { + "word": "intellectuality", + "freq": 2.82e-08 + }, + { + "word": "interuniversity", + "freq": 2.82e-08 + }, + { + "word": "mischievousness", + "freq": 2.82e-08 + }, + { + "word": "photogrammetric", + "freq": 2.82e-08 + }, + { + "word": "supraclavicular", + "freq": 2.82e-08 + }, + { + "word": "typographically", + "freq": 2.82e-08 + }, + { + "word": "bronchoalveolar", + "freq": 2.75e-08 + }, + { + "word": "contemporaneity", + "freq": 2.75e-08 + }, + { + "word": "weatherproofing", + "freq": 2.75e-08 + }, + { + "word": "interphalangeal", + "freq": 2.69e-08 + }, + { + "word": "recognizability", + "freq": 2.69e-08 + }, + { + "word": "choriocarcinoma", + "freq": 2.63e-08 + }, + { + "word": "impenetrability", + "freq": 2.63e-08 + }, + { + "word": "introspectively", + "freq": 2.63e-08 + }, + { + "word": "radiotelegraphy", + "freq": 2.63e-08 + }, + { + "word": "mischaracterize", + "freq": 2.57e-08 + }, + { + "word": "autotransformer", + "freq": 2.51e-08 + }, + { + "word": "brachiocephalic", + "freq": 2.51e-08 + }, + { + "word": "disentanglement", + "freq": 2.51e-08 + }, + { + "word": "electrodialysis", + "freq": 2.51e-08 + }, + { + "word": "psychiatrically", + "freq": 2.51e-08 + }, + { + "word": "nonconventional", + "freq": 2.45e-08 + }, + { + "word": "pentaerythritol", + "freq": 2.45e-08 + }, + { + "word": "reappropriation", + "freq": 2.45e-08 + }, + { + "word": "temporoparietal", + "freq": 2.45e-08 + }, + { + "word": "contradictorily", + "freq": 2.4e-08 + }, + { + "word": "heterogeneously", + "freq": 2.4e-08 + }, + { + "word": "hypochondriasis", + "freq": 2.4e-08 + }, + { + "word": "retroreflective", + "freq": 2.4e-08 + }, + { + "word": "contentiousness", + "freq": 2.34e-08 + }, + { + "word": "disarticulation", + "freq": 2.34e-08 + }, + { + "word": "demagnetization", + "freq": 2.29e-08 + }, + { + "word": "photosensitizer", + "freq": 2.29e-08 + }, + { + "word": "sanctimoniously", + "freq": 2.29e-08 + }, + { + "word": "anticlericalism", + "freq": 2.24e-08 + }, + { + "word": "trinitrotoluene", + "freq": 2.24e-08 + }, + { + "word": "unacceptability", + "freq": 2.24e-08 + }, + { + "word": "deuteronomistic", + "freq": 2.19e-08 + }, + { + "word": "nonintervention", + "freq": 2.19e-08 + }, + { + "word": "conventionalism", + "freq": 2.14e-08 + }, + { + "word": "instrumentalism", + "freq": 2.14e-08 + }, + { + "word": "noninterference", + "freq": 2.14e-08 + }, + { + "word": "thermodynamical", + "freq": 2.14e-08 + }, + { + "word": "unimaginatively", + "freq": 2.14e-08 + }, + { + "word": "acquisitiveness", + "freq": 2.09e-08 + }, + { + "word": "heterochromatic", + "freq": 2.09e-08 + }, + { + "word": "interestingness", + "freq": 2.09e-08 + }, + { + "word": "requalification", + "freq": 2.09e-08 + }, + { + "word": "leatherstocking", + "freq": 2.04e-08 + }, + { + "word": "subconjunctival", + "freq": 2.04e-08 + }, + { + "word": "ultracentrifuge", + "freq": 2.04e-08 + }, + { + "word": "contemplatively", + "freq": 2e-08 + }, + { + "word": "prehistorically", + "freq": 2e-08 + }, + { + "word": "brachioradialis", + "freq": 1.95e-08 + }, + { + "word": "gigantopithecus", + "freq": 1.95e-08 + }, + { + "word": "mineralogically", + "freq": 1.95e-08 + }, + { + "word": "unknowledgeable", + "freq": 1.95e-08 + }, + { + "word": "immortalization", + "freq": 1.91e-08 + }, + { + "word": "microdissection", + "freq": 1.91e-08 + }, + { + "word": "ophthalmoplegia", + "freq": 1.91e-08 + }, + { + "word": "understandingly", + "freq": 1.91e-08 + }, + { + "word": "circularization", + "freq": 1.86e-08 + }, + { + "word": "interindividual", + "freq": 1.86e-08 + }, + { + "word": "isothiocyanates", + "freq": 1.86e-08 + }, + { + "word": "nasopharyngitis", + "freq": 1.86e-08 + }, + { + "word": "photomechanical", + "freq": 1.86e-08 + }, + { + "word": "pulchritudinous", + "freq": 1.86e-08 + }, + { + "word": "triethanolamine", + "freq": 1.86e-08 + }, + { + "word": "photochemically", + "freq": 1.82e-08 + }, + { + "word": "pithecanthropus", + "freq": 1.82e-08 + }, + { + "word": "sociobiological", + "freq": 1.82e-08 + }, + { + "word": "apocalyptically", + "freq": 1.78e-08 + }, + { + "word": "countermovement", + "freq": 1.78e-08 + }, + { + "word": "dolichocephalic", + "freq": 1.78e-08 + }, + { + "word": "immunochemistry", + "freq": 1.78e-08 + }, + { + "word": "psychosynthesis", + "freq": 1.78e-08 + }, + { + "word": "redetermination", + "freq": 1.78e-08 + }, + { + "word": "communicatively", + "freq": 1.74e-08 + }, + { + "word": "exteriorization", + "freq": 1.74e-08 + }, + { + "word": "platyhelminthes", + "freq": 1.74e-08 + }, + { + "word": "trichloroacetic", + "freq": 1.74e-08 + }, + { + "word": "conspicuousness", + "freq": 1.7e-08 + }, + { + "word": "nonagricultural", + "freq": 1.7e-08 + }, + { + "word": "hydrostatically", + "freq": 1.66e-08 + }, + { + "word": "inconsideration", + "freq": 1.66e-08 + }, + { + "word": "indeterminately", + "freq": 1.66e-08 + }, + { + "word": "interrogatively", + "freq": 1.66e-08 + }, + { + "word": "palaeogeography", + "freq": 1.66e-08 + }, + { + "word": "thermostability", + "freq": 1.66e-08 + }, + { + "word": "unaccommodating", + "freq": 1.66e-08 + }, + { + "word": "circumvallation", + "freq": 1.62e-08 + }, + { + "word": "decarburization", + "freq": 1.62e-08 + }, + { + "word": "flibbertigibbet", + "freq": 1.62e-08 + }, + { + "word": "indeterministic", + "freq": 1.62e-08 + }, + { + "word": "indissolubility", + "freq": 1.62e-08 + }, + { + "word": "uncompassionate", + "freq": 1.62e-08 + }, + { + "word": "centrosymmetric", + "freq": 1.58e-08 + }, + { + "word": "cyclopentadiene", + "freq": 1.58e-08 + }, + { + "word": "hypercoagulable", + "freq": 1.58e-08 + }, + { + "word": "overzealousness", + "freq": 1.58e-08 + }, + { + "word": "hypochondriacal", + "freq": 1.55e-08 + }, + { + "word": "noninflammatory", + "freq": 1.55e-08 + }, + { + "word": "paleogeographic", + "freq": 1.55e-08 + }, + { + "word": "unexceptionable", + "freq": 1.55e-08 + }, + { + "word": "argumentatively", + "freq": 1.51e-08 + }, + { + "word": "exhibitionistic", + "freq": 1.51e-08 + }, + { + "word": "extracellularly", + "freq": 1.51e-08 + }, + { + "word": "oligohydramnios", + "freq": 1.51e-08 + }, + { + "word": "restrictiveness", + "freq": 1.51e-08 + }, + { + "word": "decalcification", + "freq": 1.48e-08 + }, + { + "word": "osteochondritis", + "freq": 1.48e-08 + }, + { + "word": "thalassotherapy", + "freq": 1.48e-08 + }, + { + "word": "conventionalist", + "freq": 1.45e-08 + }, + { + "word": "nonmetropolitan", + "freq": 1.45e-08 + }, + { + "word": "plethysmography", + "freq": 1.45e-08 + }, + { + "word": "uncomplainingly", + "freq": 1.45e-08 + }, + { + "word": "confessionalism", + "freq": 1.41e-08 + }, + { + "word": "gastronomically", + "freq": 1.41e-08 + }, + { + "word": "phosphocreatine", + "freq": 1.41e-08 + }, + { + "word": "resurrectionist", + "freq": 1.41e-08 + }, + { + "word": "alphabetization", + "freq": 1.38e-08 + }, + { + "word": "approximatively", + "freq": 1.38e-08 + }, + { + "word": "exchangeability", + "freq": 1.38e-08 + }, + { + "word": "flirtatiousness", + "freq": 1.38e-08 + }, + { + "word": "maldistribution", + "freq": 1.38e-08 + }, + { + "word": "annihilationism", + "freq": 1.35e-08 + }, + { + "word": "counterweighted", + "freq": 1.35e-08 + }, + { + "word": "hemangiosarcoma", + "freq": 1.35e-08 + }, + { + "word": "neuroepithelial", + "freq": 1.35e-08 + }, + { + "word": "orthophosphoric", + "freq": 1.35e-08 + }, + { + "word": "picturesqueness", + "freq": 1.35e-08 + }, + { + "word": "underproduction", + "freq": 1.35e-08 + }, + { + "word": "uninterpretable", + "freq": 1.35e-08 + }, + { + "word": "cataclysmically", + "freq": 1.32e-08 + }, + { + "word": "deacidification", + "freq": 1.32e-08 + }, + { + "word": "lackadaisically", + "freq": 1.32e-08 + }, + { + "word": "magnetoelectric", + "freq": 1.32e-08 + }, + { + "word": "retropharyngeal", + "freq": 1.32e-08 + }, + { + "word": "unpretentiously", + "freq": 1.32e-08 + }, + { + "word": "blameworthiness", + "freq": 1.29e-08 + }, + { + "word": "horticulturally", + "freq": 1.29e-08 + }, + { + "word": "purposelessness", + "freq": 1.29e-08 + }, + { + "word": "ontogenetically", + "freq": 1.26e-08 + }, + { + "word": "parasitological", + "freq": 1.26e-08 + }, + { + "word": "particularistic", + "freq": 1.26e-08 + }, + { + "word": "supernaturalist", + "freq": 1.26e-08 + }, + { + "word": "defenselessness", + "freq": 1.23e-08 + }, + { + "word": "intellectualist", + "freq": 1.23e-08 + }, + { + "word": "oceanographical", + "freq": 1.23e-08 + }, + { + "word": "christadelphian", + "freq": 1.2e-08 + }, + { + "word": "misconstruction", + "freq": 1.2e-08 + }, + { + "word": "porphyrogenitus", + "freq": 1.2e-08 + }, + { + "word": "syllabification", + "freq": 1.2e-08 + }, + { + "word": "unemployability", + "freq": 1.2e-08 + }, + { + "word": "autotransfusion", + "freq": 1.17e-08 + }, + { + "word": "caryophyllaceae", + "freq": 1.17e-08 + }, + { + "word": "communicability", + "freq": 1.17e-08 + }, + { + "word": "radiometrically", + "freq": 1.17e-08 + }, + { + "word": "skeletonization", + "freq": 1.17e-08 + }, + { + "word": "hydrometallurgy", + "freq": 1.15e-08 + }, + { + "word": "inspirationally", + "freq": 1.15e-08 + }, + { + "word": "irresistibility", + "freq": 1.15e-08 + }, + { + "word": "phytogeographic", + "freq": 1.15e-08 + }, + { + "word": "pterygopalatine", + "freq": 1.15e-08 + }, + { + "word": "erythromelalgia", + "freq": 1.12e-08 + }, + { + "word": "ornithorhynchus", + "freq": 1.12e-08 + }, + { + "word": "phytopathogenic", + "freq": 1.12e-08 + }, + { + "word": "rhombencephalon", + "freq": 1.12e-08 + }, + { + "word": "devitrification", + "freq": 1.1e-08 + }, + { + "word": "gentlemanliness", + "freq": 1.1e-08 + }, + { + "word": "hypercorrection", + "freq": 1.1e-08 + }, + { + "word": "nonconstructive", + "freq": 1.1e-08 + }, + { + "word": "photomicrograph", + "freq": 1.1e-08 + }, + { + "word": "pleuropneumonia", + "freq": 1.1e-08 + }, + { + "word": "transpositional", + "freq": 1.1e-08 + }, + { + "word": "professionality", + "freq": 1.07e-08 + }, + { + "word": "coprecipitation", + "freq": 1.05e-08 + }, + { + "word": "incomparability", + "freq": 1.05e-08 + }, + { + "word": "interlaboratory", + "freq": 1.05e-08 + }, + { + "word": "photoactivation", + "freq": 1.05e-08 + }, + { + "word": "comfortableness", + "freq": 1.02e-08 + }, + { + "word": "dermatophytosis", + "freq": 1.02e-08 + }, + { + "word": "inapplicability", + "freq": 1.02e-08 + } + ], + "16": [ + { + "word": "responsibilities", + "freq": 1.41e-05 + }, + { + "word": "misunderstanding", + "freq": 5.01e-06 + }, + { + "word": "unconstitutional", + "freq": 4.47e-06 + }, + { + "word": "entrepreneurship", + "freq": 3.72e-06 + }, + { + "word": "characterization", + "freq": 3.39e-06 + }, + { + "word": "disproportionate", + "freq": 2.19e-06 + }, + { + "word": "gastrointestinal", + "freq": 1.86e-06 + }, + { + "word": "enthusiastically", + "freq": 1.78e-06 + }, + { + "word": "incomprehensible", + "freq": 1.48e-06 + }, + { + "word": "intercontinental", + "freq": 1.41e-06 + }, + { + "word": "autobiographical", + "freq": 1.38e-06 + }, + { + "word": "disqualification", + "freq": 1.29e-06 + }, + { + "word": "constitutionally", + "freq": 1.26e-06 + }, + { + "word": "extraterrestrial", + "freq": 1.26e-06 + }, + { + "word": "multiculturalism", + "freq": 1.23e-06 + }, + { + "word": "authoritarianism", + "freq": 1e-06 + }, + { + "word": "transformational", + "freq": 1e-06 + }, + { + "word": "indiscriminately", + "freq": 9.55e-07 + }, + { + "word": "northamptonshire", + "freq": 9.12e-07 + }, + { + "word": "parliamentarians", + "freq": 8.91e-07 + }, + { + "word": "interoperability", + "freq": 8.71e-07 + }, + { + "word": "environmentalist", + "freq": 8.32e-07 + }, + { + "word": "underrepresented", + "freq": 8.13e-07 + }, + { + "word": "characterisation", + "freq": 7.76e-07 + }, + { + "word": "decentralization", + "freq": 7.41e-07 + }, + { + "word": "counterterrorism", + "freq": 7.08e-07 + }, + { + "word": "neurotransmitter", + "freq": 6.76e-07 + }, + { + "word": "multidimensional", + "freq": 6.17e-07 + }, + { + "word": "conservationists", + "freq": 5.89e-07 + }, + { + "word": "hypersensitivity", + "freq": 5.89e-07 + }, + { + "word": "transcontinental", + "freq": 5.89e-07 + }, + { + "word": "unpredictability", + "freq": 5.5e-07 + }, + { + "word": "immunodeficiency", + "freq": 5.13e-07 + }, + { + "word": "miscommunication", + "freq": 5.01e-07 + }, + { + "word": "administratively", + "freq": 4.9e-07 + }, + { + "word": "counterintuitive", + "freq": 4.9e-07 + }, + { + "word": "cryptocurrencies", + "freq": 4.9e-07 + }, + { + "word": "environmentalism", + "freq": 4.9e-07 + }, + { + "word": "representational", + "freq": 4.79e-07 + }, + { + "word": "irresponsibility", + "freq": 4.47e-07 + }, + { + "word": "underappreciated", + "freq": 4.47e-07 + }, + { + "word": "gastroenterology", + "freq": 4.27e-07 + }, + { + "word": "anesthesiologist", + "freq": 4.17e-07 + }, + { + "word": "counterclockwise", + "freq": 4.17e-07 + }, + { + "word": "unapologetically", + "freq": 4.07e-07 + }, + { + "word": "misappropriation", + "freq": 3.98e-07 + }, + { + "word": "hospitalizations", + "freq": 3.89e-07 + }, + { + "word": "uncharacteristic", + "freq": 3.8e-07 + }, + { + "word": "hyperventilating", + "freq": 3.47e-07 + }, + { + "word": "phenomenological", + "freq": 3.31e-07 + }, + { + "word": "internationalist", + "freq": 3.24e-07 + }, + { + "word": "reinterpretation", + "freq": 3.24e-07 + }, + { + "word": "quintessentially", + "freq": 3.16e-07 + }, + { + "word": "undifferentiated", + "freq": 3.09e-07 + }, + { + "word": "microelectronics", + "freq": 3.02e-07 + }, + { + "word": "nonproliferation", + "freq": 3.02e-07 + }, + { + "word": "incontrovertible", + "freq": 2.88e-07 + }, + { + "word": "pharmacokinetics", + "freq": 2.88e-07 + }, + { + "word": "reclassification", + "freq": 2.88e-07 + }, + { + "word": "internationalism", + "freq": 2.82e-07 + }, + { + "word": "acknowledgements", + "freq": 2.69e-07 + }, + { + "word": "decentralisation", + "freq": 2.69e-07 + }, + { + "word": "catastrophically", + "freq": 2.63e-07 + }, + { + "word": "electromagnetism", + "freq": 2.57e-07 + }, + { + "word": "multimillionaire", + "freq": 2.51e-07 + }, + { + "word": "interconnections", + "freq": 2.45e-07 + }, + { + "word": "neuropsychiatric", + "freq": 2.24e-07 + }, + { + "word": "creditworthiness", + "freq": 2.04e-07 + }, + { + "word": "instrumentalists", + "freq": 2.04e-07 + }, + { + "word": "crystallographic", + "freq": 1.95e-07 + }, + { + "word": "declassification", + "freq": 1.91e-07 + }, + { + "word": "echocardiography", + "freq": 1.91e-07 + }, + { + "word": "ophthalmologists", + "freq": 1.91e-07 + }, + { + "word": "unrepresentative", + "freq": 1.91e-07 + }, + { + "word": "collectivization", + "freq": 1.82e-07 + }, + { + "word": "microcontrollers", + "freq": 1.82e-07 + }, + { + "word": "physiotherapists", + "freq": 1.82e-07 + }, + { + "word": "psychotherapists", + "freq": 1.74e-07 + }, + { + "word": "thrombocytopenia", + "freq": 1.74e-07 + }, + { + "word": "cinematographers", + "freq": 1.7e-07 + }, + { + "word": "extracurriculars", + "freq": 1.7e-07 + }, + { + "word": "extraterritorial", + "freq": 1.7e-07 + }, + { + "word": "underdevelopment", + "freq": 1.7e-07 + }, + { + "word": "counteroffensive", + "freq": 1.66e-07 + }, + { + "word": "electrochemistry", + "freq": 1.66e-07 + }, + { + "word": "chemotherapeutic", + "freq": 1.58e-07 + }, + { + "word": "photojournalists", + "freq": 1.58e-07 + }, + { + "word": "circumnavigation", + "freq": 1.55e-07 + }, + { + "word": "microenvironment", + "freq": 1.51e-07 + }, + { + "word": "pietermaritzburg", + "freq": 1.51e-07 + }, + { + "word": "rationalizations", + "freq": 1.51e-07 + }, + { + "word": "interdimensional", + "freq": 1.48e-07 + }, + { + "word": "denuclearization", + "freq": 1.45e-07 + }, + { + "word": "disestablishment", + "freq": 1.45e-07 + }, + { + "word": "sociolinguistics", + "freq": 1.45e-07 + }, + { + "word": "antihypertensive", + "freq": 1.38e-07 + }, + { + "word": "astrophotography", + "freq": 1.38e-07 + }, + { + "word": "institutionalize", + "freq": 1.38e-07 + }, + { + "word": "neoconservatives", + "freq": 1.35e-07 + }, + { + "word": "demilitarization", + "freq": 1.32e-07 + }, + { + "word": "oligonucleotides", + "freq": 1.32e-07 + }, + { + "word": "vasoconstriction", + "freq": 1.32e-07 + }, + { + "word": "preservationists", + "freq": 1.29e-07 + }, + { + "word": "compartmentalize", + "freq": 1.26e-07 + }, + { + "word": "chancellorsville", + "freq": 1.2e-07 + }, + { + "word": "cyclophosphamide", + "freq": 1.2e-07 + }, + { + "word": "gastroesophageal", + "freq": 1.2e-07 + }, + { + "word": "underperformance", + "freq": 1.2e-07 + }, + { + "word": "aminotransferase", + "freq": 1.17e-07 + }, + { + "word": "cryopreservation", + "freq": 1.17e-07 + }, + { + "word": "recapitalization", + "freq": 1.17e-07 + }, + { + "word": "australopithecus", + "freq": 1.15e-07 + }, + { + "word": "hyperventilation", + "freq": 1.15e-07 + }, + { + "word": "biotechnological", + "freq": 1.12e-07 + }, + { + "word": "overcompensating", + "freq": 1.12e-07 + }, + { + "word": "clackmannanshire", + "freq": 1.1e-07 + }, + { + "word": "photographically", + "freq": 1.1e-07 + }, + { + "word": "programmatically", + "freq": 1.1e-07 + }, + { + "word": "psychoanalytical", + "freq": 1.1e-07 + }, + { + "word": "anthropomorphism", + "freq": 1.07e-07 + }, + { + "word": "methodologically", + "freq": 1.07e-07 + }, + { + "word": "pseudoscientific", + "freq": 1.07e-07 + }, + { + "word": "organizationally", + "freq": 1.05e-07 + }, + { + "word": "sesquicentennial", + "freq": 1e-07 + }, + { + "word": "agriculturalists", + "freq": 9.77e-08 + }, + { + "word": "oligosaccharides", + "freq": 9.77e-08 + }, + { + "word": "electromagnetics", + "freq": 9.55e-08 + }, + { + "word": "pharmacodynamics", + "freq": 9.33e-08 + }, + { + "word": "phylogenetically", + "freq": 9.33e-08 + }, + { + "word": "teleconferencing", + "freq": 9.33e-08 + }, + { + "word": "archaeologically", + "freq": 9.12e-08 + }, + { + "word": "arteriosclerosis", + "freq": 9.12e-08 + }, + { + "word": "blacklivesmatter", + "freq": 9.12e-08 + }, + { + "word": "hydroelectricity", + "freq": 9.12e-08 + }, + { + "word": "personifications", + "freq": 9.12e-08 + }, + { + "word": "uncompromisingly", + "freq": 9.12e-08 + }, + { + "word": "unconventionally", + "freq": 9.12e-08 + }, + { + "word": "misappropriating", + "freq": 8.91e-08 + }, + { + "word": "professionalized", + "freq": 8.91e-08 + }, + { + "word": "thermoregulation", + "freq": 8.91e-08 + }, + { + "word": "geomorphological", + "freq": 8.71e-08 + }, + { + "word": "palaeontologists", + "freq": 8.71e-08 + }, + { + "word": "biocompatibility", + "freq": 8.51e-08 + }, + { + "word": "disenfranchising", + "freq": 8.51e-08 + }, + { + "word": "experimentalists", + "freq": 8.51e-08 + }, + { + "word": "incomprehensibly", + "freq": 8.51e-08 + }, + { + "word": "microaggressions", + "freq": 8.51e-08 + }, + { + "word": "depressurization", + "freq": 8.32e-08 + }, + { + "word": "electrotechnical", + "freq": 8.32e-08 + }, + { + "word": "consequentialist", + "freq": 8.13e-08 + }, + { + "word": "dextromethorphan", + "freq": 8.13e-08 + }, + { + "word": "endocrinologists", + "freq": 8.13e-08 + }, + { + "word": "methamphetamines", + "freq": 8.13e-08 + }, + { + "word": "hahahahahahahaha", + "freq": 7.94e-08 + }, + { + "word": "interventionists", + "freq": 7.94e-08 + }, + { + "word": "nanotechnologies", + "freq": 7.94e-08 + }, + { + "word": "photolithography", + "freq": 7.94e-08 + }, + { + "word": "underachievement", + "freq": 7.94e-08 + }, + { + "word": "christianization", + "freq": 7.76e-08 + }, + { + "word": "contraindication", + "freq": 7.76e-08 + }, + { + "word": "conversationally", + "freq": 7.76e-08 + }, + { + "word": "electromyography", + "freq": 7.76e-08 + }, + { + "word": "microcrystalline", + "freq": 7.76e-08 + }, + { + "word": "mispronunciation", + "freq": 7.76e-08 + }, + { + "word": "consequentialism", + "freq": 7.59e-08 + }, + { + "word": "sensationalistic", + "freq": 7.59e-08 + }, + { + "word": "ultranationalist", + "freq": 7.59e-08 + }, + { + "word": "palaeontological", + "freq": 7.41e-08 + }, + { + "word": "parameterization", + "freq": 7.41e-08 + }, + { + "word": "photosensitivity", + "freq": 7.41e-08 + }, + { + "word": "atrioventricular", + "freq": 7.08e-08 + }, + { + "word": "shortsightedness", + "freq": 7.08e-08 + }, + { + "word": "counterbalancing", + "freq": 6.92e-08 + }, + { + "word": "organophosphates", + "freq": 6.92e-08 + }, + { + "word": "deoxyribonucleic", + "freq": 6.76e-08 + }, + { + "word": "mischaracterized", + "freq": 6.61e-08 + }, + { + "word": "multidirectional", + "freq": 6.61e-08 + }, + { + "word": "pheochromocytoma", + "freq": 6.61e-08 + }, + { + "word": "counterarguments", + "freq": 6.46e-08 + }, + { + "word": "counterattacking", + "freq": 6.46e-08 + }, + { + "word": "ophthalmological", + "freq": 6.46e-08 + }, + { + "word": "paraprofessional", + "freq": 6.46e-08 + }, + { + "word": "sociodemographic", + "freq": 6.31e-08 + }, + { + "word": "insurrectionists", + "freq": 6.17e-08 + }, + { + "word": "oligodendrocytes", + "freq": 6.17e-08 + }, + { + "word": "unprofessionally", + "freq": 6.17e-08 + }, + { + "word": "circumnavigating", + "freq": 6.03e-08 + }, + { + "word": "prognostications", + "freq": 6.03e-08 + }, + { + "word": "rhabdomyosarcoma", + "freq": 6.03e-08 + }, + { + "word": "psychophysiology", + "freq": 5.89e-08 + }, + { + "word": "containerization", + "freq": 5.75e-08 + }, + { + "word": "institutionalism", + "freq": 5.75e-08 + }, + { + "word": "trichotillomania", + "freq": 5.75e-08 + }, + { + "word": "unpopularopinion", + "freq": 5.62e-08 + }, + { + "word": "counterterrorist", + "freq": 5.5e-08 + }, + { + "word": "fluoroquinolones", + "freq": 5.5e-08 + }, + { + "word": "immunoreactivity", + "freq": 5.5e-08 + }, + { + "word": "nondeterministic", + "freq": 5.5e-08 + }, + { + "word": "transnationalism", + "freq": 5.5e-08 + }, + { + "word": "experimentations", + "freq": 5.37e-08 + }, + { + "word": "generalizability", + "freq": 5.37e-08 + }, + { + "word": "conspiratorially", + "freq": 5.25e-08 + }, + { + "word": "horticulturalist", + "freq": 5.25e-08 + }, + { + "word": "microcirculation", + "freq": 5.25e-08 + }, + { + "word": "overexploitation", + "freq": 5.25e-08 + }, + { + "word": "sensationalizing", + "freq": 5.25e-08 + }, + { + "word": "subconsciousness", + "freq": 5.25e-08 + }, + { + "word": "unitedhealthcare", + "freq": 5.25e-08 + }, + { + "word": "immunomodulatory", + "freq": 5.13e-08 + }, + { + "word": "immunosuppressed", + "freq": 5.13e-08 + }, + { + "word": "underutilization", + "freq": 5.13e-08 + }, + { + "word": "circumstantially", + "freq": 4.9e-08 + }, + { + "word": "incontrovertibly", + "freq": 4.9e-08 + }, + { + "word": "otolaryngologist", + "freq": 4.9e-08 + }, + { + "word": "collaborationist", + "freq": 4.79e-08 + }, + { + "word": "counterespionage", + "freq": 4.79e-08 + }, + { + "word": "overenthusiastic", + "freq": 4.79e-08 + }, + { + "word": "controversialist", + "freq": 4.68e-08 + }, + { + "word": "overcompensation", + "freq": 4.68e-08 + }, + { + "word": "bureaucratically", + "freq": 4.57e-08 + }, + { + "word": "prequalification", + "freq": 4.57e-08 + }, + { + "word": "unresponsiveness", + "freq": 4.57e-08 + }, + { + "word": "disfranchisement", + "freq": 4.47e-08 + }, + { + "word": "internationalize", + "freq": 4.47e-08 + }, + { + "word": "transmissibility", + "freq": 4.47e-08 + }, + { + "word": "extemporaneously", + "freq": 4.37e-08 + }, + { + "word": "unreasonableness", + "freq": 4.37e-08 + }, + { + "word": "machiavellianism", + "freq": 4.27e-08 + }, + { + "word": "lightheartedness", + "freq": 4.07e-08 + }, + { + "word": "dendrochronology", + "freq": 3.98e-08 + }, + { + "word": "journalistically", + "freq": 3.98e-08 + }, + { + "word": "paraformaldehyde", + "freq": 3.98e-08 + }, + { + "word": "pharmaceutically", + "freq": 3.98e-08 + }, + { + "word": "thermostatically", + "freq": 3.98e-08 + }, + { + "word": "demineralization", + "freq": 3.89e-08 + }, + { + "word": "dehumidification", + "freq": 3.8e-08 + }, + { + "word": "interpenetration", + "freq": 3.8e-08 + }, + { + "word": "acquaintanceship", + "freq": 3.72e-08 + }, + { + "word": "depolymerization", + "freq": 3.72e-08 + }, + { + "word": "ecclesiastically", + "freq": 3.72e-08 + }, + { + "word": "melodramatically", + "freq": 3.72e-08 + }, + { + "word": "bronchopneumonia", + "freq": 3.63e-08 + }, + { + "word": "prestidigitation", + "freq": 3.55e-08 + }, + { + "word": "semiprofessional", + "freq": 3.55e-08 + }, + { + "word": "supraventricular", + "freq": 3.55e-08 + }, + { + "word": "undernourishment", + "freq": 3.55e-08 + }, + { + "word": "intraventricular", + "freq": 3.47e-08 + }, + { + "word": "thrombophlebitis", + "freq": 3.47e-08 + }, + { + "word": "universalization", + "freq": 3.47e-08 + }, + { + "word": "anthropocentrism", + "freq": 3.39e-08 + }, + { + "word": "unsatisfactorily", + "freq": 3.39e-08 + }, + { + "word": "disingenuousness", + "freq": 3.31e-08 + }, + { + "word": "orthographically", + "freq": 3.24e-08 + }, + { + "word": "predetermination", + "freq": 3.24e-08 + }, + { + "word": "copolymerization", + "freq": 3.16e-08 + }, + { + "word": "noncontroversial", + "freq": 3.16e-08 + }, + { + "word": "interpretability", + "freq": 3.09e-08 + }, + { + "word": "prophylactically", + "freq": 3.09e-08 + }, + { + "word": "radiosensitivity", + "freq": 3.09e-08 + }, + { + "word": "incorruptibility", + "freq": 3.02e-08 + }, + { + "word": "piezoelectricity", + "freq": 3.02e-08 + }, + { + "word": "transconductance", + "freq": 3.02e-08 + }, + { + "word": "indispensability", + "freq": 2.95e-08 + }, + { + "word": "anthropomorphize", + "freq": 2.88e-08 + }, + { + "word": "bronchopulmonary", + "freq": 2.88e-08 + }, + { + "word": "neuropathologist", + "freq": 2.88e-08 + }, + { + "word": "remineralization", + "freq": 2.88e-08 + }, + { + "word": "glossopharyngeal", + "freq": 2.82e-08 + }, + { + "word": "circumambulation", + "freq": 2.75e-08 + }, + { + "word": "inextinguishable", + "freq": 2.75e-08 + }, + { + "word": "sphygmomanometer", + "freq": 2.75e-08 + }, + { + "word": "unattractiveness", + "freq": 2.75e-08 + }, + { + "word": "coadministration", + "freq": 2.63e-08 + }, + { + "word": "denaturalization", + "freq": 2.57e-08 + }, + { + "word": "hemagglutination", + "freq": 2.57e-08 + }, + { + "word": "phenylenediamine", + "freq": 2.57e-08 + }, + { + "word": "electrolytically", + "freq": 2.51e-08 + }, + { + "word": "interventricular", + "freq": 2.51e-08 + }, + { + "word": "transcendentally", + "freq": 2.51e-08 + }, + { + "word": "monocotyledonous", + "freq": 2.45e-08 + }, + { + "word": "antagonistically", + "freq": 2.4e-08 + }, + { + "word": "phosphoglycerate", + "freq": 2.4e-08 + }, + { + "word": "myelomeningocele", + "freq": 2.34e-08 + }, + { + "word": "phantasmagorical", + "freq": 2.34e-08 + }, + { + "word": "saccharification", + "freq": 2.34e-08 + }, + { + "word": "benzylpenicillin", + "freq": 2.29e-08 + }, + { + "word": "paleoclimatology", + "freq": 2.29e-08 + }, + { + "word": "remilitarization", + "freq": 2.29e-08 + }, + { + "word": "anthroposophical", + "freq": 2.24e-08 + }, + { + "word": "interrelatedness", + "freq": 2.24e-08 + }, + { + "word": "serpentinization", + "freq": 2.24e-08 + }, + { + "word": "institutionalist", + "freq": 2.19e-08 + }, + { + "word": "multiplicatively", + "freq": 2.14e-08 + }, + { + "word": "naturalistically", + "freq": 2.14e-08 + }, + { + "word": "transportability", + "freq": 2.14e-08 + }, + { + "word": "oversubscription", + "freq": 2.09e-08 + }, + { + "word": "premillennialism", + "freq": 2.09e-08 + }, + { + "word": "psychobiological", + "freq": 2.04e-08 + }, + { + "word": "ultranationalism", + "freq": 2.04e-08 + }, + { + "word": "paradigmatically", + "freq": 2e-08 + }, + { + "word": "prerevolutionary", + "freq": 2e-08 + }, + { + "word": "radiographically", + "freq": 2e-08 + }, + { + "word": "unaccountability", + "freq": 2e-08 + }, + { + "word": "endocrinological", + "freq": 1.95e-08 + }, + { + "word": "interhemispheric", + "freq": 1.95e-08 + }, + { + "word": "disconnectedness", + "freq": 1.91e-08 + }, + { + "word": "otherworldliness", + "freq": 1.91e-08 + }, + { + "word": "ethnographically", + "freq": 1.86e-08 + }, + { + "word": "scrophulariaceae", + "freq": 1.86e-08 + }, + { + "word": "complexification", + "freq": 1.82e-08 + }, + { + "word": "electrocatalytic", + "freq": 1.82e-08 + }, + { + "word": "misconfiguration", + "freq": 1.82e-08 + }, + { + "word": "undemocratically", + "freq": 1.82e-08 + }, + { + "word": "presumptuousness", + "freq": 1.78e-08 + }, + { + "word": "semiquantitative", + "freq": 1.78e-08 + }, + { + "word": "vasoconstrictive", + "freq": 1.78e-08 + }, + { + "word": "constructiveness", + "freq": 1.74e-08 + }, + { + "word": "crystallographer", + "freq": 1.74e-08 + }, + { + "word": "meteorologically", + "freq": 1.74e-08 + }, + { + "word": "municipalization", + "freq": 1.74e-08 + }, + { + "word": "paleoceanography", + "freq": 1.74e-08 + }, + { + "word": "dermatopathology", + "freq": 1.7e-08 + }, + { + "word": "deuterocanonical", + "freq": 1.7e-08 + }, + { + "word": "discriminability", + "freq": 1.7e-08 + }, + { + "word": "interpretational", + "freq": 1.7e-08 + }, + { + "word": "tracheobronchial", + "freq": 1.7e-08 + }, + { + "word": "internationality", + "freq": 1.66e-08 + }, + { + "word": "electrohydraulic", + "freq": 1.62e-08 + }, + { + "word": "undiscriminating", + "freq": 1.62e-08 + }, + { + "word": "macrophotography", + "freq": 1.58e-08 + }, + { + "word": "pseudomembranous", + "freq": 1.58e-08 + }, + { + "word": "commissionership", + "freq": 1.55e-08 + }, + { + "word": "petrographically", + "freq": 1.55e-08 + }, + { + "word": "transatlanticism", + "freq": 1.55e-08 + }, + { + "word": "unscientifically", + "freq": 1.55e-08 + }, + { + "word": "representatively", + "freq": 1.51e-08 + }, + { + "word": "arteriosclerotic", + "freq": 1.48e-08 + }, + { + "word": "commensurability", + "freq": 1.48e-08 + }, + { + "word": "electrocatalysis", + "freq": 1.48e-08 + }, + { + "word": "interministerial", + "freq": 1.48e-08 + }, + { + "word": "bloodthirstiness", + "freq": 1.45e-08 + }, + { + "word": "hypervitaminosis", + "freq": 1.45e-08 + }, + { + "word": "magnetostriction", + "freq": 1.45e-08 + }, + { + "word": "antituberculosis", + "freq": 1.41e-08 + }, + { + "word": "interdependently", + "freq": 1.38e-08 + }, + { + "word": "microphotography", + "freq": 1.38e-08 + }, + { + "word": "paratuberculosis", + "freq": 1.38e-08 + }, + { + "word": "apprehensiveness", + "freq": 1.35e-08 + }, + { + "word": "perpendicularity", + "freq": 1.35e-08 + }, + { + "word": "psychometrically", + "freq": 1.35e-08 + }, + { + "word": "epiphenomenalism", + "freq": 1.32e-08 + }, + { + "word": "impracticability", + "freq": 1.32e-08 + }, + { + "word": "photomicrography", + "freq": 1.32e-08 + }, + { + "word": "underconsumption", + "freq": 1.29e-08 + }, + { + "word": "autoradiographic", + "freq": 1.26e-08 + }, + { + "word": "conservativeness", + "freq": 1.26e-08 + }, + { + "word": "denominationally", + "freq": 1.23e-08 + }, + { + "word": "hydrometeorology", + "freq": 1.23e-08 + }, + { + "word": "jurisdictionally", + "freq": 1.23e-08 + }, + { + "word": "climatologically", + "freq": 1.2e-08 + }, + { + "word": "developmentalist", + "freq": 1.2e-08 + }, + { + "word": "diphthongization", + "freq": 1.17e-08 + }, + { + "word": "nonparticipation", + "freq": 1.15e-08 + }, + { + "word": "polyoxymethylene", + "freq": 1.15e-08 + }, + { + "word": "chryselephantine", + "freq": 1.12e-08 + }, + { + "word": "countersignature", + "freq": 1.12e-08 + }, + { + "word": "mesembryanthemum", + "freq": 1.12e-08 + }, + { + "word": "preposterousness", + "freq": 1.12e-08 + }, + { + "word": "swedenborgianism", + "freq": 1.12e-08 + }, + { + "word": "lithographically", + "freq": 1.1e-08 + }, + { + "word": "microlepidoptera", + "freq": 1.1e-08 + }, + { + "word": "photoluminescent", + "freq": 1.1e-08 + }, + { + "word": "quadricentennial", + "freq": 1.1e-08 + }, + { + "word": "sternoclavicular", + "freq": 1.07e-08 + }, + { + "word": "aristocratically", + "freq": 1.05e-08 + }, + { + "word": "desulphurization", + "freq": 1.05e-08 + }, + { + "word": "nonparticipating", + "freq": 1.05e-08 + }, + { + "word": "unscrupulousness", + "freq": 1.05e-08 + }, + { + "word": "hemorrhoidectomy", + "freq": 1.02e-08 + }, + { + "word": "imperturbability", + "freq": 1.02e-08 + } + ], + "18": [ + { + "word": "telecommunications", + "freq": 6.76e-06 + }, + { + "word": "disproportionately", + "freq": 2e-06 + }, + { + "word": "characteristically", + "freq": 7.08e-07 + }, + { + "word": "disenfranchisement", + "freq": 3.09e-07 + }, + { + "word": "misrepresentations", + "freq": 3.09e-07 + }, + { + "word": "neuropsychological", + "freq": 2.63e-07 + }, + { + "word": "oversimplification", + "freq": 2.45e-07 + }, + { + "word": "unconstitutionally", + "freq": 2.45e-07 + }, + { + "word": "interconnectedness", + "freq": 2.04e-07 + }, + { + "word": "thiruvananthapuram", + "freq": 1.91e-07 + }, + { + "word": "neurodevelopmental", + "freq": 1.86e-07 + }, + { + "word": "gastroenterologist", + "freq": 1.66e-07 + }, + { + "word": "immunofluorescence", + "freq": 1.66e-07 + }, + { + "word": "transubstantiation", + "freq": 1.35e-07 + }, + { + "word": "interrelationships", + "freq": 1.29e-07 + }, + { + "word": "psychopharmacology", + "freq": 1.23e-07 + }, + { + "word": "misinterpretations", + "freq": 1.17e-07 + }, + { + "word": "lipopolysaccharide", + "freq": 1.1e-07 + }, + { + "word": "neurophysiological", + "freq": 1.1e-07 + }, + { + "word": "evapotranspiration", + "freq": 1.05e-07 + }, + { + "word": "congregationalists", + "freq": 9.55e-08 + }, + { + "word": "histocompatibility", + "freq": 9.33e-08 + }, + { + "word": "interchangeability", + "freq": 9.12e-08 + }, + { + "word": "constitutionalists", + "freq": 8.91e-08 + }, + { + "word": "pathophysiological", + "freq": 8.91e-08 + }, + { + "word": "institutionalizing", + "freq": 7.76e-08 + }, + { + "word": "aktiengesellschaft", + "freq": 7.59e-08 + }, + { + "word": "biopharmaceuticals", + "freq": 7.59e-08 + }, + { + "word": "immunosuppressants", + "freq": 7.41e-08 + }, + { + "word": "enterobacteriaceae", + "freq": 6.92e-08 + }, + { + "word": "methylprednisolone", + "freq": 6.92e-08 + }, + { + "word": "representativeness", + "freq": 6.61e-08 + }, + { + "word": "conceptualizations", + "freq": 6.31e-08 + }, + { + "word": "electroluminescent", + "freq": 6.31e-08 + }, + { + "word": "hydroxychloroquine", + "freq": 6.31e-08 + }, + { + "word": "glomerulonephritis", + "freq": 6.17e-08 + }, + { + "word": "entrepreneurialism", + "freq": 5.75e-08 + }, + { + "word": "compartmentalizing", + "freq": 5.62e-08 + }, + { + "word": "overrepresentation", + "freq": 5.62e-08 + }, + { + "word": "neovascularization", + "freq": 5.5e-08 + }, + { + "word": "myeloproliferative", + "freq": 5.37e-08 + }, + { + "word": "disproportionality", + "freq": 5.13e-08 + }, + { + "word": "interparliamentary", + "freq": 4.68e-08 + }, + { + "word": "thermoluminescence", + "freq": 4.37e-08 + }, + { + "word": "psychopathological", + "freq": 4.17e-08 + }, + { + "word": "transmogrification", + "freq": 3.98e-08 + }, + { + "word": "diethylstilbestrol", + "freq": 3.89e-08 + }, + { + "word": "disproportionation", + "freq": 3.63e-08 + }, + { + "word": "intercommunication", + "freq": 3.55e-08 + }, + { + "word": "spectrophotometric", + "freq": 3.31e-08 + }, + { + "word": "triphenylphosphine", + "freq": 2.82e-08 + }, + { + "word": "constantinopolitan", + "freq": 2.57e-08 + }, + { + "word": "unenthusiastically", + "freq": 2.51e-08 + }, + { + "word": "parliamentarianism", + "freq": 2.24e-08 + }, + { + "word": "incommensurability", + "freq": 2.14e-08 + }, + { + "word": "phenomenologically", + "freq": 2.14e-08 + }, + { + "word": "photosynthetically", + "freq": 2.09e-08 + }, + { + "word": "autobiographically", + "freq": 2e-08 + }, + { + "word": "pericardiocentesis", + "freq": 2e-08 + }, + { + "word": "electrocardiograph", + "freq": 1.86e-08 + }, + { + "word": "hydrometallurgical", + "freq": 1.86e-08 + }, + { + "word": "pseudotuberculosis", + "freq": 1.29e-08 + }, + { + "word": "stoichiometrically", + "freq": 1.17e-08 + }, + { + "word": "hypercoagulability", + "freq": 1.12e-08 + }, + { + "word": "unsatisfactoriness", + "freq": 1.12e-08 + }, + { + "word": "psychoanalytically", + "freq": 1.05e-08 + } + ], + "17": [ + { + "word": "interdisciplinary", + "freq": 2.45e-06 + }, + { + "word": "indistinguishable", + "freq": 1.45e-06 + }, + { + "word": "telecommunication", + "freq": 1.45e-06 + }, + { + "word": "institutionalized", + "freq": 1.35e-06 + }, + { + "word": "misunderstandings", + "freq": 1.29e-06 + }, + { + "word": "intergovernmental", + "freq": 1.26e-06 + }, + { + "word": "environmentalists", + "freq": 1.2e-06 + }, + { + "word": "industrialization", + "freq": 1.17e-06 + }, + { + "word": "multidisciplinary", + "freq": 1.15e-06 + }, + { + "word": "counterproductive", + "freq": 1.12e-06 + }, + { + "word": "commercialization", + "freq": 9.55e-07 + }, + { + "word": "misrepresentation", + "freq": 9.55e-07 + }, + { + "word": "constitutionality", + "freq": 8.71e-07 + }, + { + "word": "neurotransmitters", + "freq": 5.62e-07 + }, + { + "word": "intergenerational", + "freq": 5.37e-07 + }, + { + "word": "industrialisation", + "freq": 5.01e-07 + }, + { + "word": "misinterpretation", + "freq": 4.79e-07 + }, + { + "word": "neurodegenerative", + "freq": 4.79e-07 + }, + { + "word": "characterizations", + "freq": 3.89e-07 + }, + { + "word": "decriminalization", + "freq": 3.89e-07 + }, + { + "word": "electromechanical", + "freq": 3.55e-07 + }, + { + "word": "counterinsurgency", + "freq": 3.39e-07 + }, + { + "word": "conceptualization", + "freq": 3.02e-07 + }, + { + "word": "superconductivity", + "freq": 3.02e-07 + }, + { + "word": "contraindications", + "freq": 2.88e-07 + }, + { + "word": "intersectionality", + "freq": 2.82e-07 + }, + { + "word": "institutionalised", + "freq": 2.69e-07 + }, + { + "word": "biopharmaceutical", + "freq": 2.63e-07 + }, + { + "word": "commercialisation", + "freq": 2.51e-07 + }, + { + "word": "extraterrestrials", + "freq": 2.51e-07 + }, + { + "word": "immunosuppressive", + "freq": 2.45e-07 + }, + { + "word": "conversationalist", + "freq": 2.19e-07 + }, + { + "word": "constitutionalism", + "freq": 2.14e-07 + }, + { + "word": "immunocompromised", + "freq": 2.09e-07 + }, + { + "word": "straightforwardly", + "freq": 2.04e-07 + }, + { + "word": "compartmentalized", + "freq": 2e-07 + }, + { + "word": "conscientiousness", + "freq": 1.91e-07 + }, + { + "word": "nondiscrimination", + "freq": 1.91e-07 + }, + { + "word": "electrophysiology", + "freq": 1.78e-07 + }, + { + "word": "videoconferencing", + "freq": 1.66e-07 + }, + { + "word": "anesthesiologists", + "freq": 1.58e-07 + }, + { + "word": "bringbackourgirls", + "freq": 1.58e-07 + }, + { + "word": "contemporaneously", + "freq": 1.55e-07 + }, + { + "word": "electrocardiogram", + "freq": 1.55e-07 + }, + { + "word": "immunosuppression", + "freq": 1.55e-07 + }, + { + "word": "interdepartmental", + "freq": 1.48e-07 + }, + { + "word": "incompatibilities", + "freq": 1.45e-07 + }, + { + "word": "neurodegeneration", + "freq": 1.38e-07 + }, + { + "word": "neurofibromatosis", + "freq": 1.38e-07 + }, + { + "word": "depersonalization", + "freq": 1.32e-07 + }, + { + "word": "multigenerational", + "freq": 1.29e-07 + }, + { + "word": "historiographical", + "freq": 1.26e-07 + }, + { + "word": "hyperpigmentation", + "freq": 1.26e-07 + }, + { + "word": "constitutionalist", + "freq": 1.17e-07 + }, + { + "word": "decriminalisation", + "freq": 1.17e-07 + }, + { + "word": "internationalists", + "freq": 1.17e-07 + }, + { + "word": "pharmacologically", + "freq": 1.17e-07 + }, + { + "word": "opportunistically", + "freq": 1.15e-07 + }, + { + "word": "phosphodiesterase", + "freq": 1.15e-07 + }, + { + "word": "disqualifications", + "freq": 1.12e-07 + }, + { + "word": "spectrophotometer", + "freq": 1.12e-07 + }, + { + "word": "electroconvulsive", + "freq": 1.1e-07 + }, + { + "word": "interrelationship", + "freq": 1.1e-07 + }, + { + "word": "histopathological", + "freq": 1.07e-07 + }, + { + "word": "misidentification", + "freq": 1.07e-07 + }, + { + "word": "maladministration", + "freq": 1.05e-07 + }, + { + "word": "psychotherapeutic", + "freq": 1.05e-07 + }, + { + "word": "temporomandibular", + "freq": 1.05e-07 + }, + { + "word": "thermodynamically", + "freq": 1.05e-07 + }, + { + "word": "microtransactions", + "freq": 1.02e-07 + }, + { + "word": "methyltransferase", + "freq": 9.77e-08 + }, + { + "word": "nondenominational", + "freq": 9.77e-08 + }, + { + "word": "transdisciplinary", + "freq": 9.55e-08 + }, + { + "word": "comprehensiveness", + "freq": 9.33e-08 + }, + { + "word": "misclassification", + "freq": 9.33e-08 + }, + { + "word": "neurotransmission", + "freq": 9.33e-08 + }, + { + "word": "inappropriateness", + "freq": 9.12e-08 + }, + { + "word": "neuropsychologist", + "freq": 9.12e-08 + }, + { + "word": "revascularization", + "freq": 9.12e-08 + }, + { + "word": "disproportionally", + "freq": 8.91e-08 + }, + { + "word": "heteronormativity", + "freq": 8.91e-08 + }, + { + "word": "photoluminescence", + "freq": 8.91e-08 + }, + { + "word": "cardiorespiratory", + "freq": 8.71e-08 + }, + { + "word": "electronegativity", + "freq": 8.71e-08 + }, + { + "word": "internationalized", + "freq": 8.71e-08 + }, + { + "word": "microdermabrasion", + "freq": 8.71e-08 + }, + { + "word": "congregationalist", + "freq": 8.51e-08 + }, + { + "word": "interdependencies", + "freq": 8.51e-08 + }, + { + "word": "psycholinguistics", + "freq": 8.51e-08 + }, + { + "word": "contextualization", + "freq": 8.32e-08 + }, + { + "word": "encephalomyelitis", + "freq": 8.32e-08 + }, + { + "word": "interconnectivity", + "freq": 8.32e-08 + }, + { + "word": "interprofessional", + "freq": 8.32e-08 + }, + { + "word": "transcendentalism", + "freq": 8.32e-08 + }, + { + "word": "immunosuppressant", + "freq": 8.13e-08 + }, + { + "word": "realclearpolitics", + "freq": 8.13e-08 + }, + { + "word": "recrystallization", + "freq": 8.13e-08 + }, + { + "word": "individualization", + "freq": 7.41e-08 + }, + { + "word": "anthropomorphized", + "freq": 7.24e-08 + }, + { + "word": "reconstructionist", + "freq": 7.24e-08 + }, + { + "word": "counterrevolution", + "freq": 7.08e-08 + }, + { + "word": "dephosphorylation", + "freq": 7.08e-08 + }, + { + "word": "multimillionaires", + "freq": 7.08e-08 + }, + { + "word": "acetyltransferase", + "freq": 6.92e-08 + }, + { + "word": "transcendentalist", + "freq": 6.92e-08 + }, + { + "word": "miscommunications", + "freq": 6.76e-08 + }, + { + "word": "pharmacovigilance", + "freq": 6.76e-08 + }, + { + "word": "cryptographically", + "freq": 6.31e-08 + }, + { + "word": "reinterpretations", + "freq": 6.31e-08 + }, + { + "word": "socioeconomically", + "freq": 6.31e-08 + }, + { + "word": "ultraconservative", + "freq": 6.31e-08 + }, + { + "word": "characterisations", + "freq": 6.03e-08 + }, + { + "word": "superintelligence", + "freq": 6.03e-08 + }, + { + "word": "conceptualisation", + "freq": 5.89e-08 + }, + { + "word": "functionalization", + "freq": 5.89e-08 + }, + { + "word": "electrochemically", + "freq": 5.75e-08 + }, + { + "word": "dextroamphetamine", + "freq": 5.62e-08 + }, + { + "word": "trichloroethylene", + "freq": 5.62e-08 + }, + { + "word": "instrumentalities", + "freq": 5.5e-08 + }, + { + "word": "nondiscriminatory", + "freq": 5.5e-08 + }, + { + "word": "chemiluminescence", + "freq": 5.37e-08 + }, + { + "word": "electrostatically", + "freq": 5.37e-08 + }, + { + "word": "metalloproteinase", + "freq": 5.37e-08 + }, + { + "word": "anthropologically", + "freq": 5.25e-08 + }, + { + "word": "transgenerational", + "freq": 5.25e-08 + }, + { + "word": "contradistinction", + "freq": 5.01e-08 + }, + { + "word": "transcriptionally", + "freq": 4.9e-08 + }, + { + "word": "anachronistically", + "freq": 4.79e-08 + }, + { + "word": "unprofessionalism", + "freq": 4.79e-08 + }, + { + "word": "spectrophotometry", + "freq": 4.68e-08 + }, + { + "word": "spondylolisthesis", + "freq": 4.68e-08 + }, + { + "word": "comprehensibility", + "freq": 3.89e-08 + }, + { + "word": "intraperitoneally", + "freq": 3.8e-08 + }, + { + "word": "spectroscopically", + "freq": 3.8e-08 + }, + { + "word": "congregationalism", + "freq": 3.63e-08 + }, + { + "word": "stratigraphically", + "freq": 3.63e-08 + }, + { + "word": "indestructibility", + "freq": 3.39e-08 + }, + { + "word": "methemoglobinemia", + "freq": 3.31e-08 + }, + { + "word": "psychoeducational", + "freq": 3.16e-08 + }, + { + "word": "parapsychological", + "freq": 3.09e-08 + }, + { + "word": "spectroradiometer", + "freq": 3.09e-08 + }, + { + "word": "misrepresentative", + "freq": 2.95e-08 + }, + { + "word": "electrodeposition", + "freq": 2.88e-08 + }, + { + "word": "paleoanthropology", + "freq": 2.88e-08 + }, + { + "word": "propionibacterium", + "freq": 2.88e-08 + }, + { + "word": "neuropathological", + "freq": 2.82e-08 + }, + { + "word": "circumferentially", + "freq": 2.75e-08 + }, + { + "word": "dematerialization", + "freq": 2.69e-08 + }, + { + "word": "idiosyncratically", + "freq": 2.69e-08 + }, + { + "word": "acromioclavicular", + "freq": 2.57e-08 + }, + { + "word": "australopithecine", + "freq": 2.51e-08 + }, + { + "word": "epistemologically", + "freq": 2.51e-08 + }, + { + "word": "polymorphonuclear", + "freq": 2.45e-08 + }, + { + "word": "uncomfortableness", + "freq": 2.4e-08 + }, + { + "word": "denationalization", + "freq": 2.34e-08 + }, + { + "word": "phytopathological", + "freq": 2.34e-08 + }, + { + "word": "uniformitarianism", + "freq": 2.34e-08 + }, + { + "word": "bureaucratization", + "freq": 2.29e-08 + }, + { + "word": "neuropsychiatrist", + "freq": 2.29e-08 + }, + { + "word": "indistinguishably", + "freq": 2.24e-08 + }, + { + "word": "denominationalism", + "freq": 2.19e-08 + }, + { + "word": "disinterestedness", + "freq": 2.19e-08 + }, + { + "word": "hyperexcitability", + "freq": 2.14e-08 + }, + { + "word": "understandability", + "freq": 2.04e-08 + }, + { + "word": "untrustworthiness", + "freq": 2.04e-08 + }, + { + "word": "chemotherapeutics", + "freq": 2e-08 + }, + { + "word": "photolithographic", + "freq": 2e-08 + }, + { + "word": "undistinguishable", + "freq": 2e-08 + }, + { + "word": "intertrochanteric", + "freq": 1.95e-08 + }, + { + "word": "materialistically", + "freq": 1.95e-08 + }, + { + "word": "philanthropically", + "freq": 1.95e-08 + }, + { + "word": "thermoluminescent", + "freq": 1.95e-08 + }, + { + "word": "electromyographic", + "freq": 1.91e-08 + }, + { + "word": "photodissociation", + "freq": 1.91e-08 + }, + { + "word": "unconventionality", + "freq": 1.86e-08 + }, + { + "word": "carboxyhemoglobin", + "freq": 1.82e-08 + }, + { + "word": "cryptocrystalline", + "freq": 1.74e-08 + }, + { + "word": "dedifferentiation", + "freq": 1.7e-08 + }, + { + "word": "perchloroethylene", + "freq": 1.7e-08 + }, + { + "word": "unsympathetically", + "freq": 1.62e-08 + }, + { + "word": "photoconductivity", + "freq": 1.55e-08 + }, + { + "word": "authoritativeness", + "freq": 1.51e-08 + }, + { + "word": "uncontroversially", + "freq": 1.48e-08 + }, + { + "word": "oligodendroglioma", + "freq": 1.45e-08 + }, + { + "word": "paternalistically", + "freq": 1.45e-08 + }, + { + "word": "electrotechnology", + "freq": 1.38e-08 + }, + { + "word": "lexicographically", + "freq": 1.38e-08 + }, + { + "word": "unintelligibility", + "freq": 1.35e-08 + }, + { + "word": "micropaleontology", + "freq": 1.32e-08 + }, + { + "word": "incompressibility", + "freq": 1.26e-08 + }, + { + "word": "particularization", + "freq": 1.26e-08 + }, + { + "word": "consubstantiation", + "freq": 1.23e-08 + }, + { + "word": "parathyroidectomy", + "freq": 1.2e-08 + }, + { + "word": "disadvantageously", + "freq": 1.15e-08 + }, + { + "word": "microbiologically", + "freq": 1.15e-08 + }, + { + "word": "sanctimoniousness", + "freq": 1.15e-08 + }, + { + "word": "inconsequentially", + "freq": 1.1e-08 + }, + { + "word": "palaeoclimatology", + "freq": 1.1e-08 + }, + { + "word": "premonstratensian", + "freq": 1.1e-08 + }, + { + "word": "electroanalytical", + "freq": 1.07e-08 + }, + { + "word": "nationalistically", + "freq": 1.07e-08 + }, + { + "word": "thermoelectricity", + "freq": 1.05e-08 + }, + { + "word": "transillumination", + "freq": 1.05e-08 + } + ], + "19": [ + { + "word": "counterintelligence", + "freq": 4.37e-07 + }, + { + "word": "immunohistochemical", + "freq": 1.29e-07 + }, + { + "word": "interdenominational", + "freq": 1.12e-07 + }, + { + "word": "professionalization", + "freq": 1.07e-07 + }, + { + "word": "hydrochlorothiazide", + "freq": 8.32e-08 + }, + { + "word": "underrepresentation", + "freq": 8.32e-08 + }, + { + "word": "immunoprecipitation", + "freq": 7.76e-08 + }, + { + "word": "hyperparathyroidism", + "freq": 7.59e-08 + }, + { + "word": "unconstitutionality", + "freq": 7.59e-08 + }, + { + "word": "straightforwardness", + "freq": 7.41e-08 + }, + { + "word": "deindustrialization", + "freq": 6.76e-08 + }, + { + "word": "dihydrotestosterone", + "freq": 6.46e-08 + }, + { + "word": "electrocardiography", + "freq": 6.17e-08 + }, + { + "word": "chlorofluorocarbons", + "freq": 6.03e-08 + }, + { + "word": "electromagnetically", + "freq": 5.62e-08 + }, + { + "word": "interdisciplinarity", + "freq": 5.62e-08 + }, + { + "word": "phosphatidylcholine", + "freq": 5.5e-08 + }, + { + "word": "extraterritoriality", + "freq": 4.68e-08 + }, + { + "word": "psychophysiological", + "freq": 4.47e-08 + }, + { + "word": "mischaracterization", + "freq": 3.98e-08 + }, + { + "word": "otorhinolaryngology", + "freq": 3.98e-08 + }, + { + "word": "adrenocorticotropic", + "freq": 3.72e-08 + }, + { + "word": "meningoencephalitis", + "freq": 3.47e-08 + }, + { + "word": "gastroenterological", + "freq": 3.39e-08 + }, + { + "word": "incomprehensibility", + "freq": 3.31e-08 + }, + { + "word": "countertransference", + "freq": 3.24e-08 + }, + { + "word": "hydrometeorological", + "freq": 2.95e-08 + }, + { + "word": "sternocleidomastoid", + "freq": 2.82e-08 + }, + { + "word": "clinicopathological", + "freq": 2.69e-08 + }, + { + "word": "bronchoconstriction", + "freq": 2.51e-08 + }, + { + "word": "intellectualization", + "freq": 2.45e-08 + }, + { + "word": "paleoanthropologist", + "freq": 2.4e-08 + }, + { + "word": "metacarpophalangeal", + "freq": 2.04e-08 + }, + { + "word": "tetrachloroethylene", + "freq": 2.04e-08 + }, + { + "word": "electroluminescence", + "freq": 1.95e-08 + }, + { + "word": "cathodoluminescence", + "freq": 1.91e-08 + }, + { + "word": "photopolymerization", + "freq": 1.74e-08 + }, + { + "word": "dendrochronological", + "freq": 1.62e-08 + }, + { + "word": "metatarsophalangeal", + "freq": 1.55e-08 + }, + { + "word": "tetramethylammonium", + "freq": 1.35e-08 + }, + { + "word": "electrophysiologist", + "freq": 1.32e-08 + }, + { + "word": "representationalism", + "freq": 1.2e-08 + }, + { + "word": "departmentalization", + "freq": 1.15e-08 + } + ], + "20": [ + { + "word": "internationalization", + "freq": 3.63e-07 + }, + { + "word": "uncharacteristically", + "freq": 3.39e-07 + }, + { + "word": "institutionalization", + "freq": 2.14e-07 + }, + { + "word": "internationalisation", + "freq": 1.41e-07 + }, + { + "word": "electrophysiological", + "freq": 1.29e-07 + }, + { + "word": "immunohistochemistry", + "freq": 1.29e-07 + }, + { + "word": "compartmentalization", + "freq": 1.23e-07 + }, + { + "word": "counterrevolutionary", + "freq": 1.2e-07 + }, + { + "word": "tetrahydrocannabinol", + "freq": 1.02e-07 + }, + { + "word": "hypercholesterolemia", + "freq": 9.77e-08 + }, + { + "word": "acetylcholinesterase", + "freq": 9.55e-08 + }, + { + "word": "phosphatidylinositol", + "freq": 9.12e-08 + }, + { + "word": "electroencephalogram", + "freq": 7.59e-08 + }, + { + "word": "institutionalisation", + "freq": 5.5e-08 + }, + { + "word": "radiopharmaceuticals", + "freq": 5.5e-08 + }, + { + "word": "electrocardiographic", + "freq": 2.95e-08 + }, + { + "word": "indistinguishability", + "freq": 2.14e-08 + }, + { + "word": "keratoconjunctivitis", + "freq": 2.14e-08 + }, + { + "word": "anthropomorphization", + "freq": 1.35e-08 + }, + { + "word": "crystallographically", + "freq": 1.26e-08 + } + ] + }, + "common_words": [ + "performing", + "fig", + "trains", + "slam", + "prize", + "europe", + "did", + "gravity", + "finest", + "unlike", + "storage", + "warehouse", + "roses", + "two", + "american", + "origins", + "dropping", + "struggling", + "boats", + "eliminate", + "rainbow", + "torn", + "taylor", + "spare", + "fuck", + "tops", + "budget", + "area", + "broadcasting", + "statements", + "harper", + "mixture", + "revolutionary", + "injury", + "arm", + "ion", + "northwest", + "screen", + "stopped", + "test", + "politics", + "relatives", + "representative", + "were", + "their", + "divorce", + "exhausted", + "establish", + "jumping", + "dollar", + "oak", + "pupils", + "boy", + "facility", + "draw", + "decline", + "sauce", + "moving", + "alabama", + "whenever", + "revealed", + "notably", + "becoming", + "techniques", + "cuba", + "foul", + "bitcoin", + "partners", + "evolution", + "enjoy", + "merely", + "gods", + "valve", + "resume", + "returning", + "werent", + "loud", + "poison", + "outfit", + "medical", + "park", + "crown", + "colleges", + "arrives", + "category", + "favour", + "der", + "computers", + "victim", + "unnecessary", + "men", + "ones", + "sciences", + "et", + "plan", + "hasnt", + "ugly", + "coverage", + "david", + "logo", + "william", + "canadian", + "worldwide", + "attempts", + "shelter", + "alive", + "hospitals", + "real", + "search", + "daddy", + "older", + "shipped", + "removed", + "functioning", + "spider", + "reality", + "october", + "murray", + "charged", + "physically", + "bottle", + "payments", + "fund", + "describing", + "london", + "useful", + "gather", + "unfortunate", + "transform", + "ownership", + "classified", + "awesome", + "dealer", + "vi", + "assisted", + "fan", + "measures", + "days", + "slight", + "spent", + "administration", + "politicians", + "havent", + "preparing", + "sheet", + "signs", + "other", + "work", + "data", + "suggestions", + "mercury", + "model", + "successfully", + "dried", + "collapse", + "consecutive", + "jones", + "fox", + "bailey", + "million", + "herself", + "vital", + "up", + "response", + "contribute", + "douglas", + "categories", + "solutions", + "quality", + "sending", + "tent", + "volumes", + "thumb", + "screaming", + "transition", + "reforms", + "use", + "base", + "casual", + "ties", + "intelligent", + "mask", + "realm", + "dropped", + "relax", + "attached", + "hiding", + "apr", + "feet", + "leader", + "sun", + "troops", + "samuel", + "easier", + "hardly", + "com", + "sam", + "cable", + "pork", + "inspiring", + "legal", + "approved", + "thailand", + "accordance", + "couple", + "existence", + "haha", + "wallace", + "poorly", + "shaking", + "after", + "plane", + "duke", + "luxury", + "surgical", + "trial", + "radical", + "caring", + "negative", + "losing", + "dubai", + "constantly", + "ambassador", + "measuring", + "alongside", + "chicago", + "necessarily", + "very", + "small", + "stress", + "birmingham", + "promising", + "credit", + "large", + "owns", + "requirements", + "aims", + "rev", + "kicks", + "north", + "michigan", + "pacific", + "guidelines", + "publications", + "releases", + "fridge", + "donations", + "distant", + "finger", + "brings", + "football", + "concerning", + "said", + "play", + "toys", + "the", + "orientation", + "nhl", + "sleep", + "african", + "lot", + "jerusalem", + "radar", + "bout", + "dedicated", + "soon", + "clothing", + "oxford", + "mainstream", + "sorts", + "england", + "server", + "fast", + "dogs", + "mood", + "cruise", + "get", + "ceremony", + "improved", + "soccer", + "constructed", + "hour", + "thats", + "remarkable", + "caroline", + "centre", + "heroes", + "combine", + "definition", + "rental", + "encounter", + "hi", + "cia", + "remembered", + "cup", + "edges", + "uncomfortable", + "charm", + "ten", + "error", + "everyone", + "noise", + "cancel", + "presents", + "frequent", + "beds", + "referred", + "visit", + "few", + "lovers", + "lack", + "excellent", + "accurate", + "minister", + "literary", + "senator", + "worth", + "increased", + "hair", + "poll", + "appear", + "father", + "adds", + "animation", + "habits", + "jet", + "procedure", + "packages", + "bills", + "handful", + "nov", + "representation", + "ga", + "dead", + "massive", + "yards", + "mud", + "hearts", + "si", + "exchange", + "compound", + "respected", + "ruth", + "keeps", + "disk", + "challenged", + "decision", + "wipe", + "widow", + "period", + "values", + "gold", + "finally", + "overview", + "translation", + "performances", + "sold", + "hot", + "lemon", + "musical", + "abstract", + "proposed", + "distance", + "ukraine", + "flat", + "seventh", + "bonus", + "threshold", + "degrees", + "fine", + "warming", + "rail", + "courtesy", + "boundaries", + "duncan", + "thin", + "carter", + "entirely", + "cigarettes", + "nomination", + "hoping", + "rally", + "graduation", + "protecting", + "experts", + "on", + "logic", + "kent", + "peninsula", + "wings", + "incredible", + "initiative", + "audio", + "sucks", + "lucas", + "obligation", + "potentially", + "flight", + "culture", + "shifts", + "surviving", + "companys", + "unless", + "lip", + "creation", + "items", + "sole", + "arrow", + "rip", + "continued", + "joke", + "landing", + "earth", + "no", + "innocent", + "award", + "latin", + "hug", + "asshole", + "operates", + "string", + "vs", + "hills", + "track", + "close", + "conflicts", + "spirit", + "power", + "gym", + "analysis", + "want", + "drove", + "birds", + "brain", + "bolt", + "multiple", + "dog", + "governing", + "induced", + "sad", + "balls", + "identification", + "sky", + "dust", + "warrant", + "relaxed", + "carrier", + "operator", + "participating", + "deer", + "colony", + "variety", + "jon", + "permission", + "alert", + "assets", + "mansion", + "contrary", + "premier", + "hill", + "yesterday", + "assess", + "conduct", + "generous", + "genes", + "jewelry", + "thinking", + "guaranteed", + "jonathan", + "list", + "accidentally", + "modern", + "trick", + "announced", + "pc", + "assessment", + "possibly", + "box", + "quarter", + "door", + "seriously", + "halfway", + "wound", + "facial", + "declined", + "session", + "come", + "travel", + "feels", + "chicken", + "differences", + "decade", + "dvd", + "difficulty", + "generated", + "corporation", + "tv", + "kidney", + "teeth", + "yoga", + "sr", + "critics", + "describes", + "curious", + "monkey", + "even", + "nick", + "create", + "trash", + "urge", + "genuine", + "wasting", + "democratic", + "alternatives", + "puts", + "losses", + "marie", + "invented", + "brass", + "jack", + "junk", + "switched", + "usage", + "speaks", + "tech", + "heels", + "mine", + "vincent", + "rule", + "rep", + "drink", + "guard", + "transit", + "racing", + "engaging", + "figures", + "pay", + "all", + "exit", + "tea", + "highlights", + "rhythm", + "booth", + "sight", + "orbit", + "suspect", + "gospel", + "brad", + "pepper", + "consulting", + "accident", + "cover", + "pointing", + "weird", + "cute", + "nominated", + "till", + "fl", + "resort", + "depth", + "mice", + "copyright", + "miracle", + "sydney", + "competitive", + "washed", + "er", + "horses", + "talked", + "fits", + "consisting", + "modest", + "mere", + "toy", + "friends", + "attracted", + "likewise", + "conservative", + "equipment", + "opponents", + "needing", + "legendary", + "warned", + "thought", + "counted", + "greg", + "ever", + "ore", + "philippines", + "de", + "annual", + "watson", + "posts", + "todd", + "lion", + "say", + "wine", + "sketch", + "whatever", + "invested", + "attraction", + "character", + "entertainment", + "greatly", + "elevated", + "japan", + "models", + "mi", + "are", + "streets", + "sisters", + "often", + "talented", + "latter", + "mark", + "photographs", + "beard", + "careful", + "feeling", + "brandon", + "awarded", + "interaction", + "success", + "consideration", + "down", + "worked", + "none", + "thanksgiving", + "plates", + "churches", + "equality", + "congressional", + "realised", + "every", + "mike", + "schedule", + "dies", + "election", + "grandfather", + "unusual", + "despite", + "juan", + "primary", + "lineup", + "essay", + "listen", + "struck", + "hated", + "owned", + "you", + "professor", + "detection", + "cooked", + "fully", + "flavor", + "nice", + "save", + "st", + "towns", + "complaints", + "number", + "palm", + "murders", + "essentially", + "cash", + "take", + "wearing", + "crazy", + "strategic", + "prayers", + "stored", + "hero", + "conferences", + "write", + "shoe", + "oklahoma", + "maria", + "milan", + "loser", + "challenge", + "terrorism", + "mercy", + "miami", + "starts", + "career", + "titles", + "el", + "relationship", + "nba", + "reputation", + "occurs", + "running", + "feed", + "testing", + "execution", + "fact", + "germans", + "contact", + "board", + "closest", + "receives", + "desired", + "fabulous", + "avoiding", + "exhibition", + "aluminum", + "shoes", + "rare", + "race", + "occur", + "funds", + "print", + "tied", + "moments", + "repairs", + "northeast", + "form", + "providing", + "indicating", + "heavy", + "top", + "savage", + "temperatures", + "dot", + "domestic", + "matched", + "gathered", + "wouldnt", + "build", + "grows", + "stan", + "naturally", + "approximately", + "ferry", + "go", + "posted", + "cam", + "smoke", + "pleased", + "boring", + "throws", + "eventually", + "single", + "ministry", + "early", + "clark", + "task", + "spell", + "mixed", + "mechanical", + "operate", + "variable", + "punk", + "remove", + "game", + "explaining", + "objective", + "russian", + "fraud", + "camps", + "comfortable", + "trucks", + "hillary", + "view", + "services", + "import", + "excuse", + "kenny", + "jumped", + "appeals", + "catching", + "moved", + "pete", + "employee", + "gently", + "modified", + "iv", + "whites", + "amazing", + "iii", + "thompson", + "eric", + "accepted", + "beta", + "influence", + "composed", + "prove", + "medieval", + "judge", + "appropriate", + "males", + "replace", + "swift", + "unemployment", + "sink", + "defeat", + "intensive", + "magic", + "possible", + "todays", + "commonwealth", + "allies", + "laughs", + "burst", + "fiber", + "programmes", + "pension", + "regional", + "delicate", + "excitement", + "colorado", + "hong", + "deadly", + "du", + "hard", + "scientific", + "boston", + "universities", + "loss", + "says", + "stock", + "hungry", + "speak", + "funeral", + "gardens", + "logical", + "fbi", + "follows", + "discovery", + "interpretation", + "shark", + "delighted", + "they", + "division", + "campbell", + "tribes", + "francis", + "projects", + "corruption", + "retail", + "teacher", + "abuse", + "briefly", + "we", + "breach", + "currency", + "something", + "church", + "perfect", + "wider", + "item", + "failing", + "lots", + "muscle", + "sit", + "without", + "bizarre", + "mario", + "tours", + "louis", + "productivity", + "dry", + "welsh", + "petty", + "gentlemen", + "grandmother", + "exposed", + "texas", + "day", + "temporarily", + "nicholas", + "fire", + "roots", + "expanding", + "resolve", + "ron", + "importance", + "planets", + "theft", + "georgia", + "dc", + "battery", + "acres", + "insist", + "appeared", + "stood", + "august", + "nightmare", + "invitation", + "thoroughly", + "inch", + "examination", + "identical", + "age", + "moreover", + "zone", + "operation", + "opposite", + "fa", + "tissue", + "release", + "instance", + "lions", + "at", + "river", + "talks", + "lower", + "centres", + "produce", + "defending", + "prominent", + "meals", + "threatening", + "moore", + "aspects", + "coin", + "survived", + "closed", + "garage", + "profits", + "corner", + "sample", + "hands", + "workout", + "would", + "exercise", + "dictionary", + "barely", + "emotions", + "laid", + "instances", + "produces", + "paragraph", + "advised", + "different", + "crew", + "holy", + "tell", + "reach", + "controller", + "minimal", + "grateful", + "colonial", + "three", + "coming", + "happen", + "workers", + "glasgow", + "planes", + "flexible", + "spectacular", + "consistent", + "reflects", + "carry", + "distribution", + "album", + "reporter", + "continuous", + "cares", + "input", + "guy", + "greater", + "ben", + "lewis", + "life", + "rewards", + "color", + "invention", + "denied", + "enjoyed", + "falling", + "graphic", + "teenage", + "mean", + "everything", + "symbols", + "below", + "cells", + "suggests", + "rear", + "barcelona", + "snap", + "approaches", + "charming", + "isis", + "staring", + "restore", + "overnight", + "method", + "naked", + "review", + "upper", + "kings", + "fix", + "directions", + "allows", + "length", + "angle", + "freedom", + "larry", + "tribute", + "jail", + "britain", + "thirty", + "tunnel", + "adult", + "laboratory", + "drag", + "notice", + "investors", + "vitamin", + "though", + "formula", + "youve", + "bare", + "subsequent", + "formerly", + "created", + "elected", + "craft", + "points", + "bite", + "diego", + "sum", + "constitutional", + "newcastle", + "trends", + "am", + "evans", + "entity", + "exist", + "deeply", + "affordable", + "axis", + "particularly", + "bernard", + "as", + "hospital", + "ca", + "came", + "cum", + "medicine", + "series", + "guinea", + "mobile", + "depression", + "creatures", + "dealers", + "buck", + "provided", + "forgive", + "priest", + "observed", + "acknowledged", + "women", + "theyll", + "tournament", + "suit", + "popular", + "become", + "ruling", + "broke", + "bird", + "cnn", + "pittsburgh", + "cm", + "belongs", + "theres", + "nintendo", + "pursue", + "gauge", + "sean", + "not", + "regularly", + "acquired", + "principal", + "enterprise", + "collective", + "signature", + "concepts", + "conscious", + "she", + "orders", + "moment", + "rage", + "penalties", + "ingredients", + "stuck", + "paintings", + "factor", + "trade", + "pilots", + "bradley", + "opposing", + "documents", + "hits", + "cities", + "attorneys", + "banned", + "mineral", + "airport", + "knowledge", + "jesse", + "meaningful", + "library", + "takes", + "hanging", + "wed", + "athletes", + "suffering", + "mama", + "demo", + "illegal", + "lock", + "stomach", + "phoenix", + "cannot", + "selection", + "transparent", + "basket", + "run", + "buzz", + "cycling", + "characterized", + "style", + "mind", + "total", + "personal", + "treaty", + "atlantic", + "chef", + "otherwise", + "robinson", + "linear", + "adjacent", + "convince", + "impossible", + "settings", + "prepared", + "background", + "sue", + "afternoon", + "captain", + "afford", + "crying", + "heres", + "emperor", + "veteran", + "allen", + "defeated", + "arabia", + "and", + "material", + "doug", + "families", + "eternal", + "another", + "painful", + "womens", + "correct", + "appeal", + "beaten", + "gained", + "locations", + "marks", + "attitude", + "helmet", + "editorial", + "drugs", + "technical", + "declare", + "was", + "tear", + "heights", + "san", + "surveillance", + "business", + "duration", + "honour", + "maps", + "felt", + "vol", + "container", + "fitting", + "suspended", + "elections", + "narrative", + "signed", + "once", + "origin", + "grand", + "eight", + "doctors", + "featured", + "earliest", + "founder", + "name", + "adam", + "earl", + "organisations", + "in", + "lens", + "ranges", + "rogers", + "associate", + "south", + "appearances", + "joy", + "populations", + "assignment", + "suits", + "drinks", + "attacks", + "argues", + "imagined", + "meantime", + "false", + "punishment", + "shoulder", + "male", + "dialogue", + "mississippi", + "rape", + "poem", + "intentions", + "liberal", + "affect", + "numerous", + "laura", + "fortune", + "dawn", + "withdraw", + "cutting", + "cleaning", + "forgotten", + "questioning", + "heat", + "him", + "hammer", + "lying", + "shoot", + "aware", + "killed", + "matching", + "understood", + "materials", + "judgment", + "travelling", + "compared", + "liar", + "somewhat", + "nervous", + "collection", + "height", + "golden", + "suck", + "ad", + "engines", + "rod", + "bored", + "intellectual", + "justify", + "chapters", + "merit", + "dragons", + "tanks", + "moderate", + "them", + "argued", + "pushed", + "shitty", + "army", + "preventing", + "kelly", + "idiots", + "consumption", + "recognized", + "timing", + "lie", + "privately", + "bearing", + "multi", + "dark", + "phone", + "acting", + "taxes", + "deny", + "tables", + "networks", + "customers", + "somehow", + "tales", + "include", + "rotation", + "shes", + "month", + "secondary", + "indicates", + "seems", + "jake", + "henry", + "jamie", + "reserve", + "commented", + "send", + "ltd", + "entries", + "addresses", + "kidding", + "agrees", + "elizabeth", + "host", + "sealed", + "does", + "rates", + "lawyers", + "worn", + "nato", + "offensive", + "needs", + "consultation", + "several", + "has", + "societies", + "volunteer", + "room", + "campaign", + "story", + "restoration", + "belly", + "worlds", + "earnings", + "addiction", + "emerging", + "colored", + "difficulties", + "cookies", + "crop", + "elderly", + "homework", + "little", + "voted", + "carl", + "ended", + "securities", + "mines", + "watching", + "stages", + "grief", + "plans", + "christmas", + "greece", + "interface", + "owen", + "aged", + "supplied", + "theories", + "refuse", + "order", + "luke", + "trail", + "wishes", + "pill", + "trees", + "calculated", + "directors", + "montana", + "reference", + "penny", + "property", + "sadly", + "believed", + "punch", + "practical", + "orlando", + "killer", + "stronger", + "ms", + "em", + "home", + "household", + "usual", + "plug", + "dishes", + "president", + "topics", + "marked", + "reflection", + "missile", + "april", + "substantial", + "jennifer", + "honestly", + "gps", + "when", + "ken", + "cow", + "violence", + "requested", + "shy", + "bodies", + "explore", + "until", + "maine", + "carpet", + "ham", + "tour", + "refers", + "checked", + "pic", + "novels", + "proceedings", + "removal", + "six", + "dominated", + "reduce", + "steam", + "russell", + "spotted", + "paths", + "willing", + "australia", + "november", + "degree", + "hang", + "edinburgh", + "relate", + "bright", + "stairs", + "ripped", + "leads", + "stranger", + "motion", + "integrated", + "users", + "article", + "shadow", + "tolerance", + "interesting", + "frank", + "responding", + "pound", + "black", + "expertise", + "altered", + "field", + "annoying", + "netflix", + "sits", + "knights", + "knee", + "bits", + "cruel", + "humble", + "tips", + "relationships", + "structures", + "infinite", + "pizza", + "translated", + "slip", + "jeans", + "operational", + "experiment", + "fear", + "calm", + "epic", + "regions", + "blowing", + "raid", + "nutrition", + "scare", + "stability", + "reviewed", + "mad", + "user", + "yo", + "prevention", + "amsterdam", + "temperature", + "jury", + "inc", + "shopping", + "archives", + "christian", + "leaf", + "achievements", + "recognised", + "sunny", + "zoo", + "reviews", + "democracy", + "arrested", + "recovery", + "organized", + "awareness", + "ball", + "wealth", + "sexually", + "extract", + "primarily", + "permit", + "finishing", + "fr", + "dealing", + "offering", + "arriving", + "extent", + "al", + "colours", + "anyways", + "gov", + "newest", + "angela", + "genuinely", + "fur", + "bank", + "creek", + "imagination", + "adjusted", + "eastern", + "aka", + "heading", + "wayne", + "instantly", + "quit", + "teachers", + "sleeping", + "anthony", + "broad", + "yellow", + "fucked", + "walks", + "deciding", + "twenty", + "journalist", + "publish", + "competing", + "appreciation", + "cabinet", + "fantasy", + "comparable", + "morgan", + "pressed", + "healthy", + "happier", + "tx", + "profession", + "duck", + "sa", + "leeds", + "chain", + "cognitive", + "mars", + "co", + "extensive", + "nevada", + "submission", + "surprise", + "antonio", + "wildlife", + "rider", + "advocate", + "consumer", + "di", + "idk", + "express", + "coaches", + "minimum", + "placement", + "traffic", + "fires", + "food", + "amazon", + "score", + "forget", + "larger", + "island", + "require", + "challenges", + "genetic", + "old", + "officer", + "doll", + "trades", + "memorial", + "scheme", + "rated", + "foster", + "bro", + "fate", + "unfair", + "throughout", + "homeless", + "seized", + "ah", + "ritual", + "ensure", + "centuries", + "replaced", + "lane", + "deeper", + "hook", + "mar", + "liberals", + "nevertheless", + "challenging", + "discussing", + "james", + "focusing", + "te", + "rides", + "mail", + "resolved", + "testament", + "laptop", + "registered", + "apology", + "apple", + "doc", + "gives", + "engine", + "fusion", + "bother", + "disappeared", + "edit", + "heated", + "perform", + "washington", + "touch", + "dumb", + "draws", + "railway", + "during", + "serve", + "mps", + "electrical", + "fails", + "details", + "press", + "recover", + "coastal", + "questioned", + "wire", + "belonged", + "comment", + "intend", + "dirty", + "hybrid", + "everyday", + "demands", + "methods", + "honey", + "drum", + "strikes", + "bowl", + "winner", + "mt", + "tigers", + "suggest", + "edge", + "faced", + "digital", + "farming", + "traveling", + "songs", + "respond", + "presidential", + "dna", + "whereas", + "pockets", + "films", + "governor", + "joseph", + "edwards", + "gas", + "english", + "stated", + "darling", + "billy", + "told", + "fit", + "comeback", + "unlikely", + "wealthy", + "incredibly", + "addressed", + "baby", + "michelle", + "taiwan", + "vast", + "berlin", + "investigated", + "maker", + "rooms", + "suggestion", + "dated", + "full", + "coalition", + "dance", + "producer", + "underlying", + "protocol", + "many", + "poor", + "steve", + "principle", + "five", + "link", + "margaret", + "detected", + "fixed", + "allied", + "membership", + "sugar", + "beating", + "enhanced", + "marketing", + "instant", + "stand", + "knew", + "stocks", + "cat", + "graham", + "trauma", + "resulted", + "legs", + "innovation", + "participation", + "transactions", + "typical", + "ii", + "imperial", + "letter", + "under", + "beast", + "hes", + "charts", + "blue", + "treatments", + "hire", + "roman", + "weeks", + "humanity", + "anger", + "photos", + "newly", + "pitch", + "strength", + "busy", + "protest", + "loyal", + "woke", + "own", + "panic", + "ink", + "hole", + "closer", + "expansion", + "quick", + "precious", + "responses", + "surrounded", + "harbor", + "shows", + "shorter", + "winners", + "products", + "lease", + "constant", + "rejected", + "theme", + "process", + "christians", + "implement", + "circle", + "fair", + "bridges", + "claimed", + "photo", + "na", + "transaction", + "bugs", + "paying", + "minded", + "content", + "chapel", + "communist", + "truly", + "indication", + "guilty", + "bullets", + "lady", + "cock", + "direct", + "campaigns", + "upgrade", + "sentences", + "commission", + "fee", + "celebrate", + "examples", + "hollywood", + "demon", + "brooks", + "horizon", + "excess", + "raising", + "clothes", + "demonstrated", + "present", + "possession", + "kitchen", + "extend", + "ruin", + "settlement", + "kind", + "displayed", + "effort", + "backs", + "deputy", + "holders", + "giant", + "sounded", + "whats", + "forest", + "tried", + "century", + "vision", + "with", + "fuckin", + "independence", + "honored", + "march", + "begins", + "grown", + "times", + "impact", + "camera", + "database", + "oven", + "else", + "requirement", + "layers", + "attractive", + "can", + "diet", + "spaces", + "cinema", + "appointment", + "streak", + "former", + "kinda", + "upset", + "current", + "insight", + "dirt", + "harmony", + "properly", + "gang", + "par", + "diamond", + "case", + "clouds", + "lied", + "results", + "nursing", + "lung", + "or", + "mistakes", + "pulse", + "slept", + "encountered", + "added", + "generally", + "gift", + "investing", + "tribal", + "favor", + "rumors", + "scientists", + "heck", + "living", + "patterns", + "cancer", + "matters", + "competition", + "smells", + "craig", + "duties", + "ultimately", + "publication", + "popularity", + "marijuana", + "television", + "boards", + "emerged", + "oil", + "faculty", + "bi", + "warfare", + "android", + "pushing", + "bomb", + "embrace", + "hardest", + "privilege", + "mega", + "stake", + "gaining", + "shares", + "closet", + "enhance", + "kevin", + "hidden", + "oliver", + "arch", + "uniform", + "accessible", + "rugby", + "kenya", + "gains", + "productive", + "tune", + "vice", + "shanghai", + "eliminated", + "happy", + "coaching", + "vessels", + "flowing", + "pokemon", + "batman", + "do", + "reasonable", + "jeff", + "cave", + "news", + "bench", + "direction", + "thousands", + "celebration", + "spots", + "intention", + "tropical", + "accordingly", + "julie", + "pour", + "console", + "jeremy", + "strike", + "familys", + "opinions", + "find", + "emails", + "consider", + "network", + "developer", + "managed", + "satellite", + "advances", + "scary", + "hurts", + "pets", + "slightly", + "sees", + "musicians", + "coal", + "sharp", + "pine", + "part", + "representing", + "quotes", + "public", + "rick", + "thomas", + "makes", + "disease", + "association", + "stars", + "adjust", + "original", + "lisa", + "trailer", + "aim", + "easily", + "congratulations", + "parish", + "forces", + "upon", + "introduction", + "pursuit", + "carol", + "breath", + "cloud", + "select", + "features", + "caught", + "movies", + "machinery", + "restaurants", + "connecting", + "commissioner", + "scene", + "relatively", + "emphasis", + "corresponding", + "certainly", + "settled", + "flowers", + "supporting", + "servants", + "allowing", + "promoting", + "don", + "attitudes", + "educational", + "volunteers", + "debt", + "pot", + "holding", + "america", + "included", + "port", + "cure", + "arkansas", + "sentiment", + "agree", + "shade", + "wants", + "globe", + "sentence", + "assault", + "satisfaction", + "facebook", + "rebel", + "employees", + "tale", + "fellow", + "extending", + "sexy", + "entire", + "messages", + "class", + "observation", + "roads", + "done", + "saying", + "arrangement", + "proteins", + "preference", + "julia", + "speed", + "matches", + "frozen", + "wise", + "energy", + "caused", + "communities", + "prince", + "contribution", + "goodbye", + "counter", + "wall", + "tradition", + "facts", + "ships", + "pulling", + "jazz", + "winds", + "government", + "establishment", + "peter", + "ft", + "earthquake", + "alike", + "closure", + "reading", + "clear", + "indeed", + "vary", + "finding", + "grid", + "wells", + "iraq", + "uh", + "disappointed", + "phones", + "freak", + "profile", + "rather", + "scientist", + "always", + "vehicles", + "microsoft", + "yea", + "newspapers", + "acknowledge", + "couch", + "bone", + "bring", + "latest", + "shout", + "ep", + "tweet", + "tbh", + "observations", + "scheduled", + "controversy", + "entry", + "scores", + "ontario", + "memory", + "languages", + "arranged", + "skip", + "capacity", + "motivated", + "jason", + "ace", + "mount", + "crimes", + "vampire", + "liverpool", + "indicate", + "wrote", + "stones", + "regret", + "tires", + "mobility", + "guests", + "arabic", + "isolation", + "fighters", + "sixth", + "any", + "movie", + "shape", + "tears", + "pattern", + "love", + "folks", + "enjoying", + "artistic", + "people", + "environments", + "pictures", + "drunk", + "perry", + "developing", + "flights", + "hopes", + "prisoners", + "friendly", + "elephant", + "insert", + "saints", + "trend", + "writers", + "audit", + "clinic", + "apps", + "guidance", + "sub", + "partial", + "external", + "squad", + "country", + "terror", + "emotional", + "center", + "diving", + "praised", + "appreciate", + "ba", + "york", + "frequency", + "group", + "mysterious", + "hostile", + "seeking", + "threatened", + "internet", + "hence", + "wherever", + "voting", + "road", + "sunday", + "delhi", + "dozen", + "cream", + "inspector", + "ridge", + "americans", + "swiss", + "sin", + "pre", + "cliff", + "fitted", + "institute", + "roster", + "tall", + "reform", + "explanation", + "jump", + "benjamin", + "grace", + "phillips", + "complain", + "roughly", + "mountains", + "arab", + "ann", + "traded", + "scottish", + "self", + "penis", + "hunting", + "concluded", + "quiet", + "pricing", + "funded", + "contractors", + "lately", + "campus", + "served", + "jungle", + "communication", + "normally", + "money", + "journal", + "creature", + "continental", + "shell", + "characteristics", + "located", + "directed", + "stolen", + "contributed", + "weak", + "court", + "line", + "commander", + "eleven", + "violation", + "contracts", + "pan", + "someones", + "severe", + "francisco", + "collins", + "sang", + "serves", + "les", + "pollution", + "beg", + "mass", + "atmosphere", + "ios", + "there", + "biology", + "everywhere", + "noon", + "revenue", + "blonde", + "nurse", + "findings", + "formed", + "choosing", + "ma", + "breakfast", + "ram", + "mystery", + "setting", + "growth", + "us", + "appears", + "chest", + "reward", + "breed", + "transport", + "denmark", + "brought", + "malaysia", + "novel", + "concerns", + "talent", + "salary", + "coast", + "porn", + "hear", + "dimension", + "sticking", + "strings", + "chairs", + "rely", + "molecular", + "infrastructure", + "clinical", + "complex", + "caps", + "iconic", + "principles", + "manager", + "approaching", + "peers", + "act", + "crisis", + "ethics", + "machines", + "crime", + "secret", + "ways", + "freeze", + "record", + "propaganda", + "police", + "mortgage", + "norman", + "ashamed", + "dealt", + "girl", + "fm", + "ballot", + "this", + "flame", + "citizenship", + "mac", + "neighborhood", + "reflected", + "sized", + "note", + "republican", + "protected", + "layout", + "beloved", + "tennessee", + "safety", + "romantic", + "settle", + "static", + "assumption", + "drives", + "linda", + "systems", + "measured", + "report", + "throat", + "dressed", + "blocks", + "expect", + "williams", + "shortly", + "bears", + "segment", + "scan", + "capital", + "diana", + "opened", + "object", + "parent", + "prof", + "yet", + "engineer", + "least", + "cheating", + "emotion", + "economics", + "assistant", + "passes", + "suspension", + "job", + "creative", + "zero", + "separation", + "eve", + "gone", + "ray", + "bat", + "performance", + "crap", + "fill", + "momentum", + "minority", + "eaten", + "convention", + "logan", + "stressed", + "varied", + "italy", + "bristol", + "film", + "runner", + "overcome", + "republicans", + "bang", + "safer", + "surfaces", + "affair", + "recognition", + "across", + "den", + "photographer", + "travis", + "cops", + "declaration", + "develop", + "my", + "indigenous", + "born", + "application", + "tony", + "carolina", + "korean", + "polish", + "certified", + "metres", + "default", + "issue", + "respective", + "eating", + "apart", + "goat", + "lips", + "percent", + "organic", + "accent", + "theoretical", + "non", + "mid", + "formally", + "ridiculous", + "villages", + "circuit", + "colonel", + "wedding", + "excessive", + "aircraft", + "gain", + "published", + "stance", + "thai", + "cooling", + "ali", + "laundry", + "sunset", + "murphy", + "released", + "designated", + "stands", + "guns", + "expanded", + "shared", + "processes", + "iphone", + "wing", + "province", + "differently", + "rational", + "ye", + "swedish", + "historic", + "driving", + "combined", + "ghost", + "biological", + "nigeria", + "architecture", + "explosion", + "bombs", + "copies", + "confusing", + "steps", + "apply", + "estimates", + "recall", + "hotel", + "human", + "denver", + "speaker", + "migration", + "renewed", + "josh", + "wanting", + "literature", + "eggs", + "soviet", + "machine", + "columbia", + "expert", + "load", + "spam", + "hundred", + "purpose", + "isnt", + "considerable", + "possibility", + "beef", + "exclusively", + "wounded", + "bet", + "chile", + "woman", + "border", + "knight", + "preferred", + "ash", + "bio", + "planned", + "va", + "understands", + "nicely", + "fans", + "weekend", + "champion", + "son", + "failed", + "conducting", + "hand", + "bend", + "win", + "launched", + "servant", + "mentally", + "waters", + "restored", + "liquor", + "olympic", + "weapon", + "brief", + "sony", + "significance", + "given", + "terrorists", + "hats", + "pregnant", + "jean", + "torture", + "candidate", + "her", + "persons", + "pending", + "conservatives", + "faith", + "ohio", + "pain", + "expense", + "gay", + "charlotte", + "trump", + "cannon", + "subway", + "left", + "mo", + "graduates", + "airline", + "special", + "oclock", + "sand", + "strategy", + "policies", + "east", + "cost", + "harvest", + "attorney", + "hitler", + "shake", + "keyboard", + "roof", + "workplace", + "grants", + "elite", + "compensation", + "concentrate", + "insisted", + "tag", + "stephen", + "bbc", + "uncertainty", + "fifth", + "heaven", + "batteries", + "sometimes", + "soil", + "built", + "anxiety", + "option", + "executives", + "risks", + "instructor", + "monster", + "inventory", + "destroying", + "lets", + "tyler", + "banks", + "plants", + "nations", + "statue", + "organ", + "orchestra", + "less", + "nine", + "lies", + "criminals", + "arsenal", + "invisible", + "aaron", + "enthusiasm", + "anybody", + "barry", + "wheels", + "arc", + "leak", + "most", + "defend", + "factory", + "surprising", + "appointed", + "storm", + "occurred", + "stories", + "gary", + "onto", + "annually", + "population", + "only", + "brains", + "tourism", + "rising", + "enemies", + "studio", + "meter", + "but", + "condition", + "omg", + "selected", + "hurry", + "adams", + "confirmed", + "therefore", + "purchase", + "samsung", + "going", + "china", + "goes", + "graphics", + "harvey", + "dam", + "extension", + "short", + "ahead", + "acid", + "norway", + "rob", + "richmond", + "studios", + "seconds", + "purchased", + "swing", + "bloody", + "verse", + "championship", + "destiny", + "warrior", + "led", + "poems", + "lucky", + "attempting", + "break", + "timeline", + "licensed", + "shield", + "connect", + "mrs", + "shocking", + "facing", + "excited", + "roll", + "files", + "yeah", + "strain", + "socks", + "mathematical", + "solo", + "twitter", + "component", + "warn", + "foot", + "hadnt", + "intervention", + "retirement", + "pray", + "compete", + "cope", + "records", + "ebay", + "atlanta", + "traditionally", + "victor", + "specially", + "candy", + "ignorance", + "ranked", + "hired", + "must", + "ought", + "estimate", + "connected", + "knock", + "being", + "hosting", + "writing", + "rats", + "knees", + "kids", + "recorded", + "luck", + "burden", + "medal", + "nbc", + "shouldve", + "desires", + "placing", + "interact", + "declared", + "maximum", + "tragic", + "heart", + "designer", + "van", + "won", + "personality", + "claiming", + "unfortunately", + "aug", + "ninth", + "boxes", + "acquisition", + "failure", + "badly", + "remainder", + "personnel", + "commerce", + "awkward", + "ages", + "proper", + "an", + "actions", + "passive", + "seat", + "lord", + "sticks", + "contrast", + "phil", + "summary", + "vertical", + "elaborate", + "decide", + "apparent", + "swim", + "leaving", + "lighter", + "finale", + "first", + "legacy", + "glorious", + "department", + "investigating", + "depend", + "reporting", + "lieutenant", + "walter", + "equivalent", + "territory", + "dick", + "diabetes", + "detect", + "sec", + "accomplished", + "indiana", + "deemed", + "spite", + "invest", + "realistic", + "programming", + "thrown", + "studied", + "visitor", + "scholarship", + "banner", + "ss", + "lifted", + "means", + "rebels", + "british", + "attempt", + "fighting", + "icon", + "product", + "better", + "fish", + "desk", + "divide", + "unknown", + "indians", + "cents", + "walk", + "update", + "nasty", + "bush", + "damaged", + "addition", + "rent", + "seller", + "planted", + "vote", + "islands", + "tube", + "emma", + "borders", + "proposal", + "registration", + "wish", + "horror", + "decided", + "encouraging", + "associates", + "price", + "restrictions", + "asleep", + "consists", + "himself", + "doctor", + "soft", + "parallel", + "traveled", + "whom", + "rounds", + "february", + "net", + "truth", + "cbs", + "main", + "urgent", + "well", + "gates", + "than", + "fascinating", + "radio", + "draft", + "production", + "tracking", + "shirts", + "assists", + "meal", + "los", + "phd", + "deaths", + "liked", + "repeatedly", + "sept", + "retain", + "media", + "restaurant", + "travels", + "natural", + "convinced", + "sen", + "client", + "need", + "fewer", + "lords", + "fence", + "enemy", + "crucial", + "unexpected", + "training", + "religion", + "dozens", + "cool", + "bob", + "flew", + "ads", + "chancellor", + "colleagues", + "justified", + "specifically", + "forced", + "joan", + "perfectly", + "works", + "richard", + "expressed", + "preserved", + "warner", + "crossed", + "coffee", + "themes", + "pale", + "etc", + "sick", + "related", + "climb", + "daily", + "space", + "completion", + "majesty", + "also", + "gallery", + "youll", + "jessica", + "fairy", + "immune", + "organization", + "possess", + "mother", + "snow", + "apparently", + "patent", + "bands", + "playoffs", + "lives", + "water", + "pleasant", + "founded", + "blows", + "passionate", + "cause", + "brian", + "shook", + "venue", + "foundation", + "clubs", + "bow", + "paradise", + "messed", + "true", + "wanted", + "twins", + "divine", + "reflect", + "industrial", + "boys", + "opponent", + "raw", + "lived", + "oxygen", + "cheat", + "contents", + "suspicious", + "urban", + "sometime", + "eagles", + "steady", + "forests", + "weekly", + "sir", + "helping", + "pie", + "samples", + "sources", + "high", + "critical", + "width", + "sex", + "menu", + "queensland", + "ps", + "witness", + "proceed", + "convenience", + "iran", + "transmission", + "sweden", + "photography", + "accompanied", + "prevented", + "corners", + "move", + "effect", + "vegas", + "ha", + "summer", + "birth", + "sponsor", + "chances", + "reasoning", + "bigger", + "fiction", + "choice", + "week", + "proposals", + "processing", + "god", + "ceo", + "speeds", + "namely", + "divided", + "tender", + "abortion", + "mechanisms", + "of", + "funny", + "basement", + "legitimate", + "confidence", + "blank", + "hood", + "catherine", + "complexity", + "eager", + "sister", + "breathe", + "look", + "tennis", + "be", + "accounting", + "equal", + "initiatives", + "libraries", + "derived", + "lay", + "faithful", + "behavior", + "signals", + "centers", + "wife", + "alaska", + "cuts", + "dresses", + "weight", + "eh", + "nowadays", + "private", + "focus", + "prizes", + "political", + "figured", + "thousand", + "laws", + "psychological", + "increase", + "might", + "proof", + "premises", + "sequence", + "publisher", + "virus", + "structural", + "interactive", + "partly", + "types", + "manufactured", + "route", + "late", + "lesson", + "sustained", + "potter", + "associations", + "fred", + "darkness", + "heard", + "distributed", + "treating", + "itll", + "stores", + "podcast", + "square", + "permanent", + "corn", + "cap", + "disorders", + "editors", + "difficult", + "calling", + "athlete", + "floors", + "gulf", + "clarke", + "honor", + "sake", + "columbus", + "equation", + "injured", + "window", + "answering", + "immigrants", + "missed", + "beside", + "drain", + "mistake", + "income", + "initial", + "mum", + "comics", + "gifts", + "sheep", + "succeed", + "ranch", + "courses", + "wore", + "providers", + "program", + "carlos", + "invite", + "arrive", + "religious", + "result", + "suited", + "standard", + "cotton", + "capabilities", + "pregnancy", + "kit", + "pressing", + "responsible", + "simply", + "federal", + "cooperation", + "nobody", + "pipe", + "females", + "company", + "occasional", + "automatically", + "dependent", + "advisory", + "due", + "terminal", + "normal", + "oregon", + "survivors", + "ticket", + "pose", + "os", + "junior", + "evaluation", + "fathers", + "specified", + "austria", + "pics", + "struggled", + "impression", + "loving", + "polls", + "grades", + "boot", + "ski", + "insurance", + "trainer", + "global", + "introducing", + "exam", + "jealous", + "caribbean", + "breakdown", + "interested", + "inevitable", + "siblings", + "followed", + "parties", + "artists", + "applications", + "exact", + "bell", + "tim", + "female", + "ll", + "poet", + "laughing", + "using", + "revenge", + "cookie", + "me", + "academy", + "guarantee", + "expected", + "dublin", + "subscription", + "over", + "ring", + "return", + "touched", + "manchester", + "jacob", + "agenda", + "pearl", + "great", + "smart", + "haven", + "cruz", + "ports", + "conventional", + "dimensions", + "met", + "bound", + "twin", + "routes", + "putting", + "alan", + "debut", + "passing", + "organised", + "obama", + "plastic", + "singapore", + "intimate", + "know", + "before", + "runs", + "corporations", + "hundreds", + "marc", + "beyond", + "promised", + "eu", + "periods", + "motivation", + "roles", + "gear", + "gorgeous", + "sought", + "action", + "unions", + "probably", + "doing", + "leo", + "quest", + "cut", + "gop", + "spray", + "iron", + "dont", + "testimony", + "passage", + "exercises", + "backwards", + "wanna", + "anime", + "elder", + "disney", + "site", + "poland", + "picks", + "landscape", + "inquiry", + "conservation", + "fifty", + "equipped", + "fall", + "districts", + "kid", + "articles", + "explains", + "concert", + "facilities", + "naval", + "died", + "wide", + "final", + "certain", + "problems", + "underground", + "speech", + "description", + "received", + "getting", + "against", + "leaves", + "hughes", + "agricultural", + "knows", + "nothing", + "montreal", + "impressive", + "theater", + "shots", + "asked", + "demand", + "table", + "justice", + "wi", + "arrival", + "israeli", + "wireless", + "respect", + "attendance", + "empty", + "owe", + "cheese", + "electronic", + "presenting", + "positions", + "evil", + "breaking", + "worrying", + "desperate", + "didnt", + "thunder", + "continues", + "wind", + "connections", + "texts", + "discrimination", + "fashion", + "lifetime", + "coach", + "headline", + "legally", + "struggles", + "advisor", + "limited", + "oldest", + "investigate", + "lobby", + "let", + "shore", + "remained", + "tiger", + "activity", + "pennsylvania", + "accept", + "departments", + "apartments", + "pat", + "oscar", + "between", + "measurements", + "picture", + "preservation", + "spring", + "math", + "itd", + "secure", + "kicked", + "fairly", + "looked", + "sacrifice", + "laughed", + "package", + "olympics", + "flexibility", + "corporate", + "call", + "doesnt", + "students", + "meters", + "word", + "manufacturers", + "peer", + "behind", + "ask", + "clinton", + "exploration", + "republic", + "susan", + "trap", + "distinction", + "shirt", + "defense", + "worthy", + "amateur", + "wars", + "pathetic", + "implications", + "parents", + "occupation", + "simultaneously", + "promoted", + "retreat", + "placed", + "date", + "gate", + "angry", + "tl", + "opportunities", + "shower", + "attend", + "dignity", + "pakistan", + "featuring", + "verdict", + "thou", + "reception", + "youtube", + "nelson", + "wonderful", + "dramatic", + "pair", + "afraid", + "involved", + "devil", + "tested", + "jurisdiction", + "surgeon", + "saudi", + "pages", + "whip", + "open", + "shut", + "monetary", + "playing", + "detail", + "difference", + "log", + "good", + "ct", + "unity", + "curriculum", + "law", + "extra", + "goals", + "branches", + "destroyed", + "front", + "lovely", + "legislative", + "nurses", + "friendship", + "rate", + "reign", + "environmental", + "put", + "weekends", + "humor", + "steel", + "performed", + "grey", + "pakistani", + "ted", + "executive", + "buildings", + "shadows", + "immediately", + "red", + "owner", + "seen", + "alternate", + "stops", + "friend", + "member", + "column", + "rank", + "fighter", + "pride", + "dental", + "commons", + "perceived", + "here", + "delivering", + "league", + "advance", + "appearing", + "rapid", + "wood", + "advantages", + "provision", + "useless", + "bed", + "flag", + "releasing", + "sooner", + "treasury", + "silent", + "embassy", + "implementation", + "thank", + "reveals", + "refuses", + "conditions", + "celebrating", + "favourite", + "autumn", + "yes", + "provides", + "tragedy", + "reaction", + "privacy", + "yourself", + "blame", + "flesh", + "toe", + "semester", + "chasing", + "native", + "reasons", + "seattle", + "accounts", + "worker", + "companion", + "earning", + "allegedly", + "while", + "theyre", + "fields", + "smaller", + "insane", + "death", + "jim", + "overwhelming", + "companies", + "legends", + "gray", + "pieces", + "confusion", + "chick", + "beginning", + "speakers", + "counts", + "called", + "instagram", + "new", + "density", + "sail", + "emergency", + "exports", + "guards", + "images", + "joining", + "making", + "suffer", + "worship", + "seeing", + "state", + "distinguished", + "paper", + "describe", + "supported", + "healthcare", + "from", + "complete", + "murdered", + "overall", + "status", + "available", + "completing", + "reserves", + "brand", + "bedroom", + "art", + "further", + "technology", + "yelling", + "issued", + "weather", + "who", + "rolling", + "song", + "office", + "converted", + "completely", + "drops", + "apologize", + "seek", + "activities", + "conversion", + "regarding", + "harsh", + "label", + "introduce", + "minute", + "lecture", + "rap", + "closely", + "round", + "applies", + "myself", + "movement", + "tide", + "uncle", + "allow", + "wasted", + "judging", + "nuclear", + "matrix", + "serving", + "ban", + "martin", + "resistance", + "davis", + "regulation", + "spectrum", + "singer", + "stream", + "informed", + "hat", + "rope", + "both", + "sound", + "dec", + "parking", + "finished", + "gentle", + "bull", + "graph", + "intermediate", + "grocery", + "phrase", + "md", + "see", + "metal", + "skilled", + "cell", + "tough", + "mathematics", + "visa", + "experience", + "pm", + "dying", + "walked", + "figure", + "hurt", + "reported", + "shaw", + "shit", + "hd", + "consensus", + "consequence", + "guilt", + "how", + "bid", + "health", + "add", + "ford", + "nut", + "illinois", + "powered", + "financing", + "evaluate", + "sandwich", + "twice", + "plain", + "golf", + "gaming", + "sense", + "ton", + "course", + "municipal", + "filling", + "federation", + "pills", + "auto", + "boss", + "wheres", + "tin", + "narrow", + "approached", + "cups", + "software", + "cargo", + "limitations", + "support", + "austin", + "ave", + "drawings", + "hilarious", + "lamb", + "fifa", + "hampshire", + "measurement", + "wednesday", + "stole", + "watched", + "permanently", + "priorities", + "preparation", + "rating", + "philip", + "slide", + "generations", + "looks", + "months", + "started", + "journalism", + "shipping", + "stuart", + "nonsense", + "tongue", + "bucket", + "wages", + "mouse", + "flames", + "bath", + "spanish", + "joins", + "chip", + "mandatory", + "cole", + "pole", + "contributing", + "gonna", + "genius", + "professionals", + "ex", + "authority", + "tons", + "anna", + "represent", + "institution", + "mess", + "medication", + "designers", + "youngest", + "assembly", + "purchasing", + "thermal", + "existing", + "whether", + "more", + "disorder", + "span", + "magazines", + "lacking", + "extended", + "treats", + "returned", + "pussy", + "womans", + "lists", + "venture", + "lesser", + "visible", + "transformation", + "nah", + "interior", + "inflation", + "chris", + "favorites", + "cop", + "houses", + "transportation", + "phase", + "range", + "barrier", + "convenient", + "lasted", + "dinner", + "regular", + "where", + "pastor", + "numbers", + "displays", + "introduced", + "egyptian", + "temple", + "committed", + "forcing", + "each", + "surgery", + "satisfied", + "sp", + "sectors", + "advice", + "block", + "deliver", + "saturday", + "pretend", + "notion", + "trace", + "blow", + "body", + "corp", + "miller", + "trigger", + "partner", + "panel", + "behalf", + "serial", + "re", + "backing", + "laying", + "assume", + "hop", + "plays", + "pro", + "toll", + "mining", + "dutch", + "corps", + "nearest", + "core", + "clips", + "parker", + "fundamental", + "qualify", + "santa", + "button", + "states", + "gut", + "spot", + "obamas", + "like", + "standards", + "packed", + "patient", + "custom", + "security", + "website", + "card", + "beautiful", + "fake", + "scott", + "singles", + "bus", + "nancy", + "divorced", + "dining", + "independently", + "fired", + "answers", + "goddess", + "tells", + "shot", + "marcus", + "info", + "excellence", + "immediate", + "significant", + "familiar", + "feel", + "brooklyn", + "ocean", + "gm", + "dressing", + "laugh", + "legend", + "cried", + "situations", + "affecting", + "sins", + "activists", + "pit", + "hoped", + "capability", + "experiences", + "harry", + "purple", + "forever", + "improving", + "behaviour", + "kate", + "openly", + "announcement", + "his", + "min", + "costa", + "die", + "belief", + "captured", + "countries", + "tends", + "our", + "identified", + "gradually", + "ward", + "recently", + "reduced", + "spread", + "utility", + "circles", + "beijing", + "remember", + "person", + "recovered", + "slaves", + "sorry", + "point", + "towards", + "psychology", + "alpha", + "rookie", + "slow", + "nc", + "las", + "morning", + "directly", + "creativity", + "letting", + "separated", + "teenager", + "helpful", + "wrong", + "assumed", + "entrance", + "diverse", + "toward", + "examine", + "such", + "teams", + "silver", + "players", + "taste", + "communicate", + "suitable", + "silk", + "locked", + "artist", + "equally", + "click", + "moscow", + "fuel", + "baseball", + "spend", + "happens", + "sat", + "argue", + "involve", + "beer", + "catholic", + "educated", + "cold", + "specialist", + "invited", + "representatives", + "ate", + "one", + "tight", + "took", + "desire", + "basketball", + "basic", + "anyone", + "candidates", + "collect", + "graduated", + "collected", + "continent", + "portugal", + "encourage", + "depressed", + "suite", + "dimensional", + "strictly", + "composition", + "references", + "conversation", + "au", + "repair", + "smile", + "comfort", + "brown", + "charity", + "pump", + "tone", + "pretending", + "animals", + "selfish", + "aging", + "completed", + "pig", + "delayed", + "path", + "things", + "script", + "united", + "parts", + "streaming", + "sacred", + "team", + "permitted", + "calories", + "additionally", + "tastes", + "hate", + "approve", + "midnight", + "battles", + "holiday", + "meaning", + "surface", + "pace", + "anytime", + "tape", + "laser", + "ultimate", + "management", + "subtle", + "starter", + "classes", + "mills", + "exploring", + "hudson", + "labour", + "shock", + "editing", + "tokyo", + "mechanics", + "lake", + "solve", + "options", + "supports", + "frustrated", + "levels", + "combination", + "rocky", + "magical", + "seeds", + "metropolitan", + "supportive", + "ashley", + "judicial", + "anne", + "fold", + "journalists", + "lamp", + "disappointing", + "virginia", + "owners", + "reached", + "leg", + "boom", + "message", + "childrens", + "turned", + "afghanistan", + "ethical", + "limit", + "improvements", + "observe", + "operated", + "gross", + "weed", + "winning", + "poetry", + "brazil", + "donated", + "relating", + "congress", + "effectiveness", + "fly", + "wolves", + "railroad", + "petition", + "video", + "concept", + "issues", + "grade", + "harassment", + "purposes", + "code", + "enormous", + "per", + "highly", + "changing", + "mexico", + "lee", + "cigarette", + "deserves", + "welfare", + "hannah", + "seeks", + "regulatory", + "bases", + "almost", + "sales", + "tracks", + "resolution", + "loads", + "truck", + "provider", + "best", + "club", + "pairs", + "prayer", + "pool", + "cape", + "married", + "bud", + "individuals", + "arms", + "vacation", + "huge", + "give", + "sort", + "young", + "secretary", + "argument", + "residential", + "street", + "hockey", + "comments", + "stamp", + "scotland", + "lands", + "lgbt", + "talk", + "significantly", + "classic", + "uk", + "louisiana", + "nigerian", + "loop", + "soup", + "revolution", + "ip", + "bars", + "firm", + "much", + "beings", + "disgusting", + "edition", + "xbox", + "depends", + "probability", + "eligible", + "baltimore", + "infection", + "foods", + "remain", + "roberts", + "games", + "exceptional", + "have", + "substitute", + "couldve", + "alcohol", + "equity", + "text", + "channel", + "second", + "waited", + "turns", + "sudden", + "burns", + "households", + "rice", + "smith", + "residents", + "technologies", + "light", + "marry", + "output", + "cant", + "higher", + "practice", + "aid", + "previous", + "lyrics", + "gathering", + "brands", + "countrys", + "lab", + "charges", + "count", + "head", + "weapons", + "th", + "governance", + "magnificent", + "brave", + "wrestling", + "dress", + "realized", + "valley", + "hope", + "stretch", + "believes", + "struggle", + "keys", + "classroom", + "literally", + "markets", + "papers", + "attack", + "role", + "mountain", + "involves", + "cited", + "feature", + "ceiling", + "comply", + "expression", + "practices", + "future", + "obviously", + "subjects", + "armed", + "diseases", + "wisconsin", + "voices", + "notable", + "ive", + "airlines", + "bucks", + "employment", + "stewart", + "civilization", + "cc", + "mans", + "counsel", + "fabric", + "vessel", + "never", + "nerves", + "catch", + "glass", + "reportedly", + "reasonably", + "fought", + "painting", + "town", + "amy", + "weakness", + "fell", + "ease", + "removing", + "cats", + "important", + "africa", + "concerned", + "shorts", + "wrist", + "stanley", + "responded", + "ignored", + "share", + "presence", + "determine", + "hull", + "quickly", + "marvel", + "corrupt", + "availability", + "knocked", + "outside", + "september", + "linked", + "chains", + "tap", + "bags", + "root", + "bar", + "aa", + "absence", + "array", + "installation", + "straight", + "vintage", + "meanwhile", + "km", + "offer", + "oh", + "holmes", + "studying", + "shame", + "wasnt", + "manner", + "reliable", + "achieving", + "exactly", + "accepting", + "automatic", + "lesbian", + "volume", + "recommendation", + "worried", + "nephew", + "flies", + "hosted", + "underneath", + "fight", + "suddenly", + "carrying", + "jewish", + "sympathy", + "baker", + "fail", + "outstanding", + "following", + "tackle", + "recognize", + "broken", + "essential", + "groups", + "commitment", + "sophisticated", + "leave", + "wheel", + "bitch", + "attract", + "updates", + "symptoms", + "various", + "target", + "children", + "partnership", + "bin", + "proud", + "universe", + "outcome", + "seo", + "rivers", + "prefer", + "producers", + "duty", + "champions", + "howard", + "producing", + "reverse", + "labor", + "scenario", + "language", + "bowling", + "highest", + "destruction", + "maryland", + "raised", + "qualifying", + "he", + "society", + "milwaukee", + "dip", + "advantage", + "hype", + "eighth", + "cafe", + "belong", + "streams", + "prior", + "delivered", + "assist", + "existed", + "into", + "ordinary", + "designs", + "beam", + "concentration", + "row", + "andy", + "refused", + "watch", + "sergeant", + "surely", + "assuming", + "join", + "bride", + "efforts", + "increasingly", + "maintained", + "mile", + "moves", + "ryan", + "savings", + "finish", + "cherry", + "react", + "alone", + "hello", + "arguing", + "far", + "anderson", + "writes", + "happily", + "type", + "loan", + "seed", + "chuck", + "shaped", + "instruments", + "years", + "ok", + "poverty", + "saving", + "abroad", + "sizes", + "dynamic", + "guide", + "design", + "teaching", + "viewed", + "identifying", + "puerto", + "rs", + "portion", + "bruce", + "deserved", + "science", + "repeat", + "terrible", + "lazy", + "suppose", + "command", + "quantity", + "ally", + "blown", + "defender", + "interests", + "coins", + "errors", + "highway", + "physician", + "example", + "viewers", + "potatoes", + "cos", + "joined", + "wear", + "covering", + "freaking", + "deserve", + "chair", + "wisdom", + "intel", + "display", + "correctly", + "address", + "nyc", + "rings", + "please", + "assured", + "ship", + "adorable", + "obtained", + "scholars", + "resignation", + "perspective", + "tourist", + "illustrated", + "soldiers", + "noble", + "sweet", + "aw", + "championships", + "bringing", + "lebanon", + "printing", + "christopher", + "install", + "changes", + "nowhere", + "rome", + "melbourne", + "talking", + "setup", + "define", + "surprisingly", + "del", + "teens", + "efficiency", + "western", + "experiments", + "organizations", + "mutual", + "functions", + "roy", + "cleaned", + "shocked", + "inside", + "quote", + "bathroom", + "june", + "prison", + "dancing", + "reply", + "lbs", + "architect", + "detective", + "technically", + "lit", + "year", + "refugees", + "needed", + "clean", + "cultural", + "goal", + "giving", + "page", + "individual", + "tie", + "jane", + "examined", + "gets", + "glory", + "broadcast", + "believe", + "separately", + "potential", + "instruction", + "focuses", + "information", + "able", + "chief", + "proves", + "tool", + "worry", + "problem", + "found", + "attended", + "slim", + "couldnt", + "managing", + "congrats", + "passed", + "spiritual", + "radiation", + "stepped", + "diversity", + "hugh", + "station", + "subject", + "bonds", + "earn", + "dating", + "burned", + "pt", + "spy", + "ours", + "changed", + "commonly", + "wtf", + "last", + "outcomes", + "thick", + "jobs", + "zones", + "smash", + "farmer", + "mounted", + "loses", + "ratio", + "filed", + "officially", + "drama", + "attention", + "perhaps", + "app", + "yard", + "sector", + "experiencing", + "reject", + "receiver", + "disability", + "precise", + "considers", + "half", + "google", + "idea", + "intelligence", + "calendar", + "some", + "gave", + "seemed", + "electricity", + "breeding", + "fruits", + "backup", + "valuable", + "derby", + "finance", + "throwing", + "margin", + "adaptation", + "lift", + "kyle", + "secrets", + "complaining", + "begin", + "op", + "rocket", + "mix", + "feeding", + "miss", + "carries", + "mission", + "lighting", + "exhibit", + "blocking", + "italian", + "chocolate", + "carriers", + "applied", + "navigation", + "jan", + "strongly", + "strategies", + "produced", + "conversations", + "bronze", + "ar", + "visited", + "promises", + "germany", + "rangers", + "lasting", + "lmao", + "manufacturing", + "filming", + "participate", + "relations", + "debate", + "rose", + "value", + "serious", + "likely", + "dismissed", + "your", + "somebody", + "fastest", + "rat", + "anti", + "aids", + "decides", + "profit", + "claim", + "fried", + "having", + "involvement", + "inspired", + "worries", + "coke", + "nearby", + "controls", + "abilities", + "control", + "americas", + "addressing", + "retire", + "medium", + "prints", + "defensive", + "intended", + "sing", + "which", + "drivers", + "genre", + "controversial", + "butler", + "electric", + "amendment", + "social", + "hub", + "legislature", + "fun", + "utterly", + "unit", + "bones", + "solution", + "clock", + "belgium", + "formal", + "dangerous", + "pretty", + "therapy", + "delicious", + "idiot", + "man", + "fees", + "innovative", + "access", + "family", + "cooper", + "wallet", + "favorite", + "improve", + "covered", + "calls", + "websites", + "investigation", + "auction", + "carbon", + "boost", + "celebrities", + "counties", + "nathan", + "tablet", + "december", + "regards", + "protection", + "severely", + "garden", + "blocked", + "franklin", + "muscles", + "paul", + "distinct", + "sierra", + "trophy", + "tweeted", + "floor", + "administrator", + "recommendations", + "survive", + "cricket", + "ice", + "conducted", + "reaches", + "daniel", + "forward", + "customs", + "hamilton", + "alien", + "steven", + "stone", + "disabled", + "guest", + "donald", + "consent", + "components", + "bs", + "picked", + "territories", + "practically", + "chemistry", + "codes", + "walls", + "appearance", + "younger", + "tattoo", + "ear", + "whoever", + "is", + "premium", + "determined", + "voice", + "transfer", + "qualities", + "lead", + "evening", + "achievement", + "hp", + "reports", + "mental", + "witch", + "wooden", + "ac", + "switzerland", + "efficient", + "plant", + "parliamentary", + "diplomatic", + "conflict", + "replacement", + "integrity", + "admit", + "tire", + "booked", + "developed", + "washing", + "procedures", + "applying", + "jr", + "flows", + "peoples", + "its", + "keeping", + "piano", + "monsters", + "marine", + "prime", + "holes", + "band", + "executed", + "breathing", + "escaped", + "make", + "asian", + "scenes", + "buyer", + "similar", + "habit", + "sufficient", + "unlimited", + "motor", + "fort", + "contained", + "tom", + "uses", + "pressure", + "broader", + "percentage", + "sharing", + "successful", + "help", + "patients", + "recent", + "opportunity", + "brothers", + "striking", + "rural", + "fights", + "collections", + "fears", + "targeted", + "admission", + "fluid", + "discussed", + "credits", + "reminded", + "kills", + "strict", + "voters", + "rolls", + "seal", + "gambling", + "format", + "cowboys", + "ruined", + "average", + "supreme", + "big", + "ancient", + "authorized", + "myth", + "maintenance", + "bible", + "rays", + "abandon", + "friday", + "btw", + "war", + "benefits", + "homes", + "parliament", + "disappointment", + "urged", + "cease", + "recording", + "rubber", + "institutions", + "easter", + "employed", + "piss", + "blade", + "fifteen", + "laughter", + "applicable", + "long", + "daughters", + "shed", + "entering", + "stunning", + "buy", + "ultra", + "hurting", + "insects", + "forms", + "depending", + "chill", + "spoken", + "force", + "creates", + "bee", + "cross", + "posting", + "senators", + "robot", + "offered", + "angel", + "already", + "followers", + "outta", + "freezing", + "maintaining", + "joking", + "slavery", + "totally", + "expenses", + "soldier", + "next", + "threw", + "mall", + "activated", + "spending", + "greatest", + "relief", + "chairman", + "circumstances", + "helen", + "jets", + "transfers", + "match", + "danger", + "http", + "manual", + "conference", + "crushed", + "approach", + "guided", + "authorities", + "southern", + "yup", + "glasses", + "listed", + "actress", + "boots", + "awards", + "checking", + "king", + "receive", + "senate", + "arrangements", + "continuing", + "gender", + "dairy", + "festival", + "il", + "passion", + "jo", + "account", + "riot", + "reducing", + "mob", + "shop", + "diameter", + "khan", + "loose", + "tip", + "player", + "publishing", + "starring", + "miserable", + "finds", + "cemetery", + "contest", + "empire", + "prospect", + "asking", + "benefit", + "commit", + "specific", + "arthur", + "amongst", + "download", + "heavily", + "starting", + "courts", + "capture", + "scratch", + "begun", + "colour", + "screening", + "wonder", + "events", + "im", + "bye", + "qualified", + "known", + "wright", + "labels", + "agents", + "publishers", + "managers", + "butter", + "stealing", + "platform", + "actor", + "if", + "lucy", + "chart", + "knife", + "notes", + "instead", + "tobacco", + "pick", + "https", + "chiefs", + "working", + "air", + "development", + "strengthen", + "kingdom", + "prisoner", + "symbol", + "bug", + "reader", + "episodes", + "leading", + "til", + "deposit", + "funding", + "comparing", + "barbara", + "escape", + "tho", + "unbelievable", + "map", + "sweat", + "watches", + "worst", + "lost", + "babe", + "babies", + "temporary", + "confused", + "extremely", + "mp", + "unable", + "ve", + "biggest", + "sentenced", + "throne", + "void", + "shown", + "for", + "image", + "expectations", + "virgin", + "village", + "witnessed", + "offices", + "engage", + "location", + "developers", + "buses", + "buried", + "effectively", + "follow", + "matthew", + "barrel", + "powers", + "magnetic", + "frames", + "blind", + "pissed", + "bunch", + "grip", + "theyve", + "extreme", + "bias", + "show", + "angeles", + "trunk", + "scandal", + "vocal", + "acceptance", + "announce", + "von", + "servers", + "decisions", + "attempted", + "museum", + "manage", + "ideal", + "sports", + "consistently", + "trans", + "odd", + "flow", + "containing", + "grew", + "delay", + "lincoln", + "wheat", + "portuguese", + "protective", + "binding", + "assigned", + "crashed", + "conclusion", + "forth", + "upside", + "oz", + "queens", + "investments", + "rio", + "bros", + "contributions", + "variation", + "romance", + "wild", + "suffered", + "holland", + "parade", + "thee", + "past", + "deals", + "screens", + "requires", + "consumers", + "by", + "drawing", + "manufacturer", + "thy", + "ugh", + "experienced", + "remind", + "anything", + "mentions", + "impressed", + "economic", + "director", + "dose", + "mixing", + "pin", + "cycle", + "veterans", + "sporting", + "damn", + "welcome", + "motorcycle", + "sheer", + "horn", + "establishing", + "active", + "salt", + "brick", + "mph", + "hotels", + "opera", + "branch", + "essence", + "saw", + "albums", + "enters", + "implemented", + "metro", + "attacked", + "freely", + "garbage", + "wow", + "rd", + "oral", + "embarrassing", + "kg", + "creepy", + "finals", + "wrap", + "includes", + "considering", + "simple", + "really", + "houston", + "dispute", + "based", + "printed", + "resident", + "grant", + "vietnam", + "version", + "toronto", + "singh", + "initially", + "stations", + "peaceful", + "financial", + "fled", + "service", + "interview", + "killing", + "hunger", + "bag", + "beneficial", + "prepare", + "try", + "minutes", + "sessions", + "topic", + "context", + "stack", + "planning", + "via", + "double", + "improvement", + "era", + "sheets", + "reveal", + "breast", + "agriculture", + "remote", + "worse", + "surprised", + "decent", + "harder", + "ipad", + "marshall", + "lloyd", + "acts", + "physicians", + "swear", + "supplement", + "stroke", + "whose", + "infected", + "cheaper", + "george", + "ed", + "destination", + "hip", + "could", + "personally", + "triple", + "stable", + "warriors", + "johnny", + "snake", + "refer", + "treat", + "however", + "rush", + "moral", + "influential", + "title", + "happened", + "inhabitants", + "awful", + "largest", + "birthday", + "repeated", + "especially", + "protect", + "defence", + "occasions", + "loved", + "plenty", + "boyfriend", + "beat", + "earned", + "inn", + "focused", + "childhood", + "contain", + "substance", + "id", + "offers", + "bullshit", + "merchant", + "meetings", + "exposure", + "voltage", + "brazilian", + "extraordinary", + "stayed", + "collar", + "dates", + "will", + "actual", + "nights", + "since", + "mild", + "bridge", + "identity", + "presented", + "intense", + "ass", + "superior", + "southeast", + "huh", + "tank", + "opens", + "considered", + "away", + "minor", + "clearly", + "swimming", + "edited", + "harold", + "checks", + "alter", + "research", + "overseas", + "devices", + "major", + "split", + "besides", + "muslim", + "alexander", + "document", + "towers", + "matter", + "platinum", + "tower", + "villa", + "honest", + "pr", + "franchise", + "glad", + "juice", + "inter", + "hates", + "diesel", + "purchases", + "position", + "youd", + "races", + "irish", + "dump", + "wave", + "above", + "house", + "gun", + "grab", + "abc", + "care", + "expecting", + "comic", + "wet", + "arts", + "lights", + "elements", + "submit", + "dad", + "sri", + "child", + "occasionally", + "farm", + "anyway", + "filing", + "silly", + "criteria", + "continue", + "jordan", + "inches", + "nazi", + "nails", + "edward", + "sets", + "jews", + "courage", + "cancelled", + "micro", + "revenues", + "free", + "shift", + "transferred", + "together", + "civil", + "northern", + "university", + "bail", + "nail", + "altogether", + "canal", + "abandoned", + "beliefs", + "factors", + "dr", + "dakota", + "victorian", + "ignore", + "tourists", + "relevant", + "interest", + "patch", + "community", + "looking", + "celebrated", + "employer", + "dean", + "emotionally", + "wa", + "valid", + "driver", + "waves", + "referring", + "creator", + "helicopter", + "export", + "preserve", + "elementary", + "ministers", + "fourth", + "warren", + "martial", + "silence", + "spain", + "hall", + "bought", + "switch", + "warning", + "dan", + "economy", + "threat", + "indoor", + "understanding", + "pa", + "chinese", + "construction", + "recommend", + "soul", + "consultant", + "deadline", + "screw", + "nonetheless", + "thread", + "properties", + "pointed", + "supporter", + "actors", + "massage", + "criticism", + "hr", + "today", + "star", + "jokes", + "documentary", + "wins", + "operations", + "resources", + "meeting", + "market", + "patrick", + "loves", + "virtually", + "lonely", + "breaks", + "flip", + "reason", + "wrapped", + "flower", + "ambulance", + "flood", + "central", + "realize", + "philadelphia", + "roger", + "progressive", + "mitchell", + "chelsea", + "cage", + "out", + "belonging", + "unhappy", + "jersey", + "hide", + "iranian", + "regardless", + "respectively", + "blacks", + "comprehensive", + "discovered", + "dragon", + "reduction", + "element", + "meet", + "flying", + "basically", + "designed", + "desert", + "entitled", + "resist", + "charter", + "actively", + "rescue", + "accuracy", + "statistical", + "pilot", + "bitter", + "creating", + "listened", + "faces", + "charlie", + "choose", + "wake", + "entered", + "florida", + "right", + "lakes", + "halloween", + "bankruptcy", + "dear", + "turkey", + "tail", + "yep", + "woods", + "wont", + "alarm", + "soap", + "rights", + "protests", + "lessons", + "links", + "keith", + "boat", + "chemicals", + "carried", + "farmers", + "trip", + "described", + "independent", + "sarah", + "headed", + "angels", + "returns", + "graduate", + "step", + "ends", + "bond", + "names", + "da", + "secured", + "timber", + "disaster", + "event", + "bass", + "clearing", + "aunt", + "fantastic", + "treatment", + "healing", + "impacts", + "pass", + "tree", + "frequently", + "grow", + "peace", + "nose", + "store", + "deep", + "toilet", + "karen", + "theory", + "consciousness", + "enough", + "blew", + "la", + "email", + "complaint", + "leadership", + "similarly", + "drive", + "comedy", + "embarrassed", + "regime", + "nasa", + "way", + "units", + "made", + "learned", + "understand", + "cult", + "playoff", + "filled", + "widely", + "missing", + "discussion", + "royal", + "cheap", + "hearing", + "magazine", + "predict", + "famous", + "opposition", + "national", + "proportion", + "risk", + "peak", + "handling", + "bold", + "diary", + "sides", + "push", + "realise", + "syndrome", + "nationwide", + "brush", + "grabbed", + "causes", + "technique", + "ellen", + "shallow", + "bennett", + "ups", + "sword", + "officers", + "itself", + "outer", + "cleveland", + "ruins", + "aggressive", + "indicated", + "ladies", + "proved", + "shall", + "patience", + "hart", + "researchers", + "malcolm", + "pulled", + "con", + "furniture", + "attributed", + "audience", + "physical", + "showed", + "shouldnt", + "simpson", + "fork", + "presentation", + "formation", + "oriented", + "computing", + "fi", + "technological", + "anticipated", + "versions", + "alex", + "framework", + "ethnic", + "damages", + "tries", + "rules", + "fucking", + "increases", + "should", + "listing", + "coat", + "ordered", + "sandy", + "trading", + "land", + "ending", + "objectives", + "instrument", + "admitted", + "regard", + "rabbit", + "walker", + "precisely", + "readers", + "ground", + "dynamics", + "chips", + "became", + "grounds", + "fisher", + "confirm", + "pronounced", + "analyst", + "meant", + "adventures", + "taxi", + "nuts", + "lightning", + "retained", + "aint", + "characters", + "pile", + "dollars", + "ho", + "reaching", + "citizens", + "may", + "delete", + "plus", + "remaining", + "project", + "contemporary", + "bacteria", + "tuesday", + "cabin", + "goods", + "jose", + "discussions", + "influenced", + "contacts", + "usa", + "complicated", + "ranks", + "nor", + "john", + "bottles", + "requests", + "contractor", + "apartment", + "reporters", + "massachusetts", + "allowed", + "hmm", + "wears", + "robert", + "partially", + "rest", + "governments", + "winter", + "those", + "cannabis", + "ordering", + "wounds", + "shooting", + "broadway", + "face", + "usually", + "masters", + "census", + "fresh", + "fault", + "programme", + "jacket", + "copy", + "deficit", + "purely", + "pad", + "granted", + "reminds", + "strong", + "turner", + "hint", + "functional", + "promotion", + "noted", + "answer", + "fat", + "electoral", + "victory", + "obsessed", + "ab", + "phenomenon", + "been", + "springs", + "lol", + "place", + "sons", + "subsequently", + "colin", + "stakes", + "furthermore", + "tasks", + "largely", + "iowa", + "guys", + "choices", + "it", + "history", + "piece", + "rival", + "answered", + "supporters", + "endless", + "presidency", + "trials", + "harrison", + "book", + "thinks", + "penalty", + "mighty", + "giants", + "windows", + "replacing", + "knowing", + "damage", + "environment", + "rises", + "basis", + "super", + "grass", + "forum", + "victoria", + "backed", + "fed", + "shelf", + "viewing", + "loyalty", + "rich", + "telephone", + "motors", + "held", + "curve", + "loading", + "optical", + "live", + "assure", + "kong", + "accommodation", + "quietly", + "delta", + "salmon", + "theyd", + "isolated", + "lodge", + "resulting", + "gotten", + "routine", + "nature", + "shine", + "demonstrate", + "decrease", + "thanks", + "rain", + "alright", + "capable", + "unique", + "treasure", + "fever", + "animated", + "alleged", + "arena", + "resource", + "okay", + "russia", + "innings", + "eye", + "set", + "shooter", + "costume", + "system", + "programs", + "hopefully", + "intensity", + "policy", + "written", + "specialized", + "solved", + "mm", + "le", + "keen", + "selling", + "poster", + "bad", + "castle", + "sexual", + "faster", + "heritage", + "actually", + "tonight", + "um", + "dual", + "consequences", + "hed", + "cooking", + "quarters", + "est", + "ride", + "communications", + "stage", + "stuff", + "helps", + "vehicle", + "terms", + "among", + "predicted", + "tiny", + "gentleman", + "july", + "arent", + "minnesota", + "stay", + "causing", + "goodness", + "aside", + "mothers", + "arguments", + "rid", + "mr", + "amounts", + "chamber", + "india", + "taking", + "universal", + "stopping", + "ruled", + "frankly", + "joe", + "packing", + "domain", + "tension", + "racist", + "rocks", + "cards", + "bounce", + "began", + "treated", + "investment", + "drill", + "climate", + "places", + "low", + "structure", + "rough", + "patrol", + "gotta", + "generation", + "bay", + "beach", + "passenger", + "level", + "sections", + "raise", + "banking", + "bullet", + "trust", + "echo", + "eyes", + "strange", + "sell", + "passport", + "controlled", + "attacking", + "pleasure", + "term", + "awake", + "socialist", + "pen", + "promote", + "bike", + "injuries", + "staff", + "boxing", + "previously", + "west", + "departure", + "agencies", + "slowly", + "incidents", + "basin", + "tired", + "elsewhere", + "meat", + "recipe", + "tier", + "industry", + "citizen", + "girlfriend", + "smiling", + "withdrawal", + "vancouver", + "tests", + "vegetables", + "butt", + "wash", + "agent", + "navy", + "submitted", + "used", + "husband", + "ranking", + "cook", + "originally", + "robin", + "safely", + "forecast", + "think", + "superman", + "secretly", + "pure", + "why", + "regarded", + "devoted", + "mainly", + "what", + "theatre", + "integration", + "bleeding", + "terry", + "expand", + "seemingly", + "blanket", + "saves", + "athletic", + "absolutely", + "holidays", + "thereby", + "buddy", + "mayor", + "vulnerable", + "visiting", + "cameron", + "pub", + "french", + "sure", + "visits", + "bless", + "stick", + "aviation", + "slave", + "showing", + "cast", + "conspiracy", + "near", + "studies", + "adoption", + "memories", + "about", + "doors", + "ignorant", + "en", + "chose", + "burger", + "danny", + "sterling", + "falls", + "algorithm", + "lose", + "lined", + "explained", + "post", + "seem", + "charles", + "blessing", + "forming", + "planet", + "lawrence", + "web", + "barriers", + "associated", + "lawyer", + "strip", + "burnt", + "professional", + "andrew", + "music", + "invasion", + "provincial", + "differ", + "nfl", + "diagnosis", + "organisation", + "engaged", + "established", + "negotiations", + "des", + "plot", + "size", + "enter", + "christ", + "casino", + "succeeded", + "milk", + "cent", + "change", + "revised", + "nerve", + "source", + "cheers", + "mouth", + "fallen", + "opposed", + "immigration", + "smooth", + "imagine", + "identify", + "attending", + "local", + "regulations", + "scored", + "cal", + "justin", + "holds", + "council", + "so", + "kept", + "stadium", + "mexican", + "duo", + "cake", + "racial", + "function", + "acceptable", + "cleared", + "filter", + "gene", + "ran", + "climbing", + "illness", + "monday", + "interviews", + "detailed", + "adopt", + "particular", + "skull", + "file", + "spencer", + "australian", + "mill", + "tools", + "monthly", + "likes", + "investigations", + "including", + "joint", + "internal", + "wilson", + "scope", + "too", + "lo", + "wolf", + "remains", + "restricted", + "riding", + "solar", + "sounds", + "senior", + "themselves", + "blake", + "marriage", + "generate", + "end", + "immigrant", + "wales", + "prosecution", + "ready", + "ability", + "engagement", + "canon", + "because", + "madrid", + "ne", + "jackson", + "stays", + "supposed", + "explain", + "se", + "cars", + "presidents", + "listening", + "involving", + "hiv", + "books", + "deliberately", + "cry", + "demonstration", + "musician", + "bottom", + "wait", + "convicted", + "dig", + "liberty", + "missouri", + "participants", + "thesis", + "burning", + "dive", + "parks", + "effective", + "encouraged", + "suggested", + "mature", + "statistics", + "avoid", + "car", + "loaded", + "chaos", + "neutral", + "dominant", + "indian", + "obvious", + "retired", + "brother", + "resigned", + "anchor", + "pope", + "statement", + "median", + "although", + "votes", + "california", + "disagree", + "named", + "smoking", + "deployed", + "european", + "teenagers", + "confirmation", + "fishing", + "schemes", + "appreciated", + "lifestyle", + "virtual", + "driven", + "jerry", + "jay", + "emissions", + "viral", + "elect", + "growing", + "scared", + "vacuum", + "discipline", + "thursday", + "pp", + "touching", + "hawaii", + "classification", + "drop", + "youre", + "hosts", + "index", + "provisions", + "relation", + "jimmy", + "politically", + "conviction", + "skin", + "hardware", + "pants", + "ongoing", + "adults", + "tremendous", + "opinion", + "palace", + "perception", + "destroy", + "affairs", + "democrat", + "makeup", + "commentary", + "legit", + "back", + "muslims", + "camp", + "yorkshire", + "soda", + "stop", + "saved", + "aboard", + "thus", + "bill", + "curse", + "education", + "seasons", + "downtown", + "protein", + "boundary", + "handle", + "asks", + "strangers", + "quite", + "donate", + "interactions", + "controlling", + "classical", + "tweets", + "upcoming", + "offense", + "telling", + "demanded", + "kansas", + "tommy", + "situated", + "accused", + "turn", + "now", + "cousin", + "committee", + "sensitive", + "mate", + "palmer", + "videos", + "influences", + "prospects", + "christianity", + "lean", + "newspaper", + "lines", + "ukrainian", + "hey", + "islam", + "greek", + "tricks", + "makers", + "artificial", + "got", + "delivery", + "voluntary", + "kill", + "stating", + "species", + "heal", + "dj", + "proceeds", + "wondered", + "throw", + "utah", + "priority", + "powder", + "stark", + "industries", + "sponsored", + "ralph", + "train", + "prices", + "device", + "signing", + "connection", + "buying", + "imposed", + "crossing", + "ideology", + "someday", + "dylan", + "harvard", + "balanced", + "chapter", + "yield", + "canada", + "pulls", + "humans", + "january", + "hung", + "gap", + "mostly", + "inform", + "compromise", + "mode", + "provide", + "colors", + "writer", + "prevent", + "hell", + "handsome", + "according", + "outdoor", + "japanese", + "witnesses", + "increasing", + "fleet", + "helped", + "evidence", + "night", + "fool", + "separate", + "ago", + "spirits", + "demanding", + "arrived", + "receiving", + "judges", + "brilliant", + "green", + "jam", + "district", + "whos", + "bobby", + "study", + "positive", + "animal", + "chemical", + "marathon", + "german", + "maintain", + "promise", + "advertising", + "lap", + "nope", + "copper", + "citys", + "plate", + "anniversary", + "battle", + "neil", + "represents", + "chambers", + "dave", + "tooth", + "beats", + "badge", + "played", + "cultures", + "harris", + "inner", + "master", + "school", + "aesthetic", + "beauty", + "charge", + "premiere", + "buffalo", + "side", + "bombing", + "read", + "traditions", + "heating", + "jesus", + "anonymous", + "ya", + "souls", + "painted", + "comes", + "alternative", + "cloth", + "pet", + "alliance", + "singing", + "hit", + "steal", + "leaders", + "smallest", + "pounds", + "happiness", + "speaking", + "editor", + "grandma", + "walking", + "photograph", + "amount", + "shoulders", + "county", + "trained", + "warm", + "hack", + "sc", + "mention", + "odds", + "determination", + "keeper", + "measure", + "clients", + "avenue", + "exception", + "clay", + "filmed", + "mary", + "these", + "request", + "charging", + "albert", + "everyones", + "deleted", + "asia", + "holder", + "acted", + "suggesting", + "typically", + "evolved", + "academic", + "beneath", + "egypt", + "weve", + "frame", + "survival", + "exists", + "payment", + "ranging", + "rock", + "contains", + "rarely", + "lover", + "argentina", + "semi", + "pack", + "channels", + "cattle", + "bread", + "agreement", + "philosophy", + "paid", + "ny", + "third", + "skill", + "password", + "region", + "military", + "victims", + "casting", + "incident", + "commercial", + "toxic", + "fitness", + "union", + "that", + "galaxy", + "portrait", + "ratings", + "layer", + "letters", + "costs", + "discover", + "bacon", + "paris", + "mens", + "abu", + "ears", + "eddie", + "administrative", + "audiences", + "drinking", + "workshop", + "headquarters", + "again", + "diagnosed", + "bust", + "journey", + "wouldve", + "preliminary", + "brutal", + "businesses", + "panels", + "anxious", + "certificate", + "opening", + "forty", + "world", + "kim", + "moon", + "suicide", + "tend", + "remarks", + "lowest", + "landed", + "bear", + "dude", + "section", + "occasion", + "grammar", + "adapted", + "dennis", + "along", + "turkish", + "noticed", + "slot", + "smell", + "zealand", + "crush", + "staying", + "authors", + "farms", + "seven", + "ignoring", + "foreign", + "learn", + "cared", + "profitable", + "celebrity", + "leather", + "ta", + "neck", + "quoted", + "drug", + "precision", + "derek", + "platforms", + "assistance", + "divisions", + "supply", + "employers", + "enable", + "outlook", + "clever", + "priests", + "views", + "murder", + "participated", + "trumps", + "safe", + "sends", + "party", + "others", + "achieved", + "objects", + "sunshine", + "orleans", + "possibilities", + "thing", + "trouble", + "locally", + "fingers", + "dream", + "operators", + "raped", + "fixing", + "crack", + "essays", + "folk", + "morris", + "enabled", + "daughter", + "matt", + "kiss", + "hurricane", + "hunt", + "syria", + "forgot", + "egg", + "adopted", + "inspection", + "aliens", + "closing", + "connecticut", + "mom", + "hitting", + "trapped", + "either", + "bc", + "schools", + "rifle", + "fiscal", + "grave", + "oct", + "experimental", + "ross", + "common", + "sites", + "loans", + "whilst", + "crash", + "publicly", + "electronics", + "feedback", + "sheriff", + "valued", + "represented", + "israel", + "defined", + "situation", + "balance", + "guess", + "korea", + "blast", + "feb", + "sea", + "currently", + "france", + "customer", + "princess", + "cd", + "covers", + "cheer", + "stats", + "authentic", + "rolled", + "deal", + "engineering", + "required", + "picking", + "confident", + "installed", + "southwest", + "disturbing", + "questions", + "burn", + "competitors", + "learning", + "kick", + "simon", + "discount", + "saint", + "beans", + "estimated", + "somewhere", + "proven", + "disappear", + "taught", + "ai", + "register", + "seats", + "areas", + "had", + "becomes", + "engineers", + "johnson", + "criminal", + "firms", + "historically", + "solely", + "drawn", + "accidents", + "affected", + "exclusive", + "widespread", + "estate", + "traditional", + "tickets", + "spreading", + "euro", + "potato", + "maybe", + "surrender", + "pop", + "nest", + "hours", + "international", + "gen", + "lifting", + "concern", + "author", + "building", + "syrian", + "presumably", + "salad", + "kennedy", + "searching", + "reminder", + "instructions", + "tan", + "developments", + "handled", + "blood", + "putin", + "except", + "accommodate", + "cases", + "visitors", + "scale", + "occupied", + "adding", + "liquid", + "season", + "online", + "stupid", + "liability", + "anywhere", + "praise", + "guardian", + "alice", + "approval", + "scream", + "palestinian", + "trips", + "thoughts", + "eat", + "afterwards", + "movements", + "pays", + "sent", + "mirror", + "bubble", + "lawsuit", + "ideas", + "limits", + "orange", + "went", + "check", + "collecting", + "billion", + "chosen", + "episode", + "chat", + "variations", + "detroit", + "progress", + "question", + "gordon", + "kentucky", + "skills", + "adventure", + "responsibilities", + "residence", + "styles", + "paint", + "rt", + "bulk", + "general", + "counting", + "clip", + "feelings", + "twelve", + "harm", + "enforcement", + "max", + "start", + "subscribe", + "necessary", + "advanced", + "asset", + "four", + "additional", + "college", + "millions", + "aspect", + "reactions", + "belt", + "bit", + "convert", + "twist", + "expensive", + "xi", + "leonard", + "computer", + "rise", + "portland", + "crowd", + "key", + "fc", + "pipeline", + "mentioned", + "deck", + "ego", + "blessed", + "earlier", + "longer", + "custody", + "teen", + "gloves", + "dreams", + "everybody", + "violent", + "arizona", + "kinds", + "queen", + "sitting", + "chance", + "signal", + "combat", + "spin", + "agreements", + "dish", + "cambridge", + "disc", + "generic", + "bureau", + "surrounding", + "horse", + "quantum", + "pink", + "historical", + "indonesia", + "tomorrow", + "blog", + "physics", + "fancy", + "responsibility", + "michael", + "neighbor", + "adequate", + "arrest", + "highlight", + "careers", + "pocket", + "obtain", + "official", + "hunter", + "affects", + "hold", + "tactics", + "waste", + "reserved", + "doubt", + "hiring", + "to", + "netherlands", + "agreed", + "concrete", + "flags", + "housing", + "hatred", + "grain", + "chase", + "reed", + "emily", + "ap", + "solid", + "collaboration", + "couples", + "shops", + "islamic", + "dare", + "advise", + "aimed", + "youth", + "diamonds", + "buyers", + "passengers", + "accomplish", + "neighbors", + "compare", + "miles", + "intent", + "still", + "claims", + "lunch", + "artwork", + "avoided", + "nearly", + "neither", + "suspected", + "entertaining", + "just", + "targets", + "inspiration", + "time", + "middle", + "student", + "turning", + "feminist", + "ladder", + "updated", + "summit", + "standing", + "horrible", + "voter", + "members", + "floating", + "launch", + "li", + "cartoon", + "mason", + "then", + "decades", + "replied", + "heads", + "portfolio", + "operating", + "off", + "legislation", + "rude", + "someone", + "pull", + "titled", + "liver", + "inclusion", + "incorporated", + "civilians", + "ourselves", + "whole", + "handed", + "happening", + "survey", + "same", + "fruit", + "supplies", + "compliance", + "spoke", + "easy", + "achieve", + "recreation", + "sign", + "license", + "carefully", + "white", + "raises", + "ill", + "discuss", + "monitor", + "believing", + "meets", + "bishop", + "sustainable", + "eagle", + "absolute", + "keep", + "contract", + "versus", + "anymore", + "clue", + "olive", + "provinces", + "later", + "scoring", + "kicking", + "rapidly", + "arctic", + "chronic", + "trying", + "wage", + "words", + "requiring", + "relative", + "drew", + "agency", + "strongest", + "guitar", + "mini", + "smartphone", + "ian", + "monitoring", + "madison", + "sport", + "politician", + "sells", + "stem", + "dallas", + "transformed", + "yours", + "fame", + "visual", + "allegations", + "importantly", + "un", + "civilian", + "activist", + "tax", + "particles", + "nation", + "powerful", + "recommended", + "firing", + "lt", + "constitution", + "wondering", + "blues", + "acquire", + "crystal", + "ireland", + "terrorist", + "rachel", + "city", + "trusted", + "longest", + "around", + "mg", + "minds", + "fatal", + "sale", + "democrats", + "comparison", + "cameras", + "taken", + "missions", + "manhattan", + "waiting", + "footage", + "effects", + "mechanism", + "racism", + "girls", + "random", + "russians", + "tribe", + "compact", + "wives", + "reads", + "switching", + "crops", + "through", + "exciting", + "threats", + "majority", + "within", + "officials", + "definitely", + "flash", + "teach" + ], + "top_5000": [ + "the", + "to", + "and", + "of", + "for", + "that", + "you", + "on", + "with", + "this", + "be", + "are", + "have", + "at", + "he", + "not", + "by", + "but", + "from", + "my", + "we", + "an", + "all", + "so", + "they", + "me", + "one", + "can", + "will", + "just", + "like", + "about", + "up", + "out", + "what", + "when", + "more", + "do", + "no", + "who", + "had", + "their", + "her", + "which", + "time", + "get", + "been", + "would", + "she", + "new", + "people", + "how", + "some", + "also", + "them", + "now", + "other", + "our", + "than", + "good", + "only", + "after", + "first", + "him", + "into", + "know", + "see", + "two", + "make", + "over", + "think", + "any", + "then", + "could", + "back", + "these", + "because", + "go", + "said", + "way", + "most", + "much", + "very", + "where", + "even", + "should", + "may", + "here", + "need", + "really", + "did", + "right", + "work", + "year", + "being", + "day", + "too", + "going", + "before", + "off", + "why", + "made", + "still", + "take", + "got", + "many", + "never", + "those", + "life", + "say", + "world", + "down", + "great", + "through", + "last", + "while", + "best", + "such", + "love", + "man", + "home", + "long", + "look", + "something", + "use", + "same", + "used", + "both", + "every", + "come", + "part", + "state", + "three", + "around", + "between", + "better", + "find", + "help", + "high", + "little", + "old", + "since", + "another", + "own", + "under", + "during", + "game", + "thing", + "give", + "house", + "place", + "school", + "again", + "next", + "each", + "mr", + "without", + "against", + "end", + "found", + "must", + "show", + "big", + "feel", + "sure", + "team", + "ever", + "family", + "keep", + "might", + "please", + "put", + "money", + "free", + "second", + "someone", + "away", + "left", + "number", + "city", + "lot", + "name", + "night", + "play", + "until", + "company", + "doing", + "few", + "let", + "real", + "called", + "different", + "having", + "set", + "thought", + "done", + "however", + "getting", + "god", + "government", + "group", + "looking", + "public", + "top", + "women", + "business", + "care", + "start", + "system", + "week", + "already", + "anything", + "case", + "nothing", + "person", + "today", + "enough", + "everything", + "full", + "live", + "making", + "point", + "read", + "told", + "yet", + "bad", + "four", + "hard", + "mean", + "once", + "support", + "tell", + "including", + "music", + "power", + "seen", + "stop", + "water", + "based", + "believe", + "call", + "head", + "men", + "national", + "small", + "took", + "white", + "came", + "far", + "job", + "side", + "though", + "try", + "went", + "actually", + "american", + "later", + "line", + "order", + "party", + "run", + "service", + "country", + "open", + "season", + "shit", + "thank", + "children", + "everyone", + "general", + "trying", + "united", + "using", + "area", + "black", + "following", + "law", + "makes", + "together", + "war", + "whole", + "car", + "face", + "five", + "kind", + "maybe", + "per", + "president", + "story", + "working", + "course", + "health", + "hope", + "important", + "least", + "means", + "within", + "able", + "book", + "early", + "information", + "local", + "oh", + "post", + "video", + "young", + "ago", + "social", + "talk", + "court", + "fact", + "given", + "half", + "hand", + "level", + "mind", + "often", + "single", + "were", + "become", + "body", + "coming", + "control", + "death", + "food", + "guy", + "office", + "pay", + "problem", + "south", + "true", + "almost", + "fuck", + "history", + "known", + "large", + "lost", + "research", + "room", + "several", + "started", + "taking", + "university", + "win", + "wrong", + "along", + "anyone", + "else", + "girl", + "john", + "matter", + "pretty", + "remember", + "air", + "bit", + "friend", + "hit", + "nice", + "playing", + "probably", + "saying", + "understand", + "yeah", + "york", + "class", + "close", + "idea", + "international", + "past", + "possible", + "wanted", + "cause", + "due", + "happy", + "human", + "move", + "question", + "series", + "wait", + "woman", + "ask", + "community", + "data", + "late", + "leave", + "north", + "saw", + "special", + "watch", + "either", + "fucking", + "future", + "light", + "low", + "million", + "morning", + "police", + "short", + "stay", + "taken", + "age", + "buy", + "deal", + "rather", + "reason", + "red", + "report", + "soon", + "third", + "turn", + "whether", + "among", + "check", + "development", + "form", + "further", + "heart", + "myself", + "yourself", + "act", + "although", + "asked", + "child", + "fire", + "fun", + "living", + "major", + "media", + "phone", + "art", + "behind", + "building", + "easy", + "gonna", + "market", + "near", + "non", + "plan", + "political", + "quite", + "six", + "talking", + "west", + "according", + "available", + "education", + "final", + "former", + "front", + "list", + "ready", + "son", + "street", + "bring", + "college", + "current", + "example", + "experience", + "heard", + "london", + "meet", + "program", + "type", + "baby", + "chance", + "father", + "march", + "process", + "song", + "study", + "word", + "across", + "action", + "clear", + "gave", + "himself", + "month", + "outside", + "self", + "board", + "cost", + "cut", + "dr", + "field", + "held", + "instead", + "main", + "moment", + "mother", + "road", + "seems", + "thinking", + "town", + "de", + "department", + "energy", + "fight", + "fine", + "force", + "hear", + "issue", + "played", + "price", + "re", + "rest", + "results", + "running", + "space", + "summer", + "term", + "wife", + "america", + "beautiful", + "date", + "goes", + "killed", + "land", + "miss", + "project", + "sex", + "shot", + "site", + "strong", + "account", + "co", + "especially", + "include", + "june", + "period", + "position", + "record", + "similar", + "total", + "above", + "club", + "common", + "died", + "film", + "happened", + "knew", + "lead", + "likely", + "military", + "perfect", + "personal", + "security", + "st", + "tv", + "won", + "april", + "center", + "county", + "couple", + "dead", + "english", + "happen", + "hold", + "industry", + "inside", + "online", + "player", + "private", + "return", + "sense", + "star", + "test", + "view", + "break", + "british", + "companies", + "event", + "higher", + "hour", + "member", + "middle", + "needed", + "present", + "result", + "sorry", + "takes", + "training", + "wish", + "answer", + "boy", + "design", + "finally", + "gold", + "gone", + "guess", + "interest", + "july", + "king", + "learn", + "policy", + "society", + "added", + "al", + "alone", + "average", + "bank", + "brought", + "certain", + "church", + "east", + "hot", + "longer", + "medical", + "movie", + "original", + "park", + "performance", + "press", + "received", + "role", + "sent", + "themselves", + "tried", + "worked", + "worth", + "became", + "bill", + "cool", + "director", + "exactly", + "giving", + "ground", + "meeting", + "provide", + "relationship", + "september", + "sound", + "source", + "usually", + "value", + "evidence", + "follow", + "official", + "ok", + "production", + "rate", + "reading", + "round", + "save", + "stand", + "stuff", + "tax", + "whatever", + "amount", + "blue", + "countries", + "david", + "drive", + "eat", + "fall", + "fast", + "federal", + "feeling", + "felt", + "green", + "league", + "management", + "match", + "model", + "picture", + "size", + "step", + "trust", + "central", + "england", + "forward", + "hey", + "key", + "mom", + "page", + "paid", + "range", + "review", + "science", + "trade", + "uk", + "upon", + "various", + "attention", + "brother", + "cannot", + "character", + "chief", + "cup", + "football", + "hate", + "led", + "looked", + "lower", + "natural", + "october", + "property", + "quality", + "send", + "style", + "vote", + "amazing", + "august", + "blood", + "china", + "complete", + "dog", + "economic", + "involved", + "itself", + "language", + "lord", + "november", + "oil", + "related", + "serious", + "stage", + "title", + "add", + "article", + "attack", + "born", + "damn", + "decided", + "decision", + "enjoy", + "entire", + "french", + "january", + "kill", + "met", + "perhaps", + "poor", + "release", + "situation", + "technology", + "turned", + "website", + "written", + "choice", + "code", + "considered", + "continue", + "council", + "cover", + "currently", + "door", + "election", + "european", + "financial", + "foreign", + "hair", + "increase", + "legal", + "lose", + "michael", + "pick", + "race", + "seem", + "seven", + "sign", + "simple", + "simply", + "staff", + "super", + "union", + "walk", + "washington", + "bed", + "began", + "built", + "career", + "changed", + "crazy", + "daily", + "daughter", + "december", + "die", + "difficult", + "figure", + "hospital", + "loss", + "modern", + "paper", + "popular", + "published", + "safe", + "starting", + "version", + "voice", + "whose", + "writing", + "army", + "australia", + "earth", + "forget", + "goal", + "huge", + "internet", + "listen", + "okay", + "practice", + "sea", + "sir", + "success", + "towards", + "waiting", + "access", + "base", + "below", + "created", + "deep", + "followed", + "la", + "lol", + "mark", + "missing", + "offer", + "pass", + "professional", + "released", + "risk", + "sleep", + "table", + "ten", + "truth", + "ball", + "box", + "build", + "card", + "dark", + "district", + "europe", + "george", + "india", + "mine", + "minister", + "note", + "percent", + "piece", + "recent", + "seeing", + "straight", + "visit", + "wall", + "wanna", + "wrote", + "allowed", + "culture", + "etc", + "february", + "gives", + "growth", + "included", + "married", + "officer", + "pain", + "paul", + "respect", + "response", + "river", + "rock", + "shall", + "speak", + "specific", + "standard", + "tonight", + "write", + "album", + "century", + "charge", + "cold", + "create", + "effect", + "eight", + "except", + "eye", + "funny", + "ii", + "limited", + "moving", + "network", + "peace", + "provided", + "recently", + "required", + "spent", + "store", + "student", + "tomorrow", + "track", + "via", + "watching", + "weight", + "addition", + "ahead", + "allow", + "anti", + "association", + "beat", + "brown", + "capital", + "chinese", + "committee", + "conference", + "difference", + "double", + "expect", + "island", + "moved", + "normal", + "population", + "potential", + "pressure", + "radio", + "russian", + "station", + "text", + "treatment", + "western", + "beginning", + "california", + "campaign", + "certainly", + "completely", + "content", + "credit", + "cross", + "described", + "despite", + "female", + "focus", + "hi", + "husband", + "ice", + "individual", + "interesting", + "join", + "kept", + "leading", + "loved", + "message", + "nearly", + "particular", + "previous", + "quickly", + "region", + "reported", + "section", + "sort", + "speed", + "travel", + "consider", + "contact", + "drop", + "fair", + "feet", + "jesus", + "kid", + "link", + "positive", + "sale", + "throughout", + "tour", + "welcome", + "absolutely", + "additional", + "beyond", + "conditions", + "earlier", + "extra", + "immediately", + "leaving", + "minute", + "nature", + "quick", + "sell", + "significant", + "studies", + "unless", + "winning", + "agree", + "canada", + "clean", + "computer", + "construction", + "episode", + "favorite", + "income", + "justice", + "manager", + "movement", + "photo", + "posted", + "safety", + "san", + "scene", + "sold", + "spend", + "statement", + "sun", + "ability", + "announced", + "asking", + "calling", + "coach", + "collection", + "continued", + "costs", + "definitely", + "designed", + "expected", + "friday", + "gun", + "happens", + "heavy", + "includes", + "knowledge", + "particularly", + "search", + "subject", + "train", + "wide", + "wow", + "author", + "centre", + "claim", + "dad", + "developed", + "fear", + "fit", + "generally", + "german", + "global", + "goals", + "gotta", + "hotel", + "interested", + "judge", + "lady", + "leader", + "letter", + "material", + "named", + "nobody", + "opportunity", + "plus", + "pre", + "product", + "regular", + "secretary", + "sister", + "stories", + "unit", + "annual", + "anymore", + "bar", + "battle", + "brain", + "contract", + "degree", + "families", + "features", + "finished", + "floor", + "france", + "growing", + "hurt", + "image", + "insurance", + "majority", + "opening", + "opinion", + "physical", + "pro", + "reach", + "rule", + "seriously", + "stupid", + "successful", + "active", + "administration", + "approach", + "australian", + "biggest", + "cancer", + "civil", + "dance", + "defense", + "direction", + "independent", + "master", + "none", + "russia", + "ship", + "stock", + "trump", + "weekend", + "wonder", + "worst", + "africa", + "awesome", + "band", + "beach", + "cash", + "clearly", + "commercial", + "compared", + "effort", + "ended", + "fan", + "fighting", + "imagine", + "impact", + "lack", + "latest", + "learning", + "multiple", + "older", + "operation", + "organization", + "passed", + "protect", + "secret", + "senior", + "spring", + "sunday", + "telling", + "wear", + "activities", + "address", + "analysis", + "anyway", + "bought", + "choose", + "christmas", + "color", + "commission", + "competition", + "details", + "direct", + "dream", + "easily", + "finish", + "grand", + "increased", + "indian", + "literally", + "luck", + "marriage", + "necessary", + "resources", + "rich", + "skin", + "speaking", + "supposed", + "sweet", + "thus", + "touch", + "yesterday", + "caught", + "closed", + "congress", + "damage", + "directly", + "disease", + "doctor", + "doubt", + "drink", + "driving", + "established", + "facebook", + "feels", + "fish", + "gay", + "germany", + "glad", + "greater", + "grow", + "largest", + "machine", + "notice", + "overall", + "planning", + "professor", + "shown", + "sit", + "trip", + "well", + "associated", + "basic", + "captain", + "carry", + "crime", + "effective", + "explain", + "fully", + "highly", + "holding", + "japan", + "male", + "parties", + "plant", + "reality", + "smith", + "spot", + "texas", + "winter", + "worse", + "advice", + "agreement", + "award", + "block", + "broken", + "caused", + "challenge", + "christian", + "comment", + "equipment", + "eventually", + "helped", + "holy", + "killing", + "lived", + "nation", + "otherwise", + "peter", + "primary", + "purpose", + "rates", + "responsible", + "shop", + "showing", + "sick", + "teacher", + "theory", + "uses", + "william", + "agency", + "avoid", + "camera", + "catch", + "cell", + "coast", + "comments", + "drug", + "economy", + "environment", + "executive", + "foot", + "hall", + "mass", + "meaning", + "mission", + "nine", + "politics", + "pop", + "produced", + "ran", + "saturday", + "status", + "therefore", + "trial", + "truly", + "weather", + "activity", + "app", + "application", + "claims", + "coffee", + "complex", + "condition", + "division", + "evening", + "flight", + "freedom", + "google", + "heat", + "highest", + "interview", + "library", + "located", + "location", + "murder", + "obama", + "offered", + "putting", + "queen", + "showed", + "sitting", + "standing", + "walking", + "accept", + "actual", + "appear", + "attempt", + "broke", + "channel", + "distance", + "eating", + "exchange", + "fat", + "fell", + "finding", + "glass", + "learned", + "losing", + "mobile", + "northern", + "opened", + "placed", + "powerful", + "prior", + "protection", + "reached", + "receive", + "religious", + "ride", + "robert", + "royal", + "screen", + "serve", + "signed", + "slow", + "species", + "speech", + "traffic", + "tree", + "wearing", + "whom", + "wonderful", + "agreed", + "airport", + "appears", + "begin", + "benefits", + "bottom", + "cities", + "demand", + "engine", + "everybody", + "famous", + "investment", + "keeping", + "lie", + "partner", + "raised", + "solution", + "southern", + "square", + "stopped", + "structure", + "thomas", + "traditional", + "twice", + "wind", + "worry", + "appeared", + "becomes", + "brand", + "cent", + "chicago", + "count", + "covered", + "critical", + "digital", + "forced", + "fourth", + "fresh", + "lake", + "mental", + "mentioned", + "missed", + "mostly", + "mouth", + "owner", + "previously", + "realize", + "remain", + "scale", + "score", + "separate", + "smart", + "starts", + "surface", + "throw", + "tom", + "totally", + "twitter", + "wedding", + "acting", + "african", + "benefit", + "budget", + "click", + "estate", + "failed", + "faith", + "fashion", + "feature", + "fund", + "generation", + "hearing", + "hill", + "jack", + "larger", + "louis", + "metal", + "mid", + "paris", + "profile", + "pull", + "push", + "returned", + "rose", + "seat", + "seemed", + "sexual", + "target", + "understanding", + "village", + "agent", + "animal", + "apply", + "authority", + "basis", + "becoming", + "chris", + "draw", + "dude", + "enter", + "ex", + "follows", + "foundation", + "gain", + "http", + "japanese", + "memory", + "prime", + "ring", + "rise", + "selling", + "served", + "silver", + "soul", + "spread", + "supply", + "waste", + "weird", + "adult", + "apparently", + "artist", + "chairman", + "edition", + "engineering", + "grade", + "happening", + "healthy", + "institute", + "method", + "mike", + "monday", + "obviously", + "option", + "prison", + "provides", + "remains", + "senate", + "smaller", + "somebody", + "stone", + "strength", + "wild", + "window", + "winner", + "arrived", + "bag", + "bet", + "camp", + "cast", + "christ", + "continues", + "correct", + "dangerous", + "extremely", + "firm", + "greatest", + "handle", + "improve", + "indeed", + "negative", + "prevent", + "removed", + "richard", + "spirit", + "television", + "till", + "trouble", + "usa", + "advantage", + "apart", + "aware", + "cat", + "decide", + "dinner", + "eastern", + "fifth", + "function", + "gift", + "helping", + "herself", + "impossible", + "influence", + "joe", + "marketing", + "mary", + "nor", + "produce", + "progress", + "proud", + "require", + "shooting", + "shut", + "tells", + "van", + "background", + "birth", + "bridge", + "carried", + "charles", + "classes", + "completed", + "concept", + "copy", + "dear", + "efforts", + "garden", + "host", + "housing", + "inc", + "israel", + "journal", + "labor", + "leadership", + "length", + "lucky", + "neither", + "onto", + "patient", + "possibly", + "prove", + "rare", + "setting", + "skills", + "software", + "thousands", + "tough", + "ad", + "alive", + "apple", + "balance", + "birthday", + "bitch", + "boss", + "changing", + "connection", + "dress", + "easier", + "fellow", + "florida", + "horse", + "knowing", + "liked", + "magic", + "managed", + "map", + "net", + "owned", + "request", + "stick", + "vehicle", + "volume", + "wake", + "aid", + "beauty", + "believed", + "billion", + "busy", + "buying", + "concerned", + "conversation", + "corner", + "criminal", + "cultural", + "develop", + "driver", + "existing", + "farm", + "file", + "fix", + "fly", + "frank", + "guide", + "investigation", + "mexico", + "operating", + "paying", + "presented", + "raise", + "responsibility", + "roll", + "slightly", + "suggest", + "surprise", + "technical", + "thoughts", + "treat", + "unique", + "variety", + "violence", + "youth", + "appreciate", + "bigger", + "breaking", + "discovered", + "dry", + "edge", + "evil", + "excited", + "forever", + "helps", + "henry", + "injury", + "iron", + "lovely", + "mad", + "magazine", + "martin", + "offers", + "ordered", + "parliament", + "prepared", + "reference", + "religion", + "somewhere", + "stated", + "strategy", + "web", + "wine", + "angeles", + "arm", + "audience", + "bay", + "blog", + "closer", + "core", + "democratic", + "description", + "dropped", + "excellent", + "exist", + "guard", + "honest", + "issued", + "joined", + "lee", + "lies", + "likes", + "medicine", + "mention", + "mountain", + "nuclear", + "port", + "presence", + "reaction", + "reduce", + "shoot", + "solid", + "spanish", + "sport", + "steps", + "stress", + "taste", + "tea", + "victory", + "ill", + "afternoon", + "assistant", + "britain", + "classic", + "clothes", + "electric", + "emergency", + "entered", + "entirely", + "facts", + "failure", + "festival", + "flat", + "fuel", + "harry", + "hello", + "initial", + "introduced", + "johnson", + "kick", + "mail", + "massive", + "pair", + "picked", + "plane", + "plenty", + "prince", + "proper", + "providing", + "quarter", + "regional", + "scott", + "session", + "shape", + "sky", + "teaching", + "toward", + "transfer", + "upper", + "useful", + "valley", + "watched", + "willing", + "zone", + "accident", + "advanced", + "alternative", + "anywhere", + "bear", + "boat", + "bringing", + "capacity", + "cheap", + "climate", + "communities", + "discussion", + "drinking", + "duty", + "fantastic", + "flying", + "governor", + "hundred", + "industrial", + "joint", + "mix", + "museum", + "options", + "path", + "policies", + "promise", + "proposed", + "purchase", + "rain", + "remove", + "spending", + "steel", + "steve", + "supporting", + "terrible", + "tired", + "treated", + "turning", + "vice", + "warm", + "afraid", + "beer", + "border", + "canadian", + "command", + "crew", + "crowd", + "dating", + "dick", + "enemy", + "ensure", + "environmental", + "filled", + "fixed", + "forest", + "intelligence", + "intended", + "labour", + "limit", + "moon", + "ocean", + "profit", + "proof", + "republican", + "suit", + "im", + "appearance", + "asian", + "attorney", + "behavior", + "ben", + "bodies", + "chair", + "creating", + "debt", + "domestic", + "expensive", + "grew", + "historical", + "honestly", + "honor", + "jump", + "launch", + "listed", + "minimum", + "native", + "noted", + "originally", + "planned", + "pm", + "ray", + "suddenly", + "supreme", + "survey", + "tech", + "update", + "user", + "writer", + "yellow", + "younger", + "ancient", + "charges", + "combined", + "communication", + "connected", + "contains", + "download", + "email", + "ending", + "exercise", + "express", + "flow", + "formed", + "girlfriend", + "hero", + "illegal", + "increasing", + "joke", + "loan", + "methods", + "performed", + "planet", + "restaurant", + "scotland", + "selected", + "shared", + "shopping", + "soft", + "stuck", + "sugar", + "suggested", + "supported", + "surprised", + "taught", + "transport", + "accepted", + "adding", + "affairs", + "allows", + "appeal", + "applied", + "appropriate", + "boston", + "ca", + "confirmed", + "device", + "drama", + "entry", + "era", + "factor", + "feed", + "golden", + "grant", + "grown", + "hoping", + "keeps", + "lawyer", + "lying", + "measures", + "mistake", + "muslim", + "platform", + "pool", + "pulled", + "regarding", + "relations", + "requires", + "route", + "saved", + "schedule", + "scientific", + "smoke", + "squad", + "teach", + "testing", + "values", + "walked", + "ya", + "abuse", + "angry", + "businesses", + "candidate", + "comfortable", + "concern", + "developing", + "discuss", + "emotional", + "et", + "everywhere", + "facilities", + "falling", + "fox", + "hole", + "holiday", + "interests", + "internal", + "ireland", + "italian", + "italy", + "jersey", + "laugh", + "leg", + "liberal", + "listening", + "ll", + "lunch", + "max", + "milk", + "pack", + "payment", + "perform", + "recorded", + "relatively", + "sector", + "sharing", + "snow", + "storm", + "strike", + "studio", + "sub", + "weak", + "youtube", + "actor", + "advance", + "apartment", + "asia", + "chain", + "chapter", + "committed", + "confidence", + "cook", + "cute", + "equal", + "fake", + "finance", + "focused", + "identity", + "journey", + "kitchen", + "korea", + "maintain", + "measure", + "mm", + "numerous", + "properties", + "quiet", + "revealed", + "specifically", + "split", + "task", + "taxes", + "taylor", + "twenty", + "urban", + "affected", + "aircraft", + "approved", + "approximately", + "argument", + "arrested", + "claimed", + "conflict", + "considering", + "corporate", + "debate", + "determined", + "distribution", + "escape", + "extended", + "faster", + "fault", + "fill", + "friendly", + "ladies", + "lay", + "mixed", + "phase", + "properly", + "pure", + "reduced", + "requirements", + "revenue", + "sam", + "sat", + "secure", + "smile", + "strange", + "talent", + "temperature", + "thousand", + "tony", + "troops", + "truck", + "ah", + "authorities", + "basically", + "besides", + "bird", + "blame", + "bob", + "bowl", + "causes", + "chicken", + "collected", + "context", + "coverage", + "determine", + "display", + "dying", + "elected", + "examples", + "experienced", + "false", + "fired", + "forgot", + "funding", + "identified", + "iii", + "incredible", + "inspired", + "launched", + "ma", + "meat", + "ministry", + "mode", + "neck", + "noticed", + "novel", + "obvious", + "passing", + "remaining", + "scored", + "shirt", + "slowly", + "stadium", + "surgery", + "trading", + "tuesday", + "vision", + "whenever", + "worried", + "zero", + "alex", + "allowing", + "begins", + "champion", + "charged", + "cream", + "crisis", + "daniel", + "delivered", + "editor", + "estimated", + "eu", + "giant", + "iran", + "jail", + "jim", + "kingdom", + "literature", + "mayor", + "minor", + "opposite", + "orange", + "ourselves", + "remained", + "selection", + "serving", + "signal", + "stream", + "struggle", + "suicide", + "talked", + "theme", + "thursday", + "tiny", + "typically", + "un", + "unfortunately", + "usual", + "virginia", + "voted", + "voting", + "wave", + "id", + "alcohol", + "assembly", + "breakfast", + "bright", + "brings", + "capable", + "carrying", + "chosen", + "combination", + "conservative", + "customer", + "cutting", + "desire", + "destroyed", + "draft", + "drunk", + "essential", + "fail", + "familiar", + "finds", + "granted", + "guilty", + "hundreds", + "improved", + "jewish", + "largely", + "laughing", + "medium", + "ohio", + "opportunities", + "perfectly", + "recommend", + "referred", + "relevant", + "seek", + "sending", + "solo", + "spoke", + "stands", + "ticket", + "unable", + "upset", + "wing", + "bomb", + "creative", + "cycle", + "dealing", + "directed", + "don", + "educational", + "entertainment", + "extreme", + "facility", + "hang", + "holds", + "info", + "mainly", + "maximum", + "newspaper", + "offering", + "painting", + "republic", + "reserve", + "returns", + "row", + "salt", + "scared", + "scottish", + "shares", + "statistics", + "switch", + "territory", + "threat", + "tickets", + "wales", + "affect", + "appointed", + "armed", + "aside", + "assistance", + "bell", + "blow", + "bond", + "boyfriend", + "careful", + "circumstances", + "communications", + "concerns", + "controlled", + "corporation", + "cry", + "danger", + "delivery", + "deserve", + "dollar", + "empty", + "enjoyed", + "explained", + "fucked", + "gender", + "instance", + "kim", + "kinda", + "matches", + "mile", + "motion", + "nick", + "pacific", + "prize", + "realized", + "reasonable", + "receiving", + "register", + "resolution", + "rural", + "ryan", + "saving", + "singing", + "spain", + "typical", + "universe", + "warning", + "wednesday", + "admit", + "attitude", + "branch", + "brazil", + "conducted", + "dedicated", + "definition", + "drawing", + "favor", + "flag", + "frame", + "guest", + "ha", + "heaven", + "independence", + "jackson", + "kiss", + "load", + "plot", + "possibility", + "random", + "recovery", + "rent", + "replace", + "represent", + "seeking", + "senator", + "sentence", + "teeth", + "trained", + "understood", + "academic", + "academy", + "accurate", + "achieve", + "afford", + "andrew", + "assume", + "bbc", + "bottle", + "bunch", + "category", + "chat", + "cheese", + "chemical", + "clinton", + "competitive", + "detail", + "diet", + "em", + "favourite", + "fruit", + "harder", + "index", + "item", + "lane", + "mess", + "navy", + "normally", + "occurred", + "opposition", + "parent", + "permanent", + "personally", + "pleasure", + "prefer", + "programme", + "representative", + "scheme", + "shift", + "stood", + "storage", + "tank", + "tend", + "tight", + "transportation", + "ultimately", + "unlike", + "weekly", + "yard", + "anybody", + "basketball", + "button", + "combat", + "constitution", + "consumer", + "counter", + "creation", + "crown", + "crying", + "dc", + "defined", + "depending", + "depression", + "describe", + "el", + "employment", + "exclusive", + "excuse", + "expert", + "frequently", + "golf", + "grace", + "hopefully", + "identify", + "importance", + "kevin", + "laid", + "latter", + "manufacturing", + "mining", + "object", + "pattern", + "performing", + "personnel", + "perspective", + "pregnant", + "premier", + "promote", + "revolution", + "severe", + "sleeping", + "suppose", + "tool", + "tournament", + "turkey", + "ve", + "victim", + "amazon", + "arrest", + "attend", + "ban", + "brilliant", + "carbon", + "catholic", + "chose", + "circle", + "concert", + "crash", + "declared", + "deliver", + "depth", + "deputy", + "dirty", + "earned", + "electronic", + "error", + "existence", + "experiences", + "expression", + "factory", + "headed", + "interior", + "joy", + "jr", + "legislation", + "maintenance", + "manner", + "mate", + "matt", + "nearby", + "noise", + "origin", + "pakistan", + "panel", + "personality", + "plate", + "prepare", + "relief", + "replaced", + "resistance", + "retail", + "rice", + "roof", + "shame", + "somewhat", + "staying", + "stronger", + "surely", + "tip", + "updated", + "hell", + "absolute", + "advertising", + "agencies", + "baseball", + "bathroom", + "bible", + "cable", + "calm", + "championship", + "checked", + "client", + "constant", + "da", + "degrees", + "driven", + "dumb", + "empire", + "exciting", + "expansion", + "heavily", + "hide", + "incident", + "irish", + "linked", + "manage", + "messages", + "michigan", + "multi", + "nfl", + "print", + "quit", + "refused", + "reporting", + "sight", + "significantly", + "sing", + "soviet", + "weapon", + "wet", + "widely", + "worldwide", + "anniversary", + "attractive", + "bike", + "broad", + "burn", + "cake", + "causing", + "closely", + "constantly", + "contest", + "depends", + "drawn", + "francisco", + "haha", + "hardly", + "hat", + "height", + "hidden", + "hong", + "invited", + "letting", + "loud", + "manchester", + "marine", + "motor", + "officially", + "pc", + "peak", + "portion", + "princess", + "protein", + "puts", + "raw", + "reform", + "represented", + "respond", + "retirement", + "sample", + "secondary", + "solar", + "somehow", + "stayed", + "suffering", + "sydney", + "tries", + "ultimate", + "unknown", + "wilson", + "wondering", + "thats", + "attached", + "attacked", + "automatically", + "battery", + "blind", + "breath", + "brief", + "carolina", + "chest", + "conduct", + "debut", + "decade", + "destroy", + "differences", + "edward", + "engaged", + "expressed", + "external", + "fantasy", + "ft", + "grab", + "hollywood", + "immediate", + "introduction", + "joseph", + "license", + "paint", + "pilot", + "pink", + "presidential", + "principal", + "recognize", + "recognized", + "registered", + "regularly", + "rising", + "shipping", + "singer", + "smoking", + "steam", + "suffered", + "survive", + "tall", + "theatre", + "therapy", + "witness", + "lets", + "adopted", + "aim", + "campus", + "cap", + "childhood", + "clinical", + "comedy", + "commander", + "comparison", + "dan", + "defeat", + "defence", + "democracy", + "detailed", + "entitled", + "exact", + "exposed", + "fed", + "fee", + "injured", + "jan", + "jordan", + "kinds", + "loans", + "lock", + "musical", + "nose", + "opposed", + "organized", + "plastic", + "protected", + "purposes", + "quote", + "recording", + "semi", + "suspect", + "swear", + "techniques", + "tie", + "tim", + "trend", + "valuable", + "wealth", + "wise", + "aged", + "approval", + "aspects", + "attempts", + "bread", + "burning", + "contain", + "convention", + "dancing", + "document", + "employee", + "en", + "engineer", + "equivalent", + "facing", + "fairly", + "ford", + "founded", + "gang", + "graduate", + "greek", + "hanging", + "inner", + "le", + "lift", + "marked", + "memories", + "miller", + "monthly", + "neighborhood", + "operate", + "outstanding", + "permission", + "porn", + "racing", + "recommended", + "regulations", + "reply", + "rid", + "roman", + "shoulder", + "shower", + "solutions", + "stephen", + "tower", + "tradition", + "visited", + "visual", + "wheel", + "zealand", + "achieved", + "admitted", + "appointment", + "barely", + "bc", + "bush", + "cabinet", + "celebrate", + "challenges", + "chocolate", + "coal", + "colour", + "contemporary", + "criticism", + "davis", + "dna", + "effectively", + "eric", + "extensive", + "faced", + "filed", + "formation", + "fought", + "gained", + "gallery", + "highway", + "historic", + "hunt", + "improvement", + "inch", + "initially", + "junior", + "jury", + "kong", + "korean", + "monster", + "obtained", + "olympic", + "philosophy", + "pride", + "promised", + "repeat", + "returning", + "riding", + "rough", + "santa", + "settlement", + "smell", + "sought", + "speaker", + "studied", + "suggests", + "surrounding", + "tone", + "topic", + "toronto", + "universal", + "vast", + "wanting", + "auto", + "consistent", + "continuing", + "earn", + "exists", + "finger", + "grey", + "guitar", + "heading", + "howard", + "ignore", + "involving", + "latin", + "lewis", + "meal", + "meanwhile", + "naturally", + "necessarily", + "partnership", + "payments", + "percentage", + "pocket", + "practical", + "primarily", + "proved", + "rape", + "regardless", + "relative", + "represents", + "rescue", + "resulting", + "rush", + "sarah", + "sharp", + "simon", + "soccer", + "stable", + "supplies", + "symptoms", + "temporary", + "tested", + "trick", + "attended", + "audio", + "bone", + "brian", + "bullshit", + "chamber", + "chart", + "circuit", + "clothing", + "complicated", + "confused", + "consequences", + "defend", + "divided", + "elizabeth", + "everyday", + "extent", + "fishing", + "format", + "gap", + "gate", + "gotten", + "harm", + "healthcare", + "household", + "immigration", + "impressive", + "joining", + "killer", + "lesson", + "limits", + "loving", + "ltd", + "membership", + "miami", + "mirror", + "mount", + "occur", + "parking", + "proposal", + "province", + "purchased", + "recognition", + "reputation", + "rolling", + "shortly", + "situations", + "strongly", + "tears", + "technique", + "thin", + "tied", + "accused", + "adventure", + "argue", + "assessment", + "atmosphere", + "awful", + "bedroom", + "belief", + "bound", + "carefully", + "ceo", + "choices", + "closing", + "cloud", + "colorado", + "contrast", + "donald", + "drew", + "egg", + "element", + "elsewhere", + "establish", + "extension", + "founder", + "gear", + "georgia", + "hip", + "hitting", + "increases", + "infrastructure", + "jason", + "loose", + "moral", + "offensive", + "pa", + "package", + "pointed", + "poverty", + "processes", + "processing", + "qualified", + "railway", + "reaching", + "ridiculous", + "sensitive", + "server", + "shock", + "silence", + "soldier", + "superior", + "thick", + "threw", + "tons", + "transition", + "violent", + "wash", + "acid", + "actress", + "administrative", + "alan", + "alongside", + "angel", + "anxiety", + "babies", + "bonus", + "castle", + "charity", + "compare", + "contained", + "cooking", + "covering", + "curious", + "discovery", + "discussed", + "duke", + "egypt", + "encourage", + "enforcement", + "featuring", + "finals", + "flash", + "formal", + "formula", + "gray", + "gross", + "hungry", + "informed", + "innocent", + "jeff", + "losses", + "luke", + "mac", + "math", + "mistakes", + "mystery", + "olympics", + "palace", + "passes", + "penalty", + "pet", + "photography", + "producing", + "protest", + "publication", + "rating", + "refer", + "respectively", + "rome", + "scheduled", + "select", + "silent", + "spoken", + "successfully", + "suffer", + "temple", + "trail", + "uncle", + "unusual", + "yo", + "arrival", + "asks", + "assault", + "awareness", + "badly", + "bath", + "captured", + "chase", + "components", + "concrete", + "dave", + "deeply", + "expectations", + "explanation", + "exposure", + "featured", + "fiction", + "guarantee", + "happiness", + "harris", + "horrible", + "ideal", + "illinois", + "injuries", + "islamic", + "jimmy", + "kelly", + "legend", + "lieutenant", + "mini", + "mood", + "muscle", + "passion", + "picking", + "pleased", + "procedure", + "producer", + "pushing", + "rank", + "replacement", + "retired", + "roles", + "sand", + "savings", + "settled", + "shadow", + "tag", + "tape", + "thread", + "victoria", + "visiting", + "wage", + "andy", + "avenue", + "beating", + "believes", + "boring", + "charlie", + "checking", + "clock", + "commissioner", + "commitment", + "confident", + "containing", + "copies", + "custom", + "denied", + "desk", + "ear", + "electricity", + "fbi", + "gym", + "helpful", + "horror", + "iphone", + "iraq", + "label", + "liverpool", + "locked", + "naked", + "ny", + "opens", + "output", + "pitch", + "pizza", + "plain", + "pushed", + "raising", + "rear", + "reveal", + "romantic", + "speaks", + "strategic", + "swimming", + "welfare", + "wire", + "worker", + "afterwards", + "alright", + "android", + "anger", + "architecture", + "assist", + "attempted", + "behalf", + "belt", + "capture", + "ceremony", + "comic", + "cuts", + "dallas", + "designer", + "diamond", + "disappointed", + "dressed", + "economics", + "efficient", + "electrical", + "employed", + "enjoying", + "entering", + "essentially", + "establishment", + "expecting", + "explains", + "flower", + "ghost", + "handed", + "hockey", + "houston", + "https", + "hunting", + "industries", + "islam", + "jane", + "kit", + "lab", + "min", + "morgan", + "moscow", + "na", + "nervous", + "newly", + "op", + "ordinary", + "participate", + "philadelphia", + "prayer", + "principles", + "racist", + "rarely", + "references", + "sexy", + "skill", + "soil", + "solve", + "stomach", + "struck", + "studying", + "suck", + "trash", + "ugly", + "virus", + "walker", + "whoever", + "amounts", + "anthony", + "arthur", + "aspect", + "banned", + "boost", + "bureau", + "colonel", + "comfort", + "cousin", + "crack", + "deck", + "demands", + "dies", + "dragon", + "dramatic", + "dust", + "dutch", + "evolution", + "hired", + "illness", + "inspiration", + "institution", + "knife", + "lately", + "lowest", + "memorial", + "mexican", + "minority", + "mum", + "opinions", + "patterns", + "presents", + "priority", + "promotion", + "rail", + "remote", + "repair", + "root", + "saint", + "steal", + "stolen", + "telephone", + "tho", + "trans", + "vol", + "whereas", + "abandoned", + "acquired", + "alexander", + "alliance", + "annoying", + "ap", + "bid", + "bro", + "buddy", + "buried", + "butter", + "columbia", + "conclusion", + "confirm", + "congratulations", + "convinced", + "crap", + "crystal", + "dean", + "decent", + "decline", + "delay", + "describes", + "desert", + "downtown", + "elite", + "enemies", + "forgotten", + "forth", + "hire", + "hop", + "insane", + "installed", + "israeli", + "landing", + "layer", + "managing", + "marry", + "nah", + "nowhere", + "nurse", + "obtain", + "organic", + "ownership", + "pennsylvania", + "poetry", + "pot", + "pray", + "printed", + "recall", + "rugby", + "sake", + "sheet", + "signing", + "smooth", + "spiritual", + "stops", + "string", + "sudden", + "sweden", + "syria", + "throwing", + "thrown", + "vacation", + "ones", + "abroad", + "arab", + "assigned", + "associate", + "assumed", + "atlantic", + "bench", + "bother", + "broadcast", + "bye", + "cambridge", + "citizen", + "cleaning", + "compete", + "consists", + "contributed", + "cricket", + "damaged", + "disaster", + "discover", + "disney", + "entrance", + "equally", + "fallen", + "figured", + "fitness", + "francis", + "friendship", + "gary", + "handling", + "idiot", + "intense", + "lifetime", + "liquid", + "makeup", + "medal", + "mortgage", + "narrative", + "narrow", + "nba", + "observed", + "occasionally", + "pan", + "physics", + "posting", + "potentially", + "reduction", + "reflect", + "refuse", + "resource", + "roger", + "ross", + "seattle", + "serves", + "silly", + "subsequent", + "translation", + "visible", + "yep", + "years", + "adds", + "allen", + "amendment", + "angle", + "arizona", + "arrive", + "belong", + "berlin", + "bishop", + "clark", + "commonly", + "connect", + "defensive", + "efficiency", + "enterprise", + "experiment", + "feb", + "findings", + "forum", + "gifts", + "grass", + "hence", + "increasingly", + "incredibly", + "jay", + "journalist", + "kicked", + "lessons", + "maintained", + "mill", + "mo", + "occasion", + "oxford", + "pace", + "passenger", + "pen", + "pope", + "possession", + "pp", + "rapid", + "regulation", + "resident", + "shaped", + "sixth", + "spin", + "sucks", + "suitable", + "thirty", + "valid", + "vital", + "whilst", + "gods", + "agriculture", + "alleged", + "anna", + "atlanta", + "collect", + "commerce", + "cop", + "creek", + "currency", + "emotions", + "exhibition", + "fraud", + "funeral", + "genuine", + "gordon", + "honey", + "honour", + "hook", + "hunter", + "improving", + "instructions", + "introduce", + "kansas", + "km", + "legacy", + "log", + "matthew", + "merely", + "monitor", + "nov", + "patrick", + "phil", + "programming", + "publishing", + "ratio", + "regret", + "rejected", + "remind", + "resort", + "resulted", + "reverse", + "routine", + "scary", + "seed", + "settle", + "sin", + "spell", + "summary", + "survival", + "sword", + "tongue", + "ward", + "wayne", + "achievement", + "anderson", + "argued", + "asleep", + "austin", + "automatic", + "begun", + "behaviour", + "cd", + "coat", + "comprehensive", + "consent", + "daddy", + "destruction", + "diego", + "divorce", + "doc", + "drove", + "engage", + "extraordinary", + "fate", + "frequency", + "gaming", + "gene", + "glory", + "headquarters", + "heritage", + "initiative", + "interviews", + "jean", + "juice", + "landscape", + "logic", + "meets", + "melbourne", + "microsoft", + "objective", + "organisation", + "privacy", + "procedures", + "profits", + "reducing", + "regard", + "representing", + "residence", + "roughly", + "salary", + "scoring", + "script", + "searching", + "strip", + "surrounded", + "threatened", + "transferred", + "tube", + "universities", + "walter", + "wisconsin", + "writes", + "cant", + "ambassador", + "ann", + "awarded", + "banking", + "breast", + "carter", + "chelsea", + "chemistry", + "concluded", + "consumption", + "corruption", + "cotton", + "crossed", + "detroit", + "discount", + "dozen", + "epic", + "exception", + "exit", + "expand", + "fancy", + "gorgeous", + "grateful", + "heroes", + "impression", + "inches", + "indicate", + "input", + "johnny", + "josh", + "knock", + "leather", + "lips", + "luxury", + "lyrics", + "oct", + "operated", + "ought", + "outcome", + "painted", + "poll", + "preferred", + "pulling", + "ranked", + "referring", + "removal", + "rep", + "reporter", + "rio", + "risks", + "rob", + "screaming", + "sept", + "sequence", + "singapore", + "stretch", + "tear", + "tennis", + "terrorist", + "theater", + "ties", + "twelve", + "virgin", + "wishes", + "wolf", + "absence", + "agricultural", + "asshole", + "ate", + "boxes", + "bruce", + "bull", + "commonwealth", + "contribute", + "contribution", + "contributions", + "delicious", + "deny", + "deserves", + "ease", + "extend", + "fame", + "flood", + "generated", + "genetic", + "glasses", + "impressed", + "indicated", + "instant", + "involves", + "kate", + "kills", + "liberty", + "maria", + "monitoring", + "occurs", + "photographs", + "principle", + "progressive", + "punishment", + "rally", + "rapidly", + "reader", + "representation", + "reveals", + "sum", + "swing", + "tail", + "twin", + "upcoming", + "alert", + "arena", + "aug", + "billy", + "boom", + "brave", + "claiming", + "column", + "commit", + "compensation", + "composition", + "conservation", + "constitutional", + "crossing", + "defending", + "density", + "di", + "difficulty", + "dropping", + "drops", + "elementary", + "ethnic", + "expenses", + "fleet", + "foster", + "fuckin", + "fundamental", + "gen", + "genius", + "greatly", + "guidance", + "infection", + "instagram", + "intention", + "iowa", + "knee", + "mechanical", + "nigeria", + "participation", + "precious", + "pregnancy", + "premium", + "preparing", + "pretend", + "priest", + "prominent", + "proven", + "radical", + "remembered", + "requested", + "residential", + "reward", + "robin", + "russell", + "satellite", + "shake", + "shore", + "stats", + "struggling", + "substantial", + "teen", + "temperatures", + "transmission", + "trap", + "uniform", + "wildlife", + "wooden", + "mothers", + "aggressive", + "anne", + "answered", + "apparent", + "bang", + "blast", + "centuries", + "communist", + "complaint", + "component", + "courage", + "cure", + "del", + "desperate", + "diversity", + "duties", + "encouraged", + "eve", + "faculty", + "feedback", + "fighter", + "frozen", + "hiding", + "humanity", + "ian", + "innovation", + "invest", + "jacket", + "justin", + "legislative", + "listing", + "manual", + "murdered", + "nursing", + "occupied", + "ongoing", + "operator", + "painful", + "pound", + "preparation", + "punch", + "purple", + "railroad", + "registration", + "releases", + "rick", + "romance", + "submitted", + "sufficient", + "survived", + "suspended", + "technologies", + "tissue", + "trailer", + "trends", + "ukraine", + "underground", + "versus", + "virtual", + "walks", + "wounded", + "ali", + "amongst", + "announcement", + "arranged", + "arsenal", + "attending", + "attracted", + "biological", + "bite", + "blocked", + "burned", + "categories", + "checks", + "chip", + "concerning", + "dare", + "database", + "define", + "discrimination", + "disorder", + "distributed", + "documentary", + "domain", + "dynamic", + "edited", + "engagement", + "explore", + "favour", + "fewer", + "footage", + "grave", + "hamilton", + "implementation", + "indiana", + "investigate", + "jazz", + "jon", + "jonathan", + "laboratory", + "lawrence", + "lincoln", + "literary", + "mask", + "massachusetts", + "midnight", + "minnesota", + "mouse", + "oscar", + "packed", + "piano", + "praise", + "presentation", + "psychology", + "relation", + "restrictions", + "rocket", + "ruin", + "saudi", + "sean", + "sec", + "slave", + "stability", + "steady", + "symbol", + "terminal", + "toilet", + "treaty", + "triple", + "unlikely", + "updates", + "vietnam", + "viewed", + "affair", + "agenda", + "bat", + "bow", + "calendar", + "cape", + "collective", + "conversations", + "cooperation", + "craft", + "darkness", + "deeper", + "devil", + "edit", + "enable", + "equity", + "estimates", + "failing", + "finishing", + "fortune", + "goodbye", + "graham", + "hardware", + "hillary", + "hurts", + "intellectual", + "invite", + "involvement", + "kentucky", + "madrid", + "mi", + "nuts", + "oregon", + "partly", + "petition", + "phrase", + "physically", + "protecting", + "racial", + "rated", + "regime", + "ruled", + "sa", + "sauce", + "seal", + "separated", + "shield", + "similarly", + "slide", + "stem", + "summit", + "talented", + "throat", + "tiger", + "touched", + "toy", + "visits", + "wisdom", + "accounting", + "alien", + "attacking", + "awkward", + "beast", + "beef", + "candy", + "carrier", + "celebration", + "celebrity", + "certificate", + "cited", + "clay", + "coaching", + "constructed", + "dated", + "dec", + "default", + "delhi", + "derived", + "dialogue", + "disabled", + "distinct", + "drag", + "educated", + "eligible", + "estimate", + "execution", + "existed", + "fifty", + "followers", + "fool", + "framework", + "franchise", + "funded", + "furniture", + "guaranteed", + "integrated", + "intelligent", + "interaction", + "jet", + "lifestyle", + "lighting", + "lisa", + "loop", + "mall", + "mp", + "overseas", + "performances", + "polish", + "recommendations", + "recover", + "regarded", + "relax", + "reliable", + "rely", + "remarkable", + "responses", + "ruling", + "sacrifice", + "se", + "sole", + "stopping", + "strategies", + "succeed", + "tale", + "timing", + "ton", + "witnesses", + "wore", + "worship", + "worthy", + "acted", + "alarm", + "bass", + "bloody", + "breathing", + "butt", + "characteristics", + "cnn", + "collaboration", + "con", + "consideration", + "creates", + "crucial", + "dependent", + "discussions", + "dual", + "edinburgh", + "equipped", + "expanded", + "experimental", + "feeding", + "filter", + "galaxy", + "globe", + "grades", + "greece", + "gulf", + "highlights", + "hoped", + "intent", + "involve", + "judgment", + "kennedy", + "knight", + "larry", + "lmao", + "logo", + "malaysia", + "mature", + "moore", + "nazi", + "netherlands", + "peaceful", + "philip", + "photographer", + "pin", + "prevention", + "printing", + "promoting", + "publicly", + "pump", + "repeated", + "replied", + "requests", + "revenge", + "satisfied", + "slip", + "spare", + "specialist", + "stranger", + "submit", + "surprising", + "tap", + "thompson", + "threats", + "tourism", + "turkish", + "volunteer", + "acceptable", + "attempting", + "auction", + "challenging", + "churches", + "cleveland", + "cm", + "composed", + "concentration", + "copper", + "corp", + "counting", + "dawn", + "dispute", + "earnings", + "editing", + "executed", + "firing", + "fits", + "frequent", + "gathered", + "hilarious", + "huh", + "ignored", + "improvements", + "investments", + "margin", + "maryland", + "mechanism", + "moderate", + "murray", + "oklahoma", + "opera", + "overcome", + "parallel", + "passage", + "pit", + "psychological", + "quest", + "radiation", + "shocked", + "sized", + "stroke", + "stunning", + "tokyo", + "topics", + "traveling", + "treating", + "tune", + "utility", + "vessel", + "weed", + "wherever", + "peoples", + "acquisition", + "addressed", + "alabama", + "alice", + "anime", + "announce", + "autumn", + "backed", + "barry", + "bold", + "breathe", + "cameron", + "choosing", + "classical", + "classified", + "clip", + "coaches", + "concepts", + "conspiracy", + "controversy", + "convince", + "cooper", + "disappeared", + "eh", + "encounter", + "equality", + "exam", + "examination", + "fails", + "federation", + "fi", + "fiscal", + "guardian", + "hd", + "homeless", + "instrument", + "intervention", + "jerry", + "lover", + "mainstream", + "menu", + "missouri", + "mounted", + "mutual", + "nope", + "occasions", + "offense", + "oral", + "panic", + "pays", + "pursue", + "realise", + "refugees", + "removing", + "requirement", + "responded", + "rip", + "ruined", + "scope", + "segment", + "spectrum", + "ted", + "terror", + "uh", + "va", + "venture", + "virtually", + "waited", + "warren", + "worn", + "yea", + "ac", + "accompanied", + "aimed", + "alpha", + "approaches", + "arguing", + "arrangement", + "beliefs", + "boundaries", + "brick", + "brooklyn", + "considerable", + "conventional", + "danny", + "des", + "designated", + "dvd", + "emperor", + "enormous", + "errors", + "focusing", + "forgive", + "garage", + "gathering", + "guidelines", + "handled", + "hosted", + "indonesia", + "inquiry", + "inspector", + "jumped", + "khan", + "li", + "lion", + "loaded", + "lonely", + "maintaining", + "measured", + "mercy", + "nevertheless", + "outer", + "oxygen", + "pipe", + "pissed", + "poem", + "powder", + "powered", + "promises", + "quotes", + "racism", + "ratings", + "recovered", + "refers", + "roy", + "rude", + "screw", + "seventh", + "shelter", + "signature", + "sooner", + "spider", + "stewart", + "suggesting", + "tracking", + "tribute", + "trigger", + "vary", + "venue", + "wages", + "ye", + "abc", + "abortion", + "accuracy", + "albert", + "applying", + "artificial", + "belongs", + "beneath", + "bitcoin", + "bullet", + "burns", + "carl", + "celebrated", + "consistently", + "conversion", + "copyright", + "counties", + "democrat", + "deposit", + "destination", + "dirt", + "diverse", + "divine", + "emails", + "er", + "exclusively", + "export", + "fastest", + "formerly", + "functional", + "gather", + "grandfather", + "habit", + "harvard", + "indicates", + "isolated", + "jealous", + "knocked", + "landed", + "laughed", + "laura", + "lazy", + "mama", + "marshall", + "mitchell", + "modified", + "municipal", + "naval", + "nelson", + "neutral", + "noble", + "oldest", + "pat", + "picks", + "poland", + "popularity", + "pussy", + "reactions", + "relate", + "robot", + "sacred", + "securities", + "shoe", + "spy", + "steven", + "suggestions", + "supplied", + "susan", + "suspension", + "terrorism", + "terry", + "toxic", + "treasury", + "tunnel", + "upgrade", + "warrant", + "wider", + "wound", + "worlds", + "aaron", + "actively", + "afghanistan", + "ai", + "applies", + "arrangements", + "asset", + "assuming", + "backing", + "baker", + "barcelona", + "blessed", + "brazilian", + "brush", + "burden", + "campbell", + "casual", + "certified", + "charter", + "chef", + "civilian", + "coalition", + "cock", + "complain", + "complaints", + "controversial", + "denver", + "describing", + "differently", + "discipline", + "discussing", + "disgusting", + "dj", + "dominant", + "earning", + "emma", + "essay", + "expense", + "explaining", + "furthermore", + "graphic", + "greg", + "healing", + "hiring", + "implemented", + "instantly", + "invasion", + "jacob", + "jumping", + "laptop", + "legendary", + "leo", + "maker", + "margaret", + "mario", + "outdoor", + "palm", + "parker", + "photograph", + "pole", + "pub", + "queensland", + "ranks", + "reception", + "recipe", + "regulatory", + "reviewed", + "rubber", + "secured", + "serial", + "settings", + "snake", + "sponsored", + "stealing", + "strict", + "subsequently", + "substance", + "suggestion", + "switzerland", + "syndrome", + "tasks", + "ultra", + "unexpected", + "usage", + "utah", + "accidentally", + "affordable", + "amateur", + "argentina", + "baltimore", + "batman", + "bearing", + "bin", + "biology", + "bobby", + "briefly", + "canal", + "cancelled", + "charlotte", + "cheaper", + "christopher", + "climb", + "com", + "competing", + "completion", + "cruise", + "custody", + "delete", + "demonstrated", + "departure", + "dig", + "employer", + "explosion", + "fever", + "fluid", + "folk", + "generate", + "gop", + "handsome", + "ho", + "imagination", + "integration", + "integrity", + "interpretation", + "leaf", + "legitimate", + "lightning", + "loads", + "longest", + "magical", + "motivation", + "nasty", + "oliver", + "outfit", + "pension", + "permit", + "perry", + "pleasant", + "portrait", + "productive", + "reminds", + "ron", + "safely", + "shorter", + "slight", + "socialist", + "streaming", + "sue", + "targeted", + "tension", + "thailand", + "theories", + "touching", + "transactions", + "twist", + "ugh", + "unemployment", + "unity", + "useless", + "woke", + "wtf", + "abilities", + "advocate", + "aims", + "arc", + "backup", + "beaten", + "bitter", + "blown", + "branches", + "cia", + "clever", + "clinic", + "closest", + "continuous", + "converted", + "correctly", + "creator", + "criteria", + "declined", + "detective", + "difficulties", + "disability", + "dish", + "douglas", + "du", + "duck", + "egyptian", + "ep", + "evaluation", + "excess", + "farming", + "fence", + "fifa", + "forcing", + "forming", + "franklin", + "fred", + "gradually", + "gravity", + "habits", + "highlight", + "holder", + "hood", + "hung", + "identical", + "imperial", + "jose", + "ken", + "legally", + "lied", + "listened", + "manufacturer", + "meters", + "nail", + "nasa", + "negotiations", + "nonsense", + "ontario", + "operational", + "orleans", + "owns", + "phoenix", + "playoffs", + "poet", + "quoted", + "relating", + "repeatedly", + "robinson", + "rolled", + "scientist", + "sink", + "skip", + "slavery", + "snap", + "sorts", + "stole", + "swedish", + "swim", + "swiss", + "tennessee", + "transaction", + "transformation", + "veteran", + "vulnerable", + "wealthy", + "additionally", + "amy", + "attract", + "barbara", + "beta", + "blowing", + "bored", + "bronze", + "bug", + "caring", + "catching", + "cave", + "cheating", + "chronic", + "cleared", + "communicate", + "convicted", + "dealt", + "delayed", + "demonstrate", + "depend", + "developer", + "diagnosis", + "dismissed", + "distinguished", + "dose", + "eighth", + "fa", + "flesh", + "flip", + "forty", + "generous", + "hated", + "hr", + "implement", + "incorporated", + "influenced", + "jerusalem", + "kidding", + "laser", + "loyal", + "marijuana", + "md", + "mentally", + "occupation", + "opponent", + "patch", + "patience", + "pic", + "pointing", + "pollution", + "precisely", + "prisoner", + "privilege", + "proposals", + "protests", + "punk", + "radar", + "regards", + "resist", + "solely", + "stepped", + "striking", + "th", + "tourist", + "transit", + "trusted", + "villa", + "volumes", + "wireless", + "wondered", + "wrap", + "wright", + "yoga", + "adopt", + "alaska", + "anytime", + "bacteria", + "beside", + "blade", + "boot", + "bulk", + "cargo", + "census", + "christianity", + "coastal", + "coin", + "colored", + "commentary", + "confusion", + "congressional", + "corn", + "cried", + "dealer", + "deemed", + "destiny", + "distant", + "electronics", + "emerging", + "emotion", + "emphasis", + "ethics", + "excitement", + "exploration", + "filling", + "filming", + "glasgow", + "graphics", + "helen", + "humor", + "insight", + "invested", + "jennifer", + "lit", + "louisiana", + "mar", + "marie", + "meals", + "mississippi", + "nerve", + "netflix", + "nightmare", + "overnight", + "partially", + "participating", + "pie", + "poster", + "pr", + "practically", + "preserve", + "produces", + "qualify", + "raid", + "ram", + "ranging", + "ranking", + "receives", + "respective", + "restricted", + "samuel", + "sandy", + "scenario", + "sheep", + "situated", + "sony", + "spotted", + "spreading", + "stanley", + "sustainable", + "sustained", + "taxi", + "themes", + "threatening", + "tobacco", + "trace", + "trapped", + "turner", + "uncomfortable", + "wasted", + "weakness", + "widespread", + "xbox", + "shell", + "shed", + "accepting", + "accessible", + "acknowledge", + "advised", + "advisory", + "animation", + "assignment", + "balanced", + "bare", + "basement", + "birmingham", + "cancel", + "carpet", + "ceiling", + "cherry", + "chill", + "classification", + "clue", + "cole", + "collapse", + "collecting", + "compound", + "conscious", + "consecutive", + "costume", + "craig", + "deleted", + "devoted", + "displayed", + "dominated", + "earl", + "endless", + "escaped", + "examine", + "floating", + "garbage", + "gospel", + "grain", + "grid", + "grows", + "heating", + "identification", + "lap", + "liver", + "metro", + "metropolitan", + "mixture", + "nominated", + "oak", + "parliamentary", + "patent", + "perception", + "physician", + "portland", + "proceed", + "proceedings", + "reserved", + "restore", + "rifle", + "rival", + "runner", + "sadly", + "sc", + "shoulders", + "significance", + "sits", + "sizes", + "slept", + "soap", + "spray", + "stored", + "stressed", + "structural", + "suite", + "tbh", + "tropical", + "ukrainian", + "unnecessary", + "verse", + "victor", + "vintage", + "warned", + "watson", + "acres", + "adapted", + "adoption", + "anonymous", + "antonio", + "approaching", + "artistic", + "attendance", + "aviation", + "barrel", + "beloved", + "bless", + "boxing", + "celebrating", + "charging", + "chemicals", + "chuck", + "cinema", + "colonial", + "compliance", + "contrary", + "controlling", + "couch", + "crush", + "dam", + "decrease", + "defeated", + "diabetes", + "dressing", + "expanding", + "fears", + "genre", + "gentle", + "grammar", + "hiv", + "idk", + "illustrated", + "invented", + "jake", + "jam", + "jessica", + "keith", + "kent", + "layers", + "lease", + "licensed", + "loyalty", + "madison", + "magnetic", + "metres", + "mysterious", + "notion", + "partial", + "piss", + "placing", + "propaganda", + "rat", + "reflection", + "reminded", + "resolve", + "revolutionary", + "scandal", + "shine", + "si", + "simultaneously", + "substitute", + "surveillance", + "tactics", + "testimony", + "thai", + "treasure", + "trophy", + "tweet", + "tyler", + "underlying", + "unfair", + "von", + "wa", + "acceptance", + "accidents", + "affects", + "annually", + "apologize", + "appreciated", + "approached", + "arriving", + "ash", + "aunt", + "benjamin", + "blake", + "bubble", + "casino", + "connecting", + "counsel", + "creature", + "deadly", + "decides", + "der", + "desired", + "determination", + "embrace", + "emerged", + "exhibit", + "flew", + "gentleman", + "gm", + "hammer", + "hitler", + "hosting", + "icon", + "imposed", + "indigenous", + "infinite", + "installation", + "inter", + "interactions", + "introducing", + "iranian", + "kicking", + "laying", + "legislature", + "liability", + "maine", + "manhattan", + "marathon", + "marvel", + "moreover", + "neil", + "parade", + "paradise", + "perceived", + "politician", + "preliminary", + "premiere", + "presidency", + "reaches", + "react", + "realistic", + "remarks", + "retain", + "rocky", + "satisfaction", + "scratch", + "shade", + "sheets", + "sheriff", + "shy", + "sometime", + "sporting", + "strictly", + "sunshine", + "thou", + "tier", + "tommy", + "travelling", + "vancouver", + "vocal", + "warrior", + "worries", + "yield", + "accomplished", + "admission", + "aka", + "appearing", + "bacon", + "barrier", + "belgium", + "believing", + "burst", + "casting", + "cattle", + "cc", + "classroom", + "colours", + "compromise", + "convenient", + "costa", + "crop", + "earthquake", + "elderly", + "eliminate", + "embarrassing", + "farmer", + "finest", + "harbor", + "harvey", + "hates", + "incidents", + "inform", + "ion", + "jeremy", + "lesbian", + "lt", + "mathematics", + "medication", + "minded", + "morris", + "norway", + "par", + "podcast", + "portfolio", + "productivity", + "promoted", + "protocol", + "quietly", + "rachel", + "replacing", + "responsibilities", + "salad", + "scholarship", + "screening", + "sends", + "smiling", + "soup", + "southeast", + "stake", + "stating", + "strain", + "suspected", + "swift", + "tackle", + "timeline", + "torture", + "traded", + "translated", + "tricks", + "urgent", + "vegetables", + "vertical", + "violation", + "wallet", + "welsh", + "workshop", + "wrapped", + "aboard", + "abstract", + "accent", + "addiction", + "awake", + "beam", + "binding", + "blank", + "buffalo", + "conviction", + "corrupt", + "cow", + "curve", + "depressed", + "deserved", + "dining", + "disorders", + "duration", + "eddie", + "emily", + "encouraging", + "fifteen", + "flows", + "ga", + "graduated", + "grandmother", + "harsh", + "heights", + "horn", + "hurry", + "immune", + "inflation", + "ingredients", + "inspection", + "install", + "instruction", + "intensity", + "inventory", + "investigated", + "invitation", + "judicial", + "justify", + "kyle", + "lean", + "lecture", + "libraries", + "logical", + "mason", + "meaningful", + "migration", + "missile", + "motivated", + "muscles", + "nancy", + "norman", + "northwest", + "organ", + "patrol", + "pearl", + "peer", + "pepper", + "pig", + "pile", + "plug", + "provision" + ], + "keyboard_adjacency": { + "q": [ + "a", + "w", + "s" + ], + "w": [ + "s", + "a", + "q", + "e", + "d" + ], + "e": [ + "s", + "f", + "w", + "r", + "d" + ], + "r": [ + "g", + "f", + "e", + "d", + "t" + ], + "t": [ + "g", + "h", + "f", + "r", + "y" + ], + "y": [ + "g", + "h", + "u", + "j", + "t" + ], + "u": [ + "k", + "h", + "i", + "j", + "y" + ], + "i": [ + "o", + "l", + "k", + "u", + "j" + ], + "o": [ + "i", + "p", + "l", + "k" + ], + "p": [ + "o", + "l" + ], + "a": [ + "x", + "z", + "q", + "w", + "s" + ], + "s": [ + "x", + "a", + "q", + "z", + "e", + "w", + "c", + "d" + ], + "d": [ + "x", + "f", + "v", + "e", + "w", + "r", + "c", + "s" + ], + "f": [ + "b", + "g", + "v", + "e", + "r", + "c", + "d", + "t" + ], + "g": [ + "h", + "f", + "v", + "r", + "y", + "n", + "b", + "t" + ], + "h": [ + "g", + "u", + "m", + "j", + "y", + "n", + "b", + "t" + ], + "j": [ + "k", + "h", + "u", + "i", + "y", + "n", + "m" + ], + "k": [ + "o", + "l", + "u", + "i", + "j", + "m" + ], + "l": [ + "i", + "o", + "k", + "p" + ], + "z": [ + "x", + "a", + "s" + ], + "x": [ + "s", + "z", + "a", + "c", + "d" + ], + "c": [ + "s", + "x", + "f", + "v", + "d" + ], + "v": [ + "b", + "g", + "f", + "c", + "d" + ], + "b": [ + "g", + "h", + "f", + "v", + "n" + ], + "n": [ + "g", + "h", + "j", + "b", + "m" + ], + "m": [ + "j", + "n", + "k", + "h" + ] + }, + "min_frequency_by_length": { + "2": 1e-05, + "3": 1e-06, + "4": 1e-07, + "5": 5e-08, + "6": 1e-08, + "7": 1e-08, + "8": 5e-09, + "9": 1e-09, + "10+": 5e-10 + } } \ No newline at end of file