├── tests ├── __init__.py └── test_apps.py ├── iomanagers ├── __init__.py └── redis_manager.py ├── _config.yml ├── .gitignore ├── prefix_tree.png ├── static ├── images │ └── design-1200x633.jpg ├── css │ └── index.css └── js │ └── index.js ├── src ├── __init__.py ├── errors.py ├── database.py ├── trienode.py ├── spell.py ├── analytics.py ├── advanced_server.py └── server.py ├── .travis.yml ├── Pipfile ├── package.json ├── README.md ├── logging.config ├── LICENSE ├── .github └── workflows │ └── python-package.yml ├── app.py ├── templates └── index.html ├── service_with_flask.py ├── Pipfile.lock └── data └── 5000_most_freq_words.csv /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iomanagers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | logs/ 4 | src/.DS_Store 5 | */__pycache__/ 6 | env/ 7 | -------------------------------------------------------------------------------- /prefix_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwangmusic/Autocomplete-System/HEAD/prefix_tree.png -------------------------------------------------------------------------------- /static/images/design-1200x633.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwangmusic/Autocomplete-System/HEAD/static/images/design-1200x633.jpg -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = "Weihe Wang " 2 | __copyright__ = "2017-2018, Weihe Wang" 3 | 4 | import os 5 | 6 | os.makedirs("logs", exist_ok=True) 7 | -------------------------------------------------------------------------------- /src/errors.py: -------------------------------------------------------------------------------- 1 | """ 2 | Definition for error hierarchy 3 | """ 4 | 5 | 6 | class BasicValueError(ValueError): 7 | pass 8 | 9 | 10 | class ReturnResultValueLessThanOne(BasicValueError): 11 | pass 12 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | 3 | python: 4 | - 3.6 5 | 6 | install: 7 | - pip install py2neo 8 | - pip install PyYAML 9 | - pip install sklearn 10 | - pip install numpy 11 | - pip install nltk 12 | 13 | script: pytest -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- 1 | [[source]] 2 | url = "https://pypi.org/simple" 3 | verify_ssl = true 4 | name = "pypi" 5 | 6 | [packages] 7 | pytest = "*" 8 | redis = "*" 9 | scikit-learn = "*" 10 | numpy = "*" 11 | flask = "==3.0.2" 12 | pyyaml = "*" 13 | 14 | [dev-packages] 15 | pytest = ">=7.2" 16 | exceptiongroup = "*" 17 | -------------------------------------------------------------------------------- /src/database.py: -------------------------------------------------------------------------------- 1 | """ 2 | Define relationships and database handler. 3 | """ 4 | 5 | 6 | # from py2neo import Graph, Relationship 7 | 8 | 9 | # class Parent(Relationship): 10 | # pass 11 | 12 | 13 | class DatabaseHandler: 14 | def __init__(self, username='neo4j', password='admin', bolt=7687): 15 | # self.graph = Graph(user=username, password=password, bolt_port=bolt) 16 | return 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Autocomplete-System", 3 | "version": "1.0.0", 4 | "description": "[![Build Status](https://travis-ci.org/weihesdlegend/Auto-complete-System.svg?branch=master)](https://travis-ci.org/weihesdlegend/Auto-complete-System)", 5 | "main": "index.js", 6 | "directories": { 7 | "test": "tests" 8 | }, 9 | "scripts": { 10 | "test": "echo \"Error: no test specified\" && exit 1" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/weihesdlegend/Autocomplete-System.git" 15 | }, 16 | "keywords": [], 17 | "author": "", 18 | "license": "ISC", 19 | "bugs": { 20 | "url": "https://github.com/weihesdlegend/Autocomplete-System/issues" 21 | }, 22 | "homepage": "https://github.com/weihesdlegend/Autocomplete-System#readme" 23 | } 24 | -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- 1 | #searchbar{ 2 | margin-left: 15%; 3 | padding:15px; 4 | border-radius: 10px; 5 | } 6 | 7 | body, html{ 8 | height: 100%; 9 | background-image: url("/static/images/design-1200x633.jpg"); 10 | background-color: #cccccc; 11 | background-position: center; 12 | background-repeat: no-repeat; 13 | background-size: cover; 14 | } 15 | 16 | label { 17 | display: block; 18 | } 19 | 20 | input[type=text] { 21 | width: 30%; 22 | -webkit-transition: width 0.15s ease-in-out; 23 | transition: width 0.15s ease-in-out; 24 | } 25 | 26 | input, 27 | label { 28 | margin: .4rem 0; 29 | } 30 | 31 | /* When the input field gets focus, 32 | change its width to 100% */ 33 | input[type=text]:focus { 34 | width: 70%; 35 | } 36 | 37 | #list{ 38 | font-size: 1.5em; 39 | margin-left: 90px; 40 | } 41 | 42 | .words{ 43 | display: list-item; 44 | } 45 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Autocomplete System 2 | 3 | Autocomplete system using Neo4j graph database for storing data and providing fault tolerance. Returns top suggestions to users. 4 | 5 | ## **Feature Support** 6 | 7 | - Restful search API for auto-completing any phrase in English and returns top suggestions. 8 | - Autocorrect invalid user inputs. 9 | - Delete inappropriate phrases. 10 | - Build new servers from Neo4j databases. 11 | - Use advance logging techniques to track usage patterns and generate reports. 12 | - Serialization and deserialization of servers for data exchange. 13 | 14 | ### How to use 15 | 16 | - Ensure Python version >= 3.8 17 | - Create a Python virtual environment with pipenv. 18 | 19 | ``` 20 | # macOS/Linux 21 | pip install --user pipenv 22 | 23 | ``` 24 | 25 | - Run `pipenv install` to install the dependencies. 26 | - Run `pipenv run python service_with_flask.py` to start REST service. 27 | - Run `pipenv run python src/analytics.py` to generate usage reports. 28 | -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- 1 | async function search_words() { 2 | const searchTerm = document.getElementById("searchTerm").value; 3 | const results = await (await fetch(`/search?term=${searchTerm}`)).json(); 4 | 5 | let resultsList = $('#results') 6 | resultsList.empty(); 7 | for (const r of results.results) { 8 | resultsList.append($('
  • ').addClass('list-group-item list-group-item-success').text(r)); 9 | } 10 | await loadSearchHistory(); 11 | } 12 | 13 | async function loadSearchHistory() { 14 | const obj = await (await fetch('/history')).json(); 15 | 16 | let search_history = $('#search_history'); 17 | search_history.empty(); 18 | for (const term of obj.result) { 19 | search_history.append($('
  • ').addClass('list-group-item list-group-item-primary').text(term)); 20 | } 21 | } 22 | 23 | $('#searchBtn').click(search_words); 24 | $('#searchTerm').on('keypress', 25 | async (e) => { 26 | if (e.key === 'Enter') { 27 | await search_words(); 28 | } 29 | } 30 | ); 31 | -------------------------------------------------------------------------------- /logging.config: -------------------------------------------------------------------------------- 1 | version: 1 2 | formatters: 3 | simple: 4 | format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s' 5 | handlers: 6 | console: 7 | class: logging.StreamHandler 8 | level: DEBUG 9 | formatter: simple 10 | stream: ext://sys.stdout 11 | info_file_handler: 12 | class: logging.handlers.RotatingFileHandler 13 | level: INFO 14 | formatter: simple 15 | filename: ./logs/db_update_info.log 16 | maxBytes: 10485760 # 10MB 17 | backupCount: 20 18 | encoding: utf8 19 | rotate_file_handler2: 20 | class: logging.handlers.RotatingFileHandler 21 | level: DEBUG 22 | formatter: simple 23 | filename: ./logs/app_search_info.log 24 | maxBytes: 10485760 # 10MB 25 | backupCount: 20 26 | encoding: utf8 27 | loggers: 28 | Trie_db: 29 | level: INFO 30 | handlers: [info_file_handler] 31 | propagate: no 32 | Trie_db.insert: 33 | level: DEBUG 34 | handlers: [rotate_file_handler2] 35 | propagate: no 36 | root: 37 | level: DEBUG 38 | handlers: [console] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Weihe Wang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/trienode.py: -------------------------------------------------------------------------------- 1 | from collections import Counter 2 | 3 | 4 | class TrieNode: 5 | """ 6 | Node class for the Trie tree. 7 | 8 | """ 9 | def __init__(self, prefix=None, parent=None, is_word=False): 10 | """ 11 | 12 | :param prefix: prefix of this node. 13 | :param parent: parent node in the trie 14 | :param is_word: True if the path from root to this node is a word. 15 | # :param max_res_retain: maximum number of results in top_results 16 | """ 17 | self.prefix = prefix 18 | self.children = dict() 19 | self.parent = parent 20 | self.count = 0 # number of times the term is searched after last trie update 21 | self.top_results = Counter() 22 | if is_word: 23 | self.top_results[self.prefix] = 1 24 | self.isWord = is_word 25 | 26 | def total_counts(self): 27 | """ 28 | Returns the total number of searches on the prefix of the node. 29 | :return: int 30 | """ 31 | return self.top_results[self.prefix] 32 | 33 | def set_total_counts(self, val): 34 | """ 35 | Set the total number of searches on the prefix of the node from historical data in DB. 36 | :param val: int 37 | :return: None 38 | """ 39 | self.top_results[self.prefix] = val 40 | -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- 1 | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions 2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions 3 | 4 | name: Python package 5 | 6 | on: 7 | push: 8 | branches: [ master ] 9 | pull_request: 10 | branches: [ master ] 11 | 12 | jobs: 13 | build: 14 | 15 | runs-on: ubuntu-latest 16 | strategy: 17 | matrix: 18 | python-version: ['3.8', '3.9', '3.10', '3.11'] 19 | 20 | steps: 21 | - uses: actions/checkout@v2 22 | - name: Set up Python ${{ matrix.python-version }} 23 | uses: actions/setup-python@v2 24 | with: 25 | python-version: ${{ matrix.python-version }} 26 | - name: Install dependencies 27 | run: | 28 | python -m pip install --upgrade pip 29 | python -m pip install flake8 pytest 30 | pip install pipenv 31 | pipenv install --dev 32 | - name: Lint with flake8 33 | run: | 34 | # stop the build if there are Python syntax errors or undefined names 35 | flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics 36 | # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide 37 | flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics 38 | - name: Test with pytest 39 | run: | 40 | pipenv run pytest 41 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- 1 | import tkinter as tk 2 | from src.server import Server 3 | 4 | import sys 5 | from pathlib import Path 6 | 7 | src_dir = Path(__file__).resolve().parents[1] 8 | sys.path.append(str(src_dir)) 9 | 10 | 11 | class Application(tk.Frame): 12 | def __init__(self, master=None): 13 | super().__init__(master) 14 | self.app = Server() 15 | 16 | self.text_box = tk.Entry() 17 | self.text_box.pack(side='top') 18 | 19 | self.text = tk.StringVar() 20 | self.text.set("Please enter search term") 21 | 22 | self.text_box["textvariable"] = self.text 23 | self.text_box.bind("", self.search) 24 | 25 | self.search_res = tk.Text(font=('Verdana', 10)) 26 | self.search_res.pack() 27 | 28 | self.quit = tk.Button(text="QUIT", fg="pink", bg='blue', 29 | command=master.destroy) 30 | self.quit.pack(side="bottom") 31 | 32 | self.clear = tk.Button(text="Clear", command=lambda: self.search_res.delete(1.0, tk.END)) 33 | self.clear.pack() 34 | 35 | def search(self, event): 36 | self.search_res.delete(1.0, tk.END) 37 | res = self.app.search(self.text.get()) 38 | print(res) 39 | if len(res) > 0: 40 | for word in res: 41 | self.search_res.insert(tk.END, word + '\n') 42 | else: 43 | self.search_res.insert(tk.END, "no result") 44 | 45 | 46 | root = tk.Tk() 47 | app = Application(root) 48 | app.mainloop() 49 | -------------------------------------------------------------------------------- /iomanagers/redis_manager.py: -------------------------------------------------------------------------------- 1 | """ 2 | Redis manager is responsible for managing Redis connections and various IO operations 3 | from the autocomplete server to one Redis server. 4 | """ 5 | import redis 6 | 7 | 8 | class RedisManager: 9 | def __init__(self, redis_host: str = 'localhost', redis_port: int = 6379, db_idx: int = 0): 10 | # decode_responses equals True makes sure the response is composed of strings instead of bytes 11 | self.client = redis.Redis(redis_host, redis_port, db_idx, decode_responses=True) 12 | self.key_expiration_time = 3600 13 | self.search_history_max_length = 10 14 | 15 | def cache_search_results(self, search_term: str, search_results: list) -> None: 16 | if search_results is None or len(search_results) == 0: 17 | return 18 | redis_key = "search_term:" + search_term 19 | self.client.rpush(redis_key, *search_results) 20 | self.client.expire(redis_key, self.key_expiration_time) 21 | 22 | def get_search_results(self, search_term: str) -> list: 23 | redis_key = "search_term:" + search_term 24 | return self.client.lrange(redis_key, 0, -1) 25 | 26 | def cache_search_history(self, search_term: str) -> None: 27 | search_history_redis_key = "search_history" 28 | self.client.lpush(search_history_redis_key, search_term) 29 | if self.client.llen(search_history_redis_key) > self.search_history_max_length: 30 | self.client.rpop(search_history_redis_key) 31 | 32 | def get_search_history(self) -> list: 33 | return self.client.lrange("search_history", 0, -1) 34 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | autocomplete 10 | 11 | 12 | 14 | 15 | 16 | 17 | 18 |
    19 | 20 |

    Autocomplete System

    21 | 22 |
    23 |
    24 | 25 | 26 |
      27 |
      28 |
      29 |

      Search History

      30 |
        31 |
        32 |
        33 | 34 | 35 | 36 | 39 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /service_with_flask.py: -------------------------------------------------------------------------------- 1 | """ 2 | Use Flask to create a simple autocomplete service 3 | 4 | To use: 5 | run py service_with_flask.py 6 | """ 7 | 8 | from src.server import Server 9 | from iomanagers.redis_manager import RedisManager 10 | from flask import Flask, request, render_template 11 | import datetime 12 | import logging 13 | import json 14 | 15 | app = Flask(__name__) 16 | server = Server(connect_to_db=False) 17 | redis_mgr = RedisManager("localhost", 6379, 0) 18 | 19 | 20 | @app.route('/', methods=["GET"]) 21 | def home(): 22 | return render_template("index.html") 23 | 24 | 25 | @app.route("/date", methods=["GET"]) 26 | def date(): 27 | """ 28 | Returns: today's date 29 | """ 30 | return f"Thanks for visiting. Date today is {datetime.date.today()}." 31 | 32 | 33 | @app.route("/history", methods=["GET"]) 34 | def history(): 35 | """ 36 | Returns: search history 37 | """ 38 | return json.dumps({"result": redis_mgr.get_search_history()}) 39 | 40 | 41 | @app.route('/search', methods=["GET"]) 42 | def autocomplete(): 43 | """ 44 | define an autocomplete function as an end-point. 45 | """ 46 | params = request.args # parsed url args as a immutable multi-dict 47 | if params is None or params.get('term') is None: 48 | return json.dumps({"result": list()}) 49 | 50 | term = params.get('term') 51 | 52 | # make no distinction between empty string and a string of all spaces 53 | term = term.strip() 54 | 55 | redis_mgr.cache_search_history(term) 56 | 57 | # check autocomplete results from Redis first 58 | search_result = redis_mgr.get_search_results(term) 59 | logging.debug(f"the search result for {term} is: {search_result}") 60 | 61 | if not search_result: 62 | logging.debug("did not find result in cache") 63 | search_result = server.search(term) 64 | 65 | redis_mgr.cache_search_results(term, search_result) 66 | 67 | return json.dumps({"results": search_result}) 68 | 69 | 70 | if __name__ == '__main__': 71 | app.run(host='127.0.0.1', port=8080) 72 | -------------------------------------------------------------------------------- /src/spell.py: -------------------------------------------------------------------------------- 1 | """ 2 | Python3 variance for classic Spelling corrector by Peter Norvig 3 | 4 | Ref: http://norvig.com/spell-correct.html 5 | 6 | """ 7 | from collections import Counter 8 | import re 9 | import string 10 | 11 | 12 | class Spell: 13 | def __init__(self, file='data/big_text.txt'): 14 | text = open(file).read() 15 | self.words = re.findall(r'\w+', text) 16 | self.total_words = len(self.words) 17 | self.words = Counter(self.words) 18 | 19 | def probability(self, word): 20 | return self.words[word] / self.total_words 21 | 22 | @staticmethod 23 | def edit_one(word): 24 | """ Find all words that are One edit away from word""" 25 | letters = string.ascii_lowercase 26 | splits = [(word[:i], word[i:]) for i in range(len(word))] 27 | insertions = [left + c + right for left, right in splits for c in letters] 28 | deletions = [left + right[1:] for left, right in splits if right] 29 | transposes = [left + right[1] + right[0] + right[2:] for left, right in splits if len(right) > 1] 30 | replaces = [left + c + right[1:] for left, right in splits for c in letters] 31 | return set(insertions + deletions + transposes + replaces) 32 | 33 | @staticmethod 34 | def edit_two(word): 35 | """ Find all words that are Two edits away from word""" 36 | return set(edit2 for edit1 in Spell.edit_one(word) for edit2 in Spell.edit_one(edit1)) 37 | 38 | def known(self, words): 39 | """ 40 | Return a list of words which are in vocabulary 41 | :param words: set[str] 42 | :return: list[str] 43 | """ 44 | return [word for word in words if word in self.words] 45 | 46 | def candidates(self, word): 47 | return self.known([word]) or self.known(Spell.edit_one(word)) or self.known(Spell.edit_two(word)) or set(word) 48 | 49 | def correction(self, word): 50 | return max(self.candidates(word), key=self.probability) 51 | 52 | def most_likely_replacements(self, word, num_res=10): 53 | return sorted(self.candidates(word), key=self.probability)[:num_res] 54 | -------------------------------------------------------------------------------- /src/analytics.py: -------------------------------------------------------------------------------- 1 | """ 2 | Main module for usage pattern analysis. 3 | """ 4 | 5 | 6 | import re 7 | import csv 8 | import os 9 | from collections import defaultdict, Counter 10 | 11 | 12 | class Analyzer: 13 | """ 14 | Analyzer class for usage pattern analysis. 15 | 16 | """ 17 | def __init__(self): 18 | self.search_pattern = re.compile(r'(\S+)\s.* for (\S+)') 19 | self.log_file = 'logs/app_search_info.log' 20 | 21 | def log_processing(self, log=None): 22 | """ 23 | Analyze the log to get search statistics 24 | :param log: .log file 25 | :return: (defaultdict(Counter), Counter) 26 | """ 27 | if not log: 28 | log = self.log_file 29 | data = defaultdict(Counter) 30 | overall_data = Counter() 31 | with open(log, mode='rt') as log_file: 32 | for line in log_file: 33 | res = self.search_pattern.search(line) 34 | if res: 35 | date, word = res.group(1), res.group(2) 36 | data[date][word] += 1 37 | overall_data[word] += 1 38 | return data, overall_data 39 | 40 | def generate_csv(self, log=None, gen_csv_for_each_day=True): 41 | """ 42 | Generate one CSV file for overall search history and optionally generate one CSV for each date 43 | :param log: .log file 44 | :param gen_csv_for_each_day: True if generate one CSV file for each date 45 | :return: None 46 | """ 47 | data, overall_data = self.log_processing(log) 48 | 49 | if not os.path.exists("stats"): 50 | os.makedirs("stats") 51 | 52 | if gen_csv_for_each_day: 53 | for date in data: 54 | data_date = data[date] 55 | with open('stats/{} search results.csv'.format(date), mode='wt') as csv_file: 56 | csv_writer = csv.writer(csv_file) 57 | for word, count in data_date.items(): 58 | csv_writer.writerow((word, count)) 59 | 60 | with open('stats/up_to_date search results.csv', mode='wt') as file: 61 | csv_writer = csv.writer(file) 62 | for word, count in overall_data.items(): 63 | csv_writer.writerow((word, count)) 64 | 65 | 66 | if __name__ == '__main__': 67 | analyzer = Analyzer() 68 | analyzer.generate_csv(log=None) 69 | -------------------------------------------------------------------------------- /tests/test_apps.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | import re 3 | from src.server import Server 4 | 5 | 6 | @pytest.fixture(name='app') 7 | def get_app(): 8 | return Server(connect_to_db=False, testing=True) 9 | 10 | 11 | def test_representation_single_word(app): 12 | # Insert a word and test number of nodes in the Trie 13 | test_word = 'Doctor strange' 14 | app.search(test_word) 15 | p = re.compile(r'.*\s(\S+)\s\w+') 16 | assert int(p.search(str(app)).group(1)) == len(test_word) + 1 17 | 18 | 19 | lists = [ 20 | ( 21 | 'linux', 22 | 'linux', 23 | ), 24 | ( 25 | 'pneumonoultramicroscopicsilicovolcanoconiosis', 26 | 'pneumonoultramicroscopicsilicovolcanoconiosis', 27 | ), 28 | ( 29 | 'democracy', 30 | 'democracy', 31 | ), 32 | ( 33 | 'Beethoven-Symphony', 34 | 'Beethoven-Symphony', 35 | ), 36 | ] 37 | 38 | 39 | @pytest.mark.parametrize('input_str, expected', lists) 40 | def test_insert_single_word(app, input_str, expected): 41 | # Test if the last node on the path to the inserted is correct 42 | node = app._Server__insert(input_str, from_db=False) 43 | assert (node.prefix, node.isWord) == (expected, True) 44 | 45 | 46 | def test_search_empty_string(app): 47 | # Searching with empty string should resturn empty list 48 | term = '' 49 | app.search(term) 50 | app.update_top_results() 51 | assert len(app.search(term)) == 0 52 | 53 | 54 | def test_search_with_space(app): 55 | # After insert a space, should return an empty list 56 | app.search(' ') 57 | app.update_top_results() 58 | assert app.search(' ') == [] 59 | 60 | 61 | def test_search_query_single_word(app): 62 | # After insert via search and update, should return the word 63 | app.search('testing') 64 | app.update_top_results() 65 | res = app.search('testing') 66 | assert res == ['testing'] 67 | 68 | 69 | def test_search_query_sentence(app): 70 | # After insert via search and update, should return the query 71 | app.search('this is a cool test') 72 | app.update_top_results() 73 | res = app.search('this is a cool test') 74 | assert res == ['this is a cool test'] 75 | 76 | 77 | def test_delete_words(app): 78 | # Search multiple words and their prefixes. Delete words to check if prefixes intact. 79 | app.search('timing') 80 | app.search('tim') 81 | app.delete('timing') 82 | app.search('interesting') 83 | app.search('interest') 84 | app.delete('interesting') 85 | assert app.node_count == 12 86 | 87 | 88 | def test_serialization(app): 89 | # After search a term, perform path compression and then serialize the server 90 | app.search('time machine is here') 91 | Server.path_compression(app) 92 | expected = [['', '0', 'time_machine_is_here 1', '1'], 93 | ['time machine is here', '1', 'time_machine_is_here 1', '0'], 94 | ] 95 | assert app.server_serialization() == expected 96 | 97 | 98 | def test_server_reconstruction_similarity(app): 99 | app.search('simplicity is the ultimate sophistication') 100 | s = app.server_serialization() 101 | new_app = Server.server_deserialization(s, testing=True) 102 | assert new_app.server_serialization() == s 103 | -------------------------------------------------------------------------------- /src/advanced_server.py: -------------------------------------------------------------------------------- 1 | """ 2 | Use machine learning to assist spelling corrections. 3 | """ 4 | 5 | 6 | from . import server 7 | from . import spell 8 | from sklearn.neighbors import BallTree 9 | import numpy as np 10 | import json 11 | from os import path 12 | 13 | 14 | class AdvTrie(server.Server): 15 | """This class provides advanced functionality such as providing auto-corrections as suggestions.""" 16 | MAX_CORRECTIONS = 10 17 | NUM_CORRECTIONS_TO_INSERT = MAX_CORRECTIONS // 2 18 | MAX_BASIC_RESULTS = 15 19 | 20 | def __init__(self, num_corrections=10, num_basic_results=10, 21 | home_dir=".", 22 | embedding_json=None, 23 | vocab_int_json=None, *args, **kwargs): 24 | super().__init__(num_res_return=num_basic_results, *args, **kwargs) 25 | 26 | self.use_embedding = False 27 | 28 | if embedding_json and vocab_int_json: 29 | self.use_embedding = True 30 | embedding_json = path.join(home_dir, embedding_json) 31 | vocab_int_json = path.join(home_dir, vocab_int_json) 32 | # load json files 33 | print("Loading JSON files, may take a while.") 34 | with open(embedding_json, 'r') as read_file: 35 | self.embeddings = np.array(json.load(read_file)) 36 | with open(vocab_int_json, 'r') as read_file: 37 | self.vocab_int = json.load(read_file) 38 | self.int_vocab = {i: word for word, i in self.vocab_int.items()} 39 | 40 | # train k nearest neighbor model 41 | print("Training BallTree k-nearest neighbor searcher...") 42 | self.searcher = BallTree(self.embeddings, leaf_size=10) 43 | 44 | self.checker = spell.Spell() 45 | self.num_corrections = num_corrections 46 | self.num_basic_search_results = num_basic_results 47 | self.max_total_res = min(10, num_basic_results+num_corrections) 48 | 49 | print("Ready to use.") 50 | 51 | def _next_words(self, word): 52 | """ 53 | Given an input return the next most relevant words contextually. 54 | :param word: str 55 | :return: List[str] 56 | """ 57 | if not self.use_embedding or word not in self.vocab_int: 58 | return [] 59 | index = self.vocab_int[word] 60 | neighbors = self.searcher.query([self.embeddings[index]], k=10, return_distance=False) 61 | res = [] 62 | for neighbor in list(neighbors.flatten()): 63 | res.append(self.int_vocab[neighbor]) 64 | return res[1:] 65 | 66 | def search(self, search_term): 67 | """ 68 | This search method not only returns results from basic class count-based search, 69 | but also returns top phrases from Bayes predictions. 70 | :param search_term: same as in base class. 71 | :return: List[str] 72 | """ 73 | basic_results = super().search(search_term) 74 | corrections = [] 75 | next_words = None 76 | if len(search_term) > 0: 77 | target = search_term.split()[-1] 78 | corrections = self.checker.most_likely_replacements(target, self.num_corrections) 79 | next_words = self._next_words(target) 80 | self.insertLogger.debug('basic results are {}'.format(str(basic_results))) 81 | corrections = [word for word in corrections if word not in basic_results] 82 | next_words = [word for word in next_words if word not in basic_results and word not in corrections] 83 | 84 | for word in corrections[:AdvTrie.NUM_CORRECTIONS_TO_INSERT]: 85 | super().search(word) 86 | 87 | self.search_count += 1 88 | if self.search_count >= AdvTrie.server_update_frequency: 89 | self.search_count = 0 90 | self.update_top_results() 91 | 92 | return list(set(corrections + basic_results))[:self.max_total_res] + next_words[:2] 93 | 94 | @property 95 | def num_corrections(self): 96 | return self._num_corrections 97 | 98 | @num_corrections.setter 99 | def num_corrections(self, num_corrections): 100 | self._set_num_corrections(num_corrections) 101 | 102 | def _set_num_corrections(self, num_corrections): 103 | if num_corrections < 0: 104 | raise ValueError('Number of corrections cannot be negative') 105 | elif num_corrections > AdvTrie.MAX_CORRECTIONS: 106 | raise ValueError('Too many corrections.') 107 | self._num_corrections = num_corrections 108 | 109 | @property 110 | def num_basic_search_results(self): 111 | return self._num_basic_search_results 112 | 113 | @num_basic_search_results.setter 114 | def num_basic_search_results(self, num_results): 115 | self._set_num_basic_search_results(num_results) 116 | 117 | def _set_num_basic_search_results(self, num_results): 118 | if num_results < 0: 119 | raise ValueError('Number of basic results cannot be negative') 120 | elif num_results > AdvTrie.MAX_BASIC_RESULTS: 121 | raise ValueError('Too many basic results.') 122 | self._num_basic_search_results = num_results 123 | -------------------------------------------------------------------------------- /src/server.py: -------------------------------------------------------------------------------- 1 | """ 2 | Main module for auto-complete server 3 | """ 4 | from collections import deque, Counter 5 | import logging 6 | import logging.config 7 | import yaml 8 | import csv 9 | from typing import List 10 | 11 | # from nltk.corpus import words as en_corpus 12 | # from py2neo import Node 13 | from src.trienode import TrieNode 14 | from src.spell import Spell 15 | 16 | from . import database 17 | from src.errors import ReturnResultValueLessThanOne 18 | 19 | # type alias 20 | Word_list = List[str] 21 | Word_lists = List[Word_list] 22 | 23 | 24 | class Server: 25 | """Server class for auto-complete system 26 | 27 | This class defines application server for performing auto-complete functionality. 28 | The main API search(str) searches a term in server and returns top results to the user. 29 | New servers can be established from Neo4j database which stores search history. 30 | 31 | Attributes: 32 | Server.server_index: int 33 | index for the application server created 34 | Server.server_update_frequency: int 35 | frequency for controlling how often servers write to database 36 | """ 37 | 38 | server_index = 0 39 | server_update_frequency = 1 40 | 41 | def __init__(self, *, num_res_return: int = 10, root: TrieNode = None, connect_to_db: bool = True, 42 | testing: bool = False, node_count: int = 1): 43 | """ 44 | :param num_res_return: maximum number of results to return to user 45 | :param root: Trie node 46 | :param connect_to_db: True if server is connected to a database 47 | :param testing: True if server constructed in test scripts 48 | """ 49 | self.__class__.server_index += 1 50 | if connect_to_db: 51 | self.db = database.DatabaseHandler() 52 | # self._selector = self.db.graph.nodes # get node matcher 53 | 54 | if root is None: 55 | self.__root = TrieNode(prefix='', is_word=False) 56 | else: 57 | self.__root = root 58 | 59 | self.vocab = set() 60 | self.node_count = node_count 61 | self.search_count = 0 # tracking number of search before performing trie update 62 | 63 | self.testing = testing 64 | # displays at most 10 terms in history 65 | self.search_history = deque(maxlen=10) 66 | 67 | # Logging facilities 68 | if not testing: 69 | with open('logging.config', 'r') as f: 70 | config = yaml.safe_load(f) 71 | logging.config.dictConfig(config) 72 | self.logger = logging.getLogger('Trie_db') 73 | self.insertLogger = logging.getLogger('Trie_db.insert') 74 | 75 | with open('data/5000_most_freq_words.csv') as csv_file: 76 | words_reader = csv.reader(csv_file) 77 | for row in words_reader: 78 | _, _, word, freq, _ = row 79 | freq = int(freq) 80 | self.__insert(word, isword=True, count=freq, from_db=True) 81 | else: 82 | self.word_dictionary = set() 83 | 84 | self._num_res_return = num_res_return 85 | self.spell_checker = Spell() 86 | 87 | def __str__(self): 88 | return self.__repr__() 89 | 90 | def __repr__(self): 91 | return f"Trie application server with {self.node_count} nodes" 92 | 93 | def __len__(self): 94 | """ 95 | Return number of nodes in the Trie 96 | :return: int 97 | """ 98 | return self.node_count 99 | 100 | def __bool__(self): 101 | """ 102 | Return True if Trie is non-empty 103 | :return: bool 104 | """ 105 | return self.node_count > 1 106 | 107 | def __getitem__(self, item): 108 | return self.search(item) 109 | 110 | # accessor for num_res_return 111 | @property 112 | def num_res_return(self): 113 | return self._num_res_return 114 | 115 | @num_res_return.setter 116 | def num_res_return(self, val): 117 | self.__set_num_res_return(val) 118 | 119 | def __set_num_res_return(self, val): 120 | if val < 1: 121 | raise ReturnResultValueLessThanOne('should return at least 1 result.') 122 | self._num_res_return = val 123 | 124 | def app_reset(self): 125 | self.__init__() 126 | 127 | @classmethod 128 | def _get_num_server_instances(cls): 129 | return cls.server_index 130 | 131 | def top_results(self, num_results=10): 132 | res = self.__root.top_results.most_common(num_results) 133 | return [word for word, count in res] 134 | 135 | # def build_db(self): 136 | # """ 137 | # This method removes data from database and build new graph with in-memory data in application server. 138 | # :return: None 139 | # """ 140 | # self.db.graph.delete_all() # delete all existing nodes and relationships 141 | # queue = deque() 142 | # tx = self.db.graph.begin() 143 | # self.logger.info('Start updating database.') 144 | # node = Node('TrieNode', 'ROOT', 145 | # isword=False, 146 | # name='', 147 | # ) 148 | # node['count'] = self.__root.total_counts() 149 | # tx.create(node) # create root in neo4j 150 | # queue.append((node, self.__root)) 151 | # count = 0 152 | # 153 | # while queue: 154 | # db_node, cur = queue.popleft() 155 | # for child in cur.children: 156 | # prefix = cur.children[child].prefix 157 | # db_node_child = Node('TrieNode', 158 | # name=prefix, 159 | # isword=cur.children[child].isWord, 160 | # count=cur.children[child].total_counts() 161 | # ) 162 | # queue.append((db_node_child, cur.children[child])) 163 | # tx.create(db_node_child) 164 | # count += 1 165 | # tx.create(database.Parent(db_node, db_node_child)) 166 | # 167 | # tx.commit() 168 | # if not self.testing: 169 | # self.logger.info(f'Finished building database. Number of nodes created is {count}') 170 | # 171 | # if self.testing and tx.finished(): 172 | # self.logger.info('Transaction finished.') 173 | 174 | # def update_db(self): 175 | # """ 176 | # Update database with the latest application server usage 177 | # :return: None 178 | # """ 179 | # root = self.__root 180 | # g = self.db.graph 181 | # 182 | # def dfs(node, parent): 183 | # """update node info to database""" 184 | # if not node: 185 | # return 186 | # db_node = self._selector.match('TrieNode', name=node.prefix).first() 187 | # if not db_node: 188 | # tx = g.begin() 189 | # db_node = Node('TrieNode', 190 | # name=node.prefix, 191 | # isword=node.isWord, 192 | # count=node.total_counts()) 193 | # tx.create(db_node) 194 | # parent_db_node = self._selector.match('TrieNode', name=parent.prefix).first() 195 | # tx.create(database.Parent(parent_db_node, db_node)) 196 | # tx.commit() 197 | # else: 198 | # db_node['count'] = node.total_counts() 199 | # g.push(db_node) 200 | # for child in node.children: 201 | # dfs(node.children[child], node) 202 | # 203 | # dfs(root, None) 204 | 205 | # def build_trie(self): 206 | # """ 207 | # This method builds trie server with TrieNode-labeled nodes from the database. 208 | # Improves run-time by only inserting complete words. 209 | # :return: None 210 | # """ 211 | # self.app_reset() 212 | # root = self._selector.match('ROOT').first() 213 | # graph = self.db.graph 214 | # 215 | # def dfs(node): 216 | # prefix, isword, count = node['name'], node['isword'], node['count'] 217 | # if isword: 218 | # self.__insert(prefix, isword=True, from_db=True, count=count) 219 | # # find all parent-children relationships 220 | # for rel in graph.match(nodes=[node], r_type=database.Parent): 221 | # if rel is not None: 222 | # dfs(rel.nodes[1]) 223 | # 224 | # dfs(root) 225 | # self.update_top_results() 226 | 227 | def __insert(self, word: str, *, isword: bool = True, count: int = 0, from_db: bool = False) -> TrieNode: 228 | """ 229 | This method inserts a word into the trie. This method should be hidden from user. 230 | Only method build_trie() and search() should call this method. So we make it internal. 231 | :param word: str 232 | :param isword: bool 233 | :param count: number of times word is searched 234 | :param from_db: True if the method is called by build_trie() 235 | :return: Trie node which correspond to the word inserted 236 | """ 237 | cur = self.__root 238 | 239 | for char in word: 240 | if char not in cur.children: 241 | self.node_count += 1 242 | cur.children[char] = TrieNode(prefix=cur.prefix + char, parent=cur) 243 | cur = cur.children[char] 244 | 245 | cur.isWord = isword 246 | 247 | if from_db: 248 | cur.count = 0 249 | cur.set_total_counts(count) 250 | else: 251 | cur.count += 1 252 | 253 | if not self.testing: 254 | self.insertLogger.debug(f'Insert used for {word}') 255 | 256 | return cur 257 | 258 | def delete(self, term): 259 | """ 260 | Search the specified term and delete the node if found. 261 | Also delete nodes in the subtree. 262 | :param term: str 263 | :return: None 264 | """ 265 | target_node = self.__root 266 | for letter in term: 267 | if letter not in target_node.children: 268 | return 269 | target_node = target_node.children[letter] 270 | 271 | # if target node is not a word, meaning that the term does not exist 272 | if not target_node.isWord: 273 | return 274 | 275 | words_to_del, total_deleted = Server.__delete_helper(target_node) 276 | 277 | self.node_count -= total_deleted 278 | 279 | # delete subtree rooted at the node contains the term 280 | last_letter = term[-1] 281 | target_node.parent.children.pop(last_letter) 282 | 283 | # delete parent nodes that do not contain whole term 284 | start_node = target_node.parent 285 | while start_node and start_node.parent and not start_node.isWord: 286 | last_letter = start_node.prefix[-1] 287 | start_node.parent.children.pop(last_letter) 288 | self.node_count -= 1 289 | start_node = start_node.parent 290 | 291 | # remove all deleted terms from the top results of parent nodes of the target node 292 | while start_node: 293 | for word in words_to_del: 294 | start_node.top_results.pop(word, None) 295 | start_node = start_node.parent 296 | 297 | @staticmethod 298 | def __delete_helper(node): 299 | """ 300 | Breadth-first search to find all children nodes that are words 301 | :param node: TrieNode 302 | root of subtree 303 | :return: set(str), int 304 | terms delete and total number of nodes deleted 305 | """ 306 | q = deque([node]) 307 | res = set() 308 | node_count = 0 309 | while q: 310 | cur = q.popleft() 311 | node_count += 1 312 | if cur.isWord: 313 | res.add(cur.prefix) 314 | for _, child in cur.children.items(): 315 | q.append(child) 316 | return res, node_count 317 | 318 | def search(self, search_term: str) -> Word_list: 319 | """ 320 | API for clients to get a list of top suggestions. 321 | The input may be a sentence, with words separated by space. 322 | Search top results for entire sentence may not make sense. 323 | Current design returns top results only based on last word in a sentence. 324 | :param search_term: str 325 | :return: List[str] 326 | """ 327 | if not isinstance(search_term, str): 328 | raise TypeError("{} is not a string".format(search_term)) 329 | 330 | # most recently searched at the leftmost 331 | self.search_history.appendleft(search_term) 332 | _words = search_term.lower().split() 333 | if len(_words) == 0: 334 | return [] 335 | 336 | _word_lists = [] 337 | for word in _words: 338 | # The replacement takes care of cases of both valid and invalid words 339 | replacements = self.spell_checker.most_likely_replacements(word, num_res=2) 340 | _word_lists.append(replacements) 341 | 342 | replacement_list = [] 343 | Server.__search_helper(_word_lists, 0, [], replacement_list) 344 | 345 | result = [] 346 | candidates = [] 347 | for words in replacement_list: 348 | last_node = self.__insert(' '.join(words), from_db=False) 349 | candidates.append(last_node) 350 | self.search_count += 1 351 | 352 | if self.search_count >= Server.server_update_frequency: 353 | self.search_count = 0 354 | self.update_top_results() 355 | 356 | for node in candidates: 357 | result.extend(node.top_results.most_common(self.num_res_return)) 358 | 359 | res = [word_freq[0] for word_freq in sorted(result, key=lambda x: x[1])] 360 | return res[:self.num_res_return] 361 | 362 | @staticmethod 363 | def __search_helper(words: Word_list, idx: int, path: Word_list, res: Word_lists): 364 | if idx == len(words): 365 | res.append(list(path)) 366 | return 367 | for word in words[idx]: 368 | path.append(word) 369 | Server.__search_helper(words, idx + 1, path, res) 370 | path.pop() 371 | 372 | def update_top_results(self): 373 | """ 374 | This method builds top suggestion results from bottom up. 375 | :return: None 376 | """ 377 | 378 | def dfs(node): 379 | if len(node.children) == 0: 380 | Server.update_parent_new(node, Counter()) 381 | return 382 | for child in node.children: 383 | dfs(node.children[child]) 384 | 385 | dfs(self.__root) 386 | 387 | @staticmethod 388 | def update_parent_new(node, d): 389 | if node.isWord: 390 | d[node.prefix] = node.count 391 | node.count = 0 392 | # temp = node.total_counts() 393 | node.top_results.update(d) 394 | # node.set_total_counts(temp) 395 | if node.parent: 396 | Server.update_parent_new(node.parent, d) 397 | 398 | @classmethod 399 | def path_compression(cls, server): 400 | """ 401 | Compress redundant paths by finding nodes having single child node 402 | :param server: Server 403 | :return: None 404 | """ 405 | root = server.__root 406 | for _, node in root.children.items(): 407 | Server.__compress(node) 408 | 409 | @staticmethod 410 | def __combine(parent): 411 | for _, node in parent.children.items(): 412 | parent.prefix = node.prefix 413 | parent.children = node.children 414 | parent.isWord = node.isWord 415 | return parent 416 | 417 | @staticmethod 418 | def __compress(node): 419 | if len(node.children) == 0: 420 | return 421 | while not node.isWord and len(node.children) == 1: 422 | node = Server.__combine(node) 423 | for _, child_node in node.children.items(): 424 | Server.__compress(child_node) 425 | 426 | @staticmethod 427 | def __counter_serialization(cnt, num_results_to_serialize=10): 428 | """ 429 | Serialize top 10 results from counter to string 430 | :param cnt: collections.Counter 431 | :param num_results_to_serialize: number of top results to serialize 432 | :return: str 433 | """ 434 | top_res = cnt.most_common(num_results_to_serialize) 435 | res = [] 436 | for term, cnt in top_res: 437 | term = '_'.join(term.split()) 438 | res.extend([term, str(cnt)]) 439 | return " ".join(res) 440 | 441 | @staticmethod 442 | def __counter_deserialization(s): 443 | """ 444 | Convert serialized Counter to object 445 | :param s: str 446 | :return: collections.Counter 447 | """ 448 | counts = s.split() 449 | idx = 0 450 | counter = Counter() 451 | while idx < len(counts): 452 | term = ' '.join(counts[idx].split('_')) 453 | counter[term] = int(counts[idx + 1]) 454 | idx += 2 455 | return counter 456 | 457 | def server_serialization(self, num_results_to_serialize=10): 458 | """ 459 | Serialize the trie server. 460 | Records information such as prefix, isWord, number of child nodes and serialized top results. 461 | The purpose of this function is for rebuilding Trie in case of server failure. 462 | :return: List[List[str]] 463 | """ 464 | 465 | def dfs(node): 466 | nonlocal data 467 | if node is None: 468 | return 469 | top_results = Server.__counter_serialization( 470 | node.top_results, 471 | num_results_to_serialize=num_results_to_serialize, 472 | ) 473 | isword = '1' if node.isWord else '0' 474 | data.append([node.prefix, isword, top_results, str(len(node.children))]) 475 | for child in node.children: 476 | dfs(node.children[child]) 477 | 478 | data = [] 479 | dfs(self.__root) 480 | return data 481 | 482 | @staticmethod 483 | def server_deserialization(s, connect_to_db=False, testing=False): 484 | """ 485 | Trie server deserialization 486 | :param s: List[List[str]], serialized Trie server 487 | :param connect_to_db: True if connect to database 488 | :param testing: True if in testing mode 489 | :return: Server 490 | """ 491 | node_count = 0 492 | 493 | def build_trie(node, num_children, index): 494 | nonlocal root, node_count 495 | if num_children == 0: 496 | return index 497 | for _ in range(num_children): 498 | _prefix, _isword, _top_results, _num_children_str = s[index] 499 | # create new TrieNode 500 | _isword = True if _isword == '1' else False 501 | _top_results = Server.__counter_deserialization(_top_results) 502 | new_node = TrieNode(prefix=_prefix, is_word=_isword) 503 | new_node.top_results = _top_results 504 | new_node.parent = node 505 | if node: 506 | node.children[_prefix[-1]] = new_node 507 | if index == 0: 508 | root = new_node 509 | node_count += 1 510 | index = build_trie(new_node, int(_num_children_str), index + 1) 511 | return index 512 | 513 | root = None 514 | build_trie(None, 1, 0) 515 | return Server(root=root, connect_to_db=connect_to_db, testing=testing, node_count=node_count) 516 | -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "hash": { 4 | "sha256": "ddf242e6e839b74cae531bf95bac6c365edde8f5ffb5cd2d949622ec92702b54" 5 | }, 6 | "pipfile-spec": 6, 7 | "requires": {}, 8 | "sources": [ 9 | { 10 | "name": "pypi", 11 | "url": "https://pypi.org/simple", 12 | "verify_ssl": true 13 | } 14 | ] 15 | }, 16 | "default": { 17 | "blinker": { 18 | "hashes": [ 19 | "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf", 20 | "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc" 21 | ], 22 | "markers": "python_version >= '3.9'", 23 | "version": "==1.9.0" 24 | }, 25 | "click": { 26 | "hashes": [ 27 | "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", 28 | "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" 29 | ], 30 | "markers": "python_version >= '3.7'", 31 | "version": "==8.1.8" 32 | }, 33 | "flask": { 34 | "hashes": [ 35 | "sha256:3232e0e9c850d781933cf0207523d1ece087eb8d87b23777ae38456e2fbe7c6e", 36 | "sha256:822c03f4b799204250a7ee84b1eddc40665395333973dfb9deebfe425fefcb7d" 37 | ], 38 | "index": "pypi", 39 | "markers": "python_version >= '3.8'", 40 | "version": "==3.0.2" 41 | }, 42 | "iniconfig": { 43 | "hashes": [ 44 | "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", 45 | "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374" 46 | ], 47 | "markers": "python_version >= '3.7'", 48 | "version": "==2.0.0" 49 | }, 50 | "itsdangerous": { 51 | "hashes": [ 52 | "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", 53 | "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173" 54 | ], 55 | "markers": "python_version >= '3.8'", 56 | "version": "==2.2.0" 57 | }, 58 | "jinja2": { 59 | "hashes": [ 60 | "sha256:8fefff8dc3034e27bb80d67c671eb8a9bc424c0ef4c0826edbff304cceff43bb", 61 | "sha256:aba0f4dc9ed8013c424088f68a5c226f7d6097ed89b246d7749c2ec4175c6adb" 62 | ], 63 | "markers": "python_version >= '3.7'", 64 | "version": "==3.1.5" 65 | }, 66 | "joblib": { 67 | "hashes": [ 68 | "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6", 69 | "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e" 70 | ], 71 | "markers": "python_version >= '3.8'", 72 | "version": "==1.4.2" 73 | }, 74 | "markupsafe": { 75 | "hashes": [ 76 | "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", 77 | "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", 78 | "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0", 79 | "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", 80 | "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", 81 | "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13", 82 | "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", 83 | "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", 84 | "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", 85 | "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", 86 | "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0", 87 | "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b", 88 | "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579", 89 | "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", 90 | "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", 91 | "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff", 92 | "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", 93 | "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", 94 | "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", 95 | "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb", 96 | "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", 97 | "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", 98 | "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a", 99 | "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", 100 | "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a", 101 | "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", 102 | "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8", 103 | "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", 104 | "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", 105 | "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144", 106 | "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f", 107 | "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", 108 | "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", 109 | "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", 110 | "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", 111 | "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158", 112 | "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", 113 | "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", 114 | "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", 115 | "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171", 116 | "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", 117 | "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", 118 | "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", 119 | "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d", 120 | "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", 121 | "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", 122 | "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", 123 | "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", 124 | "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29", 125 | "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", 126 | "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", 127 | "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c", 128 | "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", 129 | "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", 130 | "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", 131 | "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a", 132 | "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178", 133 | "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", 134 | "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", 135 | "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", 136 | "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50" 137 | ], 138 | "markers": "python_version >= '3.9'", 139 | "version": "==3.0.2" 140 | }, 141 | "numpy": { 142 | "hashes": [ 143 | "sha256:059e6a747ae84fce488c3ee397cee7e5f905fd1bda5fb18c66bc41807ff119b2", 144 | "sha256:08ef779aed40dbc52729d6ffe7dd51df85796a702afbf68a4f4e41fafdc8bda5", 145 | "sha256:164a829b6aacf79ca47ba4814b130c4020b202522a93d7bff2202bfb33b61c60", 146 | "sha256:26c9c4382b19fcfbbed3238a14abf7ff223890ea1936b8890f058e7ba35e8d71", 147 | "sha256:27f5cdf9f493b35f7e41e8368e7d7b4bbafaf9660cba53fb21d2cd174ec09631", 148 | "sha256:31b89fa67a8042e96715c68e071a1200c4e172f93b0fbe01a14c0ff3ff820fc8", 149 | "sha256:32cb94448be47c500d2c7a95f93e2f21a01f1fd05dd2beea1ccd049bb6001cd2", 150 | "sha256:360137f8fb1b753c5cde3ac388597ad680eccbbbb3865ab65efea062c4a1fd16", 151 | "sha256:3683a8d166f2692664262fd4900f207791d005fb088d7fdb973cc8d663626faa", 152 | "sha256:38efc1e56b73cc9b182fe55e56e63b044dd26a72128fd2fbd502f75555d92591", 153 | "sha256:3d03883435a19794e41f147612a77a8f56d4e52822337844fff3d4040a142964", 154 | "sha256:3ecc47cd7f6ea0336042be87d9e7da378e5c7e9b3c8ad0f7c966f714fc10d821", 155 | "sha256:40f9e544c1c56ba8f1cf7686a8c9b5bb249e665d40d626a23899ba6d5d9e1484", 156 | "sha256:4250888bcb96617e00bfa28ac24850a83c9f3a16db471eca2ee1f1714df0f957", 157 | "sha256:4511d9e6071452b944207c8ce46ad2f897307910b402ea5fa975da32e0102800", 158 | "sha256:45681fd7128c8ad1c379f0ca0776a8b0c6583d2f69889ddac01559dfe4390918", 159 | "sha256:48fd472630715e1c1c89bf1feab55c29098cb403cc184b4859f9c86d4fcb6a95", 160 | "sha256:4c86e2a209199ead7ee0af65e1d9992d1dce7e1f63c4b9a616500f93820658d0", 161 | "sha256:4dfda918a13cc4f81e9118dea249e192ab167a0bb1966272d5503e39234d694e", 162 | "sha256:5062dc1a4e32a10dc2b8b13cedd58988261416e811c1dc4dbdea4f57eea61b0d", 163 | "sha256:51faf345324db860b515d3f364eaa93d0e0551a88d6218a7d61286554d190d73", 164 | "sha256:526fc406ab991a340744aad7e25251dd47a6720a685fa3331e5c59fef5282a59", 165 | "sha256:53c09385ff0b72ba79d8715683c1168c12e0b6e84fb0372e97553d1ea91efe51", 166 | "sha256:55ba24ebe208344aa7a00e4482f65742969a039c2acfcb910bc6fcd776eb4355", 167 | "sha256:5b6c390bfaef8c45a260554888966618328d30e72173697e5cabe6b285fb2348", 168 | "sha256:5c5cc0cbabe9452038ed984d05ac87910f89370b9242371bd9079cb4af61811e", 169 | "sha256:5edb4e4caf751c1518e6a26a83501fda79bff41cc59dac48d70e6d65d4ec4440", 170 | "sha256:61048b4a49b1c93fe13426e04e04fdf5a03f456616f6e98c7576144677598675", 171 | "sha256:676f4eebf6b2d430300f1f4f4c2461685f8269f94c89698d832cdf9277f30b84", 172 | "sha256:67d4cda6fa6ffa073b08c8372aa5fa767ceb10c9a0587c707505a6d426f4e046", 173 | "sha256:694f9e921a0c8f252980e85bce61ebbd07ed2b7d4fa72d0e4246f2f8aa6642ab", 174 | "sha256:733585f9f4b62e9b3528dd1070ec4f52b8acf64215b60a845fa13ebd73cd0712", 175 | "sha256:7671dc19c7019103ca44e8d94917eba8534c76133523ca8406822efdd19c9308", 176 | "sha256:780077d95eafc2ccc3ced969db22377b3864e5b9a0ea5eb347cc93b3ea900315", 177 | "sha256:7ba9cc93a91d86365a5d270dee221fdc04fb68d7478e6bf6af650de78a8339e3", 178 | "sha256:89b16a18e7bba224ce5114db863e7029803c179979e1af6ad6a6b11f70545008", 179 | "sha256:9036d6365d13b6cbe8f27a0eaf73ddcc070cae584e5ff94bb45e3e9d729feab5", 180 | "sha256:93cf4e045bae74c90ca833cba583c14b62cb4ba2cba0abd2b141ab52548247e2", 181 | "sha256:9ad014faa93dbb52c80d8f4d3dcf855865c876c9660cb9bd7553843dd03a4b1e", 182 | "sha256:9b1d07b53b78bf84a96898c1bc139ad7f10fda7423f5fd158fd0f47ec5e01ac7", 183 | "sha256:a7746f235c47abc72b102d3bce9977714c2444bdfaea7888d241b4c4bb6a78bf", 184 | "sha256:aa3017c40d513ccac9621a2364f939d39e550c542eb2a894b4c8da92b38896ab", 185 | "sha256:b34d87e8a3090ea626003f87f9392b3929a7bbf4104a05b6667348b6bd4bf1cd", 186 | "sha256:b541032178a718c165a49638d28272b771053f628382d5e9d1c93df23ff58dbf", 187 | "sha256:ba5511d8f31c033a5fcbda22dd5c813630af98c70b2661f2d2c654ae3cdfcfc8", 188 | "sha256:bc8a37ad5b22c08e2dbd27df2b3ef7e5c0864235805b1e718a235bcb200cf1cb", 189 | "sha256:bff7d8ec20f5f42607599f9994770fa65d76edca264a87b5e4ea5629bce12268", 190 | "sha256:c1ad395cf254c4fbb5b2132fee391f361a6e8c1adbd28f2cd8e79308a615fe9d", 191 | "sha256:f1d09e520217618e76396377c81fba6f290d5f926f50c35f3a5f72b01a0da780", 192 | "sha256:f3eac17d9ec51be534685ba877b6ab5edc3ab7ec95c8f163e5d7b39859524716", 193 | "sha256:f419290bc8968a46c4933158c91a0012b7a99bb2e465d5ef5293879742f8797e", 194 | "sha256:f62aa6ee4eb43b024b0e5a01cf65a0bb078ef8c395e8713c6e8a12a697144528", 195 | "sha256:f74e6fdeb9a265624ec3a3918430205dff1df7e95a230779746a6af78bc615af", 196 | "sha256:f9b57eaa3b0cd8db52049ed0330747b0364e899e8a606a624813452b8203d5f7", 197 | "sha256:fce4f615f8ca31b2e61aa0eb5865a21e14f5629515c9151850aa936c02a1ee51" 198 | ], 199 | "index": "pypi", 200 | "markers": "python_version >= '3.10'", 201 | "version": "==2.2.1" 202 | }, 203 | "packaging": { 204 | "hashes": [ 205 | "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", 206 | "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" 207 | ], 208 | "markers": "python_version >= '3.8'", 209 | "version": "==24.2" 210 | }, 211 | "pluggy": { 212 | "hashes": [ 213 | "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", 214 | "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669" 215 | ], 216 | "markers": "python_version >= '3.8'", 217 | "version": "==1.5.0" 218 | }, 219 | "pytest": { 220 | "hashes": [ 221 | "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6", 222 | "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761" 223 | ], 224 | "index": "pypi", 225 | "markers": "python_version >= '3.8'", 226 | "version": "==8.3.4" 227 | }, 228 | "pyyaml": { 229 | "hashes": [ 230 | "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff", 231 | "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", 232 | "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", 233 | "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e", 234 | "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", 235 | "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", 236 | "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", 237 | "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", 238 | "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", 239 | "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", 240 | "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a", 241 | "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", 242 | "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", 243 | "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8", 244 | "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", 245 | "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19", 246 | "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", 247 | "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a", 248 | "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", 249 | "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", 250 | "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", 251 | "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631", 252 | "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d", 253 | "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", 254 | "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", 255 | "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", 256 | "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", 257 | "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", 258 | "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", 259 | "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706", 260 | "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", 261 | "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", 262 | "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", 263 | "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083", 264 | "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", 265 | "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", 266 | "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", 267 | "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f", 268 | "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725", 269 | "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", 270 | "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", 271 | "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", 272 | "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", 273 | "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", 274 | "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5", 275 | "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d", 276 | "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290", 277 | "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", 278 | "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", 279 | "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", 280 | "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", 281 | "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12", 282 | "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4" 283 | ], 284 | "index": "pypi", 285 | "markers": "python_version >= '3.8'", 286 | "version": "==6.0.2" 287 | }, 288 | "redis": { 289 | "hashes": [ 290 | "sha256:16f2e22dff21d5125e8481515e386711a34cbec50f0e44413dd7d9c060a54e0f", 291 | "sha256:ee7e1056b9aea0f04c6c2ed59452947f34c4940ee025f5dd83e6a6418b6989e4" 292 | ], 293 | "index": "pypi", 294 | "markers": "python_version >= '3.8'", 295 | "version": "==5.2.1" 296 | }, 297 | "scikit-learn": { 298 | "hashes": [ 299 | "sha256:04a5ba45c12a5ff81518aa4f1604e826a45d20e53da47b15871526cda4ff5174", 300 | "sha256:0baa91eeb8c32632628874a5c91885eaedd23b71504d24227925080da075837a", 301 | "sha256:1dad624cffe3062276a0881d4e441bc9e3b19d02d17757cd6ae79a9d192a0027", 302 | "sha256:1f50b4f24cf12a81c3c09958ae3b864d7534934ca66ded3822de4996d25d7285", 303 | "sha256:21fadfc2ad7a1ce8bd1d90f23d17875b84ec765eecbbfc924ff11fb73db582ce", 304 | "sha256:2fce7950a3fad85e0a61dc403df0f9345b53432ac0e47c50da210d22c60b6d85", 305 | "sha256:30f34bb5fde90e020653bb84dcb38b6c83f90c70680dbd8c38bd9becbad7a127", 306 | "sha256:34e20bfac8ff0ebe0ff20fb16a4d6df5dc4cc9ce383e00c2ab67a526a3c67b18", 307 | "sha256:366fb3fa47dce90afed3d6106183f4978d6f24cfd595c2373424171b915ee718", 308 | "sha256:3c716d13ba0a2f8762d96ff78d3e0cde90bc9c9b5c13d6ab6bb9b2d6ca6705fd", 309 | "sha256:59cd96a8d9f8dfd546f5d6e9787e1b989e981388d7803abbc9efdcde61e47460", 310 | "sha256:5be4577769c5dde6e1b53de8e6520f9b664ab5861dd57acee47ad119fd7405d6", 311 | "sha256:5c3fa7d3dd5a0ec2d0baba0d644916fa2ab180ee37850c5d536245df916946bd", 312 | "sha256:5fe11794236fb83bead2af26a87ced5d26e3370b8487430818b915dafab1724e", 313 | "sha256:61fe3dcec0d82ae280877a818ab652f4988371e32dd5451e75251bece79668b1", 314 | "sha256:66b1cf721a9f07f518eb545098226796c399c64abdcbf91c2b95d625068363da", 315 | "sha256:7b35b60cf4cd6564b636e4a40516b3c61a4fa7a8b1f7a3ce80c38ebe04750bc3", 316 | "sha256:98717d3c152f6842d36a70f21e1468fb2f1a2f8f2624d9a3f382211798516426", 317 | "sha256:9aafd94bafc841b626681e626be27bf1233d5a0f20f0a6fdb4bee1a1963c6643", 318 | "sha256:9d58481f9f7499dff4196927aedd4285a0baec8caa3790efbe205f13de37dd6e", 319 | "sha256:a17860a562bac54384454d40b3f6155200c1c737c9399e6a97962c63fce503ac", 320 | "sha256:a46d3ca0f11a540b8eaddaf5e38172d8cd65a86cb3e3632161ec96c0cffb774c", 321 | "sha256:a73b1c2038c93bc7f4bf21f6c9828d5116c5d2268f7a20cfbbd41d3074d52083", 322 | "sha256:b44e3a51e181933bdf9a4953cc69c6025b40d2b49e238233f149b98849beb4bf", 323 | "sha256:b6916d1cec1ff163c7d281e699d7a6a709da2f2c5ec7b10547e08cc788ddd3ae", 324 | "sha256:df778486a32518cda33818b7e3ce48c78cef1d5f640a6bc9d97c6d2e71449a51", 325 | "sha256:e5453b2e87ef8accedc5a8a4e6709f887ca01896cd7cc8a174fe39bd4bb00aef", 326 | "sha256:eb9ae21f387826da14b0b9cb1034f5048ddb9182da429c689f5f4a87dc96930b", 327 | "sha256:eba06d75815406091419e06dd650b91ebd1c5f836392a0d833ff36447c2b1bfa", 328 | "sha256:efa7a579606c73a0b3d210e33ea410ea9e1af7933fe324cb7e6fbafae4ea5948" 329 | ], 330 | "index": "pypi", 331 | "markers": "python_version >= '3.9'", 332 | "version": "==1.6.0" 333 | }, 334 | "scipy": { 335 | "hashes": [ 336 | "sha256:0e5b34f8894f9904cc578008d1a9467829c1817e9f9cb45e6d6eeb61d2ab7731", 337 | "sha256:0fcb16eb04d84670722ce8d93b05257df471704c913cb0ff9dc5a1c31d1e9422", 338 | "sha256:129f899ed275c0515d553b8d31696924e2ca87d1972421e46c376b9eb87de3d2", 339 | "sha256:161f80a98047c219c257bf5ce1777c574bde36b9d962a46b20d0d7e531f86863", 340 | "sha256:1b29e4fc02e155a5fd1165f1e6a73edfdd110470736b0f48bcbe48083f0eee37", 341 | "sha256:1e2448acd79c6374583581a1ded32ac71a00c2b9c62dfa87a40e1dd2520be111", 342 | "sha256:2240e1fd0782e62e1aacdc7234212ee271d810f67e9cd3b8d521003a82603ef8", 343 | "sha256:300742e2cc94e36a2880ebe464a1c8b4352a7b0f3e36ec3d2ac006cdbe0219ac", 344 | "sha256:327163ad73e54541a675240708244644294cb0a65cca420c9c79baeb9648e479", 345 | "sha256:351899dd2a801edd3691622172bc8ea01064b1cada794f8641b89a7dc5418db6", 346 | "sha256:35c68f7044b4e7ad73a3e68e513dda946989e523df9b062bd3cf401a1a882192", 347 | "sha256:36be480e512d38db67f377add5b759fb117edd987f4791cdf58e59b26962bee4", 348 | "sha256:37ce9394cdcd7c5f437583fc6ef91bd290014993900643fdfc7af9b052d1613b", 349 | "sha256:46e91b5b16909ff79224b56e19cbad65ca500b3afda69225820aa3afbf9ec020", 350 | "sha256:4e08c6a36f46abaedf765dd2dfcd3698fa4bd7e311a9abb2d80e33d9b2d72c34", 351 | "sha256:52475011be29dfcbecc3dfe3060e471ac5155d72e9233e8d5616b84e2b542054", 352 | "sha256:5972e3f96f7dda4fd3bb85906a17338e65eaddfe47f750e240f22b331c08858e", 353 | "sha256:5abbdc6ede5c5fed7910cf406a948e2c0869231c0db091593a6b2fa78be77e5d", 354 | "sha256:5beb0a2200372b7416ec73fdae94fe81a6e85e44eb49c35a11ac356d2b8eccc6", 355 | "sha256:61513b989ee8d5218fbeb178b2d51534ecaddba050db949ae99eeb3d12f6825d", 356 | "sha256:6d26f17c64abd6c6c2dfb39920f61518cc9e213d034b45b2380e32ba78fde4c0", 357 | "sha256:6f376d7c767731477bac25a85d0118efdc94a572c6b60decb1ee48bf2391a73b", 358 | "sha256:767e8cf6562931f8312f4faa7ddea412cb783d8df49e62c44d00d89f41f9bbe8", 359 | "sha256:82bff2eb01ccf7cea8b6ee5274c2dbeadfdac97919da308ee6d8e5bcbe846443", 360 | "sha256:952d2e9eaa787f0a9e95b6e85da3654791b57a156c3e6609e65cc5176ccfe6f2", 361 | "sha256:9c8254fe21dd2c6c8f7757035ec0c31daecf3bb3cffd93bc1ca661b731d28136", 362 | "sha256:aeac60d3562a7bf2f35549bdfdb6b1751c50590f55ce7322b4b2fc821dc27fca", 363 | "sha256:b1432102254b6dc7766d081fa92df87832ac25ff0b3d3a940f37276e63eb74ff", 364 | "sha256:bdca4c7bb8dc41307e5f39e9e5d19c707d8e20a29845e7533b3bb20a9d4ccba0", 365 | "sha256:c9624eeae79b18cab1a31944b5ef87aa14b125d6ab69b71db22f0dbd962caf1e", 366 | "sha256:ccb6248a9987193fe74363a2d73b93bc2c546e0728bd786050b7aef6e17db03c", 367 | "sha256:cd9d9198a7fd9a77f0eb5105ea9734df26f41faeb2a88a0e62e5245506f7b6df", 368 | "sha256:d13bbc0658c11f3d19df4138336e4bce2c4fbd78c2755be4bf7b8e235481557f", 369 | "sha256:d35aef233b098e4de88b1eac29f0df378278e7e250a915766786b773309137c4", 370 | "sha256:de112c2dae53107cfeaf65101419662ac0a54e9a088c17958b51c95dac5de56d", 371 | "sha256:e9baff912ea4f78a543d183ed6f5b3bea9784509b948227daaf6f10727a0e2e5", 372 | "sha256:eb1533c59f0ec6c55871206f15a5c72d1fae7ad3c0a8ca33ca88f7c309bbbf8c", 373 | "sha256:ec915cd26d76f6fc7ae8522f74f5b2accf39546f341c771bb2297f3871934a52", 374 | "sha256:fde0f3104dfa1dfbc1f230f65506532d0558d43188789eaf68f97e106249a913", 375 | "sha256:fe00169cf875bed0b3c40e4da45b57037dc21d7c7bf0c85ed75f210c281488f1" 376 | ], 377 | "markers": "python_version >= '3.10'", 378 | "version": "==1.15.0" 379 | }, 380 | "threadpoolctl": { 381 | "hashes": [ 382 | "sha256:082433502dd922bf738de0d8bcc4fdcbf0979ff44c42bd40f5af8a282f6fa107", 383 | "sha256:56c1e26c150397e58c4926da8eeee87533b1e32bef131bd4bf6a2f45f3185467" 384 | ], 385 | "markers": "python_version >= '3.8'", 386 | "version": "==3.5.0" 387 | }, 388 | "werkzeug": { 389 | "hashes": [ 390 | "sha256:54b78bf3716d19a65be4fceccc0d1d7b89e608834989dfae50ea87564639213e", 391 | "sha256:60723ce945c19328679790e3282cc758aa4a6040e4bb330f53d30fa546d44746" 392 | ], 393 | "markers": "python_version >= '3.9'", 394 | "version": "==3.1.3" 395 | } 396 | }, 397 | "develop": { 398 | "exceptiongroup": { 399 | "hashes": [ 400 | "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", 401 | "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc" 402 | ], 403 | "index": "pypi", 404 | "markers": "python_version >= '3.7'", 405 | "version": "==1.2.2" 406 | }, 407 | "iniconfig": { 408 | "hashes": [ 409 | "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", 410 | "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374" 411 | ], 412 | "markers": "python_version >= '3.7'", 413 | "version": "==2.0.0" 414 | }, 415 | "packaging": { 416 | "hashes": [ 417 | "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", 418 | "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" 419 | ], 420 | "markers": "python_version >= '3.8'", 421 | "version": "==24.2" 422 | }, 423 | "pluggy": { 424 | "hashes": [ 425 | "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", 426 | "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669" 427 | ], 428 | "markers": "python_version >= '3.8'", 429 | "version": "==1.5.0" 430 | }, 431 | "pytest": { 432 | "hashes": [ 433 | "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6", 434 | "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761" 435 | ], 436 | "index": "pypi", 437 | "markers": "python_version >= '3.8'", 438 | "version": "==8.3.4" 439 | } 440 | } 441 | } 442 | -------------------------------------------------------------------------------- /data/5000_most_freq_words.csv: -------------------------------------------------------------------------------- 1 | 0,1,the,7346,0.98 2 | 1,2,be,4181,0.97 3 | 2,3,and,3580,0.99 4 | 3,4,of,3447,0.97 5 | 4,5,a,3381,0.98 6 | 5,6,in,2332,0.98 7 | 6,7,to,2110,0.98 8 | 7,8,have,1434,0.97 9 | 8,9,to,1285,0.99 10 | 9,10,it,1290,0.96 11 | 10,11,I,1326,0.93 12 | 11,12,that,1143,0.97 13 | 12,13,for,1093,0.98 14 | 13,14,you,1027,0.92 15 | 14,15,he,969,0.94 16 | 15,16,with,894,0.99 17 | 16,17,on,828,0.99 18 | 17,18,do,857,0.95 19 | 18,19,say,638,0.95 20 | 19,20,this,628,0.96 21 | 20,21,they,621,0.96 22 | 21,22,at,589,0.98 23 | 22,23,but,592,0.97 24 | 23,24,we,606,0.94 25 | 24,25,his,600,0.95 26 | 25,26,from,545,0.99 27 | 26,27,that,570,0.94 28 | 27,28,not,546,0.98 29 | 28,29,n't,539,0.97 30 | 29,30,by,496,0.96 31 | 30,31,she,494,0.91 32 | 31,32,or,459,0.97 33 | 32,33,as,432,0.98 34 | 33,34,what,393,0.94 35 | 34,35,go,383,0.93 36 | 35,36,their,361,0.97 37 | 36,37,can,340,0.98 38 | 37,38,who,339,0.97 39 | 38,39,get,330,0.94 40 | 39,40,if,311,0.97 41 | 40,41,would,308,0.97 42 | 41,42,her,323,0.91 43 | 42,43,all,297,0.98 44 | 43,44,my,306,0.93 45 | 44,45,make,285,0.98 46 | 45,46,about,291,0.96 47 | 46,47,know,297,0.93 48 | 47,48,will,274,0.97 49 | 48,49,as,276,0.95 50 | 49,50,up,265,0.95 51 | 50,51,one,256,0.98 52 | 51,52,time,254,0.98 53 | 52,53,there,261,0.96 54 | 53,54,year,256,0.96 55 | 54,55,so,252,0.95 56 | 55,56,think,257,0.91 57 | 56,57,when,226,0.98 58 | 57,58,which,228,0.96 59 | 58,59,them,225,0.97 60 | 59,60,some,224,0.98 61 | 60,61,me,236,0.92 62 | 61,62,people,230,0.95 63 | 62,63,take,223,0.97 64 | 63,64,out,226,0.96 65 | 64,65,into,222,0.97 66 | 65,66,just,225,0.94 67 | 66,67,see,221,0.96 68 | 67,68,him,225,0.92 69 | 68,69,your,219,0.94 70 | 69,70,come,209,0.95 71 | 70,71,could,205,0.96 72 | 71,72,now,201,0.94 73 | 72,73,than,193,0.97 74 | 73,74,like,189,0.96 75 | 74,75,other,182,0.97 76 | 75,76,how,179,0.97 77 | 76,77,then,181,0.95 78 | 77,78,its,179,0.96 79 | 78,79,our,175,0.97 80 | 79,80,two,170,0.99 81 | 80,81,more,172,0.97 82 | 81,82,these,171,0.95 83 | 82,83,want,171,0.95 84 | 83,84,way,156,0.98 85 | 84,85,look,163,0.93 86 | 85,86,first,154,0.98 87 | 86,87,also,154,0.96 88 | 87,88,new,145,0.97 89 | 88,89,because,146,0.96 90 | 89,90,day,144,0.97 91 | 90,91,more,140,0.97 92 | 91,92,use,140,0.96 93 | 92,93,no,134,0.98 94 | 93,94,man,136,0.95 95 | 94,95,find,131,0.98 96 | 95,96,here,137,0.93 97 | 96,97,thing,133,0.94 98 | 97,98,give,128,0.98 99 | 98,99,many,128,0.97 100 | 99,100,well,137,0.91 101 | 100,101,only,126,0.98 102 | 101,102,those,126,0.97 103 | 102,103,tell,129,0.94 104 | 103,104,one,123,0.98 105 | 104,105,very,130,0.92 106 | 105,106,her,132,0.89 107 | 106,107,even,120,0.98 108 | 107,108,back,122,0.94 109 | 108,109,any,116,0.98 110 | 109,110,good,117,0.96 111 | 110,111,woman,113,0.98 112 | 111,112,through,113,0.98 113 | 112,113,us,117,0.95 114 | 113,114,life,111,0.98 115 | 114,115,child,111,0.97 116 | 115,116,there,111,0.93 117 | 116,117,work,106,0.98 118 | 117,118,down,109,0.94 119 | 118,119,may,108,0.95 120 | 119,120,after,103,0.98 121 | 120,121,should,103,0.98 122 | 121,122,call,102,0.97 123 | 122,123,world,101,0.97 124 | 123,124,over,100,0.98 125 | 124,125,school,101,0.95 126 | 125,126,still,98,0.97 127 | 126,127,try,98,0.96 128 | 127,128,in,95,0.98 129 | 128,129,as,93,0.98 130 | 129,130,last,96,0.95 131 | 130,131,ask,94,0.96 132 | 131,132,need,92,0.98 133 | 132,133,too,93,0.96 134 | 133,134,feel,91,0.95 135 | 134,135,three,88,0.98 136 | 135,136,when,89,0.97 137 | 136,137,state,90,0.94 138 | 137,138,never,87,0.96 139 | 138,139,become,86,0.97 140 | 139,140,between,88,0.94 141 | 140,141,high,85,0.96 142 | 141,142,really,87,0.91 143 | 142,143,something,84,0.94 144 | 143,144,most,82,0.96 145 | 144,145,another,80,0.98 146 | 145,146,much,81,0.97 147 | 146,147,family,81,0.97 148 | 147,148,own,80,0.98 149 | 148,149,out,80,0.96 150 | 149,150,leave,80,0.96 151 | 150,151,put,79,0.96 152 | 151,152,old,78,0.96 153 | 152,153,while,78,0.97 154 | 153,154,mean,80,0.93 155 | 154,155,on,78,0.95 156 | 155,156,keep,77,0.96 157 | 156,157,student,85,0.88 158 | 157,158,why,78,0.95 159 | 158,159,let,80,0.93 160 | 159,160,great,75,0.97 161 | 160,161,same,74,0.98 162 | 161,162,big,75,0.96 163 | 162,163,group,76,0.93 164 | 163,164,begin,72,0.98 165 | 164,165,seem,73,0.97 166 | 165,166,country,74,0.95 167 | 166,167,help,72,0.98 168 | 167,168,talk,76,0.92 169 | 168,169,where,71,0.98 170 | 169,170,turn,73,0.94 171 | 170,171,problem,72,0.96 172 | 171,172,every,70,0.97 173 | 172,173,start,71,0.96 174 | 173,174,hand,75,0.91 175 | 174,175,might,69,0.98 176 | 175,176,American,71,0.95 177 | 176,177,show,69,0.98 178 | 177,178,part,69,0.98 179 | 178,179,about,69,0.97 180 | 179,180,against,68,0.98 181 | 180,181,place,67,0.98 182 | 181,182,over,69,0.95 183 | 182,183,such,69,0.95 184 | 183,184,again,68,0.94 185 | 184,185,few,65,0.97 186 | 185,186,case,66,0.95 187 | 186,187,most,65,0.96 188 | 187,188,week,66,0.95 189 | 188,189,company,67,0.93 190 | 189,190,where,64,0.96 191 | 190,191,system,66,0.94 192 | 191,192,each,65,0.95 193 | 192,193,right,68,0.90 194 | 193,194,program,65,0.93 195 | 194,195,hear,65,0.93 196 | 195,196,so,63,0.95 197 | 196,197,question,64,0.95 198 | 197,198,during,63,0.95 199 | 198,199,work,62,0.97 200 | 199,200,play,62,0.96 201 | 200,201,government,63,0.94 202 | 201,202,run,62,0.96 203 | 202,203,small,61,0.97 204 | 203,204,number,62,0.96 205 | 204,205,off,61,0.95 206 | 205,206,always,59,0.97 207 | 206,207,move,59,0.97 208 | 207,208,like,60,0.95 209 | 208,209,night,61,0.93 210 | 209,210,live,58,0.98 211 | 210,211,Mr,62,0.91 212 | 211,212,point,59,0.97 213 | 212,213,believe,59,0.96 214 | 213,214,hold,59,0.97 215 | 214,215,today,61,0.93 216 | 215,216,bring,58,0.98 217 | 216,217,happen,60,0.93 218 | 217,218,next,58,0.96 219 | 218,219,without,57,0.98 220 | 219,220,before,57,0.98 221 | 220,221,large,58,0.96 222 | 221,222,all,59,0.93 223 | 222,223,million,58,0.93 224 | 223,224,must,57,0.96 225 | 224,225,home,56,0.96 226 | 225,226,under,54,0.98 227 | 226,227,water,55,0.96 228 | 227,228,room,57,0.92 229 | 228,229,write,53,0.98 230 | 229,230,mother,56,0.93 231 | 230,231,area,55,0.95 232 | 231,232,national,55,0.95 233 | 232,233,money,54,0.95 234 | 233,234,story,54,0.96 235 | 234,235,young,53,0.98 236 | 235,236,fact,54,0.95 237 | 236,237,month,54,0.96 238 | 237,238,different,54,0.96 239 | 238,239,lot,56,0.92 240 | 239,240,right,54,0.95 241 | 240,241,study,58,0.88 242 | 241,242,book,51,0.98 243 | 242,243,eye,56,0.89 244 | 243,244,job,51,0.96 245 | 244,245,word,50,0.97 246 | 245,246,though,50,0.97 247 | 246,247,business,51,0.95 248 | 247,248,issue,52,0.94 249 | 248,249,side,50,0.96 250 | 249,250,kind,51,0.95 251 | 250,251,four,50,0.97 252 | 251,252,head,53,0.91 253 | 252,253,far,49,0.98 254 | 253,254,black,50,0.96 255 | 254,255,long,49,0.97 256 | 255,256,both,48,0.97 257 | 256,257,little,49,0.94 258 | 257,258,house,49,0.94 259 | 258,259,yes,52,0.89 260 | 259,260,after,47,0.98 261 | 260,261,since,47,0.98 262 | 261,262,long,47,0.97 263 | 262,263,provide,50,0.91 264 | 263,264,service,48,0.94 265 | 264,265,around,47,0.96 266 | 265,266,friend,47,0.96 267 | 266,267,important,48,0.95 268 | 267,268,father,48,0.93 269 | 268,269,sit,49,0.92 270 | 269,270,away,48,0.93 271 | 270,271,until,46,0.96 272 | 271,272,power,47,0.95 273 | 272,273,hour,46,0.96 274 | 273,274,game,48,0.92 275 | 274,275,often,46,0.95 276 | 275,276,yet,45,0.98 277 | 276,277,line,45,0.98 278 | 277,278,political,48,0.92 279 | 278,279,end,44,0.98 280 | 279,280,among,46,0.94 281 | 280,281,ever,45,0.96 282 | 281,282,stand,46,0.92 283 | 282,283,bad,44,0.96 284 | 283,284,lose,44,0.97 285 | 284,285,however,47,0.91 286 | 285,286,member,44,0.95 287 | 286,287,pay,44,0.96 288 | 287,288,law,44,0.95 289 | 288,289,meet,42,0.98 290 | 289,290,car,44,0.94 291 | 290,291,city,44,0.95 292 | 291,292,almost,42,0.98 293 | 292,293,include,44,0.93 294 | 293,294,continue,42,0.98 295 | 294,295,set,42,0.97 296 | 295,296,later,42,0.98 297 | 296,297,community,44,0.93 298 | 297,298,much,42,0.98 299 | 298,299,name,42,0.97 300 | 299,300,five,41,0.97 301 | 300,301,once,42,0.97 302 | 301,302,white,42,0.96 303 | 302,303,least,41,0.98 304 | 303,304,president,44,0.90 305 | 304,305,learn,41,0.97 306 | 305,306,real,41,0.97 307 | 306,307,change,41,0.98 308 | 307,308,team,43,0.92 309 | 308,309,minute,42,0.95 310 | 309,310,best,41,0.96 311 | 310,311,several,41,0.97 312 | 311,312,idea,40,0.98 313 | 312,313,kid,42,0.95 314 | 313,314,body,41,0.96 315 | 314,315,information,42,0.94 316 | 315,316,nothing,42,0.94 317 | 316,317,ago,41,0.95 318 | 317,318,right,42,0.94 319 | 318,319,lead,40,0.97 320 | 319,320,social,44,0.89 321 | 320,321,understand,40,0.97 322 | 321,322,whether,40,0.96 323 | 322,323,back,41,0.94 324 | 323,324,watch,41,0.94 325 | 324,325,together,39,0.98 326 | 325,326,follow,39,0.97 327 | 326,327,around,40,0.94 328 | 327,328,parent,39,0.97 329 | 328,329,only,39,0.98 330 | 329,330,stop,40,0.94 331 | 330,331,face,42,0.89 332 | 331,332,anything,40,0.94 333 | 332,333,create,39,0.95 334 | 333,334,public,39,0.95 335 | 334,335,already,38,0.98 336 | 335,336,speak,39,0.96 337 | 336,337,others,38,0.97 338 | 337,338,read,38,0.97 339 | 338,339,level,40,0.91 340 | 339,340,allow,38,0.97 341 | 340,341,add,39,0.94 342 | 341,342,office,38,0.97 343 | 342,343,spend,38,0.97 344 | 343,344,door,41,0.88 345 | 344,345,health,39,0.94 346 | 345,346,person,37,0.97 347 | 346,347,art,39,0.93 348 | 347,348,sure,38,0.94 349 | 348,349,such,39,0.92 350 | 349,350,war,39,0.93 351 | 350,351,history,38,0.95 352 | 351,352,party,37,0.96 353 | 352,353,within,38,0.93 354 | 353,354,grow,36,0.97 355 | 354,355,result,38,0.92 356 | 355,356,open,37,0.94 357 | 356,357,change,37,0.94 358 | 357,358,morning,38,0.92 359 | 358,359,walk,37,0.92 360 | 359,360,reason,35,0.97 361 | 360,361,low,36,0.95 362 | 361,362,win,37,0.93 363 | 362,363,research,38,0.90 364 | 363,364,girl,36,0.93 365 | 364,365,guy,36,0.93 366 | 365,366,early,36,0.95 367 | 366,367,food,35,0.96 368 | 367,368,before,35,0.96 369 | 368,369,moment,36,0.94 370 | 369,370,himself,36,0.94 371 | 370,371,air,35,0.96 372 | 371,372,teacher,38,0.88 373 | 372,373,force,36,0.95 374 | 373,374,offer,35,0.96 375 | 374,375,enough,35,0.96 376 | 375,376,both,35,0.95 377 | 376,377,education,37,0.89 378 | 377,378,across,35,0.96 379 | 378,379,although,35,0.93 380 | 379,380,remember,35,0.94 381 | 380,381,foot,35,0.94 382 | 381,382,second,34,0.97 383 | 382,383,boy,35,0.93 384 | 383,384,maybe,36,0.92 385 | 384,385,toward,35,0.94 386 | 385,386,able,34,0.97 387 | 386,387,age,34,0.96 388 | 387,388,off,34,0.95 389 | 388,389,policy,35,0.92 390 | 389,390,everything,34,0.95 391 | 390,391,love,34,0.95 392 | 391,392,process,35,0.91 393 | 392,393,music,34,0.95 394 | 393,394,including,34,0.94 395 | 394,395,consider,33,0.96 396 | 395,396,appear,33,0.97 397 | 396,397,actually,35,0.92 398 | 397,398,buy,33,0.95 399 | 398,399,probably,33,0.96 400 | 399,400,human,33,0.94 401 | 400,401,wait,34,0.93 402 | 401,402,serve,33,0.95 403 | 402,403,market,33,0.94 404 | 403,404,die,32,0.96 405 | 404,405,send,32,0.97 406 | 405,406,expect,31,0.98 407 | 406,407,home,32,0.95 408 | 407,408,sense,31,0.97 409 | 408,409,build,32,0.96 410 | 409,410,stay,32,0.96 411 | 410,411,fall,32,0.95 412 | 411,412,oh,34,0.89 413 | 412,413,nation,32,0.95 414 | 413,414,plan,31,0.96 415 | 414,415,cut,32,0.95 416 | 415,416,college,32,0.94 417 | 416,417,interest,32,0.95 418 | 417,418,death,31,0.98 419 | 418,419,course,32,0.95 420 | 419,420,someone,31,0.95 421 | 420,421,experience,32,0.93 422 | 421,422,behind,31,0.93 423 | 422,423,reach,30,0.96 424 | 423,424,local,30,0.95 425 | 424,425,kill,30,0.95 426 | 425,426,six,30,0.97 427 | 426,427,remain,30,0.96 428 | 427,428,effect,31,0.92 429 | 428,429,use,32,0.90 430 | 429,430,yeah,34,0.84 431 | 430,431,suggest,30,0.93 432 | 431,432,class,30,0.94 433 | 432,433,control,30,0.94 434 | 433,434,raise,29,0.98 435 | 434,435,care,29,0.96 436 | 435,436,perhaps,29,0.98 437 | 436,437,little,29,0.95 438 | 437,438,late,28,0.98 439 | 438,439,hard,28,0.97 440 | 439,440,field,29,0.96 441 | 440,441,else,29,0.95 442 | 441,442,pass,28,0.97 443 | 442,443,former,29,0.94 444 | 443,444,sell,29,0.95 445 | 444,445,major,29,0.95 446 | 445,446,sometimes,28,0.98 447 | 446,447,require,29,0.93 448 | 447,448,along,28,0.97 449 | 448,449,development,30,0.90 450 | 449,450,themselves,28,0.97 451 | 450,451,report,29,0.93 452 | 451,452,role,29,0.92 453 | 452,453,better,27,0.98 454 | 453,454,economic,30,0.91 455 | 454,455,effort,28,0.95 456 | 455,456,up,28,0.95 457 | 456,457,decide,28,0.97 458 | 457,458,rate,29,0.94 459 | 458,459,strong,27,0.98 460 | 459,460,possible,28,0.96 461 | 460,461,heart,28,0.96 462 | 461,462,drug,28,0.94 463 | 462,463,show,28,0.94 464 | 463,464,leader,28,0.95 465 | 464,465,light,29,0.93 466 | 465,466,voice,29,0.90 467 | 466,467,wife,27,0.96 468 | 467,468,whole,27,0.96 469 | 468,469,police,28,0.93 470 | 469,470,mind,27,0.96 471 | 470,471,finally,27,0.97 472 | 471,472,pull,29,0.91 473 | 472,473,return,27,0.97 474 | 473,474,free,27,0.97 475 | 474,475,military,28,0.93 476 | 475,476,price,28,0.94 477 | 476,477,report,27,0.95 478 | 477,478,less,27,0.95 479 | 478,479,according,27,0.94 480 | 479,480,decision,27,0.95 481 | 480,481,explain,26,0.97 482 | 481,482,son,26,0.97 483 | 482,483,hope,27,0.96 484 | 483,484,even,26,0.98 485 | 484,485,develop,28,0.92 486 | 485,486,view,27,0.96 487 | 486,487,relationship,28,0.92 488 | 487,488,carry,26,0.97 489 | 488,489,town,26,0.97 490 | 489,490,road,26,0.95 491 | 490,491,drive,26,0.96 492 | 491,492,arm,28,0.91 493 | 492,493,true,26,0.97 494 | 493,494,federal,27,0.94 495 | 494,495,break,26,0.97 496 | 495,496,better,26,0.98 497 | 496,497,difference,27,0.92 498 | 497,498,thank,29,0.86 499 | 498,499,receive,26,0.95 500 | 499,500,value,27,0.92 501 | 500,501,international,27,0.93 502 | 501,502,building,26,0.97 503 | 502,503,action,26,0.95 504 | 503,504,full,25,0.97 505 | 504,505,model,27,0.91 506 | 505,506,join,26,0.93 507 | 506,507,season,27,0.89 508 | 507,508,society,27,0.92 509 | 508,509,because,25,0.97 510 | 509,510,tax,26,0.92 511 | 510,511,director,26,0.93 512 | 511,512,early,25,0.98 513 | 512,513,position,25,0.96 514 | 513,514,player,27,0.91 515 | 514,515,agree,25,0.96 516 | 515,516,especially,25,0.96 517 | 516,517,record,25,0.94 518 | 517,518,pick,25,0.95 519 | 518,519,wear,25,0.94 520 | 519,520,paper,25,0.97 521 | 520,521,special,25,0.97 522 | 521,522,space,25,0.96 523 | 522,523,ground,24,0.97 524 | 523,524,form,26,0.92 525 | 524,525,support,25,0.94 526 | 525,526,event,25,0.95 527 | 526,527,official,26,0.91 528 | 527,528,whose,24,0.96 529 | 528,529,matter,24,0.97 530 | 529,530,everyone,24,0.96 531 | 530,531,center,24,0.96 532 | 531,532,couple,24,0.96 533 | 532,533,site,25,0.94 534 | 533,534,end,24,0.97 535 | 534,535,project,25,0.94 536 | 535,536,hit,24,0.95 537 | 536,537,base,25,0.93 538 | 537,538,activity,25,0.90 539 | 538,539,star,24,0.95 540 | 539,540,table,25,0.93 541 | 540,541,need,24,0.93 542 | 541,542,court,24,0.94 543 | 542,543,produce,24,0.94 544 | 543,544,eat,24,0.95 545 | 544,545,American,24,0.95 546 | 545,546,teach,24,0.95 547 | 546,547,oil,24,0.93 548 | 547,548,half,23,0.97 549 | 548,549,situation,24,0.95 550 | 549,550,easy,23,0.96 551 | 550,551,cost,24,0.94 552 | 551,552,industry,24,0.94 553 | 552,553,figure,24,0.92 554 | 553,554,face,23,0.98 555 | 554,555,street,23,0.95 556 | 555,556,image,24,0.94 557 | 556,557,itself,23,0.96 558 | 557,558,phone,23,0.95 559 | 558,559,either,23,0.97 560 | 559,560,data,25,0.88 561 | 560,561,cover,23,0.97 562 | 561,562,quite,23,0.96 563 | 562,563,picture,23,0.97 564 | 563,564,clear,22,0.98 565 | 564,565,practice,24,0.91 566 | 565,566,piece,22,0.97 567 | 566,567,land,23,0.96 568 | 567,568,recent,23,0.94 569 | 568,569,describe,23,0.93 570 | 569,570,product,23,0.94 571 | 570,571,doctor,23,0.95 572 | 571,572,wall,23,0.93 573 | 572,573,patient,24,0.91 574 | 573,574,worker,23,0.94 575 | 574,575,news,23,0.94 576 | 575,576,test,23,0.94 577 | 576,577,movie,23,0.94 578 | 577,578,certain,22,0.97 579 | 578,579,north,22,0.96 580 | 579,580,love,22,0.96 581 | 580,581,personal,22,0.96 582 | 581,582,open,22,0.97 583 | 582,583,support,23,0.93 584 | 583,584,simply,22,0.97 585 | 584,585,third,22,0.97 586 | 585,586,technology,23,0.93 587 | 586,587,catch,22,0.94 588 | 587,588,step,22,0.97 589 | 588,589,baby,22,0.94 590 | 589,590,computer,22,0.95 591 | 590,591,type,22,0.93 592 | 591,592,attention,21,0.97 593 | 592,593,draw,21,0.97 594 | 593,594,film,22,0.95 595 | 594,595,Republican,23,0.88 596 | 595,596,tree,22,0.94 597 | 596,597,source,22,0.94 598 | 597,598,red,22,0.94 599 | 598,599,nearly,21,0.96 600 | 599,600,organization,22,0.93 601 | 600,601,choose,21,0.97 602 | 601,602,cause,21,0.97 603 | 602,603,hair,23,0.89 604 | 603,604,look,22,0.94 605 | 604,605,point,20,0.98 606 | 605,606,century,21,0.94 607 | 606,607,evidence,21,0.94 608 | 607,608,window,22,0.90 609 | 608,609,difficult,21,0.96 610 | 609,610,listen,21,0.94 611 | 610,611,soon,21,0.96 612 | 611,612,culture,22,0.91 613 | 612,613,billion,21,0.93 614 | 613,614,chance,20,0.97 615 | 614,615,brother,21,0.95 616 | 615,616,energy,21,0.94 617 | 616,617,period,21,0.93 618 | 617,618,course,21,0.94 619 | 618,619,summer,20,0.96 620 | 619,620,less,20,0.96 621 | 620,621,realize,20,0.97 622 | 621,622,hundred,20,0.97 623 | 622,623,available,21,0.94 624 | 623,624,plant,21,0.93 625 | 624,625,likely,21,0.94 626 | 625,626,opportunity,20,0.95 627 | 626,627,term,20,0.94 628 | 627,628,short,20,0.98 629 | 628,629,letter,20,0.98 630 | 629,630,condition,21,0.93 631 | 630,631,choice,20,0.97 632 | 631,632,place,20,0.96 633 | 632,633,single,20,0.97 634 | 633,634,rule,20,0.95 635 | 634,635,daughter,20,0.96 636 | 635,636,administration,20,0.93 637 | 636,637,south,20,0.96 638 | 637,638,husband,20,0.96 639 | 638,639,Congress,20,0.92 640 | 639,640,floor,20,0.92 641 | 640,641,campaign,21,0.90 642 | 641,642,material,20,0.92 643 | 642,643,population,20,0.91 644 | 643,644,well,20,0.93 645 | 644,645,call,19,0.96 646 | 645,646,economy,20,0.93 647 | 646,647,medical,19,0.96 648 | 647,648,hospital,19,0.97 649 | 648,649,church,19,0.96 650 | 649,650,close,20,0.93 651 | 650,651,thousand,19,0.97 652 | 651,652,risk,20,0.94 653 | 652,653,current,20,0.92 654 | 653,654,fire,19,0.95 655 | 654,655,future,19,0.97 656 | 655,656,wrong,19,0.95 657 | 656,657,involve,19,0.94 658 | 657,658,defense,19,0.94 659 | 658,659,anyone,19,0.96 660 | 659,660,increase,20,0.93 661 | 660,661,security,19,0.95 662 | 661,662,bank,19,0.94 663 | 662,663,myself,19,0.93 664 | 663,664,certainly,19,0.93 665 | 664,665,west,19,0.95 666 | 665,666,sport,19,0.94 667 | 666,667,board,19,0.95 668 | 667,668,seek,19,0.94 669 | 668,669,per,19,0.93 670 | 669,670,subject,20,0.90 671 | 670,671,officer,19,0.96 672 | 671,672,private,19,0.96 673 | 672,673,rest,18,0.97 674 | 673,674,behavior,20,0.88 675 | 674,675,deal,19,0.96 676 | 675,676,performance,19,0.92 677 | 676,677,fight,18,0.96 678 | 677,678,throw,19,0.95 679 | 678,679,top,19,0.95 680 | 679,680,quickly,18,0.97 681 | 680,681,past,18,0.96 682 | 681,682,goal,19,0.93 683 | 682,683,second,18,0.97 684 | 683,684,bed,20,0.90 685 | 684,685,order,18,0.96 686 | 685,686,author,19,0.93 687 | 686,687,fill,18,0.95 688 | 687,688,represent,19,0.92 689 | 688,689,focus,19,0.94 690 | 689,690,foreign,19,0.94 691 | 690,691,drop,18,0.95 692 | 691,692,plan,18,0.96 693 | 692,693,blood,18,0.95 694 | 693,694,upon,19,0.94 695 | 694,695,agency,18,0.94 696 | 695,696,push,18,0.95 697 | 696,697,nature,19,0.92 698 | 697,698,color,18,0.94 699 | 698,699,no,18,0.98 700 | 699,700,recently,18,0.95 701 | 700,701,store,18,0.95 702 | 701,702,reduce,19,0.93 703 | 702,703,sound,18,0.94 704 | 703,704,note,19,0.93 705 | 704,705,fine,18,0.96 706 | 705,706,before,18,0.95 707 | 706,707,near,18,0.96 708 | 707,708,movement,18,0.94 709 | 708,709,page,18,0.94 710 | 709,710,enter,18,0.96 711 | 710,711,share,18,0.97 712 | 711,712,than,18,0.94 713 | 712,713,common,18,0.93 714 | 713,714,poor,17,0.97 715 | 714,715,other,18,0.96 716 | 715,716,natural,18,0.94 717 | 716,717,race,18,0.95 718 | 717,718,concern,18,0.94 719 | 718,719,series,18,0.95 720 | 719,720,significant,19,0.88 721 | 720,721,similar,18,0.92 722 | 721,722,hot,18,0.95 723 | 722,723,language,18,0.92 724 | 723,724,each,17,0.96 725 | 724,725,usually,17,0.96 726 | 725,726,response,18,0.91 727 | 726,727,dead,18,0.93 728 | 727,728,rise,17,0.95 729 | 728,729,animal,17,0.96 730 | 729,730,factor,19,0.89 731 | 730,731,decade,17,0.95 732 | 731,732,article,18,0.93 733 | 732,733,shoot,17,0.95 734 | 733,734,east,17,0.95 735 | 734,735,save,17,0.97 736 | 735,736,seven,17,0.97 737 | 736,737,artist,18,0.92 738 | 737,738,away,17,0.96 739 | 738,739,scene,17,0.97 740 | 739,740,stock,18,0.91 741 | 740,741,career,17,0.95 742 | 741,742,despite,17,0.96 743 | 742,743,central,17,0.94 744 | 743,744,eight,16,0.97 745 | 744,745,thus,19,0.87 746 | 745,746,treatment,17,0.92 747 | 746,747,beyond,16,0.97 748 | 747,748,happy,17,0.95 749 | 748,749,exactly,17,0.93 750 | 749,750,protect,16,0.97 751 | 750,751,approach,17,0.91 752 | 751,752,lie,17,0.95 753 | 752,753,size,17,0.95 754 | 753,754,dog,17,0.94 755 | 754,755,fund,17,0.91 756 | 755,756,serious,16,0.97 757 | 756,757,occur,17,0.93 758 | 757,758,media,17,0.94 759 | 758,759,ready,16,0.96 760 | 759,760,sign,16,0.98 761 | 760,761,thought,17,0.95 762 | 761,762,list,16,0.96 763 | 762,763,individual,18,0.89 764 | 763,764,simple,16,0.96 765 | 764,765,quality,17,0.93 766 | 765,766,pressure,16,0.96 767 | 766,767,accept,16,0.97 768 | 767,768,answer,16,0.97 769 | 768,769,hard,16,0.95 770 | 769,770,resource,17,0.90 771 | 770,771,identify,17,0.90 772 | 771,772,left,16,0.95 773 | 772,773,meeting,16,0.96 774 | 773,774,determine,17,0.92 775 | 774,775,prepare,16,0.98 776 | 775,776,disease,17,0.94 777 | 776,777,whatever,16,0.96 778 | 777,778,success,16,0.95 779 | 778,779,argue,17,0.94 780 | 779,780,cup,17,0.89 781 | 780,781,particularly,16,0.95 782 | 781,782,amount,16,0.95 783 | 782,783,ability,17,0.93 784 | 783,784,staff,16,0.95 785 | 784,785,recognize,16,0.95 786 | 785,786,indicate,17,0.89 787 | 786,787,character,16,0.96 788 | 787,788,growth,16,0.93 789 | 788,789,loss,16,0.95 790 | 789,790,degree,16,0.94 791 | 790,791,wonder,16,0.93 792 | 791,792,attack,16,0.93 793 | 792,793,herself,17,0.89 794 | 793,794,region,16,0.93 795 | 794,795,television,16,0.95 796 | 795,796,box,16,0.95 797 | 796,797,TV,16,0.95 798 | 797,798,training,16,0.93 799 | 798,799,pretty,16,0.93 800 | 799,800,trade,16,0.94 801 | 800,801,deal,16,0.95 802 | 801,802,election,17,0.91 803 | 802,803,everybody,17,0.91 804 | 803,804,physical,17,0.90 805 | 804,805,lay,16,0.94 806 | 805,806,general,16,0.93 807 | 806,807,feeling,15,0.98 808 | 807,808,standard,16,0.93 809 | 808,809,bill,16,0.94 810 | 809,810,message,15,0.97 811 | 810,811,fail,15,0.97 812 | 811,812,outside,15,0.98 813 | 812,813,arrive,15,0.97 814 | 813,814,analysis,17,0.85 815 | 814,815,benefit,16,0.94 816 | 815,816,name,15,0.97 817 | 816,817,sex,15,0.95 818 | 817,818,forward,15,0.95 819 | 818,819,lawyer,15,0.95 820 | 819,820,present,16,0.92 821 | 820,821,section,16,0.91 822 | 821,822,environmental,17,0.88 823 | 822,823,glass,16,0.91 824 | 823,824,answer,15,0.95 825 | 824,825,skill,16,0.90 826 | 825,826,sister,16,0.94 827 | 826,827,PM,18,0.82 828 | 827,828,professor,15,0.97 829 | 828,829,operation,15,0.95 830 | 829,830,financial,15,0.94 831 | 830,831,crime,16,0.93 832 | 831,832,stage,15,0.97 833 | 832,833,ok,18,0.82 834 | 833,834,compare,16,0.93 835 | 834,835,authority,15,0.94 836 | 835,836,miss,15,0.96 837 | 836,837,design,16,0.92 838 | 837,838,sort,15,0.95 839 | 838,839,one,15,0.98 840 | 839,840,act,15,0.98 841 | 840,841,ten,15,0.95 842 | 841,842,knowledge,16,0.88 843 | 842,843,gun,15,0.94 844 | 843,844,station,15,0.96 845 | 844,845,blue,15,0.93 846 | 845,846,state,15,0.93 847 | 846,847,strategy,16,0.90 848 | 847,848,little,15,0.97 849 | 848,849,clearly,15,0.96 850 | 849,850,discuss,15,0.94 851 | 850,851,indeed,15,0.95 852 | 851,852,force,14,0.97 853 | 852,853,truth,15,0.97 854 | 853,854,song,15,0.96 855 | 854,855,example,15,0.93 856 | 855,856,democratic,15,0.92 857 | 856,857,check,15,0.95 858 | 857,858,environment,15,0.91 859 | 858,859,leg,15,0.91 860 | 859,860,dark,15,0.91 861 | 860,861,public,15,0.95 862 | 861,862,various,15,0.92 863 | 862,863,rather,14,0.96 864 | 863,864,laugh,16,0.89 865 | 864,865,guess,16,0.90 866 | 865,866,executive,15,0.91 867 | 866,867,set,15,0.96 868 | 867,868,study,14,0.96 869 | 868,869,prove,14,0.97 870 | 869,870,hang,15,0.92 871 | 870,871,entire,14,0.98 872 | 871,872,rock,15,0.95 873 | 872,873,design,15,0.94 874 | 873,874,enough,14,0.97 875 | 874,875,forget,15,0.94 876 | 875,876,since,15,0.94 877 | 876,877,claim,14,0.97 878 | 877,878,note,14,0.96 879 | 878,879,remove,14,0.96 880 | 879,880,manager,15,0.93 881 | 880,881,help,14,0.98 882 | 881,882,close,14,0.98 883 | 882,883,sound,15,0.94 884 | 883,884,enjoy,14,0.97 885 | 884,885,network,15,0.94 886 | 885,886,legal,14,0.95 887 | 886,887,religious,15,0.91 888 | 887,888,cold,14,0.95 889 | 888,889,form,14,0.95 890 | 889,890,final,14,0.97 891 | 890,891,main,14,0.97 892 | 891,892,science,15,0.92 893 | 892,893,green,14,0.94 894 | 893,894,memory,14,0.97 895 | 894,895,card,14,0.96 896 | 895,896,above,14,0.95 897 | 896,897,seat,14,0.95 898 | 897,898,cell,14,0.94 899 | 898,899,establish,15,0.91 900 | 899,900,nice,14,0.93 901 | 900,901,trial,14,0.94 902 | 901,902,expert,14,0.95 903 | 902,903,that,14,0.96 904 | 903,904,spring,14,0.95 905 | 904,905,firm,14,0.93 906 | 905,906,Democrat,15,0.88 907 | 906,907,radio,14,0.96 908 | 907,908,visit,14,0.96 909 | 908,909,management,15,0.92 910 | 909,910,care,14,0.96 911 | 910,911,avoid,14,0.96 912 | 911,912,imagine,14,0.95 913 | 912,913,tonight,15,0.87 914 | 913,914,huge,14,0.96 915 | 914,915,ball,14,0.94 916 | 915,916,no,14,0.91 917 | 916,917,close,14,0.95 918 | 917,918,finish,14,0.95 919 | 918,919,yourself,14,0.94 920 | 919,920,talk,14,0.94 921 | 920,921,theory,15,0.90 922 | 921,922,impact,14,0.93 923 | 922,923,respond,14,0.96 924 | 923,924,statement,14,0.94 925 | 924,925,maintain,14,0.93 926 | 925,926,charge,14,0.95 927 | 926,927,popular,14,0.95 928 | 927,928,traditional,14,0.92 929 | 928,929,onto,14,0.92 930 | 929,930,reveal,14,0.94 931 | 930,931,direction,13,0.97 932 | 931,932,weapon,14,0.93 933 | 932,933,employee,14,0.93 934 | 933,934,cultural,15,0.87 935 | 934,935,contain,14,0.94 936 | 935,936,peace,14,0.94 937 | 936,937,head,13,0.95 938 | 937,938,control,13,0.95 939 | 938,939,base,13,0.96 940 | 939,940,pain,13,0.96 941 | 940,941,apply,14,0.93 942 | 941,942,play,13,0.95 943 | 942,943,measure,14,0.90 944 | 943,944,wide,13,0.96 945 | 944,945,shake,15,0.87 946 | 945,946,fly,13,0.95 947 | 946,947,interview,13,0.95 948 | 947,948,manage,13,0.97 949 | 948,949,chair,14,0.91 950 | 949,950,fish,13,0.95 951 | 950,951,particular,14,0.93 952 | 951,952,camera,13,0.95 953 | 952,953,structure,14,0.90 954 | 953,954,politics,13,0.94 955 | 954,955,perform,13,0.94 956 | 955,956,bit,13,0.93 957 | 956,957,weight,13,0.93 958 | 957,958,suddenly,14,0.90 959 | 958,959,discover,13,0.97 960 | 959,960,candidate,14,0.90 961 | 960,961,top,13,0.94 962 | 961,962,production,14,0.93 963 | 962,963,treat,13,0.97 964 | 963,964,trip,13,0.96 965 | 964,965,evening,13,0.95 966 | 965,966,affect,13,0.93 967 | 966,967,inside,13,0.95 968 | 967,968,conference,13,0.95 969 | 968,969,unit,13,0.94 970 | 969,970,best,13,0.97 971 | 970,971,style,13,0.94 972 | 971,972,adult,13,0.95 973 | 972,973,worry,13,0.96 974 | 973,974,range,13,0.93 975 | 974,975,mention,13,0.97 976 | 975,976,rather,13,0.93 977 | 976,977,far,13,0.96 978 | 977,978,deep,13,0.96 979 | 978,979,past,13,0.97 980 | 979,980,edge,13,0.94 981 | 980,981,individual,14,0.90 982 | 981,982,specific,14,0.90 983 | 982,983,writer,13,0.96 984 | 983,984,trouble,13,0.96 985 | 984,985,necessary,13,0.93 986 | 985,986,throughout,13,0.95 987 | 986,987,challenge,13,0.94 988 | 987,988,fear,12,0.98 989 | 988,989,shoulder,14,0.89 990 | 989,990,institution,14,0.90 991 | 990,991,middle,13,0.94 992 | 991,992,sea,13,0.96 993 | 992,993,dream,13,0.96 994 | 993,994,bar,13,0.95 995 | 994,995,beautiful,13,0.94 996 | 995,996,property,13,0.94 997 | 996,997,instead,13,0.97 998 | 997,998,improve,13,0.94 999 | 998,999,stuff,13,0.94 1000 | 999,1000,detail,12,0.97 1001 | 1000,1001,method,14,0.88 1002 | 1001,1002,sign,13,0.95 1003 | 1002,1003,somebody,13,0.90 1004 | 1003,1004,magazine,13,0.96 1005 | 1004,1005,hotel,13,0.95 1006 | 1005,1006,soldier,13,0.95 1007 | 1006,1007,reflect,13,0.92 1008 | 1007,1008,heavy,13,0.96 1009 | 1008,1009,sexual,13,0.89 1010 | 1009,1010,cause,12,0.96 1011 | 1010,1011,bag,13,0.93 1012 | 1011,1012,heat,13,0.92 1013 | 1012,1013,fall,12,0.96 1014 | 1013,1014,marriage,12,0.96 1015 | 1014,1015,tough,13,0.94 1016 | 1015,1016,sing,12,0.96 1017 | 1016,1017,surface,13,0.94 1018 | 1017,1018,purpose,13,0.92 1019 | 1018,1019,exist,13,0.94 1020 | 1019,1020,pattern,13,0.91 1021 | 1020,1021,whom,12,0.97 1022 | 1021,1022,skin,13,0.92 1023 | 1022,1023,agent,12,0.96 1024 | 1023,1024,owner,13,0.93 1025 | 1024,1025,machine,12,0.96 1026 | 1025,1026,gas,12,0.96 1027 | 1026,1027,down,13,0.93 1028 | 1027,1028,ahead,13,0.92 1029 | 1028,1029,generation,12,0.96 1030 | 1029,1030,commercial,13,0.90 1031 | 1030,1031,address,13,0.92 1032 | 1031,1032,cancer,13,0.93 1033 | 1032,1033,test,12,0.95 1034 | 1033,1034,item,13,0.91 1035 | 1034,1035,reality,12,0.95 1036 | 1035,1036,coach,13,0.90 1037 | 1036,1037,step,13,0.93 1038 | 1037,1038,Mrs,13,0.90 1039 | 1038,1039,yard,13,0.93 1040 | 1039,1040,beat,12,0.95 1041 | 1040,1041,violence,12,0.94 1042 | 1041,1042,total,12,0.93 1043 | 1042,1043,tend,12,0.94 1044 | 1043,1044,investment,12,0.93 1045 | 1044,1045,discussion,13,0.91 1046 | 1045,1046,finger,13,0.88 1047 | 1046,1047,garden,12,0.93 1048 | 1047,1048,notice,12,0.92 1049 | 1048,1049,collection,12,0.93 1050 | 1049,1050,modern,12,0.93 1051 | 1050,1051,task,13,0.91 1052 | 1051,1052,partner,12,0.95 1053 | 1052,1053,positive,13,0.91 1054 | 1053,1054,civil,12,0.95 1055 | 1054,1055,kitchen,13,0.91 1056 | 1055,1056,consumer,12,0.94 1057 | 1056,1057,shot,12,0.95 1058 | 1057,1058,budget,13,0.91 1059 | 1058,1059,wish,12,0.95 1060 | 1059,1060,painting,13,0.91 1061 | 1060,1061,scientist,12,0.94 1062 | 1061,1062,safe,12,0.97 1063 | 1062,1063,agreement,12,0.93 1064 | 1063,1064,capital,12,0.95 1065 | 1064,1065,mouth,13,0.88 1066 | 1065,1066,nor,12,0.95 1067 | 1066,1067,victim,12,0.96 1068 | 1067,1068,newspaper,12,0.94 1069 | 1068,1069,instead,12,0.97 1070 | 1069,1070,threat,12,0.95 1071 | 1070,1071,responsibility,12,0.95 1072 | 1071,1072,smile,13,0.85 1073 | 1072,1073,attorney,12,0.92 1074 | 1073,1074,score,13,0.89 1075 | 1074,1075,account,12,0.95 1076 | 1075,1076,interesting,12,0.93 1077 | 1076,1077,break,13,0.86 1078 | 1077,1078,audience,12,0.96 1079 | 1078,1079,rich,11,0.97 1080 | 1079,1080,dinner,12,0.94 1081 | 1080,1081,figure,12,0.96 1082 | 1081,1082,vote,13,0.88 1083 | 1082,1083,western,12,0.93 1084 | 1083,1084,relate,13,0.89 1085 | 1084,1085,travel,11,0.97 1086 | 1085,1086,debate,12,0.93 1087 | 1086,1087,prevent,12,0.95 1088 | 1087,1088,citizen,12,0.95 1089 | 1088,1089,majority,12,0.94 1090 | 1089,1090,none,11,0.98 1091 | 1090,1091,front,12,0.92 1092 | 1091,1092,born,11,0.97 1093 | 1092,1093,admit,11,0.97 1094 | 1093,1094,senior,12,0.93 1095 | 1094,1095,assume,11,0.95 1096 | 1095,1096,wind,12,0.94 1097 | 1096,1097,key,12,0.95 1098 | 1097,1098,professional,12,0.93 1099 | 1098,1099,mission,11,0.96 1100 | 1099,1100,fast,11,0.95 1101 | 1100,1101,alone,11,0.96 1102 | 1101,1102,customer,12,0.94 1103 | 1102,1103,suffer,11,0.97 1104 | 1103,1104,speech,11,0.95 1105 | 1104,1105,successful,11,0.95 1106 | 1105,1106,option,11,0.95 1107 | 1106,1107,participant,13,0.81 1108 | 1107,1108,southern,11,0.95 1109 | 1108,1109,fresh,11,0.93 1110 | 1109,1110,eventually,11,0.97 1111 | 1110,1111,no,11,0.96 1112 | 1111,1112,forest,11,0.94 1113 | 1112,1113,video,11,0.95 1114 | 1113,1114,global,12,0.92 1115 | 1114,1115,Senate,12,0.91 1116 | 1115,1116,reform,12,0.92 1117 | 1116,1117,access,11,0.94 1118 | 1117,1118,restaurant,11,0.93 1119 | 1118,1119,judge,11,0.94 1120 | 1119,1120,publish,11,0.95 1121 | 1120,1121,cost,11,0.95 1122 | 1121,1122,relation,12,0.89 1123 | 1122,1123,like,11,0.93 1124 | 1123,1124,release,11,0.96 1125 | 1124,1125,own,11,0.95 1126 | 1125,1126,bird,11,0.94 1127 | 1126,1127,opinion,11,0.95 1128 | 1127,1128,credit,11,0.95 1129 | 1128,1129,critical,11,0.92 1130 | 1129,1130,corner,11,0.93 1131 | 1130,1131,concerned,11,0.96 1132 | 1131,1132,recall,11,0.95 1133 | 1132,1133,version,11,0.95 1134 | 1133,1134,stare,13,0.83 1135 | 1134,1135,safety,11,0.96 1136 | 1135,1136,effective,11,0.91 1137 | 1136,1137,neighborhood,11,0.94 1138 | 1137,1138,original,11,0.95 1139 | 1138,1139,act,11,0.96 1140 | 1139,1140,troop,12,0.91 1141 | 1140,1141,income,11,0.93 1142 | 1141,1142,directly,11,0.96 1143 | 1142,1143,hurt,11,0.94 1144 | 1143,1144,species,11,0.91 1145 | 1144,1145,immediately,11,0.98 1146 | 1145,1146,track,11,0.96 1147 | 1146,1147,basic,11,0.93 1148 | 1147,1148,strike,11,0.97 1149 | 1148,1149,hope,11,0.98 1150 | 1149,1150,sky,11,0.92 1151 | 1150,1151,freedom,11,0.94 1152 | 1151,1152,absolutely,12,0.88 1153 | 1152,1153,plane,11,0.95 1154 | 1153,1154,nobody,11,0.94 1155 | 1154,1155,achieve,11,0.92 1156 | 1155,1156,object,11,0.92 1157 | 1156,1157,attitude,11,0.91 1158 | 1157,1158,labor,11,0.93 1159 | 1158,1159,refer,11,0.94 1160 | 1159,1160,concept,11,0.89 1161 | 1160,1161,client,11,0.94 1162 | 1161,1162,powerful,11,0.97 1163 | 1162,1163,perfect,11,0.96 1164 | 1163,1164,nine,10,0.97 1165 | 1164,1165,therefore,11,0.89 1166 | 1165,1166,conduct,11,0.91 1167 | 1166,1167,announce,11,0.96 1168 | 1167,1168,conversation,11,0.96 1169 | 1168,1169,examine,11,0.89 1170 | 1169,1170,touch,11,0.92 1171 | 1170,1171,please,11,0.92 1172 | 1171,1172,attend,11,0.95 1173 | 1172,1173,completely,10,0.98 1174 | 1173,1174,vote,11,0.90 1175 | 1174,1175,variety,11,0.93 1176 | 1175,1176,sleep,11,0.91 1177 | 1176,1177,turn,10,0.96 1178 | 1177,1178,involved,11,0.95 1179 | 1178,1179,investigation,11,0.94 1180 | 1179,1180,nuclear,11,0.92 1181 | 1180,1181,researcher,11,0.91 1182 | 1181,1182,press,11,0.94 1183 | 1182,1183,conflict,11,0.91 1184 | 1183,1184,spirit,10,0.96 1185 | 1184,1185,experience,11,0.92 1186 | 1185,1186,replace,10,0.96 1187 | 1186,1187,British,10,0.95 1188 | 1187,1188,encourage,11,0.94 1189 | 1188,1189,argument,11,0.94 1190 | 1189,1190,by,10,0.96 1191 | 1190,1191,once,10,0.97 1192 | 1191,1192,camp,10,0.95 1193 | 1192,1193,brain,10,0.95 1194 | 1193,1194,feature,11,0.93 1195 | 1194,1195,afternoon,11,0.94 1196 | 1195,1196,AM,11,0.90 1197 | 1196,1197,weekend,11,0.93 1198 | 1197,1198,dozen,10,0.96 1199 | 1198,1199,possibility,10,0.95 1200 | 1199,1200,along,10,0.95 1201 | 1200,1201,insurance,10,0.94 1202 | 1201,1202,department,10,0.96 1203 | 1202,1203,battle,10,0.96 1204 | 1203,1204,beginning,10,0.97 1205 | 1204,1205,date,10,0.98 1206 | 1205,1206,generally,11,0.93 1207 | 1206,1207,African,11,0.89 1208 | 1207,1208,very,10,0.96 1209 | 1208,1209,sorry,11,0.89 1210 | 1209,1210,crisis,10,0.93 1211 | 1210,1211,complete,10,0.93 1212 | 1211,1212,fan,10,0.93 1213 | 1212,1213,stick,10,0.94 1214 | 1213,1214,define,11,0.90 1215 | 1214,1215,easily,10,0.96 1216 | 1215,1216,through,10,0.96 1217 | 1216,1217,hole,10,0.94 1218 | 1217,1218,element,11,0.92 1219 | 1218,1219,vision,10,0.94 1220 | 1219,1220,status,11,0.91 1221 | 1220,1221,normal,10,0.97 1222 | 1221,1222,Chinese,10,0.94 1223 | 1222,1223,ship,10,0.93 1224 | 1223,1224,solution,10,0.94 1225 | 1224,1225,stone,10,0.93 1226 | 1225,1226,slowly,11,0.90 1227 | 1226,1227,scale,11,0.88 1228 | 1227,1228,bit,10,0.94 1229 | 1228,1229,university,11,0.91 1230 | 1229,1230,introduce,10,0.96 1231 | 1230,1231,driver,10,0.95 1232 | 1231,1232,attempt,10,0.94 1233 | 1232,1233,park,10,0.93 1234 | 1233,1234,spot,10,0.95 1235 | 1234,1235,lack,10,0.93 1236 | 1235,1236,ice,10,0.95 1237 | 1236,1237,boat,10,0.93 1238 | 1237,1238,drink,10,0.93 1239 | 1238,1239,sun,10,0.92 1240 | 1239,1240,front,10,0.93 1241 | 1240,1241,distance,10,0.95 1242 | 1241,1242,wood,10,0.93 1243 | 1242,1243,handle,10,0.97 1244 | 1243,1244,truck,10,0.94 1245 | 1244,1245,return,10,0.95 1246 | 1245,1246,mountain,10,0.94 1247 | 1246,1247,survey,10,0.90 1248 | 1247,1248,supposed,10,0.95 1249 | 1248,1249,tradition,10,0.92 1250 | 1249,1250,winter,10,0.95 1251 | 1250,1251,village,10,0.96 1252 | 1251,1252,Soviet,12,0.82 1253 | 1252,1253,refuse,10,0.98 1254 | 1253,1254,sales,10,0.91 1255 | 1254,1255,roll,10,0.93 1256 | 1255,1256,communication,10,0.93 1257 | 1256,1257,run,10,0.94 1258 | 1257,1258,screen,10,0.95 1259 | 1258,1259,gain,10,0.95 1260 | 1259,1260,resident,10,0.92 1261 | 1260,1261,hide,10,0.94 1262 | 1261,1262,gold,10,0.95 1263 | 1262,1263,club,10,0.95 1264 | 1263,1264,future,10,0.92 1265 | 1264,1265,farm,10,0.96 1266 | 1265,1266,potential,10,0.93 1267 | 1266,1267,increase,10,0.93 1268 | 1267,1268,middle,10,0.96 1269 | 1268,1269,European,10,0.92 1270 | 1269,1270,presence,10,0.95 1271 | 1270,1271,independent,10,0.93 1272 | 1271,1272,district,10,0.92 1273 | 1272,1273,shape,10,0.95 1274 | 1273,1274,reader,10,0.92 1275 | 1274,1275,Ms,10,0.91 1276 | 1275,1276,contract,10,0.93 1277 | 1276,1277,crowd,10,0.94 1278 | 1277,1278,Christian,10,0.94 1279 | 1278,1279,express,10,0.93 1280 | 1279,1280,apartment,10,0.93 1281 | 1280,1281,willing,9,0.97 1282 | 1281,1282,strength,9,0.96 1283 | 1282,1283,previous,10,0.94 1284 | 1283,1284,band,9,0.96 1285 | 1284,1285,obviously,10,0.91 1286 | 1285,1286,horse,10,0.92 1287 | 1286,1287,interested,9,0.98 1288 | 1287,1288,target,9,0.96 1289 | 1288,1289,prison,10,0.94 1290 | 1289,1290,ride,10,0.94 1291 | 1290,1291,guard,10,0.94 1292 | 1291,1292,terms,10,0.92 1293 | 1292,1293,demand,10,0.93 1294 | 1293,1294,reporter,10,0.93 1295 | 1294,1295,deliver,9,0.97 1296 | 1295,1296,text,10,0.88 1297 | 1296,1297,share,10,0.92 1298 | 1297,1298,tool,10,0.93 1299 | 1298,1299,wild,9,0.96 1300 | 1299,1300,vehicle,9,0.96 1301 | 1300,1301,observe,10,0.92 1302 | 1301,1302,flight,9,0.95 1303 | 1302,1303,inside,10,0.91 1304 | 1303,1304,facility,10,0.93 1305 | 1304,1305,understanding,10,0.89 1306 | 1305,1306,average,9,0.94 1307 | 1306,1307,emerge,9,0.95 1308 | 1307,1308,advantage,9,0.95 1309 | 1308,1309,quick,9,0.96 1310 | 1309,1310,light,9,0.94 1311 | 1310,1311,leadership,10,0.93 1312 | 1311,1312,earn,9,0.94 1313 | 1312,1313,pound,9,0.93 1314 | 1313,1314,basis,10,0.92 1315 | 1314,1315,bright,9,0.93 1316 | 1315,1316,operate,9,0.95 1317 | 1316,1317,guest,9,0.95 1318 | 1317,1318,sample,10,0.86 1319 | 1318,1319,contribute,10,0.92 1320 | 1319,1320,tiny,9,0.93 1321 | 1320,1321,block,9,0.96 1322 | 1321,1322,protection,9,0.94 1323 | 1322,1323,settle,9,0.96 1324 | 1323,1324,feed,9,0.97 1325 | 1324,1325,collect,9,0.95 1326 | 1325,1326,additional,9,0.93 1327 | 1326,1327,while,9,0.93 1328 | 1327,1328,highly,9,0.93 1329 | 1328,1329,identity,10,0.88 1330 | 1329,1330,title,9,0.94 1331 | 1330,1331,mostly,9,0.97 1332 | 1331,1332,lesson,9,0.96 1333 | 1332,1333,faith,9,0.95 1334 | 1333,1334,river,9,0.95 1335 | 1334,1335,promote,9,0.92 1336 | 1335,1336,living,9,0.95 1337 | 1336,1337,present,10,0.89 1338 | 1337,1338,count,9,0.95 1339 | 1338,1339,unless,9,0.98 1340 | 1339,1340,marry,9,0.95 1341 | 1340,1341,tomorrow,10,0.91 1342 | 1341,1342,technique,9,0.91 1343 | 1342,1343,path,9,0.96 1344 | 1343,1344,ear,9,0.92 1345 | 1344,1345,shop,9,0.95 1346 | 1345,1346,folk,9,0.94 1347 | 1346,1347,order,9,0.97 1348 | 1347,1348,principle,10,0.90 1349 | 1348,1349,survive,9,0.98 1350 | 1349,1350,lift,9,0.92 1351 | 1350,1351,border,9,0.94 1352 | 1351,1352,competition,9,0.93 1353 | 1352,1353,jump,9,0.94 1354 | 1353,1354,gather,9,0.97 1355 | 1354,1355,limit,9,0.93 1356 | 1355,1356,fit,9,0.96 1357 | 1356,1357,claim,9,0.94 1358 | 1357,1358,cry,9,0.90 1359 | 1358,1359,equipment,9,0.95 1360 | 1359,1360,worth,9,0.97 1361 | 1360,1361,associate,10,0.88 1362 | 1361,1362,critic,9,0.94 1363 | 1362,1363,warm,9,0.93 1364 | 1363,1364,aspect,9,0.90 1365 | 1364,1365,result,9,0.90 1366 | 1365,1366,insist,9,0.97 1367 | 1366,1367,failure,9,0.94 1368 | 1367,1368,annual,9,0.93 1369 | 1368,1369,French,9,0.96 1370 | 1369,1370,Christmas,9,0.94 1371 | 1370,1371,comment,9,0.95 1372 | 1371,1372,responsible,9,0.96 1373 | 1372,1373,affair,9,0.96 1374 | 1373,1374,approach,9,0.96 1375 | 1374,1375,until,9,0.97 1376 | 1375,1376,procedure,9,0.90 1377 | 1376,1377,regular,9,0.96 1378 | 1377,1378,spread,9,0.96 1379 | 1378,1379,chairman,9,0.92 1380 | 1379,1380,baseball,9,0.92 1381 | 1380,1381,soft,9,0.94 1382 | 1381,1382,ignore,9,0.97 1383 | 1382,1383,egg,9,0.94 1384 | 1383,1384,measure,9,0.91 1385 | 1384,1385,belief,9,0.91 1386 | 1385,1386,demonstrate,9,0.90 1387 | 1386,1387,anybody,9,0.91 1388 | 1387,1388,murder,9,0.92 1389 | 1388,1389,gift,9,0.96 1390 | 1389,1390,religion,9,0.92 1391 | 1390,1391,review,9,0.93 1392 | 1391,1392,editor,9,0.94 1393 | 1392,1393,past,9,0.92 1394 | 1393,1394,engage,9,0.92 1395 | 1394,1395,coffee,9,0.92 1396 | 1395,1396,document,9,0.88 1397 | 1396,1397,speed,9,0.93 1398 | 1397,1398,cross,9,0.94 1399 | 1398,1399,influence,9,0.91 1400 | 1399,1400,anyway,9,0.92 1401 | 1400,1401,threaten,8,0.97 1402 | 1401,1402,commit,8,0.96 1403 | 1402,1403,female,9,0.92 1404 | 1403,1404,youth,9,0.93 1405 | 1404,1405,wave,8,0.96 1406 | 1405,1406,move,8,0.96 1407 | 1406,1407,afraid,9,0.93 1408 | 1407,1408,quarter,9,0.95 1409 | 1408,1409,background,8,0.96 1410 | 1409,1410,native,9,0.92 1411 | 1410,1411,broad,9,0.94 1412 | 1411,1412,wonderful,9,0.93 1413 | 1412,1413,deny,8,0.96 1414 | 1413,1414,apparently,8,0.97 1415 | 1414,1415,slightly,8,0.95 1416 | 1415,1416,reaction,8,0.96 1417 | 1416,1417,twice,8,0.97 1418 | 1417,1418,suit,9,0.95 1419 | 1418,1419,perspective,9,0.90 1420 | 1419,1420,growing,8,0.95 1421 | 1420,1421,blow,9,0.94 1422 | 1421,1422,construction,9,0.94 1423 | 1422,1423,kind,9,0.86 1424 | 1423,1424,intelligence,9,0.92 1425 | 1424,1425,destroy,8,0.97 1426 | 1425,1426,cook,9,0.91 1427 | 1426,1427,connection,8,0.95 1428 | 1427,1428,charge,8,0.96 1429 | 1428,1429,burn,8,0.95 1430 | 1429,1430,shoe,8,0.94 1431 | 1430,1431,view,9,0.92 1432 | 1431,1432,grade,9,0.92 1433 | 1432,1433,context,9,0.86 1434 | 1433,1434,committee,8,0.94 1435 | 1434,1435,hey,9,0.91 1436 | 1435,1436,mistake,8,0.96 1437 | 1436,1437,focus,8,0.93 1438 | 1437,1438,smile,9,0.87 1439 | 1438,1439,location,8,0.94 1440 | 1439,1440,clothes,9,0.92 1441 | 1440,1441,Indian,9,0.92 1442 | 1441,1442,quiet,8,0.93 1443 | 1442,1443,dress,8,0.93 1444 | 1443,1444,promise,8,0.97 1445 | 1444,1445,aware,8,0.97 1446 | 1445,1446,neighbor,8,0.97 1447 | 1446,1447,complete,8,0.97 1448 | 1447,1448,drive,8,0.94 1449 | 1448,1449,function,9,0.88 1450 | 1449,1450,bone,8,0.94 1451 | 1450,1451,active,8,0.93 1452 | 1451,1452,extend,8,0.95 1453 | 1452,1453,chief,8,0.93 1454 | 1453,1454,average,8,0.93 1455 | 1454,1455,combine,8,0.93 1456 | 1455,1456,wine,8,0.92 1457 | 1456,1457,below,8,0.92 1458 | 1457,1458,cool,8,0.94 1459 | 1458,1459,voter,9,0.89 1460 | 1459,1460,mean,9,0.85 1461 | 1460,1461,demand,8,0.97 1462 | 1461,1462,learning,9,0.85 1463 | 1462,1463,bus,8,0.95 1464 | 1463,1464,hell,9,0.90 1465 | 1464,1465,dangerous,8,0.97 1466 | 1465,1466,remind,8,0.96 1467 | 1466,1467,moral,8,0.91 1468 | 1467,1468,United,8,0.93 1469 | 1468,1469,category,9,0.90 1470 | 1469,1470,relatively,8,0.92 1471 | 1470,1471,victory,8,0.92 1472 | 1471,1472,key,8,0.96 1473 | 1472,1473,academic,9,0.86 1474 | 1473,1474,visit,8,0.97 1475 | 1474,1475,Internet,8,0.90 1476 | 1475,1476,healthy,8,0.94 1477 | 1476,1477,fire,8,0.96 1478 | 1477,1478,negative,8,0.90 1479 | 1478,1479,following,8,0.91 1480 | 1479,1480,historical,9,0.89 1481 | 1480,1481,medicine,8,0.95 1482 | 1481,1482,tour,8,0.94 1483 | 1482,1483,depend,8,0.95 1484 | 1483,1484,photo,8,0.94 1485 | 1484,1485,finding,9,0.85 1486 | 1485,1486,grab,8,0.89 1487 | 1486,1487,direct,8,0.92 1488 | 1487,1488,classroom,9,0.87 1489 | 1488,1489,contact,8,0.95 1490 | 1489,1490,justice,8,0.95 1491 | 1490,1491,participate,8,0.91 1492 | 1491,1492,daily,8,0.95 1493 | 1492,1493,fair,8,0.96 1494 | 1493,1494,pair,8,0.95 1495 | 1494,1495,famous,8,0.97 1496 | 1495,1496,exercise,8,0.92 1497 | 1496,1497,knee,8,0.92 1498 | 1497,1498,flower,8,0.93 1499 | 1498,1499,tape,8,0.93 1500 | 1499,1500,hire,8,0.95 1501 | 1500,1501,familiar,8,0.97 1502 | 1501,1502,appropriate,8,0.91 1503 | 1502,1503,supply,8,0.96 1504 | 1503,1504,fully,8,0.96 1505 | 1504,1505,cut,8,0.94 1506 | 1505,1506,will,8,0.98 1507 | 1506,1507,actor,8,0.96 1508 | 1507,1508,birth,8,0.97 1509 | 1508,1509,search,9,0.87 1510 | 1509,1510,tie,8,0.97 1511 | 1510,1511,democracy,8,0.91 1512 | 1511,1512,eastern,8,0.94 1513 | 1512,1513,primary,8,0.90 1514 | 1513,1514,yesterday,8,0.90 1515 | 1514,1515,circle,8,0.95 1516 | 1515,1516,device,8,0.94 1517 | 1516,1517,progress,8,0.95 1518 | 1517,1518,next,8,0.91 1519 | 1518,1519,front,8,0.96 1520 | 1519,1520,bottom,8,0.95 1521 | 1520,1521,island,8,0.96 1522 | 1521,1522,exchange,8,0.94 1523 | 1522,1523,clean,8,0.96 1524 | 1523,1524,studio,8,0.94 1525 | 1524,1525,train,7,0.97 1526 | 1525,1526,lady,8,0.92 1527 | 1526,1527,colleague,8,0.95 1528 | 1527,1528,application,8,0.90 1529 | 1528,1529,neck,8,0.90 1530 | 1529,1530,lean,8,0.86 1531 | 1530,1531,damage,8,0.96 1532 | 1531,1532,plastic,8,0.94 1533 | 1532,1533,tall,8,0.92 1534 | 1533,1534,plate,8,0.94 1535 | 1534,1535,hate,8,0.93 1536 | 1535,1536,otherwise,7,0.97 1537 | 1536,1537,writing,8,0.92 1538 | 1537,1538,press,8,0.93 1539 | 1538,1539,male,8,0.93 1540 | 1539,1540,start,8,0.96 1541 | 1540,1541,alive,8,0.95 1542 | 1541,1542,expression,8,0.93 1543 | 1542,1543,football,8,0.91 1544 | 1543,1544,intend,7,0.97 1545 | 1544,1545,attack,7,0.95 1546 | 1545,1546,chicken,8,0.93 1547 | 1546,1547,army,7,0.95 1548 | 1547,1548,abuse,8,0.93 1549 | 1548,1549,theater,8,0.93 1550 | 1549,1550,shut,8,0.92 1551 | 1550,1551,map,7,0.96 1552 | 1551,1552,extra,8,0.95 1553 | 1552,1553,session,8,0.95 1554 | 1553,1554,danger,7,0.97 1555 | 1554,1555,welcome,8,0.90 1556 | 1555,1556,domestic,8,0.93 1557 | 1556,1557,lots,7,0.95 1558 | 1557,1558,literature,8,0.86 1559 | 1558,1559,rain,8,0.93 1560 | 1559,1560,desire,7,0.94 1561 | 1560,1561,assessment,8,0.85 1562 | 1561,1562,injury,7,0.94 1563 | 1562,1563,respect,7,0.96 1564 | 1563,1564,northern,7,0.94 1565 | 1564,1565,nod,9,0.82 1566 | 1565,1566,paint,8,0.93 1567 | 1566,1567,fuel,7,0.94 1568 | 1567,1568,leaf,8,0.93 1569 | 1568,1569,direct,7,0.96 1570 | 1569,1570,dry,7,0.94 1571 | 1570,1571,Russian,7,0.94 1572 | 1571,1572,instruction,8,0.89 1573 | 1572,1573,fight,7,0.96 1574 | 1573,1574,pool,7,0.96 1575 | 1574,1575,climb,8,0.92 1576 | 1575,1576,sweet,7,0.94 1577 | 1576,1577,lead,7,0.96 1578 | 1577,1578,engine,7,0.94 1579 | 1578,1579,fourth,7,0.96 1580 | 1579,1580,salt,8,0.90 1581 | 1580,1581,expand,7,0.94 1582 | 1581,1582,importance,8,0.89 1583 | 1582,1583,metal,7,0.95 1584 | 1583,1584,fat,8,0.89 1585 | 1584,1585,ticket,7,0.92 1586 | 1585,1586,software,7,0.92 1587 | 1586,1587,disappear,7,0.94 1588 | 1587,1588,corporate,7,0.93 1589 | 1588,1589,strange,7,0.93 1590 | 1589,1590,lip,8,0.87 1591 | 1590,1591,reading,7,0.92 1592 | 1591,1592,urban,7,0.92 1593 | 1592,1593,mental,7,0.93 1594 | 1593,1594,increasingly,7,0.93 1595 | 1594,1595,lunch,7,0.94 1596 | 1595,1596,educational,8,0.87 1597 | 1596,1597,somewhere,7,0.93 1598 | 1597,1598,farmer,7,0.95 1599 | 1598,1599,above,7,0.92 1600 | 1599,1600,sugar,8,0.90 1601 | 1600,1601,planet,7,0.93 1602 | 1601,1602,favorite,7,0.94 1603 | 1602,1603,explore,7,0.92 1604 | 1603,1604,obtain,8,0.89 1605 | 1604,1605,enemy,7,0.97 1606 | 1605,1606,greatest,7,0.96 1607 | 1606,1607,complex,7,0.92 1608 | 1607,1608,surround,7,0.97 1609 | 1608,1609,athlete,7,0.91 1610 | 1609,1610,invite,7,0.98 1611 | 1610,1611,repeat,7,0.96 1612 | 1611,1612,carefully,7,0.95 1613 | 1612,1613,soul,7,0.96 1614 | 1613,1614,scientific,7,0.92 1615 | 1614,1615,impossible,7,0.98 1616 | 1615,1616,panel,7,0.96 1617 | 1616,1617,meaning,8,0.90 1618 | 1617,1618,mom,7,0.92 1619 | 1618,1619,married,7,0.97 1620 | 1619,1620,alone,7,0.93 1621 | 1620,1621,instrument,7,0.91 1622 | 1621,1622,predict,7,0.94 1623 | 1622,1623,weather,7,0.95 1624 | 1623,1624,presidential,8,0.89 1625 | 1624,1625,emotional,7,0.94 1626 | 1625,1626,commitment,7,0.93 1627 | 1626,1627,Supreme,7,0.90 1628 | 1627,1628,bear,7,0.97 1629 | 1628,1629,pocket,7,0.91 1630 | 1629,1630,thin,7,0.92 1631 | 1630,1631,temperature,7,0.93 1632 | 1631,1632,surprise,7,0.96 1633 | 1632,1633,poll,8,0.89 1634 | 1633,1634,proposal,7,0.94 1635 | 1634,1635,consequence,7,0.92 1636 | 1635,1636,half,7,0.97 1637 | 1636,1637,breath,8,0.87 1638 | 1637,1638,sight,7,0.93 1639 | 1638,1639,cover,7,0.96 1640 | 1639,1640,balance,7,0.96 1641 | 1640,1641,adopt,7,0.93 1642 | 1641,1642,minority,7,0.92 1643 | 1642,1643,straight,7,0.93 1644 | 1643,1644,attempt,7,0.93 1645 | 1644,1645,connect,7,0.96 1646 | 1645,1646,works,7,0.93 1647 | 1646,1647,teaching,8,0.87 1648 | 1647,1648,belong,7,0.97 1649 | 1648,1649,aid,7,0.93 1650 | 1649,1650,advice,7,0.96 1651 | 1650,1651,okay,8,0.87 1652 | 1651,1652,photograph,7,0.96 1653 | 1652,1653,empty,7,0.90 1654 | 1653,1654,regional,7,0.91 1655 | 1654,1655,trail,7,0.91 1656 | 1655,1656,novel,7,0.94 1657 | 1656,1657,code,7,0.95 1658 | 1657,1658,somehow,7,0.94 1659 | 1658,1659,organize,7,0.94 1660 | 1659,1660,jury,8,0.87 1661 | 1660,1661,breast,7,0.94 1662 | 1661,1662,Iraqi,8,0.82 1663 | 1662,1663,human,7,0.95 1664 | 1663,1664,acknowledge,7,0.95 1665 | 1664,1665,theme,7,0.93 1666 | 1665,1666,storm,7,0.93 1667 | 1666,1667,union,7,0.93 1668 | 1667,1668,record,7,0.95 1669 | 1668,1669,desk,7,0.89 1670 | 1669,1670,fear,7,0.98 1671 | 1670,1671,thanks,7,0.90 1672 | 1671,1672,fruit,7,0.93 1673 | 1672,1673,under,7,0.97 1674 | 1673,1674,expensive,7,0.96 1675 | 1674,1675,yellow,7,0.93 1676 | 1675,1676,conclusion,7,0.90 1677 | 1676,1677,prime,7,0.94 1678 | 1677,1678,shadow,7,0.91 1679 | 1678,1679,struggle,7,0.97 1680 | 1679,1680,conclude,7,0.93 1681 | 1680,1681,analyst,7,0.91 1682 | 1681,1682,dance,7,0.95 1683 | 1682,1683,limit,7,0.95 1684 | 1683,1684,like,7,0.95 1685 | 1684,1685,regulation,7,0.92 1686 | 1685,1686,being,7,0.95 1687 | 1686,1687,last,7,0.97 1688 | 1687,1688,ring,7,0.94 1689 | 1688,1689,largely,7,0.93 1690 | 1689,1690,shift,7,0.96 1691 | 1690,1691,revenue,7,0.92 1692 | 1691,1692,mark,7,0.97 1693 | 1692,1693,locate,7,0.94 1694 | 1693,1694,county,7,0.90 1695 | 1694,1695,appearance,7,0.97 1696 | 1695,1696,package,7,0.95 1697 | 1696,1697,difficulty,7,0.92 1698 | 1697,1698,bridge,7,0.95 1699 | 1698,1699,recommend,7,0.94 1700 | 1699,1700,obvious,7,0.97 1701 | 1700,1701,train,7,0.94 1702 | 1701,1702,basically,7,0.88 1703 | 1702,1703,e-mail,7,0.91 1704 | 1703,1704,generate,7,0.92 1705 | 1704,1705,anymore,7,0.94 1706 | 1705,1706,propose,7,0.94 1707 | 1706,1707,thinking,7,0.94 1708 | 1707,1708,possibly,6,0.97 1709 | 1708,1709,trend,7,0.93 1710 | 1709,1710,visitor,7,0.95 1711 | 1710,1711,loan,7,0.91 1712 | 1711,1712,currently,7,0.94 1713 | 1712,1713,comfortable,7,0.96 1714 | 1713,1714,investor,7,0.91 1715 | 1714,1715,but,6,0.97 1716 | 1715,1716,profit,7,0.93 1717 | 1716,1717,angry,7,0.94 1718 | 1717,1718,crew,7,0.95 1719 | 1718,1719,deep,7,0.95 1720 | 1719,1720,accident,6,0.97 1721 | 1720,1721,male,7,0.90 1722 | 1721,1722,meal,7,0.94 1723 | 1722,1723,hearing,7,0.94 1724 | 1723,1724,traffic,7,0.95 1725 | 1724,1725,muscle,7,0.92 1726 | 1725,1726,notion,7,0.93 1727 | 1726,1727,capture,7,0.96 1728 | 1727,1728,prefer,6,0.96 1729 | 1728,1729,truly,6,0.98 1730 | 1729,1730,earth,7,0.94 1731 | 1730,1731,Japanese,7,0.92 1732 | 1731,1732,chest,7,0.89 1733 | 1732,1733,search,6,0.96 1734 | 1733,1734,thick,7,0.92 1735 | 1734,1735,cash,7,0.94 1736 | 1735,1736,museum,7,0.93 1737 | 1736,1737,beauty,7,0.95 1738 | 1737,1738,emergency,6,0.96 1739 | 1738,1739,unique,7,0.93 1740 | 1739,1740,feature,7,0.92 1741 | 1740,1741,internal,7,0.91 1742 | 1741,1742,ethnic,7,0.88 1743 | 1742,1743,link,7,0.94 1744 | 1743,1744,stress,7,0.92 1745 | 1744,1745,content,7,0.91 1746 | 1745,1746,select,7,0.92 1747 | 1746,1747,root,6,0.96 1748 | 1747,1748,nose,7,0.91 1749 | 1748,1749,declare,6,0.97 1750 | 1749,1750,outside,7,0.92 1751 | 1750,1751,appreciate,6,0.95 1752 | 1751,1752,actual,7,0.93 1753 | 1752,1753,bottle,7,0.92 1754 | 1753,1754,hardly,6,0.95 1755 | 1754,1755,setting,7,0.90 1756 | 1755,1756,launch,6,0.95 1757 | 1756,1757,dress,7,0.92 1758 | 1757,1758,file,6,0.95 1759 | 1758,1759,sick,6,0.94 1760 | 1759,1760,outcome,7,0.87 1761 | 1760,1761,ad,7,0.93 1762 | 1761,1762,defend,6,0.96 1763 | 1762,1763,matter,6,0.96 1764 | 1763,1764,judge,6,0.97 1765 | 1764,1765,duty,6,0.97 1766 | 1765,1766,sheet,6,0.94 1767 | 1766,1767,ought,7,0.91 1768 | 1767,1768,ensure,7,0.92 1769 | 1768,1769,Catholic,6,0.94 1770 | 1769,1770,extremely,6,0.96 1771 | 1770,1771,extent,7,0.90 1772 | 1771,1772,component,7,0.88 1773 | 1772,1773,mix,6,0.95 1774 | 1773,1774,long-term,6,0.94 1775 | 1774,1775,slow,6,0.96 1776 | 1775,1776,contrast,7,0.91 1777 | 1776,1777,zone,6,0.95 1778 | 1777,1778,wake,7,0.91 1779 | 1778,1779,challenge,6,0.95 1780 | 1779,1780,airport,6,0.93 1781 | 1780,1781,chief,6,0.95 1782 | 1781,1782,brown,7,0.92 1783 | 1782,1783,standard,6,0.93 1784 | 1783,1784,shirt,7,0.90 1785 | 1784,1785,pilot,6,0.96 1786 | 1785,1786,warn,6,0.97 1787 | 1786,1787,ultimately,6,0.95 1788 | 1787,1788,cat,7,0.92 1789 | 1788,1789,contribution,6,0.92 1790 | 1789,1790,capacity,7,0.92 1791 | 1790,1791,ourselves,6,0.97 1792 | 1791,1792,estate,6,0.93 1793 | 1792,1793,guide,6,0.93 1794 | 1793,1794,circumstance,6,0.95 1795 | 1794,1795,snow,7,0.92 1796 | 1795,1796,English,6,0.95 1797 | 1796,1797,politician,6,0.95 1798 | 1797,1798,steal,6,0.95 1799 | 1798,1799,pursue,6,0.96 1800 | 1799,1800,slip,7,0.91 1801 | 1800,1801,percentage,6,0.92 1802 | 1801,1802,meat,6,0.95 1803 | 1802,1803,funny,6,0.94 1804 | 1803,1804,neither,6,0.95 1805 | 1804,1805,soil,6,0.91 1806 | 1805,1806,influence,7,0.89 1807 | 1806,1807,surgery,6,0.95 1808 | 1807,1808,correct,6,0.93 1809 | 1808,1809,Jewish,6,0.94 1810 | 1809,1810,blame,6,0.96 1811 | 1810,1811,estimate,6,0.93 1812 | 1811,1812,due,7,0.90 1813 | 1812,1813,basketball,6,0.91 1814 | 1813,1814,late,6,0.96 1815 | 1814,1815,golf,6,0.91 1816 | 1815,1816,investigate,6,0.94 1817 | 1816,1817,crazy,6,0.93 1818 | 1817,1818,significantly,7,0.86 1819 | 1818,1819,chain,6,0.96 1820 | 1819,1820,address,6,0.97 1821 | 1820,1821,branch,6,0.96 1822 | 1821,1822,combination,6,0.94 1823 | 1822,1823,just,6,0.94 1824 | 1823,1824,frequently,6,0.92 1825 | 1824,1825,governor,6,0.91 1826 | 1825,1826,relief,6,0.97 1827 | 1826,1827,user,6,0.91 1828 | 1827,1828,dad,6,0.94 1829 | 1828,1829,kick,6,0.94 1830 | 1829,1830,part,6,0.95 1831 | 1830,1831,manner,6,0.94 1832 | 1831,1832,ancient,6,0.95 1833 | 1832,1833,silence,7,0.89 1834 | 1833,1834,rating,6,0.92 1835 | 1834,1835,golden,6,0.95 1836 | 1835,1836,motion,6,0.95 1837 | 1836,1837,German,6,0.93 1838 | 1837,1838,gender,7,0.85 1839 | 1838,1839,solve,6,0.96 1840 | 1839,1840,fee,6,0.93 1841 | 1840,1841,landscape,6,0.93 1842 | 1841,1842,used,6,0.98 1843 | 1842,1843,bowl,6,0.91 1844 | 1843,1844,equal,6,0.94 1845 | 1844,1845,long,6,0.97 1846 | 1845,1846,official,6,0.95 1847 | 1846,1847,forth,6,0.96 1848 | 1847,1848,frame,6,0.93 1849 | 1848,1849,typical,6,0.95 1850 | 1849,1850,except,6,0.95 1851 | 1850,1851,conservative,6,0.94 1852 | 1851,1852,eliminate,6,0.94 1853 | 1852,1853,host,6,0.96 1854 | 1853,1854,hall,6,0.92 1855 | 1854,1855,trust,6,0.95 1856 | 1855,1856,ocean,6,0.96 1857 | 1856,1857,score,6,0.91 1858 | 1857,1858,row,6,0.95 1859 | 1858,1859,producer,6,0.94 1860 | 1859,1860,afford,6,0.97 1861 | 1860,1861,meanwhile,6,0.95 1862 | 1861,1862,regime,7,0.88 1863 | 1862,1863,division,6,0.94 1864 | 1863,1864,confirm,6,0.96 1865 | 1864,1865,fix,6,0.96 1866 | 1865,1866,appeal,6,0.95 1867 | 1866,1867,mirror,6,0.92 1868 | 1867,1868,tooth,6,0.90 1869 | 1868,1869,smart,6,0.95 1870 | 1869,1870,length,6,0.94 1871 | 1870,1871,entirely,6,0.97 1872 | 1871,1872,rely,6,0.94 1873 | 1872,1873,topic,6,0.89 1874 | 1873,1874,complain,6,0.97 1875 | 1874,1875,issue,6,0.95 1876 | 1875,1876,variable,7,0.81 1877 | 1876,1877,back,6,0.96 1878 | 1877,1878,range,6,0.92 1879 | 1878,1879,telephone,6,0.95 1880 | 1879,1880,perception,7,0.87 1881 | 1880,1881,attract,6,0.96 1882 | 1881,1882,confidence,6,0.97 1883 | 1882,1883,bedroom,6,0.90 1884 | 1883,1884,secret,6,0.96 1885 | 1884,1885,debt,6,0.94 1886 | 1885,1886,rare,6,0.97 1887 | 1886,1887,his,6,0.93 1888 | 1887,1888,tank,6,0.95 1889 | 1888,1889,nurse,6,0.94 1890 | 1889,1890,coverage,6,0.94 1891 | 1890,1891,opposition,6,0.92 1892 | 1891,1892,aside,6,0.96 1893 | 1892,1893,anywhere,6,0.96 1894 | 1893,1894,bond,6,0.92 1895 | 1894,1895,file,6,0.94 1896 | 1895,1896,pleasure,6,0.96 1897 | 1896,1897,master,6,0.96 1898 | 1897,1898,era,6,0.95 1899 | 1898,1899,requirement,6,0.89 1900 | 1899,1900,check,6,0.97 1901 | 1900,1901,stand,6,0.96 1902 | 1901,1902,fun,6,0.96 1903 | 1902,1903,expectation,6,0.92 1904 | 1903,1904,wing,6,0.95 1905 | 1904,1905,separate,6,0.95 1906 | 1905,1906,now,6,0.95 1907 | 1906,1907,clear,6,0.95 1908 | 1907,1908,struggle,6,0.95 1909 | 1908,1909,mean,6,0.91 1910 | 1909,1910,somewhat,6,0.96 1911 | 1910,1911,pour,6,0.93 1912 | 1911,1912,stir,6,0.89 1913 | 1912,1913,judgment,6,0.93 1914 | 1913,1914,clean,6,0.96 1915 | 1914,1915,except,6,0.95 1916 | 1915,1916,beer,6,0.93 1917 | 1916,1917,English,6,0.96 1918 | 1917,1918,reference,6,0.92 1919 | 1918,1919,tear,6,0.90 1920 | 1919,1920,doubt,6,0.97 1921 | 1920,1921,grant,6,0.96 1922 | 1921,1922,seriously,6,0.98 1923 | 1922,1923,account,6,0.92 1924 | 1923,1924,minister,6,0.93 1925 | 1924,1925,totally,6,0.95 1926 | 1925,1926,hero,6,0.97 1927 | 1926,1927,industrial,6,0.92 1928 | 1927,1928,cloud,6,0.92 1929 | 1928,1929,stretch,6,0.93 1930 | 1929,1930,winner,6,0.92 1931 | 1930,1931,volume,6,0.93 1932 | 1931,1932,travel,6,0.95 1933 | 1932,1933,seed,6,0.93 1934 | 1933,1934,surprised,6,0.94 1935 | 1934,1935,rest,6,0.94 1936 | 1935,1936,fashion,6,0.96 1937 | 1936,1937,pepper,6,0.87 1938 | 1937,1938,separate,6,0.97 1939 | 1938,1939,busy,6,0.95 1940 | 1939,1940,intervention,7,0.84 1941 | 1940,1941,copy,6,0.97 1942 | 1941,1942,tip,6,0.93 1943 | 1942,1943,below,6,0.96 1944 | 1943,1944,cheap,6,0.96 1945 | 1944,1945,aim,6,0.97 1946 | 1945,1946,cite,6,0.93 1947 | 1946,1947,welfare,6,0.90 1948 | 1947,1948,vegetable,6,0.91 1949 | 1948,1949,gray,6,0.90 1950 | 1949,1950,dish,6,0.93 1951 | 1950,1951,beach,6,0.95 1952 | 1951,1952,improvement,6,0.92 1953 | 1952,1953,everywhere,6,0.96 1954 | 1953,1954,opening,6,0.97 1955 | 1954,1955,overall,6,0.92 1956 | 1955,1956,divide,6,0.95 1957 | 1956,1957,initial,6,0.92 1958 | 1957,1958,terrible,6,0.93 1959 | 1958,1959,oppose,6,0.94 1960 | 1959,1960,contemporary,6,0.90 1961 | 1960,1961,route,6,0.95 1962 | 1961,1962,multiple,6,0.89 1963 | 1962,1963,essential,6,0.91 1964 | 1963,1964,question,5,0.97 1965 | 1964,1965,league,6,0.88 1966 | 1965,1966,criminal,6,0.94 1967 | 1966,1967,careful,5,0.97 1968 | 1967,1968,core,6,0.93 1969 | 1968,1969,upper,6,0.95 1970 | 1969,1970,rush,6,0.93 1971 | 1970,1971,necessarily,6,0.94 1972 | 1971,1972,specifically,6,0.92 1973 | 1972,1973,tired,6,0.93 1974 | 1973,1974,rise,6,0.96 1975 | 1974,1975,tie,5,0.97 1976 | 1975,1976,employ,6,0.91 1977 | 1976,1977,holiday,6,0.94 1978 | 1977,1978,dance,6,0.94 1979 | 1978,1979,vast,5,0.96 1980 | 1979,1980,resolution,6,0.91 1981 | 1980,1981,household,6,0.93 1982 | 1981,1982,fewer,6,0.94 1983 | 1982,1983,abortion,6,0.91 1984 | 1983,1984,apart,5,0.96 1985 | 1984,1985,witness,6,0.91 1986 | 1985,1986,match,5,0.97 1987 | 1986,1987,barely,6,0.93 1988 | 1987,1988,sector,6,0.90 1989 | 1988,1989,representative,6,0.94 1990 | 1989,1990,lack,6,0.94 1991 | 1990,1991,beneath,6,0.90 1992 | 1991,1992,beside,6,0.86 1993 | 1992,1993,black,6,0.93 1994 | 1993,1994,incident,5,0.96 1995 | 1994,1995,limited,6,0.92 1996 | 1995,1996,proud,5,0.96 1997 | 1996,1997,flow,6,0.92 1998 | 1997,1998,faculty,6,0.85 1999 | 1998,1999,increased,6,0.90 2000 | 1999,2000,waste,6,0.89 2001 | 2000,2001,merely,6,0.94 2002 | 2001,2002,mass,6,0.94 2003 | 2002,2003,emphasize,6,0.90 2004 | 2003,2004,experiment,6,0.92 2005 | 2004,2005,definitely,6,0.93 2006 | 2005,2006,bomb,6,0.93 2007 | 2006,2007,enormous,5,0.97 2008 | 2007,2008,tone,5,0.95 2009 | 2008,2009,liberal,6,0.93 2010 | 2009,2010,massive,5,0.97 2011 | 2010,2011,engineer,5,0.94 2012 | 2011,2012,wheel,6,0.93 2013 | 2012,2013,female,6,0.90 2014 | 2013,2014,decline,6,0.94 2015 | 2014,2015,invest,6,0.94 2016 | 2015,2016,promise,5,0.98 2017 | 2016,2017,cable,6,0.93 2018 | 2017,2018,towards,6,0.93 2019 | 2018,2019,expose,5,0.96 2020 | 2019,2020,rural,6,0.91 2021 | 2020,2021,AIDS,6,0.87 2022 | 2021,2022,Jew,5,0.95 2023 | 2022,2023,narrow,5,0.95 2024 | 2023,2024,cream,6,0.92 2025 | 2024,2025,secretary,5,0.94 2026 | 2025,2026,gate,5,0.94 2027 | 2026,2027,solid,5,0.96 2028 | 2027,2028,hill,6,0.93 2029 | 2028,2029,typically,6,0.92 2030 | 2029,2030,noise,6,0.93 2031 | 2030,2031,grass,6,0.93 2032 | 2031,2032,unfortunately,5,0.96 2033 | 2032,2033,hat,6,0.92 2034 | 2033,2034,legislation,5,0.94 2035 | 2034,2035,succeed,5,0.96 2036 | 2035,2036,either,5,0.97 2037 | 2036,2037,celebrate,5,0.96 2038 | 2037,2038,achievement,6,0.88 2039 | 2038,2039,fishing,6,0.93 2040 | 2039,2040,drink,6,0.92 2041 | 2040,2041,accuse,5,0.94 2042 | 2041,2042,hand,6,0.92 2043 | 2042,2043,useful,6,0.92 2044 | 2043,2044,land,5,0.96 2045 | 2044,2045,secret,5,0.96 2046 | 2045,2046,reject,5,0.94 2047 | 2046,2047,talent,5,0.95 2048 | 2047,2048,taste,5,0.96 2049 | 2048,2049,characteristic,6,0.85 2050 | 2049,2050,milk,5,0.93 2051 | 2050,2051,escape,5,0.97 2052 | 2051,2052,cast,5,0.97 2053 | 2052,2053,sentence,5,0.97 2054 | 2053,2054,unusual,5,0.97 2055 | 2054,2055,closely,5,0.96 2056 | 2055,2056,convince,5,0.98 2057 | 2056,2057,height,5,0.95 2058 | 2057,2058,physician,5,0.93 2059 | 2058,2059,assess,6,0.86 2060 | 2059,2060,sleep,5,0.92 2061 | 2060,2061,plenty,5,0.95 2062 | 2061,2062,ride,5,0.93 2063 | 2062,2063,virtually,5,0.94 2064 | 2063,2064,first,5,0.95 2065 | 2064,2065,addition,5,0.93 2066 | 2065,2066,sharp,5,0.94 2067 | 2066,2067,creative,5,0.93 2068 | 2067,2068,lower,5,0.95 2069 | 2068,2069,behind,5,0.95 2070 | 2069,2070,approve,5,0.95 2071 | 2070,2071,explanation,5,0.92 2072 | 2071,2072,outside,5,0.97 2073 | 2072,2073,gay,5,0.94 2074 | 2073,2074,campus,5,0.93 2075 | 2074,2075,proper,5,0.96 2076 | 2075,2076,live,5,0.94 2077 | 2076,2077,guilty,5,0.93 2078 | 2077,2078,living,5,0.97 2079 | 2078,2079,acquire,5,0.93 2080 | 2079,2080,compete,5,0.94 2081 | 2080,2081,technical,5,0.92 2082 | 2081,2082,plus,5,0.94 2083 | 2082,2083,mind,5,0.93 2084 | 2083,2084,potential,5,0.92 2085 | 2084,2085,immigrant,5,0.92 2086 | 2085,2086,weak,5,0.97 2087 | 2086,2087,illegal,5,0.94 2088 | 2087,2088,hi,6,0.85 2089 | 2088,2089,alternative,5,0.94 2090 | 2089,2090,interaction,6,0.84 2091 | 2090,2091,column,5,0.96 2092 | 2091,2092,personality,5,0.95 2093 | 2092,2093,signal,5,0.95 2094 | 2093,2094,curriculum,6,0.84 2095 | 2094,2095,list,5,0.94 2096 | 2095,2096,honor,5,0.96 2097 | 2096,2097,passenger,5,0.95 2098 | 2097,2098,assistance,5,0.92 2099 | 2098,2099,forever,5,0.95 2100 | 2099,2100,fun,5,0.94 2101 | 2100,2101,regard,5,0.94 2102 | 2101,2102,Israeli,5,0.89 2103 | 2102,2103,association,5,0.90 2104 | 2103,2104,twenty,5,0.91 2105 | 2104,2105,knock,5,0.93 2106 | 2105,2106,review,5,0.94 2107 | 2106,2107,wrap,5,0.93 2108 | 2107,2108,lab,5,0.96 2109 | 2108,2109,offer,5,0.95 2110 | 2109,2110,display,5,0.94 2111 | 2110,2111,criticism,5,0.93 2112 | 2111,2112,asset,5,0.93 2113 | 2112,2113,depression,5,0.93 2114 | 2113,2114,spiritual,5,0.92 2115 | 2114,2115,musical,5,0.93 2116 | 2115,2116,journalist,5,0.93 2117 | 2116,2117,prayer,5,0.97 2118 | 2117,2118,suspect,5,0.97 2119 | 2118,2119,scholar,5,0.90 2120 | 2119,2120,warning,5,0.97 2121 | 2120,2121,climate,5,0.91 2122 | 2121,2122,cheese,5,0.90 2123 | 2122,2123,observation,5,0.90 2124 | 2123,2124,childhood,5,0.96 2125 | 2124,2125,payment,5,0.94 2126 | 2125,2126,sir,5,0.88 2127 | 2126,2127,permit,5,0.93 2128 | 2127,2128,cigarette,5,0.91 2129 | 2128,2129,definition,5,0.89 2130 | 2129,2130,priority,5,0.94 2131 | 2130,2131,bread,5,0.94 2132 | 2131,2132,creation,5,0.92 2133 | 2132,2133,graduate,5,0.93 2134 | 2133,2134,request,5,0.96 2135 | 2134,2135,emotion,5,0.97 2136 | 2135,2136,scream,5,0.90 2137 | 2136,2137,dramatic,5,0.96 2138 | 2137,2138,universe,5,0.94 2139 | 2138,2139,gap,5,0.96 2140 | 2139,2140,excellent,5,0.96 2141 | 2140,2141,deeply,5,0.98 2142 | 2141,2142,prosecutor,5,0.90 2143 | 2142,2143,mark,5,0.97 2144 | 2143,2144,green,5,0.92 2145 | 2144,2145,lucky,5,0.94 2146 | 2145,2146,drag,5,0.93 2147 | 2146,2147,airline,5,0.90 2148 | 2147,2148,library,5,0.95 2149 | 2148,2149,agenda,5,0.94 2150 | 2149,2150,recover,5,0.98 2151 | 2150,2151,factory,5,0.95 2152 | 2151,2152,selection,5,0.92 2153 | 2152,2153,primarily,5,0.91 2154 | 2153,2154,roof,5,0.93 2155 | 2154,2155,unable,5,0.97 2156 | 2155,2156,expense,5,0.94 2157 | 2156,2157,initiative,5,0.93 2158 | 2157,2158,diet,5,0.90 2159 | 2158,2159,arrest,5,0.94 2160 | 2159,2160,funding,5,0.94 2161 | 2160,2161,therapy,5,0.93 2162 | 2161,2162,wash,5,0.93 2163 | 2162,2163,schedule,5,0.95 2164 | 2163,2164,sad,5,0.94 2165 | 2164,2165,brief,5,0.96 2166 | 2165,2166,housing,5,0.93 2167 | 2166,2167,post,5,0.97 2168 | 2167,2168,purchase,5,0.94 2169 | 2168,2169,existing,5,0.91 2170 | 2169,2170,dark,5,0.90 2171 | 2170,2171,steel,5,0.95 2172 | 2171,2172,regarding,5,0.88 2173 | 2172,2173,shout,5,0.88 2174 | 2173,2174,remaining,5,0.95 2175 | 2174,2175,visual,5,0.87 2176 | 2175,2176,fairly,5,0.96 2177 | 2176,2177,chip,5,0.94 2178 | 2177,2178,violent,5,0.96 2179 | 2178,2179,silent,5,0.90 2180 | 2179,2180,suppose,5,0.91 2181 | 2180,2181,self,5,0.90 2182 | 2181,2182,bike,5,0.87 2183 | 2182,2183,tea,5,0.92 2184 | 2183,2184,perceive,5,0.88 2185 | 2184,2185,comparison,5,0.90 2186 | 2185,2186,settlement,5,0.93 2187 | 2186,2187,layer,5,0.92 2188 | 2187,2188,planning,5,0.91 2189 | 2188,2189,far,5,0.94 2190 | 2189,2190,description,5,0.91 2191 | 2190,2191,later,5,0.95 2192 | 2191,2192,slow,5,0.96 2193 | 2192,2193,slide,5,0.89 2194 | 2193,2194,widely,5,0.93 2195 | 2194,2195,wedding,5,0.94 2196 | 2195,2196,inform,5,0.95 2197 | 2196,2197,portion,5,0.95 2198 | 2197,2198,territory,5,0.94 2199 | 2198,2199,immediate,5,0.95 2200 | 2199,2200,opponent,5,0.94 2201 | 2200,2201,abandon,5,0.97 2202 | 2201,2202,link,5,0.94 2203 | 2202,2203,mass,5,0.93 2204 | 2203,2204,lake,5,0.94 2205 | 2204,2205,transform,5,0.94 2206 | 2205,2206,tension,5,0.95 2207 | 2206,2207,display,5,0.95 2208 | 2207,2208,leading,5,0.95 2209 | 2208,2209,bother,5,0.94 2210 | 2209,2210,consist,5,0.89 2211 | 2210,2211,alcohol,5,0.93 2212 | 2211,2212,enable,5,0.91 2213 | 2212,2213,bend,5,0.91 2214 | 2213,2214,saving,5,0.93 2215 | 2214,2215,gain,5,0.94 2216 | 2215,2216,desert,5,0.94 2217 | 2216,2217,shall,5,0.92 2218 | 2217,2218,error,5,0.93 2219 | 2218,2219,release,5,0.95 2220 | 2219,2220,cop,5,0.91 2221 | 2220,2221,Arab,5,0.88 2222 | 2221,2222,double,5,0.97 2223 | 2222,2223,walk,5,0.94 2224 | 2223,2224,sand,5,0.94 2225 | 2224,2225,Spanish,5,0.95 2226 | 2225,2226,rule,5,0.96 2227 | 2226,2227,hit,5,0.93 2228 | 2227,2228,print,5,0.94 2229 | 2228,2229,preserve,5,0.95 2230 | 2229,2230,passage,5,0.93 2231 | 2230,2231,formal,5,0.91 2232 | 2231,2232,transition,5,0.91 2233 | 2232,2233,existence,5,0.92 2234 | 2233,2234,album,5,0.92 2235 | 2234,2235,participation,5,0.85 2236 | 2235,2236,arrange,5,0.96 2237 | 2236,2237,atmosphere,5,0.95 2238 | 2237,2238,joint,5,0.95 2239 | 2238,2239,reply,5,0.89 2240 | 2239,2240,cycle,5,0.93 2241 | 2240,2241,opposite,5,0.94 2242 | 2241,2242,lock,5,0.93 2243 | 2242,2243,whole,5,0.94 2244 | 2243,2244,deserve,4,0.97 2245 | 2244,2245,consistent,5,0.89 2246 | 2245,2246,resistance,5,0.93 2247 | 2246,2247,discovery,5,0.95 2248 | 2247,2248,tear,5,0.93 2249 | 2248,2249,exposure,5,0.91 2250 | 2249,2250,pose,5,0.95 2251 | 2250,2251,stream,5,0.94 2252 | 2251,2252,sale,5,0.94 2253 | 2252,2253,trust,5,0.96 2254 | 2253,2254,benefit,5,0.94 2255 | 2254,2255,pot,5,0.94 2256 | 2255,2256,grand,5,0.93 2257 | 2256,2257,mine,5,0.92 2258 | 2257,2258,hello,5,0.87 2259 | 2258,2259,coalition,5,0.92 2260 | 2259,2260,tale,5,0.97 2261 | 2260,2261,knife,5,0.92 2262 | 2261,2262,resolve,5,0.95 2263 | 2262,2263,racial,5,0.92 2264 | 2263,2264,phase,5,0.90 2265 | 2264,2265,present,5,0.95 2266 | 2265,2266,joke,5,0.95 2267 | 2266,2267,coat,5,0.90 2268 | 2267,2268,Mexican,5,0.93 2269 | 2268,2269,symptom,5,0.91 2270 | 2269,2270,contact,5,0.94 2271 | 2270,2271,manufacturer,5,0.92 2272 | 2271,2272,philosophy,5,0.92 2273 | 2272,2273,potato,5,0.93 2274 | 2273,2274,interview,5,0.92 2275 | 2274,2275,foundation,5,0.94 2276 | 2275,2276,quote,5,0.93 2277 | 2276,2277,online,5,0.91 2278 | 2277,2278,pass,5,0.92 2279 | 2278,2279,negotiation,5,0.92 2280 | 2279,2280,good,5,0.94 2281 | 2280,2281,urge,4,0.96 2282 | 2281,2282,occasion,4,0.97 2283 | 2282,2283,dust,5,0.93 2284 | 2283,2284,breathe,5,0.91 2285 | 2284,2285,elect,5,0.93 2286 | 2285,2286,investigator,5,0.94 2287 | 2286,2287,jacket,5,0.91 2288 | 2287,2288,glad,5,0.92 2289 | 2288,2289,ordinary,4,0.97 2290 | 2289,2290,reduction,5,0.90 2291 | 2290,2291,rarely,4,0.96 2292 | 2291,2292,shift,5,0.94 2293 | 2292,2293,pack,5,0.94 2294 | 2293,2294,suicide,5,0.94 2295 | 2294,2295,numerous,5,0.93 2296 | 2295,2296,touch,4,0.95 2297 | 2296,2297,substance,5,0.89 2298 | 2297,2298,discipline,5,0.91 2299 | 2298,2299,elsewhere,4,0.95 2300 | 2299,2300,iron,5,0.94 2301 | 2300,2301,practical,5,0.93 2302 | 2301,2302,moreover,5,0.88 2303 | 2302,2303,passion,4,0.97 2304 | 2303,2304,volunteer,4,0.95 2305 | 2304,2305,implement,5,0.88 2306 | 2305,2306,essentially,5,0.94 2307 | 2306,2307,gene,5,0.92 2308 | 2307,2308,enforcement,5,0.94 2309 | 2308,2309,vs,5,0.88 2310 | 2309,2310,sauce,5,0.88 2311 | 2310,2311,independence,5,0.92 2312 | 2311,2312,marketing,5,0.92 2313 | 2312,2313,priest,4,0.94 2314 | 2313,2314,amazing,5,0.93 2315 | 2314,2315,intense,4,0.97 2316 | 2315,2316,advance,4,0.96 2317 | 2316,2317,employer,4,0.94 2318 | 2317,2318,shock,4,0.96 2319 | 2318,2319,inspire,4,0.95 2320 | 2319,2320,adjust,4,0.96 2321 | 2320,2321,retire,4,0.93 2322 | 2321,2322,sure,4,0.94 2323 | 2322,2323,visible,4,0.95 2324 | 2323,2324,kiss,5,0.87 2325 | 2324,2325,illness,4,0.95 2326 | 2325,2326,cap,4,0.95 2327 | 2326,2327,habit,4,0.96 2328 | 2327,2328,competitive,4,0.93 2329 | 2328,2329,juice,5,0.90 2330 | 2329,2330,congressional,4,0.93 2331 | 2330,2331,involvement,5,0.89 2332 | 2331,2332,dominate,4,0.94 2333 | 2332,2333,previously,5,0.92 2334 | 2333,2334,whenever,4,0.96 2335 | 2334,2335,transfer,4,0.95 2336 | 2335,2336,analyze,5,0.89 2337 | 2336,2337,another,4,0.96 2338 | 2337,2338,attach,4,0.95 2339 | 2338,2339,for,4,0.95 2340 | 2339,2340,Indian,5,0.92 2341 | 2340,2341,disaster,4,0.95 2342 | 2341,2342,parking,4,0.93 2343 | 2342,2343,prospect,4,0.95 2344 | 2343,2344,boss,4,0.95 2345 | 2344,2345,complaint,4,0.95 2346 | 2345,2346,championship,5,0.86 2347 | 2346,2347,coach,5,0.87 2348 | 2347,2348,exercise,4,0.94 2349 | 2348,2349,fundamental,5,0.91 2350 | 2349,2350,severe,4,0.95 2351 | 2350,2351,enhance,5,0.90 2352 | 2351,2352,mystery,4,0.97 2353 | 2352,2353,impose,4,0.93 2354 | 2353,2354,poverty,4,0.93 2355 | 2354,2355,other,4,0.97 2356 | 2355,2356,entry,4,0.94 2357 | 2356,2357,fat,4,0.93 2358 | 2357,2358,spending,4,0.92 2359 | 2358,2359,king,4,0.95 2360 | 2359,2360,evaluate,5,0.87 2361 | 2360,2361,symbol,4,0.94 2362 | 2361,2362,still,4,0.96 2363 | 2362,2363,trade,4,0.94 2364 | 2363,2364,maker,4,0.94 2365 | 2364,2365,mood,4,0.96 2366 | 2365,2366,accomplish,4,0.96 2367 | 2366,2367,emphasis,5,0.89 2368 | 2367,2368,illustrate,5,0.91 2369 | 2368,2369,boot,5,0.91 2370 | 2369,2370,monitor,4,0.94 2371 | 2370,2371,Asian,4,0.92 2372 | 2371,2372,entertainment,4,0.94 2373 | 2372,2373,bean,4,0.91 2374 | 2373,2374,evaluation,5,0.84 2375 | 2374,2375,creature,4,0.92 2376 | 2375,2376,commander,4,0.94 2377 | 2376,2377,digital,5,0.90 2378 | 2377,2378,arrangement,4,0.94 2379 | 2378,2379,concentrate,4,0.96 2380 | 2379,2380,total,4,0.93 2381 | 2380,2381,usual,4,0.95 2382 | 2381,2382,anger,4,0.95 2383 | 2382,2383,psychological,5,0.89 2384 | 2383,2384,heavily,4,0.97 2385 | 2384,2385,peak,4,0.94 2386 | 2385,2386,approximately,5,0.89 2387 | 2386,2387,increasing,4,0.91 2388 | 2387,2388,disorder,4,0.92 2389 | 2388,2389,missile,5,0.89 2390 | 2389,2390,equally,4,0.94 2391 | 2390,2391,vary,4,0.90 2392 | 2391,2392,wire,4,0.95 2393 | 2392,2393,round,4,0.93 2394 | 2393,2394,distribution,5,0.89 2395 | 2394,2395,transportation,4,0.93 2396 | 2395,2396,holy,4,0.96 2397 | 2396,2397,ring,4,0.91 2398 | 2397,2398,twin,4,0.92 2399 | 2398,2399,command,4,0.96 2400 | 2399,2400,commission,4,0.94 2401 | 2400,2401,interpretation,5,0.86 2402 | 2401,2402,breakfast,4,0.93 2403 | 2402,2403,stop,4,0.95 2404 | 2403,2404,strongly,4,0.93 2405 | 2404,2405,engineering,4,0.90 2406 | 2405,2406,luck,4,0.95 2407 | 2406,2407,so-called,4,0.96 2408 | 2407,2408,constant,4,0.95 2409 | 2408,2409,race,4,0.94 2410 | 2409,2410,clinic,4,0.96 2411 | 2410,2411,veteran,4,0.93 2412 | 2411,2412,smell,5,0.88 2413 | 2412,2413,tablespoon,5,0.85 2414 | 2413,2414,capable,4,0.96 2415 | 2414,2415,nervous,4,0.95 2416 | 2415,2416,tourist,4,0.96 2417 | 2416,2417,light,4,0.91 2418 | 2417,2418,toss,4,0.92 2419 | 2418,2419,crucial,4,0.94 2420 | 2419,2420,bury,4,0.95 2421 | 2420,2421,pray,4,0.95 2422 | 2421,2422,tomato,4,0.89 2423 | 2422,2423,exception,4,0.94 2424 | 2423,2424,butter,4,0.90 2425 | 2424,2425,deficit,5,0.88 2426 | 2425,2426,bathroom,4,0.90 2427 | 2426,2427,objective,5,0.88 2428 | 2427,2428,block,4,0.97 2429 | 2428,2429,electronic,4,0.94 2430 | 2429,2430,ally,4,0.94 2431 | 2430,2431,journey,4,0.97 2432 | 2431,2432,reputation,4,0.96 2433 | 2432,2433,mixture,4,0.89 2434 | 2433,2434,surely,4,0.95 2435 | 2434,2435,tower,4,0.95 2436 | 2435,2436,smoke,4,0.92 2437 | 2436,2437,confront,4,0.96 2438 | 2437,2438,pure,4,0.96 2439 | 2438,2439,glance,5,0.82 2440 | 2439,2440,dimension,4,0.88 2441 | 2440,2441,toy,4,0.94 2442 | 2441,2442,prisoner,4,0.94 2443 | 2442,2443,fellow,4,0.97 2444 | 2443,2444,smooth,4,0.93 2445 | 2444,2445,nearby,4,0.95 2446 | 2445,2446,peer,4,0.89 2447 | 2446,2447,designer,4,0.92 2448 | 2447,2448,personnel,4,0.93 2449 | 2448,2449,shape,4,0.94 2450 | 2449,2450,educator,5,0.85 2451 | 2450,2451,relative,4,0.97 2452 | 2451,2452,immigration,4,0.90 2453 | 2452,2453,belt,4,0.94 2454 | 2453,2454,teaspoon,5,0.83 2455 | 2454,2455,birthday,4,0.95 2456 | 2455,2456,implication,4,0.88 2457 | 2456,2457,perfectly,4,0.95 2458 | 2457,2458,coast,4,0.96 2459 | 2458,2459,supporter,4,0.93 2460 | 2459,2460,accompany,4,0.95 2461 | 2460,2461,silver,4,0.92 2462 | 2461,2462,teenager,4,0.95 2463 | 2462,2463,recognition,4,0.91 2464 | 2463,2464,retirement,4,0.93 2465 | 2464,2465,flag,4,0.95 2466 | 2465,2466,recovery,4,0.95 2467 | 2466,2467,whisper,5,0.84 2468 | 2467,2468,watch,4,0.93 2469 | 2468,2469,gentleman,4,0.88 2470 | 2469,2470,corn,4,0.94 2471 | 2470,2471,moon,4,0.92 2472 | 2471,2472,inner,4,0.95 2473 | 2472,2473,junior,4,0.93 2474 | 2473,2474,rather,4,0.95 2475 | 2474,2475,throat,4,0.88 2476 | 2475,2476,salary,4,0.93 2477 | 2476,2477,swing,4,0.90 2478 | 2477,2478,observer,4,0.93 2479 | 2478,2479,due,4,0.97 2480 | 2479,2480,straight,4,0.96 2481 | 2480,2481,publication,4,0.92 2482 | 2481,2482,pretty,4,0.92 2483 | 2482,2483,crop,4,0.94 2484 | 2483,2484,dig,4,0.94 2485 | 2484,2485,strike,4,0.94 2486 | 2485,2486,permanent,4,0.96 2487 | 2486,2487,plant,4,0.95 2488 | 2487,2488,phenomenon,4,0.91 2489 | 2488,2489,anxiety,4,0.91 2490 | 2489,2490,unlike,4,0.97 2491 | 2490,2491,wet,4,0.92 2492 | 2491,2492,literally,4,0.95 2493 | 2492,2493,resist,4,0.96 2494 | 2493,2494,convention,4,0.88 2495 | 2494,2495,embrace,4,0.97 2496 | 2495,2496,supply,4,0.95 2497 | 2496,2497,assist,4,0.93 2498 | 2497,2498,exhibition,4,0.91 2499 | 2498,2499,construct,4,0.89 2500 | 2499,2500,viewer,4,0.94 2501 | 2500,2501,pan,4,0.90 2502 | 2501,2502,consultant,4,0.93 2503 | 2502,2503,soon,4,0.94 2504 | 2503,2504,line,4,0.95 2505 | 2504,2505,administrator,4,0.90 2506 | 2505,2506,date,4,0.96 2507 | 2506,2507,occasionally,4,0.95 2508 | 2507,2508,mayor,4,0.91 2509 | 2508,2509,consideration,4,0.90 2510 | 2509,2510,CEO,4,0.91 2511 | 2510,2511,secure,4,0.96 2512 | 2511,2512,pink,4,0.91 2513 | 2512,2513,smoke,4,0.94 2514 | 2513,2514,estimate,4,0.92 2515 | 2514,2515,buck,4,0.92 2516 | 2515,2516,historic,4,0.94 2517 | 2516,2517,poem,4,0.92 2518 | 2517,2518,grandmother,4,0.92 2519 | 2518,2519,bind,4,0.96 2520 | 2519,2520,fifth,4,0.96 2521 | 2520,2521,constantly,4,0.97 2522 | 2521,2522,enterprise,4,0.93 2523 | 2522,2523,favor,4,0.95 2524 | 2523,2524,testing,4,0.92 2525 | 2524,2525,stomach,4,0.91 2526 | 2525,2526,apparent,4,0.93 2527 | 2526,2527,weigh,4,0.96 2528 | 2527,2528,install,4,0.92 2529 | 2528,2529,sensitive,4,0.96 2530 | 2529,2530,suggestion,4,0.95 2531 | 2530,2531,mail,4,0.96 2532 | 2531,2532,recipe,4,0.90 2533 | 2532,2533,reasonable,4,0.95 2534 | 2533,2534,preparation,4,0.92 2535 | 2534,2535,wooden,4,0.92 2536 | 2535,2536,elementary,4,0.90 2537 | 2536,2537,concert,4,0.94 2538 | 2537,2538,aggressive,4,0.95 2539 | 2538,2539,false,4,0.97 2540 | 2539,2540,intention,4,0.94 2541 | 2540,2541,channel,4,0.96 2542 | 2541,2542,extreme,4,0.95 2543 | 2542,2543,tube,4,0.93 2544 | 2543,2544,drawing,4,0.93 2545 | 2544,2545,protein,4,0.89 2546 | 2545,2546,quit,4,0.95 2547 | 2546,2547,absence,4,0.92 2548 | 2547,2548,roll,4,0.95 2549 | 2548,2549,Latin,4,0.90 2550 | 2549,2550,rapidly,4,0.95 2551 | 2550,2551,jail,4,0.93 2552 | 2551,2552,comment,4,0.96 2553 | 2552,2553,diversity,4,0.89 2554 | 2553,2554,honest,4,0.96 2555 | 2554,2555,Palestinian,4,0.88 2556 | 2555,2556,pace,4,0.96 2557 | 2556,2557,employment,4,0.90 2558 | 2557,2558,speaker,4,0.96 2559 | 2558,2559,impression,4,0.97 2560 | 2559,2560,essay,4,0.89 2561 | 2560,2561,respondent,5,0.82 2562 | 2561,2562,giant,4,0.95 2563 | 2562,2563,cake,4,0.92 2564 | 2563,2564,historian,4,0.92 2565 | 2564,2565,negotiate,4,0.94 2566 | 2565,2566,restore,4,0.96 2567 | 2566,2567,substantial,4,0.92 2568 | 2567,2568,pop,4,0.93 2569 | 2568,2569,particular,4,0.92 2570 | 2569,2570,specialist,4,0.94 2571 | 2570,2571,origin,4,0.90 2572 | 2571,2572,approval,4,0.96 2573 | 2572,2573,mine,4,0.95 2574 | 2573,2574,quietly,4,0.91 2575 | 2574,2575,advise,4,0.96 2576 | 2575,2576,conventional,4,0.93 2577 | 2576,2577,drop,4,0.96 2578 | 2577,2578,count,4,0.94 2579 | 2578,2579,depth,4,0.95 2580 | 2579,2580,wealth,4,0.95 2581 | 2580,2581,disability,4,0.86 2582 | 2581,2582,shell,4,0.94 2583 | 2582,2583,general,4,0.92 2584 | 2583,2584,criticize,4,0.94 2585 | 2584,2585,fast,4,0.96 2586 | 2585,2586,professional,4,0.91 2587 | 2586,2587,effectively,4,0.92 2588 | 2587,2588,biological,4,0.92 2589 | 2588,2589,pack,4,0.92 2590 | 2589,2590,onion,4,0.88 2591 | 2590,2591,deputy,4,0.94 2592 | 2591,2592,flat,4,0.94 2593 | 2592,2593,brand,4,0.93 2594 | 2593,2594,assure,4,0.97 2595 | 2594,2595,mad,4,0.94 2596 | 2595,2596,award,4,0.94 2597 | 2596,2597,criteria,4,0.86 2598 | 2597,2598,dealer,4,0.93 2599 | 2598,2599,via,4,0.93 2600 | 2599,2600,alternative,4,0.91 2601 | 2600,2601,utility,4,0.92 2602 | 2601,2602,precisely,4,0.94 2603 | 2602,2603,arise,4,0.91 2604 | 2603,2604,armed,4,0.93 2605 | 2604,2605,nevertheless,4,0.92 2606 | 2605,2606,highway,4,0.96 2607 | 2606,2607,clinical,4,0.89 2608 | 2607,2608,routine,4,0.96 2609 | 2608,2609,schedule,4,0.94 2610 | 2609,2610,wage,4,0.93 2611 | 2610,2611,normally,4,0.97 2612 | 2611,2612,phrase,4,0.96 2613 | 2612,2613,ingredient,4,0.90 2614 | 2613,2614,stake,4,0.96 2615 | 2614,2615,Muslim,4,0.92 2616 | 2615,2616,dream,4,0.93 2617 | 2616,2617,fiber,4,0.88 2618 | 2617,2618,activist,4,0.94 2619 | 2618,2619,Islamic,4,0.90 2620 | 2619,2620,snap,4,0.90 2621 | 2620,2621,terrorism,4,0.87 2622 | 2621,2622,refugee,4,0.92 2623 | 2622,2623,incorporate,4,0.90 2624 | 2623,2624,hip,4,0.93 2625 | 2624,2625,ultimate,4,0.95 2626 | 2625,2626,switch,4,0.95 2627 | 2626,2627,corporation,4,0.95 2628 | 2627,2628,valuable,4,0.94 2629 | 2628,2629,assumption,4,0.89 2630 | 2629,2630,gear,4,0.93 2631 | 2630,2631,graduate,4,0.95 2632 | 2631,2632,barrier,4,0.93 2633 | 2632,2633,minor,4,0.96 2634 | 2633,2634,provision,4,0.90 2635 | 2634,2635,killer,4,0.94 2636 | 2635,2636,assign,4,0.93 2637 | 2636,2637,gang,4,0.94 2638 | 2637,2638,developing,4,0.90 2639 | 2638,2639,classic,4,0.94 2640 | 2639,2640,chemical,4,0.94 2641 | 2640,2641,wave,4,0.87 2642 | 2641,2642,label,4,0.95 2643 | 2642,2643,teen,4,0.94 2644 | 2643,2644,index,4,0.93 2645 | 2644,2645,vacation,4,0.95 2646 | 2645,2646,advocate,4,0.94 2647 | 2646,2647,draft,4,0.93 2648 | 2647,2648,extraordinary,4,0.96 2649 | 2648,2649,heaven,4,0.95 2650 | 2649,2650,rough,4,0.96 2651 | 2650,2651,yell,4,0.90 2652 | 2651,2652,pregnant,4,0.96 2653 | 2652,2653,distant,4,0.94 2654 | 2653,2654,drama,4,0.95 2655 | 2654,2655,satellite,4,0.94 2656 | 2655,2656,personally,4,0.95 2657 | 2656,2657,wonder,4,0.96 2658 | 2657,2658,clock,4,0.95 2659 | 2658,2659,chocolate,4,0.92 2660 | 2659,2660,Italian,4,0.95 2661 | 2660,2661,Canadian,4,0.91 2662 | 2661,2662,ceiling,4,0.92 2663 | 2662,2663,sweep,4,0.94 2664 | 2663,2664,advertising,4,0.93 2665 | 2664,2665,universal,4,0.93 2666 | 2665,2666,spin,4,0.92 2667 | 2666,2667,house,4,0.95 2668 | 2667,2668,button,4,0.93 2669 | 2668,2669,bell,4,0.94 2670 | 2669,2670,rank,4,0.95 2671 | 2670,2671,darkness,4,0.88 2672 | 2671,2672,ahead,4,0.96 2673 | 2672,2673,clothing,4,0.96 2674 | 2673,2674,super,4,0.92 2675 | 2674,2675,yield,4,0.92 2676 | 2675,2676,fence,4,0.94 2677 | 2676,2677,portrait,4,0.94 2678 | 2677,2678,paint,4,0.91 2679 | 2678,2679,survival,4,0.94 2680 | 2679,2680,roughly,4,0.95 2681 | 2680,2681,lawsuit,4,0.91 2682 | 2681,2682,bottom,4,0.95 2683 | 2682,2683,testimony,4,0.91 2684 | 2683,2684,bunch,4,0.95 2685 | 2684,2685,beat,4,0.88 2686 | 2685,2686,wind,4,0.96 2687 | 2686,2687,found,4,0.93 2688 | 2687,2688,burden,4,0.96 2689 | 2688,2689,react,3,0.97 2690 | 2689,2690,chamber,4,0.96 2691 | 2690,2691,furniture,4,0.92 2692 | 2691,2692,cooperation,4,0.90 2693 | 2692,2693,string,3,0.96 2694 | 2693,2694,ceremony,3,0.97 2695 | 2694,2695,communicate,4,0.95 2696 | 2695,2696,taste,4,0.93 2697 | 2696,2697,cheek,4,0.86 2698 | 2697,2698,lost,3,0.97 2699 | 2698,2699,profile,4,0.95 2700 | 2699,2700,mechanism,4,0.89 2701 | 2700,2701,disagree,4,0.93 2702 | 2701,2702,like,4,0.87 2703 | 2702,2703,penalty,4,0.93 2704 | 2703,2704,match,4,0.95 2705 | 2704,2705,ie,4,0.83 2706 | 2705,2706,advance,4,0.95 2707 | 2706,2707,resort,4,0.92 2708 | 2707,2708,destruction,4,0.92 2709 | 2708,2709,bear,4,0.94 2710 | 2709,2710,unlikely,3,0.96 2711 | 2710,2711,tissue,4,0.92 2712 | 2711,2712,constitutional,4,0.91 2713 | 2712,2713,pant,4,0.91 2714 | 2713,2714,stranger,4,0.93 2715 | 2714,2715,infection,4,0.92 2716 | 2715,2716,cabinet,3,0.96 2717 | 2716,2717,broken,4,0.94 2718 | 2717,2718,apple,4,0.93 2719 | 2718,2719,electric,4,0.95 2720 | 2719,2720,proceed,3,0.96 2721 | 2720,2721,track,3,0.96 2722 | 2721,2722,bet,4,0.94 2723 | 2722,2723,literary,4,0.88 2724 | 2723,2724,virus,4,0.93 2725 | 2724,2725,stupid,4,0.91 2726 | 2725,2726,dispute,4,0.93 2727 | 2726,2727,fortune,3,0.96 2728 | 2727,2728,strategic,4,0.92 2729 | 2728,2729,assistant,3,0.96 2730 | 2729,2730,overcome,3,0.96 2731 | 2730,2731,remarkable,3,0.96 2732 | 2731,2732,occupy,3,0.96 2733 | 2732,2733,statistics,4,0.93 2734 | 2733,2734,shopping,3,0.94 2735 | 2734,2735,cousin,4,0.93 2736 | 2735,2736,encounter,3,0.94 2737 | 2736,2737,wipe,4,0.91 2738 | 2737,2738,initially,4,0.94 2739 | 2738,2739,blind,4,0.94 2740 | 2739,2740,white,3,0.95 2741 | 2740,2741,port,3,0.95 2742 | 2741,2742,honor,3,0.96 2743 | 2742,2743,electricity,3,0.94 2744 | 2743,2744,genetic,4,0.93 2745 | 2744,2745,adviser,4,0.93 2746 | 2745,2746,pay,3,0.94 2747 | 2746,2747,spokesman,4,0.88 2748 | 2747,2748,retain,4,0.93 2749 | 2748,2749,latter,4,0.89 2750 | 2749,2750,incentive,4,0.92 2751 | 2750,2751,slave,3,0.94 2752 | 2751,2752,chemical,4,0.93 2753 | 2752,2753,translate,3,0.95 2754 | 2753,2754,accurate,3,0.94 2755 | 2754,2755,whereas,4,0.88 2756 | 2755,2756,terror,4,0.90 2757 | 2756,2757,though,4,0.92 2758 | 2757,2758,expansion,4,0.92 2759 | 2758,2759,elite,4,0.90 2760 | 2759,2760,Olympic,4,0.85 2761 | 2760,2761,dirt,4,0.92 2762 | 2761,2762,odd,3,0.94 2763 | 2762,2763,rice,3,0.93 2764 | 2763,2764,bullet,3,0.95 2765 | 2764,2765,tight,3,0.95 2766 | 2765,2766,Bible,3,0.96 2767 | 2766,2767,chart,3,0.93 2768 | 2767,2768,solar,4,0.91 2769 | 2768,2769,decline,3,0.92 2770 | 2769,2770,conservative,3,0.92 2771 | 2770,2771,process,3,0.92 2772 | 2771,2772,square,3,0.95 2773 | 2772,2773,stick,3,0.94 2774 | 2773,2774,concentration,4,0.91 2775 | 2774,2775,complicated,3,0.98 2776 | 2775,2776,gently,4,0.90 2777 | 2776,2777,champion,4,0.90 2778 | 2777,2778,scenario,3,0.94 2779 | 2778,2779,telescope,4,0.86 2780 | 2779,2780,reflection,3,0.93 2781 | 2780,2781,revolution,3,0.93 2782 | 2781,2782,strip,3,0.95 2783 | 2782,2783,interpret,4,0.89 2784 | 2783,2784,friendly,3,0.97 2785 | 2784,2785,tournament,4,0.87 2786 | 2785,2786,fiction,3,0.94 2787 | 2786,2787,detect,3,0.93 2788 | 2787,2788,balance,3,0.95 2789 | 2788,2789,likely,3,0.95 2790 | 2789,2790,tremendous,3,0.94 2791 | 2790,2791,lifetime,3,0.97 2792 | 2791,2792,recommendation,3,0.93 2793 | 2792,2793,flow,3,0.96 2794 | 2793,2794,senator,4,0.91 2795 | 2794,2795,market,3,0.94 2796 | 2795,2796,hunting,4,0.90 2797 | 2796,2797,salad,4,0.90 2798 | 2797,2798,guarantee,3,0.96 2799 | 2798,2799,innocent,3,0.95 2800 | 2799,2800,boundary,4,0.90 2801 | 2800,2801,pause,4,0.87 2802 | 2801,2802,remote,3,0.96 2803 | 2802,2803,satisfaction,4,0.89 2804 | 2803,2804,journal,3,0.92 2805 | 2804,2805,bench,3,0.93 2806 | 2805,2806,lover,3,0.95 2807 | 2806,2807,raw,3,0.96 2808 | 2807,2808,awareness,4,0.91 2809 | 2808,2809,surprising,3,0.96 2810 | 2809,2810,withdraw,3,0.96 2811 | 2810,2811,general,3,0.96 2812 | 2811,2812,deck,3,0.92 2813 | 2812,2813,similarly,4,0.89 2814 | 2813,2814,newly,3,0.95 2815 | 2814,2815,pole,3,0.95 2816 | 2815,2816,testify,3,0.91 2817 | 2816,2817,mode,4,0.89 2818 | 2817,2818,dialogue,3,0.92 2819 | 2818,2819,imply,4,0.90 2820 | 2819,2820,naturally,3,0.96 2821 | 2820,2821,mutual,3,0.93 2822 | 2821,2822,founder,3,0.93 2823 | 2822,2823,top,3,0.95 2824 | 2823,2824,advanced,3,0.93 2825 | 2824,2825,pride,3,0.97 2826 | 2825,2826,dismiss,3,0.97 2827 | 2826,2827,aircraft,3,0.93 2828 | 2827,2828,delivery,3,0.95 2829 | 2828,2829,mainly,3,0.95 2830 | 2829,2830,bake,4,0.88 2831 | 2830,2831,freeze,3,0.93 2832 | 2831,2832,platform,3,0.96 2833 | 2832,2833,finance,3,0.94 2834 | 2833,2834,sink,3,0.93 2835 | 2834,2835,attractive,3,0.97 2836 | 2835,2836,respect,3,0.97 2837 | 2836,2837,diverse,4,0.89 2838 | 2837,2838,relevant,4,0.88 2839 | 2838,2839,ideal,3,0.92 2840 | 2839,2840,joy,3,0.96 2841 | 2840,2841,worth,3,0.95 2842 | 2841,2842,regularly,3,0.95 2843 | 2842,2843,working,3,0.96 2844 | 2843,2844,singer,3,0.95 2845 | 2844,2845,evolve,3,0.93 2846 | 2845,2846,shooting,3,0.92 2847 | 2846,2847,partly,3,0.96 2848 | 2847,2848,unknown,3,0.96 2849 | 2848,2849,assistant,3,0.94 2850 | 2849,2850,offense,3,0.91 2851 | 2850,2851,counter,3,0.91 2852 | 2851,2852,DNA,3,0.92 2853 | 2852,2853,smell,4,0.88 2854 | 2853,2854,potentially,3,0.94 2855 | 2854,2855,transfer,3,0.90 2856 | 2855,2856,thirty,3,0.92 2857 | 2856,2857,justify,3,0.93 2858 | 2857,2858,protest,3,0.95 2859 | 2858,2859,crash,3,0.94 2860 | 2859,2860,craft,3,0.92 2861 | 2860,2861,treaty,3,0.91 2862 | 2861,2862,terrorist,4,0.87 2863 | 2862,2863,insight,3,0.92 2864 | 2863,2864,possess,3,0.93 2865 | 2864,2865,politically,3,0.94 2866 | 2865,2866,tap,3,0.94 2867 | 2866,2867,lie,3,0.95 2868 | 2867,2868,extensive,3,0.92 2869 | 2868,2869,episode,3,0.96 2870 | 2869,2870,double,3,0.95 2871 | 2870,2871,swim,3,0.93 2872 | 2871,2872,tire,3,0.92 2873 | 2872,2873,fault,3,0.95 2874 | 2873,2874,loose,3,0.94 2875 | 2874,2875,free,3,0.97 2876 | 2875,2876,shortly,3,0.97 2877 | 2876,2877,originally,3,0.96 2878 | 2877,2878,considerable,3,0.91 2879 | 2878,2879,prior,3,0.90 2880 | 2879,2880,intellectual,3,0.89 2881 | 2880,2881,mix,3,0.94 2882 | 2881,2882,assault,3,0.95 2883 | 2882,2883,relax,3,0.94 2884 | 2883,2884,stair,4,0.86 2885 | 2884,2885,adventure,3,0.95 2886 | 2885,2886,external,4,0.86 2887 | 2886,2887,proof,3,0.97 2888 | 2887,2888,confident,3,0.97 2889 | 2888,2889,headquarters,3,0.94 2890 | 2889,2890,sudden,3,0.92 2891 | 2890,2891,dirty,3,0.94 2892 | 2891,2892,violation,3,0.94 2893 | 2892,2893,tongue,3,0.89 2894 | 2893,2894,license,3,0.95 2895 | 2894,2895,hold,3,0.95 2896 | 2895,2896,shelter,3,0.96 2897 | 2896,2897,rub,3,0.89 2898 | 2897,2898,controversy,3,0.94 2899 | 2898,2899,entrance,3,0.94 2900 | 2899,2900,favorite,3,0.94 2901 | 2900,2901,practice,3,0.96 2902 | 2901,2902,properly,3,0.97 2903 | 2902,2903,fade,3,0.92 2904 | 2903,2904,defensive,3,0.91 2905 | 2904,2905,tragedy,3,0.94 2906 | 2905,2906,net,3,0.95 2907 | 2906,2907,characterize,3,0.88 2908 | 2907,2908,funeral,3,0.94 2909 | 2908,2909,profession,3,0.91 2910 | 2909,2910,alter,3,0.94 2911 | 2910,2911,spot,3,0.93 2912 | 2911,2912,constitute,3,0.87 2913 | 2912,2913,establishment,3,0.91 2914 | 2913,2914,squeeze,3,0.92 2915 | 2914,2915,imagination,3,0.95 2916 | 2915,2916,target,3,0.95 2917 | 2916,2917,mask,3,0.93 2918 | 2917,2918,convert,3,0.94 2919 | 2918,2919,comprehensive,3,0.89 2920 | 2919,2920,prominent,3,0.95 2921 | 2920,2921,presentation,3,0.91 2922 | 2921,2922,regardless,3,0.94 2923 | 2922,2923,easy,3,0.96 2924 | 2923,2924,load,3,0.96 2925 | 2924,2925,stable,3,0.94 2926 | 2925,2926,introduction,3,0.90 2927 | 2926,2927,appeal,3,0.96 2928 | 2927,2928,pretend,3,0.91 2929 | 2928,2929,not,3,0.91 2930 | 2929,2930,elderly,3,0.94 2931 | 2930,2931,representation,4,0.85 2932 | 2931,2932,deer,3,0.88 2933 | 2932,2933,split,3,0.97 2934 | 2933,2934,violate,3,0.95 2935 | 2934,2935,partnership,3,0.92 2936 | 2935,2936,pollution,3,0.90 2937 | 2936,2937,emission,3,0.88 2938 | 2937,2938,steady,3,0.96 2939 | 2938,2939,vital,3,0.94 2940 | 2939,2940,neither,3,0.97 2941 | 2940,2941,fate,3,0.97 2942 | 2941,2942,earnings,3,0.90 2943 | 2942,2943,oven,3,0.89 2944 | 2943,2944,distinction,3,0.90 2945 | 2944,2945,segment,3,0.94 2946 | 2945,2946,nowhere,3,0.96 2947 | 2946,2947,poet,3,0.94 2948 | 2947,2948,mere,3,0.95 2949 | 2948,2949,exciting,3,0.96 2950 | 2949,2950,variation,3,0.89 2951 | 2950,2951,comfort,3,0.95 2952 | 2951,2952,radical,3,0.93 2953 | 2952,2953,stress,3,0.93 2954 | 2953,2954,adapt,3,0.93 2955 | 2954,2955,Irish,3,0.94 2956 | 2955,2956,honey,3,0.92 2957 | 2956,2957,correspondent,4,0.85 2958 | 2957,2958,pale,3,0.88 2959 | 2958,2959,musician,3,0.96 2960 | 2959,2960,significance,3,0.88 2961 | 2960,2961,load,3,0.93 2962 | 2961,2962,round,3,0.94 2963 | 2962,2963,vessel,3,0.93 2964 | 2963,2964,storage,3,0.93 2965 | 2964,2965,flee,3,0.96 2966 | 2965,2966,mm-hmm,4,0.73 2967 | 2966,2967,leather,3,0.91 2968 | 2967,2968,distribute,3,0.94 2969 | 2968,2969,evolution,3,0.91 2970 | 2969,2970,ill,3,0.97 2971 | 2970,2971,tribe,3,0.93 2972 | 2971,2972,shelf,3,0.94 2973 | 2972,2973,can,3,0.94 2974 | 2973,2974,grandfather,3,0.91 2975 | 2974,2975,lawn,3,0.93 2976 | 2975,2976,buyer,3,0.92 2977 | 2976,2977,dining,3,0.92 2978 | 2977,2978,wisdom,3,0.95 2979 | 2978,2979,council,3,0.94 2980 | 2979,2980,vulnerable,3,0.96 2981 | 2980,2981,instance,3,0.92 2982 | 2981,2982,garlic,3,0.87 2983 | 2982,2983,capability,3,0.92 2984 | 2983,2984,poetry,3,0.94 2985 | 2984,2985,celebrity,3,0.93 2986 | 2985,2986,gradually,3,0.95 2987 | 2986,2987,stability,3,0.91 2988 | 2987,2988,doubt,3,0.96 2989 | 2988,2989,fantasy,3,0.95 2990 | 2989,2990,scared,3,0.93 2991 | 2990,2991,guide,3,0.94 2992 | 2991,2992,plot,3,0.95 2993 | 2992,2993,framework,3,0.85 2994 | 2993,2994,gesture,3,0.92 2995 | 2994,2995,depending,3,0.95 2996 | 2995,2996,ongoing,3,0.92 2997 | 2996,2997,psychology,3,0.88 2998 | 2997,2998,since,3,0.96 2999 | 2998,2999,counselor,4,0.81 3000 | 2999,3000,witness,3,0.97 3001 | 3000,3001,chapter,3,0.94 3002 | 3001,3002,fellow,3,0.96 3003 | 3002,3003,divorce,3,0.96 3004 | 3003,3004,owe,3,0.97 3005 | 3004,3005,pipe,3,0.95 3006 | 3005,3006,athletic,3,0.91 3007 | 3006,3007,slight,3,0.94 3008 | 3007,3008,math,3,0.94 3009 | 3008,3009,shade,3,0.92 3010 | 3009,3010,tail,3,0.92 3011 | 3010,3011,sustain,3,0.93 3012 | 3011,3012,mount,3,0.96 3013 | 3012,3013,obligation,3,0.93 3014 | 3013,3014,angle,3,0.94 3015 | 3014,3015,palm,3,0.89 3016 | 3015,3016,differ,3,0.88 3017 | 3016,3017,custom,3,0.94 3018 | 3017,3018,store,3,0.94 3019 | 3018,3019,economist,3,0.92 3020 | 3019,3020,fifteen,3,0.91 3021 | 3020,3021,soup,3,0.93 3022 | 3021,3022,celebration,3,0.96 3023 | 3022,3023,efficient,3,0.94 3024 | 3023,3024,damage,3,0.96 3025 | 3024,3025,composition,3,0.89 3026 | 3025,3026,satisfy,3,0.96 3027 | 3026,3027,pile,3,0.92 3028 | 3027,3028,briefly,3,0.97 3029 | 3028,3029,carbon,3,0.90 3030 | 3029,3030,closer,3,0.98 3031 | 3030,3031,consume,3,0.95 3032 | 3031,3032,scheme,3,0.93 3033 | 3032,3033,crack,3,0.94 3034 | 3033,3034,frequency,3,0.86 3035 | 3034,3035,tobacco,3,0.92 3036 | 3035,3036,survivor,3,0.94 3037 | 3036,3037,besides,3,0.92 3038 | 3037,3038,in,3,0.97 3039 | 3038,3039,psychologist,3,0.91 3040 | 3039,3040,wealthy,3,0.96 3041 | 3040,3041,galaxy,3,0.87 3042 | 3041,3042,given,3,0.91 3043 | 3042,3043,fund,3,0.95 3044 | 3043,3044,ski,3,0.83 3045 | 3044,3045,limitation,3,0.88 3046 | 3045,3046,OK,3,0.90 3047 | 3046,3047,trace,3,0.96 3048 | 3047,3048,appointment,3,0.97 3049 | 3048,3049,preference,3,0.89 3050 | 3049,3050,meter,3,0.94 3051 | 3050,3051,explosion,3,0.95 3052 | 3051,3052,arrest,3,0.94 3053 | 3052,3053,publicly,3,0.95 3054 | 3053,3054,incredible,3,0.93 3055 | 3054,3055,fighter,3,0.94 3056 | 3055,3056,rapid,3,0.92 3057 | 3056,3057,admission,3,0.93 3058 | 3057,3058,hunter,3,0.89 3059 | 3058,3059,educate,3,0.95 3060 | 3059,3060,painful,3,0.97 3061 | 3060,3061,friendship,3,0.95 3062 | 3061,3062,aide,3,0.93 3063 | 3062,3063,infant,3,0.94 3064 | 3063,3064,calculate,3,0.92 3065 | 3064,3065,fifty,3,0.91 3066 | 3065,3066,rid,3,0.95 3067 | 3066,3067,porch,3,0.88 3068 | 3067,3068,tendency,3,0.90 3069 | 3068,3069,uniform,3,0.94 3070 | 3069,3070,formation,3,0.91 3071 | 3070,3071,scholarship,3,0.93 3072 | 3071,3072,reservation,3,0.94 3073 | 3072,3073,efficiency,3,0.91 3074 | 3073,3074,waste,3,0.96 3075 | 3074,3075,qualify,3,0.95 3076 | 3075,3076,mall,3,0.94 3077 | 3076,3077,derive,3,0.87 3078 | 3077,3078,scandal,3,0.92 3079 | 3078,3079,PC,3,0.86 3080 | 3079,3080,helpful,3,0.94 3081 | 3080,3081,impress,3,0.96 3082 | 3081,3082,heel,3,0.93 3083 | 3082,3083,resemble,3,0.95 3084 | 3083,3084,privacy,3,0.96 3085 | 3084,3085,fabric,3,0.92 3086 | 3085,3086,surprise,3,0.95 3087 | 3086,3087,contest,3,0.95 3088 | 3087,3088,proportion,3,0.90 3089 | 3088,3089,guideline,3,0.92 3090 | 3089,3090,rifle,3,0.93 3091 | 3090,3091,maintenance,3,0.93 3092 | 3091,3092,hay,3,0.96 3093 | 3092,3093,trick,3,0.94 3094 | 3093,3094,organic,3,0.89 3095 | 3094,3095,tent,3,0.94 3096 | 3095,3096,examination,3,0.88 3097 | 3096,3097,publisher,3,0.92 3098 | 3097,3098,strengthen,3,0.93 3099 | 3098,3099,French,3,0.96 3100 | 3099,3100,proposed,3,0.92 3101 | 3100,3101,myth,3,0.93 3102 | 3101,3102,sophisticated,3,0.95 3103 | 3102,3103,cow,3,0.94 3104 | 3103,3104,etc,3,0.93 3105 | 3104,3105,standing,3,0.97 3106 | 3105,3106,asleep,3,0.88 3107 | 3106,3107,tennis,3,0.94 3108 | 3107,3108,nerve,3,0.94 3109 | 3108,3109,barrel,3,0.94 3110 | 3109,3110,bombing,3,0.90 3111 | 3110,3111,membership,3,0.91 3112 | 3111,3112,ratio,3,0.90 3113 | 3112,3113,menu,3,0.91 3114 | 3113,3114,purchase,3,0.94 3115 | 3114,3115,controversial,3,0.94 3116 | 3115,3116,desperate,3,0.96 3117 | 3116,3117,rate,3,0.91 3118 | 3117,3118,lifestyle,3,0.94 3119 | 3118,3119,humor,3,0.97 3120 | 3119,3120,loud,3,0.90 3121 | 3120,3121,glove,3,0.91 3122 | 3121,3122,suspect,3,0.91 3123 | 3122,3123,sufficient,3,0.91 3124 | 3123,3124,narrative,3,0.85 3125 | 3124,3125,photographer,3,0.96 3126 | 3125,3126,helicopter,3,0.93 3127 | 3126,3127,Catholic,3,0.94 3128 | 3127,3128,modest,3,0.96 3129 | 3128,3129,provider,3,0.91 3130 | 3129,3130,delay,3,0.94 3131 | 3130,3131,agricultural,3,0.88 3132 | 3131,3132,explode,3,0.95 3133 | 3132,3133,stroke,3,0.94 3134 | 3133,3134,scope,3,0.92 3135 | 3134,3135,punishment,3,0.93 3136 | 3135,3136,handful,3,0.95 3137 | 3136,3137,badly,3,0.96 3138 | 3137,3138,horizon,3,0.94 3139 | 3138,3139,curious,3,0.95 3140 | 3139,3140,downtown,3,0.91 3141 | 3140,3141,girlfriend,3,0.94 3142 | 3141,3142,prompt,3,0.95 3143 | 3142,3143,request,3,0.96 3144 | 3143,3144,cholesterol,3,0.87 3145 | 3144,3145,absorb,3,0.95 3146 | 3145,3146,adjustment,3,0.90 3147 | 3146,3147,taxpayer,3,0.91 3148 | 3147,3148,eager,3,0.96 3149 | 3148,3149,principal,3,0.93 3150 | 3149,3150,detailed,3,0.92 3151 | 3150,3151,motivation,3,0.87 3152 | 3151,3152,assignment,3,0.93 3153 | 3152,3153,restriction,3,0.93 3154 | 3153,3154,across,3,0.94 3155 | 3154,3155,Palestinian,3,0.88 3156 | 3155,3156,laboratory,3,0.92 3157 | 3156,3157,workshop,3,0.93 3158 | 3157,3158,differently,3,0.96 3159 | 3158,3159,auto,3,0.92 3160 | 3159,3160,romantic,3,0.96 3161 | 3160,3161,cotton,3,0.94 3162 | 3161,3162,motor,3,0.92 3163 | 3162,3163,sue,3,0.94 3164 | 3163,3164,flavor,3,0.91 3165 | 3164,3165,overlook,3,0.96 3166 | 3165,3166,float,3,0.92 3167 | 3166,3167,undergo,3,0.93 3168 | 3167,3168,sequence,3,0.91 3169 | 3168,3169,demonstration,3,0.94 3170 | 3169,3170,jet,3,0.95 3171 | 3170,3171,orange,3,0.94 3172 | 3171,3172,consumption,3,0.90 3173 | 3172,3173,assert,3,0.90 3174 | 3173,3174,blade,3,0.88 3175 | 3174,3175,temporary,3,0.96 3176 | 3175,3176,medication,3,0.93 3177 | 3176,3177,print,3,0.96 3178 | 3177,3178,cabin,3,0.92 3179 | 3178,3179,bite,3,0.91 3180 | 3179,3180,relative,3,0.89 3181 | 3180,3181,edition,3,0.95 3182 | 3181,3182,valley,3,0.94 3183 | 3182,3183,yours,3,0.91 3184 | 3183,3184,pitch,3,0.95 3185 | 3184,3185,pine,3,0.93 3186 | 3185,3186,brilliant,3,0.96 3187 | 3186,3187,versus,3,0.91 3188 | 3187,3188,manufacturing,3,0.92 3189 | 3188,3189,risk,3,0.98 3190 | 3189,3190,Christian,3,0.93 3191 | 3190,3191,complex,3,0.95 3192 | 3191,3192,absolute,3,0.94 3193 | 3192,3193,chef,3,0.89 3194 | 3193,3194,discrimination,3,0.92 3195 | 3194,3195,offensive,3,0.91 3196 | 3195,3196,German,3,0.94 3197 | 3196,3197,suit,3,0.95 3198 | 3197,3198,boom,3,0.96 3199 | 3198,3199,register,3,0.96 3200 | 3199,3200,appoint,3,0.95 3201 | 3200,3201,heritage,3,0.93 3202 | 3201,3202,God,3,0.93 3203 | 3202,3203,terrorist,3,0.87 3204 | 3203,3204,dominant,3,0.89 3205 | 3204,3205,successfully,3,0.93 3206 | 3205,3206,shit,3,0.82 3207 | 3206,3207,lemon,3,0.89 3208 | 3207,3208,hungry,3,0.93 3209 | 3208,3209,sense,3,0.93 3210 | 3209,3210,dry,3,0.93 3211 | 3210,3211,wander,3,0.92 3212 | 3211,3212,submit,3,0.95 3213 | 3212,3213,economics,3,0.92 3214 | 3213,3214,naked,3,0.91 3215 | 3214,3215,anticipate,3,0.96 3216 | 3215,3216,nut,3,0.94 3217 | 3216,3217,legacy,3,0.95 3218 | 3217,3218,extension,3,0.93 3219 | 3218,3219,shrug,3,0.84 3220 | 3219,3220,fly,3,0.93 3221 | 3220,3221,battery,3,0.92 3222 | 3221,3222,arrival,3,0.97 3223 | 3222,3223,legitimate,3,0.94 3224 | 3223,3224,orientation,3,0.85 3225 | 3224,3225,inflation,3,0.92 3226 | 3225,3226,cope,3,0.90 3227 | 3226,3227,flame,3,0.92 3228 | 3227,3228,cluster,3,0.91 3229 | 3228,3229,host,3,0.92 3230 | 3229,3230,wound,3,0.95 3231 | 3230,3231,dependent,3,0.89 3232 | 3231,3232,shower,3,0.93 3233 | 3232,3233,institutional,3,0.86 3234 | 3233,3234,depict,3,0.92 3235 | 3234,3235,operating,3,0.94 3236 | 3235,3236,flesh,3,0.90 3237 | 3236,3237,garage,3,0.93 3238 | 3237,3238,operator,3,0.95 3239 | 3238,3239,instructor,3,0.90 3240 | 3239,3240,collapse,3,0.97 3241 | 3240,3241,borrow,3,0.97 3242 | 3241,3242,furthermore,3,0.86 3243 | 3242,3243,comedy,3,0.93 3244 | 3243,3244,mortgage,3,0.89 3245 | 3244,3245,sanction,3,0.87 3246 | 3245,3246,civilian,3,0.92 3247 | 3246,3247,twelve,3,0.92 3248 | 3247,3248,weekly,3,0.95 3249 | 3248,3249,habitat,3,0.92 3250 | 3249,3250,grain,3,0.93 3251 | 3250,3251,brush,3,0.90 3252 | 3251,3252,consciousness,3,0.91 3253 | 3252,3253,devote,3,0.95 3254 | 3253,3254,crack,3,0.94 3255 | 3254,3255,measurement,3,0.87 3256 | 3255,3256,province,3,0.93 3257 | 3256,3257,ease,3,0.95 3258 | 3257,3258,seize,3,0.97 3259 | 3258,3259,ethics,3,0.92 3260 | 3259,3260,nomination,3,0.91 3261 | 3260,3261,permission,3,0.95 3262 | 3261,3262,wise,3,0.97 3263 | 3262,3263,actress,3,0.93 3264 | 3263,3264,summit,3,0.91 3265 | 3264,3265,acid,3,0.90 3266 | 3265,3266,odds,3,0.96 3267 | 3266,3267,gifted,3,0.80 3268 | 3267,3268,frustration,3,0.97 3269 | 3268,3269,medium,3,0.92 3270 | 3269,3270,function,3,0.91 3271 | 3270,3271,physically,3,0.97 3272 | 3271,3272,grant,3,0.93 3273 | 3272,3273,distinguish,3,0.90 3274 | 3273,3274,shore,3,0.95 3275 | 3274,3275,repeatedly,3,0.96 3276 | 3275,3276,lung,3,0.95 3277 | 3276,3277,firm,3,0.97 3278 | 3277,3278,running,3,0.94 3279 | 3278,3279,correct,2,0.97 3280 | 3279,3280,distinct,3,0.90 3281 | 3280,3281,artistic,3,0.93 3282 | 3281,3282,discourse,3,0.83 3283 | 3282,3283,basket,3,0.94 3284 | 3283,3284,ah,3,0.89 3285 | 3284,3285,fighting,3,0.94 3286 | 3285,3286,impressive,3,0.95 3287 | 3286,3287,competitor,3,0.93 3288 | 3287,3288,ugly,3,0.94 3289 | 3288,3289,worried,3,0.94 3290 | 3289,3290,portray,3,0.94 3291 | 3290,3291,powder,3,0.90 3292 | 3291,3292,ghost,3,0.91 3293 | 3292,3293,persuade,2,0.96 3294 | 3293,3294,moderate,3,0.94 3295 | 3294,3295,subsequent,3,0.89 3296 | 3295,3296,continued,3,0.92 3297 | 3296,3297,cookie,3,0.91 3298 | 3297,3298,carrier,3,0.94 3299 | 3298,3299,cooking,3,0.92 3300 | 3299,3300,frequent,3,0.93 3301 | 3300,3301,ban,3,0.94 3302 | 3301,3302,swing,3,0.94 3303 | 3302,3303,orange,3,0.94 3304 | 3303,3304,awful,3,0.93 3305 | 3304,3305,admire,3,0.96 3306 | 3305,3306,pet,3,0.95 3307 | 3306,3307,miracle,2,0.96 3308 | 3307,3308,exceed,3,0.92 3309 | 3308,3309,rhythm,3,0.96 3310 | 3309,3310,widespread,3,0.93 3311 | 3310,3311,killing,3,0.95 3312 | 3311,3312,lovely,3,0.92 3313 | 3312,3313,sin,3,0.95 3314 | 3313,3314,charity,3,0.95 3315 | 3314,3315,script,2,0.96 3316 | 3315,3316,tactic,2,0.96 3317 | 3316,3317,identification,3,0.88 3318 | 3317,3318,transformation,3,0.90 3319 | 3318,3319,everyday,3,0.95 3320 | 3319,3320,headline,3,0.92 3321 | 3320,3321,crash,3,0.94 3322 | 3321,3322,venture,3,0.92 3323 | 3322,3323,invasion,3,0.91 3324 | 3323,3324,military,3,0.92 3325 | 3324,3325,nonetheless,3,0.93 3326 | 3325,3326,adequate,3,0.91 3327 | 3326,3327,piano,2,0.95 3328 | 3327,3328,grocery,3,0.95 3329 | 3328,3329,intensity,3,0.92 3330 | 3329,3330,exhibit,3,0.90 3331 | 3330,3331,high,2,0.97 3332 | 3331,3332,blanket,3,0.91 3333 | 3332,3333,margin,2,0.95 3334 | 3333,3334,principal,3,0.92 3335 | 3334,3335,quarterback,3,0.85 3336 | 3335,3336,mouse,3,0.90 3337 | 3336,3337,rope,3,0.91 3338 | 3337,3338,concrete,2,0.96 3339 | 3338,3339,prescription,3,0.93 3340 | 3339,3340,African-American,3,0.93 3341 | 3340,3341,chase,2,0.95 3342 | 3341,3342,document,3,0.91 3343 | 3342,3343,brick,3,0.93 3344 | 3343,3344,recruit,3,0.94 3345 | 3344,3345,patch,3,0.93 3346 | 3345,3346,consensus,3,0.92 3347 | 3346,3347,horror,2,0.95 3348 | 3347,3348,recording,2,0.95 3349 | 3348,3349,changing,3,0.93 3350 | 3349,3350,painter,3,0.92 3351 | 3350,3351,colonial,3,0.88 3352 | 3351,3352,pie,3,0.94 3353 | 3352,3353,sake,2,0.94 3354 | 3353,3354,gaze,3,0.86 3355 | 3354,3355,courage,2,0.97 3356 | 3355,3356,pregnancy,2,0.94 3357 | 3356,3357,swear,3,0.92 3358 | 3357,3358,defeat,2,0.94 3359 | 3358,3359,clue,2,0.97 3360 | 3359,3360,reinforce,3,0.90 3361 | 3360,3361,win,3,0.88 3362 | 3361,3362,confusion,2,0.96 3363 | 3362,3363,slice,3,0.90 3364 | 3363,3364,occupation,3,0.92 3365 | 3364,3365,dear,3,0.92 3366 | 3365,3366,coal,2,0.94 3367 | 3366,3367,sacred,3,0.93 3368 | 3367,3368,criminal,2,0.95 3369 | 3368,3369,formula,2,0.94 3370 | 3369,3370,cognitive,3,0.83 3371 | 3370,3371,collective,3,0.90 3372 | 3371,3372,exact,2,0.97 3373 | 3372,3373,uncle,3,0.90 3374 | 3373,3374,square,2,0.94 3375 | 3374,3375,captain,3,0.92 3376 | 3375,3376,sigh,3,0.83 3377 | 3376,3377,attribute,3,0.91 3378 | 3377,3378,dare,3,0.93 3379 | 3378,3379,okay,3,0.88 3380 | 3379,3380,homeless,3,0.92 3381 | 3380,3381,cool,2,0.93 3382 | 3381,3382,gallery,2,0.93 3383 | 3382,3383,soccer,3,0.91 3384 | 3383,3384,defendant,3,0.91 3385 | 3384,3385,tunnel,3,0.93 3386 | 3385,3386,fitness,3,0.90 3387 | 3386,3387,lap,3,0.90 3388 | 3387,3388,grave,2,0.94 3389 | 3388,3389,toe,3,0.92 3390 | 3389,3390,container,2,0.93 3391 | 3390,3391,virtue,3,0.91 3392 | 3391,3392,abroad,2,0.95 3393 | 3392,3393,architect,2,0.93 3394 | 3393,3394,dramatically,2,0.95 3395 | 3394,3395,makeup,2,0.93 3396 | 3395,3396,inquiry,3,0.91 3397 | 3396,3397,rose,2,0.92 3398 | 3397,3398,surprisingly,2,0.95 3399 | 3398,3399,highlight,3,0.91 3400 | 3399,3400,decrease,3,0.89 3401 | 3400,3401,indication,2,0.95 3402 | 3401,3402,rail,2,0.93 3403 | 3402,3403,anniversary,2,0.95 3404 | 3403,3404,couch,3,0.89 3405 | 3404,3405,alliance,2,0.92 3406 | 3405,3406,hypothesis,3,0.83 3407 | 3406,3407,boyfriend,2,0.94 3408 | 3407,3408,compose,2,0.93 3409 | 3408,3409,peer,3,0.90 3410 | 3409,3410,mess,2,0.94 3411 | 3410,3411,rank,2,0.92 3412 | 3411,3412,legend,2,0.95 3413 | 3412,3413,regulate,2,0.93 3414 | 3413,3414,adolescent,3,0.78 3415 | 3414,3415,shine,2,0.91 3416 | 3415,3416,norm,3,0.88 3417 | 3416,3417,upset,2,0.96 3418 | 3417,3418,remark,2,0.97 3419 | 3418,3419,resign,2,0.92 3420 | 3419,3420,reward,2,0.94 3421 | 3420,3421,gentle,2,0.93 3422 | 3421,3422,related,3,0.89 3423 | 3422,3423,organ,2,0.95 3424 | 3423,3424,lightly,2,0.92 3425 | 3424,3425,concerning,3,0.87 3426 | 3425,3426,invent,2,0.96 3427 | 3426,3427,laughter,3,0.90 3428 | 3427,3428,fit,2,0.95 3429 | 3428,3429,northwest,2,0.94 3430 | 3429,3430,counseling,3,0.88 3431 | 3430,3431,tight,2,0.91 3432 | 3431,3432,receiver,2,0.92 3433 | 3432,3433,ritual,2,0.92 3434 | 3433,3434,insect,2,0.92 3435 | 3434,3435,interrupt,2,0.93 3436 | 3435,3436,salmon,2,0.92 3437 | 3436,3437,favor,2,0.97 3438 | 3437,3438,trading,2,0.93 3439 | 3438,3439,concern,2,0.93 3440 | 3439,3440,magic,2,0.95 3441 | 3440,3441,superior,2,0.94 3442 | 3441,3442,combat,2,0.94 3443 | 3442,3443,stem,2,0.90 3444 | 3443,3444,surgeon,2,0.95 3445 | 3444,3445,acceptable,2,0.93 3446 | 3445,3446,physics,3,0.88 3447 | 3446,3447,rape,2,0.92 3448 | 3447,3448,counsel,3,0.86 3449 | 3448,3449,brush,2,0.92 3450 | 3449,3450,jeans,2,0.91 3451 | 3450,3451,hunt,2,0.92 3452 | 3451,3452,continuous,2,0.90 3453 | 3452,3453,log,2,0.94 3454 | 3453,3454,echo,2,0.95 3455 | 3454,3455,pill,2,0.94 3456 | 3455,3456,excited,2,0.95 3457 | 3456,3457,sculpture,2,0.93 3458 | 3457,3458,compound,2,0.94 3459 | 3458,3459,integrate,3,0.89 3460 | 3459,3460,flour,3,0.88 3461 | 3460,3461,bitter,2,0.96 3462 | 3461,3462,bare,2,0.90 3463 | 3462,3463,slope,2,0.94 3464 | 3463,3464,rent,2,0.95 3465 | 3464,3465,presidency,2,0.91 3466 | 3465,3466,serving,3,0.85 3467 | 3466,3467,subtle,2,0.95 3468 | 3467,3468,greatly,2,0.93 3469 | 3468,3469,bishop,2,0.93 3470 | 3469,3470,drinking,2,0.95 3471 | 3470,3471,delay,2,0.96 3472 | 3471,3472,cry,2,0.93 3473 | 3472,3473,acceptance,2,0.90 3474 | 3473,3474,collapse,2,0.95 3475 | 3474,3475,shop,2,0.94 3476 | 3475,3476,pump,2,0.93 3477 | 3476,3477,candy,2,0.93 3478 | 3477,3478,evil,2,0.95 3479 | 3478,3479,final,2,0.89 3480 | 3479,3480,finance,2,0.93 3481 | 3480,3481,pleased,2,0.94 3482 | 3481,3482,medal,2,0.89 3483 | 3482,3483,beg,2,0.93 3484 | 3483,3484,sponsor,2,0.93 3485 | 3484,3485,ethical,3,0.88 3486 | 3485,3486,secondary,3,0.87 3487 | 3486,3487,slam,3,0.88 3488 | 3487,3488,export,3,0.88 3489 | 3488,3489,experimental,3,0.88 3490 | 3489,3490,melt,2,0.93 3491 | 3490,3491,midnight,2,0.94 3492 | 3491,3492,net,2,0.93 3493 | 3492,3493,curve,2,0.95 3494 | 3493,3494,integrity,2,0.94 3495 | 3494,3495,entitle,2,0.95 3496 | 3495,3496,evident,2,0.91 3497 | 3496,3497,logic,2,0.92 3498 | 3497,3498,essence,2,0.94 3499 | 3498,3499,park,2,0.92 3500 | 3499,3500,exclude,2,0.90 3501 | 3500,3501,harsh,2,0.98 3502 | 3501,3502,closet,2,0.92 3503 | 3502,3503,suburban,2,0.93 3504 | 3503,3504,greet,2,0.94 3505 | 3504,3505,favor,2,0.94 3506 | 3505,3506,interior,2,0.94 3507 | 3506,3507,corridor,2,0.89 3508 | 3507,3508,murder,2,0.93 3509 | 3508,3509,retail,2,0.92 3510 | 3509,3510,pitcher,2,0.89 3511 | 3510,3511,march,2,0.95 3512 | 3511,3512,snake,2,0.92 3513 | 3512,3513,pitch,2,0.91 3514 | 3513,3514,excuse,2,0.90 3515 | 3514,3515,cross,2,0.96 3516 | 3515,3516,weakness,2,0.95 3517 | 3516,3517,pig,2,0.95 3518 | 3517,3518,cold,2,0.92 3519 | 3518,3519,classical,2,0.93 3520 | 3519,3520,estimated,2,0.93 3521 | 3520,3521,T-shirt,2,0.94 3522 | 3521,3522,online,2,0.90 3523 | 3522,3523,unemployment,2,0.93 3524 | 3523,3524,civilization,2,0.93 3525 | 3524,3525,fold,2,0.91 3526 | 3525,3526,patient,2,0.92 3527 | 3526,3527,pop,2,0.94 3528 | 3527,3528,daily,2,0.93 3529 | 3528,3529,reverse,2,0.96 3530 | 3529,3530,missing,2,0.95 3531 | 3530,3531,correlation,3,0.82 3532 | 3531,3532,humanity,2,0.95 3533 | 3532,3533,flash,2,0.89 3534 | 3533,3534,developer,2,0.90 3535 | 3534,3535,reliable,2,0.94 3536 | 3535,3536,excitement,2,0.96 3537 | 3536,3537,beef,2,0.93 3538 | 3537,3538,Islam,2,0.89 3539 | 3538,3539,Roman,2,0.94 3540 | 3539,3540,stretch,2,0.94 3541 | 3540,3541,architecture,2,0.92 3542 | 3541,3542,occasional,2,0.95 3543 | 3542,3543,administrative,2,0.88 3544 | 3543,3544,elbow,2,0.91 3545 | 3544,3545,deadly,2,0.95 3546 | 3545,3546,Muslim,2,0.91 3547 | 3546,3547,Hispanic,2,0.89 3548 | 3547,3548,allegation,2,0.89 3549 | 3548,3549,tip,2,0.93 3550 | 3549,3550,confuse,2,0.96 3551 | 3550,3551,airplane,2,0.94 3552 | 3551,3552,monthly,2,0.93 3553 | 3552,3553,duck,2,0.93 3554 | 3553,3554,dose,2,0.93 3555 | 3554,3555,Korean,2,0.92 3556 | 3555,3556,plead,2,0.95 3557 | 3556,3557,initiate,2,0.90 3558 | 3557,3558,lecture,2,0.93 3559 | 3558,3559,van,2,0.92 3560 | 3559,3560,sixth,2,0.95 3561 | 3560,3561,bay,2,0.94 3562 | 3561,3562,mainstream,2,0.94 3563 | 3562,3563,suburb,2,0.93 3564 | 3563,3564,sandwich,2,0.93 3565 | 3564,3565,unlike,2,0.95 3566 | 3565,3566,trunk,2,0.92 3567 | 3566,3567,rumor,2,0.96 3568 | 3567,3568,implementation,3,0.83 3569 | 3568,3569,swallow,2,0.90 3570 | 3569,3570,motivate,2,0.92 3571 | 3570,3571,render,2,0.93 3572 | 3571,3572,longtime,2,0.91 3573 | 3572,3573,trap,2,0.96 3574 | 3573,3574,restrict,2,0.92 3575 | 3574,3575,cloth,2,0.93 3576 | 3575,3576,seemingly,2,0.96 3577 | 3576,3577,legislative,2,0.91 3578 | 3577,3578,effectiveness,2,0.86 3579 | 3578,3579,enforce,2,0.94 3580 | 3579,3580,lens,2,0.92 3581 | 3580,3581,reach,2,0.96 3582 | 3581,3582,inspector,2,0.88 3583 | 3582,3583,lend,2,0.96 3584 | 3583,3584,plain,2,0.95 3585 | 3584,3585,fraud,2,0.93 3586 | 3585,3586,companion,2,0.94 3587 | 3586,3587,contend,2,0.93 3588 | 3587,3588,nail,2,0.92 3589 | 3588,3589,array,2,0.93 3590 | 3589,3590,strict,2,0.95 3591 | 3590,3591,assemble,2,0.95 3592 | 3591,3592,frankly,2,0.88 3593 | 3592,3593,rat,2,0.93 3594 | 3593,3594,burst,2,0.91 3595 | 3594,3595,hallway,2,0.87 3596 | 3595,3596,cave,2,0.92 3597 | 3596,3597,inevitable,2,0.96 3598 | 3597,3598,southwest,2,0.93 3599 | 3598,3599,monster,2,0.93 3600 | 3599,3600,speed,2,0.96 3601 | 3600,3601,protest,2,0.96 3602 | 3601,3602,unexpected,2,0.97 3603 | 3602,3603,obstacle,2,0.94 3604 | 3603,3604,facilitate,2,0.85 3605 | 3604,3605,encounter,2,0.94 3606 | 3605,3606,rip,2,0.93 3607 | 3606,3607,herb,2,0.91 3608 | 3607,3608,overwhelming,2,0.97 3609 | 3608,3609,integration,2,0.85 3610 | 3609,3610,crystal,2,0.94 3611 | 3610,3611,recession,2,0.86 3612 | 3611,3612,wish,2,0.97 3613 | 3612,3613,top,2,0.92 3614 | 3613,3614,written,2,0.90 3615 | 3614,3615,motive,2,0.94 3616 | 3615,3616,label,2,0.95 3617 | 3616,3617,flood,2,0.94 3618 | 3617,3618,pen,2,0.93 3619 | 3618,3619,ownership,2,0.92 3620 | 3619,3620,nightmare,2,0.95 3621 | 3620,3621,notice,2,0.97 3622 | 3621,3622,inspection,2,0.93 3623 | 3622,3623,supervisor,2,0.93 3624 | 3623,3624,consult,2,0.96 3625 | 3624,3625,arena,2,0.94 3626 | 3625,3626,laugh,2,0.92 3627 | 3626,3627,diagnosis,2,0.89 3628 | 3627,3628,possession,2,0.96 3629 | 3628,3629,forgive,2,0.93 3630 | 3629,3630,warm,2,0.94 3631 | 3630,3631,consistently,2,0.92 3632 | 3631,3632,basement,2,0.94 3633 | 3632,3633,project,2,0.95 3634 | 3633,3634,drift,2,0.90 3635 | 3634,3635,drain,2,0.92 3636 | 3635,3636,last,2,0.89 3637 | 3636,3637,prosecution,2,0.83 3638 | 3637,3638,maximum,2,0.92 3639 | 3638,3639,announcement,2,0.95 3640 | 3639,3640,warrior,2,0.93 3641 | 3640,3641,prediction,2,0.93 3642 | 3641,3642,bacteria,2,0.90 3643 | 3642,3643,questionnaire,3,0.82 3644 | 3643,3644,mud,2,0.93 3645 | 3644,3645,infrastructure,2,0.93 3646 | 3645,3646,hurry,2,0.85 3647 | 3646,3647,privilege,2,0.94 3648 | 3647,3648,temple,2,0.94 3649 | 3648,3649,medium,2,0.87 3650 | 3649,3650,outdoor,2,0.92 3651 | 3650,3651,suck,2,0.91 3652 | 3651,3652,and/or,2,0.88 3653 | 3652,3653,broadcast,2,0.91 3654 | 3653,3654,re,5,0.47 3655 | 3654,3655,leap,2,0.89 3656 | 3655,3656,random,2,0.95 3657 | 3656,3657,past,2,0.94 3658 | 3657,3658,wrist,2,0.90 3659 | 3658,3659,curtain,2,0.90 3660 | 3659,3660,monitor,2,0.94 3661 | 3660,3661,pond,2,0.93 3662 | 3661,3662,domain,2,0.86 3663 | 3662,3663,guilt,2,0.96 3664 | 3663,3664,cattle,2,0.95 3665 | 3664,3665,subject,2,0.91 3666 | 3665,3666,walking,2,0.94 3667 | 3666,3667,playoff,2,0.84 3668 | 3667,3668,minimum,2,0.92 3669 | 3668,3669,fiscal,2,0.92 3670 | 3669,3670,skirt,2,0.90 3671 | 3670,3671,dump,2,0.96 3672 | 3671,3672,hence,2,0.87 3673 | 3672,3673,database,2,0.91 3674 | 3673,3674,uncomfortable,2,0.96 3675 | 3674,3675,aim,2,0.92 3676 | 3675,3676,execute,2,0.96 3677 | 3676,3677,limb,2,0.92 3678 | 3677,3678,ideology,2,0.87 3679 | 3678,3679,average,2,0.91 3680 | 3679,3680,welcome,2,0.94 3681 | 3680,3681,tune,2,0.92 3682 | 3681,3682,continuing,2,0.94 3683 | 3682,3683,harm,2,0.96 3684 | 3683,3684,railroad,2,0.94 3685 | 3684,3685,endure,2,0.97 3686 | 3685,3686,radiation,2,0.93 3687 | 3686,3687,horn,2,0.94 3688 | 3687,3688,chronic,2,0.91 3689 | 3688,3689,peaceful,2,0.95 3690 | 3689,3690,innovation,2,0.90 3691 | 3690,3691,strain,2,0.95 3692 | 3691,3692,guitar,2,0.95 3693 | 3692,3693,replacement,2,0.94 3694 | 3693,3694,behave,2,0.97 3695 | 3694,3695,administer,2,0.90 3696 | 3695,3696,simultaneously,2,0.92 3697 | 3696,3697,dancer,2,0.95 3698 | 3697,3698,amendment,2,0.90 3699 | 3698,3699,guard,2,0.95 3700 | 3699,3700,pad,2,0.93 3701 | 3700,3701,transmission,2,0.93 3702 | 3701,3702,await,2,0.96 3703 | 3702,3703,retired,2,0.92 3704 | 3703,3704,trigger,2,0.95 3705 | 3704,3705,spill,2,0.93 3706 | 3705,3706,grateful,2,0.96 3707 | 3706,3707,grace,2,0.95 3708 | 3707,3708,virtual,2,0.93 3709 | 3708,3709,response,2,0.92 3710 | 3709,3710,colony,2,0.93 3711 | 3710,3711,adoption,2,0.91 3712 | 3711,3712,slide,2,0.93 3713 | 3712,3713,indigenous,2,0.83 3714 | 3713,3714,closed,2,0.97 3715 | 3714,3715,convict,2,0.91 3716 | 3715,3716,civilian,2,0.92 3717 | 3716,3717,towel,2,0.91 3718 | 3717,3718,modify,2,0.80 3719 | 3718,3719,particle,2,0.91 3720 | 3719,3720,award,2,0.94 3721 | 3720,3721,glance,2,0.89 3722 | 3721,3722,prize,2,0.96 3723 | 3722,3723,landing,2,0.94 3724 | 3723,3724,conduct,2,0.92 3725 | 3724,3725,blue,2,0.94 3726 | 3725,3726,boost,2,0.92 3727 | 3726,3727,bat,2,0.94 3728 | 3727,3728,alarm,2,0.94 3729 | 3728,3729,festival,2,0.92 3730 | 3729,3730,grip,2,0.93 3731 | 3730,3731,weird,2,0.93 3732 | 3731,3732,undermine,2,0.92 3733 | 3732,3733,freshman,2,0.91 3734 | 3733,3734,sweat,2,0.89 3735 | 3734,3735,outer,2,0.94 3736 | 3735,3736,European,2,0.93 3737 | 3736,3737,drunk,2,0.91 3738 | 3737,3738,survey,2,0.95 3739 | 3738,3739,research,2,0.94 3740 | 3739,3740,separation,2,0.92 3741 | 3740,3741,traditionally,2,0.93 3742 | 3741,3742,stuff,2,0.93 3743 | 3742,3743,govern,2,0.93 3744 | 3743,3744,southeast,2,0.94 3745 | 3744,3745,intelligent,2,0.97 3746 | 3745,3746,wherever,2,0.97 3747 | 3746,3747,ballot,3,0.77 3748 | 3747,3748,rhetoric,2,0.92 3749 | 3748,3749,convinced,2,0.97 3750 | 3749,3750,driving,2,0.96 3751 | 3750,3751,vitamin,2,0.86 3752 | 3751,3752,enthusiasm,2,0.97 3753 | 3752,3753,accommodate,2,0.94 3754 | 3753,3754,praise,2,0.96 3755 | 3754,3755,injure,2,0.94 3756 | 3755,3756,wilderness,2,0.90 3757 | 3756,3757,nearby,2,0.94 3758 | 3757,3758,endless,2,0.95 3759 | 3758,3759,mandate,2,0.92 3760 | 3759,3760,pause,2,0.87 3761 | 3760,3761,excuse,2,0.96 3762 | 3761,3762,respectively,2,0.86 3763 | 3762,3763,uncertainty,2,0.92 3764 | 3763,3764,chaos,2,0.97 3765 | 3764,3765,short,2,0.95 3766 | 3765,3766,mechanical,2,0.90 3767 | 3766,3767,canvas,2,0.91 3768 | 3767,3768,forty,2,0.92 3769 | 3768,3769,matter,2,0.96 3770 | 3769,3770,lobby,2,0.94 3771 | 3770,3771,profound,2,0.95 3772 | 3771,3772,format,2,0.90 3773 | 3772,3773,trait,2,0.89 3774 | 3773,3774,currency,2,0.91 3775 | 3774,3775,turkey,2,0.91 3776 | 3775,3776,reserve,2,0.93 3777 | 3776,3777,beam,2,0.93 3778 | 3777,3778,abuse,2,0.94 3779 | 3778,3779,astronomer,2,0.87 3780 | 3779,3780,corruption,2,0.94 3781 | 3780,3781,contractor,2,0.92 3782 | 3781,3782,apologize,2,0.94 3783 | 3782,3783,doctrine,2,0.87 3784 | 3783,3784,genuine,2,0.96 3785 | 3784,3785,thumb,2,0.92 3786 | 3785,3786,unity,2,0.90 3787 | 3786,3787,compromise,2,0.94 3788 | 3787,3788,horrible,2,0.93 3789 | 3788,3789,behavioral,2,0.85 3790 | 3789,3790,exclusive,2,0.95 3791 | 3790,3791,scatter,2,0.94 3792 | 3791,3792,commonly,2,0.89 3793 | 3792,3793,convey,2,0.93 3794 | 3793,3794,rush,2,0.94 3795 | 3794,3795,twist,2,0.89 3796 | 3795,3796,complexity,2,0.90 3797 | 3796,3797,fork,2,0.91 3798 | 3797,3798,disk,2,0.89 3799 | 3798,3799,relieve,2,0.95 3800 | 3799,3800,suspicion,2,0.97 3801 | 3800,3801,lock,2,0.92 3802 | 3801,3802,finish,2,0.92 3803 | 3802,3803,residence,2,0.95 3804 | 3803,3804,shame,2,0.95 3805 | 3804,3805,meaningful,2,0.90 3806 | 3805,3806,sidewalk,2,0.91 3807 | 3806,3807,Olympics,2,0.87 3808 | 3807,3808,technological,2,0.90 3809 | 3808,3809,signature,2,0.95 3810 | 3809,3810,pleasant,2,0.94 3811 | 3810,3811,wow,2,0.87 3812 | 3811,3812,suspend,2,0.96 3813 | 3812,3813,rebel,2,0.92 3814 | 3813,3814,frozen,2,0.93 3815 | 3814,3815,desire,2,0.93 3816 | 3815,3816,spouse,2,0.93 3817 | 3816,3817,fluid,2,0.93 3818 | 3817,3818,pension,2,0.91 3819 | 3818,3819,resume,2,0.96 3820 | 3819,3820,theoretical,2,0.83 3821 | 3820,3821,sodium,2,0.87 3822 | 3821,3822,blow,2,0.95 3823 | 3822,3823,promotion,2,0.94 3824 | 3823,3824,delicate,2,0.95 3825 | 3824,3825,forehead,2,0.85 3826 | 3825,3826,rebuild,2,0.93 3827 | 3826,3827,bounce,2,0.93 3828 | 3827,3828,electrical,2,0.94 3829 | 3828,3829,hook,2,0.94 3830 | 3829,3830,detective,2,0.93 3831 | 3830,3831,traveler,2,0.94 3832 | 3831,3832,click,2,0.92 3833 | 3832,3833,compensation,2,0.92 3834 | 3833,3834,signal,2,0.97 3835 | 3834,3835,exit,2,0.94 3836 | 3835,3836,attraction,2,0.95 3837 | 3836,3837,dedicate,2,0.96 3838 | 3837,3838,altogether,2,0.97 3839 | 3838,3839,pickup,2,0.93 3840 | 3839,3840,carve,2,0.95 3841 | 3840,3841,needle,2,0.94 3842 | 3841,3842,belly,2,0.89 3843 | 3842,3843,ship,2,0.95 3844 | 3843,3844,scare,2,0.94 3845 | 3844,3845,portfolio,2,0.90 3846 | 3845,3846,shuttle,2,0.91 3847 | 3846,3847,invisible,2,0.94 3848 | 3847,3848,timing,2,0.94 3849 | 3848,3849,engagement,2,0.90 3850 | 3849,3850,ankle,2,0.93 3851 | 3850,3851,transaction,2,0.93 3852 | 3851,3852,rescue,2,0.96 3853 | 3852,3853,counterpart,2,0.92 3854 | 3853,3854,historically,2,0.92 3855 | 3854,3855,firmly,2,0.95 3856 | 3855,3856,mild,2,0.95 3857 | 3856,3857,rider,2,0.92 3858 | 3857,3858,doll,2,0.93 3859 | 3858,3859,noon,2,0.92 3860 | 3859,3860,exhibit,2,0.93 3861 | 3860,3861,amid,2,0.94 3862 | 3861,3862,identical,2,0.94 3863 | 3862,3863,precise,2,0.95 3864 | 3863,3864,anxious,2,0.96 3865 | 3864,3865,structural,2,0.87 3866 | 3865,3866,residential,2,0.92 3867 | 3866,3867,loud,2,0.90 3868 | 3867,3868,diagnose,2,0.94 3869 | 3868,3869,carbohydrate,2,0.85 3870 | 3869,3870,liberty,2,0.91 3871 | 3870,3871,poster,2,0.96 3872 | 3871,3872,theology,2,0.86 3873 | 3872,3873,nonprofit,2,0.91 3874 | 3873,3874,crawl,2,0.90 3875 | 3874,3875,oxygen,2,0.94 3876 | 3875,3876,handsome,2,0.90 3877 | 3876,3877,magic,2,0.92 3878 | 3877,3878,sum,2,0.94 3879 | 3878,3879,provided,2,0.91 3880 | 3879,3880,businessman,2,0.94 3881 | 3880,3881,promising,2,0.96 3882 | 3881,3882,conscious,2,0.95 3883 | 3882,3883,determination,2,0.94 3884 | 3883,3884,donor,2,0.94 3885 | 3884,3885,hers,2,0.87 3886 | 3885,3886,pastor,2,0.93 3887 | 3886,3887,jazz,2,0.94 3888 | 3887,3888,opera,2,0.92 3889 | 3888,3889,Japanese,2,0.91 3890 | 3889,3890,bite,2,0.94 3891 | 3890,3891,frame,2,0.95 3892 | 3891,3892,evil,2,0.96 3893 | 3892,3893,acquisition,2,0.92 3894 | 3893,3894,pit,2,0.94 3895 | 3894,3895,hug,2,0.90 3896 | 3895,3896,wildlife,2,0.91 3897 | 3896,3897,punish,2,0.97 3898 | 3897,3898,giant,2,0.95 3899 | 3898,3899,primary,2,0.86 3900 | 3899,3900,equity,2,0.92 3901 | 3900,3901,wrong,2,0.95 3902 | 3901,3902,doorway,2,0.85 3903 | 3902,3903,departure,2,0.96 3904 | 3903,3904,elevator,2,0.89 3905 | 3904,3905,teenage,2,0.95 3906 | 3905,3906,guidance,2,0.91 3907 | 3906,3907,happiness,2,0.95 3908 | 3907,3908,statue,2,0.95 3909 | 3908,3909,pursuit,2,0.95 3910 | 3909,3910,repair,2,0.95 3911 | 3910,3911,decent,2,0.96 3912 | 3911,3912,gym,2,0.93 3913 | 3912,3913,oral,2,0.90 3914 | 3913,3914,clerk,2,0.93 3915 | 3914,3915,Israeli,2,0.87 3916 | 3915,3916,envelope,2,0.92 3917 | 3916,3917,reporting,2,0.93 3918 | 3917,3918,destination,2,0.95 3919 | 3918,3919,fist,2,0.86 3920 | 3919,3920,endorse,2,0.93 3921 | 3920,3921,exploration,2,0.92 3922 | 3921,3922,generous,2,0.97 3923 | 3922,3923,bath,2,0.93 3924 | 3923,3924,rescue,2,0.94 3925 | 3924,3925,thereby,2,0.88 3926 | 3925,3926,overall,2,0.92 3927 | 3926,3927,indicator,2,0.88 3928 | 3927,3928,sunlight,2,0.91 3929 | 3928,3929,feedback,2,0.86 3930 | 3929,3930,spectrum,2,0.92 3931 | 3930,3931,purple,2,0.92 3932 | 3931,3932,laser,2,0.93 3933 | 3932,3933,bold,2,0.96 3934 | 3933,3934,reluctant,2,0.97 3935 | 3934,3935,starting,2,0.93 3936 | 3935,3936,expertise,2,0.92 3937 | 3936,3937,practically,2,0.96 3938 | 3937,3938,program,2,0.95 3939 | 3938,3939,picture,2,0.93 3940 | 3939,3940,tune,2,0.96 3941 | 3940,3941,eating,2,0.94 3942 | 3941,3942,age,2,0.95 3943 | 3942,3943,volunteer,2,0.97 3944 | 3943,3944,hint,2,0.95 3945 | 3944,3945,sharply,2,0.95 3946 | 3945,3946,parade,2,0.95 3947 | 3946,3947,advocate,2,0.92 3948 | 3947,3948,realm,2,0.91 3949 | 3948,3949,ban,2,0.94 3950 | 3949,3950,strip,2,0.96 3951 | 3950,3951,cancel,2,0.95 3952 | 3951,3952,blend,2,0.91 3953 | 3952,3953,therapist,2,0.92 3954 | 3953,3954,slice,2,0.90 3955 | 3954,3955,peel,2,0.92 3956 | 3955,3956,pizza,2,0.93 3957 | 3956,3957,recipient,2,0.93 3958 | 3957,3958,hesitate,2,0.88 3959 | 3958,3959,flip,2,0.91 3960 | 3959,3960,accounting,2,0.90 3961 | 3960,3961,debate,2,0.95 3962 | 3961,3962,bias,2,0.89 3963 | 3962,3963,huh,2,0.87 3964 | 3963,3964,metaphor,2,0.88 3965 | 3964,3965,candle,2,0.91 3966 | 3965,3966,handle,2,0.93 3967 | 3966,3967,worry,2,0.96 3968 | 3967,3968,judicial,2,0.91 3969 | 3968,3969,entity,2,0.90 3970 | 3969,3970,suffering,2,0.94 3971 | 3970,3971,full-time,2,0.94 3972 | 3971,3972,feel,2,0.95 3973 | 3972,3973,lamp,2,0.90 3974 | 3973,3974,garbage,2,0.95 3975 | 3974,3975,servant,2,0.93 3976 | 3975,3976,addition,2,0.93 3977 | 3976,3977,regulatory,2,0.90 3978 | 3977,3978,diplomatic,2,0.91 3979 | 3978,3979,elegant,2,0.94 3980 | 3979,3980,inside,2,0.94 3981 | 3980,3981,reception,2,0.95 3982 | 3981,3982,vanish,2,0.91 3983 | 3982,3983,automatically,2,0.96 3984 | 3983,3984,chin,2,0.86 3985 | 3984,3985,trail,2,0.93 3986 | 3985,3986,necessity,2,0.92 3987 | 3986,3987,confess,2,0.96 3988 | 3987,3988,racism,2,0.93 3989 | 3988,3989,starter,2,0.87 3990 | 3989,3990,interior,2,0.94 3991 | 3990,3991,banking,2,0.92 3992 | 3991,3992,casual,2,0.94 3993 | 3992,3993,gravity,2,0.93 3994 | 3993,3994,enroll,2,0.92 3995 | 3994,3995,diminish,2,0.95 3996 | 3995,3996,prevention,2,0.88 3997 | 3996,3997,Arab,2,0.90 3998 | 3997,3998,value,2,0.93 3999 | 3998,3999,minimize,2,0.91 4000 | 3999,4000,chop,2,0.87 4001 | 4000,4001,performer,2,0.94 4002 | 4001,4002,intent,2,0.94 4003 | 4002,4003,isolate,2,0.94 4004 | 4003,4004,pump,2,0.96 4005 | 4004,4005,inventory,2,0.92 4006 | 4005,4006,productive,2,0.93 4007 | 4006,4007,assembly,2,0.94 4008 | 4007,4008,civic,2,0.91 4009 | 4008,4009,silk,2,0.91 4010 | 4009,4010,magnitude,2,0.91 4011 | 4010,4011,steep,2,0.93 4012 | 4011,4012,hostage,2,0.75 4013 | 4012,4013,collector,2,0.93 4014 | 4013,4014,popularity,2,0.95 4015 | 4014,4015,kiss,2,0.90 4016 | 4015,4016,alien,2,0.90 4017 | 4016,4017,dynamic,2,0.90 4018 | 4017,4018,scary,2,0.94 4019 | 4018,4019,equation,2,0.87 4020 | 4019,4020,angel,2,0.92 4021 | 4020,4021,switch,2,0.95 4022 | 4021,4022,offering,2,0.94 4023 | 4022,4023,rage,2,0.94 4024 | 4023,4024,photography,2,0.91 4025 | 4024,4025,repair,2,0.96 4026 | 4025,4026,toilet,2,0.93 4027 | 4026,4027,disappointed,2,0.96 4028 | 4027,4028,precious,2,0.96 4029 | 4028,4029,prohibit,2,0.93 4030 | 4029,4030,representative,2,0.92 4031 | 4030,4031,content,2,0.90 4032 | 4031,4032,realistic,2,0.95 4033 | 4032,4033,Russian,2,0.93 4034 | 4033,4034,hidden,2,0.95 4035 | 4034,4035,command,2,0.96 4036 | 4035,4036,tender,2,0.92 4037 | 4036,4037,wake,2,0.97 4038 | 4037,4038,gathering,2,0.96 4039 | 4038,4039,outstanding,2,0.94 4040 | 4039,4040,stumble,2,0.91 4041 | 4040,4041,lonely,2,0.94 4042 | 4041,4042,automobile,2,0.94 4043 | 4042,4043,artificial,2,0.95 4044 | 4043,4044,dawn,2,0.93 4045 | 4044,4045,abstract,2,0.90 4046 | 4045,4046,descend,2,0.93 4047 | 4046,4047,silly,2,0.93 4048 | 4047,4048,hook,2,0.94 4049 | 4048,4049,tide,2,0.96 4050 | 4049,4050,shared,2,0.91 4051 | 4050,4051,hopefully,2,0.92 4052 | 4051,4052,readily,2,0.92 4053 | 4052,4053,cooperate,2,0.95 4054 | 4053,4054,revolutionary,2,0.93 4055 | 4054,4055,romance,2,0.95 4056 | 4055,4056,hardware,2,0.92 4057 | 4056,4057,pillow,2,0.90 4058 | 4057,4058,kit,2,0.92 4059 | 4058,4059,cook,2,0.93 4060 | 4059,4060,spread,2,0.95 4061 | 4060,4061,continent,2,0.95 4062 | 4061,4062,seal,2,0.96 4063 | 4062,4063,circuit,2,0.94 4064 | 4063,4064,sink,2,0.90 4065 | 4064,4065,ruling,2,0.92 4066 | 4065,4066,shortage,2,0.94 4067 | 4066,4067,annually,2,0.92 4068 | 4067,4068,lately,2,0.95 4069 | 4068,4069,trap,2,0.95 4070 | 4069,4070,scan,2,0.92 4071 | 4070,4071,fool,2,0.91 4072 | 4071,4072,deadline,2,0.91 4073 | 4072,4073,rear,2,0.92 4074 | 4073,4074,processing,2,0.88 4075 | 4074,4075,ranch,2,0.94 4076 | 4075,4076,coastal,2,0.92 4077 | 4076,4077,undertake,2,0.90 4078 | 4077,4078,softly,2,0.84 4079 | 4078,4079,reserve,2,0.95 4080 | 4079,4080,burning,2,0.95 4081 | 4080,4081,verbal,2,0.87 4082 | 4081,4082,tribal,2,0.90 4083 | 4082,4083,ridiculous,2,0.94 4084 | 4083,4084,automatic,2,0.96 4085 | 4084,4085,diamond,2,0.93 4086 | 4085,4086,credibility,2,0.93 4087 | 4086,4087,import,2,0.91 4088 | 4087,4088,sexually,2,0.93 4089 | 4088,4089,spring,2,0.94 4090 | 4089,4090,way,2,0.95 4091 | 4090,4091,divine,2,0.89 4092 | 4091,4092,sentiment,2,0.95 4093 | 4092,4093,cart,2,0.92 4094 | 4093,4094,oversee,2,0.93 4095 | 4094,4095,stem,2,0.94 4096 | 4095,4096,elder,2,0.92 4097 | 4096,4097,pro,2,0.91 4098 | 4097,4098,inspiration,2,0.95 4099 | 4098,4099,Dutch,2,0.94 4100 | 4099,4100,quantity,2,0.92 4101 | 4100,4101,trailer,2,0.93 4102 | 4101,4102,mate,2,0.94 4103 | 4102,4103,o'clock,2,0.97 4104 | 4103,4104,Greek,2,0.94 4105 | 4104,4105,genius,2,0.96 4106 | 4105,4106,monument,2,0.94 4107 | 4106,4107,bid,2,0.90 4108 | 4107,4108,quest,2,0.95 4109 | 4108,4109,sacrifice,2,0.95 4110 | 4109,4110,invitation,2,0.97 4111 | 4110,4111,accuracy,2,0.90 4112 | 4111,4112,juror,2,0.83 4113 | 4112,4113,officially,2,0.97 4114 | 4113,4114,broker,2,0.90 4115 | 4114,4115,treasure,2,0.94 4116 | 4115,4116,loyalty,2,0.94 4117 | 4116,4117,credit,2,0.94 4118 | 4117,4118,shock,2,0.96 4119 | 4118,4119,talented,2,0.95 4120 | 4119,4120,gasoline,2,0.93 4121 | 4120,4121,stiff,2,0.93 4122 | 4121,4122,output,2,0.88 4123 | 4122,4123,nominee,2,0.87 4124 | 4123,4124,extended,2,0.94 4125 | 4124,4125,please,2,0.95 4126 | 4125,4126,diabetes,2,0.88 4127 | 4126,4127,slap,2,0.89 4128 | 4127,4128,toxic,2,0.93 4129 | 4128,4129,alleged,2,0.93 4130 | 4129,4130,jaw,2,0.90 4131 | 4130,4131,grief,2,0.94 4132 | 4131,4132,mysterious,2,0.96 4133 | 4132,4133,rocket,2,0.92 4134 | 4133,4134,donate,2,0.94 4135 | 4134,4135,inmate,2,0.92 4136 | 4135,4136,tackle,2,0.93 4137 | 4136,4137,dynamics,2,0.87 4138 | 4137,4138,bow,2,0.91 4139 | 4138,4139,ours,2,0.96 4140 | 4139,4140,senior,2,0.91 4141 | 4140,4141,dignity,2,0.94 4142 | 4141,4142,carpet,2,0.93 4143 | 4142,4143,parental,2,0.85 4144 | 4143,4144,bubble,2,0.94 4145 | 4144,4145,heat,2,0.93 4146 | 4145,4146,buddy,2,0.94 4147 | 4146,4147,barn,2,0.91 4148 | 4147,4148,sword,2,0.88 4149 | 4148,4149,flash,2,0.91 4150 | 4149,4150,seventh,2,0.95 4151 | 4150,4151,glory,2,0.96 4152 | 4151,4152,tightly,2,0.93 4153 | 4152,4153,protective,2,0.95 4154 | 4153,4154,tuck,2,0.90 4155 | 4154,4155,drum,2,0.96 4156 | 4155,4156,faint,2,0.89 4157 | 4156,4157,post,2,0.94 4158 | 4157,4158,queen,2,0.93 4159 | 4158,4159,dilemma,2,0.92 4160 | 4159,4160,input,2,0.88 4161 | 4160,4161,specialize,2,0.94 4162 | 4161,4162,northeast,2,0.94 4163 | 4162,4163,shallow,2,0.94 4164 | 4163,4164,liability,2,0.90 4165 | 4164,4165,sail,2,0.94 4166 | 4165,4166,merchant,2,0.94 4167 | 4166,4167,stadium,2,0.88 4168 | 4167,4168,improved,2,0.91 4169 | 4168,4169,bloody,2,0.94 4170 | 4169,4170,defeat,2,0.96 4171 | 4170,4171,associated,2,0.90 4172 | 4171,4172,withdrawal,2,0.92 4173 | 4172,4173,refrigerator,2,0.94 4174 | 4173,4174,nest,2,0.93 4175 | 4174,4175,near,2,0.97 4176 | 4175,4176,thoroughly,2,0.96 4177 | 4176,4177,lane,2,0.93 4178 | 4177,4178,ancestor,2,0.93 4179 | 4178,4179,condemn,2,0.95 4180 | 4179,4180,steam,2,0.95 4181 | 4180,4181,accent,2,0.94 4182 | 4181,4182,escape,2,0.96 4183 | 4182,4183,optimistic,2,0.95 4184 | 4183,4184,unite,2,0.95 4185 | 4184,4185,cage,2,0.92 4186 | 4185,4186,equip,2,0.94 4187 | 4186,4187,shrimp,2,0.91 4188 | 4187,4188,homeland,2,0.90 4189 | 4188,4189,exchange,2,0.95 4190 | 4189,4190,rack,2,0.91 4191 | 4190,4191,costume,2,0.95 4192 | 4191,4192,wolf,2,0.90 4193 | 4192,4193,courtroom,2,0.89 4194 | 4193,4194,statute,2,0.88 4195 | 4194,4195,cartoon,2,0.94 4196 | 4195,4196,besides,2,0.97 4197 | 4196,4197,productivity,2,0.91 4198 | 4197,4198,grin,2,0.83 4199 | 4198,4199,symbolic,2,0.89 4200 | 4199,4200,seal,2,0.92 4201 | 4200,4201,bug,2,0.92 4202 | 4201,4202,bless,2,0.96 4203 | 4202,4203,aunt,2,0.90 4204 | 4203,4204,agriculture,2,0.91 4205 | 4204,4205,rock,2,0.93 4206 | 4205,4206,hostile,2,0.95 4207 | 4206,4207,root,2,0.96 4208 | 4207,4208,conceive,2,0.93 4209 | 4208,4209,combined,2,0.93 4210 | 4209,4210,instantly,2,0.93 4211 | 4210,4211,bankruptcy,2,0.90 4212 | 4211,4212,vaccine,2,0.89 4213 | 4212,4213,bonus,2,0.92 4214 | 4213,4214,collaboration,2,0.87 4215 | 4214,4215,mixed,2,0.95 4216 | 4215,4216,opposed,2,0.93 4217 | 4216,4217,orbit,2,0.92 4218 | 4217,4218,grasp,2,0.94 4219 | 4218,4219,patience,2,0.92 4220 | 4219,4220,spite,2,0.94 4221 | 4220,4221,tropical,2,0.92 4222 | 4221,4222,voting,2,0.90 4223 | 4222,4223,patrol,2,0.94 4224 | 4223,4224,willingness,2,0.92 4225 | 4224,4225,position,2,0.95 4226 | 4225,4226,revelation,2,0.95 4227 | 4226,4227,rent,2,0.94 4228 | 4227,4228,calm,2,0.92 4229 | 4228,4229,jewelry,2,0.94 4230 | 4229,4230,Cuban,2,0.90 4231 | 4230,4231,haul,2,0.93 4232 | 4231,4232,concede,2,0.95 4233 | 4232,4233,trace,2,0.94 4234 | 4233,4234,wagon,2,0.91 4235 | 4234,4235,afterward,2,0.94 4236 | 4235,4236,spectacular,2,0.95 4237 | 4236,4237,ruin,2,0.95 4238 | 4237,4238,sheer,2,0.96 4239 | 4238,4239,prior,2,0.88 4240 | 4239,4240,immune,2,0.91 4241 | 4240,4241,reliability,2,0.84 4242 | 4241,4242,ass,2,0.86 4243 | 4242,4243,alongside,2,0.96 4244 | 4243,4244,bush,2,0.94 4245 | 4244,4245,exotic,2,0.96 4246 | 4245,4246,fascinating,2,0.95 4247 | 4246,4247,secure,2,0.96 4248 | 4247,4248,clip,2,0.89 4249 | 4248,4249,thigh,2,0.90 4250 | 4249,4250,bull,2,0.93 4251 | 4250,4251,drawer,2,0.89 4252 | 4251,4252,regard,2,0.89 4253 | 4252,4253,sheep,2,0.94 4254 | 4253,4254,discourage,2,0.96 4255 | 4254,4255,coordinator,2,0.91 4256 | 4255,4256,ideological,2,0.87 4257 | 4256,4257,runner,2,0.93 4258 | 4257,4258,secular,2,0.90 4259 | 4258,4259,intimate,2,0.96 4260 | 4259,4260,empire,2,0.94 4261 | 4260,4261,cab,2,0.90 4262 | 4261,4262,divorce,2,0.97 4263 | 4262,4263,exam,2,0.95 4264 | 4263,4264,documentary,2,0.93 4265 | 4264,4265,neutral,2,0.93 4266 | 4265,4266,biology,2,0.93 4267 | 4266,4267,flexible,2,0.93 4268 | 4267,4268,progressive,2,0.92 4269 | 4268,4269,web,2,0.92 4270 | 4269,4270,conspiracy,2,0.94 4271 | 4270,4271,catch,2,0.92 4272 | 4271,4272,casualty,2,0.91 4273 | 4272,4273,republic,2,0.78 4274 | 4273,4274,execution,2,0.93 4275 | 4274,4275,terrific,2,0.92 4276 | 4275,4276,whale,2,0.84 4277 | 4276,4277,functional,2,0.87 4278 | 4277,4278,star,2,0.92 4279 | 4278,4279,draft,2,0.94 4280 | 4279,4280,instinct,2,0.96 4281 | 4280,4281,teammate,2,0.89 4282 | 4281,4282,aluminum,2,0.90 4283 | 4282,4283,whoever,2,0.93 4284 | 4283,4284,ministry,2,0.93 4285 | 4284,4285,verdict,2,0.89 4286 | 4285,4286,instruct,2,0.95 4287 | 4286,4287,skull,2,0.92 4288 | 4287,4288,self-esteem,2,0.86 4289 | 4288,4289,ease,2,0.95 4290 | 4289,4290,cooperative,2,0.87 4291 | 4290,4291,manipulate,2,0.94 4292 | 4291,4292,bee,2,0.92 4293 | 4292,4293,practitioner,2,0.87 4294 | 4293,4294,loop,2,0.94 4295 | 4294,4295,edit,2,0.94 4296 | 4295,4296,whip,2,0.93 4297 | 4296,4297,puzzle,2,0.94 4298 | 4297,4298,mushroom,2,0.90 4299 | 4298,4299,subsidy,2,0.93 4300 | 4299,4300,boil,2,0.94 4301 | 4300,4301,tragic,2,0.96 4302 | 4301,4302,mathematics,2,0.85 4303 | 4302,4303,mechanic,2,0.95 4304 | 4303,4304,jar,2,0.92 4305 | 4304,4305,respect,2,0.87 4306 | 4305,4306,earthquake,2,0.90 4307 | 4306,4307,pork,2,0.92 4308 | 4307,4308,creativity,2,0.89 4309 | 4308,4309,safely,1,0.97 4310 | 4309,4310,underlying,2,0.91 4311 | 4310,4311,dessert,2,0.92 4312 | 4311,4312,sympathy,2,0.95 4313 | 4312,4313,fisherman,2,0.91 4314 | 4313,4314,incredibly,2,0.94 4315 | 4314,4315,isolation,2,0.92 4316 | 4315,4316,sock,2,0.92 4317 | 4316,4317,near,2,0.94 4318 | 4317,4318,jump,2,0.95 4319 | 4318,4319,eleven,2,0.92 4320 | 4319,4320,sexy,2,0.91 4321 | 4320,4321,entrepreneur,2,0.92 4322 | 4321,4322,syndrome,2,0.93 4323 | 4322,4323,bureau,2,0.93 4324 | 4323,4324,seat,2,0.92 4325 | 4324,4325,workplace,2,0.93 4326 | 4325,4326,ambition,1,0.96 4327 | 4326,4327,touchdown,2,0.82 4328 | 4327,4328,utilize,2,0.87 4329 | 4328,4329,breeze,2,0.89 4330 | 4329,4330,costly,2,0.93 4331 | 4330,4331,ambitious,2,0.95 4332 | 4331,4332,Christianity,2,0.91 4333 | 4332,4333,presumably,2,0.95 4334 | 4333,4334,influential,2,0.93 4335 | 4334,4335,translation,2,0.91 4336 | 4335,4336,uncertain,1,0.96 4337 | 4336,4337,dissolve,2,0.93 4338 | 4337,4338,object,1,0.97 4339 | 4338,4339,statistical,2,0.86 4340 | 4339,4340,gut,2,0.94 4341 | 4340,4341,metropolitan,2,0.93 4342 | 4341,4342,rolling,2,0.94 4343 | 4342,4343,aesthetic,2,0.86 4344 | 4343,4344,spell,1,0.97 4345 | 4344,4345,insert,2,0.94 4346 | 4345,4346,booth,2,0.92 4347 | 4346,4347,helmet,2,0.92 4348 | 4347,4348,waist,2,0.89 4349 | 4348,4349,expected,2,0.93 4350 | 4349,4350,lion,2,0.94 4351 | 4350,4351,accomplishment,1,0.95 4352 | 4351,4352,royal,2,0.94 4353 | 4352,4353,panic,2,0.93 4354 | 4353,4354,cast,2,0.95 4355 | 4354,4355,crush,1,0.95 4356 | 4355,4356,actively,2,0.91 4357 | 4356,4357,cliff,2,0.93 4358 | 4357,4358,minimal,2,0.92 4359 | 4358,4359,cord,2,0.94 4360 | 4359,4360,fortunately,1,0.95 4361 | 4360,4361,cocaine,2,0.91 4362 | 4361,4362,illusion,2,0.94 4363 | 4362,4363,anonymous,1,0.95 4364 | 4363,4364,tolerate,1,0.97 4365 | 4364,4365,appreciation,2,0.94 4366 | 4365,4366,commissioner,2,0.90 4367 | 4366,4367,harm,1,0.97 4368 | 4367,4368,flexibility,2,0.92 4369 | 4368,4369,instructional,2,0.81 4370 | 4369,4370,scramble,2,0.93 4371 | 4370,4371,casino,2,0.91 4372 | 4371,4372,tumor,2,0.88 4373 | 4372,4373,decorate,1,0.94 4374 | 4373,4374,sort,1,0.97 4375 | 4374,4375,charge,1,0.96 4376 | 4375,4376,pulse,1,0.94 4377 | 4376,4377,equivalent,1,0.95 4378 | 4377,4378,fixed,2,0.93 4379 | 4378,4379,experienced,2,0.93 4380 | 4379,4380,donation,2,0.92 4381 | 4380,4381,diary,1,0.95 4382 | 4381,4382,sibling,2,0.92 4383 | 4382,4383,irony,1,0.97 4384 | 4383,4384,spoon,2,0.91 4385 | 4384,4385,midst,1,0.98 4386 | 4385,4386,alley,2,0.90 4387 | 4386,4387,upset,1,0.94 4388 | 4387,4388,interact,2,0.90 4389 | 4388,4389,soap,1,0.94 4390 | 4389,4390,cute,2,0.92 4391 | 4390,4391,rival,2,0.93 4392 | 4391,4392,short-term,1,0.93 4393 | 4392,4393,punch,2,0.92 4394 | 4393,4394,pin,2,0.93 4395 | 4394,4395,hockey,2,0.91 4396 | 4395,4396,passing,1,0.95 4397 | 4396,4397,persist,2,0.93 4398 | 4397,4398,supplier,2,0.93 4399 | 4398,4399,known,1,0.95 4400 | 4399,4400,momentum,1,0.94 4401 | 4400,4401,purse,2,0.91 4402 | 4401,4402,shed,1,0.97 4403 | 4402,4403,liquid,1,0.94 4404 | 4403,4404,icon,2,0.92 4405 | 4404,4405,elephant,2,0.92 4406 | 4405,4406,consequently,2,0.86 4407 | 4406,4407,legislature,2,0.92 4408 | 4407,4408,associate,1,0.95 4409 | 4408,4409,franchise,2,0.88 4410 | 4409,4410,correctly,1,0.95 4411 | 4410,4411,mentally,1,0.96 4412 | 4411,4412,foster,2,0.89 4413 | 4412,4413,bicycle,1,0.93 4414 | 4413,4414,encouraging,1,0.95 4415 | 4414,4415,cheat,1,0.96 4416 | 4415,4416,access,2,0.92 4417 | 4416,4417,heal,1,0.96 4418 | 4417,4418,fever,1,0.95 4419 | 4418,4419,filter,2,0.90 4420 | 4419,4420,rabbit,2,0.91 4421 | 4420,4421,coin,1,0.93 4422 | 4421,4422,exploit,1,0.94 4423 | 4422,4423,accessible,1,0.93 4424 | 4423,4424,organism,2,0.89 4425 | 4424,4425,sensation,1,0.94 4426 | 4425,4426,partially,1,0.94 4427 | 4426,4427,stay,1,0.96 4428 | 4427,4428,upstairs,2,0.88 4429 | 4428,4429,dried,2,0.91 4430 | 4429,4430,minimum,1,0.94 4431 | 4430,4431,pro,2,0.91 4432 | 4431,4432,conservation,2,0.90 4433 | 4432,4433,shove,2,0.87 4434 | 4433,4434,backyard,1,0.94 4435 | 4434,4435,charter,2,0.92 4436 | 4435,4436,stove,2,0.91 4437 | 4436,4437,consent,2,0.89 4438 | 4437,4438,comprise,2,0.88 4439 | 4438,4439,reminder,1,0.97 4440 | 4439,4440,alike,1,0.96 4441 | 4440,4441,placement,2,0.88 4442 | 4441,4442,dough,2,0.88 4443 | 4442,4443,grandchild,1,0.95 4444 | 4443,4444,dam,1,0.92 4445 | 4444,4445,reportedly,1,0.93 4446 | 4445,4446,well-known,1,0.95 4447 | 4446,4447,surrounding,1,0.95 4448 | 4447,4448,ecological,2,0.86 4449 | 4448,4449,outfit,1,0.94 4450 | 4449,4450,unprecedented,1,0.95 4451 | 4450,4451,columnist,1,0.92 4452 | 4451,4452,workout,2,0.86 4453 | 4452,4453,preliminary,1,0.93 4454 | 4453,4454,patent,2,0.91 4455 | 4454,4455,shy,1,0.95 4456 | 4455,4456,quote,2,0.88 4457 | 4456,4457,trash,1,0.95 4458 | 4457,4458,disabled,1,0.92 4459 | 4458,4459,gross,1,0.95 4460 | 4459,4460,damn,2,0.88 4461 | 4460,4461,hormone,2,0.88 4462 | 4461,4462,texture,1,0.92 4463 | 4462,4463,counter,1,0.96 4464 | 4463,4464,pencil,1,0.92 4465 | 4464,4465,associate,1,0.94 4466 | 4465,4466,frontier,1,0.93 4467 | 4466,4467,spray,2,0.91 4468 | 4467,4468,bet,1,0.95 4469 | 4468,4469,disclose,1,0.93 4470 | 4469,4470,custody,1,0.92 4471 | 4470,4471,banker,1,0.92 4472 | 4471,4472,beast,2,0.90 4473 | 4472,4473,interfere,1,0.96 4474 | 4473,4474,oak,1,0.92 4475 | 4474,4475,case,1,0.94 4476 | 4475,4476,eighth,1,0.94 4477 | 4476,4477,notebook,1,0.93 4478 | 4477,4478,outline,1,0.93 4479 | 4478,4479,gaze,2,0.86 4480 | 4479,4480,attendance,1,0.92 4481 | 4480,4481,speculation,1,0.96 4482 | 4481,4482,uncover,1,0.96 4483 | 4482,4483,behalf,1,0.95 4484 | 4483,4484,innovative,1,0.92 4485 | 4484,4485,shark,2,0.88 4486 | 4485,4486,reward,1,0.96 4487 | 4486,4487,mill,1,0.95 4488 | 4487,4488,installation,1,0.92 4489 | 4488,4489,stimulate,1,0.92 4490 | 4489,4490,tag,1,0.95 4491 | 4490,4491,vertical,1,0.91 4492 | 4491,4492,swimming,1,0.95 4493 | 4492,4493,fleet,1,0.94 4494 | 4493,4494,catalog,1,0.92 4495 | 4494,4495,outsider,1,0.96 4496 | 4495,4496,sacrifice,1,0.96 4497 | 4496,4497,desperately,1,0.95 4498 | 4497,4498,stance,1,0.93 4499 | 4498,4499,compel,1,0.95 4500 | 4499,4500,sensitivity,1,0.91 4501 | 4500,4501,someday,1,0.94 4502 | 4501,4502,instant,1,0.94 4503 | 4502,4503,debut,1,0.91 4504 | 4503,4504,proclaim,1,0.95 4505 | 4504,4505,worldwide,1,0.94 4506 | 4505,4506,hike,2,0.89 4507 | 4506,4507,required,1,0.91 4508 | 4507,4508,confrontation,1,0.94 4509 | 4508,4509,colorful,1,0.94 4510 | 4509,4510,ideal,1,0.91 4511 | 4510,4511,constitution,2,0.89 4512 | 4511,4512,trainer,1,0.93 4513 | 4512,4513,Thanksgiving,1,0.92 4514 | 4513,4514,scent,2,0.89 4515 | 4514,4515,stack,1,0.92 4516 | 4515,4516,eyebrow,2,0.87 4517 | 4516,4517,sack,1,0.92 4518 | 4517,4518,cease,1,0.95 4519 | 4518,4519,inherit,1,0.97 4520 | 4519,4520,tray,2,0.90 4521 | 4520,4521,pioneer,1,0.94 4522 | 4521,4522,organizational,2,0.84 4523 | 4522,4523,textbook,1,0.90 4524 | 4523,4524,uh,2,0.87 4525 | 4524,4525,nasty,1,0.95 4526 | 4525,4526,shrink,1,0.96 4527 | 4526,4527,model,1,0.91 4528 | 4527,4528,emerging,1,0.91 4529 | 4528,4529,dot,1,0.93 4530 | 4529,4530,wheat,1,0.94 4531 | 4530,4531,fierce,1,0.96 4532 | 4531,4532,envision,1,0.96 4533 | 4532,4533,rational,1,0.90 4534 | 4533,4534,kingdom,1,0.95 4535 | 4534,4535,aisle,1,0.92 4536 | 4535,4536,weaken,1,0.95 4537 | 4536,4537,protocol,2,0.89 4538 | 4537,4538,exclusively,1,0.92 4539 | 4538,4539,vocal,1,0.94 4540 | 4539,4540,marketplace,1,0.95 4541 | 4540,4541,openly,1,0.96 4542 | 4541,4542,unfair,1,0.95 4543 | 4542,4543,terrain,1,0.91 4544 | 4543,4544,deploy,1,0.94 4545 | 4544,4545,risky,1,0.95 4546 | 4545,4546,pasta,2,0.88 4547 | 4546,4547,genre,1,0.90 4548 | 4547,4548,distract,1,0.93 4549 | 4548,4549,merit,1,0.94 4550 | 4549,4550,planner,1,0.92 4551 | 4550,4551,depressed,1,0.96 4552 | 4551,4552,chunk,1,0.94 4553 | 4552,4553,closest,1,0.97 4554 | 4553,4554,discount,1,0.92 4555 | 4554,4555,no,1,0.95 4556 | 4555,4556,ladder,1,0.93 4557 | 4556,4557,jungle,1,0.94 4558 | 4557,4558,migration,2,0.88 4559 | 4558,4559,breathing,1,0.92 4560 | 4559,4560,invade,1,0.94 4561 | 4560,4561,hurricane,2,0.83 4562 | 4561,4562,retailer,1,0.90 4563 | 4562,4563,classify,1,0.89 4564 | 4563,4564,wound,1,0.94 4565 | 4564,4565,coup,2,0.86 4566 | 4565,4566,aid,1,0.94 4567 | 4566,4567,ambassador,1,0.91 4568 | 4567,4568,density,2,0.88 4569 | 4568,4569,supportive,1,0.94 4570 | 4569,4570,curiosity,1,0.94 4571 | 4570,4571,skip,1,0.94 4572 | 4571,4572,aggression,2,0.85 4573 | 4572,4573,stimulus,2,0.85 4574 | 4573,4574,journalism,1,0.93 4575 | 4574,4575,robot,2,0.88 4576 | 4575,4576,flood,1,0.96 4577 | 4576,4577,dip,1,0.93 4578 | 4577,4578,likewise,1,0.91 4579 | 4578,4579,informal,1,0.89 4580 | 4579,4580,Persian,2,0.83 4581 | 4580,4581,feather,1,0.92 4582 | 4581,4582,sphere,1,0.90 4583 | 4582,4583,tighten,1,0.93 4584 | 4583,4584,boast,1,0.92 4585 | 4584,4585,pat,1,0.89 4586 | 4585,4586,perceived,2,0.83 4587 | 4586,4587,sole,1,0.95 4588 | 4587,4588,publicity,1,0.95 4589 | 4588,4589,major,1,0.93 4590 | 4589,4590,unfold,1,0.97 4591 | 4590,4591,joke,1,0.95 4592 | 4591,4592,well-being,2,0.88 4593 | 4592,4593,validity,2,0.82 4594 | 4593,4594,ecosystem,2,0.85 4595 | 4594,4595,strictly,1,0.95 4596 | 4595,4596,partial,1,0.92 4597 | 4596,4597,collar,1,0.91 4598 | 4597,4598,weed,1,0.93 4599 | 4598,4599,compliance,1,0.88 4600 | 4599,4600,streak,1,0.90 4601 | 4600,4601,supposedly,1,0.97 4602 | 4601,4602,added,1,0.94 4603 | 4602,4603,builder,1,0.92 4604 | 4603,4604,glimpse,1,0.95 4605 | 4604,4605,premise,1,0.92 4606 | 4605,4606,specialty,1,0.94 4607 | 4606,4607,deem,1,0.93 4608 | 4607,4608,artifact,1,0.91 4609 | 4608,4609,sneak,1,0.92 4610 | 4609,4610,monkey,1,0.92 4611 | 4610,4611,mentor,1,0.91 4612 | 4611,4612,two-thirds,1,0.95 4613 | 4612,4613,listener,1,0.93 4614 | 4613,4614,lightning,1,0.93 4615 | 4614,4615,legally,1,0.96 4616 | 4615,4616,sleeve,1,0.90 4617 | 4616,4617,disappointment,1,0.96 4618 | 4617,4618,disturb,1,0.95 4619 | 4618,4619,rib,1,0.93 4620 | 4619,4620,excessive,1,0.93 4621 | 4620,4621,high-tech,1,0.92 4622 | 4621,4622,debris,1,0.95 4623 | 4622,4623,pile,1,0.93 4624 | 4623,4624,rod,1,0.90 4625 | 4624,4625,logical,1,0.93 4626 | 4625,4626,liberal,1,0.92 4627 | 4626,4627,ash,1,0.93 4628 | 4627,4628,socially,1,0.90 4629 | 4628,4629,parish,1,0.91 4630 | 4629,4630,slavery,1,0.92 4631 | 4630,4631,blank,1,0.94 4632 | 4631,4632,commodity,1,0.92 4633 | 4632,4633,cure,1,0.96 4634 | 4633,4634,mineral,1,0.91 4635 | 4634,4635,hunger,1,0.96 4636 | 4635,4636,dying,1,0.95 4637 | 4636,4637,developmental,2,0.84 4638 | 4637,4638,faster,1,0.94 4639 | 4638,4639,spare,1,0.95 4640 | 4639,4640,halfway,1,0.92 4641 | 4640,4641,cure,1,0.96 4642 | 4641,4642,equality,1,0.89 4643 | 4642,4643,cemetery,1,0.93 4644 | 4643,4644,harassment,1,0.89 4645 | 4644,4645,deliberately,1,0.97 4646 | 4645,4646,fame,1,0.95 4647 | 4646,4647,regret,1,0.95 4648 | 4647,4648,striking,1,0.94 4649 | 4648,4649,likelihood,1,0.90 4650 | 4649,4650,carrot,1,0.91 4651 | 4650,4651,atop,1,0.93 4652 | 4651,4652,toll,1,0.93 4653 | 4652,4653,rim,1,0.91 4654 | 4653,4654,embarrassed,1,0.92 4655 | 4654,4655,fucking,2,0.80 4656 | 4655,4656,cling,1,0.91 4657 | 4656,4657,isolated,1,0.95 4658 | 4657,4658,blink,2,0.84 4659 | 4658,4659,suspicious,1,0.96 4660 | 4659,4660,wheelchair,1,0.91 4661 | 4660,4661,squad,1,0.94 4662 | 4661,4662,eligible,1,0.94 4663 | 4662,4663,processor,1,0.88 4664 | 4663,4664,plunge,1,0.94 4665 | 4664,4665,this,1,0.94 4666 | 4665,4666,sponsor,1,0.92 4667 | 4666,4667,grin,1,0.87 4668 | 4667,4668,color,1,0.95 4669 | 4668,4669,demographic,2,0.85 4670 | 4669,4670,rain,1,0.92 4671 | 4670,4671,chill,1,0.91 4672 | 4671,4672,refuge,1,0.94 4673 | 4672,4673,steer,1,0.95 4674 | 4673,4674,legislator,1,0.92 4675 | 4674,4675,rally,1,0.92 4676 | 4675,4676,programming,1,0.94 4677 | 4676,4677,cheer,1,0.95 4678 | 4677,4678,outlet,1,0.94 4679 | 4678,4679,intact,1,0.96 4680 | 4679,4680,vendor,1,0.93 4681 | 4680,4681,thrive,1,0.94 4682 | 4681,4682,peanut,1,0.92 4683 | 4682,4683,chew,1,0.91 4684 | 4683,4684,elaborate,1,0.96 4685 | 4684,4685,intellectual,1,0.89 4686 | 4685,4686,conception,1,0.86 4687 | 4686,4687,auction,1,0.91 4688 | 4687,4688,steak,1,0.92 4689 | 4688,4689,comply,1,0.94 4690 | 4689,4690,triumph,1,0.96 4691 | 4690,4691,shareholder,1,0.89 4692 | 4691,4692,comparable,1,0.91 4693 | 4692,4693,transport,1,0.96 4694 | 4693,4694,conscience,1,0.96 4695 | 4694,4695,calculation,1,0.92 4696 | 4695,4696,considerably,1,0.93 4697 | 4696,4697,interval,1,0.89 4698 | 4697,4698,scratch,1,0.91 4699 | 4698,4699,awake,1,0.88 4700 | 4699,4700,jurisdiction,1,0.90 4701 | 4700,4701,inevitably,1,0.94 4702 | 4701,4702,feminist,1,0.89 4703 | 4702,4703,constraint,1,0.86 4704 | 4703,4704,emotionally,1,0.96 4705 | 4704,4705,expedition,1,0.93 4706 | 4705,4706,allegedly,1,0.93 4707 | 4706,4707,compromise,1,0.96 4708 | 4707,4708,strain,1,0.94 4709 | 4708,4709,similarity,1,0.89 4710 | 4709,4710,butt,1,0.93 4711 | 4710,4711,lid,1,0.92 4712 | 4711,4712,dumb,1,0.93 4713 | 4712,4713,bulk,1,0.95 4714 | 4713,4714,sprinkle,1,0.88 4715 | 4714,4715,mortality,1,0.88 4716 | 4715,4716,philosophical,1,0.89 4717 | 4716,4717,conversion,1,0.90 4718 | 4717,4718,patron,1,0.95 4719 | 4718,4719,municipal,1,0.92 4720 | 4719,4720,any,1,0.95 4721 | 4720,4721,liver,1,0.94 4722 | 4721,4722,harmony,1,0.94 4723 | 4722,4723,solely,1,0.93 4724 | 4723,4724,tolerance,1,0.92 4725 | 4724,4725,instant,1,0.88 4726 | 4725,4726,goat,1,0.93 4727 | 4726,4727,arm,1,0.97 4728 | 4727,4728,blessing,1,0.97 4729 | 4728,4729,banana,1,0.93 4730 | 4729,4730,running,1,0.96 4731 | 4730,4731,palace,1,0.94 4732 | 4731,4732,formerly,1,0.94 4733 | 4732,4733,peasant,1,0.90 4734 | 4733,4734,neat,1,0.94 4735 | 4734,4735,grandparent,1,0.95 4736 | 4735,4736,lawmaker,1,0.88 4737 | 4736,4737,supermarket,1,0.94 4738 | 4737,4738,cruise,1,0.93 4739 | 4738,4739,mobile,1,0.94 4740 | 4739,4740,plain,1,0.94 4741 | 4740,4741,part,1,0.91 4742 | 4741,4742,calendar,1,0.96 4743 | 4742,4743,widow,1,0.95 4744 | 4743,4744,deposit,1,0.91 4745 | 4744,4745,beard,1,0.91 4746 | 4745,4746,brake,1,0.91 4747 | 4746,4747,downtown,1,0.92 4748 | 4747,4748,screening,1,0.93 4749 | 4748,4749,impulse,1,0.95 4750 | 4749,4750,forbid,1,0.97 4751 | 4750,4751,fur,1,0.92 4752 | 4751,4752,brutal,1,0.97 4753 | 4752,4753,predator,1,0.93 4754 | 4753,4754,poke,1,0.90 4755 | 4754,4755,opt,1,0.93 4756 | 4755,4756,voluntary,1,0.91 4757 | 4756,4757,trouble,1,0.97 4758 | 4757,4758,valid,1,0.91 4759 | 4758,4759,forum,1,0.92 4760 | 4759,4760,dancing,1,0.95 4761 | 4760,4761,happily,1,0.94 4762 | 4761,4762,soar,1,0.94 4763 | 4762,4763,removal,1,0.91 4764 | 4763,4764,autonomy,1,0.85 4765 | 4764,4765,enact,1,0.92 4766 | 4765,4766,round,1,0.95 4767 | 4766,4767,thread,1,0.93 4768 | 4767,4768,light,1,0.91 4769 | 4768,4769,landmark,1,0.93 4770 | 4769,4770,unhappy,1,0.96 4771 | 4770,4771,offender,1,0.92 4772 | 4771,4772,coming,1,0.96 4773 | 4772,4773,privately,1,0.95 4774 | 4773,4774,fraction,1,0.94 4775 | 4774,4775,distinctive,1,0.93 4776 | 4775,4776,tourism,1,0.92 4777 | 4776,4777,threshold,1,0.91 4778 | 4777,4778,calm,1,0.94 4779 | 4778,4779,routinely,1,0.94 4780 | 4779,4780,suite,1,0.93 4781 | 4780,4781,remark,1,0.94 4782 | 4781,4782,regulator,1,0.91 4783 | 4782,4783,straw,1,0.94 4784 | 4783,4784,theological,1,0.87 4785 | 4784,4785,apart,1,0.95 4786 | 4785,4786,exhaust,1,0.95 4787 | 4786,4787,globe,1,0.96 4788 | 4787,4788,fragile,1,0.97 4789 | 4788,4789,objection,1,0.94 4790 | 4789,4790,chemistry,1,0.95 4791 | 4790,4791,old-fashioned,1,0.95 4792 | 4791,4792,crowded,1,0.95 4793 | 4792,4793,circle,1,0.91 4794 | 4793,4794,blast,1,0.94 4795 | 4794,4795,prevail,1,0.95 4796 | 4795,4796,overnight,1,0.96 4797 | 4796,4797,denial,1,0.95 4798 | 4797,4798,rental,1,0.92 4799 | 4798,4799,fantastic,1,0.94 4800 | 4799,4800,fragment,1,0.93 4801 | 4800,4801,level,1,0.92 4802 | 4801,4802,screw,1,0.92 4803 | 4802,4803,warmth,1,0.92 4804 | 4803,4804,undergraduate,1,0.87 4805 | 4804,4805,liquid,1,0.94 4806 | 4805,4806,headache,1,0.94 4807 | 4806,4807,policeman,1,0.93 4808 | 4807,4808,yield,1,0.87 4809 | 4808,4809,projection,1,0.93 4810 | 4809,4810,battle,1,0.94 4811 | 4810,4811,suitable,1,0.93 4812 | 4811,4812,mention,1,0.96 4813 | 4812,4813,graduation,1,0.94 4814 | 4813,4814,drill,1,0.93 4815 | 4814,4815,cruel,1,0.96 4816 | 4815,4816,mansion,1,0.94 4817 | 4816,4817,regard,1,0.93 4818 | 4817,4818,grape,1,0.92 4819 | 4818,4819,authorize,1,0.94 4820 | 4819,4820,cottage,1,0.92 4821 | 4820,4821,driveway,1,0.90 4822 | 4821,4822,charm,1,0.95 4823 | 4822,4823,sexuality,1,0.88 4824 | 4823,4824,loyal,1,0.97 4825 | 4824,4825,clay,1,0.93 4826 | 4825,4826,pound,1,0.92 4827 | 4826,4827,balloon,1,0.94 4828 | 4827,4828,invention,1,0.94 4829 | 4828,4829,ego,1,0.93 4830 | 4829,4830,fare,1,0.91 4831 | 4830,4831,homework,1,0.96 4832 | 4831,4832,disc,1,0.90 4833 | 4832,4833,sofa,1,0.89 4834 | 4833,4834,guarantee,1,0.94 4835 | 4834,4835,availability,1,0.88 4836 | 4835,4836,radar,1,0.93 4837 | 4836,4837,frown,1,0.83 4838 | 4837,4838,regain,1,0.97 4839 | 4838,4839,leave,1,0.96 4840 | 4839,4840,permit,1,0.92 4841 | 4840,4841,sweater,1,0.90 4842 | 4841,4842,rehabilitation,1,0.88 4843 | 4842,4843,rubber,1,0.94 4844 | 4843,4844,retreat,1,0.95 4845 | 4844,4845,molecule,1,0.89 4846 | 4845,4846,freely,1,0.96 4847 | 4846,4847,favorable,1,0.91 4848 | 4847,4848,steadily,1,0.96 4849 | 4848,4849,veteran,1,0.92 4850 | 4849,4850,integrated,1,0.89 4851 | 4850,4851,ha,1,0.90 4852 | 4851,4852,youngster,1,0.94 4853 | 4852,4853,broadcast,1,0.95 4854 | 4853,4854,premium,1,0.92 4855 | 4854,4855,accountability,1,0.90 4856 | 4855,4856,overwhelm,1,0.97 4857 | 4856,4857,one-third,1,0.93 4858 | 4857,4858,contemplate,1,0.96 4859 | 4858,4859,update,1,0.93 4860 | 4859,4860,spark,1,0.96 4861 | 4860,4861,ironically,1,0.94 4862 | 4861,4862,fatigue,1,0.93 4863 | 4862,4863,beyond,1,0.96 4864 | 4863,4864,speculate,1,0.97 4865 | 4864,4865,marker,1,0.94 4866 | 4865,4866,low,1,0.96 4867 | 4866,4867,preach,1,0.96 4868 | 4867,4868,bucket,1,0.92 4869 | 4868,4869,bomb,1,0.92 4870 | 4869,4870,blond,1,0.88 4871 | 4870,4871,confession,1,0.95 4872 | 4871,4872,provoke,1,0.95 4873 | 4872,4873,marble,1,0.93 4874 | 4873,4874,substantially,1,0.90 4875 | 4874,4875,twist,1,0.95 4876 | 4875,4876,defender,1,0.94 4877 | 4876,4877,fish,1,0.93 4878 | 4877,4878,explicit,1,0.88 4879 | 4878,4879,transport,1,0.91 4880 | 4879,4880,disturbing,1,0.97 4881 | 4880,4881,surveillance,1,0.94 4882 | 4881,4882,magnetic,1,0.90 4883 | 4882,4883,technician,1,0.95 4884 | 4883,4884,mutter,1,0.84 4885 | 4884,4885,devastating,1,0.95 4886 | 4885,4886,depart,1,0.96 4887 | 4886,4887,arrow,1,0.92 4888 | 4887,4888,trauma,1,0.82 4889 | 4888,4889,neighboring,1,0.95 4890 | 4889,4890,soak,1,0.93 4891 | 4890,4891,ribbon,1,0.93 4892 | 4891,4892,meantime,1,0.96 4893 | 4892,4893,transmit,1,0.94 4894 | 4893,4894,screen,1,0.95 4895 | 4894,4895,harvest,1,0.94 4896 | 4895,4896,consecutive,1,0.88 4897 | 4896,4897,republican,1,0.91 4898 | 4897,4898,coordinate,1,0.93 4899 | 4898,4899,worldwide,1,0.94 4900 | 4899,4900,within,1,0.94 4901 | 4900,4901,spy,1,0.95 4902 | 4901,4902,slot,1,0.94 4903 | 4902,4903,riot,1,0.92 4904 | 4903,4904,nutrient,1,0.88 4905 | 4904,4905,citizenship,1,0.86 4906 | 4905,4906,severely,1,0.95 4907 | 4906,4907,sovereignty,1,0.86 4908 | 4907,4908,ridge,1,0.91 4909 | 4908,4909,brave,1,0.94 4910 | 4909,4910,lighting,1,0.94 4911 | 4910,4911,specify,1,0.89 4912 | 4911,4912,contributor,1,0.94 4913 | 4912,4913,frustrate,1,0.97 4914 | 4913,4914,crowd,1,0.94 4915 | 4914,4915,articulate,1,0.89 4916 | 4915,4916,importantly,1,0.93 4917 | 4916,4917,transit,1,0.91 4918 | 4917,4918,dense,1,0.94 4919 | 4918,4919,seminar,1,0.93 4920 | 4919,4920,electronics,1,0.93 4921 | 4920,4921,sunny,1,0.93 4922 | 4921,4922,shorts,1,0.93 4923 | 4922,4923,swell,1,0.93 4924 | 4923,4924,accusation,1,0.95 4925 | 4924,4925,soften,1,0.93 4926 | 4925,4926,photograph,1,0.95 4927 | 4926,4927,straighten,1,0.89 4928 | 4927,4928,terribly,1,0.93 4929 | 4928,4929,cue,1,0.92 4930 | 4929,4930,sudden,1,0.91 4931 | 4930,4931,bride,1,0.85 4932 | 4931,4932,biography,1,0.95 4933 | 4932,4933,hazard,1,0.92 4934 | 4933,4934,compelling,1,0.95 4935 | 4934,4935,seldom,1,0.95 4936 | 4935,4936,tile,1,0.91 4937 | 4936,4937,economically,1,0.92 4938 | 4937,4938,honestly,1,0.94 4939 | 4938,4939,troubled,1,0.95 4940 | 4939,4940,bow,1,0.90 4941 | 4940,4941,twentieth,1,0.87 4942 | 4941,4942,balanced,1,0.86 4943 | 4942,4943,foreigner,1,0.93 4944 | 4943,4944,launch,1,0.93 4945 | 4944,4945,convenience,1,0.95 4946 | 4945,4946,delight,1,0.94 4947 | 4946,4947,weave,1,0.94 4948 | 4947,4948,timber,1,0.92 4949 | 4948,4949,till,1,0.90 4950 | 4949,4950,accurately,1,0.92 4951 | 4950,4951,plea,1,0.95 4952 | 4951,4952,bulb,1,0.92 4953 | 4952,4953,copy,1,0.95 4954 | 4953,4954,flying,1,0.93 4955 | 4954,4955,sustainable,1,0.89 4956 | 4955,4956,devil,1,0.94 4957 | 4956,4957,bolt,1,0.92 4958 | 4957,4958,cargo,1,0.95 4959 | 4958,4959,spine,1,0.92 4960 | 4959,4960,seller,1,0.93 4961 | 4960,4961,skilled,1,0.94 4962 | 4961,4962,managing,1,0.92 4963 | 4962,4963,public,1,0.97 4964 | 4963,4964,marine,1,0.92 4965 | 4964,4965,dock,1,0.91 4966 | 4965,4966,organized,1,0.94 4967 | 4966,4967,fog,1,0.91 4968 | 4967,4968,diplomat,1,0.91 4969 | 4968,4969,boring,1,0.96 4970 | 4969,4970,sometime,1,0.95 4971 | 4970,4971,summary,1,0.89 4972 | 4971,4972,missionary,1,0.87 4973 | 4972,4973,epidemic,1,0.94 4974 | 4973,4974,fatal,1,0.97 4975 | 4974,4975,trim,1,0.92 4976 | 4975,4976,warehouse,1,0.94 4977 | 4976,4977,accelerate,1,0.96 4978 | 4977,4978,butterfly,1,0.94 4979 | 4978,4979,bronze,1,0.92 4980 | 4979,4980,drown,1,0.92 4981 | 4980,4981,inherent,1,0.88 4982 | 4981,4982,praise,1,0.96 4983 | 4982,4983,nationwide,1,0.92 4984 | 4983,4984,spit,1,0.89 4985 | 4984,4985,harvest,1,0.93 4986 | 4985,4986,kneel,1,0.86 4987 | 4986,4987,vacuum,1,0.93 4988 | 4987,4988,selected,1,0.88 4989 | 4988,4989,dictate,1,0.95 4990 | 4989,4990,stereotype,1,0.92 4991 | 4990,4991,sensor,1,0.91 4992 | 4991,4992,laundry,1,0.93 4993 | 4992,4993,manual,1,0.93 4994 | 4993,4994,pistol,1,0.89 4995 | 4994,4995,naval,1,0.94 4996 | 4995,4996,plaintiff,1,0.88 4997 | 4996,4997,kid,1,0.92 4998 | 4997,4998,middle-class,1,0.93 4999 | 4998,4999,apology,1,0.94 5000 | 4999,5000,till,1,0.92 5001 | --------------------------------------------------------------------------------